From b361dacf5252d85f67b38d96266db507bd717531 Mon Sep 17 00:00:00 2001 From: Florence Lauer Date: Tue, 18 Apr 2023 16:55:53 -0400 Subject: [PATCH 01/23] Deck.gl proof of work Working layers using geojson data, events and custom shader Co-authored-by: Wassim27 Co-authored-by: Gabriel Bruno Co-authored-by: Florence Lauer Co-authored-by: MohamedAli-M Co-authored-by: mahdiguermache Co-authored-by: nik498 <54679682+nik498@users.noreply.github.com> --- deck-gl-pow/README.md | 7 + deck-gl-pow/app.js | 178 + deck-gl-pow/babel.config.js | 31 + deck-gl-pow/geojson-route.geojson | 623715 ++++++++++++++++++++ deck-gl-pow/index.html | 28 + deck-gl-pow/nodes.geojson | 229198 +++++++ deck-gl-pow/package-lock.json | 18457 + deck-gl-pow/package.json | 32 + deck-gl-pow/scatter-plot-custom-layer.js | 216 + deck-gl-pow/webpack.config.js | 32 + 10 files changed, 871894 insertions(+) create mode 100644 deck-gl-pow/README.md create mode 100644 deck-gl-pow/app.js create mode 100644 deck-gl-pow/babel.config.js create mode 100644 deck-gl-pow/geojson-route.geojson create mode 100644 deck-gl-pow/index.html create mode 100644 deck-gl-pow/nodes.geojson create mode 100644 deck-gl-pow/package-lock.json create mode 100644 deck-gl-pow/package.json create mode 100644 deck-gl-pow/scatter-plot-custom-layer.js create mode 100644 deck-gl-pow/webpack.config.js diff --git a/deck-gl-pow/README.md b/deck-gl-pow/README.md new file mode 100644 index 00000000..3d514ad0 --- /dev/null +++ b/deck-gl-pow/README.md @@ -0,0 +1,7 @@ +# Deck.gl proof of work + +This is a proof of work for Deck.gl with [transition](https://github.com/chairemobilite/transition). It verifies that deck.gl can be used with the geojson data present, can have custom shaders, can handle different events. + +To install, run ``npm install`` + +To run the project, run ``npm start`` diff --git a/deck-gl-pow/app.js b/deck-gl-pow/app.js new file mode 100644 index 00000000..d3db50e4 --- /dev/null +++ b/deck-gl-pow/app.js @@ -0,0 +1,178 @@ +import React, {useState, useEffect} from 'react'; +import DeckGL from '@deck.gl/react'; +import {Map} from 'react-map-gl'; +import {TripsLayer} from '@deck.gl/geo-layers'; +import {createRoot} from 'react-dom/client'; +import { ScatterplotLayer } from 'deck.gl'; +import ScatterplotCustomLayer from './scatter-plot-custom-layer' + +function getTooltip({object}) { + return object && object.properties.name; +} + +function setTimestamps(data) { + var sum = 0; + data.properties.data.segments.forEach((value) => { + sum += value.travelTimeSeconds; + }); + + var times = [] + const interval = sum/data.geometry.coordinates.length; + for(var i = 0; i < data.geometry.coordinates.length; i+=interval) { + times.push(i); + } + return times +} + +var routeIndex = -1; +var nodeIndex = -1; + +var routeSelected = null; +var nodeSelected = null; + +export default function Counter({routeData, nodeData}) { + const [time, setTime] = useState(0); + const [animation] = useState({}); + + const animate = () => { + setTime(t => (t + 1) % 700); + animation.id = window.requestAnimationFrame(animate); + }; + + useEffect(() => { + animation.id = window.requestAnimationFrame(animate); + return () => window.cancelAnimationFrame(animation.id); + }, [animation]); + + + const layer = [ + new TripsLayer({ + id: 'trips-layer', + data: routeData, + getPath: d => d.geometry.coordinates, + getTimestamps: d => setTimestamps(d), + getColor: d => { + const rgb = d.properties.color + return [parseInt(rgb.substring(1,3), 16), parseInt(rgb.substring(3,5), 16), parseInt(rgb.substring(5), 16)] + }, + opacity: 0.8, + widthMinPixels: 2, + rounded: true, + fadeTrail: true, + trailLength: 400, + currentTime: 0, + shadowEnabled: false, + pickable: true, + updateTriggers: { + getWidth: routeIndex + }, + onHover: (line) => { + routeIndex = line.index; + }, + onClick: ({object}) => { + nodeSelected = null + routeSelected = [object] + } + }), + + new TripsLayer({ + id: 'trips-layer-selected', + data: routeSelected, + getPath: d => d.geometry.coordinates, + getTimestamps: d => {setTimestamps(d);}, + opacity: 0.8, + widthMinPixels: 2, + rounded: true, + fadeTrail: true, + trailLength: 400, + currentTime: parseFloat(Math.cos(time/20)*100 + 200), + shadowEnabled: false, + pickable: true, + getColor: d => { + const rgb = d.properties.color + return [200, 200, 0] + }, + getWidth: (d, i) => { + if(i.index === routeIndex) { + return 70; + } + return 20; + }, + }), + + new ScatterplotLayer({ + id: 'nodes-layer-selected', + data: nodeSelected, + filled: true, + stroked: true, + getPosition: d => d.geometry.coordinates, + getFillColor: d => { + const rgb = d.properties.color + return [parseInt(rgb.substring(1,3), 16), parseInt(rgb.substring(3,5), 16), parseInt(rgb.substring(5), 16),255] + }, + getLineColor: [255,255,255,255], + getRadius: 100, + extensions: [new ScatterplotCustomLayer()] + }), + + new ScatterplotLayer({ + id: 'nodes-layer', + data: nodeData, + filled: true, + stroked: true, + getPosition: d => d.geometry.coordinates, + getFillColor: d => { + const rgb = d.properties.color + return [parseInt(rgb.substring(1,3), 16), parseInt(rgb.substring(3,5), 16), parseInt(rgb.substring(5), 16),255] + }, + getLineColor: [255,255,255,255], + getRadius: (d, i) => { + if(i.index === nodeIndex) { + return 20; + } + return 10; + }, + updateTriggers: { + getRadius: nodeIndex + }, + pickable: true, + onHover: (node) => { + nodeIndex = node.index; + }, + onClick: ({object}) => { + routeSelected = null + nodeSelected = [object] + } + }), + ]; + + const INITIAL_VIEW_STATE = { + longitude: -73.463591, + latitude: 45.533242, + zoom: 12, + pitch: 0, + bearing: 0 + }; + + return ( + + + + ); +} + +const root = createRoot(document.getElementById("root")); +fetch('./geojson-route.geojson') + .then(response => response.json()) + .then((routes) => { + fetch('./nodes.geojson') + .then(response => response.json()) + .then((nodes) => { + root.render(); + }); + }); \ No newline at end of file diff --git a/deck-gl-pow/babel.config.js b/deck-gl-pow/babel.config.js new file mode 100644 index 00000000..1892f3cc --- /dev/null +++ b/deck-gl-pow/babel.config.js @@ -0,0 +1,31 @@ +module.exports = { + presets: [ + [ + "@babel/preset-env", + { + modules: false + } + ], + "@babel/preset-react" + ], + plugins: [ + "@babel/plugin-transform-runtime", + "@babel/plugin-syntax-dynamic-import", + "@babel/plugin-proposal-class-properties" + ], + env: { + production: { + only: ["src"], + plugins: [ + [ + "transform-react-remove-prop-types", + { + removeImport: true + } + ], + "@babel/plugin-transform-react-inline-elements", + "@babel/plugin-transform-react-constant-elements" + ] + } + } + }; \ No newline at end of file diff --git a/deck-gl-pow/geojson-route.geojson b/deck-gl-pow/geojson-route.geojson new file mode 100644 index 00000000..391d8210 --- /dev/null +++ b/deck-gl-pow/geojson-route.geojson @@ -0,0 +1,623715 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.508312, + 45.520939 + ], + [ + -73.508376, + 45.521052 + ], + [ + -73.50882, + 45.521847 + ], + [ + -73.508911, + 45.52201 + ], + [ + -73.509196, + 45.52252 + ], + [ + -73.509298, + 45.522709 + ], + [ + -73.509687, + 45.52343 + ], + [ + -73.509754, + 45.523555 + ], + [ + -73.509977, + 45.524041 + ], + [ + -73.51018, + 45.524458 + ], + [ + -73.510426, + 45.525377 + ], + [ + -73.510431, + 45.525413 + ], + [ + -73.510485, + 45.52576 + ], + [ + -73.510566, + 45.526288 + ], + [ + -73.508382, + 45.525568 + ], + [ + -73.507854, + 45.526365 + ], + [ + -73.507334, + 45.52715 + ], + [ + -73.506781, + 45.526968 + ], + [ + -73.505571, + 45.526568 + ], + [ + -73.505375, + 45.526503 + ], + [ + -73.50361, + 45.525921 + ], + [ + -73.502701, + 45.52562 + ], + [ + -73.500486, + 45.524902 + ], + [ + -73.500131, + 45.52476 + ], + [ + -73.500093, + 45.524745 + ], + [ + -73.500017, + 45.524714 + ], + [ + -73.500072, + 45.524631 + ], + [ + -73.500403, + 45.524121 + ], + [ + -73.500517, + 45.523949 + ], + [ + -73.500601, + 45.523821 + ], + [ + -73.500601, + 45.523754 + ], + [ + -73.500561, + 45.523716 + ], + [ + -73.500255, + 45.523604 + ], + [ + -73.500367, + 45.52342 + ], + [ + -73.50062, + 45.523008 + ], + [ + -73.500708, + 45.522863 + ], + [ + -73.501099, + 45.522224 + ], + [ + -73.500653, + 45.522073 + ], + [ + -73.500256, + 45.521939 + ], + [ + -73.500549, + 45.521509 + ], + [ + -73.501004, + 45.52084 + ], + [ + -73.501434, + 45.520208 + ], + [ + -73.501844, + 45.519605 + ], + [ + -73.502258, + 45.518996 + ], + [ + -73.505549, + 45.520069 + ], + [ + -73.508192, + 45.520901 + ], + [ + -73.508254, + 45.52092 + ], + [ + -73.508312, + 45.520939 + ] + ] + }, + "id": 1, + "properties": { + "id": "e9c2034a-811d-4cbd-bd7e-ca274a312679", + "data": { + "segments": [ + { + "distanceMeters": 624, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 1005, + "travelTimeSeconds": 121 + }, + { + "distanceMeters": 1282, + "travelTimeSeconds": 180 + } + ], + "from_gtfs": false, + "nodeTypes": [ + "engine", + "engine", + "engine", + "engine" + ], + "variables": { + "d_p": 2911, + "T_o_p": 480, + "n_q_p": 4, + "n_s_p": 4, + "d_l_avg": 970, + "d_l_max": 1282, + "d_l_med": 1005, + "d_l_min": 624 + }, + "waypoints": [ + [], + [], + [], + [] + ], + "routingMode": "bus_urban", + "routingEngine": "engine", + "routingFailed": false, + "waypointTypes": [ + [], + [], + [], + [] + ], + "dwellTimeSeconds": [ + 0, + 20, + 20, + 20 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 2911, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 60, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.06, + "travelTimeWithoutDwellTimesSeconds": 360, + "operatingTimeWithLayoverTimeSeconds": 660, + "totalTravelTimeWithReturnBackSeconds": 660, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 480, + "operatingSpeedWithLayoverMetersPerSecond": 4.41, + "directRouteBetweenTerminalsDistanceMeters": 0, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.09, + "directRouteBetweenTerminalsTravelTimeSeconds": 0 + }, + "mode": "bus", + "name": null, + "color": "#ff0000", + "nodes": [ + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", + "d41672d0-e186-418e-b20f-1d82b60c3365", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4" + ], + "stops": [], + "line_id": "d588df8d-ce36-45e0-acfc-2cdff070ec00", + "segments": [ + 0, + 13, + 23 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-13T15:44:54.009579+00:00", + "integer_id": 1, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.512964, + 45.521048 + ], + [ + -73.510954, + 45.520386 + ], + [ + -73.510243, + 45.521449 + ], + [ + -73.508774, + 45.520998 + ], + [ + -73.50874, + 45.520987 + ], + [ + -73.508656, + 45.520959 + ], + [ + -73.50864, + 45.520954 + ], + [ + -73.508495, + 45.520945 + ], + [ + -73.508312, + 45.520939 + ], + [ + -73.508376, + 45.521052 + ], + [ + -73.50882, + 45.521847 + ], + [ + -73.508911, + 45.52201 + ], + [ + -73.509196, + 45.52252 + ], + [ + -73.509298, + 45.522709 + ], + [ + -73.509687, + 45.52343 + ], + [ + -73.509754, + 45.523555 + ], + [ + -73.509977, + 45.524041 + ], + [ + -73.509884, + 45.524165 + ], + [ + -73.509793, + 45.524217 + ], + [ + -73.509653, + 45.524285 + ], + [ + -73.50872, + 45.523979 + ], + [ + -73.508141, + 45.523971 + ], + [ + -73.507828, + 45.524421 + ], + [ + -73.507784, + 45.524484 + ], + [ + -73.504015, + 45.52321 + ], + [ + -73.503676, + 45.523095 + ], + [ + -73.502184, + 45.522591 + ], + [ + -73.501625, + 45.522402 + ], + [ + -73.501184, + 45.522253 + ], + [ + -73.501099, + 45.522224 + ], + [ + -73.500708, + 45.522863 + ], + [ + -73.50062, + 45.523008 + ], + [ + -73.500367, + 45.52342 + ], + [ + -73.498736, + 45.522873 + ], + [ + -73.49744, + 45.522428 + ], + [ + -73.497432, + 45.522704 + ], + [ + -73.497389, + 45.522847 + ], + [ + -73.497258, + 45.523041 + ], + [ + -73.496826, + 45.523476 + ], + [ + -73.496796, + 45.523506 + ], + [ + -73.49677, + 45.523532 + ], + [ + -73.496869, + 45.523566 + ], + [ + -73.499678, + 45.524544 + ], + [ + -73.499916, + 45.524664 + ], + [ + -73.500017, + 45.524714 + ], + [ + -73.500093, + 45.524745 + ], + [ + -73.500486, + 45.524902 + ], + [ + -73.502701, + 45.52562 + ], + [ + -73.50361, + 45.525921 + ], + [ + -73.505375, + 45.526503 + ], + [ + -73.505571, + 45.526568 + ], + [ + -73.506781, + 45.526968 + ], + [ + -73.507334, + 45.52715 + ], + [ + -73.5103, + 45.52813 + ], + [ + -73.510401, + 45.528159 + ], + [ + -73.51047, + 45.528232 + ], + [ + -73.510527, + 45.528147 + ], + [ + -73.510568, + 45.528082 + ], + [ + -73.510675, + 45.527879 + ], + [ + -73.510698, + 45.527819 + ], + [ + -73.510721, + 45.527758 + ], + [ + -73.510836, + 45.527394 + ], + [ + -73.510855, + 45.527335 + ], + [ + -73.510915, + 45.526403 + ], + [ + -73.510801, + 45.525535 + ], + [ + -73.510795, + 45.525489 + ], + [ + -73.510551, + 45.524579 + ], + [ + -73.511523, + 45.524887 + ], + [ + -73.511946, + 45.524236 + ], + [ + -73.512455, + 45.523454 + ], + [ + -73.51306, + 45.523637 + ], + [ + -73.513348, + 45.523723 + ], + [ + -73.513525, + 45.523724 + ], + [ + -73.513512, + 45.522963 + ], + [ + -73.513511, + 45.522924 + ], + [ + -73.513514, + 45.522659 + ], + [ + -73.513513, + 45.522529 + ], + [ + -73.513495, + 45.521155 + ] + ] + }, + "id": 2, + "properties": { + "id": "f6914ae0-c474-47c6-945d-43d4612d434c", + "data": { + "segments": [ + { + "distanceMeters": 440, + "travelTimeSeconds": 94 + }, + { + "distanceMeters": 615, + "travelTimeSeconds": 90 + }, + { + "distanceMeters": 1120, + "travelTimeSeconds": 162 + }, + { + "distanceMeters": 1207, + "travelTimeSeconds": 160 + }, + { + "distanceMeters": 1037, + "travelTimeSeconds": 148 + } + ], + "from_gtfs": false, + "nodeTypes": [ + "engine", + "engine", + "engine", + "engine", + "engine", + "engine" + ], + "variables": { + "d_p": 4419, + "T_o_p": 780, + "n_q_p": 6, + "n_s_p": 6, + "d_l_avg": 884, + "d_l_max": 1207, + "d_l_med": 1037, + "d_l_min": 440 + }, + "waypoints": [ + [], + [], + [], + [], + [], + [] + ], + "routingMode": "bus_urban", + "routingEngine": "engine", + "routingFailed": false, + "waypointTypes": [ + [], + [], + [], + [], + [], + [] + ], + "dwellTimeSeconds": [ + 0, + 20, + 20, + 20, + 20, + 20 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 4419, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 100, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.67, + "travelTimeWithoutDwellTimesSeconds": 660, + "operatingTimeWithLayoverTimeSeconds": 960, + "totalTravelTimeWithReturnBackSeconds": 960, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 780, + "operatingSpeedWithLayoverMetersPerSecond": 4.6, + "directRouteBetweenTerminalsDistanceMeters": 0, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.7, + "directRouteBetweenTerminalsTravelTimeSeconds": 0 + }, + "mode": "bus", + "name": "allo", + "color": "#0086FF", + "nodes": [ + "9db6aff2-2175-49e9-984e-3eb4c8dd470c", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "1da8599d-038c-4242-b6d8-ab011dd7f5a1", + "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "0abd44bc-ce59-4161-a0a7-b31176db0e89", + "9db6aff2-2175-49e9-984e-3eb4c8dd470c" + ], + "stops": [], + "line_id": "cf66dea8-0e94-4329-ae6d-58a607e07bc2", + "segments": [ + 0, + 5, + 22, + 39, + 56 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-13T16:01:05.481124+00:00", + "integer_id": 2, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.508365, + 45.521033 + ], + [ + -73.508376, + 45.521052 + ], + [ + -73.50882, + 45.521847 + ], + [ + -73.508911, + 45.52201 + ], + [ + -73.509196, + 45.52252 + ], + [ + -73.509298, + 45.522709 + ], + [ + -73.509687, + 45.52343 + ], + [ + -73.509754, + 45.523555 + ], + [ + -73.509977, + 45.524041 + ], + [ + -73.509884, + 45.524165 + ], + [ + -73.509793, + 45.524217 + ], + [ + -73.509653, + 45.524285 + ], + [ + -73.50872, + 45.523979 + ], + [ + -73.508141, + 45.523971 + ], + [ + -73.507828, + 45.524421 + ], + [ + -73.507784, + 45.524484 + ], + [ + -73.504015, + 45.52321 + ], + [ + -73.503676, + 45.523095 + ], + [ + -73.502184, + 45.522591 + ], + [ + -73.501625, + 45.522402 + ], + [ + -73.501184, + 45.522253 + ], + [ + -73.501099, + 45.522224 + ], + [ + -73.500708, + 45.522863 + ], + [ + -73.50062, + 45.523008 + ], + [ + -73.500367, + 45.52342 + ], + [ + -73.500255, + 45.523604 + ], + [ + -73.500561, + 45.523716 + ], + [ + -73.500601, + 45.523754 + ], + [ + -73.500601, + 45.523821 + ], + [ + -73.500517, + 45.523949 + ], + [ + -73.500403, + 45.524121 + ], + [ + -73.500072, + 45.524631 + ], + [ + -73.500017, + 45.524714 + ], + [ + -73.500072, + 45.524631 + ], + [ + -73.500403, + 45.524121 + ], + [ + -73.500517, + 45.523949 + ], + [ + -73.500601, + 45.523821 + ], + [ + -73.500601, + 45.523754 + ], + [ + -73.500561, + 45.523716 + ], + [ + -73.500255, + 45.523604 + ], + [ + -73.500367, + 45.52342 + ], + [ + -73.50062, + 45.523008 + ], + [ + -73.500708, + 45.522863 + ], + [ + -73.501099, + 45.522224 + ], + [ + -73.500653, + 45.522073 + ], + [ + -73.500256, + 45.521939 + ], + [ + -73.500549, + 45.521509 + ], + [ + -73.501004, + 45.52084 + ], + [ + -73.501434, + 45.520208 + ], + [ + -73.501844, + 45.519605 + ], + [ + -73.502258, + 45.518996 + ], + [ + -73.505549, + 45.520069 + ], + [ + -73.508192, + 45.520901 + ], + [ + -73.508254, + 45.52092 + ], + [ + -73.508312, + 45.520939 + ], + [ + -73.508254, + 45.52092 + ], + [ + -73.508192, + 45.520901 + ], + [ + -73.505549, + 45.520069 + ], + [ + -73.502258, + 45.518996 + ], + [ + -73.501844, + 45.519605 + ], + [ + -73.501434, + 45.520208 + ], + [ + -73.501004, + 45.52084 + ], + [ + -73.500549, + 45.521509 + ], + [ + -73.500256, + 45.521939 + ], + [ + -73.49828, + 45.52128 + ], + [ + -73.498031, + 45.521197 + ], + [ + -73.497423, + 45.520994 + ], + [ + -73.497117, + 45.520892 + ], + [ + -73.497203, + 45.521307 + ], + [ + -73.497284, + 45.521694 + ], + [ + -73.49744, + 45.522428 + ], + [ + -73.497432, + 45.522704 + ], + [ + -73.497389, + 45.522847 + ], + [ + -73.497258, + 45.523041 + ], + [ + -73.496826, + 45.523476 + ], + [ + -73.496796, + 45.523506 + ], + [ + -73.49677, + 45.523532 + ], + [ + -73.496869, + 45.523566 + ], + [ + -73.499678, + 45.524544 + ], + [ + -73.499916, + 45.524664 + ], + [ + -73.500017, + 45.524714 + ], + [ + -73.500072, + 45.524631 + ], + [ + -73.500403, + 45.524121 + ], + [ + -73.500517, + 45.523949 + ], + [ + -73.500601, + 45.523821 + ], + [ + -73.500601, + 45.523754 + ], + [ + -73.500561, + 45.523716 + ], + [ + -73.500255, + 45.523604 + ], + [ + -73.500367, + 45.52342 + ], + [ + -73.50062, + 45.523008 + ], + [ + -73.500708, + 45.522863 + ], + [ + -73.501099, + 45.522224 + ], + [ + -73.501184, + 45.522253 + ], + [ + -73.501625, + 45.522402 + ], + [ + -73.502184, + 45.522591 + ], + [ + -73.503676, + 45.523095 + ], + [ + -73.504015, + 45.52321 + ], + [ + -73.507784, + 45.524484 + ], + [ + -73.507817, + 45.524495 + ], + [ + -73.510426, + 45.525377 + ], + [ + -73.510431, + 45.525413 + ], + [ + -73.510485, + 45.52576 + ], + [ + -73.510566, + 45.526288 + ], + [ + -73.510584, + 45.526294 + ], + [ + -73.510651, + 45.526316 + ], + [ + -73.510752, + 45.52635 + ], + [ + -73.510915, + 45.526403 + ], + [ + -73.510801, + 45.525535 + ], + [ + -73.510795, + 45.525489 + ], + [ + -73.510551, + 45.524579 + ], + [ + -73.511523, + 45.524887 + ], + [ + -73.511946, + 45.524236 + ], + [ + -73.512455, + 45.523454 + ], + [ + -73.51306, + 45.523637 + ], + [ + -73.513348, + 45.523723 + ], + [ + -73.513525, + 45.523724 + ], + [ + -73.513512, + 45.522963 + ], + [ + -73.513511, + 45.522924 + ], + [ + -73.513514, + 45.522659 + ], + [ + -73.513513, + 45.522529 + ], + [ + -73.513495, + 45.521155 + ], + [ + -73.513358, + 45.521154 + ], + [ + -73.513322, + 45.521154 + ], + [ + -73.513357, + 45.522351 + ], + [ + -73.51336, + 45.522467 + ], + [ + -73.513348, + 45.523723 + ], + [ + -73.513359, + 45.524687 + ], + [ + -73.513374, + 45.525191 + ], + [ + -73.513373, + 45.525354 + ], + [ + -73.513373, + 45.525372 + ], + [ + -73.513371, + 45.525418 + ], + [ + -73.513376, + 45.525513 + ], + [ + -73.513379, + 45.52557 + ], + [ + -73.513381, + 45.525604 + ], + [ + -73.513382, + 45.526303 + ], + [ + -73.513405, + 45.527064 + ], + [ + -73.513406, + 45.527095 + ], + [ + -73.513408, + 45.527175 + ], + [ + -73.513407, + 45.527251 + ], + [ + -73.513402, + 45.528015 + ], + [ + -73.513401, + 45.528029 + ], + [ + -73.513396, + 45.528104 + ], + [ + -73.513371, + 45.528191 + ], + [ + -73.513322, + 45.528359 + ], + [ + -73.513033, + 45.528805 + ], + [ + -73.512983, + 45.528882 + ], + [ + -73.512972, + 45.528899 + ], + [ + -73.512944, + 45.528941 + ], + [ + -73.512892, + 45.528922 + ], + [ + -73.512846, + 45.528906 + ], + [ + -73.512775, + 45.528882 + ], + [ + -73.512563, + 45.528812 + ], + [ + -73.511781, + 45.528556 + ], + [ + -73.510651, + 45.528184 + ], + [ + -73.510627, + 45.528177 + ], + [ + -73.510624, + 45.528176 + ], + [ + -73.510527, + 45.528147 + ], + [ + -73.510568, + 45.528082 + ], + [ + -73.510675, + 45.527879 + ], + [ + -73.510698, + 45.527819 + ], + [ + -73.510721, + 45.527758 + ], + [ + -73.510836, + 45.527394 + ], + [ + -73.510855, + 45.527335 + ], + [ + -73.510915, + 45.526403 + ], + [ + -73.510801, + 45.525535 + ], + [ + -73.510795, + 45.525489 + ], + [ + -73.510551, + 45.524579 + ], + [ + -73.510123, + 45.523669 + ], + [ + -73.510067, + 45.523566 + ], + [ + -73.509497, + 45.522526 + ], + [ + -73.509183, + 45.52195 + ], + [ + -73.50871, + 45.521082 + ], + [ + -73.508694, + 45.521054 + ], + [ + -73.508664, + 45.520999 + ], + [ + -73.508641, + 45.520956 + ] + ] + }, + "id": 3, + "properties": { + "id": "7a82e032-63c7-40ce-8321-7a6f00a6568d", + "data": { + "segments": [ + { + "distanceMeters": 577, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 904, + "travelTimeSeconds": 130 + }, + { + "distanceMeters": 1272, + "travelTimeSeconds": 184 + }, + { + "distanceMeters": 1461, + "travelTimeSeconds": 201 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 899, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 330, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 878, + "travelTimeSeconds": 151 + }, + { + "distanceMeters": 1076, + "travelTimeSeconds": 203 + }, + { + "distanceMeters": 841, + "travelTimeSeconds": 103 + } + ], + "from_gtfs": false, + "nodeTypes": [ + "engine", + "engine", + "engine", + "engine", + "engine", + "engine", + "engine", + "engine", + "engine", + "engine", + "engine" + ], + "variables": { + "d_p": 8528, + "T_o_p": 1500, + "n_q_p": 11, + "n_s_p": 11, + "d_l_avg": 853, + "d_l_max": 1461, + "d_l_med": 889, + "d_l_min": 290 + }, + "waypoints": [ + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [] + ], + "routingMode": "bus_urban", + "routingEngine": "engine", + "routingFailed": false, + "waypointTypes": [ + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [] + ], + "dwellTimeSeconds": [ + 0, + 20, + 20, + 20, + 20, + 20, + 20, + 20, + 20, + 20, + 20 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8528, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 200, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.69, + "travelTimeWithoutDwellTimesSeconds": 1260, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": 1680, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 5.08, + "directRouteBetweenTerminalsDistanceMeters": 0, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.77, + "directRouteBetweenTerminalsTravelTimeSeconds": 0 + }, + "mode": "bus", + "name": null, + "color": "#fff600", + "nodes": [ + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "1da8599d-038c-4242-b6d8-ab011dd7f5a1", + "d41672d0-e186-418e-b20f-1d82b60c3365", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "d41672d0-e186-418e-b20f-1d82b60c3365", + "1da8599d-038c-4242-b6d8-ab011dd7f5a1", + "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", + "9db6aff2-2175-49e9-984e-3eb4c8dd470c", + "0abd44bc-ce59-4161-a0a7-b31176db0e89", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4" + ], + "stops": [], + "line_id": "f501d9ed-93db-4503-83dd-cf1890221267", + "segments": [ + 0, + 14, + 32, + 54, + 75, + 80, + 98, + 103, + 121, + 154 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-15T16:37:37.660636+00:00", + "integer_id": 3, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.509779, + 45.517738 + ], + [ + -73.509715, + 45.517835 + ], + [ + -73.509185, + 45.518653 + ], + [ + -73.507051, + 45.517961 + ], + [ + -73.506891, + 45.517922 + ], + [ + -73.506664, + 45.517868 + ], + [ + -73.506809, + 45.51815 + ], + [ + -73.507145, + 45.518744 + ], + [ + -73.507259, + 45.518943 + ], + [ + -73.507357, + 45.519131 + ], + [ + -73.507383, + 45.519182 + ], + [ + -73.50755, + 45.519501 + ], + [ + -73.507772, + 45.519927 + ], + [ + -73.508237, + 45.520797 + ], + [ + -73.508248, + 45.520819 + ], + [ + -73.508312, + 45.520939 + ], + [ + -73.508254, + 45.52092 + ], + [ + -73.508192, + 45.520901 + ], + [ + -73.505549, + 45.520069 + ], + [ + -73.502258, + 45.518996 + ], + [ + -73.500428, + 45.5184 + ], + [ + -73.499965, + 45.518253 + ], + [ + -73.499567, + 45.518864 + ], + [ + -73.499201, + 45.519426 + ], + [ + -73.499567, + 45.518864 + ], + [ + -73.499965, + 45.518253 + ], + [ + -73.500428, + 45.5184 + ], + [ + -73.502258, + 45.518996 + ], + [ + -73.505549, + 45.520069 + ], + [ + -73.508192, + 45.520901 + ], + [ + -73.508254, + 45.52092 + ], + [ + -73.508312, + 45.520939 + ], + [ + -73.508495, + 45.520945 + ], + [ + -73.50864, + 45.520954 + ], + [ + -73.50874, + 45.520987 + ], + [ + -73.508774, + 45.520998 + ], + [ + -73.510243, + 45.521449 + ], + [ + -73.511284, + 45.521802 + ], + [ + -73.513145, + 45.522398 + ], + [ + -73.513209, + 45.522418 + ], + [ + -73.51336, + 45.522467 + ], + [ + -73.513513, + 45.522529 + ], + [ + -73.513495, + 45.521155 + ], + [ + -73.513485, + 45.520781 + ], + [ + -73.513484, + 45.520749 + ], + [ + -73.513498, + 45.520036 + ], + [ + -73.513674, + 45.519548 + ], + [ + -73.51387, + 45.519153 + ], + [ + -73.51389, + 45.519109 + ], + [ + -73.513909, + 45.519071 + ], + [ + -73.513721, + 45.518902 + ], + [ + -73.51358, + 45.51885 + ], + [ + -73.513326, + 45.518765 + ], + [ + -73.512939, + 45.51865 + ], + [ + -73.512238, + 45.518425 + ], + [ + -73.50991, + 45.51767 + ] + ] + }, + "id": 4, + "properties": { + "id": "e49a6423-b5c0-48bb-819e-10ff3b66bccf", + "data": { + "segments": [ + { + "distanceMeters": 693, + "travelTimeSeconds": 117 + }, + { + "distanceMeters": 861, + "travelTimeSeconds": 117 + }, + { + "distanceMeters": 1500, + "travelTimeSeconds": 231 + }, + { + "distanceMeters": 547, + "travelTimeSeconds": 80 + } + ], + "from_gtfs": false, + "nodeTypes": [ + "engine", + "engine", + "engine", + "engine", + "engine" + ], + "variables": { + "d_p": 3601, + "T_o_p": 660, + "n_q_p": 5, + "n_s_p": 5, + "d_l_avg": 900, + "d_l_max": 1500, + "d_l_med": 777, + "d_l_min": 547 + }, + "waypoints": [ + [], + [], + [], + [], + [] + ], + "routingMode": "bus_urban", + "routingEngine": "engine", + "routingFailed": false, + "waypointTypes": [ + [], + [], + [], + [], + [] + ], + "dwellTimeSeconds": [ + 0, + 20, + 20, + 20, + 20 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 3601, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 80, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.46, + "travelTimeWithoutDwellTimesSeconds": 540, + "operatingTimeWithLayoverTimeSeconds": 840, + "totalTravelTimeWithReturnBackSeconds": 840, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 660, + "operatingSpeedWithLayoverMetersPerSecond": 4.29, + "directRouteBetweenTerminalsDistanceMeters": 0, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.67, + "directRouteBetweenTerminalsTravelTimeSeconds": 0 + }, + "mode": "bus", + "name": null, + "color": "#8effb4", + "nodes": [ + "e66fb997-f83d-42a0-a232-e5b0a94a0caf", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "98279ff5-957b-4eeb-9ad3-2a9d5fb6ef98", + "9db6aff2-2175-49e9-984e-3eb4c8dd470c", + "e66fb997-f83d-42a0-a232-e5b0a94a0caf" + ], + "stops": [], + "line_id": "b3d40e64-3759-4fd4-bd7c-49c3aa16630c", + "segments": [ + 0, + 15, + 23, + 43 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-15T17:29:56.281719+00:00", + "integer_id": 4, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.505422, + 45.524593 + ], + [ + -73.503759, + 45.524045 + ], + [ + -73.503544, + 45.524366 + ], + [ + -73.503227, + 45.524837 + ], + [ + -73.502701, + 45.52562 + ], + [ + -73.500486, + 45.524902 + ], + [ + -73.500131, + 45.52476 + ], + [ + -73.500093, + 45.524745 + ], + [ + -73.500017, + 45.524714 + ], + [ + -73.499916, + 45.524664 + ], + [ + -73.499678, + 45.524544 + ], + [ + -73.496869, + 45.523566 + ], + [ + -73.49677, + 45.523532 + ], + [ + -73.496676, + 45.523499 + ], + [ + -73.496552, + 45.523456 + ], + [ + -73.496676, + 45.523499 + ], + [ + -73.49677, + 45.523532 + ], + [ + -73.496869, + 45.523566 + ], + [ + -73.499678, + 45.524544 + ], + [ + -73.499916, + 45.524664 + ], + [ + -73.500017, + 45.524714 + ], + [ + -73.500093, + 45.524745 + ], + [ + -73.500486, + 45.524902 + ], + [ + -73.502701, + 45.52562 + ], + [ + -73.50361, + 45.525921 + ], + [ + -73.505375, + 45.526503 + ], + [ + -73.505571, + 45.526568 + ], + [ + -73.506781, + 45.526968 + ], + [ + -73.507334, + 45.52715 + ], + [ + -73.507854, + 45.526365 + ], + [ + -73.508382, + 45.525568 + ], + [ + -73.510566, + 45.526288 + ], + [ + -73.510584, + 45.526294 + ], + [ + -73.510651, + 45.526316 + ], + [ + -73.510752, + 45.52635 + ], + [ + -73.510915, + 45.526403 + ], + [ + -73.510801, + 45.525535 + ], + [ + -73.510795, + 45.525489 + ], + [ + -73.510551, + 45.524579 + ], + [ + -73.510375, + 45.524523 + ], + [ + -73.510275, + 45.524491 + ], + [ + -73.51018, + 45.524458 + ], + [ + -73.509653, + 45.524285 + ], + [ + -73.50872, + 45.523979 + ], + [ + -73.508141, + 45.523971 + ], + [ + -73.507828, + 45.524421 + ], + [ + -73.507784, + 45.524484 + ], + [ + -73.510426, + 45.525377 + ], + [ + -73.510431, + 45.525413 + ], + [ + -73.510485, + 45.52576 + ], + [ + -73.510566, + 45.526288 + ], + [ + -73.508382, + 45.525568 + ], + [ + -73.505422, + 45.524593 + ] + ] + }, + "id": 5, + "properties": { + "id": "35c8a5a2-0fe6-4a47-ac73-199f5b36c532", + "data": { + "segments": [ + { + "distanceMeters": 560, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 316, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 1322, + "travelTimeSeconds": 164 + }, + { + "distanceMeters": 493, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 783, + "travelTimeSeconds": 112 + } + ], + "from_gtfs": false, + "nodeTypes": [ + "engine", + "engine", + "engine", + "engine", + "engine", + "engine" + ], + "variables": { + "d_p": 3474, + "T_o_p": 600, + "n_q_p": 6, + "n_s_p": 6, + "d_l_avg": 695, + "d_l_max": 1322, + "d_l_med": 560, + "d_l_min": 316 + }, + "waypoints": [ + [], + [], + [], + [], + [], + [] + ], + "routingMode": "bus_urban", + "routingEngine": "engine", + "routingFailed": false, + "waypointTypes": [ + [], + [], + [], + [], + [], + [] + ], + "dwellTimeSeconds": [ + 0, + 20, + 20, + 20, + 20, + 20 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 3474, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 100, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.79, + "travelTimeWithoutDwellTimesSeconds": 480, + "operatingTimeWithLayoverTimeSeconds": 780, + "totalTravelTimeWithReturnBackSeconds": 780, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 600, + "operatingSpeedWithLayoverMetersPerSecond": 4.45, + "directRouteBetweenTerminalsDistanceMeters": 0, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.24, + "directRouteBetweenTerminalsTravelTimeSeconds": 0 + }, + "mode": "bus", + "name": null, + "color": "#0086FF", + "nodes": [ + "e657782a-839d-417e-8b23-9ba7a22fe0b9", + "d41672d0-e186-418e-b20f-1d82b60c3365", + "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", + "1da8599d-038c-4242-b6d8-ab011dd7f5a1", + "e657782a-839d-417e-8b23-9ba7a22fe0b9" + ], + "stops": [], + "line_id": "7294de4e-9342-48e3-bd69-0ca3680cdd46", + "segments": [ + 0, + 6, + 14, + 32, + 45 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-16T19:23:01.485471+00:00", + "integer_id": 5, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.509779, + 45.517738 + ], + [ + -73.509715, + 45.517835 + ], + [ + -73.509185, + 45.518653 + ], + [ + -73.507051, + 45.517961 + ], + [ + -73.506891, + 45.517922 + ], + [ + -73.506664, + 45.517868 + ], + [ + -73.506809, + 45.51815 + ], + [ + -73.507145, + 45.518744 + ], + [ + -73.507259, + 45.518943 + ], + [ + -73.507357, + 45.519131 + ], + [ + -73.507383, + 45.519182 + ], + [ + -73.50755, + 45.519501 + ], + [ + -73.507772, + 45.519927 + ], + [ + -73.508237, + 45.520797 + ], + [ + -73.508248, + 45.520819 + ], + [ + -73.508312, + 45.520939 + ], + [ + -73.508254, + 45.52092 + ], + [ + -73.508192, + 45.520901 + ], + [ + -73.505549, + 45.520069 + ], + [ + -73.502258, + 45.518996 + ], + [ + -73.500428, + 45.5184 + ], + [ + -73.499965, + 45.518253 + ], + [ + -73.499567, + 45.518864 + ], + [ + -73.499201, + 45.519426 + ], + [ + -73.499567, + 45.518864 + ], + [ + -73.499965, + 45.518253 + ], + [ + -73.500424, + 45.517549 + ], + [ + -73.500893, + 45.516825 + ], + [ + -73.502684, + 45.517418 + ], + [ + -73.504537, + 45.518031 + ], + [ + -73.504989, + 45.517319 + ], + [ + -73.506664, + 45.517868 + ], + [ + -73.506891, + 45.517922 + ], + [ + -73.507051, + 45.517961 + ], + [ + -73.509185, + 45.518653 + ], + [ + -73.509715, + 45.517835 + ], + [ + -73.509779, + 45.517738 + ] + ] + }, + "id": 6, + "properties": { + "id": "f031cb7a-0e11-44b2-bc08-981fa913e881", + "data": { + "segments": [ + { + "distanceMeters": 693, + "travelTimeSeconds": 117 + }, + { + "distanceMeters": 861, + "travelTimeSeconds": 117 + }, + { + "distanceMeters": 1191, + "travelTimeSeconds": 171 + } + ], + "from_gtfs": false, + "nodeTypes": [ + "engine", + "engine", + "engine", + "engine" + ], + "variables": { + "d_p": 2745, + "T_o_p": 480, + "n_q_p": 4, + "n_s_p": 4, + "d_l_avg": 915, + "d_l_max": 1191, + "d_l_med": 861, + "d_l_min": 693 + }, + "waypoints": [ + [], + [], + [], + [] + ], + "routingMode": "bus_urban", + "routingEngine": "engine", + "routingFailed": false, + "waypointTypes": [ + [], + [], + [], + [] + ], + "dwellTimeSeconds": [ + 0, + 20, + 20, + 20 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 2745, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 60, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.72, + "travelTimeWithoutDwellTimesSeconds": 420, + "operatingTimeWithLayoverTimeSeconds": 660, + "totalTravelTimeWithReturnBackSeconds": 660, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 480, + "operatingSpeedWithLayoverMetersPerSecond": 4.16, + "directRouteBetweenTerminalsDistanceMeters": 0, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.54, + "directRouteBetweenTerminalsTravelTimeSeconds": 0 + }, + "mode": "bus", + "name": null, + "color": "#0086FF", + "nodes": [ + "e66fb997-f83d-42a0-a232-e5b0a94a0caf", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "98279ff5-957b-4eeb-9ad3-2a9d5fb6ef98", + "e66fb997-f83d-42a0-a232-e5b0a94a0caf" + ], + "stops": [], + "line_id": "2e1adead-b068-407c-adbe-53e437df5660", + "segments": [ + 0, + 15, + 23 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T14:18:01.197832+00:00", + "integer_id": 6, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.467824, + 45.491145 + ], + [ + -73.467697, + 45.491059 + ], + [ + -73.467397, + 45.490865 + ], + [ + -73.464811, + 45.492412 + ], + [ + -73.464112, + 45.492825 + ], + [ + -73.464104, + 45.49283 + ], + [ + -73.464035, + 45.492871 + ], + [ + -73.464281, + 45.493069 + ], + [ + -73.464583, + 45.493325 + ], + [ + -73.465048, + 45.493708 + ], + [ + -73.465053, + 45.493713 + ], + [ + -73.465135, + 45.493784 + ], + [ + -73.465425, + 45.494023 + ], + [ + -73.465714, + 45.494266 + ], + [ + -73.465999, + 45.494495 + ], + [ + -73.466014, + 45.494508 + ], + [ + -73.466311, + 45.494743 + ], + [ + -73.466595, + 45.494982 + ], + [ + -73.466865, + 45.495202 + ], + [ + -73.467151, + 45.495441 + ], + [ + -73.467339, + 45.495594 + ], + [ + -73.467417, + 45.495657 + ], + [ + -73.46768, + 45.495882 + ], + [ + -73.468074, + 45.496206 + ], + [ + -73.468449, + 45.496516 + ], + [ + -73.468677, + 45.496707 + ], + [ + -73.468809, + 45.496818 + ], + [ + -73.469174, + 45.497106 + ], + [ + -73.469247, + 45.497142 + ], + [ + -73.469532, + 45.497376 + ], + [ + -73.469589, + 45.497422 + ], + [ + -73.469768, + 45.497569 + ], + [ + -73.470122, + 45.497907 + ], + [ + -73.470322, + 45.498065 + ], + [ + -73.470813, + 45.498474 + ], + [ + -73.4709, + 45.49855 + ], + [ + -73.470968, + 45.498609 + ], + [ + -73.471205, + 45.498803 + ], + [ + -73.471624, + 45.499149 + ], + [ + -73.472169, + 45.499587 + ], + [ + -73.472173, + 45.49959 + ], + [ + -73.472276, + 45.499676 + ], + [ + -73.472579, + 45.499928 + ], + [ + -73.472986, + 45.50027 + ], + [ + -73.47341, + 45.500627 + ], + [ + -73.473574, + 45.500765 + ], + [ + -73.473641, + 45.500823 + ], + [ + -73.474037, + 45.500587 + ], + [ + -73.4741, + 45.500549 + ], + [ + -73.474634, + 45.500231 + ], + [ + -73.474786, + 45.50014 + ], + [ + -73.475296, + 45.499829 + ], + [ + -73.477408, + 45.498543 + ], + [ + -73.477805, + 45.4983 + ], + [ + -73.478138, + 45.498098 + ], + [ + -73.478257, + 45.498026 + ], + [ + -73.478614, + 45.497765 + ], + [ + -73.478948, + 45.497531 + ], + [ + -73.479562, + 45.49709 + ], + [ + -73.47968, + 45.497005 + ], + [ + -73.480412, + 45.496479 + ], + [ + -73.481154, + 45.495952 + ], + [ + -73.481268, + 45.495871 + ], + [ + -73.481819, + 45.495495 + ], + [ + -73.482, + 45.495372 + ], + [ + -73.482144, + 45.49526 + ], + [ + -73.483351, + 45.494382 + ], + [ + -73.483943, + 45.49396 + ], + [ + -73.48407, + 45.49387 + ], + [ + -73.484957, + 45.493231 + ], + [ + -73.485984, + 45.492507 + ], + [ + -73.486068, + 45.492448 + ], + [ + -73.486525, + 45.49212 + ], + [ + -73.486777, + 45.49194 + ], + [ + -73.486792, + 45.491931 + ], + [ + -73.487065, + 45.491769 + ], + [ + -73.487258, + 45.491649 + ], + [ + -73.487383, + 45.491571 + ], + [ + -73.48867, + 45.490802 + ], + [ + -73.48937, + 45.49038 + ], + [ + -73.489454, + 45.490329 + ], + [ + -73.49048, + 45.489717 + ], + [ + -73.491248, + 45.489251 + ], + [ + -73.491548, + 45.48907 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.491721, + 45.489052 + ], + [ + -73.491915, + 45.48919 + ], + [ + -73.492218, + 45.489407 + ], + [ + -73.492419, + 45.48955 + ], + [ + -73.492465, + 45.489583 + ], + [ + -73.492778, + 45.489803 + ], + [ + -73.492976, + 45.489943 + ], + [ + -73.493573, + 45.490366 + ], + [ + -73.493701, + 45.490456 + ], + [ + -73.493838, + 45.49055 + ], + [ + -73.494242, + 45.490838 + ], + [ + -73.49426, + 45.49085 + ], + [ + -73.49433, + 45.490897 + ], + [ + -73.494917, + 45.491315 + ], + [ + -73.495204, + 45.491517 + ], + [ + -73.495442, + 45.491684 + ], + [ + -73.49562, + 45.491814 + ], + [ + -73.495851, + 45.491976 + ], + [ + -73.496235, + 45.492242 + ], + [ + -73.496321, + 45.492305 + ], + [ + -73.496373, + 45.492342 + ], + [ + -73.496416, + 45.492372 + ], + [ + -73.496772, + 45.492629 + ], + [ + -73.497128, + 45.492885 + ], + [ + -73.497339, + 45.493038 + ], + [ + -73.497557, + 45.493191 + ], + [ + -73.497625, + 45.493243 + ], + [ + -73.497771, + 45.493353 + ], + [ + -73.497866, + 45.493425 + ], + [ + -73.497927, + 45.49347 + ], + [ + -73.497995, + 45.493515 + ], + [ + -73.49804, + 45.493547 + ], + [ + -73.498238, + 45.493691 + ], + [ + -73.49848, + 45.493866 + ], + [ + -73.498616, + 45.49397 + ], + [ + -73.498797, + 45.494096 + ], + [ + -73.498924, + 45.49419 + ], + [ + -73.499159, + 45.494361 + ], + [ + -73.499315, + 45.494474 + ], + [ + -73.499359, + 45.494506 + ], + [ + -73.49959, + 45.494676 + ], + [ + -73.499763, + 45.494802 + ], + [ + -73.499778, + 45.494815 + ], + [ + -73.499809, + 45.494836 + ], + [ + -73.500025, + 45.494979 + ], + [ + -73.500064, + 45.495 + ], + [ + -73.500106, + 45.495026 + ], + [ + -73.500592, + 45.495409 + ], + [ + -73.50081, + 45.495567 + ], + [ + -73.501059, + 45.495724 + ], + [ + -73.501182, + 45.495805 + ], + [ + -73.501279, + 45.495868 + ], + [ + -73.501293, + 45.495878 + ], + [ + -73.501808, + 45.496251 + ], + [ + -73.502256, + 45.496562 + ], + [ + -73.502293, + 45.496588 + ], + [ + -73.502336, + 45.49662 + ], + [ + -73.50284, + 45.49698 + ], + [ + -73.50327, + 45.49729 + ], + [ + -73.503408, + 45.497389 + ], + [ + -73.503475, + 45.497438 + ], + [ + -73.504131, + 45.497897 + ], + [ + -73.504473, + 45.49814 + ], + [ + -73.504683, + 45.498293 + ], + [ + -73.50476, + 45.498351 + ], + [ + -73.504839, + 45.49841 + ], + [ + -73.505105, + 45.498595 + ], + [ + -73.505329, + 45.498757 + ], + [ + -73.505704, + 45.498928 + ], + [ + -73.506001, + 45.499076 + ], + [ + -73.506259, + 45.499211 + ], + [ + -73.506709, + 45.499427 + ], + [ + -73.506801, + 45.499467 + ], + [ + -73.507253, + 45.49966 + ], + [ + -73.50735, + 45.499701 + ], + [ + -73.507712, + 45.499859 + ], + [ + -73.508861, + 45.50034 + ], + [ + -73.508958, + 45.500376 + ], + [ + -73.509608, + 45.500651 + ], + [ + -73.509762, + 45.500713 + ], + [ + -73.50993, + 45.500781 + ], + [ + -73.510431, + 45.50101 + ], + [ + -73.511327, + 45.50142 + ], + [ + -73.512063, + 45.501735 + ], + [ + -73.512398, + 45.501874 + ], + [ + -73.5127, + 45.501847 + ], + [ + -73.512897, + 45.501829 + ], + [ + -73.513035, + 45.501807 + ], + [ + -73.513284, + 45.501793 + ], + [ + -73.513307, + 45.501792 + ], + [ + -73.51344, + 45.501784 + ], + [ + -73.513522, + 45.501784 + ], + [ + -73.5136, + 45.501784 + ], + [ + -73.513805, + 45.501793 + ], + [ + -73.514045, + 45.501797 + ], + [ + -73.514024, + 45.501904 + ], + [ + -73.513894, + 45.502212 + ], + [ + -73.513873, + 45.50226 + ], + [ + -73.513806, + 45.502427 + ], + [ + -73.513748, + 45.502535 + ], + [ + -73.513316, + 45.503103 + ], + [ + -73.512873, + 45.503688 + ], + [ + -73.512716, + 45.503804 + ], + [ + -73.512312, + 45.504357 + ], + [ + -73.512272, + 45.504412 + ], + [ + -73.511819, + 45.505019 + ], + [ + -73.511431, + 45.505535 + ], + [ + -73.511362, + 45.505627 + ], + [ + -73.510901, + 45.506234 + ], + [ + -73.510508, + 45.506768 + ], + [ + -73.510451, + 45.506846 + ], + [ + -73.509985, + 45.507458 + ], + [ + -73.509591, + 45.507973 + ], + [ + -73.509531, + 45.508052 + ], + [ + -73.509072, + 45.508673 + ], + [ + -73.50866, + 45.509213 + ], + [ + -73.508585, + 45.509312 + ], + [ + -73.508101, + 45.509951 + ], + [ + -73.507672, + 45.510524 + ], + [ + -73.507613, + 45.510603 + ], + [ + -73.507132, + 45.511251 + ], + [ + -73.506652, + 45.51189 + ], + [ + -73.506234, + 45.512451 + ], + [ + -73.506149, + 45.512565 + ], + [ + -73.506238, + 45.512601 + ], + [ + -73.506546, + 45.512721 + ], + [ + -73.508131, + 45.513338 + ], + [ + -73.508574, + 45.513515 + ], + [ + -73.508741, + 45.513581 + ], + [ + -73.509393, + 45.513802 + ], + [ + -73.50981, + 45.513942 + ], + [ + -73.510118, + 45.514045 + ], + [ + -73.511388, + 45.514467 + ], + [ + -73.511507, + 45.514508 + ], + [ + -73.512165, + 45.514728 + ], + [ + -73.512742, + 45.514926 + ], + [ + -73.512796, + 45.514944 + ], + [ + -73.514448, + 45.515508 + ], + [ + -73.514563, + 45.515547 + ], + [ + -73.515414, + 45.515844 + ], + [ + -73.516876, + 45.516355 + ], + [ + -73.51692, + 45.51637 + ], + [ + -73.517233, + 45.516487 + ], + [ + -73.51726, + 45.516497 + ], + [ + -73.517318, + 45.516518 + ], + [ + -73.517741, + 45.516671 + ], + [ + -73.517978, + 45.516757 + ], + [ + -73.518077, + 45.516793 + ], + [ + -73.518456, + 45.516887 + ], + [ + -73.519041, + 45.517036 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.51945, + 45.517552 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520113, + 45.519738 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520194, + 45.520238 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.521017, + 45.523892 + ], + [ + -73.521053, + 45.523883 + ], + [ + -73.521061, + 45.523869 + ], + [ + -73.521065, + 45.523851 + ], + [ + -73.521071, + 45.523799 + ] + ] + }, + "id": 7, + "properties": { + "id": "13450f00-1c31-4439-a438-77611afa2920", + "data": { + "gtfs": { + "shape_id": "1_1_A" + }, + "segments": [ + { + "distanceMeters": 383, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 358, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 604, + "travelTimeSeconds": 141 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9171, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5510.842976306596, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.88, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 5.27, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.88 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "cee5ccf3-ece1-4350-8264-3c360d07d279", + "c369e9dc-cf92-48cf-bb8f-a258dbed5d8d", + "3f687a06-b3d8-47a1-ba8d-00632eabcaf7", + "c988f5aa-9ab5-48a6-898c-21c53961d2f3", + "2b94ffb1-8934-4ee0-a36c-60c433b4d09e", + "5f4522a4-83cd-4392-9a71-d32067987a56", + "796a2647-8b16-4b22-808f-454e1bee3449", + "4a83802a-cebb-4e1a-b140-a3d386f52eae", + "a44c12a5-9a53-4288-b77a-08bf3c4eaadc", + "300a7442-8453-4aa4-89f9-beacdcc75174", + "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", + "de8aa4d4-205c-4786-8a75-8902d51d8a41", + "6a2c9077-d7bd-4c23-a90d-45a5568fbdc9", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "3040b262-0b20-4c40-9350-e484adfe1d60", + "ff721ee3-8729-47c1-80cd-7dd5e7142284", + "f132c08e-1812-4b2f-84fb-340628d1ac39", + "5573bb7b-19f0-4d2b-a66d-9f04f87c1987", + "1bded3cb-51a3-422d-8815-a9027023991e", + "88d8365e-2528-4422-a483-bb2efd9de617", + "0b6032e7-414a-429f-9df2-796599b947c2", + "1cedf968-65c8-4c0f-b92c-c06da7b8fe69", + "16f75d06-f538-4735-a99f-9bc7eaa6eaab", + "1cea6199-481e-43b0-8d4a-8c7593ff485f", + "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", + "6557d1fe-6975-49e2-871c-ab07d42ea35b", + "0ac44bed-6f37-406e-8654-f8d5f36c840e", + "443288e2-2ae9-4c97-a015-0e176d8f71b2", + "a230c1b0-ee13-40c1-8d3f-12ae20006cc6", + "1232f389-204f-48ac-a95f-0f1b3e5706b2", + "9bf48d6d-7a0b-4fbe-9125-1eef756e334f", + "36a7184c-7248-4c15-a0a7-68c04bd48cc7", + "ed39b486-0ae1-40e4-a1bb-022292e07d90", + "bb609a9b-192c-4f8e-9177-9dbd5b0d51a5", + "7009c13e-76ca-4283-afe5-33492dbd6d10", + "2227a38f-9c32-4890-9719-eef7445fa1fc", + "969092dd-fcfd-493a-be55-d0467c757fb1", + "2a197d72-1b4b-4077-a350-4c8656ad7bb1", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "f250cba5-329e-4403-912d-778f924ce25e", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "b2ed3ea0-0792-4b3c-8998-6032b0a10e51", + "segments": [ + 0, + 5, + 10, + 15, + 20, + 25, + 30, + 35, + 39, + 44, + 49, + 54, + 58, + 63, + 67, + 70, + 76, + 79, + 82, + 96, + 105, + 111, + 128, + 137, + 139, + 149, + 158, + 166, + 181, + 188, + 191, + 194, + 197, + 200, + 203, + 207, + 212, + 220, + 222, + 227, + 234, + 243 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 7, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521071, + 45.523799 + ], + [ + -73.521073, + 45.52378 + ], + [ + -73.521082, + 45.523698 + ], + [ + -73.521077, + 45.523679 + ], + [ + -73.52106, + 45.523665 + ], + [ + -73.521034, + 45.523659 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519706, + 45.52323 + ], + [ + -73.519853, + 45.522939 + ], + [ + -73.519869, + 45.522907 + ], + [ + -73.520158, + 45.522337 + ], + [ + -73.520306, + 45.521899 + ], + [ + -73.520306, + 45.521896 + ], + [ + -73.520354, + 45.521696 + ], + [ + -73.520401, + 45.521498 + ], + [ + -73.520405, + 45.521373 + ], + [ + -73.520409, + 45.52119 + ], + [ + -73.520398, + 45.521025 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520191, + 45.520225 + ], + [ + -73.520124, + 45.519907 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.518685, + 45.516946 + ], + [ + -73.518456, + 45.516887 + ], + [ + -73.518077, + 45.516793 + ], + [ + -73.517978, + 45.516757 + ], + [ + -73.517741, + 45.516671 + ], + [ + -73.517493, + 45.516582 + ], + [ + -73.517318, + 45.516518 + ], + [ + -73.517055, + 45.51642 + ], + [ + -73.51692, + 45.51637 + ], + [ + -73.516876, + 45.516355 + ], + [ + -73.515414, + 45.515844 + ], + [ + -73.514735, + 45.515607 + ], + [ + -73.514563, + 45.515547 + ], + [ + -73.512796, + 45.514944 + ], + [ + -73.512165, + 45.514728 + ], + [ + -73.511598, + 45.514539 + ], + [ + -73.511507, + 45.514508 + ], + [ + -73.511388, + 45.514467 + ], + [ + -73.510118, + 45.514045 + ], + [ + -73.50981, + 45.513942 + ], + [ + -73.509393, + 45.513802 + ], + [ + -73.508868, + 45.513624 + ], + [ + -73.508741, + 45.513581 + ], + [ + -73.508131, + 45.513338 + ], + [ + -73.506739, + 45.512796 + ], + [ + -73.506238, + 45.512601 + ], + [ + -73.506354, + 45.512449 + ], + [ + -73.506754, + 45.511926 + ], + [ + -73.507227, + 45.511287 + ], + [ + -73.507624, + 45.510754 + ], + [ + -73.507709, + 45.510639 + ], + [ + -73.508209, + 45.509991 + ], + [ + -73.508625, + 45.509428 + ], + [ + -73.508684, + 45.509348 + ], + [ + -73.509167, + 45.508704 + ], + [ + -73.509534, + 45.50821 + ], + [ + -73.509625, + 45.508088 + ], + [ + -73.510082, + 45.507498 + ], + [ + -73.510454, + 45.506996 + ], + [ + -73.510542, + 45.506877 + ], + [ + -73.510994, + 45.506265 + ], + [ + -73.51133, + 45.505816 + ], + [ + -73.511448, + 45.505658 + ], + [ + -73.511912, + 45.505051 + ], + [ + -73.512265, + 45.504567 + ], + [ + -73.512356, + 45.504443 + ], + [ + -73.512804, + 45.50384 + ], + [ + -73.512873, + 45.503688 + ], + [ + -73.51324, + 45.503204 + ], + [ + -73.513316, + 45.503103 + ], + [ + -73.513748, + 45.502535 + ], + [ + -73.513806, + 45.502427 + ], + [ + -73.513873, + 45.50226 + ], + [ + -73.513904, + 45.502187 + ], + [ + -73.514024, + 45.501904 + ], + [ + -73.514045, + 45.501797 + ], + [ + -73.513805, + 45.501793 + ], + [ + -73.5136, + 45.501784 + ], + [ + -73.513522, + 45.501784 + ], + [ + -73.51344, + 45.501784 + ], + [ + -73.513284, + 45.501793 + ], + [ + -73.513131, + 45.501801 + ], + [ + -73.513035, + 45.501807 + ], + [ + -73.512897, + 45.501829 + ], + [ + -73.5127, + 45.501847 + ], + [ + -73.512501, + 45.501865 + ], + [ + -73.512398, + 45.501874 + ], + [ + -73.512063, + 45.501735 + ], + [ + -73.511327, + 45.50142 + ], + [ + -73.50993, + 45.500781 + ], + [ + -73.509906, + 45.500771 + ], + [ + -73.509762, + 45.500713 + ], + [ + -73.509608, + 45.500651 + ], + [ + -73.508958, + 45.500376 + ], + [ + -73.508861, + 45.50034 + ], + [ + -73.507712, + 45.499859 + ], + [ + -73.50735, + 45.499701 + ], + [ + -73.507069, + 45.499581 + ], + [ + -73.506801, + 45.499467 + ], + [ + -73.506709, + 45.499427 + ], + [ + -73.506259, + 45.499211 + ], + [ + -73.506001, + 45.499076 + ], + [ + -73.505704, + 45.498928 + ], + [ + -73.505329, + 45.498757 + ], + [ + -73.505105, + 45.498595 + ], + [ + -73.50495, + 45.498488 + ], + [ + -73.504839, + 45.49841 + ], + [ + -73.504683, + 45.498293 + ], + [ + -73.504473, + 45.49814 + ], + [ + -73.504131, + 45.497897 + ], + [ + -73.503475, + 45.497438 + ], + [ + -73.503408, + 45.497389 + ], + [ + -73.50327, + 45.49729 + ], + [ + -73.50284, + 45.49698 + ], + [ + -73.502635, + 45.496833 + ], + [ + -73.502336, + 45.49662 + ], + [ + -73.502293, + 45.496588 + ], + [ + -73.501808, + 45.496251 + ], + [ + -73.501447, + 45.495989 + ], + [ + -73.501279, + 45.495868 + ], + [ + -73.501182, + 45.495805 + ], + [ + -73.501059, + 45.495724 + ], + [ + -73.50081, + 45.495567 + ], + [ + -73.500592, + 45.495409 + ], + [ + -73.500497, + 45.495334 + ], + [ + -73.500106, + 45.495026 + ], + [ + -73.500064, + 45.495 + ], + [ + -73.500025, + 45.494979 + ], + [ + -73.499778, + 45.494815 + ], + [ + -73.499763, + 45.494802 + ], + [ + -73.49959, + 45.494676 + ], + [ + -73.499359, + 45.494506 + ], + [ + -73.499315, + 45.494474 + ], + [ + -73.499159, + 45.494361 + ], + [ + -73.498924, + 45.49419 + ], + [ + -73.498797, + 45.494096 + ], + [ + -73.498616, + 45.49397 + ], + [ + -73.49848, + 45.493866 + ], + [ + -73.49824, + 45.493692 + ], + [ + -73.498238, + 45.493691 + ], + [ + -73.49804, + 45.493547 + ], + [ + -73.497995, + 45.493515 + ], + [ + -73.497927, + 45.49347 + ], + [ + -73.497866, + 45.493425 + ], + [ + -73.497771, + 45.493353 + ], + [ + -73.497557, + 45.493191 + ], + [ + -73.497339, + 45.493038 + ], + [ + -73.497128, + 45.492885 + ], + [ + -73.496772, + 45.492629 + ], + [ + -73.496465, + 45.492408 + ], + [ + -73.496416, + 45.492372 + ], + [ + -73.496321, + 45.492305 + ], + [ + -73.496235, + 45.492242 + ], + [ + -73.495851, + 45.491976 + ], + [ + -73.49562, + 45.491814 + ], + [ + -73.495442, + 45.491684 + ], + [ + -73.495204, + 45.491517 + ], + [ + -73.494917, + 45.491315 + ], + [ + -73.49433, + 45.490897 + ], + [ + -73.494242, + 45.490838 + ], + [ + -73.494217, + 45.49082 + ], + [ + -73.493838, + 45.49055 + ], + [ + -73.493701, + 45.490456 + ], + [ + -73.493573, + 45.490366 + ], + [ + -73.492976, + 45.489943 + ], + [ + -73.492778, + 45.489803 + ], + [ + -73.492465, + 45.489583 + ], + [ + -73.492419, + 45.48955 + ], + [ + -73.492259, + 45.489436 + ], + [ + -73.492218, + 45.489407 + ], + [ + -73.491721, + 45.489052 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.491557, + 45.488939 + ], + [ + -73.491474, + 45.489016 + ], + [ + -73.490914, + 45.489355 + ], + [ + -73.490406, + 45.489663 + ], + [ + -73.48945, + 45.490224 + ], + [ + -73.48937, + 45.490271 + ], + [ + -73.488602, + 45.490739 + ], + [ + -73.487449, + 45.491431 + ], + [ + -73.487307, + 45.491517 + ], + [ + -73.486988, + 45.491706 + ], + [ + -73.486715, + 45.491868 + ], + [ + -73.486061, + 45.492323 + ], + [ + -73.485972, + 45.492385 + ], + [ + -73.484881, + 45.493177 + ], + [ + -73.484068, + 45.493759 + ], + [ + -73.483989, + 45.493816 + ], + [ + -73.483267, + 45.494328 + ], + [ + -73.4824, + 45.494952 + ], + [ + -73.482055, + 45.495201 + ], + [ + -73.481907, + 45.495309 + ], + [ + -73.481181, + 45.495808 + ], + [ + -73.48115, + 45.49583 + ], + [ + -73.481064, + 45.495889 + ], + [ + -73.480331, + 45.496429 + ], + [ + -73.47986, + 45.496767 + ], + [ + -73.479598, + 45.496955 + ], + [ + -73.478866, + 45.497477 + ], + [ + -73.478537, + 45.497711 + ], + [ + -73.478284, + 45.497898 + ], + [ + -73.478178, + 45.497976 + ], + [ + -73.477734, + 45.498242 + ], + [ + -73.477336, + 45.498485 + ], + [ + -73.475222, + 45.499771 + ], + [ + -73.47484, + 45.500009 + ], + [ + -73.474718, + 45.500086 + ], + [ + -73.473777, + 45.500644 + ], + [ + -73.473574, + 45.500765 + ], + [ + -73.473143, + 45.500402 + ], + [ + -73.472986, + 45.50027 + ], + [ + -73.472579, + 45.499928 + ], + [ + -73.472381, + 45.499763 + ], + [ + -73.472276, + 45.499676 + ], + [ + -73.472173, + 45.49959 + ], + [ + -73.471624, + 45.499149 + ], + [ + -73.471205, + 45.498803 + ], + [ + -73.471079, + 45.498699 + ], + [ + -73.470968, + 45.498609 + ], + [ + -73.470813, + 45.498474 + ], + [ + -73.470322, + 45.498065 + ], + [ + -73.470122, + 45.497907 + ], + [ + -73.469868, + 45.497665 + ], + [ + -73.469768, + 45.497569 + ], + [ + -73.469532, + 45.497376 + ], + [ + -73.469247, + 45.497142 + ], + [ + -73.469174, + 45.497106 + ], + [ + -73.468908, + 45.496896 + ], + [ + -73.468809, + 45.496818 + ], + [ + -73.468449, + 45.496516 + ], + [ + -73.468074, + 45.496206 + ], + [ + -73.46768, + 45.495882 + ], + [ + -73.467551, + 45.495771 + ], + [ + -73.467417, + 45.495657 + ], + [ + -73.467151, + 45.495441 + ], + [ + -73.466865, + 45.495202 + ], + [ + -73.466595, + 45.494982 + ], + [ + -73.466311, + 45.494743 + ], + [ + -73.465999, + 45.494495 + ], + [ + -73.465802, + 45.494337 + ], + [ + -73.465714, + 45.494266 + ], + [ + -73.466114, + 45.494026 + ], + [ + -73.466671, + 45.49369 + ], + [ + -73.469113, + 45.492234 + ], + [ + -73.469303, + 45.492121 + ], + [ + -73.469006, + 45.491923 + ], + [ + -73.468656, + 45.491698 + ], + [ + -73.468573, + 45.49163 + ], + [ + -73.468166, + 45.49136 + ], + [ + -73.468094, + 45.49132 + ], + [ + -73.468029, + 45.491284 + ], + [ + -73.467824, + 45.491145 + ] + ] + }, + "id": 8, + "properties": { + "id": "7e6751aa-a661-4e2f-8d08-ce935bb45a6b", + "data": { + "gtfs": { + "shape_id": "1_1_R" + }, + "segments": [ + { + "distanceMeters": 551, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 471, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 104, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 97 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 359, + "travelTimeSeconds": 98 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 49 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9062, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5510.842976306596, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.59, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 5.03, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.59 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "f250cba5-329e-4403-912d-778f924ce25e", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "f1be4054-f28c-45a4-bc0b-58b82e1e6e83", + "969092dd-fcfd-493a-be55-d0467c757fb1", + "2227a38f-9c32-4890-9719-eef7445fa1fc", + "7009c13e-76ca-4283-afe5-33492dbd6d10", + "bb609a9b-192c-4f8e-9177-9dbd5b0d51a5", + "ed39b486-0ae1-40e4-a1bb-022292e07d90", + "36a7184c-7248-4c15-a0a7-68c04bd48cc7", + "9bf48d6d-7a0b-4fbe-9125-1eef756e334f", + "1232f389-204f-48ac-a95f-0f1b3e5706b2", + "23cc64ae-3ce4-46c2-8d0a-9082f50074d0", + "a230c1b0-ee13-40c1-8d3f-12ae20006cc6", + "46687bb1-1189-4edc-bbd4-c90db18d4ff5", + "df5b9592-81e3-4b2c-8a30-7f3a9144671b", + "d24bea6e-da8d-4183-8a5f-0e99be199484", + "6557d1fe-6975-49e2-871c-ab07d42ea35b", + "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", + "1cea6199-481e-43b0-8d4a-8c7593ff485f", + "467e03f3-2556-4d22-ae48-618a76e6b0b4", + "ea9801c9-a110-4900-bcae-f1b3a40050e8", + "0b6032e7-414a-429f-9df2-796599b947c2", + "88d8365e-2528-4422-a483-bb2efd9de617", + "fa220212-b6b2-4456-934f-7248f9884444", + "a2e6b668-43de-43be-8b1b-07b41b333c8d", + "f132c08e-1812-4b2f-84fb-340628d1ac39", + "ff721ee3-8729-47c1-80cd-7dd5e7142284", + "3040b262-0b20-4c40-9350-e484adfe1d60", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "5cb517a3-d58a-47b9-835f-b13bd908a6f9", + "6a2c9077-d7bd-4c23-a90d-45a5568fbdc9", + "de8aa4d4-205c-4786-8a75-8902d51d8a41", + "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", + "300a7442-8453-4aa4-89f9-beacdcc75174", + "a44c12a5-9a53-4288-b77a-08bf3c4eaadc", + "4a83802a-cebb-4e1a-b140-a3d386f52eae", + "796a2647-8b16-4b22-808f-454e1bee3449", + "5f4522a4-83cd-4392-9a71-d32067987a56", + "2b94ffb1-8934-4ee0-a36c-60c433b4d09e", + "c988f5aa-9ab5-48a6-898c-21c53961d2f3", + "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", + "cee5ccf3-ece1-4350-8264-3c360d07d279" + ], + "stops": [], + "line_id": "b2ed3ea0-0792-4b3c-8998-6032b0a10e51", + "segments": [ + 0, + 27, + 41, + 47, + 51, + 57, + 60, + 65, + 68, + 71, + 74, + 77, + 80, + 84, + 89, + 101, + 106, + 113, + 121, + 130, + 134, + 140, + 154, + 165, + 176, + 184, + 192, + 195, + 199, + 202, + 205, + 209, + 212, + 216, + 221, + 223, + 228, + 233, + 238, + 243, + 248, + 255, + 259 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 8, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.455926, + 45.500402 + ], + [ + -73.455803, + 45.500305 + ], + [ + -73.455726, + 45.500228 + ], + [ + -73.455806, + 45.50017 + ], + [ + -73.456009, + 45.500058 + ], + [ + -73.458121, + 45.498805 + ], + [ + -73.45823, + 45.49874 + ], + [ + -73.45866, + 45.498475 + ], + [ + -73.459486, + 45.49798 + ], + [ + -73.460119, + 45.497603 + ], + [ + -73.460224, + 45.497535 + ], + [ + -73.460165, + 45.497427 + ], + [ + -73.460063, + 45.497324 + ], + [ + -73.460026, + 45.497271 + ], + [ + -73.459954, + 45.497171 + ], + [ + -73.459892, + 45.497045 + ], + [ + -73.45984, + 45.496946 + ], + [ + -73.459805, + 45.496797 + ], + [ + -73.45979, + 45.496635 + ], + [ + -73.459786, + 45.496572 + ], + [ + -73.45979, + 45.496433 + ], + [ + -73.459822, + 45.496293 + ], + [ + -73.46018, + 45.495429 + ], + [ + -73.460269, + 45.495227 + ], + [ + -73.460318, + 45.495105 + ], + [ + -73.460354, + 45.495016 + ], + [ + -73.460277, + 45.4948 + ], + [ + -73.460132, + 45.49444 + ], + [ + -73.459999, + 45.494098 + ], + [ + -73.459885, + 45.493814 + ], + [ + -73.459784, + 45.493562 + ], + [ + -73.45974, + 45.493441 + ], + [ + -73.459717, + 45.493391 + ], + [ + -73.459678, + 45.493328 + ], + [ + -73.45962, + 45.493243 + ], + [ + -73.459564, + 45.493189 + ], + [ + -73.459056, + 45.492755 + ], + [ + -73.458942, + 45.492657 + ], + [ + -73.459245, + 45.492482 + ], + [ + -73.459615, + 45.492262 + ], + [ + -73.459321, + 45.492023 + ], + [ + -73.459035, + 45.491789 + ], + [ + -73.458975, + 45.49174 + ], + [ + -73.458833, + 45.491614 + ], + [ + -73.458646, + 45.491492 + ], + [ + -73.458531, + 45.491443 + ], + [ + -73.45836, + 45.491343 + ], + [ + -73.458297, + 45.491303 + ], + [ + -73.457958, + 45.491019 + ], + [ + -73.457842, + 45.49092 + ], + [ + -73.457829, + 45.490908 + ], + [ + -73.457738, + 45.49083 + ], + [ + -73.456382, + 45.491631 + ], + [ + -73.454853, + 45.492545 + ], + [ + -73.454766, + 45.492597 + ], + [ + -73.454215, + 45.492926 + ], + [ + -73.45188, + 45.494323 + ], + [ + -73.451788, + 45.494378 + ], + [ + -73.451626, + 45.494472 + ], + [ + -73.44889, + 45.496102 + ], + [ + -73.44881, + 45.496149 + ], + [ + -73.448168, + 45.496536 + ], + [ + -73.447761, + 45.49678 + ], + [ + -73.447323, + 45.497044 + ], + [ + -73.447443, + 45.49711 + ], + [ + -73.447676, + 45.497238 + ], + [ + -73.448036, + 45.497431 + ], + [ + -73.44838, + 45.497616 + ], + [ + -73.448779, + 45.497827 + ], + [ + -73.449434, + 45.49821 + ], + [ + -73.449496, + 45.498237 + ], + [ + -73.449546, + 45.498251 + ], + [ + -73.449725, + 45.498152 + ], + [ + -73.449769, + 45.498126 + ], + [ + -73.449884, + 45.498057 + ], + [ + -73.450085, + 45.497941 + ], + [ + -73.450487, + 45.498161 + ], + [ + -73.451013, + 45.498449 + ], + [ + -73.451357, + 45.498643 + ], + [ + -73.451834, + 45.498904 + ], + [ + -73.452113, + 45.499057 + ], + [ + -73.45239, + 45.499212 + ], + [ + -73.452639, + 45.49935 + ], + [ + -73.452794, + 45.499431 + ], + [ + -73.453172, + 45.499634 + ], + [ + -73.453483, + 45.499755 + ], + [ + -73.45482, + 45.500233 + ], + [ + -73.454914, + 45.500255 + ], + [ + -73.455067, + 45.500305 + ], + [ + -73.455166, + 45.5003 + ], + [ + -73.455262, + 45.5003 + ], + [ + -73.455439, + 45.500273 + ], + [ + -73.455525, + 45.50026 + ], + [ + -73.455726, + 45.500228 + ], + [ + -73.455803, + 45.500305 + ], + [ + -73.456099, + 45.500539 + ], + [ + -73.45648, + 45.500755 + ], + [ + -73.457135, + 45.501093 + ], + [ + -73.457312, + 45.501192 + ], + [ + -73.457366, + 45.501237 + ], + [ + -73.457541, + 45.501378 + ], + [ + -73.457629, + 45.501448 + ], + [ + -73.458179, + 45.50112 + ], + [ + -73.458392, + 45.500985 + ], + [ + -73.458619, + 45.50085 + ], + [ + -73.458792, + 45.500752 + ], + [ + -73.458922, + 45.500676 + ], + [ + -73.45911, + 45.500567 + ], + [ + -73.459247, + 45.50068 + ], + [ + -73.459797, + 45.501134 + ], + [ + -73.460303, + 45.501557 + ], + [ + -73.460537, + 45.501755 + ], + [ + -73.460681, + 45.501872 + ], + [ + -73.460819, + 45.501989 + ], + [ + -73.460922, + 45.502075 + ], + [ + -73.461281, + 45.501859 + ], + [ + -73.461414, + 45.50178 + ], + [ + -73.461628, + 45.501652 + ], + [ + -73.461886, + 45.501859 + ], + [ + -73.46216, + 45.502089 + ], + [ + -73.462443, + 45.502336 + ], + [ + -73.462726, + 45.502584 + ], + [ + -73.463263, + 45.503039 + ], + [ + -73.463278, + 45.503051 + ], + [ + -73.463363, + 45.503124 + ], + [ + -73.463564, + 45.503003 + ], + [ + -73.464212, + 45.502612 + ], + [ + -73.466585, + 45.501196 + ], + [ + -73.466934, + 45.500988 + ], + [ + -73.467259, + 45.501258 + ], + [ + -73.467598, + 45.501537 + ], + [ + -73.467922, + 45.501812 + ], + [ + -73.468159, + 45.502018 + ], + [ + -73.468227, + 45.502077 + ], + [ + -73.469087, + 45.502773 + ], + [ + -73.469411, + 45.503036 + ], + [ + -73.469419, + 45.503065 + ], + [ + -73.469426, + 45.503089 + ], + [ + -73.46944, + 45.503136 + ], + [ + -73.469513, + 45.50323 + ], + [ + -73.469572, + 45.50329 + ], + [ + -73.469677, + 45.503226 + ], + [ + -73.469755, + 45.503179 + ], + [ + -73.469968, + 45.50305 + ], + [ + -73.471047, + 45.502399 + ], + [ + -73.471184, + 45.502317 + ], + [ + -73.472092, + 45.501763 + ], + [ + -73.473517, + 45.500899 + ], + [ + -73.47358, + 45.50086 + ], + [ + -73.473641, + 45.500823 + ], + [ + -73.474037, + 45.500587 + ], + [ + -73.474638, + 45.500228 + ], + [ + -73.474786, + 45.50014 + ], + [ + -73.475106, + 45.500405 + ], + [ + -73.475435, + 45.500666 + ], + [ + -73.475716, + 45.500905 + ], + [ + -73.476098, + 45.50122 + ], + [ + -73.476388, + 45.501458 + ], + [ + -73.476424, + 45.501489 + ], + [ + -73.476454, + 45.501514 + ], + [ + -73.476748, + 45.501764 + ], + [ + -73.477196, + 45.501493 + ], + [ + -73.479345, + 45.500187 + ], + [ + -73.48037, + 45.499565 + ], + [ + -73.480384, + 45.499556 + ], + [ + -73.480477, + 45.499488 + ], + [ + -73.480847, + 45.499223 + ], + [ + -73.481169, + 45.498994 + ], + [ + -73.481589, + 45.498697 + ], + [ + -73.481899, + 45.498472 + ], + [ + -73.482124, + 45.49831 + ], + [ + -73.48253, + 45.498018 + ], + [ + -73.482636, + 45.497941 + ], + [ + -73.482985, + 45.497707 + ], + [ + -73.483277, + 45.497509 + ], + [ + -73.483338, + 45.497469 + ], + [ + -73.483382, + 45.497433 + ], + [ + -73.483504, + 45.497347 + ], + [ + -73.483872, + 45.497077 + ], + [ + -73.484048, + 45.496948 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.48442, + 45.496983 + ], + [ + -73.484708, + 45.497199 + ], + [ + -73.484931, + 45.497378 + ], + [ + -73.485095, + 45.49751 + ], + [ + -73.485397, + 45.497784 + ], + [ + -73.485739, + 45.498135 + ], + [ + -73.485877, + 45.498284 + ], + [ + -73.486105, + 45.498553 + ], + [ + -73.486192, + 45.498666 + ], + [ + -73.486286, + 45.498787 + ], + [ + -73.486368, + 45.498907 + ], + [ + -73.486538, + 45.499154 + ], + [ + -73.486685, + 45.499381 + ], + [ + -73.486823, + 45.499615 + ], + [ + -73.486951, + 45.499858 + ], + [ + -73.487138, + 45.500263 + ], + [ + -73.487159, + 45.500317 + ], + [ + -73.487263, + 45.500597 + ], + [ + -73.487306, + 45.500713 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487417, + 45.501077 + ], + [ + -73.487455, + 45.501208 + ], + [ + -73.487464, + 45.50124 + ], + [ + -73.48765, + 45.50191 + ], + [ + -73.487855, + 45.502589 + ], + [ + -73.488032, + 45.50303 + ], + [ + -73.488178, + 45.503309 + ], + [ + -73.488409, + 45.50371 + ], + [ + -73.489159, + 45.504974 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.49291, + 45.5101 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495706, + 45.511385 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497913, + 45.512051 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.500866, + 45.513004 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505109, + 45.51448 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506328, + 45.514811 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511912, + 45.51687 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513429, + 45.518297 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.51499, + 45.519418 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518173, + 45.520398 + ], + [ + -73.518885, + 45.520626 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 9, + "properties": { + "id": "7b30f8bd-f582-4459-bad7-5094e0e6aaa9", + "data": { + "gtfs": { + "shape_id": "3_1_A" + }, + "segments": [ + { + "distanceMeters": 270, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 63, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 506, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 1156, + "travelTimeSeconds": 135 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 598, + "travelTimeSeconds": 103 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 746, + "travelTimeSeconds": 129 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11125, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5747.421473025993, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.87, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 6.18, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.87 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "800a1d6c-4d5b-4560-b691-99e1b0db1343", + "e827aa2c-577c-4249-9fc7-9a6572084b69", + "12181a0a-32eb-4333-b444-1760ecaa417c", + "0689eff9-8438-4b1c-9e3a-78c672f6ef82", + "3c0294df-b0e7-4be1-af27-4b755f5639ad", + "912a81e5-66f7-4af9-8125-ae16515fe284", + "1c6a64fd-3d5b-472f-bfe4-11a7479ddb48", + "504ca07a-925d-4f9a-9b79-37177c38a6d1", + "923afb03-b5b7-44ed-a97d-4785d2468e97", + "43297c29-6e25-4fbe-a1b6-70a1ce96533d", + "c6b0edc5-b07e-4471-93c5-2b6117d67602", + "e49c515c-3414-4a88-aaec-43f9499177ec", + "f46c44d6-0823-444d-9902-d03499774c08", + "69ce0958-621c-4e07-9f8c-41bd64014240", + "800a1d6c-4d5b-4560-b691-99e1b0db1343", + "bb534923-0939-4ebc-88f8-39847999c548", + "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", + "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", + "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", + "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", + "a3062aba-92b8-419f-9d8e-4f21713f9dcc", + "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", + "c17cc951-65ff-4617-a096-ccd1fe6cc26f", + "dbae3900-2b78-4309-9fa5-5503ae30ad22", + "300a7442-8453-4aa4-89f9-beacdcc75174", + "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", + "9da3ecd5-fea1-433e-9a38-142aeff3882d", + "47ef73cf-7799-46e3-b2f1-76a6533f7746", + "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", + "fd062866-a8eb-4466-b53a-6adf8fc3f09a", + "6c42a8f6-a98f-4058-9992-d00706a03dff", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "a5b9648a-83c0-4eab-a54b-68c23aecae43", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", + "be19484c-af95-45b2-bfe5-24342dd1b710", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "f20acb5e-042e-4cbf-b52d-19d571b642d6", + "segments": [ + 0, + 5, + 13, + 24, + 29, + 36, + 41, + 49, + 53, + 56, + 59, + 62, + 73, + 81, + 92, + 100, + 106, + 113, + 116, + 123, + 127, + 132, + 134, + 144, + 147, + 151, + 159, + 163, + 171, + 179, + 198, + 220, + 233, + 236, + 243, + 262, + 268, + 281, + 288 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 9, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521447, + 45.524278 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519256, + 45.520728 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514996, + 45.519327 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513222, + 45.517457 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.511366, + 45.516148 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509952, + 45.515502 + ], + [ + -73.509485, + 45.515357 + ], + [ + -73.509462, + 45.515349 + ], + [ + -73.509376, + 45.515323 + ], + [ + -73.508692, + 45.515143 + ], + [ + -73.508296, + 45.51503 + ], + [ + -73.507817, + 45.514868 + ], + [ + -73.507704, + 45.514841 + ], + [ + -73.507464, + 45.514765 + ], + [ + -73.506516, + 45.514432 + ], + [ + -73.505464, + 45.514054 + ], + [ + -73.505166, + 45.51396 + ], + [ + -73.504773, + 45.513836 + ], + [ + -73.504451, + 45.513734 + ], + [ + -73.50434, + 45.513699 + ], + [ + -73.504259, + 45.513672 + ], + [ + -73.503369, + 45.513397 + ], + [ + -73.502433, + 45.51315 + ], + [ + -73.502048, + 45.513078 + ], + [ + -73.501892, + 45.513034 + ], + [ + -73.501549, + 45.512937 + ], + [ + -73.501411, + 45.512898 + ], + [ + -73.50108, + 45.512799 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499667, + 45.512344 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.498202, + 45.511887 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.494292, + 45.51045 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.494088, + 45.51035 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491841, + 45.508691 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488541, + 45.503629 + ], + [ + -73.48831, + 45.50321 + ], + [ + -73.48823, + 45.503039 + ], + [ + -73.488092, + 45.502693 + ], + [ + -73.487989, + 45.502369 + ], + [ + -73.487959, + 45.502275 + ], + [ + -73.487746, + 45.501478 + ], + [ + -73.487613, + 45.501033 + ], + [ + -73.487523, + 45.500732 + ], + [ + -73.487509, + 45.500686 + ], + [ + -73.487464, + 45.50056 + ], + [ + -73.487346, + 45.500232 + ], + [ + -73.487139, + 45.499795 + ], + [ + -73.486985, + 45.499512 + ], + [ + -73.486818, + 45.499233 + ], + [ + -73.48673, + 45.4991 + ], + [ + -73.486631, + 45.498949 + ], + [ + -73.486428, + 45.498675 + ], + [ + -73.486216, + 45.498401 + ], + [ + -73.486166, + 45.498342 + ], + [ + -73.486, + 45.498149 + ], + [ + -73.485576, + 45.497708 + ], + [ + -73.485299, + 45.497456 + ], + [ + -73.485251, + 45.497415 + ], + [ + -73.484899, + 45.497123 + ], + [ + -73.484387, + 45.49674 + ], + [ + -73.484357, + 45.496722 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.483872, + 45.497077 + ], + [ + -73.483869, + 45.49708 + ], + [ + -73.483827, + 45.49711 + ], + [ + -73.483504, + 45.497347 + ], + [ + -73.483382, + 45.497433 + ], + [ + -73.483338, + 45.497469 + ], + [ + -73.483277, + 45.497509 + ], + [ + -73.482985, + 45.497707 + ], + [ + -73.482739, + 45.497872 + ], + [ + -73.482636, + 45.497941 + ], + [ + -73.482124, + 45.49831 + ], + [ + -73.481899, + 45.498472 + ], + [ + -73.481589, + 45.498697 + ], + [ + -73.481169, + 45.498994 + ], + [ + -73.480847, + 45.499223 + ], + [ + -73.480612, + 45.499392 + ], + [ + -73.480477, + 45.499488 + ], + [ + -73.480384, + 45.499556 + ], + [ + -73.479345, + 45.500187 + ], + [ + -73.476911, + 45.501666 + ], + [ + -73.476748, + 45.501764 + ], + [ + -73.476537, + 45.501585 + ], + [ + -73.476424, + 45.501489 + ], + [ + -73.476388, + 45.501458 + ], + [ + -73.476098, + 45.50122 + ], + [ + -73.475716, + 45.500905 + ], + [ + -73.475435, + 45.500666 + ], + [ + -73.475106, + 45.500405 + ], + [ + -73.47485, + 45.500193 + ], + [ + -73.474786, + 45.50014 + ], + [ + -73.474718, + 45.500086 + ], + [ + -73.473767, + 45.50065 + ], + [ + -73.473574, + 45.500765 + ], + [ + -73.472027, + 45.501705 + ], + [ + -73.471215, + 45.502194 + ], + [ + -73.471117, + 45.502254 + ], + [ + -73.469763, + 45.503077 + ], + [ + -73.469716, + 45.503106 + ], + [ + -73.469614, + 45.503168 + ], + [ + -73.469532, + 45.503086 + ], + [ + -73.469411, + 45.503036 + ], + [ + -73.469131, + 45.502809 + ], + [ + -73.468299, + 45.502136 + ], + [ + -73.468227, + 45.502077 + ], + [ + -73.467922, + 45.501812 + ], + [ + -73.467598, + 45.501537 + ], + [ + -73.467259, + 45.501258 + ], + [ + -73.467143, + 45.501162 + ], + [ + -73.466934, + 45.500988 + ], + [ + -73.464327, + 45.502543 + ], + [ + -73.464212, + 45.502612 + ], + [ + -73.463363, + 45.503124 + ], + [ + -73.463263, + 45.503039 + ], + [ + -73.463025, + 45.502837 + ], + [ + -73.462726, + 45.502584 + ], + [ + -73.462443, + 45.502336 + ], + [ + -73.46216, + 45.502089 + ], + [ + -73.461886, + 45.501859 + ], + [ + -73.461713, + 45.501721 + ], + [ + -73.461628, + 45.501652 + ], + [ + -73.461281, + 45.501859 + ], + [ + -73.460922, + 45.502075 + ], + [ + -73.460681, + 45.501872 + ], + [ + -73.46063, + 45.501831 + ], + [ + -73.460537, + 45.501755 + ], + [ + -73.460303, + 45.501557 + ], + [ + -73.459797, + 45.501134 + ], + [ + -73.459301, + 45.500724 + ], + [ + -73.459247, + 45.50068 + ], + [ + -73.45911, + 45.500567 + ], + [ + -73.458792, + 45.500752 + ], + [ + -73.458619, + 45.50085 + ], + [ + -73.458392, + 45.500985 + ], + [ + -73.458179, + 45.50112 + ], + [ + -73.457752, + 45.501375 + ], + [ + -73.457629, + 45.501448 + ], + [ + -73.457366, + 45.501237 + ], + [ + -73.457312, + 45.501192 + ], + [ + -73.457135, + 45.501093 + ], + [ + -73.45648, + 45.500755 + ], + [ + -73.456099, + 45.500539 + ], + [ + -73.455926, + 45.500402 + ] + ] + }, + "id": 10, + "properties": { + "id": "b4b67de3-e186-4b94-9760-5138f7f9f771", + "data": { + "gtfs": { + "shape_id": "3_1_R" + }, + "segments": [ + { + "distanceMeters": 764, + "travelTimeSeconds": 89 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 384, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 403, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 345, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 954, + "travelTimeSeconds": 132 + }, + { + "distanceMeters": 577, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 384, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 113, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 433, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 39 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7927, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5747.421473025993, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.61, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 5.74, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.61 + }, + "mode": "bus", + "name": "Montgomery", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "d3215c60-bb9e-40ac-89e4-1f922b39e266", + "f9358f54-8643-47f5-b0df-4a20b46cc22d", + "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", + "f4f29738-df3f-4d69-8632-9088ded0dc5a", + "741876fc-030a-42f6-a33a-8f1f9c2aba12", + "688a3f67-a176-441e-a399-c92a55de9c74", + "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", + "37199bb2-9740-4484-b68f-12d3c82f8bf9", + "bcd0a901-5384-443e-9be4-1f0faa123ccb", + "b2075e72-f3b5-420a-b22b-99e7608c7c0a", + "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", + "47ef73cf-7799-46e3-b2f1-76a6533f7746", + "9da3ecd5-fea1-433e-9a38-142aeff3882d", + "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", + "300a7442-8453-4aa4-89f9-beacdcc75174", + "dbae3900-2b78-4309-9fa5-5503ae30ad22", + "5b1f9db8-9fc7-4028-9f92-fd33d2f419e7", + "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", + "ef559a5c-0885-4ac5-a0dc-bdf67aea0546", + "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", + "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", + "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", + "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", + "bb534923-0939-4ebc-88f8-39847999c548", + "800a1d6c-4d5b-4560-b691-99e1b0db1343" + ], + "stops": [], + "line_id": "f20acb5e-042e-4cbf-b52d-19d571b642d6", + "segments": [ + 0, + 47, + 54, + 61, + 72, + 82, + 90, + 94, + 99, + 109, + 121, + 139, + 161, + 167, + 174, + 178, + 187, + 190, + 193, + 195, + 201, + 206, + 212, + 217, + 222, + 226, + 233 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 10, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.455926, + 45.500402 + ], + [ + -73.455803, + 45.500305 + ], + [ + -73.455726, + 45.500228 + ], + [ + -73.455806, + 45.50017 + ], + [ + -73.456009, + 45.500058 + ], + [ + -73.458121, + 45.498805 + ], + [ + -73.45823, + 45.49874 + ], + [ + -73.45866, + 45.498475 + ], + [ + -73.459486, + 45.49798 + ], + [ + -73.460119, + 45.497603 + ], + [ + -73.460224, + 45.497535 + ], + [ + -73.460165, + 45.497427 + ], + [ + -73.460063, + 45.497324 + ], + [ + -73.460026, + 45.497271 + ], + [ + -73.459954, + 45.497171 + ], + [ + -73.459892, + 45.497045 + ], + [ + -73.45984, + 45.496946 + ], + [ + -73.459805, + 45.496797 + ], + [ + -73.45979, + 45.496635 + ], + [ + -73.459786, + 45.496572 + ], + [ + -73.45979, + 45.496433 + ], + [ + -73.459822, + 45.496293 + ], + [ + -73.46018, + 45.495429 + ], + [ + -73.460269, + 45.495227 + ], + [ + -73.460318, + 45.495105 + ], + [ + -73.460354, + 45.495016 + ], + [ + -73.460277, + 45.4948 + ], + [ + -73.460132, + 45.49444 + ], + [ + -73.459999, + 45.494098 + ], + [ + -73.459885, + 45.493814 + ], + [ + -73.459784, + 45.493562 + ], + [ + -73.45974, + 45.493441 + ], + [ + -73.459717, + 45.493391 + ], + [ + -73.459678, + 45.493328 + ], + [ + -73.45962, + 45.493243 + ], + [ + -73.459564, + 45.493189 + ], + [ + -73.459056, + 45.492755 + ], + [ + -73.458942, + 45.492657 + ], + [ + -73.459245, + 45.492482 + ], + [ + -73.459615, + 45.492262 + ], + [ + -73.459321, + 45.492023 + ], + [ + -73.459035, + 45.491789 + ], + [ + -73.458975, + 45.49174 + ], + [ + -73.458833, + 45.491614 + ], + [ + -73.458646, + 45.491492 + ], + [ + -73.458531, + 45.491443 + ], + [ + -73.45836, + 45.491343 + ], + [ + -73.458297, + 45.491303 + ], + [ + -73.457958, + 45.491019 + ], + [ + -73.457842, + 45.49092 + ], + [ + -73.457829, + 45.490908 + ], + [ + -73.457738, + 45.49083 + ], + [ + -73.456382, + 45.491631 + ], + [ + -73.454853, + 45.492545 + ], + [ + -73.454766, + 45.492597 + ], + [ + -73.454215, + 45.492926 + ], + [ + -73.45188, + 45.494323 + ], + [ + -73.451788, + 45.494378 + ], + [ + -73.451626, + 45.494472 + ], + [ + -73.44889, + 45.496102 + ], + [ + -73.44881, + 45.496149 + ], + [ + -73.448168, + 45.496536 + ], + [ + -73.447761, + 45.49678 + ], + [ + -73.447323, + 45.497044 + ], + [ + -73.447443, + 45.49711 + ], + [ + -73.447676, + 45.497238 + ], + [ + -73.448036, + 45.497431 + ], + [ + -73.44838, + 45.497616 + ], + [ + -73.448779, + 45.497827 + ], + [ + -73.449434, + 45.49821 + ], + [ + -73.449496, + 45.498237 + ], + [ + -73.449546, + 45.498251 + ], + [ + -73.449725, + 45.498152 + ], + [ + -73.449769, + 45.498126 + ], + [ + -73.449884, + 45.498057 + ], + [ + -73.450085, + 45.497941 + ], + [ + -73.450487, + 45.498161 + ], + [ + -73.451013, + 45.498449 + ], + [ + -73.451357, + 45.498643 + ], + [ + -73.451834, + 45.498904 + ], + [ + -73.452113, + 45.499057 + ], + [ + -73.45239, + 45.499212 + ], + [ + -73.452639, + 45.49935 + ], + [ + -73.452794, + 45.499431 + ], + [ + -73.453172, + 45.499634 + ], + [ + -73.453483, + 45.499755 + ], + [ + -73.45482, + 45.500233 + ], + [ + -73.454914, + 45.500255 + ], + [ + -73.455067, + 45.500305 + ], + [ + -73.455166, + 45.5003 + ], + [ + -73.455262, + 45.5003 + ], + [ + -73.455439, + 45.500273 + ], + [ + -73.455525, + 45.50026 + ], + [ + -73.455726, + 45.500228 + ], + [ + -73.455803, + 45.500305 + ], + [ + -73.456099, + 45.500539 + ], + [ + -73.45648, + 45.500755 + ], + [ + -73.457135, + 45.501093 + ], + [ + -73.457312, + 45.501192 + ], + [ + -73.457366, + 45.501237 + ], + [ + -73.457541, + 45.501378 + ], + [ + -73.457629, + 45.501448 + ], + [ + -73.458179, + 45.50112 + ], + [ + -73.458392, + 45.500985 + ], + [ + -73.458619, + 45.50085 + ], + [ + -73.458792, + 45.500752 + ], + [ + -73.458922, + 45.500676 + ], + [ + -73.45911, + 45.500567 + ], + [ + -73.459247, + 45.50068 + ], + [ + -73.459797, + 45.501134 + ], + [ + -73.460303, + 45.501557 + ], + [ + -73.460537, + 45.501755 + ], + [ + -73.460681, + 45.501872 + ], + [ + -73.460819, + 45.501989 + ], + [ + -73.460922, + 45.502075 + ], + [ + -73.461281, + 45.501859 + ], + [ + -73.461414, + 45.50178 + ], + [ + -73.461628, + 45.501652 + ], + [ + -73.461886, + 45.501859 + ], + [ + -73.46216, + 45.502089 + ], + [ + -73.462443, + 45.502336 + ], + [ + -73.462726, + 45.502584 + ], + [ + -73.463263, + 45.503039 + ], + [ + -73.463278, + 45.503051 + ], + [ + -73.463363, + 45.503124 + ], + [ + -73.463739, + 45.502897 + ], + [ + -73.464212, + 45.502612 + ], + [ + -73.466585, + 45.501196 + ], + [ + -73.466934, + 45.500988 + ], + [ + -73.467259, + 45.501258 + ], + [ + -73.467598, + 45.501537 + ], + [ + -73.467922, + 45.501812 + ], + [ + -73.468159, + 45.502018 + ], + [ + -73.468227, + 45.502077 + ], + [ + -73.469087, + 45.502773 + ], + [ + -73.469411, + 45.503036 + ], + [ + -73.469419, + 45.503065 + ], + [ + -73.469426, + 45.503089 + ], + [ + -73.46944, + 45.503136 + ], + [ + -73.469513, + 45.50323 + ], + [ + -73.469572, + 45.50329 + ], + [ + -73.469677, + 45.503226 + ], + [ + -73.469755, + 45.503179 + ], + [ + -73.469968, + 45.50305 + ], + [ + -73.471047, + 45.502399 + ], + [ + -73.471184, + 45.502317 + ], + [ + -73.472092, + 45.501763 + ], + [ + -73.473517, + 45.500899 + ], + [ + -73.47358, + 45.50086 + ], + [ + -73.473641, + 45.500823 + ], + [ + -73.474037, + 45.500587 + ], + [ + -73.474638, + 45.500228 + ], + [ + -73.474786, + 45.50014 + ], + [ + -73.475106, + 45.500405 + ], + [ + -73.475435, + 45.500666 + ], + [ + -73.475716, + 45.500905 + ], + [ + -73.476098, + 45.50122 + ], + [ + -73.476388, + 45.501458 + ], + [ + -73.476424, + 45.501489 + ], + [ + -73.476454, + 45.501514 + ], + [ + -73.476748, + 45.501764 + ], + [ + -73.477196, + 45.501493 + ], + [ + -73.479345, + 45.500187 + ], + [ + -73.48037, + 45.499565 + ], + [ + -73.480384, + 45.499556 + ], + [ + -73.480477, + 45.499488 + ], + [ + -73.480847, + 45.499223 + ], + [ + -73.481169, + 45.498994 + ], + [ + -73.481589, + 45.498697 + ], + [ + -73.481899, + 45.498472 + ], + [ + -73.482124, + 45.49831 + ], + [ + -73.48253, + 45.498018 + ], + [ + -73.482636, + 45.497941 + ], + [ + -73.482985, + 45.497707 + ], + [ + -73.483277, + 45.497509 + ], + [ + -73.483338, + 45.497469 + ], + [ + -73.483382, + 45.497433 + ], + [ + -73.483504, + 45.497347 + ], + [ + -73.483872, + 45.497077 + ], + [ + -73.484048, + 45.496948 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.48442, + 45.496983 + ], + [ + -73.484708, + 45.497199 + ], + [ + -73.484931, + 45.497378 + ], + [ + -73.485095, + 45.49751 + ], + [ + -73.485397, + 45.497784 + ], + [ + -73.485739, + 45.498135 + ], + [ + -73.485877, + 45.498284 + ], + [ + -73.486105, + 45.498553 + ], + [ + -73.486192, + 45.498666 + ], + [ + -73.486286, + 45.498787 + ], + [ + -73.486368, + 45.498907 + ], + [ + -73.486538, + 45.499154 + ], + [ + -73.486685, + 45.499381 + ], + [ + -73.486823, + 45.499615 + ], + [ + -73.486951, + 45.499858 + ], + [ + -73.487138, + 45.500263 + ], + [ + -73.487159, + 45.500317 + ], + [ + -73.487263, + 45.500597 + ], + [ + -73.487306, + 45.500713 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487417, + 45.501077 + ], + [ + -73.487455, + 45.501208 + ], + [ + -73.487464, + 45.50124 + ], + [ + -73.48765, + 45.50191 + ], + [ + -73.487855, + 45.502589 + ], + [ + -73.488032, + 45.50303 + ], + [ + -73.488178, + 45.503309 + ], + [ + -73.488409, + 45.50371 + ], + [ + -73.489159, + 45.504974 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.49291, + 45.5101 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495706, + 45.511385 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497913, + 45.512051 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.500866, + 45.513004 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505109, + 45.51448 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506328, + 45.514811 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511912, + 45.51687 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513429, + 45.518297 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.51499, + 45.519418 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518173, + 45.520398 + ], + [ + -73.518885, + 45.520626 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 11, + "properties": { + "id": "4699bb64-15b6-4b60-aa91-0c50dba540f5", + "data": { + "gtfs": { + "shape_id": "3_2_A" + }, + "segments": [ + { + "distanceMeters": 270, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 63, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 506, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 1156, + "travelTimeSeconds": 135 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 598, + "travelTimeSeconds": 103 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 746, + "travelTimeSeconds": 129 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11125, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5747.421473025993, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.62, + "travelTimeWithoutDwellTimesSeconds": 1680, + "operatingTimeWithLayoverTimeSeconds": 1860, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1680, + "operatingSpeedWithLayoverMetersPerSecond": 5.98, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.62 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "800a1d6c-4d5b-4560-b691-99e1b0db1343", + "e827aa2c-577c-4249-9fc7-9a6572084b69", + "12181a0a-32eb-4333-b444-1760ecaa417c", + "0689eff9-8438-4b1c-9e3a-78c672f6ef82", + "3c0294df-b0e7-4be1-af27-4b755f5639ad", + "912a81e5-66f7-4af9-8125-ae16515fe284", + "1c6a64fd-3d5b-472f-bfe4-11a7479ddb48", + "504ca07a-925d-4f9a-9b79-37177c38a6d1", + "923afb03-b5b7-44ed-a97d-4785d2468e97", + "43297c29-6e25-4fbe-a1b6-70a1ce96533d", + "c6b0edc5-b07e-4471-93c5-2b6117d67602", + "e49c515c-3414-4a88-aaec-43f9499177ec", + "f46c44d6-0823-444d-9902-d03499774c08", + "69ce0958-621c-4e07-9f8c-41bd64014240", + "800a1d6c-4d5b-4560-b691-99e1b0db1343", + "bb534923-0939-4ebc-88f8-39847999c548", + "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", + "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", + "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", + "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", + "a3062aba-92b8-419f-9d8e-4f21713f9dcc", + "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", + "c17cc951-65ff-4617-a096-ccd1fe6cc26f", + "dbae3900-2b78-4309-9fa5-5503ae30ad22", + "300a7442-8453-4aa4-89f9-beacdcc75174", + "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", + "9da3ecd5-fea1-433e-9a38-142aeff3882d", + "47ef73cf-7799-46e3-b2f1-76a6533f7746", + "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", + "fd062866-a8eb-4466-b53a-6adf8fc3f09a", + "6c42a8f6-a98f-4058-9992-d00706a03dff", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "a5b9648a-83c0-4eab-a54b-68c23aecae43", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", + "be19484c-af95-45b2-bfe5-24342dd1b710", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "f20acb5e-042e-4cbf-b52d-19d571b642d6", + "segments": [ + 0, + 5, + 13, + 24, + 29, + 36, + 41, + 49, + 53, + 56, + 59, + 62, + 73, + 81, + 92, + 100, + 106, + 113, + 116, + 123, + 127, + 132, + 134, + 144, + 147, + 151, + 159, + 163, + 171, + 179, + 198, + 220, + 233, + 236, + 243, + 262, + 268, + 281, + 288 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 11, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.455926, + 45.500402 + ], + [ + -73.455803, + 45.500305 + ], + [ + -73.455726, + 45.500228 + ], + [ + -73.455806, + 45.50017 + ], + [ + -73.456009, + 45.500058 + ], + [ + -73.45823, + 45.49874 + ], + [ + -73.45866, + 45.498475 + ], + [ + -73.459486, + 45.49798 + ], + [ + -73.460119, + 45.497603 + ], + [ + -73.460224, + 45.497535 + ], + [ + -73.460165, + 45.497427 + ], + [ + -73.460063, + 45.497324 + ], + [ + -73.459954, + 45.497171 + ], + [ + -73.459892, + 45.497045 + ], + [ + -73.45984, + 45.496946 + ], + [ + -73.459805, + 45.496797 + ], + [ + -73.45979, + 45.496635 + ], + [ + -73.459786, + 45.496572 + ], + [ + -73.45979, + 45.496433 + ], + [ + -73.459822, + 45.496293 + ], + [ + -73.46018, + 45.495429 + ], + [ + -73.460269, + 45.495227 + ], + [ + -73.460354, + 45.495016 + ], + [ + -73.460277, + 45.4948 + ], + [ + -73.460132, + 45.49444 + ], + [ + -73.459999, + 45.494098 + ], + [ + -73.459819, + 45.493648 + ], + [ + -73.459784, + 45.493562 + ], + [ + -73.45974, + 45.493441 + ], + [ + -73.459717, + 45.493391 + ], + [ + -73.459678, + 45.493328 + ], + [ + -73.45962, + 45.493243 + ], + [ + -73.459564, + 45.493189 + ], + [ + -73.458942, + 45.492657 + ], + [ + -73.459245, + 45.492482 + ], + [ + -73.459615, + 45.492262 + ], + [ + -73.459321, + 45.492023 + ], + [ + -73.458975, + 45.49174 + ], + [ + -73.458833, + 45.491614 + ], + [ + -73.458646, + 45.491492 + ], + [ + -73.458531, + 45.491443 + ], + [ + -73.45836, + 45.491343 + ], + [ + -73.458297, + 45.491303 + ], + [ + -73.457958, + 45.491019 + ], + [ + -73.457829, + 45.490908 + ], + [ + -73.457738, + 45.49083 + ], + [ + -73.456382, + 45.491631 + ], + [ + -73.454766, + 45.492597 + ], + [ + -73.454215, + 45.492926 + ], + [ + -73.453333, + 45.493454 + ], + [ + -73.451788, + 45.494378 + ], + [ + -73.451626, + 45.494472 + ], + [ + -73.44881, + 45.496149 + ], + [ + -73.448168, + 45.496536 + ], + [ + -73.447323, + 45.497044 + ], + [ + -73.447443, + 45.49711 + ], + [ + -73.447676, + 45.497238 + ], + [ + -73.448036, + 45.497431 + ], + [ + -73.44838, + 45.497616 + ], + [ + -73.448779, + 45.497827 + ], + [ + -73.449434, + 45.49821 + ], + [ + -73.449496, + 45.498237 + ], + [ + -73.449546, + 45.498251 + ], + [ + -73.449725, + 45.498152 + ], + [ + -73.449873, + 45.498064 + ], + [ + -73.449884, + 45.498057 + ], + [ + -73.450085, + 45.497941 + ], + [ + -73.450487, + 45.498161 + ], + [ + -73.451013, + 45.498449 + ], + [ + -73.451357, + 45.498643 + ], + [ + -73.451834, + 45.498904 + ], + [ + -73.452113, + 45.499057 + ], + [ + -73.452639, + 45.49935 + ], + [ + -73.452794, + 45.499431 + ], + [ + -73.453172, + 45.499634 + ], + [ + -73.453483, + 45.499755 + ], + [ + -73.45482, + 45.500233 + ], + [ + -73.454914, + 45.500255 + ], + [ + -73.455067, + 45.500305 + ], + [ + -73.455166, + 45.5003 + ], + [ + -73.455262, + 45.5003 + ], + [ + -73.45538, + 45.500282 + ], + [ + -73.455439, + 45.500273 + ], + [ + -73.455726, + 45.500228 + ], + [ + -73.455803, + 45.500305 + ], + [ + -73.456099, + 45.500539 + ], + [ + -73.45648, + 45.500755 + ], + [ + -73.457135, + 45.501093 + ], + [ + -73.457312, + 45.501192 + ], + [ + -73.457366, + 45.501237 + ], + [ + -73.457629, + 45.501448 + ], + [ + -73.458179, + 45.50112 + ], + [ + -73.458392, + 45.500985 + ], + [ + -73.458619, + 45.50085 + ], + [ + -73.458792, + 45.500752 + ], + [ + -73.45911, + 45.500567 + ], + [ + -73.459247, + 45.50068 + ], + [ + -73.459797, + 45.501134 + ], + [ + -73.459893, + 45.501214 + ], + [ + -73.460303, + 45.501557 + ], + [ + -73.460537, + 45.501755 + ], + [ + -73.460681, + 45.501872 + ], + [ + -73.460922, + 45.502075 + ], + [ + -73.461281, + 45.501859 + ], + [ + -73.461628, + 45.501652 + ], + [ + -73.461886, + 45.501859 + ], + [ + -73.46216, + 45.502089 + ], + [ + -73.462443, + 45.502336 + ], + [ + -73.462726, + 45.502584 + ], + [ + -73.463263, + 45.503039 + ], + [ + -73.463363, + 45.503124 + ], + [ + -73.463564, + 45.503003 + ], + [ + -73.464212, + 45.502612 + ], + [ + -73.464512, + 45.502432 + ], + [ + -73.466934, + 45.500988 + ], + [ + -73.467259, + 45.501258 + ], + [ + -73.467598, + 45.501537 + ], + [ + -73.467922, + 45.501812 + ], + [ + -73.468227, + 45.502077 + ], + [ + -73.468758, + 45.502507 + ], + [ + -73.469411, + 45.503036 + ], + [ + -73.469419, + 45.503065 + ], + [ + -73.469426, + 45.503089 + ], + [ + -73.46944, + 45.503136 + ], + [ + -73.469513, + 45.50323 + ], + [ + -73.469572, + 45.50329 + ], + [ + -73.469677, + 45.503226 + ], + [ + -73.469755, + 45.503179 + ], + [ + -73.469968, + 45.50305 + ], + [ + -73.471184, + 45.502317 + ], + [ + -73.472092, + 45.501763 + ], + [ + -73.47358, + 45.50086 + ], + [ + -73.473641, + 45.500823 + ], + [ + -73.474037, + 45.500587 + ], + [ + -73.474786, + 45.50014 + ], + [ + -73.475106, + 45.500405 + ], + [ + -73.475435, + 45.500666 + ], + [ + -73.475716, + 45.500905 + ], + [ + -73.476098, + 45.50122 + ], + [ + -73.476388, + 45.501458 + ], + [ + -73.476424, + 45.501489 + ], + [ + -73.476748, + 45.501764 + ], + [ + -73.477196, + 45.501493 + ], + [ + -73.478559, + 45.500665 + ], + [ + -73.479345, + 45.500187 + ], + [ + -73.480384, + 45.499556 + ], + [ + -73.480477, + 45.499488 + ], + [ + -73.480847, + 45.499223 + ], + [ + -73.481169, + 45.498994 + ], + [ + -73.481589, + 45.498697 + ], + [ + -73.481899, + 45.498472 + ], + [ + -73.482124, + 45.49831 + ], + [ + -73.482636, + 45.497941 + ], + [ + -73.482985, + 45.497707 + ], + [ + -73.483277, + 45.497509 + ], + [ + -73.483338, + 45.497469 + ], + [ + -73.483382, + 45.497433 + ], + [ + -73.483504, + 45.497347 + ], + [ + -73.483872, + 45.497077 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.48442, + 45.496983 + ], + [ + -73.484708, + 45.497199 + ], + [ + -73.484931, + 45.497378 + ], + [ + -73.485095, + 45.49751 + ], + [ + -73.485397, + 45.497784 + ], + [ + -73.485739, + 45.498135 + ], + [ + -73.485877, + 45.498284 + ], + [ + -73.486105, + 45.498553 + ], + [ + -73.486192, + 45.498666 + ], + [ + -73.486286, + 45.498787 + ], + [ + -73.486368, + 45.498907 + ], + [ + -73.486538, + 45.499154 + ], + [ + -73.486685, + 45.499381 + ], + [ + -73.486823, + 45.499615 + ], + [ + -73.486951, + 45.499858 + ], + [ + -73.487124, + 45.500231 + ], + [ + -73.487138, + 45.500263 + ], + [ + -73.487159, + 45.500317 + ], + [ + -73.487306, + 45.500713 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487417, + 45.501077 + ], + [ + -73.487455, + 45.501208 + ], + [ + -73.487464, + 45.50124 + ], + [ + -73.48765, + 45.50191 + ], + [ + -73.487855, + 45.502589 + ], + [ + -73.488032, + 45.50303 + ], + [ + -73.488178, + 45.503309 + ], + [ + -73.488409, + 45.50371 + ], + [ + -73.489159, + 45.504974 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491816, + 45.509156 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495706, + 45.511385 + ], + [ + -73.495762, + 45.511404 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506328, + 45.514811 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507378, + 45.515114 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.51628, + 45.519789 + ], + [ + -73.518173, + 45.520398 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 12, + "properties": { + "id": "740e31cd-6ac6-4995-924e-fae7e6e74629", + "data": { + "gtfs": { + "shape_id": "3_1_A" + }, + "segments": [ + { + "distanceMeters": 938, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 868, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 868, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 518, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 476, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 528, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 469, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 1070, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 1059, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 1063, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 403, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 997, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 906, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 969, + "travelTimeSeconds": 39 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11125, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 0, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 26.49, + "travelTimeWithoutDwellTimesSeconds": 420, + "operatingTimeWithLayoverTimeSeconds": 600, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 420, + "operatingSpeedWithLayoverMetersPerSecond": 18.54, + "averageSpeedWithoutDwellTimesMetersPerSecond": 26.49 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "800a1d6c-4d5b-4560-b691-99e1b0db1343", + "e827aa2c-577c-4249-9fc7-9a6572084b69", + "12181a0a-32eb-4333-b444-1760ecaa417c", + "0689eff9-8438-4b1c-9e3a-78c672f6ef82", + "3c0294df-b0e7-4be1-af27-4b755f5639ad", + "912a81e5-66f7-4af9-8125-ae16515fe284", + "1c6a64fd-3d5b-472f-bfe4-11a7479ddb48", + "504ca07a-925d-4f9a-9b79-37177c38a6d1", + "923afb03-b5b7-44ed-a97d-4785d2468e97", + "43297c29-6e25-4fbe-a1b6-70a1ce96533d", + "c6b0edc5-b07e-4471-93c5-2b6117d67602", + "e49c515c-3414-4a88-aaec-43f9499177ec", + "f46c44d6-0823-444d-9902-d03499774c08", + "69ce0958-621c-4e07-9f8c-41bd64014240", + "800a1d6c-4d5b-4560-b691-99e1b0db1343" + ], + "stops": [], + "line_id": "f20acb5e-042e-4cbf-b52d-19d571b642d6", + "segments": [ + 0, + 26, + 49, + 64, + 81, + 98, + 113, + 119, + 143, + 175, + 195, + 207, + 227, + 262 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 12, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.407427, + 45.475701 + ], + [ + -73.407671, + 45.475838 + ], + [ + -73.407863, + 45.475945 + ], + [ + -73.409707, + 45.474585 + ], + [ + -73.41056, + 45.473956 + ], + [ + -73.41241, + 45.472592 + ], + [ + -73.411668, + 45.472104 + ], + [ + -73.411574, + 45.472042 + ], + [ + -73.41199, + 45.471733 + ], + [ + -73.413912, + 45.470304 + ], + [ + -73.414113, + 45.470154 + ], + [ + -73.415611, + 45.469047 + ], + [ + -73.415613, + 45.469046 + ], + [ + -73.415792, + 45.468914 + ], + [ + -73.416609, + 45.469358 + ], + [ + -73.41672, + 45.469418 + ], + [ + -73.417713, + 45.469982 + ], + [ + -73.418132, + 45.470212 + ], + [ + -73.419892, + 45.47118 + ], + [ + -73.421002, + 45.471784 + ], + [ + -73.421017, + 45.471793 + ], + [ + -73.421174, + 45.471887 + ], + [ + -73.424106, + 45.473482 + ], + [ + -73.424833, + 45.473878 + ], + [ + -73.42707, + 45.475086 + ], + [ + -73.42721, + 45.475162 + ], + [ + -73.427939, + 45.475559 + ], + [ + -73.428561, + 45.475892 + ], + [ + -73.429345, + 45.476324 + ], + [ + -73.429408, + 45.476356 + ], + [ + -73.429545, + 45.47644 + ], + [ + -73.429644, + 45.4765 + ], + [ + -73.429958, + 45.476689 + ], + [ + -73.43007, + 45.476775 + ], + [ + -73.430191, + 45.476874 + ], + [ + -73.430682, + 45.477184 + ], + [ + -73.43148, + 45.477725 + ], + [ + -73.43157, + 45.477786 + ], + [ + -73.432859, + 45.478671 + ], + [ + -73.433478, + 45.479091 + ], + [ + -73.433608, + 45.479179 + ], + [ + -73.435032, + 45.480148 + ], + [ + -73.435717, + 45.480608 + ], + [ + -73.435802, + 45.480665 + ], + [ + -73.4369, + 45.481417 + ], + [ + -73.437313, + 45.4817 + ], + [ + -73.437407, + 45.481764 + ], + [ + -73.438338, + 45.48239 + ], + [ + -73.438854, + 45.482753 + ], + [ + -73.438971, + 45.482836 + ], + [ + -73.439533, + 45.483272 + ], + [ + -73.440126, + 45.483709 + ], + [ + -73.440666, + 45.484123 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.441638, + 45.484884 + ], + [ + -73.442265, + 45.485398 + ], + [ + -73.44238, + 45.485492 + ], + [ + -73.442979, + 45.48598 + ], + [ + -73.443236, + 45.48619 + ], + [ + -73.443584, + 45.486491 + ], + [ + -73.443685, + 45.486573 + ], + [ + -73.443941, + 45.486781 + ], + [ + -73.444066, + 45.486883 + ], + [ + -73.443689, + 45.487108 + ], + [ + -73.443286, + 45.487346 + ], + [ + -73.441903, + 45.488164 + ], + [ + -73.441622, + 45.488335 + ], + [ + -73.441555, + 45.488376 + ], + [ + -73.441228, + 45.488564 + ], + [ + -73.440838, + 45.488816 + ], + [ + -73.440766, + 45.488924 + ], + [ + -73.440605, + 45.489241 + ], + [ + -73.440578, + 45.489293 + ], + [ + -73.440338, + 45.489779 + ], + [ + -73.440267, + 45.489918 + ], + [ + -73.440103, + 45.49026 + ], + [ + -73.439969, + 45.490525 + ], + [ + -73.439938, + 45.490581 + ], + [ + -73.439745, + 45.490935 + ], + [ + -73.439594, + 45.491218 + ], + [ + -73.439454, + 45.491495 + ], + [ + -73.439349, + 45.491704 + ], + [ + -73.439197, + 45.491998 + ], + [ + -73.439145, + 45.4921 + ], + [ + -73.439256, + 45.492158 + ], + [ + -73.439383, + 45.492229 + ], + [ + -73.439932, + 45.492532 + ], + [ + -73.440215, + 45.49269 + ], + [ + -73.440531, + 45.49287 + ], + [ + -73.440633, + 45.492928 + ], + [ + -73.440725, + 45.492973 + ], + [ + -73.442066, + 45.493723 + ], + [ + -73.442339, + 45.493875 + ], + [ + -73.442362, + 45.493888 + ], + [ + -73.442408, + 45.493847 + ], + [ + -73.442628, + 45.493654 + ], + [ + -73.442898, + 45.493424 + ], + [ + -73.44315, + 45.493191 + ], + [ + -73.443327, + 45.493041 + ], + [ + -73.443437, + 45.492948 + ], + [ + -73.443519, + 45.492853 + ], + [ + -73.443931, + 45.492444 + ], + [ + -73.444166, + 45.492197 + ], + [ + -73.444645, + 45.491689 + ], + [ + -73.444394, + 45.491549 + ], + [ + -73.444136, + 45.491456 + ], + [ + -73.443933, + 45.491382 + ], + [ + -73.443743, + 45.491333 + ], + [ + -73.444455, + 45.490906 + ], + [ + -73.445249, + 45.490425 + ], + [ + -73.445609, + 45.490209 + ], + [ + -73.445807, + 45.490089 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446822, + 45.490639 + ], + [ + -73.44688, + 45.490686 + ], + [ + -73.44726, + 45.491004 + ], + [ + -73.447337, + 45.491069 + ], + [ + -73.447665, + 45.490889 + ], + [ + -73.448136, + 45.490592 + ], + [ + -73.44848, + 45.49039 + ], + [ + -73.448793, + 45.490206 + ], + [ + -73.44919, + 45.489963 + ], + [ + -73.449326, + 45.489886 + ], + [ + -73.449476, + 45.489801 + ], + [ + -73.450048, + 45.489455 + ], + [ + -73.450226, + 45.489293 + ], + [ + -73.450385, + 45.489131 + ], + [ + -73.450522, + 45.488807 + ], + [ + -73.450553, + 45.48864 + ], + [ + -73.450562, + 45.488591 + ], + [ + -73.450564, + 45.488501 + ], + [ + -73.451142, + 45.48852 + ], + [ + -73.451437, + 45.488556 + ], + [ + -73.451471, + 45.48856 + ], + [ + -73.451663, + 45.488618 + ], + [ + -73.451864, + 45.488677 + ], + [ + -73.452026, + 45.48874 + ], + [ + -73.452059, + 45.488756 + ], + [ + -73.45223, + 45.488835 + ], + [ + -73.452271, + 45.488863 + ], + [ + -73.452316, + 45.488894 + ], + [ + -73.452398, + 45.488943 + ], + [ + -73.452482, + 45.488993 + ], + [ + -73.452596, + 45.489092 + ], + [ + -73.452853, + 45.489389 + ], + [ + -73.453059, + 45.489641 + ], + [ + -73.453301, + 45.489897 + ], + [ + -73.453554, + 45.490154 + ], + [ + -73.453816, + 45.490388 + ], + [ + -73.454028, + 45.490572 + ], + [ + -73.454376, + 45.490852 + ], + [ + -73.454692, + 45.491102 + ], + [ + -73.454792, + 45.49118 + ], + [ + -73.455383, + 45.490825 + ], + [ + -73.456177, + 45.490348 + ], + [ + -73.456382, + 45.490186 + ], + [ + -73.45652, + 45.490034 + ], + [ + -73.456589, + 45.489894 + ], + [ + -73.456688, + 45.489687 + ], + [ + -73.45669, + 45.489678 + ], + [ + -73.456709, + 45.489602 + ], + [ + -73.456724, + 45.489525 + ], + [ + -73.456835, + 45.488612 + ], + [ + -73.456898, + 45.488077 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457718, + 45.48666 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.459242, + 45.485729 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.461091, + 45.484449 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.46135, + 45.4837 + ], + [ + -73.460838, + 45.483637 + ], + [ + -73.460406, + 45.4836 + ], + [ + -73.460186, + 45.483581 + ], + [ + -73.459999, + 45.483565 + ], + [ + -73.459497, + 45.483511 + ], + [ + -73.459033, + 45.483457 + ], + [ + -73.458739, + 45.483407 + ], + [ + -73.458547, + 45.483371 + ], + [ + -73.458333, + 45.483321 + ], + [ + -73.458016, + 45.483245 + ], + [ + -73.45777, + 45.483182 + ], + [ + -73.457502, + 45.483104 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45956, + 45.481339 + ], + [ + -73.460927, + 45.480413 + ], + [ + -73.461043, + 45.480335 + ], + [ + -73.462485, + 45.479345 + ], + [ + -73.462704, + 45.479194 + ], + [ + -73.462837, + 45.479103 + ], + [ + -73.46358, + 45.479629 + ], + [ + -73.463657, + 45.479683 + ], + [ + -73.4647, + 45.479009 + ], + [ + -73.4648, + 45.478959 + ], + [ + -73.464926, + 45.478932 + ], + [ + -73.465079, + 45.478932 + ], + [ + -73.465247, + 45.479 + ], + [ + -73.465163, + 45.479252 + ], + [ + -73.465116, + 45.479393 + ], + [ + -73.464879, + 45.480107 + ], + [ + -73.464823, + 45.480273 + ], + [ + -73.464733, + 45.480574 + ], + [ + -73.464664, + 45.480885 + ], + [ + -73.464646, + 45.48102 + ], + [ + -73.464634, + 45.481108 + ], + [ + -73.464622, + 45.481195 + ], + [ + -73.464619, + 45.481245 + ], + [ + -73.464603, + 45.481524 + ], + [ + -73.464619, + 45.481956 + ], + [ + -73.464693, + 45.482383 + ], + [ + -73.464736, + 45.482559 + ], + [ + -73.46485, + 45.482905 + ], + [ + -73.46499, + 45.483243 + ], + [ + -73.465069, + 45.483405 + ], + [ + -73.465231, + 45.483688 + ], + [ + -73.465328, + 45.483837 + ], + [ + -73.465383, + 45.483922 + ], + [ + -73.465513, + 45.484102 + ], + [ + -73.465839, + 45.48448 + ], + [ + -73.466022, + 45.484682 + ], + [ + -73.46613, + 45.484773 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.46623, + 45.484867 + ], + [ + -73.466294, + 45.484926 + ], + [ + -73.466463, + 45.48506 + ], + [ + -73.466566, + 45.485142 + ], + [ + -73.466759, + 45.48529 + ], + [ + -73.466948, + 45.485421 + ], + [ + -73.467024, + 45.48547 + ], + [ + -73.468004, + 45.486118 + ], + [ + -73.469888, + 45.487365 + ], + [ + -73.470621, + 45.487851 + ], + [ + -73.471604, + 45.488503 + ], + [ + -73.471789, + 45.488626 + ], + [ + -73.473768, + 45.489935 + ], + [ + -73.474008, + 45.490094 + ], + [ + -73.474218, + 45.490232 + ], + [ + -73.476501, + 45.49174 + ], + [ + -73.4777, + 45.49253 + ], + [ + -73.479085, + 45.493444 + ], + [ + -73.479217, + 45.493531 + ], + [ + -73.480275, + 45.494231 + ], + [ + -73.481907, + 45.495309 + ], + [ + -73.482, + 45.495372 + ], + [ + -73.482357, + 45.495608 + ], + [ + -73.483276, + 45.496213 + ], + [ + -73.483953, + 45.496659 + ], + [ + -73.484036, + 45.496717 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.48442, + 45.496983 + ], + [ + -73.484708, + 45.497199 + ], + [ + -73.484931, + 45.497378 + ], + [ + -73.485095, + 45.49751 + ], + [ + -73.485397, + 45.497784 + ], + [ + -73.485739, + 45.498135 + ], + [ + -73.485877, + 45.498284 + ], + [ + -73.486105, + 45.498553 + ], + [ + -73.486286, + 45.498787 + ], + [ + -73.486368, + 45.498907 + ], + [ + -73.486538, + 45.499154 + ], + [ + -73.486685, + 45.499381 + ], + [ + -73.486823, + 45.499615 + ], + [ + -73.486951, + 45.499858 + ], + [ + -73.487138, + 45.500263 + ], + [ + -73.487159, + 45.500317 + ], + [ + -73.487263, + 45.500597 + ], + [ + -73.487306, + 45.500713 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487417, + 45.501077 + ], + [ + -73.487455, + 45.501208 + ], + [ + -73.487464, + 45.50124 + ], + [ + -73.48765, + 45.50191 + ], + [ + -73.487855, + 45.502589 + ], + [ + -73.488032, + 45.50303 + ], + [ + -73.488178, + 45.503309 + ], + [ + -73.488409, + 45.50371 + ], + [ + -73.489159, + 45.504974 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492911, + 45.510101 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497915, + 45.512051 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.500868, + 45.513004 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505099, + 45.514478 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506107, + 45.514749 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511905, + 45.516865 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513431, + 45.518299 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.514993, + 45.519419 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518888, + 45.520627 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.521609, + 45.523676 + ], + [ + -73.521556, + 45.52368 + ], + [ + -73.521506, + 45.523698 + ], + [ + -73.521494, + 45.523725 + ], + [ + -73.521489, + 45.523788 + ], + [ + -73.521486, + 45.523819 + ] + ] + }, + "id": 13, + "properties": { + "id": "af29d253-ab43-467c-8a35-a001916833e1", + "data": { + "gtfs": { + "shape_id": "4_1_A" + }, + "segments": [ + { + "distanceMeters": 349, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 438, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 598, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 446, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 485, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 555, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 544, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 507, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 1156, + "travelTimeSeconds": 151 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 598, + "travelTimeSeconds": 105 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 694, + "travelTimeSeconds": 122 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 246, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 16376, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10373.97286026279, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.66, + "travelTimeWithoutDwellTimesSeconds": 2460, + "operatingTimeWithLayoverTimeSeconds": 2706, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2460, + "operatingSpeedWithLayoverMetersPerSecond": 6.05, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.66 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "7c3e8b4c-c373-431f-8a27-ba6c2f349e5b", + "0ff0280b-6f85-4d12-b102-cc4b8609d72a", + "cbe5dd37-dce1-464a-9725-6d31d37c48ab", + "8dc191fb-71db-4873-9019-c9cedd32b2f0", + "176a1328-a08b-40f7-9010-c279f0b6cf5d", + "b184f86a-a7af-4949-9957-882509c0c182", + "34963af0-6d55-47fa-9de8-fb99aa68c762", + "99164719-41bf-44c1-a7e0-77b9cb1d3a3d", + "189acf66-403d-4292-8dff-0eed1cd28768", + "a17f387c-1398-49f4-8a7b-291d91ebc51f", + "a09ea856-287c-4215-ad6a-dab05db66e7a", + "cd932703-83f9-4acf-94fa-d521e6d427d0", + "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", + "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "e72d0d41-60dd-429c-9fc0-986190945d76", + "5a038102-c755-4ed1-808d-b41a0eb02aa9", + "6e3cdc85-5c0c-43a6-859f-4ad3aa775f67", + "5cb52e5c-c1b7-4111-984c-122d6e4401d5", + "b795edd3-1e6e-4c63-b5cc-c707855d4f44", + "5aef33db-0b7d-4b46-a545-a163c8806e46", + "617e606b-4ed1-4dba-9147-4a51b4bb23f4", + "6d59a527-4747-4d6f-9acd-29b4758d8c2c", + "7650e289-ca0a-45d4-ad94-da11b1683dc6", + "35f25056-4f99-4b6e-babc-10c53194c70e", + "0f232130-277e-4d7b-b106-b6821c45f0a9", + "4262a22a-885d-4877-ad99-0a8406e2adaa", + "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", + "517a8299-e807-4040-8ccd-f417dda7338c", + "da4ca96f-4db9-4287-b307-afc6221c923f", + "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "a90c4da7-455c-41d3-9961-c7a64d627572", + "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", + "491099bb-9493-4888-bd4e-20bd2140830a", + "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", + "10c2e9e3-14c8-465a-917c-28c8d9977609", + "a2558ba6-6969-4ec2-a211-1170eb732a2b", + "a2558ba6-6969-4ec2-a211-1170eb732a2b", + "bf51d692-a22e-42e9-a495-2d1955e0c462", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "4996264a-c3f0-4fe8-be81-9ca3d8659c61", + "e089008c-4123-4897-95b5-a61e5e049f48", + "03b1ef77-b509-4f21-97d5-d511eeb821cb", + "56af9248-f973-4335-84c1-2e5e744a3910", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "fd062866-a8eb-4466-b53a-6adf8fc3f09a", + "6c42a8f6-a98f-4058-9992-d00706a03dff", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "a5b9648a-83c0-4eab-a54b-68c23aecae43", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", + "be19484c-af95-45b2-bfe5-24342dd1b710", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "d7e7bedb-da54-4b78-aecf-158fa91503b7", + "segments": [ + 0, + 4, + 6, + 9, + 12, + 14, + 20, + 24, + 30, + 37, + 39, + 42, + 45, + 48, + 52, + 55, + 61, + 66, + 71, + 77, + 82, + 88, + 92, + 98, + 105, + 111, + 117, + 124, + 130, + 141, + 153, + 161, + 165, + 174, + 179, + 184, + 196, + 205, + 208, + 211, + 213, + 221, + 226, + 247, + 255, + 258, + 262, + 267, + 270, + 288, + 310, + 323, + 326, + 333, + 352, + 358, + 371, + 378 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 13, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.407427, + 45.475701 + ], + [ + -73.407671, + 45.475838 + ], + [ + -73.407863, + 45.475945 + ], + [ + -73.409707, + 45.474585 + ], + [ + -73.41056, + 45.473956 + ], + [ + -73.41241, + 45.472592 + ], + [ + -73.411668, + 45.472104 + ], + [ + -73.411574, + 45.472042 + ], + [ + -73.41199, + 45.471733 + ], + [ + -73.413912, + 45.470304 + ], + [ + -73.414113, + 45.470154 + ], + [ + -73.415611, + 45.469047 + ], + [ + -73.415613, + 45.469046 + ], + [ + -73.415792, + 45.468914 + ], + [ + -73.416609, + 45.469358 + ], + [ + -73.41672, + 45.469418 + ], + [ + -73.417713, + 45.469982 + ], + [ + -73.418132, + 45.470212 + ], + [ + -73.419892, + 45.47118 + ], + [ + -73.421002, + 45.471784 + ], + [ + -73.421017, + 45.471793 + ], + [ + -73.421174, + 45.471887 + ], + [ + -73.424106, + 45.473482 + ], + [ + -73.424833, + 45.473878 + ], + [ + -73.42707, + 45.475086 + ], + [ + -73.42721, + 45.475162 + ], + [ + -73.427939, + 45.475559 + ], + [ + -73.428561, + 45.475892 + ], + [ + -73.429345, + 45.476324 + ], + [ + -73.429408, + 45.476356 + ], + [ + -73.429545, + 45.47644 + ], + [ + -73.429644, + 45.4765 + ], + [ + -73.429958, + 45.476689 + ], + [ + -73.43007, + 45.476775 + ], + [ + -73.430191, + 45.476874 + ], + [ + -73.430682, + 45.477184 + ], + [ + -73.43148, + 45.477725 + ], + [ + -73.43157, + 45.477786 + ], + [ + -73.432859, + 45.478671 + ], + [ + -73.433478, + 45.479091 + ], + [ + -73.433608, + 45.479179 + ], + [ + -73.435032, + 45.480148 + ], + [ + -73.435717, + 45.480608 + ], + [ + -73.435802, + 45.480665 + ], + [ + -73.4369, + 45.481417 + ], + [ + -73.437313, + 45.4817 + ], + [ + -73.437407, + 45.481764 + ], + [ + -73.438338, + 45.48239 + ], + [ + -73.438854, + 45.482753 + ], + [ + -73.438971, + 45.482836 + ], + [ + -73.439533, + 45.483272 + ], + [ + -73.440126, + 45.483709 + ], + [ + -73.440666, + 45.484123 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.441638, + 45.484884 + ], + [ + -73.442265, + 45.485398 + ], + [ + -73.44238, + 45.485492 + ], + [ + -73.442979, + 45.48598 + ], + [ + -73.443236, + 45.48619 + ], + [ + -73.443584, + 45.486491 + ], + [ + -73.443685, + 45.486573 + ], + [ + -73.443941, + 45.486781 + ], + [ + -73.444066, + 45.486883 + ], + [ + -73.443689, + 45.487108 + ], + [ + -73.443286, + 45.487346 + ], + [ + -73.441903, + 45.488164 + ], + [ + -73.441622, + 45.488335 + ], + [ + -73.441555, + 45.488376 + ], + [ + -73.441228, + 45.488564 + ], + [ + -73.440838, + 45.488816 + ], + [ + -73.440766, + 45.488924 + ], + [ + -73.440605, + 45.489241 + ], + [ + -73.440578, + 45.489293 + ], + [ + -73.440338, + 45.489779 + ], + [ + -73.440267, + 45.489918 + ], + [ + -73.440103, + 45.49026 + ], + [ + -73.439969, + 45.490525 + ], + [ + -73.439938, + 45.490581 + ], + [ + -73.439745, + 45.490935 + ], + [ + -73.439594, + 45.491218 + ], + [ + -73.439454, + 45.491495 + ], + [ + -73.439349, + 45.491704 + ], + [ + -73.439197, + 45.491998 + ], + [ + -73.439145, + 45.4921 + ], + [ + -73.439256, + 45.492158 + ], + [ + -73.439383, + 45.492229 + ], + [ + -73.439932, + 45.492532 + ], + [ + -73.440215, + 45.49269 + ], + [ + -73.440531, + 45.49287 + ], + [ + -73.440633, + 45.492928 + ], + [ + -73.440725, + 45.492973 + ], + [ + -73.442066, + 45.493723 + ], + [ + -73.442339, + 45.493875 + ], + [ + -73.442362, + 45.493888 + ], + [ + -73.442408, + 45.493847 + ], + [ + -73.442628, + 45.493654 + ], + [ + -73.442898, + 45.493424 + ], + [ + -73.44315, + 45.493191 + ], + [ + -73.443327, + 45.493041 + ], + [ + -73.443437, + 45.492948 + ], + [ + -73.443519, + 45.492853 + ], + [ + -73.443931, + 45.492444 + ], + [ + -73.444166, + 45.492197 + ], + [ + -73.444645, + 45.491689 + ], + [ + -73.444394, + 45.491549 + ], + [ + -73.444136, + 45.491456 + ], + [ + -73.443933, + 45.491382 + ], + [ + -73.443743, + 45.491333 + ], + [ + -73.444455, + 45.490906 + ], + [ + -73.445249, + 45.490425 + ], + [ + -73.445609, + 45.490209 + ], + [ + -73.445807, + 45.490089 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446822, + 45.490639 + ], + [ + -73.44688, + 45.490686 + ], + [ + -73.44726, + 45.491004 + ], + [ + -73.447337, + 45.491069 + ], + [ + -73.447665, + 45.490889 + ], + [ + -73.448136, + 45.490592 + ], + [ + -73.44848, + 45.49039 + ], + [ + -73.448793, + 45.490206 + ], + [ + -73.44919, + 45.489963 + ], + [ + -73.449326, + 45.489886 + ], + [ + -73.449476, + 45.489801 + ], + [ + -73.450048, + 45.489455 + ], + [ + -73.450226, + 45.489293 + ], + [ + -73.450385, + 45.489131 + ], + [ + -73.450522, + 45.488807 + ], + [ + -73.450553, + 45.48864 + ], + [ + -73.450562, + 45.488591 + ], + [ + -73.450564, + 45.488501 + ], + [ + -73.451142, + 45.48852 + ], + [ + -73.451437, + 45.488556 + ], + [ + -73.451471, + 45.48856 + ], + [ + -73.451663, + 45.488618 + ], + [ + -73.451864, + 45.488677 + ], + [ + -73.452026, + 45.48874 + ], + [ + -73.452059, + 45.488756 + ], + [ + -73.45223, + 45.488835 + ], + [ + -73.452271, + 45.488863 + ], + [ + -73.452316, + 45.488894 + ], + [ + -73.452398, + 45.488943 + ], + [ + -73.452482, + 45.488993 + ], + [ + -73.452596, + 45.489092 + ], + [ + -73.452853, + 45.489389 + ], + [ + -73.453059, + 45.489641 + ], + [ + -73.453301, + 45.489897 + ], + [ + -73.453554, + 45.490154 + ], + [ + -73.453816, + 45.490388 + ], + [ + -73.454028, + 45.490572 + ], + [ + -73.454376, + 45.490852 + ], + [ + -73.454692, + 45.491102 + ], + [ + -73.454792, + 45.49118 + ], + [ + -73.455383, + 45.490825 + ], + [ + -73.456177, + 45.490348 + ], + [ + -73.456382, + 45.490186 + ], + [ + -73.45652, + 45.490034 + ], + [ + -73.456589, + 45.489894 + ], + [ + -73.456688, + 45.489687 + ], + [ + -73.45669, + 45.489678 + ], + [ + -73.456709, + 45.489602 + ], + [ + -73.456724, + 45.489525 + ], + [ + -73.456835, + 45.488612 + ], + [ + -73.456898, + 45.488077 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457718, + 45.48666 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.459242, + 45.485729 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.461091, + 45.484449 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.46135, + 45.4837 + ], + [ + -73.460838, + 45.483637 + ], + [ + -73.460406, + 45.4836 + ], + [ + -73.460186, + 45.483581 + ], + [ + -73.459999, + 45.483565 + ], + [ + -73.459497, + 45.483511 + ], + [ + -73.459033, + 45.483457 + ], + [ + -73.458739, + 45.483407 + ], + [ + -73.458547, + 45.483371 + ], + [ + -73.458333, + 45.483321 + ], + [ + -73.458016, + 45.483245 + ], + [ + -73.45777, + 45.483182 + ], + [ + -73.457502, + 45.483104 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45956, + 45.481339 + ], + [ + -73.460927, + 45.480413 + ], + [ + -73.461043, + 45.480335 + ], + [ + -73.462485, + 45.479345 + ], + [ + -73.462704, + 45.479194 + ], + [ + -73.462837, + 45.479103 + ], + [ + -73.46358, + 45.479629 + ], + [ + -73.463657, + 45.479683 + ], + [ + -73.4647, + 45.479009 + ], + [ + -73.4648, + 45.478959 + ], + [ + -73.464926, + 45.478932 + ], + [ + -73.465079, + 45.478932 + ], + [ + -73.465247, + 45.479 + ], + [ + -73.465163, + 45.479252 + ], + [ + -73.465116, + 45.479393 + ], + [ + -73.464879, + 45.480107 + ], + [ + -73.464823, + 45.480273 + ], + [ + -73.464733, + 45.480574 + ], + [ + -73.464664, + 45.480885 + ], + [ + -73.464646, + 45.48102 + ], + [ + -73.464634, + 45.481108 + ], + [ + -73.464622, + 45.481195 + ], + [ + -73.464619, + 45.481245 + ], + [ + -73.464603, + 45.481524 + ], + [ + -73.464619, + 45.481956 + ], + [ + -73.464693, + 45.482383 + ], + [ + -73.464736, + 45.482559 + ], + [ + -73.46485, + 45.482905 + ], + [ + -73.46499, + 45.483243 + ], + [ + -73.465069, + 45.483405 + ], + [ + -73.465231, + 45.483688 + ], + [ + -73.465328, + 45.483837 + ], + [ + -73.465383, + 45.483922 + ], + [ + -73.465513, + 45.484102 + ], + [ + -73.465839, + 45.48448 + ], + [ + -73.466022, + 45.484682 + ], + [ + -73.46613, + 45.484773 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.46623, + 45.484867 + ], + [ + -73.466294, + 45.484926 + ], + [ + -73.466463, + 45.48506 + ], + [ + -73.466566, + 45.485142 + ], + [ + -73.466759, + 45.48529 + ], + [ + -73.466948, + 45.485421 + ], + [ + -73.467024, + 45.48547 + ], + [ + -73.468004, + 45.486118 + ], + [ + -73.469888, + 45.487365 + ], + [ + -73.470621, + 45.487851 + ], + [ + -73.471604, + 45.488503 + ], + [ + -73.471789, + 45.488626 + ], + [ + -73.473768, + 45.489935 + ], + [ + -73.474008, + 45.490094 + ], + [ + -73.474218, + 45.490232 + ], + [ + -73.476501, + 45.49174 + ], + [ + -73.4777, + 45.49253 + ], + [ + -73.479085, + 45.493444 + ], + [ + -73.479217, + 45.493531 + ], + [ + -73.480275, + 45.494231 + ], + [ + -73.481907, + 45.495309 + ], + [ + -73.482, + 45.495372 + ], + [ + -73.482357, + 45.495608 + ], + [ + -73.483276, + 45.496213 + ], + [ + -73.483953, + 45.496659 + ], + [ + -73.484036, + 45.496717 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.48442, + 45.496983 + ], + [ + -73.484708, + 45.497199 + ], + [ + -73.484931, + 45.497378 + ], + [ + -73.485095, + 45.49751 + ], + [ + -73.485397, + 45.497784 + ], + [ + -73.485739, + 45.498135 + ], + [ + -73.485877, + 45.498284 + ], + [ + -73.486105, + 45.498553 + ], + [ + -73.486286, + 45.498787 + ], + [ + -73.486368, + 45.498907 + ], + [ + -73.486538, + 45.499154 + ], + [ + -73.486685, + 45.499381 + ], + [ + -73.486823, + 45.499615 + ], + [ + -73.486951, + 45.499858 + ], + [ + -73.487138, + 45.500263 + ], + [ + -73.487159, + 45.500317 + ], + [ + -73.487263, + 45.500597 + ], + [ + -73.487306, + 45.500713 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487417, + 45.501077 + ], + [ + -73.487455, + 45.501208 + ], + [ + -73.487464, + 45.50124 + ], + [ + -73.48765, + 45.50191 + ], + [ + -73.487855, + 45.502589 + ], + [ + -73.488032, + 45.50303 + ], + [ + -73.488178, + 45.503309 + ], + [ + -73.488409, + 45.50371 + ], + [ + -73.489159, + 45.504974 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492911, + 45.510101 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497915, + 45.512051 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.500868, + 45.513004 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505099, + 45.514478 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506107, + 45.514749 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511905, + 45.516865 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513431, + 45.518299 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.514993, + 45.519419 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518888, + 45.520627 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.521609, + 45.523676 + ], + [ + -73.521556, + 45.52368 + ], + [ + -73.521506, + 45.523698 + ], + [ + -73.521494, + 45.523725 + ], + [ + -73.521489, + 45.523788 + ], + [ + -73.521486, + 45.523819 + ] + ] + }, + "id": 14, + "properties": { + "id": "73ff2ef1-9155-47fe-936e-b74c397a4cc5", + "data": { + "gtfs": { + "shape_id": "4_2_A" + }, + "segments": [ + { + "distanceMeters": 349, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 438, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 598, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 446, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 485, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 555, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 544, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 507, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 1156, + "travelTimeSeconds": 151 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 598, + "travelTimeSeconds": 105 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 694, + "travelTimeSeconds": 122 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 246, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 16376, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10373.97286026279, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.66, + "travelTimeWithoutDwellTimesSeconds": 2460, + "operatingTimeWithLayoverTimeSeconds": 2706, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2460, + "operatingSpeedWithLayoverMetersPerSecond": 6.05, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.66 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "7c3e8b4c-c373-431f-8a27-ba6c2f349e5b", + "0ff0280b-6f85-4d12-b102-cc4b8609d72a", + "cbe5dd37-dce1-464a-9725-6d31d37c48ab", + "8dc191fb-71db-4873-9019-c9cedd32b2f0", + "176a1328-a08b-40f7-9010-c279f0b6cf5d", + "b184f86a-a7af-4949-9957-882509c0c182", + "34963af0-6d55-47fa-9de8-fb99aa68c762", + "99164719-41bf-44c1-a7e0-77b9cb1d3a3d", + "189acf66-403d-4292-8dff-0eed1cd28768", + "a17f387c-1398-49f4-8a7b-291d91ebc51f", + "a09ea856-287c-4215-ad6a-dab05db66e7a", + "cd932703-83f9-4acf-94fa-d521e6d427d0", + "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", + "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "e72d0d41-60dd-429c-9fc0-986190945d76", + "5a038102-c755-4ed1-808d-b41a0eb02aa9", + "6e3cdc85-5c0c-43a6-859f-4ad3aa775f67", + "5cb52e5c-c1b7-4111-984c-122d6e4401d5", + "b795edd3-1e6e-4c63-b5cc-c707855d4f44", + "5aef33db-0b7d-4b46-a545-a163c8806e46", + "617e606b-4ed1-4dba-9147-4a51b4bb23f4", + "6d59a527-4747-4d6f-9acd-29b4758d8c2c", + "7650e289-ca0a-45d4-ad94-da11b1683dc6", + "35f25056-4f99-4b6e-babc-10c53194c70e", + "0f232130-277e-4d7b-b106-b6821c45f0a9", + "4262a22a-885d-4877-ad99-0a8406e2adaa", + "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", + "517a8299-e807-4040-8ccd-f417dda7338c", + "da4ca96f-4db9-4287-b307-afc6221c923f", + "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "a90c4da7-455c-41d3-9961-c7a64d627572", + "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", + "491099bb-9493-4888-bd4e-20bd2140830a", + "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", + "10c2e9e3-14c8-465a-917c-28c8d9977609", + "a2558ba6-6969-4ec2-a211-1170eb732a2b", + "a2558ba6-6969-4ec2-a211-1170eb732a2b", + "bf51d692-a22e-42e9-a495-2d1955e0c462", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "4996264a-c3f0-4fe8-be81-9ca3d8659c61", + "e089008c-4123-4897-95b5-a61e5e049f48", + "03b1ef77-b509-4f21-97d5-d511eeb821cb", + "56af9248-f973-4335-84c1-2e5e744a3910", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "fd062866-a8eb-4466-b53a-6adf8fc3f09a", + "6c42a8f6-a98f-4058-9992-d00706a03dff", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "a5b9648a-83c0-4eab-a54b-68c23aecae43", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", + "be19484c-af95-45b2-bfe5-24342dd1b710", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "d7e7bedb-da54-4b78-aecf-158fa91503b7", + "segments": [ + 0, + 4, + 6, + 9, + 12, + 14, + 20, + 24, + 30, + 37, + 39, + 42, + 45, + 48, + 52, + 55, + 61, + 66, + 71, + 77, + 82, + 88, + 92, + 98, + 105, + 111, + 117, + 124, + 130, + 141, + 153, + 161, + 165, + 174, + 179, + 184, + 196, + 205, + 208, + 211, + 213, + 221, + 226, + 247, + 255, + 258, + 262, + 267, + 270, + 288, + 310, + 323, + 326, + 333, + 352, + 358, + 371, + 378 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 14, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521486, + 45.523819 + ], + [ + -73.521481, + 45.523874 + ], + [ + -73.52149, + 45.523892 + ], + [ + -73.521509, + 45.523906 + ], + [ + -73.521542, + 45.523919 + ], + [ + -73.521581, + 45.523923 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519257, + 45.520728 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514996, + 45.519328 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513222, + 45.517458 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509952, + 45.515502 + ], + [ + -73.509485, + 45.515357 + ], + [ + -73.509462, + 45.515349 + ], + [ + -73.509376, + 45.515323 + ], + [ + -73.508692, + 45.515143 + ], + [ + -73.508296, + 45.51503 + ], + [ + -73.507817, + 45.514868 + ], + [ + -73.507704, + 45.514841 + ], + [ + -73.507464, + 45.514765 + ], + [ + -73.506516, + 45.514432 + ], + [ + -73.505464, + 45.514054 + ], + [ + -73.505166, + 45.51396 + ], + [ + -73.504861, + 45.513863 + ], + [ + -73.504774, + 45.513836 + ], + [ + -73.504451, + 45.513734 + ], + [ + -73.50434, + 45.513699 + ], + [ + -73.504259, + 45.513672 + ], + [ + -73.503369, + 45.513397 + ], + [ + -73.502433, + 45.51315 + ], + [ + -73.502048, + 45.513078 + ], + [ + -73.501537, + 45.512934 + ], + [ + -73.501411, + 45.512898 + ], + [ + -73.50108, + 45.512799 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499655, + 45.51234 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.498203, + 45.511887 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.494293, + 45.51045 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.494088, + 45.51035 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491841, + 45.508692 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488541, + 45.503629 + ], + [ + -73.48831, + 45.50321 + ], + [ + -73.48823, + 45.503039 + ], + [ + -73.488092, + 45.502693 + ], + [ + -73.487989, + 45.502369 + ], + [ + -73.487959, + 45.502275 + ], + [ + -73.487746, + 45.501478 + ], + [ + -73.487613, + 45.501033 + ], + [ + -73.487523, + 45.500733 + ], + [ + -73.487509, + 45.500686 + ], + [ + -73.487464, + 45.50056 + ], + [ + -73.487346, + 45.500232 + ], + [ + -73.487139, + 45.499795 + ], + [ + -73.486985, + 45.499512 + ], + [ + -73.486838, + 45.499266 + ], + [ + -73.486818, + 45.499233 + ], + [ + -73.48673, + 45.4991 + ], + [ + -73.486631, + 45.498949 + ], + [ + -73.486428, + 45.498675 + ], + [ + -73.486216, + 45.498401 + ], + [ + -73.486166, + 45.498342 + ], + [ + -73.486, + 45.498149 + ], + [ + -73.485576, + 45.497708 + ], + [ + -73.485299, + 45.497456 + ], + [ + -73.485252, + 45.497416 + ], + [ + -73.485251, + 45.497415 + ], + [ + -73.484899, + 45.497123 + ], + [ + -73.484449, + 45.496787 + ], + [ + -73.484387, + 45.49674 + ], + [ + -73.484357, + 45.496722 + ], + [ + -73.482242, + 45.495324 + ], + [ + -73.482144, + 45.49526 + ], + [ + -73.482055, + 45.495201 + ], + [ + -73.47955, + 45.493541 + ], + [ + -73.479372, + 45.493423 + ], + [ + -73.474532, + 45.490225 + ], + [ + -73.474366, + 45.490115 + ], + [ + -73.473909, + 45.489814 + ], + [ + -73.472117, + 45.488629 + ], + [ + -73.471942, + 45.488513 + ], + [ + -73.46708, + 45.485304 + ], + [ + -73.466642, + 45.484984 + ], + [ + -73.46652, + 45.484883 + ], + [ + -73.466473, + 45.484845 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466302, + 45.484687 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466188, + 45.484448 + ], + [ + -73.466149, + 45.484395 + ], + [ + -73.465905, + 45.484113 + ], + [ + -73.465719, + 45.4839 + ], + [ + -73.46546, + 45.483541 + ], + [ + -73.465236, + 45.483174 + ], + [ + -73.465161, + 45.483037 + ], + [ + -73.465057, + 45.482799 + ], + [ + -73.464968, + 45.48254 + ], + [ + -73.46489, + 45.482284 + ], + [ + -73.464833, + 45.481906 + ], + [ + -73.464816, + 45.481524 + ], + [ + -73.464843, + 45.481165 + ], + [ + -73.464847, + 45.481114 + ], + [ + -73.464866, + 45.480979 + ], + [ + -73.46492, + 45.48071 + ], + [ + -73.465032, + 45.480327 + ], + [ + -73.465198, + 45.479819 + ], + [ + -73.46547, + 45.479009 + ], + [ + -73.465247, + 45.479 + ], + [ + -73.465079, + 45.478932 + ], + [ + -73.464926, + 45.478932 + ], + [ + -73.4648, + 45.478959 + ], + [ + -73.4647, + 45.479009 + ], + [ + -73.464545, + 45.479109 + ], + [ + -73.464217, + 45.479321 + ], + [ + -73.463657, + 45.479683 + ], + [ + -73.462965, + 45.479193 + ], + [ + -73.462837, + 45.479103 + ], + [ + -73.46243, + 45.479382 + ], + [ + -73.461146, + 45.480265 + ], + [ + -73.461043, + 45.480335 + ], + [ + -73.457237, + 45.48291 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.456963, + 45.483096 + ], + [ + -73.457696, + 45.483312 + ], + [ + -73.457948, + 45.48338 + ], + [ + -73.45825, + 45.483452 + ], + [ + -73.458477, + 45.483499 + ], + [ + -73.458491, + 45.483501 + ], + [ + -73.458691, + 45.483542 + ], + [ + -73.458995, + 45.483592 + ], + [ + -73.459974, + 45.483704 + ], + [ + -73.46004, + 45.48371 + ], + [ + -73.460528, + 45.483756 + ], + [ + -73.460806, + 45.483781 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461197, + 45.484333 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.459553, + 45.4855 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.457879, + 45.486539 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.456939, + 45.487841 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456835, + 45.488612 + ], + [ + -73.456724, + 45.489525 + ], + [ + -73.456709, + 45.489602 + ], + [ + -73.456688, + 45.489687 + ], + [ + -73.456589, + 45.489894 + ], + [ + -73.456546, + 45.489981 + ], + [ + -73.45652, + 45.490034 + ], + [ + -73.456382, + 45.490186 + ], + [ + -73.456177, + 45.490348 + ], + [ + -73.455033, + 45.491035 + ], + [ + -73.454792, + 45.49118 + ], + [ + -73.454498, + 45.490948 + ], + [ + -73.454376, + 45.490852 + ], + [ + -73.454028, + 45.490572 + ], + [ + -73.453816, + 45.490388 + ], + [ + -73.453554, + 45.490154 + ], + [ + -73.453301, + 45.489897 + ], + [ + -73.453059, + 45.489641 + ], + [ + -73.452853, + 45.489389 + ], + [ + -73.452596, + 45.489092 + ], + [ + -73.452482, + 45.488993 + ], + [ + -73.452438, + 45.488967 + ], + [ + -73.452398, + 45.488943 + ], + [ + -73.452316, + 45.488894 + ], + [ + -73.45223, + 45.488835 + ], + [ + -73.452059, + 45.488756 + ], + [ + -73.452026, + 45.48874 + ], + [ + -73.451864, + 45.488677 + ], + [ + -73.451663, + 45.488618 + ], + [ + -73.451471, + 45.48856 + ], + [ + -73.451142, + 45.48852 + ], + [ + -73.450756, + 45.488507 + ], + [ + -73.450564, + 45.488501 + ], + [ + -73.450562, + 45.488591 + ], + [ + -73.450522, + 45.488807 + ], + [ + -73.450385, + 45.489131 + ], + [ + -73.450226, + 45.489293 + ], + [ + -73.450048, + 45.489455 + ], + [ + -73.449936, + 45.489523 + ], + [ + -73.449645, + 45.489699 + ], + [ + -73.449476, + 45.489801 + ], + [ + -73.44919, + 45.489963 + ], + [ + -73.448793, + 45.490206 + ], + [ + -73.44848, + 45.49039 + ], + [ + -73.448136, + 45.490592 + ], + [ + -73.447665, + 45.490889 + ], + [ + -73.447459, + 45.491002 + ], + [ + -73.447337, + 45.491069 + ], + [ + -73.44688, + 45.490686 + ], + [ + -73.446822, + 45.490639 + ], + [ + -73.446251, + 45.490172 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.445609, + 45.490209 + ], + [ + -73.445249, + 45.490425 + ], + [ + -73.444455, + 45.490906 + ], + [ + -73.443916, + 45.491229 + ], + [ + -73.443743, + 45.491333 + ], + [ + -73.443933, + 45.491382 + ], + [ + -73.444394, + 45.491549 + ], + [ + -73.444645, + 45.491689 + ], + [ + -73.444166, + 45.492197 + ], + [ + -73.443931, + 45.492444 + ], + [ + -73.443524, + 45.492848 + ], + [ + -73.443519, + 45.492853 + ], + [ + -73.443437, + 45.492948 + ], + [ + -73.44315, + 45.493191 + ], + [ + -73.442898, + 45.493424 + ], + [ + -73.442628, + 45.493654 + ], + [ + -73.442459, + 45.493802 + ], + [ + -73.442408, + 45.493847 + ], + [ + -73.442362, + 45.493888 + ], + [ + -73.442066, + 45.493723 + ], + [ + -73.440729, + 45.492976 + ], + [ + -73.440725, + 45.492973 + ], + [ + -73.440633, + 45.492928 + ], + [ + -73.440215, + 45.49269 + ], + [ + -73.439932, + 45.492532 + ], + [ + -73.439282, + 45.492173 + ], + [ + -73.439256, + 45.492158 + ], + [ + -73.439145, + 45.4921 + ], + [ + -73.439349, + 45.491704 + ], + [ + -73.439454, + 45.491495 + ], + [ + -73.439594, + 45.491218 + ], + [ + -73.439745, + 45.490935 + ], + [ + -73.43978, + 45.490871 + ], + [ + -73.439881, + 45.490686 + ], + [ + -73.439969, + 45.490525 + ], + [ + -73.440103, + 45.49026 + ], + [ + -73.440267, + 45.489918 + ], + [ + -73.440338, + 45.489779 + ], + [ + -73.440531, + 45.489389 + ], + [ + -73.440578, + 45.489293 + ], + [ + -73.440766, + 45.488924 + ], + [ + -73.440838, + 45.488816 + ], + [ + -73.441228, + 45.488564 + ], + [ + -73.441401, + 45.488465 + ], + [ + -73.441555, + 45.488376 + ], + [ + -73.441903, + 45.488164 + ], + [ + -73.443286, + 45.487346 + ], + [ + -73.443689, + 45.487108 + ], + [ + -73.443935, + 45.486961 + ], + [ + -73.444066, + 45.486883 + ], + [ + -73.444194, + 45.486807 + ], + [ + -73.443808, + 45.486496 + ], + [ + -73.443706, + 45.486415 + ], + [ + -73.44336, + 45.486118 + ], + [ + -73.44263, + 45.485517 + ], + [ + -73.442528, + 45.485434 + ], + [ + -73.441754, + 45.484812 + ], + [ + -73.440975, + 45.484193 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.440245, + 45.483633 + ], + [ + -73.43964, + 45.483201 + ], + [ + -73.439149, + 45.482819 + ], + [ + -73.439083, + 45.482768 + ], + [ + -73.438464, + 45.482318 + ], + [ + -73.437642, + 45.481755 + ], + [ + -73.437512, + 45.481665 + ], + [ + -73.437014, + 45.481332 + ], + [ + -73.436033, + 45.48066 + ], + [ + -73.435909, + 45.480575 + ], + [ + -73.43514, + 45.480067 + ], + [ + -73.433825, + 45.479172 + ], + [ + -73.433717, + 45.479098 + ], + [ + -73.432962, + 45.478594 + ], + [ + -73.431689, + 45.477709 + ], + [ + -73.431589, + 45.477639 + ], + [ + -73.431156, + 45.477363 + ], + [ + -73.430822, + 45.47715 + ], + [ + -73.430771, + 45.477117 + ], + [ + -73.430341, + 45.476838 + ], + [ + -73.430219, + 45.476739 + ], + [ + -73.430066, + 45.476622 + ], + [ + -73.429584, + 45.476333 + ], + [ + -73.429432, + 45.476243 + ], + [ + -73.429213, + 45.476117 + ], + [ + -73.428817, + 45.475896 + ], + [ + -73.428674, + 45.475815 + ], + [ + -73.428041, + 45.475473 + ], + [ + -73.427438, + 45.475149 + ], + [ + -73.427303, + 45.475077 + ], + [ + -73.424942, + 45.473788 + ], + [ + -73.42448, + 45.473518 + ], + [ + -73.42423, + 45.47337 + ], + [ + -73.421489, + 45.47188 + ], + [ + -73.421313, + 45.471784 + ], + [ + -73.421136, + 45.47168 + ], + [ + -73.420016, + 45.471068 + ], + [ + -73.417836, + 45.469869 + ], + [ + -73.416987, + 45.469413 + ], + [ + -73.416906, + 45.469369 + ], + [ + -73.416836, + 45.469338 + ], + [ + -73.415903, + 45.468828 + ], + [ + -73.415843, + 45.468873 + ], + [ + -73.415792, + 45.468914 + ], + [ + -73.41507, + 45.469447 + ], + [ + -73.414201, + 45.470089 + ], + [ + -73.414113, + 45.470154 + ], + [ + -73.411713, + 45.471939 + ], + [ + -73.411574, + 45.472042 + ], + [ + -73.409684, + 45.473437 + ], + [ + -73.407179, + 45.475288 + ], + [ + -73.406966, + 45.475444 + ], + [ + -73.407427, + 45.475701 + ] + ] + }, + "id": 15, + "properties": { + "id": "c6441207-f979-4711-a641-4c2297618d9e", + "data": { + "gtfs": { + "shape_id": "4_1_R" + }, + "segments": [ + { + "distanceMeters": 706, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 384, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 403, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 345, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 954, + "travelTimeSeconds": 145 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 538, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 604, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 771, + "travelTimeSeconds": 121 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 424, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 92, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 590, + "travelTimeSeconds": 106 + }, + { + "distanceMeters": 446, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 70, + "travelTimeSeconds": 13 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 246, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 16372, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10373.97286026279, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.66, + "travelTimeWithoutDwellTimesSeconds": 2460, + "operatingTimeWithLayoverTimeSeconds": 2706, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2460, + "operatingSpeedWithLayoverMetersPerSecond": 6.05, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.66 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "d3215c60-bb9e-40ac-89e4-1f922b39e266", + "f9358f54-8643-47f5-b0df-4a20b46cc22d", + "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", + "f4f29738-df3f-4d69-8632-9088ded0dc5a", + "741876fc-030a-42f6-a33a-8f1f9c2aba12", + "688a3f67-a176-441e-a399-c92a55de9c74", + "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", + "37199bb2-9740-4484-b68f-12d3c82f8bf9", + "bcd0a901-5384-443e-9be4-1f0faa123ccb", + "fdd9bfef-c8dc-4f65-9008-847050729854", + "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", + "7ad37664-fa6b-478f-8d31-2d3ae7009709", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "94cd69e7-ebc9-452b-a357-367107db73b4", + "03b1ef77-b509-4f21-97d5-d511eeb821cb", + "351136d8-2c40-4c3f-8032-a52e48738c07", + "159a0fe9-bedb-40f2-9806-32ab49594978", + "bf51d692-a22e-42e9-a495-2d1955e0c462", + "a2558ba6-6969-4ec2-a211-1170eb732a2b", + "10c2e9e3-14c8-465a-917c-28c8d9977609", + "fd67ddde-e938-481c-8721-79fa136304ae", + "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", + "c24b91da-a4a3-4b28-b987-5726c6a01fdb", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", + "da4ca96f-4db9-4287-b307-afc6221c923f", + "517a8299-e807-4040-8ccd-f417dda7338c", + "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", + "4262a22a-885d-4877-ad99-0a8406e2adaa", + "0f232130-277e-4d7b-b106-b6821c45f0a9", + "35f25056-4f99-4b6e-babc-10c53194c70e", + "7650e289-ca0a-45d4-ad94-da11b1683dc6", + "6d59a527-4747-4d6f-9acd-29b4758d8c2c", + "617e606b-4ed1-4dba-9147-4a51b4bb23f4", + "5aef33db-0b7d-4b46-a545-a163c8806e46", + "b795edd3-1e6e-4c63-b5cc-c707855d4f44", + "5cb52e5c-c1b7-4111-984c-122d6e4401d5", + "6e3cdc85-5c0c-43a6-859f-4ad3aa775f67", + "5a038102-c755-4ed1-808d-b41a0eb02aa9", + "e72d0d41-60dd-429c-9fc0-986190945d76", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", + "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", + "cd932703-83f9-4acf-94fa-d521e6d427d0", + "a09ea856-287c-4215-ad6a-dab05db66e7a", + "a17f387c-1398-49f4-8a7b-291d91ebc51f", + "71881b96-39d5-48ea-9242-5e05ded39cda", + "3bdfaeff-1b70-46d9-94b3-c14187a3f83c", + "99164719-41bf-44c1-a7e0-77b9cb1d3a3d", + "34963af0-6d55-47fa-9de8-fb99aa68c762", + "b184f86a-a7af-4949-9957-882509c0c182", + "8dc191fb-71db-4873-9019-c9cedd32b2f0", + "cbe5dd37-dce1-464a-9725-6d31d37c48ab", + "fb30643a-60d9-443e-8b22-29ad762aebdb", + "bd054361-ba99-4c5e-bde0-47f325682b88", + "7c3e8b4c-c373-431f-8a27-ba6c2f349e5b" + ], + "stops": [], + "line_id": "d7e7bedb-da54-4b78-aecf-158fa91503b7", + "segments": [ + 0, + 45, + 52, + 59, + 69, + 80, + 87, + 91, + 96, + 106, + 118, + 136, + 142, + 152, + 155, + 158, + 161, + 163, + 166, + 170, + 199, + 202, + 205, + 207, + 219, + 232, + 238, + 247, + 254, + 258, + 270, + 280, + 288, + 295, + 299, + 306, + 313, + 319, + 323, + 328, + 336, + 341, + 346, + 351, + 357, + 360, + 364, + 367, + 370, + 373, + 376, + 379, + 387, + 390, + 395, + 400, + 407, + 409, + 411, + 412 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 15, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.398942, + 45.50191 + ], + [ + -73.396837, + 45.502044 + ], + [ + -73.395381, + 45.502132 + ], + [ + -73.395213, + 45.502142 + ], + [ + -73.395161, + 45.502053 + ], + [ + -73.395151, + 45.501975 + ], + [ + -73.395111, + 45.50166 + ], + [ + -73.395084, + 45.501431 + ], + [ + -73.395041, + 45.50117 + ], + [ + -73.395041, + 45.501053 + ], + [ + -73.395077, + 45.50094 + ], + [ + -73.3955, + 45.500069 + ], + [ + -73.395555, + 45.499955 + ], + [ + -73.395706, + 45.499618 + ], + [ + -73.395829, + 45.49938 + ], + [ + -73.395901, + 45.499299 + ], + [ + -73.396037, + 45.499128 + ], + [ + -73.396173, + 45.499011 + ], + [ + -73.396508, + 45.498695 + ], + [ + -73.396766, + 45.498454 + ], + [ + -73.396911, + 45.498319 + ], + [ + -73.397102, + 45.498121 + ], + [ + -73.397351, + 45.497878 + ], + [ + -73.397678, + 45.497573 + ], + [ + -73.397919, + 45.497334 + ], + [ + -73.397979, + 45.49728 + ], + [ + -73.398209, + 45.497074 + ], + [ + -73.398541, + 45.496804 + ], + [ + -73.398788, + 45.496579 + ], + [ + -73.399137, + 45.496287 + ], + [ + -73.399245, + 45.496194 + ], + [ + -73.399546, + 45.495932 + ], + [ + -73.399607, + 45.495824 + ], + [ + -73.399612, + 45.49582 + ], + [ + -73.399701, + 45.495748 + ], + [ + -73.399832, + 45.495561 + ], + [ + -73.399866, + 45.495514 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.401121, + 45.49596 + ], + [ + -73.401602, + 45.496181 + ], + [ + -73.402418, + 45.496555 + ], + [ + -73.402953, + 45.49679 + ], + [ + -73.403393, + 45.496985 + ], + [ + -73.403543, + 45.497051 + ], + [ + -73.403795, + 45.49716 + ], + [ + -73.404434, + 45.497426 + ], + [ + -73.404858, + 45.497588 + ], + [ + -73.405172, + 45.497723 + ], + [ + -73.405568, + 45.497876 + ], + [ + -73.406291, + 45.498153 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.406288, + 45.49843 + ], + [ + -73.406193, + 45.498579 + ], + [ + -73.406191, + 45.498584 + ], + [ + -73.406163, + 45.49864 + ], + [ + -73.405911, + 45.499145 + ], + [ + -73.405493, + 45.499995 + ], + [ + -73.405383, + 45.500198 + ], + [ + -73.405251, + 45.500369 + ], + [ + -73.405082, + 45.500567 + ], + [ + -73.405027, + 45.500619 + ], + [ + -73.404894, + 45.500746 + ], + [ + -73.404658, + 45.500926 + ], + [ + -73.404439, + 45.50107 + ], + [ + -73.404275, + 45.501164 + ], + [ + -73.404095, + 45.501254 + ], + [ + -73.403728, + 45.501411 + ], + [ + -73.403505, + 45.501483 + ], + [ + -73.403239, + 45.501555 + ], + [ + -73.403207, + 45.501564 + ], + [ + -73.402929, + 45.501627 + ], + [ + -73.402747, + 45.501658 + ], + [ + -73.402456, + 45.501689 + ], + [ + -73.401996, + 45.50172 + ], + [ + -73.401156, + 45.501773 + ], + [ + -73.401007, + 45.501782 + ], + [ + -73.399341, + 45.501884 + ], + [ + -73.399355, + 45.501992 + ], + [ + -73.3994, + 45.50233 + ], + [ + -73.399402, + 45.502346 + ], + [ + -73.399417, + 45.50246 + ], + [ + -73.399441, + 45.502676 + ], + [ + -73.399508, + 45.503131 + ], + [ + -73.399523, + 45.503233 + ], + [ + -73.399542, + 45.50336 + ], + [ + -73.399657, + 45.504175 + ], + [ + -73.399715, + 45.5046 + ], + [ + -73.399729, + 45.504706 + ], + [ + -73.39976, + 45.505156 + ], + [ + -73.399787, + 45.505322 + ], + [ + -73.39982, + 45.505426 + ], + [ + -73.399886, + 45.505552 + ], + [ + -73.399949, + 45.505664 + ], + [ + -73.400052, + 45.505795 + ], + [ + -73.400152, + 45.505885 + ], + [ + -73.40031, + 45.50598 + ], + [ + -73.40043, + 45.506038 + ], + [ + -73.400576, + 45.506099 + ], + [ + -73.400593, + 45.506106 + ], + [ + -73.400668, + 45.506128 + ], + [ + -73.400809, + 45.506169 + ], + [ + -73.403269, + 45.506793 + ], + [ + -73.403459, + 45.506842 + ], + [ + -73.404937, + 45.507219 + ], + [ + -73.404942, + 45.507221 + ], + [ + -73.40508, + 45.507248 + ], + [ + -73.405181, + 45.507248 + ], + [ + -73.405194, + 45.507248 + ], + [ + -73.405268, + 45.507208 + ], + [ + -73.405549, + 45.506609 + ], + [ + -73.405719, + 45.506277 + ], + [ + -73.405871, + 45.505971 + ], + [ + -73.405984, + 45.50575 + ], + [ + -73.406106, + 45.505495 + ], + [ + -73.40619, + 45.505319 + ], + [ + -73.406364, + 45.504981 + ], + [ + -73.406515, + 45.50468 + ], + [ + -73.406677, + 45.504352 + ], + [ + -73.406855, + 45.504005 + ], + [ + -73.407261, + 45.504118 + ], + [ + -73.407475, + 45.504174 + ], + [ + -73.407623, + 45.504212 + ], + [ + -73.407766, + 45.504249 + ], + [ + -73.408367, + 45.504398 + ], + [ + -73.408932, + 45.504538 + ], + [ + -73.409315, + 45.504637 + ], + [ + -73.409673, + 45.504729 + ], + [ + -73.409774, + 45.504755 + ], + [ + -73.41077, + 45.504994 + ], + [ + -73.41145, + 45.505167 + ], + [ + -73.411569, + 45.505197 + ], + [ + -73.412507, + 45.505418 + ], + [ + -73.412645, + 45.505436 + ], + [ + -73.412747, + 45.50545 + ], + [ + -73.412864, + 45.50545 + ], + [ + -73.413013, + 45.505441 + ], + [ + -73.413165, + 45.505425 + ], + [ + -73.413318, + 45.50541 + ], + [ + -73.413549, + 45.505378 + ], + [ + -73.413728, + 45.505356 + ], + [ + -73.413859, + 45.505329 + ], + [ + -73.414002, + 45.505302 + ], + [ + -73.414101, + 45.505275 + ], + [ + -73.41431, + 45.50519 + ], + [ + -73.414386, + 45.505141 + ], + [ + -73.414456, + 45.505105 + ], + [ + -73.414518, + 45.50506 + ], + [ + -73.414599, + 45.50497 + ], + [ + -73.414677, + 45.504884 + ], + [ + -73.41471, + 45.504826 + ], + [ + -73.41477, + 45.504718 + ], + [ + -73.415883, + 45.50251 + ], + [ + -73.41601, + 45.502261 + ], + [ + -73.41606, + 45.502164 + ], + [ + -73.416178, + 45.501934 + ], + [ + -73.416751, + 45.502146 + ], + [ + -73.417065, + 45.502261 + ], + [ + -73.417293, + 45.502344 + ], + [ + -73.417806, + 45.502538 + ], + [ + -73.418173, + 45.502669 + ], + [ + -73.418847, + 45.502921 + ], + [ + -73.418855, + 45.502924 + ], + [ + -73.419167, + 45.503047 + ], + [ + -73.419278, + 45.503088 + ], + [ + -73.419673, + 45.503241 + ], + [ + -73.420142, + 45.503431 + ], + [ + -73.420687, + 45.503664 + ], + [ + -73.420806, + 45.503714 + ], + [ + -73.421234, + 45.503904 + ], + [ + -73.421648, + 45.504084 + ], + [ + -73.421847, + 45.503805 + ], + [ + -73.421882, + 45.503756 + ], + [ + -73.421936, + 45.503681 + ], + [ + -73.422478, + 45.502933 + ], + [ + -73.42255, + 45.502834 + ], + [ + -73.423187, + 45.501937 + ], + [ + -73.423367, + 45.501683 + ], + [ + -73.423423, + 45.501602 + ], + [ + -73.423518, + 45.501444 + ], + [ + -73.423572, + 45.501404 + ], + [ + -73.424528, + 45.500041 + ], + [ + -73.424818, + 45.49964 + ], + [ + -73.424908, + 45.499515 + ], + [ + -73.426337, + 45.497501 + ], + [ + -73.426401, + 45.49741 + ], + [ + -73.42783, + 45.495424 + ], + [ + -73.427911, + 45.49531 + ], + [ + -73.42799, + 45.495202 + ], + [ + -73.429317, + 45.493365 + ], + [ + -73.429402, + 45.493246 + ], + [ + -73.430659, + 45.491516 + ], + [ + -73.430914, + 45.491164 + ], + [ + -73.431849, + 45.489835 + ], + [ + -73.432063, + 45.489531 + ], + [ + -73.43217, + 45.489383 + ], + [ + -73.43219, + 45.48936 + ], + [ + -73.432305, + 45.489239 + ], + [ + -73.432556, + 45.489041 + ], + [ + -73.432684, + 45.488933 + ], + [ + -73.432921, + 45.48878 + ], + [ + -73.433484, + 45.488439 + ], + [ + -73.435044, + 45.487531 + ], + [ + -73.435153, + 45.487468 + ], + [ + -73.437094, + 45.486331 + ], + [ + -73.437465, + 45.486115 + ], + [ + -73.43775, + 45.485944 + ], + [ + -73.437823, + 45.485899 + ], + [ + -73.438008, + 45.485782 + ], + [ + -73.439264, + 45.485036 + ], + [ + -73.439959, + 45.484631 + ], + [ + -73.440551, + 45.484309 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.443018, + 45.482865 + ], + [ + -73.443627, + 45.482492 + ], + [ + -73.443745, + 45.48242 + ], + [ + -73.445624, + 45.481309 + ], + [ + -73.446413, + 45.480839 + ], + [ + -73.446581, + 45.480738 + ], + [ + -73.448451, + 45.479622 + ], + [ + -73.448771, + 45.479431 + ], + [ + -73.449044, + 45.479268 + ], + [ + -73.449242, + 45.479145 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.44954, + 45.478958 + ], + [ + -73.449587, + 45.478931 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.44904, + 45.47838 + ], + [ + -73.449352, + 45.478167 + ], + [ + -73.451084, + 45.476981 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.453403, + 45.475394 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.455822, + 45.473738 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.458196, + 45.472113 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.460481, + 45.470553 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.462574, + 45.469113 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.465173, + 45.468282 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.468602, + 45.466372 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.46904, + 45.466277 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467867, + 45.466069 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469319, + 45.467991 + ], + [ + -73.469043, + 45.467983 + ], + [ + -73.468598, + 45.467969 + ], + [ + -73.468434, + 45.467978 + ], + [ + -73.467926, + 45.468045 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.46758, + 45.467757 + ], + [ + -73.467357, + 45.467296 + ], + [ + -73.467335, + 45.467098 + ], + [ + -73.467287, + 45.466921 + ], + [ + -73.46724, + 45.46679 + ], + [ + -73.467201, + 45.466621 + ], + [ + -73.467171, + 45.466457 + ], + [ + -73.467168, + 45.466361 + ], + [ + -73.467171, + 45.466266 + ], + [ + -73.46719, + 45.46616 + ], + [ + -73.467233, + 45.466051 + ], + [ + -73.467286, + 45.465947 + ], + [ + -73.467286, + 45.465946 + ], + [ + -73.467347, + 45.465852 + ], + [ + -73.46743, + 45.465768 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467565, + 45.465647 + ], + [ + -73.467708, + 45.465556 + ], + [ + -73.467899, + 45.465442 + ], + [ + -73.46805, + 45.465387 + ], + [ + -73.468287, + 45.465321 + ], + [ + -73.468514, + 45.465288 + ], + [ + -73.468859, + 45.465256 + ], + [ + -73.469207, + 45.465245 + ], + [ + -73.471824, + 45.46534 + ], + [ + -73.47278, + 45.465351 + ], + [ + -73.473923, + 45.465346 + ], + [ + -73.474792, + 45.465284 + ], + [ + -73.476448, + 45.465339 + ], + [ + -73.478069, + 45.465419 + ], + [ + -73.47931, + 45.465481 + ], + [ + -73.480681, + 45.465584 + ], + [ + -73.481658, + 45.465665 + ], + [ + -73.483804, + 45.465854 + ], + [ + -73.485886, + 45.466123 + ], + [ + -73.488038, + 45.466444 + ], + [ + -73.489088, + 45.466602 + ], + [ + -73.491585, + 45.46694 + ], + [ + -73.494707, + 45.467307 + ], + [ + -73.494917, + 45.467332 + ], + [ + -73.494999, + 45.467342 + ], + [ + -73.497318, + 45.467635 + ], + [ + -73.501976, + 45.468162 + ], + [ + -73.50546, + 45.468524 + ], + [ + -73.508994, + 45.468874 + ], + [ + -73.510795, + 45.469064 + ], + [ + -73.516615, + 45.469606 + ], + [ + -73.520513, + 45.469901 + ], + [ + -73.524263, + 45.470138 + ], + [ + -73.526895, + 45.470234 + ], + [ + -73.536203, + 45.470502 + ], + [ + -73.537479, + 45.470611 + ], + [ + -73.540035, + 45.470737 + ], + [ + -73.540574, + 45.470754 + ], + [ + -73.541689, + 45.470806 + ], + [ + -73.54236, + 45.470938 + ], + [ + -73.542685, + 45.471019 + ], + [ + -73.543056, + 45.471172 + ], + [ + -73.543235, + 45.471297 + ], + [ + -73.543427, + 45.47153 + ], + [ + -73.543495, + 45.471781 + ], + [ + -73.543487, + 45.471977 + ], + [ + -73.543374, + 45.472246 + ], + [ + -73.543123, + 45.472648 + ], + [ + -73.543053, + 45.472745 + ], + [ + -73.543034, + 45.472772 + ], + [ + -73.543013, + 45.472801 + ], + [ + -73.542473, + 45.473549 + ], + [ + -73.542275, + 45.473832 + ], + [ + -73.542255, + 45.473861 + ], + [ + -73.542175, + 45.473976 + ], + [ + -73.542016, + 45.474229 + ], + [ + -73.541794, + 45.474618 + ], + [ + -73.541458, + 45.475221 + ], + [ + -73.541094, + 45.47588 + ], + [ + -73.540722, + 45.476557 + ], + [ + -73.540393, + 45.477154 + ], + [ + -73.540141, + 45.477612 + ], + [ + -73.539989, + 45.477937 + ], + [ + -73.539912, + 45.478117 + ], + [ + -73.53962, + 45.478792 + ], + [ + -73.539453, + 45.479242 + ], + [ + -73.539011, + 45.480452 + ], + [ + -73.538771, + 45.481137 + ], + [ + -73.538372, + 45.4823 + ], + [ + -73.537796, + 45.483909 + ], + [ + -73.537682, + 45.484235 + ], + [ + -73.537533, + 45.484742 + ], + [ + -73.537501, + 45.485252 + ], + [ + -73.537565, + 45.485765 + ], + [ + -73.537725, + 45.486206 + ], + [ + -73.537953, + 45.486613 + ], + [ + -73.538211, + 45.486968 + ], + [ + -73.538564, + 45.487319 + ], + [ + -73.538991, + 45.48766 + ], + [ + -73.539413, + 45.487933 + ], + [ + -73.540409, + 45.488352 + ], + [ + -73.540999, + 45.488508 + ], + [ + -73.545779, + 45.489431 + ], + [ + -73.547415, + 45.489732 + ], + [ + -73.548107, + 45.48986 + ], + [ + -73.549549, + 45.490154 + ], + [ + -73.549968, + 45.490239 + ], + [ + -73.550646, + 45.490459 + ], + [ + -73.551261, + 45.490742 + ], + [ + -73.55163, + 45.490924 + ], + [ + -73.551996, + 45.491154 + ], + [ + -73.552466, + 45.491495 + ], + [ + -73.552812, + 45.491812 + ], + [ + -73.553225, + 45.492293 + ], + [ + -73.553459, + 45.492647 + ], + [ + -73.553701, + 45.493121 + ], + [ + -73.553714, + 45.493155 + ], + [ + -73.554005, + 45.493935 + ], + [ + -73.554229, + 45.494495 + ], + [ + -73.55441, + 45.494962 + ], + [ + -73.554709, + 45.495574 + ], + [ + -73.554963, + 45.495825 + ], + [ + -73.555225, + 45.496022 + ], + [ + -73.555665, + 45.496222 + ], + [ + -73.557268, + 45.496821 + ], + [ + -73.557934, + 45.497074 + ], + [ + -73.558754, + 45.497382 + ], + [ + -73.559129, + 45.497554 + ], + [ + -73.559665, + 45.497799 + ], + [ + -73.56055, + 45.498258 + ], + [ + -73.561247, + 45.498577 + ], + [ + -73.561311, + 45.498457 + ], + [ + -73.561361, + 45.498363 + ], + [ + -73.561384, + 45.498316 + ], + [ + -73.561417, + 45.498249 + ], + [ + -73.561461, + 45.49816 + ], + [ + -73.561504, + 45.498074 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.562038, + 45.497108 + ], + [ + -73.562161, + 45.497168 + ], + [ + -73.562611, + 45.497387 + ], + [ + -73.562698, + 45.497457 + ], + [ + -73.562791, + 45.497486 + ], + [ + -73.562898, + 45.497495 + ], + [ + -73.563026, + 45.497486 + ], + [ + -73.563269, + 45.497461 + ], + [ + -73.563391, + 45.497457 + ], + [ + -73.563535, + 45.497468 + ], + [ + -73.56365, + 45.497486 + ], + [ + -73.56376, + 45.497514 + ], + [ + -73.563861, + 45.497562 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.56431, + 45.497835 + ], + [ + -73.565142, + 45.498217 + ], + [ + -73.565601, + 45.498443 + ], + [ + -73.565748, + 45.49831 + ], + [ + -73.565849, + 45.498292 + ], + [ + -73.566051, + 45.498359 + ], + [ + -73.566361, + 45.498471 + ], + [ + -73.566492, + 45.498485 + ], + [ + -73.566611, + 45.498345 + ] + ] + }, + "id": 16, + "properties": { + "id": "dfd8969f-f649-4b39-a7d6-bed32f894636", + "data": { + "gtfs": { + "shape_id": "5_1_A" + }, + "segments": [ + { + "distanceMeters": 279, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 195, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 548, + "travelTimeSeconds": 107 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 11546, + "travelTimeSeconds": 1011 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 276, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 22901, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 13093.326569994628, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.3, + "travelTimeWithoutDwellTimesSeconds": 2760, + "operatingTimeWithLayoverTimeSeconds": 3036, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2760, + "operatingSpeedWithLayoverMetersPerSecond": 7.54, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.3 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0", + "5c25bfb5-c167-4f71-8798-e94a8ad7560d", + "e4d9e692-bf6d-4c61-9845-9e50427c4cad", + "2550d07e-5034-443e-9840-7e9abcf5a62b", + "2e7cf58e-8d32-4b71-acee-694db180235f", + "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", + "33ed66fe-2193-4e2a-b51d-d25140b9ad80", + "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", + "aab8672e-86c9-4a43-9806-f5135dc02b4e", + "7414010b-fe1f-4d77-8cdd-701cc437e73a", + "dc630e4d-102e-48b9-8b4a-920cafc01d4a", + "00ed067b-7627-492d-ac0f-5d03bd3b185c", + "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", + "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", + "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", + "b20c17a3-277e-418e-90be-8f8d32918ba9", + "f1de9305-8e6b-46d3-8c98-a08e73b2857f", + "5228afc6-7e91-431f-8045-f41c542a77ea", + "3d4eebbc-a250-4177-81d6-19642e2b4176", + "aa49b5ca-26fd-4fe1-8e89-4237204a7250", + "35110be1-21ec-490a-b4c8-8b20aa6bef7f", + "bf493d01-4cc2-40cf-9fee-339de5acd0ce", + "72cda4fb-fbe8-47ba-b42e-f310ef91d335", + "9f0b95b0-8453-4218-9889-ef6146815766", + "5f67d1de-bfb7-46e1-9c6a-87d005dd64b6", + "46ea2114-c4d6-46e8-be5d-60d028340abb", + "e460be07-05e4-49f8-a725-e63809c74139", + "235a92b0-53e1-410c-b264-d57c7814303c", + "588e4aef-6d38-4fb0-95ae-8ac520e753f3", + "e8e5c7df-2edf-4749-98c2-97962c7eff9c", + "4fac5725-fd12-47be-9db0-8dea1c53b6f5", + "09a490f8-d473-4d53-8aa0-2df137afe453", + "d68685b2-7e92-4934-989f-8ccfae13451f", + "ee09cf9f-32a4-4f14-abc4-35cf4e9dacb6", + "46a4fc7f-c064-4d08-ac44-e9eeffd46d50", + "3b027d8b-1b72-4250-a270-dd0ef2d41870", + "40ff3e02-8b3f-498b-908e-b391cc70a163", + "68549053-a194-4fc4-9393-09f9a34040bb", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "46d1170e-039a-4a64-a065-b60146bf9006", + "e0286f28-f802-47e9-8fd2-0338e2927a2f", + "42f94a5d-c370-4fd6-9c9f-6767ef259624", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "907f8610-452b-440d-849b-c803b07dedc1", + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "7b9bfdae-7d0d-4463-a7d7-1a62138b83b5", + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" + ], + "stops": [], + "line_id": "51246736-0d56-4a0b-a824-2c9f3fbcbb89", + "segments": [ + 0, + 2, + 11, + 18, + 25, + 35, + 39, + 42, + 53, + 60, + 68, + 74, + 78, + 83, + 86, + 97, + 101, + 106, + 113, + 121, + 126, + 129, + 136, + 149, + 152, + 156, + 161, + 166, + 173, + 175, + 181, + 183, + 185, + 188, + 190, + 192, + 201, + 206, + 210, + 214, + 217, + 219, + 228, + 229, + 231, + 233, + 235, + 237, + 239, + 252, + 277, + 279 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 16, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469043, + 45.46624 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.463779, + 45.468251 + ], + [ + -73.463257, + 45.46862 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463016, + 45.468741 + ], + [ + -73.462763, + 45.468943 + ], + [ + -73.462689, + 45.46902 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.449381, + 45.478147 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448868, + 45.478494 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.449044, + 45.479268 + ], + [ + -73.448771, + 45.479431 + ], + [ + -73.448758, + 45.479439 + ], + [ + -73.446635, + 45.480706 + ], + [ + -73.446581, + 45.480738 + ], + [ + -73.445624, + 45.481309 + ], + [ + -73.443807, + 45.482383 + ], + [ + -73.443745, + 45.48242 + ], + [ + -73.443018, + 45.482865 + ], + [ + -73.440996, + 45.484059 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.439959, + 45.484631 + ], + [ + -73.439264, + 45.485036 + ], + [ + -73.438115, + 45.485719 + ], + [ + -73.438008, + 45.485782 + ], + [ + -73.43775, + 45.485944 + ], + [ + -73.437465, + 45.486115 + ], + [ + -73.437094, + 45.486331 + ], + [ + -73.435273, + 45.487398 + ], + [ + -73.435153, + 45.487468 + ], + [ + -73.433484, + 45.488439 + ], + [ + -73.432921, + 45.48878 + ], + [ + -73.432728, + 45.488905 + ], + [ + -73.432684, + 45.488933 + ], + [ + -73.432556, + 45.489041 + ], + [ + -73.432305, + 45.489239 + ], + [ + -73.43219, + 45.48936 + ], + [ + -73.43217, + 45.489383 + ], + [ + -73.432063, + 45.489531 + ], + [ + -73.430965, + 45.491091 + ], + [ + -73.430914, + 45.491164 + ], + [ + -73.429449, + 45.493182 + ], + [ + -73.429402, + 45.493246 + ], + [ + -73.428054, + 45.495114 + ], + [ + -73.42799, + 45.495202 + ], + [ + -73.427911, + 45.49531 + ], + [ + -73.426472, + 45.497312 + ], + [ + -73.426401, + 45.49741 + ], + [ + -73.424982, + 45.499411 + ], + [ + -73.424908, + 45.499515 + ], + [ + -73.424528, + 45.500041 + ], + [ + -73.423903, + 45.500932 + ], + [ + -73.423572, + 45.501404 + ], + [ + -73.423518, + 45.501444 + ], + [ + -73.423423, + 45.501602 + ], + [ + -73.423367, + 45.501683 + ], + [ + -73.42255, + 45.502834 + ], + [ + -73.421882, + 45.503756 + ], + [ + -73.421853, + 45.503796 + ], + [ + -73.421847, + 45.503805 + ], + [ + -73.42173, + 45.503969 + ], + [ + -73.421648, + 45.504084 + ], + [ + -73.421234, + 45.503904 + ], + [ + -73.420806, + 45.503714 + ], + [ + -73.420535, + 45.503599 + ], + [ + -73.420142, + 45.503431 + ], + [ + -73.419673, + 45.503241 + ], + [ + -73.419484, + 45.503168 + ], + [ + -73.419278, + 45.503088 + ], + [ + -73.419167, + 45.503047 + ], + [ + -73.418847, + 45.502921 + ], + [ + -73.418173, + 45.502669 + ], + [ + -73.417806, + 45.502538 + ], + [ + -73.417361, + 45.50237 + ], + [ + -73.417293, + 45.502344 + ], + [ + -73.416751, + 45.502146 + ], + [ + -73.416178, + 45.501934 + ], + [ + -73.416049, + 45.502186 + ], + [ + -73.416044, + 45.502195 + ], + [ + -73.415883, + 45.50251 + ], + [ + -73.4148, + 45.504659 + ], + [ + -73.41477, + 45.504718 + ], + [ + -73.414677, + 45.504884 + ], + [ + -73.414599, + 45.50497 + ], + [ + -73.414518, + 45.50506 + ], + [ + -73.414456, + 45.505105 + ], + [ + -73.414386, + 45.505141 + ], + [ + -73.41431, + 45.50519 + ], + [ + -73.414101, + 45.505275 + ], + [ + -73.414002, + 45.505302 + ], + [ + -73.413859, + 45.505329 + ], + [ + -73.413728, + 45.505356 + ], + [ + -73.413579, + 45.505375 + ], + [ + -73.413549, + 45.505378 + ], + [ + -73.413318, + 45.50541 + ], + [ + -73.413013, + 45.505441 + ], + [ + -73.412864, + 45.50545 + ], + [ + -73.412747, + 45.50545 + ], + [ + -73.412645, + 45.505436 + ], + [ + -73.412507, + 45.505418 + ], + [ + -73.411664, + 45.505219 + ], + [ + -73.411569, + 45.505197 + ], + [ + -73.41077, + 45.504994 + ], + [ + -73.409958, + 45.504799 + ], + [ + -73.409774, + 45.504755 + ], + [ + -73.409315, + 45.504637 + ], + [ + -73.408932, + 45.504538 + ], + [ + -73.408367, + 45.504398 + ], + [ + -73.407919, + 45.504287 + ], + [ + -73.407766, + 45.504249 + ], + [ + -73.407475, + 45.504174 + ], + [ + -73.407261, + 45.504118 + ], + [ + -73.406855, + 45.504005 + ], + [ + -73.406677, + 45.504352 + ], + [ + -73.406515, + 45.50468 + ], + [ + -73.406364, + 45.504981 + ], + [ + -73.406224, + 45.505253 + ], + [ + -73.40619, + 45.505319 + ], + [ + -73.405984, + 45.50575 + ], + [ + -73.405871, + 45.505971 + ], + [ + -73.405719, + 45.506277 + ], + [ + -73.405549, + 45.506609 + ], + [ + -73.40532, + 45.507097 + ], + [ + -73.405319, + 45.507098 + ], + [ + -73.405268, + 45.507208 + ], + [ + -73.405194, + 45.507248 + ], + [ + -73.40508, + 45.507248 + ], + [ + -73.404942, + 45.507221 + ], + [ + -73.403477, + 45.506846 + ], + [ + -73.403459, + 45.506842 + ], + [ + -73.400809, + 45.506169 + ], + [ + -73.400668, + 45.506128 + ], + [ + -73.400593, + 45.506106 + ], + [ + -73.40043, + 45.506038 + ], + [ + -73.40031, + 45.50598 + ], + [ + -73.40025, + 45.505943 + ], + [ + -73.400152, + 45.505885 + ], + [ + -73.400052, + 45.505795 + ], + [ + -73.399949, + 45.505664 + ], + [ + -73.399886, + 45.505552 + ], + [ + -73.39982, + 45.505426 + ], + [ + -73.399787, + 45.505322 + ], + [ + -73.39976, + 45.505156 + ], + [ + -73.399735, + 45.504789 + ], + [ + -73.399729, + 45.504706 + ], + [ + -73.399657, + 45.504175 + ], + [ + -73.39956, + 45.503492 + ], + [ + -73.399542, + 45.50336 + ], + [ + -73.399508, + 45.503131 + ], + [ + -73.399441, + 45.502676 + ], + [ + -73.399417, + 45.50246 + ], + [ + -73.399355, + 45.501992 + ], + [ + -73.399341, + 45.501884 + ], + [ + -73.399253, + 45.50189 + ], + [ + -73.398942, + 45.50191 + ] + ] + }, + "id": 17, + "properties": { + "id": "b56dae92-e9db-4f51-a05e-0de1026427d5", + "data": { + "gtfs": { + "shape_id": "5_2_R" + }, + "segments": [ + { + "distanceMeters": 2839, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 95, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 41 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8941, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4600.903864980963, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.31, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 7.84, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.31 + }, + "mode": "bus", + "name": "Sect. M St-Hubert", + "color": "#A32638", + "nodes": [ + "42f94a5d-c370-4fd6-9c9f-6767ef259624", + "e0286f28-f802-47e9-8fd2-0338e2927a2f", + "46d1170e-039a-4a64-a065-b60146bf9006", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "68549053-a194-4fc4-9393-09f9a34040bb", + "40ff3e02-8b3f-498b-908e-b391cc70a163", + "b535e273-90c1-49b6-b38e-2087d5bbebed", + "46a4fc7f-c064-4d08-ac44-e9eeffd46d50", + "ee09cf9f-32a4-4f14-abc4-35cf4e9dacb6", + "8e8689c3-62f3-42eb-93e5-b882f067b52e", + "09a490f8-d473-4d53-8aa0-2df137afe453", + "4fac5725-fd12-47be-9db0-8dea1c53b6f5", + "1202144f-3657-40d2-ae2e-917153a50f04", + "6d53f355-0dfd-420a-a1cc-6510f1a36363", + "235a92b0-53e1-410c-b264-d57c7814303c", + "4a4fa494-b43c-4be6-b677-70874b8f73cc", + "46ea2114-c4d6-46e8-be5d-60d028340abb", + "5f67d1de-bfb7-46e1-9c6a-87d005dd64b6", + "9f0b95b0-8453-4218-9889-ef6146815766", + "72cda4fb-fbe8-47ba-b42e-f310ef91d335", + "bf493d01-4cc2-40cf-9fee-339de5acd0ce", + "35110be1-21ec-490a-b4c8-8b20aa6bef7f", + "aa49b5ca-26fd-4fe1-8e89-4237204a7250", + "3d4eebbc-a250-4177-81d6-19642e2b4176", + "5228afc6-7e91-431f-8045-f41c542a77ea", + "f1de9305-8e6b-46d3-8c98-a08e73b2857f", + "b20c17a3-277e-418e-90be-8f8d32918ba9", + "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", + "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", + "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0" + ], + "stops": [], + "line_id": "51246736-0d56-4a0b-a824-2c9f3fbcbb89", + "segments": [ + 0, + 57, + 60, + 63, + 68, + 73, + 77, + 84, + 86, + 88, + 91, + 93, + 96, + 103, + 109, + 112, + 118, + 122, + 125, + 137, + 145, + 148, + 153, + 161, + 167, + 173, + 180, + 188, + 191 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 17, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.398942, + 45.50191 + ], + [ + -73.396837, + 45.502044 + ], + [ + -73.39538, + 45.502132 + ], + [ + -73.395213, + 45.502142 + ], + [ + -73.395161, + 45.502053 + ], + [ + -73.395151, + 45.501975 + ], + [ + -73.395111, + 45.50166 + ], + [ + -73.395084, + 45.501431 + ], + [ + -73.395041, + 45.50117 + ], + [ + -73.395041, + 45.501053 + ], + [ + -73.395077, + 45.50094 + ], + [ + -73.395501, + 45.500068 + ], + [ + -73.395555, + 45.499955 + ], + [ + -73.395706, + 45.499618 + ], + [ + -73.395829, + 45.49938 + ], + [ + -73.395901, + 45.499299 + ], + [ + -73.396037, + 45.499128 + ], + [ + -73.396173, + 45.499011 + ], + [ + -73.39651, + 45.498694 + ], + [ + -73.396766, + 45.498454 + ], + [ + -73.396911, + 45.498319 + ], + [ + -73.397102, + 45.498121 + ], + [ + -73.397351, + 45.497878 + ], + [ + -73.397678, + 45.497573 + ], + [ + -73.397919, + 45.497334 + ], + [ + -73.397982, + 45.497278 + ], + [ + -73.398209, + 45.497074 + ], + [ + -73.398541, + 45.496804 + ], + [ + -73.398788, + 45.496579 + ], + [ + -73.399137, + 45.496287 + ], + [ + -73.399245, + 45.496194 + ], + [ + -73.399546, + 45.495932 + ], + [ + -73.399607, + 45.495824 + ], + [ + -73.399612, + 45.49582 + ], + [ + -73.399701, + 45.495748 + ], + [ + -73.399835, + 45.495558 + ], + [ + -73.399866, + 45.495514 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.401121, + 45.49596 + ], + [ + -73.401607, + 45.496183 + ], + [ + -73.402418, + 45.496555 + ], + [ + -73.402953, + 45.49679 + ], + [ + -73.403399, + 45.496987 + ], + [ + -73.403543, + 45.497051 + ], + [ + -73.403795, + 45.49716 + ], + [ + -73.404434, + 45.497426 + ], + [ + -73.404858, + 45.497588 + ], + [ + -73.405172, + 45.497723 + ], + [ + -73.405568, + 45.497876 + ], + [ + -73.406291, + 45.498153 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.406288, + 45.49843 + ], + [ + -73.406193, + 45.498579 + ], + [ + -73.406188, + 45.498589 + ], + [ + -73.406163, + 45.49864 + ], + [ + -73.405911, + 45.499145 + ], + [ + -73.405493, + 45.499995 + ], + [ + -73.405383, + 45.500198 + ], + [ + -73.405251, + 45.500369 + ], + [ + -73.405082, + 45.500567 + ], + [ + -73.405022, + 45.500624 + ], + [ + -73.404894, + 45.500746 + ], + [ + -73.404658, + 45.500926 + ], + [ + -73.404439, + 45.50107 + ], + [ + -73.404275, + 45.501164 + ], + [ + -73.404095, + 45.501254 + ], + [ + -73.403728, + 45.501411 + ], + [ + -73.403505, + 45.501483 + ], + [ + -73.40323, + 45.501558 + ], + [ + -73.403207, + 45.501564 + ], + [ + -73.402929, + 45.501627 + ], + [ + -73.402747, + 45.501658 + ], + [ + -73.402456, + 45.501689 + ], + [ + -73.401996, + 45.50172 + ], + [ + -73.401145, + 45.501774 + ], + [ + -73.401007, + 45.501782 + ], + [ + -73.399341, + 45.501884 + ], + [ + -73.399355, + 45.501992 + ], + [ + -73.399401, + 45.502338 + ], + [ + -73.399402, + 45.502346 + ], + [ + -73.399417, + 45.50246 + ], + [ + -73.399441, + 45.502676 + ], + [ + -73.399508, + 45.503131 + ], + [ + -73.399524, + 45.503241 + ], + [ + -73.399542, + 45.50336 + ], + [ + -73.399657, + 45.504175 + ], + [ + -73.399716, + 45.504609 + ], + [ + -73.399729, + 45.504706 + ], + [ + -73.39976, + 45.505156 + ], + [ + -73.399787, + 45.505322 + ], + [ + -73.39982, + 45.505426 + ], + [ + -73.399886, + 45.505552 + ], + [ + -73.399949, + 45.505664 + ], + [ + -73.400052, + 45.505795 + ], + [ + -73.400152, + 45.505885 + ], + [ + -73.40031, + 45.50598 + ], + [ + -73.40043, + 45.506038 + ], + [ + -73.400588, + 45.506104 + ], + [ + -73.400593, + 45.506106 + ], + [ + -73.400668, + 45.506128 + ], + [ + -73.400809, + 45.506169 + ], + [ + -73.403283, + 45.506797 + ], + [ + -73.403459, + 45.506842 + ], + [ + -73.404937, + 45.507219 + ], + [ + -73.404942, + 45.507221 + ], + [ + -73.40508, + 45.507248 + ], + [ + -73.405194, + 45.507248 + ], + [ + -73.405196, + 45.507247 + ], + [ + -73.405268, + 45.507208 + ], + [ + -73.405549, + 45.506609 + ], + [ + -73.405719, + 45.506277 + ], + [ + -73.405871, + 45.505971 + ], + [ + -73.405984, + 45.50575 + ], + [ + -73.406111, + 45.505484 + ], + [ + -73.40619, + 45.505319 + ], + [ + -73.406364, + 45.504981 + ], + [ + -73.406515, + 45.50468 + ], + [ + -73.406677, + 45.504352 + ], + [ + -73.406855, + 45.504005 + ], + [ + -73.407261, + 45.504118 + ], + [ + -73.407475, + 45.504174 + ], + [ + -73.40764, + 45.504216 + ], + [ + -73.407766, + 45.504249 + ], + [ + -73.408367, + 45.504398 + ], + [ + -73.408932, + 45.504538 + ], + [ + -73.409315, + 45.504637 + ], + [ + -73.40969, + 45.504733 + ], + [ + -73.409774, + 45.504755 + ], + [ + -73.41077, + 45.504994 + ], + [ + -73.411468, + 45.505171 + ], + [ + -73.411569, + 45.505197 + ], + [ + -73.412507, + 45.505418 + ], + [ + -73.412645, + 45.505436 + ], + [ + -73.412747, + 45.50545 + ], + [ + -73.412864, + 45.50545 + ], + [ + -73.413013, + 45.505441 + ], + [ + -73.413185, + 45.505423 + ], + [ + -73.413318, + 45.50541 + ], + [ + -73.413549, + 45.505378 + ], + [ + -73.413728, + 45.505356 + ], + [ + -73.413859, + 45.505329 + ], + [ + -73.414002, + 45.505302 + ], + [ + -73.414101, + 45.505275 + ], + [ + -73.41431, + 45.50519 + ], + [ + -73.414386, + 45.505141 + ], + [ + -73.414456, + 45.505105 + ], + [ + -73.414518, + 45.50506 + ], + [ + -73.414599, + 45.50497 + ], + [ + -73.414677, + 45.504884 + ], + [ + -73.414718, + 45.504812 + ], + [ + -73.41477, + 45.504718 + ], + [ + -73.415883, + 45.50251 + ], + [ + -73.416018, + 45.502247 + ], + [ + -73.41606, + 45.502164 + ], + [ + -73.416178, + 45.501934 + ], + [ + -73.416751, + 45.502146 + ], + [ + -73.417085, + 45.502268 + ], + [ + -73.417293, + 45.502344 + ], + [ + -73.417806, + 45.502538 + ], + [ + -73.418173, + 45.502669 + ], + [ + -73.418847, + 45.502921 + ], + [ + -73.418875, + 45.502932 + ], + [ + -73.419167, + 45.503047 + ], + [ + -73.419278, + 45.503088 + ], + [ + -73.419673, + 45.503241 + ], + [ + -73.420142, + 45.503431 + ], + [ + -73.420707, + 45.503672 + ], + [ + -73.420806, + 45.503714 + ], + [ + -73.421234, + 45.503904 + ], + [ + -73.421648, + 45.504084 + ], + [ + -73.421847, + 45.503805 + ], + [ + -73.421882, + 45.503756 + ], + [ + -73.421936, + 45.503681 + ], + [ + -73.42249, + 45.502918 + ], + [ + -73.42255, + 45.502834 + ], + [ + -73.423198, + 45.50192 + ], + [ + -73.423367, + 45.501683 + ], + [ + -73.423423, + 45.501602 + ], + [ + -73.423518, + 45.501444 + ], + [ + -73.423572, + 45.501404 + ], + [ + -73.424528, + 45.500041 + ], + [ + -73.42483, + 45.499623 + ], + [ + -73.424908, + 45.499515 + ], + [ + -73.426349, + 45.497483 + ], + [ + -73.426401, + 45.49741 + ], + [ + -73.427843, + 45.495405 + ], + [ + -73.427911, + 45.49531 + ], + [ + -73.42799, + 45.495202 + ], + [ + -73.429331, + 45.493345 + ], + [ + -73.429402, + 45.493246 + ], + [ + -73.430673, + 45.491496 + ], + [ + -73.430914, + 45.491164 + ], + [ + -73.431864, + 45.489814 + ], + [ + -73.432063, + 45.489531 + ], + [ + -73.43217, + 45.489383 + ], + [ + -73.43219, + 45.48936 + ], + [ + -73.432305, + 45.489239 + ], + [ + -73.432556, + 45.489041 + ], + [ + -73.432684, + 45.488933 + ], + [ + -73.432921, + 45.48878 + ], + [ + -73.433484, + 45.488439 + ], + [ + -73.435071, + 45.487516 + ], + [ + -73.435153, + 45.487468 + ], + [ + -73.437094, + 45.486331 + ], + [ + -73.437465, + 45.486115 + ], + [ + -73.43775, + 45.485944 + ], + [ + -73.437849, + 45.485882 + ], + [ + -73.438008, + 45.485782 + ], + [ + -73.439264, + 45.485036 + ], + [ + -73.439959, + 45.484631 + ], + [ + -73.440581, + 45.484293 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.443018, + 45.482865 + ], + [ + -73.443655, + 45.482474 + ], + [ + -73.443745, + 45.48242 + ], + [ + -73.445624, + 45.481309 + ], + [ + -73.446443, + 45.480821 + ], + [ + -73.446581, + 45.480738 + ], + [ + -73.448482, + 45.479604 + ], + [ + -73.448771, + 45.479431 + ], + [ + -73.449044, + 45.479268 + ], + [ + -73.449242, + 45.479145 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.44954, + 45.478958 + ], + [ + -73.449587, + 45.478931 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.44904, + 45.47838 + ], + [ + -73.449382, + 45.478147 + ], + [ + -73.451115, + 45.476961 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.453434, + 45.475373 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.455854, + 45.473715 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.458229, + 45.472091 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.460514, + 45.47053 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.46261, + 45.469091 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.465222, + 45.468287 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469043, + 45.46624 + ] + ] + }, + "id": 18, + "properties": { + "id": "2ccefa98-8818-4aa2-9fe6-736d5c405a6f", + "data": { + "gtfs": { + "shape_id": "5_2_A" + }, + "segments": [ + { + "distanceMeters": 279, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 195, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 548, + "travelTimeSeconds": 120 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11248, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6768.626097916012, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.25, + "travelTimeWithoutDwellTimesSeconds": 1800, + "operatingTimeWithLayoverTimeSeconds": 1980, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1800, + "operatingSpeedWithLayoverMetersPerSecond": 5.68, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.25 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0", + "5c25bfb5-c167-4f71-8798-e94a8ad7560d", + "e4d9e692-bf6d-4c61-9845-9e50427c4cad", + "2550d07e-5034-443e-9840-7e9abcf5a62b", + "2e7cf58e-8d32-4b71-acee-694db180235f", + "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", + "33ed66fe-2193-4e2a-b51d-d25140b9ad80", + "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", + "aab8672e-86c9-4a43-9806-f5135dc02b4e", + "7414010b-fe1f-4d77-8cdd-701cc437e73a", + "dc630e4d-102e-48b9-8b4a-920cafc01d4a", + "00ed067b-7627-492d-ac0f-5d03bd3b185c", + "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", + "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", + "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", + "b20c17a3-277e-418e-90be-8f8d32918ba9", + "f1de9305-8e6b-46d3-8c98-a08e73b2857f", + "5228afc6-7e91-431f-8045-f41c542a77ea", + "3d4eebbc-a250-4177-81d6-19642e2b4176", + "aa49b5ca-26fd-4fe1-8e89-4237204a7250", + "35110be1-21ec-490a-b4c8-8b20aa6bef7f", + "bf493d01-4cc2-40cf-9fee-339de5acd0ce", + "72cda4fb-fbe8-47ba-b42e-f310ef91d335", + "9f0b95b0-8453-4218-9889-ef6146815766", + "5f67d1de-bfb7-46e1-9c6a-87d005dd64b6", + "46ea2114-c4d6-46e8-be5d-60d028340abb", + "e460be07-05e4-49f8-a725-e63809c74139", + "235a92b0-53e1-410c-b264-d57c7814303c", + "588e4aef-6d38-4fb0-95ae-8ac520e753f3", + "e8e5c7df-2edf-4749-98c2-97962c7eff9c", + "4fac5725-fd12-47be-9db0-8dea1c53b6f5", + "09a490f8-d473-4d53-8aa0-2df137afe453", + "d68685b2-7e92-4934-989f-8ccfae13451f", + "ee09cf9f-32a4-4f14-abc4-35cf4e9dacb6", + "46a4fc7f-c064-4d08-ac44-e9eeffd46d50", + "3b027d8b-1b72-4250-a270-dd0ef2d41870", + "40ff3e02-8b3f-498b-908e-b391cc70a163", + "68549053-a194-4fc4-9393-09f9a34040bb", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "46d1170e-039a-4a64-a065-b60146bf9006", + "e0286f28-f802-47e9-8fd2-0338e2927a2f", + "42f94a5d-c370-4fd6-9c9f-6767ef259624", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "907f8610-452b-440d-849b-c803b07dedc1", + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "51246736-0d56-4a0b-a824-2c9f3fbcbb89", + "segments": [ + 0, + 2, + 11, + 18, + 25, + 35, + 39, + 42, + 53, + 60, + 68, + 74, + 78, + 83, + 86, + 97, + 101, + 107, + 113, + 121, + 126, + 129, + 136, + 149, + 152, + 156, + 161, + 166, + 173, + 175, + 181, + 183, + 185, + 188, + 190, + 192, + 201, + 206, + 210, + 214, + 217, + 219, + 228, + 229, + 231, + 233, + 235, + 237, + 240, + 252 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 18, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469043, + 45.46624 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467815, + 45.466067 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465582, + 45.46821 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.463779, + 45.468251 + ], + [ + -73.463257, + 45.46862 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463016, + 45.468741 + ], + [ + -73.462763, + 45.468943 + ], + [ + -73.462689, + 45.46902 + ], + [ + -73.462689, + 45.46902 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.460799, + 45.470335 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.45844, + 45.471946 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.456055, + 45.473577 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.453681, + 45.475203 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.451334, + 45.47681 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.449381, + 45.478147 + ], + [ + -73.449271, + 45.478222 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448868, + 45.478494 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.449044, + 45.479268 + ], + [ + -73.448771, + 45.479431 + ], + [ + -73.448758, + 45.479439 + ], + [ + -73.448752, + 45.479442 + ], + [ + -73.446635, + 45.480706 + ], + [ + -73.446581, + 45.480738 + ], + [ + -73.445624, + 45.481309 + ], + [ + -73.443807, + 45.482383 + ], + [ + -73.443745, + 45.48242 + ], + [ + -73.443018, + 45.482865 + ], + [ + -73.440996, + 45.484059 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.439959, + 45.484631 + ], + [ + -73.439264, + 45.485036 + ], + [ + -73.438115, + 45.485719 + ], + [ + -73.438008, + 45.485782 + ], + [ + -73.43775, + 45.485944 + ], + [ + -73.437465, + 45.486115 + ], + [ + -73.437094, + 45.486331 + ], + [ + -73.435273, + 45.487398 + ], + [ + -73.435153, + 45.487468 + ], + [ + -73.433484, + 45.488439 + ], + [ + -73.432921, + 45.48878 + ], + [ + -73.432728, + 45.488905 + ], + [ + -73.432684, + 45.488933 + ], + [ + -73.432556, + 45.489041 + ], + [ + -73.432305, + 45.489239 + ], + [ + -73.43219, + 45.48936 + ], + [ + -73.43217, + 45.489383 + ], + [ + -73.432063, + 45.489531 + ], + [ + -73.430965, + 45.491091 + ], + [ + -73.430914, + 45.491164 + ], + [ + -73.429449, + 45.493182 + ], + [ + -73.429402, + 45.493246 + ], + [ + -73.428054, + 45.495114 + ], + [ + -73.42799, + 45.495202 + ], + [ + -73.427911, + 45.49531 + ], + [ + -73.426472, + 45.497312 + ], + [ + -73.426401, + 45.49741 + ], + [ + -73.424982, + 45.499411 + ], + [ + -73.424908, + 45.499515 + ], + [ + -73.424528, + 45.500041 + ], + [ + -73.423903, + 45.500932 + ], + [ + -73.423572, + 45.501404 + ], + [ + -73.423518, + 45.501444 + ], + [ + -73.423423, + 45.501602 + ], + [ + -73.423367, + 45.501683 + ], + [ + -73.42255, + 45.502834 + ], + [ + -73.421882, + 45.503756 + ], + [ + -73.421853, + 45.503796 + ], + [ + -73.421847, + 45.503805 + ], + [ + -73.42173, + 45.503969 + ], + [ + -73.421648, + 45.504084 + ], + [ + -73.421234, + 45.503904 + ], + [ + -73.420806, + 45.503714 + ], + [ + -73.420535, + 45.503599 + ], + [ + -73.420142, + 45.503431 + ], + [ + -73.419673, + 45.503241 + ], + [ + -73.419484, + 45.503168 + ], + [ + -73.419278, + 45.503088 + ], + [ + -73.419167, + 45.503047 + ], + [ + -73.418847, + 45.502921 + ], + [ + -73.418173, + 45.502669 + ], + [ + -73.417806, + 45.502538 + ], + [ + -73.417361, + 45.50237 + ], + [ + -73.417293, + 45.502344 + ], + [ + -73.416751, + 45.502146 + ], + [ + -73.416178, + 45.501934 + ], + [ + -73.416049, + 45.502186 + ], + [ + -73.416044, + 45.502195 + ], + [ + -73.415883, + 45.50251 + ], + [ + -73.4148, + 45.504659 + ], + [ + -73.41477, + 45.504718 + ], + [ + -73.414677, + 45.504884 + ], + [ + -73.414599, + 45.50497 + ], + [ + -73.414518, + 45.50506 + ], + [ + -73.414456, + 45.505105 + ], + [ + -73.414386, + 45.505141 + ], + [ + -73.41431, + 45.50519 + ], + [ + -73.414101, + 45.505275 + ], + [ + -73.414002, + 45.505302 + ], + [ + -73.413859, + 45.505329 + ], + [ + -73.413728, + 45.505356 + ], + [ + -73.413579, + 45.505375 + ], + [ + -73.413549, + 45.505378 + ], + [ + -73.413318, + 45.50541 + ], + [ + -73.413013, + 45.505441 + ], + [ + -73.412864, + 45.50545 + ], + [ + -73.412747, + 45.50545 + ], + [ + -73.412645, + 45.505436 + ], + [ + -73.412507, + 45.505418 + ], + [ + -73.411664, + 45.505219 + ], + [ + -73.411569, + 45.505197 + ], + [ + -73.41077, + 45.504994 + ], + [ + -73.409958, + 45.504799 + ], + [ + -73.409774, + 45.504755 + ], + [ + -73.409315, + 45.504637 + ], + [ + -73.408932, + 45.504538 + ], + [ + -73.408367, + 45.504398 + ], + [ + -73.407919, + 45.504287 + ], + [ + -73.407766, + 45.504249 + ], + [ + -73.407475, + 45.504174 + ], + [ + -73.407261, + 45.504118 + ], + [ + -73.406855, + 45.504005 + ], + [ + -73.406677, + 45.504352 + ], + [ + -73.406515, + 45.50468 + ], + [ + -73.406364, + 45.504981 + ], + [ + -73.406224, + 45.505253 + ], + [ + -73.40619, + 45.505319 + ], + [ + -73.405984, + 45.50575 + ], + [ + -73.405871, + 45.505971 + ], + [ + -73.405719, + 45.506277 + ], + [ + -73.405549, + 45.506609 + ], + [ + -73.40532, + 45.507097 + ], + [ + -73.405319, + 45.507098 + ], + [ + -73.405268, + 45.507208 + ], + [ + -73.405194, + 45.507248 + ], + [ + -73.40508, + 45.507248 + ], + [ + -73.404942, + 45.507221 + ], + [ + -73.403477, + 45.506846 + ], + [ + -73.403459, + 45.506842 + ], + [ + -73.400809, + 45.506169 + ], + [ + -73.400668, + 45.506128 + ], + [ + -73.400593, + 45.506106 + ], + [ + -73.40043, + 45.506038 + ], + [ + -73.40031, + 45.50598 + ], + [ + -73.40025, + 45.505943 + ], + [ + -73.400152, + 45.505885 + ], + [ + -73.400052, + 45.505795 + ], + [ + -73.399949, + 45.505664 + ], + [ + -73.399886, + 45.505552 + ], + [ + -73.39982, + 45.505426 + ], + [ + -73.399787, + 45.505322 + ], + [ + -73.39976, + 45.505156 + ], + [ + -73.399735, + 45.504789 + ], + [ + -73.399729, + 45.504706 + ], + [ + -73.399657, + 45.504175 + ], + [ + -73.39956, + 45.503492 + ], + [ + -73.399542, + 45.50336 + ], + [ + -73.399508, + 45.503131 + ], + [ + -73.399441, + 45.502676 + ], + [ + -73.399417, + 45.50246 + ], + [ + -73.399355, + 45.501992 + ], + [ + -73.399341, + 45.501884 + ], + [ + -73.399253, + 45.50189 + ], + [ + -73.398942, + 45.50191 + ] + ] + }, + "id": 19, + "properties": { + "id": "320b05a5-6ff2-48d6-90bd-8ec8521d2caa", + "data": { + "gtfs": { + "shape_id": "5_2_R" + }, + "segments": [ + { + "distanceMeters": 111, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 583, + "travelTimeSeconds": 94 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 95, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 41 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8941, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6768.626097916012, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.21, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 5.52, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.21 + }, + "mode": "bus", + "name": "Sect. M St-Hubert", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "7b9bfdae-7d0d-4463-a7d7-1a62138b83b5", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "907f8610-452b-440d-849b-c803b07dedc1", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "42f94a5d-c370-4fd6-9c9f-6767ef259624", + "e0286f28-f802-47e9-8fd2-0338e2927a2f", + "46d1170e-039a-4a64-a065-b60146bf9006", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "68549053-a194-4fc4-9393-09f9a34040bb", + "40ff3e02-8b3f-498b-908e-b391cc70a163", + "b535e273-90c1-49b6-b38e-2087d5bbebed", + "46a4fc7f-c064-4d08-ac44-e9eeffd46d50", + "ee09cf9f-32a4-4f14-abc4-35cf4e9dacb6", + "8e8689c3-62f3-42eb-93e5-b882f067b52e", + "09a490f8-d473-4d53-8aa0-2df137afe453", + "4fac5725-fd12-47be-9db0-8dea1c53b6f5", + "1202144f-3657-40d2-ae2e-917153a50f04", + "6d53f355-0dfd-420a-a1cc-6510f1a36363", + "235a92b0-53e1-410c-b264-d57c7814303c", + "4a4fa494-b43c-4be6-b677-70874b8f73cc", + "46ea2114-c4d6-46e8-be5d-60d028340abb", + "5f67d1de-bfb7-46e1-9c6a-87d005dd64b6", + "9f0b95b0-8453-4218-9889-ef6146815766", + "72cda4fb-fbe8-47ba-b42e-f310ef91d335", + "bf493d01-4cc2-40cf-9fee-339de5acd0ce", + "35110be1-21ec-490a-b4c8-8b20aa6bef7f", + "aa49b5ca-26fd-4fe1-8e89-4237204a7250", + "3d4eebbc-a250-4177-81d6-19642e2b4176", + "5228afc6-7e91-431f-8045-f41c542a77ea", + "f1de9305-8e6b-46d3-8c98-a08e73b2857f", + "b20c17a3-277e-418e-90be-8f8d32918ba9", + "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", + "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", + "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0" + ], + "stops": [], + "line_id": "51246736-0d56-4a0b-a824-2c9f3fbcbb89", + "segments": [ + 0, + 2, + 28, + 44, + 47, + 49, + 51, + 53, + 55, + 58, + 66, + 67, + 70, + 73, + 78, + 83, + 87, + 94, + 96, + 98, + 101, + 103, + 106, + 113, + 119, + 122, + 128, + 132, + 135, + 147, + 155, + 158, + 163, + 171, + 177, + 183, + 190, + 198, + 201 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 19, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.566611, + 45.498345 + ], + [ + -73.566738, + 45.498195 + ], + [ + -73.566628, + 45.49808 + ], + [ + -73.566306, + 45.497931 + ], + [ + -73.566253, + 45.497841 + ], + [ + -73.56638, + 45.497699 + ], + [ + -73.566016, + 45.497523 + ], + [ + -73.564691, + 45.496892 + ], + [ + -73.564524, + 45.49706 + ], + [ + -73.564308, + 45.497279 + ], + [ + -73.564223, + 45.497363 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.562654, + 45.499004 + ], + [ + -73.562608, + 45.49897 + ], + [ + -73.562195, + 45.498662 + ], + [ + -73.561924, + 45.498365 + ], + [ + -73.561721, + 45.498171 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.561238, + 45.497876 + ], + [ + -73.561033, + 45.497765 + ], + [ + -73.560139, + 45.497347 + ], + [ + -73.559235, + 45.49696 + ], + [ + -73.55917, + 45.496938 + ], + [ + -73.558356, + 45.496631 + ], + [ + -73.557604, + 45.496364 + ], + [ + -73.556782, + 45.49606 + ], + [ + -73.555745, + 45.495673 + ], + [ + -73.555351, + 45.495512 + ], + [ + -73.555133, + 45.495401 + ], + [ + -73.554916, + 45.495262 + ], + [ + -73.554768, + 45.495125 + ], + [ + -73.55465, + 45.494994 + ], + [ + -73.553944, + 45.493258 + ], + [ + -73.553818, + 45.492971 + ], + [ + -73.553465, + 45.492338 + ], + [ + -73.552977, + 45.491759 + ], + [ + -73.552502, + 45.491344 + ], + [ + -73.551956, + 45.490962 + ], + [ + -73.551651, + 45.490791 + ], + [ + -73.551074, + 45.490513 + ], + [ + -73.550682, + 45.490367 + ], + [ + -73.550312, + 45.490228 + ], + [ + -73.54956, + 45.490034 + ], + [ + -73.548355, + 45.489798 + ], + [ + -73.542648, + 45.488704 + ], + [ + -73.541878, + 45.488554 + ], + [ + -73.541083, + 45.488397 + ], + [ + -73.540636, + 45.488282 + ], + [ + -73.540145, + 45.488119 + ], + [ + -73.539582, + 45.48786 + ], + [ + -73.539239, + 45.487663 + ], + [ + -73.538946, + 45.487462 + ], + [ + -73.538619, + 45.487192 + ], + [ + -73.538304, + 45.486863 + ], + [ + -73.538089, + 45.486564 + ], + [ + -73.537862, + 45.486139 + ], + [ + -73.53782, + 45.486024 + ], + [ + -73.537796, + 45.485958 + ], + [ + -73.537731, + 45.485785 + ], + [ + -73.53767, + 45.485461 + ], + [ + -73.537646, + 45.485264 + ], + [ + -73.537653, + 45.484914 + ], + [ + -73.537707, + 45.484604 + ], + [ + -73.537881, + 45.484168 + ], + [ + -73.537968, + 45.483893 + ], + [ + -73.538058, + 45.483623 + ], + [ + -73.539557, + 45.479354 + ], + [ + -73.53982, + 45.478652 + ], + [ + -73.540179, + 45.47782 + ], + [ + -73.540481, + 45.477177 + ], + [ + -73.540578, + 45.477027 + ], + [ + -73.540928, + 45.476409 + ], + [ + -73.5413, + 45.475732 + ], + [ + -73.541747, + 45.474937 + ], + [ + -73.542136, + 45.474264 + ], + [ + -73.542539, + 45.47363 + ], + [ + -73.543159, + 45.472786 + ], + [ + -73.543162, + 45.472781 + ], + [ + -73.5432, + 45.472729 + ], + [ + -73.543381, + 45.472482 + ], + [ + -73.543908, + 45.471834 + ], + [ + -73.544604, + 45.471016 + ], + [ + -73.54479, + 45.470824 + ], + [ + -73.544929, + 45.470679 + ], + [ + -73.54509, + 45.470477 + ], + [ + -73.545159, + 45.470391 + ], + [ + -73.545162, + 45.470289 + ], + [ + -73.54518, + 45.470102 + ], + [ + -73.54513, + 45.469912 + ], + [ + -73.545032, + 45.469762 + ], + [ + -73.544829, + 45.469589 + ], + [ + -73.544396, + 45.469456 + ], + [ + -73.544223, + 45.469408 + ], + [ + -73.544, + 45.469414 + ], + [ + -73.54385, + 45.469436 + ], + [ + -73.543665, + 45.469485 + ], + [ + -73.543125, + 45.469658 + ], + [ + -73.542795, + 45.46978 + ], + [ + -73.542335, + 45.469915 + ], + [ + -73.542042, + 45.469974 + ], + [ + -73.541634, + 45.469988 + ], + [ + -73.538583, + 45.470121 + ], + [ + -73.536645, + 45.47012 + ], + [ + -73.534843, + 45.470106 + ], + [ + -73.531663, + 45.470044 + ], + [ + -73.528901, + 45.469979 + ], + [ + -73.525636, + 45.469864 + ], + [ + -73.520215, + 45.469565 + ], + [ + -73.516228, + 45.469261 + ], + [ + -73.50737, + 45.468395 + ], + [ + -73.501604, + 45.467786 + ], + [ + -73.499262, + 45.467514 + ], + [ + -73.493921, + 45.466881 + ], + [ + -73.491932, + 45.466645 + ], + [ + -73.489852, + 45.466348 + ], + [ + -73.489119, + 45.46624 + ], + [ + -73.489027, + 45.466226 + ], + [ + -73.486848, + 45.465931 + ], + [ + -73.485714, + 45.465782 + ], + [ + -73.482904, + 45.465439 + ], + [ + -73.482123, + 45.46537 + ], + [ + -73.479736, + 45.465191 + ], + [ + -73.47968, + 45.465187 + ], + [ + -73.478363, + 45.465119 + ], + [ + -73.477796, + 45.465089 + ], + [ + -73.475753, + 45.464994 + ], + [ + -73.474695, + 45.464942 + ], + [ + -73.474262, + 45.464921 + ], + [ + -73.474113, + 45.464916 + ], + [ + -73.473291, + 45.464882 + ], + [ + -73.472501, + 45.46485 + ], + [ + -73.471447, + 45.46476 + ], + [ + -73.469875, + 45.464616 + ], + [ + -73.469333, + 45.464554 + ], + [ + -73.46902, + 45.464515 + ], + [ + -73.468704, + 45.464452 + ], + [ + -73.468392, + 45.464367 + ], + [ + -73.468066, + 45.46424 + ], + [ + -73.467826, + 45.46409 + ], + [ + -73.467593, + 45.463944 + ], + [ + -73.467415, + 45.463833 + ], + [ + -73.467133, + 45.463667 + ], + [ + -73.466953, + 45.463591 + ], + [ + -73.466529, + 45.463529 + ], + [ + -73.466232, + 45.463594 + ], + [ + -73.466092, + 45.463623 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.468806, + 45.466381 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469045, + 45.46621 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467773, + 45.466066 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465531, + 45.468205 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.463779, + 45.468251 + ], + [ + -73.463257, + 45.46862 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463016, + 45.468741 + ], + [ + -73.462763, + 45.468943 + ], + [ + -73.462689, + 45.46902 + ], + [ + -73.462662, + 45.469049 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.460765, + 45.470359 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.458406, + 45.471969 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.456032, + 45.473593 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.45365, + 45.475225 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.451304, + 45.476831 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.449381, + 45.478147 + ], + [ + -73.449251, + 45.478236 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448868, + 45.478494 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.449044, + 45.479268 + ], + [ + -73.448771, + 45.479431 + ], + [ + -73.448758, + 45.479439 + ], + [ + -73.448732, + 45.479455 + ], + [ + -73.446606, + 45.480724 + ], + [ + -73.446581, + 45.480738 + ], + [ + -73.445624, + 45.481309 + ], + [ + -73.443779, + 45.482399 + ], + [ + -73.443745, + 45.48242 + ], + [ + -73.443018, + 45.482865 + ], + [ + -73.440969, + 45.484075 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.439959, + 45.484631 + ], + [ + -73.439264, + 45.485036 + ], + [ + -73.43809, + 45.485734 + ], + [ + -73.438008, + 45.485782 + ], + [ + -73.43775, + 45.485944 + ], + [ + -73.437465, + 45.486115 + ], + [ + -73.437094, + 45.486331 + ], + [ + -73.435259, + 45.487406 + ], + [ + -73.435153, + 45.487468 + ], + [ + -73.433484, + 45.488439 + ], + [ + -73.432921, + 45.48878 + ], + [ + -73.432716, + 45.488913 + ], + [ + -73.432684, + 45.488933 + ], + [ + -73.432556, + 45.489041 + ], + [ + -73.432305, + 45.489239 + ], + [ + -73.43219, + 45.48936 + ], + [ + -73.43217, + 45.489383 + ], + [ + -73.432063, + 45.489531 + ], + [ + -73.430958, + 45.4911 + ], + [ + -73.430914, + 45.491164 + ], + [ + -73.429437, + 45.493198 + ], + [ + -73.429402, + 45.493246 + ], + [ + -73.428043, + 45.495129 + ], + [ + -73.42799, + 45.495202 + ], + [ + -73.427911, + 45.49531 + ], + [ + -73.426468, + 45.497318 + ], + [ + -73.426401, + 45.49741 + ], + [ + -73.424972, + 45.499424 + ], + [ + -73.424908, + 45.499515 + ], + [ + -73.424528, + 45.500041 + ], + [ + -73.423895, + 45.500944 + ], + [ + -73.423572, + 45.501404 + ], + [ + -73.423518, + 45.501444 + ], + [ + -73.423423, + 45.501602 + ], + [ + -73.423367, + 45.501683 + ], + [ + -73.42255, + 45.502834 + ], + [ + -73.421882, + 45.503756 + ], + [ + -73.421847, + 45.503805 + ], + [ + -73.421845, + 45.503807 + ], + [ + -73.42173, + 45.503969 + ], + [ + -73.421648, + 45.504084 + ], + [ + -73.421234, + 45.503904 + ], + [ + -73.420806, + 45.503714 + ], + [ + -73.420532, + 45.503598 + ], + [ + -73.420142, + 45.503431 + ], + [ + -73.419673, + 45.503241 + ], + [ + -73.419481, + 45.503167 + ], + [ + -73.419278, + 45.503088 + ], + [ + -73.419167, + 45.503047 + ], + [ + -73.418847, + 45.502921 + ], + [ + -73.418173, + 45.502669 + ], + [ + -73.417806, + 45.502538 + ], + [ + -73.417347, + 45.502365 + ], + [ + -73.417293, + 45.502344 + ], + [ + -73.416751, + 45.502146 + ], + [ + -73.416178, + 45.501934 + ], + [ + -73.416044, + 45.502195 + ], + [ + -73.416044, + 45.502195 + ], + [ + -73.415883, + 45.50251 + ], + [ + -73.4148, + 45.504659 + ], + [ + -73.41477, + 45.504718 + ], + [ + -73.414677, + 45.504884 + ], + [ + -73.414599, + 45.50497 + ], + [ + -73.414518, + 45.50506 + ], + [ + -73.414456, + 45.505105 + ], + [ + -73.414386, + 45.505141 + ], + [ + -73.41431, + 45.50519 + ], + [ + -73.414101, + 45.505275 + ], + [ + -73.414002, + 45.505302 + ], + [ + -73.413859, + 45.505329 + ], + [ + -73.413728, + 45.505356 + ], + [ + -73.413567, + 45.505376 + ], + [ + -73.413549, + 45.505378 + ], + [ + -73.413318, + 45.50541 + ], + [ + -73.413013, + 45.505441 + ], + [ + -73.412864, + 45.50545 + ], + [ + -73.412747, + 45.50545 + ], + [ + -73.412645, + 45.505436 + ], + [ + -73.412507, + 45.505418 + ], + [ + -73.411654, + 45.505217 + ], + [ + -73.411569, + 45.505197 + ], + [ + -73.41077, + 45.504994 + ], + [ + -73.409949, + 45.504797 + ], + [ + -73.409774, + 45.504755 + ], + [ + -73.409315, + 45.504637 + ], + [ + -73.408932, + 45.504538 + ], + [ + -73.408367, + 45.504398 + ], + [ + -73.407911, + 45.504285 + ], + [ + -73.407766, + 45.504249 + ], + [ + -73.407475, + 45.504174 + ], + [ + -73.407261, + 45.504118 + ], + [ + -73.406855, + 45.504005 + ], + [ + -73.406677, + 45.504352 + ], + [ + -73.406515, + 45.50468 + ], + [ + -73.406364, + 45.504981 + ], + [ + -73.406226, + 45.505249 + ], + [ + -73.40619, + 45.505319 + ], + [ + -73.405984, + 45.50575 + ], + [ + -73.405871, + 45.505971 + ], + [ + -73.405719, + 45.506277 + ], + [ + -73.405549, + 45.506609 + ], + [ + -73.405319, + 45.507098 + ], + [ + -73.405318, + 45.507101 + ], + [ + -73.405268, + 45.507208 + ], + [ + -73.405194, + 45.507248 + ], + [ + -73.40508, + 45.507248 + ], + [ + -73.404942, + 45.507221 + ], + [ + -73.403473, + 45.506845 + ], + [ + -73.403459, + 45.506842 + ], + [ + -73.400809, + 45.506169 + ], + [ + -73.400668, + 45.506128 + ], + [ + -73.400593, + 45.506106 + ], + [ + -73.40043, + 45.506038 + ], + [ + -73.40031, + 45.50598 + ], + [ + -73.400247, + 45.505942 + ], + [ + -73.400152, + 45.505885 + ], + [ + -73.400052, + 45.505795 + ], + [ + -73.399949, + 45.505664 + ], + [ + -73.399886, + 45.505552 + ], + [ + -73.39982, + 45.505426 + ], + [ + -73.399787, + 45.505322 + ], + [ + -73.39976, + 45.505156 + ], + [ + -73.399735, + 45.504788 + ], + [ + -73.399729, + 45.504706 + ], + [ + -73.399657, + 45.504175 + ], + [ + -73.399562, + 45.5035 + ], + [ + -73.399542, + 45.50336 + ], + [ + -73.399508, + 45.503131 + ], + [ + -73.399441, + 45.502676 + ], + [ + -73.399417, + 45.50246 + ], + [ + -73.399355, + 45.501992 + ], + [ + -73.399341, + 45.501884 + ], + [ + -73.399253, + 45.50189 + ], + [ + -73.398942, + 45.50191 + ] + ] + }, + "id": 20, + "properties": { + "id": "f92b21df-f550-408a-8fff-f6532a948339", + "data": { + "gtfs": { + "shape_id": "5_1_R" + }, + "segments": [ + { + "distanceMeters": 11873, + "travelTimeSeconds": 1140 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 584, + "travelTimeSeconds": 121 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 95, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 55 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 306, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 20810, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 13093.326569994628, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.8, + "travelTimeWithoutDwellTimesSeconds": 3060, + "operatingTimeWithLayoverTimeSeconds": 3366, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3060, + "operatingSpeedWithLayoverMetersPerSecond": 6.18, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.8 + }, + "mode": "bus", + "name": "Sect. M St-Hubert", + "color": "#A32638", + "nodes": [ + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "7b9bfdae-7d0d-4463-a7d7-1a62138b83b5", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "907f8610-452b-440d-849b-c803b07dedc1", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "42f94a5d-c370-4fd6-9c9f-6767ef259624", + "e0286f28-f802-47e9-8fd2-0338e2927a2f", + "46d1170e-039a-4a64-a065-b60146bf9006", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "68549053-a194-4fc4-9393-09f9a34040bb", + "40ff3e02-8b3f-498b-908e-b391cc70a163", + "b535e273-90c1-49b6-b38e-2087d5bbebed", + "46a4fc7f-c064-4d08-ac44-e9eeffd46d50", + "ee09cf9f-32a4-4f14-abc4-35cf4e9dacb6", + "8e8689c3-62f3-42eb-93e5-b882f067b52e", + "09a490f8-d473-4d53-8aa0-2df137afe453", + "4fac5725-fd12-47be-9db0-8dea1c53b6f5", + "1202144f-3657-40d2-ae2e-917153a50f04", + "6d53f355-0dfd-420a-a1cc-6510f1a36363", + "235a92b0-53e1-410c-b264-d57c7814303c", + "4a4fa494-b43c-4be6-b677-70874b8f73cc", + "46ea2114-c4d6-46e8-be5d-60d028340abb", + "5f67d1de-bfb7-46e1-9c6a-87d005dd64b6", + "9f0b95b0-8453-4218-9889-ef6146815766", + "72cda4fb-fbe8-47ba-b42e-f310ef91d335", + "bf493d01-4cc2-40cf-9fee-339de5acd0ce", + "35110be1-21ec-490a-b4c8-8b20aa6bef7f", + "aa49b5ca-26fd-4fe1-8e89-4237204a7250", + "3d4eebbc-a250-4177-81d6-19642e2b4176", + "5228afc6-7e91-431f-8045-f41c542a77ea", + "f1de9305-8e6b-46d3-8c98-a08e73b2857f", + "b20c17a3-277e-418e-90be-8f8d32918ba9", + "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", + "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", + "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0" + ], + "stops": [], + "line_id": "51246736-0d56-4a0b-a824-2c9f3fbcbb89", + "segments": [ + 0, + 173, + 175, + 201, + 217, + 220, + 222, + 224, + 226, + 228, + 231, + 239, + 240, + 243, + 246, + 251, + 256, + 260, + 267, + 269, + 271, + 274, + 276, + 279, + 287, + 292, + 295, + 301, + 305, + 308, + 320, + 328, + 331, + 336, + 344, + 351, + 356, + 363, + 371, + 374 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 20, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.398942, + 45.50191 + ], + [ + -73.396837, + 45.502044 + ], + [ + -73.395213, + 45.502142 + ], + [ + -73.395161, + 45.502053 + ], + [ + -73.395151, + 45.501975 + ], + [ + -73.395111, + 45.50166 + ], + [ + -73.395084, + 45.501431 + ], + [ + -73.395041, + 45.50117 + ], + [ + -73.395041, + 45.501053 + ], + [ + -73.395077, + 45.50094 + ], + [ + -73.395555, + 45.499955 + ], + [ + -73.395706, + 45.499618 + ], + [ + -73.395829, + 45.49938 + ], + [ + -73.395901, + 45.499299 + ], + [ + -73.396037, + 45.499128 + ], + [ + -73.396173, + 45.499011 + ], + [ + -73.396766, + 45.498454 + ], + [ + -73.396911, + 45.498319 + ], + [ + -73.397102, + 45.498121 + ], + [ + -73.397351, + 45.497878 + ], + [ + -73.397678, + 45.497573 + ], + [ + -73.397919, + 45.497334 + ], + [ + -73.398209, + 45.497074 + ], + [ + -73.398541, + 45.496804 + ], + [ + -73.398788, + 45.496579 + ], + [ + -73.399137, + 45.496287 + ], + [ + -73.399245, + 45.496194 + ], + [ + -73.399546, + 45.495932 + ], + [ + -73.399607, + 45.495824 + ], + [ + -73.399612, + 45.49582 + ], + [ + -73.399701, + 45.495748 + ], + [ + -73.399866, + 45.495514 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.400642, + 45.495738 + ], + [ + -73.401121, + 45.49596 + ], + [ + -73.402418, + 45.496555 + ], + [ + -73.402953, + 45.49679 + ], + [ + -73.403543, + 45.497051 + ], + [ + -73.403795, + 45.49716 + ], + [ + -73.404434, + 45.497426 + ], + [ + -73.404858, + 45.497588 + ], + [ + -73.405172, + 45.497723 + ], + [ + -73.405568, + 45.497876 + ], + [ + -73.406291, + 45.498153 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.406288, + 45.49843 + ], + [ + -73.406193, + 45.498579 + ], + [ + -73.406163, + 45.49864 + ], + [ + -73.405911, + 45.499145 + ], + [ + -73.405493, + 45.499995 + ], + [ + -73.405383, + 45.500198 + ], + [ + -73.405251, + 45.500369 + ], + [ + -73.405082, + 45.500567 + ], + [ + -73.404894, + 45.500746 + ], + [ + -73.404658, + 45.500926 + ], + [ + -73.404439, + 45.50107 + ], + [ + -73.404275, + 45.501164 + ], + [ + -73.404095, + 45.501254 + ], + [ + -73.403728, + 45.501411 + ], + [ + -73.403505, + 45.501483 + ], + [ + -73.403207, + 45.501564 + ], + [ + -73.402929, + 45.501627 + ], + [ + -73.402747, + 45.501658 + ], + [ + -73.402456, + 45.501689 + ], + [ + -73.401996, + 45.50172 + ], + [ + -73.401983, + 45.501721 + ], + [ + -73.401007, + 45.501782 + ], + [ + -73.399341, + 45.501884 + ], + [ + -73.399355, + 45.501992 + ], + [ + -73.399402, + 45.502346 + ], + [ + -73.399417, + 45.50246 + ], + [ + -73.399441, + 45.502676 + ], + [ + -73.399508, + 45.503131 + ], + [ + -73.399542, + 45.50336 + ], + [ + -73.399657, + 45.504175 + ], + [ + -73.399729, + 45.504706 + ], + [ + -73.39976, + 45.505156 + ], + [ + -73.399787, + 45.505322 + ], + [ + -73.39982, + 45.505426 + ], + [ + -73.399886, + 45.505552 + ], + [ + -73.399949, + 45.505664 + ], + [ + -73.400052, + 45.505795 + ], + [ + -73.400152, + 45.505885 + ], + [ + -73.40031, + 45.50598 + ], + [ + -73.40043, + 45.506038 + ], + [ + -73.400593, + 45.506106 + ], + [ + -73.400668, + 45.506128 + ], + [ + -73.400809, + 45.506169 + ], + [ + -73.401285, + 45.50629 + ], + [ + -73.403459, + 45.506842 + ], + [ + -73.404937, + 45.507219 + ], + [ + -73.404942, + 45.507221 + ], + [ + -73.40508, + 45.507248 + ], + [ + -73.405194, + 45.507248 + ], + [ + -73.405268, + 45.507208 + ], + [ + -73.405549, + 45.506609 + ], + [ + -73.405719, + 45.506277 + ], + [ + -73.405871, + 45.505971 + ], + [ + -73.405984, + 45.50575 + ], + [ + -73.40619, + 45.505319 + ], + [ + -73.406364, + 45.504981 + ], + [ + -73.406515, + 45.50468 + ], + [ + -73.406677, + 45.504352 + ], + [ + -73.406855, + 45.504005 + ], + [ + -73.407261, + 45.504118 + ], + [ + -73.407475, + 45.504174 + ], + [ + -73.407766, + 45.504249 + ], + [ + -73.408367, + 45.504398 + ], + [ + -73.408591, + 45.504454 + ], + [ + -73.408932, + 45.504538 + ], + [ + -73.409315, + 45.504637 + ], + [ + -73.409774, + 45.504755 + ], + [ + -73.41077, + 45.504994 + ], + [ + -73.411569, + 45.505197 + ], + [ + -73.412507, + 45.505418 + ], + [ + -73.412645, + 45.505436 + ], + [ + -73.412747, + 45.50545 + ], + [ + -73.412864, + 45.50545 + ], + [ + -73.413013, + 45.505441 + ], + [ + -73.413318, + 45.50541 + ], + [ + -73.413549, + 45.505378 + ], + [ + -73.413728, + 45.505356 + ], + [ + -73.413859, + 45.505329 + ], + [ + -73.414002, + 45.505302 + ], + [ + -73.414101, + 45.505275 + ], + [ + -73.41431, + 45.50519 + ], + [ + -73.414386, + 45.505141 + ], + [ + -73.414456, + 45.505105 + ], + [ + -73.414518, + 45.50506 + ], + [ + -73.414599, + 45.50497 + ], + [ + -73.414677, + 45.504884 + ], + [ + -73.41477, + 45.504718 + ], + [ + -73.415883, + 45.50251 + ], + [ + -73.41606, + 45.502164 + ], + [ + -73.416178, + 45.501934 + ], + [ + -73.416751, + 45.502146 + ], + [ + -73.417293, + 45.502344 + ], + [ + -73.417806, + 45.502538 + ], + [ + -73.418173, + 45.502669 + ], + [ + -73.418339, + 45.502731 + ], + [ + -73.418847, + 45.502921 + ], + [ + -73.419167, + 45.503047 + ], + [ + -73.419278, + 45.503088 + ], + [ + -73.419673, + 45.503241 + ], + [ + -73.420142, + 45.503431 + ], + [ + -73.420806, + 45.503714 + ], + [ + -73.421234, + 45.503904 + ], + [ + -73.421648, + 45.504084 + ], + [ + -73.421847, + 45.503805 + ], + [ + -73.421882, + 45.503756 + ], + [ + -73.421936, + 45.503681 + ], + [ + -73.42255, + 45.502834 + ], + [ + -73.423367, + 45.501683 + ], + [ + -73.423423, + 45.501602 + ], + [ + -73.423518, + 45.501444 + ], + [ + -73.423572, + 45.501404 + ], + [ + -73.424195, + 45.500516 + ], + [ + -73.424528, + 45.500041 + ], + [ + -73.424908, + 45.499515 + ], + [ + -73.426401, + 45.49741 + ], + [ + -73.427911, + 45.49531 + ], + [ + -73.42799, + 45.495202 + ], + [ + -73.428362, + 45.494686 + ], + [ + -73.429402, + 45.493246 + ], + [ + -73.430914, + 45.491164 + ], + [ + -73.432063, + 45.489531 + ], + [ + -73.43217, + 45.489383 + ], + [ + -73.43219, + 45.48936 + ], + [ + -73.432305, + 45.489239 + ], + [ + -73.432556, + 45.489041 + ], + [ + -73.432684, + 45.488933 + ], + [ + -73.432921, + 45.48878 + ], + [ + -73.433484, + 45.488439 + ], + [ + -73.435153, + 45.487468 + ], + [ + -73.437094, + 45.486331 + ], + [ + -73.437465, + 45.486115 + ], + [ + -73.43775, + 45.485944 + ], + [ + -73.438008, + 45.485782 + ], + [ + -73.439264, + 45.485036 + ], + [ + -73.439281, + 45.485026 + ], + [ + -73.439959, + 45.484631 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.443018, + 45.482865 + ], + [ + -73.443745, + 45.48242 + ], + [ + -73.445624, + 45.481309 + ], + [ + -73.446581, + 45.480738 + ], + [ + -73.448771, + 45.479431 + ], + [ + -73.449044, + 45.479268 + ], + [ + -73.449242, + 45.479145 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.44954, + 45.478958 + ], + [ + -73.449587, + 45.478931 + ], + [ + -73.449414, + 45.478812 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.44904, + 45.47838 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.455506, + 45.473954 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.46212, + 45.469426 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469043, + 45.46624 + ] + ] + }, + "id": 21, + "properties": { + "id": "ee40c076-e974-44f3-8bd2-49cec3bbde70", + "data": { + "gtfs": { + "shape_id": "5_2_A" + }, + "segments": [ + { + "distanceMeters": 1219, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 1097, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 761, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 852, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 1053, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 743, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 726, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 1398, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 1071, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 774, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 721, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 839, + "travelTimeSeconds": 33 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11248, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 66.85347463427748, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 31.24, + "travelTimeWithoutDwellTimesSeconds": 360, + "operatingTimeWithLayoverTimeSeconds": 540, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 360, + "operatingSpeedWithLayoverMetersPerSecond": 20.83, + "averageSpeedWithoutDwellTimesMetersPerSecond": 31.24 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0", + "5c25bfb5-c167-4f71-8798-e94a8ad7560d", + "e4d9e692-bf6d-4c61-9845-9e50427c4cad", + "2550d07e-5034-443e-9840-7e9abcf5a62b", + "2e7cf58e-8d32-4b71-acee-694db180235f", + "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", + "33ed66fe-2193-4e2a-b51d-d25140b9ad80", + "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", + "aab8672e-86c9-4a43-9806-f5135dc02b4e", + "7414010b-fe1f-4d77-8cdd-701cc437e73a", + "dc630e4d-102e-48b9-8b4a-920cafc01d4a", + "00ed067b-7627-492d-ac0f-5d03bd3b185c", + "2d9ee065-016b-451f-a85c-ba2cce6e5bc6" + ], + "stops": [], + "line_id": "51246736-0d56-4a0b-a824-2c9f3fbcbb89", + "segments": [ + 0, + 33, + 65, + 88, + 108, + 139, + 156, + 162, + 179, + 193, + 198, + 202 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 21, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469107, + 45.46587 + ], + [ + -73.469152, + 45.465801 + ], + [ + -73.469114, + 45.465711 + ], + [ + -73.469034, + 45.465669 + ], + [ + -73.468913, + 45.46567 + ], + [ + -73.468751, + 45.465752 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466415, + 45.46583 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466766, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465589, + 45.46821 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.463779, + 45.468251 + ], + [ + -73.463257, + 45.46862 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463569, + 45.468988 + ], + [ + -73.463833, + 45.469169 + ], + [ + -73.464474, + 45.469628 + ], + [ + -73.464828, + 45.469887 + ], + [ + -73.465113, + 45.470096 + ], + [ + -73.465778, + 45.470582 + ], + [ + -73.466292, + 45.470957 + ], + [ + -73.466451, + 45.471073 + ], + [ + -73.467061, + 45.471469 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.468499, + 45.472486 + ], + [ + -73.469236, + 45.473 + ], + [ + -73.469661, + 45.473296 + ], + [ + -73.469926, + 45.473481 + ], + [ + -73.471608, + 45.474678 + ], + [ + -73.4718, + 45.47482 + ], + [ + -73.471919, + 45.474907 + ], + [ + -73.472018, + 45.474979 + ], + [ + -73.47234, + 45.475227 + ], + [ + -73.473157, + 45.475808 + ], + [ + -73.473415, + 45.476001 + ], + [ + -73.473844, + 45.476308 + ], + [ + -73.475018, + 45.477149 + ], + [ + -73.475723, + 45.477647 + ], + [ + -73.476119, + 45.477927 + ], + [ + -73.476929, + 45.478485 + ], + [ + -73.477462, + 45.478904 + ], + [ + -73.477571, + 45.478981 + ], + [ + -73.477667, + 45.479048 + ], + [ + -73.477754, + 45.479101 + ], + [ + -73.477833, + 45.479125 + ], + [ + -73.478515, + 45.47962 + ], + [ + -73.479199, + 45.480107 + ], + [ + -73.47933, + 45.4802 + ], + [ + -73.479422, + 45.480272 + ], + [ + -73.479511, + 45.480326 + ], + [ + -73.479961, + 45.480655 + ], + [ + -73.480428, + 45.480974 + ], + [ + -73.480755, + 45.481226 + ], + [ + -73.481141, + 45.481496 + ], + [ + -73.481448, + 45.481719 + ], + [ + -73.481483, + 45.481744 + ], + [ + -73.48159, + 45.481816 + ], + [ + -73.481822, + 45.481987 + ], + [ + -73.481995, + 45.482108 + ], + [ + -73.482091, + 45.482176 + ], + [ + -73.482188, + 45.482243 + ], + [ + -73.482644, + 45.48257 + ], + [ + -73.482999, + 45.482824 + ], + [ + -73.483337, + 45.483067 + ], + [ + -73.483483, + 45.483175 + ], + [ + -73.483637, + 45.483278 + ], + [ + -73.484263, + 45.483728 + ], + [ + -73.484788, + 45.484104 + ], + [ + -73.485416, + 45.484552 + ], + [ + -73.485807, + 45.484835 + ], + [ + -73.486446, + 45.485294 + ], + [ + -73.486783, + 45.485533 + ], + [ + -73.486867, + 45.485594 + ], + [ + -73.487051, + 45.485731 + ], + [ + -73.487831, + 45.486284 + ], + [ + -73.488568, + 45.486806 + ], + [ + -73.48897, + 45.487081 + ], + [ + -73.489048, + 45.487135 + ], + [ + -73.489411, + 45.487405 + ], + [ + -73.490801, + 45.488399 + ], + [ + -73.491476, + 45.488881 + ], + [ + -73.491557, + 45.488939 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.491721, + 45.489052 + ], + [ + -73.492218, + 45.489407 + ], + [ + -73.492419, + 45.48955 + ], + [ + -73.492465, + 45.489583 + ], + [ + -73.492778, + 45.489803 + ], + [ + -73.492976, + 45.489943 + ], + [ + -73.493573, + 45.490366 + ], + [ + -73.493701, + 45.490456 + ], + [ + -73.493838, + 45.49055 + ], + [ + -73.494242, + 45.490838 + ], + [ + -73.494265, + 45.490853 + ], + [ + -73.49433, + 45.490897 + ], + [ + -73.494917, + 45.491315 + ], + [ + -73.495204, + 45.491517 + ], + [ + -73.495442, + 45.491684 + ], + [ + -73.49562, + 45.491814 + ], + [ + -73.495851, + 45.491976 + ], + [ + -73.496235, + 45.492242 + ], + [ + -73.496321, + 45.492305 + ], + [ + -73.496378, + 45.492345 + ], + [ + -73.496416, + 45.492372 + ], + [ + -73.496772, + 45.492629 + ], + [ + -73.497128, + 45.492885 + ], + [ + -73.497339, + 45.493038 + ], + [ + -73.497557, + 45.493191 + ], + [ + -73.497639, + 45.493253 + ], + [ + -73.497771, + 45.493353 + ], + [ + -73.497866, + 45.493425 + ], + [ + -73.497927, + 45.49347 + ], + [ + -73.497995, + 45.493515 + ], + [ + -73.49804, + 45.493547 + ], + [ + -73.498238, + 45.493691 + ], + [ + -73.49848, + 45.493866 + ], + [ + -73.498616, + 45.49397 + ], + [ + -73.498797, + 45.494096 + ], + [ + -73.498924, + 45.49419 + ], + [ + -73.499159, + 45.494361 + ], + [ + -73.499315, + 45.494474 + ], + [ + -73.499359, + 45.494506 + ], + [ + -73.49959, + 45.494676 + ], + [ + -73.499763, + 45.494802 + ], + [ + -73.499778, + 45.494815 + ], + [ + -73.499824, + 45.494846 + ], + [ + -73.500025, + 45.494979 + ], + [ + -73.500064, + 45.495 + ], + [ + -73.500106, + 45.495026 + ], + [ + -73.500592, + 45.495409 + ], + [ + -73.50081, + 45.495567 + ], + [ + -73.501059, + 45.495724 + ], + [ + -73.501182, + 45.495805 + ], + [ + -73.501279, + 45.495868 + ], + [ + -73.501298, + 45.495882 + ], + [ + -73.501808, + 45.496251 + ], + [ + -73.502261, + 45.496566 + ], + [ + -73.502293, + 45.496588 + ], + [ + -73.502336, + 45.49662 + ], + [ + -73.50284, + 45.49698 + ], + [ + -73.50327, + 45.49729 + ], + [ + -73.503408, + 45.497389 + ], + [ + -73.503475, + 45.497438 + ], + [ + -73.504131, + 45.497897 + ], + [ + -73.504473, + 45.49814 + ], + [ + -73.504683, + 45.498293 + ], + [ + -73.504766, + 45.498356 + ], + [ + -73.504839, + 45.49841 + ], + [ + -73.505105, + 45.498595 + ], + [ + -73.505329, + 45.498757 + ], + [ + -73.505704, + 45.498928 + ], + [ + -73.506001, + 45.499076 + ], + [ + -73.506259, + 45.499211 + ], + [ + -73.506709, + 45.499427 + ], + [ + -73.506801, + 45.499467 + ], + [ + -73.507261, + 45.499663 + ], + [ + -73.50735, + 45.499701 + ], + [ + -73.507712, + 45.499859 + ], + [ + -73.508861, + 45.50034 + ], + [ + -73.508958, + 45.500376 + ], + [ + -73.509608, + 45.500651 + ], + [ + -73.509762, + 45.500713 + ], + [ + -73.50993, + 45.500781 + ], + [ + -73.51045, + 45.501019 + ], + [ + -73.511327, + 45.50142 + ], + [ + -73.512063, + 45.501735 + ], + [ + -73.512398, + 45.501874 + ], + [ + -73.512677, + 45.501991 + ], + [ + -73.512872, + 45.502072 + ], + [ + -73.513437, + 45.502275 + ], + [ + -73.513621, + 45.502342 + ], + [ + -73.513711, + 45.502384 + ], + [ + -73.513806, + 45.502427 + ], + [ + -73.513873, + 45.50226 + ], + [ + -73.513915, + 45.502163 + ], + [ + -73.514024, + 45.501904 + ], + [ + -73.514045, + 45.501797 + ], + [ + -73.514104, + 45.501797 + ], + [ + -73.514193, + 45.501801 + ], + [ + -73.514212, + 45.501802 + ], + [ + -73.514398, + 45.501805 + ], + [ + -73.516185, + 45.501834 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517437, + 45.505262 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517233, + 45.507277 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517559, + 45.50921 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517797, + 45.511423 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517596, + 45.513245 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518264, + 45.51531 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518973, + 45.516744 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520113, + 45.519726 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520194, + 45.520238 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522121, + 45.523145 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.521609, + 45.523676 + ], + [ + -73.521556, + 45.52368 + ], + [ + -73.521506, + 45.523698 + ], + [ + -73.521494, + 45.523725 + ], + [ + -73.521489, + 45.523788 + ], + [ + -73.521486, + 45.523819 + ] + ] + }, + "id": 22, + "properties": { + "id": "2bf47ecf-42d7-49be-9b04-871767696cee", + "data": { + "gtfs": { + "shape_id": "6_1_A" + }, + "segments": [ + { + "distanceMeters": 673, + "travelTimeSeconds": 113 + }, + { + "distanceMeters": 403, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 427, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 348, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 717, + "travelTimeSeconds": 128 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9386, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7618.188458394157, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.26, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 5.59, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.26 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "977065eb-9054-495e-befc-5f3b6e0e6046", + "42f48eea-ee59-46f6-9c43-4b63100a50dc", + "1345672a-9148-439f-9a52-b8a216612929", + "ece1943b-159a-42fa-a0c1-16e06714e25e", + "d73e4ff6-4502-4376-9cf1-5410d307a82f", + "c04702f7-b2cf-440e-a6da-0a84aefc3963", + "f32e29fd-d271-4ae6-8083-6d24349dccdf", + "1e48d359-2463-4fbd-b946-c0a530db4bbe", + "dc5fe0eb-b8cc-4186-82d3-6787360ae612", + "0a623471-271f-47f5-9a85-7feece2a3285", + "aa413165-9699-49b6-9dea-fa35bda8f373", + "54bbe390-ff6d-41d9-bd4b-1e4843d66512", + "7faed35b-7709-443d-b0ec-5f09ab018202", + "88d8365e-2528-4422-a483-bb2efd9de617", + "0b6032e7-414a-429f-9df2-796599b947c2", + "1cedf968-65c8-4c0f-b92c-c06da7b8fe69", + "16f75d06-f538-4735-a99f-9bc7eaa6eaab", + "1cea6199-481e-43b0-8d4a-8c7593ff485f", + "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", + "6557d1fe-6975-49e2-871c-ab07d42ea35b", + "0ac44bed-6f37-406e-8654-f8d5f36c840e", + "443288e2-2ae9-4c97-a015-0e176d8f71b2", + "a230c1b0-ee13-40c1-8d3f-12ae20006cc6", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "2259b112-2e60-4bcc-ad14-9e0e577f2909", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "883677f7-ddf9-4c02-8c42-da41b99017fc", + "segments": [ + 0, + 32, + 49, + 52, + 59, + 62, + 68, + 70, + 74, + 79, + 87, + 100, + 105, + 109, + 113, + 126, + 135, + 141, + 158, + 167, + 169, + 179, + 188, + 196, + 207, + 214, + 227, + 233, + 238, + 244, + 250, + 258, + 265, + 273 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 22, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521486, + 45.523819 + ], + [ + -73.521481, + 45.523874 + ], + [ + -73.52149, + 45.523892 + ], + [ + -73.521509, + 45.523906 + ], + [ + -73.521542, + 45.523919 + ], + [ + -73.521581, + 45.523923 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519706, + 45.52323 + ], + [ + -73.519869, + 45.522907 + ], + [ + -73.520158, + 45.522337 + ], + [ + -73.520306, + 45.521899 + ], + [ + -73.520306, + 45.521896 + ], + [ + -73.520354, + 45.521696 + ], + [ + -73.520357, + 45.521682 + ], + [ + -73.520401, + 45.521498 + ], + [ + -73.520405, + 45.521373 + ], + [ + -73.520409, + 45.52119 + ], + [ + -73.520398, + 45.521025 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520121, + 45.519896 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518919, + 45.516652 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517657, + 45.51361 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517705, + 45.511767 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.51761, + 45.509413 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517231, + 45.50733 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517348, + 45.505752 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.516262, + 45.501836 + ], + [ + -73.516043, + 45.501832 + ], + [ + -73.514398, + 45.501805 + ], + [ + -73.514212, + 45.501802 + ], + [ + -73.514104, + 45.501797 + ], + [ + -73.514045, + 45.501797 + ], + [ + -73.513805, + 45.501793 + ], + [ + -73.5136, + 45.501784 + ], + [ + -73.513522, + 45.501784 + ], + [ + -73.51344, + 45.501784 + ], + [ + -73.513284, + 45.501793 + ], + [ + -73.513035, + 45.501807 + ], + [ + -73.512897, + 45.501829 + ], + [ + -73.5127, + 45.501847 + ], + [ + -73.512514, + 45.501864 + ], + [ + -73.512398, + 45.501874 + ], + [ + -73.512063, + 45.501735 + ], + [ + -73.511984, + 45.501701 + ], + [ + -73.511327, + 45.50142 + ], + [ + -73.50993, + 45.500781 + ], + [ + -73.509918, + 45.500776 + ], + [ + -73.509762, + 45.500713 + ], + [ + -73.509608, + 45.500651 + ], + [ + -73.508958, + 45.500376 + ], + [ + -73.508861, + 45.50034 + ], + [ + -73.507712, + 45.499859 + ], + [ + -73.50735, + 45.499701 + ], + [ + -73.50708, + 45.499586 + ], + [ + -73.506801, + 45.499467 + ], + [ + -73.506709, + 45.499427 + ], + [ + -73.506259, + 45.499211 + ], + [ + -73.506001, + 45.499076 + ], + [ + -73.505704, + 45.498928 + ], + [ + -73.505329, + 45.498757 + ], + [ + -73.505105, + 45.498595 + ], + [ + -73.504959, + 45.498494 + ], + [ + -73.504839, + 45.49841 + ], + [ + -73.504683, + 45.498293 + ], + [ + -73.504473, + 45.49814 + ], + [ + -73.504131, + 45.497897 + ], + [ + -73.503475, + 45.497438 + ], + [ + -73.503408, + 45.497389 + ], + [ + -73.50327, + 45.49729 + ], + [ + -73.50284, + 45.49698 + ], + [ + -73.502643, + 45.496839 + ], + [ + -73.502336, + 45.49662 + ], + [ + -73.502293, + 45.496588 + ], + [ + -73.501808, + 45.496251 + ], + [ + -73.501454, + 45.495994 + ], + [ + -73.501279, + 45.495868 + ], + [ + -73.501182, + 45.495805 + ], + [ + -73.501059, + 45.495724 + ], + [ + -73.50081, + 45.495567 + ], + [ + -73.500592, + 45.495409 + ], + [ + -73.500512, + 45.495347 + ], + [ + -73.500106, + 45.495026 + ], + [ + -73.500064, + 45.495 + ], + [ + -73.500025, + 45.494979 + ], + [ + -73.499778, + 45.494815 + ], + [ + -73.499763, + 45.494802 + ], + [ + -73.49959, + 45.494676 + ], + [ + -73.499359, + 45.494506 + ], + [ + -73.499315, + 45.494474 + ], + [ + -73.499159, + 45.494361 + ], + [ + -73.498924, + 45.49419 + ], + [ + -73.498797, + 45.494096 + ], + [ + -73.498616, + 45.49397 + ], + [ + -73.49848, + 45.493866 + ], + [ + -73.498247, + 45.493697 + ], + [ + -73.498238, + 45.493691 + ], + [ + -73.49804, + 45.493547 + ], + [ + -73.497995, + 45.493515 + ], + [ + -73.497927, + 45.49347 + ], + [ + -73.497866, + 45.493425 + ], + [ + -73.497771, + 45.493353 + ], + [ + -73.497557, + 45.493191 + ], + [ + -73.497339, + 45.493038 + ], + [ + -73.497128, + 45.492885 + ], + [ + -73.496772, + 45.492629 + ], + [ + -73.496472, + 45.492413 + ], + [ + -73.496416, + 45.492372 + ], + [ + -73.496321, + 45.492305 + ], + [ + -73.496235, + 45.492242 + ], + [ + -73.495851, + 45.491976 + ], + [ + -73.49562, + 45.491814 + ], + [ + -73.495442, + 45.491684 + ], + [ + -73.495204, + 45.491517 + ], + [ + -73.494917, + 45.491315 + ], + [ + -73.49433, + 45.490897 + ], + [ + -73.494242, + 45.490838 + ], + [ + -73.494223, + 45.490824 + ], + [ + -73.493838, + 45.49055 + ], + [ + -73.493701, + 45.490456 + ], + [ + -73.493573, + 45.490366 + ], + [ + -73.492976, + 45.489943 + ], + [ + -73.492778, + 45.489803 + ], + [ + -73.492465, + 45.489583 + ], + [ + -73.492419, + 45.48955 + ], + [ + -73.492218, + 45.489407 + ], + [ + -73.492031, + 45.489273 + ], + [ + -73.491721, + 45.489052 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.491557, + 45.488939 + ], + [ + -73.490801, + 45.488399 + ], + [ + -73.489411, + 45.487405 + ], + [ + -73.489381, + 45.487383 + ], + [ + -73.489048, + 45.487135 + ], + [ + -73.488568, + 45.486806 + ], + [ + -73.487831, + 45.486284 + ], + [ + -73.487164, + 45.485811 + ], + [ + -73.487051, + 45.485731 + ], + [ + -73.486783, + 45.485533 + ], + [ + -73.486446, + 45.485294 + ], + [ + -73.485807, + 45.484835 + ], + [ + -73.485416, + 45.484552 + ], + [ + -73.485026, + 45.484273 + ], + [ + -73.484263, + 45.483728 + ], + [ + -73.483637, + 45.483278 + ], + [ + -73.483483, + 45.483175 + ], + [ + -73.483337, + 45.483067 + ], + [ + -73.482999, + 45.482824 + ], + [ + -73.482644, + 45.48257 + ], + [ + -73.482188, + 45.482243 + ], + [ + -73.482091, + 45.482176 + ], + [ + -73.481995, + 45.482108 + ], + [ + -73.481822, + 45.481987 + ], + [ + -73.481722, + 45.481913 + ], + [ + -73.48159, + 45.481816 + ], + [ + -73.481483, + 45.481744 + ], + [ + -73.481141, + 45.481496 + ], + [ + -73.480755, + 45.481226 + ], + [ + -73.480428, + 45.480974 + ], + [ + -73.479961, + 45.480655 + ], + [ + -73.479511, + 45.480326 + ], + [ + -73.479422, + 45.480272 + ], + [ + -73.47933, + 45.4802 + ], + [ + -73.479257, + 45.480148 + ], + [ + -73.478515, + 45.47962 + ], + [ + -73.478128, + 45.479339 + ], + [ + -73.477833, + 45.479125 + ], + [ + -73.477798, + 45.479064 + ], + [ + -73.477757, + 45.479003 + ], + [ + -73.477575, + 45.47885 + ], + [ + -73.477033, + 45.478413 + ], + [ + -73.476674, + 45.478151 + ], + [ + -73.47654, + 45.478053 + ], + [ + -73.476251, + 45.477842 + ], + [ + -73.475153, + 45.477059 + ], + [ + -73.474544, + 45.476636 + ], + [ + -73.474345, + 45.476487 + ], + [ + -73.474182, + 45.476365 + ], + [ + -73.4733, + 45.475709 + ], + [ + -73.473152, + 45.475605 + ], + [ + -73.472484, + 45.475128 + ], + [ + -73.472434, + 45.475089 + ], + [ + -73.47218, + 45.47489 + ], + [ + -73.472074, + 45.474808 + ], + [ + -73.471729, + 45.474583 + ], + [ + -73.470384, + 45.473617 + ], + [ + -73.470064, + 45.473386 + ], + [ + -73.468607, + 45.472409 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.467156, + 45.471392 + ], + [ + -73.466545, + 45.47101 + ], + [ + -73.466287, + 45.470825 + ], + [ + -73.465866, + 45.470524 + ], + [ + -73.465269, + 45.47009 + ], + [ + -73.465197, + 45.470037 + ], + [ + -73.464559, + 45.469569 + ], + [ + -73.464, + 45.469161 + ], + [ + -73.463833, + 45.469039 + ], + [ + -73.463631, + 45.468892 + ], + [ + -73.463582, + 45.468833 + ], + [ + -73.463549, + 45.468773 + ], + [ + -73.463538, + 45.468741 + ], + [ + -73.463534, + 45.468692 + ], + [ + -73.46354, + 45.468624 + ], + [ + -73.463567, + 45.468561 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464375, + 45.468221 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.465219, + 45.468286 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.46908, + 45.465912 + ], + [ + -73.469107, + 45.46587 + ] + ] + }, + "id": 23, + "properties": { + "id": "5c716511-636c-4e1d-b29a-26e2c1242166", + "data": { + "gtfs": { + "shape_id": "6_1_R" + }, + "segments": [ + { + "distanceMeters": 766, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 378, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 353, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 476, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 368, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 446, + "travelTimeSeconds": 101 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 579, + "travelTimeSeconds": 132 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9215, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7618.188458394157, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.14, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 5.48, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.14 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "46687bb1-1189-4edc-bbd4-c90db18d4ff5", + "df5b9592-81e3-4b2c-8a30-7f3a9144671b", + "d24bea6e-da8d-4183-8a5f-0e99be199484", + "6557d1fe-6975-49e2-871c-ab07d42ea35b", + "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", + "1cea6199-481e-43b0-8d4a-8c7593ff485f", + "467e03f3-2556-4d22-ae48-618a76e6b0b4", + "ea9801c9-a110-4900-bcae-f1b3a40050e8", + "0b6032e7-414a-429f-9df2-796599b947c2", + "88d8365e-2528-4422-a483-bb2efd9de617", + "196681e4-c9e5-4a79-a3b1-ce225227e0aa", + "54bbe390-ff6d-41d9-bd4b-1e4843d66512", + "aa413165-9699-49b6-9dea-fa35bda8f373", + "0a623471-271f-47f5-9a85-7feece2a3285", + "dc5fe0eb-b8cc-4186-82d3-6787360ae612", + "1e48d359-2463-4fbd-b946-c0a530db4bbe", + "c46257ee-b29f-4a62-9447-95eb1e19c941", + "fe84c986-2907-4842-bde4-72fbe08a0576", + "d73e4ff6-4502-4376-9cf1-5410d307a82f", + "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", + "85f19be2-1f67-4673-b3b3-52d06ed31ae3", + "42f48eea-ee59-46f6-9c43-4b63100a50dc", + "8e9afee7-e1de-4794-a91d-f9db0ef29ed2", + "ee43ab70-74a3-4a43-bfec-164062a98584", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "883677f7-ddf9-4c02-8c42-da41b99017fc", + "segments": [ + 0, + 30, + 40, + 51, + 57, + 64, + 70, + 75, + 89, + 103, + 109, + 116, + 124, + 133, + 137, + 143, + 157, + 168, + 179, + 188, + 194, + 198, + 204, + 215, + 225, + 227, + 233, + 239, + 243, + 247, + 254, + 256, + 260, + 277 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 23, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519259, + 45.524277 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519057, + 45.525166 + ], + [ + -73.518828, + 45.525169 + ], + [ + -73.518662, + 45.525195 + ], + [ + -73.518477, + 45.525222 + ], + [ + -73.51841, + 45.525229 + ], + [ + -73.518309, + 45.525233 + ], + [ + -73.518165, + 45.525238 + ], + [ + -73.517846, + 45.525224 + ], + [ + -73.516858, + 45.525188 + ], + [ + -73.516329, + 45.525185 + ], + [ + -73.51586, + 45.52522 + ], + [ + -73.515879, + 45.525306 + ], + [ + -73.515954, + 45.525625 + ], + [ + -73.515993, + 45.52576 + ], + [ + -73.516108, + 45.52615 + ], + [ + -73.51612, + 45.526192 + ], + [ + -73.516132, + 45.526224 + ], + [ + -73.516245, + 45.52653 + ], + [ + -73.516302, + 45.526687 + ], + [ + -73.516434, + 45.526894 + ], + [ + -73.517006, + 45.527735 + ], + [ + -73.517118, + 45.52798 + ], + [ + -73.517259, + 45.528292 + ], + [ + -73.517272, + 45.52832 + ], + [ + -73.517504, + 45.528922 + ], + [ + -73.517577, + 45.529094 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.517456, + 45.531762 + ], + [ + -73.516895, + 45.532281 + ], + [ + -73.51664, + 45.532518 + ], + [ + -73.515885, + 45.533161 + ], + [ + -73.515753, + 45.533238 + ], + [ + -73.515672, + 45.533321 + ], + [ + -73.515328, + 45.533707 + ], + [ + -73.515257, + 45.533788 + ], + [ + -73.515202, + 45.533848 + ], + [ + -73.514831, + 45.534265 + ], + [ + -73.514791, + 45.534311 + ], + [ + -73.514731, + 45.534379 + ], + [ + -73.514684, + 45.534434 + ], + [ + -73.51432, + 45.534799 + ], + [ + -73.514005, + 45.535118 + ], + [ + -73.513904, + 45.53522 + ], + [ + -73.513681, + 45.535468 + ], + [ + -73.51342, + 45.535713 + ], + [ + -73.513155, + 45.535985 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.511243, + 45.537332 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.509633, + 45.538686 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.508029, + 45.540693 + ], + [ + -73.508021, + 45.540689 + ], + [ + -73.507544, + 45.540495 + ], + [ + -73.507102, + 45.540316 + ], + [ + -73.506536, + 45.540077 + ], + [ + -73.505474, + 45.539646 + ], + [ + -73.504975, + 45.539443 + ], + [ + -73.50484, + 45.539375 + ], + [ + -73.504659, + 45.53925 + ], + [ + -73.504204, + 45.538858 + ], + [ + -73.50401, + 45.538714 + ], + [ + -73.504001, + 45.538709 + ], + [ + -73.503897, + 45.538651 + ], + [ + -73.5035, + 45.538476 + ], + [ + -73.502143, + 45.537905 + ], + [ + -73.501222, + 45.537517 + ], + [ + -73.499707, + 45.536879 + ], + [ + -73.499534, + 45.536807 + ], + [ + -73.498456, + 45.536361 + ], + [ + -73.497345, + 45.53588 + ], + [ + -73.496932, + 45.535682 + ], + [ + -73.496814, + 45.535632 + ], + [ + -73.496535, + 45.53552 + ], + [ + -73.495741, + 45.5352 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.494436, + 45.534693 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.492647, + 45.533954 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.491123, + 45.533323 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.4886, + 45.532288 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.485513, + 45.531004 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.481743, + 45.529435 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.48089, + 45.529066 + ], + [ + -73.480753, + 45.529011 + ], + [ + -73.480164, + 45.528774 + ], + [ + -73.479454, + 45.528472 + ], + [ + -73.478839, + 45.528217 + ], + [ + -73.478598, + 45.528117 + ], + [ + -73.477725, + 45.527748 + ], + [ + -73.476969, + 45.527428 + ], + [ + -73.476219, + 45.527117 + ], + [ + -73.476089, + 45.527063 + ], + [ + -73.475894, + 45.526982 + ], + [ + -73.475467, + 45.526811 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.47427, + 45.526306 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.47277, + 45.525683 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.471997, + 45.525357 + ], + [ + -73.471094, + 45.524979 + ], + [ + -73.470555, + 45.524749 + ], + [ + -73.470239, + 45.524623 + ], + [ + -73.469721, + 45.524403 + ], + [ + -73.469624, + 45.524363 + ], + [ + -73.469522, + 45.524322 + ], + [ + -73.468866, + 45.524038 + ], + [ + -73.468205, + 45.523769 + ], + [ + -73.468048, + 45.523705 + ], + [ + -73.467237, + 45.523363 + ], + [ + -73.466276, + 45.522967 + ], + [ + -73.466082, + 45.522841 + ], + [ + -73.465634, + 45.52266 + ], + [ + -73.465545, + 45.522622 + ], + [ + -73.464874, + 45.522336 + ], + [ + -73.464576, + 45.522215 + ], + [ + -73.464439, + 45.522143 + ], + [ + -73.464336, + 45.522093 + ], + [ + -73.464186, + 45.522017 + ], + [ + -73.463952, + 45.52192 + ], + [ + -73.463642, + 45.521792 + ], + [ + -73.463125, + 45.521577 + ], + [ + -73.462859, + 45.521467 + ], + [ + -73.46256, + 45.521341 + ], + [ + -73.460771, + 45.520588 + ], + [ + -73.460592, + 45.520513 + ], + [ + -73.460391, + 45.520427 + ], + [ + -73.460276, + 45.520379 + ], + [ + -73.458651, + 45.519707 + ], + [ + -73.457504, + 45.519217 + ], + [ + -73.457332, + 45.519144 + ], + [ + -73.457212, + 45.51909 + ], + [ + -73.456379, + 45.518756 + ], + [ + -73.455695, + 45.518468 + ], + [ + -73.454372, + 45.5179 + ], + [ + -73.454164, + 45.517811 + ], + [ + -73.453487, + 45.51753 + ], + [ + -73.452818, + 45.517252 + ], + [ + -73.452666, + 45.517189 + ], + [ + -73.452271, + 45.517027 + ], + [ + -73.452136, + 45.516973 + ], + [ + -73.452066, + 45.516942 + ], + [ + -73.450142, + 45.516153 + ], + [ + -73.450032, + 45.516108 + ], + [ + -73.448748, + 45.515563 + ], + [ + -73.448601, + 45.5155 + ], + [ + -73.445111, + 45.514032 + ], + [ + -73.444787, + 45.513896 + ], + [ + -73.443484, + 45.513348 + ], + [ + -73.443129, + 45.513199 + ], + [ + -73.440479, + 45.512077 + ], + [ + -73.440412, + 45.512048 + ], + [ + -73.440007, + 45.511874 + ], + [ + -73.439905, + 45.511834 + ], + [ + -73.439831, + 45.511802 + ], + [ + -73.439067, + 45.511482 + ], + [ + -73.43848, + 45.511214 + ], + [ + -73.438299, + 45.511131 + ], + [ + -73.438017, + 45.511 + ], + [ + -73.437245, + 45.510635 + ], + [ + -73.436224, + 45.510185 + ], + [ + -73.435988, + 45.510081 + ], + [ + -73.435895, + 45.510041 + ], + [ + -73.435854, + 45.510023 + ], + [ + -73.435569, + 45.509897 + ], + [ + -73.435038, + 45.509668 + ], + [ + -73.434856, + 45.50959 + ], + [ + -73.434257, + 45.509343 + ], + [ + -73.433925, + 45.509203 + ], + [ + -73.433726, + 45.509117 + ], + [ + -73.433485, + 45.509005 + ], + [ + -73.433108, + 45.508806 + ], + [ + -73.432574, + 45.508487 + ], + [ + -73.432044, + 45.508167 + ], + [ + -73.431846, + 45.508041 + ], + [ + -73.43182, + 45.508023 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.431538, + 45.507856 + ], + [ + -73.430825, + 45.507356 + ], + [ + -73.430679, + 45.507221 + ], + [ + -73.430612, + 45.507149 + ], + [ + -73.43049, + 45.506978 + ], + [ + -73.43046, + 45.50692 + ], + [ + -73.430405, + 45.506816 + ], + [ + -73.430319, + 45.506587 + ], + [ + -73.430298, + 45.506497 + ], + [ + -73.430275, + 45.506389 + ], + [ + -73.430272, + 45.506375 + ], + [ + -73.430221, + 45.506056 + ], + [ + -73.430115, + 45.505569 + ], + [ + -73.430022, + 45.505142 + ], + [ + -73.429926, + 45.504769 + ], + [ + -73.429899, + 45.5047 + ], + [ + -73.429809, + 45.504476 + ], + [ + -73.429754, + 45.504373 + ], + [ + -73.4297, + 45.504274 + ], + [ + -73.429596, + 45.504132 + ], + [ + -73.429585, + 45.504116 + ], + [ + -73.429534, + 45.504058 + ], + [ + -73.429455, + 45.503968 + ], + [ + -73.429429, + 45.503936 + ], + [ + -73.429234, + 45.503747 + ], + [ + -73.429121, + 45.503648 + ], + [ + -73.429007, + 45.503562 + ], + [ + -73.428781, + 45.503414 + ], + [ + -73.428662, + 45.503344 + ], + [ + -73.428528, + 45.503265 + ], + [ + -73.428383, + 45.503193 + ], + [ + -73.428061, + 45.503062 + ], + [ + -73.427348, + 45.502808 + ], + [ + -73.426603, + 45.502542 + ], + [ + -73.426292, + 45.502431 + ], + [ + -73.424352, + 45.501741 + ], + [ + -73.423912, + 45.501584 + ], + [ + -73.423518, + 45.501444 + ], + [ + -73.423081, + 45.501291 + ], + [ + -73.422609, + 45.501122 + ], + [ + -73.422513, + 45.501088 + ], + [ + -73.421932, + 45.500878 + ], + [ + -73.421552, + 45.500741 + ], + [ + -73.42114, + 45.50058 + ], + [ + -73.420988, + 45.50052 + ], + [ + -73.420974, + 45.500516 + ], + [ + -73.420915, + 45.500489 + ], + [ + -73.420674, + 45.50038 + ], + [ + -73.420367, + 45.500227 + ], + [ + -73.41991, + 45.499962 + ], + [ + -73.419471, + 45.499673 + ], + [ + -73.419335, + 45.49957 + ], + [ + -73.419049, + 45.499354 + ], + [ + -73.418625, + 45.499061 + ], + [ + -73.418366, + 45.498904 + ], + [ + -73.418232, + 45.498822 + ], + [ + -73.417884, + 45.498642 + ], + [ + -73.417509, + 45.498478 + ], + [ + -73.417338, + 45.498403 + ], + [ + -73.416887, + 45.498227 + ], + [ + -73.416876, + 45.498223 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.415848, + 45.497845 + ], + [ + -73.415069, + 45.497555 + ], + [ + -73.414637, + 45.497397 + ], + [ + -73.413391, + 45.496942 + ], + [ + -73.413096, + 45.496835 + ], + [ + -73.41213, + 45.496482 + ], + [ + -73.411766, + 45.496343 + ], + [ + -73.411419, + 45.496194 + ], + [ + -73.411025, + 45.496011 + ], + [ + -73.410951, + 45.495977 + ], + [ + -73.410895, + 45.495951 + ], + [ + -73.410789, + 45.495896 + ], + [ + -73.409735, + 45.495323 + ], + [ + -73.409349, + 45.495112 + ], + [ + -73.409099, + 45.494968 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.408825, + 45.494811 + ], + [ + -73.408434, + 45.49459 + ], + [ + -73.408369, + 45.494555 + ], + [ + -73.408119, + 45.494419 + ], + [ + -73.407735, + 45.494211 + ], + [ + -73.407122, + 45.493914 + ], + [ + -73.406636, + 45.493695 + ], + [ + -73.406594, + 45.493675 + ], + [ + -73.404056, + 45.49253 + ], + [ + -73.40355, + 45.492282 + ], + [ + -73.403081, + 45.492034 + ], + [ + -73.402782, + 45.491854 + ], + [ + -73.402765, + 45.491844 + ], + [ + -73.402626, + 45.491759 + ], + [ + -73.402493, + 45.491674 + ], + [ + -73.402463, + 45.491651 + ], + [ + -73.402075, + 45.491386 + ], + [ + -73.401668, + 45.491075 + ], + [ + -73.401167, + 45.490642 + ], + [ + -73.400821, + 45.490307 + ], + [ + -73.40081, + 45.490296 + ], + [ + -73.398797, + 45.488233 + ], + [ + -73.398629, + 45.488062 + ], + [ + -73.398311, + 45.487738 + ], + [ + -73.397543, + 45.486952 + ], + [ + -73.397073, + 45.486473 + ], + [ + -73.396659, + 45.486048 + ], + [ + -73.396515, + 45.485901 + ], + [ + -73.395797, + 45.485167 + ], + [ + -73.395424, + 45.48482 + ], + [ + -73.39519, + 45.484626 + ], + [ + -73.394903, + 45.484401 + ], + [ + -73.39465, + 45.484213 + ], + [ + -73.39454, + 45.484131 + ], + [ + -73.394481, + 45.484095 + ], + [ + -73.394291, + 45.483964 + ], + [ + -73.393942, + 45.483748 + ], + [ + -73.393737, + 45.48363 + ], + [ + -73.393666, + 45.48359 + ], + [ + -73.393194, + 45.483333 + ], + [ + -73.389604, + 45.481489 + ], + [ + -73.389467, + 45.481417 + ], + [ + -73.389334, + 45.481534 + ], + [ + -73.389135, + 45.481777 + ], + [ + -73.388998, + 45.481957 + ], + [ + -73.388994, + 45.481962 + ], + [ + -73.388761, + 45.482271 + ], + [ + -73.388459, + 45.482687 + ], + [ + -73.38817, + 45.483085 + ], + [ + -73.388122, + 45.483153 + ], + [ + -73.38807, + 45.483229 + ], + [ + -73.387267, + 45.484313 + ], + [ + -73.387181, + 45.484429 + ], + [ + -73.386793, + 45.484951 + ], + [ + -73.386456, + 45.485401 + ], + [ + -73.386282, + 45.485639 + ], + [ + -73.386108, + 45.485909 + ], + [ + -73.386009, + 45.486084 + ], + [ + -73.385921, + 45.486295 + ], + [ + -73.38587, + 45.486444 + ], + [ + -73.385849, + 45.486507 + ], + [ + -73.385822, + 45.486649 + ], + [ + -73.385794, + 45.486795 + ], + [ + -73.385708, + 45.487123 + ], + [ + -73.385538, + 45.487429 + ], + [ + -73.385285, + 45.487843 + ], + [ + -73.385029, + 45.488197 + ], + [ + -73.384988, + 45.488254 + ], + [ + -73.384901, + 45.488369 + ], + [ + -73.384743, + 45.488246 + ], + [ + -73.384445, + 45.488089 + ], + [ + -73.384044, + 45.487891 + ], + [ + -73.383491, + 45.487611 + ], + [ + -73.382868, + 45.487294 + ], + [ + -73.3825, + 45.487106 + ], + [ + -73.382345, + 45.487025 + ], + [ + -73.382231, + 45.487138 + ], + [ + -73.382081, + 45.487303 + ], + [ + -73.382078, + 45.487305 + ], + [ + -73.381863, + 45.487505 + ], + [ + -73.38174, + 45.487635 + ], + [ + -73.381669, + 45.487708 + ], + [ + -73.381607, + 45.487781 + ], + [ + -73.381582, + 45.48782 + ], + [ + -73.38156, + 45.487854 + ], + [ + -73.381517, + 45.487933 + ], + [ + -73.381404, + 45.488142 + ], + [ + -73.381186, + 45.488604 + ], + [ + -73.380868, + 45.489241 + ], + [ + -73.380854, + 45.489269 + ], + [ + -73.380814, + 45.489347 + ], + [ + -73.380351, + 45.490295 + ], + [ + -73.380087, + 45.490835 + ], + [ + -73.379711, + 45.491585 + ], + [ + -73.379127, + 45.492764 + ], + [ + -73.378925, + 45.49319 + ], + [ + -73.378909, + 45.493226 + ], + [ + -73.378882, + 45.493284 + ], + [ + -73.378825, + 45.493393 + ], + [ + -73.378766, + 45.493505 + ], + [ + -73.378702, + 45.493632 + ], + [ + -73.378691, + 45.493655 + ], + [ + -73.37748, + 45.496102 + ], + [ + -73.377435, + 45.496193 + ], + [ + -73.377344, + 45.496377 + ], + [ + -73.377276, + 45.496509 + ], + [ + -73.376682, + 45.497687 + ], + [ + -73.376245, + 45.498616 + ], + [ + -73.37615, + 45.498819 + ], + [ + -73.375996, + 45.499106 + ], + [ + -73.375297, + 45.50049 + ], + [ + -73.375165, + 45.500806 + ], + [ + -73.37513, + 45.500889 + ], + [ + -73.37508, + 45.500984 + ], + [ + -73.37455, + 45.501981 + ], + [ + -73.374382, + 45.50231 + ], + [ + -73.374326, + 45.502409 + ], + [ + -73.374466, + 45.502454 + ], + [ + -73.374786, + 45.50253 + ], + [ + -73.375092, + 45.502612 + ], + [ + -73.375264, + 45.502648 + ], + [ + -73.375427, + 45.502684 + ], + [ + -73.375574, + 45.502747 + ], + [ + -73.375726, + 45.502811 + ], + [ + -73.376319, + 45.503059 + ], + [ + -73.376016, + 45.503247 + ], + [ + -73.375972, + 45.503274 + ], + [ + -73.375737, + 45.503456 + ], + [ + -73.375698, + 45.503485 + ], + [ + -73.375447, + 45.503715 + ], + [ + -73.375293, + 45.503854 + ], + [ + -73.37517, + 45.50398 + ], + [ + -73.374998, + 45.504213 + ], + [ + -73.374854, + 45.504429 + ], + [ + -73.374722, + 45.5046 + ], + [ + -73.374697, + 45.504635 + ], + [ + -73.374625, + 45.504735 + ], + [ + -73.374598, + 45.504793 + ], + [ + -73.374583, + 45.504843 + ], + [ + -73.374565, + 45.504919 + ], + [ + -73.374581, + 45.50514 + ], + [ + -73.37462, + 45.505338 + ], + [ + -73.374746, + 45.505563 + ], + [ + -73.374844, + 45.505788 + ], + [ + -73.37488, + 45.50585 + ], + [ + -73.374951, + 45.505973 + ], + [ + -73.375061, + 45.506067 + ], + [ + -73.375295, + 45.506238 + ], + [ + -73.375424, + 45.506333 + ], + [ + -73.375748, + 45.506597 + ], + [ + -73.375784, + 45.506626 + ], + [ + -73.375859, + 45.506698 + ], + [ + -73.375911, + 45.506761 + ], + [ + -73.375985, + 45.506896 + ], + [ + -73.376046, + 45.507022 + ], + [ + -73.376084, + 45.507108 + ], + [ + -73.376268, + 45.507459 + ], + [ + -73.376298, + 45.507513 + ], + [ + -73.376345, + 45.507576 + ], + [ + -73.3764, + 45.507639 + ], + [ + -73.376512, + 45.507729 + ], + [ + -73.376632, + 45.507801 + ], + [ + -73.376837, + 45.507891 + ], + [ + -73.376868, + 45.507902 + ], + [ + -73.376914, + 45.507917 + ], + [ + -73.377114, + 45.507982 + ], + [ + -73.377442, + 45.508081 + ], + [ + -73.377571, + 45.508108 + ], + [ + -73.377699, + 45.508135 + ], + [ + -73.377779, + 45.508144 + ], + [ + -73.377878, + 45.50815 + ], + [ + -73.377933, + 45.508153 + ], + [ + -73.378119, + 45.508163 + ], + [ + -73.378452, + 45.508145 + ], + [ + -73.378562, + 45.50814 + ], + [ + -73.378788, + 45.50813 + ], + [ + -73.379007, + 45.50812 + ], + [ + -73.379147, + 45.508114 + ], + [ + -73.3793, + 45.508105 + ], + [ + -73.379404, + 45.508091 + ], + [ + -73.379526, + 45.508074 + ], + [ + -73.379622, + 45.508047 + ], + [ + -73.379724, + 45.508025 + ], + [ + -73.379863, + 45.507975 + ], + [ + -73.380059, + 45.50789 + ], + [ + -73.380179, + 45.507823 + ], + [ + -73.380268, + 45.507759 + ], + [ + -73.380399, + 45.507666 + ], + [ + -73.380485, + 45.507598 + ], + [ + -73.380503, + 45.507585 + ], + [ + -73.380626, + 45.507481 + ], + [ + -73.38128, + 45.507806 + ], + [ + -73.381389, + 45.507851 + ], + [ + -73.381468, + 45.507752 + ], + [ + -73.381562, + 45.507572 + ], + [ + -73.381667, + 45.507356 + ], + [ + -73.381733, + 45.507226 + ], + [ + -73.381816, + 45.507051 + ], + [ + -73.381935, + 45.506785 + ], + [ + -73.382054, + 45.506552 + ], + [ + -73.382181, + 45.506291 + ], + [ + -73.382203, + 45.506249 + ], + [ + -73.382294, + 45.50607 + ], + [ + -73.382297, + 45.506061 + ], + [ + -73.382427, + 45.506097 + ], + [ + -73.384621, + 45.506625 + ] + ] + }, + "id": 24, + "properties": { + "id": "e045a08e-28cf-4ab2-af26-a6bc4e246510", + "data": { + "gtfs": { + "shape_id": "8_1_R" + }, + "segments": [ + { + "distanceMeters": 1051, + "travelTimeSeconds": 159 + }, + { + "distanceMeters": 483, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 392, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 331, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 629, + "travelTimeSeconds": 117 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 426, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 366, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 509, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 673, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 455, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 378, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 466, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 339, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 426, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 455, + "travelTimeSeconds": 126 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 60 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 288, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 18803, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10805.013660132514, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.53, + "travelTimeWithoutDwellTimesSeconds": 2880, + "operatingTimeWithLayoverTimeSeconds": 3168, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2880, + "operatingSpeedWithLayoverMetersPerSecond": 5.94, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.53 + }, + "mode": "bus", + "name": "Promenades St-Bruno", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "b19be6c8-c333-401a-98e4-d16876257831", + "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "d00d9138-966b-4522-be1d-8c665c71246b", + "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", + "48ea0d06-7b69-4895-b55b-2a18e6e6f906", + "21e2e89a-3df0-4ff7-aa64-17a07fbd660e", + "0b419003-a369-45de-8ce5-7da6890d7f0a", + "680dba5d-14fa-4f77-98bd-f3a49fec7b48", + "f45a38ac-0f3f-41d9-9da1-be7902cc983a", + "9cf81604-6d70-4ba8-a3fc-521104742058", + "28f2fe65-961c-4550-a722-1e7790fe94ad", + "9d0a7ab6-be66-4ca9-b863-8712d8cd028c", + "999ed130-7d99-4115-ac3c-cabba7731288", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "27c5df15-201f-4855-9f49-556fd659fd8e", + "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", + "aa7795c0-dd5c-4462-b672-459c92223af2", + "49918c5a-8414-49fd-abf9-87ae6b9f3976", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "011d1f54-164c-4564-a051-bdacad3e287d", + "c3a2368c-bf2d-4c72-9adb-41ee799004b3", + "6885c351-726d-4431-84b5-d9262699183f", + "4e3112b5-abc7-4db5-a6a8-19b4193263c2", + "a5ca0f69-bb6f-4ef0-aaaa-1498b5ff9d00", + "ca3fc9fc-e2eb-41c4-a8d2-0ad2d2109db1", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "d3991811-d92b-4ba2-9732-26a74abc49b7", + "a873c2b7-5c8e-4dd4-9140-a7e8d042d038", + "b8513e69-5eee-478d-b428-8f498c145b40", + "344c16fc-7161-4015-9999-e3e0f325dd1e", + "abd431b8-dcf2-4c7a-a458-732690905187", + "dcaa1460-3c81-4616-b65b-ed7fae894032", + "a3922a48-9f26-4845-9881-2b33d59d0127", + "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", + "686bdc34-3602-4c31-b05f-c41f9ebe2543", + "48cbd834-3690-4d56-af66-277be54f9820", + "648a2d3d-42dd-4ea9-875b-0eb410b8b1e8", + "74cb2351-ff1a-4938-8179-802bb3572f42", + "b904303e-de8b-4c71-8b48-48af0de2a9a1", + "61fd8171-4497-441f-b32a-7917186d6014", + "7de9ea25-e152-4431-8cc3-23b5e1427ab3", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "5dd96d41-c4eb-4453-9e97-752999b1688d", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "df4c6e14-8093-4f02-87d3-4b3d84466b04", + "7c34d8fb-52d2-4cf7-8954-ff69847540ac", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "7b30134c-a936-4c6b-8038-780d1041baea", + "9f7ffafe-2aab-4507-b571-cce792adfb7d", + "ff83e3ed-db76-4049-b206-f6a7eb53237f", + "897e999c-9046-44e1-af66-78d190574a64", + "d664171d-6b67-486f-b850-92d7b923ec60", + "af654275-2b6e-4152-a4be-6ba5d5eb2c23", + "8a7f5b7c-86e5-412e-a099-1a9d5ca8dce9", + "c7be2a86-2a63-43b1-993a-6ba9a80be235", + "afdaecf9-9edf-499b-a1d1-693abc0ee347", + "88be8076-6606-4cc2-82bf-848c6a92b1c2", + "284a178b-f032-40f4-9bf0-0ba74e13d985", + "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", + "01e0bcb2-ac63-4c88-b110-c273905a1d5c", + "c4c03f6a-b2dc-4fb8-87cd-df1a4417beae", + "71f7bbc9-363a-40ba-86f7-7f9ec638da55" + ], + "stops": [], + "line_id": "22e67405-9e1a-4912-aa11-919864f608e1", + "segments": [ + 0, + 43, + 62, + 67, + 75, + 83, + 90, + 100, + 103, + 109, + 114, + 120, + 124, + 127, + 130, + 135, + 138, + 145, + 151, + 156, + 160, + 163, + 170, + 173, + 179, + 186, + 190, + 195, + 200, + 203, + 208, + 210, + 212, + 214, + 217, + 222, + 226, + 231, + 255, + 262, + 276, + 278, + 286, + 303, + 309, + 313, + 319, + 327, + 333, + 342, + 347, + 353, + 368, + 373, + 387, + 404, + 410, + 417, + 423, + 428, + 432, + 448, + 465, + 497, + 509, + 522 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 24, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.385045, + 45.506579 + ], + [ + -73.384797, + 45.506518 + ], + [ + -73.383777, + 45.506274 + ], + [ + -73.382498, + 45.505967 + ], + [ + -73.382363, + 45.505931 + ], + [ + -73.382185, + 45.50589 + ], + [ + -73.382118, + 45.506021 + ], + [ + -73.381841, + 45.50662 + ], + [ + -73.381335, + 45.507721 + ], + [ + -73.380701, + 45.507418 + ], + [ + -73.380626, + 45.507481 + ], + [ + -73.380503, + 45.507585 + ], + [ + -73.380399, + 45.507666 + ], + [ + -73.380268, + 45.507759 + ], + [ + -73.380179, + 45.507823 + ], + [ + -73.380059, + 45.50789 + ], + [ + -73.379863, + 45.507975 + ], + [ + -73.379724, + 45.508025 + ], + [ + -73.379622, + 45.508047 + ], + [ + -73.379526, + 45.508074 + ], + [ + -73.379404, + 45.508091 + ], + [ + -73.3793, + 45.508105 + ], + [ + -73.379151, + 45.508114 + ], + [ + -73.379147, + 45.508114 + ], + [ + -73.378562, + 45.50814 + ], + [ + -73.378452, + 45.508145 + ], + [ + -73.378119, + 45.508163 + ], + [ + -73.377933, + 45.508153 + ], + [ + -73.377878, + 45.50815 + ], + [ + -73.377779, + 45.508144 + ], + [ + -73.377699, + 45.508135 + ], + [ + -73.377571, + 45.508108 + ], + [ + -73.377442, + 45.508081 + ], + [ + -73.377114, + 45.507982 + ], + [ + -73.376914, + 45.507917 + ], + [ + -73.376868, + 45.507902 + ], + [ + -73.376837, + 45.507891 + ], + [ + -73.376632, + 45.507801 + ], + [ + -73.376512, + 45.507729 + ], + [ + -73.3764, + 45.507639 + ], + [ + -73.376345, + 45.507576 + ], + [ + -73.376298, + 45.507513 + ], + [ + -73.376268, + 45.507459 + ], + [ + -73.376084, + 45.507108 + ], + [ + -73.376046, + 45.507022 + ], + [ + -73.375985, + 45.506896 + ], + [ + -73.375911, + 45.506761 + ], + [ + -73.375859, + 45.506698 + ], + [ + -73.375784, + 45.506626 + ], + [ + -73.375748, + 45.506597 + ], + [ + -73.375424, + 45.506333 + ], + [ + -73.375295, + 45.506238 + ], + [ + -73.375146, + 45.50613 + ], + [ + -73.375061, + 45.506067 + ], + [ + -73.374951, + 45.505973 + ], + [ + -73.374844, + 45.505788 + ], + [ + -73.374746, + 45.505563 + ], + [ + -73.37462, + 45.505338 + ], + [ + -73.374581, + 45.50514 + ], + [ + -73.374565, + 45.504919 + ], + [ + -73.374583, + 45.504843 + ], + [ + -73.374598, + 45.504793 + ], + [ + -73.374625, + 45.504735 + ], + [ + -73.374697, + 45.504635 + ], + [ + -73.374722, + 45.5046 + ], + [ + -73.374854, + 45.504429 + ], + [ + -73.374998, + 45.504213 + ], + [ + -73.37517, + 45.50398 + ], + [ + -73.375293, + 45.503854 + ], + [ + -73.375447, + 45.503715 + ], + [ + -73.375698, + 45.503485 + ], + [ + -73.375972, + 45.503274 + ], + [ + -73.376016, + 45.503247 + ], + [ + -73.376319, + 45.503059 + ], + [ + -73.376411, + 45.502996 + ], + [ + -73.375361, + 45.502572 + ], + [ + -73.375249, + 45.50254 + ], + [ + -73.375184, + 45.502508 + ], + [ + -73.375095, + 45.502468 + ], + [ + -73.375002, + 45.502427 + ], + [ + -73.374935, + 45.502409 + ], + [ + -73.37489, + 45.502387 + ], + [ + -73.374858, + 45.502373 + ], + [ + -73.374823, + 45.502351 + ], + [ + -73.374781, + 45.502315 + ], + [ + -73.37474, + 45.502247 + ], + [ + -73.374726, + 45.502157 + ], + [ + -73.374691, + 45.502013 + ], + [ + -73.375153, + 45.501079 + ], + [ + -73.375188, + 45.501009 + ], + [ + -73.375237, + 45.500914 + ], + [ + -73.375969, + 45.499457 + ], + [ + -73.376041, + 45.499312 + ], + [ + -73.376208, + 45.498993 + ], + [ + -73.376284, + 45.498857 + ], + [ + -73.376363, + 45.498701 + ], + [ + -73.376563, + 45.498311 + ], + [ + -73.376773, + 45.497866 + ], + [ + -73.377041, + 45.497337 + ], + [ + -73.377342, + 45.496707 + ], + [ + -73.377583, + 45.496221 + ], + [ + -73.378124, + 45.495128 + ], + [ + -73.378504, + 45.494364 + ], + [ + -73.37897, + 45.493424 + ], + [ + -73.379025, + 45.493316 + ], + [ + -73.380237, + 45.490872 + ], + [ + -73.380977, + 45.489378 + ], + [ + -73.381377, + 45.488567 + ], + [ + -73.381663, + 45.487992 + ], + [ + -73.381706, + 45.487906 + ], + [ + -73.381802, + 45.487771 + ], + [ + -73.381937, + 45.487627 + ], + [ + -73.382149, + 45.487431 + ], + [ + -73.382304, + 45.487304 + ], + [ + -73.38239, + 45.487214 + ], + [ + -73.382504, + 45.487272 + ], + [ + -73.382639, + 45.48734 + ], + [ + -73.383202, + 45.487615 + ], + [ + -73.383953, + 45.487976 + ], + [ + -73.384699, + 45.48831 + ], + [ + -73.384728, + 45.48832 + ], + [ + -73.384901, + 45.488369 + ], + [ + -73.384978, + 45.488267 + ], + [ + -73.384988, + 45.488254 + ], + [ + -73.385285, + 45.487843 + ], + [ + -73.385538, + 45.487429 + ], + [ + -73.385708, + 45.487123 + ], + [ + -73.385794, + 45.486795 + ], + [ + -73.385822, + 45.486649 + ], + [ + -73.385849, + 45.486507 + ], + [ + -73.38587, + 45.486444 + ], + [ + -73.385921, + 45.486295 + ], + [ + -73.386009, + 45.486084 + ], + [ + -73.386108, + 45.485909 + ], + [ + -73.386282, + 45.485639 + ], + [ + -73.386456, + 45.485401 + ], + [ + -73.386793, + 45.484951 + ], + [ + -73.387267, + 45.484313 + ], + [ + -73.387558, + 45.484142 + ], + [ + -73.387743, + 45.483913 + ], + [ + -73.388271, + 45.483202 + ], + [ + -73.388318, + 45.483139 + ], + [ + -73.388909, + 45.482326 + ], + [ + -73.38905, + 45.482092 + ], + [ + -73.389058, + 45.48208 + ], + [ + -73.389113, + 45.481997 + ], + [ + -73.389343, + 45.481827 + ], + [ + -73.389435, + 45.481795 + ], + [ + -73.389539, + 45.481786 + ], + [ + -73.389628, + 45.481786 + ], + [ + -73.389709, + 45.4818 + ], + [ + -73.390071, + 45.481927 + ], + [ + -73.390313, + 45.482057 + ], + [ + -73.390427, + 45.482115 + ], + [ + -73.390518, + 45.482162 + ], + [ + -73.393166, + 45.483526 + ], + [ + -73.393715, + 45.483828 + ], + [ + -73.393921, + 45.48395 + ], + [ + -73.394098, + 45.484066 + ], + [ + -73.394183, + 45.484121 + ], + [ + -73.394326, + 45.48422 + ], + [ + -73.394526, + 45.48436 + ], + [ + -73.394852, + 45.484608 + ], + [ + -73.395097, + 45.484806 + ], + [ + -73.395347, + 45.485022 + ], + [ + -73.395593, + 45.485252 + ], + [ + -73.396207, + 45.485878 + ], + [ + -73.396316, + 45.48599 + ], + [ + -73.396877, + 45.486562 + ], + [ + -73.397253, + 45.486945 + ], + [ + -73.397988, + 45.487693 + ], + [ + -73.398404, + 45.488122 + ], + [ + -73.398503, + 45.488224 + ], + [ + -73.400292, + 45.490061 + ], + [ + -73.400326, + 45.490096 + ], + [ + -73.400631, + 45.490403 + ], + [ + -73.40073, + 45.490503 + ], + [ + -73.40103, + 45.490791 + ], + [ + -73.401471, + 45.491169 + ], + [ + -73.401956, + 45.491543 + ], + [ + -73.402246, + 45.491739 + ], + [ + -73.402249, + 45.491741 + ], + [ + -73.402357, + 45.491809 + ], + [ + -73.40251, + 45.491908 + ], + [ + -73.402561, + 45.491939 + ], + [ + -73.403076, + 45.492241 + ], + [ + -73.403455, + 45.492444 + ], + [ + -73.40351, + 45.492471 + ], + [ + -73.403928, + 45.492669 + ], + [ + -73.405646, + 45.493445 + ], + [ + -73.406273, + 45.493728 + ], + [ + -73.406465, + 45.493815 + ], + [ + -73.407044, + 45.494076 + ], + [ + -73.407318, + 45.494207 + ], + [ + -73.407449, + 45.49427 + ], + [ + -73.408138, + 45.494635 + ], + [ + -73.408558, + 45.494867 + ], + [ + -73.408708, + 45.49495 + ], + [ + -73.408748, + 45.494972 + ], + [ + -73.408851, + 45.495036 + ], + [ + -73.4093, + 45.495297 + ], + [ + -73.410398, + 45.49591 + ], + [ + -73.410586, + 45.496009 + ], + [ + -73.410729, + 45.496085 + ], + [ + -73.411068, + 45.496248 + ], + [ + -73.41156, + 45.496461 + ], + [ + -73.411587, + 45.496473 + ], + [ + -73.412271, + 45.49673 + ], + [ + -73.412864, + 45.496955 + ], + [ + -73.413662, + 45.497245 + ], + [ + -73.414507, + 45.497553 + ], + [ + -73.415733, + 45.497998 + ], + [ + -73.416461, + 45.498262 + ], + [ + -73.416635, + 45.498326 + ], + [ + -73.416723, + 45.498362 + ], + [ + -73.417312, + 45.498592 + ], + [ + -73.417435, + 45.498648 + ], + [ + -73.417607, + 45.498727 + ], + [ + -73.418042, + 45.498952 + ], + [ + -73.418335, + 45.499128 + ], + [ + -73.418479, + 45.499214 + ], + [ + -73.418764, + 45.499407 + ], + [ + -73.419209, + 45.499737 + ], + [ + -73.419305, + 45.499808 + ], + [ + -73.419729, + 45.500092 + ], + [ + -73.419878, + 45.500182 + ], + [ + -73.420342, + 45.50043 + ], + [ + -73.420676, + 45.50059 + ], + [ + -73.420784, + 45.500641 + ], + [ + -73.420878, + 45.500678 + ], + [ + -73.421089, + 45.500763 + ], + [ + -73.421557, + 45.500934 + ], + [ + -73.421727, + 45.500998 + ], + [ + -73.422541, + 45.501286 + ], + [ + -73.423018, + 45.501457 + ], + [ + -73.423261, + 45.501544 + ], + [ + -73.423423, + 45.501602 + ], + [ + -73.424204, + 45.50188 + ], + [ + -73.425912, + 45.502488 + ], + [ + -73.426184, + 45.502584 + ], + [ + -73.427788, + 45.503152 + ], + [ + -73.428083, + 45.503265 + ], + [ + -73.428273, + 45.50335 + ], + [ + -73.428512, + 45.503472 + ], + [ + -73.428643, + 45.503549 + ], + [ + -73.428884, + 45.503715 + ], + [ + -73.428992, + 45.503801 + ], + [ + -73.429012, + 45.50382 + ], + [ + -73.429175, + 45.503967 + ], + [ + -73.429253, + 45.504057 + ], + [ + -73.429303, + 45.504111 + ], + [ + -73.429332, + 45.504143 + ], + [ + -73.429383, + 45.504202 + ], + [ + -73.429476, + 45.504345 + ], + [ + -73.429494, + 45.504373 + ], + [ + -73.429599, + 45.504566 + ], + [ + -73.429648, + 45.504679 + ], + [ + -73.429656, + 45.504708 + ], + [ + -73.429758, + 45.505057 + ], + [ + -73.429931, + 45.505834 + ], + [ + -73.430026, + 45.506263 + ], + [ + -73.430066, + 45.506425 + ], + [ + -73.430099, + 45.506555 + ], + [ + -73.430103, + 45.506573 + ], + [ + -73.4302, + 45.506807 + ], + [ + -73.430341, + 45.507086 + ], + [ + -73.430485, + 45.507257 + ], + [ + -73.430506, + 45.507276 + ], + [ + -73.430509, + 45.507278 + ], + [ + -73.430608, + 45.507365 + ], + [ + -73.430672, + 45.507415 + ], + [ + -73.431358, + 45.507856 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431666, + 45.508054 + ], + [ + -73.432482, + 45.508559 + ], + [ + -73.433021, + 45.508883 + ], + [ + -73.433395, + 45.509082 + ], + [ + -73.433453, + 45.509113 + ], + [ + -73.433482, + 45.509127 + ], + [ + -73.43374, + 45.509257 + ], + [ + -73.434128, + 45.509428 + ], + [ + -73.43476, + 45.509703 + ], + [ + -73.435345, + 45.509952 + ], + [ + -73.435478, + 45.510009 + ], + [ + -73.435758, + 45.510131 + ], + [ + -73.435893, + 45.510189 + ], + [ + -73.43661, + 45.510502 + ], + [ + -73.437183, + 45.510752 + ], + [ + -73.437938, + 45.511081 + ], + [ + -73.438224, + 45.511212 + ], + [ + -73.438474, + 45.511325 + ], + [ + -73.439008, + 45.511568 + ], + [ + -73.439428, + 45.511747 + ], + [ + -73.439738, + 45.511879 + ], + [ + -73.43983, + 45.511919 + ], + [ + -73.439896, + 45.511951 + ], + [ + -73.440237, + 45.512095 + ], + [ + -73.441448, + 45.512613 + ], + [ + -73.441811, + 45.512775 + ], + [ + -73.442874, + 45.513204 + ], + [ + -73.443061, + 45.51328 + ], + [ + -73.445634, + 45.514379 + ], + [ + -73.445657, + 45.514389 + ], + [ + -73.446646, + 45.514811 + ], + [ + -73.448389, + 45.515528 + ], + [ + -73.448481, + 45.515566 + ], + [ + -73.44854, + 45.51559 + ], + [ + -73.449494, + 45.515978 + ], + [ + -73.449844, + 45.516127 + ], + [ + -73.450296, + 45.51632 + ], + [ + -73.45136, + 45.516756 + ], + [ + -73.451373, + 45.516761 + ], + [ + -73.451903, + 45.516982 + ], + [ + -73.452053, + 45.517054 + ], + [ + -73.45224, + 45.517153 + ], + [ + -73.452412, + 45.517228 + ], + [ + -73.452518, + 45.517275 + ], + [ + -73.453808, + 45.5178 + ], + [ + -73.453977, + 45.517869 + ], + [ + -73.454088, + 45.517914 + ], + [ + -73.454764, + 45.518193 + ], + [ + -73.455195, + 45.518372 + ], + [ + -73.455625, + 45.518549 + ], + [ + -73.45631, + 45.518837 + ], + [ + -73.457036, + 45.519133 + ], + [ + -73.457149, + 45.51918 + ], + [ + -73.457268, + 45.519234 + ], + [ + -73.458416, + 45.519718 + ], + [ + -73.458582, + 45.519788 + ], + [ + -73.46019, + 45.520461 + ], + [ + -73.460326, + 45.520518 + ], + [ + -73.460513, + 45.520597 + ], + [ + -73.462498, + 45.52143 + ], + [ + -73.462791, + 45.521553 + ], + [ + -73.463771, + 45.521954 + ], + [ + -73.463823, + 45.521976 + ], + [ + -73.464215, + 45.522138 + ], + [ + -73.464352, + 45.522188 + ], + [ + -73.464459, + 45.522246 + ], + [ + -73.464607, + 45.522332 + ], + [ + -73.465155, + 45.522551 + ], + [ + -73.465496, + 45.522687 + ], + [ + -73.466002, + 45.522899 + ], + [ + -73.466103, + 45.522924 + ], + [ + -73.466276, + 45.522967 + ], + [ + -73.467237, + 45.523363 + ], + [ + -73.467893, + 45.52364 + ], + [ + -73.468048, + 45.523705 + ], + [ + -73.468866, + 45.524038 + ], + [ + -73.469522, + 45.524322 + ], + [ + -73.469644, + 45.524372 + ], + [ + -73.469721, + 45.524403 + ], + [ + -73.470239, + 45.524623 + ], + [ + -73.470555, + 45.524749 + ], + [ + -73.471094, + 45.524979 + ], + [ + -73.471997, + 45.525357 + ], + [ + -73.47246, + 45.525553 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.474655, + 45.526465 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.475467, + 45.526811 + ], + [ + -73.475894, + 45.526982 + ], + [ + -73.476153, + 45.52709 + ], + [ + -73.476219, + 45.527117 + ], + [ + -73.476969, + 45.527428 + ], + [ + -73.477725, + 45.527748 + ], + [ + -73.478331, + 45.528004 + ], + [ + -73.478598, + 45.528117 + ], + [ + -73.479454, + 45.528472 + ], + [ + -73.480164, + 45.528774 + ], + [ + -73.480753, + 45.529011 + ], + [ + -73.48089, + 45.529066 + ], + [ + -73.481413, + 45.529294 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.484961, + 45.530774 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.488424, + 45.532213 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.490635, + 45.533124 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.492955, + 45.534081 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.494094, + 45.534551 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.495628, + 45.535241 + ], + [ + -73.495883, + 45.535371 + ], + [ + -73.496551, + 45.535683 + ], + [ + -73.496645, + 45.535727 + ], + [ + -73.49677, + 45.535781 + ], + [ + -73.49726, + 45.535988 + ], + [ + -73.498459, + 45.536487 + ], + [ + -73.498936, + 45.536687 + ], + [ + -73.499435, + 45.536897 + ], + [ + -73.501142, + 45.537612 + ], + [ + -73.502066, + 45.537998 + ], + [ + -73.503263, + 45.538498 + ], + [ + -73.503424, + 45.538566 + ], + [ + -73.503808, + 45.538728 + ], + [ + -73.503912, + 45.538786 + ], + [ + -73.504095, + 45.538926 + ], + [ + -73.504553, + 45.539317 + ], + [ + -73.504747, + 45.539452 + ], + [ + -73.50477, + 45.539464 + ], + [ + -73.504898, + 45.539533 + ], + [ + -73.506469, + 45.540185 + ], + [ + -73.507029, + 45.540406 + ], + [ + -73.507958, + 45.540788 + ], + [ + -73.508096, + 45.540847 + ], + [ + -73.508112, + 45.54082 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.50824, + 45.540633 + ], + [ + -73.50834, + 45.540487 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.509502, + 45.538865 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.511595, + 45.537128 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.513272, + 45.536035 + ], + [ + -73.513413, + 45.535879 + ], + [ + -73.513707, + 45.535583 + ], + [ + -73.513941, + 45.535349 + ], + [ + -73.513977, + 45.535314 + ], + [ + -73.514031, + 45.535263 + ], + [ + -73.514312, + 45.534967 + ], + [ + -73.514735, + 45.53454 + ], + [ + -73.514842, + 45.53442 + ], + [ + -73.514898, + 45.534357 + ], + [ + -73.515145, + 45.534084 + ], + [ + -73.515317, + 45.533897 + ], + [ + -73.515372, + 45.533842 + ], + [ + -73.515504, + 45.533699 + ], + [ + -73.515513, + 45.533689 + ], + [ + -73.515888, + 45.533287 + ], + [ + -73.515986, + 45.533193 + ], + [ + -73.516619, + 45.532644 + ], + [ + -73.516729, + 45.532549 + ], + [ + -73.517579, + 45.531802 + ], + [ + -73.517931, + 45.531459 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518212, + 45.531168 + ], + [ + -73.51845, + 45.53088 + ], + [ + -73.518608, + 45.530695 + ], + [ + -73.518713, + 45.530574 + ], + [ + -73.518834, + 45.53043 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519398, + 45.526004 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 25, + "properties": { + "id": "f139bddd-2bcc-4842-aa14-1e419f23feb4", + "data": { + "gtfs": { + "shape_id": "8_1_A" + }, + "segments": [ + { + "distanceMeters": 4444, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 492, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 421, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 479, + "travelTimeSeconds": 85 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 88, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 635, + "travelTimeSeconds": 141 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 119 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 252, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 18493, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11311.636007063355, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.34, + "travelTimeWithoutDwellTimesSeconds": 2520, + "operatingTimeWithLayoverTimeSeconds": 2772, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2520, + "operatingSpeedWithLayoverMetersPerSecond": 6.67, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.34 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "2ccb6d20-bc23-4c70-b31c-28503c25783e", + "6d96a7b5-b2cd-4cb0-a3d1-b914f081bde3", + "9f7ffafe-2aab-4507-b571-cce792adfb7d", + "819870cc-ffb6-4a2a-add6-5b056cc3e4c0", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", + "7c34d8fb-52d2-4cf7-8954-ff69847540ac", + "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", + "76b4c3d5-f580-480d-bfec-c2639dd60d13", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", + "e654777c-6941-47f5-a273-d73ab074f10e", + "bb148567-d18f-49e1-a388-f782610c5390", + "e8e5c7df-2edf-4749-98c2-97962c7eff9c", + "a0b2e96c-f14a-4143-9ef3-8bb0e0e8a984", + "1b175835-d1cc-4713-943f-5472ffaa8fea", + "b4fcda7a-779e-4762-b2e5-038988d405be", + "80008949-5a0f-4c5e-b778-592c2ee8487f", + "53ead0f5-ebe4-4285-9d12-aa867ff0e782", + "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", + "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", + "7b1c691c-8a55-45c2-8401-9d619a0efb76", + "c4825963-416e-404b-a744-6ffe763e2d89", + "344c16fc-7161-4015-9999-e3e0f325dd1e", + "5636d204-312b-4d1e-bac7-614621da4bb5", + "d3991811-d92b-4ba2-9732-26a74abc49b7", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "5981cea7-b196-4e72-820c-362fb9c4e212", + "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", + "130245ae-209b-4e27-b903-ff57832b92eb", + "0d6b35f8-1b6c-4403-a7a5-53247aec7649", + "c3a2368c-bf2d-4c72-9adb-41ee799004b3", + "011d1f54-164c-4564-a051-bdacad3e287d", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "49918c5a-8414-49fd-abf9-87ae6b9f3976", + "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", + "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", + "65175945-c54c-4732-85a9-890393a0975c", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "999ed130-7d99-4115-ac3c-cabba7731288", + "d15f81ba-7519-47f7-aa07-0026f1b03e42", + "28f2fe65-961c-4550-a722-1e7790fe94ad", + "9cf81604-6d70-4ba8-a3fc-521104742058", + "4d48f36b-2274-4392-afac-b2c2c64b98f0", + "5f58acb6-be68-437f-bde7-a77d03125af9", + "4e61612c-2f48-47d6-ad42-7c0737853911", + "e46ba2d2-9f30-419f-acae-c73c3ef665c5", + "48ea0d06-7b69-4895-b55b-2a18e6e6f906", + "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", + "d00d9138-966b-4522-be1d-8c665c71246b", + "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "649e6394-9376-40eb-bc0e-4a376a0044aa", + "4fb4515b-e129-4622-b855-89143c2fd488", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "22e67405-9e1a-4912-aa11-919864f608e1", + "segments": [ + 0, + 144, + 158, + 166, + 171, + 174, + 180, + 187, + 190, + 196, + 202, + 209, + 212, + 227, + 235, + 238, + 253, + 259, + 278, + 282, + 290, + 292, + 299, + 302, + 304, + 310, + 318, + 324, + 329, + 334, + 340, + 346, + 350, + 356, + 360, + 364, + 368, + 374, + 381, + 384, + 388, + 393, + 395, + 401, + 406, + 410, + 417, + 426, + 432, + 440, + 448, + 458, + 461, + 464, + 481 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 25, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.385045, + 45.506579 + ], + [ + -73.384797, + 45.506518 + ], + [ + -73.383777, + 45.506274 + ], + [ + -73.382498, + 45.505967 + ], + [ + -73.382363, + 45.505931 + ], + [ + -73.382185, + 45.50589 + ], + [ + -73.382118, + 45.506021 + ], + [ + -73.381841, + 45.50662 + ], + [ + -73.38158, + 45.507189 + ], + [ + -73.381335, + 45.507721 + ], + [ + -73.380701, + 45.507418 + ], + [ + -73.380626, + 45.507481 + ], + [ + -73.380503, + 45.507585 + ], + [ + -73.380399, + 45.507666 + ], + [ + -73.380268, + 45.507759 + ], + [ + -73.380179, + 45.507823 + ], + [ + -73.380059, + 45.50789 + ], + [ + -73.379863, + 45.507975 + ], + [ + -73.379724, + 45.508025 + ], + [ + -73.379622, + 45.508047 + ], + [ + -73.379526, + 45.508074 + ], + [ + -73.379404, + 45.508091 + ], + [ + -73.3793, + 45.508105 + ], + [ + -73.379201, + 45.508111 + ], + [ + -73.379151, + 45.508114 + ], + [ + -73.379147, + 45.508114 + ], + [ + -73.378562, + 45.50814 + ], + [ + -73.378452, + 45.508145 + ], + [ + -73.378119, + 45.508163 + ], + [ + -73.377933, + 45.508153 + ], + [ + -73.377878, + 45.50815 + ], + [ + -73.377779, + 45.508144 + ], + [ + -73.377699, + 45.508135 + ], + [ + -73.377571, + 45.508108 + ], + [ + -73.377442, + 45.508081 + ], + [ + -73.377114, + 45.507982 + ], + [ + -73.376914, + 45.507917 + ], + [ + -73.376868, + 45.507902 + ], + [ + -73.376837, + 45.507891 + ], + [ + -73.376632, + 45.507801 + ], + [ + -73.376512, + 45.507729 + ], + [ + -73.3764, + 45.507639 + ], + [ + -73.376345, + 45.507576 + ], + [ + -73.376298, + 45.507513 + ], + [ + -73.376268, + 45.507459 + ], + [ + -73.376084, + 45.507108 + ], + [ + -73.376046, + 45.507022 + ], + [ + -73.375985, + 45.506896 + ], + [ + -73.375911, + 45.506761 + ], + [ + -73.375859, + 45.506698 + ], + [ + -73.375784, + 45.506626 + ], + [ + -73.375748, + 45.506597 + ], + [ + -73.375424, + 45.506333 + ], + [ + -73.375295, + 45.506238 + ], + [ + -73.375228, + 45.506189 + ], + [ + -73.375146, + 45.50613 + ], + [ + -73.375061, + 45.506067 + ], + [ + -73.374951, + 45.505973 + ], + [ + -73.374844, + 45.505788 + ], + [ + -73.374746, + 45.505563 + ], + [ + -73.37462, + 45.505338 + ], + [ + -73.374581, + 45.50514 + ], + [ + -73.374565, + 45.504919 + ], + [ + -73.374583, + 45.504843 + ], + [ + -73.374598, + 45.504793 + ], + [ + -73.374625, + 45.504735 + ], + [ + -73.374697, + 45.504635 + ], + [ + -73.374722, + 45.5046 + ], + [ + -73.374854, + 45.504429 + ], + [ + -73.374998, + 45.504213 + ], + [ + -73.37517, + 45.50398 + ], + [ + -73.375293, + 45.503854 + ], + [ + -73.375447, + 45.503715 + ], + [ + -73.375698, + 45.503485 + ], + [ + -73.375972, + 45.503274 + ], + [ + -73.376016, + 45.503247 + ], + [ + -73.376319, + 45.503059 + ], + [ + -73.376411, + 45.502996 + ], + [ + -73.375361, + 45.502572 + ], + [ + -73.375249, + 45.50254 + ], + [ + -73.375184, + 45.502508 + ], + [ + -73.375095, + 45.502468 + ], + [ + -73.375002, + 45.502427 + ], + [ + -73.374935, + 45.502409 + ], + [ + -73.37489, + 45.502387 + ], + [ + -73.374858, + 45.502373 + ], + [ + -73.374823, + 45.502351 + ], + [ + -73.374781, + 45.502315 + ], + [ + -73.37474, + 45.502247 + ], + [ + -73.374726, + 45.502157 + ], + [ + -73.374691, + 45.502013 + ], + [ + -73.375145, + 45.501095 + ], + [ + -73.375153, + 45.501079 + ], + [ + -73.375188, + 45.501009 + ], + [ + -73.375237, + 45.500914 + ], + [ + -73.375969, + 45.499457 + ], + [ + -73.376041, + 45.499312 + ], + [ + -73.376208, + 45.498993 + ], + [ + -73.376284, + 45.498857 + ], + [ + -73.376363, + 45.498701 + ], + [ + -73.376515, + 45.498405 + ], + [ + -73.376563, + 45.498311 + ], + [ + -73.376773, + 45.497866 + ], + [ + -73.377041, + 45.497337 + ], + [ + -73.377342, + 45.496707 + ], + [ + -73.377537, + 45.496314 + ], + [ + -73.377583, + 45.496221 + ], + [ + -73.378124, + 45.495128 + ], + [ + -73.378504, + 45.494364 + ], + [ + -73.378909, + 45.493548 + ], + [ + -73.37897, + 45.493424 + ], + [ + -73.379025, + 45.493316 + ], + [ + -73.380237, + 45.490872 + ], + [ + -73.380908, + 45.489517 + ], + [ + -73.380977, + 45.489378 + ], + [ + -73.381377, + 45.488567 + ], + [ + -73.381663, + 45.487992 + ], + [ + -73.381706, + 45.487906 + ], + [ + -73.381802, + 45.487771 + ], + [ + -73.381937, + 45.487627 + ], + [ + -73.382149, + 45.487431 + ], + [ + -73.38218, + 45.487405 + ], + [ + -73.382304, + 45.487304 + ], + [ + -73.38239, + 45.487214 + ], + [ + -73.382504, + 45.487272 + ], + [ + -73.382639, + 45.48734 + ], + [ + -73.383202, + 45.487615 + ], + [ + -73.383953, + 45.487976 + ], + [ + -73.384699, + 45.48831 + ], + [ + -73.384728, + 45.48832 + ], + [ + -73.384901, + 45.488369 + ], + [ + -73.384978, + 45.488267 + ], + [ + -73.384988, + 45.488254 + ], + [ + -73.385285, + 45.487843 + ], + [ + -73.385538, + 45.487429 + ], + [ + -73.385708, + 45.487123 + ], + [ + -73.385794, + 45.486795 + ], + [ + -73.385822, + 45.486649 + ], + [ + -73.385849, + 45.486507 + ], + [ + -73.38587, + 45.486444 + ], + [ + -73.385921, + 45.486295 + ], + [ + -73.386009, + 45.486084 + ], + [ + -73.386108, + 45.485909 + ], + [ + -73.386282, + 45.485639 + ], + [ + -73.386456, + 45.485401 + ], + [ + -73.386793, + 45.484951 + ], + [ + -73.387267, + 45.484313 + ], + [ + -73.387558, + 45.484142 + ], + [ + -73.387721, + 45.483941 + ], + [ + -73.387743, + 45.483913 + ], + [ + -73.388271, + 45.483202 + ], + [ + -73.388318, + 45.483139 + ], + [ + -73.388909, + 45.482326 + ], + [ + -73.38905, + 45.482092 + ], + [ + -73.389058, + 45.48208 + ], + [ + -73.389113, + 45.481997 + ], + [ + -73.389343, + 45.481827 + ], + [ + -73.389435, + 45.481795 + ], + [ + -73.389539, + 45.481786 + ], + [ + -73.389628, + 45.481786 + ], + [ + -73.389709, + 45.4818 + ], + [ + -73.390071, + 45.481927 + ], + [ + -73.390313, + 45.482057 + ], + [ + -73.390427, + 45.482115 + ], + [ + -73.390518, + 45.482162 + ], + [ + -73.393166, + 45.483526 + ], + [ + -73.393715, + 45.483828 + ], + [ + -73.393921, + 45.48395 + ], + [ + -73.394098, + 45.484066 + ], + [ + -73.394183, + 45.484121 + ], + [ + -73.394326, + 45.48422 + ], + [ + -73.394526, + 45.48436 + ], + [ + -73.394852, + 45.484608 + ], + [ + -73.395097, + 45.484806 + ], + [ + -73.395347, + 45.485022 + ], + [ + -73.395593, + 45.485252 + ], + [ + -73.396207, + 45.485878 + ], + [ + -73.396316, + 45.48599 + ], + [ + -73.396877, + 45.486562 + ], + [ + -73.397253, + 45.486945 + ], + [ + -73.397988, + 45.487693 + ], + [ + -73.398404, + 45.488122 + ], + [ + -73.398503, + 45.488224 + ], + [ + -73.400292, + 45.490061 + ], + [ + -73.400326, + 45.490096 + ], + [ + -73.400631, + 45.490403 + ], + [ + -73.40073, + 45.490503 + ], + [ + -73.40103, + 45.490791 + ], + [ + -73.401471, + 45.491169 + ], + [ + -73.401956, + 45.491543 + ], + [ + -73.402246, + 45.491739 + ], + [ + -73.402249, + 45.491741 + ], + [ + -73.402357, + 45.491809 + ], + [ + -73.40251, + 45.491908 + ], + [ + -73.402561, + 45.491939 + ], + [ + -73.403076, + 45.492241 + ], + [ + -73.403455, + 45.492444 + ], + [ + -73.40351, + 45.492471 + ], + [ + -73.403928, + 45.492669 + ], + [ + -73.405646, + 45.493445 + ], + [ + -73.406273, + 45.493728 + ], + [ + -73.406465, + 45.493815 + ], + [ + -73.407044, + 45.494076 + ], + [ + -73.407318, + 45.494207 + ], + [ + -73.407449, + 45.49427 + ], + [ + -73.408138, + 45.494635 + ], + [ + -73.408558, + 45.494867 + ], + [ + -73.408708, + 45.49495 + ], + [ + -73.408748, + 45.494972 + ], + [ + -73.408851, + 45.495036 + ], + [ + -73.4093, + 45.495297 + ], + [ + -73.410398, + 45.49591 + ], + [ + -73.410586, + 45.496009 + ], + [ + -73.410729, + 45.496085 + ], + [ + -73.411068, + 45.496248 + ], + [ + -73.41156, + 45.496461 + ], + [ + -73.411587, + 45.496473 + ], + [ + -73.412271, + 45.49673 + ], + [ + -73.412864, + 45.496955 + ], + [ + -73.413662, + 45.497245 + ], + [ + -73.414507, + 45.497553 + ], + [ + -73.415733, + 45.497998 + ], + [ + -73.416461, + 45.498262 + ], + [ + -73.416635, + 45.498326 + ], + [ + -73.416723, + 45.498362 + ], + [ + -73.417312, + 45.498592 + ], + [ + -73.417435, + 45.498648 + ], + [ + -73.417607, + 45.498727 + ], + [ + -73.418042, + 45.498952 + ], + [ + -73.418335, + 45.499128 + ], + [ + -73.418479, + 45.499214 + ], + [ + -73.418764, + 45.499407 + ], + [ + -73.419209, + 45.499737 + ], + [ + -73.419305, + 45.499808 + ], + [ + -73.419729, + 45.500092 + ], + [ + -73.419878, + 45.500182 + ], + [ + -73.420342, + 45.50043 + ], + [ + -73.420676, + 45.50059 + ], + [ + -73.420784, + 45.500641 + ], + [ + -73.420878, + 45.500678 + ], + [ + -73.421089, + 45.500763 + ], + [ + -73.421557, + 45.500934 + ], + [ + -73.421727, + 45.500998 + ], + [ + -73.422541, + 45.501286 + ], + [ + -73.423018, + 45.501457 + ], + [ + -73.423261, + 45.501544 + ], + [ + -73.423423, + 45.501602 + ], + [ + -73.424204, + 45.50188 + ], + [ + -73.425912, + 45.502488 + ], + [ + -73.426184, + 45.502584 + ], + [ + -73.427788, + 45.503152 + ], + [ + -73.428083, + 45.503265 + ], + [ + -73.428273, + 45.50335 + ], + [ + -73.428512, + 45.503472 + ], + [ + -73.428643, + 45.503549 + ], + [ + -73.428884, + 45.503715 + ], + [ + -73.428992, + 45.503801 + ], + [ + -73.429012, + 45.50382 + ], + [ + -73.429175, + 45.503967 + ], + [ + -73.429253, + 45.504057 + ], + [ + -73.429303, + 45.504111 + ], + [ + -73.429332, + 45.504143 + ], + [ + -73.429383, + 45.504202 + ], + [ + -73.429476, + 45.504345 + ], + [ + -73.429494, + 45.504373 + ], + [ + -73.429599, + 45.504566 + ], + [ + -73.429648, + 45.504679 + ], + [ + -73.429656, + 45.504708 + ], + [ + -73.429758, + 45.505057 + ], + [ + -73.429931, + 45.505834 + ], + [ + -73.430026, + 45.506263 + ], + [ + -73.430066, + 45.506425 + ], + [ + -73.430099, + 45.506555 + ], + [ + -73.430103, + 45.506573 + ], + [ + -73.4302, + 45.506807 + ], + [ + -73.430341, + 45.507086 + ], + [ + -73.430485, + 45.507257 + ], + [ + -73.430506, + 45.507276 + ], + [ + -73.430509, + 45.507278 + ], + [ + -73.430608, + 45.507365 + ], + [ + -73.430672, + 45.507415 + ], + [ + -73.431358, + 45.507856 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431666, + 45.508054 + ], + [ + -73.432482, + 45.508559 + ], + [ + -73.433021, + 45.508883 + ], + [ + -73.433395, + 45.509082 + ], + [ + -73.433453, + 45.509113 + ], + [ + -73.433482, + 45.509127 + ], + [ + -73.43374, + 45.509257 + ], + [ + -73.434128, + 45.509428 + ], + [ + -73.43476, + 45.509703 + ], + [ + -73.435345, + 45.509952 + ], + [ + -73.435478, + 45.510009 + ], + [ + -73.435758, + 45.510131 + ], + [ + -73.435893, + 45.510189 + ], + [ + -73.43661, + 45.510502 + ], + [ + -73.437183, + 45.510752 + ], + [ + -73.437938, + 45.511081 + ], + [ + -73.438224, + 45.511212 + ], + [ + -73.438474, + 45.511325 + ], + [ + -73.439008, + 45.511568 + ], + [ + -73.439428, + 45.511747 + ], + [ + -73.439738, + 45.511879 + ], + [ + -73.43983, + 45.511919 + ], + [ + -73.439896, + 45.511951 + ], + [ + -73.440237, + 45.512095 + ], + [ + -73.441448, + 45.512613 + ], + [ + -73.441811, + 45.512775 + ], + [ + -73.442874, + 45.513204 + ], + [ + -73.443061, + 45.51328 + ], + [ + -73.445634, + 45.514379 + ], + [ + -73.445657, + 45.514389 + ], + [ + -73.446646, + 45.514811 + ], + [ + -73.448389, + 45.515528 + ], + [ + -73.448481, + 45.515566 + ], + [ + -73.44854, + 45.51559 + ], + [ + -73.449494, + 45.515978 + ], + [ + -73.449844, + 45.516127 + ], + [ + -73.450296, + 45.51632 + ], + [ + -73.45136, + 45.516756 + ], + [ + -73.451373, + 45.516761 + ], + [ + -73.451903, + 45.516982 + ], + [ + -73.452053, + 45.517054 + ], + [ + -73.45224, + 45.517153 + ], + [ + -73.452412, + 45.517228 + ], + [ + -73.452518, + 45.517275 + ], + [ + -73.453808, + 45.5178 + ], + [ + -73.453977, + 45.517869 + ], + [ + -73.454088, + 45.517914 + ], + [ + -73.454764, + 45.518193 + ], + [ + -73.455195, + 45.518372 + ], + [ + -73.455625, + 45.518549 + ], + [ + -73.45631, + 45.518837 + ], + [ + -73.457036, + 45.519133 + ], + [ + -73.457149, + 45.51918 + ], + [ + -73.457268, + 45.519234 + ], + [ + -73.458416, + 45.519718 + ], + [ + -73.458582, + 45.519788 + ], + [ + -73.46019, + 45.520461 + ], + [ + -73.460326, + 45.520518 + ], + [ + -73.460513, + 45.520597 + ], + [ + -73.462498, + 45.52143 + ], + [ + -73.462791, + 45.521553 + ], + [ + -73.463771, + 45.521954 + ], + [ + -73.463823, + 45.521976 + ], + [ + -73.464215, + 45.522138 + ], + [ + -73.464352, + 45.522188 + ], + [ + -73.464459, + 45.522246 + ], + [ + -73.464607, + 45.522332 + ], + [ + -73.465155, + 45.522551 + ], + [ + -73.465496, + 45.522687 + ], + [ + -73.466002, + 45.522899 + ], + [ + -73.466103, + 45.522924 + ], + [ + -73.466276, + 45.522967 + ], + [ + -73.467237, + 45.523363 + ], + [ + -73.467893, + 45.52364 + ], + [ + -73.468048, + 45.523705 + ], + [ + -73.468866, + 45.524038 + ], + [ + -73.469522, + 45.524322 + ], + [ + -73.469644, + 45.524372 + ], + [ + -73.469721, + 45.524403 + ], + [ + -73.470239, + 45.524623 + ], + [ + -73.470555, + 45.524749 + ], + [ + -73.471094, + 45.524979 + ], + [ + -73.471997, + 45.525357 + ], + [ + -73.47246, + 45.525553 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.474655, + 45.526465 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.475467, + 45.526811 + ], + [ + -73.475894, + 45.526982 + ], + [ + -73.476153, + 45.52709 + ], + [ + -73.476219, + 45.527117 + ], + [ + -73.476969, + 45.527428 + ], + [ + -73.477725, + 45.527748 + ], + [ + -73.478331, + 45.528004 + ], + [ + -73.478598, + 45.528117 + ], + [ + -73.479454, + 45.528472 + ], + [ + -73.480164, + 45.528774 + ], + [ + -73.480753, + 45.529011 + ], + [ + -73.48089, + 45.529066 + ], + [ + -73.481413, + 45.529294 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.484961, + 45.530774 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.488424, + 45.532213 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.490635, + 45.533124 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.492955, + 45.534081 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.494094, + 45.534551 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.495628, + 45.535241 + ], + [ + -73.495883, + 45.535371 + ], + [ + -73.496551, + 45.535683 + ], + [ + -73.496645, + 45.535727 + ], + [ + -73.49677, + 45.535781 + ], + [ + -73.49726, + 45.535988 + ], + [ + -73.498459, + 45.536487 + ], + [ + -73.498936, + 45.536687 + ], + [ + -73.499435, + 45.536897 + ], + [ + -73.501142, + 45.537612 + ], + [ + -73.502066, + 45.537998 + ], + [ + -73.503263, + 45.538498 + ], + [ + -73.503424, + 45.538566 + ], + [ + -73.503808, + 45.538728 + ], + [ + -73.503912, + 45.538786 + ], + [ + -73.504095, + 45.538926 + ], + [ + -73.504553, + 45.539317 + ], + [ + -73.504747, + 45.539452 + ], + [ + -73.50477, + 45.539464 + ], + [ + -73.504898, + 45.539533 + ], + [ + -73.506469, + 45.540185 + ], + [ + -73.507029, + 45.540406 + ], + [ + -73.507958, + 45.540788 + ], + [ + -73.508096, + 45.540847 + ], + [ + -73.508112, + 45.54082 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.50824, + 45.540633 + ], + [ + -73.50834, + 45.540487 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.509502, + 45.538865 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.511595, + 45.537128 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.513272, + 45.536035 + ], + [ + -73.513413, + 45.535879 + ], + [ + -73.513707, + 45.535583 + ], + [ + -73.513941, + 45.535349 + ], + [ + -73.513977, + 45.535314 + ], + [ + -73.514031, + 45.535263 + ], + [ + -73.514312, + 45.534967 + ], + [ + -73.514735, + 45.53454 + ], + [ + -73.514842, + 45.53442 + ], + [ + -73.514898, + 45.534357 + ], + [ + -73.515145, + 45.534084 + ], + [ + -73.515317, + 45.533897 + ], + [ + -73.515372, + 45.533842 + ], + [ + -73.515504, + 45.533699 + ], + [ + -73.515513, + 45.533689 + ], + [ + -73.515888, + 45.533287 + ], + [ + -73.515986, + 45.533193 + ], + [ + -73.516619, + 45.532644 + ], + [ + -73.516729, + 45.532549 + ], + [ + -73.517579, + 45.531802 + ], + [ + -73.517931, + 45.531459 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518212, + 45.531168 + ], + [ + -73.51845, + 45.53088 + ], + [ + -73.518608, + 45.530695 + ], + [ + -73.518713, + 45.530574 + ], + [ + -73.518834, + 45.53043 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519398, + 45.526004 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 26, + "properties": { + "id": "d8bb0d90-2abb-43c3-842c-5557f3442683", + "data": { + "gtfs": { + "shape_id": "8_1_A" + }, + "segments": [ + { + "distanceMeters": 388, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 423, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 708, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 475, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 808, + "travelTimeSeconds": 93 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 492, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 421, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 479, + "travelTimeSeconds": 85 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 88, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 635, + "travelTimeSeconds": 141 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 119 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 300, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 18493, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10805.013660132512, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.16, + "travelTimeWithoutDwellTimesSeconds": 3000, + "operatingTimeWithLayoverTimeSeconds": 3300, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3000, + "operatingSpeedWithLayoverMetersPerSecond": 5.6, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.16 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "71f7bbc9-363a-40ba-86f7-7f9ec638da55", + "f20e2154-4487-4d25-8e73-57adbf7414bd", + "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "284a178b-f032-40f4-9bf0-0ba74e13d985", + "324bc409-bf97-4fef-8e16-0521305ba7b1", + "afdaecf9-9edf-499b-a1d1-693abc0ee347", + "c7be2a86-2a63-43b1-993a-6ba9a80be235", + "8a7f5b7c-86e5-412e-a099-1a9d5ca8dce9", + "88a428f4-cdde-43a8-a2c3-c4652eae6722", + "2ccb6d20-bc23-4c70-b31c-28503c25783e", + "6d96a7b5-b2cd-4cb0-a3d1-b914f081bde3", + "9f7ffafe-2aab-4507-b571-cce792adfb7d", + "819870cc-ffb6-4a2a-add6-5b056cc3e4c0", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", + "7c34d8fb-52d2-4cf7-8954-ff69847540ac", + "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", + "76b4c3d5-f580-480d-bfec-c2639dd60d13", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", + "e654777c-6941-47f5-a273-d73ab074f10e", + "bb148567-d18f-49e1-a388-f782610c5390", + "e8e5c7df-2edf-4749-98c2-97962c7eff9c", + "a0b2e96c-f14a-4143-9ef3-8bb0e0e8a984", + "1b175835-d1cc-4713-943f-5472ffaa8fea", + "b4fcda7a-779e-4762-b2e5-038988d405be", + "80008949-5a0f-4c5e-b778-592c2ee8487f", + "53ead0f5-ebe4-4285-9d12-aa867ff0e782", + "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", + "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", + "7b1c691c-8a55-45c2-8401-9d619a0efb76", + "c4825963-416e-404b-a744-6ffe763e2d89", + "344c16fc-7161-4015-9999-e3e0f325dd1e", + "5636d204-312b-4d1e-bac7-614621da4bb5", + "d3991811-d92b-4ba2-9732-26a74abc49b7", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "5981cea7-b196-4e72-820c-362fb9c4e212", + "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", + "130245ae-209b-4e27-b903-ff57832b92eb", + "0d6b35f8-1b6c-4403-a7a5-53247aec7649", + "c3a2368c-bf2d-4c72-9adb-41ee799004b3", + "011d1f54-164c-4564-a051-bdacad3e287d", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "49918c5a-8414-49fd-abf9-87ae6b9f3976", + "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", + "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", + "65175945-c54c-4732-85a9-890393a0975c", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "999ed130-7d99-4115-ac3c-cabba7731288", + "d15f81ba-7519-47f7-aa07-0026f1b03e42", + "28f2fe65-961c-4550-a722-1e7790fe94ad", + "9cf81604-6d70-4ba8-a3fc-521104742058", + "4d48f36b-2274-4392-afac-b2c2c64b98f0", + "5f58acb6-be68-437f-bde7-a77d03125af9", + "4e61612c-2f48-47d6-ad42-7c0737853911", + "e46ba2d2-9f30-419f-acae-c73c3ef665c5", + "48ea0d06-7b69-4895-b55b-2a18e6e6f906", + "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", + "d00d9138-966b-4522-be1d-8c665c71246b", + "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "649e6394-9376-40eb-bc0e-4a376a0044aa", + "4fb4515b-e129-4622-b855-89143c2fd488", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "22e67405-9e1a-4912-aa11-919864f608e1", + "segments": [ + 0, + 8, + 23, + 54, + 91, + 100, + 105, + 109, + 113, + 121, + 148, + 154, + 168, + 176, + 181, + 184, + 190, + 197, + 200, + 206, + 212, + 219, + 222, + 237, + 245, + 248, + 263, + 269, + 288, + 292, + 300, + 302, + 309, + 312, + 314, + 320, + 328, + 334, + 339, + 344, + 350, + 356, + 360, + 366, + 370, + 374, + 378, + 384, + 391, + 394, + 398, + 403, + 405, + 411, + 416, + 420, + 427, + 436, + 442, + 450, + 458, + 468, + 471, + 474, + 491 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 26, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.385045, + 45.506579 + ], + [ + -73.384797, + 45.506518 + ], + [ + -73.383777, + 45.506274 + ], + [ + -73.382498, + 45.505967 + ], + [ + -73.382363, + 45.505931 + ], + [ + -73.382185, + 45.50589 + ], + [ + -73.382118, + 45.506021 + ], + [ + -73.381841, + 45.50662 + ], + [ + -73.381335, + 45.507721 + ], + [ + -73.380701, + 45.507418 + ], + [ + -73.380626, + 45.507481 + ], + [ + -73.380503, + 45.507585 + ], + [ + -73.380399, + 45.507666 + ], + [ + -73.380268, + 45.507759 + ], + [ + -73.380179, + 45.507823 + ], + [ + -73.380059, + 45.50789 + ], + [ + -73.379863, + 45.507975 + ], + [ + -73.379724, + 45.508025 + ], + [ + -73.379622, + 45.508047 + ], + [ + -73.379526, + 45.508074 + ], + [ + -73.379404, + 45.508091 + ], + [ + -73.3793, + 45.508105 + ], + [ + -73.379151, + 45.508114 + ], + [ + -73.379147, + 45.508114 + ], + [ + -73.378562, + 45.50814 + ], + [ + -73.378452, + 45.508145 + ], + [ + -73.378119, + 45.508163 + ], + [ + -73.377933, + 45.508153 + ], + [ + -73.377878, + 45.50815 + ], + [ + -73.377779, + 45.508144 + ], + [ + -73.377699, + 45.508135 + ], + [ + -73.377571, + 45.508108 + ], + [ + -73.377442, + 45.508081 + ], + [ + -73.377114, + 45.507982 + ], + [ + -73.376914, + 45.507917 + ], + [ + -73.376868, + 45.507902 + ], + [ + -73.376837, + 45.507891 + ], + [ + -73.376632, + 45.507801 + ], + [ + -73.376512, + 45.507729 + ], + [ + -73.3764, + 45.507639 + ], + [ + -73.376345, + 45.507576 + ], + [ + -73.376298, + 45.507513 + ], + [ + -73.376268, + 45.507459 + ], + [ + -73.376084, + 45.507108 + ], + [ + -73.376046, + 45.507022 + ], + [ + -73.375985, + 45.506896 + ], + [ + -73.375911, + 45.506761 + ], + [ + -73.375859, + 45.506698 + ], + [ + -73.375784, + 45.506626 + ], + [ + -73.375748, + 45.506597 + ], + [ + -73.375424, + 45.506333 + ], + [ + -73.375295, + 45.506238 + ], + [ + -73.375146, + 45.50613 + ], + [ + -73.375061, + 45.506067 + ], + [ + -73.374951, + 45.505973 + ], + [ + -73.374844, + 45.505788 + ], + [ + -73.374746, + 45.505563 + ], + [ + -73.37462, + 45.505338 + ], + [ + -73.374581, + 45.50514 + ], + [ + -73.374565, + 45.504919 + ], + [ + -73.374583, + 45.504843 + ], + [ + -73.374598, + 45.504793 + ], + [ + -73.374625, + 45.504735 + ], + [ + -73.374697, + 45.504635 + ], + [ + -73.374722, + 45.5046 + ], + [ + -73.374854, + 45.504429 + ], + [ + -73.374998, + 45.504213 + ], + [ + -73.37517, + 45.50398 + ], + [ + -73.375293, + 45.503854 + ], + [ + -73.375447, + 45.503715 + ], + [ + -73.375698, + 45.503485 + ], + [ + -73.375972, + 45.503274 + ], + [ + -73.376016, + 45.503247 + ], + [ + -73.376319, + 45.503059 + ], + [ + -73.376411, + 45.502996 + ], + [ + -73.375361, + 45.502572 + ], + [ + -73.375249, + 45.50254 + ], + [ + -73.375184, + 45.502508 + ], + [ + -73.375095, + 45.502468 + ], + [ + -73.375002, + 45.502427 + ], + [ + -73.374935, + 45.502409 + ], + [ + -73.37489, + 45.502387 + ], + [ + -73.374858, + 45.502373 + ], + [ + -73.374823, + 45.502351 + ], + [ + -73.374781, + 45.502315 + ], + [ + -73.37474, + 45.502247 + ], + [ + -73.374726, + 45.502157 + ], + [ + -73.374691, + 45.502013 + ], + [ + -73.375153, + 45.501079 + ], + [ + -73.375188, + 45.501009 + ], + [ + -73.375237, + 45.500914 + ], + [ + -73.375969, + 45.499457 + ], + [ + -73.376041, + 45.499312 + ], + [ + -73.376208, + 45.498993 + ], + [ + -73.376284, + 45.498857 + ], + [ + -73.376363, + 45.498701 + ], + [ + -73.376563, + 45.498311 + ], + [ + -73.376773, + 45.497866 + ], + [ + -73.377041, + 45.497337 + ], + [ + -73.377342, + 45.496707 + ], + [ + -73.377583, + 45.496221 + ], + [ + -73.378124, + 45.495128 + ], + [ + -73.378504, + 45.494364 + ], + [ + -73.37897, + 45.493424 + ], + [ + -73.379025, + 45.493316 + ], + [ + -73.380237, + 45.490872 + ], + [ + -73.380977, + 45.489378 + ], + [ + -73.381377, + 45.488567 + ], + [ + -73.381663, + 45.487992 + ], + [ + -73.381706, + 45.487906 + ], + [ + -73.381802, + 45.487771 + ], + [ + -73.381937, + 45.487627 + ], + [ + -73.382149, + 45.487431 + ], + [ + -73.382304, + 45.487304 + ], + [ + -73.38239, + 45.487214 + ], + [ + -73.382504, + 45.487272 + ], + [ + -73.382639, + 45.48734 + ], + [ + -73.383202, + 45.487615 + ], + [ + -73.383953, + 45.487976 + ], + [ + -73.384699, + 45.48831 + ], + [ + -73.384728, + 45.48832 + ], + [ + -73.384901, + 45.488369 + ], + [ + -73.384978, + 45.488267 + ], + [ + -73.384988, + 45.488254 + ], + [ + -73.385285, + 45.487843 + ], + [ + -73.385538, + 45.487429 + ], + [ + -73.385708, + 45.487123 + ], + [ + -73.385794, + 45.486795 + ], + [ + -73.385822, + 45.486649 + ], + [ + -73.385849, + 45.486507 + ], + [ + -73.38587, + 45.486444 + ], + [ + -73.385921, + 45.486295 + ], + [ + -73.386009, + 45.486084 + ], + [ + -73.386108, + 45.485909 + ], + [ + -73.386282, + 45.485639 + ], + [ + -73.386456, + 45.485401 + ], + [ + -73.386793, + 45.484951 + ], + [ + -73.387267, + 45.484313 + ], + [ + -73.387558, + 45.484142 + ], + [ + -73.387743, + 45.483913 + ], + [ + -73.388271, + 45.483202 + ], + [ + -73.388318, + 45.483139 + ], + [ + -73.388909, + 45.482326 + ], + [ + -73.38905, + 45.482092 + ], + [ + -73.389113, + 45.481997 + ], + [ + -73.389343, + 45.481827 + ], + [ + -73.389435, + 45.481795 + ], + [ + -73.389539, + 45.481786 + ], + [ + -73.389628, + 45.481786 + ], + [ + -73.389709, + 45.4818 + ], + [ + -73.390071, + 45.481927 + ], + [ + -73.390313, + 45.482057 + ], + [ + -73.390427, + 45.482115 + ], + [ + -73.390518, + 45.482162 + ], + [ + -73.393166, + 45.483526 + ], + [ + -73.393715, + 45.483828 + ], + [ + -73.393921, + 45.48395 + ], + [ + -73.394183, + 45.484121 + ], + [ + -73.394326, + 45.48422 + ], + [ + -73.394526, + 45.48436 + ], + [ + -73.394852, + 45.484608 + ], + [ + -73.395097, + 45.484806 + ], + [ + -73.395347, + 45.485022 + ], + [ + -73.395593, + 45.485252 + ], + [ + -73.396316, + 45.48599 + ], + [ + -73.396877, + 45.486562 + ], + [ + -73.397253, + 45.486945 + ], + [ + -73.397988, + 45.487693 + ], + [ + -73.398503, + 45.488224 + ], + [ + -73.400292, + 45.490061 + ], + [ + -73.400631, + 45.490403 + ], + [ + -73.40073, + 45.490503 + ], + [ + -73.40103, + 45.490791 + ], + [ + -73.401471, + 45.491169 + ], + [ + -73.401956, + 45.491543 + ], + [ + -73.402249, + 45.491741 + ], + [ + -73.402357, + 45.491809 + ], + [ + -73.40251, + 45.491908 + ], + [ + -73.402561, + 45.491939 + ], + [ + -73.403076, + 45.492241 + ], + [ + -73.403455, + 45.492444 + ], + [ + -73.403928, + 45.492669 + ], + [ + -73.405646, + 45.493445 + ], + [ + -73.406465, + 45.493815 + ], + [ + -73.407044, + 45.494076 + ], + [ + -73.407318, + 45.494207 + ], + [ + -73.407449, + 45.49427 + ], + [ + -73.408138, + 45.494635 + ], + [ + -73.408708, + 45.49495 + ], + [ + -73.408748, + 45.494972 + ], + [ + -73.408851, + 45.495036 + ], + [ + -73.4093, + 45.495297 + ], + [ + -73.410398, + 45.49591 + ], + [ + -73.410729, + 45.496085 + ], + [ + -73.411068, + 45.496248 + ], + [ + -73.41156, + 45.496461 + ], + [ + -73.411587, + 45.496473 + ], + [ + -73.412271, + 45.49673 + ], + [ + -73.412864, + 45.496955 + ], + [ + -73.414507, + 45.497553 + ], + [ + -73.415733, + 45.497998 + ], + [ + -73.416635, + 45.498326 + ], + [ + -73.416723, + 45.498362 + ], + [ + -73.417312, + 45.498592 + ], + [ + -73.417435, + 45.498648 + ], + [ + -73.417607, + 45.498727 + ], + [ + -73.418042, + 45.498952 + ], + [ + -73.418335, + 45.499128 + ], + [ + -73.418479, + 45.499214 + ], + [ + -73.418764, + 45.499407 + ], + [ + -73.419209, + 45.499737 + ], + [ + -73.419305, + 45.499808 + ], + [ + -73.419729, + 45.500092 + ], + [ + -73.419878, + 45.500182 + ], + [ + -73.420342, + 45.50043 + ], + [ + -73.420784, + 45.500641 + ], + [ + -73.420878, + 45.500678 + ], + [ + -73.421089, + 45.500763 + ], + [ + -73.421557, + 45.500934 + ], + [ + -73.421727, + 45.500998 + ], + [ + -73.422541, + 45.501286 + ], + [ + -73.423018, + 45.501457 + ], + [ + -73.423423, + 45.501602 + ], + [ + -73.424204, + 45.50188 + ], + [ + -73.426184, + 45.502584 + ], + [ + -73.427788, + 45.503152 + ], + [ + -73.428083, + 45.503265 + ], + [ + -73.428273, + 45.50335 + ], + [ + -73.428512, + 45.503472 + ], + [ + -73.428643, + 45.503549 + ], + [ + -73.428884, + 45.503715 + ], + [ + -73.428992, + 45.503801 + ], + [ + -73.429012, + 45.50382 + ], + [ + -73.429175, + 45.503967 + ], + [ + -73.429253, + 45.504057 + ], + [ + -73.429303, + 45.504111 + ], + [ + -73.429332, + 45.504143 + ], + [ + -73.429383, + 45.504202 + ], + [ + -73.429494, + 45.504373 + ], + [ + -73.429599, + 45.504566 + ], + [ + -73.429648, + 45.504679 + ], + [ + -73.429656, + 45.504708 + ], + [ + -73.429758, + 45.505057 + ], + [ + -73.430026, + 45.506263 + ], + [ + -73.430066, + 45.506425 + ], + [ + -73.430099, + 45.506555 + ], + [ + -73.430103, + 45.506573 + ], + [ + -73.4302, + 45.506807 + ], + [ + -73.430341, + 45.507086 + ], + [ + -73.430485, + 45.507257 + ], + [ + -73.430506, + 45.507276 + ], + [ + -73.430509, + 45.507278 + ], + [ + -73.430608, + 45.507365 + ], + [ + -73.430672, + 45.507415 + ], + [ + -73.431358, + 45.507856 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431666, + 45.508054 + ], + [ + -73.432482, + 45.508559 + ], + [ + -73.433021, + 45.508883 + ], + [ + -73.433395, + 45.509082 + ], + [ + -73.433453, + 45.509113 + ], + [ + -73.43374, + 45.509257 + ], + [ + -73.434128, + 45.509428 + ], + [ + -73.43476, + 45.509703 + ], + [ + -73.435478, + 45.510009 + ], + [ + -73.435758, + 45.510131 + ], + [ + -73.435893, + 45.510189 + ], + [ + -73.43661, + 45.510502 + ], + [ + -73.437183, + 45.510752 + ], + [ + -73.437938, + 45.511081 + ], + [ + -73.438224, + 45.511212 + ], + [ + -73.439008, + 45.511568 + ], + [ + -73.439738, + 45.511879 + ], + [ + -73.43983, + 45.511919 + ], + [ + -73.439896, + 45.511951 + ], + [ + -73.440237, + 45.512095 + ], + [ + -73.441448, + 45.512613 + ], + [ + -73.441811, + 45.512775 + ], + [ + -73.443061, + 45.51328 + ], + [ + -73.445634, + 45.514379 + ], + [ + -73.446646, + 45.514811 + ], + [ + -73.448481, + 45.515566 + ], + [ + -73.44854, + 45.51559 + ], + [ + -73.449494, + 45.515978 + ], + [ + -73.449844, + 45.516127 + ], + [ + -73.450296, + 45.51632 + ], + [ + -73.451373, + 45.516761 + ], + [ + -73.451903, + 45.516982 + ], + [ + -73.452053, + 45.517054 + ], + [ + -73.45224, + 45.517153 + ], + [ + -73.452412, + 45.517228 + ], + [ + -73.452518, + 45.517275 + ], + [ + -73.453808, + 45.5178 + ], + [ + -73.454088, + 45.517914 + ], + [ + -73.454764, + 45.518193 + ], + [ + -73.455195, + 45.518372 + ], + [ + -73.455625, + 45.518549 + ], + [ + -73.45631, + 45.518837 + ], + [ + -73.457036, + 45.519133 + ], + [ + -73.457149, + 45.51918 + ], + [ + -73.457268, + 45.519234 + ], + [ + -73.458416, + 45.519718 + ], + [ + -73.458582, + 45.519788 + ], + [ + -73.46019, + 45.520461 + ], + [ + -73.460326, + 45.520518 + ], + [ + -73.460513, + 45.520597 + ], + [ + -73.462498, + 45.52143 + ], + [ + -73.462791, + 45.521553 + ], + [ + -73.463771, + 45.521954 + ], + [ + -73.463823, + 45.521976 + ], + [ + -73.464215, + 45.522138 + ], + [ + -73.464352, + 45.522188 + ], + [ + -73.464459, + 45.522246 + ], + [ + -73.464607, + 45.522332 + ], + [ + -73.465155, + 45.522551 + ], + [ + -73.465496, + 45.522687 + ], + [ + -73.466002, + 45.522899 + ], + [ + -73.466103, + 45.522924 + ], + [ + -73.466276, + 45.522967 + ], + [ + -73.467237, + 45.523363 + ], + [ + -73.467893, + 45.52364 + ], + [ + -73.468048, + 45.523705 + ], + [ + -73.468866, + 45.524038 + ], + [ + -73.469522, + 45.524322 + ], + [ + -73.469644, + 45.524372 + ], + [ + -73.469721, + 45.524403 + ], + [ + -73.470239, + 45.524623 + ], + [ + -73.470555, + 45.524749 + ], + [ + -73.471094, + 45.524979 + ], + [ + -73.471997, + 45.525357 + ], + [ + -73.47246, + 45.525553 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.474655, + 45.526465 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.475467, + 45.526811 + ], + [ + -73.475894, + 45.526982 + ], + [ + -73.476153, + 45.52709 + ], + [ + -73.476219, + 45.527117 + ], + [ + -73.476969, + 45.527428 + ], + [ + -73.477725, + 45.527748 + ], + [ + -73.478331, + 45.528004 + ], + [ + -73.478598, + 45.528117 + ], + [ + -73.479454, + 45.528472 + ], + [ + -73.480164, + 45.528774 + ], + [ + -73.480753, + 45.529011 + ], + [ + -73.48089, + 45.529066 + ], + [ + -73.481413, + 45.529294 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.484961, + 45.530774 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.488424, + 45.532213 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.490635, + 45.533124 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.492955, + 45.534081 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.494094, + 45.534551 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.495628, + 45.535241 + ], + [ + -73.495883, + 45.535371 + ], + [ + -73.496551, + 45.535683 + ], + [ + -73.496645, + 45.535727 + ], + [ + -73.49677, + 45.535781 + ], + [ + -73.49726, + 45.535988 + ], + [ + -73.498459, + 45.536487 + ], + [ + -73.498936, + 45.536687 + ], + [ + -73.499435, + 45.536897 + ], + [ + -73.501142, + 45.537612 + ], + [ + -73.502066, + 45.537998 + ], + [ + -73.503263, + 45.538498 + ], + [ + -73.503424, + 45.538566 + ], + [ + -73.503808, + 45.538728 + ], + [ + -73.503912, + 45.538786 + ], + [ + -73.504095, + 45.538926 + ], + [ + -73.504553, + 45.539317 + ], + [ + -73.504747, + 45.539452 + ], + [ + -73.50477, + 45.539464 + ], + [ + -73.504898, + 45.539533 + ], + [ + -73.506469, + 45.540185 + ], + [ + -73.507029, + 45.540406 + ], + [ + -73.507958, + 45.540788 + ], + [ + -73.508096, + 45.540847 + ], + [ + -73.508112, + 45.54082 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.50824, + 45.540633 + ], + [ + -73.50834, + 45.540487 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.509502, + 45.538865 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.511595, + 45.537128 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.513272, + 45.536035 + ], + [ + -73.513413, + 45.535879 + ], + [ + -73.513707, + 45.535583 + ], + [ + -73.513941, + 45.535349 + ], + [ + -73.513977, + 45.535314 + ], + [ + -73.514031, + 45.535263 + ], + [ + -73.514312, + 45.534967 + ], + [ + -73.514735, + 45.53454 + ], + [ + -73.514842, + 45.53442 + ], + [ + -73.514898, + 45.534357 + ], + [ + -73.515145, + 45.534084 + ], + [ + -73.515317, + 45.533897 + ], + [ + -73.515372, + 45.533842 + ], + [ + -73.515504, + 45.533699 + ], + [ + -73.515513, + 45.533689 + ], + [ + -73.515888, + 45.533287 + ], + [ + -73.515986, + 45.533193 + ], + [ + -73.516619, + 45.532644 + ], + [ + -73.516729, + 45.532549 + ], + [ + -73.517579, + 45.531802 + ], + [ + -73.517931, + 45.531459 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518212, + 45.531168 + ], + [ + -73.51845, + 45.53088 + ], + [ + -73.518608, + 45.530695 + ], + [ + -73.518713, + 45.530574 + ], + [ + -73.518834, + 45.53043 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519398, + 45.526004 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 27, + "properties": { + "id": "d587ca02-827f-40c4-bdf2-6375fa89718f", + "data": { + "gtfs": { + "shape_id": "8_1_A" + }, + "segments": [ + { + "distanceMeters": 11359, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 635, + "travelTimeSeconds": 156 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 132 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 18493, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5268.977302446722, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 11.85, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 10.63, + "averageSpeedWithoutDwellTimesMetersPerSecond": 11.85 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "d3991811-d92b-4ba2-9732-26a74abc49b7", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "5981cea7-b196-4e72-820c-362fb9c4e212", + "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", + "130245ae-209b-4e27-b903-ff57832b92eb", + "0d6b35f8-1b6c-4403-a7a5-53247aec7649", + "c3a2368c-bf2d-4c72-9adb-41ee799004b3", + "011d1f54-164c-4564-a051-bdacad3e287d", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "49918c5a-8414-49fd-abf9-87ae6b9f3976", + "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", + "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", + "65175945-c54c-4732-85a9-890393a0975c", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "999ed130-7d99-4115-ac3c-cabba7731288", + "d15f81ba-7519-47f7-aa07-0026f1b03e42", + "28f2fe65-961c-4550-a722-1e7790fe94ad", + "9cf81604-6d70-4ba8-a3fc-521104742058", + "4d48f36b-2274-4392-afac-b2c2c64b98f0", + "5f58acb6-be68-437f-bde7-a77d03125af9", + "4e61612c-2f48-47d6-ad42-7c0737853911", + "e46ba2d2-9f30-419f-acae-c73c3ef665c5", + "48ea0d06-7b69-4895-b55b-2a18e6e6f906", + "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", + "d00d9138-966b-4522-be1d-8c665c71246b", + "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "649e6394-9376-40eb-bc0e-4a376a0044aa", + "4fb4515b-e129-4622-b855-89143c2fd488", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "22e67405-9e1a-4912-aa11-919864f608e1", + "segments": [ + 0, + 298, + 303, + 308, + 314, + 320, + 324, + 330, + 334, + 338, + 342, + 348, + 355, + 358, + 362, + 367, + 369, + 375, + 380, + 384, + 391, + 400, + 406, + 414, + 422, + 432, + 435, + 438, + 455 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 27, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519259, + 45.524277 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519057, + 45.525166 + ], + [ + -73.518828, + 45.525169 + ], + [ + -73.518662, + 45.525195 + ], + [ + -73.518477, + 45.525222 + ], + [ + -73.51841, + 45.525229 + ], + [ + -73.518309, + 45.525233 + ], + [ + -73.518165, + 45.525238 + ], + [ + -73.517846, + 45.525224 + ], + [ + -73.516858, + 45.525188 + ], + [ + -73.516329, + 45.525185 + ], + [ + -73.51586, + 45.52522 + ], + [ + -73.515879, + 45.525306 + ], + [ + -73.515954, + 45.525625 + ], + [ + -73.515993, + 45.52576 + ], + [ + -73.516108, + 45.52615 + ], + [ + -73.51612, + 45.526192 + ], + [ + -73.516132, + 45.526224 + ], + [ + -73.516245, + 45.52653 + ], + [ + -73.516302, + 45.526687 + ], + [ + -73.516434, + 45.526894 + ], + [ + -73.517006, + 45.527735 + ], + [ + -73.517118, + 45.52798 + ], + [ + -73.517272, + 45.52832 + ], + [ + -73.517504, + 45.528922 + ], + [ + -73.517577, + 45.529094 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.517456, + 45.531762 + ], + [ + -73.51664, + 45.532518 + ], + [ + -73.515885, + 45.533161 + ], + [ + -73.515753, + 45.533238 + ], + [ + -73.515672, + 45.533321 + ], + [ + -73.515257, + 45.533788 + ], + [ + -73.515202, + 45.533848 + ], + [ + -73.514831, + 45.534265 + ], + [ + -73.514791, + 45.534311 + ], + [ + -73.514731, + 45.534379 + ], + [ + -73.514684, + 45.534434 + ], + [ + -73.51432, + 45.534799 + ], + [ + -73.513904, + 45.53522 + ], + [ + -73.513681, + 45.535468 + ], + [ + -73.51342, + 45.535713 + ], + [ + -73.513155, + 45.535985 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.508029, + 45.540693 + ], + [ + -73.508021, + 45.540689 + ], + [ + -73.507102, + 45.540316 + ], + [ + -73.506536, + 45.540077 + ], + [ + -73.504975, + 45.539443 + ], + [ + -73.50484, + 45.539375 + ], + [ + -73.504659, + 45.53925 + ], + [ + -73.504204, + 45.538858 + ], + [ + -73.50401, + 45.538714 + ], + [ + -73.503897, + 45.538651 + ], + [ + -73.5035, + 45.538476 + ], + [ + -73.502143, + 45.537905 + ], + [ + -73.501222, + 45.537517 + ], + [ + -73.499534, + 45.536807 + ], + [ + -73.498456, + 45.536361 + ], + [ + -73.497345, + 45.53588 + ], + [ + -73.496932, + 45.535682 + ], + [ + -73.496814, + 45.535632 + ], + [ + -73.495741, + 45.5352 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.48089, + 45.529066 + ], + [ + -73.480753, + 45.529011 + ], + [ + -73.480164, + 45.528774 + ], + [ + -73.479454, + 45.528472 + ], + [ + -73.478598, + 45.528117 + ], + [ + -73.477725, + 45.527748 + ], + [ + -73.476969, + 45.527428 + ], + [ + -73.476219, + 45.527117 + ], + [ + -73.475894, + 45.526982 + ], + [ + -73.475467, + 45.526811 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.471997, + 45.525357 + ], + [ + -73.471094, + 45.524979 + ], + [ + -73.470555, + 45.524749 + ], + [ + -73.470239, + 45.524623 + ], + [ + -73.469721, + 45.524403 + ], + [ + -73.469522, + 45.524322 + ], + [ + -73.468866, + 45.524038 + ], + [ + -73.468048, + 45.523705 + ], + [ + -73.467237, + 45.523363 + ], + [ + -73.466276, + 45.522967 + ], + [ + -73.466082, + 45.522841 + ], + [ + -73.465634, + 45.52266 + ], + [ + -73.464874, + 45.522336 + ], + [ + -73.464576, + 45.522215 + ], + [ + -73.464439, + 45.522143 + ], + [ + -73.464336, + 45.522093 + ], + [ + -73.464186, + 45.522017 + ], + [ + -73.463952, + 45.52192 + ], + [ + -73.463125, + 45.521577 + ], + [ + -73.462859, + 45.521467 + ], + [ + -73.46256, + 45.521341 + ], + [ + -73.460592, + 45.520513 + ], + [ + -73.460391, + 45.520427 + ], + [ + -73.460276, + 45.520379 + ], + [ + -73.458651, + 45.519707 + ], + [ + -73.457332, + 45.519144 + ], + [ + -73.457212, + 45.51909 + ], + [ + -73.456379, + 45.518756 + ], + [ + -73.455695, + 45.518468 + ], + [ + -73.454164, + 45.517811 + ], + [ + -73.453487, + 45.51753 + ], + [ + -73.452666, + 45.517189 + ], + [ + -73.452271, + 45.517027 + ], + [ + -73.452136, + 45.516973 + ], + [ + -73.452066, + 45.516942 + ], + [ + -73.450032, + 45.516108 + ], + [ + -73.448601, + 45.5155 + ], + [ + -73.444787, + 45.513896 + ], + [ + -73.443129, + 45.513199 + ], + [ + -73.440479, + 45.512077 + ], + [ + -73.440007, + 45.511874 + ], + [ + -73.439905, + 45.511834 + ], + [ + -73.439831, + 45.511802 + ], + [ + -73.439067, + 45.511482 + ], + [ + -73.438299, + 45.511131 + ], + [ + -73.438017, + 45.511 + ], + [ + -73.437245, + 45.510635 + ], + [ + -73.435988, + 45.510081 + ], + [ + -73.435895, + 45.510041 + ], + [ + -73.435854, + 45.510023 + ], + [ + -73.435569, + 45.509897 + ], + [ + -73.434856, + 45.50959 + ], + [ + -73.434257, + 45.509343 + ], + [ + -73.433925, + 45.509203 + ], + [ + -73.433726, + 45.509117 + ], + [ + -73.433485, + 45.509005 + ], + [ + -73.433108, + 45.508806 + ], + [ + -73.432574, + 45.508487 + ], + [ + -73.432044, + 45.508167 + ], + [ + -73.431846, + 45.508041 + ], + [ + -73.43182, + 45.508023 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.431538, + 45.507856 + ], + [ + -73.430825, + 45.507356 + ], + [ + -73.430679, + 45.507221 + ], + [ + -73.430612, + 45.507149 + ], + [ + -73.43049, + 45.506978 + ], + [ + -73.43046, + 45.50692 + ], + [ + -73.430405, + 45.506816 + ], + [ + -73.430319, + 45.506587 + ], + [ + -73.430298, + 45.506497 + ], + [ + -73.430275, + 45.506389 + ], + [ + -73.430272, + 45.506375 + ], + [ + -73.430221, + 45.506056 + ], + [ + -73.430022, + 45.505142 + ], + [ + -73.429926, + 45.504769 + ], + [ + -73.429899, + 45.5047 + ], + [ + -73.429809, + 45.504476 + ], + [ + -73.429754, + 45.504373 + ], + [ + -73.4297, + 45.504274 + ], + [ + -73.429585, + 45.504116 + ], + [ + -73.429534, + 45.504058 + ], + [ + -73.429455, + 45.503968 + ], + [ + -73.429429, + 45.503936 + ], + [ + -73.429234, + 45.503747 + ], + [ + -73.429121, + 45.503648 + ], + [ + -73.429007, + 45.503562 + ], + [ + -73.428781, + 45.503414 + ], + [ + -73.428662, + 45.503344 + ], + [ + -73.428528, + 45.503265 + ], + [ + -73.428383, + 45.503193 + ], + [ + -73.428061, + 45.503062 + ], + [ + -73.427348, + 45.502808 + ], + [ + -73.426292, + 45.502431 + ], + [ + -73.423912, + 45.501584 + ], + [ + -73.423518, + 45.501444 + ], + [ + -73.423081, + 45.501291 + ], + [ + -73.422609, + 45.501122 + ], + [ + -73.422513, + 45.501088 + ], + [ + -73.421932, + 45.500878 + ], + [ + -73.421552, + 45.500741 + ], + [ + -73.42114, + 45.50058 + ], + [ + -73.420988, + 45.50052 + ], + [ + -73.420974, + 45.500516 + ], + [ + -73.420915, + 45.500489 + ], + [ + -73.420674, + 45.50038 + ], + [ + -73.420367, + 45.500227 + ], + [ + -73.41991, + 45.499962 + ], + [ + -73.419471, + 45.499673 + ], + [ + -73.419335, + 45.49957 + ], + [ + -73.419049, + 45.499354 + ], + [ + -73.418625, + 45.499061 + ], + [ + -73.418366, + 45.498904 + ], + [ + -73.418232, + 45.498822 + ], + [ + -73.417884, + 45.498642 + ], + [ + -73.417509, + 45.498478 + ], + [ + -73.417338, + 45.498403 + ], + [ + -73.416887, + 45.498227 + ], + [ + -73.416876, + 45.498223 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.415848, + 45.497845 + ], + [ + -73.415069, + 45.497555 + ], + [ + -73.414637, + 45.497397 + ], + [ + -73.413391, + 45.496942 + ], + [ + -73.413096, + 45.496835 + ], + [ + -73.41213, + 45.496482 + ], + [ + -73.411766, + 45.496343 + ], + [ + -73.411419, + 45.496194 + ], + [ + -73.411025, + 45.496011 + ], + [ + -73.410951, + 45.495977 + ], + [ + -73.410895, + 45.495951 + ], + [ + -73.410789, + 45.495896 + ], + [ + -73.409735, + 45.495323 + ], + [ + -73.409349, + 45.495112 + ], + [ + -73.409099, + 45.494968 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.408825, + 45.494811 + ], + [ + -73.408434, + 45.49459 + ], + [ + -73.408369, + 45.494555 + ], + [ + -73.408119, + 45.494419 + ], + [ + -73.407735, + 45.494211 + ], + [ + -73.407122, + 45.493914 + ], + [ + -73.406636, + 45.493695 + ], + [ + -73.406594, + 45.493675 + ], + [ + -73.404056, + 45.49253 + ], + [ + -73.40355, + 45.492282 + ], + [ + -73.403081, + 45.492034 + ], + [ + -73.402782, + 45.491854 + ], + [ + -73.402765, + 45.491844 + ], + [ + -73.402626, + 45.491759 + ], + [ + -73.402493, + 45.491674 + ], + [ + -73.402463, + 45.491651 + ], + [ + -73.402075, + 45.491386 + ], + [ + -73.401668, + 45.491075 + ], + [ + -73.401167, + 45.490642 + ], + [ + -73.400821, + 45.490307 + ], + [ + -73.40081, + 45.490296 + ], + [ + -73.398797, + 45.488233 + ], + [ + -73.398629, + 45.488062 + ], + [ + -73.398311, + 45.487738 + ], + [ + -73.397543, + 45.486952 + ], + [ + -73.397073, + 45.486473 + ], + [ + -73.396659, + 45.486048 + ], + [ + -73.396515, + 45.485901 + ], + [ + -73.395797, + 45.485167 + ], + [ + -73.395424, + 45.48482 + ], + [ + -73.39519, + 45.484626 + ], + [ + -73.394903, + 45.484401 + ], + [ + -73.39465, + 45.484213 + ], + [ + -73.39454, + 45.484131 + ], + [ + -73.394481, + 45.484095 + ], + [ + -73.394291, + 45.483964 + ], + [ + -73.393942, + 45.483748 + ], + [ + -73.393737, + 45.48363 + ], + [ + -73.393666, + 45.48359 + ], + [ + -73.393194, + 45.483333 + ], + [ + -73.389604, + 45.481489 + ], + [ + -73.389467, + 45.481417 + ], + [ + -73.389334, + 45.481534 + ], + [ + -73.389135, + 45.481777 + ], + [ + -73.388998, + 45.481957 + ], + [ + -73.388994, + 45.481962 + ], + [ + -73.388761, + 45.482271 + ], + [ + -73.388459, + 45.482687 + ], + [ + -73.38817, + 45.483085 + ], + [ + -73.388122, + 45.483153 + ], + [ + -73.38807, + 45.483229 + ], + [ + -73.387267, + 45.484313 + ], + [ + -73.387181, + 45.484429 + ], + [ + -73.386793, + 45.484951 + ], + [ + -73.386456, + 45.485401 + ], + [ + -73.386282, + 45.485639 + ], + [ + -73.386108, + 45.485909 + ], + [ + -73.386009, + 45.486084 + ], + [ + -73.385921, + 45.486295 + ], + [ + -73.38587, + 45.486444 + ], + [ + -73.385849, + 45.486507 + ], + [ + -73.385822, + 45.486649 + ], + [ + -73.385794, + 45.486795 + ], + [ + -73.385708, + 45.487123 + ], + [ + -73.385538, + 45.487429 + ], + [ + -73.385285, + 45.487843 + ], + [ + -73.385029, + 45.488197 + ], + [ + -73.384988, + 45.488254 + ], + [ + -73.384901, + 45.488369 + ], + [ + -73.384743, + 45.488246 + ], + [ + -73.384445, + 45.488089 + ], + [ + -73.384044, + 45.487891 + ], + [ + -73.383491, + 45.487611 + ], + [ + -73.382868, + 45.487294 + ], + [ + -73.3825, + 45.487106 + ], + [ + -73.382345, + 45.487025 + ], + [ + -73.382231, + 45.487138 + ], + [ + -73.382081, + 45.487303 + ], + [ + -73.382078, + 45.487305 + ], + [ + -73.381863, + 45.487505 + ], + [ + -73.38174, + 45.487635 + ], + [ + -73.381669, + 45.487708 + ], + [ + -73.381607, + 45.487781 + ], + [ + -73.381582, + 45.48782 + ], + [ + -73.38156, + 45.487854 + ], + [ + -73.381517, + 45.487933 + ], + [ + -73.381404, + 45.488142 + ], + [ + -73.381186, + 45.488604 + ], + [ + -73.380868, + 45.489241 + ], + [ + -73.380854, + 45.489269 + ], + [ + -73.380814, + 45.489347 + ], + [ + -73.380351, + 45.490295 + ], + [ + -73.380087, + 45.490835 + ], + [ + -73.379711, + 45.491585 + ], + [ + -73.379127, + 45.492764 + ], + [ + -73.378925, + 45.49319 + ], + [ + -73.378909, + 45.493226 + ], + [ + -73.378882, + 45.493284 + ], + [ + -73.378825, + 45.493393 + ], + [ + -73.378766, + 45.493505 + ], + [ + -73.378702, + 45.493632 + ], + [ + -73.378691, + 45.493655 + ], + [ + -73.37748, + 45.496102 + ], + [ + -73.377435, + 45.496193 + ], + [ + -73.377344, + 45.496377 + ], + [ + -73.377276, + 45.496509 + ], + [ + -73.376682, + 45.497687 + ], + [ + -73.376245, + 45.498616 + ], + [ + -73.37615, + 45.498819 + ], + [ + -73.375996, + 45.499106 + ], + [ + -73.375297, + 45.50049 + ], + [ + -73.375165, + 45.500806 + ], + [ + -73.37513, + 45.500889 + ], + [ + -73.37508, + 45.500984 + ], + [ + -73.37455, + 45.501981 + ], + [ + -73.374382, + 45.50231 + ], + [ + -73.374326, + 45.502409 + ], + [ + -73.374466, + 45.502454 + ], + [ + -73.374786, + 45.50253 + ], + [ + -73.375092, + 45.502612 + ], + [ + -73.375264, + 45.502648 + ], + [ + -73.375427, + 45.502684 + ], + [ + -73.375574, + 45.502747 + ], + [ + -73.375726, + 45.502811 + ], + [ + -73.376319, + 45.503059 + ], + [ + -73.376016, + 45.503247 + ], + [ + -73.375972, + 45.503274 + ], + [ + -73.375737, + 45.503456 + ], + [ + -73.375698, + 45.503485 + ], + [ + -73.375447, + 45.503715 + ], + [ + -73.375293, + 45.503854 + ], + [ + -73.37517, + 45.50398 + ], + [ + -73.374998, + 45.504213 + ], + [ + -73.374854, + 45.504429 + ], + [ + -73.374722, + 45.5046 + ], + [ + -73.374697, + 45.504635 + ], + [ + -73.374625, + 45.504735 + ], + [ + -73.374598, + 45.504793 + ], + [ + -73.374583, + 45.504843 + ], + [ + -73.374565, + 45.504919 + ], + [ + -73.374581, + 45.50514 + ], + [ + -73.37462, + 45.505338 + ], + [ + -73.374746, + 45.505563 + ], + [ + -73.374844, + 45.505788 + ], + [ + -73.37488, + 45.50585 + ], + [ + -73.374951, + 45.505973 + ], + [ + -73.375061, + 45.506067 + ], + [ + -73.375295, + 45.506238 + ], + [ + -73.375424, + 45.506333 + ], + [ + -73.375748, + 45.506597 + ], + [ + -73.375784, + 45.506626 + ], + [ + -73.375859, + 45.506698 + ], + [ + -73.375911, + 45.506761 + ], + [ + -73.375985, + 45.506896 + ], + [ + -73.376046, + 45.507022 + ], + [ + -73.376084, + 45.507108 + ], + [ + -73.376268, + 45.507459 + ], + [ + -73.376298, + 45.507513 + ], + [ + -73.376345, + 45.507576 + ], + [ + -73.3764, + 45.507639 + ], + [ + -73.376512, + 45.507729 + ], + [ + -73.376632, + 45.507801 + ], + [ + -73.376837, + 45.507891 + ], + [ + -73.376868, + 45.507902 + ], + [ + -73.376914, + 45.507917 + ], + [ + -73.377114, + 45.507982 + ], + [ + -73.377442, + 45.508081 + ], + [ + -73.377571, + 45.508108 + ], + [ + -73.377699, + 45.508135 + ], + [ + -73.377779, + 45.508144 + ], + [ + -73.377878, + 45.50815 + ], + [ + -73.377933, + 45.508153 + ], + [ + -73.378119, + 45.508163 + ], + [ + -73.378452, + 45.508145 + ], + [ + -73.378562, + 45.50814 + ], + [ + -73.378788, + 45.50813 + ], + [ + -73.379007, + 45.50812 + ], + [ + -73.379147, + 45.508114 + ], + [ + -73.3793, + 45.508105 + ], + [ + -73.379404, + 45.508091 + ], + [ + -73.379526, + 45.508074 + ], + [ + -73.379622, + 45.508047 + ], + [ + -73.379724, + 45.508025 + ], + [ + -73.379863, + 45.507975 + ], + [ + -73.380059, + 45.50789 + ], + [ + -73.380179, + 45.507823 + ], + [ + -73.380268, + 45.507759 + ], + [ + -73.380399, + 45.507666 + ], + [ + -73.380485, + 45.507598 + ], + [ + -73.380503, + 45.507585 + ], + [ + -73.380626, + 45.507481 + ], + [ + -73.38128, + 45.507806 + ], + [ + -73.381389, + 45.507851 + ], + [ + -73.381468, + 45.507752 + ], + [ + -73.381562, + 45.507572 + ], + [ + -73.381667, + 45.507356 + ], + [ + -73.381733, + 45.507226 + ], + [ + -73.381816, + 45.507051 + ], + [ + -73.381935, + 45.506785 + ], + [ + -73.382054, + 45.506552 + ], + [ + -73.382181, + 45.506291 + ], + [ + -73.382203, + 45.506249 + ], + [ + -73.382294, + 45.50607 + ], + [ + -73.382297, + 45.506061 + ], + [ + -73.382427, + 45.506097 + ], + [ + -73.384621, + 45.506625 + ] + ] + }, + "id": 28, + "properties": { + "id": "a87ebd6a-f278-4a59-b5e6-6ab06b9acc61", + "data": { + "gtfs": { + "shape_id": "8_1_R" + }, + "segments": [ + { + "distanceMeters": 10952, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 426, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 366, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 509, + "travelTimeSeconds": 91 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 673, + "travelTimeSeconds": 121 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 455, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 378, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 466, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 339, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 426, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 455, + "travelTimeSeconds": 100 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 48 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 18803, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3133.5686337995066, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 14.92, + "travelTimeWithoutDwellTimesSeconds": 1260, + "operatingTimeWithLayoverTimeSeconds": 1440, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1260, + "operatingSpeedWithLayoverMetersPerSecond": 13.06, + "averageSpeedWithoutDwellTimesMetersPerSecond": 14.92 + }, + "mode": "bus", + "name": "Promenades St-Bruno", + "color": "#A32638", + "nodes": [ + "61fd8171-4497-441f-b32a-7917186d6014", + "7de9ea25-e152-4431-8cc3-23b5e1427ab3", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "5dd96d41-c4eb-4453-9e97-752999b1688d", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "df4c6e14-8093-4f02-87d3-4b3d84466b04", + "7c34d8fb-52d2-4cf7-8954-ff69847540ac", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "7b30134c-a936-4c6b-8038-780d1041baea", + "9f7ffafe-2aab-4507-b571-cce792adfb7d", + "ff83e3ed-db76-4049-b206-f6a7eb53237f", + "897e999c-9046-44e1-af66-78d190574a64", + "d664171d-6b67-486f-b850-92d7b923ec60", + "af654275-2b6e-4152-a4be-6ba5d5eb2c23", + "8a7f5b7c-86e5-412e-a099-1a9d5ca8dce9", + "c7be2a86-2a63-43b1-993a-6ba9a80be235", + "afdaecf9-9edf-499b-a1d1-693abc0ee347", + "88be8076-6606-4cc2-82bf-848c6a92b1c2", + "284a178b-f032-40f4-9bf0-0ba74e13d985", + "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", + "01e0bcb2-ac63-4c88-b110-c273905a1d5c", + "c4c03f6a-b2dc-4fb8-87cd-df1a4417beae", + "71f7bbc9-363a-40ba-86f7-7f9ec638da55" + ], + "stops": [], + "line_id": "22e67405-9e1a-4912-aa11-919864f608e1", + "segments": [ + 0, + 245, + 262, + 268, + 272, + 278, + 286, + 292, + 301, + 306, + 312, + 327, + 332, + 346, + 363, + 369, + 376, + 382, + 387, + 391, + 407, + 424, + 456, + 468, + 481 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 28, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519259, + 45.524277 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519057, + 45.525166 + ], + [ + -73.518828, + 45.525169 + ], + [ + -73.518662, + 45.525195 + ], + [ + -73.518477, + 45.525222 + ], + [ + -73.51841, + 45.525229 + ], + [ + -73.518309, + 45.525233 + ], + [ + -73.518165, + 45.525238 + ], + [ + -73.517846, + 45.525224 + ], + [ + -73.516858, + 45.525188 + ], + [ + -73.516329, + 45.525185 + ], + [ + -73.51586, + 45.52522 + ], + [ + -73.515879, + 45.525306 + ], + [ + -73.515954, + 45.525625 + ], + [ + -73.515993, + 45.52576 + ], + [ + -73.516108, + 45.52615 + ], + [ + -73.51612, + 45.526192 + ], + [ + -73.516132, + 45.526224 + ], + [ + -73.516245, + 45.52653 + ], + [ + -73.516302, + 45.526687 + ], + [ + -73.516434, + 45.526894 + ], + [ + -73.517006, + 45.527735 + ], + [ + -73.517118, + 45.52798 + ], + [ + -73.517272, + 45.52832 + ], + [ + -73.517504, + 45.528922 + ], + [ + -73.517577, + 45.529094 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518091, + 45.53108 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.517456, + 45.531762 + ], + [ + -73.51664, + 45.532518 + ], + [ + -73.515885, + 45.533161 + ], + [ + -73.515753, + 45.533238 + ], + [ + -73.515672, + 45.533321 + ], + [ + -73.515257, + 45.533788 + ], + [ + -73.515202, + 45.533848 + ], + [ + -73.514831, + 45.534265 + ], + [ + -73.514791, + 45.534311 + ], + [ + -73.514731, + 45.534379 + ], + [ + -73.514684, + 45.534434 + ], + [ + -73.51432, + 45.534799 + ], + [ + -73.513904, + 45.53522 + ], + [ + -73.513681, + 45.535468 + ], + [ + -73.513446, + 45.535689 + ], + [ + -73.51342, + 45.535713 + ], + [ + -73.513155, + 45.535985 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.511182, + 45.537368 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.509332, + 45.539096 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.508029, + 45.540693 + ], + [ + -73.508021, + 45.540689 + ], + [ + -73.507102, + 45.540316 + ], + [ + -73.506536, + 45.540077 + ], + [ + -73.505636, + 45.539712 + ], + [ + -73.504975, + 45.539443 + ], + [ + -73.50484, + 45.539375 + ], + [ + -73.504659, + 45.53925 + ], + [ + -73.504204, + 45.538858 + ], + [ + -73.50401, + 45.538714 + ], + [ + -73.503897, + 45.538651 + ], + [ + -73.5035, + 45.538476 + ], + [ + -73.503036, + 45.53828 + ], + [ + -73.502143, + 45.537905 + ], + [ + -73.501222, + 45.537517 + ], + [ + -73.499534, + 45.536807 + ], + [ + -73.498545, + 45.536398 + ], + [ + -73.498456, + 45.536361 + ], + [ + -73.497345, + 45.53588 + ], + [ + -73.496932, + 45.535682 + ], + [ + -73.496814, + 45.535632 + ], + [ + -73.495879, + 45.535256 + ], + [ + -73.495741, + 45.5352 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.4936, + 45.534347 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.487958, + 45.532012 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.483789, + 45.530279 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.481089, + 45.529153 + ], + [ + -73.48089, + 45.529066 + ], + [ + -73.480753, + 45.529011 + ], + [ + -73.480164, + 45.528774 + ], + [ + -73.479454, + 45.528472 + ], + [ + -73.478761, + 45.528184 + ], + [ + -73.478598, + 45.528117 + ], + [ + -73.477725, + 45.527748 + ], + [ + -73.476969, + 45.527428 + ], + [ + -73.476784, + 45.527351 + ], + [ + -73.476219, + 45.527117 + ], + [ + -73.475894, + 45.526982 + ], + [ + -73.475467, + 45.526811 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.473506, + 45.525989 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.471997, + 45.525357 + ], + [ + -73.471094, + 45.524979 + ], + [ + -73.470555, + 45.524749 + ], + [ + -73.470239, + 45.524623 + ], + [ + -73.469721, + 45.524403 + ], + [ + -73.469522, + 45.524322 + ], + [ + -73.469488, + 45.524307 + ], + [ + -73.468866, + 45.524038 + ], + [ + -73.468048, + 45.523705 + ], + [ + -73.467237, + 45.523363 + ], + [ + -73.466276, + 45.522967 + ], + [ + -73.466082, + 45.522841 + ], + [ + -73.465634, + 45.52266 + ], + [ + -73.464874, + 45.522336 + ], + [ + -73.464609, + 45.522228 + ], + [ + -73.464576, + 45.522215 + ], + [ + -73.464439, + 45.522143 + ], + [ + -73.464336, + 45.522093 + ], + [ + -73.464186, + 45.522017 + ], + [ + -73.463952, + 45.52192 + ], + [ + -73.463125, + 45.521577 + ], + [ + -73.462859, + 45.521467 + ], + [ + -73.46256, + 45.521341 + ], + [ + -73.460844, + 45.520619 + ], + [ + -73.460592, + 45.520513 + ], + [ + -73.460391, + 45.520427 + ], + [ + -73.460276, + 45.520379 + ], + [ + -73.458651, + 45.519707 + ], + [ + -73.457332, + 45.519144 + ], + [ + -73.457262, + 45.519112 + ], + [ + -73.457212, + 45.51909 + ], + [ + -73.456379, + 45.518756 + ], + [ + -73.455695, + 45.518468 + ], + [ + -73.454892, + 45.518124 + ], + [ + -73.454164, + 45.517811 + ], + [ + -73.453487, + 45.51753 + ], + [ + -73.452943, + 45.517304 + ], + [ + -73.452666, + 45.517189 + ], + [ + -73.452271, + 45.517027 + ], + [ + -73.452136, + 45.516973 + ], + [ + -73.452066, + 45.516942 + ], + [ + -73.450032, + 45.516108 + ], + [ + -73.44883, + 45.515598 + ], + [ + -73.448601, + 45.5155 + ], + [ + -73.446983, + 45.51482 + ], + [ + -73.444787, + 45.513896 + ], + [ + -73.443486, + 45.513349 + ], + [ + -73.443129, + 45.513199 + ], + [ + -73.440983, + 45.51229 + ], + [ + -73.440479, + 45.512077 + ], + [ + -73.440007, + 45.511874 + ], + [ + -73.439905, + 45.511834 + ], + [ + -73.439831, + 45.511802 + ], + [ + -73.439067, + 45.511482 + ], + [ + -73.438299, + 45.511131 + ], + [ + -73.438017, + 45.511 + ], + [ + -73.437295, + 45.510659 + ], + [ + -73.437245, + 45.510635 + ], + [ + -73.435988, + 45.510081 + ], + [ + -73.435895, + 45.510041 + ], + [ + -73.435854, + 45.510023 + ], + [ + -73.435569, + 45.509897 + ], + [ + -73.434856, + 45.50959 + ], + [ + -73.434257, + 45.509343 + ], + [ + -73.433925, + 45.509203 + ], + [ + -73.433726, + 45.509117 + ], + [ + -73.433485, + 45.509005 + ], + [ + -73.433108, + 45.508806 + ], + [ + -73.433101, + 45.508802 + ], + [ + -73.432574, + 45.508487 + ], + [ + -73.432044, + 45.508167 + ], + [ + -73.431846, + 45.508041 + ], + [ + -73.43182, + 45.508023 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.431538, + 45.507856 + ], + [ + -73.430825, + 45.507356 + ], + [ + -73.430679, + 45.507221 + ], + [ + -73.430612, + 45.507149 + ], + [ + -73.43049, + 45.506978 + ], + [ + -73.43046, + 45.50692 + ], + [ + -73.430405, + 45.506816 + ], + [ + -73.430319, + 45.506587 + ], + [ + -73.430298, + 45.506497 + ], + [ + -73.430275, + 45.506389 + ], + [ + -73.430272, + 45.506375 + ], + [ + -73.430254, + 45.506263 + ], + [ + -73.430221, + 45.506056 + ], + [ + -73.430022, + 45.505142 + ], + [ + -73.429926, + 45.504769 + ], + [ + -73.429899, + 45.5047 + ], + [ + -73.429873, + 45.504635 + ], + [ + -73.429809, + 45.504476 + ], + [ + -73.429754, + 45.504373 + ], + [ + -73.4297, + 45.504274 + ], + [ + -73.429585, + 45.504116 + ], + [ + -73.429534, + 45.504058 + ], + [ + -73.429455, + 45.503968 + ], + [ + -73.429429, + 45.503936 + ], + [ + -73.429234, + 45.503747 + ], + [ + -73.429121, + 45.503648 + ], + [ + -73.429007, + 45.503562 + ], + [ + -73.428781, + 45.503414 + ], + [ + -73.428662, + 45.503344 + ], + [ + -73.428528, + 45.503265 + ], + [ + -73.428383, + 45.503193 + ], + [ + -73.428061, + 45.503062 + ], + [ + -73.427348, + 45.502808 + ], + [ + -73.427102, + 45.502721 + ], + [ + -73.426292, + 45.502431 + ], + [ + -73.425211, + 45.502047 + ], + [ + -73.423912, + 45.501584 + ], + [ + -73.423518, + 45.501444 + ], + [ + -73.423081, + 45.501291 + ], + [ + -73.422609, + 45.501122 + ], + [ + -73.422513, + 45.501088 + ], + [ + -73.421932, + 45.500878 + ], + [ + -73.421552, + 45.500741 + ], + [ + -73.420988, + 45.50052 + ], + [ + -73.420974, + 45.500516 + ], + [ + -73.420915, + 45.500489 + ], + [ + -73.420674, + 45.50038 + ], + [ + -73.420367, + 45.500227 + ], + [ + -73.420344, + 45.500214 + ], + [ + -73.41991, + 45.499962 + ], + [ + -73.419471, + 45.499673 + ], + [ + -73.419335, + 45.49957 + ], + [ + -73.419049, + 45.499354 + ], + [ + -73.418625, + 45.499061 + ], + [ + -73.418556, + 45.499019 + ], + [ + -73.418366, + 45.498904 + ], + [ + -73.418232, + 45.498822 + ], + [ + -73.417884, + 45.498642 + ], + [ + -73.417509, + 45.498478 + ], + [ + -73.417338, + 45.498403 + ], + [ + -73.416887, + 45.498227 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.415848, + 45.497845 + ], + [ + -73.415069, + 45.497555 + ], + [ + -73.414637, + 45.497397 + ], + [ + -73.414536, + 45.497361 + ], + [ + -73.413391, + 45.496942 + ], + [ + -73.41213, + 45.496482 + ], + [ + -73.411916, + 45.4964 + ], + [ + -73.411766, + 45.496343 + ], + [ + -73.411419, + 45.496194 + ], + [ + -73.410951, + 45.495977 + ], + [ + -73.410895, + 45.495951 + ], + [ + -73.410789, + 45.495896 + ], + [ + -73.409735, + 45.495323 + ], + [ + -73.409349, + 45.495112 + ], + [ + -73.409081, + 45.494957 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.408825, + 45.494811 + ], + [ + -73.408434, + 45.49459 + ], + [ + -73.408369, + 45.494555 + ], + [ + -73.408119, + 45.494419 + ], + [ + -73.407735, + 45.494211 + ], + [ + -73.407648, + 45.494169 + ], + [ + -73.407122, + 45.493914 + ], + [ + -73.406594, + 45.493675 + ], + [ + -73.404056, + 45.49253 + ], + [ + -73.40355, + 45.492282 + ], + [ + -73.403081, + 45.492034 + ], + [ + -73.402782, + 45.491854 + ], + [ + -73.402626, + 45.491759 + ], + [ + -73.402493, + 45.491674 + ], + [ + -73.402463, + 45.491651 + ], + [ + -73.402075, + 45.491386 + ], + [ + -73.401668, + 45.491075 + ], + [ + -73.401167, + 45.490642 + ], + [ + -73.400821, + 45.490307 + ], + [ + -73.40081, + 45.490296 + ], + [ + -73.399882, + 45.489346 + ], + [ + -73.398629, + 45.488062 + ], + [ + -73.398315, + 45.487742 + ], + [ + -73.398311, + 45.487738 + ], + [ + -73.397543, + 45.486952 + ], + [ + -73.397073, + 45.486473 + ], + [ + -73.396515, + 45.485901 + ], + [ + -73.395797, + 45.485167 + ], + [ + -73.395471, + 45.484864 + ], + [ + -73.395424, + 45.48482 + ], + [ + -73.39519, + 45.484626 + ], + [ + -73.394903, + 45.484401 + ], + [ + -73.39454, + 45.484131 + ], + [ + -73.394481, + 45.484095 + ], + [ + -73.394291, + 45.483964 + ], + [ + -73.393942, + 45.483748 + ], + [ + -73.393737, + 45.48363 + ], + [ + -73.393666, + 45.48359 + ], + [ + -73.393194, + 45.483333 + ], + [ + -73.393092, + 45.483281 + ], + [ + -73.389604, + 45.481489 + ], + [ + -73.389467, + 45.481417 + ], + [ + -73.389334, + 45.481534 + ], + [ + -73.389333, + 45.481535 + ], + [ + -73.389135, + 45.481777 + ], + [ + -73.388998, + 45.481957 + ], + [ + -73.388994, + 45.481962 + ], + [ + -73.388761, + 45.482271 + ], + [ + -73.38817, + 45.483085 + ], + [ + -73.388122, + 45.483153 + ], + [ + -73.38807, + 45.483229 + ], + [ + -73.387267, + 45.484313 + ], + [ + -73.386793, + 45.484951 + ], + [ + -73.386456, + 45.485401 + ], + [ + -73.386282, + 45.485639 + ], + [ + -73.386108, + 45.485909 + ], + [ + -73.386075, + 45.485969 + ], + [ + -73.386009, + 45.486084 + ], + [ + -73.385921, + 45.486295 + ], + [ + -73.38587, + 45.486444 + ], + [ + -73.385849, + 45.486507 + ], + [ + -73.385822, + 45.486649 + ], + [ + -73.385794, + 45.486795 + ], + [ + -73.385708, + 45.487123 + ], + [ + -73.385538, + 45.487429 + ], + [ + -73.385285, + 45.487843 + ], + [ + -73.384988, + 45.488254 + ], + [ + -73.384901, + 45.488369 + ], + [ + -73.384743, + 45.488246 + ], + [ + -73.384445, + 45.488089 + ], + [ + -73.384044, + 45.487891 + ], + [ + -73.383491, + 45.487611 + ], + [ + -73.38338, + 45.487555 + ], + [ + -73.382868, + 45.487294 + ], + [ + -73.3825, + 45.487106 + ], + [ + -73.382345, + 45.487025 + ], + [ + -73.382231, + 45.487138 + ], + [ + -73.382081, + 45.487303 + ], + [ + -73.382078, + 45.487305 + ], + [ + -73.381863, + 45.487505 + ], + [ + -73.38174, + 45.487635 + ], + [ + -73.381669, + 45.487708 + ], + [ + -73.381607, + 45.487781 + ], + [ + -73.38156, + 45.487854 + ], + [ + -73.381517, + 45.487933 + ], + [ + -73.381417, + 45.488119 + ], + [ + -73.381404, + 45.488142 + ], + [ + -73.381186, + 45.488604 + ], + [ + -73.380868, + 45.489241 + ], + [ + -73.380814, + 45.489347 + ], + [ + -73.380386, + 45.490223 + ], + [ + -73.380351, + 45.490295 + ], + [ + -73.380087, + 45.490835 + ], + [ + -73.379711, + 45.491585 + ], + [ + -73.379127, + 45.492764 + ], + [ + -73.379078, + 45.492868 + ], + [ + -73.378925, + 45.49319 + ], + [ + -73.378882, + 45.493284 + ], + [ + -73.378825, + 45.493393 + ], + [ + -73.378766, + 45.493505 + ], + [ + -73.378702, + 45.493632 + ], + [ + -73.378691, + 45.493655 + ], + [ + -73.377435, + 45.496193 + ], + [ + -73.377344, + 45.496377 + ], + [ + -73.377276, + 45.496509 + ], + [ + -73.377071, + 45.496916 + ], + [ + -73.376682, + 45.497687 + ], + [ + -73.37615, + 45.498819 + ], + [ + -73.375996, + 45.499106 + ], + [ + -73.375297, + 45.50049 + ], + [ + -73.37513, + 45.500889 + ], + [ + -73.37508, + 45.500984 + ], + [ + -73.37455, + 45.501981 + ], + [ + -73.374382, + 45.50231 + ], + [ + -73.374326, + 45.502409 + ], + [ + -73.374466, + 45.502454 + ], + [ + -73.374509, + 45.502464 + ], + [ + -73.374786, + 45.50253 + ], + [ + -73.375092, + 45.502612 + ], + [ + -73.375264, + 45.502648 + ], + [ + -73.375427, + 45.502684 + ], + [ + -73.375574, + 45.502747 + ], + [ + -73.375726, + 45.502811 + ], + [ + -73.376319, + 45.503059 + ], + [ + -73.376016, + 45.503247 + ], + [ + -73.375972, + 45.503274 + ], + [ + -73.375698, + 45.503485 + ], + [ + -73.375447, + 45.503715 + ], + [ + -73.375293, + 45.503854 + ], + [ + -73.37517, + 45.50398 + ], + [ + -73.374998, + 45.504213 + ], + [ + -73.374854, + 45.504429 + ], + [ + -73.374722, + 45.5046 + ], + [ + -73.374697, + 45.504635 + ], + [ + -73.374644, + 45.504709 + ], + [ + -73.374625, + 45.504735 + ], + [ + -73.374598, + 45.504793 + ], + [ + -73.374583, + 45.504843 + ], + [ + -73.374565, + 45.504919 + ], + [ + -73.374581, + 45.50514 + ], + [ + -73.37462, + 45.505338 + ], + [ + -73.374746, + 45.505563 + ], + [ + -73.374844, + 45.505788 + ], + [ + -73.374951, + 45.505973 + ], + [ + -73.375061, + 45.506067 + ], + [ + -73.375295, + 45.506238 + ], + [ + -73.375424, + 45.506333 + ], + [ + -73.375748, + 45.506597 + ], + [ + -73.375784, + 45.506626 + ], + [ + -73.375859, + 45.506698 + ], + [ + -73.375911, + 45.506761 + ], + [ + -73.375985, + 45.506896 + ], + [ + -73.376046, + 45.507022 + ], + [ + -73.376084, + 45.507108 + ], + [ + -73.376232, + 45.50739 + ], + [ + -73.376268, + 45.507459 + ], + [ + -73.376298, + 45.507513 + ], + [ + -73.376345, + 45.507576 + ], + [ + -73.3764, + 45.507639 + ], + [ + -73.376512, + 45.507729 + ], + [ + -73.376632, + 45.507801 + ], + [ + -73.376837, + 45.507891 + ], + [ + -73.376868, + 45.507902 + ], + [ + -73.376914, + 45.507917 + ], + [ + -73.377114, + 45.507982 + ], + [ + -73.377442, + 45.508081 + ], + [ + -73.377571, + 45.508108 + ], + [ + -73.377699, + 45.508135 + ], + [ + -73.377779, + 45.508144 + ], + [ + -73.377878, + 45.50815 + ], + [ + -73.377933, + 45.508153 + ], + [ + -73.378119, + 45.508163 + ], + [ + -73.378452, + 45.508145 + ], + [ + -73.378562, + 45.50814 + ], + [ + -73.378788, + 45.50813 + ], + [ + -73.379147, + 45.508114 + ], + [ + -73.3793, + 45.508105 + ], + [ + -73.379404, + 45.508091 + ], + [ + -73.379526, + 45.508074 + ], + [ + -73.379622, + 45.508047 + ], + [ + -73.379724, + 45.508025 + ], + [ + -73.379863, + 45.507975 + ], + [ + -73.380059, + 45.50789 + ], + [ + -73.380179, + 45.507823 + ], + [ + -73.380268, + 45.507759 + ], + [ + -73.380399, + 45.507666 + ], + [ + -73.380503, + 45.507585 + ], + [ + -73.380626, + 45.507481 + ], + [ + -73.38128, + 45.507806 + ], + [ + -73.381389, + 45.507851 + ], + [ + -73.381468, + 45.507752 + ], + [ + -73.381562, + 45.507572 + ], + [ + -73.381667, + 45.507356 + ], + [ + -73.381733, + 45.507226 + ], + [ + -73.381816, + 45.507051 + ], + [ + -73.381935, + 45.506785 + ], + [ + -73.382054, + 45.506552 + ], + [ + -73.382181, + 45.506291 + ], + [ + -73.382294, + 45.50607 + ], + [ + -73.382297, + 45.506061 + ], + [ + -73.382427, + 45.506097 + ], + [ + -73.384621, + 45.506625 + ] + ] + }, + "id": 29, + "properties": { + "id": "30648951-5d10-46eb-9104-08963a732674", + "data": { + "gtfs": { + "shape_id": "8_1_R" + }, + "segments": [ + { + "distanceMeters": 1370, + "travelTimeSeconds": 159 + }, + { + "distanceMeters": 629, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 434, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 511, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 378, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 446, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 344, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 387, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 316, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 432, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 820, + "travelTimeSeconds": 94 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 390, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 368, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 555, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 434, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 312, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 477, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 663, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 385, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 877, + "travelTimeSeconds": 70 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 216, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 18803, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11333.805254856334, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.7, + "travelTimeWithoutDwellTimesSeconds": 2160, + "operatingTimeWithLayoverTimeSeconds": 2376, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2160, + "operatingSpeedWithLayoverMetersPerSecond": 7.91, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.7 + }, + "mode": "bus", + "name": "Promenades St-Bruno", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "b19be6c8-c333-401a-98e4-d16876257831", + "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "d00d9138-966b-4522-be1d-8c665c71246b", + "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", + "48ea0d06-7b69-4895-b55b-2a18e6e6f906", + "21e2e89a-3df0-4ff7-aa64-17a07fbd660e", + "0b419003-a369-45de-8ce5-7da6890d7f0a", + "680dba5d-14fa-4f77-98bd-f3a49fec7b48", + "f45a38ac-0f3f-41d9-9da1-be7902cc983a", + "9cf81604-6d70-4ba8-a3fc-521104742058", + "28f2fe65-961c-4550-a722-1e7790fe94ad", + "9d0a7ab6-be66-4ca9-b863-8712d8cd028c", + "999ed130-7d99-4115-ac3c-cabba7731288", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "27c5df15-201f-4855-9f49-556fd659fd8e", + "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", + "aa7795c0-dd5c-4462-b672-459c92223af2", + "49918c5a-8414-49fd-abf9-87ae6b9f3976", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "011d1f54-164c-4564-a051-bdacad3e287d", + "c3a2368c-bf2d-4c72-9adb-41ee799004b3", + "6885c351-726d-4431-84b5-d9262699183f", + "4e3112b5-abc7-4db5-a6a8-19b4193263c2", + "a5ca0f69-bb6f-4ef0-aaaa-1498b5ff9d00", + "ca3fc9fc-e2eb-41c4-a8d2-0ad2d2109db1", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "d3991811-d92b-4ba2-9732-26a74abc49b7", + "a873c2b7-5c8e-4dd4-9140-a7e8d042d038", + "b8513e69-5eee-478d-b428-8f498c145b40", + "344c16fc-7161-4015-9999-e3e0f325dd1e", + "abd431b8-dcf2-4c7a-a458-732690905187", + "dcaa1460-3c81-4616-b65b-ed7fae894032", + "a3922a48-9f26-4845-9881-2b33d59d0127", + "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", + "686bdc34-3602-4c31-b05f-c41f9ebe2543", + "48cbd834-3690-4d56-af66-277be54f9820", + "648a2d3d-42dd-4ea9-875b-0eb410b8b1e8", + "74cb2351-ff1a-4938-8179-802bb3572f42", + "b904303e-de8b-4c71-8b48-48af0de2a9a1", + "61fd8171-4497-441f-b32a-7917186d6014", + "7de9ea25-e152-4431-8cc3-23b5e1427ab3", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "5dd96d41-c4eb-4453-9e97-752999b1688d", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "df4c6e14-8093-4f02-87d3-4b3d84466b04", + "7c34d8fb-52d2-4cf7-8954-ff69847540ac", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "7b30134c-a936-4c6b-8038-780d1041baea", + "9f7ffafe-2aab-4507-b571-cce792adfb7d", + "ff83e3ed-db76-4049-b206-f6a7eb53237f" + ], + "stops": [], + "line_id": "22e67405-9e1a-4912-aa11-919864f608e1", + "segments": [ + 0, + 56, + 75, + 81, + 89, + 100, + 108, + 112, + 117, + 122, + 131, + 135, + 141, + 146, + 150, + 156, + 165, + 173, + 182, + 188, + 192, + 195, + 201, + 203, + 205, + 207, + 215, + 227, + 244, + 249, + 266, + 268, + 281, + 287, + 298, + 301, + 309, + 316, + 331, + 333, + 339, + 350, + 354, + 367, + 383, + 396, + 401, + 406, + 416, + 427, + 445, + 465 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 29, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.426706, + 45.506817 + ], + [ + -73.426601, + 45.507025 + ], + [ + -73.426318, + 45.507578 + ], + [ + -73.426298, + 45.507614 + ], + [ + -73.42627, + 45.507659 + ], + [ + -73.426239, + 45.507691 + ], + [ + -73.426194, + 45.507718 + ], + [ + -73.426141, + 45.507753 + ], + [ + -73.425991, + 45.507803 + ], + [ + -73.425844, + 45.507844 + ], + [ + -73.425671, + 45.507884 + ], + [ + -73.425517, + 45.507911 + ], + [ + -73.425226, + 45.507965 + ], + [ + -73.425136, + 45.507976 + ], + [ + -73.424982, + 45.507996 + ], + [ + -73.424804, + 45.508018 + ], + [ + -73.424075, + 45.508099 + ], + [ + -73.423658, + 45.508135 + ], + [ + -73.423075, + 45.50817 + ], + [ + -73.422749, + 45.508193 + ], + [ + -73.422385, + 45.508219 + ], + [ + -73.420612, + 45.508335 + ], + [ + -73.418548, + 45.508464 + ], + [ + -73.417901, + 45.508502 + ], + [ + -73.417791, + 45.508509 + ], + [ + -73.416795, + 45.50858 + ], + [ + -73.414904, + 45.508705 + ], + [ + -73.41478, + 45.508713 + ], + [ + -73.414755, + 45.50847 + ], + [ + -73.414738, + 45.508339 + ], + [ + -73.414729, + 45.508272 + ], + [ + -73.414689, + 45.508002 + ], + [ + -73.41461, + 45.507863 + ], + [ + -73.414461, + 45.507795 + ], + [ + -73.414263, + 45.507764 + ], + [ + -73.413354, + 45.507827 + ], + [ + -73.41298, + 45.507853 + ], + [ + -73.412929, + 45.507488 + ], + [ + -73.412886, + 45.507187 + ], + [ + -73.412894, + 45.507083 + ], + [ + -73.412909, + 45.507038 + ], + [ + -73.412951, + 45.506962 + ], + [ + -73.412993, + 45.506876 + ], + [ + -73.413113, + 45.506647 + ], + [ + -73.413298, + 45.506287 + ], + [ + -73.413426, + 45.506022 + ], + [ + -73.413444, + 45.505954 + ], + [ + -73.413447, + 45.505864 + ], + [ + -73.413421, + 45.505761 + ], + [ + -73.413394, + 45.505639 + ], + [ + -73.413362, + 45.505542 + ], + [ + -73.413318, + 45.50541 + ], + [ + -73.413143, + 45.505428 + ], + [ + -73.413013, + 45.505441 + ], + [ + -73.412864, + 45.50545 + ], + [ + -73.412747, + 45.50545 + ], + [ + -73.412645, + 45.505436 + ], + [ + -73.412507, + 45.505418 + ], + [ + -73.411658, + 45.505218 + ], + [ + -73.411569, + 45.505197 + ], + [ + -73.41077, + 45.504994 + ], + [ + -73.409954, + 45.504798 + ], + [ + -73.409774, + 45.504755 + ], + [ + -73.409315, + 45.504637 + ], + [ + -73.408932, + 45.504538 + ], + [ + -73.408367, + 45.504398 + ], + [ + -73.407928, + 45.504289 + ], + [ + -73.407766, + 45.504249 + ], + [ + -73.407616, + 45.504568 + ], + [ + -73.407466, + 45.504879 + ], + [ + -73.406471, + 45.506871 + ], + [ + -73.406247, + 45.507321 + ], + [ + -73.406194, + 45.507427 + ], + [ + -73.406159, + 45.507496 + ], + [ + -73.40548, + 45.508881 + ], + [ + -73.40545, + 45.508953 + ], + [ + -73.405438, + 45.509025 + ], + [ + -73.40546, + 45.509233 + ], + [ + -73.405469, + 45.509313 + ], + [ + -73.404168, + 45.509416 + ], + [ + -73.403309, + 45.509478 + ], + [ + -73.402911, + 45.509505 + ], + [ + -73.402551, + 45.509518 + ], + [ + -73.400685, + 45.509557 + ], + [ + -73.400193, + 45.50957 + ], + [ + -73.399756, + 45.509583 + ], + [ + -73.39958, + 45.509593 + ], + [ + -73.399448, + 45.509601 + ], + [ + -73.399352, + 45.508899 + ], + [ + -73.39931, + 45.508585 + ], + [ + -73.399294, + 45.508462 + ], + [ + -73.399247, + 45.508093 + ], + [ + -73.399228, + 45.507945 + ], + [ + -73.399213, + 45.507801 + ], + [ + -73.399133, + 45.507198 + ], + [ + -73.399108, + 45.507031 + ], + [ + -73.399108, + 45.507029 + ], + [ + -73.399117, + 45.50695 + ], + [ + -73.39914, + 45.506797 + ], + [ + -73.399188, + 45.506676 + ], + [ + -73.399379, + 45.50637 + ], + [ + -73.399802, + 45.506078 + ], + [ + -73.399985, + 45.50597 + ], + [ + -73.400014, + 45.505955 + ], + [ + -73.400152, + 45.505885 + ], + [ + -73.400052, + 45.505795 + ], + [ + -73.399949, + 45.505664 + ], + [ + -73.399886, + 45.505552 + ], + [ + -73.39982, + 45.505426 + ], + [ + -73.399787, + 45.505322 + ], + [ + -73.39976, + 45.505156 + ], + [ + -73.399736, + 45.504811 + ], + [ + -73.399729, + 45.504706 + ], + [ + -73.399657, + 45.504175 + ], + [ + -73.399564, + 45.503515 + ], + [ + -73.399542, + 45.50336 + ], + [ + -73.399508, + 45.503131 + ], + [ + -73.399441, + 45.502676 + ], + [ + -73.399417, + 45.50246 + ], + [ + -73.399403, + 45.502353 + ], + [ + -73.399355, + 45.501992 + ], + [ + -73.399874, + 45.501962 + ], + [ + -73.400805, + 45.501907 + ], + [ + -73.40102, + 45.501895 + ], + [ + -73.402013, + 45.501846 + ], + [ + -73.402508, + 45.501802 + ], + [ + -73.402792, + 45.501768 + ], + [ + -73.402812, + 45.501766 + ], + [ + -73.402978, + 45.501726 + ], + [ + -73.403257, + 45.501667 + ], + [ + -73.403564, + 45.501582 + ], + [ + -73.4038, + 45.50151 + ], + [ + -73.404012, + 45.501416 + ], + [ + -73.404181, + 45.501344 + ], + [ + -73.404368, + 45.50125 + ], + [ + -73.404541, + 45.501151 + ], + [ + -73.404768, + 45.501003 + ], + [ + -73.405014, + 45.500818 + ], + [ + -73.40518, + 45.500655 + ], + [ + -73.405183, + 45.500652 + ], + [ + -73.40521, + 45.500625 + ], + [ + -73.405385, + 45.500423 + ], + [ + -73.405524, + 45.500243 + ], + [ + -73.405638, + 45.500032 + ], + [ + -73.405906, + 45.499487 + ], + [ + -73.406057, + 45.499182 + ], + [ + -73.40631, + 45.498674 + ], + [ + -73.406337, + 45.498619 + ], + [ + -73.406457, + 45.498439 + ], + [ + -73.406574, + 45.498264 + ], + [ + -73.407513, + 45.498634 + ], + [ + -73.407743, + 45.498715 + ], + [ + -73.408565, + 45.499044 + ], + [ + -73.408613, + 45.499067 + ], + [ + -73.408846, + 45.499152 + ], + [ + -73.409074, + 45.499238 + ], + [ + -73.409299, + 45.499326 + ], + [ + -73.40994, + 45.499576 + ], + [ + -73.41035, + 45.499737 + ], + [ + -73.410514, + 45.499802 + ], + [ + -73.410857, + 45.499937 + ], + [ + -73.411184, + 45.500063 + ], + [ + -73.411736, + 45.500269 + ], + [ + -73.411788, + 45.500288 + ], + [ + -73.412014, + 45.500375 + ], + [ + -73.412332, + 45.500496 + ], + [ + -73.412769, + 45.500658 + ], + [ + -73.41311, + 45.500798 + ], + [ + -73.413399, + 45.500906 + ], + [ + -73.413646, + 45.500992 + ], + [ + -73.414045, + 45.501145 + ], + [ + -73.414425, + 45.501288 + ], + [ + -73.414536, + 45.50133 + ], + [ + -73.414962, + 45.501488 + ], + [ + -73.415352, + 45.501632 + ], + [ + -73.415771, + 45.501785 + ], + [ + -73.416178, + 45.501934 + ], + [ + -73.416751, + 45.502146 + ], + [ + -73.417055, + 45.502257 + ], + [ + -73.417293, + 45.502344 + ], + [ + -73.417806, + 45.502538 + ], + [ + -73.418173, + 45.502669 + ], + [ + -73.418847, + 45.502921 + ], + [ + -73.418856, + 45.502925 + ], + [ + -73.419167, + 45.503047 + ], + [ + -73.419278, + 45.503088 + ], + [ + -73.419673, + 45.503241 + ], + [ + -73.420142, + 45.503431 + ], + [ + -73.420676, + 45.503659 + ], + [ + -73.420806, + 45.503714 + ], + [ + -73.421234, + 45.503904 + ], + [ + -73.421648, + 45.504084 + ], + [ + -73.422009, + 45.504242 + ], + [ + -73.422355, + 45.50439 + ], + [ + -73.423115, + 45.504715 + ], + [ + -73.423488, + 45.504876 + ], + [ + -73.42368, + 45.504958 + ], + [ + -73.423967, + 45.505084 + ], + [ + -73.424527, + 45.505328 + ], + [ + -73.42486, + 45.505472 + ], + [ + -73.424965, + 45.505517 + ], + [ + -73.425433, + 45.505715 + ], + [ + -73.425471, + 45.505742 + ], + [ + -73.425589, + 45.505823 + ], + [ + -73.425852, + 45.505949 + ], + [ + -73.426079, + 45.506046 + ], + [ + -73.426348, + 45.506161 + ], + [ + -73.426669, + 45.506298 + ], + [ + -73.426919, + 45.506405 + ], + [ + -73.42775, + 45.506774 + ], + [ + -73.427847, + 45.506792 + ], + [ + -73.428015, + 45.506824 + ], + [ + -73.428153, + 45.506828 + ], + [ + -73.428285, + 45.506833 + ], + [ + -73.428429, + 45.506818 + ], + [ + -73.428656, + 45.506779 + ], + [ + -73.428772, + 45.506761 + ], + [ + -73.428988, + 45.506721 + ], + [ + -73.429213, + 45.50668 + ], + [ + -73.430099, + 45.506555 + ], + [ + -73.430298, + 45.506497 + ], + [ + -73.43042, + 45.506461 + ], + [ + -73.430657, + 45.506416 + ], + [ + -73.430775, + 45.506407 + ], + [ + -73.430973, + 45.506398 + ], + [ + -73.431142, + 45.506394 + ], + [ + -73.431236, + 45.506407 + ], + [ + -73.431326, + 45.506421 + ], + [ + -73.43148, + 45.506448 + ], + [ + -73.431617, + 45.506484 + ], + [ + -73.431849, + 45.50657 + ], + [ + -73.432042, + 45.506664 + ], + [ + -73.432116, + 45.506678 + ], + [ + -73.432305, + 45.506772 + ], + [ + -73.432507, + 45.50688 + ], + [ + -73.432697, + 45.506971 + ], + [ + -73.432823, + 45.507025 + ], + [ + -73.432958, + 45.507065 + ], + [ + -73.43308, + 45.507092 + ], + [ + -73.433316, + 45.507128 + ], + [ + -73.433481, + 45.507146 + ], + [ + -73.434228, + 45.507219 + ], + [ + -73.435015, + 45.507249 + ], + [ + -73.435792, + 45.507278 + ], + [ + -73.436434, + 45.507297 + ], + [ + -73.43796, + 45.507288 + ], + [ + -73.438426, + 45.507284 + ], + [ + -73.439054, + 45.507258 + ], + [ + -73.442227, + 45.507039 + ], + [ + -73.442366, + 45.507034 + ], + [ + -73.442555, + 45.507021 + ], + [ + -73.443732, + 45.506945 + ], + [ + -73.445125, + 45.506865 + ], + [ + -73.445578, + 45.50682 + ], + [ + -73.446069, + 45.506789 + ], + [ + -73.447691, + 45.506681 + ], + [ + -73.450484, + 45.506494 + ], + [ + -73.45126, + 45.506445 + ], + [ + -73.451887, + 45.506404 + ], + [ + -73.452198, + 45.506382 + ], + [ + -73.452619, + 45.506355 + ], + [ + -73.452813, + 45.506342 + ], + [ + -73.453036, + 45.506328 + ], + [ + -73.453375, + 45.506301 + ], + [ + -73.453626, + 45.506284 + ], + [ + -73.453792, + 45.506275 + ], + [ + -73.45462, + 45.506212 + ], + [ + -73.455407, + 45.506145 + ], + [ + -73.4557, + 45.506113 + ], + [ + -73.456027, + 45.506073 + ], + [ + -73.456441, + 45.506015 + ], + [ + -73.456937, + 45.505934 + ], + [ + -73.457379, + 45.505858 + ], + [ + -73.457907, + 45.505777 + ], + [ + -73.459817, + 45.505548 + ], + [ + -73.460124, + 45.505512 + ], + [ + -73.460429, + 45.505476 + ], + [ + -73.460924, + 45.505418 + ], + [ + -73.46135, + 45.505363 + ], + [ + -73.461479, + 45.505346 + ], + [ + -73.461828, + 45.505274 + ], + [ + -73.462125, + 45.505283 + ], + [ + -73.462434, + 45.505254 + ], + [ + -73.462468, + 45.505444 + ], + [ + -73.462548, + 45.505805 + ], + [ + -73.462686, + 45.505794 + ], + [ + -73.464899, + 45.505604 + ], + [ + -73.465836, + 45.50551 + ], + [ + -73.467696, + 45.505308 + ], + [ + -73.468178, + 45.505267 + ], + [ + -73.470418, + 45.50511 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492937, + 45.510118 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497944, + 45.512059 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.500895, + 45.513013 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505136, + 45.514487 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506107, + 45.514749 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515009, + 45.519424 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518902, + 45.520632 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 30, + "properties": { + "id": "850f74ed-cae6-4d9f-9eaa-05af1edec586", + "data": { + "gtfs": { + "shape_id": "9_1_A" + }, + "segments": [ + { + "distanceMeters": 197, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 380, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 388, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 470, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 5741, + "travelTimeSeconds": 420 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 987, + "travelTimeSeconds": 170 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 744, + "travelTimeSeconds": 129 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 192, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 15386, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7601.092679000949, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.01, + "travelTimeWithoutDwellTimesSeconds": 1920, + "operatingTimeWithLayoverTimeSeconds": 2112, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1920, + "operatingSpeedWithLayoverMetersPerSecond": 7.28, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.01 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", + "b989758c-7e40-49d2-b551-b6f0e525013b", + "8760b56a-bae1-4862-80b6-347cc65704e3", + "86f64d55-814a-4fbc-858b-c5c25e590481", + "a591956d-b42e-4489-8d54-3a5d5df835c1", + "16d596f0-097e-4afe-b8c4-9b129c3c3d66", + "72cda4fb-fbe8-47ba-b42e-f310ef91d335", + "bf493d01-4cc2-40cf-9fee-339de5acd0ce", + "35110be1-21ec-490a-b4c8-8b20aa6bef7f", + "aa49b5ca-26fd-4fe1-8e89-4237204a7250", + "6212287c-a903-4f14-b932-9fa7dcb13f7b", + "0ea4fa54-ee0f-4999-90e6-2b0f71f6030e", + "c22b0880-b3ca-4797-aa47-0cda85146514", + "ff0214aa-5a67-4237-87c2-863aa17e8087", + "6765611d-305b-41e3-b519-b65e608494ba", + "b20c17a3-277e-418e-90be-8f8d32918ba9", + "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", + "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", + "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", + "00ed067b-7627-492d-ac0f-5d03bd3b185c", + "dc630e4d-102e-48b9-8b4a-920cafc01d4a", + "d2cca46c-df28-490b-b5de-9bc99956bc15", + "aab8672e-86c9-4a43-9806-f5135dc02b4e", + "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", + "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", + "69889f24-c076-4661-981b-6008a401d446", + "853b0202-bae1-4c20-ab0e-8b27d1350e9a", + "46ea2114-c4d6-46e8-be5d-60d028340abb", + "e460be07-05e4-49f8-a725-e63809c74139", + "235a92b0-53e1-410c-b264-d57c7814303c", + "7207a900-095a-4a6f-9e58-d5821a46e7d1", + "2d759b9b-5efb-4a57-814c-915d6b6185d7", + "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "a5b9648a-83c0-4eab-a54b-68c23aecae43", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "cd0e7785-c68b-4cce-83f8-55ea692f6e31", + "segments": [ + 0, + 13, + 19, + 23, + 26, + 35, + 50, + 58, + 61, + 66, + 72, + 77, + 86, + 89, + 96, + 103, + 111, + 114, + 119, + 122, + 126, + 138, + 148, + 156, + 158, + 164, + 171, + 178, + 183, + 188, + 195, + 199, + 207, + 324, + 337, + 340, + 347, + 383, + 389 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 30, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521447, + 45.524278 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519264, + 45.520728 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.518513, + 45.520507 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.515006, + 45.519331 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.51323, + 45.517465 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509952, + 45.515502 + ], + [ + -73.509485, + 45.515357 + ], + [ + -73.509478, + 45.515354 + ], + [ + -73.509376, + 45.515323 + ], + [ + -73.508692, + 45.515143 + ], + [ + -73.508296, + 45.51503 + ], + [ + -73.507817, + 45.514868 + ], + [ + -73.507704, + 45.514841 + ], + [ + -73.507464, + 45.514765 + ], + [ + -73.506516, + 45.514432 + ], + [ + -73.505464, + 45.514054 + ], + [ + -73.505166, + 45.51396 + ], + [ + -73.504861, + 45.513863 + ], + [ + -73.504794, + 45.513842 + ], + [ + -73.504451, + 45.513734 + ], + [ + -73.50434, + 45.513699 + ], + [ + -73.504259, + 45.513672 + ], + [ + -73.503369, + 45.513397 + ], + [ + -73.502433, + 45.51315 + ], + [ + -73.502048, + 45.513078 + ], + [ + -73.501572, + 45.512943 + ], + [ + -73.501411, + 45.512898 + ], + [ + -73.50108, + 45.512799 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499691, + 45.512352 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498228, + 45.511895 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.494318, + 45.510462 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.494088, + 45.51035 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491861, + 45.508711 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488355, + 45.503066 + ], + [ + -73.4883, + 45.502913 + ], + [ + -73.488219, + 45.502531 + ], + [ + -73.488223, + 45.502405 + ], + [ + -73.488245, + 45.502293 + ], + [ + -73.488296, + 45.502185 + ], + [ + -73.488375, + 45.502086 + ], + [ + -73.488484, + 45.502 + ], + [ + -73.488609, + 45.501937 + ], + [ + -73.48874, + 45.501892 + ], + [ + -73.48888, + 45.501865 + ], + [ + -73.489028, + 45.501856 + ], + [ + -73.489181, + 45.501865 + ], + [ + -73.489324, + 45.501892 + ], + [ + -73.489461, + 45.501933 + ], + [ + -73.489585, + 45.501991 + ], + [ + -73.489692, + 45.502068 + ], + [ + -73.489786, + 45.502153 + ], + [ + -73.489942, + 45.502342 + ], + [ + -73.490006, + 45.50245 + ], + [ + -73.490054, + 45.502558 + ], + [ + -73.490086, + 45.502666 + ], + [ + -73.490092, + 45.502779 + ], + [ + -73.490078, + 45.502833 + ], + [ + -73.490064, + 45.502891 + ], + [ + -73.490004, + 45.502995 + ], + [ + -73.489917, + 45.503094 + ], + [ + -73.489808, + 45.503175 + ], + [ + -73.489675, + 45.503242 + ], + [ + -73.489524, + 45.503287 + ], + [ + -73.489359, + 45.50331 + ], + [ + -73.489186, + 45.503323 + ], + [ + -73.488817, + 45.503318 + ], + [ + -73.487515, + 45.503242 + ], + [ + -73.486872, + 45.503273 + ], + [ + -73.486502, + 45.503323 + ], + [ + -73.486146, + 45.503381 + ], + [ + -73.484224, + 45.503808 + ], + [ + -73.483407, + 45.503957 + ], + [ + -73.482922, + 45.504029 + ], + [ + -73.482166, + 45.504114 + ], + [ + -73.481092, + 45.504204 + ], + [ + -73.4802, + 45.504262 + ], + [ + -73.47719, + 45.50446 + ], + [ + -73.477132, + 45.504462 + ], + [ + -73.474463, + 45.504585 + ], + [ + -73.473732, + 45.504621 + ], + [ + -73.47326, + 45.50463 + ], + [ + -73.472594, + 45.504625 + ], + [ + -73.472184, + 45.504602 + ], + [ + -73.471986, + 45.50458 + ], + [ + -73.471671, + 45.504521 + ], + [ + -73.471417, + 45.504449 + ], + [ + -73.471243, + 45.504386 + ], + [ + -73.471084, + 45.504314 + ], + [ + -73.470936, + 45.504242 + ], + [ + -73.470798, + 45.504161 + ], + [ + -73.470671, + 45.504076 + ], + [ + -73.470553, + 45.503986 + ], + [ + -73.469982, + 45.503502 + ], + [ + -73.469677, + 45.503226 + ], + [ + -73.469614, + 45.503168 + ], + [ + -73.469513, + 45.50323 + ], + [ + -73.469419, + 45.503287 + ], + [ + -73.469308, + 45.503357 + ], + [ + -73.469279, + 45.503422 + ], + [ + -73.469231, + 45.50345 + ], + [ + -73.468749, + 45.503738 + ], + [ + -73.468134, + 45.504106 + ], + [ + -73.46771, + 45.504363 + ], + [ + -73.467476, + 45.504484 + ], + [ + -73.467257, + 45.504583 + ], + [ + -73.467047, + 45.504673 + ], + [ + -73.466778, + 45.504767 + ], + [ + -73.466492, + 45.50483 + ], + [ + -73.466169, + 45.504898 + ], + [ + -73.465884, + 45.504943 + ], + [ + -73.46553, + 45.504965 + ], + [ + -73.465067, + 45.504996 + ], + [ + -73.464545, + 45.505041 + ], + [ + -73.463624, + 45.505104 + ], + [ + -73.46332, + 45.50509 + ], + [ + -73.462732, + 45.505141 + ], + [ + -73.462564, + 45.505155 + ], + [ + -73.462414, + 45.50516 + ], + [ + -73.462303, + 45.505157 + ], + [ + -73.462173, + 45.505157 + ], + [ + -73.462046, + 45.50518 + ], + [ + -73.461961, + 45.505207 + ], + [ + -73.461828, + 45.505274 + ], + [ + -73.461479, + 45.505346 + ], + [ + -73.460924, + 45.505418 + ], + [ + -73.460429, + 45.505476 + ], + [ + -73.460124, + 45.505512 + ], + [ + -73.459817, + 45.505548 + ], + [ + -73.459099, + 45.505634 + ], + [ + -73.457907, + 45.505777 + ], + [ + -73.457379, + 45.505858 + ], + [ + -73.456937, + 45.505934 + ], + [ + -73.456441, + 45.506015 + ], + [ + -73.456402, + 45.50602 + ], + [ + -73.456027, + 45.506073 + ], + [ + -73.4557, + 45.506113 + ], + [ + -73.455407, + 45.506145 + ], + [ + -73.45462, + 45.506212 + ], + [ + -73.453792, + 45.506275 + ], + [ + -73.453626, + 45.506284 + ], + [ + -73.453522, + 45.506291 + ], + [ + -73.453375, + 45.506301 + ], + [ + -73.453036, + 45.506328 + ], + [ + -73.452813, + 45.506342 + ], + [ + -73.452619, + 45.506355 + ], + [ + -73.452198, + 45.506382 + ], + [ + -73.451887, + 45.506404 + ], + [ + -73.45126, + 45.506445 + ], + [ + -73.450484, + 45.506494 + ], + [ + -73.448371, + 45.506636 + ], + [ + -73.447691, + 45.506681 + ], + [ + -73.446069, + 45.506789 + ], + [ + -73.445578, + 45.50682 + ], + [ + -73.445287, + 45.506849 + ], + [ + -73.445125, + 45.506865 + ], + [ + -73.443732, + 45.506945 + ], + [ + -73.442555, + 45.507021 + ], + [ + -73.442468, + 45.507027 + ], + [ + -73.442366, + 45.507034 + ], + [ + -73.442227, + 45.507039 + ], + [ + -73.439054, + 45.507258 + ], + [ + -73.438426, + 45.507284 + ], + [ + -73.438168, + 45.507287 + ], + [ + -73.43796, + 45.507288 + ], + [ + -73.436434, + 45.507297 + ], + [ + -73.435792, + 45.507278 + ], + [ + -73.435015, + 45.507249 + ], + [ + -73.434228, + 45.507219 + ], + [ + -73.433642, + 45.507162 + ], + [ + -73.433481, + 45.507146 + ], + [ + -73.433316, + 45.507128 + ], + [ + -73.43308, + 45.507092 + ], + [ + -73.432958, + 45.507065 + ], + [ + -73.432823, + 45.507025 + ], + [ + -73.432697, + 45.506971 + ], + [ + -73.432507, + 45.50688 + ], + [ + -73.432305, + 45.506772 + ], + [ + -73.432116, + 45.506678 + ], + [ + -73.432105, + 45.506615 + ], + [ + -73.431909, + 45.506516 + ], + [ + -73.431784, + 45.506462 + ], + [ + -73.431667, + 45.506423 + ], + [ + -73.431662, + 45.506421 + ], + [ + -73.431524, + 45.506385 + ], + [ + -73.431353, + 45.506349 + ], + [ + -73.431252, + 45.506335 + ], + [ + -73.431192, + 45.50633 + ], + [ + -73.431145, + 45.506326 + ], + [ + -73.430968, + 45.506317 + ], + [ + -73.430791, + 45.506326 + ], + [ + -73.430645, + 45.506339 + ], + [ + -73.43052, + 45.506357 + ], + [ + -73.430422, + 45.506366 + ], + [ + -73.430275, + 45.506389 + ], + [ + -73.430066, + 45.506425 + ], + [ + -73.428871, + 45.506622 + ], + [ + -73.428854, + 45.506625 + ], + [ + -73.428419, + 45.506698 + ], + [ + -73.428282, + 45.506718 + ], + [ + -73.428165, + 45.506711 + ], + [ + -73.427996, + 45.506684 + ], + [ + -73.427898, + 45.506666 + ], + [ + -73.427771, + 45.506635 + ], + [ + -73.427639, + 45.506594 + ], + [ + -73.427205, + 45.506406 + ], + [ + -73.426972, + 45.506306 + ], + [ + -73.426919, + 45.506405 + ], + [ + -73.426846, + 45.50654 + ], + [ + -73.426706, + 45.506817 + ] + ] + }, + "id": 31, + "properties": { + "id": "9b08069e-68bc-49f8-a0a7-4217f41e952c", + "data": { + "gtfs": { + "shape_id": "9_1_R" + }, + "segments": [ + { + "distanceMeters": 763, + "travelTimeSeconds": 89 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 384, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 403, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 345, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 2756, + "travelTimeSeconds": 331 + }, + { + "distanceMeters": 561, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 404, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 337, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 82, + "travelTimeSeconds": 10 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9578, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7601.092679000949, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.4, + "travelTimeWithoutDwellTimesSeconds": 1140, + "operatingTimeWithLayoverTimeSeconds": 1320, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1140, + "operatingSpeedWithLayoverMetersPerSecond": 7.26, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.4 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "d3215c60-bb9e-40ac-89e4-1f922b39e266", + "f9358f54-8643-47f5-b0df-4a20b46cc22d", + "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", + "f4f29738-df3f-4d69-8632-9088ded0dc5a", + "741876fc-030a-42f6-a33a-8f1f9c2aba12", + "688a3f67-a176-441e-a399-c92a55de9c74", + "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", + "37199bb2-9740-4484-b68f-12d3c82f8bf9", + "c17cc951-65ff-4617-a096-ccd1fe6cc26f", + "d283f176-a2d6-456a-b4b2-f380ae924031", + "05522d17-41d4-4e98-a458-ec71ea1a802b", + "a2cddc2b-b7ec-4035-951f-7045ea83427b", + "a4e1d210-6aad-44a6-b6a6-31d75e66d6c9", + "c9ccd441-872f-4e75-b699-0014386c3503", + "92abcd2a-82ad-467f-8946-055423a9c2c9", + "631a5504-9e7c-4041-85e7-bf81e6a995d2", + "b487112d-20d7-48e5-a658-6d701c316792", + "2f59e70c-00bf-46fc-9104-53f0aa9fb5e8", + "2f531374-1848-411d-97c8-17a070d5c4b1", + "e5c099f9-8206-4175-8a7b-065df2f3b304", + "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", + "c1aeb7b2-96eb-465c-a03f-d65b102a8eea" + ], + "stops": [], + "line_id": "cd0e7785-c68b-4cce-83f8-55ea692f6e31", + "segments": [ + 0, + 47, + 55, + 62, + 72, + 83, + 90, + 94, + 98, + 109, + 120, + 197, + 213, + 226, + 231, + 238, + 247, + 251, + 255, + 260, + 266, + 279, + 294, + 302 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 31, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521447, + 45.524278 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519263, + 45.520728 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.518513, + 45.520507 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.515004, + 45.51933 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513229, + 45.517464 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509952, + 45.515502 + ], + [ + -73.509485, + 45.515357 + ], + [ + -73.509475, + 45.515353 + ], + [ + -73.509376, + 45.515323 + ], + [ + -73.508692, + 45.515143 + ], + [ + -73.508296, + 45.51503 + ], + [ + -73.507817, + 45.514868 + ], + [ + -73.507704, + 45.514841 + ], + [ + -73.507464, + 45.514765 + ], + [ + -73.506516, + 45.514432 + ], + [ + -73.505464, + 45.514054 + ], + [ + -73.505166, + 45.51396 + ], + [ + -73.504861, + 45.513863 + ], + [ + -73.50479, + 45.513841 + ], + [ + -73.504451, + 45.513734 + ], + [ + -73.50434, + 45.513699 + ], + [ + -73.504259, + 45.513672 + ], + [ + -73.503369, + 45.513397 + ], + [ + -73.502433, + 45.51315 + ], + [ + -73.502048, + 45.513078 + ], + [ + -73.501567, + 45.512942 + ], + [ + -73.501411, + 45.512898 + ], + [ + -73.50108, + 45.512799 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499686, + 45.51235 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498223, + 45.511894 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.494313, + 45.51046 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.494088, + 45.51035 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491857, + 45.508707 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488355, + 45.503066 + ], + [ + -73.4883, + 45.502913 + ], + [ + -73.488219, + 45.502531 + ], + [ + -73.488223, + 45.502405 + ], + [ + -73.488245, + 45.502293 + ], + [ + -73.488296, + 45.502185 + ], + [ + -73.488375, + 45.502086 + ], + [ + -73.488484, + 45.502 + ], + [ + -73.488609, + 45.501937 + ], + [ + -73.48874, + 45.501892 + ], + [ + -73.48888, + 45.501865 + ], + [ + -73.489028, + 45.501856 + ], + [ + -73.489181, + 45.501865 + ], + [ + -73.489324, + 45.501892 + ], + [ + -73.489461, + 45.501933 + ], + [ + -73.489585, + 45.501991 + ], + [ + -73.489692, + 45.502068 + ], + [ + -73.489786, + 45.502153 + ], + [ + -73.489942, + 45.502342 + ], + [ + -73.490006, + 45.50245 + ], + [ + -73.490054, + 45.502558 + ], + [ + -73.490086, + 45.502666 + ], + [ + -73.490092, + 45.502779 + ], + [ + -73.490078, + 45.502833 + ], + [ + -73.490064, + 45.502891 + ], + [ + -73.490004, + 45.502995 + ], + [ + -73.489917, + 45.503094 + ], + [ + -73.489808, + 45.503175 + ], + [ + -73.489675, + 45.503242 + ], + [ + -73.489524, + 45.503287 + ], + [ + -73.489359, + 45.50331 + ], + [ + -73.489186, + 45.503323 + ], + [ + -73.488817, + 45.503318 + ], + [ + -73.487515, + 45.503242 + ], + [ + -73.486872, + 45.503273 + ], + [ + -73.486502, + 45.503323 + ], + [ + -73.486146, + 45.503381 + ], + [ + -73.484224, + 45.503808 + ], + [ + -73.483407, + 45.503957 + ], + [ + -73.482922, + 45.504029 + ], + [ + -73.482166, + 45.504114 + ], + [ + -73.481092, + 45.504204 + ], + [ + -73.4802, + 45.504262 + ], + [ + -73.47719, + 45.50446 + ], + [ + -73.477132, + 45.504462 + ], + [ + -73.474463, + 45.504585 + ], + [ + -73.473732, + 45.504621 + ], + [ + -73.47326, + 45.50463 + ], + [ + -73.472594, + 45.504625 + ], + [ + -73.472184, + 45.504602 + ], + [ + -73.471986, + 45.50458 + ], + [ + -73.471671, + 45.504521 + ], + [ + -73.471417, + 45.504449 + ], + [ + -73.471243, + 45.504386 + ], + [ + -73.471084, + 45.504314 + ], + [ + -73.470936, + 45.504242 + ], + [ + -73.470798, + 45.504161 + ], + [ + -73.470671, + 45.504076 + ], + [ + -73.470553, + 45.503986 + ], + [ + -73.469982, + 45.503502 + ], + [ + -73.469677, + 45.503226 + ], + [ + -73.469614, + 45.503168 + ], + [ + -73.469513, + 45.50323 + ], + [ + -73.469419, + 45.503287 + ], + [ + -73.469308, + 45.503357 + ], + [ + -73.469279, + 45.503422 + ], + [ + -73.469221, + 45.503456 + ], + [ + -73.468749, + 45.503738 + ], + [ + -73.468134, + 45.504106 + ], + [ + -73.46771, + 45.504363 + ], + [ + -73.467476, + 45.504484 + ], + [ + -73.467257, + 45.504583 + ], + [ + -73.467047, + 45.504673 + ], + [ + -73.466778, + 45.504767 + ], + [ + -73.466492, + 45.50483 + ], + [ + -73.466169, + 45.504898 + ], + [ + -73.465884, + 45.504943 + ], + [ + -73.46553, + 45.504965 + ], + [ + -73.465067, + 45.504996 + ], + [ + -73.464545, + 45.505041 + ], + [ + -73.463624, + 45.505104 + ], + [ + -73.46332, + 45.50509 + ], + [ + -73.462718, + 45.505142 + ], + [ + -73.462564, + 45.505155 + ], + [ + -73.462414, + 45.50516 + ], + [ + -73.462303, + 45.505157 + ], + [ + -73.462173, + 45.505157 + ], + [ + -73.462046, + 45.50518 + ], + [ + -73.461961, + 45.505207 + ], + [ + -73.461828, + 45.505274 + ], + [ + -73.461479, + 45.505346 + ], + [ + -73.460924, + 45.505418 + ], + [ + -73.460429, + 45.505476 + ], + [ + -73.460124, + 45.505512 + ], + [ + -73.459817, + 45.505548 + ], + [ + -73.459085, + 45.505636 + ], + [ + -73.457907, + 45.505777 + ], + [ + -73.457379, + 45.505858 + ], + [ + -73.456937, + 45.505934 + ], + [ + -73.456441, + 45.506015 + ], + [ + -73.456388, + 45.506022 + ], + [ + -73.456027, + 45.506073 + ], + [ + -73.4557, + 45.506113 + ], + [ + -73.455407, + 45.506145 + ], + [ + -73.45462, + 45.506212 + ], + [ + -73.453792, + 45.506275 + ], + [ + -73.453626, + 45.506284 + ], + [ + -73.453507, + 45.506292 + ], + [ + -73.453375, + 45.506301 + ], + [ + -73.453036, + 45.506328 + ], + [ + -73.452813, + 45.506342 + ], + [ + -73.452619, + 45.506355 + ], + [ + -73.452198, + 45.506382 + ], + [ + -73.451887, + 45.506404 + ], + [ + -73.45126, + 45.506445 + ], + [ + -73.450484, + 45.506494 + ], + [ + -73.448355, + 45.506637 + ], + [ + -73.447691, + 45.506681 + ], + [ + -73.446069, + 45.506789 + ], + [ + -73.445578, + 45.50682 + ], + [ + -73.44527, + 45.50685 + ], + [ + -73.445125, + 45.506865 + ], + [ + -73.443732, + 45.506945 + ], + [ + -73.442555, + 45.507021 + ], + [ + -73.44245, + 45.507028 + ], + [ + -73.442366, + 45.507034 + ], + [ + -73.442227, + 45.507039 + ], + [ + -73.439054, + 45.507258 + ], + [ + -73.438426, + 45.507284 + ], + [ + -73.43815, + 45.507287 + ], + [ + -73.43796, + 45.507288 + ], + [ + -73.436434, + 45.507297 + ], + [ + -73.435792, + 45.507278 + ], + [ + -73.435015, + 45.507249 + ], + [ + -73.434228, + 45.507219 + ], + [ + -73.433623, + 45.50716 + ], + [ + -73.433481, + 45.507146 + ], + [ + -73.433316, + 45.507128 + ], + [ + -73.43308, + 45.507092 + ], + [ + -73.432958, + 45.507065 + ], + [ + -73.432823, + 45.507025 + ], + [ + -73.432697, + 45.506971 + ], + [ + -73.432507, + 45.50688 + ], + [ + -73.432305, + 45.506772 + ], + [ + -73.432116, + 45.506678 + ], + [ + -73.432105, + 45.506615 + ], + [ + -73.431909, + 45.506516 + ], + [ + -73.431784, + 45.506462 + ], + [ + -73.431662, + 45.506421 + ], + [ + -73.431649, + 45.506418 + ], + [ + -73.431524, + 45.506385 + ], + [ + -73.431353, + 45.506349 + ], + [ + -73.431252, + 45.506335 + ], + [ + -73.431192, + 45.50633 + ], + [ + -73.431145, + 45.506326 + ], + [ + -73.430968, + 45.506317 + ], + [ + -73.430791, + 45.506326 + ], + [ + -73.430645, + 45.506339 + ], + [ + -73.43052, + 45.506357 + ], + [ + -73.430422, + 45.506366 + ], + [ + -73.430275, + 45.506389 + ], + [ + -73.430066, + 45.506425 + ], + [ + -73.428871, + 45.506622 + ], + [ + -73.428835, + 45.506628 + ], + [ + -73.428419, + 45.506698 + ], + [ + -73.428282, + 45.506718 + ], + [ + -73.428165, + 45.506711 + ], + [ + -73.427996, + 45.506684 + ], + [ + -73.427898, + 45.506666 + ], + [ + -73.427771, + 45.506635 + ], + [ + -73.427639, + 45.506594 + ], + [ + -73.427188, + 45.506399 + ], + [ + -73.426972, + 45.506306 + ], + [ + -73.426422, + 45.506071 + ], + [ + -73.42613, + 45.505956 + ], + [ + -73.425918, + 45.505873 + ], + [ + -73.425637, + 45.505778 + ], + [ + -73.425471, + 45.505742 + ], + [ + -73.425433, + 45.505715 + ], + [ + -73.425228, + 45.505629 + ], + [ + -73.424965, + 45.505517 + ], + [ + -73.424527, + 45.505328 + ], + [ + -73.423967, + 45.505084 + ], + [ + -73.42368, + 45.504958 + ], + [ + -73.423517, + 45.504888 + ], + [ + -73.423115, + 45.504715 + ], + [ + -73.422355, + 45.50439 + ], + [ + -73.422107, + 45.504284 + ], + [ + -73.422009, + 45.504242 + ], + [ + -73.421648, + 45.504084 + ], + [ + -73.421234, + 45.503904 + ], + [ + -73.420806, + 45.503714 + ], + [ + -73.420508, + 45.503587 + ], + [ + -73.420142, + 45.503431 + ], + [ + -73.419673, + 45.503241 + ], + [ + -73.419457, + 45.503157 + ], + [ + -73.419278, + 45.503088 + ], + [ + -73.419167, + 45.503047 + ], + [ + -73.418847, + 45.502921 + ], + [ + -73.418173, + 45.502669 + ], + [ + -73.417806, + 45.502538 + ], + [ + -73.417334, + 45.50236 + ], + [ + -73.417293, + 45.502344 + ], + [ + -73.416751, + 45.502146 + ], + [ + -73.416178, + 45.501934 + ], + [ + -73.415771, + 45.501785 + ], + [ + -73.415352, + 45.501632 + ], + [ + -73.414962, + 45.501488 + ], + [ + -73.414669, + 45.501379 + ], + [ + -73.414536, + 45.50133 + ], + [ + -73.414045, + 45.501145 + ], + [ + -73.413646, + 45.500992 + ], + [ + -73.413399, + 45.500906 + ], + [ + -73.41311, + 45.500798 + ], + [ + -73.412769, + 45.500658 + ], + [ + -73.412437, + 45.500535 + ], + [ + -73.412332, + 45.500496 + ], + [ + -73.411788, + 45.500288 + ], + [ + -73.411184, + 45.500063 + ], + [ + -73.410857, + 45.499937 + ], + [ + -73.410514, + 45.499802 + ], + [ + -73.410379, + 45.499749 + ], + [ + -73.40994, + 45.499576 + ], + [ + -73.409205, + 45.499289 + ], + [ + -73.409074, + 45.499238 + ], + [ + -73.408846, + 45.499152 + ], + [ + -73.408613, + 45.499067 + ], + [ + -73.408565, + 45.499044 + ], + [ + -73.407743, + 45.498715 + ], + [ + -73.407513, + 45.498634 + ], + [ + -73.406574, + 45.498264 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.406288, + 45.49843 + ], + [ + -73.406193, + 45.498579 + ], + [ + -73.406179, + 45.498608 + ], + [ + -73.406163, + 45.49864 + ], + [ + -73.406003, + 45.498961 + ], + [ + -73.405911, + 45.499145 + ], + [ + -73.405493, + 45.499995 + ], + [ + -73.405383, + 45.500198 + ], + [ + -73.405251, + 45.500369 + ], + [ + -73.405082, + 45.500567 + ], + [ + -73.405006, + 45.500639 + ], + [ + -73.404894, + 45.500746 + ], + [ + -73.404658, + 45.500926 + ], + [ + -73.404439, + 45.50107 + ], + [ + -73.404275, + 45.501164 + ], + [ + -73.404095, + 45.501254 + ], + [ + -73.403728, + 45.501411 + ], + [ + -73.403505, + 45.501483 + ], + [ + -73.403207, + 45.501564 + ], + [ + -73.403206, + 45.501564 + ], + [ + -73.402929, + 45.501627 + ], + [ + -73.402747, + 45.501658 + ], + [ + -73.402456, + 45.501689 + ], + [ + -73.401996, + 45.50172 + ], + [ + -73.401121, + 45.501775 + ], + [ + -73.401007, + 45.501782 + ], + [ + -73.399341, + 45.501884 + ], + [ + -73.399355, + 45.501992 + ], + [ + -73.399402, + 45.502346 + ], + [ + -73.399403, + 45.502354 + ], + [ + -73.399417, + 45.50246 + ], + [ + -73.399441, + 45.502676 + ], + [ + -73.399508, + 45.503131 + ], + [ + -73.399527, + 45.503257 + ], + [ + -73.399542, + 45.50336 + ], + [ + -73.399657, + 45.504175 + ], + [ + -73.399718, + 45.504624 + ], + [ + -73.399729, + 45.504706 + ], + [ + -73.39976, + 45.505156 + ], + [ + -73.399787, + 45.505322 + ], + [ + -73.39982, + 45.505426 + ], + [ + -73.399886, + 45.505552 + ], + [ + -73.399949, + 45.505664 + ], + [ + -73.400052, + 45.505795 + ], + [ + -73.400061, + 45.505803 + ], + [ + -73.400152, + 45.505885 + ], + [ + -73.399985, + 45.50597 + ], + [ + -73.399802, + 45.506078 + ], + [ + -73.399379, + 45.50637 + ], + [ + -73.399188, + 45.506676 + ], + [ + -73.39914, + 45.506797 + ], + [ + -73.399135, + 45.506834 + ], + [ + -73.399117, + 45.50695 + ], + [ + -73.399108, + 45.507031 + ], + [ + -73.399133, + 45.507198 + ], + [ + -73.399213, + 45.507801 + ], + [ + -73.399228, + 45.507945 + ], + [ + -73.399284, + 45.508381 + ], + [ + -73.399294, + 45.508462 + ], + [ + -73.399352, + 45.508899 + ], + [ + -73.399434, + 45.509498 + ], + [ + -73.399448, + 45.509601 + ], + [ + -73.399756, + 45.509583 + ], + [ + -73.400193, + 45.50957 + ], + [ + -73.400685, + 45.509557 + ], + [ + -73.402551, + 45.509518 + ], + [ + -73.402643, + 45.509514 + ], + [ + -73.402911, + 45.509505 + ], + [ + -73.403309, + 45.509478 + ], + [ + -73.404168, + 45.509416 + ], + [ + -73.405369, + 45.509321 + ], + [ + -73.405469, + 45.509313 + ], + [ + -73.405438, + 45.509025 + ], + [ + -73.40545, + 45.508953 + ], + [ + -73.40548, + 45.508881 + ], + [ + -73.406128, + 45.507561 + ], + [ + -73.406159, + 45.507496 + ], + [ + -73.406247, + 45.507321 + ], + [ + -73.407466, + 45.504879 + ], + [ + -73.407616, + 45.504568 + ], + [ + -73.407721, + 45.504346 + ], + [ + -73.407766, + 45.504249 + ], + [ + -73.408367, + 45.504398 + ], + [ + -73.408932, + 45.504538 + ], + [ + -73.409315, + 45.504637 + ], + [ + -73.409691, + 45.504733 + ], + [ + -73.409774, + 45.504755 + ], + [ + -73.410748, + 45.504988 + ], + [ + -73.41077, + 45.504994 + ], + [ + -73.411467, + 45.505171 + ], + [ + -73.411569, + 45.505197 + ], + [ + -73.412507, + 45.505418 + ], + [ + -73.412645, + 45.505436 + ], + [ + -73.412747, + 45.50545 + ], + [ + -73.412864, + 45.50545 + ], + [ + -73.413013, + 45.505441 + ], + [ + -73.413183, + 45.505424 + ], + [ + -73.413318, + 45.50541 + ], + [ + -73.413394, + 45.505639 + ], + [ + -73.413421, + 45.505761 + ], + [ + -73.413447, + 45.505864 + ], + [ + -73.413444, + 45.505954 + ], + [ + -73.413426, + 45.506022 + ], + [ + -73.413298, + 45.506287 + ], + [ + -73.413113, + 45.506647 + ], + [ + -73.412993, + 45.506876 + ], + [ + -73.412951, + 45.506962 + ], + [ + -73.412909, + 45.507038 + ], + [ + -73.412894, + 45.507083 + ], + [ + -73.412886, + 45.507187 + ], + [ + -73.412929, + 45.507488 + ], + [ + -73.412967, + 45.50776 + ], + [ + -73.41298, + 45.507853 + ], + [ + -73.414263, + 45.507764 + ], + [ + -73.414461, + 45.507795 + ], + [ + -73.41461, + 45.507863 + ], + [ + -73.414689, + 45.508002 + ], + [ + -73.414729, + 45.508272 + ], + [ + -73.414755, + 45.50847 + ], + [ + -73.414773, + 45.508651 + ], + [ + -73.41478, + 45.508713 + ], + [ + -73.416795, + 45.50858 + ], + [ + -73.417624, + 45.50852 + ], + [ + -73.417791, + 45.508509 + ], + [ + -73.418548, + 45.508464 + ], + [ + -73.419853, + 45.508382 + ], + [ + -73.420612, + 45.508335 + ], + [ + -73.422385, + 45.508219 + ], + [ + -73.423075, + 45.50817 + ], + [ + -73.423658, + 45.508135 + ], + [ + -73.424075, + 45.508099 + ], + [ + -73.424804, + 45.508018 + ], + [ + -73.424982, + 45.507996 + ], + [ + -73.425226, + 45.507965 + ], + [ + -73.425517, + 45.507911 + ], + [ + -73.425671, + 45.507884 + ], + [ + -73.425844, + 45.507844 + ], + [ + -73.425991, + 45.507803 + ], + [ + -73.426141, + 45.507753 + ], + [ + -73.426194, + 45.507718 + ], + [ + -73.426239, + 45.507691 + ], + [ + -73.42627, + 45.507659 + ], + [ + -73.426298, + 45.507614 + ], + [ + -73.426318, + 45.507578 + ], + [ + -73.426601, + 45.507025 + ], + [ + -73.426846, + 45.50654 + ], + [ + -73.426849, + 45.506535 + ] + ] + }, + "id": 32, + "properties": { + "id": "a2b8d5e1-5558-41bb-acb0-2d79b2356ab8", + "data": { + "gtfs": { + "shape_id": "9_2_R" + }, + "segments": [ + { + "distanceMeters": 763, + "travelTimeSeconds": 119 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 384, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 403, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 345, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 2757, + "travelTimeSeconds": 283 + }, + { + "distanceMeters": 562, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 404, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 337, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 95, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 475, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 819, + "travelTimeSeconds": 188 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 246, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 16095, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7601.092679000949, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.54, + "travelTimeWithoutDwellTimesSeconds": 2460, + "operatingTimeWithLayoverTimeSeconds": 2706, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2460, + "operatingSpeedWithLayoverMetersPerSecond": 5.95, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.54 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "d3215c60-bb9e-40ac-89e4-1f922b39e266", + "f9358f54-8643-47f5-b0df-4a20b46cc22d", + "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", + "f4f29738-df3f-4d69-8632-9088ded0dc5a", + "741876fc-030a-42f6-a33a-8f1f9c2aba12", + "688a3f67-a176-441e-a399-c92a55de9c74", + "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", + "37199bb2-9740-4484-b68f-12d3c82f8bf9", + "c17cc951-65ff-4617-a096-ccd1fe6cc26f", + "d283f176-a2d6-456a-b4b2-f380ae924031", + "05522d17-41d4-4e98-a458-ec71ea1a802b", + "a2cddc2b-b7ec-4035-951f-7045ea83427b", + "a4e1d210-6aad-44a6-b6a6-31d75e66d6c9", + "c9ccd441-872f-4e75-b699-0014386c3503", + "92abcd2a-82ad-467f-8946-055423a9c2c9", + "631a5504-9e7c-4041-85e7-bf81e6a995d2", + "b487112d-20d7-48e5-a658-6d701c316792", + "2f59e70c-00bf-46fc-9104-53f0aa9fb5e8", + "2f531374-1848-411d-97c8-17a070d5c4b1", + "e5c099f9-8206-4175-8a7b-065df2f3b304", + "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", + "2d759b9b-5efb-4a57-814c-915d6b6185d7", + "7207a900-095a-4a6f-9e58-d5821a46e7d1", + "1dee950f-860c-49ec-9656-8fcdc6bfa744", + "235a92b0-53e1-410c-b264-d57c7814303c", + "4a4fa494-b43c-4be6-b677-70874b8f73cc", + "46ea2114-c4d6-46e8-be5d-60d028340abb", + "853b0202-bae1-4c20-ab0e-8b27d1350e9a", + "69889f24-c076-4661-981b-6008a401d446", + "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", + "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", + "aab8672e-86c9-4a43-9806-f5135dc02b4e", + "7414010b-fe1f-4d77-8cdd-701cc437e73a", + "dc630e4d-102e-48b9-8b4a-920cafc01d4a", + "00ed067b-7627-492d-ac0f-5d03bd3b185c", + "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", + "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", + "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", + "b20c17a3-277e-418e-90be-8f8d32918ba9", + "6765611d-305b-41e3-b519-b65e608494ba", + "ff0214aa-5a67-4237-87c2-863aa17e8087", + "c22b0880-b3ca-4797-aa47-0cda85146514", + "0ea4fa54-ee0f-4999-90e6-2b0f71f6030e", + "6212287c-a903-4f14-b932-9fa7dcb13f7b", + "aa49b5ca-26fd-4fe1-8e89-4237204a7250", + "35110be1-21ec-490a-b4c8-8b20aa6bef7f", + "bf493d01-4cc2-40cf-9fee-339de5acd0ce", + "72cda4fb-fbe8-47ba-b42e-f310ef91d335", + "16d596f0-097e-4afe-b8c4-9b129c3c3d66", + "a591956d-b42e-4489-8d54-3a5d5df835c1", + "86f64d55-814a-4fbc-858b-c5c25e590481", + "c1aeb7b2-96eb-465c-a03f-d65b102a8eea" + ], + "stops": [], + "line_id": "cd0e7785-c68b-4cce-83f8-55ea692f6e31", + "segments": [ + 0, + 47, + 55, + 62, + 72, + 83, + 90, + 94, + 98, + 109, + 120, + 197, + 213, + 226, + 231, + 238, + 247, + 251, + 255, + 260, + 266, + 280, + 294, + 302, + 310, + 315, + 318, + 323, + 326, + 332, + 339, + 346, + 352, + 354, + 365, + 373, + 382, + 387, + 392, + 396, + 399, + 407, + 414, + 420, + 423, + 433, + 438, + 443, + 448, + 452, + 459, + 474, + 482, + 485 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 32, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.426849, + 45.506535 + ], + [ + -73.426919, + 45.506405 + ], + [ + -73.42775, + 45.506774 + ], + [ + -73.427847, + 45.506792 + ], + [ + -73.428015, + 45.506824 + ], + [ + -73.428153, + 45.506828 + ], + [ + -73.428285, + 45.506833 + ], + [ + -73.428429, + 45.506818 + ], + [ + -73.428656, + 45.506779 + ], + [ + -73.428772, + 45.506761 + ], + [ + -73.428988, + 45.506721 + ], + [ + -73.429213, + 45.50668 + ], + [ + -73.429476, + 45.506669 + ], + [ + -73.429755, + 45.506651 + ], + [ + -73.429825, + 45.506654 + ], + [ + -73.429948, + 45.50668 + ], + [ + -73.430064, + 45.506725 + ], + [ + -73.4302, + 45.506807 + ], + [ + -73.430341, + 45.507086 + ], + [ + -73.430485, + 45.507257 + ], + [ + -73.430506, + 45.507276 + ], + [ + -73.430509, + 45.507278 + ], + [ + -73.430608, + 45.507365 + ], + [ + -73.430672, + 45.507415 + ], + [ + -73.431358, + 45.507856 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431709, + 45.508009 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.432209, + 45.507974 + ], + [ + -73.435178, + 45.507773 + ], + [ + -73.437575, + 45.507662 + ], + [ + -73.438988, + 45.507572 + ], + [ + -73.440344, + 45.507425 + ], + [ + -73.445881, + 45.507063 + ], + [ + -73.452257, + 45.506638 + ], + [ + -73.452565, + 45.506616 + ], + [ + -73.453776, + 45.50654 + ], + [ + -73.455247, + 45.506419 + ], + [ + -73.456957, + 45.50624 + ], + [ + -73.460279, + 45.505832 + ], + [ + -73.460374, + 45.505823 + ], + [ + -73.461182, + 45.505728 + ], + [ + -73.463671, + 45.505509 + ], + [ + -73.465111, + 45.505401 + ], + [ + -73.467755, + 45.505222 + ], + [ + -73.468692, + 45.505168 + ], + [ + -73.470746, + 45.505025 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492945, + 45.510123 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497941, + 45.512058 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.500903, + 45.513015 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505131, + 45.514486 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506107, + 45.514749 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515013, + 45.519425 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518892, + 45.520629 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 33, + "properties": { + "id": "196ebebf-98b2-454f-8e5c-91b835dd96c8", + "data": { + "gtfs": { + "shape_id": "9_2_A" + }, + "segments": [ + { + "distanceMeters": 5724, + "travelTimeSeconds": 420 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 988, + "travelTimeSeconds": 170 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 745, + "travelTimeSeconds": 129 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8858, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7601.092679000949, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.23, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 7.77, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.23 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "a5b9648a-83c0-4eab-a54b-68c23aecae43", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "cd0e7785-c68b-4cce-83f8-55ea692f6e31", + "segments": [ + 0, + 80, + 93, + 96, + 103, + 139, + 145 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 33, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524008, + 45.524308 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.502818, + 45.54899 + ], + [ + -73.502212, + 45.54962 + ], + [ + -73.501984, + 45.549836 + ], + [ + -73.50186, + 45.549926 + ], + [ + -73.501728, + 45.550007 + ], + [ + -73.501592, + 45.550079 + ], + [ + -73.501452, + 45.550133 + ], + [ + -73.501309, + 45.550183 + ], + [ + -73.50116, + 45.550219 + ], + [ + -73.501011, + 45.55025 + ], + [ + -73.501, + 45.550251 + ], + [ + -73.500705, + 45.550282 + ], + [ + -73.500547, + 45.550286 + ], + [ + -73.49991, + 45.550295 + ], + [ + -73.499238, + 45.550226 + ], + [ + -73.498778, + 45.550153 + ], + [ + -73.498464, + 45.550065 + ], + [ + -73.498138, + 45.54995 + ], + [ + -73.497746, + 45.549767 + ], + [ + -73.497494, + 45.54961 + ], + [ + -73.497234, + 45.549428 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491296, + 45.54289 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.485279, + 45.539708 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.479241, + 45.537795 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.460868, + 45.531797 + ], + [ + -73.460137, + 45.531468 + ], + [ + -73.459095, + 45.531013 + ], + [ + -73.457591, + 45.530387 + ], + [ + -73.456631, + 45.529983 + ], + [ + -73.45522, + 45.529388 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.453608, + 45.528719 + ], + [ + -73.45247, + 45.528245 + ], + [ + -73.452419, + 45.528224 + ], + [ + -73.452095, + 45.528089 + ], + [ + -73.451849, + 45.527987 + ], + [ + -73.449586, + 45.5271 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.449239, + 45.527747 + ], + [ + -73.4491, + 45.528013 + ], + [ + -73.448776, + 45.528634 + ], + [ + -73.448476, + 45.529249 + ], + [ + -73.448445, + 45.529313 + ], + [ + -73.448085, + 45.530001 + ], + [ + -73.448024, + 45.530118 + ], + [ + -73.447862, + 45.53032 + ], + [ + -73.44764, + 45.530474 + ] + ] + }, + "id": 34, + "properties": { + "id": "81b82915-6c28-4e5f-bb04-adbd4d9671d4", + "data": { + "gtfs": { + "shape_id": "10_1_R" + }, + "segments": [ + { + "distanceMeters": 8879, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 102 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 43 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9545, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 588.7327924596806, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 39.77, + "travelTimeWithoutDwellTimesSeconds": 240, + "operatingTimeWithLayoverTimeSeconds": 420, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 240, + "operatingSpeedWithLayoverMetersPerSecond": 22.72, + "averageSpeedWithoutDwellTimesMetersPerSecond": 39.77 + }, + "mode": "bus", + "name": "Sect. B Vieux-Longueuil", + "color": "#A32638", + "nodes": [ + "6e83e147-802a-4695-95f3-96585bd15c4a", + "51878141-1194-4666-977c-0597ee638ffb", + "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "da0ea2a1-8305-4096-84b5-3da6997f0293", + "69483ac1-331d-4f0e-93b5-d8134f380763" + ], + "stops": [], + "line_id": "d0da7a94-74d0-48f5-b44a-25e0881a130d", + "segments": [ + 0, + 189, + 196, + 198 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 34, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.44764, + 45.530474 + ], + [ + -73.447543, + 45.530541 + ], + [ + -73.448141, + 45.53172 + ], + [ + -73.448349, + 45.532116 + ], + [ + -73.448438, + 45.5323 + ], + [ + -73.448478, + 45.532371 + ], + [ + -73.448512, + 45.532432 + ], + [ + -73.448557, + 45.532512 + ], + [ + -73.44871, + 45.532719 + ], + [ + -73.448896, + 45.532926 + ], + [ + -73.449063, + 45.533088 + ], + [ + -73.44929, + 45.533254 + ], + [ + -73.449502, + 45.533408 + ], + [ + -73.449736, + 45.533561 + ], + [ + -73.449982, + 45.533682 + ], + [ + -73.450155, + 45.533757 + ], + [ + -73.450209, + 45.533781 + ], + [ + -73.450391, + 45.533867 + ], + [ + -73.450743, + 45.534002 + ], + [ + -73.450985, + 45.534056 + ], + [ + -73.451317, + 45.534124 + ], + [ + -73.45172, + 45.534205 + ], + [ + -73.451896, + 45.534218 + ], + [ + -73.45205, + 45.534214 + ], + [ + -73.452169, + 45.534206 + ], + [ + -73.452182, + 45.534205 + ], + [ + -73.452341, + 45.534169 + ], + [ + -73.452481, + 45.534133 + ], + [ + -73.452644, + 45.534061 + ], + [ + -73.45275, + 45.533989 + ], + [ + -73.453619, + 45.533409 + ], + [ + -73.453895, + 45.533306 + ], + [ + -73.454221, + 45.533257 + ], + [ + -73.454729, + 45.533284 + ], + [ + -73.454807, + 45.533288 + ], + [ + -73.45503, + 45.53332 + ], + [ + -73.455242, + 45.53336 + ], + [ + -73.455391, + 45.533387 + ], + [ + -73.455523, + 45.533433 + ], + [ + -73.455674, + 45.5335 + ], + [ + -73.455774, + 45.533559 + ], + [ + -73.455836, + 45.533604 + ], + [ + -73.455934, + 45.53369 + ], + [ + -73.455959, + 45.533712 + ], + [ + -73.456036, + 45.533788 + ], + [ + -73.456095, + 45.533878 + ], + [ + -73.456189, + 45.534099 + ], + [ + -73.456214, + 45.534256 + ], + [ + -73.456189, + 45.534414 + ], + [ + -73.456134, + 45.534589 + ], + [ + -73.456071, + 45.534695 + ], + [ + -73.456046, + 45.534737 + ], + [ + -73.455923, + 45.53489 + ], + [ + -73.455755, + 45.535043 + ], + [ + -73.45561, + 45.535133 + ], + [ + -73.455504, + 45.535196 + ], + [ + -73.455381, + 45.535259 + ], + [ + -73.455279, + 45.535296 + ], + [ + -73.455196, + 45.535327 + ], + [ + -73.454943, + 45.535416 + ], + [ + -73.454703, + 45.535484 + ], + [ + -73.45458, + 45.535533 + ], + [ + -73.454434, + 45.535583 + ], + [ + -73.454232, + 45.535664 + ], + [ + -73.454095, + 45.53574 + ], + [ + -73.453985, + 45.535794 + ], + [ + -73.453834, + 45.535911 + ], + [ + -73.453678, + 45.536032 + ], + [ + -73.453562, + 45.536158 + ], + [ + -73.45347, + 45.536284 + ], + [ + -73.453395, + 45.536388 + ], + [ + -73.453302, + 45.53664 + ], + [ + -73.453087, + 45.537457 + ], + [ + -73.453056, + 45.537575 + ], + [ + -73.45293, + 45.537571 + ], + [ + -73.452702, + 45.537575 + ], + [ + -73.452033, + 45.537615 + ], + [ + -73.45161, + 45.537656 + ], + [ + -73.451409, + 45.537665 + ], + [ + -73.451204, + 45.537642 + ], + [ + -73.451019, + 45.537606 + ], + [ + -73.450864, + 45.537552 + ], + [ + -73.450788, + 45.537518 + ], + [ + -73.450674, + 45.537466 + ], + [ + -73.449848, + 45.536971 + ], + [ + -73.449118, + 45.536538 + ], + [ + -73.449006, + 45.536471 + ], + [ + -73.448626, + 45.536264 + ], + [ + -73.448357, + 45.536192 + ], + [ + -73.447442, + 45.535976 + ], + [ + -73.447213, + 45.535913 + ], + [ + -73.447099, + 45.535867 + ], + [ + -73.446936, + 45.5358 + ], + [ + -73.446746, + 45.535696 + ], + [ + -73.446503, + 45.53552 + ], + [ + -73.446498, + 45.535516 + ], + [ + -73.446412, + 45.535444 + ], + [ + -73.446305, + 45.535359 + ], + [ + -73.446216, + 45.535273 + ], + [ + -73.445977, + 45.535035 + ], + [ + -73.44579, + 45.534868 + ], + [ + -73.445666, + 45.534784 + ], + [ + -73.445571, + 45.534719 + ], + [ + -73.445347, + 45.534582 + ], + [ + -73.445234, + 45.534512 + ], + [ + -73.445013, + 45.5344 + ], + [ + -73.444564, + 45.534238 + ], + [ + -73.444063, + 45.534075 + ], + [ + -73.444212, + 45.533801 + ], + [ + -73.444232, + 45.533764 + ], + [ + -73.444441, + 45.533378 + ], + [ + -73.44472, + 45.532816 + ], + [ + -73.445133, + 45.532069 + ], + [ + -73.445159, + 45.532011 + ], + [ + -73.445217, + 45.531876 + ], + [ + -73.445225, + 45.531848 + ], + [ + -73.445262, + 45.531714 + ], + [ + -73.445416, + 45.531246 + ], + [ + -73.445655, + 45.53081 + ], + [ + -73.445839, + 45.530633 + ], + [ + -73.44588, + 45.530594 + ], + [ + -73.445934, + 45.530553 + ], + [ + -73.445986, + 45.530495 + ], + [ + -73.446078, + 45.530436 + ], + [ + -73.446188, + 45.530392 + ], + [ + -73.446303, + 45.53036 + ], + [ + -73.446426, + 45.53032 + ], + [ + -73.446558, + 45.530297 + ], + [ + -73.446722, + 45.530284 + ], + [ + -73.446778, + 45.530284 + ], + [ + -73.446897, + 45.530293 + ], + [ + -73.44702, + 45.530311 + ], + [ + -73.44713, + 45.530342 + ], + [ + -73.447236, + 45.530379 + ], + [ + -73.447385, + 45.530442 + ], + [ + -73.44747, + 45.530495 + ], + [ + -73.447543, + 45.530541 + ], + [ + -73.447862, + 45.53032 + ], + [ + -73.448024, + 45.530118 + ], + [ + -73.448085, + 45.530001 + ], + [ + -73.448297, + 45.529596 + ], + [ + -73.448362, + 45.529472 + ], + [ + -73.448445, + 45.529313 + ], + [ + -73.448776, + 45.528634 + ], + [ + -73.449239, + 45.527747 + ], + [ + -73.449413, + 45.527436 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.45067, + 45.527735 + ], + [ + -73.450838, + 45.527798 + ], + [ + -73.451123, + 45.527906 + ], + [ + -73.451519, + 45.528063 + ], + [ + -73.452162, + 45.528357 + ], + [ + -73.452276, + 45.528409 + ], + [ + -73.452337, + 45.528437 + ], + [ + -73.45321, + 45.528797 + ], + [ + -73.454095, + 45.529149 + ], + [ + -73.454898, + 45.529493 + ], + [ + -73.454978, + 45.529527 + ], + [ + -73.45507, + 45.529563 + ], + [ + -73.457292, + 45.530467 + ], + [ + -73.457482, + 45.530545 + ], + [ + -73.458332, + 45.530905 + ], + [ + -73.460581, + 45.531882 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.462028, + 45.532627 + ], + [ + -73.462751, + 45.533003 + ], + [ + -73.4637, + 45.533563 + ], + [ + -73.463873, + 45.533665 + ], + [ + -73.464875, + 45.534543 + ], + [ + -73.46573, + 45.535332 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.46881, + 45.537048 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469941, + 45.537318 + ], + [ + -73.470305, + 45.537406 + ], + [ + -73.470749, + 45.537487 + ], + [ + -73.471335, + 45.537563 + ], + [ + -73.471845, + 45.53759 + ], + [ + -73.471931, + 45.53759 + ], + [ + -73.472146, + 45.537591 + ], + [ + -73.472355, + 45.537591 + ], + [ + -73.473126, + 45.537555 + ], + [ + -73.473826, + 45.537492 + ], + [ + -73.474517, + 45.537429 + ], + [ + -73.474521, + 45.537429 + ], + [ + -73.474599, + 45.537423 + ], + [ + -73.475173, + 45.53738 + ], + [ + -73.47563, + 45.537344 + ], + [ + -73.476192, + 45.537353 + ], + [ + -73.476662, + 45.537394 + ], + [ + -73.477026, + 45.537434 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.477884, + 45.5376 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479501, + 45.538079 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.482461, + 45.538914 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484688, + 45.539728 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.485786, + 45.540121 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491035, + 45.541427 + ], + [ + -73.491084, + 45.541584 + ], + [ + -73.491099, + 45.541724 + ], + [ + -73.491104, + 45.54182 + ], + [ + -73.491106, + 45.541854 + ], + [ + -73.491092, + 45.542156 + ], + [ + -73.491081, + 45.542381 + ], + [ + -73.49104, + 45.543146 + ], + [ + -73.490998, + 45.543726 + ], + [ + -73.491037, + 45.544117 + ], + [ + -73.491071, + 45.544252 + ], + [ + -73.491113, + 45.544396 + ], + [ + -73.491272, + 45.544698 + ], + [ + -73.491367, + 45.544855 + ], + [ + -73.491449, + 45.544981 + ], + [ + -73.491608, + 45.545148 + ], + [ + -73.491886, + 45.545409 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.492798, + 45.546135 + ], + [ + -73.492868, + 45.546192 + ], + [ + -73.493081, + 45.546361 + ], + [ + -73.493835, + 45.546966 + ], + [ + -73.494604, + 45.547573 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.495745, + 45.548495 + ], + [ + -73.495811, + 45.548549 + ], + [ + -73.49673, + 45.549278 + ], + [ + -73.497087, + 45.549548 + ], + [ + -73.49736, + 45.549719 + ], + [ + -73.497501, + 45.549805 + ], + [ + -73.497722, + 45.549908 + ], + [ + -73.497944, + 45.549998 + ], + [ + -73.498136, + 45.55007 + ], + [ + -73.498405, + 45.550151 + ], + [ + -73.498716, + 45.550237 + ], + [ + -73.499009, + 45.550295 + ], + [ + -73.499514, + 45.550349 + ], + [ + -73.499763, + 45.550363 + ], + [ + -73.501515, + 45.550448 + ], + [ + -73.502446, + 45.550493 + ], + [ + -73.502797, + 45.550502 + ], + [ + -73.502913, + 45.550498 + ], + [ + -73.503017, + 45.550484 + ], + [ + -73.503194, + 45.550453 + ], + [ + -73.503355, + 45.550399 + ], + [ + -73.503504, + 45.550327 + ], + [ + -73.503636, + 45.550237 + ], + [ + -73.503751, + 45.550133 + ], + [ + -73.503955, + 45.549904 + ], + [ + -73.504046, + 45.549787 + ], + [ + -73.504119, + 45.549647 + ], + [ + -73.50416, + 45.549508 + ], + [ + -73.504199, + 45.549065 + ], + [ + -73.504212, + 45.548909 + ], + [ + -73.504289, + 45.548585 + ], + [ + -73.504342, + 45.548423 + ], + [ + -73.504477, + 45.548095 + ], + [ + -73.504558, + 45.547933 + ], + [ + -73.504654, + 45.547771 + ], + [ + -73.504887, + 45.547461 + ], + [ + -73.505281, + 45.546997 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523434, + 45.53015 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516749, + 45.525842 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524738 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 35, + "properties": { + "id": "61f9e19a-edec-415e-ac3f-37b7ad1c4267", + "data": { + "gtfs": { + "shape_id": "10_1_A" + }, + "segments": [ + { + "distanceMeters": 227, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 316, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 506, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 524, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 5139, + "travelTimeSeconds": 619 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13078, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5791.343632894528, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.52, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 6.81, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.52 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "69483ac1-331d-4f0e-93b5-d8134f380763", + "66f007ae-d813-40cb-ab41-e87b10da3a72", + "6685b5fc-0f35-439d-9c20-c96b665d5201", + "c896d257-2942-4aba-aded-59e49480d892", + "62590a84-0f1e-43e0-8046-574d7d23d2e9", + "48a4676d-1da3-4489-8f80-1edfb1b61b1b", + "83c203fe-4b10-42fd-aafb-d9bc99f756b0", + "e5c2d9f4-1be6-458f-854f-8103a3048b8c", + "231dda72-d4b5-48ae-b714-5ce9d3802c45", + "25a5f82a-36a7-4a52-af2b-32a681f87765", + "8b3a553d-dad5-41ff-b228-80f338c4b0e0", + "210e532b-2acc-4a3e-b173-3471add098b1", + "51637772-6b85-4c49-a14a-4de104a8f1f5", + "23ef9461-bbd0-492e-8678-c51238629a13", + "69483ac1-331d-4f0e-93b5-d8134f380763", + "da0ea2a1-8305-4096-84b5-3da6997f0293", + "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "51878141-1194-4666-977c-0597ee638ffb", + "0a078431-12d6-4e73-9908-076c3a27e8ed", + "211cb268-dcfa-4d7b-810c-681bfa65d4c8", + "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "1e4facbf-29da-4515-97c4-4ef86c22290e", + "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", + "06d26eca-08e9-467e-9ff0-9595778162a0", + "abdcf999-0861-4881-a478-42fa957c7f17", + "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "5f672947-8abc-447c-bf60-535abbf76fae", + "31e8057b-0fb0-44bd-83cf-3acad24654ec", + "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", + "038a22ba-4928-42fc-aaed-50fbd831df37", + "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", + "64648218-6b63-436c-9a46-4770987ba432", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "d0da7a94-74d0-48f5-b44a-25e0881a130d", + "segments": [ + 0, + 5, + 15, + 24, + 33, + 50, + 66, + 72, + 82, + 85, + 94, + 109, + 115, + 119, + 135, + 141, + 145, + 151, + 156, + 159, + 165, + 167, + 170, + 180, + 187, + 193, + 203, + 207, + 213, + 219, + 239, + 254, + 260 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 35, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524008, + 45.524308 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.502818, + 45.54899 + ], + [ + -73.502212, + 45.54962 + ], + [ + -73.501984, + 45.549836 + ], + [ + -73.50186, + 45.549926 + ], + [ + -73.501728, + 45.550007 + ], + [ + -73.501592, + 45.550079 + ], + [ + -73.501452, + 45.550133 + ], + [ + -73.501309, + 45.550183 + ], + [ + -73.50116, + 45.550219 + ], + [ + -73.501011, + 45.55025 + ], + [ + -73.501, + 45.550251 + ], + [ + -73.500705, + 45.550282 + ], + [ + -73.500547, + 45.550286 + ], + [ + -73.49991, + 45.550295 + ], + [ + -73.499238, + 45.550226 + ], + [ + -73.498778, + 45.550153 + ], + [ + -73.498464, + 45.550065 + ], + [ + -73.498138, + 45.54995 + ], + [ + -73.497746, + 45.549767 + ], + [ + -73.497494, + 45.54961 + ], + [ + -73.497234, + 45.549428 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494909, + 45.547555 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.491999, + 45.54521 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491296, + 45.54289 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.490619, + 45.540707 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486504, + 45.540161 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.485279, + 45.539708 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482917, + 45.538858 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.480048, + 45.538062 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.479241, + 45.537795 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476974, + 45.537234 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472356, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.469382, + 45.536996 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466194, + 45.535485 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464126, + 45.533598 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461215, + 45.531967 + ], + [ + -73.460868, + 45.531797 + ], + [ + -73.460137, + 45.531468 + ], + [ + -73.459095, + 45.531013 + ], + [ + -73.45781, + 45.530479 + ], + [ + -73.457591, + 45.530387 + ], + [ + -73.456631, + 45.529983 + ], + [ + -73.45522, + 45.529388 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.454675, + 45.529163 + ], + [ + -73.453608, + 45.528719 + ], + [ + -73.45247, + 45.528245 + ], + [ + -73.452419, + 45.528224 + ], + [ + -73.452095, + 45.528089 + ], + [ + -73.451849, + 45.527987 + ], + [ + -73.449586, + 45.5271 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.449239, + 45.527747 + ], + [ + -73.4491, + 45.528013 + ], + [ + -73.448776, + 45.528634 + ], + [ + -73.448476, + 45.529249 + ], + [ + -73.448445, + 45.529313 + ], + [ + -73.448085, + 45.530001 + ], + [ + -73.448024, + 45.530118 + ], + [ + -73.447862, + 45.53032 + ], + [ + -73.44764, + 45.530474 + ] + ] + }, + "id": 36, + "properties": { + "id": "468d9000-4f34-4550-8598-11a7fcaf4e07", + "data": { + "gtfs": { + "shape_id": "10_1_R" + }, + "segments": [ + { + "distanceMeters": 4596, + "travelTimeSeconds": 279 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 102 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 43 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9545, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5791.343632894528, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.37, + "travelTimeWithoutDwellTimesSeconds": 1140, + "operatingTimeWithLayoverTimeSeconds": 1320, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1140, + "operatingSpeedWithLayoverMetersPerSecond": 7.23, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.37 + }, + "mode": "bus", + "name": "Sect. B Vieux-Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "8a3f1208-7ffb-452e-8ebb-c436acba82d6", + "2d7687a5-f458-4ce1-a3df-9639d89c0154", + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "ce58f095-9b51-4521-8a41-e64bfb0df31e", + "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", + "65003b15-0baf-4f82-9e15-665e17fd1c75", + "81b3573e-d948-478d-a011-db20e21b0c62", + "def08726-b847-4fc6-b901-78e04519a492", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "3b70b024-5c5b-4081-8c70-3fc026422289", + "1e4facbf-29da-4515-97c4-4ef86c22290e", + "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "53aec761-3dae-44a6-bc58-9d5003bfa1bb", + "6e83e147-802a-4695-95f3-96585bd15c4a", + "51878141-1194-4666-977c-0597ee638ffb", + "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "da0ea2a1-8305-4096-84b5-3da6997f0293", + "69483ac1-331d-4f0e-93b5-d8134f380763" + ], + "stops": [], + "line_id": "d0da7a94-74d0-48f5-b44a-25e0881a130d", + "segments": [ + 0, + 78, + 84, + 108, + 118, + 124, + 133, + 143, + 155, + 165, + 178, + 184, + 192, + 196, + 201, + 203, + 210, + 212 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 36, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.44764, + 45.530474 + ], + [ + -73.447543, + 45.530541 + ], + [ + -73.448141, + 45.53172 + ], + [ + -73.448349, + 45.532116 + ], + [ + -73.448438, + 45.5323 + ], + [ + -73.448512, + 45.532432 + ], + [ + -73.448557, + 45.532512 + ], + [ + -73.44871, + 45.532719 + ], + [ + -73.448896, + 45.532926 + ], + [ + -73.449063, + 45.533088 + ], + [ + -73.44929, + 45.533254 + ], + [ + -73.449502, + 45.533408 + ], + [ + -73.449736, + 45.533561 + ], + [ + -73.449982, + 45.533682 + ], + [ + -73.450209, + 45.533781 + ], + [ + -73.450391, + 45.533867 + ], + [ + -73.450743, + 45.534002 + ], + [ + -73.450985, + 45.534056 + ], + [ + -73.451317, + 45.534124 + ], + [ + -73.45172, + 45.534205 + ], + [ + -73.451896, + 45.534218 + ], + [ + -73.45205, + 45.534214 + ], + [ + -73.452182, + 45.534205 + ], + [ + -73.452341, + 45.534169 + ], + [ + -73.452481, + 45.534133 + ], + [ + -73.452644, + 45.534061 + ], + [ + -73.45275, + 45.533989 + ], + [ + -73.453619, + 45.533409 + ], + [ + -73.453895, + 45.533306 + ], + [ + -73.454221, + 45.533257 + ], + [ + -73.454807, + 45.533288 + ], + [ + -73.45503, + 45.53332 + ], + [ + -73.455242, + 45.53336 + ], + [ + -73.455391, + 45.533387 + ], + [ + -73.455523, + 45.533433 + ], + [ + -73.455674, + 45.5335 + ], + [ + -73.455774, + 45.533559 + ], + [ + -73.455836, + 45.533604 + ], + [ + -73.455934, + 45.53369 + ], + [ + -73.455959, + 45.533712 + ], + [ + -73.456036, + 45.533788 + ], + [ + -73.456095, + 45.533878 + ], + [ + -73.456189, + 45.534099 + ], + [ + -73.456214, + 45.534256 + ], + [ + -73.456189, + 45.534413 + ], + [ + -73.456189, + 45.534414 + ], + [ + -73.456134, + 45.534589 + ], + [ + -73.456046, + 45.534737 + ], + [ + -73.455923, + 45.53489 + ], + [ + -73.455755, + 45.535043 + ], + [ + -73.45561, + 45.535133 + ], + [ + -73.455504, + 45.535196 + ], + [ + -73.455381, + 45.535259 + ], + [ + -73.455279, + 45.535296 + ], + [ + -73.455196, + 45.535327 + ], + [ + -73.454943, + 45.535416 + ], + [ + -73.454703, + 45.535484 + ], + [ + -73.45458, + 45.535533 + ], + [ + -73.454434, + 45.535583 + ], + [ + -73.454232, + 45.535664 + ], + [ + -73.454095, + 45.53574 + ], + [ + -73.453985, + 45.535794 + ], + [ + -73.453678, + 45.536032 + ], + [ + -73.453562, + 45.536158 + ], + [ + -73.45347, + 45.536284 + ], + [ + -73.453395, + 45.536388 + ], + [ + -73.453302, + 45.53664 + ], + [ + -73.453056, + 45.537575 + ], + [ + -73.45293, + 45.537571 + ], + [ + -73.452702, + 45.537575 + ], + [ + -73.452033, + 45.537615 + ], + [ + -73.45161, + 45.537656 + ], + [ + -73.451409, + 45.537665 + ], + [ + -73.451204, + 45.537642 + ], + [ + -73.451019, + 45.537606 + ], + [ + -73.450864, + 45.537552 + ], + [ + -73.450674, + 45.537466 + ], + [ + -73.449848, + 45.536971 + ], + [ + -73.449006, + 45.536471 + ], + [ + -73.448626, + 45.536264 + ], + [ + -73.448357, + 45.536192 + ], + [ + -73.447683, + 45.536033 + ], + [ + -73.447442, + 45.535976 + ], + [ + -73.447213, + 45.535913 + ], + [ + -73.447099, + 45.535867 + ], + [ + -73.446936, + 45.5358 + ], + [ + -73.446746, + 45.535696 + ], + [ + -73.446498, + 45.535516 + ], + [ + -73.446412, + 45.535444 + ], + [ + -73.446305, + 45.535359 + ], + [ + -73.446216, + 45.535273 + ], + [ + -73.445977, + 45.535035 + ], + [ + -73.44579, + 45.534868 + ], + [ + -73.445666, + 45.534784 + ], + [ + -73.445571, + 45.534719 + ], + [ + -73.445347, + 45.534582 + ], + [ + -73.445234, + 45.534512 + ], + [ + -73.445013, + 45.5344 + ], + [ + -73.444564, + 45.534238 + ], + [ + -73.444063, + 45.534075 + ], + [ + -73.444212, + 45.533801 + ], + [ + -73.444441, + 45.533378 + ], + [ + -73.44472, + 45.532816 + ], + [ + -73.445133, + 45.532069 + ], + [ + -73.445159, + 45.532011 + ], + [ + -73.445217, + 45.531876 + ], + [ + -73.445262, + 45.531714 + ], + [ + -73.445416, + 45.531246 + ], + [ + -73.445655, + 45.53081 + ], + [ + -73.445758, + 45.530711 + ], + [ + -73.44588, + 45.530594 + ], + [ + -73.445934, + 45.530553 + ], + [ + -73.445986, + 45.530495 + ], + [ + -73.446078, + 45.530436 + ], + [ + -73.446188, + 45.530392 + ], + [ + -73.446303, + 45.53036 + ], + [ + -73.446426, + 45.53032 + ], + [ + -73.446558, + 45.530297 + ], + [ + -73.446722, + 45.530284 + ], + [ + -73.446778, + 45.530284 + ], + [ + -73.446897, + 45.530293 + ], + [ + -73.44702, + 45.530311 + ], + [ + -73.44713, + 45.530342 + ], + [ + -73.447236, + 45.530379 + ], + [ + -73.447385, + 45.530442 + ], + [ + -73.447543, + 45.530541 + ], + [ + -73.447862, + 45.53032 + ], + [ + -73.448024, + 45.530118 + ], + [ + -73.448085, + 45.530001 + ], + [ + -73.448297, + 45.529596 + ], + [ + -73.448445, + 45.529313 + ], + [ + -73.448776, + 45.528634 + ], + [ + -73.449239, + 45.527747 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.45067, + 45.527735 + ], + [ + -73.450838, + 45.527798 + ], + [ + -73.451123, + 45.527906 + ], + [ + -73.451519, + 45.528063 + ], + [ + -73.452276, + 45.528409 + ], + [ + -73.452337, + 45.528437 + ], + [ + -73.45321, + 45.528797 + ], + [ + -73.454095, + 45.529149 + ], + [ + -73.454978, + 45.529527 + ], + [ + -73.45507, + 45.529563 + ], + [ + -73.455133, + 45.529589 + ], + [ + -73.457482, + 45.530545 + ], + [ + -73.458332, + 45.530905 + ], + [ + -73.460581, + 45.531882 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.462751, + 45.533003 + ], + [ + -73.463873, + 45.533665 + ], + [ + -73.464875, + 45.534543 + ], + [ + -73.465497, + 45.535116 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469941, + 45.537318 + ], + [ + -73.470305, + 45.537406 + ], + [ + -73.470749, + 45.537487 + ], + [ + -73.471335, + 45.537563 + ], + [ + -73.471845, + 45.53759 + ], + [ + -73.472146, + 45.537591 + ], + [ + -73.472355, + 45.537591 + ], + [ + -73.473126, + 45.537555 + ], + [ + -73.473826, + 45.537492 + ], + [ + -73.474517, + 45.537429 + ], + [ + -73.474599, + 45.537423 + ], + [ + -73.475173, + 45.53738 + ], + [ + -73.47563, + 45.537344 + ], + [ + -73.476192, + 45.537353 + ], + [ + -73.476662, + 45.537394 + ], + [ + -73.477026, + 45.537434 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.477375, + 45.53749 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484688, + 45.539728 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487193, + 45.54054 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491035, + 45.541427 + ], + [ + -73.491084, + 45.541584 + ], + [ + -73.491099, + 45.541724 + ], + [ + -73.491106, + 45.541854 + ], + [ + -73.491092, + 45.542156 + ], + [ + -73.491081, + 45.542381 + ], + [ + -73.49104, + 45.543146 + ], + [ + -73.490998, + 45.543726 + ], + [ + -73.491037, + 45.544117 + ], + [ + -73.491071, + 45.544252 + ], + [ + -73.491113, + 45.544396 + ], + [ + -73.491272, + 45.544698 + ], + [ + -73.491367, + 45.544855 + ], + [ + -73.491449, + 45.544981 + ], + [ + -73.491608, + 45.545148 + ], + [ + -73.491886, + 45.545409 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.492548, + 45.545933 + ], + [ + -73.492868, + 45.546192 + ], + [ + -73.493081, + 45.546361 + ], + [ + -73.493835, + 45.546966 + ], + [ + -73.494604, + 45.547573 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.495811, + 45.548549 + ], + [ + -73.49673, + 45.549278 + ], + [ + -73.497087, + 45.549548 + ], + [ + -73.49736, + 45.549719 + ], + [ + -73.497501, + 45.549805 + ], + [ + -73.497722, + 45.549908 + ], + [ + -73.497944, + 45.549998 + ], + [ + -73.498136, + 45.55007 + ], + [ + -73.498405, + 45.550151 + ], + [ + -73.498716, + 45.550237 + ], + [ + -73.499009, + 45.550295 + ], + [ + -73.499514, + 45.550349 + ], + [ + -73.499763, + 45.550363 + ], + [ + -73.4998, + 45.550364 + ], + [ + -73.501515, + 45.550448 + ], + [ + -73.502446, + 45.550493 + ], + [ + -73.502797, + 45.550502 + ], + [ + -73.502913, + 45.550498 + ], + [ + -73.503017, + 45.550484 + ], + [ + -73.503194, + 45.550453 + ], + [ + -73.503355, + 45.550399 + ], + [ + -73.503504, + 45.550327 + ], + [ + -73.503636, + 45.550237 + ], + [ + -73.503751, + 45.550133 + ], + [ + -73.503955, + 45.549904 + ], + [ + -73.504046, + 45.549787 + ], + [ + -73.504119, + 45.549647 + ], + [ + -73.50416, + 45.549508 + ], + [ + -73.504199, + 45.549065 + ], + [ + -73.504212, + 45.548909 + ], + [ + -73.504289, + 45.548585 + ], + [ + -73.504342, + 45.548423 + ], + [ + -73.504477, + 45.548095 + ], + [ + -73.504558, + 45.547933 + ], + [ + -73.504654, + 45.547771 + ], + [ + -73.504887, + 45.547461 + ], + [ + -73.505281, + 45.546997 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.507852, + 45.544119 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.518302, + 45.534844 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523434, + 45.53015 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.521182, + 45.53024 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516749, + 45.525842 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517032, + 45.525567 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524738 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 37, + "properties": { + "id": "8463d0eb-390e-4e2d-a967-98ec5582514c", + "data": { + "gtfs": { + "shape_id": "10_1_A" + }, + "segments": [ + { + "distanceMeters": 1029, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 934, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 762, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 1070, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 1025, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 1025, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 839, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 880, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 771, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 1075, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 1320, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 1029, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 658, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 667, + "travelTimeSeconds": 19 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13078, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 0, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 36.33, + "travelTimeWithoutDwellTimesSeconds": 360, + "operatingTimeWithLayoverTimeSeconds": 540, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 360, + "operatingSpeedWithLayoverMetersPerSecond": 24.22, + "averageSpeedWithoutDwellTimesMetersPerSecond": 36.33 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "69483ac1-331d-4f0e-93b5-d8134f380763", + "66f007ae-d813-40cb-ab41-e87b10da3a72", + "6685b5fc-0f35-439d-9c20-c96b665d5201", + "c896d257-2942-4aba-aded-59e49480d892", + "62590a84-0f1e-43e0-8046-574d7d23d2e9", + "48a4676d-1da3-4489-8f80-1edfb1b61b1b", + "83c203fe-4b10-42fd-aafb-d9bc99f756b0", + "e5c2d9f4-1be6-458f-854f-8103a3048b8c", + "231dda72-d4b5-48ae-b714-5ce9d3802c45", + "25a5f82a-36a7-4a52-af2b-32a681f87765", + "8b3a553d-dad5-41ff-b228-80f338c4b0e0", + "210e532b-2acc-4a3e-b173-3471add098b1", + "51637772-6b85-4c49-a14a-4de104a8f1f5", + "23ef9461-bbd0-492e-8678-c51238629a13", + "69483ac1-331d-4f0e-93b5-d8134f380763" + ], + "stops": [], + "line_id": "d0da7a94-74d0-48f5-b44a-25e0881a130d", + "segments": [ + 0, + 44, + 81, + 109, + 144, + 153, + 181, + 201, + 231, + 250, + 275, + 290, + 325, + 348 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 37, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469107, + 45.46587 + ], + [ + -73.469152, + 45.465801 + ], + [ + -73.469114, + 45.465711 + ], + [ + -73.469034, + 45.465669 + ], + [ + -73.468913, + 45.46567 + ], + [ + -73.468751, + 45.465752 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469327, + 45.468092 + ], + [ + -73.469492, + 45.4681 + ], + [ + -73.469643, + 45.468109 + ], + [ + -73.470299, + 45.468145 + ], + [ + -73.471062, + 45.468181 + ], + [ + -73.471238, + 45.46819 + ], + [ + -73.471526, + 45.468208 + ], + [ + -73.472194, + 45.468244 + ], + [ + -73.472441, + 45.468255 + ], + [ + -73.472597, + 45.468262 + ], + [ + -73.472728, + 45.468276 + ], + [ + -73.472834, + 45.468294 + ], + [ + -73.472877, + 45.468307 + ], + [ + -73.473025, + 45.468348 + ], + [ + -73.473214, + 45.468424 + ], + [ + -73.473671, + 45.468604 + ], + [ + -73.473673, + 45.468604 + ], + [ + -73.473905, + 45.468649 + ], + [ + -73.474077, + 45.468676 + ], + [ + -73.474259, + 45.46869 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474718, + 45.468735 + ], + [ + -73.474819, + 45.468708 + ], + [ + -73.474822, + 45.468708 + ], + [ + -73.475149, + 45.468731 + ], + [ + -73.475386, + 45.468739 + ], + [ + -73.475537, + 45.468744 + ], + [ + -73.477766, + 45.468838 + ], + [ + -73.477791, + 45.468839 + ], + [ + -73.478795, + 45.46888 + ], + [ + -73.479733, + 45.468916 + ], + [ + -73.480606, + 45.468949 + ], + [ + -73.480705, + 45.468952 + ], + [ + -73.481592, + 45.468898 + ], + [ + -73.482517, + 45.468777 + ], + [ + -73.483931, + 45.468794 + ], + [ + -73.484035, + 45.468795 + ], + [ + -73.484852, + 45.468827 + ], + [ + -73.484983, + 45.468836 + ], + [ + -73.485068, + 45.468858 + ], + [ + -73.485183, + 45.468899 + ], + [ + -73.485272, + 45.468957 + ], + [ + -73.485503, + 45.469228 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.485839, + 45.469649 + ], + [ + -73.485925, + 45.469758 + ], + [ + -73.485957, + 45.470015 + ], + [ + -73.485933, + 45.470276 + ], + [ + -73.485862, + 45.47135 + ], + [ + -73.485859, + 45.471396 + ], + [ + -73.485922, + 45.47159 + ], + [ + -73.486077, + 45.471855 + ], + [ + -73.486282, + 45.472161 + ], + [ + -73.486545, + 45.47257 + ], + [ + -73.486657, + 45.472725 + ], + [ + -73.486715, + 45.472804 + ], + [ + -73.486787, + 45.472912 + ], + [ + -73.488142, + 45.472472 + ], + [ + -73.488555, + 45.472341 + ], + [ + -73.488966, + 45.472197 + ], + [ + -73.489081, + 45.472161 + ], + [ + -73.489198, + 45.472121 + ], + [ + -73.489607, + 45.471977 + ], + [ + -73.489871, + 45.471861 + ], + [ + -73.490057, + 45.471779 + ], + [ + -73.490819, + 45.472701 + ], + [ + -73.490918, + 45.472817 + ], + [ + -73.491142, + 45.473082 + ], + [ + -73.491514, + 45.47352 + ], + [ + -73.490727, + 45.473858 + ], + [ + -73.490156, + 45.474085 + ], + [ + -73.489892, + 45.474191 + ], + [ + -73.489482, + 45.474308 + ], + [ + -73.48921, + 45.474343 + ], + [ + -73.488939, + 45.474348 + ], + [ + -73.488579, + 45.47433 + ], + [ + -73.48828, + 45.474348 + ], + [ + -73.487939, + 45.474393 + ], + [ + -73.487662, + 45.474472 + ], + [ + -73.487656, + 45.474474 + ], + [ + -73.48753, + 45.474518 + ], + [ + -73.487464, + 45.474541 + ], + [ + -73.487385, + 45.474582 + ], + [ + -73.487244, + 45.47464 + ], + [ + -73.487321, + 45.474735 + ], + [ + -73.487428, + 45.474874 + ], + [ + -73.487615, + 45.475158 + ], + [ + -73.487741, + 45.475441 + ], + [ + -73.487792, + 45.475608 + ], + [ + -73.487794, + 45.475615 + ], + [ + -73.487881, + 45.476058 + ], + [ + -73.487976, + 45.47662 + ], + [ + -73.488008, + 45.476755 + ], + [ + -73.488063, + 45.477092 + ], + [ + -73.488079, + 45.477241 + ], + [ + -73.488077, + 45.477259 + ], + [ + -73.488079, + 45.477295 + ], + [ + -73.488061, + 45.477358 + ], + [ + -73.488022, + 45.477403 + ], + [ + -73.48794, + 45.477475 + ], + [ + -73.487785, + 45.477583 + ], + [ + -73.487333, + 45.477881 + ], + [ + -73.487212, + 45.477961 + ], + [ + -73.486606, + 45.478379 + ], + [ + -73.486467, + 45.478469 + ], + [ + -73.486445, + 45.47849 + ], + [ + -73.486363, + 45.478568 + ], + [ + -73.486284, + 45.478752 + ], + [ + -73.48627, + 45.478815 + ], + [ + -73.486253, + 45.478887 + ], + [ + -73.486246, + 45.47895 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486526, + 45.47904 + ], + [ + -73.486564, + 45.47904 + ], + [ + -73.486789, + 45.47904 + ], + [ + -73.487039, + 45.479049 + ], + [ + -73.491329, + 45.479132 + ], + [ + -73.491524, + 45.479136 + ], + [ + -73.491713, + 45.47914 + ], + [ + -73.49213, + 45.479149 + ], + [ + -73.493367, + 45.479162 + ], + [ + -73.495829, + 45.479203 + ], + [ + -73.496137, + 45.479208 + ], + [ + -73.496207, + 45.479208 + ], + [ + -73.496272, + 45.479208 + ], + [ + -73.497101, + 45.479217 + ], + [ + -73.498008, + 45.479232 + ], + [ + -73.498188, + 45.479235 + ], + [ + -73.498413, + 45.479239 + ], + [ + -73.498669, + 45.479235 + ], + [ + -73.498683, + 45.479234 + ], + [ + -73.498818, + 45.47923 + ], + [ + -73.499162, + 45.479257 + ], + [ + -73.49961, + 45.479198 + ], + [ + -73.499687, + 45.479176 + ], + [ + -73.500019, + 45.479082 + ], + [ + -73.500107, + 45.478998 + ], + [ + -73.500272, + 45.479047 + ], + [ + -73.500354, + 45.479074 + ], + [ + -73.500404, + 45.479087 + ], + [ + -73.500422, + 45.479099 + ], + [ + -73.500588, + 45.479205 + ], + [ + -73.501159, + 45.479818 + ], + [ + -73.501455, + 45.480118 + ], + [ + -73.50163, + 45.480263 + ], + [ + -73.501828, + 45.48048 + ], + [ + -73.502032, + 45.480705 + ], + [ + -73.502676, + 45.481412 + ], + [ + -73.502806, + 45.48156 + ], + [ + -73.503272, + 45.482092 + ], + [ + -73.50345, + 45.482308 + ], + [ + -73.503512, + 45.48238 + ], + [ + -73.503563, + 45.48245 + ], + [ + -73.503598, + 45.482497 + ], + [ + -73.504141, + 45.483117 + ], + [ + -73.504614, + 45.483657 + ], + [ + -73.504846, + 45.483915 + ], + [ + -73.504857, + 45.483927 + ], + [ + -73.504924, + 45.483995 + ], + [ + -73.504931, + 45.484001 + ], + [ + -73.505108, + 45.484152 + ], + [ + -73.505242, + 45.484242 + ], + [ + -73.505364, + 45.484314 + ], + [ + -73.505521, + 45.484395 + ], + [ + -73.505663, + 45.484463 + ], + [ + -73.505851, + 45.484535 + ], + [ + -73.505993, + 45.484584 + ], + [ + -73.506624, + 45.484814 + ], + [ + -73.506746, + 45.484863 + ], + [ + -73.506951, + 45.484962 + ], + [ + -73.507115, + 45.485056 + ], + [ + -73.507185, + 45.485097 + ], + [ + -73.507329, + 45.4852 + ], + [ + -73.507431, + 45.485295 + ], + [ + -73.507518, + 45.485367 + ], + [ + -73.50762, + 45.485484 + ], + [ + -73.507754, + 45.485677 + ], + [ + -73.508077, + 45.486145 + ], + [ + -73.508225, + 45.48637 + ], + [ + -73.508359, + 45.486582 + ], + [ + -73.508385, + 45.486622 + ], + [ + -73.508489, + 45.486784 + ], + [ + -73.508543, + 45.486852 + ], + [ + -73.509598, + 45.488378 + ], + [ + -73.509675, + 45.488489 + ], + [ + -73.509764, + 45.488615 + ], + [ + -73.509971, + 45.488912 + ], + [ + -73.510813, + 45.490118 + ], + [ + -73.510831, + 45.490146 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.512404, + 45.492412 + ], + [ + -73.512423, + 45.492451 + ], + [ + -73.51245, + 45.492507 + ], + [ + -73.512764, + 45.493074 + ], + [ + -73.512921, + 45.493393 + ], + [ + -73.512971, + 45.493496 + ], + [ + -73.512984, + 45.493515 + ], + [ + -73.513094, + 45.493766 + ], + [ + -73.513261, + 45.494078 + ], + [ + -73.513283, + 45.494149 + ], + [ + -73.513342, + 45.494287 + ], + [ + -73.513459, + 45.494626 + ], + [ + -73.513505, + 45.494783 + ], + [ + -73.513561, + 45.49499 + ], + [ + -73.513604, + 45.495179 + ], + [ + -73.513621, + 45.495251 + ], + [ + -73.513692, + 45.495557 + ], + [ + -73.513771, + 45.495915 + ], + [ + -73.513786, + 45.49598 + ], + [ + -73.51384, + 45.496187 + ], + [ + -73.513899, + 45.496425 + ], + [ + -73.513925, + 45.49652 + ], + [ + -73.513974, + 45.496614 + ], + [ + -73.514009, + 45.496686 + ], + [ + -73.514054, + 45.496749 + ], + [ + -73.514104, + 45.49683 + ], + [ + -73.514166, + 45.496911 + ], + [ + -73.514219, + 45.49697 + ], + [ + -73.514552, + 45.497478 + ], + [ + -73.514769, + 45.497838 + ], + [ + -73.515085, + 45.498391 + ], + [ + -73.51517, + 45.49854 + ], + [ + -73.515562, + 45.499248 + ], + [ + -73.515623, + 45.499359 + ], + [ + -73.515674, + 45.499453 + ], + [ + -73.515873, + 45.499831 + ], + [ + -73.515977, + 45.500074 + ], + [ + -73.516146, + 45.500501 + ], + [ + -73.516373, + 45.50114 + ], + [ + -73.51647, + 45.501401 + ], + [ + -73.516585, + 45.501695 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517437, + 45.50526 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517233, + 45.507275 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.51756, + 45.509217 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517796, + 45.51143 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517596, + 45.513244 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518268, + 45.515317 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518977, + 45.516751 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520113, + 45.519734 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520194, + 45.520238 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522178, + 45.522521 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.521609, + 45.523676 + ], + [ + -73.521556, + 45.52368 + ], + [ + -73.521506, + 45.523698 + ], + [ + -73.521494, + 45.523725 + ], + [ + -73.521489, + 45.523788 + ], + [ + -73.521486, + 45.523819 + ] + ] + }, + "id": 38, + "properties": { + "id": "11e92693-9315-4580-8d65-1530b6ce942c", + "data": { + "gtfs": { + "shape_id": "13_1_A" + }, + "segments": [ + { + "distanceMeters": 662, + "travelTimeSeconds": 88 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 478, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 418, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 406, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 348, + "travelTimeSeconds": 79 + }, + { + "distanceMeters": 716, + "travelTimeSeconds": 164 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10437, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7618.188458394157, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.44, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 5.8, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.44 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "0296a406-079c-41f9-8c5b-0723a0b5f294", + "79c669a1-9060-4e5d-b272-f107884dee00", + "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "3e9388da-8f48-48c6-b6c0-5461e27eb26a", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "7e4b21bb-20d6-4104-9b98-071226922d49", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "c6165892-3719-417f-8d25-92e65471b42c", + "6735199f-47fc-47db-9116-7c110cca8945", + "6e4c328c-6fba-4e81-b589-59318e11a37a", + "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", + "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", + "fc92d5a1-fe31-4274-9837-2686b4525030", + "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", + "6b54424b-6f85-4448-8e7d-a05da4ef5b95", + "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", + "4df7f34c-ec49-4d48-90b3-56f3faffc976", + "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "9f22d75f-cc66-4020-8804-7912f49950d8", + "41d7b6d4-1fe4-44ed-a774-b005607fc59d", + "bc9b9243-e0ec-461a-9898-6eb69ecd511a", + "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "114aaaad-d40e-4930-853f-ef5cebdd299f", + "0b09b82c-ec97-406d-9f1c-690cc935b5ea", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "2259b112-2e60-4bcc-ad14-9e0e577f2909", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "773adbe0-a2cf-4c95-bea4-eaf41da91d6d", + "segments": [ + 0, + 28, + 32, + 39, + 50, + 52, + 56, + 60, + 67, + 73, + 79, + 88, + 92, + 95, + 103, + 114, + 126, + 130, + 143, + 147, + 152, + 172, + 178, + 185, + 205, + 209, + 214, + 217, + 233, + 248, + 256, + 269, + 275, + 280, + 286, + 292, + 300, + 307, + 315 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 38, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521486, + 45.523819 + ], + [ + -73.521481, + 45.523874 + ], + [ + -73.52149, + 45.523892 + ], + [ + -73.521509, + 45.523906 + ], + [ + -73.521542, + 45.523919 + ], + [ + -73.521581, + 45.523923 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519706, + 45.52323 + ], + [ + -73.519869, + 45.522907 + ], + [ + -73.520158, + 45.522337 + ], + [ + -73.520306, + 45.521899 + ], + [ + -73.520306, + 45.521896 + ], + [ + -73.520354, + 45.521696 + ], + [ + -73.520354, + 45.521695 + ], + [ + -73.520401, + 45.521498 + ], + [ + -73.520405, + 45.521373 + ], + [ + -73.520409, + 45.52119 + ], + [ + -73.520398, + 45.521025 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520191, + 45.520225 + ], + [ + -73.520121, + 45.519896 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518919, + 45.516651 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517657, + 45.51361 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517706, + 45.511766 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.51761, + 45.509413 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517232, + 45.50733 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517348, + 45.505751 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.516772, + 45.502135 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.516608, + 45.501753 + ], + [ + -73.51647, + 45.501401 + ], + [ + -73.516373, + 45.50114 + ], + [ + -73.516146, + 45.500501 + ], + [ + -73.515977, + 45.500074 + ], + [ + -73.515873, + 45.499831 + ], + [ + -73.5157, + 45.499501 + ], + [ + -73.515674, + 45.499453 + ], + [ + -73.515623, + 45.499359 + ], + [ + -73.51517, + 45.49854 + ], + [ + -73.515085, + 45.498391 + ], + [ + -73.514769, + 45.497838 + ], + [ + -73.514552, + 45.497478 + ], + [ + -73.514219, + 45.49697 + ], + [ + -73.514166, + 45.496911 + ], + [ + -73.514104, + 45.49683 + ], + [ + -73.514054, + 45.496749 + ], + [ + -73.514009, + 45.496686 + ], + [ + -73.513974, + 45.496614 + ], + [ + -73.513925, + 45.49652 + ], + [ + -73.513899, + 45.496425 + ], + [ + -73.51384, + 45.496187 + ], + [ + -73.513786, + 45.49598 + ], + [ + -73.513692, + 45.495557 + ], + [ + -73.513665, + 45.495437 + ], + [ + -73.513621, + 45.495251 + ], + [ + -73.513604, + 45.495179 + ], + [ + -73.513561, + 45.49499 + ], + [ + -73.513505, + 45.494783 + ], + [ + -73.513459, + 45.494626 + ], + [ + -73.513342, + 45.494287 + ], + [ + -73.513283, + 45.494149 + ], + [ + -73.513261, + 45.494078 + ], + [ + -73.513094, + 45.493766 + ], + [ + -73.512984, + 45.493515 + ], + [ + -73.512971, + 45.493496 + ], + [ + -73.512921, + 45.493393 + ], + [ + -73.512764, + 45.493074 + ], + [ + -73.51245, + 45.492507 + ], + [ + -73.512404, + 45.492412 + ], + [ + -73.512403, + 45.49241 + ], + [ + -73.510959, + 45.490334 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.510813, + 45.490118 + ], + [ + -73.509971, + 45.488912 + ], + [ + -73.509819, + 45.488694 + ], + [ + -73.509764, + 45.488615 + ], + [ + -73.509675, + 45.488489 + ], + [ + -73.508582, + 45.486908 + ], + [ + -73.508543, + 45.486852 + ], + [ + -73.508489, + 45.486784 + ], + [ + -73.508385, + 45.486622 + ], + [ + -73.508225, + 45.48637 + ], + [ + -73.508077, + 45.486145 + ], + [ + -73.507754, + 45.485677 + ], + [ + -73.50762, + 45.485484 + ], + [ + -73.507518, + 45.485367 + ], + [ + -73.507431, + 45.485295 + ], + [ + -73.507329, + 45.4852 + ], + [ + -73.507185, + 45.485097 + ], + [ + -73.507115, + 45.485056 + ], + [ + -73.506951, + 45.484962 + ], + [ + -73.506746, + 45.484863 + ], + [ + -73.506624, + 45.484814 + ], + [ + -73.505993, + 45.484584 + ], + [ + -73.505851, + 45.484535 + ], + [ + -73.505663, + 45.484463 + ], + [ + -73.505521, + 45.484395 + ], + [ + -73.505364, + 45.484314 + ], + [ + -73.505242, + 45.484242 + ], + [ + -73.505108, + 45.484152 + ], + [ + -73.504925, + 45.483996 + ], + [ + -73.504924, + 45.483995 + ], + [ + -73.504857, + 45.483927 + ], + [ + -73.504846, + 45.483915 + ], + [ + -73.504614, + 45.483657 + ], + [ + -73.504141, + 45.483117 + ], + [ + -73.503674, + 45.482584 + ], + [ + -73.503598, + 45.482497 + ], + [ + -73.503512, + 45.48238 + ], + [ + -73.50345, + 45.482308 + ], + [ + -73.503272, + 45.482092 + ], + [ + -73.502806, + 45.48156 + ], + [ + -73.502676, + 45.481412 + ], + [ + -73.501972, + 45.480639 + ], + [ + -73.501828, + 45.48048 + ], + [ + -73.50163, + 45.480263 + ], + [ + -73.501562, + 45.480174 + ], + [ + -73.501309, + 45.479775 + ], + [ + -73.501238, + 45.479689 + ], + [ + -73.501074, + 45.479488 + ], + [ + -73.500829, + 45.479284 + ], + [ + -73.50074, + 45.479167 + ], + [ + -73.500635, + 45.479076 + ], + [ + -73.500662, + 45.478997 + ], + [ + -73.500703, + 45.478888 + ], + [ + -73.500708, + 45.478848 + ], + [ + -73.500618, + 45.478724 + ], + [ + -73.500601, + 45.478716 + ], + [ + -73.500465, + 45.47866 + ], + [ + -73.500435, + 45.478659 + ], + [ + -73.500337, + 45.478661 + ], + [ + -73.50019, + 45.478724 + ], + [ + -73.500175, + 45.478743 + ], + [ + -73.500117, + 45.478833 + ], + [ + -73.500062, + 45.478934 + ], + [ + -73.499809, + 45.479021 + ], + [ + -73.499691, + 45.479052 + ], + [ + -73.4995, + 45.479103 + ], + [ + -73.498818, + 45.47923 + ], + [ + -73.498683, + 45.479234 + ], + [ + -73.498669, + 45.479235 + ], + [ + -73.498508, + 45.479237 + ], + [ + -73.498413, + 45.479239 + ], + [ + -73.498188, + 45.479235 + ], + [ + -73.497101, + 45.479217 + ], + [ + -73.496458, + 45.47921 + ], + [ + -73.496272, + 45.479208 + ], + [ + -73.496207, + 45.479208 + ], + [ + -73.496137, + 45.479208 + ], + [ + -73.493367, + 45.479162 + ], + [ + -73.49213, + 45.479149 + ], + [ + -73.491897, + 45.479144 + ], + [ + -73.491713, + 45.47914 + ], + [ + -73.491329, + 45.479132 + ], + [ + -73.487039, + 45.479049 + ], + [ + -73.486789, + 45.47904 + ], + [ + -73.48667, + 45.47904 + ], + [ + -73.486564, + 45.47904 + ], + [ + -73.486526, + 45.47904 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486426, + 45.478914 + ], + [ + -73.486429, + 45.478851 + ], + [ + -73.486457, + 45.478743 + ], + [ + -73.486515, + 45.478644 + ], + [ + -73.486599, + 45.478568 + ], + [ + -73.487334, + 45.478055 + ], + [ + -73.487563, + 45.477904 + ], + [ + -73.487867, + 45.477704 + ], + [ + -73.48804, + 45.477592 + ], + [ + -73.488143, + 45.477497 + ], + [ + -73.488191, + 45.477434 + ], + [ + -73.48823, + 45.477367 + ], + [ + -73.488245, + 45.477317 + ], + [ + -73.488261, + 45.477254 + ], + [ + -73.488221, + 45.47702 + ], + [ + -73.488146, + 45.476629 + ], + [ + -73.488047, + 45.476044 + ], + [ + -73.487986, + 45.47573 + ], + [ + -73.487958, + 45.475585 + ], + [ + -73.487905, + 45.475414 + ], + [ + -73.48781, + 45.475189 + ], + [ + -73.487773, + 45.475113 + ], + [ + -73.487674, + 45.474955 + ], + [ + -73.487583, + 45.474826 + ], + [ + -73.487579, + 45.47482 + ], + [ + -73.487467, + 45.474676 + ], + [ + -73.487385, + 45.474582 + ], + [ + -73.487464, + 45.474541 + ], + [ + -73.48753, + 45.474518 + ], + [ + -73.487656, + 45.474474 + ], + [ + -73.487939, + 45.474393 + ], + [ + -73.48828, + 45.474348 + ], + [ + -73.488579, + 45.47433 + ], + [ + -73.488939, + 45.474348 + ], + [ + -73.48921, + 45.474343 + ], + [ + -73.489482, + 45.474308 + ], + [ + -73.489779, + 45.474223 + ], + [ + -73.489892, + 45.474191 + ], + [ + -73.490727, + 45.473858 + ], + [ + -73.491378, + 45.473579 + ], + [ + -73.491514, + 45.47352 + ], + [ + -73.490918, + 45.472817 + ], + [ + -73.490819, + 45.472701 + ], + [ + -73.49018, + 45.471928 + ], + [ + -73.490057, + 45.471779 + ], + [ + -73.489969, + 45.471675 + ], + [ + -73.489522, + 45.471873 + ], + [ + -73.489116, + 45.472013 + ], + [ + -73.48901, + 45.472049 + ], + [ + -73.488898, + 45.472089 + ], + [ + -73.488483, + 45.472229 + ], + [ + -73.48807, + 45.472359 + ], + [ + -73.487087, + 45.472682 + ], + [ + -73.486715, + 45.472804 + ], + [ + -73.486545, + 45.47257 + ], + [ + -73.486282, + 45.472161 + ], + [ + -73.486077, + 45.471855 + ], + [ + -73.486033, + 45.47178 + ], + [ + -73.485922, + 45.47159 + ], + [ + -73.485859, + 45.471396 + ], + [ + -73.485933, + 45.470276 + ], + [ + -73.485957, + 45.470015 + ], + [ + -73.485925, + 45.469758 + ], + [ + -73.485839, + 45.469649 + ], + [ + -73.48565, + 45.469408 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.485272, + 45.468957 + ], + [ + -73.485183, + 45.468899 + ], + [ + -73.485068, + 45.468858 + ], + [ + -73.484983, + 45.468836 + ], + [ + -73.484852, + 45.468827 + ], + [ + -73.484175, + 45.468801 + ], + [ + -73.484035, + 45.468795 + ], + [ + -73.482517, + 45.468777 + ], + [ + -73.481592, + 45.468898 + ], + [ + -73.480837, + 45.468944 + ], + [ + -73.480705, + 45.468952 + ], + [ + -73.479733, + 45.468916 + ], + [ + -73.478795, + 45.46888 + ], + [ + -73.477984, + 45.468847 + ], + [ + -73.477791, + 45.468839 + ], + [ + -73.475537, + 45.468744 + ], + [ + -73.475149, + 45.468731 + ], + [ + -73.474822, + 45.468708 + ], + [ + -73.474819, + 45.468708 + ], + [ + -73.474755, + 45.468671 + ], + [ + -73.47474, + 45.468663 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.473206, + 45.468296 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.471429, + 45.468098 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469574, + 45.467137 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.46908, + 45.465912 + ], + [ + -73.469107, + 45.46587 + ] + ] + }, + "id": 39, + "properties": { + "id": "ea1b8b23-8cd5-40e1-8051-1748fdff1406", + "data": { + "gtfs": { + "shape_id": "13_1_R" + }, + "segments": [ + { + "distanceMeters": 766, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 378, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 353, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 412, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 482, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 447, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 435, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 356, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 654, + "travelTimeSeconds": 158 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10512, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7618.188458394157, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.74, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 6.04, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.74 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "0b09b82c-ec97-406d-9f1c-690cc935b5ea", + "27330ef0-4c59-4e22-a044-51b9d43c9719", + "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "bc9b9243-e0ec-461a-9898-6eb69ecd511a", + "41d7b6d4-1fe4-44ed-a774-b005607fc59d", + "9f22d75f-cc66-4020-8804-7912f49950d8", + "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "4df7f34c-ec49-4d48-90b3-56f3faffc976", + "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", + "6b54424b-6f85-4448-8e7d-a05da4ef5b95", + "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", + "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", + "6e4c328c-6fba-4e81-b589-59318e11a37a", + "6735199f-47fc-47db-9116-7c110cca8945", + "c6165892-3719-417f-8d25-92e65471b42c", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "7e4b21bb-20d6-4104-9b98-071226922d49", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "3acbe4f4-b4c0-469f-af21-f4af3c6e2b53", + "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "79c669a1-9060-4e5d-b272-f107884dee00", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "773adbe0-a2cf-4c95-bea4-eaf41da91d6d", + "segments": [ + 0, + 31, + 41, + 52, + 58, + 65, + 71, + 76, + 88, + 97, + 115, + 131, + 132, + 136, + 139, + 162, + 168, + 175, + 203, + 207, + 213, + 218, + 228, + 239, + 245, + 258, + 261, + 265, + 274, + 279, + 286, + 293, + 297, + 301, + 307, + 316, + 323 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 39, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.436389, + 45.44372 + ], + [ + -73.436575, + 45.443858 + ], + [ + -73.436661, + 45.443921 + ], + [ + -73.436662, + 45.443922 + ], + [ + -73.437463, + 45.444543 + ], + [ + -73.437838, + 45.444826 + ], + [ + -73.437964, + 45.444933 + ], + [ + -73.438029, + 45.444985 + ], + [ + -73.438094, + 45.445037 + ], + [ + -73.438227, + 45.444954 + ], + [ + -73.438235, + 45.444948 + ], + [ + -73.438338, + 45.444864 + ], + [ + -73.438657, + 45.444631 + ], + [ + -73.438851, + 45.444488 + ], + [ + -73.439723, + 45.443742 + ], + [ + -73.439845, + 45.443642 + ], + [ + -73.439975, + 45.443534 + ], + [ + -73.440539, + 45.443068 + ], + [ + -73.441275, + 45.44243 + ], + [ + -73.441943, + 45.441851 + ], + [ + -73.442064, + 45.44172 + ], + [ + -73.442173, + 45.441795 + ], + [ + -73.444502, + 45.443464 + ], + [ + -73.444646, + 45.443567 + ], + [ + -73.444814, + 45.443691 + ], + [ + -73.445792, + 45.44439 + ], + [ + -73.445916, + 45.444479 + ], + [ + -73.447006, + 45.445254 + ], + [ + -73.447144, + 45.445352 + ], + [ + -73.44736, + 45.4455 + ], + [ + -73.447729, + 45.445718 + ], + [ + -73.448087, + 45.44592 + ], + [ + -73.449215, + 45.446551 + ], + [ + -73.449266, + 45.44658 + ], + [ + -73.4494, + 45.446659 + ], + [ + -73.449563, + 45.446742 + ], + [ + -73.450068, + 45.447011 + ], + [ + -73.450448, + 45.447201 + ], + [ + -73.451097, + 45.447517 + ], + [ + -73.4522, + 45.448094 + ], + [ + -73.452476, + 45.448237 + ], + [ + -73.453807, + 45.448921 + ], + [ + -73.454023, + 45.449075 + ], + [ + -73.454088, + 45.449121 + ], + [ + -73.454556, + 45.449427 + ], + [ + -73.454816, + 45.449624 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.455393, + 45.45012 + ], + [ + -73.456061, + 45.45066 + ], + [ + -73.456286, + 45.450829 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.457162, + 45.451455 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457924, + 45.451894 + ], + [ + -73.458487, + 45.4522 + ], + [ + -73.458745, + 45.452338 + ], + [ + -73.458941, + 45.452443 + ], + [ + -73.459713, + 45.452799 + ], + [ + -73.461259, + 45.453484 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.462936, + 45.45423 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463822, + 45.454609 + ], + [ + -73.464921, + 45.455073 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465851, + 45.455474 + ], + [ + -73.466482, + 45.45573 + ], + [ + -73.466742, + 45.45582 + ], + [ + -73.466794, + 45.455838 + ], + [ + -73.466905, + 45.455874 + ], + [ + -73.467229, + 45.455978 + ], + [ + -73.467462, + 45.456041 + ], + [ + -73.467802, + 45.456122 + ], + [ + -73.468172, + 45.456192 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468158, + 45.456945 + ], + [ + -73.468147, + 45.457005 + ], + [ + -73.46811, + 45.457204 + ], + [ + -73.468109, + 45.457211 + ], + [ + -73.468042, + 45.457852 + ], + [ + -73.468021, + 45.458057 + ], + [ + -73.467975, + 45.458309 + ], + [ + -73.467971, + 45.458525 + ], + [ + -73.467956, + 45.458669 + ], + [ + -73.467979, + 45.458754 + ], + [ + -73.468056, + 45.45893 + ], + [ + -73.468061, + 45.458935 + ], + [ + -73.468212, + 45.459096 + ], + [ + -73.468425, + 45.459258 + ], + [ + -73.468742, + 45.459506 + ], + [ + -73.468938, + 45.459704 + ], + [ + -73.46901, + 45.459861 + ], + [ + -73.469046, + 45.459978 + ], + [ + -73.469045, + 45.460397 + ], + [ + -73.469022, + 45.460702 + ], + [ + -73.46901, + 45.460865 + ], + [ + -73.46897, + 45.46149 + ], + [ + -73.468876, + 45.462738 + ], + [ + -73.468837, + 45.463254 + ], + [ + -73.468833, + 45.46342 + ], + [ + -73.468853, + 45.463435 + ], + [ + -73.468884, + 45.463461 + ], + [ + -73.468972, + 45.463474 + ], + [ + -73.470687, + 45.463533 + ], + [ + -73.471257, + 45.463547 + ], + [ + -73.471494, + 45.463556 + ], + [ + -73.471549, + 45.463559 + ], + [ + -73.471666, + 45.463565 + ], + [ + -73.471841, + 45.463592 + ], + [ + -73.472107, + 45.4637 + ], + [ + -73.472794, + 45.46417 + ], + [ + -73.472811, + 45.464181 + ], + [ + -73.473207, + 45.464434 + ], + [ + -73.473437, + 45.464543 + ], + [ + -73.473499, + 45.464573 + ], + [ + -73.473705, + 45.464641 + ], + [ + -73.473949, + 45.464699 + ], + [ + -73.474168, + 45.464717 + ], + [ + -73.474508, + 45.464734 + ], + [ + -73.474661, + 45.464744 + ], + [ + -73.47483, + 45.464748 + ], + [ + -73.475061, + 45.464753 + ], + [ + -73.476229, + 45.46479 + ], + [ + -73.478197, + 45.464861 + ], + [ + -73.478688, + 45.464879 + ], + [ + -73.478969, + 45.464889 + ], + [ + -73.479281, + 45.464889 + ], + [ + -73.479651, + 45.464862 + ], + [ + -73.479951, + 45.464831 + ], + [ + -73.480287, + 45.464772 + ], + [ + -73.480652, + 45.464687 + ], + [ + -73.480952, + 45.464593 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.481205, + 45.464118 + ], + [ + -73.481015, + 45.463891 + ], + [ + -73.480932, + 45.463792 + ], + [ + -73.480306, + 45.46304 + ], + [ + -73.479929, + 45.462589 + ], + [ + -73.479274, + 45.461807 + ], + [ + -73.478983, + 45.461465 + ], + [ + -73.478678, + 45.461105 + ], + [ + -73.47855, + 45.461011 + ], + [ + -73.478401, + 45.460879 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.47888, + 45.460399 + ], + [ + -73.479008, + 45.460264 + ], + [ + -73.479302, + 45.459904 + ], + [ + -73.479398, + 45.459769 + ], + [ + -73.479488, + 45.459616 + ], + [ + -73.479616, + 45.459382 + ], + [ + -73.479663, + 45.45928 + ], + [ + -73.479699, + 45.459202 + ], + [ + -73.47976, + 45.459027 + ], + [ + -73.479776, + 45.458968 + ], + [ + -73.479808, + 45.458865 + ], + [ + -73.479852, + 45.458707 + ], + [ + -73.479891, + 45.458478 + ], + [ + -73.479913, + 45.458325 + ], + [ + -73.479923, + 45.458145 + ], + [ + -73.479926, + 45.458073 + ], + [ + -73.479893, + 45.457659 + ], + [ + -73.479816, + 45.456864 + ], + [ + -73.479803, + 45.456723 + ], + [ + -73.480102, + 45.456735 + ], + [ + -73.482699, + 45.456834 + ], + [ + -73.482746, + 45.456836 + ], + [ + -73.483692, + 45.456872 + ], + [ + -73.485139, + 45.456916 + ], + [ + -73.48636, + 45.456954 + ], + [ + -73.48636, + 45.456954 + ], + [ + -73.488203, + 45.457017 + ], + [ + -73.489637, + 45.457066 + ], + [ + -73.489765, + 45.457071 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.489787, + 45.45681 + ], + [ + -73.489805, + 45.456679 + ], + [ + -73.489837, + 45.456558 + ], + [ + -73.489891, + 45.45645 + ], + [ + -73.490047, + 45.45632 + ], + [ + -73.490235, + 45.456194 + ], + [ + -73.490874, + 45.45587 + ], + [ + -73.490895, + 45.455859 + ], + [ + -73.49101, + 45.455802 + ], + [ + -73.491179, + 45.455672 + ], + [ + -73.491306, + 45.455478 + ], + [ + -73.49137, + 45.454781 + ], + [ + -73.491379, + 45.454673 + ], + [ + -73.491385, + 45.45452 + ], + [ + -73.491385, + 45.45439 + ], + [ + -73.491353, + 45.454286 + ], + [ + -73.491307, + 45.454169 + ], + [ + -73.491205, + 45.454016 + ], + [ + -73.491049, + 45.453868 + ], + [ + -73.490922, + 45.453778 + ], + [ + -73.490686, + 45.453615 + ], + [ + -73.49064, + 45.453584 + ], + [ + -73.490337, + 45.453359 + ], + [ + -73.490251, + 45.453269 + ], + [ + -73.490177, + 45.453161 + ], + [ + -73.490138, + 45.453076 + ], + [ + -73.490095, + 45.452936 + ], + [ + -73.490099, + 45.452842 + ], + [ + -73.490107, + 45.452689 + ], + [ + -73.490164, + 45.452099 + ], + [ + -73.490166, + 45.452071 + ], + [ + -73.490174, + 45.451996 + ], + [ + -73.490274, + 45.451145 + ], + [ + -73.490351, + 45.45017 + ], + [ + -73.490356, + 45.450109 + ], + [ + -73.490386, + 45.449719 + ], + [ + -73.490521, + 45.448293 + ], + [ + -73.490551, + 45.447684 + ], + [ + -73.490554, + 45.447636 + ], + [ + -73.492329, + 45.447679 + ], + [ + -73.492436, + 45.447681 + ], + [ + -73.492289, + 45.449805 + ], + [ + -73.492083, + 45.451362 + ], + [ + -73.49212, + 45.45165 + ], + [ + -73.49212, + 45.451825 + ], + [ + -73.492123, + 45.452864 + ], + [ + -73.49216, + 45.453701 + ], + [ + -73.492386, + 45.455438 + ], + [ + -73.492407, + 45.455717 + ], + [ + -73.492493, + 45.456896 + ], + [ + -73.492564, + 45.457647 + ], + [ + -73.4927, + 45.459361 + ], + [ + -73.492779, + 45.460456 + ], + [ + -73.492846, + 45.461395 + ], + [ + -73.492934, + 45.462376 + ], + [ + -73.493017, + 45.462857 + ], + [ + -73.493143, + 45.46333 + ], + [ + -73.493941, + 45.465615 + ], + [ + -73.494238, + 45.466497 + ], + [ + -73.494784, + 45.46809 + ], + [ + -73.49514, + 45.469003 + ], + [ + -73.495218, + 45.469188 + ], + [ + -73.495399, + 45.469561 + ], + [ + -73.495711, + 45.47016 + ], + [ + -73.497242, + 45.472936 + ], + [ + -73.497503, + 45.473372 + ], + [ + -73.497649, + 45.473588 + ], + [ + -73.497808, + 45.473795 + ], + [ + -73.497936, + 45.473957 + ], + [ + -73.49797, + 45.473998 + ], + [ + -73.497971, + 45.473998 + ], + [ + -73.498154, + 45.474204 + ], + [ + -73.498345, + 45.474398 + ], + [ + -73.498759, + 45.474776 + ], + [ + -73.498981, + 45.474956 + ], + [ + -73.499212, + 45.475131 + ], + [ + -73.499453, + 45.475307 + ], + [ + -73.502533, + 45.47734 + ], + [ + -73.504857, + 45.478866 + ], + [ + -73.505913, + 45.479567 + ], + [ + -73.50636, + 45.479923 + ], + [ + -73.506669, + 45.480206 + ], + [ + -73.506703, + 45.480242 + ], + [ + -73.507146, + 45.480733 + ], + [ + -73.507302, + 45.480949 + ], + [ + -73.507442, + 45.481165 + ], + [ + -73.507569, + 45.481381 + ], + [ + -73.507678, + 45.48161 + ], + [ + -73.507857, + 45.482069 + ], + [ + -73.507995, + 45.482559 + ], + [ + -73.508478, + 45.484485 + ], + [ + -73.508692, + 45.485218 + ], + [ + -73.508857, + 45.485709 + ], + [ + -73.509037, + 45.486199 + ], + [ + -73.509236, + 45.486685 + ], + [ + -73.509454, + 45.487171 + ], + [ + -73.509688, + 45.487657 + ], + [ + -73.509939, + 45.488138 + ], + [ + -73.510206, + 45.488624 + ], + [ + -73.510497, + 45.489096 + ], + [ + -73.510511, + 45.489119 + ], + [ + -73.510962, + 45.489803 + ], + [ + -73.512569, + 45.492115 + ], + [ + -73.512867, + 45.49257 + ], + [ + -73.513116, + 45.493024 + ], + [ + -73.513214, + 45.493253 + ], + [ + -73.513607, + 45.494261 + ], + [ + -73.514156, + 45.495746 + ], + [ + -73.514429, + 45.49643 + ], + [ + -73.514695, + 45.496974 + ], + [ + -73.515628, + 45.498702 + ], + [ + -73.515861, + 45.49917 + ], + [ + -73.516166, + 45.499876 + ], + [ + -73.516897, + 45.501748 + ], + [ + -73.516988, + 45.501968 + ], + [ + -73.517047, + 45.502229 + ], + [ + -73.517143, + 45.50249 + ], + [ + -73.517343, + 45.502967 + ], + [ + -73.517473, + 45.503214 + ], + [ + -73.517796, + 45.503754 + ], + [ + -73.517946, + 45.503994 + ], + [ + -73.518322, + 45.504595 + ], + [ + -73.518382, + 45.504726 + ], + [ + -73.518393, + 45.504775 + ], + [ + -73.518381, + 45.504829 + ], + [ + -73.518359, + 45.504861 + ], + [ + -73.518298, + 45.504892 + ], + [ + -73.518253, + 45.504897 + ], + [ + -73.518142, + 45.504882 + ], + [ + -73.517927, + 45.504848 + ], + [ + -73.517624, + 45.504735 + ], + [ + -73.517545, + 45.504708 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517478, + 45.505047 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517438, + 45.505256 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517233, + 45.507272 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.51756, + 45.509215 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517796, + 45.511428 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517596, + 45.513242 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518264, + 45.515308 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518977, + 45.516751 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520113, + 45.519735 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520194, + 45.520238 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.521017, + 45.523892 + ], + [ + -73.521053, + 45.523883 + ], + [ + -73.521061, + 45.523869 + ], + [ + -73.521065, + 45.523851 + ], + [ + -73.521071, + 45.523799 + ] + ] + }, + "id": 40, + "properties": { + "id": "276c0b0c-0356-44f1-a494-1883018be48d", + "data": { + "gtfs": { + "shape_id": "14_1_A" + }, + "segments": [ + { + "distanceMeters": 261, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 469, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 87, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 7007, + "travelTimeSeconds": 420 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 348, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 604, + "travelTimeSeconds": 97 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 186, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17447, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11114.673998285822, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.38, + "travelTimeWithoutDwellTimesSeconds": 1860, + "operatingTimeWithLayoverTimeSeconds": 2046, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1860, + "operatingSpeedWithLayoverMetersPerSecond": 8.53, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.38 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "1336b6ed-25ac-4ba0-b4d2-c273e4f51d74", + "9a91df5e-7976-4b04-a1ed-26fb34f4f58f", + "936850f5-3268-43bc-97bf-4daf0894fdc7", + "00c8e0cb-91d0-48ff-97f2-5154a17a68bc", + "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", + "d306b992-8d43-4ba8-8460-68d87b486222", + "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", + "b5853393-4072-4255-b507-e9c4b6659c5b", + "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", + "2ac07b96-98be-4710-a749-3162a661fcb5", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "981ebecb-3dc2-4439-8648-8052a51df7ec", + "2a268094-fe95-4a75-83da-d02aa638cbb6", + "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", + "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", + "ef880d61-7a9a-4504-a9a1-27967a52e95d", + "f872f4da-bae9-485b-a2fb-ae01787389fc", + "71ffac32-604a-4260-b51e-c427856a20c4", + "70ace55a-2f3c-410b-8740-bea06ecb9924", + "5a01eede-d090-4bda-988f-792a987bafc2", + "eee98f97-7434-4d16-88a6-93a424bc6846", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "003bcf5e-54a8-471f-b008-b7fa64ff94ba", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", + "ecb00316-793a-4c41-88bd-3870bea4d999", + "1d56d4cb-0ab2-44f2-924d-aa119de8c362", + "2f68c8b3-ace6-41af-8853-d72177e835fd", + "f1131e74-6c65-4f22-a18d-41dbe35e4576", + "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", + "c7c30949-db61-44fc-b7ab-a69b9fde12cc", + "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", + "997c4af9-ab50-4dfb-941a-afadff58f267", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "0d8bc8fc-204a-4f67-a22f-4e3e93df3587", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "2259b112-2e60-4bcc-ad14-9e0e577f2909", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "f8d5bc3e-c2cb-43f2-b47c-e4f2b61a57bd", + "segments": [ + 0, + 12, + 15, + 18, + 22, + 27, + 32, + 42, + 45, + 51, + 56, + 59, + 61, + 64, + 75, + 81, + 88, + 96, + 102, + 108, + 112, + 122, + 125, + 135, + 139, + 144, + 152, + 163, + 166, + 170, + 173, + 183, + 187, + 196, + 206, + 209, + 213, + 215, + 311, + 317, + 322, + 328, + 334, + 342, + 349, + 357 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 40, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521071, + 45.523799 + ], + [ + -73.521073, + 45.52378 + ], + [ + -73.521082, + 45.523698 + ], + [ + -73.521077, + 45.523679 + ], + [ + -73.52106, + 45.523665 + ], + [ + -73.521034, + 45.523659 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519421, + 45.523501 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519273, + 45.526813 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517718, + 45.527204 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517581, + 45.528211 + ], + [ + -73.517607, + 45.528254 + ], + [ + -73.517649, + 45.528322 + ], + [ + -73.517711, + 45.528383 + ], + [ + -73.517792, + 45.528446 + ], + [ + -73.517892, + 45.528509 + ], + [ + -73.518014, + 45.528567 + ], + [ + -73.518152, + 45.528621 + ], + [ + -73.518241, + 45.528649 + ], + [ + -73.518465, + 45.52872 + ], + [ + -73.518792, + 45.528837 + ], + [ + -73.518955, + 45.528909 + ], + [ + -73.519108, + 45.52899 + ], + [ + -73.519749, + 45.529345 + ], + [ + -73.520069, + 45.529584 + ], + [ + -73.520704, + 45.530083 + ], + [ + -73.521918, + 45.530996 + ], + [ + -73.522248, + 45.531306 + ], + [ + -73.522318, + 45.531401 + ], + [ + -73.522366, + 45.5315 + ], + [ + -73.522373, + 45.531519 + ], + [ + -73.522408, + 45.531612 + ], + [ + -73.52243, + 45.53172 + ], + [ + -73.522419, + 45.531923 + ], + [ + -73.52239, + 45.532017 + ], + [ + -73.52234, + 45.532116 + ], + [ + -73.522267, + 45.532206 + ], + [ + -73.522168, + 45.532278 + ], + [ + -73.522052, + 45.532332 + ], + [ + -73.521929, + 45.532359 + ], + [ + -73.5218, + 45.532368 + ], + [ + -73.521668, + 45.532355 + ], + [ + -73.521544, + 45.532323 + ], + [ + -73.521434, + 45.532274 + ], + [ + -73.521342, + 45.532206 + ], + [ + -73.521273, + 45.532121 + ], + [ + -73.52122, + 45.532013 + ], + [ + -73.521199, + 45.531905 + ], + [ + -73.521204, + 45.531792 + ], + [ + -73.521232, + 45.531685 + ], + [ + -73.521269, + 45.531577 + ], + [ + -73.521392, + 45.531356 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.523244, + 45.529034 + ], + [ + -73.523582, + 45.528589 + ], + [ + -73.523719, + 45.528386 + ], + [ + -73.523853, + 45.528161 + ], + [ + -73.523956, + 45.527977 + ], + [ + -73.524288, + 45.527297 + ], + [ + -73.524449, + 45.526847 + ], + [ + -73.524522, + 45.526604 + ], + [ + -73.524672, + 45.525934 + ], + [ + -73.524726, + 45.525403 + ], + [ + -73.524737, + 45.524827 + ], + [ + -73.524676, + 45.524211 + ], + [ + -73.524219, + 45.521088 + ], + [ + -73.524142, + 45.520647 + ], + [ + -73.523985, + 45.519869 + ], + [ + -73.523744, + 45.518866 + ], + [ + -73.5233, + 45.517354 + ], + [ + -73.520678, + 45.508901 + ], + [ + -73.520214, + 45.507393 + ], + [ + -73.520054, + 45.506899 + ], + [ + -73.51988, + 45.506408 + ], + [ + -73.519663, + 45.505927 + ], + [ + -73.519421, + 45.505468 + ], + [ + -73.518993, + 45.50482 + ], + [ + -73.517782, + 45.503115 + ], + [ + -73.517514, + 45.502679 + ], + [ + -73.517393, + 45.502454 + ], + [ + -73.51718, + 45.501995 + ], + [ + -73.516505, + 45.500249 + ], + [ + -73.516141, + 45.499372 + ], + [ + -73.515797, + 45.498666 + ], + [ + -73.515557, + 45.498211 + ], + [ + -73.51531, + 45.49777 + ], + [ + -73.514841, + 45.496875 + ], + [ + -73.51473, + 45.496655 + ], + [ + -73.514567, + 45.49629 + ], + [ + -73.514302, + 45.495593 + ], + [ + -73.513809, + 45.494225 + ], + [ + -73.513621, + 45.493721 + ], + [ + -73.513407, + 45.493145 + ], + [ + -73.5133, + 45.492903 + ], + [ + -73.51308, + 45.492502 + ], + [ + -73.51286, + 45.492156 + ], + [ + -73.511495, + 45.490203 + ], + [ + -73.511236, + 45.489825 + ], + [ + -73.511116, + 45.489632 + ], + [ + -73.510976, + 45.489447 + ], + [ + -73.510614, + 45.488876 + ], + [ + -73.510385, + 45.488494 + ], + [ + -73.510073, + 45.487927 + ], + [ + -73.50999, + 45.487756 + ], + [ + -73.509875, + 45.487535 + ], + [ + -73.509493, + 45.486739 + ], + [ + -73.509244, + 45.486118 + ], + [ + -73.509089, + 45.4857 + ], + [ + -73.508873, + 45.485047 + ], + [ + -73.508687, + 45.484395 + ], + [ + -73.508246, + 45.482663 + ], + [ + -73.508076, + 45.482055 + ], + [ + -73.508003, + 45.481848 + ], + [ + -73.507918, + 45.481646 + ], + [ + -73.507721, + 45.48125 + ], + [ + -73.507674, + 45.481165 + ], + [ + -73.507613, + 45.481066 + ], + [ + -73.507347, + 45.480701 + ], + [ + -73.50705, + 45.48035 + ], + [ + -73.506701, + 45.479999 + ], + [ + -73.506328, + 45.479689 + ], + [ + -73.505671, + 45.47923 + ], + [ + -73.50361, + 45.477871 + ], + [ + -73.502677, + 45.477264 + ], + [ + -73.502438, + 45.477102 + ], + [ + -73.500934, + 45.476112 + ], + [ + -73.499736, + 45.475329 + ], + [ + -73.499265, + 45.474992 + ], + [ + -73.498849, + 45.474659 + ], + [ + -73.49864, + 45.47447 + ], + [ + -73.498285, + 45.474119 + ], + [ + -73.49796, + 45.473732 + ], + [ + -73.497681, + 45.473341 + ], + [ + -73.49744, + 45.47294 + ], + [ + -73.495877, + 45.470106 + ], + [ + -73.495567, + 45.469507 + ], + [ + -73.495383, + 45.469111 + ], + [ + -73.495133, + 45.468508 + ], + [ + -73.494608, + 45.467027 + ], + [ + -73.494442, + 45.46656 + ], + [ + -73.493602, + 45.464117 + ], + [ + -73.493334, + 45.463312 + ], + [ + -73.493217, + 45.462898 + ], + [ + -73.493134, + 45.46247 + ], + [ + -73.493103, + 45.462254 + ], + [ + -73.493063, + 45.461818 + ], + [ + -73.492886, + 45.459528 + ], + [ + -73.492848, + 45.459042 + ], + [ + -73.492796, + 45.458326 + ], + [ + -73.492575, + 45.455532 + ], + [ + -73.49251, + 45.453449 + ], + [ + -73.492509, + 45.453405 + ], + [ + -73.492502, + 45.453049 + ], + [ + -73.49252, + 45.452711 + ], + [ + -73.49266, + 45.451384 + ], + [ + -73.492704, + 45.451042 + ], + [ + -73.492747, + 45.45061 + ], + [ + -73.492783, + 45.450115 + ], + [ + -73.492889, + 45.449017 + ], + [ + -73.493051, + 45.449027 + ], + [ + -73.493266, + 45.449036 + ], + [ + -73.493359, + 45.44904 + ], + [ + -73.493538, + 45.449054 + ], + [ + -73.493666, + 45.449063 + ], + [ + -73.493761, + 45.449081 + ], + [ + -73.493851, + 45.449121 + ], + [ + -73.493949, + 45.449166 + ], + [ + -73.494018, + 45.449216 + ], + [ + -73.494109, + 45.449297 + ], + [ + -73.494201, + 45.4494 + ], + [ + -73.494247, + 45.449472 + ], + [ + -73.494296, + 45.449557 + ], + [ + -73.494313, + 45.449602 + ], + [ + -73.494327, + 45.449665 + ], + [ + -73.494374, + 45.450442 + ], + [ + -73.494417, + 45.451142 + ], + [ + -73.494424, + 45.451259 + ], + [ + -73.494474, + 45.452091 + ], + [ + -73.494479, + 45.452697 + ], + [ + -73.49448, + 45.452725 + ], + [ + -73.494478, + 45.452891 + ], + [ + -73.494466, + 45.453767 + ], + [ + -73.494454, + 45.45461 + ], + [ + -73.494465, + 45.454948 + ], + [ + -73.494519, + 45.455156 + ], + [ + -73.494524, + 45.455177 + ], + [ + -73.494622, + 45.45551 + ], + [ + -73.494635, + 45.455658 + ], + [ + -73.494605, + 45.455874 + ], + [ + -73.494534, + 45.456009 + ], + [ + -73.494391, + 45.456194 + ], + [ + -73.49402, + 45.456536 + ], + [ + -73.493865, + 45.45668 + ], + [ + -73.493654, + 45.456851 + ], + [ + -73.493562, + 45.456918 + ], + [ + -73.493458, + 45.456968 + ], + [ + -73.493388, + 45.456981 + ], + [ + -73.493324, + 45.45699 + ], + [ + -73.493169, + 45.456999 + ], + [ + -73.493073, + 45.457004 + ], + [ + -73.492597, + 45.457018 + ], + [ + -73.492353, + 45.457023 + ], + [ + -73.492185, + 45.457026 + ], + [ + -73.492061, + 45.457031 + ], + [ + -73.491825, + 45.457026 + ], + [ + -73.491366, + 45.457004 + ], + [ + -73.49005, + 45.456947 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.488779, + 45.456899 + ], + [ + -73.488212, + 45.456877 + ], + [ + -73.486569, + 45.456821 + ], + [ + -73.486364, + 45.456814 + ], + [ + -73.485148, + 45.456777 + ], + [ + -73.483698, + 45.456733 + ], + [ + -73.482947, + 45.4567 + ], + [ + -73.482756, + 45.456692 + ], + [ + -73.479792, + 45.456611 + ], + [ + -73.479622, + 45.456606 + ], + [ + -73.479632, + 45.456719 + ], + [ + -73.479677, + 45.45721 + ], + [ + -73.479701, + 45.457465 + ], + [ + -73.47972, + 45.457668 + ], + [ + -73.479747, + 45.458082 + ], + [ + -73.479754, + 45.45832 + ], + [ + -73.479732, + 45.458469 + ], + [ + -73.479695, + 45.458689 + ], + [ + -73.479603, + 45.459 + ], + [ + -73.479545, + 45.459171 + ], + [ + -73.479528, + 45.459207 + ], + [ + -73.479465, + 45.459342 + ], + [ + -73.479339, + 45.459576 + ], + [ + -73.479253, + 45.45972 + ], + [ + -73.479162, + 45.45985 + ], + [ + -73.478872, + 45.460205 + ], + [ + -73.478751, + 45.460331 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.47855, + 45.461011 + ], + [ + -73.478678, + 45.461105 + ], + [ + -73.478826, + 45.461279 + ], + [ + -73.478983, + 45.461465 + ], + [ + -73.479274, + 45.461807 + ], + [ + -73.479694, + 45.462308 + ], + [ + -73.480306, + 45.46304 + ], + [ + -73.480932, + 45.463792 + ], + [ + -73.481339, + 45.464279 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.480952, + 45.464593 + ], + [ + -73.480652, + 45.464687 + ], + [ + -73.480572, + 45.464706 + ], + [ + -73.480287, + 45.464772 + ], + [ + -73.479951, + 45.464831 + ], + [ + -73.479651, + 45.464862 + ], + [ + -73.479281, + 45.464889 + ], + [ + -73.478969, + 45.464889 + ], + [ + -73.478764, + 45.464882 + ], + [ + -73.478688, + 45.464879 + ], + [ + -73.476229, + 45.46479 + ], + [ + -73.475061, + 45.464753 + ], + [ + -73.474661, + 45.464744 + ], + [ + -73.474508, + 45.464734 + ], + [ + -73.474322, + 45.464725 + ], + [ + -73.474168, + 45.464717 + ], + [ + -73.473949, + 45.464699 + ], + [ + -73.473705, + 45.464641 + ], + [ + -73.473499, + 45.464573 + ], + [ + -73.473207, + 45.464434 + ], + [ + -73.473052, + 45.464335 + ], + [ + -73.472811, + 45.464181 + ], + [ + -73.472107, + 45.4637 + ], + [ + -73.471841, + 45.463592 + ], + [ + -73.471717, + 45.463573 + ], + [ + -73.471666, + 45.463565 + ], + [ + -73.471494, + 45.463556 + ], + [ + -73.471257, + 45.463547 + ], + [ + -73.470687, + 45.463533 + ], + [ + -73.469209, + 45.463482 + ], + [ + -73.468972, + 45.463474 + ], + [ + -73.468884, + 45.463461 + ], + [ + -73.468833, + 45.46342 + ], + [ + -73.468836, + 45.463308 + ], + [ + -73.468837, + 45.463254 + ], + [ + -73.468876, + 45.462738 + ], + [ + -73.46897, + 45.46149 + ], + [ + -73.46901, + 45.460865 + ], + [ + -73.469027, + 45.460641 + ], + [ + -73.469045, + 45.460397 + ], + [ + -73.469046, + 45.459978 + ], + [ + -73.46901, + 45.459861 + ], + [ + -73.468938, + 45.459704 + ], + [ + -73.468742, + 45.459506 + ], + [ + -73.468425, + 45.459258 + ], + [ + -73.468212, + 45.459096 + ], + [ + -73.468183, + 45.459065 + ], + [ + -73.468056, + 45.45893 + ], + [ + -73.467979, + 45.458754 + ], + [ + -73.467956, + 45.458669 + ], + [ + -73.467971, + 45.458525 + ], + [ + -73.467975, + 45.458309 + ], + [ + -73.467989, + 45.45823 + ], + [ + -73.468021, + 45.458057 + ], + [ + -73.468109, + 45.457211 + ], + [ + -73.468142, + 45.457031 + ], + [ + -73.468147, + 45.457005 + ], + [ + -73.468158, + 45.456945 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468443, + 45.456109 + ], + [ + -73.467856, + 45.455996 + ], + [ + -73.467523, + 45.455919 + ], + [ + -73.467299, + 45.455861 + ], + [ + -73.466983, + 45.455757 + ], + [ + -73.466899, + 45.455728 + ], + [ + -73.466828, + 45.455703 + ], + [ + -73.466343, + 45.45551 + ], + [ + -73.466093, + 45.45541 + ], + [ + -73.465683, + 45.455224 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.463912, + 45.454506 + ], + [ + -73.463601, + 45.454377 + ], + [ + -73.46333, + 45.454265 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.461821, + 45.453584 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.459815, + 45.452691 + ], + [ + -73.45921, + 45.45241 + ], + [ + -73.45904, + 45.452331 + ], + [ + -73.458688, + 45.452137 + ], + [ + -73.458046, + 45.451791 + ], + [ + -73.457711, + 45.451596 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457438, + 45.451421 + ], + [ + -73.457131, + 45.451219 + ], + [ + -73.456851, + 45.451021 + ], + [ + -73.45659, + 45.450823 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456003, + 45.45033 + ], + [ + -73.455825, + 45.450179 + ], + [ + -73.455605, + 45.449994 + ], + [ + -73.455056, + 45.44954 + ], + [ + -73.454737, + 45.449301 + ], + [ + -73.454461, + 45.44912 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.453273, + 45.448481 + ], + [ + -73.451557, + 45.447603 + ], + [ + -73.45107, + 45.447354 + ], + [ + -73.45026, + 45.446936 + ], + [ + -73.449671, + 45.446636 + ], + [ + -73.449652, + 45.446626 + ], + [ + -73.449554, + 45.446569 + ], + [ + -73.449363, + 45.446456 + ], + [ + -73.447677, + 45.44551 + ], + [ + -73.447484, + 45.445387 + ], + [ + -73.447408, + 45.44534 + ], + [ + -73.447287, + 45.445263 + ], + [ + -73.447125, + 45.445146 + ], + [ + -73.446612, + 45.444764 + ], + [ + -73.445568, + 45.444021 + ], + [ + -73.444912, + 45.443533 + ], + [ + -73.444834, + 45.443475 + ], + [ + -73.444807, + 45.443457 + ], + [ + -73.442882, + 45.442105 + ], + [ + -73.442351, + 45.441732 + ], + [ + -73.442337, + 45.441722 + ], + [ + -73.442193, + 45.441589 + ], + [ + -73.442073, + 45.441479 + ], + [ + -73.441548, + 45.441133 + ], + [ + -73.4411, + 45.440787 + ], + [ + -73.440974, + 45.440696 + ], + [ + -73.440252, + 45.440176 + ], + [ + -73.439796, + 45.439844 + ], + [ + -73.439709, + 45.439781 + ], + [ + -73.439595, + 45.439843 + ], + [ + -73.438687, + 45.440529 + ], + [ + -73.438546, + 45.440636 + ], + [ + -73.437671, + 45.441298 + ], + [ + -73.437456, + 45.441451 + ], + [ + -73.437343, + 45.441531 + ], + [ + -73.437177, + 45.441649 + ], + [ + -73.437052, + 45.441737 + ], + [ + -73.435959, + 45.442526 + ], + [ + -73.435812, + 45.442662 + ], + [ + -73.435748, + 45.442792 + ], + [ + -73.43573, + 45.442883 + ], + [ + -73.435741, + 45.443026 + ], + [ + -73.43579, + 45.443164 + ], + [ + -73.435894, + 45.4433 + ], + [ + -73.4359, + 45.443306 + ], + [ + -73.436036, + 45.443456 + ], + [ + -73.436389, + 45.44372 + ] + ] + }, + "id": 41, + "properties": { + "id": "695460dd-b513-4f17-8f92-125d5bc353a4", + "data": { + "gtfs": { + "shape_id": "14_1_R" + }, + "segments": [ + { + "distanceMeters": 11453, + "travelTimeSeconds": 634 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 91, + "travelTimeSeconds": 5 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 119, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 327, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 347, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 465, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 415, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 121 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 192, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 19839, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11114.673998285822, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 10.33, + "travelTimeWithoutDwellTimesSeconds": 1920, + "operatingTimeWithLayoverTimeSeconds": 2112, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1920, + "operatingSpeedWithLayoverMetersPerSecond": 9.39, + "averageSpeedWithoutDwellTimesMetersPerSecond": 10.33 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "af7f8c95-5bbb-4774-8d27-80767d1525b7", + "a0c55e08-a29d-42c6-a917-251b8ca35935", + "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", + "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", + "a3a2d6d0-5008-4980-ba25-7b3a00feca26", + "81232cdf-e1d4-440c-91bd-cfdc85007144", + "3ebb53d0-1c64-4727-874b-d39ed1870cae", + "16a4cfe7-4b02-454a-8a07-9501f3c5e0c5", + "984def83-5f59-45f7-bb33-ed1dbca30502", + "1d56d4cb-0ab2-44f2-924d-aa119de8c362", + "ecb00316-793a-4c41-88bd-3870bea4d999", + "9a86a407-515f-4b5e-8a56-9a4c52c91c96", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "003bcf5e-54a8-471f-b008-b7fa64ff94ba", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "eee98f97-7434-4d16-88a6-93a424bc6846", + "4bbdfb79-c7dc-46c0-893b-48e38ccd2db0", + "70ace55a-2f3c-410b-8740-bea06ecb9924", + "71ffac32-604a-4260-b51e-c427856a20c4", + "f872f4da-bae9-485b-a2fb-ae01787389fc", + "f045bfca-885e-4fa6-be24-3e8f1855457a", + "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", + "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", + "ca62a640-5508-4ced-94a0-1f22107c57c9", + "8443a69f-fccf-4a19-8d08-6da77269e686", + "2946050b-73ca-45c7-be10-f80ba5b43ab5", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "ab493a3c-1217-4122-93b5-217f7741b2ea", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "2c6638eb-437e-4a41-bb5d-d6093797361d", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", + "d306b992-8d43-4ba8-8460-68d87b486222", + "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", + "88486643-e9da-4936-905d-86d1e3882217", + "c1bf220e-ad95-40e3-900b-3dda32780f07", + "fb79a3c6-17e7-4bc7-88f4-d17bcc5467ca", + "1336b6ed-25ac-4ba0-b4d2-c273e4f51d74" + ], + "stops": [], + "line_id": "f8d5bc3e-c2cb-43f2-b47c-e4f2b61a57bd", + "segments": [ + 0, + 185, + 199, + 201, + 203, + 206, + 209, + 216, + 226, + 231, + 235, + 239, + 244, + 253, + 264, + 267, + 270, + 280, + 286, + 292, + 296, + 301, + 310, + 318, + 324, + 327, + 338, + 345, + 348, + 351, + 355, + 363, + 367, + 373, + 379, + 384, + 388, + 399, + 403 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 41, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521071, + 45.523799 + ], + [ + -73.521073, + 45.52378 + ], + [ + -73.521082, + 45.523698 + ], + [ + -73.521077, + 45.523679 + ], + [ + -73.52106, + 45.523665 + ], + [ + -73.521034, + 45.523659 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519697, + 45.523247 + ], + [ + -73.519706, + 45.52323 + ], + [ + -73.519869, + 45.522907 + ], + [ + -73.520158, + 45.522337 + ], + [ + -73.520306, + 45.521899 + ], + [ + -73.520306, + 45.521896 + ], + [ + -73.520354, + 45.521696 + ], + [ + -73.520401, + 45.521498 + ], + [ + -73.520405, + 45.521373 + ], + [ + -73.520409, + 45.52119 + ], + [ + -73.520398, + 45.521025 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520191, + 45.520225 + ], + [ + -73.520123, + 45.519904 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518918, + 45.51665 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517659, + 45.513616 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517704, + 45.511772 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.517609, + 45.509409 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517232, + 45.507325 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517349, + 45.505746 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517545, + 45.504708 + ], + [ + -73.517624, + 45.504735 + ], + [ + -73.517927, + 45.504848 + ], + [ + -73.518275, + 45.504978 + ], + [ + -73.518448, + 45.505027 + ], + [ + -73.518565, + 45.505054 + ], + [ + -73.518612, + 45.505059 + ], + [ + -73.518688, + 45.505063 + ], + [ + -73.518724, + 45.505059 + ], + [ + -73.518804, + 45.505054 + ], + [ + -73.519306, + 45.504964 + ], + [ + -73.51887, + 45.504368 + ], + [ + -73.518589, + 45.503983 + ], + [ + -73.517824, + 45.502971 + ], + [ + -73.517656, + 45.502728 + ], + [ + -73.51758, + 45.502602 + ], + [ + -73.517384, + 45.502224 + ], + [ + -73.517279, + 45.50199 + ], + [ + -73.516505, + 45.500249 + ], + [ + -73.516141, + 45.499372 + ], + [ + -73.515797, + 45.498666 + ], + [ + -73.515557, + 45.498211 + ], + [ + -73.51531, + 45.49777 + ], + [ + -73.514841, + 45.496875 + ], + [ + -73.51473, + 45.496655 + ], + [ + -73.514567, + 45.49629 + ], + [ + -73.514302, + 45.495593 + ], + [ + -73.513809, + 45.494225 + ], + [ + -73.513621, + 45.493721 + ], + [ + -73.513407, + 45.493145 + ], + [ + -73.5133, + 45.492903 + ], + [ + -73.51308, + 45.492502 + ], + [ + -73.51286, + 45.492156 + ], + [ + -73.511495, + 45.490203 + ], + [ + -73.511236, + 45.489825 + ], + [ + -73.511116, + 45.489632 + ], + [ + -73.510976, + 45.489447 + ], + [ + -73.510614, + 45.488876 + ], + [ + -73.510385, + 45.488494 + ], + [ + -73.510073, + 45.487927 + ], + [ + -73.50999, + 45.487756 + ], + [ + -73.509875, + 45.487535 + ], + [ + -73.509493, + 45.486739 + ], + [ + -73.509244, + 45.486118 + ], + [ + -73.509089, + 45.4857 + ], + [ + -73.508873, + 45.485047 + ], + [ + -73.508687, + 45.484395 + ], + [ + -73.508246, + 45.482663 + ], + [ + -73.508076, + 45.482055 + ], + [ + -73.508003, + 45.481848 + ], + [ + -73.507918, + 45.481646 + ], + [ + -73.507721, + 45.48125 + ], + [ + -73.507674, + 45.481165 + ], + [ + -73.507613, + 45.481066 + ], + [ + -73.507347, + 45.480701 + ], + [ + -73.50705, + 45.48035 + ], + [ + -73.506701, + 45.479999 + ], + [ + -73.506328, + 45.479689 + ], + [ + -73.505671, + 45.47923 + ], + [ + -73.50361, + 45.477871 + ], + [ + -73.502677, + 45.477264 + ], + [ + -73.502438, + 45.477102 + ], + [ + -73.500934, + 45.476112 + ], + [ + -73.499736, + 45.475329 + ], + [ + -73.499265, + 45.474992 + ], + [ + -73.499141, + 45.474893 + ], + [ + -73.498849, + 45.474659 + ], + [ + -73.49864, + 45.47447 + ], + [ + -73.498285, + 45.474119 + ], + [ + -73.49796, + 45.473732 + ], + [ + -73.497681, + 45.473341 + ], + [ + -73.49744, + 45.47294 + ], + [ + -73.495877, + 45.470106 + ], + [ + -73.495567, + 45.469507 + ], + [ + -73.495383, + 45.469111 + ], + [ + -73.495133, + 45.468508 + ], + [ + -73.494442, + 45.46656 + ], + [ + -73.493602, + 45.464117 + ], + [ + -73.493334, + 45.463312 + ], + [ + -73.493217, + 45.462898 + ], + [ + -73.493134, + 45.46247 + ], + [ + -73.493103, + 45.462254 + ], + [ + -73.493063, + 45.461818 + ], + [ + -73.492886, + 45.459528 + ], + [ + -73.492848, + 45.459042 + ], + [ + -73.492796, + 45.458326 + ], + [ + -73.492575, + 45.455532 + ], + [ + -73.49251, + 45.453449 + ], + [ + -73.492502, + 45.453049 + ], + [ + -73.49252, + 45.452711 + ], + [ + -73.49266, + 45.451384 + ], + [ + -73.492704, + 45.451042 + ], + [ + -73.492747, + 45.45061 + ], + [ + -73.492783, + 45.450115 + ], + [ + -73.492889, + 45.449017 + ], + [ + -73.493051, + 45.449027 + ], + [ + -73.493259, + 45.449036 + ], + [ + -73.493359, + 45.44904 + ], + [ + -73.493538, + 45.449054 + ], + [ + -73.493666, + 45.449063 + ], + [ + -73.493761, + 45.449081 + ], + [ + -73.493851, + 45.449121 + ], + [ + -73.493949, + 45.449166 + ], + [ + -73.494018, + 45.449216 + ], + [ + -73.494109, + 45.449297 + ], + [ + -73.494201, + 45.4494 + ], + [ + -73.494247, + 45.449472 + ], + [ + -73.494296, + 45.449557 + ], + [ + -73.494313, + 45.449602 + ], + [ + -73.494327, + 45.449665 + ], + [ + -73.494374, + 45.450446 + ], + [ + -73.494417, + 45.451142 + ], + [ + -73.494424, + 45.451254 + ], + [ + -73.494474, + 45.452091 + ], + [ + -73.494479, + 45.452701 + ], + [ + -73.49448, + 45.452725 + ], + [ + -73.494478, + 45.452891 + ], + [ + -73.494465, + 45.45377 + ], + [ + -73.494454, + 45.45461 + ], + [ + -73.494465, + 45.454948 + ], + [ + -73.494518, + 45.455151 + ], + [ + -73.494524, + 45.455177 + ], + [ + -73.494622, + 45.45551 + ], + [ + -73.494635, + 45.455658 + ], + [ + -73.494605, + 45.455874 + ], + [ + -73.494534, + 45.456009 + ], + [ + -73.494391, + 45.456194 + ], + [ + -73.494017, + 45.456539 + ], + [ + -73.493865, + 45.45668 + ], + [ + -73.493654, + 45.456851 + ], + [ + -73.493562, + 45.456918 + ], + [ + -73.493458, + 45.456968 + ], + [ + -73.493388, + 45.456981 + ], + [ + -73.493324, + 45.45699 + ], + [ + -73.493169, + 45.456999 + ], + [ + -73.493073, + 45.457004 + ], + [ + -73.492597, + 45.457018 + ], + [ + -73.492361, + 45.457023 + ], + [ + -73.492185, + 45.457026 + ], + [ + -73.492061, + 45.457031 + ], + [ + -73.491825, + 45.457026 + ], + [ + -73.491366, + 45.457004 + ], + [ + -73.490045, + 45.456947 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.488779, + 45.456899 + ], + [ + -73.488212, + 45.456877 + ], + [ + -73.486564, + 45.456821 + ], + [ + -73.486364, + 45.456814 + ], + [ + -73.485148, + 45.456777 + ], + [ + -73.483698, + 45.456733 + ], + [ + -73.482955, + 45.456701 + ], + [ + -73.482756, + 45.456692 + ], + [ + -73.479792, + 45.456611 + ], + [ + -73.479622, + 45.456606 + ], + [ + -73.479632, + 45.456719 + ], + [ + -73.479678, + 45.457214 + ], + [ + -73.479701, + 45.457465 + ], + [ + -73.47972, + 45.457668 + ], + [ + -73.479747, + 45.458082 + ], + [ + -73.479754, + 45.45832 + ], + [ + -73.479732, + 45.458469 + ], + [ + -73.479695, + 45.458689 + ], + [ + -73.479603, + 45.459 + ], + [ + -73.479545, + 45.459171 + ], + [ + -73.479531, + 45.459201 + ], + [ + -73.479465, + 45.459342 + ], + [ + -73.479339, + 45.459576 + ], + [ + -73.479253, + 45.45972 + ], + [ + -73.479162, + 45.45985 + ], + [ + -73.478872, + 45.460205 + ], + [ + -73.478751, + 45.460331 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.47855, + 45.461011 + ], + [ + -73.478678, + 45.461105 + ], + [ + -73.478828, + 45.461282 + ], + [ + -73.478983, + 45.461465 + ], + [ + -73.479274, + 45.461807 + ], + [ + -73.479696, + 45.462311 + ], + [ + -73.480306, + 45.46304 + ], + [ + -73.480932, + 45.463792 + ], + [ + -73.481341, + 45.464281 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.480952, + 45.464593 + ], + [ + -73.480652, + 45.464687 + ], + [ + -73.480572, + 45.464706 + ], + [ + -73.480287, + 45.464772 + ], + [ + -73.479951, + 45.464831 + ], + [ + -73.479651, + 45.464862 + ], + [ + -73.479281, + 45.464889 + ], + [ + -73.478969, + 45.464889 + ], + [ + -73.47876, + 45.464882 + ], + [ + -73.478688, + 45.464879 + ], + [ + -73.476229, + 45.46479 + ], + [ + -73.475061, + 45.464753 + ], + [ + -73.474661, + 45.464744 + ], + [ + -73.474508, + 45.464734 + ], + [ + -73.474318, + 45.464724 + ], + [ + -73.474168, + 45.464717 + ], + [ + -73.473949, + 45.464699 + ], + [ + -73.473705, + 45.464641 + ], + [ + -73.473499, + 45.464573 + ], + [ + -73.473207, + 45.464434 + ], + [ + -73.473049, + 45.464333 + ], + [ + -73.472811, + 45.464181 + ], + [ + -73.472107, + 45.4637 + ], + [ + -73.471841, + 45.463592 + ], + [ + -73.471726, + 45.463574 + ], + [ + -73.471666, + 45.463565 + ], + [ + -73.471494, + 45.463556 + ], + [ + -73.471257, + 45.463547 + ], + [ + -73.470687, + 45.463533 + ], + [ + -73.469219, + 45.463483 + ], + [ + -73.468972, + 45.463474 + ], + [ + -73.468884, + 45.463461 + ], + [ + -73.468833, + 45.46342 + ], + [ + -73.468836, + 45.463308 + ], + [ + -73.468837, + 45.463254 + ], + [ + -73.468876, + 45.462738 + ], + [ + -73.46897, + 45.46149 + ], + [ + -73.46901, + 45.460865 + ], + [ + -73.469027, + 45.460639 + ], + [ + -73.469045, + 45.460397 + ], + [ + -73.469046, + 45.459978 + ], + [ + -73.46901, + 45.459861 + ], + [ + -73.468938, + 45.459704 + ], + [ + -73.468742, + 45.459506 + ], + [ + -73.468425, + 45.459258 + ], + [ + -73.468212, + 45.459096 + ], + [ + -73.468189, + 45.459071 + ], + [ + -73.468056, + 45.45893 + ], + [ + -73.467979, + 45.458754 + ], + [ + -73.467956, + 45.458669 + ], + [ + -73.467971, + 45.458525 + ], + [ + -73.467975, + 45.458309 + ], + [ + -73.467988, + 45.458238 + ], + [ + -73.468021, + 45.458057 + ], + [ + -73.468109, + 45.457211 + ], + [ + -73.468141, + 45.457038 + ], + [ + -73.468147, + 45.457005 + ], + [ + -73.468158, + 45.456945 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468443, + 45.456109 + ], + [ + -73.467856, + 45.455996 + ], + [ + -73.467523, + 45.455919 + ], + [ + -73.467299, + 45.455861 + ], + [ + -73.466983, + 45.455757 + ], + [ + -73.466899, + 45.455728 + ], + [ + -73.466828, + 45.455703 + ], + [ + -73.466341, + 45.455509 + ], + [ + -73.466093, + 45.45541 + ], + [ + -73.465683, + 45.455224 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.463912, + 45.454506 + ], + [ + -73.463601, + 45.454377 + ], + [ + -73.463328, + 45.454264 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.46183, + 45.453588 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.459815, + 45.452691 + ], + [ + -73.459209, + 45.452409 + ], + [ + -73.45904, + 45.452331 + ], + [ + -73.458688, + 45.452137 + ], + [ + -73.458046, + 45.451791 + ], + [ + -73.457709, + 45.451595 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457438, + 45.451421 + ], + [ + -73.457131, + 45.451219 + ], + [ + -73.456851, + 45.451021 + ], + [ + -73.45659, + 45.450823 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456003, + 45.45033 + ], + [ + -73.455832, + 45.450185 + ], + [ + -73.455605, + 45.449994 + ], + [ + -73.455056, + 45.44954 + ], + [ + -73.454737, + 45.449301 + ], + [ + -73.45446, + 45.449119 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.453273, + 45.448481 + ], + [ + -73.451557, + 45.447603 + ], + [ + -73.45107, + 45.447354 + ], + [ + -73.45026, + 45.446936 + ], + [ + -73.44968, + 45.44664 + ], + [ + -73.449652, + 45.446626 + ], + [ + -73.449554, + 45.446569 + ], + [ + -73.449363, + 45.446456 + ], + [ + -73.447677, + 45.44551 + ], + [ + -73.447484, + 45.445387 + ], + [ + -73.447417, + 45.445345 + ], + [ + -73.447287, + 45.445263 + ], + [ + -73.447125, + 45.445146 + ], + [ + -73.446612, + 45.444764 + ], + [ + -73.445568, + 45.444021 + ], + [ + -73.444911, + 45.443532 + ], + [ + -73.444834, + 45.443475 + ], + [ + -73.444807, + 45.443457 + ], + [ + -73.442882, + 45.442105 + ], + [ + -73.44235, + 45.441731 + ], + [ + -73.442337, + 45.441722 + ], + [ + -73.442193, + 45.441589 + ], + [ + -73.442073, + 45.441479 + ], + [ + -73.441548, + 45.441133 + ], + [ + -73.4411, + 45.440787 + ], + [ + -73.440974, + 45.440696 + ], + [ + -73.440252, + 45.440176 + ], + [ + -73.439796, + 45.439844 + ], + [ + -73.439709, + 45.439781 + ], + [ + -73.439595, + 45.439843 + ], + [ + -73.438696, + 45.440523 + ], + [ + -73.438546, + 45.440636 + ], + [ + -73.437671, + 45.441298 + ], + [ + -73.437456, + 45.441451 + ], + [ + -73.437343, + 45.441531 + ], + [ + -73.437177, + 45.441649 + ], + [ + -73.437052, + 45.441737 + ], + [ + -73.435959, + 45.442526 + ], + [ + -73.435812, + 45.442662 + ], + [ + -73.435748, + 45.442792 + ], + [ + -73.43573, + 45.442883 + ], + [ + -73.435741, + 45.443026 + ], + [ + -73.43579, + 45.443164 + ], + [ + -73.435894, + 45.4433 + ], + [ + -73.4359, + 45.443306 + ], + [ + -73.436036, + 45.443456 + ], + [ + -73.436389, + 45.44372 + ] + ] + }, + "id": 42, + "properties": { + "id": "017b4356-7984-4ee4-9e83-94a213bec3c0", + "data": { + "gtfs": { + "shape_id": "14_2_R" + }, + "segments": [ + { + "distanceMeters": 551, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 7042, + "travelTimeSeconds": 394 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 90, + "travelTimeSeconds": 5 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 119, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 328, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 347, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 464, + "travelTimeSeconds": 88 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 414, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 121 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 222, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17592, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11114.673998285822, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.92, + "travelTimeWithoutDwellTimesSeconds": 2220, + "operatingTimeWithLayoverTimeSeconds": 2442, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2220, + "operatingSpeedWithLayoverMetersPerSecond": 7.2, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.92 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "af7f8c95-5bbb-4774-8d27-80767d1525b7", + "a0c55e08-a29d-42c6-a917-251b8ca35935", + "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", + "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", + "a3a2d6d0-5008-4980-ba25-7b3a00feca26", + "81232cdf-e1d4-440c-91bd-cfdc85007144", + "3ebb53d0-1c64-4727-874b-d39ed1870cae", + "16a4cfe7-4b02-454a-8a07-9501f3c5e0c5", + "984def83-5f59-45f7-bb33-ed1dbca30502", + "1d56d4cb-0ab2-44f2-924d-aa119de8c362", + "ecb00316-793a-4c41-88bd-3870bea4d999", + "9a86a407-515f-4b5e-8a56-9a4c52c91c96", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "003bcf5e-54a8-471f-b008-b7fa64ff94ba", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "eee98f97-7434-4d16-88a6-93a424bc6846", + "4bbdfb79-c7dc-46c0-893b-48e38ccd2db0", + "70ace55a-2f3c-410b-8740-bea06ecb9924", + "71ffac32-604a-4260-b51e-c427856a20c4", + "f872f4da-bae9-485b-a2fb-ae01787389fc", + "f045bfca-885e-4fa6-be24-3e8f1855457a", + "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", + "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", + "ca62a640-5508-4ced-94a0-1f22107c57c9", + "8443a69f-fccf-4a19-8d08-6da77269e686", + "2946050b-73ca-45c7-be10-f80ba5b43ab5", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "ab493a3c-1217-4122-93b5-217f7741b2ea", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "2c6638eb-437e-4a41-bb5d-d6093797361d", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", + "d306b992-8d43-4ba8-8460-68d87b486222", + "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", + "88486643-e9da-4936-905d-86d1e3882217", + "c1bf220e-ad95-40e3-900b-3dda32780f07", + "fb79a3c6-17e7-4bc7-88f4-d17bcc5467ca", + "1336b6ed-25ac-4ba0-b4d2-c273e4f51d74" + ], + "stops": [], + "line_id": "f8d5bc3e-c2cb-43f2-b47c-e4f2b61a57bd", + "segments": [ + 0, + 27, + 37, + 48, + 54, + 61, + 67, + 72, + 172, + 186, + 188, + 190, + 193, + 196, + 203, + 213, + 218, + 222, + 226, + 231, + 240, + 251, + 254, + 257, + 267, + 273, + 279, + 283, + 288, + 297, + 305, + 311, + 314, + 325, + 332, + 335, + 338, + 342, + 350, + 354, + 360, + 366, + 371, + 375, + 386, + 390 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 42, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.436389, + 45.44372 + ], + [ + -73.436575, + 45.443858 + ], + [ + -73.436661, + 45.443921 + ], + [ + -73.436662, + 45.443922 + ], + [ + -73.437463, + 45.444543 + ], + [ + -73.437838, + 45.444826 + ], + [ + -73.437964, + 45.444933 + ], + [ + -73.438029, + 45.444985 + ], + [ + -73.438094, + 45.445037 + ], + [ + -73.438227, + 45.444954 + ], + [ + -73.438235, + 45.444948 + ], + [ + -73.438338, + 45.444864 + ], + [ + -73.438656, + 45.444631 + ], + [ + -73.438851, + 45.444488 + ], + [ + -73.439723, + 45.443742 + ], + [ + -73.439845, + 45.443642 + ], + [ + -73.439975, + 45.443534 + ], + [ + -73.440539, + 45.443068 + ], + [ + -73.441274, + 45.442431 + ], + [ + -73.441943, + 45.441851 + ], + [ + -73.442064, + 45.44172 + ], + [ + -73.442173, + 45.441795 + ], + [ + -73.4445, + 45.443463 + ], + [ + -73.444646, + 45.443567 + ], + [ + -73.444814, + 45.443691 + ], + [ + -73.445792, + 45.44439 + ], + [ + -73.445916, + 45.444479 + ], + [ + -73.447004, + 45.445252 + ], + [ + -73.447144, + 45.445352 + ], + [ + -73.44736, + 45.4455 + ], + [ + -73.447729, + 45.445718 + ], + [ + -73.448087, + 45.44592 + ], + [ + -73.449212, + 45.44655 + ], + [ + -73.449266, + 45.44658 + ], + [ + -73.4494, + 45.446659 + ], + [ + -73.449563, + 45.446742 + ], + [ + -73.450068, + 45.447011 + ], + [ + -73.450448, + 45.447201 + ], + [ + -73.451097, + 45.447517 + ], + [ + -73.4522, + 45.448094 + ], + [ + -73.452476, + 45.448237 + ], + [ + -73.453807, + 45.448921 + ], + [ + -73.454021, + 45.449073 + ], + [ + -73.454088, + 45.449121 + ], + [ + -73.454556, + 45.449427 + ], + [ + -73.454813, + 45.449622 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.455393, + 45.45012 + ], + [ + -73.456061, + 45.45066 + ], + [ + -73.456286, + 45.450829 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.457159, + 45.451452 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457924, + 45.451894 + ], + [ + -73.458487, + 45.4522 + ], + [ + -73.458741, + 45.452336 + ], + [ + -73.458941, + 45.452443 + ], + [ + -73.459713, + 45.452799 + ], + [ + -73.461255, + 45.453482 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.462931, + 45.454228 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463822, + 45.454609 + ], + [ + -73.464915, + 45.455071 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465851, + 45.455474 + ], + [ + -73.466482, + 45.45573 + ], + [ + -73.466742, + 45.45582 + ], + [ + -73.466794, + 45.455838 + ], + [ + -73.466905, + 45.455874 + ], + [ + -73.467229, + 45.455978 + ], + [ + -73.467462, + 45.456041 + ], + [ + -73.467802, + 45.456122 + ], + [ + -73.468166, + 45.456191 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468158, + 45.456945 + ], + [ + -73.468147, + 45.457005 + ], + [ + -73.46811, + 45.457204 + ], + [ + -73.468109, + 45.457211 + ], + [ + -73.468043, + 45.457847 + ], + [ + -73.468021, + 45.458057 + ], + [ + -73.467975, + 45.458309 + ], + [ + -73.467971, + 45.458525 + ], + [ + -73.467956, + 45.458669 + ], + [ + -73.467979, + 45.458754 + ], + [ + -73.468056, + 45.45893 + ], + [ + -73.468057, + 45.458931 + ], + [ + -73.468212, + 45.459096 + ], + [ + -73.468425, + 45.459258 + ], + [ + -73.468742, + 45.459506 + ], + [ + -73.468938, + 45.459704 + ], + [ + -73.46901, + 45.459861 + ], + [ + -73.469046, + 45.459978 + ], + [ + -73.469045, + 45.460397 + ], + [ + -73.469023, + 45.460696 + ], + [ + -73.46901, + 45.460865 + ], + [ + -73.46897, + 45.46149 + ], + [ + -73.468876, + 45.462738 + ], + [ + -73.468837, + 45.463254 + ], + [ + -73.468833, + 45.46342 + ], + [ + -73.468847, + 45.463431 + ], + [ + -73.468884, + 45.463461 + ], + [ + -73.468972, + 45.463474 + ], + [ + -73.470687, + 45.463533 + ], + [ + -73.471257, + 45.463547 + ], + [ + -73.471494, + 45.463556 + ], + [ + -73.47154, + 45.463558 + ], + [ + -73.471666, + 45.463565 + ], + [ + -73.471841, + 45.463592 + ], + [ + -73.472107, + 45.4637 + ], + [ + -73.472787, + 45.464165 + ], + [ + -73.472811, + 45.464181 + ], + [ + -73.473207, + 45.464434 + ], + [ + -73.473437, + 45.464543 + ], + [ + -73.473499, + 45.464573 + ], + [ + -73.473705, + 45.464641 + ], + [ + -73.473949, + 45.464699 + ], + [ + -73.474168, + 45.464717 + ], + [ + -73.474508, + 45.464734 + ], + [ + -73.474661, + 45.464744 + ], + [ + -73.47482, + 45.464747 + ], + [ + -73.475061, + 45.464753 + ], + [ + -73.476229, + 45.46479 + ], + [ + -73.478187, + 45.464861 + ], + [ + -73.478688, + 45.464879 + ], + [ + -73.478969, + 45.464889 + ], + [ + -73.479281, + 45.464889 + ], + [ + -73.479651, + 45.464862 + ], + [ + -73.479951, + 45.464831 + ], + [ + -73.480287, + 45.464772 + ], + [ + -73.480652, + 45.464687 + ], + [ + -73.480952, + 45.464593 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.48121, + 45.464124 + ], + [ + -73.481015, + 45.463891 + ], + [ + -73.480932, + 45.463792 + ], + [ + -73.480306, + 45.46304 + ], + [ + -73.479935, + 45.462596 + ], + [ + -73.479274, + 45.461807 + ], + [ + -73.478983, + 45.461465 + ], + [ + -73.478678, + 45.461105 + ], + [ + -73.47855, + 45.461011 + ], + [ + -73.478409, + 45.460885 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.47888, + 45.460399 + ], + [ + -73.479008, + 45.460264 + ], + [ + -73.479302, + 45.459904 + ], + [ + -73.479398, + 45.459769 + ], + [ + -73.479488, + 45.459616 + ], + [ + -73.479616, + 45.459382 + ], + [ + -73.479659, + 45.459288 + ], + [ + -73.479699, + 45.459202 + ], + [ + -73.47976, + 45.459027 + ], + [ + -73.479776, + 45.458968 + ], + [ + -73.479808, + 45.458865 + ], + [ + -73.479852, + 45.458707 + ], + [ + -73.479891, + 45.458478 + ], + [ + -73.479913, + 45.458325 + ], + [ + -73.479923, + 45.458145 + ], + [ + -73.479926, + 45.458073 + ], + [ + -73.479893, + 45.457659 + ], + [ + -73.479817, + 45.456873 + ], + [ + -73.479803, + 45.456723 + ], + [ + -73.480102, + 45.456735 + ], + [ + -73.482685, + 45.456834 + ], + [ + -73.482746, + 45.456836 + ], + [ + -73.483692, + 45.456872 + ], + [ + -73.485139, + 45.456916 + ], + [ + -73.486346, + 45.456953 + ], + [ + -73.48636, + 45.456954 + ], + [ + -73.488203, + 45.457017 + ], + [ + -73.489622, + 45.457066 + ], + [ + -73.489765, + 45.457071 + ], + [ + -73.491355, + 45.457125 + ], + [ + -73.491594, + 45.457127 + ], + [ + -73.491916, + 45.45713 + ], + [ + -73.492063, + 45.457125 + ], + [ + -73.492191, + 45.457112 + ], + [ + -73.492207, + 45.457328 + ], + [ + -73.492457, + 45.459795 + ], + [ + -73.492461, + 45.459829 + ], + [ + -73.492544, + 45.460635 + ], + [ + -73.492615, + 45.461161 + ], + [ + -73.49267, + 45.461326 + ], + [ + -73.492685, + 45.461574 + ], + [ + -73.492688, + 45.461621 + ], + [ + -73.492727, + 45.462259 + ], + [ + -73.492801, + 45.462695 + ], + [ + -73.492839, + 45.462871 + ], + [ + -73.492913, + 45.463213 + ], + [ + -73.492982, + 45.463447 + ], + [ + -73.493216, + 45.464207 + ], + [ + -73.493833, + 45.466097 + ], + [ + -73.493922, + 45.46638 + ], + [ + -73.494209, + 45.467172 + ], + [ + -73.494809, + 45.468733 + ], + [ + -73.495076, + 45.469359 + ], + [ + -73.495234, + 45.469683 + ], + [ + -73.495362, + 45.469939 + ], + [ + -73.495491, + 45.470173 + ], + [ + -73.49554, + 45.470262 + ], + [ + -73.495895, + 45.470906 + ], + [ + -73.495967, + 45.471037 + ], + [ + -73.496018, + 45.471127 + ], + [ + -73.496235, + 45.471478 + ], + [ + -73.496323, + 45.471617 + ], + [ + -73.496799, + 45.472387 + ], + [ + -73.497277, + 45.473188 + ], + [ + -73.497508, + 45.473543 + ], + [ + -73.497684, + 45.473744 + ], + [ + -73.49797, + 45.473998 + ], + [ + -73.497971, + 45.473998 + ], + [ + -73.498154, + 45.474204 + ], + [ + -73.498345, + 45.474398 + ], + [ + -73.498759, + 45.474776 + ], + [ + -73.498981, + 45.474956 + ], + [ + -73.499212, + 45.475131 + ], + [ + -73.499453, + 45.475307 + ], + [ + -73.502533, + 45.47734 + ], + [ + -73.504857, + 45.478866 + ], + [ + -73.505913, + 45.479567 + ], + [ + -73.50636, + 45.479923 + ], + [ + -73.506669, + 45.480206 + ], + [ + -73.506703, + 45.480242 + ], + [ + -73.507146, + 45.480733 + ], + [ + -73.507302, + 45.480949 + ], + [ + -73.507442, + 45.481165 + ], + [ + -73.507569, + 45.481381 + ], + [ + -73.507678, + 45.48161 + ], + [ + -73.507857, + 45.482069 + ], + [ + -73.507995, + 45.482559 + ], + [ + -73.508478, + 45.484485 + ], + [ + -73.508692, + 45.485218 + ], + [ + -73.508857, + 45.485709 + ], + [ + -73.509037, + 45.486199 + ], + [ + -73.509236, + 45.486685 + ], + [ + -73.509454, + 45.487171 + ], + [ + -73.509688, + 45.487657 + ], + [ + -73.509939, + 45.488138 + ], + [ + -73.510206, + 45.488624 + ], + [ + -73.510497, + 45.489096 + ], + [ + -73.510511, + 45.489119 + ], + [ + -73.510962, + 45.489803 + ], + [ + -73.512569, + 45.492115 + ], + [ + -73.512867, + 45.49257 + ], + [ + -73.513116, + 45.493024 + ], + [ + -73.513214, + 45.493253 + ], + [ + -73.513607, + 45.494261 + ], + [ + -73.514156, + 45.495746 + ], + [ + -73.514429, + 45.49643 + ], + [ + -73.514695, + 45.496974 + ], + [ + -73.515628, + 45.498702 + ], + [ + -73.515861, + 45.49917 + ], + [ + -73.516166, + 45.499876 + ], + [ + -73.516897, + 45.501748 + ], + [ + -73.516988, + 45.501968 + ], + [ + -73.517047, + 45.502229 + ], + [ + -73.517143, + 45.50249 + ], + [ + -73.517343, + 45.502967 + ], + [ + -73.517473, + 45.503214 + ], + [ + -73.517796, + 45.503754 + ], + [ + -73.517946, + 45.503994 + ], + [ + -73.518322, + 45.504595 + ], + [ + -73.518382, + 45.504726 + ], + [ + -73.518393, + 45.504775 + ], + [ + -73.518381, + 45.504829 + ], + [ + -73.518359, + 45.504861 + ], + [ + -73.518298, + 45.504892 + ], + [ + -73.518253, + 45.504897 + ], + [ + -73.518142, + 45.504882 + ], + [ + -73.517927, + 45.504848 + ], + [ + -73.517624, + 45.504735 + ], + [ + -73.517545, + 45.504708 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517478, + 45.505047 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517438, + 45.505259 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517233, + 45.507275 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517558, + 45.509209 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517798, + 45.511422 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517596, + 45.513244 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518264, + 45.51531 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518973, + 45.516744 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520113, + 45.519727 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520194, + 45.520238 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520014, + 45.523393 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.521017, + 45.523892 + ], + [ + -73.521053, + 45.523883 + ], + [ + -73.521061, + 45.523869 + ], + [ + -73.521065, + 45.523851 + ], + [ + -73.521071, + 45.523799 + ] + ] + }, + "id": 43, + "properties": { + "id": "9b6f3618-d0d2-4537-a6ae-a840f5a11ace", + "data": { + "gtfs": { + "shape_id": "14_2_A" + }, + "segments": [ + { + "distanceMeters": 261, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 469, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 87, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 5459, + "travelTimeSeconds": 437 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 348, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 605, + "travelTimeSeconds": 113 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 204, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 15313, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11114.673998285822, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.51, + "travelTimeWithoutDwellTimesSeconds": 2040, + "operatingTimeWithLayoverTimeSeconds": 2244, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2040, + "operatingSpeedWithLayoverMetersPerSecond": 6.82, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.51 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "1336b6ed-25ac-4ba0-b4d2-c273e4f51d74", + "9a91df5e-7976-4b04-a1ed-26fb34f4f58f", + "936850f5-3268-43bc-97bf-4daf0894fdc7", + "00c8e0cb-91d0-48ff-97f2-5154a17a68bc", + "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", + "d306b992-8d43-4ba8-8460-68d87b486222", + "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", + "b5853393-4072-4255-b507-e9c4b6659c5b", + "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", + "2ac07b96-98be-4710-a749-3162a661fcb5", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "981ebecb-3dc2-4439-8648-8052a51df7ec", + "2a268094-fe95-4a75-83da-d02aa638cbb6", + "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", + "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", + "ef880d61-7a9a-4504-a9a1-27967a52e95d", + "f872f4da-bae9-485b-a2fb-ae01787389fc", + "71ffac32-604a-4260-b51e-c427856a20c4", + "70ace55a-2f3c-410b-8740-bea06ecb9924", + "5a01eede-d090-4bda-988f-792a987bafc2", + "eee98f97-7434-4d16-88a6-93a424bc6846", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "003bcf5e-54a8-471f-b008-b7fa64ff94ba", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", + "ecb00316-793a-4c41-88bd-3870bea4d999", + "1d56d4cb-0ab2-44f2-924d-aa119de8c362", + "2f68c8b3-ace6-41af-8853-d72177e835fd", + "69fd316d-244b-48fa-871d-645ac04399fc", + "8e7df7c5-fbe3-41d1-a80a-c492814328ef", + "bb980dda-615f-4aa9-85c9-d336582cf2ed", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "2259b112-2e60-4bcc-ad14-9e0e577f2909", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "f8d5bc3e-c2cb-43f2-b47c-e4f2b61a57bd", + "segments": [ + 0, + 12, + 15, + 18, + 22, + 27, + 32, + 42, + 45, + 51, + 56, + 59, + 61, + 64, + 75, + 81, + 88, + 96, + 102, + 108, + 112, + 122, + 125, + 135, + 139, + 144, + 152, + 163, + 166, + 170, + 173, + 176, + 181, + 186, + 278, + 284, + 289, + 295, + 301, + 309, + 316, + 324 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 43, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469107, + 45.46587 + ], + [ + -73.469152, + 45.465801 + ], + [ + -73.469114, + 45.465711 + ], + [ + -73.469034, + 45.465669 + ], + [ + -73.468913, + 45.46567 + ], + [ + -73.468751, + 45.465752 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469327, + 45.468092 + ], + [ + -73.469492, + 45.4681 + ], + [ + -73.470299, + 45.468145 + ], + [ + -73.471061, + 45.468181 + ], + [ + -73.471238, + 45.46819 + ], + [ + -73.471526, + 45.468208 + ], + [ + -73.472194, + 45.468244 + ], + [ + -73.472441, + 45.468255 + ], + [ + -73.472597, + 45.468262 + ], + [ + -73.472728, + 45.468276 + ], + [ + -73.472834, + 45.468294 + ], + [ + -73.472877, + 45.468307 + ], + [ + -73.473025, + 45.468348 + ], + [ + -73.473214, + 45.468424 + ], + [ + -73.473671, + 45.468604 + ], + [ + -73.473673, + 45.468604 + ], + [ + -73.473905, + 45.468649 + ], + [ + -73.474077, + 45.468676 + ], + [ + -73.474259, + 45.46869 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474366, + 45.468873 + ], + [ + -73.474292, + 45.469387 + ], + [ + -73.474256, + 45.469576 + ], + [ + -73.474234, + 45.469689 + ], + [ + -73.474156, + 45.470095 + ], + [ + -73.474035, + 45.470724 + ], + [ + -73.473974, + 45.47107 + ], + [ + -73.473942, + 45.471336 + ], + [ + -73.473932, + 45.471601 + ], + [ + -73.473939, + 45.4717 + ], + [ + -73.473947, + 45.471826 + ], + [ + -73.473986, + 45.472118 + ], + [ + -73.473998, + 45.472177 + ], + [ + -73.474046, + 45.47242 + ], + [ + -73.474106, + 45.47264 + ], + [ + -73.474275, + 45.473063 + ], + [ + -73.474463, + 45.473437 + ], + [ + -73.474014, + 45.473579 + ], + [ + -73.474007, + 45.473581 + ], + [ + -73.473846, + 45.473648 + ], + [ + -73.473736, + 45.473702 + ], + [ + -73.473545, + 45.473797 + ], + [ + -73.473464, + 45.473842 + ], + [ + -73.473457, + 45.473846 + ], + [ + -73.473334, + 45.473927 + ], + [ + -73.473141, + 45.474053 + ], + [ + -73.472074, + 45.474808 + ], + [ + -73.471919, + 45.474907 + ], + [ + -73.472018, + 45.474979 + ], + [ + -73.47234, + 45.475227 + ], + [ + -73.472632, + 45.475434 + ], + [ + -73.473157, + 45.475808 + ], + [ + -73.473415, + 45.476001 + ], + [ + -73.473847, + 45.47631 + ], + [ + -73.475018, + 45.477149 + ], + [ + -73.475717, + 45.477643 + ], + [ + -73.476119, + 45.477927 + ], + [ + -73.475478, + 45.478344 + ], + [ + -73.475372, + 45.478413 + ], + [ + -73.474534, + 45.478927 + ], + [ + -73.474461, + 45.478971 + ], + [ + -73.474157, + 45.479169 + ], + [ + -73.47284, + 45.480068 + ], + [ + -73.472485, + 45.480311 + ], + [ + -73.472246, + 45.480474 + ], + [ + -73.472135, + 45.48055 + ], + [ + -73.472029, + 45.480487 + ], + [ + -73.471904, + 45.480419 + ], + [ + -73.471804, + 45.480383 + ], + [ + -73.471671, + 45.48036 + ], + [ + -73.471568, + 45.480347 + ], + [ + -73.47151, + 45.480342 + ], + [ + -73.471409, + 45.480342 + ], + [ + -73.471292, + 45.480347 + ], + [ + -73.470657, + 45.480464 + ], + [ + -73.470383, + 45.480513 + ], + [ + -73.470287, + 45.480532 + ], + [ + -73.470068, + 45.480576 + ], + [ + -73.469901, + 45.480606 + ], + [ + -73.469898, + 45.480606 + ], + [ + -73.469791, + 45.480625 + ], + [ + -73.470101, + 45.481279 + ], + [ + -73.470149, + 45.481381 + ], + [ + -73.470239, + 45.481512 + ], + [ + -73.470516, + 45.481755 + ], + [ + -73.470609, + 45.481836 + ], + [ + -73.470742, + 45.481922 + ], + [ + -73.470805, + 45.481962 + ], + [ + -73.47134, + 45.482367 + ], + [ + -73.471834, + 45.482727 + ], + [ + -73.472033, + 45.482872 + ], + [ + -73.472845, + 45.483462 + ], + [ + -73.472948, + 45.483537 + ], + [ + -73.473747, + 45.484113 + ], + [ + -73.474477, + 45.484643 + ], + [ + -73.474566, + 45.484707 + ], + [ + -73.474818, + 45.484892 + ], + [ + -73.475135, + 45.485121 + ], + [ + -73.475481, + 45.485369 + ], + [ + -73.475662, + 45.485503 + ], + [ + -73.475956, + 45.48572 + ], + [ + -73.475583, + 45.485981 + ], + [ + -73.475157, + 45.486287 + ], + [ + -73.475578, + 45.486575 + ], + [ + -73.475843, + 45.486758 + ], + [ + -73.475994, + 45.486863 + ], + [ + -73.475863, + 45.486966 + ], + [ + -73.475741, + 45.487061 + ], + [ + -73.475345, + 45.487344 + ], + [ + -73.475065, + 45.487542 + ], + [ + -73.475389, + 45.487764 + ], + [ + -73.475411, + 45.487779 + ], + [ + -73.475597, + 45.487907 + ], + [ + -73.47601, + 45.48819 + ], + [ + -73.476259, + 45.488424 + ], + [ + -73.476492, + 45.488586 + ], + [ + -73.476696, + 45.48846 + ], + [ + -73.47671, + 45.488453 + ], + [ + -73.476789, + 45.488411 + ], + [ + -73.478723, + 45.489788 + ], + [ + -73.479093, + 45.490052 + ], + [ + -73.479214, + 45.490139 + ], + [ + -73.481409, + 45.491696 + ], + [ + -73.481426, + 45.491708 + ], + [ + -73.481545, + 45.491786 + ], + [ + -73.481575, + 45.491826 + ], + [ + -73.481586, + 45.49184 + ], + [ + -73.481557, + 45.491867 + ], + [ + -73.481502, + 45.491907 + ], + [ + -73.481312, + 45.492051 + ], + [ + -73.481761, + 45.492348 + ], + [ + -73.482051, + 45.492539 + ], + [ + -73.483914, + 45.493767 + ], + [ + -73.483989, + 45.493816 + ], + [ + -73.48407, + 45.49387 + ], + [ + -73.484957, + 45.493231 + ], + [ + -73.485998, + 45.492497 + ], + [ + -73.486068, + 45.492448 + ], + [ + -73.486525, + 45.49212 + ], + [ + -73.486777, + 45.49194 + ], + [ + -73.486792, + 45.491931 + ], + [ + -73.487065, + 45.491769 + ], + [ + -73.487273, + 45.491639 + ], + [ + -73.487383, + 45.491571 + ], + [ + -73.48867, + 45.490802 + ], + [ + -73.489386, + 45.49037 + ], + [ + -73.489454, + 45.490329 + ], + [ + -73.49048, + 45.489717 + ], + [ + -73.491254, + 45.489248 + ], + [ + -73.491548, + 45.48907 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.492138, + 45.488647 + ], + [ + -73.492246, + 45.488512 + ], + [ + -73.492413, + 45.48862 + ], + [ + -73.492658, + 45.488782 + ], + [ + -73.492831, + 45.488903 + ], + [ + -73.492998, + 45.489022 + ], + [ + -73.493002, + 45.489025 + ], + [ + -73.493685, + 45.489511 + ], + [ + -73.494044, + 45.489767 + ], + [ + -73.494298, + 45.489953 + ], + [ + -73.494463, + 45.490073 + ], + [ + -73.495016, + 45.490456 + ], + [ + -73.495224, + 45.490582 + ], + [ + -73.495457, + 45.490703 + ], + [ + -73.495685, + 45.490802 + ], + [ + -73.495827, + 45.490838 + ], + [ + -73.495853, + 45.490841 + ], + [ + -73.495938, + 45.490852 + ], + [ + -73.496542, + 45.490861 + ], + [ + -73.497071, + 45.49087 + ], + [ + -73.497636, + 45.490865 + ], + [ + -73.49822, + 45.490861 + ], + [ + -73.49837, + 45.490865 + ], + [ + -73.498703, + 45.49087 + ], + [ + -73.499004, + 45.49088 + ], + [ + -73.499099, + 45.490883 + ], + [ + -73.499523, + 45.490883 + ], + [ + -73.500019, + 45.490892 + ], + [ + -73.500399, + 45.490897 + ], + [ + -73.500799, + 45.4909 + ], + [ + -73.500934, + 45.490901 + ], + [ + -73.501389, + 45.49091 + ], + [ + -73.502611, + 45.490928 + ], + [ + -73.502759, + 45.49091 + ], + [ + -73.502923, + 45.490879 + ], + [ + -73.503314, + 45.490753 + ], + [ + -73.503637, + 45.490636 + ], + [ + -73.503868, + 45.49055 + ], + [ + -73.504078, + 45.490474 + ], + [ + -73.504178, + 45.490438 + ], + [ + -73.504792, + 45.490226 + ], + [ + -73.504891, + 45.490195 + ], + [ + -73.505021, + 45.490186 + ], + [ + -73.505149, + 45.490177 + ], + [ + -73.505151, + 45.490177 + ], + [ + -73.505337, + 45.490177 + ], + [ + -73.507071, + 45.490202 + ], + [ + -73.508965, + 45.49023 + ], + [ + -73.509532, + 45.490235 + ], + [ + -73.509541, + 45.490235 + ], + [ + -73.510213, + 45.490248 + ], + [ + -73.510813, + 45.490256 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.511281, + 45.490797 + ], + [ + -73.512404, + 45.492412 + ], + [ + -73.512425, + 45.492455 + ], + [ + -73.51245, + 45.492507 + ], + [ + -73.512764, + 45.493074 + ], + [ + -73.512921, + 45.493393 + ], + [ + -73.512971, + 45.493496 + ], + [ + -73.512984, + 45.493515 + ], + [ + -73.513094, + 45.493766 + ], + [ + -73.513261, + 45.494078 + ], + [ + -73.513283, + 45.494149 + ], + [ + -73.513342, + 45.494287 + ], + [ + -73.513459, + 45.494626 + ], + [ + -73.513505, + 45.494783 + ], + [ + -73.513561, + 45.49499 + ], + [ + -73.513604, + 45.495179 + ], + [ + -73.513621, + 45.495251 + ], + [ + -73.513692, + 45.495557 + ], + [ + -73.513772, + 45.495919 + ], + [ + -73.513786, + 45.49598 + ], + [ + -73.51384, + 45.496187 + ], + [ + -73.513899, + 45.496425 + ], + [ + -73.513925, + 45.49652 + ], + [ + -73.513974, + 45.496613 + ], + [ + -73.513974, + 45.496614 + ], + [ + -73.514009, + 45.496686 + ], + [ + -73.514054, + 45.496749 + ], + [ + -73.514104, + 45.49683 + ], + [ + -73.514166, + 45.496911 + ], + [ + -73.514219, + 45.49697 + ], + [ + -73.514552, + 45.497478 + ], + [ + -73.514769, + 45.497838 + ], + [ + -73.515085, + 45.498391 + ], + [ + -73.51517, + 45.49854 + ], + [ + -73.515559, + 45.499243 + ], + [ + -73.515623, + 45.499359 + ], + [ + -73.515674, + 45.499453 + ], + [ + -73.515873, + 45.499831 + ], + [ + -73.515977, + 45.500074 + ], + [ + -73.516146, + 45.500501 + ], + [ + -73.516373, + 45.50114 + ], + [ + -73.51647, + 45.501401 + ], + [ + -73.516583, + 45.50169 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517437, + 45.505263 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517233, + 45.507278 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517559, + 45.509212 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517797, + 45.511425 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517596, + 45.513247 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518265, + 45.515312 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518974, + 45.516745 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520113, + 45.519728 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520194, + 45.520238 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.521017, + 45.523892 + ], + [ + -73.521053, + 45.523883 + ], + [ + -73.521061, + 45.523869 + ], + [ + -73.521065, + 45.523851 + ], + [ + -73.521071, + 45.523799 + ] + ] + }, + "id": 44, + "properties": { + "id": "6167a864-34a3-4adb-b77d-848bdcac350c", + "data": { + "gtfs": { + "shape_id": "15_4_R" + }, + "segments": [ + { + "distanceMeters": 662, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 330, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 195, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 358, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 100, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 397, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 348, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 605, + "travelTimeSeconds": 113 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11366, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7618.188458394157, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.29, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 6.53, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.29 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", + "3a8b9936-4595-4770-a3f4-b31253602356", + "82735dcc-3897-4e4c-87e8-45ee1dacedaa", + "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", + "d73e4ff6-4502-4376-9cf1-5410d307a82f", + "c04702f7-b2cf-440e-a6da-0a84aefc3963", + "784b0f22-55ff-44d1-a754-ddad81fb81cd", + "96e97125-39ff-47a9-b41d-043c4ca5c57e", + "c2e1b4a6-db9f-4050-848a-68486b390a21", + "a4f163e1-b90e-4fc3-82f3-f03b3181860d", + "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", + "c229b499-645e-4877-8f57-0fc6de2a8d53", + "3c04c568-5ef2-4b47-8d34-b0d175358d60", + "a5c03062-e324-4cb7-8c59-00c59a14b63e", + "1e205a49-fad6-428c-9d0c-b4018473837d", + "ac9a9c14-57c3-4a81-9316-ceca9586731d", + "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", + "c4f08e33-183e-41cf-9f96-5985f148bd11", + "3040b262-0b20-4c40-9350-e484adfe1d60", + "ff721ee3-8729-47c1-80cd-7dd5e7142284", + "f132c08e-1812-4b2f-84fb-340628d1ac39", + "5573bb7b-19f0-4d2b-a66d-9f04f87c1987", + "1bded3cb-51a3-422d-8815-a9027023991e", + "fa220212-b6b2-4456-934f-7248f9884444", + "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", + "1fc11ea4-4e32-4f30-8519-34208d0f8931", + "1fa03421-8026-43d9-b21a-b3e57dfa43c2", + "d67aee3e-be1e-429b-b464-c7a6549e761a", + "51191948-9067-4256-853f-d80a1333a164", + "602dc8fb-62ff-45ed-888f-4b4172318b5d", + "5224c05b-57d6-4d5c-87fd-b9e78147c66e", + "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "114aaaad-d40e-4930-853f-ef5cebdd299f", + "0b09b82c-ec97-406d-9f1c-690cc935b5ea", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "2259b112-2e60-4bcc-ad14-9e0e577f2909", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "caa5c2ab-ae9e-4ae0-ba88-9e89b43e54e6", + "segments": [ + 0, + 27, + 31, + 38, + 46, + 53, + 66, + 74, + 77, + 79, + 83, + 88, + 103, + 108, + 115, + 118, + 123, + 128, + 135, + 141, + 144, + 147, + 156, + 160, + 166, + 169, + 172, + 180, + 184, + 191, + 199, + 204, + 218, + 221, + 223, + 226, + 230, + 246, + 262, + 270, + 283, + 289, + 294, + 300, + 306, + 314, + 321, + 329 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 44, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521071, + 45.523799 + ], + [ + -73.521073, + 45.52378 + ], + [ + -73.521082, + 45.523698 + ], + [ + -73.521077, + 45.523679 + ], + [ + -73.52106, + 45.523665 + ], + [ + -73.521034, + 45.523659 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519706, + 45.52323 + ], + [ + -73.519869, + 45.522907 + ], + [ + -73.520158, + 45.522337 + ], + [ + -73.520306, + 45.521899 + ], + [ + -73.520306, + 45.521896 + ], + [ + -73.52035, + 45.521713 + ], + [ + -73.520354, + 45.521696 + ], + [ + -73.520401, + 45.521498 + ], + [ + -73.520405, + 45.521373 + ], + [ + -73.520409, + 45.52119 + ], + [ + -73.520398, + 45.521025 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520191, + 45.520225 + ], + [ + -73.520124, + 45.519908 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518921, + 45.516656 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517661, + 45.513625 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517701, + 45.511782 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.517613, + 45.509421 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517231, + 45.507339 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517346, + 45.505761 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.516778, + 45.502147 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.516539, + 45.501577 + ], + [ + -73.51647, + 45.501401 + ], + [ + -73.516373, + 45.50114 + ], + [ + -73.516146, + 45.500501 + ], + [ + -73.515977, + 45.500074 + ], + [ + -73.515873, + 45.499831 + ], + [ + -73.515706, + 45.499514 + ], + [ + -73.515674, + 45.499453 + ], + [ + -73.515623, + 45.499359 + ], + [ + -73.51517, + 45.49854 + ], + [ + -73.515085, + 45.498391 + ], + [ + -73.514769, + 45.497838 + ], + [ + -73.514552, + 45.497478 + ], + [ + -73.514219, + 45.49697 + ], + [ + -73.514166, + 45.496911 + ], + [ + -73.514104, + 45.49683 + ], + [ + -73.514054, + 45.496749 + ], + [ + -73.514009, + 45.496686 + ], + [ + -73.513974, + 45.496614 + ], + [ + -73.513925, + 45.49652 + ], + [ + -73.513899, + 45.496425 + ], + [ + -73.51384, + 45.496187 + ], + [ + -73.513786, + 45.49598 + ], + [ + -73.513692, + 45.495557 + ], + [ + -73.513668, + 45.495452 + ], + [ + -73.513621, + 45.495251 + ], + [ + -73.513604, + 45.495179 + ], + [ + -73.513561, + 45.49499 + ], + [ + -73.513505, + 45.494783 + ], + [ + -73.513459, + 45.494626 + ], + [ + -73.513342, + 45.494287 + ], + [ + -73.513283, + 45.494149 + ], + [ + -73.513261, + 45.494078 + ], + [ + -73.513094, + 45.493766 + ], + [ + -73.512984, + 45.493515 + ], + [ + -73.512971, + 45.493496 + ], + [ + -73.512921, + 45.493393 + ], + [ + -73.512764, + 45.493074 + ], + [ + -73.51245, + 45.492507 + ], + [ + -73.512411, + 45.492426 + ], + [ + -73.512404, + 45.492412 + ], + [ + -73.511186, + 45.49066 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.510213, + 45.490248 + ], + [ + -73.50976, + 45.490239 + ], + [ + -73.509541, + 45.490235 + ], + [ + -73.508965, + 45.49023 + ], + [ + -73.507121, + 45.490203 + ], + [ + -73.505337, + 45.490177 + ], + [ + -73.505151, + 45.490177 + ], + [ + -73.505021, + 45.490186 + ], + [ + -73.504891, + 45.490195 + ], + [ + -73.504792, + 45.490226 + ], + [ + -73.50434, + 45.490382 + ], + [ + -73.504178, + 45.490438 + ], + [ + -73.504078, + 45.490474 + ], + [ + -73.503868, + 45.49055 + ], + [ + -73.503825, + 45.490566 + ], + [ + -73.503637, + 45.490636 + ], + [ + -73.503314, + 45.490753 + ], + [ + -73.502923, + 45.490879 + ], + [ + -73.502759, + 45.49091 + ], + [ + -73.502611, + 45.490928 + ], + [ + -73.501389, + 45.49091 + ], + [ + -73.501095, + 45.490904 + ], + [ + -73.500934, + 45.490901 + ], + [ + -73.500399, + 45.490897 + ], + [ + -73.500019, + 45.490892 + ], + [ + -73.499523, + 45.490883 + ], + [ + -73.499099, + 45.490883 + ], + [ + -73.498703, + 45.49087 + ], + [ + -73.498572, + 45.490868 + ], + [ + -73.49837, + 45.490865 + ], + [ + -73.49822, + 45.490861 + ], + [ + -73.497636, + 45.490865 + ], + [ + -73.497071, + 45.49087 + ], + [ + -73.496542, + 45.490861 + ], + [ + -73.496087, + 45.490854 + ], + [ + -73.495938, + 45.490852 + ], + [ + -73.495827, + 45.490838 + ], + [ + -73.495685, + 45.490802 + ], + [ + -73.495457, + 45.490703 + ], + [ + -73.495224, + 45.490582 + ], + [ + -73.495016, + 45.490456 + ], + [ + -73.494653, + 45.490205 + ], + [ + -73.494463, + 45.490073 + ], + [ + -73.494044, + 45.489767 + ], + [ + -73.493685, + 45.489511 + ], + [ + -73.493229, + 45.489186 + ], + [ + -73.493083, + 45.489083 + ], + [ + -73.492831, + 45.488903 + ], + [ + -73.492658, + 45.488782 + ], + [ + -73.492413, + 45.48862 + ], + [ + -73.492246, + 45.488512 + ], + [ + -73.492153, + 45.48848 + ], + [ + -73.491992, + 45.488642 + ], + [ + -73.491718, + 45.488829 + ], + [ + -73.491557, + 45.488939 + ], + [ + -73.491474, + 45.489016 + ], + [ + -73.490406, + 45.489663 + ], + [ + -73.489497, + 45.490196 + ], + [ + -73.48937, + 45.490271 + ], + [ + -73.488602, + 45.490739 + ], + [ + -73.487486, + 45.491409 + ], + [ + -73.487307, + 45.491517 + ], + [ + -73.486988, + 45.491706 + ], + [ + -73.486715, + 45.491868 + ], + [ + -73.486105, + 45.492292 + ], + [ + -73.485972, + 45.492385 + ], + [ + -73.484881, + 45.493177 + ], + [ + -73.484536, + 45.493424 + ], + [ + -73.484112, + 45.493727 + ], + [ + -73.483989, + 45.493816 + ], + [ + -73.481761, + 45.492348 + ], + [ + -73.481457, + 45.492147 + ], + [ + -73.481312, + 45.492051 + ], + [ + -73.481502, + 45.491907 + ], + [ + -73.481557, + 45.491867 + ], + [ + -73.481586, + 45.49184 + ], + [ + -73.481575, + 45.491826 + ], + [ + -73.481545, + 45.491786 + ], + [ + -73.481409, + 45.491696 + ], + [ + -73.480817, + 45.491276 + ], + [ + -73.479371, + 45.49025 + ], + [ + -73.479214, + 45.490139 + ], + [ + -73.478723, + 45.489788 + ], + [ + -73.476945, + 45.488522 + ], + [ + -73.476789, + 45.488411 + ], + [ + -73.476696, + 45.48846 + ], + [ + -73.476492, + 45.488586 + ], + [ + -73.476259, + 45.488424 + ], + [ + -73.47601, + 45.48819 + ], + [ + -73.475604, + 45.487912 + ], + [ + -73.475597, + 45.487907 + ], + [ + -73.475294, + 45.487699 + ], + [ + -73.475065, + 45.487542 + ], + [ + -73.475345, + 45.487344 + ], + [ + -73.475741, + 45.487061 + ], + [ + -73.475863, + 45.486966 + ], + [ + -73.475994, + 45.486863 + ], + [ + -73.475578, + 45.486575 + ], + [ + -73.475361, + 45.486426 + ], + [ + -73.475157, + 45.486287 + ], + [ + -73.475583, + 45.485981 + ], + [ + -73.475956, + 45.48572 + ], + [ + -73.475657, + 45.485498 + ], + [ + -73.475481, + 45.485369 + ], + [ + -73.475135, + 45.485121 + ], + [ + -73.474818, + 45.484892 + ], + [ + -73.474676, + 45.484789 + ], + [ + -73.474566, + 45.484707 + ], + [ + -73.473747, + 45.484113 + ], + [ + -73.473099, + 45.483646 + ], + [ + -73.472948, + 45.483537 + ], + [ + -73.472033, + 45.482872 + ], + [ + -73.471834, + 45.482727 + ], + [ + -73.47134, + 45.482367 + ], + [ + -73.470938, + 45.482063 + ], + [ + -73.470805, + 45.481962 + ], + [ + -73.470742, + 45.481922 + ], + [ + -73.470609, + 45.481836 + ], + [ + -73.470487, + 45.481729 + ], + [ + -73.470239, + 45.481512 + ], + [ + -73.470149, + 45.481381 + ], + [ + -73.470101, + 45.481279 + ], + [ + -73.469864, + 45.48078 + ], + [ + -73.469791, + 45.480625 + ], + [ + -73.470068, + 45.480576 + ], + [ + -73.470287, + 45.480532 + ], + [ + -73.470383, + 45.480513 + ], + [ + -73.470657, + 45.480464 + ], + [ + -73.471292, + 45.480347 + ], + [ + -73.471409, + 45.480342 + ], + [ + -73.47151, + 45.480342 + ], + [ + -73.471568, + 45.480347 + ], + [ + -73.471671, + 45.48036 + ], + [ + -73.471804, + 45.480383 + ], + [ + -73.471904, + 45.480419 + ], + [ + -73.472029, + 45.480487 + ], + [ + -73.47203, + 45.480487 + ], + [ + -73.472135, + 45.48055 + ], + [ + -73.472485, + 45.480311 + ], + [ + -73.47284, + 45.480068 + ], + [ + -73.474157, + 45.479169 + ], + [ + -73.474307, + 45.479071 + ], + [ + -73.474461, + 45.478971 + ], + [ + -73.475372, + 45.478413 + ], + [ + -73.475478, + 45.478344 + ], + [ + -73.475965, + 45.478027 + ], + [ + -73.476119, + 45.477927 + ], + [ + -73.476251, + 45.477842 + ], + [ + -73.475153, + 45.477059 + ], + [ + -73.474544, + 45.476636 + ], + [ + -73.474345, + 45.476487 + ], + [ + -73.474216, + 45.476391 + ], + [ + -73.4733, + 45.475709 + ], + [ + -73.473152, + 45.475605 + ], + [ + -73.472484, + 45.475128 + ], + [ + -73.472476, + 45.475122 + ], + [ + -73.47218, + 45.47489 + ], + [ + -73.473207, + 45.474171 + ], + [ + -73.473247, + 45.474143 + ], + [ + -73.473452, + 45.474003 + ], + [ + -73.47356, + 45.473931 + ], + [ + -73.47364, + 45.473887 + ], + [ + -73.473932, + 45.473738 + ], + [ + -73.474194, + 45.473626 + ], + [ + -73.474513, + 45.473518 + ], + [ + -73.474653, + 45.473477 + ], + [ + -73.474613, + 45.473387 + ], + [ + -73.474472, + 45.473107 + ], + [ + -73.474431, + 45.473027 + ], + [ + -73.474274, + 45.472609 + ], + [ + -73.474213, + 45.472397 + ], + [ + -73.474173, + 45.472208 + ], + [ + -73.474165, + 45.472163 + ], + [ + -73.474147, + 45.472061 + ], + [ + -73.474141, + 45.472028 + ], + [ + -73.47411, + 45.47183 + ], + [ + -73.474121, + 45.471228 + ], + [ + -73.474166, + 45.470967 + ], + [ + -73.474399, + 45.469698 + ], + [ + -73.474412, + 45.469623 + ], + [ + -73.474454, + 45.469396 + ], + [ + -73.474489, + 45.469055 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.473257, + 45.468317 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.471489, + 45.468101 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469574, + 45.467137 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.468602, + 45.466372 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469039, + 45.466295 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469319, + 45.467991 + ], + [ + -73.469043, + 45.467983 + ], + [ + -73.468598, + 45.467969 + ], + [ + -73.468434, + 45.467978 + ], + [ + -73.467926, + 45.468045 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.46758, + 45.467757 + ], + [ + -73.467357, + 45.467296 + ], + [ + -73.467335, + 45.467098 + ], + [ + -73.467287, + 45.466921 + ], + [ + -73.46724, + 45.46679 + ], + [ + -73.467201, + 45.466621 + ], + [ + -73.467171, + 45.466457 + ], + [ + -73.467168, + 45.466361 + ], + [ + -73.467171, + 45.466266 + ], + [ + -73.46719, + 45.46616 + ], + [ + -73.467233, + 45.466051 + ], + [ + -73.467286, + 45.465947 + ], + [ + -73.467286, + 45.465946 + ], + [ + -73.467347, + 45.465852 + ], + [ + -73.46743, + 45.465768 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467565, + 45.465647 + ], + [ + -73.467708, + 45.465556 + ], + [ + -73.467899, + 45.465442 + ], + [ + -73.46805, + 45.465387 + ], + [ + -73.468287, + 45.465321 + ], + [ + -73.468514, + 45.465288 + ], + [ + -73.468859, + 45.465256 + ], + [ + -73.469207, + 45.465245 + ], + [ + -73.471824, + 45.46534 + ], + [ + -73.47278, + 45.465351 + ], + [ + -73.473923, + 45.465346 + ], + [ + -73.474792, + 45.465284 + ], + [ + -73.476448, + 45.465339 + ], + [ + -73.478069, + 45.465419 + ], + [ + -73.47931, + 45.465481 + ], + [ + -73.480681, + 45.465584 + ], + [ + -73.481658, + 45.465665 + ], + [ + -73.483804, + 45.465854 + ], + [ + -73.485886, + 45.466123 + ], + [ + -73.488038, + 45.466444 + ], + [ + -73.489088, + 45.466602 + ], + [ + -73.491585, + 45.46694 + ], + [ + -73.494707, + 45.467307 + ], + [ + -73.494917, + 45.467332 + ], + [ + -73.494999, + 45.467342 + ], + [ + -73.497318, + 45.467635 + ], + [ + -73.501976, + 45.468162 + ], + [ + -73.50546, + 45.468524 + ], + [ + -73.508994, + 45.468874 + ], + [ + -73.510795, + 45.469064 + ], + [ + -73.516615, + 45.469606 + ], + [ + -73.520513, + 45.469901 + ], + [ + -73.524263, + 45.470138 + ], + [ + -73.526895, + 45.470234 + ], + [ + -73.536203, + 45.470502 + ], + [ + -73.537479, + 45.470611 + ], + [ + -73.540035, + 45.470737 + ], + [ + -73.540574, + 45.470754 + ], + [ + -73.541689, + 45.470806 + ], + [ + -73.54236, + 45.470938 + ], + [ + -73.542685, + 45.471019 + ], + [ + -73.543056, + 45.471172 + ], + [ + -73.543235, + 45.471297 + ], + [ + -73.543427, + 45.47153 + ], + [ + -73.543495, + 45.471781 + ], + [ + -73.543487, + 45.471977 + ], + [ + -73.543374, + 45.472246 + ], + [ + -73.543123, + 45.472648 + ], + [ + -73.543053, + 45.472745 + ], + [ + -73.543034, + 45.472772 + ], + [ + -73.543013, + 45.472801 + ], + [ + -73.542473, + 45.473549 + ], + [ + -73.542275, + 45.473832 + ], + [ + -73.542255, + 45.473861 + ], + [ + -73.542175, + 45.473976 + ], + [ + -73.542016, + 45.474229 + ], + [ + -73.541794, + 45.474618 + ], + [ + -73.541458, + 45.475221 + ], + [ + -73.541094, + 45.47588 + ], + [ + -73.540722, + 45.476557 + ], + [ + -73.540393, + 45.477154 + ], + [ + -73.540141, + 45.477612 + ], + [ + -73.539989, + 45.477937 + ], + [ + -73.539912, + 45.478117 + ], + [ + -73.53962, + 45.478792 + ], + [ + -73.539453, + 45.479242 + ], + [ + -73.539011, + 45.480452 + ], + [ + -73.538771, + 45.481137 + ], + [ + -73.538372, + 45.4823 + ], + [ + -73.537796, + 45.483909 + ], + [ + -73.537682, + 45.484235 + ], + [ + -73.537533, + 45.484742 + ], + [ + -73.537501, + 45.485252 + ], + [ + -73.537565, + 45.485765 + ], + [ + -73.537725, + 45.486206 + ], + [ + -73.537953, + 45.486613 + ], + [ + -73.538211, + 45.486968 + ], + [ + -73.538564, + 45.487319 + ], + [ + -73.538991, + 45.48766 + ], + [ + -73.539413, + 45.487933 + ], + [ + -73.540409, + 45.488352 + ], + [ + -73.540999, + 45.488508 + ], + [ + -73.545779, + 45.489431 + ], + [ + -73.547415, + 45.489732 + ], + [ + -73.548107, + 45.48986 + ], + [ + -73.549549, + 45.490154 + ], + [ + -73.549968, + 45.490239 + ], + [ + -73.550646, + 45.490459 + ], + [ + -73.551261, + 45.490742 + ], + [ + -73.55163, + 45.490924 + ], + [ + -73.551996, + 45.491154 + ], + [ + -73.552466, + 45.491495 + ], + [ + -73.552812, + 45.491812 + ], + [ + -73.553225, + 45.492293 + ], + [ + -73.553459, + 45.492647 + ], + [ + -73.553701, + 45.493121 + ], + [ + -73.553714, + 45.493155 + ], + [ + -73.554005, + 45.493935 + ], + [ + -73.554229, + 45.494495 + ], + [ + -73.55441, + 45.494962 + ], + [ + -73.554709, + 45.495574 + ], + [ + -73.554963, + 45.495825 + ], + [ + -73.555225, + 45.496022 + ], + [ + -73.555665, + 45.496222 + ], + [ + -73.557268, + 45.496821 + ], + [ + -73.557934, + 45.497074 + ], + [ + -73.558509, + 45.49729 + ], + [ + -73.558754, + 45.497382 + ], + [ + -73.559665, + 45.497799 + ], + [ + -73.56055, + 45.498258 + ], + [ + -73.561247, + 45.498577 + ], + [ + -73.561574, + 45.498701 + ], + [ + -73.561917, + 45.498838 + ], + [ + -73.562165, + 45.49894 + ], + [ + -73.562545, + 45.499119 + ], + [ + -73.562571, + 45.499093 + ], + [ + -73.562654, + 45.499004 + ], + [ + -73.563341, + 45.498281 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.56431, + 45.497835 + ], + [ + -73.565142, + 45.498217 + ], + [ + -73.565601, + 45.498443 + ], + [ + -73.565748, + 45.49831 + ], + [ + -73.565849, + 45.498292 + ], + [ + -73.566051, + 45.498359 + ], + [ + -73.566361, + 45.498471 + ], + [ + -73.566492, + 45.498485 + ], + [ + -73.566611, + 45.498345 + ] + ] + }, + "id": 45, + "properties": { + "id": "635dae54-c143-4e92-9491-fe2d7f6099f4", + "data": { + "gtfs": { + "shape_id": "15_1_A" + }, + "segments": [ + { + "distanceMeters": 551, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 412, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 482, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 358, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 622, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 10801, + "travelTimeSeconds": 840 + }, + { + "distanceMeters": 830, + "travelTimeSeconds": 300 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 288, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 22902, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4556.682714136112, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.95, + "travelTimeWithoutDwellTimesSeconds": 2880, + "operatingTimeWithLayoverTimeSeconds": 3168, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2880, + "operatingSpeedWithLayoverMetersPerSecond": 7.23, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.95 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "0b09b82c-ec97-406d-9f1c-690cc935b5ea", + "27330ef0-4c59-4e22-a044-51b9d43c9719", + "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "5224c05b-57d6-4d5c-87fd-b9e78147c66e", + "602dc8fb-62ff-45ed-888f-4b4172318b5d", + "51191948-9067-4256-853f-d80a1333a164", + "d67aee3e-be1e-429b-b464-c7a6549e761a", + "1fa03421-8026-43d9-b21a-b3e57dfa43c2", + "1fc11ea4-4e32-4f30-8519-34208d0f8931", + "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", + "fa220212-b6b2-4456-934f-7248f9884444", + "196681e4-c9e5-4a79-a3b1-ce225227e0aa", + "a2e6b668-43de-43be-8b1b-07b41b333c8d", + "f132c08e-1812-4b2f-84fb-340628d1ac39", + "ff721ee3-8729-47c1-80cd-7dd5e7142284", + "3040b262-0b20-4c40-9350-e484adfe1d60", + "c4f08e33-183e-41cf-9f96-5985f148bd11", + "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", + "ac9a9c14-57c3-4a81-9316-ceca9586731d", + "1e205a49-fad6-428c-9d0c-b4018473837d", + "a5c03062-e324-4cb7-8c59-00c59a14b63e", + "3c04c568-5ef2-4b47-8d34-b0d175358d60", + "c229b499-645e-4877-8f57-0fc6de2a8d53", + "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", + "a4f163e1-b90e-4fc3-82f3-f03b3181860d", + "c2e1b4a6-db9f-4050-848a-68486b390a21", + "96e97125-39ff-47a9-b41d-043c4ca5c57e", + "784b0f22-55ff-44d1-a754-ddad81fb81cd", + "c04702f7-b2cf-440e-a6da-0a84aefc3963", + "d73e4ff6-4502-4376-9cf1-5410d307a82f", + "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", + "82735dcc-3897-4e4c-87e8-45ee1dacedaa", + "3a8b9936-4595-4770-a3f4-b31253602356", + "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "461a5d33-406e-481a-b773-6e450c48b670", + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" + ], + "stops": [], + "line_id": "caa5c2ab-ae9e-4ae0-ba88-9e89b43e54e6", + "segments": [ + 0, + 27, + 37, + 48, + 54, + 61, + 67, + 72, + 84, + 93, + 111, + 126, + 131, + 134, + 140, + 151, + 158, + 164, + 171, + 176, + 183, + 187, + 190, + 194, + 198, + 201, + 210, + 213, + 221, + 228, + 232, + 236, + 239, + 244, + 252, + 266, + 271, + 275, + 281, + 285, + 287, + 303, + 309, + 320, + 327, + 346, + 491 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 45, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521071, + 45.523799 + ], + [ + -73.521073, + 45.52378 + ], + [ + -73.521082, + 45.523698 + ], + [ + -73.521077, + 45.523679 + ], + [ + -73.52106, + 45.523665 + ], + [ + -73.521034, + 45.523659 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519706, + 45.52323 + ], + [ + -73.519869, + 45.522907 + ], + [ + -73.520158, + 45.522337 + ], + [ + -73.520306, + 45.521899 + ], + [ + -73.520306, + 45.521896 + ], + [ + -73.520354, + 45.521696 + ], + [ + -73.520358, + 45.521679 + ], + [ + -73.520401, + 45.521498 + ], + [ + -73.520405, + 45.521373 + ], + [ + -73.520409, + 45.52119 + ], + [ + -73.520398, + 45.521025 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520191, + 45.520225 + ], + [ + -73.520123, + 45.519906 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518919, + 45.516652 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.51766, + 45.513619 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517703, + 45.511775 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.51761, + 45.509413 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517232, + 45.50733 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517348, + 45.505751 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.516772, + 45.502135 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.516539, + 45.501577 + ], + [ + -73.51647, + 45.501401 + ], + [ + -73.516373, + 45.50114 + ], + [ + -73.516146, + 45.500501 + ], + [ + -73.515977, + 45.500074 + ], + [ + -73.515873, + 45.499831 + ], + [ + -73.5157, + 45.499501 + ], + [ + -73.515674, + 45.499453 + ], + [ + -73.515623, + 45.499359 + ], + [ + -73.51517, + 45.49854 + ], + [ + -73.515085, + 45.498391 + ], + [ + -73.514769, + 45.497838 + ], + [ + -73.514552, + 45.497478 + ], + [ + -73.514219, + 45.49697 + ], + [ + -73.514166, + 45.496911 + ], + [ + -73.514104, + 45.49683 + ], + [ + -73.514054, + 45.496749 + ], + [ + -73.514009, + 45.496686 + ], + [ + -73.513974, + 45.496614 + ], + [ + -73.513925, + 45.49652 + ], + [ + -73.513899, + 45.496425 + ], + [ + -73.51384, + 45.496187 + ], + [ + -73.513786, + 45.49598 + ], + [ + -73.513692, + 45.495557 + ], + [ + -73.513664, + 45.495437 + ], + [ + -73.513621, + 45.495251 + ], + [ + -73.513604, + 45.495179 + ], + [ + -73.513561, + 45.49499 + ], + [ + -73.513505, + 45.494783 + ], + [ + -73.513459, + 45.494626 + ], + [ + -73.513342, + 45.494287 + ], + [ + -73.513283, + 45.494149 + ], + [ + -73.513261, + 45.494078 + ], + [ + -73.513094, + 45.493766 + ], + [ + -73.512984, + 45.493515 + ], + [ + -73.512971, + 45.493496 + ], + [ + -73.512921, + 45.493393 + ], + [ + -73.512764, + 45.493074 + ], + [ + -73.51245, + 45.492507 + ], + [ + -73.512404, + 45.492412 + ], + [ + -73.512402, + 45.49241 + ], + [ + -73.511186, + 45.49066 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.510213, + 45.490248 + ], + [ + -73.509732, + 45.490239 + ], + [ + -73.509541, + 45.490235 + ], + [ + -73.508965, + 45.49023 + ], + [ + -73.507092, + 45.490203 + ], + [ + -73.505337, + 45.490177 + ], + [ + -73.505151, + 45.490177 + ], + [ + -73.505021, + 45.490186 + ], + [ + -73.504891, + 45.490195 + ], + [ + -73.504792, + 45.490226 + ], + [ + -73.504312, + 45.490391 + ], + [ + -73.504178, + 45.490438 + ], + [ + -73.504078, + 45.490474 + ], + [ + -73.503868, + 45.49055 + ], + [ + -73.503825, + 45.490566 + ], + [ + -73.503637, + 45.490636 + ], + [ + -73.503314, + 45.490753 + ], + [ + -73.502923, + 45.490879 + ], + [ + -73.502759, + 45.49091 + ], + [ + -73.502611, + 45.490928 + ], + [ + -73.501389, + 45.49091 + ], + [ + -73.501063, + 45.490904 + ], + [ + -73.500934, + 45.490901 + ], + [ + -73.500399, + 45.490897 + ], + [ + -73.500019, + 45.490892 + ], + [ + -73.499523, + 45.490883 + ], + [ + -73.499099, + 45.490883 + ], + [ + -73.498703, + 45.49087 + ], + [ + -73.498538, + 45.490867 + ], + [ + -73.49837, + 45.490865 + ], + [ + -73.49822, + 45.490861 + ], + [ + -73.497636, + 45.490865 + ], + [ + -73.497071, + 45.49087 + ], + [ + -73.496542, + 45.490861 + ], + [ + -73.496052, + 45.490853 + ], + [ + -73.495938, + 45.490852 + ], + [ + -73.495827, + 45.490838 + ], + [ + -73.495685, + 45.490802 + ], + [ + -73.495457, + 45.490703 + ], + [ + -73.495224, + 45.490582 + ], + [ + -73.495016, + 45.490456 + ], + [ + -73.494628, + 45.490187 + ], + [ + -73.494463, + 45.490073 + ], + [ + -73.494044, + 45.489767 + ], + [ + -73.493685, + 45.489511 + ], + [ + -73.493229, + 45.489186 + ], + [ + -73.493057, + 45.489064 + ], + [ + -73.492831, + 45.488903 + ], + [ + -73.492658, + 45.488782 + ], + [ + -73.492413, + 45.48862 + ], + [ + -73.492246, + 45.488512 + ], + [ + -73.492153, + 45.48848 + ], + [ + -73.491992, + 45.488642 + ], + [ + -73.491691, + 45.488848 + ], + [ + -73.491557, + 45.488939 + ], + [ + -73.491474, + 45.489016 + ], + [ + -73.490406, + 45.489663 + ], + [ + -73.489466, + 45.490214 + ], + [ + -73.48937, + 45.490271 + ], + [ + -73.488602, + 45.490739 + ], + [ + -73.487455, + 45.491428 + ], + [ + -73.487307, + 45.491517 + ], + [ + -73.486988, + 45.491706 + ], + [ + -73.486715, + 45.491868 + ], + [ + -73.486075, + 45.492313 + ], + [ + -73.485972, + 45.492385 + ], + [ + -73.484881, + 45.493177 + ], + [ + -73.484082, + 45.493749 + ], + [ + -73.483989, + 45.493816 + ], + [ + -73.481761, + 45.492348 + ], + [ + -73.481423, + 45.492125 + ], + [ + -73.481312, + 45.492051 + ], + [ + -73.481502, + 45.491907 + ], + [ + -73.481557, + 45.491867 + ], + [ + -73.481586, + 45.49184 + ], + [ + -73.481575, + 45.491826 + ], + [ + -73.481545, + 45.491786 + ], + [ + -73.481409, + 45.491696 + ], + [ + -73.480685, + 45.491182 + ], + [ + -73.479338, + 45.490227 + ], + [ + -73.479214, + 45.490139 + ], + [ + -73.478723, + 45.489788 + ], + [ + -73.47691, + 45.488497 + ], + [ + -73.476789, + 45.488411 + ], + [ + -73.476696, + 45.48846 + ], + [ + -73.476492, + 45.488586 + ], + [ + -73.476259, + 45.488424 + ], + [ + -73.47601, + 45.48819 + ], + [ + -73.475604, + 45.487912 + ], + [ + -73.475597, + 45.487907 + ], + [ + -73.475258, + 45.487674 + ], + [ + -73.475065, + 45.487542 + ], + [ + -73.475345, + 45.487344 + ], + [ + -73.475741, + 45.487061 + ], + [ + -73.475863, + 45.486966 + ], + [ + -73.475994, + 45.486863 + ], + [ + -73.475578, + 45.486575 + ], + [ + -73.475324, + 45.486401 + ], + [ + -73.475157, + 45.486287 + ], + [ + -73.475583, + 45.485981 + ], + [ + -73.475956, + 45.48572 + ], + [ + -73.47562, + 45.485472 + ], + [ + -73.475481, + 45.485369 + ], + [ + -73.475135, + 45.485121 + ], + [ + -73.474818, + 45.484892 + ], + [ + -73.474639, + 45.484761 + ], + [ + -73.474566, + 45.484707 + ], + [ + -73.473747, + 45.484113 + ], + [ + -73.473061, + 45.483619 + ], + [ + -73.472948, + 45.483537 + ], + [ + -73.472033, + 45.482872 + ], + [ + -73.471834, + 45.482727 + ], + [ + -73.47134, + 45.482367 + ], + [ + -73.4709, + 45.482034 + ], + [ + -73.470805, + 45.481962 + ], + [ + -73.470742, + 45.481922 + ], + [ + -73.470609, + 45.481836 + ], + [ + -73.470487, + 45.481729 + ], + [ + -73.470239, + 45.481512 + ], + [ + -73.470149, + 45.481381 + ], + [ + -73.470101, + 45.481279 + ], + [ + -73.469846, + 45.480741 + ], + [ + -73.469791, + 45.480625 + ], + [ + -73.470068, + 45.480576 + ], + [ + -73.470287, + 45.480532 + ], + [ + -73.470383, + 45.480513 + ], + [ + -73.470657, + 45.480464 + ], + [ + -73.471292, + 45.480347 + ], + [ + -73.471409, + 45.480342 + ], + [ + -73.47151, + 45.480342 + ], + [ + -73.471568, + 45.480347 + ], + [ + -73.471671, + 45.48036 + ], + [ + -73.471804, + 45.480383 + ], + [ + -73.471904, + 45.480419 + ], + [ + -73.472029, + 45.480487 + ], + [ + -73.472075, + 45.480514 + ], + [ + -73.472135, + 45.48055 + ], + [ + -73.472485, + 45.480311 + ], + [ + -73.47284, + 45.480068 + ], + [ + -73.474157, + 45.479169 + ], + [ + -73.474351, + 45.479042 + ], + [ + -73.474461, + 45.478971 + ], + [ + -73.475372, + 45.478413 + ], + [ + -73.475478, + 45.478344 + ], + [ + -73.476011, + 45.477998 + ], + [ + -73.476119, + 45.477927 + ], + [ + -73.476251, + 45.477842 + ], + [ + -73.475153, + 45.477059 + ], + [ + -73.474544, + 45.476636 + ], + [ + -73.474345, + 45.476487 + ], + [ + -73.474173, + 45.476359 + ], + [ + -73.4733, + 45.475709 + ], + [ + -73.473152, + 45.475605 + ], + [ + -73.472484, + 45.475128 + ], + [ + -73.472433, + 45.475088 + ], + [ + -73.47218, + 45.47489 + ], + [ + -73.473247, + 45.474143 + ], + [ + -73.473254, + 45.474138 + ], + [ + -73.473452, + 45.474003 + ], + [ + -73.47356, + 45.473931 + ], + [ + -73.47364, + 45.473887 + ], + [ + -73.473932, + 45.473738 + ], + [ + -73.474194, + 45.473626 + ], + [ + -73.474513, + 45.473518 + ], + [ + -73.474653, + 45.473477 + ], + [ + -73.474613, + 45.473387 + ], + [ + -73.474531, + 45.473224 + ], + [ + -73.474431, + 45.473027 + ], + [ + -73.474274, + 45.472609 + ], + [ + -73.474213, + 45.472397 + ], + [ + -73.474173, + 45.472208 + ], + [ + -73.474165, + 45.472163 + ], + [ + -73.474141, + 45.472028 + ], + [ + -73.474138, + 45.472014 + ], + [ + -73.47411, + 45.47183 + ], + [ + -73.474121, + 45.471228 + ], + [ + -73.474166, + 45.470967 + ], + [ + -73.474399, + 45.469698 + ], + [ + -73.474421, + 45.469575 + ], + [ + -73.474454, + 45.469396 + ], + [ + -73.474489, + 45.469055 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.473195, + 45.468292 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.471416, + 45.468098 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469574, + 45.467137 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.46908, + 45.465912 + ], + [ + -73.469107, + 45.46587 + ] + ] + }, + "id": 46, + "properties": { + "id": "c8a2b010-8365-410d-ab37-1c3de816ca89", + "data": { + "gtfs": { + "shape_id": "15_2_A" + }, + "segments": [ + { + "distanceMeters": 551, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 412, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 482, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 358, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 653, + "travelTimeSeconds": 124 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11308, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7618.188458394157, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.73, + "travelTimeWithoutDwellTimesSeconds": 1680, + "operatingTimeWithLayoverTimeSeconds": 1860, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1680, + "operatingSpeedWithLayoverMetersPerSecond": 6.08, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.73 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "0b09b82c-ec97-406d-9f1c-690cc935b5ea", + "27330ef0-4c59-4e22-a044-51b9d43c9719", + "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "5224c05b-57d6-4d5c-87fd-b9e78147c66e", + "602dc8fb-62ff-45ed-888f-4b4172318b5d", + "51191948-9067-4256-853f-d80a1333a164", + "d67aee3e-be1e-429b-b464-c7a6549e761a", + "1fa03421-8026-43d9-b21a-b3e57dfa43c2", + "1fc11ea4-4e32-4f30-8519-34208d0f8931", + "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", + "fa220212-b6b2-4456-934f-7248f9884444", + "196681e4-c9e5-4a79-a3b1-ce225227e0aa", + "a2e6b668-43de-43be-8b1b-07b41b333c8d", + "f132c08e-1812-4b2f-84fb-340628d1ac39", + "ff721ee3-8729-47c1-80cd-7dd5e7142284", + "3040b262-0b20-4c40-9350-e484adfe1d60", + "c4f08e33-183e-41cf-9f96-5985f148bd11", + "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", + "ac9a9c14-57c3-4a81-9316-ceca9586731d", + "1e205a49-fad6-428c-9d0c-b4018473837d", + "a5c03062-e324-4cb7-8c59-00c59a14b63e", + "3c04c568-5ef2-4b47-8d34-b0d175358d60", + "c229b499-645e-4877-8f57-0fc6de2a8d53", + "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", + "a4f163e1-b90e-4fc3-82f3-f03b3181860d", + "c2e1b4a6-db9f-4050-848a-68486b390a21", + "96e97125-39ff-47a9-b41d-043c4ca5c57e", + "784b0f22-55ff-44d1-a754-ddad81fb81cd", + "c04702f7-b2cf-440e-a6da-0a84aefc3963", + "d73e4ff6-4502-4376-9cf1-5410d307a82f", + "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", + "82735dcc-3897-4e4c-87e8-45ee1dacedaa", + "3a8b9936-4595-4770-a3f4-b31253602356", + "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "caa5c2ab-ae9e-4ae0-ba88-9e89b43e54e6", + "segments": [ + 0, + 27, + 37, + 48, + 54, + 61, + 67, + 72, + 84, + 93, + 111, + 127, + 131, + 134, + 140, + 151, + 158, + 164, + 171, + 176, + 183, + 187, + 190, + 194, + 197, + 200, + 209, + 212, + 220, + 227, + 231, + 235, + 238, + 243, + 251, + 265, + 270, + 274, + 280, + 284, + 287, + 303, + 308, + 319, + 326 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 46, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.566611, + 45.498345 + ], + [ + -73.566738, + 45.498195 + ], + [ + -73.566628, + 45.49808 + ], + [ + -73.566306, + 45.497931 + ], + [ + -73.566253, + 45.497841 + ], + [ + -73.56638, + 45.497699 + ], + [ + -73.566016, + 45.497523 + ], + [ + -73.564691, + 45.496892 + ], + [ + -73.563974, + 45.496566 + ], + [ + -73.562701, + 45.495919 + ], + [ + -73.562646, + 45.496027 + ], + [ + -73.562481, + 45.496317 + ], + [ + -73.562435, + 45.496383 + ], + [ + -73.562367, + 45.496479 + ], + [ + -73.562274, + 45.496658 + ], + [ + -73.562038, + 45.497108 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.561218, + 45.497864 + ], + [ + -73.561033, + 45.497765 + ], + [ + -73.560139, + 45.497347 + ], + [ + -73.559235, + 45.49696 + ], + [ + -73.55917, + 45.496938 + ], + [ + -73.558356, + 45.496631 + ], + [ + -73.558146, + 45.496556 + ], + [ + -73.557604, + 45.496364 + ], + [ + -73.556782, + 45.49606 + ], + [ + -73.555745, + 45.495673 + ], + [ + -73.555351, + 45.495512 + ], + [ + -73.555133, + 45.495401 + ], + [ + -73.554916, + 45.495262 + ], + [ + -73.554768, + 45.495125 + ], + [ + -73.55465, + 45.494994 + ], + [ + -73.553944, + 45.493258 + ], + [ + -73.553818, + 45.492971 + ], + [ + -73.553465, + 45.492338 + ], + [ + -73.552977, + 45.491759 + ], + [ + -73.552502, + 45.491344 + ], + [ + -73.551956, + 45.490962 + ], + [ + -73.551651, + 45.490791 + ], + [ + -73.551074, + 45.490513 + ], + [ + -73.550682, + 45.490367 + ], + [ + -73.550312, + 45.490228 + ], + [ + -73.54956, + 45.490034 + ], + [ + -73.548355, + 45.489798 + ], + [ + -73.542648, + 45.488704 + ], + [ + -73.541878, + 45.488554 + ], + [ + -73.541083, + 45.488397 + ], + [ + -73.540636, + 45.488282 + ], + [ + -73.540145, + 45.488119 + ], + [ + -73.539582, + 45.48786 + ], + [ + -73.539557, + 45.487845 + ], + [ + -73.539239, + 45.487663 + ], + [ + -73.538946, + 45.487462 + ], + [ + -73.538619, + 45.487192 + ], + [ + -73.538304, + 45.486863 + ], + [ + -73.538089, + 45.486564 + ], + [ + -73.537862, + 45.486139 + ], + [ + -73.537796, + 45.485958 + ], + [ + -73.537731, + 45.485785 + ], + [ + -73.53767, + 45.485461 + ], + [ + -73.537646, + 45.485264 + ], + [ + -73.537653, + 45.484914 + ], + [ + -73.537707, + 45.484604 + ], + [ + -73.537881, + 45.484168 + ], + [ + -73.537968, + 45.483893 + ], + [ + -73.538058, + 45.483623 + ], + [ + -73.539557, + 45.479354 + ], + [ + -73.53982, + 45.478652 + ], + [ + -73.540179, + 45.47782 + ], + [ + -73.540481, + 45.477177 + ], + [ + -73.540578, + 45.477027 + ], + [ + -73.540928, + 45.476409 + ], + [ + -73.5413, + 45.475732 + ], + [ + -73.541747, + 45.474937 + ], + [ + -73.542136, + 45.474264 + ], + [ + -73.542539, + 45.47363 + ], + [ + -73.543159, + 45.472786 + ], + [ + -73.543162, + 45.472781 + ], + [ + -73.5432, + 45.472729 + ], + [ + -73.543381, + 45.472482 + ], + [ + -73.543908, + 45.471834 + ], + [ + -73.544604, + 45.471016 + ], + [ + -73.54479, + 45.470824 + ], + [ + -73.544929, + 45.470679 + ], + [ + -73.54509, + 45.470477 + ], + [ + -73.545159, + 45.470391 + ], + [ + -73.545162, + 45.470289 + ], + [ + -73.54518, + 45.470102 + ], + [ + -73.54513, + 45.469912 + ], + [ + -73.545032, + 45.469762 + ], + [ + -73.544829, + 45.469589 + ], + [ + -73.544396, + 45.469456 + ], + [ + -73.544223, + 45.469408 + ], + [ + -73.544, + 45.469414 + ], + [ + -73.54385, + 45.469436 + ], + [ + -73.543665, + 45.469485 + ], + [ + -73.543125, + 45.469658 + ], + [ + -73.542795, + 45.46978 + ], + [ + -73.542335, + 45.469915 + ], + [ + -73.542042, + 45.469974 + ], + [ + -73.541634, + 45.469988 + ], + [ + -73.538583, + 45.470121 + ], + [ + -73.536645, + 45.47012 + ], + [ + -73.534843, + 45.470106 + ], + [ + -73.531663, + 45.470044 + ], + [ + -73.528901, + 45.469979 + ], + [ + -73.525636, + 45.469864 + ], + [ + -73.520215, + 45.469565 + ], + [ + -73.516228, + 45.469261 + ], + [ + -73.50737, + 45.468395 + ], + [ + -73.501604, + 45.467786 + ], + [ + -73.499262, + 45.467514 + ], + [ + -73.493921, + 45.466881 + ], + [ + -73.491932, + 45.466645 + ], + [ + -73.489852, + 45.466348 + ], + [ + -73.489119, + 45.46624 + ], + [ + -73.489027, + 45.466226 + ], + [ + -73.486848, + 45.465931 + ], + [ + -73.485714, + 45.465782 + ], + [ + -73.482904, + 45.465439 + ], + [ + -73.482123, + 45.46537 + ], + [ + -73.479736, + 45.465191 + ], + [ + -73.47968, + 45.465187 + ], + [ + -73.478363, + 45.465119 + ], + [ + -73.477796, + 45.465089 + ], + [ + -73.475753, + 45.464994 + ], + [ + -73.474695, + 45.464942 + ], + [ + -73.474262, + 45.464921 + ], + [ + -73.474113, + 45.464916 + ], + [ + -73.473291, + 45.464882 + ], + [ + -73.472501, + 45.46485 + ], + [ + -73.471447, + 45.46476 + ], + [ + -73.469875, + 45.464616 + ], + [ + -73.469333, + 45.464554 + ], + [ + -73.46902, + 45.464515 + ], + [ + -73.468704, + 45.464452 + ], + [ + -73.468392, + 45.464367 + ], + [ + -73.468066, + 45.46424 + ], + [ + -73.467826, + 45.46409 + ], + [ + -73.467593, + 45.463944 + ], + [ + -73.467415, + 45.463833 + ], + [ + -73.467133, + 45.463667 + ], + [ + -73.466953, + 45.463591 + ], + [ + -73.466529, + 45.463529 + ], + [ + -73.466232, + 45.463594 + ], + [ + -73.466092, + 45.463623 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.468229, + 45.466357 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469046, + 45.466193 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469327, + 45.468092 + ], + [ + -73.469492, + 45.4681 + ], + [ + -73.469908, + 45.468123 + ], + [ + -73.470299, + 45.468145 + ], + [ + -73.471131, + 45.468185 + ], + [ + -73.471238, + 45.46819 + ], + [ + -73.471526, + 45.468208 + ], + [ + -73.472194, + 45.468244 + ], + [ + -73.472511, + 45.468258 + ], + [ + -73.472597, + 45.468262 + ], + [ + -73.472728, + 45.468276 + ], + [ + -73.472834, + 45.468294 + ], + [ + -73.472877, + 45.468307 + ], + [ + -73.473025, + 45.468348 + ], + [ + -73.473214, + 45.468424 + ], + [ + -73.473673, + 45.468604 + ], + [ + -73.473737, + 45.468617 + ], + [ + -73.473905, + 45.468649 + ], + [ + -73.474077, + 45.468676 + ], + [ + -73.474259, + 45.46869 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474366, + 45.468873 + ], + [ + -73.474292, + 45.469387 + ], + [ + -73.474246, + 45.469623 + ], + [ + -73.474234, + 45.469689 + ], + [ + -73.474156, + 45.470095 + ], + [ + -73.474035, + 45.470724 + ], + [ + -73.473974, + 45.47107 + ], + [ + -73.473942, + 45.471336 + ], + [ + -73.473932, + 45.471601 + ], + [ + -73.473942, + 45.471747 + ], + [ + -73.473947, + 45.471826 + ], + [ + -73.473986, + 45.472118 + ], + [ + -73.473998, + 45.472177 + ], + [ + -73.474046, + 45.47242 + ], + [ + -73.474106, + 45.47264 + ], + [ + -73.474275, + 45.473063 + ], + [ + -73.474463, + 45.473437 + ], + [ + -73.474014, + 45.473579 + ], + [ + -73.474007, + 45.473581 + ], + [ + -73.473846, + 45.473648 + ], + [ + -73.473736, + 45.473702 + ], + [ + -73.473545, + 45.473797 + ], + [ + -73.473457, + 45.473846 + ], + [ + -73.473417, + 45.473872 + ], + [ + -73.473334, + 45.473927 + ], + [ + -73.473141, + 45.474053 + ], + [ + -73.472074, + 45.474808 + ], + [ + -73.471919, + 45.474907 + ], + [ + -73.472018, + 45.474979 + ], + [ + -73.47234, + 45.475227 + ], + [ + -73.472676, + 45.475466 + ], + [ + -73.473157, + 45.475808 + ], + [ + -73.473415, + 45.476001 + ], + [ + -73.47389, + 45.476341 + ], + [ + -73.475018, + 45.477149 + ], + [ + -73.475759, + 45.477673 + ], + [ + -73.476119, + 45.477927 + ], + [ + -73.475478, + 45.478344 + ], + [ + -73.475372, + 45.478413 + ], + [ + -73.474489, + 45.478954 + ], + [ + -73.474461, + 45.478971 + ], + [ + -73.474157, + 45.479169 + ], + [ + -73.47284, + 45.480068 + ], + [ + -73.472485, + 45.480311 + ], + [ + -73.472205, + 45.480502 + ], + [ + -73.472135, + 45.48055 + ], + [ + -73.472029, + 45.480487 + ], + [ + -73.471904, + 45.480419 + ], + [ + -73.471804, + 45.480383 + ], + [ + -73.471671, + 45.48036 + ], + [ + -73.471568, + 45.480347 + ], + [ + -73.47151, + 45.480342 + ], + [ + -73.471409, + 45.480342 + ], + [ + -73.471292, + 45.480347 + ], + [ + -73.470657, + 45.480464 + ], + [ + -73.470383, + 45.480513 + ], + [ + -73.470287, + 45.480532 + ], + [ + -73.470068, + 45.480576 + ], + [ + -73.469901, + 45.480606 + ], + [ + -73.469843, + 45.480616 + ], + [ + -73.469791, + 45.480625 + ], + [ + -73.470101, + 45.481279 + ], + [ + -73.470149, + 45.481381 + ], + [ + -73.470239, + 45.481512 + ], + [ + -73.470551, + 45.481785 + ], + [ + -73.470609, + 45.481836 + ], + [ + -73.470742, + 45.481922 + ], + [ + -73.470805, + 45.481962 + ], + [ + -73.47134, + 45.482367 + ], + [ + -73.471834, + 45.482727 + ], + [ + -73.472033, + 45.482872 + ], + [ + -73.472882, + 45.483489 + ], + [ + -73.472948, + 45.483537 + ], + [ + -73.473747, + 45.484113 + ], + [ + -73.474514, + 45.48467 + ], + [ + -73.474566, + 45.484707 + ], + [ + -73.474818, + 45.484892 + ], + [ + -73.475135, + 45.485121 + ], + [ + -73.475481, + 45.485369 + ], + [ + -73.475698, + 45.485529 + ], + [ + -73.475956, + 45.48572 + ], + [ + -73.475583, + 45.485981 + ], + [ + -73.475157, + 45.486287 + ], + [ + -73.475578, + 45.486575 + ], + [ + -73.475879, + 45.486783 + ], + [ + -73.475994, + 45.486863 + ], + [ + -73.475863, + 45.486966 + ], + [ + -73.475741, + 45.487061 + ], + [ + -73.475345, + 45.487344 + ], + [ + -73.475065, + 45.487542 + ], + [ + -73.475389, + 45.487764 + ], + [ + -73.475446, + 45.487803 + ], + [ + -73.475597, + 45.487907 + ], + [ + -73.47601, + 45.48819 + ], + [ + -73.476259, + 45.488424 + ], + [ + -73.476492, + 45.488586 + ], + [ + -73.476696, + 45.48846 + ], + [ + -73.476748, + 45.488432 + ], + [ + -73.476789, + 45.488411 + ], + [ + -73.478723, + 45.489788 + ], + [ + -73.479125, + 45.490075 + ], + [ + -73.479214, + 45.490139 + ], + [ + -73.481409, + 45.491696 + ], + [ + -73.481459, + 45.491729 + ], + [ + -73.481545, + 45.491786 + ], + [ + -73.481575, + 45.491826 + ], + [ + -73.481586, + 45.49184 + ], + [ + -73.481557, + 45.491867 + ], + [ + -73.481502, + 45.491907 + ], + [ + -73.481312, + 45.492051 + ], + [ + -73.481761, + 45.492348 + ], + [ + -73.481942, + 45.492468 + ], + [ + -73.483946, + 45.493787 + ], + [ + -73.483989, + 45.493816 + ], + [ + -73.48407, + 45.49387 + ], + [ + -73.484957, + 45.493231 + ], + [ + -73.486027, + 45.492477 + ], + [ + -73.486068, + 45.492448 + ], + [ + -73.486525, + 45.49212 + ], + [ + -73.486777, + 45.49194 + ], + [ + -73.486792, + 45.491931 + ], + [ + -73.487065, + 45.491769 + ], + [ + -73.487303, + 45.491621 + ], + [ + -73.487383, + 45.491571 + ], + [ + -73.48867, + 45.490802 + ], + [ + -73.489415, + 45.490353 + ], + [ + -73.489454, + 45.490329 + ], + [ + -73.49048, + 45.489717 + ], + [ + -73.491292, + 45.489225 + ], + [ + -73.491548, + 45.48907 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.492138, + 45.488647 + ], + [ + -73.492246, + 45.488512 + ], + [ + -73.492413, + 45.48862 + ], + [ + -73.492658, + 45.488782 + ], + [ + -73.492831, + 45.488903 + ], + [ + -73.493002, + 45.489025 + ], + [ + -73.493023, + 45.48904 + ], + [ + -73.493685, + 45.489511 + ], + [ + -73.494044, + 45.489767 + ], + [ + -73.494323, + 45.489971 + ], + [ + -73.494463, + 45.490073 + ], + [ + -73.495016, + 45.490456 + ], + [ + -73.495224, + 45.490582 + ], + [ + -73.495457, + 45.490703 + ], + [ + -73.495685, + 45.490802 + ], + [ + -73.495827, + 45.490838 + ], + [ + -73.495887, + 45.490845 + ], + [ + -73.495938, + 45.490852 + ], + [ + -73.496542, + 45.490861 + ], + [ + -73.497071, + 45.49087 + ], + [ + -73.497636, + 45.490865 + ], + [ + -73.49822, + 45.490861 + ], + [ + -73.49837, + 45.490865 + ], + [ + -73.498703, + 45.49087 + ], + [ + -73.499037, + 45.490881 + ], + [ + -73.499099, + 45.490883 + ], + [ + -73.499523, + 45.490883 + ], + [ + -73.500019, + 45.490892 + ], + [ + -73.500399, + 45.490897 + ], + [ + -73.50083, + 45.4909 + ], + [ + -73.500934, + 45.490901 + ], + [ + -73.501389, + 45.49091 + ], + [ + -73.502611, + 45.490928 + ], + [ + -73.502759, + 45.49091 + ], + [ + -73.502923, + 45.490879 + ], + [ + -73.503314, + 45.490753 + ], + [ + -73.503637, + 45.490636 + ], + [ + -73.503868, + 45.49055 + ], + [ + -73.504078, + 45.490474 + ], + [ + -73.504178, + 45.490438 + ], + [ + -73.504792, + 45.490226 + ], + [ + -73.504891, + 45.490195 + ], + [ + -73.505021, + 45.490186 + ], + [ + -73.505151, + 45.490177 + ], + [ + -73.505178, + 45.490177 + ], + [ + -73.505337, + 45.490177 + ], + [ + -73.5071, + 45.490203 + ], + [ + -73.508965, + 45.49023 + ], + [ + -73.509541, + 45.490235 + ], + [ + -73.509559, + 45.490235 + ], + [ + -73.510213, + 45.490248 + ], + [ + -73.51084, + 45.490256 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.511281, + 45.490797 + ], + [ + -73.512404, + 45.492412 + ], + [ + -73.512433, + 45.492471 + ], + [ + -73.51245, + 45.492507 + ], + [ + -73.512764, + 45.493074 + ], + [ + -73.512921, + 45.493393 + ], + [ + -73.512971, + 45.493496 + ], + [ + -73.512984, + 45.493515 + ], + [ + -73.513094, + 45.493766 + ], + [ + -73.513261, + 45.494078 + ], + [ + -73.513283, + 45.494149 + ], + [ + -73.513342, + 45.494287 + ], + [ + -73.513459, + 45.494626 + ], + [ + -73.513505, + 45.494783 + ], + [ + -73.513561, + 45.49499 + ], + [ + -73.513604, + 45.495179 + ], + [ + -73.513621, + 45.495251 + ], + [ + -73.513692, + 45.495557 + ], + [ + -73.513776, + 45.495934 + ], + [ + -73.513786, + 45.49598 + ], + [ + -73.51384, + 45.496187 + ], + [ + -73.513899, + 45.496425 + ], + [ + -73.513925, + 45.49652 + ], + [ + -73.513974, + 45.496613 + ], + [ + -73.513974, + 45.496614 + ], + [ + -73.514009, + 45.496686 + ], + [ + -73.514054, + 45.496749 + ], + [ + -73.514104, + 45.49683 + ], + [ + -73.514166, + 45.496911 + ], + [ + -73.514219, + 45.49697 + ], + [ + -73.514552, + 45.497478 + ], + [ + -73.514769, + 45.497838 + ], + [ + -73.515085, + 45.498391 + ], + [ + -73.51517, + 45.49854 + ], + [ + -73.515566, + 45.499256 + ], + [ + -73.515623, + 45.499359 + ], + [ + -73.515674, + 45.499453 + ], + [ + -73.515873, + 45.499831 + ], + [ + -73.515977, + 45.500074 + ], + [ + -73.516146, + 45.500501 + ], + [ + -73.516373, + 45.50114 + ], + [ + -73.51647, + 45.501401 + ], + [ + -73.516588, + 45.501702 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517435, + 45.505274 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517232, + 45.507288 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517561, + 45.50922 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517796, + 45.511432 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517596, + 45.513253 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518267, + 45.515317 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518976, + 45.51675 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520113, + 45.519731 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520194, + 45.520238 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.521017, + 45.523892 + ], + [ + -73.521053, + 45.523883 + ], + [ + -73.521061, + 45.523869 + ], + [ + -73.521065, + 45.523851 + ], + [ + -73.521071, + 45.523799 + ] + ] + }, + "id": 47, + "properties": { + "id": "2f462117-29ad-4656-b383-3157c683ebf6", + "data": { + "gtfs": { + "shape_id": "15_3_R" + }, + "segments": [ + { + "distanceMeters": 1006, + "travelTimeSeconds": 240 + }, + { + "distanceMeters": 10887, + "travelTimeSeconds": 1140 + }, + { + "distanceMeters": 629, + "travelTimeSeconds": 148 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 330, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 358, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 100, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 397, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 348, + "travelTimeSeconds": 102 + }, + { + "distanceMeters": 605, + "travelTimeSeconds": 178 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 372, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 23219, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4556.682714136112, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.24, + "travelTimeWithoutDwellTimesSeconds": 3720, + "operatingTimeWithLayoverTimeSeconds": 4092, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3720, + "operatingSpeedWithLayoverMetersPerSecond": 5.67, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.24 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", + "0f8ef5e7-ff7c-4097-8d8a-9727f12190ea", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", + "3a8b9936-4595-4770-a3f4-b31253602356", + "82735dcc-3897-4e4c-87e8-45ee1dacedaa", + "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", + "d73e4ff6-4502-4376-9cf1-5410d307a82f", + "c04702f7-b2cf-440e-a6da-0a84aefc3963", + "784b0f22-55ff-44d1-a754-ddad81fb81cd", + "96e97125-39ff-47a9-b41d-043c4ca5c57e", + "c2e1b4a6-db9f-4050-848a-68486b390a21", + "a4f163e1-b90e-4fc3-82f3-f03b3181860d", + "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", + "c229b499-645e-4877-8f57-0fc6de2a8d53", + "3c04c568-5ef2-4b47-8d34-b0d175358d60", + "a5c03062-e324-4cb7-8c59-00c59a14b63e", + "1e205a49-fad6-428c-9d0c-b4018473837d", + "ac9a9c14-57c3-4a81-9316-ceca9586731d", + "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", + "c4f08e33-183e-41cf-9f96-5985f148bd11", + "3040b262-0b20-4c40-9350-e484adfe1d60", + "ff721ee3-8729-47c1-80cd-7dd5e7142284", + "f132c08e-1812-4b2f-84fb-340628d1ac39", + "5573bb7b-19f0-4d2b-a66d-9f04f87c1987", + "1bded3cb-51a3-422d-8815-a9027023991e", + "fa220212-b6b2-4456-934f-7248f9884444", + "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", + "1fc11ea4-4e32-4f30-8519-34208d0f8931", + "1fa03421-8026-43d9-b21a-b3e57dfa43c2", + "d67aee3e-be1e-429b-b464-c7a6549e761a", + "51191948-9067-4256-853f-d80a1333a164", + "602dc8fb-62ff-45ed-888f-4b4172318b5d", + "5224c05b-57d6-4d5c-87fd-b9e78147c66e", + "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "114aaaad-d40e-4930-853f-ef5cebdd299f", + "0b09b82c-ec97-406d-9f1c-690cc935b5ea", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "2259b112-2e60-4bcc-ad14-9e0e577f2909", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "caa5c2ab-ae9e-4ae0-ba88-9e89b43e54e6", + "segments": [ + 0, + 23, + 173, + 194, + 198, + 206, + 213, + 220, + 234, + 241, + 244, + 246, + 250, + 255, + 270, + 275, + 282, + 285, + 290, + 295, + 302, + 308, + 311, + 314, + 323, + 327, + 333, + 336, + 339, + 348, + 351, + 358, + 366, + 371, + 386, + 388, + 391, + 393, + 397, + 413, + 429, + 437, + 450, + 456, + 461, + 467, + 473, + 481, + 488, + 496 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 47, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521447, + 45.524278 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514253, + 45.51909 + ], + [ + -73.513885, + 45.518962 + ], + [ + -73.51387, + 45.518957 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513317, + 45.518773 + ], + [ + -73.51223, + 45.518422 + ], + [ + -73.509841, + 45.517649 + ], + [ + -73.506681, + 45.516623 + ], + [ + -73.506298, + 45.516497 + ], + [ + -73.506049, + 45.516416 + ], + [ + -73.505657, + 45.516295 + ], + [ + -73.504964, + 45.516065 + ], + [ + -73.504125, + 45.515804 + ], + [ + -73.503729, + 45.515701 + ], + [ + -73.503503, + 45.515692 + ], + [ + -73.5034, + 45.515678 + ], + [ + -73.503275, + 45.51566 + ], + [ + -73.503167, + 45.515633 + ], + [ + -73.50173, + 45.515183 + ], + [ + -73.501301, + 45.515044 + ], + [ + -73.499299, + 45.514405 + ], + [ + -73.497625, + 45.513876 + ], + [ + -73.495825, + 45.513307 + ], + [ + -73.495774, + 45.513384 + ], + [ + -73.495274, + 45.514166 + ], + [ + -73.493537, + 45.513618 + ], + [ + -73.492199, + 45.513195 + ], + [ + -73.489123, + 45.5122 + ], + [ + -73.486057, + 45.511196 + ], + [ + -73.486501, + 45.51053 + ], + [ + -73.487874, + 45.508506 + ], + [ + -73.486813, + 45.508173 + ], + [ + -73.486125, + 45.507943 + ], + [ + -73.485803, + 45.507835 + ], + [ + -73.48473, + 45.507484 + ], + [ + -73.483392, + 45.509518 + ], + [ + -73.482934, + 45.510206 + ], + [ + -73.482482, + 45.510894 + ], + [ + -73.482007, + 45.511596 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.481183, + 45.51286 + ], + [ + -73.480785, + 45.513459 + ], + [ + -73.480359, + 45.514111 + ], + [ + -73.479924, + 45.514777 + ], + [ + -73.479817, + 45.515002 + ], + [ + -73.479797, + 45.515146 + ], + [ + -73.479857, + 45.515614 + ], + [ + -73.479464, + 45.516153 + ], + [ + -73.479072, + 45.516698 + ], + [ + -73.478676, + 45.517242 + ], + [ + -73.478269, + 45.517795 + ], + [ + -73.477613, + 45.5187 + ], + [ + -73.477254, + 45.51923 + ], + [ + -73.47683, + 45.519802 + ], + [ + -73.476473, + 45.520306 + ], + [ + -73.476081, + 45.520845 + ], + [ + -73.475434, + 45.521732 + ], + [ + -73.475294, + 45.521907 + ], + [ + -73.474964, + 45.522388 + ], + [ + -73.474526, + 45.522973 + ], + [ + -73.474023, + 45.523693 + ], + [ + -73.473762, + 45.524053 + ], + [ + -73.473573, + 45.524314 + ], + [ + -73.473363, + 45.524597 + ], + [ + -73.472912, + 45.525223 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.473913, + 45.528009 + ], + [ + -73.4736, + 45.528588 + ], + [ + -73.47246, + 45.530725 + ], + [ + -73.471309, + 45.532862 + ], + [ + -73.470158, + 45.534994 + ], + [ + -73.469167, + 45.536827 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.468965, + 45.537225 + ], + [ + -73.468894, + 45.537383 + ], + [ + -73.468817, + 45.537577 + ], + [ + -73.468811, + 45.537594 + ], + [ + -73.468727, + 45.537968 + ], + [ + -73.468709, + 45.538089 + ], + [ + -73.468533, + 45.538881 + ], + [ + -73.468315, + 45.539866 + ], + [ + -73.468289, + 45.539983 + ], + [ + -73.468097, + 45.539977 + ], + [ + -73.468001, + 45.539975 + ], + [ + -73.467889, + 45.539974 + ], + [ + -73.467676, + 45.539978 + ], + [ + -73.467668, + 45.539978 + ], + [ + -73.467407, + 45.539989 + ], + [ + -73.467341, + 45.540003 + ], + [ + -73.467302, + 45.540031 + ], + [ + -73.466892, + 45.540019 + ], + [ + -73.466727, + 45.539999 + ], + [ + -73.466559, + 45.539965 + ], + [ + -73.466407, + 45.539932 + ], + [ + -73.466227, + 45.539907 + ], + [ + -73.466142, + 45.539902 + ], + [ + -73.466115, + 45.539901 + ], + [ + -73.46602, + 45.539896 + ], + [ + -73.465927, + 45.539898 + ], + [ + -73.465848, + 45.539899 + ], + [ + -73.465709, + 45.539906 + ], + [ + -73.4656, + 45.539921 + ], + [ + -73.465482, + 45.539933 + ], + [ + -73.465335, + 45.539946 + ], + [ + -73.465216, + 45.539952 + ], + [ + -73.465098, + 45.539953 + ], + [ + -73.464951, + 45.539943 + ], + [ + -73.464825, + 45.539928 + ], + [ + -73.464679, + 45.539901 + ], + [ + -73.464558, + 45.53987 + ], + [ + -73.464497, + 45.539849 + ], + [ + -73.464445, + 45.539835 + ], + [ + -73.464385, + 45.539815 + ], + [ + -73.464334, + 45.539792 + ], + [ + -73.464269, + 45.539763 + ], + [ + -73.464231, + 45.539745 + ], + [ + -73.46418, + 45.539719 + ], + [ + -73.46414, + 45.539697 + ], + [ + -73.464104, + 45.539676 + ], + [ + -73.464064, + 45.539651 + ], + [ + -73.464033, + 45.539628 + ], + [ + -73.464012, + 45.539613 + ], + [ + -73.463967, + 45.539581 + ], + [ + -73.463917, + 45.539539 + ], + [ + -73.463869, + 45.5395 + ], + [ + -73.463819, + 45.53946 + ], + [ + -73.463797, + 45.539442 + ], + [ + -73.463513, + 45.539212 + ], + [ + -73.463464, + 45.539174 + ], + [ + -73.463271, + 45.539023 + ], + [ + -73.463118, + 45.538911 + ], + [ + -73.462874, + 45.538753 + ], + [ + -73.462697, + 45.53865 + ], + [ + -73.462534, + 45.538551 + ], + [ + -73.462187, + 45.53833 + ], + [ + -73.461979, + 45.538182 + ], + [ + -73.461864, + 45.5381 + ], + [ + -73.462038, + 45.537968 + ], + [ + -73.462556, + 45.537575 + ], + [ + -73.462834, + 45.537383 + ], + [ + -73.462922, + 45.537322 + ], + [ + -73.463661, + 45.536866 + ], + [ + -73.464142, + 45.536599 + ] + ] + }, + "id": 48, + "properties": { + "id": "d6aff7e7-242e-4687-850a-47ce020c715b", + "data": { + "gtfs": { + "shape_id": "16_1_R" + }, + "segments": [ + { + "distanceMeters": 8467, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 55 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9109, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 489.23963093037503, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 50.6, + "travelTimeWithoutDwellTimesSeconds": 180, + "operatingTimeWithLayoverTimeSeconds": 360, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 180, + "operatingSpeedWithLayoverMetersPerSecond": 25.3, + "averageSpeedWithoutDwellTimesMetersPerSecond": 50.6 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "248781a4-a949-4c45-bc5a-1de80211510e", + "8e9d3a93-2217-4362-8631-6cc69bd428bc", + "497c7cbc-7c2a-4684-ae90-71dc2a66863f", + "a392bf4c-9790-451e-a9bc-51428fa10a69", + "faaa7c6f-4c6c-443c-99d4-d4c617571545" + ], + "stops": [], + "line_id": "6734327e-76ec-466a-92d6-5f25c26609a3", + "segments": [ + 0, + 156, + 179, + 193 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 48, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.464142, + 45.536599 + ], + [ + -73.464185, + 45.536575 + ], + [ + -73.464357, + 45.53646 + ], + [ + -73.4648, + 45.536162 + ], + [ + -73.465669, + 45.535586 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466031, + 45.535615 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.469167, + 45.536827 + ], + [ + -73.469246, + 45.53668 + ], + [ + -73.47012, + 45.535065 + ], + [ + -73.470158, + 45.534994 + ], + [ + -73.470714, + 45.533963 + ], + [ + -73.471258, + 45.532955 + ], + [ + -73.471309, + 45.532862 + ], + [ + -73.472404, + 45.530829 + ], + [ + -73.47246, + 45.530725 + ], + [ + -73.473536, + 45.528708 + ], + [ + -73.4736, + 45.528588 + ], + [ + -73.474476, + 45.526968 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.474181, + 45.526055 + ], + [ + -73.474041, + 45.525469 + ], + [ + -73.474012, + 45.525344 + ], + [ + -73.473793, + 45.524566 + ], + [ + -73.47377, + 45.524471 + ], + [ + -73.47381, + 45.524417 + ], + [ + -73.473749, + 45.524215 + ], + [ + -73.473762, + 45.524053 + ], + [ + -73.473925, + 45.523828 + ], + [ + -73.474023, + 45.523693 + ], + [ + -73.474526, + 45.522973 + ], + [ + -73.474883, + 45.522496 + ], + [ + -73.474964, + 45.522388 + ], + [ + -73.475294, + 45.521907 + ], + [ + -73.475434, + 45.521732 + ], + [ + -73.47601, + 45.520943 + ], + [ + -73.476081, + 45.520845 + ], + [ + -73.476473, + 45.520306 + ], + [ + -73.476726, + 45.519948 + ], + [ + -73.47683, + 45.519802 + ], + [ + -73.477254, + 45.51923 + ], + [ + -73.477535, + 45.518815 + ], + [ + -73.477613, + 45.5187 + ], + [ + -73.478269, + 45.517795 + ], + [ + -73.478433, + 45.517573 + ], + [ + -73.478676, + 45.517242 + ], + [ + -73.479072, + 45.516698 + ], + [ + -73.479387, + 45.51626 + ], + [ + -73.479464, + 45.516153 + ], + [ + -73.479857, + 45.515614 + ], + [ + -73.479797, + 45.515146 + ], + [ + -73.479817, + 45.515002 + ], + [ + -73.479857, + 45.514918 + ], + [ + -73.479924, + 45.514777 + ], + [ + -73.480359, + 45.514111 + ], + [ + -73.480636, + 45.513686 + ], + [ + -73.480785, + 45.513459 + ], + [ + -73.481183, + 45.51286 + ], + [ + -73.481519, + 45.512359 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.482007, + 45.511596 + ], + [ + -73.482482, + 45.510894 + ], + [ + -73.482838, + 45.510351 + ], + [ + -73.482934, + 45.510206 + ], + [ + -73.483392, + 45.509518 + ], + [ + -73.483643, + 45.509137 + ], + [ + -73.484625, + 45.507644 + ], + [ + -73.48473, + 45.507484 + ], + [ + -73.485803, + 45.507835 + ], + [ + -73.486509, + 45.508072 + ], + [ + -73.486548, + 45.508085 + ], + [ + -73.486813, + 45.508173 + ], + [ + -73.487583, + 45.508414 + ], + [ + -73.487874, + 45.508506 + ], + [ + -73.487054, + 45.509716 + ], + [ + -73.486501, + 45.51053 + ], + [ + -73.486286, + 45.510853 + ], + [ + -73.486057, + 45.511196 + ], + [ + -73.488947, + 45.512142 + ], + [ + -73.489123, + 45.5122 + ], + [ + -73.492032, + 45.513141 + ], + [ + -73.492199, + 45.513195 + ], + [ + -73.49492, + 45.514055 + ], + [ + -73.495105, + 45.514113 + ], + [ + -73.495274, + 45.514166 + ], + [ + -73.495685, + 45.513522 + ], + [ + -73.495774, + 45.513384 + ], + [ + -73.498919, + 45.514378 + ], + [ + -73.498948, + 45.514387 + ], + [ + -73.499247, + 45.514482 + ], + [ + -73.501079, + 45.515065 + ], + [ + -73.501252, + 45.51512 + ], + [ + -73.501676, + 45.515264 + ], + [ + -73.503119, + 45.515714 + ], + [ + -73.503239, + 45.515746 + ], + [ + -73.503354, + 45.515767 + ], + [ + -73.503487, + 45.515791 + ], + [ + -73.503653, + 45.515813 + ], + [ + -73.504061, + 45.515903 + ], + [ + -73.504906, + 45.516155 + ], + [ + -73.505384, + 45.51631 + ], + [ + -73.505601, + 45.51638 + ], + [ + -73.506087, + 45.516538 + ], + [ + -73.506374, + 45.516632 + ], + [ + -73.506766, + 45.516758 + ], + [ + -73.50699, + 45.51683 + ], + [ + -73.509633, + 45.517686 + ], + [ + -73.509783, + 45.517734 + ], + [ + -73.512008, + 45.518454 + ], + [ + -73.512173, + 45.518508 + ], + [ + -73.513531, + 45.51895 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.514988, + 45.519418 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518883, + 45.520626 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 49, + "properties": { + "id": "39899692-106a-4937-8418-0872b179c20d", + "data": { + "gtfs": { + "shape_id": "16_1_A" + }, + "segments": [ + { + "distanceMeters": 164, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 581, + "travelTimeSeconds": 102 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 92, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 93, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 746, + "travelTimeSeconds": 131 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8325, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4659.205117515161, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.55, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 4.95, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.55 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "faaa7c6f-4c6c-443c-99d4-d4c617571545", + "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", + "523fb848-4048-4ab2-8e1c-32aab05ea63f", + "c2c8c1e8-4373-4b59-91c6-b04f7c4c1d76", + "eba98b16-12e9-4172-bbf2-62d1e69950a5", + "e709ab81-b01c-47b3-a19c-63757b8320b0", + "98c75cb8-58bc-4128-adc4-4f1198e685a1", + "f4167a64-c457-459d-9c74-9540f2c76889", + "75f82802-187b-4386-b435-5da7ab066898", + "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", + "bad427d3-2698-4efd-8d52-2bc92f049d64", + "242c7269-ce0d-45c7-8356-927308e89900", + "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", + "40cc5489-ce8f-4df1-916b-c682450d39d7", + "6519add4-6360-4c95-9945-0c2d867f68d6", + "d3bdcdd3-55f8-4e08-a7fc-b8e6dbef8ce7", + "65d27cdb-34eb-4bce-af66-d925b6cbeb28", + "e1825eb4-cef2-4f98-872f-0d169be63859", + "5ab29327-5bbe-43e2-9d7f-42e3ca97dbcb", + "79a61958-f84e-477b-8bcf-aa304101e537", + "2e045adb-bebd-4da6-b99a-63531ab62f07", + "ec8cd08f-9336-4f9e-945b-09c8eb5b3620", + "0f8d4bf1-fdee-4df3-8471-0b6ede606755", + "808ef7d7-1aa0-4a40-a96d-0615a6e712b5", + "6ab67241-b06e-417b-b6fb-88a16df29924", + "229965c6-9bf9-414c-9970-4f7b1b31441b", + "d76fa63a-1787-4749-9166-b1ecce1f4af2", + "2c0958f9-14bd-4467-9157-d96db49f68da", + "4a0c512f-2ce4-41cc-a200-cf81d75487c1", + "09272548-09d5-4afa-a45f-80ba6dd656dd", + "4070ca4c-584b-43bd-a874-a91871fdf63a", + "9e3f5b7f-c832-420a-b6d0-a87946ebafd2", + "d2f3e0fa-8998-4ca4-96de-f858c0088aad", + "60f00f0f-eca3-4ad1-beab-4b6811c87e8c", + "e66fb997-f83d-42a0-a232-e5b0a94a0caf", + "608948b3-8ac4-493b-a2b3-48bd266c12ab", + "9da92501-0f80-4a3e-b324-83bbfa32d05c", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "6734327e-76ec-466a-92d6-5f25c26609a3", + "segments": [ + 0, + 4, + 19, + 22, + 24, + 26, + 28, + 32, + 39, + 42, + 46, + 49, + 52, + 55, + 58, + 63, + 66, + 69, + 73, + 76, + 77, + 80, + 83, + 85, + 87, + 89, + 91, + 94, + 96, + 98, + 101, + 106, + 111, + 116, + 117, + 119, + 121, + 126, + 132 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 49, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521447, + 45.524278 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519255, + 45.520728 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514994, + 45.519327 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514253, + 45.51909 + ], + [ + -73.513885, + 45.518962 + ], + [ + -73.51387, + 45.518957 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513317, + 45.518773 + ], + [ + -73.512368, + 45.518467 + ], + [ + -73.51223, + 45.518422 + ], + [ + -73.510168, + 45.517754 + ], + [ + -73.509841, + 45.517649 + ], + [ + -73.506887, + 45.51669 + ], + [ + -73.506681, + 45.516623 + ], + [ + -73.506298, + 45.516497 + ], + [ + -73.506049, + 45.516416 + ], + [ + -73.505657, + 45.516295 + ], + [ + -73.505303, + 45.516177 + ], + [ + -73.504964, + 45.516065 + ], + [ + -73.504125, + 45.515804 + ], + [ + -73.503871, + 45.515738 + ], + [ + -73.503729, + 45.515701 + ], + [ + -73.503503, + 45.515692 + ], + [ + -73.5034, + 45.515678 + ], + [ + -73.503275, + 45.51566 + ], + [ + -73.503167, + 45.515633 + ], + [ + -73.50173, + 45.515183 + ], + [ + -73.501442, + 45.51509 + ], + [ + -73.501301, + 45.515044 + ], + [ + -73.499299, + 45.514405 + ], + [ + -73.49884, + 45.51426 + ], + [ + -73.497625, + 45.513876 + ], + [ + -73.495825, + 45.513307 + ], + [ + -73.495774, + 45.513384 + ], + [ + -73.495336, + 45.51407 + ], + [ + -73.495274, + 45.514166 + ], + [ + -73.493537, + 45.513618 + ], + [ + -73.492199, + 45.513195 + ], + [ + -73.49151, + 45.512972 + ], + [ + -73.489205, + 45.512226 + ], + [ + -73.489123, + 45.5122 + ], + [ + -73.486254, + 45.511261 + ], + [ + -73.486057, + 45.511196 + ], + [ + -73.486501, + 45.51053 + ], + [ + -73.486844, + 45.510025 + ], + [ + -73.487818, + 45.508589 + ], + [ + -73.487874, + 45.508506 + ], + [ + -73.486813, + 45.508173 + ], + [ + -73.486125, + 45.507943 + ], + [ + -73.486071, + 45.507925 + ], + [ + -73.485803, + 45.507835 + ], + [ + -73.484864, + 45.507528 + ], + [ + -73.48473, + 45.507484 + ], + [ + -73.483847, + 45.508827 + ], + [ + -73.483392, + 45.509518 + ], + [ + -73.482968, + 45.510155 + ], + [ + -73.482934, + 45.510206 + ], + [ + -73.482482, + 45.510894 + ], + [ + -73.482007, + 45.511596 + ], + [ + -73.481647, + 45.512162 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.481183, + 45.51286 + ], + [ + -73.480818, + 45.513409 + ], + [ + -73.480785, + 45.513459 + ], + [ + -73.480359, + 45.514111 + ], + [ + -73.479964, + 45.514716 + ], + [ + -73.479924, + 45.514777 + ], + [ + -73.479817, + 45.515002 + ], + [ + -73.479797, + 45.515146 + ], + [ + -73.479857, + 45.515614 + ], + [ + -73.479515, + 45.516084 + ], + [ + -73.479464, + 45.516153 + ], + [ + -73.479072, + 45.516698 + ], + [ + -73.478744, + 45.51715 + ], + [ + -73.478676, + 45.517242 + ], + [ + -73.478269, + 45.517795 + ], + [ + -73.477664, + 45.51863 + ], + [ + -73.477613, + 45.5187 + ], + [ + -73.477254, + 45.51923 + ], + [ + -73.476894, + 45.519716 + ], + [ + -73.47683, + 45.519802 + ], + [ + -73.476473, + 45.520306 + ], + [ + -73.476149, + 45.520751 + ], + [ + -73.476081, + 45.520845 + ], + [ + -73.475434, + 45.521732 + ], + [ + -73.475294, + 45.521907 + ], + [ + -73.474988, + 45.522353 + ], + [ + -73.474964, + 45.522388 + ], + [ + -73.474526, + 45.522973 + ], + [ + -73.474023, + 45.523693 + ], + [ + -73.473878, + 45.523893 + ], + [ + -73.473762, + 45.524053 + ], + [ + -73.473573, + 45.524314 + ], + [ + -73.473363, + 45.524597 + ], + [ + -73.472912, + 45.525223 + ], + [ + -73.472895, + 45.525246 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.474467, + 45.526388 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.473913, + 45.528009 + ], + [ + -73.47364, + 45.528514 + ], + [ + -73.4736, + 45.528588 + ], + [ + -73.472499, + 45.530652 + ], + [ + -73.47246, + 45.530725 + ], + [ + -73.471358, + 45.53277 + ], + [ + -73.471309, + 45.532862 + ], + [ + -73.470211, + 45.534897 + ], + [ + -73.470158, + 45.534994 + ], + [ + -73.46917, + 45.536821 + ], + [ + -73.469167, + 45.536827 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.468965, + 45.537225 + ], + [ + -73.468894, + 45.537383 + ], + [ + -73.468817, + 45.537577 + ], + [ + -73.468816, + 45.53758 + ], + [ + -73.468811, + 45.537594 + ], + [ + -73.468727, + 45.537968 + ], + [ + -73.468709, + 45.538089 + ], + [ + -73.468533, + 45.538881 + ], + [ + -73.468315, + 45.539866 + ], + [ + -73.468314, + 45.539871 + ], + [ + -73.468289, + 45.539983 + ], + [ + -73.468097, + 45.539977 + ], + [ + -73.468001, + 45.539975 + ], + [ + -73.467889, + 45.539974 + ], + [ + -73.467676, + 45.539978 + ], + [ + -73.467668, + 45.539978 + ], + [ + -73.467407, + 45.539989 + ], + [ + -73.467341, + 45.540003 + ], + [ + -73.467302, + 45.540031 + ], + [ + -73.466892, + 45.540019 + ], + [ + -73.466727, + 45.539999 + ], + [ + -73.466559, + 45.539965 + ], + [ + -73.466407, + 45.539932 + ], + [ + -73.466227, + 45.539907 + ], + [ + -73.466142, + 45.539902 + ], + [ + -73.466115, + 45.539901 + ], + [ + -73.46602, + 45.539896 + ], + [ + -73.465927, + 45.539898 + ], + [ + -73.465848, + 45.539899 + ], + [ + -73.465709, + 45.539906 + ], + [ + -73.4656, + 45.539921 + ], + [ + -73.465482, + 45.539933 + ], + [ + -73.465335, + 45.539946 + ], + [ + -73.465216, + 45.539952 + ], + [ + -73.465098, + 45.539953 + ], + [ + -73.464951, + 45.539943 + ], + [ + -73.464825, + 45.539928 + ], + [ + -73.464679, + 45.539901 + ], + [ + -73.464558, + 45.53987 + ], + [ + -73.464497, + 45.539849 + ], + [ + -73.464445, + 45.539835 + ], + [ + -73.464385, + 45.539815 + ], + [ + -73.464334, + 45.539792 + ], + [ + -73.464269, + 45.539763 + ], + [ + -73.464231, + 45.539745 + ], + [ + -73.46418, + 45.539719 + ], + [ + -73.46414, + 45.539697 + ], + [ + -73.464104, + 45.539676 + ], + [ + -73.464064, + 45.539651 + ], + [ + -73.464033, + 45.539628 + ], + [ + -73.464012, + 45.539613 + ], + [ + -73.463967, + 45.539581 + ], + [ + -73.463917, + 45.539539 + ], + [ + -73.463869, + 45.5395 + ], + [ + -73.463819, + 45.53946 + ], + [ + -73.463797, + 45.539442 + ], + [ + -73.463513, + 45.539212 + ], + [ + -73.463464, + 45.539174 + ], + [ + -73.463271, + 45.539023 + ], + [ + -73.463118, + 45.538911 + ], + [ + -73.462874, + 45.538753 + ], + [ + -73.462697, + 45.53865 + ], + [ + -73.462534, + 45.538551 + ], + [ + -73.462187, + 45.53833 + ], + [ + -73.461979, + 45.538182 + ], + [ + -73.461864, + 45.5381 + ], + [ + -73.462038, + 45.537968 + ], + [ + -73.462556, + 45.537575 + ], + [ + -73.462834, + 45.537383 + ], + [ + -73.462922, + 45.537322 + ], + [ + -73.463661, + 45.536866 + ], + [ + -73.464142, + 45.536599 + ] + ] + }, + "id": 50, + "properties": { + "id": "64fcc99e-18d9-414f-aa95-4b36a8b58304", + "data": { + "gtfs": { + "shape_id": "16_1_R" + }, + "segments": [ + { + "distanceMeters": 764, + "travelTimeSeconds": 114 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 334, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 104, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 89, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 55 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9109, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4659.205117515161, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.07, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 5.42, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.07 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "608948b3-8ac4-493b-a2b3-48bd266c12ab", + "e66fb997-f83d-42a0-a232-e5b0a94a0caf", + "aaca7ee9-974a-47d8-922b-2905590b6265", + "37e8736b-c9d0-4a33-a437-1f0196c113f1", + "9e3f5b7f-c832-420a-b6d0-a87946ebafd2", + "4070ca4c-584b-43bd-a874-a91871fdf63a", + "09272548-09d5-4afa-a45f-80ba6dd656dd", + "2c0958f9-14bd-4467-9157-d96db49f68da", + "d76fa63a-1787-4749-9166-b1ecce1f4af2", + "229965c6-9bf9-414c-9970-4f7b1b31441b", + "6ab67241-b06e-417b-b6fb-88a16df29924", + "808ef7d7-1aa0-4a40-a96d-0615a6e712b5", + "0f8d4bf1-fdee-4df3-8471-0b6ede606755", + "ec8cd08f-9336-4f9e-945b-09c8eb5b3620", + "2e045adb-bebd-4da6-b99a-63531ab62f07", + "79a61958-f84e-477b-8bcf-aa304101e537", + "5ab29327-5bbe-43e2-9d7f-42e3ca97dbcb", + "e1825eb4-cef2-4f98-872f-0d169be63859", + "65d27cdb-34eb-4bce-af66-d925b6cbeb28", + "d3bdcdd3-55f8-4e08-a7fc-b8e6dbef8ce7", + "6519add4-6360-4c95-9945-0c2d867f68d6", + "40cc5489-ce8f-4df1-916b-c682450d39d7", + "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", + "242c7269-ce0d-45c7-8356-927308e89900", + "bad427d3-2698-4efd-8d52-2bc92f049d64", + "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", + "75f82802-187b-4386-b435-5da7ab066898", + "471a40a2-ebb0-4658-a772-8036d064636d", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "e709ab81-b01c-47b3-a19c-63757b8320b0", + "eba98b16-12e9-4172-bbf2-62d1e69950a5", + "c2c8c1e8-4373-4b59-91c6-b04f7c4c1d76", + "523fb848-4048-4ab2-8e1c-32aab05ea63f", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "7173d99c-f55d-41f4-8d2d-0266835b40ee", + "248781a4-a949-4c45-bc5a-1de80211510e", + "8e9d3a93-2217-4362-8631-6cc69bd428bc", + "497c7cbc-7c2a-4684-ae90-71dc2a66863f", + "a392bf4c-9790-451e-a9bc-51428fa10a69", + "faaa7c6f-4c6c-443c-99d4-d4c617571545" + ], + "stops": [], + "line_id": "6734327e-76ec-466a-92d6-5f25c26609a3", + "segments": [ + 0, + 47, + 54, + 61, + 63, + 65, + 70, + 73, + 80, + 83, + 87, + 91, + 92, + 94, + 97, + 98, + 102, + 104, + 106, + 108, + 112, + 115, + 118, + 123, + 126, + 129, + 132, + 135, + 139, + 143, + 148, + 152, + 155, + 157, + 159, + 161, + 163, + 170, + 176, + 194, + 217, + 231 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 50, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.454682, + 45.529166 + ], + [ + -73.453608, + 45.528719 + ], + [ + -73.452477, + 45.528248 + ], + [ + -73.452419, + 45.528224 + ], + [ + -73.452095, + 45.528089 + ], + [ + -73.451849, + 45.527987 + ], + [ + -73.449902, + 45.527223 + ], + [ + -73.449586, + 45.5271 + ], + [ + -73.447563, + 45.526329 + ], + [ + -73.447243, + 45.526199 + ], + [ + -73.446596, + 45.52596 + ], + [ + -73.446438, + 45.5259 + ], + [ + -73.446254, + 45.525829 + ], + [ + -73.445479, + 45.525532 + ], + [ + -73.44525, + 45.525455 + ], + [ + -73.445048, + 45.525397 + ], + [ + -73.444823, + 45.525347 + ], + [ + -73.444706, + 45.525314 + ], + [ + -73.444476, + 45.525248 + ], + [ + -73.44392, + 45.525126 + ], + [ + -73.443091, + 45.524907 + ], + [ + -73.442951, + 45.524869 + ], + [ + -73.443148, + 45.524486 + ], + [ + -73.443474, + 45.523856 + ], + [ + -73.443491, + 45.523821 + ], + [ + -73.444106, + 45.522579 + ], + [ + -73.444165, + 45.522458 + ], + [ + -73.444264, + 45.522301 + ], + [ + -73.444322, + 45.522225 + ], + [ + -73.445357, + 45.520227 + ], + [ + -73.445616, + 45.519728 + ], + [ + -73.445708, + 45.519575 + ], + [ + -73.445857, + 45.519382 + ], + [ + -73.446092, + 45.519112 + ], + [ + -73.446094, + 45.51911 + ], + [ + -73.446119, + 45.519088 + ], + [ + -73.446373, + 45.518869 + ], + [ + -73.446684, + 45.518635 + ], + [ + -73.446958, + 45.518469 + ], + [ + -73.447199, + 45.518348 + ], + [ + -73.447381, + 45.518267 + ], + [ + -73.447421, + 45.518249 + ], + [ + -73.447546, + 45.518195 + ], + [ + -73.448019, + 45.518033 + ], + [ + -73.448706, + 45.517817 + ], + [ + -73.449343, + 45.51762 + ], + [ + -73.449753, + 45.517483 + ], + [ + -73.449921, + 45.517427 + ], + [ + -73.450143, + 45.517364 + ], + [ + -73.450409, + 45.517292 + ], + [ + -73.45071, + 45.517229 + ], + [ + -73.450716, + 45.517224 + ], + [ + -73.451295, + 45.517148 + ], + [ + -73.451523, + 45.517121 + ], + [ + -73.451693, + 45.517099 + ], + [ + -73.451894, + 45.517072 + ], + [ + -73.452053, + 45.517054 + ], + [ + -73.45224, + 45.517153 + ], + [ + -73.452412, + 45.517228 + ], + [ + -73.452518, + 45.517275 + ], + [ + -73.453808, + 45.5178 + ], + [ + -73.453999, + 45.517878 + ], + [ + -73.454088, + 45.517914 + ], + [ + -73.454547, + 45.518104 + ], + [ + -73.455195, + 45.518372 + ], + [ + -73.455625, + 45.518549 + ], + [ + -73.45631, + 45.518837 + ], + [ + -73.457047, + 45.519138 + ], + [ + -73.457149, + 45.51918 + ], + [ + -73.456893, + 45.519549 + ], + [ + -73.456808, + 45.519697 + ], + [ + -73.456763, + 45.519809 + ], + [ + -73.456747, + 45.519998 + ], + [ + -73.456743, + 45.520169 + ], + [ + -73.456867, + 45.520957 + ], + [ + -73.456881, + 45.521051 + ], + [ + -73.456916, + 45.521245 + ], + [ + -73.457007, + 45.521798 + ], + [ + -73.457018, + 45.521965 + ], + [ + -73.457007, + 45.522131 + ], + [ + -73.456977, + 45.522289 + ], + [ + -73.456948, + 45.522368 + ], + [ + -73.456942, + 45.522383 + ], + [ + -73.456878, + 45.522527 + ], + [ + -73.456684, + 45.5229 + ], + [ + -73.456573, + 45.523103 + ], + [ + -73.456502, + 45.523233 + ], + [ + -73.455971, + 45.52424 + ], + [ + -73.455885, + 45.524403 + ], + [ + -73.455699, + 45.524754 + ], + [ + -73.45556, + 45.52506 + ], + [ + -73.455515, + 45.525217 + ], + [ + -73.455492, + 45.525379 + ], + [ + -73.455505, + 45.525617 + ], + [ + -73.455556, + 45.52586 + ], + [ + -73.455725, + 45.526441 + ], + [ + -73.455731, + 45.526463 + ], + [ + -73.455785, + 45.526648 + ], + [ + -73.456034, + 45.52748 + ], + [ + -73.456081, + 45.527705 + ], + [ + -73.456084, + 45.527948 + ], + [ + -73.45603, + 45.528196 + ], + [ + -73.455955, + 45.528344 + ], + [ + -73.455795, + 45.528551 + ], + [ + -73.455586, + 45.528802 + ], + [ + -73.455542, + 45.528856 + ], + [ + -73.455189, + 45.52928 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.454978, + 45.529527 + ], + [ + -73.45507, + 45.529563 + ], + [ + -73.456261, + 45.530048 + ], + [ + -73.45729, + 45.530467 + ], + [ + -73.457482, + 45.530545 + ], + [ + -73.458332, + 45.530905 + ], + [ + -73.460581, + 45.531882 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.462027, + 45.532626 + ], + [ + -73.462751, + 45.533003 + ], + [ + -73.463699, + 45.533563 + ], + [ + -73.463873, + 45.533665 + ], + [ + -73.464875, + 45.534543 + ], + [ + -73.46573, + 45.535331 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.46881, + 45.537048 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469941, + 45.537318 + ], + [ + -73.470305, + 45.537406 + ], + [ + -73.470749, + 45.537487 + ], + [ + -73.471335, + 45.537563 + ], + [ + -73.471845, + 45.53759 + ], + [ + -73.471931, + 45.53759 + ], + [ + -73.472146, + 45.537591 + ], + [ + -73.472355, + 45.537591 + ], + [ + -73.473126, + 45.537555 + ], + [ + -73.473826, + 45.537492 + ], + [ + -73.474517, + 45.537429 + ], + [ + -73.474522, + 45.537429 + ], + [ + -73.474599, + 45.537423 + ], + [ + -73.475173, + 45.53738 + ], + [ + -73.47563, + 45.537344 + ], + [ + -73.476192, + 45.537353 + ], + [ + -73.476662, + 45.537394 + ], + [ + -73.477026, + 45.537434 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.477885, + 45.5376 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479503, + 45.53808 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.482474, + 45.538919 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484688, + 45.539728 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.485788, + 45.540122 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491035, + 45.541427 + ], + [ + -73.491084, + 45.541584 + ], + [ + -73.491099, + 45.541724 + ], + [ + -73.491104, + 45.541823 + ], + [ + -73.491106, + 45.541854 + ], + [ + -73.491092, + 45.542156 + ], + [ + -73.491081, + 45.542381 + ], + [ + -73.49104, + 45.543146 + ], + [ + -73.490998, + 45.543726 + ], + [ + -73.491037, + 45.544117 + ], + [ + -73.491071, + 45.544252 + ], + [ + -73.491113, + 45.544396 + ], + [ + -73.491272, + 45.544698 + ], + [ + -73.491367, + 45.544855 + ], + [ + -73.491449, + 45.544981 + ], + [ + -73.491608, + 45.545148 + ], + [ + -73.491886, + 45.545409 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.492801, + 45.546137 + ], + [ + -73.492868, + 45.546192 + ], + [ + -73.492976, + 45.546278 + ], + [ + -73.493835, + 45.546966 + ], + [ + -73.494604, + 45.547573 + ], + [ + -73.495174, + 45.548026 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.495148, + 45.54818 + ], + [ + -73.494756, + 45.548419 + ], + [ + -73.494517, + 45.548567 + ], + [ + -73.494355, + 45.548662 + ], + [ + -73.494341, + 45.548702 + ], + [ + -73.494351, + 45.54877 + ], + [ + -73.494352, + 45.548779 + ], + [ + -73.494377, + 45.548846 + ], + [ + -73.494604, + 45.549013 + ], + [ + -73.495901, + 45.550034 + ], + [ + -73.496326, + 45.55037 + ], + [ + -73.496482, + 45.550493 + ], + [ + -73.496546, + 45.550543 + ], + [ + -73.496964, + 45.550873 + ], + [ + -73.497569, + 45.551352 + ], + [ + -73.498413, + 45.552 + ], + [ + -73.498592, + 45.552072 + ], + [ + -73.498694, + 45.552086 + ], + [ + -73.498793, + 45.55209 + ], + [ + -73.498947, + 45.552086 + ], + [ + -73.499127, + 45.552095 + ], + [ + -73.499133, + 45.552039 + ], + [ + -73.49916, + 45.551769 + ], + [ + -73.499199, + 45.551371 + ], + [ + -73.49924, + 45.551092 + ], + [ + -73.499284, + 45.550946 + ], + [ + -73.499366, + 45.550811 + ], + [ + -73.499487, + 45.550651 + ], + [ + -73.499681, + 45.550405 + ], + [ + -73.499747, + 45.550322 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.500118, + 45.550075 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.503237, + 45.548311 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.50378, + 45.54778 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.505409, + 45.546112 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507876, + 45.543485 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.509776, + 45.54161 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.511271, + 45.540357 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512995, + 45.539126 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.514326, + 45.538177 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.515307, + 45.537394 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.516479, + 45.536184 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.518224, + 45.53413 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519176, + 45.531644 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.518817, + 45.531415 + ], + [ + -73.518763, + 45.531374 + ], + [ + -73.518709, + 45.531325 + ], + [ + -73.518655, + 45.531271 + ], + [ + -73.518619, + 45.531213 + ], + [ + -73.518601, + 45.531154 + ], + [ + -73.518588, + 45.531096 + ], + [ + -73.518588, + 45.531055 + ], + [ + -73.518597, + 45.531006 + ], + [ + -73.518619, + 45.530952 + ], + [ + -73.518659, + 45.530884 + ], + [ + -73.518691, + 45.530826 + ], + [ + -73.518718, + 45.530785 + ], + [ + -73.518753, + 45.530731 + ], + [ + -73.518803, + 45.530646 + ], + [ + -73.518839, + 45.530596 + ], + [ + -73.518875, + 45.530547 + ], + [ + -73.518897, + 45.530497 + ], + [ + -73.518915, + 45.530448 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519398, + 45.526013 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 51, + "properties": { + "id": "0d2a803b-0b4f-4183-abb0-a0e83e2005a2", + "data": { + "gtfs": { + "shape_id": "17_1_A" + }, + "segments": [ + { + "distanceMeters": 200, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 417, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 316, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 506, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 524, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 463, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 317, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 655, + "travelTimeSeconds": 165 + }, + { + "distanceMeters": 533, + "travelTimeSeconds": 135 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 198, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12721, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5209.757988136507, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.42, + "travelTimeWithoutDwellTimesSeconds": 1980, + "operatingTimeWithLayoverTimeSeconds": 2178, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1980, + "operatingSpeedWithLayoverMetersPerSecond": 5.84, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.42 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "6e83e147-802a-4695-95f3-96585bd15c4a", + "51878141-1194-4666-977c-0597ee638ffb", + "83cbcc26-a35c-4db6-a784-03a152cb9d6f", + "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", + "2800446d-aebc-4882-a018-9ab217599d73", + "02782fd4-ecd8-4615-9b7e-14ae16ac51bd", + "59ce5dad-a6de-46b9-a19c-e11dc5bfb727", + "aa6137b4-b674-460f-91f8-a129c1cf46bc", + "96eb89e4-98b8-49ac-b938-d7bcff69fc98", + "9d7bed04-91bf-4977-b8f5-ead58bfa3d28", + "0039f884-0610-402a-b23b-498abb207283", + "d3991811-d92b-4ba2-9732-26a74abc49b7", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "98268bc3-9f24-452e-8107-226a930051bc", + "b9c0c47c-b605-460e-9360-3718e001061b", + "c33924bc-c890-4a49-b330-6134b056dd6d", + "290dd81a-faeb-49a8-be84-7d76ab6dd7ef", + "cdd96034-dead-4f68-a8ed-c24b98b781eb", + "211cb268-dcfa-4d7b-810c-681bfa65d4c8", + "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "1e4facbf-29da-4515-97c4-4ef86c22290e", + "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", + "06d26eca-08e9-467e-9ff0-9595778162a0", + "abdcf999-0861-4881-a478-42fa957c7f17", + "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "5f672947-8abc-447c-bf60-535abbf76fae", + "31e8057b-0fb0-44bd-83cf-3acad24654ec", + "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", + "038a22ba-4928-42fc-aaed-50fbd831df37", + "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", + "64648218-6b63-436c-9a46-4770987ba432", + "87d520cc-f77e-449c-88c9-cee424bbc329", + "66456437-f154-4a2f-a12f-2f54cf668687", + "820a9d7c-25e9-487c-9e51-cfefcb1432f7", + "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", + "72c849ab-069a-4dc5-92fe-9ecc63ba074d", + "d9324afd-9cb7-46ba-ad04-bb8387256785", + "45ed93e4-f128-470f-b287-4d6ddc400e49", + "52f97fd3-6c91-420e-82d2-2198f2064d40", + "2d2815ee-443f-48d9-a68e-7f53a9aa6216", + "dadcd93c-5469-44bf-8e3e-ccac4a5af110", + "28d90293-1261-41be-a75c-5fc82c3acd49", + "28559490-1b1e-4bd4-83e1-408fd6a20c77", + "72e3e510-0ae4-407e-a30d-82f52f41e278", + "2e804fba-75d7-4c69-a7f7-706998c1a6f1", + "4fb4515b-e129-4622-b855-89143c2fd488", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "b0bcee88-55dc-48a0-bd7c-5139926f4432", + "segments": [ + 0, + 2, + 6, + 12, + 17, + 22, + 25, + 34, + 41, + 46, + 54, + 61, + 67, + 74, + 85, + 87, + 96, + 104, + 111, + 117, + 119, + 122, + 132, + 139, + 145, + 155, + 159, + 165, + 171, + 191, + 206, + 211, + 223, + 235, + 241, + 259, + 262, + 266, + 270, + 277, + 280, + 282, + 286, + 289, + 292, + 306, + 337 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 51, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519446, + 45.523424 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519332, + 45.526816 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517858, + 45.526792 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517465, + 45.528168 + ], + [ + -73.517458, + 45.528249 + ], + [ + -73.517471, + 45.528385 + ], + [ + -73.517504, + 45.528565 + ], + [ + -73.517516, + 45.528652 + ], + [ + -73.517553, + 45.52877 + ], + [ + -73.517635, + 45.529002 + ], + [ + -73.517693, + 45.529249 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518846, + 45.531518 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.518109, + 45.534266 + ], + [ + -73.51774, + 45.534698 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.516369, + 45.536311 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.515485, + 45.537235 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.514576, + 45.53799 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.512982, + 45.539135 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.511383, + 45.540276 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.509932, + 45.541461 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.507824, + 45.54354 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.505661, + 45.545845 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.503929, + 45.547638 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501341, + 45.549928 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500344, + 45.550074 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.499756, + 45.550039 + ], + [ + -73.499583, + 45.550043 + ], + [ + -73.499254, + 45.550048 + ], + [ + -73.49904, + 45.550039 + ], + [ + -73.498716, + 45.549998 + ], + [ + -73.49829, + 45.549868 + ], + [ + -73.497924, + 45.54971 + ], + [ + -73.497576, + 45.54953 + ], + [ + -73.497225, + 45.549332 + ], + [ + -73.497041, + 45.549211 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494914, + 45.547559 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.492003, + 45.545214 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491296, + 45.54289 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.490625, + 45.54071 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.48651, + 45.540163 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.485279, + 45.539708 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482924, + 45.538861 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.480044, + 45.538061 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.479241, + 45.537795 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476982, + 45.537235 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472351, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.46939, + 45.536998 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466199, + 45.53549 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464132, + 45.533602 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461222, + 45.53197 + ], + [ + -73.460868, + 45.531797 + ], + [ + -73.460137, + 45.531468 + ], + [ + -73.459095, + 45.531013 + ], + [ + -73.457818, + 45.530482 + ], + [ + -73.457591, + 45.530387 + ], + [ + -73.456631, + 45.529983 + ], + [ + -73.45522, + 45.529388 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.454682, + 45.529166 + ] + ] + }, + "id": 52, + "properties": { + "id": "0bf0cf5e-e1e0-4f2f-bd50-72ae02b25c51", + "data": { + "gtfs": { + "shape_id": "17_1_R" + }, + "segments": [ + { + "distanceMeters": 1321, + "travelTimeSeconds": 240 + }, + { + "distanceMeters": 364, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 307, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 534, + "travelTimeSeconds": 109 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 363, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 125 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 115 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8568, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5209.757988136507, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.21, + "travelTimeWithoutDwellTimesSeconds": 1380, + "operatingTimeWithLayoverTimeSeconds": 1560, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1380, + "operatingSpeedWithLayoverMetersPerSecond": 5.49, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.21 + }, + "mode": "bus", + "name": "Sect. M Vieux-Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "2e804fba-75d7-4c69-a7f7-706998c1a6f1", + "72e3e510-0ae4-407e-a30d-82f52f41e278", + "28559490-1b1e-4bd4-83e1-408fd6a20c77", + "28d90293-1261-41be-a75c-5fc82c3acd49", + "dadcd93c-5469-44bf-8e3e-ccac4a5af110", + "2d2815ee-443f-48d9-a68e-7f53a9aa6216", + "52f97fd3-6c91-420e-82d2-2198f2064d40", + "45ed93e4-f128-470f-b287-4d6ddc400e49", + "d9324afd-9cb7-46ba-ad04-bb8387256785", + "72c849ab-069a-4dc5-92fe-9ecc63ba074d", + "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", + "09bf17cd-9db1-41e3-b993-62146cb91158", + "8a3f1208-7ffb-452e-8ebb-c436acba82d6", + "2d7687a5-f458-4ce1-a3df-9639d89c0154", + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "ce58f095-9b51-4521-8a41-e64bfb0df31e", + "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", + "65003b15-0baf-4f82-9e15-665e17fd1c75", + "81b3573e-d948-478d-a011-db20e21b0c62", + "def08726-b847-4fc6-b901-78e04519a492", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "3b70b024-5c5b-4081-8c70-3fc026422289", + "1e4facbf-29da-4515-97c4-4ef86c22290e", + "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "53aec761-3dae-44a6-bc58-9d5003bfa1bb", + "6e83e147-802a-4695-95f3-96585bd15c4a" + ], + "stops": [], + "line_id": "b0bcee88-55dc-48a0-bd7c-5139926f4432", + "segments": [ + 0, + 61, + 76, + 80, + 82, + 86, + 89, + 92, + 98, + 103, + 106, + 109, + 124, + 141, + 147, + 171, + 181, + 187, + 196, + 206, + 218, + 228, + 241, + 247, + 255, + 259 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 52, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.454682, + 45.529166 + ], + [ + -73.453608, + 45.528719 + ], + [ + -73.452419, + 45.528224 + ], + [ + -73.452095, + 45.528089 + ], + [ + -73.451849, + 45.527987 + ], + [ + -73.449586, + 45.5271 + ], + [ + -73.447563, + 45.526329 + ], + [ + -73.447265, + 45.526208 + ], + [ + -73.447243, + 45.526199 + ], + [ + -73.446596, + 45.52596 + ], + [ + -73.446438, + 45.5259 + ], + [ + -73.445479, + 45.525532 + ], + [ + -73.44525, + 45.525455 + ], + [ + -73.445048, + 45.525397 + ], + [ + -73.444823, + 45.525347 + ], + [ + -73.444476, + 45.525248 + ], + [ + -73.44392, + 45.525126 + ], + [ + -73.443091, + 45.524907 + ], + [ + -73.442951, + 45.524869 + ], + [ + -73.443474, + 45.523856 + ], + [ + -73.443491, + 45.523821 + ], + [ + -73.444165, + 45.522458 + ], + [ + -73.444264, + 45.522301 + ], + [ + -73.444322, + 45.522225 + ], + [ + -73.4447, + 45.521495 + ], + [ + -73.445357, + 45.520227 + ], + [ + -73.445616, + 45.519728 + ], + [ + -73.445708, + 45.519575 + ], + [ + -73.445857, + 45.519382 + ], + [ + -73.446092, + 45.519112 + ], + [ + -73.446119, + 45.519088 + ], + [ + -73.446373, + 45.518869 + ], + [ + -73.446684, + 45.518635 + ], + [ + -73.446958, + 45.518469 + ], + [ + -73.447199, + 45.518348 + ], + [ + -73.447381, + 45.518267 + ], + [ + -73.447546, + 45.518195 + ], + [ + -73.448019, + 45.518033 + ], + [ + -73.448706, + 45.517817 + ], + [ + -73.449343, + 45.51762 + ], + [ + -73.449921, + 45.517427 + ], + [ + -73.450143, + 45.517364 + ], + [ + -73.450409, + 45.517292 + ], + [ + -73.45071, + 45.517229 + ], + [ + -73.450716, + 45.517224 + ], + [ + -73.451295, + 45.517148 + ], + [ + -73.451523, + 45.517121 + ], + [ + -73.451894, + 45.517072 + ], + [ + -73.452053, + 45.517054 + ], + [ + -73.45224, + 45.517153 + ], + [ + -73.452412, + 45.517228 + ], + [ + -73.452518, + 45.517275 + ], + [ + -73.453808, + 45.5178 + ], + [ + -73.454088, + 45.517914 + ], + [ + -73.454547, + 45.518104 + ], + [ + -73.454923, + 45.518259 + ], + [ + -73.455195, + 45.518372 + ], + [ + -73.455625, + 45.518549 + ], + [ + -73.45631, + 45.518837 + ], + [ + -73.457149, + 45.51918 + ], + [ + -73.456893, + 45.519549 + ], + [ + -73.456808, + 45.519697 + ], + [ + -73.456763, + 45.519809 + ], + [ + -73.456747, + 45.519998 + ], + [ + -73.456743, + 45.520169 + ], + [ + -73.456881, + 45.521051 + ], + [ + -73.456916, + 45.521245 + ], + [ + -73.456927, + 45.521311 + ], + [ + -73.457007, + 45.521798 + ], + [ + -73.457018, + 45.521965 + ], + [ + -73.457007, + 45.522131 + ], + [ + -73.456977, + 45.522289 + ], + [ + -73.456948, + 45.522368 + ], + [ + -73.456942, + 45.522383 + ], + [ + -73.456878, + 45.522527 + ], + [ + -73.456684, + 45.5229 + ], + [ + -73.456502, + 45.523233 + ], + [ + -73.455885, + 45.524403 + ], + [ + -73.455699, + 45.524754 + ], + [ + -73.45556, + 45.52506 + ], + [ + -73.455515, + 45.525217 + ], + [ + -73.455492, + 45.525379 + ], + [ + -73.455505, + 45.525617 + ], + [ + -73.455556, + 45.52586 + ], + [ + -73.455725, + 45.526441 + ], + [ + -73.455785, + 45.526648 + ], + [ + -73.455835, + 45.526817 + ], + [ + -73.456034, + 45.52748 + ], + [ + -73.456081, + 45.527705 + ], + [ + -73.456084, + 45.527948 + ], + [ + -73.45603, + 45.528196 + ], + [ + -73.455955, + 45.528344 + ], + [ + -73.455795, + 45.528551 + ], + [ + -73.455542, + 45.528856 + ], + [ + -73.455189, + 45.52928 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.454978, + 45.529527 + ], + [ + -73.45507, + 45.529563 + ], + [ + -73.456261, + 45.530048 + ], + [ + -73.457482, + 45.530545 + ], + [ + -73.458332, + 45.530905 + ], + [ + -73.459643, + 45.531475 + ], + [ + -73.460581, + 45.531882 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.462751, + 45.533003 + ], + [ + -73.463873, + 45.533665 + ], + [ + -73.464875, + 45.534543 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469941, + 45.537318 + ], + [ + -73.470305, + 45.537406 + ], + [ + -73.470749, + 45.537487 + ], + [ + -73.471335, + 45.537563 + ], + [ + -73.471845, + 45.53759 + ], + [ + -73.472146, + 45.537591 + ], + [ + -73.472355, + 45.537591 + ], + [ + -73.473126, + 45.537555 + ], + [ + -73.473826, + 45.537492 + ], + [ + -73.474151, + 45.537462 + ], + [ + -73.474517, + 45.537429 + ], + [ + -73.474599, + 45.537423 + ], + [ + -73.475173, + 45.53738 + ], + [ + -73.47563, + 45.537344 + ], + [ + -73.476192, + 45.537353 + ], + [ + -73.476662, + 45.537394 + ], + [ + -73.477026, + 45.537434 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.479972, + 45.538233 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484688, + 45.539728 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.487815, + 45.540571 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491035, + 45.541427 + ], + [ + -73.491084, + 45.541584 + ], + [ + -73.491099, + 45.541724 + ], + [ + -73.491106, + 45.541854 + ], + [ + -73.491092, + 45.542156 + ], + [ + -73.491081, + 45.542381 + ], + [ + -73.49104, + 45.543146 + ], + [ + -73.491014, + 45.543512 + ], + [ + -73.490998, + 45.543726 + ], + [ + -73.491037, + 45.544117 + ], + [ + -73.491071, + 45.544252 + ], + [ + -73.491113, + 45.544396 + ], + [ + -73.491272, + 45.544698 + ], + [ + -73.491367, + 45.544855 + ], + [ + -73.491449, + 45.544981 + ], + [ + -73.491608, + 45.545148 + ], + [ + -73.491886, + 45.545409 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.492868, + 45.546192 + ], + [ + -73.492976, + 45.546278 + ], + [ + -73.493835, + 45.546966 + ], + [ + -73.494604, + 45.547573 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.495148, + 45.54818 + ], + [ + -73.494756, + 45.548419 + ], + [ + -73.49471, + 45.548447 + ], + [ + -73.494517, + 45.548567 + ], + [ + -73.494355, + 45.548662 + ], + [ + -73.494341, + 45.548702 + ], + [ + -73.494351, + 45.54877 + ], + [ + -73.494352, + 45.548779 + ], + [ + -73.494377, + 45.548846 + ], + [ + -73.494604, + 45.549013 + ], + [ + -73.495901, + 45.550034 + ], + [ + -73.496482, + 45.550493 + ], + [ + -73.496546, + 45.550543 + ], + [ + -73.496964, + 45.550873 + ], + [ + -73.497569, + 45.551352 + ], + [ + -73.498413, + 45.552 + ], + [ + -73.498592, + 45.552072 + ], + [ + -73.498694, + 45.552086 + ], + [ + -73.498793, + 45.55209 + ], + [ + -73.498947, + 45.552086 + ], + [ + -73.499127, + 45.552095 + ], + [ + -73.499133, + 45.552039 + ], + [ + -73.499199, + 45.551371 + ], + [ + -73.49924, + 45.551092 + ], + [ + -73.499284, + 45.550946 + ], + [ + -73.499366, + 45.550811 + ], + [ + -73.499487, + 45.550651 + ], + [ + -73.499747, + 45.550322 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.500118, + 45.550075 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.501109, + 45.549994 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.503237, + 45.548311 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.506534, + 45.544915 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512949, + 45.539158 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.516592, + 45.536052 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.518817, + 45.531415 + ], + [ + -73.518763, + 45.531374 + ], + [ + -73.518709, + 45.531325 + ], + [ + -73.518655, + 45.531271 + ], + [ + -73.518619, + 45.531213 + ], + [ + -73.518601, + 45.531154 + ], + [ + -73.518588, + 45.531096 + ], + [ + -73.518588, + 45.531055 + ], + [ + -73.518597, + 45.531006 + ], + [ + -73.518619, + 45.530952 + ], + [ + -73.518659, + 45.530884 + ], + [ + -73.518691, + 45.530826 + ], + [ + -73.518718, + 45.530785 + ], + [ + -73.518753, + 45.530731 + ], + [ + -73.518803, + 45.530646 + ], + [ + -73.518839, + 45.530596 + ], + [ + -73.518875, + 45.530547 + ], + [ + -73.518897, + 45.530497 + ], + [ + -73.518915, + 45.530448 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519361, + 45.529355 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 53, + "properties": { + "id": "83aace1b-edfc-43e8-a0ed-42f954b40fea", + "data": { + "gtfs": { + "shape_id": "17_1_A" + }, + "segments": [ + { + "distanceMeters": 665, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 769, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 1078, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 446, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 636, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 749, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 1387, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 473, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 669, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 526, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 685, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 918, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 712, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 815, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 848, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 905, + "travelTimeSeconds": 51 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12721, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 65.75797913289725, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 23.56, + "travelTimeWithoutDwellTimesSeconds": 540, + "operatingTimeWithLayoverTimeSeconds": 720, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 540, + "operatingSpeedWithLayoverMetersPerSecond": 17.67, + "averageSpeedWithoutDwellTimesMetersPerSecond": 23.56 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "6e83e147-802a-4695-95f3-96585bd15c4a", + "51878141-1194-4666-977c-0597ee638ffb", + "83cbcc26-a35c-4db6-a784-03a152cb9d6f", + "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", + "2800446d-aebc-4882-a018-9ab217599d73", + "02782fd4-ecd8-4615-9b7e-14ae16ac51bd", + "59ce5dad-a6de-46b9-a19c-e11dc5bfb727", + "aa6137b4-b674-460f-91f8-a129c1cf46bc", + "96eb89e4-98b8-49ac-b938-d7bcff69fc98", + "9d7bed04-91bf-4977-b8f5-ead58bfa3d28", + "0039f884-0610-402a-b23b-498abb207283", + "d3991811-d92b-4ba2-9732-26a74abc49b7", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "98268bc3-9f24-452e-8107-226a930051bc", + "b9c0c47c-b605-460e-9360-3718e001061b", + "c33924bc-c890-4a49-b330-6134b056dd6d", + "290dd81a-faeb-49a8-be84-7d76ab6dd7ef", + "cdd96034-dead-4f68-a8ed-c24b98b781eb" + ], + "stops": [], + "line_id": "b0bcee88-55dc-48a0-bd7c-5139926f4432", + "segments": [ + 0, + 7, + 24, + 55, + 67, + 86, + 101, + 127, + 142, + 157, + 176, + 194, + 226, + 240, + 254, + 262, + 301 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 53, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.420884, + 45.492385 + ], + [ + -73.418964, + 45.495064 + ], + [ + -73.418892, + 45.495165 + ], + [ + -73.416874, + 45.498016 + ], + [ + -73.416837, + 45.498063 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.415848, + 45.497845 + ], + [ + -73.415069, + 45.497555 + ], + [ + -73.415032, + 45.497542 + ], + [ + -73.414637, + 45.497397 + ], + [ + -73.413391, + 45.496942 + ], + [ + -73.413146, + 45.496853 + ], + [ + -73.41213, + 45.496482 + ], + [ + -73.411766, + 45.496343 + ], + [ + -73.411419, + 45.496194 + ], + [ + -73.411073, + 45.496033 + ], + [ + -73.410951, + 45.495977 + ], + [ + -73.410895, + 45.495951 + ], + [ + -73.410789, + 45.495896 + ], + [ + -73.409735, + 45.495323 + ], + [ + -73.409349, + 45.495112 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.409262, + 45.494528 + ], + [ + -73.409537, + 45.494129 + ], + [ + -73.409554, + 45.494104 + ], + [ + -73.409872, + 45.493642 + ], + [ + -73.411359, + 45.491549 + ], + [ + -73.41144, + 45.491434 + ], + [ + -73.412048, + 45.490575 + ], + [ + -73.413082, + 45.489112 + ], + [ + -73.41317, + 45.488987 + ], + [ + -73.414954, + 45.48962 + ], + [ + -73.415794, + 45.489917 + ], + [ + -73.41588, + 45.489948 + ], + [ + -73.416181, + 45.490056 + ], + [ + -73.416563, + 45.490205 + ], + [ + -73.416833, + 45.490317 + ], + [ + -73.417817, + 45.490728 + ], + [ + -73.418126, + 45.490867 + ], + [ + -73.418329, + 45.490966 + ], + [ + -73.418926, + 45.491273 + ], + [ + -73.419065, + 45.491358 + ], + [ + -73.419232, + 45.491444 + ], + [ + -73.419402, + 45.491507 + ], + [ + -73.420032, + 45.491719 + ], + [ + -73.420235, + 45.491787 + ], + [ + -73.420442, + 45.49185 + ], + [ + -73.421099, + 45.492084 + ], + [ + -73.421973, + 45.492395 + ], + [ + -73.422792, + 45.492684 + ], + [ + -73.423173, + 45.492823 + ], + [ + -73.423404, + 45.4929 + ], + [ + -73.423545, + 45.492954 + ], + [ + -73.423688, + 45.493026 + ], + [ + -73.423762, + 45.493067 + ], + [ + -73.423881, + 45.493134 + ], + [ + -73.423992, + 45.493193 + ], + [ + -73.424086, + 45.493252 + ], + [ + -73.424167, + 45.493319 + ], + [ + -73.4245, + 45.493675 + ], + [ + -73.424539, + 45.493715 + ], + [ + -73.424604, + 45.493823 + ], + [ + -73.424742, + 45.493976 + ], + [ + -73.424872, + 45.49408 + ], + [ + -73.425006, + 45.494188 + ], + [ + -73.425153, + 45.494283 + ], + [ + -73.425239, + 45.49433 + ], + [ + -73.425348, + 45.494391 + ], + [ + -73.425495, + 45.494463 + ], + [ + -73.425936, + 45.494625 + ], + [ + -73.426225, + 45.494733 + ], + [ + -73.42705, + 45.495013 + ], + [ + -73.427246, + 45.49508 + ], + [ + -73.427753, + 45.495255 + ], + [ + -73.427911, + 45.49531 + ], + [ + -73.428712, + 45.495599 + ], + [ + -73.430359, + 45.496178 + ], + [ + -73.430519, + 45.496234 + ], + [ + -73.432051, + 45.496777 + ], + [ + -73.432274, + 45.496856 + ], + [ + -73.434175, + 45.497533 + ], + [ + -73.43431, + 45.497582 + ], + [ + -73.435579, + 45.498023 + ], + [ + -73.435865, + 45.4981 + ], + [ + -73.436036, + 45.49814 + ], + [ + -73.436216, + 45.498172 + ], + [ + -73.436513, + 45.498249 + ], + [ + -73.436806, + 45.498348 + ], + [ + -73.436872, + 45.498374 + ], + [ + -73.436955, + 45.498406 + ], + [ + -73.439319, + 45.499236 + ], + [ + -73.439705, + 45.499371 + ], + [ + -73.439319, + 45.499924 + ], + [ + -73.439307, + 45.49994 + ], + [ + -73.43919, + 45.500108 + ], + [ + -73.4391, + 45.500204 + ], + [ + -73.438982, + 45.500329 + ], + [ + -73.438767, + 45.500522 + ], + [ + -73.438604, + 45.500652 + ], + [ + -73.438428, + 45.500778 + ], + [ + -73.437988, + 45.501097 + ], + [ + -73.437808, + 45.501228 + ], + [ + -73.437244, + 45.501651 + ], + [ + -73.436813, + 45.501961 + ], + [ + -73.436593, + 45.502087 + ], + [ + -73.436771, + 45.502154 + ], + [ + -73.437001, + 45.502237 + ], + [ + -73.43716, + 45.502294 + ], + [ + -73.438126, + 45.502649 + ], + [ + -73.439474, + 45.503145 + ], + [ + -73.440013, + 45.503344 + ], + [ + -73.4405, + 45.503528 + ], + [ + -73.441152, + 45.503767 + ], + [ + -73.441539, + 45.503904 + ], + [ + -73.443587, + 45.504627 + ], + [ + -73.443718, + 45.504673 + ], + [ + -73.443791, + 45.504718 + ], + [ + -73.44362, + 45.504965 + ], + [ + -73.442429, + 45.506739 + ], + [ + -73.442417, + 45.506757 + ], + [ + -73.442227, + 45.507039 + ], + [ + -73.439054, + 45.507258 + ], + [ + -73.438426, + 45.507284 + ], + [ + -73.438208, + 45.507286 + ], + [ + -73.43796, + 45.507288 + ], + [ + -73.436434, + 45.507297 + ], + [ + -73.435792, + 45.507278 + ], + [ + -73.435015, + 45.507249 + ], + [ + -73.434228, + 45.507219 + ], + [ + -73.433669, + 45.507165 + ], + [ + -73.433481, + 45.507146 + ], + [ + -73.433316, + 45.507128 + ], + [ + -73.43308, + 45.507092 + ], + [ + -73.432958, + 45.507065 + ], + [ + -73.432823, + 45.507025 + ], + [ + -73.432697, + 45.506971 + ], + [ + -73.432507, + 45.50688 + ], + [ + -73.432305, + 45.506772 + ], + [ + -73.432116, + 45.506678 + ], + [ + -73.432105, + 45.506615 + ], + [ + -73.431909, + 45.506516 + ], + [ + -73.431784, + 45.506462 + ], + [ + -73.431662, + 45.506421 + ], + [ + -73.431524, + 45.506385 + ], + [ + -73.431353, + 45.506349 + ], + [ + -73.431252, + 45.506335 + ], + [ + -73.431145, + 45.506326 + ], + [ + -73.430968, + 45.506317 + ], + [ + -73.430791, + 45.506326 + ], + [ + -73.430645, + 45.506339 + ], + [ + -73.43052, + 45.506357 + ], + [ + -73.430422, + 45.506366 + ], + [ + -73.430275, + 45.506389 + ], + [ + -73.430066, + 45.506425 + ], + [ + -73.430099, + 45.506555 + ], + [ + -73.430103, + 45.506573 + ], + [ + -73.4302, + 45.506807 + ], + [ + -73.430341, + 45.507086 + ], + [ + -73.430485, + 45.507257 + ], + [ + -73.430506, + 45.507276 + ], + [ + -73.430509, + 45.507278 + ], + [ + -73.430608, + 45.507365 + ], + [ + -73.430672, + 45.507415 + ], + [ + -73.431358, + 45.507856 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431709, + 45.508009 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.432209, + 45.507974 + ], + [ + -73.433374, + 45.507895 + ], + [ + -73.435178, + 45.507773 + ], + [ + -73.437575, + 45.507662 + ], + [ + -73.438988, + 45.507572 + ], + [ + -73.440344, + 45.507425 + ], + [ + -73.445881, + 45.507063 + ], + [ + -73.452257, + 45.506638 + ], + [ + -73.452565, + 45.506616 + ], + [ + -73.453776, + 45.50654 + ], + [ + -73.455247, + 45.506419 + ], + [ + -73.456957, + 45.50624 + ], + [ + -73.460279, + 45.505832 + ], + [ + -73.460374, + 45.505823 + ], + [ + -73.461182, + 45.505728 + ], + [ + -73.463671, + 45.505509 + ], + [ + -73.465111, + 45.505401 + ], + [ + -73.467755, + 45.505222 + ], + [ + -73.468692, + 45.505168 + ], + [ + -73.470746, + 45.505025 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492938, + 45.510118 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497933, + 45.512056 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.500896, + 45.513013 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505125, + 45.514484 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506107, + 45.514749 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511921, + 45.516876 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513441, + 45.518311 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.51501, + 45.519424 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518902, + 45.520632 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 54, + "properties": { + "id": "3ca2354b-f8db-4cfc-84c8-68ac6e655a79", + "data": { + "gtfs": { + "shape_id": "19_1_A" + }, + "segments": [ + { + "distanceMeters": 334, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 388, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 328, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 316, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 400, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 5786, + "travelTimeSeconds": 452 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 597, + "travelTimeSeconds": 103 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 744, + "travelTimeSeconds": 129 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 15449, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8582.217253240633, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.88, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 8.05, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.88 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "30c08115-a1b6-45b8-9122-c5fe99723d2e", + "bf4259d8-23ae-478a-8a93-ec28083b908d", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "5dd96d41-c4eb-4453-9e97-752999b1688d", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "78262195-7c3a-4ed5-81d8-a33c906e3099", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "4b07d309-8f54-43c8-997d-d4abd77f2d1e", + "f4abcc97-51ec-431d-988f-977063b9070f", + "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", + "28985ee5-9fc5-416a-81f8-ff25dba2b6da", + "d68685b2-7e92-4934-989f-8ccfae13451f", + "d9bf2534-8f61-4d16-adab-8e4d84e855be", + "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", + "4a180761-ffc5-4d97-873b-916ca1656760", + "63ff9173-3e59-4bee-9a21-57d199dc88ec", + "565e8198-26d9-4715-bc5d-75974e6721d9", + "9b336d4e-db84-472b-aee3-9690d5d224b6", + "3b96e6d6-e4f7-4e24-903e-8fb3993ff6c9", + "1a2084b5-bc8c-4697-804e-35bea928cc06", + "261db898-2ef3-4105-a628-5330af439dce", + "631a5504-9e7c-4041-85e7-bf81e6a995d2", + "b487112d-20d7-48e5-a658-6d701c316792", + "2f59e70c-00bf-46fc-9104-53f0aa9fb5e8", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "a5b9648a-83c0-4eab-a54b-68c23aecae43", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", + "be19484c-af95-45b2-bfe5-24342dd1b710", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "b9129276-b11b-471e-80e7-c8a3ff46ff9c", + "segments": [ + 0, + 1, + 4, + 11, + 15, + 22, + 26, + 29, + 32, + 44, + 54, + 66, + 73, + 76, + 78, + 80, + 88, + 92, + 100, + 106, + 113, + 114, + 118, + 123, + 129, + 220, + 233, + 236, + 243, + 262, + 268, + 281, + 288 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 54, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521447, + 45.524278 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519263, + 45.520728 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.515005, + 45.51933 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513229, + 45.517464 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509952, + 45.515502 + ], + [ + -73.509485, + 45.515357 + ], + [ + -73.509476, + 45.515354 + ], + [ + -73.509376, + 45.515323 + ], + [ + -73.508692, + 45.515143 + ], + [ + -73.508296, + 45.51503 + ], + [ + -73.507817, + 45.514868 + ], + [ + -73.507704, + 45.514841 + ], + [ + -73.507464, + 45.514765 + ], + [ + -73.506516, + 45.514432 + ], + [ + -73.505464, + 45.514054 + ], + [ + -73.505166, + 45.51396 + ], + [ + -73.504791, + 45.513841 + ], + [ + -73.504655, + 45.513798 + ], + [ + -73.504451, + 45.513734 + ], + [ + -73.50434, + 45.513699 + ], + [ + -73.504259, + 45.513672 + ], + [ + -73.503369, + 45.513397 + ], + [ + -73.502433, + 45.51315 + ], + [ + -73.502048, + 45.513078 + ], + [ + -73.501569, + 45.512942 + ], + [ + -73.501411, + 45.512898 + ], + [ + -73.50108, + 45.512799 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499687, + 45.512351 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498224, + 45.511894 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.494315, + 45.51046 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.494088, + 45.51035 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491858, + 45.508708 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488355, + 45.503066 + ], + [ + -73.4883, + 45.502913 + ], + [ + -73.488219, + 45.502531 + ], + [ + -73.488223, + 45.502405 + ], + [ + -73.488245, + 45.502293 + ], + [ + -73.488296, + 45.502185 + ], + [ + -73.488375, + 45.502086 + ], + [ + -73.488484, + 45.502 + ], + [ + -73.488609, + 45.501937 + ], + [ + -73.48874, + 45.501892 + ], + [ + -73.48888, + 45.501865 + ], + [ + -73.489028, + 45.501856 + ], + [ + -73.489181, + 45.501865 + ], + [ + -73.489324, + 45.501892 + ], + [ + -73.489461, + 45.501933 + ], + [ + -73.489585, + 45.501991 + ], + [ + -73.489692, + 45.502068 + ], + [ + -73.489744, + 45.502115 + ], + [ + -73.489786, + 45.502153 + ], + [ + -73.489942, + 45.502342 + ], + [ + -73.490006, + 45.50245 + ], + [ + -73.490054, + 45.502558 + ], + [ + -73.490086, + 45.502666 + ], + [ + -73.490092, + 45.502779 + ], + [ + -73.490064, + 45.502891 + ], + [ + -73.490004, + 45.502995 + ], + [ + -73.489917, + 45.503094 + ], + [ + -73.489808, + 45.503175 + ], + [ + -73.489675, + 45.503242 + ], + [ + -73.489524, + 45.503287 + ], + [ + -73.489359, + 45.50331 + ], + [ + -73.489186, + 45.503323 + ], + [ + -73.488817, + 45.503318 + ], + [ + -73.487515, + 45.503242 + ], + [ + -73.486872, + 45.503273 + ], + [ + -73.486502, + 45.503323 + ], + [ + -73.486146, + 45.503381 + ], + [ + -73.484224, + 45.503808 + ], + [ + -73.483407, + 45.503957 + ], + [ + -73.482922, + 45.504029 + ], + [ + -73.482166, + 45.504114 + ], + [ + -73.481092, + 45.504204 + ], + [ + -73.4802, + 45.504262 + ], + [ + -73.47719, + 45.50446 + ], + [ + -73.477132, + 45.504462 + ], + [ + -73.474463, + 45.504585 + ], + [ + -73.473732, + 45.504621 + ], + [ + -73.47326, + 45.50463 + ], + [ + -73.472594, + 45.504625 + ], + [ + -73.472184, + 45.504602 + ], + [ + -73.471986, + 45.50458 + ], + [ + -73.471671, + 45.504521 + ], + [ + -73.471417, + 45.504449 + ], + [ + -73.471243, + 45.504386 + ], + [ + -73.471084, + 45.504314 + ], + [ + -73.470936, + 45.504242 + ], + [ + -73.470798, + 45.504161 + ], + [ + -73.470671, + 45.504076 + ], + [ + -73.470553, + 45.503986 + ], + [ + -73.469982, + 45.503502 + ], + [ + -73.469677, + 45.503226 + ], + [ + -73.469614, + 45.503168 + ], + [ + -73.469513, + 45.50323 + ], + [ + -73.469419, + 45.503287 + ], + [ + -73.469308, + 45.503357 + ], + [ + -73.469279, + 45.503422 + ], + [ + -73.469224, + 45.503454 + ], + [ + -73.469116, + 45.503519 + ], + [ + -73.468749, + 45.503738 + ], + [ + -73.468134, + 45.504106 + ], + [ + -73.46771, + 45.504363 + ], + [ + -73.467476, + 45.504484 + ], + [ + -73.467257, + 45.504583 + ], + [ + -73.467047, + 45.504673 + ], + [ + -73.466778, + 45.504767 + ], + [ + -73.466492, + 45.50483 + ], + [ + -73.466169, + 45.504898 + ], + [ + -73.465884, + 45.504943 + ], + [ + -73.46553, + 45.504965 + ], + [ + -73.465067, + 45.504996 + ], + [ + -73.464545, + 45.505041 + ], + [ + -73.463624, + 45.505104 + ], + [ + -73.46332, + 45.50509 + ], + [ + -73.462722, + 45.505141 + ], + [ + -73.462564, + 45.505155 + ], + [ + -73.462414, + 45.50516 + ], + [ + -73.462303, + 45.505157 + ], + [ + -73.462173, + 45.505157 + ], + [ + -73.462046, + 45.50518 + ], + [ + -73.461961, + 45.505207 + ], + [ + -73.461828, + 45.505274 + ], + [ + -73.461479, + 45.505346 + ], + [ + -73.460924, + 45.505418 + ], + [ + -73.460429, + 45.505476 + ], + [ + -73.460124, + 45.505512 + ], + [ + -73.459817, + 45.505548 + ], + [ + -73.459089, + 45.505635 + ], + [ + -73.457907, + 45.505777 + ], + [ + -73.457379, + 45.505858 + ], + [ + -73.456937, + 45.505934 + ], + [ + -73.456441, + 45.506015 + ], + [ + -73.456392, + 45.506022 + ], + [ + -73.456027, + 45.506073 + ], + [ + -73.4557, + 45.506113 + ], + [ + -73.455407, + 45.506145 + ], + [ + -73.45462, + 45.506212 + ], + [ + -73.453792, + 45.506275 + ], + [ + -73.453626, + 45.506284 + ], + [ + -73.453512, + 45.506292 + ], + [ + -73.453375, + 45.506301 + ], + [ + -73.453036, + 45.506328 + ], + [ + -73.452813, + 45.506342 + ], + [ + -73.452619, + 45.506355 + ], + [ + -73.452198, + 45.506382 + ], + [ + -73.451887, + 45.506404 + ], + [ + -73.45126, + 45.506445 + ], + [ + -73.450484, + 45.506494 + ], + [ + -73.44836, + 45.506636 + ], + [ + -73.447691, + 45.506681 + ], + [ + -73.446069, + 45.506789 + ], + [ + -73.445578, + 45.50682 + ], + [ + -73.445275, + 45.50685 + ], + [ + -73.445125, + 45.506865 + ], + [ + -73.443732, + 45.506945 + ], + [ + -73.442555, + 45.507021 + ], + [ + -73.442456, + 45.507028 + ], + [ + -73.442366, + 45.507034 + ], + [ + -73.442227, + 45.507039 + ], + [ + -73.44362, + 45.504965 + ], + [ + -73.44367, + 45.504893 + ], + [ + -73.443791, + 45.504718 + ], + [ + -73.443718, + 45.504673 + ], + [ + -73.441388, + 45.50385 + ], + [ + -73.441273, + 45.50381 + ], + [ + -73.441152, + 45.503767 + ], + [ + -73.4405, + 45.503528 + ], + [ + -73.440013, + 45.503344 + ], + [ + -73.439474, + 45.503145 + ], + [ + -73.438126, + 45.502649 + ], + [ + -73.437271, + 45.502335 + ], + [ + -73.43716, + 45.502294 + ], + [ + -73.437113, + 45.502231 + ], + [ + -73.437081, + 45.502195 + ], + [ + -73.437072, + 45.502141 + ], + [ + -73.437067, + 45.502087 + ], + [ + -73.437072, + 45.501992 + ], + [ + -73.437089, + 45.501929 + ], + [ + -73.437811, + 45.501422 + ], + [ + -73.437952, + 45.501322 + ], + [ + -73.438749, + 45.500747 + ], + [ + -73.438772, + 45.500729 + ], + [ + -73.43892, + 45.500612 + ], + [ + -73.439045, + 45.500499 + ], + [ + -73.439144, + 45.50041 + ], + [ + -73.439363, + 45.500176 + ], + [ + -73.43988, + 45.499434 + ], + [ + -73.439954, + 45.499326 + ], + [ + -73.439779, + 45.499267 + ], + [ + -73.439401, + 45.499132 + ], + [ + -73.43929, + 45.499094 + ], + [ + -73.438965, + 45.49898 + ], + [ + -73.437089, + 45.498325 + ], + [ + -73.437025, + 45.498303 + ], + [ + -73.436911, + 45.498253 + ], + [ + -73.436581, + 45.498141 + ], + [ + -73.436255, + 45.498055 + ], + [ + -73.435929, + 45.497992 + ], + [ + -73.435648, + 45.497915 + ], + [ + -73.43454, + 45.497518 + ], + [ + -73.434393, + 45.497465 + ], + [ + -73.432457, + 45.496785 + ], + [ + -73.432352, + 45.496748 + ], + [ + -73.430774, + 45.496193 + ], + [ + -73.430595, + 45.496131 + ], + [ + -73.428793, + 45.495486 + ], + [ + -73.428102, + 45.495242 + ], + [ + -73.42799, + 45.495202 + ], + [ + -73.427327, + 45.494972 + ], + [ + -73.427129, + 45.4949 + ], + [ + -73.426304, + 45.494616 + ], + [ + -73.425789, + 45.494431 + ], + [ + -73.425567, + 45.494332 + ], + [ + -73.42552, + 45.494308 + ], + [ + -73.425435, + 45.494265 + ], + [ + -73.425244, + 45.494166 + ], + [ + -73.425117, + 45.494094 + ], + [ + -73.424993, + 45.493999 + ], + [ + -73.424846, + 45.493877 + ], + [ + -73.424732, + 45.493751 + ], + [ + -73.424622, + 45.493598 + ], + [ + -73.424286, + 45.493252 + ], + [ + -73.424064, + 45.493076 + ], + [ + -73.424026, + 45.493054 + ], + [ + -73.423956, + 45.493013 + ], + [ + -73.423777, + 45.492914 + ], + [ + -73.423558, + 45.492824 + ], + [ + -73.423264, + 45.492711 + ], + [ + -73.422869, + 45.492571 + ], + [ + -73.422074, + 45.492295 + ], + [ + -73.422051, + 45.492287 + ], + [ + -73.421183, + 45.491976 + ], + [ + -73.421099, + 45.492084 + ], + [ + -73.420884, + 45.492385 + ] + ] + }, + "id": 55, + "properties": { + "id": "fd6ca5db-cb08-42d1-9231-669def4823be", + "data": { + "gtfs": { + "shape_id": "19_1_R" + }, + "segments": [ + { + "distanceMeters": 763, + "travelTimeSeconds": 89 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 384, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 403, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 345, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 2757, + "travelTimeSeconds": 278 + }, + { + "distanceMeters": 562, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 404, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 363, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 304, + "travelTimeSeconds": 65 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11306, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8582.217253240633, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.19, + "travelTimeWithoutDwellTimesSeconds": 1380, + "operatingTimeWithLayoverTimeSeconds": 1560, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1380, + "operatingSpeedWithLayoverMetersPerSecond": 7.25, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.19 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "d3215c60-bb9e-40ac-89e4-1f922b39e266", + "f9358f54-8643-47f5-b0df-4a20b46cc22d", + "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", + "f4f29738-df3f-4d69-8632-9088ded0dc5a", + "741876fc-030a-42f6-a33a-8f1f9c2aba12", + "688a3f67-a176-441e-a399-c92a55de9c74", + "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", + "37199bb2-9740-4484-b68f-12d3c82f8bf9", + "c17cc951-65ff-4617-a096-ccd1fe6cc26f", + "d283f176-a2d6-456a-b4b2-f380ae924031", + "05522d17-41d4-4e98-a458-ec71ea1a802b", + "a2cddc2b-b7ec-4035-951f-7045ea83427b", + "a4e1d210-6aad-44a6-b6a6-31d75e66d6c9", + "c9ccd441-872f-4e75-b699-0014386c3503", + "92abcd2a-82ad-467f-8946-055423a9c2c9", + "631a5504-9e7c-4041-85e7-bf81e6a995d2", + "261db898-2ef3-4105-a628-5330af439dce", + "1a2084b5-bc8c-4697-804e-35bea928cc06", + "3b96e6d6-e4f7-4e24-903e-8fb3993ff6c9", + "9b336d4e-db84-472b-aee3-9690d5d224b6", + "a39b7f03-1a32-4d28-9091-59543b1980d1", + "45eb186b-1efe-43c4-8e82-92fe5a15a753", + "63ff9173-3e59-4bee-9a21-57d199dc88ec", + "4a180761-ffc5-4d97-873b-916ca1656760", + "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", + "d9bf2534-8f61-4d16-adab-8e4d84e855be", + "d68685b2-7e92-4934-989f-8ccfae13451f", + "28985ee5-9fc5-416a-81f8-ff25dba2b6da", + "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", + "30c08115-a1b6-45b8-9122-c5fe99723d2e" + ], + "stops": [], + "line_id": "b9129276-b11b-471e-80e7-c8a3ff46ff9c", + "segments": [ + 0, + 47, + 54, + 61, + 71, + 81, + 89, + 93, + 97, + 108, + 119, + 196, + 213, + 226, + 231, + 238, + 247, + 251, + 255, + 259, + 262, + 269, + 277, + 282, + 289, + 291, + 298, + 300, + 302, + 305, + 312, + 322 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 55, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.420884, + 45.492385 + ], + [ + -73.418964, + 45.495064 + ], + [ + -73.418892, + 45.495165 + ], + [ + -73.416874, + 45.498016 + ], + [ + -73.416837, + 45.498063 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.415848, + 45.497845 + ], + [ + -73.415069, + 45.497555 + ], + [ + -73.415032, + 45.497542 + ], + [ + -73.414637, + 45.497397 + ], + [ + -73.413391, + 45.496942 + ], + [ + -73.413146, + 45.496853 + ], + [ + -73.41213, + 45.496482 + ], + [ + -73.411766, + 45.496343 + ], + [ + -73.411419, + 45.496194 + ], + [ + -73.411073, + 45.496033 + ], + [ + -73.410951, + 45.495977 + ], + [ + -73.410895, + 45.495951 + ], + [ + -73.410789, + 45.495896 + ], + [ + -73.409735, + 45.495323 + ], + [ + -73.409349, + 45.495112 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.409262, + 45.494528 + ], + [ + -73.409537, + 45.494129 + ], + [ + -73.409554, + 45.494104 + ], + [ + -73.409872, + 45.493642 + ], + [ + -73.411359, + 45.491549 + ], + [ + -73.41144, + 45.491434 + ], + [ + -73.412048, + 45.490575 + ], + [ + -73.413082, + 45.489112 + ], + [ + -73.41317, + 45.488987 + ], + [ + -73.414954, + 45.48962 + ], + [ + -73.415794, + 45.489917 + ], + [ + -73.41588, + 45.489948 + ], + [ + -73.416181, + 45.490056 + ], + [ + -73.416563, + 45.490205 + ], + [ + -73.416833, + 45.490317 + ], + [ + -73.417817, + 45.490728 + ], + [ + -73.418126, + 45.490867 + ], + [ + -73.418329, + 45.490966 + ], + [ + -73.418926, + 45.491273 + ], + [ + -73.419065, + 45.491358 + ], + [ + -73.419232, + 45.491444 + ], + [ + -73.419402, + 45.491507 + ], + [ + -73.420032, + 45.491719 + ], + [ + -73.420235, + 45.491787 + ], + [ + -73.420442, + 45.49185 + ], + [ + -73.421099, + 45.492084 + ], + [ + -73.421973, + 45.492395 + ], + [ + -73.422792, + 45.492684 + ], + [ + -73.423173, + 45.492823 + ], + [ + -73.423404, + 45.4929 + ], + [ + -73.423545, + 45.492954 + ], + [ + -73.423688, + 45.493026 + ], + [ + -73.423762, + 45.493067 + ], + [ + -73.423881, + 45.493134 + ], + [ + -73.423992, + 45.493193 + ], + [ + -73.424086, + 45.493252 + ], + [ + -73.424167, + 45.493319 + ], + [ + -73.4245, + 45.493675 + ], + [ + -73.424539, + 45.493715 + ], + [ + -73.424604, + 45.493823 + ], + [ + -73.424742, + 45.493976 + ], + [ + -73.424872, + 45.49408 + ], + [ + -73.425006, + 45.494188 + ], + [ + -73.425153, + 45.494283 + ], + [ + -73.425239, + 45.49433 + ], + [ + -73.425348, + 45.494391 + ], + [ + -73.425495, + 45.494463 + ], + [ + -73.425936, + 45.494625 + ], + [ + -73.426225, + 45.494733 + ], + [ + -73.42705, + 45.495013 + ], + [ + -73.427246, + 45.49508 + ], + [ + -73.427753, + 45.495255 + ], + [ + -73.427911, + 45.49531 + ], + [ + -73.428712, + 45.495599 + ], + [ + -73.430359, + 45.496178 + ], + [ + -73.430519, + 45.496234 + ], + [ + -73.432051, + 45.496777 + ], + [ + -73.432274, + 45.496856 + ], + [ + -73.434175, + 45.497533 + ], + [ + -73.43431, + 45.497582 + ], + [ + -73.435579, + 45.498023 + ], + [ + -73.435865, + 45.4981 + ], + [ + -73.436036, + 45.49814 + ], + [ + -73.436216, + 45.498172 + ], + [ + -73.436513, + 45.498249 + ], + [ + -73.436806, + 45.498348 + ], + [ + -73.436872, + 45.498374 + ], + [ + -73.436955, + 45.498406 + ], + [ + -73.439319, + 45.499236 + ], + [ + -73.439705, + 45.499371 + ], + [ + -73.439319, + 45.499924 + ], + [ + -73.439307, + 45.49994 + ], + [ + -73.43919, + 45.500108 + ], + [ + -73.4391, + 45.500204 + ], + [ + -73.438982, + 45.500329 + ], + [ + -73.438767, + 45.500522 + ], + [ + -73.438604, + 45.500652 + ], + [ + -73.438428, + 45.500778 + ], + [ + -73.437988, + 45.501097 + ], + [ + -73.437808, + 45.501228 + ], + [ + -73.437244, + 45.501651 + ], + [ + -73.436813, + 45.501961 + ], + [ + -73.436593, + 45.502087 + ], + [ + -73.436771, + 45.502154 + ], + [ + -73.437001, + 45.502237 + ], + [ + -73.43716, + 45.502294 + ], + [ + -73.438126, + 45.502649 + ], + [ + -73.439474, + 45.503145 + ], + [ + -73.440013, + 45.503344 + ], + [ + -73.4405, + 45.503528 + ], + [ + -73.441152, + 45.503767 + ], + [ + -73.441539, + 45.503904 + ], + [ + -73.443587, + 45.504627 + ], + [ + -73.443718, + 45.504673 + ], + [ + -73.443791, + 45.504718 + ], + [ + -73.44362, + 45.504965 + ], + [ + -73.442429, + 45.506739 + ], + [ + -73.442417, + 45.506757 + ], + [ + -73.442227, + 45.507039 + ], + [ + -73.439054, + 45.507258 + ], + [ + -73.438426, + 45.507284 + ], + [ + -73.438208, + 45.507286 + ], + [ + -73.43796, + 45.507288 + ], + [ + -73.436434, + 45.507297 + ], + [ + -73.435792, + 45.507278 + ], + [ + -73.435015, + 45.507249 + ], + [ + -73.434228, + 45.507219 + ], + [ + -73.433669, + 45.507165 + ], + [ + -73.433481, + 45.507146 + ], + [ + -73.433316, + 45.507128 + ], + [ + -73.43308, + 45.507092 + ], + [ + -73.432958, + 45.507065 + ], + [ + -73.432823, + 45.507025 + ], + [ + -73.432697, + 45.506971 + ], + [ + -73.432507, + 45.50688 + ], + [ + -73.432305, + 45.506772 + ], + [ + -73.432116, + 45.506678 + ], + [ + -73.432105, + 45.506615 + ], + [ + -73.431909, + 45.506516 + ], + [ + -73.431784, + 45.506462 + ], + [ + -73.431662, + 45.506421 + ], + [ + -73.431524, + 45.506385 + ], + [ + -73.431353, + 45.506349 + ], + [ + -73.431252, + 45.506335 + ], + [ + -73.431145, + 45.506326 + ], + [ + -73.430968, + 45.506317 + ], + [ + -73.430791, + 45.506326 + ], + [ + -73.430645, + 45.506339 + ], + [ + -73.43052, + 45.506357 + ], + [ + -73.430422, + 45.506366 + ], + [ + -73.430275, + 45.506389 + ], + [ + -73.430066, + 45.506425 + ], + [ + -73.430099, + 45.506555 + ], + [ + -73.430103, + 45.506573 + ], + [ + -73.4302, + 45.506807 + ], + [ + -73.430327, + 45.507058 + ], + [ + -73.430341, + 45.507086 + ], + [ + -73.430485, + 45.507257 + ], + [ + -73.430506, + 45.507276 + ], + [ + -73.430509, + 45.507278 + ], + [ + -73.430608, + 45.507365 + ], + [ + -73.430672, + 45.507415 + ], + [ + -73.431358, + 45.507856 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431709, + 45.508009 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.432209, + 45.507974 + ], + [ + -73.435178, + 45.507773 + ], + [ + -73.437575, + 45.507662 + ], + [ + -73.438988, + 45.507572 + ], + [ + -73.440344, + 45.507425 + ], + [ + -73.445881, + 45.507063 + ], + [ + -73.451412, + 45.506695 + ], + [ + -73.452257, + 45.506638 + ], + [ + -73.452565, + 45.506616 + ], + [ + -73.453776, + 45.50654 + ], + [ + -73.455247, + 45.506419 + ], + [ + -73.456957, + 45.50624 + ], + [ + -73.460279, + 45.505832 + ], + [ + -73.460374, + 45.505823 + ], + [ + -73.461182, + 45.505728 + ], + [ + -73.463671, + 45.505509 + ], + [ + -73.465111, + 45.505401 + ], + [ + -73.467755, + 45.505222 + ], + [ + -73.468692, + 45.505168 + ], + [ + -73.470746, + 45.505025 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492938, + 45.510118 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497933, + 45.512056 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.500896, + 45.513013 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505125, + 45.514484 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506107, + 45.514749 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511921, + 45.516876 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513441, + 45.518311 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.51501, + 45.519424 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518902, + 45.520632 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 56, + "properties": { + "id": "95a1d9bd-c2ce-4771-bb5c-8e1cbb540d9f", + "data": { + "gtfs": { + "shape_id": "19_3_A" + }, + "segments": [ + { + "distanceMeters": 334, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 388, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 328, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 316, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 400, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 5786, + "travelTimeSeconds": 452 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 597, + "travelTimeSeconds": 103 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 744, + "travelTimeSeconds": 129 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 15449, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8582.217253240633, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.88, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 8.05, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.88 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "30c08115-a1b6-45b8-9122-c5fe99723d2e", + "bf4259d8-23ae-478a-8a93-ec28083b908d", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "5dd96d41-c4eb-4453-9e97-752999b1688d", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "78262195-7c3a-4ed5-81d8-a33c906e3099", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "4b07d309-8f54-43c8-997d-d4abd77f2d1e", + "f4abcc97-51ec-431d-988f-977063b9070f", + "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", + "28985ee5-9fc5-416a-81f8-ff25dba2b6da", + "d68685b2-7e92-4934-989f-8ccfae13451f", + "d9bf2534-8f61-4d16-adab-8e4d84e855be", + "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", + "4a180761-ffc5-4d97-873b-916ca1656760", + "63ff9173-3e59-4bee-9a21-57d199dc88ec", + "565e8198-26d9-4715-bc5d-75974e6721d9", + "9b336d4e-db84-472b-aee3-9690d5d224b6", + "3b96e6d6-e4f7-4e24-903e-8fb3993ff6c9", + "1a2084b5-bc8c-4697-804e-35bea928cc06", + "261db898-2ef3-4105-a628-5330af439dce", + "631a5504-9e7c-4041-85e7-bf81e6a995d2", + "b487112d-20d7-48e5-a658-6d701c316792", + "2f59e70c-00bf-46fc-9104-53f0aa9fb5e8", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "a5b9648a-83c0-4eab-a54b-68c23aecae43", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", + "be19484c-af95-45b2-bfe5-24342dd1b710", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "b9129276-b11b-471e-80e7-c8a3ff46ff9c", + "segments": [ + 0, + 1, + 4, + 11, + 15, + 22, + 26, + 29, + 32, + 44, + 54, + 66, + 73, + 76, + 78, + 80, + 88, + 92, + 100, + 106, + 113, + 114, + 118, + 123, + 129, + 221, + 234, + 237, + 244, + 263, + 269, + 282, + 289 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 56, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.420884, + 45.492385 + ], + [ + -73.418963, + 45.495065 + ], + [ + -73.418892, + 45.495165 + ], + [ + -73.416874, + 45.498016 + ], + [ + -73.416836, + 45.498064 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.415848, + 45.497845 + ], + [ + -73.415069, + 45.497555 + ], + [ + -73.415032, + 45.497542 + ], + [ + -73.414637, + 45.497397 + ], + [ + -73.413391, + 45.496942 + ], + [ + -73.413145, + 45.496852 + ], + [ + -73.41213, + 45.496482 + ], + [ + -73.411766, + 45.496343 + ], + [ + -73.411419, + 45.496194 + ], + [ + -73.411071, + 45.496033 + ], + [ + -73.410951, + 45.495977 + ], + [ + -73.410895, + 45.495951 + ], + [ + -73.410789, + 45.495896 + ], + [ + -73.409735, + 45.495323 + ], + [ + -73.409349, + 45.495112 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.409264, + 45.494526 + ], + [ + -73.409537, + 45.494129 + ], + [ + -73.409554, + 45.494104 + ], + [ + -73.409872, + 45.493642 + ], + [ + -73.41136, + 45.491547 + ], + [ + -73.41144, + 45.491434 + ], + [ + -73.412048, + 45.490575 + ], + [ + -73.413084, + 45.489109 + ], + [ + -73.41317, + 45.488987 + ], + [ + -73.414954, + 45.48962 + ], + [ + -73.415798, + 45.489919 + ], + [ + -73.41588, + 45.489948 + ], + [ + -73.416181, + 45.490056 + ], + [ + -73.416563, + 45.490205 + ], + [ + -73.416833, + 45.490317 + ], + [ + -73.417817, + 45.490728 + ], + [ + -73.418126, + 45.490867 + ], + [ + -73.418329, + 45.490966 + ], + [ + -73.418926, + 45.491273 + ], + [ + -73.419065, + 45.491358 + ], + [ + -73.419232, + 45.491444 + ], + [ + -73.419402, + 45.491507 + ], + [ + -73.420037, + 45.49172 + ], + [ + -73.420235, + 45.491787 + ], + [ + -73.420442, + 45.49185 + ], + [ + -73.421099, + 45.492084 + ], + [ + -73.421973, + 45.492395 + ], + [ + -73.422792, + 45.492684 + ], + [ + -73.423173, + 45.492823 + ], + [ + -73.423404, + 45.4929 + ], + [ + -73.423545, + 45.492954 + ], + [ + -73.423688, + 45.493026 + ], + [ + -73.423766, + 45.49307 + ], + [ + -73.423881, + 45.493134 + ], + [ + -73.423992, + 45.493193 + ], + [ + -73.424086, + 45.493252 + ], + [ + -73.424167, + 45.493319 + ], + [ + -73.4245, + 45.493675 + ], + [ + -73.424539, + 45.493715 + ], + [ + -73.424604, + 45.493823 + ], + [ + -73.424742, + 45.493976 + ], + [ + -73.424872, + 45.49408 + ], + [ + -73.425006, + 45.494188 + ], + [ + -73.425153, + 45.494283 + ], + [ + -73.425244, + 45.494333 + ], + [ + -73.425348, + 45.494391 + ], + [ + -73.425495, + 45.494463 + ], + [ + -73.425936, + 45.494625 + ], + [ + -73.426225, + 45.494733 + ], + [ + -73.42705, + 45.495013 + ], + [ + -73.427246, + 45.49508 + ], + [ + -73.427758, + 45.495257 + ], + [ + -73.427911, + 45.49531 + ], + [ + -73.428712, + 45.495599 + ], + [ + -73.430365, + 45.49618 + ], + [ + -73.430519, + 45.496234 + ], + [ + -73.432057, + 45.496779 + ], + [ + -73.432274, + 45.496856 + ], + [ + -73.434181, + 45.497536 + ], + [ + -73.43431, + 45.497582 + ], + [ + -73.435579, + 45.498023 + ], + [ + -73.435865, + 45.4981 + ], + [ + -73.436036, + 45.49814 + ], + [ + -73.436216, + 45.498172 + ], + [ + -73.436513, + 45.498249 + ], + [ + -73.436806, + 45.498348 + ], + [ + -73.436879, + 45.498377 + ], + [ + -73.436955, + 45.498406 + ], + [ + -73.439319, + 45.499236 + ], + [ + -73.439705, + 45.499371 + ], + [ + -73.439315, + 45.499929 + ], + [ + -73.439307, + 45.49994 + ], + [ + -73.43919, + 45.500108 + ], + [ + -73.4391, + 45.500204 + ], + [ + -73.438982, + 45.500329 + ], + [ + -73.438767, + 45.500522 + ], + [ + -73.438604, + 45.500652 + ], + [ + -73.438428, + 45.500778 + ], + [ + -73.437982, + 45.501102 + ], + [ + -73.437808, + 45.501228 + ], + [ + -73.437244, + 45.501651 + ], + [ + -73.436813, + 45.501961 + ], + [ + -73.436593, + 45.502087 + ], + [ + -73.436771, + 45.502154 + ], + [ + -73.437008, + 45.50224 + ], + [ + -73.43716, + 45.502294 + ], + [ + -73.438126, + 45.502649 + ], + [ + -73.439474, + 45.503145 + ], + [ + -73.440013, + 45.503344 + ], + [ + -73.4405, + 45.503528 + ], + [ + -73.441152, + 45.503767 + ], + [ + -73.441547, + 45.503907 + ], + [ + -73.443595, + 45.50463 + ], + [ + -73.443718, + 45.504673 + ], + [ + -73.443791, + 45.504718 + ], + [ + -73.44362, + 45.504965 + ], + [ + -73.442425, + 45.506745 + ], + [ + -73.442417, + 45.506757 + ], + [ + -73.442227, + 45.507039 + ], + [ + -73.442366, + 45.507034 + ], + [ + -73.442555, + 45.507021 + ], + [ + -73.442678, + 45.507013 + ], + [ + -73.443732, + 45.506945 + ], + [ + -73.445125, + 45.506865 + ], + [ + -73.445578, + 45.50682 + ], + [ + -73.446069, + 45.506789 + ], + [ + -73.447691, + 45.506681 + ], + [ + -73.450484, + 45.506494 + ], + [ + -73.45126, + 45.506445 + ], + [ + -73.451887, + 45.506404 + ], + [ + -73.452198, + 45.506382 + ], + [ + -73.452619, + 45.506355 + ], + [ + -73.452813, + 45.506342 + ], + [ + -73.453036, + 45.506328 + ], + [ + -73.453375, + 45.506301 + ], + [ + -73.453626, + 45.506284 + ], + [ + -73.453792, + 45.506275 + ], + [ + -73.45462, + 45.506212 + ], + [ + -73.455407, + 45.506145 + ], + [ + -73.4557, + 45.506113 + ], + [ + -73.456027, + 45.506073 + ], + [ + -73.456441, + 45.506015 + ], + [ + -73.456937, + 45.505934 + ], + [ + -73.457379, + 45.505858 + ], + [ + -73.457907, + 45.505777 + ], + [ + -73.459817, + 45.505548 + ], + [ + -73.460124, + 45.505512 + ], + [ + -73.460429, + 45.505476 + ], + [ + -73.460924, + 45.505418 + ], + [ + -73.461479, + 45.505346 + ], + [ + -73.461828, + 45.505274 + ], + [ + -73.462125, + 45.505283 + ], + [ + -73.462434, + 45.505254 + ], + [ + -73.462468, + 45.505444 + ], + [ + -73.462548, + 45.505805 + ], + [ + -73.462686, + 45.505794 + ], + [ + -73.464899, + 45.505604 + ], + [ + -73.465836, + 45.50551 + ], + [ + -73.467696, + 45.505308 + ], + [ + -73.468178, + 45.505267 + ], + [ + -73.470418, + 45.50511 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492934, + 45.510116 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497941, + 45.512058 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.500892, + 45.513012 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505133, + 45.514487 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506107, + 45.514749 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511919, + 45.516874 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.51344, + 45.51831 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515008, + 45.519424 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518901, + 45.520631 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 57, + "properties": { + "id": "c71b1ba7-785e-4393-9f53-a8acd5afeb78", + "data": { + "gtfs": { + "shape_id": "19_2_A" + }, + "segments": [ + { + "distanceMeters": 334, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 388, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 328, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 316, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 400, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 4518, + "travelTimeSeconds": 427 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 597, + "travelTimeSeconds": 91 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 744, + "travelTimeSeconds": 114 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13476, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8582.217253240633, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.74, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 7.02, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.74 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "30c08115-a1b6-45b8-9122-c5fe99723d2e", + "bf4259d8-23ae-478a-8a93-ec28083b908d", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "5dd96d41-c4eb-4453-9e97-752999b1688d", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "78262195-7c3a-4ed5-81d8-a33c906e3099", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "4b07d309-8f54-43c8-997d-d4abd77f2d1e", + "f4abcc97-51ec-431d-988f-977063b9070f", + "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", + "28985ee5-9fc5-416a-81f8-ff25dba2b6da", + "d68685b2-7e92-4934-989f-8ccfae13451f", + "d9bf2534-8f61-4d16-adab-8e4d84e855be", + "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", + "4a180761-ffc5-4d97-873b-916ca1656760", + "63ff9173-3e59-4bee-9a21-57d199dc88ec", + "565e8198-26d9-4715-bc5d-75974e6721d9", + "9b336d4e-db84-472b-aee3-9690d5d224b6", + "3b96e6d6-e4f7-4e24-903e-8fb3993ff6c9", + "1a2084b5-bc8c-4697-804e-35bea928cc06", + "261db898-2ef3-4105-a628-5330af439dce", + "631a5504-9e7c-4041-85e7-bf81e6a995d2", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "a5b9648a-83c0-4eab-a54b-68c23aecae43", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", + "be19484c-af95-45b2-bfe5-24342dd1b710", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "b9129276-b11b-471e-80e7-c8a3ff46ff9c", + "segments": [ + 0, + 1, + 4, + 11, + 15, + 22, + 26, + 29, + 32, + 44, + 54, + 66, + 73, + 76, + 78, + 80, + 88, + 92, + 100, + 106, + 113, + 114, + 118, + 196, + 209, + 212, + 219, + 238, + 244, + 257, + 264 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 57, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.420884, + 45.492385 + ], + [ + -73.418892, + 45.495165 + ], + [ + -73.416874, + 45.498016 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.415848, + 45.497845 + ], + [ + -73.415069, + 45.497555 + ], + [ + -73.415032, + 45.497542 + ], + [ + -73.414637, + 45.497397 + ], + [ + -73.413391, + 45.496942 + ], + [ + -73.41213, + 45.496482 + ], + [ + -73.411766, + 45.496343 + ], + [ + -73.411419, + 45.496194 + ], + [ + -73.410951, + 45.495977 + ], + [ + -73.410895, + 45.495951 + ], + [ + -73.410789, + 45.495896 + ], + [ + -73.409735, + 45.495323 + ], + [ + -73.409349, + 45.495112 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.409537, + 45.494129 + ], + [ + -73.409554, + 45.494104 + ], + [ + -73.409872, + 45.493642 + ], + [ + -73.411417, + 45.491466 + ], + [ + -73.41144, + 45.491434 + ], + [ + -73.412048, + 45.490575 + ], + [ + -73.41317, + 45.488987 + ], + [ + -73.414954, + 45.48962 + ], + [ + -73.41588, + 45.489948 + ], + [ + -73.416181, + 45.490056 + ], + [ + -73.416563, + 45.490205 + ], + [ + -73.416833, + 45.490317 + ], + [ + -73.417817, + 45.490728 + ], + [ + -73.418126, + 45.490867 + ], + [ + -73.418329, + 45.490966 + ], + [ + -73.418926, + 45.491273 + ], + [ + -73.419065, + 45.491358 + ], + [ + -73.419232, + 45.491444 + ], + [ + -73.419402, + 45.491507 + ], + [ + -73.420235, + 45.491787 + ], + [ + -73.420442, + 45.49185 + ], + [ + -73.421099, + 45.492084 + ], + [ + -73.421973, + 45.492395 + ], + [ + -73.422792, + 45.492684 + ], + [ + -73.423173, + 45.492823 + ], + [ + -73.423404, + 45.4929 + ], + [ + -73.423545, + 45.492954 + ], + [ + -73.423688, + 45.493026 + ], + [ + -73.423881, + 45.493134 + ], + [ + -73.423992, + 45.493193 + ], + [ + -73.424086, + 45.493252 + ], + [ + -73.424167, + 45.493319 + ], + [ + -73.4245, + 45.493675 + ], + [ + -73.424539, + 45.493715 + ], + [ + -73.424604, + 45.493823 + ], + [ + -73.424742, + 45.493976 + ], + [ + -73.424872, + 45.49408 + ], + [ + -73.425006, + 45.494188 + ], + [ + -73.425153, + 45.494283 + ], + [ + -73.425348, + 45.494391 + ], + [ + -73.425495, + 45.494463 + ], + [ + -73.425936, + 45.494625 + ], + [ + -73.426225, + 45.494733 + ], + [ + -73.42705, + 45.495013 + ], + [ + -73.427246, + 45.49508 + ], + [ + -73.427911, + 45.49531 + ], + [ + -73.428712, + 45.495599 + ], + [ + -73.430519, + 45.496234 + ], + [ + -73.432274, + 45.496856 + ], + [ + -73.432489, + 45.496932 + ], + [ + -73.43431, + 45.497582 + ], + [ + -73.435579, + 45.498023 + ], + [ + -73.435865, + 45.4981 + ], + [ + -73.436036, + 45.49814 + ], + [ + -73.436216, + 45.498172 + ], + [ + -73.436513, + 45.498249 + ], + [ + -73.436806, + 45.498348 + ], + [ + -73.436955, + 45.498406 + ], + [ + -73.439319, + 45.499236 + ], + [ + -73.439705, + 45.499371 + ], + [ + -73.439307, + 45.49994 + ], + [ + -73.43919, + 45.500108 + ], + [ + -73.4391, + 45.500204 + ], + [ + -73.438982, + 45.500329 + ], + [ + -73.438767, + 45.500522 + ], + [ + -73.438604, + 45.500652 + ], + [ + -73.438428, + 45.500778 + ], + [ + -73.437808, + 45.501228 + ], + [ + -73.437244, + 45.501651 + ], + [ + -73.436813, + 45.501961 + ], + [ + -73.436593, + 45.502087 + ], + [ + -73.436771, + 45.502154 + ], + [ + -73.43716, + 45.502294 + ], + [ + -73.438126, + 45.502649 + ], + [ + -73.439474, + 45.503145 + ], + [ + -73.440013, + 45.503344 + ], + [ + -73.4405, + 45.503528 + ], + [ + -73.441152, + 45.503767 + ], + [ + -73.443718, + 45.504673 + ], + [ + -73.443791, + 45.504718 + ], + [ + -73.44362, + 45.504965 + ], + [ + -73.442727, + 45.506295 + ], + [ + -73.442417, + 45.506757 + ], + [ + -73.442227, + 45.507039 + ], + [ + -73.439054, + 45.507258 + ], + [ + -73.438426, + 45.507284 + ], + [ + -73.43796, + 45.507288 + ], + [ + -73.436434, + 45.507297 + ], + [ + -73.435792, + 45.507278 + ], + [ + -73.435015, + 45.507249 + ], + [ + -73.434228, + 45.507219 + ], + [ + -73.433481, + 45.507146 + ], + [ + -73.433316, + 45.507128 + ], + [ + -73.43308, + 45.507092 + ], + [ + -73.432958, + 45.507065 + ], + [ + -73.432823, + 45.507025 + ], + [ + -73.432697, + 45.506971 + ], + [ + -73.432507, + 45.50688 + ], + [ + -73.432305, + 45.506772 + ], + [ + -73.432116, + 45.506678 + ], + [ + -73.432105, + 45.506615 + ], + [ + -73.431909, + 45.506516 + ], + [ + -73.431784, + 45.506462 + ], + [ + -73.431662, + 45.506421 + ], + [ + -73.431524, + 45.506385 + ], + [ + -73.431353, + 45.506349 + ], + [ + -73.431252, + 45.506335 + ], + [ + -73.431145, + 45.506326 + ], + [ + -73.430968, + 45.506317 + ], + [ + -73.430791, + 45.506326 + ], + [ + -73.430645, + 45.506339 + ], + [ + -73.430544, + 45.506354 + ], + [ + -73.43052, + 45.506357 + ], + [ + -73.430422, + 45.506366 + ], + [ + -73.430275, + 45.506389 + ], + [ + -73.430066, + 45.506425 + ], + [ + -73.430099, + 45.506555 + ], + [ + -73.430103, + 45.506573 + ], + [ + -73.4302, + 45.506807 + ], + [ + -73.430341, + 45.507086 + ], + [ + -73.430485, + 45.507257 + ], + [ + -73.430506, + 45.507276 + ], + [ + -73.430509, + 45.507278 + ], + [ + -73.430608, + 45.507365 + ], + [ + -73.430672, + 45.507415 + ], + [ + -73.431358, + 45.507856 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431709, + 45.508009 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.432209, + 45.507974 + ], + [ + -73.433374, + 45.507895 + ], + [ + -73.435178, + 45.507773 + ], + [ + -73.437575, + 45.507662 + ], + [ + -73.438988, + 45.507572 + ], + [ + -73.440344, + 45.507425 + ], + [ + -73.445881, + 45.507063 + ], + [ + -73.446172, + 45.507044 + ], + [ + -73.452257, + 45.506638 + ], + [ + -73.452565, + 45.506616 + ], + [ + -73.453776, + 45.50654 + ], + [ + -73.455247, + 45.506419 + ], + [ + -73.456957, + 45.50624 + ], + [ + -73.460279, + 45.505832 + ], + [ + -73.460374, + 45.505823 + ], + [ + -73.461182, + 45.505728 + ], + [ + -73.463671, + 45.505509 + ], + [ + -73.465111, + 45.505401 + ], + [ + -73.467755, + 45.505222 + ], + [ + -73.468692, + 45.505168 + ], + [ + -73.470746, + 45.505025 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.472341, + 45.504925 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490472, + 45.507212 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504059, + 45.514167 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506107, + 45.514749 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 58, + "properties": { + "id": "eb6b7f42-dc6f-49b3-b373-d48e0168dd63", + "data": { + "gtfs": { + "shape_id": "19_1_A" + }, + "segments": [ + { + "distanceMeters": 1854, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 2071, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 1843, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 1033, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 1399, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 2054, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 1682, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 1360, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 2154, + "travelTimeSeconds": 54 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 15449, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 83.40053737943302, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 51.49, + "travelTimeWithoutDwellTimesSeconds": 300, + "operatingTimeWithLayoverTimeSeconds": 480, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 300, + "operatingSpeedWithLayoverMetersPerSecond": 32.18, + "averageSpeedWithoutDwellTimesMetersPerSecond": 51.49 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "30c08115-a1b6-45b8-9122-c5fe99723d2e", + "bf4259d8-23ae-478a-8a93-ec28083b908d", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "5dd96d41-c4eb-4453-9e97-752999b1688d", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "78262195-7c3a-4ed5-81d8-a33c906e3099", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "4b07d309-8f54-43c8-997d-d4abd77f2d1e", + "f4abcc97-51ec-431d-988f-977063b9070f" + ], + "stops": [], + "line_id": "b9129276-b11b-471e-80e7-c8a3ff46ff9c", + "segments": [ + 0, + 21, + 67, + 99, + 129, + 154, + 169, + 192, + 222 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 58, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.455441, + 45.537882 + ], + [ + -73.455036, + 45.537828 + ], + [ + -73.454083, + 45.537706 + ], + [ + -73.453056, + 45.537575 + ], + [ + -73.453038, + 45.53771 + ], + [ + -73.452922, + 45.53836 + ], + [ + -73.452904, + 45.538462 + ], + [ + -73.452804, + 45.539091 + ], + [ + -73.452723, + 45.539683 + ], + [ + -73.452717, + 45.539726 + ], + [ + -73.452594, + 45.540342 + ], + [ + -73.452366, + 45.540772 + ], + [ + -73.45227, + 45.540954 + ], + [ + -73.452075, + 45.541179 + ], + [ + -73.45197, + 45.541296 + ], + [ + -73.451796, + 45.541426 + ], + [ + -73.451437, + 45.541633 + ], + [ + -73.451233, + 45.541718 + ], + [ + -73.450967, + 45.541781 + ], + [ + -73.450741, + 45.541822 + ], + [ + -73.45065, + 45.541825 + ], + [ + -73.450524, + 45.54183 + ], + [ + -73.450532, + 45.54192 + ], + [ + -73.450512, + 45.542105 + ], + [ + -73.450477, + 45.54224 + ], + [ + -73.449919, + 45.542604 + ], + [ + -73.449268, + 45.543031 + ], + [ + -73.448896, + 45.543268 + ], + [ + -73.448895, + 45.543269 + ], + [ + -73.448583, + 45.543467 + ], + [ + -73.448064, + 45.543067 + ], + [ + -73.447976, + 45.542999 + ], + [ + -73.447904, + 45.542944 + ], + [ + -73.447355, + 45.542526 + ], + [ + -73.446888, + 45.542188 + ], + [ + -73.446733, + 45.542076 + ], + [ + -73.446124, + 45.541621 + ], + [ + -73.445606, + 45.54122 + ], + [ + -73.445503, + 45.54114 + ], + [ + -73.444511, + 45.54041 + ], + [ + -73.444375, + 45.540325 + ], + [ + -73.444216, + 45.540244 + ], + [ + -73.44408, + 45.540185 + ], + [ + -73.443875, + 45.540135 + ], + [ + -73.44377, + 45.540109 + ], + [ + -73.4435, + 45.540041 + ], + [ + -73.44267, + 45.539892 + ], + [ + -73.442456, + 45.539852 + ], + [ + -73.442205, + 45.539784 + ], + [ + -73.442148, + 45.539764 + ], + [ + -73.442001, + 45.539712 + ], + [ + -73.441896, + 45.53968 + ], + [ + -73.441646, + 45.539559 + ], + [ + -73.44151, + 45.539487 + ], + [ + -73.441387, + 45.539397 + ], + [ + -73.441242, + 45.539293 + ], + [ + -73.441122, + 45.539153 + ], + [ + -73.441004, + 45.538991 + ], + [ + -73.440944, + 45.538829 + ], + [ + -73.440917, + 45.538748 + ], + [ + -73.440909, + 45.538668 + ], + [ + -73.440902, + 45.5386 + ], + [ + -73.440899, + 45.538573 + ], + [ + -73.440907, + 45.538487 + ], + [ + -73.440917, + 45.538393 + ], + [ + -73.440957, + 45.538285 + ], + [ + -73.441023, + 45.538164 + ], + [ + -73.441098, + 45.538047 + ], + [ + -73.4412, + 45.537934 + ], + [ + -73.441569, + 45.537651 + ], + [ + -73.441939, + 45.537372 + ], + [ + -73.442459, + 45.537008 + ], + [ + -73.442686, + 45.536815 + ], + [ + -73.442788, + 45.536668 + ], + [ + -73.442789, + 45.536666 + ], + [ + -73.442839, + 45.536594 + ], + [ + -73.44311, + 45.535924 + ], + [ + -73.443379, + 45.535204 + ], + [ + -73.443894, + 45.534372 + ], + [ + -73.443948, + 45.534274 + ], + [ + -73.443989, + 45.534201 + ], + [ + -73.444489, + 45.534346 + ], + [ + -73.444931, + 45.53453 + ], + [ + -73.445118, + 45.534611 + ], + [ + -73.445446, + 45.534818 + ], + [ + -73.445653, + 45.534958 + ], + [ + -73.445829, + 45.535111 + ], + [ + -73.446021, + 45.535293 + ], + [ + -73.446079, + 45.535349 + ], + [ + -73.44617, + 45.535435 + ], + [ + -73.446275, + 45.535528 + ], + [ + -73.446362, + 45.535606 + ], + [ + -73.446623, + 45.535795 + ], + [ + -73.446833, + 45.535908 + ], + [ + -73.447009, + 45.53598 + ], + [ + -73.447135, + 45.536029 + ], + [ + -73.447379, + 45.536097 + ], + [ + -73.448323, + 45.536304 + ], + [ + -73.448623, + 45.536399 + ], + [ + -73.44878, + 45.536492 + ], + [ + -73.448898, + 45.536561 + ], + [ + -73.450391, + 45.537453 + ], + [ + -73.450563, + 45.537556 + ], + [ + -73.450772, + 45.537669 + ], + [ + -73.450923, + 45.537718 + ], + [ + -73.450952, + 45.537727 + ], + [ + -73.451166, + 45.537772 + ], + [ + -73.451401, + 45.537795 + ], + [ + -73.451627, + 45.537786 + ], + [ + -73.452059, + 45.537741 + ], + [ + -73.452711, + 45.537692 + ], + [ + -73.452874, + 45.537696 + ], + [ + -73.452931, + 45.537697 + ], + [ + -73.453038, + 45.53771 + ], + [ + -73.454051, + 45.537823 + ], + [ + -73.455005, + 45.537945 + ], + [ + -73.455965, + 45.538077 + ], + [ + -73.456321, + 45.538126 + ], + [ + -73.456445, + 45.538144 + ], + [ + -73.456357, + 45.53853 + ], + [ + -73.456221, + 45.539372 + ], + [ + -73.456144, + 45.539984 + ], + [ + -73.45609, + 45.540287 + ], + [ + -73.456076, + 45.540361 + ], + [ + -73.455916, + 45.541266 + ], + [ + -73.455834, + 45.54181 + ], + [ + -73.455731, + 45.542483 + ], + [ + -73.455702, + 45.542678 + ], + [ + -73.455523, + 45.543849 + ], + [ + -73.455509, + 45.543938 + ], + [ + -73.455433, + 45.54441 + ], + [ + -73.455289, + 45.544748 + ], + [ + -73.455178, + 45.54491 + ], + [ + -73.455067, + 45.545031 + ], + [ + -73.454985, + 45.545117 + ], + [ + -73.45488, + 45.545202 + ], + [ + -73.454712, + 45.545301 + ], + [ + -73.454658, + 45.545339 + ], + [ + -73.454517, + 45.54544 + ], + [ + -73.454362, + 45.54553 + ], + [ + -73.454039, + 45.545719 + ], + [ + -73.453554, + 45.546052 + ], + [ + -73.453387, + 45.546196 + ], + [ + -73.453186, + 45.546448 + ], + [ + -73.45304, + 45.546592 + ], + [ + -73.452912, + 45.546715 + ], + [ + -73.452859, + 45.546749 + ], + [ + -73.452243, + 45.547149 + ], + [ + -73.452725, + 45.547516 + ], + [ + -73.454111, + 45.548569 + ], + [ + -73.454117, + 45.548573 + ], + [ + -73.454269, + 45.548689 + ], + [ + -73.454302, + 45.548714 + ], + [ + -73.45617, + 45.550133 + ], + [ + -73.456272, + 45.55021 + ], + [ + -73.458174, + 45.551651 + ], + [ + -73.458459, + 45.551845 + ], + [ + -73.458867, + 45.552123 + ], + [ + -73.459495, + 45.552583 + ], + [ + -73.459717, + 45.552763 + ], + [ + -73.45984, + 45.552911 + ], + [ + -73.459984, + 45.553154 + ], + [ + -73.460074, + 45.553307 + ], + [ + -73.460476, + 45.553964 + ], + [ + -73.460843, + 45.554611 + ], + [ + -73.460904, + 45.55472 + ], + [ + -73.461041, + 45.554923 + ], + [ + -73.461091, + 45.55497 + ], + [ + -73.461155, + 45.555031 + ], + [ + -73.461353, + 45.555197 + ], + [ + -73.461529, + 45.555341 + ], + [ + -73.461661, + 45.555436 + ], + [ + -73.46167, + 45.555438 + ], + [ + -73.461719, + 45.555453 + ], + [ + -73.461827, + 45.555485 + ], + [ + -73.461925, + 45.555463 + ], + [ + -73.461985, + 45.555435 + ], + [ + -73.461991, + 45.555431 + ], + [ + -73.462207, + 45.555292 + ], + [ + -73.462576, + 45.555058 + ], + [ + -73.46269, + 45.554985 + ], + [ + -73.464004, + 45.554145 + ], + [ + -73.464065, + 45.554127 + ], + [ + -73.464203, + 45.554087 + ], + [ + -73.464314, + 45.554019 + ], + [ + -73.464675, + 45.55379 + ], + [ + -73.464758, + 45.553732 + ], + [ + -73.466649, + 45.555169 + ], + [ + -73.467394, + 45.555735 + ], + [ + -73.468707, + 45.556734 + ], + [ + -73.468863, + 45.556851 + ], + [ + -73.468884, + 45.556867 + ], + [ + -73.468905, + 45.556882 + ], + [ + -73.469456, + 45.557296 + ], + [ + -73.469905, + 45.557643 + ], + [ + -73.470698, + 45.55823 + ], + [ + -73.470793, + 45.5583 + ], + [ + -73.470906, + 45.55839 + ], + [ + -73.471187, + 45.558615 + ], + [ + -73.471642, + 45.558966 + ], + [ + -73.472161, + 45.559358 + ], + [ + -73.4722, + 45.559387 + ], + [ + -73.472928, + 45.559934 + ], + [ + -73.474132, + 45.560854 + ], + [ + -73.474224, + 45.560924 + ], + [ + -73.475111, + 45.561594 + ], + [ + -73.475605, + 45.561969 + ], + [ + -73.475818, + 45.56213 + ], + [ + -73.47747, + 45.563381 + ], + [ + -73.478124, + 45.563885 + ], + [ + -73.478719, + 45.564335 + ], + [ + -73.47891, + 45.564479 + ], + [ + -73.480326, + 45.56555 + ], + [ + -73.4804, + 45.565606 + ], + [ + -73.480506, + 45.565687 + ], + [ + -73.482644, + 45.56731 + ], + [ + -73.482793, + 45.567251 + ], + [ + -73.482867, + 45.567188 + ], + [ + -73.483104, + 45.566981 + ], + [ + -73.483373, + 45.566762 + ], + [ + -73.483385, + 45.566753 + ], + [ + -73.484121, + 45.566154 + ], + [ + -73.484207, + 45.566086 + ], + [ + -73.484402, + 45.565933 + ], + [ + -73.4851, + 45.565418 + ], + [ + -73.485255, + 45.565303 + ], + [ + -73.485312, + 45.565245 + ], + [ + -73.485391, + 45.56515 + ], + [ + -73.485466, + 45.56506 + ], + [ + -73.485474, + 45.565044 + ], + [ + -73.485509, + 45.564975 + ], + [ + -73.485396, + 45.564912 + ], + [ + -73.485158, + 45.564813 + ], + [ + -73.484999, + 45.564714 + ], + [ + -73.484885, + 45.564619 + ], + [ + -73.484801, + 45.564538 + ], + [ + -73.484709, + 45.564453 + ], + [ + -73.484666, + 45.564381 + ], + [ + -73.484634, + 45.564327 + ], + [ + -73.484568, + 45.564188 + ], + [ + -73.484524, + 45.564039 + ], + [ + -73.484506, + 45.563909 + ], + [ + -73.48451, + 45.563769 + ], + [ + -73.484511, + 45.563679 + ], + [ + -73.484524, + 45.563621 + ], + [ + -73.484542, + 45.563553 + ], + [ + -73.484577, + 45.563486 + ], + [ + -73.484621, + 45.563405 + ], + [ + -73.484656, + 45.563337 + ], + [ + -73.484718, + 45.563256 + ], + [ + -73.484827, + 45.563148 + ], + [ + -73.485031, + 45.562928 + ], + [ + -73.485175, + 45.562787 + ], + [ + -73.485312, + 45.562653 + ], + [ + -73.485601, + 45.562362 + ], + [ + -73.48565, + 45.562312 + ], + [ + -73.486181, + 45.561776 + ], + [ + -73.48648, + 45.56147 + ], + [ + -73.486974, + 45.560989 + ], + [ + -73.487379, + 45.560714 + ], + [ + -73.487798, + 45.560517 + ], + [ + -73.488514, + 45.560143 + ], + [ + -73.489129, + 45.560629 + ], + [ + -73.489224, + 45.560705 + ], + [ + -73.489277, + 45.560747 + ], + [ + -73.491507, + 45.562509 + ], + [ + -73.491509, + 45.562511 + ], + [ + -73.491545, + 45.562543 + ], + [ + -73.491585, + 45.562559 + ], + [ + -73.4917, + 45.562606 + ], + [ + -73.491908, + 45.562298 + ], + [ + -73.49207, + 45.56203 + ], + [ + -73.492185, + 45.561871 + ], + [ + -73.492369, + 45.561588 + ], + [ + -73.492383, + 45.561567 + ], + [ + -73.492391, + 45.561555 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.494708, + 45.558377 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498677, + 45.553944 + ], + [ + -73.498726, + 45.553872 + ], + [ + -73.498813, + 45.553714 + ], + [ + -73.498895, + 45.553562 + ], + [ + -73.49895, + 45.553404 + ], + [ + -73.498964, + 45.55335 + ], + [ + -73.498988, + 45.55326 + ], + [ + -73.499026, + 45.553035 + ], + [ + -73.499051, + 45.55281 + ], + [ + -73.49911, + 45.552261 + ], + [ + -73.499127, + 45.552095 + ], + [ + -73.499159, + 45.551775 + ], + [ + -73.499199, + 45.551371 + ], + [ + -73.49924, + 45.551092 + ], + [ + -73.499284, + 45.550946 + ], + [ + -73.499366, + 45.550811 + ], + [ + -73.499487, + 45.550651 + ], + [ + -73.499678, + 45.55041 + ], + [ + -73.499747, + 45.550322 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501632, + 45.549807 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.518817, + 45.531415 + ], + [ + -73.518763, + 45.531374 + ], + [ + -73.518709, + 45.531325 + ], + [ + -73.518655, + 45.531271 + ], + [ + -73.518619, + 45.531213 + ], + [ + -73.518601, + 45.531154 + ], + [ + -73.518588, + 45.531096 + ], + [ + -73.518588, + 45.531055 + ], + [ + -73.518597, + 45.531006 + ], + [ + -73.518614, + 45.530963 + ], + [ + -73.518619, + 45.530952 + ], + [ + -73.518659, + 45.530884 + ], + [ + -73.518691, + 45.530826 + ], + [ + -73.518718, + 45.530785 + ], + [ + -73.518753, + 45.530731 + ], + [ + -73.518803, + 45.530646 + ], + [ + -73.518839, + 45.530596 + ], + [ + -73.518875, + 45.530547 + ], + [ + -73.518897, + 45.530497 + ], + [ + -73.518915, + 45.530448 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519398, + 45.526009 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 59, + "properties": { + "id": "cff718e7-2160-4904-9cab-989bdbba4acc", + "data": { + "gtfs": { + "shape_id": "20_1_A" + }, + "segments": [ + { + "distanceMeters": 277, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 93, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 547, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 358, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 331, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 429, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 829, + "travelTimeSeconds": 100 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 3331, + "travelTimeSeconds": 447 + }, + { + "distanceMeters": 691, + "travelTimeSeconds": 93 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 216, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 15101, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5348.87013053785, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.99, + "travelTimeWithoutDwellTimesSeconds": 2160, + "operatingTimeWithLayoverTimeSeconds": 2376, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2160, + "operatingSpeedWithLayoverMetersPerSecond": 6.36, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.99 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "fce7a113-2e0c-4a0f-922a-957670252ea1", + "74325106-fd46-4be2-9872-2d362cabf10d", + "97fd6b08-e74d-4e78-a89d-1a8506473313", + "78852b27-6481-4593-91bd-0a0ac5e52bda", + "ed2d86bc-14d2-40cc-9b3c-fcf430af3d76", + "8990dfff-c24e-4da1-938f-d3124a8df164", + "b6aea660-191f-4c6f-a40e-a9dfada559a0", + "2b36885d-7487-45f3-88e4-95ced22c8df0", + "5251f580-cc4c-4e24-adc5-09ece02102d8", + "1f21bce0-b8ed-434c-ade7-9416eb8a180a", + "6ad75842-382c-44ee-b7d6-fd3532656bb0", + "90aff802-7f58-4407-a26e-45f80682eeaf", + "5360d4c3-b5aa-452d-a69b-73fcfc24260f", + "210e532b-2acc-4a3e-b173-3471add098b1", + "8b3a553d-dad5-41ff-b228-80f338c4b0e0", + "25a5f82a-36a7-4a52-af2b-32a681f87765", + "231dda72-d4b5-48ae-b714-5ce9d3802c45", + "e5c2d9f4-1be6-458f-854f-8103a3048b8c", + "f1d63efc-c02d-4bb9-828b-ddc2e062546b", + "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", + "1254d090-1d68-478c-a4fc-972cd246c948", + "86d2a168-d8d6-4528-80ff-833432ddaf2d", + "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", + "bb4626e2-c410-497b-977c-2cc1b65d7b57", + "714fccbf-a3ad-45ea-8e3f-be54db61f028", + "d9f7a5bd-7489-48e7-93cf-4368a09e2676", + "2e8375c2-0f15-448a-8203-e8a29699849e", + "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", + "1e6b54ae-f11e-4726-a36f-9c4411688776", + "8ece351b-2186-4cfe-9624-9d1eacc2181d", + "5a5c6460-b74c-4fc4-8f7e-fb80243c60b0", + "9f5e5ee3-42e0-4ee9-9cdb-c35f8f1ab271", + "b15716e4-5653-476c-ba57-960f89ea42d5", + "3b263b94-6ffe-4e7f-87fe-8aae005ee725", + "97fe5a5c-667d-4ae1-9235-722d5d8246f0", + "84f7a7c0-b176-49cc-89e3-6756a3c3e4cc", + "0c748835-952e-4739-8acb-c70076e8b112", + "2c3ad537-4ff9-4b7f-9c7d-0b21ee34234d", + "48afa0b3-dc93-4216-9cf1-35b088276d02", + "8541057e-6661-45be-93ff-9ed50114b9a1", + "eace6dbd-217a-421f-9a0e-ee6e7890671f", + "84a0424b-0f35-4bd8-8109-5ac9219d5869", + "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", + "261a087b-9323-4696-9046-146a299af43d", + "66456437-f154-4a2f-a12f-2f54cf668687", + "820a9d7c-25e9-487c-9e51-cfefcb1432f7", + "4fb4515b-e129-4622-b855-89143c2fd488", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "8d78038e-b569-4acf-ae49-902bcea1ae0a", + "segments": [ + 0, + 5, + 8, + 11, + 20, + 28, + 30, + 34, + 37, + 43, + 49, + 60, + 73, + 79, + 87, + 99, + 101, + 111, + 117, + 122, + 126, + 137, + 148, + 150, + 153, + 156, + 161, + 172, + 182, + 192, + 195, + 201, + 203, + 206, + 210, + 214, + 220, + 222, + 229, + 254, + 264, + 265, + 274, + 280, + 296, + 302, + 387 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 59, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521447, + 45.524278 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.522186, + 45.529969 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.502818, + 45.54899 + ], + [ + -73.502212, + 45.54962 + ], + [ + -73.501984, + 45.549836 + ], + [ + -73.50186, + 45.549926 + ], + [ + -73.501728, + 45.550007 + ], + [ + -73.501592, + 45.550079 + ], + [ + -73.501452, + 45.550133 + ], + [ + -73.501309, + 45.550183 + ], + [ + -73.50116, + 45.550219 + ], + [ + -73.501011, + 45.55025 + ], + [ + -73.500705, + 45.550282 + ], + [ + -73.500547, + 45.550286 + ], + [ + -73.49991, + 45.550295 + ], + [ + -73.499238, + 45.550226 + ], + [ + -73.499085, + 45.550201 + ], + [ + -73.498778, + 45.550153 + ], + [ + -73.498464, + 45.550065 + ], + [ + -73.498138, + 45.54995 + ], + [ + -73.497746, + 45.549767 + ], + [ + -73.497494, + 45.54961 + ], + [ + -73.497234, + 45.549428 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.494756, + 45.548419 + ], + [ + -73.494517, + 45.548567 + ], + [ + -73.494355, + 45.548662 + ], + [ + -73.494341, + 45.548702 + ], + [ + -73.494351, + 45.54877 + ], + [ + -73.494352, + 45.548779 + ], + [ + -73.494377, + 45.548846 + ], + [ + -73.494543, + 45.548968 + ], + [ + -73.494604, + 45.549013 + ], + [ + -73.495901, + 45.550034 + ], + [ + -73.496311, + 45.550358 + ], + [ + -73.496482, + 45.550493 + ], + [ + -73.496546, + 45.550543 + ], + [ + -73.496964, + 45.550873 + ], + [ + -73.497569, + 45.551352 + ], + [ + -73.498413, + 45.552 + ], + [ + -73.498592, + 45.552072 + ], + [ + -73.498694, + 45.552086 + ], + [ + -73.498793, + 45.55209 + ], + [ + -73.498947, + 45.552086 + ], + [ + -73.49893, + 45.552473 + ], + [ + -73.498889, + 45.552801 + ], + [ + -73.498863, + 45.552968 + ], + [ + -73.498848, + 45.553058 + ], + [ + -73.498813, + 45.553251 + ], + [ + -73.498782, + 45.553386 + ], + [ + -73.498737, + 45.553535 + ], + [ + -73.498669, + 45.55371 + ], + [ + -73.498603, + 45.553836 + ], + [ + -73.498557, + 45.553912 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498163, + 45.554479 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.496108, + 45.556844 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.494563, + 45.558542 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.493672, + 45.559592 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.492547, + 45.561188 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.489863, + 45.559482 + ], + [ + -73.489762, + 45.55941 + ], + [ + -73.489659, + 45.55945 + ], + [ + -73.489645, + 45.559459 + ], + [ + -73.489132, + 45.559774 + ], + [ + -73.488633, + 45.560073 + ], + [ + -73.488514, + 45.560143 + ], + [ + -73.487798, + 45.560517 + ], + [ + -73.487379, + 45.560714 + ], + [ + -73.486974, + 45.560989 + ], + [ + -73.48648, + 45.56147 + ], + [ + -73.486181, + 45.561776 + ], + [ + -73.485707, + 45.562255 + ], + [ + -73.48565, + 45.562312 + ], + [ + -73.485312, + 45.562653 + ], + [ + -73.485175, + 45.562787 + ], + [ + -73.485031, + 45.562928 + ], + [ + -73.484827, + 45.563148 + ], + [ + -73.484718, + 45.563256 + ], + [ + -73.484656, + 45.563337 + ], + [ + -73.484621, + 45.563405 + ], + [ + -73.484577, + 45.563486 + ], + [ + -73.484542, + 45.563553 + ], + [ + -73.484524, + 45.563621 + ], + [ + -73.484511, + 45.563679 + ], + [ + -73.48451, + 45.563769 + ], + [ + -73.484506, + 45.563909 + ], + [ + -73.484524, + 45.564039 + ], + [ + -73.484568, + 45.564188 + ], + [ + -73.484634, + 45.564327 + ], + [ + -73.484666, + 45.564381 + ], + [ + -73.484709, + 45.564453 + ], + [ + -73.484801, + 45.564538 + ], + [ + -73.484885, + 45.564619 + ], + [ + -73.484999, + 45.564714 + ], + [ + -73.485158, + 45.564813 + ], + [ + -73.485396, + 45.564912 + ], + [ + -73.485396, + 45.564912 + ], + [ + -73.485509, + 45.564975 + ], + [ + -73.485466, + 45.56506 + ], + [ + -73.485391, + 45.56515 + ], + [ + -73.485312, + 45.565245 + ], + [ + -73.485255, + 45.565303 + ], + [ + -73.4851, + 45.565418 + ], + [ + -73.484619, + 45.565773 + ], + [ + -73.484402, + 45.565933 + ], + [ + -73.484121, + 45.566154 + ], + [ + -73.483104, + 45.566981 + ], + [ + -73.482902, + 45.567157 + ], + [ + -73.482867, + 45.567188 + ], + [ + -73.482793, + 45.567251 + ], + [ + -73.482573, + 45.567085 + ], + [ + -73.4815, + 45.566273 + ], + [ + -73.480444, + 45.565474 + ], + [ + -73.480073, + 45.565193 + ], + [ + -73.479545, + 45.564794 + ], + [ + -73.479021, + 45.564398 + ], + [ + -73.477591, + 45.5633 + ], + [ + -73.477496, + 45.563228 + ], + [ + -73.476819, + 45.562716 + ], + [ + -73.476461, + 45.562445 + ], + [ + -73.475938, + 45.562049 + ], + [ + -73.475231, + 45.561513 + ], + [ + -73.474585, + 45.561026 + ], + [ + -73.474429, + 45.560908 + ], + [ + -73.474349, + 45.560847 + ], + [ + -73.474262, + 45.560781 + ], + [ + -73.473051, + 45.559853 + ], + [ + -73.472951, + 45.559778 + ], + [ + -73.472285, + 45.559277 + ], + [ + -73.471768, + 45.558881 + ], + [ + -73.471239, + 45.558481 + ], + [ + -73.471028, + 45.558322 + ], + [ + -73.470903, + 45.558228 + ], + [ + -73.470033, + 45.557566 + ], + [ + -73.469575, + 45.55722 + ], + [ + -73.469106, + 45.556862 + ], + [ + -73.468985, + 45.55677 + ], + [ + -73.468826, + 45.556648 + ], + [ + -73.467509, + 45.555651 + ], + [ + -73.466771, + 45.555092 + ], + [ + -73.465456, + 45.554095 + ], + [ + -73.464874, + 45.553655 + ], + [ + -73.464766, + 45.553574 + ], + [ + -73.464651, + 45.553651 + ], + [ + -73.464574, + 45.553704 + ], + [ + -73.464479, + 45.553766 + ], + [ + -73.464098, + 45.55401 + ], + [ + -73.464055, + 45.554072 + ], + [ + -73.464004, + 45.554145 + ], + [ + -73.46269, + 45.554985 + ], + [ + -73.462576, + 45.555058 + ], + [ + -73.462207, + 45.555292 + ], + [ + -73.461991, + 45.555431 + ], + [ + -73.461963, + 45.555445 + ], + [ + -73.461925, + 45.555463 + ], + [ + -73.461827, + 45.555485 + ], + [ + -73.461719, + 45.555453 + ], + [ + -73.461661, + 45.555436 + ], + [ + -73.461529, + 45.555341 + ], + [ + -73.461522, + 45.555335 + ], + [ + -73.461353, + 45.555197 + ], + [ + -73.461155, + 45.555031 + ], + [ + -73.461091, + 45.55497 + ], + [ + -73.461041, + 45.554923 + ], + [ + -73.460904, + 45.55472 + ], + [ + -73.460843, + 45.554611 + ], + [ + -73.460476, + 45.553964 + ], + [ + -73.460127, + 45.553394 + ], + [ + -73.460074, + 45.553307 + ], + [ + -73.45984, + 45.552911 + ], + [ + -73.459717, + 45.552763 + ], + [ + -73.459495, + 45.552583 + ], + [ + -73.458867, + 45.552123 + ], + [ + -73.458274, + 45.551719 + ], + [ + -73.458174, + 45.551651 + ], + [ + -73.456334, + 45.550258 + ], + [ + -73.456272, + 45.55021 + ], + [ + -73.454359, + 45.548758 + ], + [ + -73.454302, + 45.548714 + ], + [ + -73.454269, + 45.548689 + ], + [ + -73.452378, + 45.547252 + ], + [ + -73.452368, + 45.547244 + ], + [ + -73.452243, + 45.547149 + ], + [ + -73.452859, + 45.546749 + ], + [ + -73.452912, + 45.546715 + ], + [ + -73.453255, + 45.546529 + ], + [ + -73.453306, + 45.546494 + ], + [ + -73.45375, + 45.546193 + ], + [ + -73.454098, + 45.545958 + ], + [ + -73.454427, + 45.545738 + ], + [ + -73.454536, + 45.545665 + ], + [ + -73.454687, + 45.545566 + ], + [ + -73.454901, + 45.545427 + ], + [ + -73.455048, + 45.545333 + ], + [ + -73.455094, + 45.545301 + ], + [ + -73.455158, + 45.545252 + ], + [ + -73.455247, + 45.545184 + ], + [ + -73.455332, + 45.545094 + ], + [ + -73.455461, + 45.54495 + ], + [ + -73.455559, + 45.544829 + ], + [ + -73.455739, + 45.544361 + ], + [ + -73.455815, + 45.543632 + ], + [ + -73.45593, + 45.542922 + ], + [ + -73.455948, + 45.542813 + ], + [ + -73.455971, + 45.542683 + ], + [ + -73.456034, + 45.542341 + ], + [ + -73.456127, + 45.541828 + ], + [ + -73.45622, + 45.541171 + ], + [ + -73.456332, + 45.540467 + ], + [ + -73.456345, + 45.540384 + ], + [ + -73.456347, + 45.540366 + ], + [ + -73.456509, + 45.539394 + ], + [ + -73.456509, + 45.539219 + ], + [ + -73.456656, + 45.5384 + ], + [ + -73.456667, + 45.538348 + ], + [ + -73.456674, + 45.53831 + ], + [ + -73.456716, + 45.53818 + ], + [ + -73.456753, + 45.538063 + ], + [ + -73.456485, + 45.538022 + ], + [ + -73.455441, + 45.537882 + ] + ] + }, + "id": 60, + "properties": { + "id": "4bccc599-fda2-438d-95b7-63847a5b75e0", + "data": { + "gtfs": { + "shape_id": "20_1_R" + }, + "segments": [ + { + "distanceMeters": 4753, + "travelTimeSeconds": 333 + }, + { + "distanceMeters": 567, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 337, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 386, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 577, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 374, + "travelTimeSeconds": 68 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12480, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5348.87013053785, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.32, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 7.43, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.32 + }, + "mode": "bus", + "name": "Sect. B Vieux-Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "87d520cc-f77e-449c-88c9-cee424bbc329", + "c879a803-d58b-4487-8291-391e9b516d3c", + "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", + "261a087b-9323-4696-9046-146a299af43d", + "0bcb0e97-db40-44bb-afe9-f6212a5b6387", + "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", + "acd343da-a23f-40aa-9f8e-9e9ed5b60bd1", + "8541057e-6661-45be-93ff-9ed50114b9a1", + "48afa0b3-dc93-4216-9cf1-35b088276d02", + "2c3ad537-4ff9-4b7f-9c7d-0b21ee34234d", + "056bf57a-8baa-407d-9c70-a2dcb2e36aea", + "08472942-a2a0-45ef-be22-2dc8587875b6", + "768e4b50-abe9-456e-9460-90d8cbf65940", + "b15716e4-5653-476c-ba57-960f89ea42d5", + "2332d398-d991-4d3f-9d67-38ab4930ac25", + "8ece351b-2186-4cfe-9624-9d1eacc2181d", + "1e6b54ae-f11e-4726-a36f-9c4411688776", + "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", + "2e8375c2-0f15-448a-8203-e8a29699849e", + "d9f7a5bd-7489-48e7-93cf-4368a09e2676", + "714fccbf-a3ad-45ea-8e3f-be54db61f028", + "bb4626e2-c410-497b-977c-2cc1b65d7b57", + "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", + "19d70945-d3db-430f-90e2-ad67901fda8d", + "f8690123-add8-4e85-bbf6-f84c4b712589", + "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", + "fce7a113-2e0c-4a0f-922a-957670252ea1" + ], + "stops": [], + "line_id": "8d78038e-b569-4acf-ae49-902bcea1ae0a", + "segments": [ + 0, + 85, + 107, + 109, + 112, + 114, + 116, + 123, + 130, + 155, + 162, + 166, + 173, + 178, + 182, + 189, + 194, + 206, + 212, + 226, + 232, + 234, + 236, + 240, + 248, + 261, + 267 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 60, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521447, + 45.524278 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519379, + 45.523634 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519186, + 45.526809 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517663, + 45.527363 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517465, + 45.528168 + ], + [ + -73.517458, + 45.528249 + ], + [ + -73.517471, + 45.528385 + ], + [ + -73.517504, + 45.528565 + ], + [ + -73.517516, + 45.528652 + ], + [ + -73.517553, + 45.52877 + ], + [ + -73.517635, + 45.529002 + ], + [ + -73.517693, + 45.529249 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.51956, + 45.531975 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501301, + 45.549942 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500307, + 45.550075 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.499756, + 45.550039 + ], + [ + -73.499564, + 45.550308 + ], + [ + -73.499518, + 45.550373 + ], + [ + -73.499348, + 45.550589 + ], + [ + -73.499249, + 45.550718 + ], + [ + -73.499149, + 45.550849 + ], + [ + -73.49909, + 45.551 + ], + [ + -73.499052, + 45.551292 + ], + [ + -73.498992, + 45.551747 + ], + [ + -73.498947, + 45.552086 + ], + [ + -73.49893, + 45.552473 + ], + [ + -73.498889, + 45.552801 + ], + [ + -73.498863, + 45.552968 + ], + [ + -73.498848, + 45.553058 + ], + [ + -73.498813, + 45.553251 + ], + [ + -73.498782, + 45.553386 + ], + [ + -73.498737, + 45.553535 + ], + [ + -73.498669, + 45.55371 + ], + [ + -73.498603, + 45.553836 + ], + [ + -73.498557, + 45.553912 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498166, + 45.554476 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.496104, + 45.556848 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.494566, + 45.558538 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.493669, + 45.559597 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.492544, + 45.561193 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.489863, + 45.559482 + ], + [ + -73.489762, + 45.55941 + ], + [ + -73.489659, + 45.55945 + ], + [ + -73.489645, + 45.559459 + ], + [ + -73.489132, + 45.559774 + ], + [ + -73.488636, + 45.56007 + ], + [ + -73.488514, + 45.560143 + ], + [ + -73.487798, + 45.560517 + ], + [ + -73.487379, + 45.560714 + ], + [ + -73.486974, + 45.560989 + ], + [ + -73.48648, + 45.56147 + ], + [ + -73.486181, + 45.561776 + ], + [ + -73.485709, + 45.562253 + ], + [ + -73.48565, + 45.562312 + ], + [ + -73.485312, + 45.562653 + ], + [ + -73.485175, + 45.562787 + ], + [ + -73.485031, + 45.562928 + ], + [ + -73.484827, + 45.563148 + ], + [ + -73.484718, + 45.563256 + ], + [ + -73.484656, + 45.563337 + ], + [ + -73.484621, + 45.563405 + ], + [ + -73.484577, + 45.563486 + ], + [ + -73.484542, + 45.563553 + ], + [ + -73.484524, + 45.563621 + ], + [ + -73.484511, + 45.563679 + ], + [ + -73.48451, + 45.563769 + ], + [ + -73.484506, + 45.563909 + ], + [ + -73.484524, + 45.564039 + ], + [ + -73.484568, + 45.564188 + ], + [ + -73.484634, + 45.564327 + ], + [ + -73.484666, + 45.564381 + ], + [ + -73.484709, + 45.564453 + ], + [ + -73.484801, + 45.564538 + ], + [ + -73.484885, + 45.564619 + ], + [ + -73.484999, + 45.564714 + ], + [ + -73.485158, + 45.564813 + ], + [ + -73.485396, + 45.564912 + ], + [ + -73.485403, + 45.564916 + ], + [ + -73.485509, + 45.564975 + ], + [ + -73.485466, + 45.56506 + ], + [ + -73.485391, + 45.56515 + ], + [ + -73.485312, + 45.565245 + ], + [ + -73.485255, + 45.565303 + ], + [ + -73.4851, + 45.565418 + ], + [ + -73.484613, + 45.565778 + ], + [ + -73.484402, + 45.565933 + ], + [ + -73.484121, + 45.566154 + ], + [ + -73.483104, + 45.566981 + ], + [ + -73.482897, + 45.567162 + ], + [ + -73.482867, + 45.567188 + ], + [ + -73.482793, + 45.567251 + ], + [ + -73.482573, + 45.567085 + ], + [ + -73.4815, + 45.566273 + ], + [ + -73.480444, + 45.565474 + ], + [ + -73.480073, + 45.565193 + ], + [ + -73.479538, + 45.564789 + ], + [ + -73.479021, + 45.564398 + ], + [ + -73.477591, + 45.5633 + ], + [ + -73.477496, + 45.563228 + ], + [ + -73.476819, + 45.562716 + ], + [ + -73.476463, + 45.562446 + ], + [ + -73.475938, + 45.562049 + ], + [ + -73.475231, + 45.561513 + ], + [ + -73.474585, + 45.561026 + ], + [ + -73.474431, + 45.560909 + ], + [ + -73.474349, + 45.560847 + ], + [ + -73.474262, + 45.560781 + ], + [ + -73.473051, + 45.559853 + ], + [ + -73.472951, + 45.559778 + ], + [ + -73.472285, + 45.559277 + ], + [ + -73.471768, + 45.558881 + ], + [ + -73.47124, + 45.558482 + ], + [ + -73.471028, + 45.558322 + ], + [ + -73.470903, + 45.558228 + ], + [ + -73.470033, + 45.557566 + ], + [ + -73.469575, + 45.55722 + ], + [ + -73.469108, + 45.556864 + ], + [ + -73.468985, + 45.55677 + ], + [ + -73.468826, + 45.556648 + ], + [ + -73.467509, + 45.555651 + ], + [ + -73.466771, + 45.555092 + ], + [ + -73.465456, + 45.554095 + ], + [ + -73.464874, + 45.553655 + ], + [ + -73.464766, + 45.553574 + ], + [ + -73.464651, + 45.553651 + ], + [ + -73.464574, + 45.553704 + ], + [ + -73.464479, + 45.553766 + ], + [ + -73.464098, + 45.55401 + ], + [ + -73.464051, + 45.554079 + ], + [ + -73.464004, + 45.554145 + ], + [ + -73.46269, + 45.554985 + ], + [ + -73.462576, + 45.555058 + ], + [ + -73.462207, + 45.555292 + ], + [ + -73.461991, + 45.555431 + ], + [ + -73.461954, + 45.555449 + ], + [ + -73.461925, + 45.555463 + ], + [ + -73.461827, + 45.555485 + ], + [ + -73.461719, + 45.555453 + ], + [ + -73.461661, + 45.555436 + ], + [ + -73.461529, + 45.555341 + ], + [ + -73.461522, + 45.555335 + ], + [ + -73.461353, + 45.555197 + ], + [ + -73.461155, + 45.555031 + ], + [ + -73.461091, + 45.55497 + ], + [ + -73.461041, + 45.554923 + ], + [ + -73.460904, + 45.55472 + ], + [ + -73.460843, + 45.554611 + ], + [ + -73.460476, + 45.553964 + ], + [ + -73.460128, + 45.553395 + ], + [ + -73.460074, + 45.553307 + ], + [ + -73.45984, + 45.552911 + ], + [ + -73.459717, + 45.552763 + ], + [ + -73.459495, + 45.552583 + ], + [ + -73.458867, + 45.552123 + ], + [ + -73.458275, + 45.551719 + ], + [ + -73.458174, + 45.551651 + ], + [ + -73.456335, + 45.550258 + ], + [ + -73.456272, + 45.55021 + ], + [ + -73.454351, + 45.548752 + ], + [ + -73.454302, + 45.548714 + ], + [ + -73.454269, + 45.548689 + ], + [ + -73.452378, + 45.547252 + ], + [ + -73.45236, + 45.547238 + ], + [ + -73.452243, + 45.547149 + ], + [ + -73.452859, + 45.546749 + ], + [ + -73.452912, + 45.546715 + ], + [ + -73.453255, + 45.546529 + ], + [ + -73.453306, + 45.546494 + ], + [ + -73.45375, + 45.546193 + ], + [ + -73.454098, + 45.545958 + ], + [ + -73.454426, + 45.545739 + ], + [ + -73.454536, + 45.545665 + ], + [ + -73.454687, + 45.545566 + ], + [ + -73.454901, + 45.545427 + ], + [ + -73.455048, + 45.545333 + ], + [ + -73.455094, + 45.545301 + ], + [ + -73.455158, + 45.545252 + ], + [ + -73.455247, + 45.545184 + ], + [ + -73.455332, + 45.545094 + ], + [ + -73.455461, + 45.54495 + ], + [ + -73.455559, + 45.544829 + ], + [ + -73.455739, + 45.544361 + ], + [ + -73.455815, + 45.543632 + ], + [ + -73.45593, + 45.542923 + ], + [ + -73.455948, + 45.542813 + ], + [ + -73.455971, + 45.542683 + ], + [ + -73.456034, + 45.542341 + ], + [ + -73.456127, + 45.541828 + ], + [ + -73.45622, + 45.541171 + ], + [ + -73.456333, + 45.540458 + ], + [ + -73.456345, + 45.540384 + ], + [ + -73.456347, + 45.540366 + ], + [ + -73.456509, + 45.539394 + ], + [ + -73.456509, + 45.539219 + ], + [ + -73.456656, + 45.5384 + ], + [ + -73.456667, + 45.538348 + ], + [ + -73.456674, + 45.53831 + ], + [ + -73.456716, + 45.53818 + ], + [ + -73.456753, + 45.538063 + ], + [ + -73.456485, + 45.538022 + ], + [ + -73.455441, + 45.537882 + ] + ] + }, + "id": 61, + "properties": { + "id": "9649306d-b23e-4c4b-9ae1-fc4e14fa31b5", + "data": { + "gtfs": { + "shape_id": "20_2_R" + }, + "segments": [ + { + "distanceMeters": 4168, + "travelTimeSeconds": 480 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 337, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 386, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 578, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 68 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11890, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5348.87013053785, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.83, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 6.19, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.83 + }, + "mode": "bus", + "name": "Sect. B Vieux-Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "09bf17cd-9db1-41e3-b993-62146cb91158", + "bc056e84-1f20-4604-aad7-40427c6685a6", + "c879a803-d58b-4487-8291-391e9b516d3c", + "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", + "261a087b-9323-4696-9046-146a299af43d", + "0bcb0e97-db40-44bb-afe9-f6212a5b6387", + "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", + "acd343da-a23f-40aa-9f8e-9e9ed5b60bd1", + "8541057e-6661-45be-93ff-9ed50114b9a1", + "48afa0b3-dc93-4216-9cf1-35b088276d02", + "2c3ad537-4ff9-4b7f-9c7d-0b21ee34234d", + "056bf57a-8baa-407d-9c70-a2dcb2e36aea", + "08472942-a2a0-45ef-be22-2dc8587875b6", + "768e4b50-abe9-456e-9460-90d8cbf65940", + "b15716e4-5653-476c-ba57-960f89ea42d5", + "2332d398-d991-4d3f-9d67-38ab4930ac25", + "8ece351b-2186-4cfe-9624-9d1eacc2181d", + "1e6b54ae-f11e-4726-a36f-9c4411688776", + "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", + "2e8375c2-0f15-448a-8203-e8a29699849e", + "d9f7a5bd-7489-48e7-93cf-4368a09e2676", + "714fccbf-a3ad-45ea-8e3f-be54db61f028", + "bb4626e2-c410-497b-977c-2cc1b65d7b57", + "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", + "19d70945-d3db-430f-90e2-ad67901fda8d", + "f8690123-add8-4e85-bbf6-f84c4b712589", + "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", + "fce7a113-2e0c-4a0f-922a-957670252ea1" + ], + "stops": [], + "line_id": "8d78038e-b569-4acf-ae49-902bcea1ae0a", + "segments": [ + 0, + 115, + 126, + 140, + 142, + 145, + 147, + 149, + 156, + 163, + 188, + 195, + 199, + 206, + 211, + 215, + 222, + 227, + 239, + 245, + 259, + 265, + 267, + 269, + 273, + 281, + 294, + 300 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 61, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.455441, + 45.537882 + ], + [ + -73.455036, + 45.537828 + ], + [ + -73.454083, + 45.537706 + ], + [ + -73.453056, + 45.537575 + ], + [ + -73.453038, + 45.53771 + ], + [ + -73.452904, + 45.538462 + ], + [ + -73.452804, + 45.539091 + ], + [ + -73.452717, + 45.539726 + ], + [ + -73.452594, + 45.540342 + ], + [ + -73.45227, + 45.540954 + ], + [ + -73.452075, + 45.541179 + ], + [ + -73.45197, + 45.541296 + ], + [ + -73.451796, + 45.541426 + ], + [ + -73.451437, + 45.541633 + ], + [ + -73.451233, + 45.541718 + ], + [ + -73.450967, + 45.541781 + ], + [ + -73.450741, + 45.541822 + ], + [ + -73.450524, + 45.54183 + ], + [ + -73.450532, + 45.54192 + ], + [ + -73.450512, + 45.542105 + ], + [ + -73.450477, + 45.54224 + ], + [ + -73.449919, + 45.542604 + ], + [ + -73.449268, + 45.543031 + ], + [ + -73.448896, + 45.543268 + ], + [ + -73.448583, + 45.543467 + ], + [ + -73.447976, + 45.542999 + ], + [ + -73.447904, + 45.542944 + ], + [ + -73.447355, + 45.542526 + ], + [ + -73.446814, + 45.542135 + ], + [ + -73.446733, + 45.542076 + ], + [ + -73.446124, + 45.541621 + ], + [ + -73.445503, + 45.54114 + ], + [ + -73.444511, + 45.54041 + ], + [ + -73.444375, + 45.540325 + ], + [ + -73.444216, + 45.540244 + ], + [ + -73.44408, + 45.540185 + ], + [ + -73.44377, + 45.540109 + ], + [ + -73.4435, + 45.540041 + ], + [ + -73.44267, + 45.539892 + ], + [ + -73.442456, + 45.539852 + ], + [ + -73.442205, + 45.539784 + ], + [ + -73.442001, + 45.539712 + ], + [ + -73.441896, + 45.53968 + ], + [ + -73.441646, + 45.539559 + ], + [ + -73.44151, + 45.539487 + ], + [ + -73.441387, + 45.539397 + ], + [ + -73.441242, + 45.539293 + ], + [ + -73.441122, + 45.539153 + ], + [ + -73.441004, + 45.538991 + ], + [ + -73.440944, + 45.538829 + ], + [ + -73.440917, + 45.538748 + ], + [ + -73.440902, + 45.5386 + ], + [ + -73.440899, + 45.538573 + ], + [ + -73.440901, + 45.538551 + ], + [ + -73.440907, + 45.538487 + ], + [ + -73.440917, + 45.538393 + ], + [ + -73.440957, + 45.538285 + ], + [ + -73.441023, + 45.538164 + ], + [ + -73.441098, + 45.538047 + ], + [ + -73.4412, + 45.537934 + ], + [ + -73.441569, + 45.537651 + ], + [ + -73.441939, + 45.537372 + ], + [ + -73.442459, + 45.537008 + ], + [ + -73.442686, + 45.536815 + ], + [ + -73.442789, + 45.536666 + ], + [ + -73.442839, + 45.536594 + ], + [ + -73.44311, + 45.535924 + ], + [ + -73.443379, + 45.535204 + ], + [ + -73.443894, + 45.534372 + ], + [ + -73.443931, + 45.534305 + ], + [ + -73.443989, + 45.534201 + ], + [ + -73.444489, + 45.534346 + ], + [ + -73.444931, + 45.53453 + ], + [ + -73.445118, + 45.534611 + ], + [ + -73.445446, + 45.534818 + ], + [ + -73.445653, + 45.534958 + ], + [ + -73.445829, + 45.535111 + ], + [ + -73.446079, + 45.535349 + ], + [ + -73.44617, + 45.535435 + ], + [ + -73.446275, + 45.535528 + ], + [ + -73.446362, + 45.535606 + ], + [ + -73.446623, + 45.535795 + ], + [ + -73.446833, + 45.535908 + ], + [ + -73.447009, + 45.53598 + ], + [ + -73.447135, + 45.536029 + ], + [ + -73.447379, + 45.536097 + ], + [ + -73.448323, + 45.536304 + ], + [ + -73.448623, + 45.536399 + ], + [ + -73.448898, + 45.536561 + ], + [ + -73.450563, + 45.537556 + ], + [ + -73.450772, + 45.537669 + ], + [ + -73.450923, + 45.537718 + ], + [ + -73.450952, + 45.537727 + ], + [ + -73.451166, + 45.537772 + ], + [ + -73.451401, + 45.537795 + ], + [ + -73.451627, + 45.537786 + ], + [ + -73.452059, + 45.537741 + ], + [ + -73.452451, + 45.537712 + ], + [ + -73.452711, + 45.537692 + ], + [ + -73.452931, + 45.537697 + ], + [ + -73.453038, + 45.53771 + ], + [ + -73.454051, + 45.537823 + ], + [ + -73.455005, + 45.537945 + ], + [ + -73.455965, + 45.538077 + ], + [ + -73.456445, + 45.538144 + ], + [ + -73.456357, + 45.53853 + ], + [ + -73.456221, + 45.539372 + ], + [ + -73.456144, + 45.539984 + ], + [ + -73.456076, + 45.540361 + ], + [ + -73.455916, + 45.541266 + ], + [ + -73.455834, + 45.54181 + ], + [ + -73.455702, + 45.542678 + ], + [ + -73.455523, + 45.543849 + ], + [ + -73.455509, + 45.543938 + ], + [ + -73.455505, + 45.543968 + ], + [ + -73.455433, + 45.54441 + ], + [ + -73.455289, + 45.544748 + ], + [ + -73.455178, + 45.54491 + ], + [ + -73.455067, + 45.545031 + ], + [ + -73.454985, + 45.545117 + ], + [ + -73.45488, + 45.545202 + ], + [ + -73.454712, + 45.545301 + ], + [ + -73.454517, + 45.54544 + ], + [ + -73.454362, + 45.54553 + ], + [ + -73.454039, + 45.545719 + ], + [ + -73.453554, + 45.546052 + ], + [ + -73.453387, + 45.546196 + ], + [ + -73.453186, + 45.546448 + ], + [ + -73.45304, + 45.546592 + ], + [ + -73.452912, + 45.546715 + ], + [ + -73.452859, + 45.546749 + ], + [ + -73.452689, + 45.546859 + ], + [ + -73.452243, + 45.547149 + ], + [ + -73.454111, + 45.548569 + ], + [ + -73.454269, + 45.548689 + ], + [ + -73.454302, + 45.548714 + ], + [ + -73.456272, + 45.55021 + ], + [ + -73.456869, + 45.550663 + ], + [ + -73.458174, + 45.551651 + ], + [ + -73.458867, + 45.552123 + ], + [ + -73.459495, + 45.552583 + ], + [ + -73.459717, + 45.552763 + ], + [ + -73.45984, + 45.552911 + ], + [ + -73.460074, + 45.553307 + ], + [ + -73.460476, + 45.553964 + ], + [ + -73.460843, + 45.554611 + ], + [ + -73.460904, + 45.55472 + ], + [ + -73.461041, + 45.554923 + ], + [ + -73.461091, + 45.55497 + ], + [ + -73.461155, + 45.555031 + ], + [ + -73.461353, + 45.555197 + ], + [ + -73.461455, + 45.555281 + ], + [ + -73.461529, + 45.555341 + ], + [ + -73.461661, + 45.555436 + ], + [ + -73.461719, + 45.555453 + ], + [ + -73.461827, + 45.555485 + ], + [ + -73.461925, + 45.555463 + ], + [ + -73.461985, + 45.555435 + ], + [ + -73.461991, + 45.555431 + ], + [ + -73.462207, + 45.555292 + ], + [ + -73.462576, + 45.555058 + ], + [ + -73.46269, + 45.554985 + ], + [ + -73.464004, + 45.554145 + ], + [ + -73.464203, + 45.554087 + ], + [ + -73.464314, + 45.554019 + ], + [ + -73.464675, + 45.55379 + ], + [ + -73.464758, + 45.553732 + ], + [ + -73.466649, + 45.555169 + ], + [ + -73.467394, + 45.555735 + ], + [ + -73.468683, + 45.556715 + ], + [ + -73.468707, + 45.556734 + ], + [ + -73.468863, + 45.556851 + ], + [ + -73.468884, + 45.556867 + ], + [ + -73.469456, + 45.557296 + ], + [ + -73.469905, + 45.557643 + ], + [ + -73.470793, + 45.5583 + ], + [ + -73.470906, + 45.55839 + ], + [ + -73.471187, + 45.558615 + ], + [ + -73.471642, + 45.558966 + ], + [ + -73.472161, + 45.559358 + ], + [ + -73.472928, + 45.559934 + ], + [ + -73.473986, + 45.560742 + ], + [ + -73.474224, + 45.560924 + ], + [ + -73.475111, + 45.561594 + ], + [ + -73.475818, + 45.56213 + ], + [ + -73.47747, + 45.563381 + ], + [ + -73.478124, + 45.563885 + ], + [ + -73.47891, + 45.564479 + ], + [ + -73.480158, + 45.565423 + ], + [ + -73.480326, + 45.56555 + ], + [ + -73.4804, + 45.565606 + ], + [ + -73.482644, + 45.56731 + ], + [ + -73.482793, + 45.567251 + ], + [ + -73.482867, + 45.567188 + ], + [ + -73.483104, + 45.566981 + ], + [ + -73.483373, + 45.566762 + ], + [ + -73.484121, + 45.566154 + ], + [ + -73.484402, + 45.565933 + ], + [ + -73.4851, + 45.565418 + ], + [ + -73.485255, + 45.565303 + ], + [ + -73.485312, + 45.565245 + ], + [ + -73.485391, + 45.56515 + ], + [ + -73.485466, + 45.56506 + ], + [ + -73.485509, + 45.564975 + ], + [ + -73.485396, + 45.564912 + ], + [ + -73.485158, + 45.564813 + ], + [ + -73.484999, + 45.564714 + ], + [ + -73.484885, + 45.564619 + ], + [ + -73.484801, + 45.564538 + ], + [ + -73.484709, + 45.564453 + ], + [ + -73.484666, + 45.564381 + ], + [ + -73.484634, + 45.564327 + ], + [ + -73.484568, + 45.564188 + ], + [ + -73.484524, + 45.564039 + ], + [ + -73.484506, + 45.563909 + ], + [ + -73.48451, + 45.563769 + ], + [ + -73.484511, + 45.563679 + ], + [ + -73.484524, + 45.563621 + ], + [ + -73.484542, + 45.563553 + ], + [ + -73.484577, + 45.563486 + ], + [ + -73.484621, + 45.563405 + ], + [ + -73.484656, + 45.563337 + ], + [ + -73.484718, + 45.563256 + ], + [ + -73.484827, + 45.563148 + ], + [ + -73.485031, + 45.562928 + ], + [ + -73.485175, + 45.562787 + ], + [ + -73.485312, + 45.562653 + ], + [ + -73.48565, + 45.562312 + ], + [ + -73.486181, + 45.561776 + ], + [ + -73.48648, + 45.56147 + ], + [ + -73.486974, + 45.560989 + ], + [ + -73.487215, + 45.560825 + ], + [ + -73.487379, + 45.560714 + ], + [ + -73.487798, + 45.560517 + ], + [ + -73.488514, + 45.560143 + ], + [ + -73.489129, + 45.560629 + ], + [ + -73.489224, + 45.560705 + ], + [ + -73.491509, + 45.562511 + ], + [ + -73.491545, + 45.562543 + ], + [ + -73.491585, + 45.562559 + ], + [ + -73.4917, + 45.562606 + ], + [ + -73.491908, + 45.562298 + ], + [ + -73.49207, + 45.56203 + ], + [ + -73.492185, + 45.561871 + ], + [ + -73.492369, + 45.561588 + ], + [ + -73.492391, + 45.561555 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.496046, + 45.556911 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498677, + 45.553944 + ], + [ + -73.498726, + 45.553872 + ], + [ + -73.498813, + 45.553714 + ], + [ + -73.498895, + 45.553562 + ], + [ + -73.49895, + 45.553404 + ], + [ + -73.498964, + 45.55335 + ], + [ + -73.498988, + 45.55326 + ], + [ + -73.499026, + 45.553035 + ], + [ + -73.499051, + 45.55281 + ], + [ + -73.49911, + 45.552261 + ], + [ + -73.499127, + 45.552095 + ], + [ + -73.499199, + 45.551371 + ], + [ + -73.49924, + 45.551092 + ], + [ + -73.499284, + 45.550946 + ], + [ + -73.499366, + 45.550811 + ], + [ + -73.499487, + 45.550651 + ], + [ + -73.499747, + 45.550322 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.500926, + 45.550031 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501632, + 45.549807 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.50939, + 45.541962 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515511, + 45.53721 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.518817, + 45.531415 + ], + [ + -73.518763, + 45.531374 + ], + [ + -73.518709, + 45.531325 + ], + [ + -73.518655, + 45.531271 + ], + [ + -73.518619, + 45.531213 + ], + [ + -73.518601, + 45.531154 + ], + [ + -73.518588, + 45.531096 + ], + [ + -73.518588, + 45.531055 + ], + [ + -73.518597, + 45.531006 + ], + [ + -73.518614, + 45.530963 + ], + [ + -73.518619, + 45.530952 + ], + [ + -73.518659, + 45.530884 + ], + [ + -73.518691, + 45.530826 + ], + [ + -73.518718, + 45.530785 + ], + [ + -73.518753, + 45.530731 + ], + [ + -73.518803, + 45.530646 + ], + [ + -73.518839, + 45.530596 + ], + [ + -73.518875, + 45.530547 + ], + [ + -73.518897, + 45.530497 + ], + [ + -73.518915, + 45.530448 + ], + [ + -73.518937, + 45.530356 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 62, + "properties": { + "id": "8d37262d-b185-4c58-9a22-f51c365da62d", + "data": { + "gtfs": { + "shape_id": "20_1_A" + }, + "segments": [ + { + "distanceMeters": 1197, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 640, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 540, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 813, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 968, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 402, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 579, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 635, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 791, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 610, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 709, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 1188, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 1219, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 916, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 1124, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 713, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 886, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 1180, + "travelTimeSeconds": 38 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 15101, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 73.36646211490445, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 31.46, + "travelTimeWithoutDwellTimesSeconds": 480, + "operatingTimeWithLayoverTimeSeconds": 660, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 480, + "operatingSpeedWithLayoverMetersPerSecond": 22.88, + "averageSpeedWithoutDwellTimesMetersPerSecond": 31.46 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "fce7a113-2e0c-4a0f-922a-957670252ea1", + "74325106-fd46-4be2-9872-2d362cabf10d", + "97fd6b08-e74d-4e78-a89d-1a8506473313", + "78852b27-6481-4593-91bd-0a0ac5e52bda", + "ed2d86bc-14d2-40cc-9b3c-fcf430af3d76", + "8990dfff-c24e-4da1-938f-d3124a8df164", + "b6aea660-191f-4c6f-a40e-a9dfada559a0", + "2b36885d-7487-45f3-88e4-95ced22c8df0", + "5251f580-cc4c-4e24-adc5-09ece02102d8", + "1f21bce0-b8ed-434c-ade7-9416eb8a180a", + "6ad75842-382c-44ee-b7d6-fd3532656bb0", + "90aff802-7f58-4407-a26e-45f80682eeaf", + "5360d4c3-b5aa-452d-a69b-73fcfc24260f", + "210e532b-2acc-4a3e-b173-3471add098b1", + "8b3a553d-dad5-41ff-b228-80f338c4b0e0", + "25a5f82a-36a7-4a52-af2b-32a681f87765", + "231dda72-d4b5-48ae-b714-5ce9d3802c45", + "e5c2d9f4-1be6-458f-854f-8103a3048b8c", + "f1d63efc-c02d-4bb9-828b-ddc2e062546b" + ], + "stops": [], + "line_id": "8d78038e-b569-4acf-ae49-902bcea1ae0a", + "segments": [ + 0, + 28, + 53, + 69, + 97, + 114, + 131, + 137, + 151, + 169, + 181, + 188, + 231, + 251, + 276, + 296, + 310, + 348 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 62, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521486, + 45.523819 + ], + [ + -73.521481, + 45.523874 + ], + [ + -73.52149, + 45.523892 + ], + [ + -73.521509, + 45.523906 + ], + [ + -73.521542, + 45.523919 + ], + [ + -73.521581, + 45.523923 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509952, + 45.515502 + ], + [ + -73.509485, + 45.515357 + ], + [ + -73.509376, + 45.515323 + ], + [ + -73.508692, + 45.515143 + ], + [ + -73.508296, + 45.51503 + ], + [ + -73.507817, + 45.514868 + ], + [ + -73.507704, + 45.514841 + ], + [ + -73.507464, + 45.514765 + ], + [ + -73.506516, + 45.514432 + ], + [ + -73.505464, + 45.514054 + ], + [ + -73.505166, + 45.51396 + ], + [ + -73.504861, + 45.513863 + ], + [ + -73.504451, + 45.513734 + ], + [ + -73.50434, + 45.513699 + ], + [ + -73.504259, + 45.513672 + ], + [ + -73.503369, + 45.513397 + ], + [ + -73.502433, + 45.51315 + ], + [ + -73.502048, + 45.513078 + ], + [ + -73.501411, + 45.512898 + ], + [ + -73.50108, + 45.512799 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.494088, + 45.51035 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488541, + 45.503629 + ], + [ + -73.48831, + 45.50321 + ], + [ + -73.48823, + 45.503039 + ], + [ + -73.488092, + 45.502693 + ], + [ + -73.487989, + 45.502369 + ], + [ + -73.487959, + 45.502275 + ], + [ + -73.487746, + 45.501478 + ], + [ + -73.487613, + 45.501033 + ], + [ + -73.487509, + 45.500686 + ], + [ + -73.487464, + 45.50056 + ], + [ + -73.487346, + 45.500232 + ], + [ + -73.487139, + 45.499795 + ], + [ + -73.486985, + 45.499512 + ], + [ + -73.486818, + 45.499233 + ], + [ + -73.48673, + 45.4991 + ], + [ + -73.486631, + 45.498949 + ], + [ + -73.486428, + 45.498675 + ], + [ + -73.486216, + 45.498401 + ], + [ + -73.486166, + 45.498342 + ], + [ + -73.486, + 45.498149 + ], + [ + -73.485576, + 45.497708 + ], + [ + -73.485299, + 45.497456 + ], + [ + -73.485251, + 45.497415 + ], + [ + -73.484899, + 45.497123 + ], + [ + -73.484387, + 45.49674 + ], + [ + -73.484357, + 45.496722 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.483872, + 45.497077 + ], + [ + -73.483869, + 45.49708 + ], + [ + -73.483504, + 45.497347 + ], + [ + -73.483382, + 45.497433 + ], + [ + -73.483338, + 45.497469 + ], + [ + -73.483277, + 45.497509 + ], + [ + -73.482985, + 45.497707 + ], + [ + -73.482636, + 45.497941 + ], + [ + -73.482124, + 45.49831 + ], + [ + -73.481899, + 45.498472 + ], + [ + -73.481589, + 45.498697 + ], + [ + -73.481169, + 45.498994 + ], + [ + -73.480847, + 45.499223 + ], + [ + -73.480477, + 45.499488 + ], + [ + -73.480326, + 45.499398 + ], + [ + -73.47971, + 45.498993 + ], + [ + -73.479492, + 45.498848 + ], + [ + -73.479271, + 45.498701 + ], + [ + -73.478967, + 45.498498 + ], + [ + -73.4786, + 45.498251 + ], + [ + -73.478257, + 45.498026 + ], + [ + -73.478178, + 45.497976 + ], + [ + -73.477789, + 45.49772 + ], + [ + -73.477439, + 45.49749 + ], + [ + -73.477062, + 45.497238 + ], + [ + -73.476713, + 45.497004 + ], + [ + -73.47632, + 45.496748 + ], + [ + -73.475974, + 45.496523 + ], + [ + -73.475747, + 45.496374 + ], + [ + -73.475492, + 45.496208 + ], + [ + -73.475346, + 45.496118 + ], + [ + -73.475245, + 45.49605 + ], + [ + -73.474879, + 45.495798 + ], + [ + -73.474517, + 45.49556 + ], + [ + -73.474138, + 45.495312 + ], + [ + -73.473858, + 45.495132 + ], + [ + -73.473385, + 45.494817 + ], + [ + -73.473259, + 45.49474 + ], + [ + -73.473016, + 45.494578 + ], + [ + -73.472769, + 45.494416 + ], + [ + -73.472367, + 45.494146 + ], + [ + -73.471949, + 45.493867 + ], + [ + -73.471614, + 45.493642 + ], + [ + -73.471224, + 45.49339 + ], + [ + -73.470867, + 45.493152 + ], + [ + -73.470545, + 45.492931 + ], + [ + -73.470296, + 45.492769 + ], + [ + -73.469959, + 45.492553 + ], + [ + -73.469723, + 45.492395 + ], + [ + -73.469303, + 45.492121 + ], + [ + -73.469006, + 45.491923 + ], + [ + -73.468656, + 45.491698 + ], + [ + -73.468573, + 45.49163 + ], + [ + -73.468166, + 45.49136 + ], + [ + -73.468094, + 45.49132 + ], + [ + -73.468029, + 45.491284 + ], + [ + -73.467697, + 45.491059 + ], + [ + -73.467397, + 45.490865 + ], + [ + -73.466889, + 45.490518 + ], + [ + -73.466277, + 45.490113 + ], + [ + -73.466175, + 45.490041 + ], + [ + -73.466087, + 45.489983 + ], + [ + -73.465434, + 45.48956 + ], + [ + -73.46482, + 45.489155 + ], + [ + -73.464595, + 45.489001 + ], + [ + -73.464379, + 45.488857 + ], + [ + -73.46422, + 45.488754 + ], + [ + -73.464097, + 45.488673 + ], + [ + -73.463537, + 45.488299 + ], + [ + -73.463291, + 45.488146 + ], + [ + -73.463053, + 45.487989 + ], + [ + -73.462983, + 45.487944 + ], + [ + -73.46278, + 45.487809 + ], + [ + -73.462116, + 45.487367 + ], + [ + -73.461292, + 45.486823 + ], + [ + -73.461219, + 45.486774 + ], + [ + -73.460376, + 45.486211 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.45937, + 45.485544 + ], + [ + -73.458995, + 45.485292 + ], + [ + -73.458472, + 45.484946 + ], + [ + -73.45799, + 45.484621 + ], + [ + -73.457564, + 45.484333 + ], + [ + -73.457447, + 45.484256 + ], + [ + -73.456334, + 45.483523 + ], + [ + -73.456426, + 45.48346 + ], + [ + -73.45662, + 45.483329 + ], + [ + -73.456963, + 45.483096 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45645, + 45.482799 + ], + [ + -73.455886, + 45.482623 + ], + [ + -73.455654, + 45.482542 + ], + [ + -73.455462, + 45.482465 + ], + [ + -73.455276, + 45.482384 + ], + [ + -73.455009, + 45.482272 + ], + [ + -73.454605, + 45.482087 + ], + [ + -73.454381, + 45.481984 + ], + [ + -73.454145, + 45.481862 + ], + [ + -73.453796, + 45.481673 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452296, + 45.480719 + ], + [ + -73.452295, + 45.480718 + ], + [ + -73.451837, + 45.480421 + ], + [ + -73.451565, + 45.480238 + ], + [ + -73.450996, + 45.479855 + ], + [ + -73.450929, + 45.479809 + ], + [ + -73.450257, + 45.479368 + ], + [ + -73.449696, + 45.479002 + ], + [ + -73.449587, + 45.478931 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448305, + 45.478058 + ], + [ + -73.447781, + 45.477703 + ], + [ + -73.4477, + 45.477648 + ], + [ + -73.446992, + 45.477175 + ], + [ + -73.446393, + 45.476765 + ], + [ + -73.445743, + 45.476329 + ], + [ + -73.445367, + 45.476068 + ], + [ + -73.445205, + 45.475955 + ], + [ + -73.444867, + 45.475726 + ], + [ + -73.444508, + 45.475482 + ], + [ + -73.44371, + 45.474943 + ], + [ + -73.443609, + 45.474874 + ], + [ + -73.44285, + 45.474357 + ], + [ + -73.441168, + 45.473206 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.439193, + 45.471877 + ], + [ + -73.438156, + 45.471178 + ], + [ + -73.438035, + 45.471097 + ], + [ + -73.435593, + 45.469484 + ], + [ + -73.435506, + 45.469426 + ], + [ + -73.434532, + 45.46878 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.433058, + 45.467863 + ], + [ + -73.430632, + 45.466255 + ], + [ + -73.430217, + 45.46598 + ], + [ + -73.42669, + 45.463641 + ], + [ + -73.426608, + 45.463587 + ], + [ + -73.425566, + 45.462896 + ], + [ + -73.425014, + 45.46253 + ], + [ + -73.424857, + 45.462425 + ], + [ + -73.4247, + 45.462321 + ], + [ + -73.42397, + 45.461837 + ], + [ + -73.423451, + 45.461493 + ], + [ + -73.423345, + 45.461423 + ], + [ + -73.422579, + 45.460915 + ], + [ + -73.419924, + 45.459154 + ], + [ + -73.419828, + 45.45909 + ], + [ + -73.419683, + 45.458994 + ], + [ + -73.417635, + 45.457636 + ], + [ + -73.417292, + 45.457408 + ], + [ + -73.417007, + 45.457219 + ], + [ + -73.416013, + 45.456555 + ], + [ + -73.415308, + 45.456073 + ], + [ + -73.415336, + 45.456011 + ], + [ + -73.415361, + 45.455957 + ], + [ + -73.415733, + 45.455673 + ], + [ + -73.416258, + 45.455322 + ], + [ + -73.416346, + 45.455299 + ], + [ + -73.41643, + 45.455285 + ], + [ + -73.416512, + 45.45528 + ], + [ + -73.416583, + 45.455268 + ], + [ + -73.416661, + 45.455244 + ], + [ + -73.416685, + 45.455229 + ] + ] + }, + "id": 63, + "properties": { + "id": "579570ee-86c0-4e02-ac58-766a1d2ab749", + "data": { + "gtfs": { + "shape_id": "21_1_R" + }, + "segments": [ + { + "distanceMeters": 8464, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 459, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 136 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 88 + }, + { + "distanceMeters": 400, + "travelTimeSeconds": 143 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12451, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3979.5583550068923, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 15.96, + "travelTimeWithoutDwellTimesSeconds": 780, + "operatingTimeWithLayoverTimeSeconds": 960, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 780, + "operatingSpeedWithLayoverMetersPerSecond": 12.97, + "averageSpeedWithoutDwellTimesMetersPerSecond": 15.96 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "5f21960f-8919-4407-8a49-57c39947c4fe", + "cc43f372-04e8-4c4c-b711-2e4159e3855d", + "9b7055a8-adca-44c6-9935-6026756d4460", + "76ff8292-f41f-4d17-998d-6dd3d2c32288", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "e80498a8-505d-4215-ba07-7582f8783d8e", + "014d61e3-acfc-41f6-b78a-5c2178c073b1", + "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", + "14e293a6-352a-4156-8578-66d0b5bdcc1f", + "62558b4d-75af-4b04-8040-a30de5a89658", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "988183db-88f1-47cb-87bf-b2a03dd4a38d", + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "bfb03303-2ee6-40dd-8e8f-859a06b338a6", + "2b6f210c-4f28-43d1-b096-b48c582f5274", + "4d7b837b-dc9e-45a8-8586-b51c6fcd4545", + "24b525eb-f42e-4817-8122-95b424e3e4fc" + ], + "stops": [], + "line_id": "6b85de63-da26-4972-9335-70d9a16911d7", + "segments": [ + 0, + 250, + 253, + 257, + 262, + 266, + 269, + 273, + 275, + 277, + 281, + 282, + 286, + 289, + 292, + 295 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 63, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.416685, + 45.455229 + ], + [ + -73.416725, + 45.455205 + ], + [ + -73.416729, + 45.455148 + ], + [ + -73.416691, + 45.455107 + ], + [ + -73.41664, + 45.455084 + ], + [ + -73.416578, + 45.455087 + ], + [ + -73.416509, + 45.455105 + ], + [ + -73.416432, + 45.455152 + ], + [ + -73.416377, + 45.455195 + ], + [ + -73.41633, + 45.455234 + ], + [ + -73.416283, + 45.45528 + ], + [ + -73.416258, + 45.455322 + ], + [ + -73.415733, + 45.455673 + ], + [ + -73.415361, + 45.455957 + ], + [ + -73.415285, + 45.455977 + ], + [ + -73.415199, + 45.456001 + ], + [ + -73.415075, + 45.456096 + ], + [ + -73.415179, + 45.456158 + ], + [ + -73.416031, + 45.456739 + ], + [ + -73.416909, + 45.45732 + ], + [ + -73.417173, + 45.457494 + ], + [ + -73.41949, + 45.459027 + ], + [ + -73.419564, + 45.459076 + ], + [ + -73.419713, + 45.459174 + ], + [ + -73.422286, + 45.460876 + ], + [ + -73.422478, + 45.461003 + ], + [ + -73.423149, + 45.461446 + ], + [ + -73.42386, + 45.461916 + ], + [ + -73.424593, + 45.462401 + ], + [ + -73.42497, + 45.46265 + ], + [ + -73.425478, + 45.462986 + ], + [ + -73.4262, + 45.463464 + ], + [ + -73.426502, + 45.463663 + ], + [ + -73.43053, + 45.466326 + ], + [ + -73.430805, + 45.466508 + ], + [ + -73.432747, + 45.467791 + ], + [ + -73.43408, + 45.468668 + ], + [ + -73.434186, + 45.468737 + ], + [ + -73.435224, + 45.469427 + ], + [ + -73.435371, + 45.469525 + ], + [ + -73.437732, + 45.471085 + ], + [ + -73.437899, + 45.471196 + ], + [ + -73.440412, + 45.472888 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.441938, + 45.473928 + ], + [ + -73.442708, + 45.474456 + ], + [ + -73.443369, + 45.474906 + ], + [ + -73.443474, + 45.474978 + ], + [ + -73.44437, + 45.475586 + ], + [ + -73.445007, + 45.476018 + ], + [ + -73.445067, + 45.476058 + ], + [ + -73.445608, + 45.476432 + ], + [ + -73.446237, + 45.47686 + ], + [ + -73.446869, + 45.477292 + ], + [ + -73.447191, + 45.47751 + ], + [ + -73.44754, + 45.477747 + ], + [ + -73.448146, + 45.478157 + ], + [ + -73.448648, + 45.478495 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.450119, + 45.479471 + ], + [ + -73.450858, + 45.479955 + ], + [ + -73.451, + 45.480048 + ], + [ + -73.451438, + 45.480342 + ], + [ + -73.451689, + 45.480511 + ], + [ + -73.452165, + 45.480813 + ], + [ + -73.452539, + 45.481074 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452851, + 45.48129 + ], + [ + -73.453668, + 45.481781 + ], + [ + -73.454023, + 45.481974 + ], + [ + -73.454266, + 45.482101 + ], + [ + -73.454494, + 45.482204 + ], + [ + -73.454624, + 45.482357 + ], + [ + -73.455203, + 45.482812 + ], + [ + -73.455441, + 45.482965 + ], + [ + -73.456003, + 45.48332 + ], + [ + -73.456089, + 45.483375 + ], + [ + -73.456112, + 45.483393 + ], + [ + -73.456334, + 45.483523 + ], + [ + -73.457447, + 45.484256 + ], + [ + -73.457564, + 45.484333 + ], + [ + -73.45799, + 45.484621 + ], + [ + -73.458472, + 45.484946 + ], + [ + -73.458995, + 45.485292 + ], + [ + -73.459341, + 45.485525 + ], + [ + -73.45937, + 45.485544 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.460376, + 45.486211 + ], + [ + -73.461024, + 45.486644 + ], + [ + -73.461219, + 45.486774 + ], + [ + -73.461292, + 45.486823 + ], + [ + -73.462116, + 45.487367 + ], + [ + -73.462662, + 45.48773 + ], + [ + -73.46278, + 45.487809 + ], + [ + -73.462983, + 45.487944 + ], + [ + -73.463053, + 45.487989 + ], + [ + -73.463291, + 45.488146 + ], + [ + -73.463537, + 45.488299 + ], + [ + -73.464097, + 45.488673 + ], + [ + -73.46422, + 45.488754 + ], + [ + -73.464379, + 45.488857 + ], + [ + -73.464595, + 45.489001 + ], + [ + -73.464744, + 45.489103 + ], + [ + -73.46482, + 45.489155 + ], + [ + -73.465434, + 45.48956 + ], + [ + -73.465998, + 45.489925 + ], + [ + -73.466087, + 45.489983 + ], + [ + -73.466175, + 45.490041 + ], + [ + -73.466277, + 45.490113 + ], + [ + -73.466889, + 45.490518 + ], + [ + -73.467397, + 45.490865 + ], + [ + -73.467697, + 45.491059 + ], + [ + -73.467798, + 45.491127 + ], + [ + -73.468029, + 45.491284 + ], + [ + -73.468094, + 45.49132 + ], + [ + -73.468166, + 45.49136 + ], + [ + -73.468573, + 45.49163 + ], + [ + -73.468656, + 45.491698 + ], + [ + -73.469006, + 45.491923 + ], + [ + -73.469067, + 45.491963 + ], + [ + -73.469303, + 45.492121 + ], + [ + -73.469723, + 45.492395 + ], + [ + -73.469959, + 45.492553 + ], + [ + -73.470296, + 45.492769 + ], + [ + -73.470312, + 45.492779 + ], + [ + -73.470545, + 45.492931 + ], + [ + -73.470867, + 45.493152 + ], + [ + -73.471224, + 45.49339 + ], + [ + -73.471614, + 45.493642 + ], + [ + -73.471949, + 45.493867 + ], + [ + -73.472367, + 45.494146 + ], + [ + -73.472662, + 45.494344 + ], + [ + -73.472769, + 45.494416 + ], + [ + -73.473016, + 45.494578 + ], + [ + -73.473259, + 45.49474 + ], + [ + -73.473385, + 45.494817 + ], + [ + -73.473746, + 45.495057 + ], + [ + -73.473858, + 45.495132 + ], + [ + -73.474138, + 45.495312 + ], + [ + -73.474517, + 45.49556 + ], + [ + -73.474879, + 45.495798 + ], + [ + -73.475136, + 45.495975 + ], + [ + -73.475245, + 45.49605 + ], + [ + -73.475346, + 45.496118 + ], + [ + -73.475492, + 45.496208 + ], + [ + -73.475747, + 45.496374 + ], + [ + -73.475974, + 45.496523 + ], + [ + -73.47632, + 45.496748 + ], + [ + -73.476618, + 45.496942 + ], + [ + -73.476713, + 45.497004 + ], + [ + -73.477062, + 45.497238 + ], + [ + -73.477439, + 45.49749 + ], + [ + -73.477789, + 45.49772 + ], + [ + -73.478023, + 45.497874 + ], + [ + -73.478178, + 45.497976 + ], + [ + -73.478257, + 45.498026 + ], + [ + -73.4786, + 45.498251 + ], + [ + -73.478967, + 45.498498 + ], + [ + -73.479271, + 45.498701 + ], + [ + -73.47971, + 45.498993 + ], + [ + -73.480326, + 45.499398 + ], + [ + -73.480354, + 45.499415 + ], + [ + -73.480477, + 45.499488 + ], + [ + -73.480835, + 45.499231 + ], + [ + -73.480847, + 45.499223 + ], + [ + -73.481169, + 45.498994 + ], + [ + -73.481589, + 45.498697 + ], + [ + -73.481899, + 45.498472 + ], + [ + -73.482124, + 45.49831 + ], + [ + -73.482533, + 45.498015 + ], + [ + -73.482636, + 45.497941 + ], + [ + -73.482985, + 45.497707 + ], + [ + -73.483277, + 45.497509 + ], + [ + -73.483338, + 45.497469 + ], + [ + -73.483382, + 45.497433 + ], + [ + -73.483504, + 45.497347 + ], + [ + -73.483872, + 45.497077 + ], + [ + -73.484051, + 45.496946 + ], + [ + -73.484056, + 45.496942 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.48442, + 45.496983 + ], + [ + -73.484708, + 45.497199 + ], + [ + -73.484931, + 45.497378 + ], + [ + -73.485095, + 45.49751 + ], + [ + -73.485397, + 45.497784 + ], + [ + -73.485739, + 45.498135 + ], + [ + -73.485877, + 45.498284 + ], + [ + -73.486105, + 45.498553 + ], + [ + -73.486286, + 45.498787 + ], + [ + -73.486368, + 45.498907 + ], + [ + -73.486538, + 45.499154 + ], + [ + -73.486685, + 45.499381 + ], + [ + -73.486823, + 45.499615 + ], + [ + -73.486951, + 45.499858 + ], + [ + -73.487138, + 45.500263 + ], + [ + -73.487159, + 45.500317 + ], + [ + -73.487264, + 45.5006 + ], + [ + -73.487306, + 45.500713 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487417, + 45.501077 + ], + [ + -73.487455, + 45.501208 + ], + [ + -73.487464, + 45.50124 + ], + [ + -73.48765, + 45.50191 + ], + [ + -73.487855, + 45.502589 + ], + [ + -73.488032, + 45.50303 + ], + [ + -73.488178, + 45.503309 + ], + [ + -73.488409, + 45.50371 + ], + [ + -73.489159, + 45.504974 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492913, + 45.510102 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497917, + 45.512052 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.50087, + 45.513005 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505113, + 45.514481 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506107, + 45.514749 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511915, + 45.516872 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513431, + 45.5183 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.514994, + 45.51942 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518889, + 45.520627 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.521609, + 45.523676 + ], + [ + -73.521556, + 45.52368 + ], + [ + -73.521506, + 45.523698 + ], + [ + -73.521494, + 45.523725 + ], + [ + -73.521489, + 45.523788 + ], + [ + -73.521486, + 45.523819 + ] + ] + }, + "id": 64, + "properties": { + "id": "ae246c96-724c-4b43-96d1-a1d8713c89bf", + "data": { + "gtfs": { + "shape_id": "21_1_A" + }, + "segments": [ + { + "distanceMeters": 388, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 494, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 358, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 506, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 1156, + "travelTimeSeconds": 168 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 598, + "travelTimeSeconds": 105 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 694, + "travelTimeSeconds": 122 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 192, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12357, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11170.688129286662, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.44, + "travelTimeWithoutDwellTimesSeconds": 1920, + "operatingTimeWithLayoverTimeSeconds": 2112, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1920, + "operatingSpeedWithLayoverMetersPerSecond": 5.85, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.44 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "24b525eb-f42e-4817-8122-95b424e3e4fc", + "be2e580d-0de3-4edf-8ee4-890565699c8a", + "0b9048bd-dd82-42d8-ba47-b3d93d735fe8", + "d8582feb-8d83-457a-8a52-dc395b1f7390", + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "2f104875-795a-4778-a419-276272abfb07", + "ba86f45f-9fb5-4525-a50b-a876919fd012", + "988c86da-04eb-4067-b650-f13c447b17e7", + "14e293a6-352a-4156-8578-66d0b5bdcc1f", + "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", + "2881ced2-6a46-4738-a470-6ff64097e482", + "e80498a8-505d-4215-ba07-7582f8783d8e", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "c4061c94-e615-4bca-b219-1ff6ea9657d0", + "89553e99-6867-4296-935e-718bb768cb73", + "72a48bdf-3a35-4f3b-8d05-e465faf044cf", + "70af9f63-28e4-474e-896b-5462b7252980", + "1f1b5a64-7c8d-49de-8df3-369e30f799ef", + "c24b91da-a4a3-4b28-b987-5726c6a01fdb", + "720107c1-f0c2-4f37-8e59-ce7f32cd9461", + "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", + "e49dac95-6777-4527-88d9-43533c4c81ab", + "3690607e-a520-4b5c-bb6d-5e6ec4c83aec", + "cee5ccf3-ece1-4350-8264-3c360d07d279", + "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", + "9e73f7cd-aad7-4512-9984-973fdc775485", + "d8e1fde2-a0b2-4339-9d55-49a5f3be258b", + "dae79222-5b12-4269-8d31-6271170c1f54", + "4969c5f0-e6b6-4445-8d46-f637f2b3b640", + "b33d27b7-d555-4c52-b225-a20c1767dd3b", + "de8aa4d4-205c-4786-8a75-8902d51d8a41", + "47ef73cf-7799-46e3-b2f1-76a6533f7746", + "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", + "fd062866-a8eb-4466-b53a-6adf8fc3f09a", + "6c42a8f6-a98f-4058-9992-d00706a03dff", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "a5b9648a-83c0-4eab-a54b-68c23aecae43", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", + "be19484c-af95-45b2-bfe5-24342dd1b710", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "6b85de63-da26-4972-9335-70d9a16911d7", + "segments": [ + 0, + 19, + 21, + 24, + 29, + 31, + 34, + 36, + 38, + 40, + 42, + 47, + 50, + 55, + 58, + 62, + 67, + 77, + 86, + 90, + 94, + 104, + 107, + 114, + 121, + 126, + 133, + 138, + 143, + 150, + 155, + 163, + 171, + 179, + 198, + 220, + 233, + 236, + 243, + 262, + 268, + 281, + 288 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 64, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521486, + 45.523819 + ], + [ + -73.521481, + 45.523874 + ], + [ + -73.52149, + 45.523892 + ], + [ + -73.521509, + 45.523906 + ], + [ + -73.521542, + 45.523919 + ], + [ + -73.521581, + 45.523923 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519258, + 45.520728 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514998, + 45.519328 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513224, + 45.517459 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509952, + 45.515502 + ], + [ + -73.509485, + 45.515357 + ], + [ + -73.509465, + 45.51535 + ], + [ + -73.509376, + 45.515323 + ], + [ + -73.508692, + 45.515143 + ], + [ + -73.508296, + 45.51503 + ], + [ + -73.507817, + 45.514868 + ], + [ + -73.507704, + 45.514841 + ], + [ + -73.507464, + 45.514765 + ], + [ + -73.506516, + 45.514432 + ], + [ + -73.505464, + 45.514054 + ], + [ + -73.505166, + 45.51396 + ], + [ + -73.504861, + 45.513863 + ], + [ + -73.504777, + 45.513837 + ], + [ + -73.504451, + 45.513734 + ], + [ + -73.50434, + 45.513699 + ], + [ + -73.504259, + 45.513672 + ], + [ + -73.503369, + 45.513397 + ], + [ + -73.502433, + 45.51315 + ], + [ + -73.502048, + 45.513078 + ], + [ + -73.501541, + 45.512935 + ], + [ + -73.501411, + 45.512898 + ], + [ + -73.50108, + 45.512799 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499659, + 45.512341 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498207, + 45.511889 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.494297, + 45.510452 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.494088, + 45.51035 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491844, + 45.508694 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488541, + 45.503629 + ], + [ + -73.48831, + 45.50321 + ], + [ + -73.48823, + 45.503039 + ], + [ + -73.488092, + 45.502693 + ], + [ + -73.487989, + 45.502369 + ], + [ + -73.487959, + 45.502275 + ], + [ + -73.487746, + 45.501478 + ], + [ + -73.487613, + 45.501033 + ], + [ + -73.487524, + 45.500737 + ], + [ + -73.487509, + 45.500686 + ], + [ + -73.487464, + 45.50056 + ], + [ + -73.487346, + 45.500232 + ], + [ + -73.487139, + 45.499795 + ], + [ + -73.486985, + 45.499512 + ], + [ + -73.486818, + 45.499233 + ], + [ + -73.48673, + 45.4991 + ], + [ + -73.486631, + 45.498949 + ], + [ + -73.486428, + 45.498675 + ], + [ + -73.486216, + 45.498401 + ], + [ + -73.486166, + 45.498342 + ], + [ + -73.486, + 45.498149 + ], + [ + -73.485576, + 45.497708 + ], + [ + -73.485299, + 45.497456 + ], + [ + -73.485251, + 45.497415 + ], + [ + -73.484899, + 45.497123 + ], + [ + -73.484387, + 45.49674 + ], + [ + -73.484357, + 45.496722 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.483872, + 45.497077 + ], + [ + -73.483869, + 45.49708 + ], + [ + -73.483832, + 45.497107 + ], + [ + -73.483504, + 45.497347 + ], + [ + -73.483382, + 45.497433 + ], + [ + -73.483338, + 45.497469 + ], + [ + -73.483277, + 45.497509 + ], + [ + -73.482985, + 45.497707 + ], + [ + -73.482745, + 45.497868 + ], + [ + -73.482636, + 45.497941 + ], + [ + -73.482124, + 45.49831 + ], + [ + -73.481899, + 45.498472 + ], + [ + -73.481589, + 45.498697 + ], + [ + -73.481169, + 45.498994 + ], + [ + -73.480847, + 45.499223 + ], + [ + -73.480617, + 45.499388 + ], + [ + -73.480477, + 45.499488 + ], + [ + -73.480326, + 45.499398 + ], + [ + -73.47971, + 45.498993 + ], + [ + -73.479492, + 45.498848 + ], + [ + -73.479271, + 45.498701 + ], + [ + -73.478967, + 45.498498 + ], + [ + -73.4786, + 45.498251 + ], + [ + -73.478382, + 45.498108 + ], + [ + -73.478257, + 45.498026 + ], + [ + -73.478178, + 45.497976 + ], + [ + -73.477789, + 45.49772 + ], + [ + -73.477439, + 45.49749 + ], + [ + -73.477062, + 45.497238 + ], + [ + -73.476834, + 45.497086 + ], + [ + -73.476713, + 45.497004 + ], + [ + -73.47632, + 45.496748 + ], + [ + -73.475974, + 45.496523 + ], + [ + -73.475747, + 45.496374 + ], + [ + -73.475738, + 45.496369 + ], + [ + -73.475492, + 45.496208 + ], + [ + -73.475346, + 45.496118 + ], + [ + -73.475245, + 45.49605 + ], + [ + -73.474879, + 45.495798 + ], + [ + -73.474517, + 45.49556 + ], + [ + -73.474138, + 45.495312 + ], + [ + -73.473936, + 45.495182 + ], + [ + -73.473858, + 45.495132 + ], + [ + -73.473385, + 45.494817 + ], + [ + -73.473259, + 45.49474 + ], + [ + -73.473016, + 45.494578 + ], + [ + -73.472906, + 45.494507 + ], + [ + -73.472769, + 45.494416 + ], + [ + -73.472367, + 45.494146 + ], + [ + -73.471949, + 45.493867 + ], + [ + -73.471614, + 45.493642 + ], + [ + -73.471224, + 45.49339 + ], + [ + -73.470867, + 45.493152 + ], + [ + -73.470613, + 45.492977 + ], + [ + -73.470545, + 45.492931 + ], + [ + -73.470296, + 45.492769 + ], + [ + -73.469959, + 45.492553 + ], + [ + -73.469723, + 45.492395 + ], + [ + -73.469423, + 45.492199 + ], + [ + -73.469303, + 45.492121 + ], + [ + -73.469006, + 45.491923 + ], + [ + -73.468656, + 45.491698 + ], + [ + -73.468573, + 45.49163 + ], + [ + -73.468366, + 45.491493 + ], + [ + -73.468166, + 45.49136 + ], + [ + -73.468094, + 45.49132 + ], + [ + -73.468029, + 45.491284 + ], + [ + -73.467697, + 45.491059 + ], + [ + -73.467397, + 45.490865 + ], + [ + -73.466889, + 45.490518 + ], + [ + -73.46638, + 45.490181 + ], + [ + -73.466277, + 45.490113 + ], + [ + -73.466175, + 45.490041 + ], + [ + -73.466087, + 45.489983 + ], + [ + -73.465434, + 45.48956 + ], + [ + -73.464885, + 45.489198 + ], + [ + -73.46482, + 45.489155 + ], + [ + -73.464595, + 45.489001 + ], + [ + -73.464379, + 45.488857 + ], + [ + -73.46422, + 45.488754 + ], + [ + -73.464097, + 45.488673 + ], + [ + -73.463537, + 45.488299 + ], + [ + -73.463291, + 45.488146 + ], + [ + -73.463053, + 45.487989 + ], + [ + -73.462991, + 45.487948 + ], + [ + -73.462983, + 45.487944 + ], + [ + -73.46278, + 45.487809 + ], + [ + -73.462116, + 45.487367 + ], + [ + -73.461426, + 45.486912 + ], + [ + -73.461292, + 45.486823 + ], + [ + -73.461219, + 45.486774 + ], + [ + -73.460376, + 45.486211 + ], + [ + -73.459529, + 45.485651 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.45937, + 45.485544 + ], + [ + -73.458995, + 45.485292 + ], + [ + -73.458472, + 45.484946 + ], + [ + -73.45799, + 45.484621 + ], + [ + -73.457564, + 45.484333 + ], + [ + -73.457447, + 45.484256 + ], + [ + -73.457024, + 45.483978 + ], + [ + -73.456334, + 45.483523 + ], + [ + -73.456426, + 45.48346 + ], + [ + -73.45662, + 45.483329 + ], + [ + -73.456963, + 45.483096 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45645, + 45.482799 + ], + [ + -73.455886, + 45.482623 + ], + [ + -73.455654, + 45.482542 + ], + [ + -73.455462, + 45.482465 + ], + [ + -73.455276, + 45.482384 + ], + [ + -73.455275, + 45.482384 + ], + [ + -73.455009, + 45.482272 + ], + [ + -73.454605, + 45.482087 + ], + [ + -73.454381, + 45.481984 + ], + [ + -73.454145, + 45.481862 + ], + [ + -73.453796, + 45.481673 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452508, + 45.480852 + ], + [ + -73.452296, + 45.480719 + ], + [ + -73.452295, + 45.480718 + ], + [ + -73.451837, + 45.480421 + ], + [ + -73.451565, + 45.480238 + ], + [ + -73.450996, + 45.479855 + ], + [ + -73.450929, + 45.479809 + ], + [ + -73.450257, + 45.479368 + ], + [ + -73.449696, + 45.479002 + ], + [ + -73.449587, + 45.478931 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448305, + 45.478058 + ], + [ + -73.447781, + 45.477703 + ], + [ + -73.4477, + 45.477648 + ], + [ + -73.446992, + 45.477175 + ], + [ + -73.446393, + 45.476765 + ], + [ + -73.445743, + 45.476329 + ], + [ + -73.445367, + 45.476068 + ], + [ + -73.445205, + 45.475955 + ], + [ + -73.444867, + 45.475726 + ], + [ + -73.444508, + 45.475482 + ], + [ + -73.44371, + 45.474943 + ], + [ + -73.443609, + 45.474874 + ], + [ + -73.44285, + 45.474357 + ], + [ + -73.441168, + 45.473206 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.439193, + 45.471877 + ], + [ + -73.438156, + 45.471178 + ], + [ + -73.438035, + 45.471097 + ], + [ + -73.435593, + 45.469484 + ], + [ + -73.435506, + 45.469426 + ], + [ + -73.434532, + 45.46878 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.433058, + 45.467863 + ], + [ + -73.430632, + 45.466255 + ], + [ + -73.430217, + 45.46598 + ], + [ + -73.42669, + 45.463641 + ], + [ + -73.426608, + 45.463587 + ], + [ + -73.425566, + 45.462896 + ], + [ + -73.425014, + 45.46253 + ], + [ + -73.424857, + 45.462425 + ], + [ + -73.4247, + 45.462321 + ], + [ + -73.42397, + 45.461837 + ], + [ + -73.423451, + 45.461493 + ], + [ + -73.423345, + 45.461423 + ], + [ + -73.422579, + 45.460915 + ], + [ + -73.419924, + 45.459154 + ], + [ + -73.419828, + 45.45909 + ], + [ + -73.419683, + 45.458994 + ], + [ + -73.417635, + 45.457636 + ], + [ + -73.417292, + 45.457408 + ], + [ + -73.417007, + 45.457219 + ], + [ + -73.416013, + 45.456555 + ], + [ + -73.415308, + 45.456073 + ], + [ + -73.415336, + 45.456011 + ], + [ + -73.415361, + 45.455957 + ], + [ + -73.415733, + 45.455673 + ], + [ + -73.416258, + 45.455322 + ], + [ + -73.416346, + 45.455299 + ], + [ + -73.41643, + 45.455285 + ], + [ + -73.416512, + 45.45528 + ], + [ + -73.416583, + 45.455268 + ], + [ + -73.416661, + 45.455244 + ], + [ + -73.416685, + 45.455229 + ] + ] + }, + "id": 65, + "properties": { + "id": "9166be09-4b68-47ad-9151-97b7ba3b657c", + "data": { + "gtfs": { + "shape_id": "21_1_R" + }, + "segments": [ + { + "distanceMeters": 706, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 384, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 403, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 345, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 953, + "travelTimeSeconds": 132 + }, + { + "distanceMeters": 577, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 459, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 136 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 88 + }, + { + "distanceMeters": 400, + "travelTimeSeconds": 143 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 192, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12451, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11170.688129286662, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.48, + "travelTimeWithoutDwellTimesSeconds": 1920, + "operatingTimeWithLayoverTimeSeconds": 2112, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1920, + "operatingSpeedWithLayoverMetersPerSecond": 5.9, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.48 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "d3215c60-bb9e-40ac-89e4-1f922b39e266", + "f9358f54-8643-47f5-b0df-4a20b46cc22d", + "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", + "f4f29738-df3f-4d69-8632-9088ded0dc5a", + "741876fc-030a-42f6-a33a-8f1f9c2aba12", + "688a3f67-a176-441e-a399-c92a55de9c74", + "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", + "37199bb2-9740-4484-b68f-12d3c82f8bf9", + "bcd0a901-5384-443e-9be4-1f0faa123ccb", + "b2075e72-f3b5-420a-b22b-99e7608c7c0a", + "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", + "47ef73cf-7799-46e3-b2f1-76a6533f7746", + "de8aa4d4-205c-4786-8a75-8902d51d8a41", + "b33d27b7-d555-4c52-b225-a20c1767dd3b", + "4969c5f0-e6b6-4445-8d46-f637f2b3b640", + "dae79222-5b12-4269-8d31-6271170c1f54", + "d8e1fde2-a0b2-4339-9d55-49a5f3be258b", + "9e73f7cd-aad7-4512-9984-973fdc775485", + "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", + "cee5ccf3-ece1-4350-8264-3c360d07d279", + "3690607e-a520-4b5c-bb6d-5e6ec4c83aec", + "e49dac95-6777-4527-88d9-43533c4c81ab", + "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", + "720107c1-f0c2-4f37-8e59-ce7f32cd9461", + "a90c4da7-455c-41d3-9961-c7a64d627572", + "3fb067af-1fec-457b-80c2-3e3f8b141afb", + "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", + "5f21960f-8919-4407-8a49-57c39947c4fe", + "cc43f372-04e8-4c4c-b711-2e4159e3855d", + "9b7055a8-adca-44c6-9935-6026756d4460", + "76ff8292-f41f-4d17-998d-6dd3d2c32288", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "e80498a8-505d-4215-ba07-7582f8783d8e", + "014d61e3-acfc-41f6-b78a-5c2178c073b1", + "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", + "14e293a6-352a-4156-8578-66d0b5bdcc1f", + "62558b4d-75af-4b04-8040-a30de5a89658", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "988183db-88f1-47cb-87bf-b2a03dd4a38d", + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "bfb03303-2ee6-40dd-8e8f-859a06b338a6", + "2b6f210c-4f28-43d1-b096-b48c582f5274", + "4d7b837b-dc9e-45a8-8586-b51c6fcd4545", + "24b525eb-f42e-4817-8122-95b424e3e4fc" + ], + "stops": [], + "line_id": "6b85de63-da26-4972-9335-70d9a16911d7", + "segments": [ + 0, + 45, + 52, + 59, + 69, + 80, + 87, + 91, + 95, + 106, + 118, + 136, + 158, + 164, + 171, + 179, + 185, + 190, + 197, + 202, + 209, + 214, + 219, + 226, + 231, + 240, + 244, + 248, + 256, + 267, + 275, + 280, + 283, + 287, + 292, + 296, + 299, + 303, + 305, + 307, + 311, + 312, + 316, + 319, + 322, + 325 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 65, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.416685, + 45.455229 + ], + [ + -73.416725, + 45.455205 + ], + [ + -73.416729, + 45.455148 + ], + [ + -73.416691, + 45.455107 + ], + [ + -73.41664, + 45.455084 + ], + [ + -73.416578, + 45.455087 + ], + [ + -73.416509, + 45.455105 + ], + [ + -73.416432, + 45.455152 + ], + [ + -73.416377, + 45.455195 + ], + [ + -73.41633, + 45.455234 + ], + [ + -73.416283, + 45.45528 + ], + [ + -73.416258, + 45.455322 + ], + [ + -73.415733, + 45.455673 + ], + [ + -73.415361, + 45.455957 + ], + [ + -73.415285, + 45.455977 + ], + [ + -73.415199, + 45.456001 + ], + [ + -73.415075, + 45.456096 + ], + [ + -73.415179, + 45.456158 + ], + [ + -73.416031, + 45.456739 + ], + [ + -73.416909, + 45.45732 + ], + [ + -73.417173, + 45.457494 + ], + [ + -73.41949, + 45.459027 + ], + [ + -73.419564, + 45.459076 + ], + [ + -73.419713, + 45.459174 + ], + [ + -73.422286, + 45.460876 + ], + [ + -73.422478, + 45.461003 + ], + [ + -73.423149, + 45.461446 + ], + [ + -73.42386, + 45.461916 + ], + [ + -73.424593, + 45.462401 + ], + [ + -73.42497, + 45.46265 + ], + [ + -73.425478, + 45.462986 + ], + [ + -73.4262, + 45.463464 + ], + [ + -73.426502, + 45.463663 + ], + [ + -73.43053, + 45.466326 + ], + [ + -73.430805, + 45.466508 + ], + [ + -73.432747, + 45.467791 + ], + [ + -73.43408, + 45.468668 + ], + [ + -73.434186, + 45.468737 + ], + [ + -73.435224, + 45.469427 + ], + [ + -73.435371, + 45.469525 + ], + [ + -73.437732, + 45.471085 + ], + [ + -73.437899, + 45.471196 + ], + [ + -73.440412, + 45.472888 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.441938, + 45.473928 + ], + [ + -73.442708, + 45.474456 + ], + [ + -73.443369, + 45.474906 + ], + [ + -73.443474, + 45.474978 + ], + [ + -73.44437, + 45.475586 + ], + [ + -73.445007, + 45.476018 + ], + [ + -73.445067, + 45.476058 + ], + [ + -73.445608, + 45.476432 + ], + [ + -73.446237, + 45.47686 + ], + [ + -73.446869, + 45.477292 + ], + [ + -73.447191, + 45.47751 + ], + [ + -73.44754, + 45.477747 + ], + [ + -73.448146, + 45.478157 + ], + [ + -73.448648, + 45.478495 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.450119, + 45.479471 + ], + [ + -73.450858, + 45.479955 + ], + [ + -73.451, + 45.480048 + ], + [ + -73.451438, + 45.480342 + ], + [ + -73.451689, + 45.480511 + ], + [ + -73.452165, + 45.480813 + ], + [ + -73.452539, + 45.481074 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452851, + 45.48129 + ], + [ + -73.453668, + 45.481781 + ], + [ + -73.454023, + 45.481974 + ], + [ + -73.454266, + 45.482101 + ], + [ + -73.454494, + 45.482204 + ], + [ + -73.454624, + 45.482357 + ], + [ + -73.455203, + 45.482812 + ], + [ + -73.455441, + 45.482965 + ], + [ + -73.456003, + 45.48332 + ], + [ + -73.456089, + 45.483375 + ], + [ + -73.456112, + 45.483393 + ], + [ + -73.456334, + 45.483523 + ], + [ + -73.457447, + 45.484256 + ], + [ + -73.457564, + 45.484333 + ], + [ + -73.45799, + 45.484621 + ], + [ + -73.458472, + 45.484946 + ], + [ + -73.458995, + 45.485292 + ], + [ + -73.459341, + 45.485525 + ], + [ + -73.45937, + 45.485544 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.460376, + 45.486211 + ], + [ + -73.461024, + 45.486644 + ], + [ + -73.461219, + 45.486774 + ], + [ + -73.461292, + 45.486823 + ], + [ + -73.462116, + 45.487367 + ], + [ + -73.462662, + 45.48773 + ], + [ + -73.46278, + 45.487809 + ], + [ + -73.462983, + 45.487944 + ], + [ + -73.463053, + 45.487989 + ], + [ + -73.463291, + 45.488146 + ], + [ + -73.463537, + 45.488299 + ], + [ + -73.464097, + 45.488673 + ], + [ + -73.46422, + 45.488754 + ], + [ + -73.464379, + 45.488857 + ], + [ + -73.464595, + 45.489001 + ], + [ + -73.464744, + 45.489103 + ], + [ + -73.46482, + 45.489155 + ], + [ + -73.465434, + 45.48956 + ], + [ + -73.465998, + 45.489925 + ], + [ + -73.466087, + 45.489983 + ], + [ + -73.466175, + 45.490041 + ], + [ + -73.466277, + 45.490113 + ], + [ + -73.466889, + 45.490518 + ], + [ + -73.467397, + 45.490865 + ], + [ + -73.467697, + 45.491059 + ], + [ + -73.467798, + 45.491127 + ], + [ + -73.468029, + 45.491284 + ], + [ + -73.468094, + 45.49132 + ], + [ + -73.468166, + 45.49136 + ], + [ + -73.468573, + 45.49163 + ], + [ + -73.468656, + 45.491698 + ], + [ + -73.469006, + 45.491923 + ], + [ + -73.469067, + 45.491963 + ], + [ + -73.469303, + 45.492121 + ], + [ + -73.469723, + 45.492395 + ], + [ + -73.469959, + 45.492553 + ], + [ + -73.470296, + 45.492769 + ], + [ + -73.470312, + 45.492779 + ], + [ + -73.470545, + 45.492931 + ], + [ + -73.470867, + 45.493152 + ], + [ + -73.471224, + 45.49339 + ], + [ + -73.471614, + 45.493642 + ], + [ + -73.471949, + 45.493867 + ], + [ + -73.472367, + 45.494146 + ], + [ + -73.472662, + 45.494344 + ], + [ + -73.472769, + 45.494416 + ], + [ + -73.473016, + 45.494578 + ], + [ + -73.473259, + 45.49474 + ], + [ + -73.473385, + 45.494817 + ], + [ + -73.473746, + 45.495057 + ], + [ + -73.473858, + 45.495132 + ], + [ + -73.474138, + 45.495312 + ], + [ + -73.474517, + 45.49556 + ], + [ + -73.474879, + 45.495798 + ], + [ + -73.475136, + 45.495975 + ], + [ + -73.475245, + 45.49605 + ], + [ + -73.475346, + 45.496118 + ], + [ + -73.475492, + 45.496208 + ], + [ + -73.475747, + 45.496374 + ], + [ + -73.475974, + 45.496523 + ], + [ + -73.47632, + 45.496748 + ], + [ + -73.476618, + 45.496942 + ], + [ + -73.476713, + 45.497004 + ], + [ + -73.477062, + 45.497238 + ], + [ + -73.477439, + 45.49749 + ], + [ + -73.477789, + 45.49772 + ], + [ + -73.478023, + 45.497874 + ], + [ + -73.478178, + 45.497976 + ], + [ + -73.478257, + 45.498026 + ], + [ + -73.4786, + 45.498251 + ], + [ + -73.478967, + 45.498498 + ], + [ + -73.479271, + 45.498701 + ], + [ + -73.47971, + 45.498993 + ], + [ + -73.480326, + 45.499398 + ], + [ + -73.480354, + 45.499415 + ], + [ + -73.480477, + 45.499488 + ], + [ + -73.480835, + 45.499231 + ], + [ + -73.480847, + 45.499223 + ], + [ + -73.481169, + 45.498994 + ], + [ + -73.481589, + 45.498697 + ], + [ + -73.481899, + 45.498472 + ], + [ + -73.482124, + 45.49831 + ], + [ + -73.482533, + 45.498015 + ], + [ + -73.482636, + 45.497941 + ], + [ + -73.482985, + 45.497707 + ], + [ + -73.483277, + 45.497509 + ], + [ + -73.483338, + 45.497469 + ], + [ + -73.483382, + 45.497433 + ], + [ + -73.483504, + 45.497347 + ], + [ + -73.483872, + 45.497077 + ], + [ + -73.484051, + 45.496946 + ], + [ + -73.484056, + 45.496942 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.48442, + 45.496983 + ], + [ + -73.484708, + 45.497199 + ], + [ + -73.484931, + 45.497378 + ], + [ + -73.485095, + 45.49751 + ], + [ + -73.485397, + 45.497784 + ], + [ + -73.485739, + 45.498135 + ], + [ + -73.485877, + 45.498284 + ], + [ + -73.486105, + 45.498553 + ], + [ + -73.486286, + 45.498787 + ], + [ + -73.486368, + 45.498907 + ], + [ + -73.486538, + 45.499154 + ], + [ + -73.486685, + 45.499381 + ], + [ + -73.486823, + 45.499615 + ], + [ + -73.486951, + 45.499858 + ], + [ + -73.487138, + 45.500263 + ], + [ + -73.487159, + 45.500317 + ], + [ + -73.487264, + 45.5006 + ], + [ + -73.487306, + 45.500713 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487417, + 45.501077 + ], + [ + -73.487455, + 45.501208 + ], + [ + -73.487464, + 45.50124 + ], + [ + -73.48765, + 45.50191 + ], + [ + -73.487855, + 45.502589 + ], + [ + -73.488032, + 45.50303 + ], + [ + -73.488178, + 45.503309 + ], + [ + -73.488409, + 45.50371 + ], + [ + -73.489159, + 45.504974 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492913, + 45.510102 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497917, + 45.512052 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.50087, + 45.513005 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505113, + 45.514481 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506107, + 45.514749 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511915, + 45.516872 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513431, + 45.5183 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.514994, + 45.51942 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518889, + 45.520627 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.521609, + 45.523676 + ], + [ + -73.521556, + 45.52368 + ], + [ + -73.521506, + 45.523698 + ], + [ + -73.521494, + 45.523725 + ], + [ + -73.521489, + 45.523788 + ], + [ + -73.521486, + 45.523819 + ] + ] + }, + "id": 66, + "properties": { + "id": "04714109-e477-4358-b591-de51f635f957", + "data": { + "gtfs": { + "shape_id": "21_2_A" + }, + "segments": [ + { + "distanceMeters": 388, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 494, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 358, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 506, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 1156, + "travelTimeSeconds": 168 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 598, + "travelTimeSeconds": 116 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 694, + "travelTimeSeconds": 135 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 204, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12357, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11170.688129286662, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.06, + "travelTimeWithoutDwellTimesSeconds": 2040, + "operatingTimeWithLayoverTimeSeconds": 2244, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2040, + "operatingSpeedWithLayoverMetersPerSecond": 5.51, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.06 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "24b525eb-f42e-4817-8122-95b424e3e4fc", + "be2e580d-0de3-4edf-8ee4-890565699c8a", + "0b9048bd-dd82-42d8-ba47-b3d93d735fe8", + "d8582feb-8d83-457a-8a52-dc395b1f7390", + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "2f104875-795a-4778-a419-276272abfb07", + "ba86f45f-9fb5-4525-a50b-a876919fd012", + "988c86da-04eb-4067-b650-f13c447b17e7", + "14e293a6-352a-4156-8578-66d0b5bdcc1f", + "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", + "2881ced2-6a46-4738-a470-6ff64097e482", + "e80498a8-505d-4215-ba07-7582f8783d8e", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "c4061c94-e615-4bca-b219-1ff6ea9657d0", + "89553e99-6867-4296-935e-718bb768cb73", + "72a48bdf-3a35-4f3b-8d05-e465faf044cf", + "70af9f63-28e4-474e-896b-5462b7252980", + "1f1b5a64-7c8d-49de-8df3-369e30f799ef", + "c24b91da-a4a3-4b28-b987-5726c6a01fdb", + "720107c1-f0c2-4f37-8e59-ce7f32cd9461", + "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", + "e49dac95-6777-4527-88d9-43533c4c81ab", + "3690607e-a520-4b5c-bb6d-5e6ec4c83aec", + "cee5ccf3-ece1-4350-8264-3c360d07d279", + "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", + "9e73f7cd-aad7-4512-9984-973fdc775485", + "d8e1fde2-a0b2-4339-9d55-49a5f3be258b", + "dae79222-5b12-4269-8d31-6271170c1f54", + "4969c5f0-e6b6-4445-8d46-f637f2b3b640", + "b33d27b7-d555-4c52-b225-a20c1767dd3b", + "de8aa4d4-205c-4786-8a75-8902d51d8a41", + "47ef73cf-7799-46e3-b2f1-76a6533f7746", + "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", + "fd062866-a8eb-4466-b53a-6adf8fc3f09a", + "6c42a8f6-a98f-4058-9992-d00706a03dff", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "a5b9648a-83c0-4eab-a54b-68c23aecae43", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", + "be19484c-af95-45b2-bfe5-24342dd1b710", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "6b85de63-da26-4972-9335-70d9a16911d7", + "segments": [ + 0, + 19, + 21, + 24, + 29, + 31, + 34, + 36, + 38, + 40, + 42, + 47, + 50, + 55, + 58, + 62, + 67, + 77, + 86, + 90, + 94, + 104, + 107, + 114, + 121, + 126, + 133, + 138, + 143, + 150, + 155, + 163, + 171, + 179, + 198, + 220, + 233, + 236, + 243, + 262, + 268, + 281, + 288 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 66, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.443522, + 45.573154 + ], + [ + -73.44348, + 45.573034 + ], + [ + -73.443427, + 45.572912 + ], + [ + -73.44336, + 45.572841 + ], + [ + -73.443253, + 45.572772 + ], + [ + -73.443199, + 45.572746 + ], + [ + -73.443114, + 45.572731 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.446746, + 45.574587 + ], + [ + -73.447238, + 45.574749 + ], + [ + -73.447388, + 45.574789 + ], + [ + -73.447436, + 45.574664 + ], + [ + -73.447623, + 45.574219 + ], + [ + -73.44779, + 45.573737 + ], + [ + -73.447926, + 45.573404 + ], + [ + -73.448288, + 45.57264 + ], + [ + -73.448668, + 45.571794 + ], + [ + -73.449152, + 45.570638 + ], + [ + -73.449223, + 45.570544 + ], + [ + -73.449264, + 45.570454 + ], + [ + -73.449543, + 45.569814 + ], + [ + -73.449722, + 45.56941 + ], + [ + -73.449947, + 45.568902 + ], + [ + -73.449982, + 45.56883 + ], + [ + -73.450051, + 45.568681 + ], + [ + -73.450055, + 45.568672 + ], + [ + -73.450057, + 45.568668 + ], + [ + -73.450059, + 45.568663 + ], + [ + -73.450061, + 45.568659 + ], + [ + -73.450063, + 45.568654 + ], + [ + -73.450065, + 45.56865 + ], + [ + -73.450067, + 45.568645 + ], + [ + -73.450069, + 45.568641 + ], + [ + -73.450071, + 45.568636 + ], + [ + -73.450072, + 45.568632 + ], + [ + -73.450074, + 45.568627 + ], + [ + -73.450076, + 45.568623 + ], + [ + -73.450078, + 45.568618 + ], + [ + -73.45008, + 45.568618 + ], + [ + -73.450082, + 45.568614 + ], + [ + -73.450084, + 45.568609 + ], + [ + -73.450086, + 45.568605 + ], + [ + -73.450087, + 45.5686 + ], + [ + -73.450089, + 45.568596 + ], + [ + -73.450091, + 45.568591 + ], + [ + -73.450093, + 45.568587 + ], + [ + -73.450095, + 45.568582 + ], + [ + -73.450097, + 45.568578 + ], + [ + -73.450099, + 45.568573 + ], + [ + -73.450101, + 45.568569 + ], + [ + -73.450102, + 45.568564 + ], + [ + -73.450104, + 45.56856 + ], + [ + -73.450106, + 45.568555 + ], + [ + -73.450108, + 45.568551 + ], + [ + -73.45011, + 45.568546 + ], + [ + -73.450112, + 45.568542 + ], + [ + -73.450114, + 45.568537 + ], + [ + -73.450115, + 45.568533 + ], + [ + -73.450117, + 45.568528 + ], + [ + -73.450119, + 45.568524 + ], + [ + -73.45012, + 45.568519 + ], + [ + -73.450122, + 45.568519 + ], + [ + -73.450124, + 45.568515 + ], + [ + -73.450126, + 45.56851 + ], + [ + -73.450128, + 45.568506 + ], + [ + -73.450129, + 45.568501 + ], + [ + -73.450131, + 45.568497 + ], + [ + -73.450132, + 45.568494 + ], + [ + -73.450133, + 45.568492 + ], + [ + -73.450134, + 45.568488 + ], + [ + -73.450136, + 45.568483 + ], + [ + -73.450138, + 45.568479 + ], + [ + -73.45014, + 45.568474 + ], + [ + -73.450141, + 45.56847 + ], + [ + -73.450143, + 45.568465 + ], + [ + -73.450145, + 45.568461 + ], + [ + -73.450146, + 45.568456 + ], + [ + -73.450148, + 45.568452 + ], + [ + -73.45015, + 45.568447 + ], + [ + -73.450151, + 45.568443 + ], + [ + -73.450153, + 45.568438 + ], + [ + -73.450154, + 45.568434 + ], + [ + -73.450156, + 45.568429 + ], + [ + -73.450158, + 45.568425 + ], + [ + -73.45016, + 45.56842 + ], + [ + -73.450161, + 45.568416 + ], + [ + -73.450163, + 45.568411 + ], + [ + -73.450164, + 45.568407 + ], + [ + -73.450166, + 45.568402 + ], + [ + -73.450168, + 45.568398 + ], + [ + -73.450169, + 45.568393 + ], + [ + -73.450171, + 45.568393 + ], + [ + -73.450173, + 45.568389 + ], + [ + -73.450174, + 45.568384 + ], + [ + -73.450175, + 45.56838 + ], + [ + -73.450177, + 45.568375 + ], + [ + -73.450179, + 45.568371 + ], + [ + -73.45018, + 45.568366 + ], + [ + -73.450182, + 45.568362 + ], + [ + -73.450183, + 45.568357 + ], + [ + -73.450185, + 45.568353 + ], + [ + -73.450186, + 45.568348 + ], + [ + -73.450188, + 45.568344 + ], + [ + -73.450189, + 45.568339 + ], + [ + -73.450191, + 45.568335 + ], + [ + -73.450192, + 45.56833 + ], + [ + -73.450194, + 45.568326 + ], + [ + -73.450195, + 45.568321 + ], + [ + -73.450197, + 45.568317 + ], + [ + -73.450198, + 45.568312 + ], + [ + -73.4502, + 45.568308 + ], + [ + -73.450201, + 45.568303 + ], + [ + -73.450203, + 45.568299 + ], + [ + -73.450204, + 45.568294 + ], + [ + -73.450205, + 45.56829 + ], + [ + -73.450207, + 45.568285 + ], + [ + -73.450208, + 45.568281 + ], + [ + -73.45021, + 45.568276 + ], + [ + -73.450211, + 45.568272 + ], + [ + -73.450213, + 45.568267 + ], + [ + -73.450214, + 45.568263 + ], + [ + -73.450215, + 45.568258 + ], + [ + -73.450217, + 45.568254 + ], + [ + -73.450218, + 45.568249 + ], + [ + -73.450219, + 45.568245 + ], + [ + -73.450221, + 45.56824 + ], + [ + -73.450222, + 45.568236 + ], + [ + -73.450224, + 45.568231 + ], + [ + -73.450225, + 45.568227 + ], + [ + -73.450226, + 45.568227 + ], + [ + -73.450228, + 45.568222 + ], + [ + -73.450229, + 45.568218 + ], + [ + -73.45023, + 45.568213 + ], + [ + -73.450232, + 45.568209 + ], + [ + -73.450233, + 45.568204 + ], + [ + -73.450234, + 45.5682 + ], + [ + -73.450236, + 45.568195 + ], + [ + -73.450237, + 45.568191 + ], + [ + -73.450238, + 45.568186 + ], + [ + -73.45024, + 45.568182 + ], + [ + -73.450241, + 45.568177 + ], + [ + -73.450242, + 45.568173 + ], + [ + -73.450244, + 45.568168 + ], + [ + -73.450245, + 45.568164 + ], + [ + -73.450246, + 45.568159 + ], + [ + -73.450247, + 45.568155 + ], + [ + -73.450248, + 45.56815 + ], + [ + -73.45025, + 45.568146 + ], + [ + -73.450251, + 45.568141 + ], + [ + -73.450252, + 45.568137 + ], + [ + -73.450253, + 45.568132 + ], + [ + -73.450254, + 45.568128 + ], + [ + -73.450256, + 45.568123 + ], + [ + -73.450257, + 45.568119 + ], + [ + -73.450258, + 45.568114 + ], + [ + -73.450259, + 45.56811 + ], + [ + -73.45026, + 45.568105 + ], + [ + -73.450262, + 45.568101 + ], + [ + -73.450263, + 45.568096 + ], + [ + -73.450264, + 45.568092 + ], + [ + -73.450265, + 45.568088 + ], + [ + -73.450266, + 45.568083 + ], + [ + -73.450267, + 45.568079 + ], + [ + -73.450268, + 45.568074 + ], + [ + -73.45027, + 45.56807 + ], + [ + -73.450271, + 45.568065 + ], + [ + -73.450272, + 45.568061 + ], + [ + -73.450273, + 45.568056 + ], + [ + -73.450274, + 45.568052 + ], + [ + -73.450275, + 45.568047 + ], + [ + -73.450277, + 45.568043 + ], + [ + -73.450277, + 45.568038 + ], + [ + -73.450279, + 45.568034 + ], + [ + -73.45028, + 45.568029 + ], + [ + -73.450281, + 45.568025 + ], + [ + -73.450282, + 45.56802 + ], + [ + -73.450283, + 45.568016 + ], + [ + -73.450284, + 45.568011 + ], + [ + -73.450285, + 45.568007 + ], + [ + -73.450286, + 45.568002 + ], + [ + -73.450287, + 45.567998 + ], + [ + -73.450288, + 45.567993 + ], + [ + -73.450289, + 45.567989 + ], + [ + -73.45029, + 45.567984 + ], + [ + -73.450291, + 45.56798 + ], + [ + -73.450292, + 45.567975 + ], + [ + -73.450293, + 45.567971 + ], + [ + -73.450294, + 45.567966 + ], + [ + -73.450295, + 45.567962 + ], + [ + -73.450296, + 45.567957 + ], + [ + -73.450297, + 45.567957 + ], + [ + -73.450298, + 45.567953 + ], + [ + -73.450299, + 45.567948 + ], + [ + -73.4503, + 45.567944 + ], + [ + -73.450301, + 45.567939 + ], + [ + -73.450301, + 45.567935 + ], + [ + -73.450302, + 45.56793 + ], + [ + -73.450303, + 45.567926 + ], + [ + -73.450304, + 45.567921 + ], + [ + -73.450305, + 45.567917 + ], + [ + -73.450306, + 45.567912 + ], + [ + -73.450307, + 45.567908 + ], + [ + -73.450308, + 45.567903 + ], + [ + -73.450309, + 45.567899 + ], + [ + -73.450309, + 45.567894 + ], + [ + -73.45031, + 45.56789 + ], + [ + -73.450311, + 45.567885 + ], + [ + -73.450312, + 45.567881 + ], + [ + -73.450313, + 45.567876 + ], + [ + -73.450314, + 45.567872 + ], + [ + -73.450315, + 45.567867 + ], + [ + -73.450316, + 45.567863 + ], + [ + -73.450316, + 45.567858 + ], + [ + -73.450317, + 45.567854 + ], + [ + -73.450318, + 45.567849 + ], + [ + -73.450319, + 45.567845 + ], + [ + -73.45032, + 45.56784 + ], + [ + -73.45032, + 45.567836 + ], + [ + -73.450321, + 45.567831 + ], + [ + -73.450322, + 45.567827 + ], + [ + -73.450323, + 45.567822 + ], + [ + -73.450324, + 45.567818 + ], + [ + -73.450324, + 45.567813 + ], + [ + -73.450325, + 45.567809 + ], + [ + -73.450326, + 45.567804 + ], + [ + -73.450326, + 45.5678 + ], + [ + -73.450327, + 45.567795 + ], + [ + -73.450328, + 45.567791 + ], + [ + -73.450329, + 45.567786 + ], + [ + -73.450329, + 45.567782 + ], + [ + -73.45033, + 45.567777 + ], + [ + -73.450331, + 45.567773 + ], + [ + -73.450332, + 45.567768 + ], + [ + -73.450332, + 45.567764 + ], + [ + -73.450333, + 45.567759 + ], + [ + -73.450334, + 45.567755 + ], + [ + -73.450334, + 45.56775 + ], + [ + -73.450335, + 45.567746 + ], + [ + -73.450336, + 45.567741 + ], + [ + -73.450336, + 45.567737 + ], + [ + -73.450337, + 45.567732 + ], + [ + -73.450337, + 45.567728 + ], + [ + -73.450338, + 45.567723 + ], + [ + -73.450339, + 45.567719 + ], + [ + -73.450339, + 45.567714 + ], + [ + -73.45034, + 45.56771 + ], + [ + -73.45034, + 45.567705 + ], + [ + -73.450341, + 45.567701 + ], + [ + -73.450342, + 45.567696 + ], + [ + -73.450342, + 45.567692 + ], + [ + -73.450343, + 45.567687 + ], + [ + -73.450343, + 45.567683 + ], + [ + -73.450344, + 45.567678 + ], + [ + -73.450345, + 45.567674 + ], + [ + -73.450345, + 45.567669 + ], + [ + -73.450346, + 45.567665 + ], + [ + -73.450346, + 45.56766 + ], + [ + -73.450347, + 45.567656 + ], + [ + -73.450347, + 45.567651 + ], + [ + -73.450348, + 45.567647 + ], + [ + -73.450348, + 45.567642 + ], + [ + -73.450349, + 45.567638 + ], + [ + -73.450349, + 45.567633 + ], + [ + -73.45035, + 45.567629 + ], + [ + -73.45035, + 45.567624 + ], + [ + -73.450351, + 45.56762 + ], + [ + -73.450351, + 45.567615 + ], + [ + -73.450352, + 45.567611 + ], + [ + -73.450352, + 45.567606 + ], + [ + -73.450353, + 45.567602 + ], + [ + -73.450353, + 45.567597 + ], + [ + -73.450353, + 45.567593 + ], + [ + -73.450354, + 45.567588 + ], + [ + -73.450355, + 45.567584 + ], + [ + -73.450355, + 45.567579 + ], + [ + -73.450355, + 45.567575 + ], + [ + -73.450356, + 45.56757 + ], + [ + -73.450356, + 45.567566 + ], + [ + -73.450357, + 45.567561 + ], + [ + -73.450357, + 45.567557 + ], + [ + -73.450357, + 45.567552 + ], + [ + -73.45036, + 45.567548 + ], + [ + -73.450379, + 45.567047 + ], + [ + -73.450434, + 45.565568 + ], + [ + -73.450434, + 45.565564 + ], + [ + -73.450469, + 45.564632 + ], + [ + -73.450501, + 45.563818 + ], + [ + -73.450514, + 45.563467 + ], + [ + -73.450527, + 45.563066 + ], + [ + -73.450546, + 45.562441 + ], + [ + -73.450541, + 45.561888 + ], + [ + -73.450523, + 45.561676 + ], + [ + -73.450494, + 45.561271 + ], + [ + -73.4504, + 45.560547 + ], + [ + -73.450322, + 45.559971 + ], + [ + -73.450252, + 45.559679 + ], + [ + -73.449741, + 45.555875 + ], + [ + -73.449726, + 45.555769 + ], + [ + -73.449715, + 45.555674 + ], + [ + -73.4497, + 45.555533 + ], + [ + -73.449606, + 45.554861 + ], + [ + -73.449515, + 45.554197 + ], + [ + -73.44943, + 45.553558 + ], + [ + -73.449359, + 45.55301 + ], + [ + -73.449348, + 45.552926 + ], + [ + -73.449275, + 45.55238 + ], + [ + -73.449201, + 45.551875 + ], + [ + -73.449191, + 45.551808 + ], + [ + -73.449191, + 45.551792 + ], + [ + -73.44919, + 45.551706 + ], + [ + -73.44919, + 45.551642 + ], + [ + -73.449198, + 45.551397 + ], + [ + -73.449202, + 45.551292 + ], + [ + -73.449207, + 45.551245 + ], + [ + -73.449234, + 45.550967 + ], + [ + -73.449323, + 45.550515 + ], + [ + -73.449468, + 45.550071 + ], + [ + -73.449599, + 45.549777 + ], + [ + -73.449826, + 45.549339 + ], + [ + -73.449967, + 45.549124 + ], + [ + -73.450285, + 45.548711 + ], + [ + -73.450533, + 45.54844 + ], + [ + -73.450894, + 45.548098 + ], + [ + -73.451191, + 45.547866 + ], + [ + -73.45159, + 45.547572 + ], + [ + -73.451911, + 45.547356 + ], + [ + -73.452114, + 45.54723 + ], + [ + -73.452185, + 45.547185 + ], + [ + -73.452243, + 45.547149 + ], + [ + -73.452859, + 45.546749 + ], + [ + -73.452912, + 45.546715 + ], + [ + -73.453255, + 45.546529 + ], + [ + -73.453306, + 45.546494 + ], + [ + -73.45375, + 45.546193 + ], + [ + -73.454098, + 45.545958 + ], + [ + -73.454398, + 45.545758 + ], + [ + -73.454536, + 45.545665 + ], + [ + -73.454687, + 45.545566 + ], + [ + -73.454901, + 45.545427 + ], + [ + -73.455048, + 45.545333 + ], + [ + -73.455094, + 45.545301 + ], + [ + -73.455158, + 45.545252 + ], + [ + -73.455247, + 45.545184 + ], + [ + -73.455332, + 45.545094 + ], + [ + -73.455461, + 45.54495 + ], + [ + -73.455559, + 45.544829 + ], + [ + -73.455739, + 45.544361 + ], + [ + -73.455815, + 45.543632 + ], + [ + -73.455926, + 45.54295 + ], + [ + -73.455948, + 45.542813 + ], + [ + -73.455971, + 45.542683 + ], + [ + -73.456034, + 45.542341 + ], + [ + -73.456127, + 45.541828 + ], + [ + -73.45622, + 45.541171 + ], + [ + -73.456328, + 45.540494 + ], + [ + -73.456345, + 45.540384 + ], + [ + -73.456347, + 45.540366 + ], + [ + -73.456509, + 45.539394 + ], + [ + -73.456509, + 45.539219 + ], + [ + -73.456656, + 45.5384 + ], + [ + -73.456667, + 45.538348 + ], + [ + -73.456674, + 45.53831 + ], + [ + -73.456716, + 45.53818 + ], + [ + -73.456753, + 45.538063 + ], + [ + -73.456485, + 45.538022 + ], + [ + -73.456186, + 45.537982 + ], + [ + -73.455479, + 45.537887 + ], + [ + -73.455036, + 45.537828 + ], + [ + -73.454083, + 45.537706 + ], + [ + -73.453257, + 45.537601 + ], + [ + -73.453056, + 45.537575 + ], + [ + -73.45293, + 45.537571 + ], + [ + -73.452702, + 45.537575 + ], + [ + -73.452033, + 45.537615 + ], + [ + -73.45161, + 45.537656 + ], + [ + -73.451409, + 45.537665 + ], + [ + -73.451204, + 45.537642 + ], + [ + -73.451019, + 45.537606 + ], + [ + -73.450864, + 45.537552 + ], + [ + -73.450804, + 45.537525 + ], + [ + -73.450674, + 45.537466 + ], + [ + -73.449848, + 45.536971 + ], + [ + -73.449131, + 45.536546 + ], + [ + -73.449006, + 45.536471 + ], + [ + -73.448626, + 45.536264 + ], + [ + -73.448357, + 45.536192 + ], + [ + -73.447442, + 45.535976 + ], + [ + -73.447213, + 45.535913 + ], + [ + -73.447099, + 45.535867 + ], + [ + -73.446936, + 45.5358 + ], + [ + -73.446746, + 45.535696 + ], + [ + -73.446514, + 45.535527 + ], + [ + -73.446498, + 45.535516 + ], + [ + -73.446412, + 45.535444 + ], + [ + -73.446305, + 45.535359 + ], + [ + -73.446216, + 45.535273 + ], + [ + -73.445977, + 45.535035 + ], + [ + -73.44579, + 45.534868 + ], + [ + -73.445666, + 45.534784 + ], + [ + -73.445571, + 45.534719 + ], + [ + -73.445347, + 45.534582 + ], + [ + -73.445234, + 45.534512 + ], + [ + -73.445013, + 45.5344 + ], + [ + -73.444564, + 45.534238 + ], + [ + -73.444191, + 45.534117 + ], + [ + -73.444179, + 45.534113 + ], + [ + -73.444063, + 45.534075 + ], + [ + -73.443132, + 45.533854 + ], + [ + -73.443002, + 45.533823 + ], + [ + -73.442012, + 45.533579 + ], + [ + -73.441709, + 45.533503 + ], + [ + -73.441658, + 45.533491 + ], + [ + -73.441128, + 45.533365 + ], + [ + -73.440969, + 45.533327 + ], + [ + -73.439556, + 45.532972 + ], + [ + -73.439448, + 45.532945 + ], + [ + -73.439309, + 45.532912 + ], + [ + -73.440132, + 45.531024 + ], + [ + -73.440178, + 45.530918 + ], + [ + -73.440526, + 45.530139 + ], + [ + -73.440978, + 45.529128 + ], + [ + -73.441026, + 45.529021 + ], + [ + -73.441195, + 45.528603 + ], + [ + -73.441684, + 45.527503 + ], + [ + -73.441723, + 45.527415 + ], + [ + -73.442111, + 45.526543 + ], + [ + -73.442305, + 45.526133 + ], + [ + -73.442765, + 45.52521 + ], + [ + -73.442852, + 45.525036 + ], + [ + -73.442951, + 45.524869 + ], + [ + -73.442817, + 45.524838 + ], + [ + -73.442553, + 45.524773 + ], + [ + -73.442166, + 45.524677 + ], + [ + -73.442013, + 45.52464 + ], + [ + -73.441281, + 45.524441 + ], + [ + -73.44044, + 45.524202 + ], + [ + -73.43954, + 45.523947 + ], + [ + -73.439387, + 45.523905 + ], + [ + -73.437964, + 45.523516 + ], + [ + -73.433955, + 45.522417 + ], + [ + -73.433902, + 45.522403 + ], + [ + -73.433776, + 45.522369 + ], + [ + -73.434834, + 45.520403 + ], + [ + -73.435201, + 45.519599 + ], + [ + -73.435202, + 45.519597 + ], + [ + -73.435724, + 45.518588 + ], + [ + -73.43574, + 45.518567 + ], + [ + -73.435791, + 45.518454 + ], + [ + -73.435822, + 45.518391 + ], + [ + -73.435887, + 45.518256 + ], + [ + -73.435949, + 45.51813 + ], + [ + -73.4363, + 45.517415 + ], + [ + -73.4365, + 45.51701 + ], + [ + -73.436814, + 45.516369 + ], + [ + -73.436861, + 45.516273 + ], + [ + -73.436872, + 45.51625 + ], + [ + -73.436978, + 45.516111 + ], + [ + -73.437553, + 45.514946 + ], + [ + -73.437763, + 45.514573 + ], + [ + -73.438009, + 45.514226 + ], + [ + -73.438176, + 45.514015 + ], + [ + -73.439339, + 45.512657 + ], + [ + -73.43972, + 45.512185 + ], + [ + -73.439816, + 45.512059 + ], + [ + -73.439896, + 45.511951 + ], + [ + -73.440007, + 45.511874 + ], + [ + -73.439905, + 45.511834 + ], + [ + -73.439831, + 45.511802 + ], + [ + -73.439673, + 45.511736 + ], + [ + -73.439067, + 45.511482 + ], + [ + -73.438504, + 45.511225 + ], + [ + -73.438299, + 45.511131 + ], + [ + -73.438017, + 45.511 + ], + [ + -73.437245, + 45.510635 + ], + [ + -73.436246, + 45.510195 + ], + [ + -73.435988, + 45.510081 + ], + [ + -73.436033, + 45.510025 + ], + [ + -73.436129, + 45.50969 + ], + [ + -73.436544, + 45.509074 + ], + [ + -73.43661, + 45.508973 + ], + [ + -73.43684, + 45.508625 + ], + [ + -73.436961, + 45.508464 + ], + [ + -73.437112, + 45.508263 + ], + [ + -73.437063, + 45.508175 + ], + [ + -73.436878, + 45.508088 + ], + [ + -73.436552, + 45.508131 + ] + ] + }, + "id": 67, + "properties": { + "id": "18b44f9d-7122-4090-94d2-581b70bdfcd8", + "data": { + "gtfs": { + "shape_id": "22_2_A" + }, + "segments": [ + { + "distanceMeters": 1265, + "travelTimeSeconds": 227 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 803, + "travelTimeSeconds": 169 + }, + { + "distanceMeters": 447, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 586, + "travelTimeSeconds": 126 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 374, + "travelTimeSeconds": 90 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 195, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 374, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 459, + "travelTimeSeconds": 98 + }, + { + "distanceMeters": 497, + "travelTimeSeconds": 107 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 699, + "travelTimeSeconds": 185 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 138 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 210, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9992, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7260.781792463753, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 4.76, + "travelTimeWithoutDwellTimesSeconds": 2100, + "operatingTimeWithLayoverTimeSeconds": 2310, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2100, + "operatingSpeedWithLayoverMetersPerSecond": 4.33, + "averageSpeedWithoutDwellTimesMetersPerSecond": 4.76 + }, + "mode": "bus", + "name": "Gare St-Hubert", + "color": "#A32638", + "nodes": [ + "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "ae6e0f03-aee3-4f3b-9a79-98bb90a35a7a", + "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "911acdc7-e82a-4bb1-aecd-7f8fbf39cc16", + "50e25e6e-b3a0-49ca-b0a6-22261b688cbf", + "b66a9525-9dd9-49fa-b088-bde983b8c260", + "95cc31bb-b82e-4ab9-921f-e5a8cd8454c3", + "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", + "19d70945-d3db-430f-90e2-ad67901fda8d", + "f8690123-add8-4e85-bbf6-f84c4b712589", + "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", + "fce7a113-2e0c-4a0f-922a-957670252ea1", + "e5c2d9f4-1be6-458f-854f-8103a3048b8c", + "231dda72-d4b5-48ae-b714-5ce9d3802c45", + "25a5f82a-36a7-4a52-af2b-32a681f87765", + "8b3a553d-dad5-41ff-b228-80f338c4b0e0", + "210e532b-2acc-4a3e-b173-3471add098b1", + "576ef8c5-693c-4ae9-bb41-68685f43e174", + "2dda318d-8bf9-4860-b60d-6fcb1dd29156", + "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", + "de69f95c-e485-42da-bcac-5eeb8a8928ad", + "e36c087c-d78e-48bb-9430-6af9d10493cf", + "f902a061-c5e9-4964-8e41-eba87bfc63fc", + "3d39c5de-3cd5-4fd7-925f-37e3d32bd66c", + "9b519782-0187-4aff-8d16-ed5c874d6b88", + "f1517eba-215d-4b2a-b591-160be878e090", + "64e79ef5-e499-4b0b-96e8-a047e210960b", + "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", + "686bdc34-3602-4c31-b05f-c41f9ebe2543", + "4f05d74f-7126-4527-951d-20bf28624a4f" + ], + "stops": [], + "line_id": "f1b96778-f611-40e8-a471-573c5b50a7c2", + "segments": [ + 0, + 81, + 296, + 298, + 302, + 310, + 320, + 340, + 349, + 362, + 368, + 380, + 383, + 393, + 396, + 405, + 418, + 426, + 429, + 431, + 434, + 437, + 446, + 451, + 454, + 463, + 467, + 484, + 488 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 67, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.436552, + 45.508131 + ], + [ + -73.436473, + 45.508141 + ], + [ + -73.436513, + 45.508362 + ], + [ + -73.436801, + 45.508362 + ], + [ + -73.436893, + 45.508412 + ], + [ + -73.436961, + 45.508464 + ], + [ + -73.43684, + 45.508625 + ], + [ + -73.43661, + 45.508973 + ], + [ + -73.436544, + 45.509074 + ], + [ + -73.436129, + 45.50969 + ], + [ + -73.435854, + 45.510023 + ], + [ + -73.435758, + 45.510131 + ], + [ + -73.435893, + 45.510189 + ], + [ + -73.43661, + 45.510502 + ], + [ + -73.437183, + 45.510752 + ], + [ + -73.437938, + 45.511081 + ], + [ + -73.438224, + 45.511212 + ], + [ + -73.438503, + 45.511338 + ], + [ + -73.439008, + 45.511568 + ], + [ + -73.439448, + 45.511755 + ], + [ + -73.439738, + 45.511879 + ], + [ + -73.439633, + 45.511969 + ], + [ + -73.439566, + 45.512048 + ], + [ + -73.439125, + 45.512567 + ], + [ + -73.43894, + 45.512783 + ], + [ + -73.43879, + 45.512958 + ], + [ + -73.438197, + 45.51365 + ], + [ + -73.437958, + 45.513929 + ], + [ + -73.437794, + 45.51415 + ], + [ + -73.437544, + 45.5145 + ], + [ + -73.437328, + 45.514887 + ], + [ + -73.437139, + 45.515265 + ], + [ + -73.437121, + 45.5153 + ], + [ + -73.436728, + 45.516082 + ], + [ + -73.43672, + 45.516097 + ], + [ + -73.436655, + 45.516223 + ], + [ + -73.436309, + 45.516965 + ], + [ + -73.435853, + 45.517895 + ], + [ + -73.435632, + 45.518345 + ], + [ + -73.435603, + 45.518405 + ], + [ + -73.435539, + 45.518504 + ], + [ + -73.435371, + 45.518796 + ], + [ + -73.435201, + 45.519129 + ], + [ + -73.435196, + 45.519145 + ], + [ + -73.43516, + 45.519282 + ], + [ + -73.435146, + 45.519309 + ], + [ + -73.435066, + 45.519471 + ], + [ + -73.435022, + 45.51956 + ], + [ + -73.43465, + 45.520316 + ], + [ + -73.434436, + 45.520748 + ], + [ + -73.434255, + 45.52111 + ], + [ + -73.434209, + 45.521203 + ], + [ + -73.434057, + 45.521508 + ], + [ + -73.43365, + 45.522336 + ], + [ + -73.433608, + 45.522421 + ], + [ + -73.433569, + 45.522502 + ], + [ + -73.433656, + 45.522523 + ], + [ + -73.433693, + 45.522535 + ], + [ + -73.433807, + 45.522565 + ], + [ + -73.433875, + 45.522583 + ], + [ + -73.4341, + 45.522646 + ], + [ + -73.434335, + 45.522711 + ], + [ + -73.437851, + 45.523688 + ], + [ + -73.438325, + 45.523813 + ], + [ + -73.439258, + 45.52406 + ], + [ + -73.439451, + 45.524111 + ], + [ + -73.440412, + 45.524373 + ], + [ + -73.44186, + 45.52477 + ], + [ + -73.442618, + 45.524976 + ], + [ + -73.442704, + 45.525 + ], + [ + -73.442158, + 45.526102 + ], + [ + -73.441619, + 45.527302 + ], + [ + -73.441616, + 45.527307 + ], + [ + -73.441581, + 45.527384 + ], + [ + -73.441254, + 45.528072 + ], + [ + -73.4409, + 45.528915 + ], + [ + -73.440869, + 45.52899 + ], + [ + -73.44038, + 45.530083 + ], + [ + -73.440366, + 45.530114 + ], + [ + -73.440274, + 45.530321 + ], + [ + -73.440067, + 45.530785 + ], + [ + -73.440025, + 45.53088 + ], + [ + -73.439543, + 45.531958 + ], + [ + -73.439477, + 45.532116 + ], + [ + -73.439416, + 45.532259 + ], + [ + -73.439159, + 45.532867 + ], + [ + -73.439121, + 45.532958 + ], + [ + -73.439267, + 45.532996 + ], + [ + -73.439566, + 45.533079 + ], + [ + -73.440814, + 45.533412 + ], + [ + -73.440917, + 45.533439 + ], + [ + -73.441654, + 45.533615 + ], + [ + -73.441957, + 45.533692 + ], + [ + -73.44295, + 45.533944 + ], + [ + -73.443077, + 45.533976 + ], + [ + -73.443885, + 45.534176 + ], + [ + -73.443989, + 45.534201 + ], + [ + -73.444489, + 45.534346 + ], + [ + -73.444931, + 45.53453 + ], + [ + -73.445118, + 45.534611 + ], + [ + -73.445446, + 45.534818 + ], + [ + -73.445653, + 45.534958 + ], + [ + -73.445829, + 45.535111 + ], + [ + -73.446022, + 45.535295 + ], + [ + -73.446079, + 45.535349 + ], + [ + -73.44617, + 45.535435 + ], + [ + -73.446275, + 45.535528 + ], + [ + -73.446362, + 45.535606 + ], + [ + -73.446623, + 45.535795 + ], + [ + -73.446833, + 45.535908 + ], + [ + -73.447009, + 45.53598 + ], + [ + -73.447135, + 45.536029 + ], + [ + -73.447379, + 45.536097 + ], + [ + -73.448323, + 45.536304 + ], + [ + -73.448623, + 45.536399 + ], + [ + -73.448792, + 45.536499 + ], + [ + -73.448898, + 45.536561 + ], + [ + -73.450403, + 45.537461 + ], + [ + -73.450563, + 45.537556 + ], + [ + -73.450772, + 45.537669 + ], + [ + -73.450923, + 45.537718 + ], + [ + -73.450952, + 45.537727 + ], + [ + -73.451166, + 45.537772 + ], + [ + -73.451401, + 45.537795 + ], + [ + -73.451627, + 45.537786 + ], + [ + -73.452059, + 45.537741 + ], + [ + -73.452711, + 45.537692 + ], + [ + -73.45289, + 45.537696 + ], + [ + -73.452931, + 45.537697 + ], + [ + -73.453038, + 45.53771 + ], + [ + -73.454051, + 45.537823 + ], + [ + -73.455005, + 45.537945 + ], + [ + -73.456338, + 45.538129 + ], + [ + -73.456445, + 45.538144 + ], + [ + -73.456368, + 45.53848 + ], + [ + -73.456357, + 45.53853 + ], + [ + -73.456221, + 45.539372 + ], + [ + -73.456144, + 45.539984 + ], + [ + -73.456089, + 45.54029 + ], + [ + -73.456076, + 45.540361 + ], + [ + -73.455916, + 45.541266 + ], + [ + -73.455868, + 45.541584 + ], + [ + -73.455834, + 45.54181 + ], + [ + -73.455702, + 45.542678 + ], + [ + -73.455523, + 45.543849 + ], + [ + -73.455509, + 45.543938 + ], + [ + -73.455433, + 45.54441 + ], + [ + -73.455289, + 45.544748 + ], + [ + -73.455178, + 45.54491 + ], + [ + -73.455067, + 45.545031 + ], + [ + -73.454985, + 45.545117 + ], + [ + -73.45488, + 45.545202 + ], + [ + -73.454712, + 45.545301 + ], + [ + -73.454645, + 45.545349 + ], + [ + -73.454517, + 45.54544 + ], + [ + -73.454362, + 45.54553 + ], + [ + -73.454039, + 45.545719 + ], + [ + -73.453554, + 45.546052 + ], + [ + -73.453387, + 45.546196 + ], + [ + -73.453186, + 45.546448 + ], + [ + -73.45304, + 45.546592 + ], + [ + -73.452912, + 45.546715 + ], + [ + -73.452859, + 45.546749 + ], + [ + -73.452375, + 45.547064 + ], + [ + -73.452243, + 45.547149 + ], + [ + -73.452185, + 45.547185 + ], + [ + -73.451911, + 45.547356 + ], + [ + -73.45159, + 45.547572 + ], + [ + -73.451191, + 45.547866 + ], + [ + -73.450894, + 45.548098 + ], + [ + -73.450533, + 45.54844 + ], + [ + -73.450285, + 45.548711 + ], + [ + -73.449967, + 45.549124 + ], + [ + -73.449826, + 45.549339 + ], + [ + -73.449599, + 45.549777 + ], + [ + -73.449468, + 45.550071 + ], + [ + -73.449323, + 45.550515 + ], + [ + -73.449234, + 45.550967 + ], + [ + -73.449207, + 45.551245 + ], + [ + -73.449202, + 45.551292 + ], + [ + -73.449198, + 45.551397 + ], + [ + -73.44919, + 45.55162 + ], + [ + -73.44919, + 45.551642 + ], + [ + -73.44919, + 45.551706 + ], + [ + -73.449191, + 45.551792 + ], + [ + -73.449191, + 45.551808 + ], + [ + -73.449275, + 45.55238 + ], + [ + -73.449348, + 45.552926 + ], + [ + -73.449359, + 45.55301 + ], + [ + -73.44943, + 45.553558 + ], + [ + -73.449515, + 45.554197 + ], + [ + -73.449606, + 45.554861 + ], + [ + -73.4497, + 45.555533 + ], + [ + -73.449702, + 45.555549 + ], + [ + -73.449715, + 45.555674 + ], + [ + -73.449726, + 45.555769 + ], + [ + -73.450252, + 45.559679 + ], + [ + -73.450243, + 45.559863 + ], + [ + -73.450225, + 45.560074 + ], + [ + -73.450265, + 45.560646 + ], + [ + -73.450329, + 45.561686 + ], + [ + -73.450329, + 45.561694 + ], + [ + -73.450326, + 45.561892 + ], + [ + -73.450315, + 45.562486 + ], + [ + -73.450301, + 45.562913 + ], + [ + -73.45028, + 45.563354 + ], + [ + -73.450273, + 45.563591 + ], + [ + -73.450265, + 45.563858 + ], + [ + -73.450253, + 45.564101 + ], + [ + -73.45024, + 45.564574 + ], + [ + -73.450203, + 45.565334 + ], + [ + -73.450199, + 45.565428 + ], + [ + -73.4502, + 45.565559 + ], + [ + -73.450143, + 45.566931 + ], + [ + -73.450122, + 45.567401 + ], + [ + -73.450115, + 45.567548 + ], + [ + -73.450114, + 45.567557 + ], + [ + -73.450113, + 45.567561 + ], + [ + -73.450112, + 45.56757 + ], + [ + -73.450111, + 45.567575 + ], + [ + -73.45011, + 45.567584 + ], + [ + -73.450109, + 45.567593 + ], + [ + -73.450108, + 45.567597 + ], + [ + -73.450107, + 45.567606 + ], + [ + -73.450106, + 45.567611 + ], + [ + -73.450105, + 45.56762 + ], + [ + -73.450104, + 45.567629 + ], + [ + -73.450103, + 45.567633 + ], + [ + -73.450102, + 45.567642 + ], + [ + -73.450101, + 45.567647 + ], + [ + -73.4501, + 45.567656 + ], + [ + -73.450099, + 45.56766 + ], + [ + -73.450098, + 45.567669 + ], + [ + -73.450097, + 45.567678 + ], + [ + -73.450096, + 45.567683 + ], + [ + -73.450095, + 45.567691 + ], + [ + -73.450093, + 45.567696 + ], + [ + -73.450092, + 45.567705 + ], + [ + -73.450091, + 45.567714 + ], + [ + -73.45009, + 45.567718 + ], + [ + -73.450089, + 45.567727 + ], + [ + -73.450088, + 45.567732 + ], + [ + -73.450087, + 45.567741 + ], + [ + -73.450085, + 45.56775 + ], + [ + -73.450084, + 45.567754 + ], + [ + -73.450083, + 45.567763 + ], + [ + -73.450082, + 45.567768 + ], + [ + -73.450081, + 45.567777 + ], + [ + -73.450079, + 45.567781 + ], + [ + -73.450078, + 45.56779 + ], + [ + -73.450077, + 45.567799 + ], + [ + -73.450075, + 45.567804 + ], + [ + -73.450074, + 45.567813 + ], + [ + -73.450073, + 45.567817 + ], + [ + -73.450071, + 45.567826 + ], + [ + -73.45007, + 45.567835 + ], + [ + -73.450069, + 45.56784 + ], + [ + -73.450067, + 45.567849 + ], + [ + -73.450066, + 45.567853 + ], + [ + -73.450065, + 45.567862 + ], + [ + -73.450063, + 45.567871 + ], + [ + -73.450062, + 45.567876 + ], + [ + -73.45006, + 45.567885 + ], + [ + -73.450059, + 45.567889 + ], + [ + -73.450058, + 45.567898 + ], + [ + -73.450056, + 45.567903 + ], + [ + -73.450055, + 45.567912 + ], + [ + -73.450054, + 45.567921 + ], + [ + -73.450052, + 45.567925 + ], + [ + -73.450051, + 45.567934 + ], + [ + -73.450049, + 45.567939 + ], + [ + -73.450048, + 45.567948 + ], + [ + -73.450046, + 45.567957 + ], + [ + -73.450045, + 45.567961 + ], + [ + -73.450043, + 45.56797 + ], + [ + -73.450042, + 45.567975 + ], + [ + -73.45004, + 45.567984 + ], + [ + -73.450039, + 45.567988 + ], + [ + -73.450037, + 45.567997 + ], + [ + -73.450036, + 45.568006 + ], + [ + -73.450034, + 45.568011 + ], + [ + -73.450032, + 45.56802 + ], + [ + -73.450031, + 45.568024 + ], + [ + -73.450029, + 45.568033 + ], + [ + -73.450028, + 45.568042 + ], + [ + -73.450026, + 45.568047 + ], + [ + -73.450024, + 45.568056 + ], + [ + -73.450023, + 45.56806 + ], + [ + -73.450021, + 45.568069 + ], + [ + -73.450019, + 45.568074 + ], + [ + -73.450017, + 45.568083 + ], + [ + -73.450016, + 45.568092 + ], + [ + -73.450014, + 45.568096 + ], + [ + -73.450013, + 45.568105 + ], + [ + -73.450011, + 45.56811 + ], + [ + -73.450009, + 45.568119 + ], + [ + -73.450007, + 45.568123 + ], + [ + -73.450006, + 45.568132 + ], + [ + -73.450004, + 45.568141 + ], + [ + -73.450002, + 45.568146 + ], + [ + -73.45, + 45.568155 + ], + [ + -73.449999, + 45.568159 + ], + [ + -73.449997, + 45.568168 + ], + [ + -73.449995, + 45.568173 + ], + [ + -73.449993, + 45.568182 + ], + [ + -73.449991, + 45.568191 + ], + [ + -73.449989, + 45.568195 + ], + [ + -73.449988, + 45.568204 + ], + [ + -73.449986, + 45.568209 + ], + [ + -73.449984, + 45.568218 + ], + [ + -73.449982, + 45.568227 + ], + [ + -73.44998, + 45.568231 + ], + [ + -73.449978, + 45.56824 + ], + [ + -73.449976, + 45.568245 + ], + [ + -73.449974, + 45.568254 + ], + [ + -73.449972, + 45.568258 + ], + [ + -73.44997, + 45.568267 + ], + [ + -73.449968, + 45.568276 + ], + [ + -73.449967, + 45.568281 + ], + [ + -73.449965, + 45.56829 + ], + [ + -73.449963, + 45.568294 + ], + [ + -73.449961, + 45.568303 + ], + [ + -73.449959, + 45.568308 + ], + [ + -73.449957, + 45.568317 + ], + [ + -73.449955, + 45.568326 + ], + [ + -73.449953, + 45.56833 + ], + [ + -73.449951, + 45.568339 + ], + [ + -73.449949, + 45.568344 + ], + [ + -73.449946, + 45.568353 + ], + [ + -73.449944, + 45.568357 + ], + [ + -73.449942, + 45.568366 + ], + [ + -73.44994, + 45.568371 + ], + [ + -73.449938, + 45.56838 + ], + [ + -73.449936, + 45.568389 + ], + [ + -73.449934, + 45.568393 + ], + [ + -73.449932, + 45.568402 + ], + [ + -73.44993, + 45.568407 + ], + [ + -73.449927, + 45.568416 + ], + [ + -73.449925, + 45.56842 + ], + [ + -73.449923, + 45.568429 + ], + [ + -73.449921, + 45.568438 + ], + [ + -73.449919, + 45.568443 + ], + [ + -73.449917, + 45.568452 + ], + [ + -73.449915, + 45.568456 + ], + [ + -73.449912, + 45.568465 + ], + [ + -73.44991, + 45.56847 + ], + [ + -73.449908, + 45.568479 + ], + [ + -73.449905, + 45.568488 + ], + [ + -73.449903, + 45.568492 + ], + [ + -73.449901, + 45.568501 + ], + [ + -73.449899, + 45.568506 + ], + [ + -73.449897, + 45.568515 + ], + [ + -73.449894, + 45.568519 + ], + [ + -73.449892, + 45.568528 + ], + [ + -73.449889, + 45.568533 + ], + [ + -73.449887, + 45.568542 + ], + [ + -73.449885, + 45.568551 + ], + [ + -73.449883, + 45.568555 + ], + [ + -73.44988, + 45.568564 + ], + [ + -73.449878, + 45.568569 + ], + [ + -73.449875, + 45.568578 + ], + [ + -73.449873, + 45.568582 + ], + [ + -73.44987, + 45.568591 + ], + [ + -73.449868, + 45.568596 + ], + [ + -73.449866, + 45.568605 + ], + [ + -73.449863, + 45.568614 + ], + [ + -73.449861, + 45.568618 + ], + [ + -73.449856, + 45.568632 + ], + [ + -73.449825, + 45.568708 + ], + [ + -73.449762, + 45.568861 + ], + [ + -73.449744, + 45.568903 + ], + [ + -73.449627, + 45.569176 + ], + [ + -73.449277, + 45.569995 + ], + [ + -73.449093, + 45.570413 + ], + [ + -73.449089, + 45.570422 + ], + [ + -73.44907, + 45.570467 + ], + [ + -73.449049, + 45.570517 + ], + [ + -73.448873, + 45.570917 + ], + [ + -73.448823, + 45.571034 + ], + [ + -73.448771, + 45.571163 + ], + [ + -73.44818, + 45.572625 + ], + [ + -73.447654, + 45.573778 + ], + [ + -73.447519, + 45.574084 + ], + [ + -73.447518, + 45.574088 + ], + [ + -73.447455, + 45.574133 + ], + [ + -73.447308, + 45.574407 + ], + [ + -73.447267, + 45.574466 + ], + [ + -73.447241, + 45.574497 + ], + [ + -73.447197, + 45.574529 + ], + [ + -73.447149, + 45.574547 + ], + [ + -73.447112, + 45.574556 + ], + [ + -73.447049, + 45.574565 + ], + [ + -73.446965, + 45.574569 + ], + [ + -73.446884, + 45.574565 + ], + [ + -73.446792, + 45.574547 + ], + [ + -73.446652, + 45.574511 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.443147, + 45.572802 + ], + [ + -73.443228, + 45.572879 + ], + [ + -73.443273, + 45.572955 + ], + [ + -73.443271, + 45.573 + ], + [ + -73.443276, + 45.573125 + ], + [ + -73.443281, + 45.573166 + ], + [ + -73.443386, + 45.57326 + ], + [ + -73.443502, + 45.573319 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.44468, + 45.573697 + ], + [ + -73.444697, + 45.573706 + ], + [ + -73.444729, + 45.573713 + ], + [ + -73.444769, + 45.573716 + ], + [ + -73.444831, + 45.573715 + ], + [ + -73.444884, + 45.573708 + ], + [ + -73.44491, + 45.573694 + ], + [ + -73.444911, + 45.573692 + ], + [ + -73.444953, + 45.573633 + ], + [ + -73.44492, + 45.573618 + ], + [ + -73.444872, + 45.573601 + ], + [ + -73.444829, + 45.573598 + ], + [ + -73.444749, + 45.573615 + ], + [ + -73.44471, + 45.573635 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.443539, + 45.573203 + ], + [ + -73.443522, + 45.573154 + ] + ] + }, + "id": 68, + "properties": { + "id": "c9a64ed7-cb39-4375-a0db-eeb691913c56", + "data": { + "gtfs": { + "shape_id": "22_2_R" + }, + "segments": [ + { + "distanceMeters": 531, + "travelTimeSeconds": 154 + }, + { + "distanceMeters": 87, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 552, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 412, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 440, + "travelTimeSeconds": 127 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 585, + "travelTimeSeconds": 107 + }, + { + "distanceMeters": 439, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 685, + "travelTimeSeconds": 126 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 1185, + "travelTimeSeconds": 221 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 198, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10185, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7260.781792463753, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.14, + "travelTimeWithoutDwellTimesSeconds": 1980, + "operatingTimeWithLayoverTimeSeconds": 2178, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1980, + "operatingSpeedWithLayoverMetersPerSecond": 4.68, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.14 + }, + "mode": "bus", + "name": "boul. Jacques-Cartier", + "color": "#A32638", + "nodes": [ + "4f05d74f-7126-4527-951d-20bf28624a4f", + "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", + "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", + "64e79ef5-e499-4b0b-96e8-a047e210960b", + "9a101899-eb7e-4980-897e-cfb842bca005", + "3d1e4353-a4d7-45de-bd72-c906526806e2", + "f8e89dfa-b651-418d-b1ab-5c9f2ffb0cf1", + "455644f9-4a24-446b-b548-a53bc406a4d8", + "3d39c5de-3cd5-4fd7-925f-37e3d32bd66c", + "5b35096e-2561-4a9f-8bf4-a3e7609358bf", + "e36c087c-d78e-48bb-9430-6af9d10493cf", + "de69f95c-e485-42da-bcac-5eeb8a8928ad", + "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", + "0e37f239-15e7-41c5-a31a-ce2ad3dc4eae", + "576ef8c5-693c-4ae9-bb41-68685f43e174", + "210e532b-2acc-4a3e-b173-3471add098b1", + "8b3a553d-dad5-41ff-b228-80f338c4b0e0", + "25a5f82a-36a7-4a52-af2b-32a681f87765", + "231dda72-d4b5-48ae-b714-5ce9d3802c45", + "e5c2d9f4-1be6-458f-854f-8103a3048b8c", + "f1d63efc-c02d-4bb9-828b-ddc2e062546b", + "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", + "6f622956-b7a2-452d-975a-9f37d3afce01", + "86d2a168-d8d6-4528-80ff-833432ddaf2d", + "c7d234f2-22e5-4459-8628-1d01e7ca4dc0", + "95cc31bb-b82e-4ab9-921f-e5a8cd8454c3", + "b66a9525-9dd9-49fa-b088-bde983b8c260", + "6d4dc817-4368-4ece-aeda-37df1213d699", + "bf606954-197a-4c94-b8d0-fda71ab755ca", + "804d8b1f-4ada-4e34-bf79-888a34e590ac", + "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", + "6672cb43-3241-42d7-b5c0-fdaed10338b9", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287" + ], + "stops": [], + "line_id": "f1b96778-f611-40e8-a471-573c5b50a7c2", + "segments": [ + 0, + 17, + 19, + 33, + 37, + 46, + 50, + 61, + 64, + 68, + 71, + 75, + 80, + 83, + 89, + 95, + 103, + 115, + 117, + 127, + 132, + 138, + 141, + 153, + 163, + 181, + 193, + 200, + 206, + 210, + 214, + 371, + 379 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 68, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.45068, + 45.545847 + ], + [ + -73.4506, + 45.545902 + ], + [ + -73.449968, + 45.546338 + ], + [ + -73.450891, + 45.547039 + ], + [ + -73.451416, + 45.547437 + ], + [ + -73.451967, + 45.547076 + ], + [ + -73.452008, + 45.547049 + ], + [ + -73.452061, + 45.547014 + ], + [ + -73.45163, + 45.546686 + ], + [ + -73.450733, + 45.546003 + ], + [ + -73.4506, + 45.545902 + ], + [ + -73.451253, + 45.545453 + ], + [ + -73.452335, + 45.544694 + ], + [ + -73.452491, + 45.544585 + ], + [ + -73.453722, + 45.543747 + ], + [ + -73.453772, + 45.543712 + ], + [ + -73.454376, + 45.543288 + ], + [ + -73.454754, + 45.543022 + ], + [ + -73.455166, + 45.542732 + ], + [ + -73.455282, + 45.54266 + ], + [ + -73.455702, + 45.542678 + ], + [ + -73.455971, + 45.542683 + ], + [ + -73.456034, + 45.542341 + ], + [ + -73.456127, + 45.541828 + ], + [ + -73.45622, + 45.541171 + ], + [ + -73.456331, + 45.540472 + ], + [ + -73.456345, + 45.540384 + ], + [ + -73.456347, + 45.540366 + ], + [ + -73.456509, + 45.539394 + ], + [ + -73.456509, + 45.539219 + ], + [ + -73.456656, + 45.5384 + ], + [ + -73.456667, + 45.538348 + ], + [ + -73.456667, + 45.538348 + ], + [ + -73.456674, + 45.53831 + ], + [ + -73.456716, + 45.53818 + ], + [ + -73.456753, + 45.538063 + ], + [ + -73.456906, + 45.537595 + ], + [ + -73.457034, + 45.537289 + ], + [ + -73.457312, + 45.536745 + ], + [ + -73.457525, + 45.536412 + ], + [ + -73.457657, + 45.536211 + ], + [ + -73.457717, + 45.536119 + ], + [ + -73.457866, + 45.535926 + ], + [ + -73.458063, + 45.535706 + ], + [ + -73.458203, + 45.535555 + ], + [ + -73.458206, + 45.535553 + ], + [ + -73.45852, + 45.535215 + ], + [ + -73.45895, + 45.534833 + ], + [ + -73.45901, + 45.534785 + ], + [ + -73.459195, + 45.53464 + ], + [ + -73.460968, + 45.533133 + ], + [ + -73.461503, + 45.532606 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.462106, + 45.531887 + ], + [ + -73.462411, + 45.531442 + ], + [ + -73.462832, + 45.530659 + ], + [ + -73.462938, + 45.530461 + ], + [ + -73.46396, + 45.528576 + ], + [ + -73.465084, + 45.526501 + ], + [ + -73.465154, + 45.526372 + ], + [ + -73.465286, + 45.525972 + ], + [ + -73.46533, + 45.525747 + ], + [ + -73.465344, + 45.525549 + ], + [ + -73.465322, + 45.525364 + ], + [ + -73.465135, + 45.524539 + ], + [ + -73.465111, + 45.524431 + ], + [ + -73.464907, + 45.523532 + ], + [ + -73.464877, + 45.523398 + ], + [ + -73.464763, + 45.522917 + ], + [ + -73.464685, + 45.522624 + ], + [ + -73.464607, + 45.522332 + ], + [ + -73.464576, + 45.522215 + ], + [ + -73.464435, + 45.521608 + ], + [ + -73.464421, + 45.521551 + ], + [ + -73.4643, + 45.521015 + ], + [ + -73.464225, + 45.52069 + ], + [ + -73.464096, + 45.520097 + ], + [ + -73.464063, + 45.519947 + ], + [ + -73.463992, + 45.519645 + ], + [ + -73.463946, + 45.519416 + ], + [ + -73.463946, + 45.519259 + ], + [ + -73.463946, + 45.519088 + ], + [ + -73.463972, + 45.518953 + ], + [ + -73.464012, + 45.51884 + ], + [ + -73.46406, + 45.518732 + ], + [ + -73.464166, + 45.518557 + ], + [ + -73.464483, + 45.518161 + ], + [ + -73.464809, + 45.517689 + ], + [ + -73.464941, + 45.517498 + ], + [ + -73.465811, + 45.516258 + ], + [ + -73.466112, + 45.515856 + ], + [ + -73.466232, + 45.515695 + ], + [ + -73.466795, + 45.514943 + ], + [ + -73.467723, + 45.513688 + ], + [ + -73.467821, + 45.513555 + ], + [ + -73.468294, + 45.512911 + ], + [ + -73.468698, + 45.512362 + ], + [ + -73.468744, + 45.5123 + ], + [ + -73.469443, + 45.511193 + ], + [ + -73.469555, + 45.511034 + ], + [ + -73.469846, + 45.510622 + ], + [ + -73.470521, + 45.509701 + ], + [ + -73.471066, + 45.508957 + ], + [ + -73.471144, + 45.508849 + ], + [ + -73.471373, + 45.508926 + ], + [ + -73.471408, + 45.508938 + ], + [ + -73.472138, + 45.509183 + ], + [ + -73.475237, + 45.510199 + ], + [ + -73.475433, + 45.510263 + ], + [ + -73.478282, + 45.511193 + ], + [ + -73.478511, + 45.511267 + ], + [ + -73.481433, + 45.512219 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.484505, + 45.513215 + ], + [ + -73.484663, + 45.513266 + ], + [ + -73.487598, + 45.514222 + ], + [ + -73.48773, + 45.514265 + ], + [ + -73.490679, + 45.515226 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.493747, + 45.516228 + ], + [ + -73.493881, + 45.516272 + ], + [ + -73.497588, + 45.517472 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.49882, + 45.517869 + ], + [ + -73.499884, + 45.518231 + ], + [ + -73.499972, + 45.518261 + ], + [ + -73.502085, + 45.518942 + ], + [ + -73.502235, + 45.51899 + ], + [ + -73.505409, + 45.520027 + ], + [ + -73.505525, + 45.520065 + ], + [ + -73.507529, + 45.520711 + ], + [ + -73.507813, + 45.520803 + ], + [ + -73.507881, + 45.520866 + ], + [ + -73.508099, + 45.520938 + ], + [ + -73.508258, + 45.520974 + ], + [ + -73.50837, + 45.520987 + ], + [ + -73.508461, + 45.520983 + ], + [ + -73.508562, + 45.520983 + ], + [ + -73.50866, + 45.520978 + ], + [ + -73.50877, + 45.520987 + ], + [ + -73.508969, + 45.521037 + ], + [ + -73.509108, + 45.521064 + ], + [ + -73.509167, + 45.521059 + ], + [ + -73.510016, + 45.521346 + ], + [ + -73.510243, + 45.521423 + ], + [ + -73.511276, + 45.521761 + ], + [ + -73.512488, + 45.522161 + ], + [ + -73.513225, + 45.522404 + ], + [ + -73.513329, + 45.522453 + ], + [ + -73.51347, + 45.522512 + ], + [ + -73.513466, + 45.522164 + ], + [ + -73.513465, + 45.52209 + ], + [ + -73.513454, + 45.521135 + ], + [ + -73.513455, + 45.520586 + ], + [ + -73.513456, + 45.520393 + ], + [ + -73.51347, + 45.52019 + ], + [ + -73.513487, + 45.520033 + ], + [ + -73.513501, + 45.519929 + ], + [ + -73.513525, + 45.519803 + ], + [ + -73.51356, + 45.519673 + ], + [ + -73.513601, + 45.519583 + ], + [ + -73.51367, + 45.519425 + ], + [ + -73.513718, + 45.519346 + ], + [ + -73.513785, + 45.519236 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.514993, + 45.519419 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518888, + 45.520627 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520267, + 45.521193 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520861, + 45.524416 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.520811, + 45.523427 + ] + ] + }, + "id": 69, + "properties": { + "id": "6aa22f8a-7e91-40a5-b542-55971c0d0eb4", + "data": { + "gtfs": { + "shape_id": "23_1_A" + }, + "segments": [ + { + "distanceMeters": 303, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 359, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 311, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 455, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 330, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 846, + "travelTimeSeconds": 175 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10422, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6000.649624960356, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.95, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 6.2, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.95 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", + "c7d234f2-22e5-4459-8628-1d01e7ca4dc0", + "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", + "946a029d-014a-45ca-adcd-e5b8e3927d52", + "43f18805-a4b1-4fc6-a1c9-787eb883bcde", + "e4670d3f-1aa4-4e69-ac7c-0f6fbe1ebddb", + "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", + "c77b3ec3-667e-4b8e-a8ba-613daafce3d4", + "8a5c9ba1-a597-4c12-90c9-b58f8d4f8d95", + "ead7d270-6dcb-4161-af5c-95bec6715688", + "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "8746746f-daed-4d54-a90f-724d51454ae1", + "47143cf4-4cce-4e8f-bfed-223c71fcc466", + "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", + "74d09865-876b-4428-9441-1504fb3f52bd", + "334bd241-267c-4081-968b-fd0340fabe8f", + "146e7d43-1e02-4f93-ac9a-e66dd29d3576", + "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", + "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", + "f9f88325-b670-4d47-91fa-edb372992bbc", + "e1a9e623-935b-47b9-a038-bcbd5a33f95e", + "ba348c95-9f07-48ca-a139-5d5c2dd83350", + "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", + "6c122298-4ea6-41ee-91e8-bb29cb41a320", + "e1825eb4-cef2-4f98-872f-0d169be63859", + "5a82a520-52b6-417e-972a-f9bf56fb4f33", + "64ba3e91-9bea-4655-ac42-4f3f1a14955c", + "315b8823-6c3a-493b-9af5-7325cbc48096", + "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "05287baf-76e5-4533-8eef-0902c45b01ae", + "54cba115-6a75-4b65-8019-b2b5de7a3947", + "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", + "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", + "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", + "52b1586a-11ae-4a36-8706-2e4367c6d3c8", + "234e805d-82ab-4d93-bec5-6c8c331d4f7b", + "b412dc8e-18d6-40de-b77b-38439256c33f", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "acabc807-b0f5-4579-b183-cef0484a7cc2" + ], + "stops": [], + "line_id": "a48da6f8-96ea-4bcc-b332-b3284577b887", + "segments": [ + 0, + 5, + 9, + 12, + 14, + 17, + 25, + 31, + 40, + 48, + 51, + 56, + 58, + 59, + 65, + 70, + 77, + 88, + 91, + 94, + 97, + 105, + 108, + 110, + 112, + 114, + 116, + 118, + 120, + 122, + 125, + 127, + 129, + 131, + 144, + 147, + 152, + 163, + 168, + 175 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 69, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.520811, + 45.523427 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522194, + 45.522338 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519249, + 45.520729 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514253, + 45.51909 + ], + [ + -73.513885, + 45.518962 + ], + [ + -73.51387, + 45.518957 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.51366, + 45.519196 + ], + [ + -73.513541, + 45.519389 + ], + [ + -73.513476, + 45.519506 + ], + [ + -73.513414, + 45.519673 + ], + [ + -73.513366, + 45.519828 + ], + [ + -73.513342, + 45.519907 + ], + [ + -73.513328, + 45.519997 + ], + [ + -73.513311, + 45.520181 + ], + [ + -73.513297, + 45.520388 + ], + [ + -73.513304, + 45.520586 + ], + [ + -73.51331, + 45.521135 + ], + [ + -73.513324, + 45.522116 + ], + [ + -73.513329, + 45.522453 + ], + [ + -73.513225, + 45.522404 + ], + [ + -73.511276, + 45.521761 + ], + [ + -73.510467, + 45.521496 + ], + [ + -73.510243, + 45.521423 + ], + [ + -73.509167, + 45.521059 + ], + [ + -73.50913, + 45.52101 + ], + [ + -73.509054, + 45.520983 + ], + [ + -73.508914, + 45.520938 + ], + [ + -73.508744, + 45.520907 + ], + [ + -73.50874, + 45.520906 + ], + [ + -73.508615, + 45.520897 + ], + [ + -73.508519, + 45.520893 + ], + [ + -73.508513, + 45.520893 + ], + [ + -73.508412, + 45.520888 + ], + [ + -73.508316, + 45.520888 + ], + [ + -73.508225, + 45.520879 + ], + [ + -73.508096, + 45.520852 + ], + [ + -73.507904, + 45.520798 + ], + [ + -73.507813, + 45.520803 + ], + [ + -73.505686, + 45.520117 + ], + [ + -73.505525, + 45.520065 + ], + [ + -73.502338, + 45.519023 + ], + [ + -73.502235, + 45.51899 + ], + [ + -73.500078, + 45.518295 + ], + [ + -73.499972, + 45.518261 + ], + [ + -73.49882, + 45.517869 + ], + [ + -73.497853, + 45.517557 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.493999, + 45.51631 + ], + [ + -73.493881, + 45.516272 + ], + [ + -73.490989, + 45.515327 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.487838, + 45.5143 + ], + [ + -73.48773, + 45.514265 + ], + [ + -73.484781, + 45.513304 + ], + [ + -73.484663, + 45.513266 + ], + [ + -73.481685, + 45.5123 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.478627, + 45.511305 + ], + [ + -73.478511, + 45.511267 + ], + [ + -73.475523, + 45.510293 + ], + [ + -73.475433, + 45.510263 + ], + [ + -73.472353, + 45.509253 + ], + [ + -73.472138, + 45.509183 + ], + [ + -73.471144, + 45.508849 + ], + [ + -73.470997, + 45.508809 + ], + [ + -73.470932, + 45.508894 + ], + [ + -73.470366, + 45.509655 + ], + [ + -73.470315, + 45.509725 + ], + [ + -73.470032, + 45.510114 + ], + [ + -73.46959, + 45.510721 + ], + [ + -73.469434, + 45.510905 + ], + [ + -73.469378, + 45.510967 + ], + [ + -73.469091, + 45.511282 + ], + [ + -73.468985, + 45.5114 + ], + [ + -73.468419, + 45.512173 + ], + [ + -73.468415, + 45.512178 + ], + [ + -73.466445, + 45.514919 + ], + [ + -73.466154, + 45.515358 + ], + [ + -73.466151, + 45.515363 + ], + [ + -73.465949, + 45.515589 + ], + [ + -73.463889, + 45.518354 + ], + [ + -73.463717, + 45.51862 + ], + [ + -73.463631, + 45.518853 + ], + [ + -73.463583, + 45.519083 + ], + [ + -73.463564, + 45.519245 + ], + [ + -73.463583, + 45.519488 + ], + [ + -73.463688, + 45.519933 + ], + [ + -73.463702, + 45.519992 + ], + [ + -73.463752, + 45.520203 + ], + [ + -73.463794, + 45.520379 + ], + [ + -73.463924, + 45.520923 + ], + [ + -73.464036, + 45.521392 + ], + [ + -73.464094, + 45.521634 + ], + [ + -73.464111, + 45.521706 + ], + [ + -73.464186, + 45.522017 + ], + [ + -73.464215, + 45.522138 + ], + [ + -73.464331, + 45.522602 + ], + [ + -73.464355, + 45.522697 + ], + [ + -73.464423, + 45.522975 + ], + [ + -73.46474, + 45.52431 + ], + [ + -73.464777, + 45.524466 + ], + [ + -73.46493, + 45.525112 + ], + [ + -73.464976, + 45.525355 + ], + [ + -73.465003, + 45.525643 + ], + [ + -73.464991, + 45.525805 + ], + [ + -73.464965, + 45.525922 + ], + [ + -73.464886, + 45.526134 + ], + [ + -73.46481, + 45.526282 + ], + [ + -73.464731, + 45.526435 + ], + [ + -73.463633, + 45.528487 + ], + [ + -73.462709, + 45.530211 + ], + [ + -73.462624, + 45.530371 + ], + [ + -73.462437, + 45.530708 + ], + [ + -73.462358, + 45.530861 + ], + [ + -73.46217, + 45.531262 + ], + [ + -73.461938, + 45.531653 + ], + [ + -73.461701, + 45.531998 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.46089, + 45.532868 + ], + [ + -73.460757, + 45.533003 + ], + [ + -73.459629, + 45.533974 + ], + [ + -73.459043, + 45.534445 + ], + [ + -73.458963, + 45.534509 + ], + [ + -73.458731, + 45.534693 + ], + [ + -73.458241, + 45.535152 + ], + [ + -73.457986, + 45.535404 + ], + [ + -73.457781, + 45.535638 + ], + [ + -73.457342, + 45.536214 + ], + [ + -73.457302, + 45.536279 + ], + [ + -73.45713, + 45.536556 + ], + [ + -73.456948, + 45.536857 + ], + [ + -73.456811, + 45.537145 + ], + [ + -73.456744, + 45.5373 + ], + [ + -73.456664, + 45.537487 + ], + [ + -73.456517, + 45.537928 + ], + [ + -73.456485, + 45.538022 + ], + [ + -73.456445, + 45.538144 + ], + [ + -73.456357, + 45.53853 + ], + [ + -73.456221, + 45.539372 + ], + [ + -73.456144, + 45.539984 + ], + [ + -73.456091, + 45.54028 + ], + [ + -73.456076, + 45.540361 + ], + [ + -73.455916, + 45.541266 + ], + [ + -73.455834, + 45.54181 + ], + [ + -73.455733, + 45.542476 + ], + [ + -73.455702, + 45.542678 + ], + [ + -73.455282, + 45.54266 + ], + [ + -73.455166, + 45.542732 + ], + [ + -73.454376, + 45.543288 + ], + [ + -73.453895, + 45.543626 + ], + [ + -73.453772, + 45.543712 + ], + [ + -73.452729, + 45.544423 + ], + [ + -73.452491, + 45.544585 + ], + [ + -73.451253, + 45.545453 + ], + [ + -73.45068, + 45.545847 + ] + ] + }, + "id": 70, + "properties": { + "id": "11e6e080-d187-48d4-91f5-5ed70afd8ef3", + "data": { + "gtfs": { + "shape_id": "23_1_R" + }, + "segments": [ + { + "distanceMeters": 631, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 571, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 331, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 542, + "travelTimeSeconds": 89 + }, + { + "distanceMeters": 396, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 558, + "travelTimeSeconds": 93 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 343, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 37 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9756, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6000.649624960356, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.5, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 5.81, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.5 + }, + "mode": "bus", + "name": "ch. du Tremblay", + "color": "#A32638", + "nodes": [ + "acabc807-b0f5-4579-b183-cef0484a7cc2", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "a4d70496-3fc5-40c1-865f-08991bdf0a19", + "3e3330f1-b4ce-44de-ae6a-efb45bab99e2", + "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", + "54cba115-6a75-4b65-8019-b2b5de7a3947", + "05287baf-76e5-4533-8eef-0902c45b01ae", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", + "315b8823-6c3a-493b-9af5-7325cbc48096", + "64ba3e91-9bea-4655-ac42-4f3f1a14955c", + "5a82a520-52b6-417e-972a-f9bf56fb4f33", + "e1825eb4-cef2-4f98-872f-0d169be63859", + "6c122298-4ea6-41ee-91e8-bb29cb41a320", + "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", + "777c347b-29df-4aab-9968-5fdfd62ed61a", + "e1a9e623-935b-47b9-a038-bcbd5a33f95e", + "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", + "146e7d43-1e02-4f93-ac9a-e66dd29d3576", + "a5ca0f69-bb6f-4ef0-aaaa-1498b5ff9d00", + "cc82fbc3-882e-47d6-b5d3-94ced115eefc", + "74d09865-876b-4428-9441-1504fb3f52bd", + "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", + "6beffd5a-a5e7-4808-863a-90505f6172be", + "8746746f-daed-4d54-a90f-724d51454ae1", + "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "ead7d270-6dcb-4161-af5c-95bec6715688", + "c24ac61d-1b21-4358-b45f-8dd4921fc769", + "f1d63efc-c02d-4bb9-828b-ddc2e062546b", + "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", + "1254d090-1d68-478c-a4fc-972cd246c948", + "43f18805-a4b1-4fc6-a1c9-787eb883bcde", + "946a029d-014a-45ca-adcd-e5b8e3927d52", + "e9a2766b-5d66-44e7-b6aa-e2b7898cae24" + ], + "stops": [], + "line_id": "a48da6f8-96ea-4bcc-b332-b3284577b887", + "segments": [ + 0, + 39, + 55, + 62, + 66, + 72, + 83, + 85, + 87, + 90, + 92, + 94, + 96, + 98, + 100, + 102, + 104, + 106, + 119, + 122, + 131, + 137, + 142, + 144, + 152, + 154, + 155, + 161, + 167, + 174, + 180, + 186, + 190, + 195, + 197 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 70, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.52252, + 45.524045 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522493, + 45.523494 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519445, + 45.523428 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519333, + 45.526816 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517853, + 45.526809 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517465, + 45.528168 + ], + [ + -73.517458, + 45.528249 + ], + [ + -73.517471, + 45.528385 + ], + [ + -73.517504, + 45.528565 + ], + [ + -73.517516, + 45.528652 + ], + [ + -73.517553, + 45.52877 + ], + [ + -73.517635, + 45.529002 + ], + [ + -73.517693, + 45.529249 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518855, + 45.531521 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.51956, + 45.531975 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.518103, + 45.534272 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.516364, + 45.536317 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.515478, + 45.537241 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.514577, + 45.537989 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.512974, + 45.539141 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.511384, + 45.540276 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.509926, + 45.541467 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.507818, + 45.543547 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.505655, + 45.545852 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.503922, + 45.547645 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500395, + 45.550072 + ], + [ + -73.500331, + 45.550074 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.499756, + 45.550039 + ], + [ + -73.499564, + 45.550308 + ], + [ + -73.499518, + 45.550373 + ], + [ + -73.499348, + 45.550589 + ], + [ + -73.499249, + 45.550718 + ], + [ + -73.499149, + 45.550849 + ], + [ + -73.49909, + 45.551 + ], + [ + -73.499052, + 45.551292 + ], + [ + -73.498995, + 45.551729 + ], + [ + -73.498947, + 45.552086 + ], + [ + -73.49893, + 45.552473 + ], + [ + -73.498889, + 45.552801 + ], + [ + -73.498863, + 45.552968 + ], + [ + -73.498848, + 45.553058 + ], + [ + -73.498813, + 45.553251 + ], + [ + -73.498782, + 45.553386 + ], + [ + -73.498737, + 45.553535 + ], + [ + -73.498669, + 45.55371 + ], + [ + -73.498603, + 45.553836 + ], + [ + -73.498557, + 45.553912 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.49818, + 45.554459 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.49612, + 45.55683 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.494582, + 45.55852 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.493684, + 45.559578 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.492558, + 45.561172 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.49226, + 45.561543 + ], + [ + -73.492112, + 45.561761 + ], + [ + -73.491962, + 45.561977 + ], + [ + -73.491763, + 45.562292 + ], + [ + -73.491701, + 45.562385 + ], + [ + -73.491585, + 45.562559 + ], + [ + -73.491441, + 45.562784 + ], + [ + -73.490929, + 45.563578 + ], + [ + -73.490573, + 45.564119 + ], + [ + -73.490532, + 45.564181 + ], + [ + -73.490496, + 45.564236 + ], + [ + -73.49016, + 45.564742 + ], + [ + -73.48995, + 45.565062 + ], + [ + -73.48981, + 45.565248 + ], + [ + -73.489559, + 45.565581 + ], + [ + -73.489458, + 45.565721 + ], + [ + -73.489162, + 45.566112 + ], + [ + -73.488997, + 45.566327 + ], + [ + -73.488978, + 45.566352 + ], + [ + -73.488811, + 45.566565 + ], + [ + -73.488635, + 45.566766 + ], + [ + -73.488461, + 45.56699 + ], + [ + -73.488294, + 45.567186 + ], + [ + -73.488221, + 45.567273 + ], + [ + -73.488004, + 45.567517 + ], + [ + -73.487807, + 45.567755 + ], + [ + -73.487503, + 45.56809 + ], + [ + -73.48741, + 45.568192 + ], + [ + -73.487163, + 45.568458 + ], + [ + -73.487007, + 45.568622 + ], + [ + -73.486935, + 45.568697 + ], + [ + -73.486687, + 45.568953 + ], + [ + -73.486371, + 45.569275 + ], + [ + -73.486338, + 45.569305 + ], + [ + -73.486289, + 45.569352 + ], + [ + -73.486279, + 45.569357 + ], + [ + -73.4862, + 45.569389 + ], + [ + -73.486097, + 45.56942 + ], + [ + -73.486018, + 45.569429 + ], + [ + -73.485923, + 45.569434 + ], + [ + -73.485842, + 45.569425 + ], + [ + -73.485757, + 45.569402 + ], + [ + -73.485687, + 45.569375 + ], + [ + -73.485569, + 45.569317 + ], + [ + -73.485496, + 45.569263 + ], + [ + -73.48502, + 45.568907 + ], + [ + -73.484166, + 45.568277 + ], + [ + -73.483391, + 45.567706 + ], + [ + -73.48313, + 45.567512 + ], + [ + -73.482936, + 45.567362 + ], + [ + -73.482793, + 45.567251 + ], + [ + -73.4815, + 45.566273 + ], + [ + -73.480444, + 45.565474 + ], + [ + -73.480073, + 45.565193 + ], + [ + -73.479021, + 45.564398 + ], + [ + -73.47891, + 45.564479 + ], + [ + -73.478587, + 45.564828 + ], + [ + -73.478585, + 45.56483 + ], + [ + -73.476702, + 45.566916 + ], + [ + -73.476555, + 45.567079 + ], + [ + -73.474723, + 45.569091 + ], + [ + -73.474569, + 45.569261 + ], + [ + -73.47328, + 45.570695 + ], + [ + -73.473129, + 45.570862 + ], + [ + -73.472726, + 45.570553 + ], + [ + -73.471234, + 45.569409 + ], + [ + -73.471116, + 45.569318 + ], + [ + -73.468288, + 45.567131 + ], + [ + -73.468142, + 45.567019 + ], + [ + -73.465766, + 45.565179 + ], + [ + -73.463975, + 45.563793 + ], + [ + -73.463775, + 45.563638 + ], + [ + -73.462444, + 45.562631 + ], + [ + -73.462324, + 45.56254 + ], + [ + -73.462191, + 45.562437 + ], + [ + -73.462138, + 45.562369 + ], + [ + -73.462108, + 45.562302 + ], + [ + -73.462094, + 45.562248 + ], + [ + -73.46208, + 45.56187 + ], + [ + -73.462143, + 45.561726 + ], + [ + -73.462165, + 45.561609 + ], + [ + -73.462171, + 45.561492 + ], + [ + -73.461975, + 45.561496 + ], + [ + -73.46095, + 45.561522 + ], + [ + -73.460725, + 45.561527 + ], + [ + -73.45996, + 45.561545 + ], + [ + -73.459832, + 45.561563 + ], + [ + -73.459681, + 45.561594 + ], + [ + -73.459494, + 45.56163 + ], + [ + -73.45935, + 45.561644 + ], + [ + -73.459012, + 45.561684 + ], + [ + -73.455945, + 45.561757 + ], + [ + -73.455653, + 45.561764 + ], + [ + -73.453525, + 45.561813 + ], + [ + -73.451225, + 45.561875 + ], + [ + -73.450841, + 45.561882 + ], + [ + -73.450541, + 45.561888 + ], + [ + -73.450348, + 45.561892 + ], + [ + -73.450326, + 45.561892 + ], + [ + -73.450315, + 45.562486 + ], + [ + -73.450301, + 45.562913 + ], + [ + -73.45028, + 45.563354 + ], + [ + -73.450274, + 45.563562 + ], + [ + -73.450265, + 45.563858 + ], + [ + -73.450253, + 45.564101 + ], + [ + -73.45024, + 45.564574 + ], + [ + -73.450205, + 45.565295 + ], + [ + -73.450201, + 45.565374 + ], + [ + -73.450199, + 45.565428 + ], + [ + -73.4502, + 45.565559 + ], + [ + -73.450143, + 45.566931 + ], + [ + -73.450124, + 45.567361 + ], + [ + -73.450115, + 45.567548 + ], + [ + -73.450114, + 45.567557 + ], + [ + -73.450113, + 45.567561 + ], + [ + -73.450112, + 45.56757 + ], + [ + -73.450111, + 45.567575 + ], + [ + -73.45011, + 45.567584 + ], + [ + -73.450109, + 45.567593 + ], + [ + -73.450108, + 45.567597 + ], + [ + -73.450107, + 45.567606 + ], + [ + -73.450106, + 45.567611 + ], + [ + -73.450105, + 45.56762 + ], + [ + -73.450104, + 45.567629 + ], + [ + -73.450103, + 45.567633 + ], + [ + -73.450102, + 45.567642 + ], + [ + -73.450101, + 45.567647 + ], + [ + -73.4501, + 45.567656 + ], + [ + -73.450099, + 45.56766 + ], + [ + -73.450098, + 45.567669 + ], + [ + -73.450097, + 45.567678 + ], + [ + -73.450096, + 45.567683 + ], + [ + -73.450095, + 45.567691 + ], + [ + -73.450093, + 45.567696 + ], + [ + -73.450092, + 45.567705 + ], + [ + -73.450091, + 45.567714 + ], + [ + -73.45009, + 45.567718 + ], + [ + -73.450089, + 45.567727 + ], + [ + -73.450088, + 45.567732 + ], + [ + -73.450087, + 45.567741 + ], + [ + -73.450085, + 45.56775 + ], + [ + -73.450084, + 45.567754 + ], + [ + -73.450083, + 45.567763 + ], + [ + -73.450082, + 45.567768 + ], + [ + -73.450081, + 45.567777 + ], + [ + -73.450079, + 45.567781 + ], + [ + -73.450078, + 45.56779 + ], + [ + -73.450077, + 45.567799 + ], + [ + -73.450075, + 45.567804 + ], + [ + -73.450074, + 45.567813 + ], + [ + -73.450073, + 45.567817 + ], + [ + -73.450071, + 45.567826 + ], + [ + -73.45007, + 45.567835 + ], + [ + -73.450069, + 45.56784 + ], + [ + -73.450067, + 45.567849 + ], + [ + -73.450066, + 45.567853 + ], + [ + -73.450065, + 45.567862 + ], + [ + -73.450063, + 45.567871 + ], + [ + -73.450062, + 45.567876 + ], + [ + -73.45006, + 45.567885 + ], + [ + -73.450059, + 45.567889 + ], + [ + -73.450058, + 45.567898 + ], + [ + -73.450056, + 45.567903 + ], + [ + -73.450055, + 45.567912 + ], + [ + -73.450054, + 45.567921 + ], + [ + -73.450052, + 45.567925 + ], + [ + -73.450051, + 45.567934 + ], + [ + -73.450049, + 45.567939 + ], + [ + -73.450048, + 45.567948 + ], + [ + -73.450046, + 45.567957 + ], + [ + -73.450045, + 45.567961 + ], + [ + -73.450043, + 45.56797 + ], + [ + -73.450042, + 45.567975 + ], + [ + -73.45004, + 45.567984 + ], + [ + -73.450039, + 45.567988 + ], + [ + -73.450037, + 45.567997 + ], + [ + -73.450036, + 45.568006 + ], + [ + -73.450034, + 45.568011 + ], + [ + -73.450032, + 45.56802 + ], + [ + -73.450031, + 45.568024 + ], + [ + -73.450029, + 45.568033 + ], + [ + -73.450028, + 45.568042 + ], + [ + -73.450026, + 45.568047 + ], + [ + -73.450024, + 45.568056 + ], + [ + -73.450023, + 45.56806 + ], + [ + -73.450021, + 45.568069 + ], + [ + -73.450019, + 45.568074 + ], + [ + -73.450017, + 45.568083 + ], + [ + -73.450016, + 45.568092 + ], + [ + -73.450014, + 45.568096 + ], + [ + -73.450013, + 45.568105 + ], + [ + -73.450011, + 45.56811 + ], + [ + -73.450009, + 45.568119 + ], + [ + -73.450007, + 45.568123 + ], + [ + -73.450006, + 45.568132 + ], + [ + -73.450004, + 45.568141 + ], + [ + -73.450002, + 45.568146 + ], + [ + -73.45, + 45.568155 + ], + [ + -73.449999, + 45.568159 + ], + [ + -73.449997, + 45.568168 + ], + [ + -73.449995, + 45.568173 + ], + [ + -73.449993, + 45.568182 + ], + [ + -73.449991, + 45.568191 + ], + [ + -73.449989, + 45.568195 + ], + [ + -73.449988, + 45.568204 + ], + [ + -73.449986, + 45.568209 + ], + [ + -73.449984, + 45.568218 + ], + [ + -73.449982, + 45.568227 + ], + [ + -73.44998, + 45.568231 + ], + [ + -73.449978, + 45.56824 + ], + [ + -73.449976, + 45.568245 + ], + [ + -73.449974, + 45.568254 + ], + [ + -73.449972, + 45.568258 + ], + [ + -73.44997, + 45.568267 + ], + [ + -73.449968, + 45.568276 + ], + [ + -73.449967, + 45.568281 + ], + [ + -73.449965, + 45.56829 + ], + [ + -73.449963, + 45.568294 + ], + [ + -73.449961, + 45.568303 + ], + [ + -73.449959, + 45.568308 + ], + [ + -73.449957, + 45.568317 + ], + [ + -73.449955, + 45.568326 + ], + [ + -73.449953, + 45.56833 + ], + [ + -73.449951, + 45.568339 + ], + [ + -73.449949, + 45.568344 + ], + [ + -73.449946, + 45.568353 + ], + [ + -73.449944, + 45.568357 + ], + [ + -73.449942, + 45.568366 + ], + [ + -73.44994, + 45.568371 + ], + [ + -73.449938, + 45.56838 + ], + [ + -73.449936, + 45.568389 + ], + [ + -73.449934, + 45.568393 + ], + [ + -73.449932, + 45.568402 + ], + [ + -73.44993, + 45.568407 + ], + [ + -73.449927, + 45.568416 + ], + [ + -73.449925, + 45.56842 + ], + [ + -73.449923, + 45.568429 + ], + [ + -73.449921, + 45.568438 + ], + [ + -73.449919, + 45.568443 + ], + [ + -73.449917, + 45.568452 + ], + [ + -73.449915, + 45.568456 + ], + [ + -73.449912, + 45.568465 + ], + [ + -73.44991, + 45.56847 + ], + [ + -73.449908, + 45.568479 + ], + [ + -73.449905, + 45.568488 + ], + [ + -73.449903, + 45.568492 + ], + [ + -73.449901, + 45.568501 + ], + [ + -73.449899, + 45.568506 + ], + [ + -73.449897, + 45.568515 + ], + [ + -73.449894, + 45.568519 + ], + [ + -73.449892, + 45.568528 + ], + [ + -73.449889, + 45.568533 + ], + [ + -73.449887, + 45.568542 + ], + [ + -73.449885, + 45.568551 + ], + [ + -73.449883, + 45.568555 + ], + [ + -73.44988, + 45.568564 + ], + [ + -73.449878, + 45.568569 + ], + [ + -73.449875, + 45.568578 + ], + [ + -73.449873, + 45.568582 + ], + [ + -73.44987, + 45.568591 + ], + [ + -73.449868, + 45.568596 + ], + [ + -73.449866, + 45.568605 + ], + [ + -73.449863, + 45.568614 + ], + [ + -73.449861, + 45.568618 + ], + [ + -73.449856, + 45.568632 + ], + [ + -73.449825, + 45.568708 + ], + [ + -73.449762, + 45.568861 + ], + [ + -73.449744, + 45.568903 + ], + [ + -73.44964, + 45.569145 + ], + [ + -73.449277, + 45.569995 + ], + [ + -73.449112, + 45.570242 + ], + [ + -73.449055, + 45.570278 + ], + [ + -73.448989, + 45.570323 + ], + [ + -73.448955, + 45.570337 + ], + [ + -73.448919, + 45.57035 + ], + [ + -73.448874, + 45.570359 + ], + [ + -73.44882, + 45.570368 + ], + [ + -73.448494, + 45.570395 + ], + [ + -73.448177, + 45.570336 + ], + [ + -73.447945, + 45.570309 + ], + [ + -73.447289, + 45.570181 + ], + [ + -73.4464, + 45.570007 + ], + [ + -73.446311, + 45.569989 + ], + [ + -73.446194, + 45.569957 + ], + [ + -73.446079, + 45.569912 + ], + [ + -73.44598, + 45.569845 + ], + [ + -73.44597, + 45.569836 + ], + [ + -73.445832, + 45.569723 + ], + [ + -73.445373, + 45.569368 + ], + [ + -73.445158, + 45.569201 + ], + [ + -73.444719, + 45.568877 + ], + [ + -73.444688, + 45.568854 + ], + [ + -73.444286, + 45.568557 + ], + [ + -73.443773, + 45.568165 + ], + [ + -73.442738, + 45.567373 + ], + [ + -73.44266, + 45.567297 + ], + [ + -73.442626, + 45.567202 + ], + [ + -73.442645, + 45.567108 + ], + [ + -73.442699, + 45.567027 + ], + [ + -73.443963, + 45.565808 + ], + [ + -73.444144, + 45.565592 + ], + [ + -73.443981, + 45.565444 + ], + [ + -73.443519, + 45.565078 + ], + [ + -73.442879, + 45.56457 + ], + [ + -73.44253, + 45.564311 + ], + [ + -73.442266, + 45.564115 + ], + [ + -73.442132, + 45.56421 + ], + [ + -73.441764, + 45.564435 + ], + [ + -73.441648, + 45.564502 + ], + [ + -73.441513, + 45.564534 + ], + [ + -73.441357, + 45.564551 + ], + [ + -73.441131, + 45.564524 + ], + [ + -73.439425, + 45.564155 + ], + [ + -73.436814, + 45.563591 + ], + [ + -73.436384, + 45.563499 + ], + [ + -73.433489, + 45.562878 + ], + [ + -73.432792, + 45.562738 + ], + [ + -73.432044, + 45.562628 + ], + [ + -73.431994, + 45.562621 + ], + [ + -73.431467, + 45.562553 + ], + [ + -73.430874, + 45.562507 + ], + [ + -73.43018, + 45.562453 + ], + [ + -73.429174, + 45.562439 + ], + [ + -73.428751, + 45.562442 + ], + [ + -73.428161, + 45.562447 + ], + [ + -73.426924, + 45.562451 + ], + [ + -73.426691, + 45.562451 + ], + [ + -73.426453, + 45.562424 + ], + [ + -73.426215, + 45.562374 + ], + [ + -73.425983, + 45.562302 + ], + [ + -73.425805, + 45.562207 + ], + [ + -73.425726, + 45.562147 + ], + [ + -73.425425, + 45.561919 + ], + [ + -73.425154, + 45.561703 + ], + [ + -73.424434, + 45.562242 + ], + [ + -73.424088, + 45.562481 + ], + [ + -73.424077, + 45.562487 + ], + [ + -73.423897, + 45.562597 + ], + [ + -73.422142, + 45.563568 + ], + [ + -73.421549, + 45.563919 + ], + [ + -73.42122, + 45.564089 + ], + [ + -73.421178, + 45.56411 + ], + [ + -73.420894, + 45.564251 + ], + [ + -73.420525, + 45.56444 + ], + [ + -73.419551, + 45.564984 + ], + [ + -73.417465, + 45.566138 + ], + [ + -73.415482, + 45.567236 + ], + [ + -73.415452, + 45.567253 + ], + [ + -73.415031, + 45.567473 + ], + [ + -73.414771, + 45.567599 + ], + [ + -73.414614, + 45.567648 + ], + [ + -73.414428, + 45.567711 + ], + [ + -73.414161, + 45.567751 + ], + [ + -73.413977, + 45.567764 + ], + [ + -73.413296, + 45.567804 + ], + [ + -73.410905, + 45.567943 + ], + [ + -73.41084, + 45.567947 + ], + [ + -73.410353, + 45.567973 + ], + [ + -73.410197, + 45.567982 + ], + [ + -73.409698, + 45.568013 + ], + [ + -73.408564, + 45.568078 + ], + [ + -73.408536, + 45.56808 + ], + [ + -73.408124, + 45.568079 + ], + [ + -73.407857, + 45.568048 + ], + [ + -73.407608, + 45.567993 + ], + [ + -73.407271, + 45.567849 + ], + [ + -73.407025, + 45.567701 + ], + [ + -73.406831, + 45.567543 + ], + [ + -73.406658, + 45.567399 + ], + [ + -73.405844, + 45.56792 + ], + [ + -73.405588, + 45.568085 + ], + [ + -73.40558, + 45.56809 + ], + [ + -73.404631, + 45.568702 + ], + [ + -73.404064, + 45.569066 + ], + [ + -73.403626, + 45.569304 + ], + [ + -73.403255, + 45.569443 + ], + [ + -73.402706, + 45.569596 + ], + [ + -73.40213, + 45.569649 + ], + [ + -73.401153, + 45.569706 + ], + [ + -73.401065, + 45.569711 + ], + [ + -73.400515, + 45.569738 + ], + [ + -73.399741, + 45.569782 + ], + [ + -73.398872, + 45.569831 + ], + [ + -73.398868, + 45.569534 + ], + [ + -73.398845, + 45.569466 + ], + [ + -73.398791, + 45.569385 + ], + [ + -73.398469, + 45.56913 + ], + [ + -73.397619, + 45.568457 + ], + [ + -73.397569, + 45.56839 + ], + [ + -73.397545, + 45.56834 + ], + [ + -73.397554, + 45.56825 + ], + [ + -73.397609, + 45.568156 + ], + [ + -73.398096, + 45.567844 + ] + ] + }, + "id": 71, + "properties": { + "id": "da51d484-bcf0-4fbc-834a-c6d6785ff21c", + "data": { + "gtfs": { + "shape_id": "25_1_R" + }, + "segments": [ + { + "distanceMeters": 1398, + "travelTimeSeconds": 210 + }, + { + "distanceMeters": 364, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 307, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 388, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 508, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 392, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 432, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 477, + "travelTimeSeconds": 93 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 405, + "travelTimeSeconds": 79 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 37 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 240, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 16569, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10831.790036187247, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.9, + "travelTimeWithoutDwellTimesSeconds": 2400, + "operatingTimeWithLayoverTimeSeconds": 2640, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2400, + "operatingSpeedWithLayoverMetersPerSecond": 6.28, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.9 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "4c755ece-2475-4915-941e-37859f0f391f", + "2e804fba-75d7-4c69-a7f7-706998c1a6f1", + "72e3e510-0ae4-407e-a30d-82f52f41e278", + "28559490-1b1e-4bd4-83e1-408fd6a20c77", + "28d90293-1261-41be-a75c-5fc82c3acd49", + "dadcd93c-5469-44bf-8e3e-ccac4a5af110", + "2d2815ee-443f-48d9-a68e-7f53a9aa6216", + "52f97fd3-6c91-420e-82d2-2198f2064d40", + "45ed93e4-f128-470f-b287-4d6ddc400e49", + "d9324afd-9cb7-46ba-ad04-bb8387256785", + "72c849ab-069a-4dc5-92fe-9ecc63ba074d", + "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", + "09bf17cd-9db1-41e3-b993-62146cb91158", + "bc056e84-1f20-4604-aad7-40427c6685a6", + "c879a803-d58b-4487-8291-391e9b516d3c", + "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", + "261a087b-9323-4696-9046-146a299af43d", + "0bcb0e97-db40-44bb-afe9-f6212a5b6387", + "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", + "84a0424b-0f35-4bd8-8109-5ac9219d5869", + "2d4bab42-76d4-4d53-9416-1ff754c71d1d", + "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", + "de56e105-40ff-411e-a830-378b68780088", + "056bf57a-8baa-407d-9c70-a2dcb2e36aea", + "3e6f6ee6-af44-48b8-9b96-431c0dfdb40c", + "cbdc89b0-549e-41a3-becc-56a1e8c831ce", + "3fa535d7-2c06-4fc3-ac22-347da96e9a38", + "a0c45e7b-af06-4ea8-a82a-a658b829e198", + "41fd6b6d-a514-49a6-acf5-1a39152b0c5f", + "7330c47a-92ea-4650-a95f-c6010983e0e2", + "efdd0b14-8e79-4a0f-85cb-f5ec3d032eec", + "a09356f2-d06c-43dd-b67b-b970ca63de4c", + "9ce474bd-b957-414c-a2bb-a8fbae6720a2", + "fe1423a8-e632-40f2-9b1e-93314e069a43", + "0bacad01-6fc4-40da-8f15-64bf9bb6a474", + "f52f270d-1079-4b27-a78b-f9321a1c3b1f", + "bf606954-197a-4c94-b8d0-fda71ab755ca", + "804d8b1f-4ada-4e34-bf79-888a34e590ac", + "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", + "33622e57-d444-4916-a7fb-d1fa4643eb90", + "e979db3f-26cd-41d5-8708-f07b7090bef0", + "83669f2f-a25c-47b1-99a1-53a7c08fed91", + "a77f8bf1-6b13-445b-a79c-6b0770c935c0", + "68d70807-e1f4-4393-a156-0cb02f37fe17", + "f1fdc85c-124b-4428-8960-81d8b0fa863a", + "af75f57b-23de-436e-ac1d-d36a204dd0cd", + "cb78d8bd-4b44-40b3-8301-c4501b063d48", + "58c5658c-7476-4072-998b-0663b682b8a6", + "b734f683-dc9f-47d6-a659-53e6bf9d2915", + "072328a7-3894-4360-8b61-c1e252d6cd3a", + "0041d8ec-3bef-4a62-90da-3711f5d509d2", + "2fb188f9-f7b1-471b-a5d6-51581b357b49", + "494eea8e-2f4e-4123-9eb6-ab837bba3b5d", + "4ff6fce9-ceb0-4a73-9642-e337dacfd9e4", + "0be77fd1-e022-43e1-8779-3871b7711e4b", + "bd49edea-1c3c-4a69-a5c6-0057e6bf7cb0", + "3ec963de-e577-4386-969b-85a9eb8b7aaf", + "a93c22b5-170a-45a8-a2c1-143c975239a9", + "a913c5ce-8de0-458e-a9ee-4ae555d41e98" + ], + "stops": [], + "line_id": "3dd0da2d-881a-4bb0-bf0c-519de288b81a", + "segments": [ + 0, + 57, + 73, + 76, + 78, + 82, + 85, + 88, + 94, + 99, + 102, + 105, + 120, + 131, + 145, + 147, + 150, + 152, + 154, + 160, + 164, + 174, + 189, + 205, + 212, + 214, + 216, + 218, + 221, + 223, + 225, + 226, + 228, + 239, + 247, + 251, + 258, + 262, + 267, + 424, + 436, + 444, + 449, + 458, + 460, + 468, + 470, + 473, + 479, + 487, + 497, + 501, + 502, + 510, + 511, + 516, + 526, + 534, + 542 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 71, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.398096, + 45.567844 + ], + [ + -73.398275, + 45.567729 + ], + [ + -73.399112, + 45.567217 + ], + [ + -73.403138, + 45.564701 + ], + [ + -73.404259, + 45.565548 + ], + [ + -73.404576, + 45.565795 + ], + [ + -73.40476, + 45.565935 + ], + [ + -73.405022, + 45.566133 + ], + [ + -73.405555, + 45.566548 + ], + [ + -73.405791, + 45.566732 + ], + [ + -73.406251, + 45.567093 + ], + [ + -73.406658, + 45.567399 + ], + [ + -73.406831, + 45.567543 + ], + [ + -73.407025, + 45.567701 + ], + [ + -73.407271, + 45.567849 + ], + [ + -73.407608, + 45.567993 + ], + [ + -73.407857, + 45.568048 + ], + [ + -73.408124, + 45.568079 + ], + [ + -73.408536, + 45.56808 + ], + [ + -73.409698, + 45.568013 + ], + [ + -73.410197, + 45.567982 + ], + [ + -73.410353, + 45.567973 + ], + [ + -73.41084, + 45.567947 + ], + [ + -73.413977, + 45.567764 + ], + [ + -73.414161, + 45.567751 + ], + [ + -73.414428, + 45.567711 + ], + [ + -73.414614, + 45.567648 + ], + [ + -73.414771, + 45.567599 + ], + [ + -73.415031, + 45.567473 + ], + [ + -73.415452, + 45.567253 + ], + [ + -73.419551, + 45.564984 + ], + [ + -73.420525, + 45.56444 + ], + [ + -73.420894, + 45.564251 + ], + [ + -73.42122, + 45.564089 + ], + [ + -73.421549, + 45.563919 + ], + [ + -73.422142, + 45.563568 + ], + [ + -73.423897, + 45.562597 + ], + [ + -73.424088, + 45.562481 + ], + [ + -73.424434, + 45.562242 + ], + [ + -73.425154, + 45.561703 + ], + [ + -73.425425, + 45.561919 + ], + [ + -73.425805, + 45.562207 + ], + [ + -73.425983, + 45.562302 + ], + [ + -73.426215, + 45.562374 + ], + [ + -73.426453, + 45.562424 + ], + [ + -73.426484, + 45.562427 + ], + [ + -73.426691, + 45.562451 + ], + [ + -73.426924, + 45.562451 + ], + [ + -73.428161, + 45.562447 + ], + [ + -73.429174, + 45.562439 + ], + [ + -73.43018, + 45.562453 + ], + [ + -73.430874, + 45.562507 + ], + [ + -73.431467, + 45.562553 + ], + [ + -73.431994, + 45.562621 + ], + [ + -73.432792, + 45.562738 + ], + [ + -73.433489, + 45.562878 + ], + [ + -73.436814, + 45.563591 + ], + [ + -73.441131, + 45.564524 + ], + [ + -73.441357, + 45.564551 + ], + [ + -73.441513, + 45.564534 + ], + [ + -73.441648, + 45.564502 + ], + [ + -73.441764, + 45.564435 + ], + [ + -73.442132, + 45.56421 + ], + [ + -73.442266, + 45.564115 + ], + [ + -73.442879, + 45.56457 + ], + [ + -73.443981, + 45.565444 + ], + [ + -73.444144, + 45.565592 + ], + [ + -73.443963, + 45.565808 + ], + [ + -73.442699, + 45.567027 + ], + [ + -73.442645, + 45.567108 + ], + [ + -73.442626, + 45.567202 + ], + [ + -73.44266, + 45.567297 + ], + [ + -73.442738, + 45.567373 + ], + [ + -73.444286, + 45.568557 + ], + [ + -73.444688, + 45.568854 + ], + [ + -73.444719, + 45.568877 + ], + [ + -73.445158, + 45.569201 + ], + [ + -73.445832, + 45.569723 + ], + [ + -73.44598, + 45.569845 + ], + [ + -73.446079, + 45.569912 + ], + [ + -73.446194, + 45.569957 + ], + [ + -73.446311, + 45.569989 + ], + [ + -73.4464, + 45.570007 + ], + [ + -73.447945, + 45.570309 + ], + [ + -73.448177, + 45.570336 + ], + [ + -73.448494, + 45.570395 + ], + [ + -73.449049, + 45.570517 + ], + [ + -73.449223, + 45.570544 + ], + [ + -73.449264, + 45.570454 + ], + [ + -73.449543, + 45.569814 + ], + [ + -73.44969, + 45.569482 + ], + [ + -73.449722, + 45.56941 + ], + [ + -73.449947, + 45.568902 + ], + [ + -73.449982, + 45.56883 + ], + [ + -73.450051, + 45.568681 + ], + [ + -73.450055, + 45.568672 + ], + [ + -73.450057, + 45.568668 + ], + [ + -73.450059, + 45.568663 + ], + [ + -73.450061, + 45.568659 + ], + [ + -73.450063, + 45.568654 + ], + [ + -73.450065, + 45.56865 + ], + [ + -73.450067, + 45.568645 + ], + [ + -73.450069, + 45.568641 + ], + [ + -73.450071, + 45.568636 + ], + [ + -73.450072, + 45.568632 + ], + [ + -73.450074, + 45.568627 + ], + [ + -73.450076, + 45.568623 + ], + [ + -73.450078, + 45.568618 + ], + [ + -73.45008, + 45.568618 + ], + [ + -73.450082, + 45.568614 + ], + [ + -73.450084, + 45.568609 + ], + [ + -73.450086, + 45.568605 + ], + [ + -73.450087, + 45.5686 + ], + [ + -73.450089, + 45.568596 + ], + [ + -73.450091, + 45.568591 + ], + [ + -73.450093, + 45.568587 + ], + [ + -73.450095, + 45.568582 + ], + [ + -73.450097, + 45.568578 + ], + [ + -73.450099, + 45.568573 + ], + [ + -73.450101, + 45.568569 + ], + [ + -73.450102, + 45.568564 + ], + [ + -73.450104, + 45.56856 + ], + [ + -73.450106, + 45.568555 + ], + [ + -73.450108, + 45.568551 + ], + [ + -73.45011, + 45.568546 + ], + [ + -73.450112, + 45.568542 + ], + [ + -73.450114, + 45.568537 + ], + [ + -73.450115, + 45.568533 + ], + [ + -73.450117, + 45.568528 + ], + [ + -73.450119, + 45.568524 + ], + [ + -73.45012, + 45.568519 + ], + [ + -73.450122, + 45.568519 + ], + [ + -73.450124, + 45.568515 + ], + [ + -73.450126, + 45.56851 + ], + [ + -73.450128, + 45.568506 + ], + [ + -73.450129, + 45.568501 + ], + [ + -73.450131, + 45.568497 + ], + [ + -73.450133, + 45.568492 + ], + [ + -73.450134, + 45.568488 + ], + [ + -73.450136, + 45.568483 + ], + [ + -73.450138, + 45.568479 + ], + [ + -73.45014, + 45.568474 + ], + [ + -73.450141, + 45.56847 + ], + [ + -73.450143, + 45.568465 + ], + [ + -73.450145, + 45.568461 + ], + [ + -73.450146, + 45.568456 + ], + [ + -73.450148, + 45.568452 + ], + [ + -73.45015, + 45.568447 + ], + [ + -73.450151, + 45.568443 + ], + [ + -73.450153, + 45.568438 + ], + [ + -73.450154, + 45.568434 + ], + [ + -73.450156, + 45.568429 + ], + [ + -73.450158, + 45.568425 + ], + [ + -73.45016, + 45.56842 + ], + [ + -73.450161, + 45.568416 + ], + [ + -73.450163, + 45.568411 + ], + [ + -73.450164, + 45.568407 + ], + [ + -73.450166, + 45.568402 + ], + [ + -73.450168, + 45.568398 + ], + [ + -73.450169, + 45.568393 + ], + [ + -73.450171, + 45.568393 + ], + [ + -73.450173, + 45.568389 + ], + [ + -73.450174, + 45.568384 + ], + [ + -73.450175, + 45.56838 + ], + [ + -73.450177, + 45.568375 + ], + [ + -73.450179, + 45.568371 + ], + [ + -73.45018, + 45.568366 + ], + [ + -73.450182, + 45.568362 + ], + [ + -73.450183, + 45.568357 + ], + [ + -73.450185, + 45.568353 + ], + [ + -73.450186, + 45.568348 + ], + [ + -73.450188, + 45.568344 + ], + [ + -73.450189, + 45.568339 + ], + [ + -73.450191, + 45.568335 + ], + [ + -73.450192, + 45.56833 + ], + [ + -73.450194, + 45.568326 + ], + [ + -73.450195, + 45.568321 + ], + [ + -73.450197, + 45.568317 + ], + [ + -73.450198, + 45.568312 + ], + [ + -73.4502, + 45.568308 + ], + [ + -73.450201, + 45.568303 + ], + [ + -73.450203, + 45.568299 + ], + [ + -73.450204, + 45.568294 + ], + [ + -73.450205, + 45.56829 + ], + [ + -73.450207, + 45.568285 + ], + [ + -73.450208, + 45.568281 + ], + [ + -73.45021, + 45.568276 + ], + [ + -73.450211, + 45.568272 + ], + [ + -73.450213, + 45.568267 + ], + [ + -73.450214, + 45.568263 + ], + [ + -73.450215, + 45.568258 + ], + [ + -73.450217, + 45.568254 + ], + [ + -73.450218, + 45.568249 + ], + [ + -73.450219, + 45.568245 + ], + [ + -73.450221, + 45.56824 + ], + [ + -73.450222, + 45.568236 + ], + [ + -73.450224, + 45.568231 + ], + [ + -73.450225, + 45.568227 + ], + [ + -73.450226, + 45.568227 + ], + [ + -73.450228, + 45.568222 + ], + [ + -73.450229, + 45.568218 + ], + [ + -73.45023, + 45.568213 + ], + [ + -73.450232, + 45.568209 + ], + [ + -73.450233, + 45.568204 + ], + [ + -73.450234, + 45.5682 + ], + [ + -73.450236, + 45.568195 + ], + [ + -73.450237, + 45.568191 + ], + [ + -73.450238, + 45.568186 + ], + [ + -73.45024, + 45.568182 + ], + [ + -73.450241, + 45.568177 + ], + [ + -73.450242, + 45.568173 + ], + [ + -73.450244, + 45.568168 + ], + [ + -73.450245, + 45.568164 + ], + [ + -73.450246, + 45.568159 + ], + [ + -73.450247, + 45.568155 + ], + [ + -73.450248, + 45.56815 + ], + [ + -73.45025, + 45.568146 + ], + [ + -73.450251, + 45.568141 + ], + [ + -73.450252, + 45.568137 + ], + [ + -73.450253, + 45.568132 + ], + [ + -73.450254, + 45.568128 + ], + [ + -73.450256, + 45.568123 + ], + [ + -73.450257, + 45.568119 + ], + [ + -73.450258, + 45.568114 + ], + [ + -73.450259, + 45.56811 + ], + [ + -73.45026, + 45.568105 + ], + [ + -73.450262, + 45.568101 + ], + [ + -73.450263, + 45.568096 + ], + [ + -73.450264, + 45.568092 + ], + [ + -73.450265, + 45.568088 + ], + [ + -73.450266, + 45.568083 + ], + [ + -73.450267, + 45.568079 + ], + [ + -73.450268, + 45.568074 + ], + [ + -73.45027, + 45.56807 + ], + [ + -73.450271, + 45.568065 + ], + [ + -73.450272, + 45.568061 + ], + [ + -73.450273, + 45.568056 + ], + [ + -73.450274, + 45.568052 + ], + [ + -73.450275, + 45.568047 + ], + [ + -73.450277, + 45.568043 + ], + [ + -73.450277, + 45.568038 + ], + [ + -73.450279, + 45.568034 + ], + [ + -73.45028, + 45.568029 + ], + [ + -73.450281, + 45.568025 + ], + [ + -73.450282, + 45.56802 + ], + [ + -73.450283, + 45.568016 + ], + [ + -73.450284, + 45.568011 + ], + [ + -73.450285, + 45.568007 + ], + [ + -73.450286, + 45.568002 + ], + [ + -73.450287, + 45.567998 + ], + [ + -73.450288, + 45.567993 + ], + [ + -73.450289, + 45.567989 + ], + [ + -73.45029, + 45.567984 + ], + [ + -73.450291, + 45.56798 + ], + [ + -73.450292, + 45.567975 + ], + [ + -73.450293, + 45.567971 + ], + [ + -73.450294, + 45.567966 + ], + [ + -73.450295, + 45.567962 + ], + [ + -73.450296, + 45.567957 + ], + [ + -73.450297, + 45.567957 + ], + [ + -73.450298, + 45.567953 + ], + [ + -73.450299, + 45.567948 + ], + [ + -73.4503, + 45.567944 + ], + [ + -73.450301, + 45.567939 + ], + [ + -73.450301, + 45.567935 + ], + [ + -73.450302, + 45.56793 + ], + [ + -73.450303, + 45.567926 + ], + [ + -73.450304, + 45.567921 + ], + [ + -73.450305, + 45.567917 + ], + [ + -73.450306, + 45.567912 + ], + [ + -73.450307, + 45.567908 + ], + [ + -73.450308, + 45.567903 + ], + [ + -73.450309, + 45.567899 + ], + [ + -73.450309, + 45.567894 + ], + [ + -73.45031, + 45.56789 + ], + [ + -73.450311, + 45.567885 + ], + [ + -73.450312, + 45.567881 + ], + [ + -73.450313, + 45.567876 + ], + [ + -73.450314, + 45.567872 + ], + [ + -73.450315, + 45.567867 + ], + [ + -73.450316, + 45.567863 + ], + [ + -73.450316, + 45.567858 + ], + [ + -73.450317, + 45.567854 + ], + [ + -73.450318, + 45.567849 + ], + [ + -73.450319, + 45.567845 + ], + [ + -73.45032, + 45.56784 + ], + [ + -73.45032, + 45.567836 + ], + [ + -73.450321, + 45.567831 + ], + [ + -73.450322, + 45.567827 + ], + [ + -73.450323, + 45.567822 + ], + [ + -73.450324, + 45.567818 + ], + [ + -73.450324, + 45.567813 + ], + [ + -73.450325, + 45.567809 + ], + [ + -73.450326, + 45.567804 + ], + [ + -73.450326, + 45.5678 + ], + [ + -73.450327, + 45.567795 + ], + [ + -73.450328, + 45.567791 + ], + [ + -73.450329, + 45.567786 + ], + [ + -73.450329, + 45.567782 + ], + [ + -73.45033, + 45.567777 + ], + [ + -73.450331, + 45.567773 + ], + [ + -73.450332, + 45.567768 + ], + [ + -73.450332, + 45.567764 + ], + [ + -73.450333, + 45.567759 + ], + [ + -73.450334, + 45.567755 + ], + [ + -73.450334, + 45.56775 + ], + [ + -73.450335, + 45.567746 + ], + [ + -73.450336, + 45.567741 + ], + [ + -73.450336, + 45.567737 + ], + [ + -73.450337, + 45.567732 + ], + [ + -73.450337, + 45.567728 + ], + [ + -73.450338, + 45.567723 + ], + [ + -73.450339, + 45.567719 + ], + [ + -73.450339, + 45.567714 + ], + [ + -73.45034, + 45.56771 + ], + [ + -73.45034, + 45.567705 + ], + [ + -73.450341, + 45.567701 + ], + [ + -73.450342, + 45.567696 + ], + [ + -73.450342, + 45.567692 + ], + [ + -73.450343, + 45.567687 + ], + [ + -73.450343, + 45.567683 + ], + [ + -73.450344, + 45.567678 + ], + [ + -73.450345, + 45.567674 + ], + [ + -73.450345, + 45.567669 + ], + [ + -73.450346, + 45.567665 + ], + [ + -73.450346, + 45.56766 + ], + [ + -73.450347, + 45.567656 + ], + [ + -73.450347, + 45.567651 + ], + [ + -73.450348, + 45.567647 + ], + [ + -73.450348, + 45.567642 + ], + [ + -73.450349, + 45.567638 + ], + [ + -73.450349, + 45.567633 + ], + [ + -73.45035, + 45.567629 + ], + [ + -73.45035, + 45.567624 + ], + [ + -73.450351, + 45.56762 + ], + [ + -73.450351, + 45.567615 + ], + [ + -73.450352, + 45.567611 + ], + [ + -73.450352, + 45.567606 + ], + [ + -73.450353, + 45.567602 + ], + [ + -73.450353, + 45.567597 + ], + [ + -73.450353, + 45.567593 + ], + [ + -73.450354, + 45.567588 + ], + [ + -73.450355, + 45.567584 + ], + [ + -73.450355, + 45.567579 + ], + [ + -73.450355, + 45.567575 + ], + [ + -73.450356, + 45.56757 + ], + [ + -73.450356, + 45.567566 + ], + [ + -73.450357, + 45.567561 + ], + [ + -73.450357, + 45.567557 + ], + [ + -73.450357, + 45.567552 + ], + [ + -73.45036, + 45.567548 + ], + [ + -73.450434, + 45.565568 + ], + [ + -73.450469, + 45.564632 + ], + [ + -73.450501, + 45.563818 + ], + [ + -73.450514, + 45.563467 + ], + [ + -73.450546, + 45.562441 + ], + [ + -73.450644, + 45.562216 + ], + [ + -73.450694, + 45.562131 + ], + [ + -73.450783, + 45.562045 + ], + [ + -73.450893, + 45.561982 + ], + [ + -73.451026, + 45.561928 + ], + [ + -73.451225, + 45.561875 + ], + [ + -73.453525, + 45.561813 + ], + [ + -73.454569, + 45.561789 + ], + [ + -73.455653, + 45.561764 + ], + [ + -73.459012, + 45.561684 + ], + [ + -73.459275, + 45.561684 + ], + [ + -73.460731, + 45.561644 + ], + [ + -73.461679, + 45.561618 + ], + [ + -73.461849, + 45.561685 + ], + [ + -73.461894, + 45.561703 + ], + [ + -73.461935, + 45.561735 + ], + [ + -73.46197, + 45.561762 + ], + [ + -73.46208, + 45.56187 + ], + [ + -73.462094, + 45.562248 + ], + [ + -73.462108, + 45.562302 + ], + [ + -73.462138, + 45.562369 + ], + [ + -73.462191, + 45.562437 + ], + [ + -73.462324, + 45.56254 + ], + [ + -73.463775, + 45.563638 + ], + [ + -73.468142, + 45.567019 + ], + [ + -73.471116, + 45.569318 + ], + [ + -73.473129, + 45.570862 + ], + [ + -73.473953, + 45.571492 + ], + [ + -73.474759, + 45.572109 + ], + [ + -73.475992, + 45.573049 + ], + [ + -73.476026, + 45.573085 + ], + [ + -73.477034, + 45.573852 + ], + [ + -73.47886, + 45.575219 + ], + [ + -73.479129, + 45.57542 + ], + [ + -73.47919, + 45.575474 + ], + [ + -73.479274, + 45.575534 + ], + [ + -73.47941, + 45.575433 + ], + [ + -73.479496, + 45.575361 + ], + [ + -73.479622, + 45.575253 + ], + [ + -73.4798, + 45.575097 + ], + [ + -73.479996, + 45.574941 + ], + [ + -73.480237, + 45.574738 + ], + [ + -73.48034, + 45.574648 + ], + [ + -73.480453, + 45.574551 + ], + [ + -73.480801, + 45.574263 + ], + [ + -73.481358, + 45.573789 + ], + [ + -73.481529, + 45.573644 + ], + [ + -73.481972, + 45.573269 + ], + [ + -73.482082, + 45.573173 + ], + [ + -73.482204, + 45.573068 + ], + [ + -73.482412, + 45.572903 + ], + [ + -73.482823, + 45.572557 + ], + [ + -73.482916, + 45.572476 + ], + [ + -73.482986, + 45.57241 + ], + [ + -73.483315, + 45.572122 + ], + [ + -73.483678, + 45.571813 + ], + [ + -73.483735, + 45.571764 + ], + [ + -73.483843, + 45.57167 + ], + [ + -73.484123, + 45.57144 + ], + [ + -73.484526, + 45.571099 + ], + [ + -73.484935, + 45.570755 + ], + [ + -73.484967, + 45.570727 + ], + [ + -73.485483, + 45.570269 + ], + [ + -73.485867, + 45.569908 + ], + [ + -73.485881, + 45.569894 + ], + [ + -73.485994, + 45.569784 + ], + [ + -73.486085, + 45.569691 + ], + [ + -73.486421, + 45.569373 + ], + [ + -73.487037, + 45.568739 + ], + [ + -73.487188, + 45.568584 + ], + [ + -73.487556, + 45.568196 + ], + [ + -73.487608, + 45.568138 + ], + [ + -73.488016, + 45.567684 + ], + [ + -73.488394, + 45.567236 + ], + [ + -73.488839, + 45.56671 + ], + [ + -73.488926, + 45.566606 + ], + [ + -73.489299, + 45.566117 + ], + [ + -73.489627, + 45.565684 + ], + [ + -73.489917, + 45.565286 + ], + [ + -73.490075, + 45.56507 + ], + [ + -73.490593, + 45.5643 + ], + [ + -73.490754, + 45.564056 + ], + [ + -73.491532, + 45.562873 + ], + [ + -73.491593, + 45.562778 + ], + [ + -73.491626, + 45.562725 + ], + [ + -73.4917, + 45.562606 + ], + [ + -73.491908, + 45.562298 + ], + [ + -73.49207, + 45.56203 + ], + [ + -73.492185, + 45.561871 + ], + [ + -73.492369, + 45.561588 + ], + [ + -73.49239, + 45.561557 + ], + [ + -73.492391, + 45.561555 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.494716, + 45.558369 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498677, + 45.553944 + ], + [ + -73.498726, + 45.553872 + ], + [ + -73.498813, + 45.553714 + ], + [ + -73.498895, + 45.553562 + ], + [ + -73.49895, + 45.553404 + ], + [ + -73.498964, + 45.55335 + ], + [ + -73.498988, + 45.55326 + ], + [ + -73.499026, + 45.553035 + ], + [ + -73.499051, + 45.55281 + ], + [ + -73.49911, + 45.552261 + ], + [ + -73.499127, + 45.552095 + ], + [ + -73.49916, + 45.551767 + ], + [ + -73.499199, + 45.551371 + ], + [ + -73.49924, + 45.551092 + ], + [ + -73.499284, + 45.550946 + ], + [ + -73.499366, + 45.550811 + ], + [ + -73.499487, + 45.550651 + ], + [ + -73.499683, + 45.550403 + ], + [ + -73.499747, + 45.550322 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.500107, + 45.550074 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.503657, + 45.547898 + ], + [ + -73.503782, + 45.547778 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.505412, + 45.54611 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507878, + 45.543482 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.509779, + 45.541607 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.511274, + 45.540355 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.51299, + 45.53913 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.514321, + 45.538181 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.515311, + 45.537392 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.516475, + 45.536189 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.51822, + 45.534135 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519479, + 45.531846 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519522, + 45.531915 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.51917, + 45.531641 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.518817, + 45.531415 + ], + [ + -73.518763, + 45.531374 + ], + [ + -73.518709, + 45.531325 + ], + [ + -73.518655, + 45.531271 + ], + [ + -73.518619, + 45.531213 + ], + [ + -73.518601, + 45.531154 + ], + [ + -73.518588, + 45.531096 + ], + [ + -73.518588, + 45.531055 + ], + [ + -73.518597, + 45.531006 + ], + [ + -73.518619, + 45.530952 + ], + [ + -73.518659, + 45.530884 + ], + [ + -73.518691, + 45.530826 + ], + [ + -73.518718, + 45.530785 + ], + [ + -73.518753, + 45.530731 + ], + [ + -73.518803, + 45.530646 + ], + [ + -73.518839, + 45.530596 + ], + [ + -73.518875, + 45.530547 + ], + [ + -73.518897, + 45.530497 + ], + [ + -73.518915, + 45.530448 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519398, + 45.526008 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519766, + 45.52338 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52237, + 45.524141 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 72, + "properties": { + "id": "4ed7374e-6599-45a1-a197-535c332678db", + "data": { + "gtfs": { + "shape_id": "25_1_A" + }, + "segments": [ + { + "distanceMeters": 9172, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 423, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 331, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 829, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 463, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 335, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 655, + "travelTimeSeconds": 109 + }, + { + "distanceMeters": 829, + "travelTimeSeconds": 138 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 16477, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6650.018169173266, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 17.16, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 14.45, + "averageSpeedWithoutDwellTimesMetersPerSecond": 17.16 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "75347f42-115f-47ec-b394-c1f56ce167fb", + "dc112aae-906c-47be-a1fb-06ef714fd1ab", + "ab105343-272d-4aa3-9238-846c2fa787cb", + "24527bed-7ea6-44d6-b6db-18ac609f4938", + "1b1077ca-8a37-46a1-a7be-751ea2f7f2ae", + "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", + "d5099816-374e-4ebc-ab50-5ca4d2f829e5", + "84a0424b-0f35-4bd8-8109-5ac9219d5869", + "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", + "261a087b-9323-4696-9046-146a299af43d", + "66456437-f154-4a2f-a12f-2f54cf668687", + "820a9d7c-25e9-487c-9e51-cfefcb1432f7", + "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", + "72c849ab-069a-4dc5-92fe-9ecc63ba074d", + "d9324afd-9cb7-46ba-ad04-bb8387256785", + "45ed93e4-f128-470f-b287-4d6ddc400e49", + "52f97fd3-6c91-420e-82d2-2198f2064d40", + "2d2815ee-443f-48d9-a68e-7f53a9aa6216", + "dadcd93c-5469-44bf-8e3e-ccac4a5af110", + "28d90293-1261-41be-a75c-5fc82c3acd49", + "28559490-1b1e-4bd4-83e1-408fd6a20c77", + "72e3e510-0ae4-407e-a30d-82f52f41e278", + "2e804fba-75d7-4c69-a7f7-706998c1a6f1", + "4fb4515b-e129-4622-b855-89143c2fd488", + "4c755ece-2475-4915-941e-37859f0f391f" + ], + "stops": [], + "line_id": "3dd0da2d-881a-4bb0-bf0c-519de288b81a", + "segments": [ + 0, + 398, + 404, + 412, + 420, + 430, + 437, + 440, + 446, + 452, + 468, + 474, + 492, + 495, + 499, + 503, + 510, + 513, + 515, + 519, + 522, + 525, + 543, + 574 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 72, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.398096, + 45.567844 + ], + [ + -73.398275, + 45.567729 + ], + [ + -73.399112, + 45.567217 + ], + [ + -73.403138, + 45.564701 + ], + [ + -73.404259, + 45.565548 + ], + [ + -73.404576, + 45.565795 + ], + [ + -73.40476, + 45.565935 + ], + [ + -73.405022, + 45.566133 + ], + [ + -73.405555, + 45.566548 + ], + [ + -73.405791, + 45.566732 + ], + [ + -73.406251, + 45.567093 + ], + [ + -73.406658, + 45.567399 + ], + [ + -73.406831, + 45.567543 + ], + [ + -73.407025, + 45.567701 + ], + [ + -73.407271, + 45.567849 + ], + [ + -73.407608, + 45.567993 + ], + [ + -73.407857, + 45.568048 + ], + [ + -73.408124, + 45.568079 + ], + [ + -73.408536, + 45.56808 + ], + [ + -73.409698, + 45.568013 + ], + [ + -73.410197, + 45.567982 + ], + [ + -73.410353, + 45.567973 + ], + [ + -73.41084, + 45.567947 + ], + [ + -73.413977, + 45.567764 + ], + [ + -73.414161, + 45.567751 + ], + [ + -73.414428, + 45.567711 + ], + [ + -73.414614, + 45.567648 + ], + [ + -73.414771, + 45.567599 + ], + [ + -73.415031, + 45.567473 + ], + [ + -73.415452, + 45.567253 + ], + [ + -73.419551, + 45.564984 + ], + [ + -73.420525, + 45.56444 + ], + [ + -73.420894, + 45.564251 + ], + [ + -73.42122, + 45.564089 + ], + [ + -73.421549, + 45.563919 + ], + [ + -73.422142, + 45.563568 + ], + [ + -73.423897, + 45.562597 + ], + [ + -73.424088, + 45.562481 + ], + [ + -73.424434, + 45.562242 + ], + [ + -73.425154, + 45.561703 + ], + [ + -73.425425, + 45.561919 + ], + [ + -73.425805, + 45.562207 + ], + [ + -73.425983, + 45.562302 + ], + [ + -73.426215, + 45.562374 + ], + [ + -73.426453, + 45.562424 + ], + [ + -73.426484, + 45.562427 + ], + [ + -73.426691, + 45.562451 + ], + [ + -73.426924, + 45.562451 + ], + [ + -73.428161, + 45.562447 + ], + [ + -73.429174, + 45.562439 + ], + [ + -73.43018, + 45.562453 + ], + [ + -73.430874, + 45.562507 + ], + [ + -73.431467, + 45.562553 + ], + [ + -73.431994, + 45.562621 + ], + [ + -73.432792, + 45.562738 + ], + [ + -73.433489, + 45.562878 + ], + [ + -73.436814, + 45.563591 + ], + [ + -73.441131, + 45.564524 + ], + [ + -73.441357, + 45.564551 + ], + [ + -73.441513, + 45.564534 + ], + [ + -73.441648, + 45.564502 + ], + [ + -73.441764, + 45.564435 + ], + [ + -73.442132, + 45.56421 + ], + [ + -73.442266, + 45.564115 + ], + [ + -73.442879, + 45.56457 + ], + [ + -73.443981, + 45.565444 + ], + [ + -73.444144, + 45.565592 + ], + [ + -73.443963, + 45.565808 + ], + [ + -73.442699, + 45.567027 + ], + [ + -73.442645, + 45.567108 + ], + [ + -73.442626, + 45.567202 + ], + [ + -73.44266, + 45.567297 + ], + [ + -73.442738, + 45.567373 + ], + [ + -73.444286, + 45.568557 + ], + [ + -73.444688, + 45.568854 + ], + [ + -73.444719, + 45.568877 + ], + [ + -73.445158, + 45.569201 + ], + [ + -73.445832, + 45.569723 + ], + [ + -73.44598, + 45.569845 + ], + [ + -73.446079, + 45.569912 + ], + [ + -73.446194, + 45.569957 + ], + [ + -73.446311, + 45.569989 + ], + [ + -73.4464, + 45.570007 + ], + [ + -73.447945, + 45.570309 + ], + [ + -73.448177, + 45.570336 + ], + [ + -73.448494, + 45.570395 + ], + [ + -73.449049, + 45.570517 + ], + [ + -73.449223, + 45.570544 + ], + [ + -73.449264, + 45.570454 + ], + [ + -73.449543, + 45.569814 + ], + [ + -73.44969, + 45.569482 + ], + [ + -73.449722, + 45.56941 + ], + [ + -73.449947, + 45.568902 + ], + [ + -73.449982, + 45.56883 + ], + [ + -73.450051, + 45.568681 + ], + [ + -73.450055, + 45.568672 + ], + [ + -73.450057, + 45.568668 + ], + [ + -73.450059, + 45.568663 + ], + [ + -73.450061, + 45.568659 + ], + [ + -73.450063, + 45.568654 + ], + [ + -73.450065, + 45.56865 + ], + [ + -73.450067, + 45.568645 + ], + [ + -73.450069, + 45.568641 + ], + [ + -73.450071, + 45.568636 + ], + [ + -73.450072, + 45.568632 + ], + [ + -73.450074, + 45.568627 + ], + [ + -73.450076, + 45.568623 + ], + [ + -73.450078, + 45.568618 + ], + [ + -73.45008, + 45.568618 + ], + [ + -73.450082, + 45.568614 + ], + [ + -73.450084, + 45.568609 + ], + [ + -73.450086, + 45.568605 + ], + [ + -73.450087, + 45.5686 + ], + [ + -73.450089, + 45.568596 + ], + [ + -73.450091, + 45.568591 + ], + [ + -73.450093, + 45.568587 + ], + [ + -73.450095, + 45.568582 + ], + [ + -73.450097, + 45.568578 + ], + [ + -73.450099, + 45.568573 + ], + [ + -73.450101, + 45.568569 + ], + [ + -73.450102, + 45.568564 + ], + [ + -73.450104, + 45.56856 + ], + [ + -73.450106, + 45.568555 + ], + [ + -73.450108, + 45.568551 + ], + [ + -73.45011, + 45.568546 + ], + [ + -73.450112, + 45.568542 + ], + [ + -73.450114, + 45.568537 + ], + [ + -73.450115, + 45.568533 + ], + [ + -73.450117, + 45.568528 + ], + [ + -73.450119, + 45.568524 + ], + [ + -73.45012, + 45.568519 + ], + [ + -73.450122, + 45.568519 + ], + [ + -73.450124, + 45.568515 + ], + [ + -73.450126, + 45.56851 + ], + [ + -73.450128, + 45.568506 + ], + [ + -73.450129, + 45.568501 + ], + [ + -73.450131, + 45.568497 + ], + [ + -73.450133, + 45.568492 + ], + [ + -73.450134, + 45.568488 + ], + [ + -73.450136, + 45.568483 + ], + [ + -73.450138, + 45.568479 + ], + [ + -73.45014, + 45.568474 + ], + [ + -73.450141, + 45.56847 + ], + [ + -73.450143, + 45.568465 + ], + [ + -73.450145, + 45.568461 + ], + [ + -73.450146, + 45.568456 + ], + [ + -73.450148, + 45.568452 + ], + [ + -73.45015, + 45.568447 + ], + [ + -73.450151, + 45.568443 + ], + [ + -73.450153, + 45.568438 + ], + [ + -73.450154, + 45.568434 + ], + [ + -73.450156, + 45.568429 + ], + [ + -73.450158, + 45.568425 + ], + [ + -73.45016, + 45.56842 + ], + [ + -73.450161, + 45.568416 + ], + [ + -73.450163, + 45.568411 + ], + [ + -73.450164, + 45.568407 + ], + [ + -73.450166, + 45.568402 + ], + [ + -73.450168, + 45.568398 + ], + [ + -73.450169, + 45.568393 + ], + [ + -73.450171, + 45.568393 + ], + [ + -73.450173, + 45.568389 + ], + [ + -73.450174, + 45.568384 + ], + [ + -73.450175, + 45.56838 + ], + [ + -73.450177, + 45.568375 + ], + [ + -73.450179, + 45.568371 + ], + [ + -73.45018, + 45.568366 + ], + [ + -73.450182, + 45.568362 + ], + [ + -73.450183, + 45.568357 + ], + [ + -73.450185, + 45.568353 + ], + [ + -73.450186, + 45.568348 + ], + [ + -73.450188, + 45.568344 + ], + [ + -73.450189, + 45.568339 + ], + [ + -73.450191, + 45.568335 + ], + [ + -73.450192, + 45.56833 + ], + [ + -73.450194, + 45.568326 + ], + [ + -73.450195, + 45.568321 + ], + [ + -73.450197, + 45.568317 + ], + [ + -73.450198, + 45.568312 + ], + [ + -73.4502, + 45.568308 + ], + [ + -73.450201, + 45.568303 + ], + [ + -73.450203, + 45.568299 + ], + [ + -73.450204, + 45.568294 + ], + [ + -73.450205, + 45.56829 + ], + [ + -73.450207, + 45.568285 + ], + [ + -73.450208, + 45.568281 + ], + [ + -73.45021, + 45.568276 + ], + [ + -73.450211, + 45.568272 + ], + [ + -73.450213, + 45.568267 + ], + [ + -73.450214, + 45.568263 + ], + [ + -73.450215, + 45.568258 + ], + [ + -73.450217, + 45.568254 + ], + [ + -73.450218, + 45.568249 + ], + [ + -73.450219, + 45.568245 + ], + [ + -73.450221, + 45.56824 + ], + [ + -73.450222, + 45.568236 + ], + [ + -73.450224, + 45.568231 + ], + [ + -73.450225, + 45.568227 + ], + [ + -73.450226, + 45.568227 + ], + [ + -73.450228, + 45.568222 + ], + [ + -73.450229, + 45.568218 + ], + [ + -73.45023, + 45.568213 + ], + [ + -73.450232, + 45.568209 + ], + [ + -73.450233, + 45.568204 + ], + [ + -73.450234, + 45.5682 + ], + [ + -73.450236, + 45.568195 + ], + [ + -73.450237, + 45.568191 + ], + [ + -73.450238, + 45.568186 + ], + [ + -73.45024, + 45.568182 + ], + [ + -73.450241, + 45.568177 + ], + [ + -73.450242, + 45.568173 + ], + [ + -73.450244, + 45.568168 + ], + [ + -73.450245, + 45.568164 + ], + [ + -73.450246, + 45.568159 + ], + [ + -73.450247, + 45.568155 + ], + [ + -73.450248, + 45.56815 + ], + [ + -73.45025, + 45.568146 + ], + [ + -73.450251, + 45.568141 + ], + [ + -73.450252, + 45.568137 + ], + [ + -73.450253, + 45.568132 + ], + [ + -73.450254, + 45.568128 + ], + [ + -73.450256, + 45.568123 + ], + [ + -73.450257, + 45.568119 + ], + [ + -73.450258, + 45.568114 + ], + [ + -73.450259, + 45.56811 + ], + [ + -73.45026, + 45.568105 + ], + [ + -73.450262, + 45.568101 + ], + [ + -73.450263, + 45.568096 + ], + [ + -73.450264, + 45.568092 + ], + [ + -73.450265, + 45.568088 + ], + [ + -73.450266, + 45.568083 + ], + [ + -73.450267, + 45.568079 + ], + [ + -73.450268, + 45.568074 + ], + [ + -73.45027, + 45.56807 + ], + [ + -73.450271, + 45.568065 + ], + [ + -73.450272, + 45.568061 + ], + [ + -73.450273, + 45.568056 + ], + [ + -73.450274, + 45.568052 + ], + [ + -73.450275, + 45.568047 + ], + [ + -73.450277, + 45.568043 + ], + [ + -73.450277, + 45.568038 + ], + [ + -73.450279, + 45.568034 + ], + [ + -73.45028, + 45.568029 + ], + [ + -73.450281, + 45.568025 + ], + [ + -73.450282, + 45.56802 + ], + [ + -73.450283, + 45.568016 + ], + [ + -73.450284, + 45.568011 + ], + [ + -73.450285, + 45.568007 + ], + [ + -73.450286, + 45.568002 + ], + [ + -73.450287, + 45.567998 + ], + [ + -73.450288, + 45.567993 + ], + [ + -73.450289, + 45.567989 + ], + [ + -73.45029, + 45.567984 + ], + [ + -73.450291, + 45.56798 + ], + [ + -73.450292, + 45.567975 + ], + [ + -73.450293, + 45.567971 + ], + [ + -73.450294, + 45.567966 + ], + [ + -73.450295, + 45.567962 + ], + [ + -73.450296, + 45.567957 + ], + [ + -73.450297, + 45.567957 + ], + [ + -73.450298, + 45.567953 + ], + [ + -73.450299, + 45.567948 + ], + [ + -73.4503, + 45.567944 + ], + [ + -73.450301, + 45.567939 + ], + [ + -73.450301, + 45.567935 + ], + [ + -73.450302, + 45.56793 + ], + [ + -73.450303, + 45.567926 + ], + [ + -73.450304, + 45.567921 + ], + [ + -73.450305, + 45.567917 + ], + [ + -73.450306, + 45.567912 + ], + [ + -73.450307, + 45.567908 + ], + [ + -73.450308, + 45.567903 + ], + [ + -73.450309, + 45.567899 + ], + [ + -73.450309, + 45.567894 + ], + [ + -73.45031, + 45.56789 + ], + [ + -73.450311, + 45.567885 + ], + [ + -73.450312, + 45.567881 + ], + [ + -73.450313, + 45.567876 + ], + [ + -73.450314, + 45.567872 + ], + [ + -73.450315, + 45.567867 + ], + [ + -73.450316, + 45.567863 + ], + [ + -73.450316, + 45.567858 + ], + [ + -73.450317, + 45.567854 + ], + [ + -73.450318, + 45.567849 + ], + [ + -73.450319, + 45.567845 + ], + [ + -73.45032, + 45.56784 + ], + [ + -73.45032, + 45.567836 + ], + [ + -73.450321, + 45.567831 + ], + [ + -73.450322, + 45.567827 + ], + [ + -73.450323, + 45.567822 + ], + [ + -73.450324, + 45.567818 + ], + [ + -73.450324, + 45.567813 + ], + [ + -73.450325, + 45.567809 + ], + [ + -73.450326, + 45.567804 + ], + [ + -73.450326, + 45.5678 + ], + [ + -73.450327, + 45.567795 + ], + [ + -73.450328, + 45.567791 + ], + [ + -73.450329, + 45.567786 + ], + [ + -73.450329, + 45.567782 + ], + [ + -73.45033, + 45.567777 + ], + [ + -73.450331, + 45.567773 + ], + [ + -73.450332, + 45.567768 + ], + [ + -73.450332, + 45.567764 + ], + [ + -73.450333, + 45.567759 + ], + [ + -73.450334, + 45.567755 + ], + [ + -73.450334, + 45.56775 + ], + [ + -73.450335, + 45.567746 + ], + [ + -73.450336, + 45.567741 + ], + [ + -73.450336, + 45.567737 + ], + [ + -73.450337, + 45.567732 + ], + [ + -73.450337, + 45.567728 + ], + [ + -73.450338, + 45.567723 + ], + [ + -73.450339, + 45.567719 + ], + [ + -73.450339, + 45.567714 + ], + [ + -73.45034, + 45.56771 + ], + [ + -73.45034, + 45.567705 + ], + [ + -73.450341, + 45.567701 + ], + [ + -73.450342, + 45.567696 + ], + [ + -73.450342, + 45.567692 + ], + [ + -73.450343, + 45.567687 + ], + [ + -73.450343, + 45.567683 + ], + [ + -73.450344, + 45.567678 + ], + [ + -73.450345, + 45.567674 + ], + [ + -73.450345, + 45.567669 + ], + [ + -73.450346, + 45.567665 + ], + [ + -73.450346, + 45.56766 + ], + [ + -73.450347, + 45.567656 + ], + [ + -73.450347, + 45.567651 + ], + [ + -73.450348, + 45.567647 + ], + [ + -73.450348, + 45.567642 + ], + [ + -73.450349, + 45.567638 + ], + [ + -73.450349, + 45.567633 + ], + [ + -73.45035, + 45.567629 + ], + [ + -73.45035, + 45.567624 + ], + [ + -73.450351, + 45.56762 + ], + [ + -73.450351, + 45.567615 + ], + [ + -73.450352, + 45.567611 + ], + [ + -73.450352, + 45.567606 + ], + [ + -73.450353, + 45.567602 + ], + [ + -73.450353, + 45.567597 + ], + [ + -73.450353, + 45.567593 + ], + [ + -73.450354, + 45.567588 + ], + [ + -73.450355, + 45.567584 + ], + [ + -73.450355, + 45.567579 + ], + [ + -73.450355, + 45.567575 + ], + [ + -73.450356, + 45.56757 + ], + [ + -73.450356, + 45.567566 + ], + [ + -73.450357, + 45.567561 + ], + [ + -73.450357, + 45.567557 + ], + [ + -73.450357, + 45.567552 + ], + [ + -73.45036, + 45.567548 + ], + [ + -73.450434, + 45.565568 + ], + [ + -73.450469, + 45.564632 + ], + [ + -73.450501, + 45.563818 + ], + [ + -73.450514, + 45.563467 + ], + [ + -73.450546, + 45.562441 + ], + [ + -73.450644, + 45.562216 + ], + [ + -73.450694, + 45.562131 + ], + [ + -73.450783, + 45.562045 + ], + [ + -73.450893, + 45.561982 + ], + [ + -73.451026, + 45.561928 + ], + [ + -73.451225, + 45.561875 + ], + [ + -73.453525, + 45.561813 + ], + [ + -73.454569, + 45.561789 + ], + [ + -73.455653, + 45.561764 + ], + [ + -73.459012, + 45.561684 + ], + [ + -73.459275, + 45.561684 + ], + [ + -73.459943, + 45.561666 + ], + [ + -73.460731, + 45.561644 + ], + [ + -73.461679, + 45.561618 + ], + [ + -73.461849, + 45.561685 + ], + [ + -73.461894, + 45.561703 + ], + [ + -73.461935, + 45.561735 + ], + [ + -73.46197, + 45.561762 + ], + [ + -73.46208, + 45.56187 + ], + [ + -73.462094, + 45.562248 + ], + [ + -73.462108, + 45.562302 + ], + [ + -73.462138, + 45.562369 + ], + [ + -73.462191, + 45.562437 + ], + [ + -73.462324, + 45.56254 + ], + [ + -73.463775, + 45.563638 + ], + [ + -73.468142, + 45.567019 + ], + [ + -73.471116, + 45.569318 + ], + [ + -73.473129, + 45.570862 + ], + [ + -73.473953, + 45.571492 + ], + [ + -73.474759, + 45.572109 + ], + [ + -73.475992, + 45.573049 + ], + [ + -73.476026, + 45.573085 + ], + [ + -73.477034, + 45.573852 + ], + [ + -73.47886, + 45.575219 + ], + [ + -73.479129, + 45.57542 + ], + [ + -73.47919, + 45.575474 + ], + [ + -73.479274, + 45.575534 + ], + [ + -73.47941, + 45.575433 + ], + [ + -73.479496, + 45.575361 + ], + [ + -73.479622, + 45.575253 + ], + [ + -73.4798, + 45.575097 + ], + [ + -73.479996, + 45.574941 + ], + [ + -73.480237, + 45.574738 + ], + [ + -73.480453, + 45.574551 + ], + [ + -73.480801, + 45.574263 + ], + [ + -73.481358, + 45.573789 + ], + [ + -73.481529, + 45.573644 + ], + [ + -73.481972, + 45.573269 + ], + [ + -73.482204, + 45.573068 + ], + [ + -73.482412, + 45.572903 + ], + [ + -73.482823, + 45.572557 + ], + [ + -73.482916, + 45.572476 + ], + [ + -73.482986, + 45.57241 + ], + [ + -73.483315, + 45.572122 + ], + [ + -73.483678, + 45.571813 + ], + [ + -73.483843, + 45.57167 + ], + [ + -73.484123, + 45.57144 + ], + [ + -73.484526, + 45.571099 + ], + [ + -73.484935, + 45.570755 + ], + [ + -73.484967, + 45.570727 + ], + [ + -73.485483, + 45.570269 + ], + [ + -73.485867, + 45.569908 + ], + [ + -73.485994, + 45.569784 + ], + [ + -73.486085, + 45.569691 + ], + [ + -73.486421, + 45.569373 + ], + [ + -73.487037, + 45.568739 + ], + [ + -73.487188, + 45.568584 + ], + [ + -73.487556, + 45.568196 + ], + [ + -73.487608, + 45.568138 + ], + [ + -73.488016, + 45.567684 + ], + [ + -73.488394, + 45.567236 + ], + [ + -73.488926, + 45.566606 + ], + [ + -73.489299, + 45.566117 + ], + [ + -73.489627, + 45.565684 + ], + [ + -73.489917, + 45.565286 + ], + [ + -73.490075, + 45.56507 + ], + [ + -73.490593, + 45.5643 + ], + [ + -73.491532, + 45.562873 + ], + [ + -73.491593, + 45.562778 + ], + [ + -73.4917, + 45.562606 + ], + [ + -73.491908, + 45.562298 + ], + [ + -73.49207, + 45.56203 + ], + [ + -73.492185, + 45.561871 + ], + [ + -73.492369, + 45.561588 + ], + [ + -73.492391, + 45.561555 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498677, + 45.553944 + ], + [ + -73.498726, + 45.553872 + ], + [ + -73.498813, + 45.553714 + ], + [ + -73.498895, + 45.553562 + ], + [ + -73.49895, + 45.553404 + ], + [ + -73.498964, + 45.55335 + ], + [ + -73.498988, + 45.55326 + ], + [ + -73.499026, + 45.553035 + ], + [ + -73.499051, + 45.55281 + ], + [ + -73.49911, + 45.552261 + ], + [ + -73.499127, + 45.552095 + ], + [ + -73.499199, + 45.551371 + ], + [ + -73.49924, + 45.551092 + ], + [ + -73.499284, + 45.550946 + ], + [ + -73.499366, + 45.550811 + ], + [ + -73.499487, + 45.550651 + ], + [ + -73.499747, + 45.550322 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.500107, + 45.550074 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.503657, + 45.547898 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519479, + 45.531846 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519522, + 45.531915 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.518817, + 45.531415 + ], + [ + -73.518763, + 45.531374 + ], + [ + -73.518709, + 45.531325 + ], + [ + -73.518655, + 45.531271 + ], + [ + -73.518619, + 45.531213 + ], + [ + -73.518601, + 45.531154 + ], + [ + -73.518588, + 45.531096 + ], + [ + -73.518588, + 45.531055 + ], + [ + -73.518597, + 45.531006 + ], + [ + -73.518619, + 45.530952 + ], + [ + -73.518659, + 45.530884 + ], + [ + -73.518691, + 45.530826 + ], + [ + -73.518718, + 45.530785 + ], + [ + -73.518753, + 45.530731 + ], + [ + -73.518803, + 45.530646 + ], + [ + -73.518839, + 45.530596 + ], + [ + -73.518875, + 45.530547 + ], + [ + -73.518897, + 45.530497 + ], + [ + -73.518915, + 45.530448 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519766, + 45.52338 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52237, + 45.524141 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 73, + "properties": { + "id": "b1f36b94-3821-4ae9-96fa-7436b786afa2", + "data": { + "gtfs": { + "shape_id": "25_1_A" + }, + "segments": [ + { + "distanceMeters": 6828, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 9649, + "travelTimeSeconds": 71 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 16477, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 537.8312017370496, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 137.31, + "travelTimeWithoutDwellTimesSeconds": 120, + "operatingTimeWithLayoverTimeSeconds": 300, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 120, + "operatingSpeedWithLayoverMetersPerSecond": 54.92, + "averageSpeedWithoutDwellTimesMetersPerSecond": 137.31 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "a913c5ce-8de0-458e-a9ee-4ae555d41e98", + "a4120eb1-d1f9-43e5-8720-90115641165b", + "0681e3d4-c5fd-4f85-982e-d5d26960784a" + ], + "stops": [], + "line_id": "3dd0da2d-881a-4bb0-bf0c-519de288b81a", + "segments": [ + 0, + 367 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 73, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.52252, + 45.524045 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522493, + 45.523494 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519445, + 45.523428 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519333, + 45.526816 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517853, + 45.526809 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517465, + 45.528168 + ], + [ + -73.517458, + 45.528249 + ], + [ + -73.517471, + 45.528385 + ], + [ + -73.517504, + 45.528565 + ], + [ + -73.517516, + 45.528652 + ], + [ + -73.517553, + 45.52877 + ], + [ + -73.517635, + 45.529002 + ], + [ + -73.517693, + 45.529249 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518853, + 45.53152 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.51956, + 45.531975 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.518105, + 45.53427 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.516365, + 45.536315 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.51548, + 45.537239 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.514579, + 45.537987 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.512977, + 45.539139 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.511387, + 45.540274 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.509928, + 45.541465 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.50782, + 45.543544 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.505658, + 45.545849 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.503925, + 45.547642 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500395, + 45.550072 + ], + [ + -73.500338, + 45.550074 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.499756, + 45.550039 + ], + [ + -73.499564, + 45.550308 + ], + [ + -73.499518, + 45.550373 + ], + [ + -73.499348, + 45.550589 + ], + [ + -73.499249, + 45.550718 + ], + [ + -73.499149, + 45.550849 + ], + [ + -73.49909, + 45.551 + ], + [ + -73.499052, + 45.551292 + ], + [ + -73.498995, + 45.551725 + ], + [ + -73.498947, + 45.552086 + ], + [ + -73.49893, + 45.552473 + ], + [ + -73.498889, + 45.552801 + ], + [ + -73.498863, + 45.552968 + ], + [ + -73.498848, + 45.553058 + ], + [ + -73.498813, + 45.553251 + ], + [ + -73.498782, + 45.553386 + ], + [ + -73.498737, + 45.553535 + ], + [ + -73.498669, + 45.55371 + ], + [ + -73.498603, + 45.553836 + ], + [ + -73.498557, + 45.553912 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498184, + 45.554455 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.496124, + 45.556826 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.494586, + 45.558515 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.493688, + 45.559573 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.492562, + 45.561167 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.49226, + 45.561543 + ], + [ + -73.492112, + 45.561761 + ], + [ + -73.491962, + 45.561977 + ], + [ + -73.491763, + 45.562292 + ], + [ + -73.491705, + 45.56238 + ], + [ + -73.491585, + 45.562559 + ], + [ + -73.491441, + 45.562784 + ], + [ + -73.490929, + 45.563578 + ], + [ + -73.490577, + 45.564113 + ], + [ + -73.490532, + 45.564181 + ], + [ + -73.490496, + 45.564236 + ], + [ + -73.49016, + 45.564742 + ], + [ + -73.48995, + 45.565062 + ], + [ + -73.48981, + 45.565248 + ], + [ + -73.489559, + 45.565581 + ], + [ + -73.489458, + 45.565721 + ], + [ + -73.489162, + 45.566112 + ], + [ + -73.488997, + 45.566327 + ], + [ + -73.488982, + 45.566346 + ], + [ + -73.488811, + 45.566565 + ], + [ + -73.488635, + 45.566766 + ], + [ + -73.488461, + 45.56699 + ], + [ + -73.488294, + 45.567186 + ], + [ + -73.488221, + 45.567273 + ], + [ + -73.488004, + 45.567517 + ], + [ + -73.487807, + 45.567755 + ], + [ + -73.487503, + 45.56809 + ], + [ + -73.48741, + 45.568192 + ], + [ + -73.487163, + 45.568458 + ], + [ + -73.487007, + 45.568622 + ], + [ + -73.486935, + 45.568697 + ], + [ + -73.486687, + 45.568953 + ], + [ + -73.486371, + 45.569275 + ], + [ + -73.486344, + 45.5693 + ], + [ + -73.486289, + 45.569352 + ], + [ + -73.486279, + 45.569357 + ], + [ + -73.4862, + 45.569389 + ], + [ + -73.486097, + 45.56942 + ], + [ + -73.486018, + 45.569429 + ], + [ + -73.485923, + 45.569434 + ], + [ + -73.485842, + 45.569425 + ], + [ + -73.485757, + 45.569402 + ], + [ + -73.485687, + 45.569375 + ], + [ + -73.485569, + 45.569317 + ], + [ + -73.485496, + 45.569263 + ], + [ + -73.48502, + 45.568907 + ], + [ + -73.484166, + 45.568277 + ], + [ + -73.483391, + 45.567706 + ], + [ + -73.48313, + 45.567512 + ], + [ + -73.482943, + 45.567367 + ], + [ + -73.482793, + 45.567251 + ], + [ + -73.4815, + 45.566273 + ], + [ + -73.480444, + 45.565474 + ], + [ + -73.480073, + 45.565193 + ], + [ + -73.479021, + 45.564398 + ], + [ + -73.47891, + 45.564479 + ], + [ + -73.478593, + 45.564821 + ], + [ + -73.478585, + 45.56483 + ], + [ + -73.476708, + 45.566909 + ], + [ + -73.476555, + 45.567079 + ], + [ + -73.47473, + 45.569084 + ], + [ + -73.474569, + 45.569261 + ], + [ + -73.473286, + 45.570687 + ], + [ + -73.473129, + 45.570862 + ], + [ + -73.472726, + 45.570553 + ], + [ + -73.471243, + 45.569416 + ], + [ + -73.471116, + 45.569318 + ], + [ + -73.468297, + 45.567138 + ], + [ + -73.468142, + 45.567019 + ], + [ + -73.465775, + 45.565186 + ], + [ + -73.463985, + 45.563801 + ], + [ + -73.463775, + 45.563638 + ], + [ + -73.462454, + 45.562639 + ], + [ + -73.462324, + 45.56254 + ], + [ + -73.462191, + 45.562437 + ], + [ + -73.462138, + 45.562369 + ], + [ + -73.462108, + 45.562302 + ], + [ + -73.462094, + 45.562248 + ], + [ + -73.46208, + 45.56187 + ], + [ + -73.462143, + 45.561726 + ], + [ + -73.462165, + 45.561609 + ], + [ + -73.462171, + 45.561492 + ], + [ + -73.461975, + 45.561496 + ], + [ + -73.460965, + 45.561521 + ], + [ + -73.460725, + 45.561527 + ], + [ + -73.45996, + 45.561545 + ], + [ + -73.459832, + 45.561563 + ], + [ + -73.459681, + 45.561594 + ], + [ + -73.459494, + 45.56163 + ], + [ + -73.45935, + 45.561644 + ], + [ + -73.459012, + 45.561684 + ], + [ + -73.45596, + 45.561757 + ], + [ + -73.455653, + 45.561764 + ], + [ + -73.453525, + 45.561813 + ], + [ + -73.451225, + 45.561875 + ], + [ + -73.450856, + 45.561882 + ], + [ + -73.450541, + 45.561888 + ], + [ + -73.450348, + 45.561892 + ], + [ + -73.450326, + 45.561892 + ], + [ + -73.450315, + 45.562486 + ], + [ + -73.450301, + 45.562913 + ], + [ + -73.45028, + 45.563354 + ], + [ + -73.450274, + 45.563551 + ], + [ + -73.450265, + 45.563858 + ], + [ + -73.450253, + 45.564101 + ], + [ + -73.45024, + 45.564574 + ], + [ + -73.450206, + 45.565284 + ], + [ + -73.450201, + 45.565374 + ], + [ + -73.450199, + 45.565428 + ], + [ + -73.4502, + 45.565559 + ], + [ + -73.450143, + 45.566931 + ], + [ + -73.450124, + 45.567349 + ], + [ + -73.450115, + 45.567548 + ], + [ + -73.450114, + 45.567557 + ], + [ + -73.450113, + 45.567561 + ], + [ + -73.450112, + 45.56757 + ], + [ + -73.450111, + 45.567575 + ], + [ + -73.45011, + 45.567584 + ], + [ + -73.450109, + 45.567593 + ], + [ + -73.450108, + 45.567597 + ], + [ + -73.450107, + 45.567606 + ], + [ + -73.450106, + 45.567611 + ], + [ + -73.450105, + 45.56762 + ], + [ + -73.450104, + 45.567629 + ], + [ + -73.450103, + 45.567633 + ], + [ + -73.450102, + 45.567642 + ], + [ + -73.450101, + 45.567647 + ], + [ + -73.4501, + 45.567656 + ], + [ + -73.450099, + 45.56766 + ], + [ + -73.450098, + 45.567669 + ], + [ + -73.450097, + 45.567678 + ], + [ + -73.450096, + 45.567683 + ], + [ + -73.450095, + 45.567691 + ], + [ + -73.450093, + 45.567696 + ], + [ + -73.450092, + 45.567705 + ], + [ + -73.450091, + 45.567714 + ], + [ + -73.45009, + 45.567718 + ], + [ + -73.450089, + 45.567727 + ], + [ + -73.450088, + 45.567732 + ], + [ + -73.450087, + 45.567741 + ], + [ + -73.450085, + 45.56775 + ], + [ + -73.450084, + 45.567754 + ], + [ + -73.450083, + 45.567763 + ], + [ + -73.450082, + 45.567768 + ], + [ + -73.450081, + 45.567777 + ], + [ + -73.450079, + 45.567781 + ], + [ + -73.450078, + 45.56779 + ], + [ + -73.450077, + 45.567799 + ], + [ + -73.450075, + 45.567804 + ], + [ + -73.450074, + 45.567813 + ], + [ + -73.450073, + 45.567817 + ], + [ + -73.450071, + 45.567826 + ], + [ + -73.45007, + 45.567835 + ], + [ + -73.450069, + 45.56784 + ], + [ + -73.450067, + 45.567849 + ], + [ + -73.450066, + 45.567853 + ], + [ + -73.450065, + 45.567862 + ], + [ + -73.450063, + 45.567871 + ], + [ + -73.450062, + 45.567876 + ], + [ + -73.45006, + 45.567885 + ], + [ + -73.450059, + 45.567889 + ], + [ + -73.450058, + 45.567898 + ], + [ + -73.450056, + 45.567903 + ], + [ + -73.450055, + 45.567912 + ], + [ + -73.450054, + 45.567921 + ], + [ + -73.450052, + 45.567925 + ], + [ + -73.450051, + 45.567934 + ], + [ + -73.450049, + 45.567939 + ], + [ + -73.450048, + 45.567948 + ], + [ + -73.450046, + 45.567957 + ], + [ + -73.450045, + 45.567961 + ], + [ + -73.450043, + 45.56797 + ], + [ + -73.450042, + 45.567975 + ], + [ + -73.45004, + 45.567984 + ], + [ + -73.450039, + 45.567988 + ], + [ + -73.450037, + 45.567997 + ], + [ + -73.450036, + 45.568006 + ], + [ + -73.450034, + 45.568011 + ], + [ + -73.450032, + 45.56802 + ], + [ + -73.450031, + 45.568024 + ], + [ + -73.450029, + 45.568033 + ], + [ + -73.450028, + 45.568042 + ], + [ + -73.450026, + 45.568047 + ], + [ + -73.450024, + 45.568056 + ], + [ + -73.450023, + 45.56806 + ], + [ + -73.450021, + 45.568069 + ], + [ + -73.450019, + 45.568074 + ], + [ + -73.450017, + 45.568083 + ], + [ + -73.450016, + 45.568092 + ], + [ + -73.450014, + 45.568096 + ], + [ + -73.450013, + 45.568105 + ], + [ + -73.450011, + 45.56811 + ], + [ + -73.450009, + 45.568119 + ], + [ + -73.450007, + 45.568123 + ], + [ + -73.450006, + 45.568132 + ], + [ + -73.450004, + 45.568141 + ], + [ + -73.450002, + 45.568146 + ], + [ + -73.45, + 45.568155 + ], + [ + -73.449999, + 45.568159 + ], + [ + -73.449997, + 45.568168 + ], + [ + -73.449995, + 45.568173 + ], + [ + -73.449993, + 45.568182 + ], + [ + -73.449991, + 45.568191 + ], + [ + -73.449989, + 45.568195 + ], + [ + -73.449988, + 45.568204 + ], + [ + -73.449986, + 45.568209 + ], + [ + -73.449984, + 45.568218 + ], + [ + -73.449982, + 45.568227 + ], + [ + -73.44998, + 45.568231 + ], + [ + -73.449978, + 45.56824 + ], + [ + -73.449976, + 45.568245 + ], + [ + -73.449974, + 45.568254 + ], + [ + -73.449972, + 45.568258 + ], + [ + -73.44997, + 45.568267 + ], + [ + -73.449968, + 45.568276 + ], + [ + -73.449967, + 45.568281 + ], + [ + -73.449965, + 45.56829 + ], + [ + -73.449963, + 45.568294 + ], + [ + -73.449961, + 45.568303 + ], + [ + -73.449959, + 45.568308 + ], + [ + -73.449957, + 45.568317 + ], + [ + -73.449955, + 45.568326 + ], + [ + -73.449953, + 45.56833 + ], + [ + -73.449951, + 45.568339 + ], + [ + -73.449949, + 45.568344 + ], + [ + -73.449946, + 45.568353 + ], + [ + -73.449944, + 45.568357 + ], + [ + -73.449942, + 45.568366 + ], + [ + -73.44994, + 45.568371 + ], + [ + -73.449938, + 45.56838 + ], + [ + -73.449936, + 45.568389 + ], + [ + -73.449934, + 45.568393 + ], + [ + -73.449932, + 45.568402 + ], + [ + -73.44993, + 45.568407 + ], + [ + -73.449927, + 45.568416 + ], + [ + -73.449925, + 45.56842 + ], + [ + -73.449923, + 45.568429 + ], + [ + -73.449921, + 45.568438 + ], + [ + -73.449919, + 45.568443 + ], + [ + -73.449917, + 45.568452 + ], + [ + -73.449915, + 45.568456 + ], + [ + -73.449912, + 45.568465 + ], + [ + -73.44991, + 45.56847 + ], + [ + -73.449908, + 45.568479 + ], + [ + -73.449905, + 45.568488 + ], + [ + -73.449903, + 45.568492 + ], + [ + -73.449901, + 45.568501 + ], + [ + -73.449899, + 45.568506 + ], + [ + -73.449897, + 45.568515 + ], + [ + -73.449894, + 45.568519 + ], + [ + -73.449892, + 45.568528 + ], + [ + -73.449889, + 45.568533 + ], + [ + -73.449887, + 45.568542 + ], + [ + -73.449885, + 45.568551 + ], + [ + -73.449883, + 45.568555 + ], + [ + -73.44988, + 45.568564 + ], + [ + -73.449878, + 45.568569 + ], + [ + -73.449875, + 45.568578 + ], + [ + -73.449873, + 45.568582 + ], + [ + -73.44987, + 45.568591 + ], + [ + -73.449868, + 45.568596 + ], + [ + -73.449866, + 45.568605 + ], + [ + -73.449863, + 45.568614 + ], + [ + -73.449861, + 45.568618 + ], + [ + -73.449856, + 45.568632 + ], + [ + -73.449825, + 45.568708 + ], + [ + -73.449762, + 45.568861 + ], + [ + -73.449744, + 45.568903 + ], + [ + -73.449645, + 45.569133 + ], + [ + -73.449277, + 45.569995 + ], + [ + -73.449112, + 45.570242 + ], + [ + -73.449055, + 45.570278 + ], + [ + -73.448989, + 45.570323 + ], + [ + -73.448955, + 45.570337 + ], + [ + -73.448919, + 45.57035 + ], + [ + -73.448874, + 45.570359 + ], + [ + -73.44882, + 45.570368 + ], + [ + -73.448494, + 45.570395 + ], + [ + -73.448177, + 45.570336 + ], + [ + -73.447945, + 45.570309 + ], + [ + -73.447306, + 45.570184 + ], + [ + -73.4464, + 45.570007 + ], + [ + -73.446311, + 45.569989 + ], + [ + -73.446194, + 45.569957 + ], + [ + -73.446079, + 45.569912 + ], + [ + -73.44598, + 45.569845 + ], + [ + -73.44597, + 45.569836 + ], + [ + -73.445832, + 45.569723 + ], + [ + -73.445385, + 45.569377 + ], + [ + -73.445158, + 45.569201 + ], + [ + -73.444719, + 45.568877 + ], + [ + -73.444688, + 45.568854 + ], + [ + -73.444286, + 45.568557 + ], + [ + -73.443785, + 45.568174 + ], + [ + -73.442738, + 45.567373 + ], + [ + -73.44266, + 45.567297 + ], + [ + -73.442626, + 45.567202 + ], + [ + -73.442645, + 45.567108 + ], + [ + -73.442699, + 45.567027 + ], + [ + -73.443963, + 45.565808 + ], + [ + -73.444144, + 45.565592 + ], + [ + -73.443981, + 45.565444 + ], + [ + -73.443532, + 45.565088 + ], + [ + -73.442879, + 45.56457 + ], + [ + -73.442543, + 45.564321 + ], + [ + -73.442266, + 45.564115 + ], + [ + -73.442132, + 45.56421 + ], + [ + -73.441764, + 45.564435 + ], + [ + -73.441648, + 45.564502 + ], + [ + -73.441513, + 45.564534 + ], + [ + -73.441357, + 45.564551 + ], + [ + -73.441131, + 45.564524 + ], + [ + -73.439443, + 45.564159 + ], + [ + -73.436814, + 45.563591 + ], + [ + -73.436403, + 45.563503 + ], + [ + -73.433489, + 45.562878 + ], + [ + -73.432792, + 45.562738 + ], + [ + -73.432064, + 45.562631 + ], + [ + -73.431994, + 45.562621 + ], + [ + -73.431467, + 45.562553 + ], + [ + -73.430874, + 45.562507 + ], + [ + -73.43018, + 45.562453 + ], + [ + -73.429174, + 45.562439 + ], + [ + -73.428772, + 45.562442 + ], + [ + -73.428161, + 45.562447 + ], + [ + -73.426924, + 45.562451 + ], + [ + -73.426691, + 45.562451 + ], + [ + -73.426453, + 45.562424 + ], + [ + -73.426215, + 45.562374 + ], + [ + -73.425983, + 45.562302 + ], + [ + -73.425805, + 45.562207 + ], + [ + -73.42574, + 45.562158 + ], + [ + -73.425425, + 45.561919 + ], + [ + -73.425154, + 45.561703 + ], + [ + -73.424434, + 45.562242 + ], + [ + -73.424088, + 45.562481 + ], + [ + -73.424077, + 45.562487 + ], + [ + -73.423897, + 45.562597 + ], + [ + -73.422142, + 45.563568 + ], + [ + -73.421549, + 45.563919 + ], + [ + -73.42122, + 45.564089 + ], + [ + -73.421196, + 45.564101 + ], + [ + -73.420894, + 45.564251 + ], + [ + -73.420525, + 45.56444 + ], + [ + -73.419551, + 45.564984 + ], + [ + -73.417483, + 45.566128 + ], + [ + -73.4155, + 45.567226 + ], + [ + -73.415452, + 45.567253 + ], + [ + -73.415031, + 45.567473 + ], + [ + -73.414771, + 45.567599 + ], + [ + -73.414614, + 45.567648 + ], + [ + -73.414428, + 45.567711 + ], + [ + -73.414161, + 45.567751 + ], + [ + -73.413977, + 45.567764 + ], + [ + -73.413319, + 45.567803 + ], + [ + -73.410928, + 45.567941 + ], + [ + -73.41084, + 45.567947 + ], + [ + -73.410353, + 45.567973 + ], + [ + -73.410197, + 45.567982 + ], + [ + -73.409698, + 45.568013 + ], + [ + -73.408588, + 45.568077 + ], + [ + -73.408536, + 45.56808 + ], + [ + -73.408124, + 45.568079 + ], + [ + -73.407857, + 45.568048 + ], + [ + -73.407608, + 45.567993 + ], + [ + -73.407271, + 45.567849 + ], + [ + -73.407025, + 45.567701 + ], + [ + -73.406831, + 45.567543 + ], + [ + -73.406658, + 45.567399 + ], + [ + -73.405844, + 45.56792 + ], + [ + -73.405606, + 45.568073 + ], + [ + -73.40558, + 45.56809 + ], + [ + -73.404631, + 45.568702 + ], + [ + -73.404064, + 45.569066 + ], + [ + -73.403626, + 45.569304 + ], + [ + -73.403255, + 45.569443 + ], + [ + -73.402706, + 45.569596 + ], + [ + -73.40213, + 45.569649 + ], + [ + -73.401178, + 45.569705 + ], + [ + -73.401065, + 45.569711 + ], + [ + -73.400515, + 45.569738 + ], + [ + -73.399741, + 45.569782 + ], + [ + -73.398872, + 45.569831 + ], + [ + -73.397337, + 45.569982 + ], + [ + -73.396252, + 45.570116 + ], + [ + -73.39531, + 45.570246 + ], + [ + -73.394177, + 45.570398 + ], + [ + -73.394121, + 45.570405 + ], + [ + -73.393727, + 45.570456 + ], + [ + -73.39317, + 45.570536 + ], + [ + -73.39269, + 45.570599 + ], + [ + -73.392081, + 45.570684 + ], + [ + -73.391191, + 45.570804 + ], + [ + -73.390528, + 45.570894 + ], + [ + -73.389658, + 45.571014 + ], + [ + -73.388912, + 45.571113 + ], + [ + -73.387898, + 45.571251 + ], + [ + -73.38781, + 45.571263 + ], + [ + -73.386982, + 45.571372 + ], + [ + -73.38625, + 45.571475 + ], + [ + -73.385674, + 45.57155 + ], + [ + -73.384997, + 45.571649 + ], + [ + -73.383765, + 45.571818 + ], + [ + -73.383299, + 45.571875 + ], + [ + -73.383227, + 45.571593 + ], + [ + -73.382771, + 45.57165 + ] + ] + }, + "id": 74, + "properties": { + "id": "b459799d-3ab6-4ba1-89d0-6064ddebefeb", + "data": { + "gtfs": { + "shape_id": "25_2_R" + }, + "segments": [ + { + "distanceMeters": 1398, + "travelTimeSeconds": 210 + }, + { + "distanceMeters": 364, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 307, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 388, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 508, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 392, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 432, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 477, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 405, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 556, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 501, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 426, + "travelTimeSeconds": 61 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 240, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17595, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 12105.606803880566, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.33, + "travelTimeWithoutDwellTimesSeconds": 2400, + "operatingTimeWithLayoverTimeSeconds": 2640, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2400, + "operatingSpeedWithLayoverMetersPerSecond": 6.66, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.33 + }, + "mode": "bus", + "name": "Parcs industriels", + "color": "#A32638", + "nodes": [ + "4c755ece-2475-4915-941e-37859f0f391f", + "2e804fba-75d7-4c69-a7f7-706998c1a6f1", + "72e3e510-0ae4-407e-a30d-82f52f41e278", + "28559490-1b1e-4bd4-83e1-408fd6a20c77", + "28d90293-1261-41be-a75c-5fc82c3acd49", + "dadcd93c-5469-44bf-8e3e-ccac4a5af110", + "2d2815ee-443f-48d9-a68e-7f53a9aa6216", + "52f97fd3-6c91-420e-82d2-2198f2064d40", + "45ed93e4-f128-470f-b287-4d6ddc400e49", + "d9324afd-9cb7-46ba-ad04-bb8387256785", + "72c849ab-069a-4dc5-92fe-9ecc63ba074d", + "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", + "09bf17cd-9db1-41e3-b993-62146cb91158", + "bc056e84-1f20-4604-aad7-40427c6685a6", + "c879a803-d58b-4487-8291-391e9b516d3c", + "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", + "261a087b-9323-4696-9046-146a299af43d", + "0bcb0e97-db40-44bb-afe9-f6212a5b6387", + "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", + "84a0424b-0f35-4bd8-8109-5ac9219d5869", + "2d4bab42-76d4-4d53-9416-1ff754c71d1d", + "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", + "de56e105-40ff-411e-a830-378b68780088", + "056bf57a-8baa-407d-9c70-a2dcb2e36aea", + "3e6f6ee6-af44-48b8-9b96-431c0dfdb40c", + "cbdc89b0-549e-41a3-becc-56a1e8c831ce", + "3fa535d7-2c06-4fc3-ac22-347da96e9a38", + "a0c45e7b-af06-4ea8-a82a-a658b829e198", + "41fd6b6d-a514-49a6-acf5-1a39152b0c5f", + "7330c47a-92ea-4650-a95f-c6010983e0e2", + "efdd0b14-8e79-4a0f-85cb-f5ec3d032eec", + "a09356f2-d06c-43dd-b67b-b970ca63de4c", + "9ce474bd-b957-414c-a2bb-a8fbae6720a2", + "fe1423a8-e632-40f2-9b1e-93314e069a43", + "0bacad01-6fc4-40da-8f15-64bf9bb6a474", + "f52f270d-1079-4b27-a78b-f9321a1c3b1f", + "bf606954-197a-4c94-b8d0-fda71ab755ca", + "804d8b1f-4ada-4e34-bf79-888a34e590ac", + "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", + "33622e57-d444-4916-a7fb-d1fa4643eb90", + "e979db3f-26cd-41d5-8708-f07b7090bef0", + "83669f2f-a25c-47b1-99a1-53a7c08fed91", + "a77f8bf1-6b13-445b-a79c-6b0770c935c0", + "68d70807-e1f4-4393-a156-0cb02f37fe17", + "f1fdc85c-124b-4428-8960-81d8b0fa863a", + "af75f57b-23de-436e-ac1d-d36a204dd0cd", + "cb78d8bd-4b44-40b3-8301-c4501b063d48", + "58c5658c-7476-4072-998b-0663b682b8a6", + "b734f683-dc9f-47d6-a659-53e6bf9d2915", + "072328a7-3894-4360-8b61-c1e252d6cd3a", + "0041d8ec-3bef-4a62-90da-3711f5d509d2", + "2fb188f9-f7b1-471b-a5d6-51581b357b49", + "494eea8e-2f4e-4123-9eb6-ab837bba3b5d", + "4ff6fce9-ceb0-4a73-9642-e337dacfd9e4", + "0be77fd1-e022-43e1-8779-3871b7711e4b", + "bd49edea-1c3c-4a69-a5c6-0057e6bf7cb0", + "3ec963de-e577-4386-969b-85a9eb8b7aaf", + "7335aafe-31d7-4598-a3ca-7bfa36ca76b3", + "35827d6c-59cb-43b0-bfdd-eaa586fe772c", + "b195cac8-133e-4e85-98b4-0a7ab23c800c" + ], + "stops": [], + "line_id": "3dd0da2d-881a-4bb0-bf0c-519de288b81a", + "segments": [ + 0, + 57, + 73, + 76, + 78, + 82, + 85, + 88, + 94, + 99, + 102, + 105, + 120, + 131, + 145, + 147, + 150, + 152, + 154, + 160, + 164, + 174, + 189, + 205, + 212, + 214, + 216, + 218, + 221, + 223, + 225, + 226, + 228, + 239, + 247, + 251, + 258, + 262, + 267, + 424, + 436, + 444, + 449, + 458, + 460, + 468, + 470, + 473, + 479, + 487, + 497, + 501, + 502, + 510, + 511, + 516, + 526, + 534, + 543, + 553 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 74, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.398096, + 45.567844 + ], + [ + -73.398275, + 45.567729 + ], + [ + -73.399112, + 45.567217 + ], + [ + -73.400859, + 45.566125 + ], + [ + -73.403138, + 45.564701 + ], + [ + -73.404259, + 45.565548 + ], + [ + -73.404576, + 45.565795 + ], + [ + -73.404606, + 45.565818 + ], + [ + -73.40476, + 45.565935 + ], + [ + -73.405022, + 45.566133 + ], + [ + -73.405555, + 45.566548 + ], + [ + -73.405788, + 45.56673 + ], + [ + -73.405791, + 45.566732 + ], + [ + -73.406251, + 45.567093 + ], + [ + -73.406658, + 45.567399 + ], + [ + -73.406831, + 45.567543 + ], + [ + -73.407025, + 45.567701 + ], + [ + -73.407271, + 45.567849 + ], + [ + -73.407608, + 45.567993 + ], + [ + -73.407857, + 45.568048 + ], + [ + -73.408124, + 45.568079 + ], + [ + -73.408536, + 45.56808 + ], + [ + -73.409698, + 45.568013 + ], + [ + -73.410197, + 45.567982 + ], + [ + -73.410353, + 45.567973 + ], + [ + -73.41084, + 45.567947 + ], + [ + -73.412675, + 45.56784 + ], + [ + -73.413977, + 45.567764 + ], + [ + -73.414161, + 45.567751 + ], + [ + -73.414428, + 45.567711 + ], + [ + -73.414614, + 45.567648 + ], + [ + -73.414771, + 45.567599 + ], + [ + -73.415031, + 45.567473 + ], + [ + -73.415251, + 45.567358 + ], + [ + -73.415452, + 45.567253 + ], + [ + -73.417439, + 45.566153 + ], + [ + -73.419551, + 45.564984 + ], + [ + -73.420276, + 45.564579 + ], + [ + -73.420525, + 45.56444 + ], + [ + -73.420894, + 45.564251 + ], + [ + -73.42122, + 45.564089 + ], + [ + -73.421549, + 45.563919 + ], + [ + -73.422142, + 45.563568 + ], + [ + -73.423897, + 45.562597 + ], + [ + -73.424088, + 45.562481 + ], + [ + -73.424434, + 45.562242 + ], + [ + -73.424918, + 45.56188 + ], + [ + -73.425154, + 45.561703 + ], + [ + -73.425425, + 45.561919 + ], + [ + -73.425805, + 45.562207 + ], + [ + -73.425983, + 45.562302 + ], + [ + -73.426215, + 45.562374 + ], + [ + -73.426453, + 45.562424 + ], + [ + -73.426484, + 45.562427 + ], + [ + -73.426691, + 45.562451 + ], + [ + -73.426924, + 45.562451 + ], + [ + -73.428161, + 45.562447 + ], + [ + -73.42868, + 45.562443 + ], + [ + -73.429174, + 45.562439 + ], + [ + -73.43018, + 45.562453 + ], + [ + -73.430874, + 45.562507 + ], + [ + -73.431467, + 45.562553 + ], + [ + -73.431994, + 45.562621 + ], + [ + -73.432113, + 45.562638 + ], + [ + -73.432792, + 45.562738 + ], + [ + -73.433489, + 45.562878 + ], + [ + -73.43612, + 45.563442 + ], + [ + -73.436814, + 45.563591 + ], + [ + -73.439971, + 45.564273 + ], + [ + -73.441131, + 45.564524 + ], + [ + -73.441357, + 45.564551 + ], + [ + -73.441513, + 45.564534 + ], + [ + -73.441648, + 45.564502 + ], + [ + -73.441764, + 45.564435 + ], + [ + -73.442019, + 45.564279 + ], + [ + -73.442132, + 45.56421 + ], + [ + -73.442266, + 45.564115 + ], + [ + -73.442879, + 45.56457 + ], + [ + -73.443329, + 45.564927 + ], + [ + -73.443981, + 45.565444 + ], + [ + -73.444144, + 45.565592 + ], + [ + -73.443963, + 45.565808 + ], + [ + -73.442699, + 45.567027 + ], + [ + -73.442645, + 45.567108 + ], + [ + -73.442626, + 45.567202 + ], + [ + -73.44266, + 45.567297 + ], + [ + -73.442738, + 45.567373 + ], + [ + -73.443752, + 45.568149 + ], + [ + -73.444286, + 45.568557 + ], + [ + -73.444688, + 45.568854 + ], + [ + -73.444719, + 45.568877 + ], + [ + -73.445075, + 45.56914 + ], + [ + -73.445158, + 45.569201 + ], + [ + -73.445832, + 45.569723 + ], + [ + -73.44598, + 45.569845 + ], + [ + -73.446079, + 45.569912 + ], + [ + -73.446194, + 45.569957 + ], + [ + -73.446311, + 45.569989 + ], + [ + -73.4464, + 45.570007 + ], + [ + -73.446579, + 45.570042 + ], + [ + -73.447945, + 45.570309 + ], + [ + -73.448177, + 45.570336 + ], + [ + -73.448494, + 45.570395 + ], + [ + -73.449049, + 45.570517 + ], + [ + -73.449223, + 45.570544 + ], + [ + -73.449264, + 45.570454 + ], + [ + -73.449543, + 45.569814 + ], + [ + -73.44969, + 45.569482 + ], + [ + -73.449722, + 45.56941 + ], + [ + -73.449947, + 45.568902 + ], + [ + -73.449982, + 45.56883 + ], + [ + -73.450051, + 45.568681 + ], + [ + -73.450055, + 45.568672 + ], + [ + -73.450057, + 45.568668 + ], + [ + -73.450059, + 45.568663 + ], + [ + -73.450061, + 45.568659 + ], + [ + -73.450063, + 45.568654 + ], + [ + -73.450065, + 45.56865 + ], + [ + -73.450067, + 45.568645 + ], + [ + -73.450069, + 45.568641 + ], + [ + -73.450071, + 45.568636 + ], + [ + -73.450072, + 45.568632 + ], + [ + -73.450074, + 45.568627 + ], + [ + -73.450076, + 45.568623 + ], + [ + -73.450078, + 45.568618 + ], + [ + -73.45008, + 45.568618 + ], + [ + -73.450082, + 45.568614 + ], + [ + -73.450084, + 45.568609 + ], + [ + -73.450086, + 45.568605 + ], + [ + -73.450087, + 45.5686 + ], + [ + -73.450089, + 45.568596 + ], + [ + -73.450091, + 45.568591 + ], + [ + -73.450093, + 45.568587 + ], + [ + -73.450095, + 45.568582 + ], + [ + -73.450097, + 45.568578 + ], + [ + -73.450099, + 45.568573 + ], + [ + -73.450101, + 45.568569 + ], + [ + -73.450102, + 45.568564 + ], + [ + -73.450104, + 45.56856 + ], + [ + -73.450106, + 45.568555 + ], + [ + -73.450108, + 45.568551 + ], + [ + -73.45011, + 45.568546 + ], + [ + -73.450112, + 45.568542 + ], + [ + -73.450114, + 45.568537 + ], + [ + -73.450115, + 45.568533 + ], + [ + -73.450117, + 45.568528 + ], + [ + -73.450119, + 45.568524 + ], + [ + -73.45012, + 45.568519 + ], + [ + -73.450122, + 45.568519 + ], + [ + -73.450124, + 45.568515 + ], + [ + -73.450126, + 45.56851 + ], + [ + -73.450128, + 45.568506 + ], + [ + -73.450129, + 45.568501 + ], + [ + -73.450131, + 45.568497 + ], + [ + -73.450133, + 45.568492 + ], + [ + -73.450134, + 45.568488 + ], + [ + -73.450136, + 45.568483 + ], + [ + -73.450138, + 45.568479 + ], + [ + -73.45014, + 45.568474 + ], + [ + -73.450141, + 45.56847 + ], + [ + -73.450143, + 45.568465 + ], + [ + -73.450145, + 45.568461 + ], + [ + -73.450146, + 45.568456 + ], + [ + -73.450146, + 45.568456 + ], + [ + -73.450148, + 45.568452 + ], + [ + -73.45015, + 45.568447 + ], + [ + -73.450151, + 45.568443 + ], + [ + -73.450153, + 45.568438 + ], + [ + -73.450154, + 45.568434 + ], + [ + -73.450156, + 45.568429 + ], + [ + -73.450158, + 45.568425 + ], + [ + -73.45016, + 45.56842 + ], + [ + -73.450161, + 45.568416 + ], + [ + -73.450163, + 45.568411 + ], + [ + -73.450164, + 45.568407 + ], + [ + -73.450166, + 45.568402 + ], + [ + -73.450168, + 45.568398 + ], + [ + -73.450169, + 45.568393 + ], + [ + -73.450171, + 45.568393 + ], + [ + -73.450173, + 45.568389 + ], + [ + -73.450174, + 45.568384 + ], + [ + -73.450175, + 45.56838 + ], + [ + -73.450177, + 45.568375 + ], + [ + -73.450179, + 45.568371 + ], + [ + -73.45018, + 45.568366 + ], + [ + -73.450182, + 45.568362 + ], + [ + -73.450183, + 45.568357 + ], + [ + -73.450185, + 45.568353 + ], + [ + -73.450186, + 45.568348 + ], + [ + -73.450188, + 45.568344 + ], + [ + -73.450189, + 45.568339 + ], + [ + -73.450191, + 45.568335 + ], + [ + -73.450192, + 45.56833 + ], + [ + -73.450194, + 45.568326 + ], + [ + -73.450195, + 45.568321 + ], + [ + -73.450197, + 45.568317 + ], + [ + -73.450198, + 45.568312 + ], + [ + -73.4502, + 45.568308 + ], + [ + -73.450201, + 45.568303 + ], + [ + -73.450203, + 45.568299 + ], + [ + -73.450204, + 45.568294 + ], + [ + -73.450205, + 45.56829 + ], + [ + -73.450207, + 45.568285 + ], + [ + -73.450208, + 45.568281 + ], + [ + -73.45021, + 45.568276 + ], + [ + -73.450211, + 45.568272 + ], + [ + -73.450213, + 45.568267 + ], + [ + -73.450214, + 45.568263 + ], + [ + -73.450215, + 45.568258 + ], + [ + -73.450217, + 45.568254 + ], + [ + -73.450218, + 45.568249 + ], + [ + -73.450219, + 45.568245 + ], + [ + -73.450221, + 45.56824 + ], + [ + -73.450222, + 45.568236 + ], + [ + -73.450224, + 45.568231 + ], + [ + -73.450225, + 45.568227 + ], + [ + -73.450226, + 45.568227 + ], + [ + -73.450228, + 45.568222 + ], + [ + -73.450229, + 45.568218 + ], + [ + -73.45023, + 45.568213 + ], + [ + -73.450232, + 45.568209 + ], + [ + -73.450233, + 45.568204 + ], + [ + -73.450234, + 45.5682 + ], + [ + -73.450236, + 45.568195 + ], + [ + -73.450237, + 45.568191 + ], + [ + -73.450238, + 45.568186 + ], + [ + -73.45024, + 45.568182 + ], + [ + -73.450241, + 45.568177 + ], + [ + -73.450242, + 45.568173 + ], + [ + -73.450244, + 45.568168 + ], + [ + -73.450245, + 45.568164 + ], + [ + -73.450246, + 45.568159 + ], + [ + -73.450247, + 45.568155 + ], + [ + -73.450248, + 45.56815 + ], + [ + -73.45025, + 45.568146 + ], + [ + -73.450251, + 45.568141 + ], + [ + -73.450252, + 45.568137 + ], + [ + -73.450253, + 45.568132 + ], + [ + -73.450254, + 45.568128 + ], + [ + -73.450256, + 45.568123 + ], + [ + -73.450257, + 45.568119 + ], + [ + -73.450258, + 45.568114 + ], + [ + -73.450259, + 45.56811 + ], + [ + -73.45026, + 45.568105 + ], + [ + -73.450262, + 45.568101 + ], + [ + -73.450263, + 45.568096 + ], + [ + -73.450264, + 45.568092 + ], + [ + -73.450265, + 45.568088 + ], + [ + -73.450266, + 45.568083 + ], + [ + -73.450267, + 45.568079 + ], + [ + -73.450268, + 45.568074 + ], + [ + -73.45027, + 45.56807 + ], + [ + -73.450271, + 45.568065 + ], + [ + -73.450272, + 45.568061 + ], + [ + -73.450273, + 45.568056 + ], + [ + -73.450274, + 45.568052 + ], + [ + -73.450275, + 45.568047 + ], + [ + -73.450277, + 45.568043 + ], + [ + -73.450277, + 45.568038 + ], + [ + -73.450279, + 45.568034 + ], + [ + -73.45028, + 45.568029 + ], + [ + -73.450281, + 45.568025 + ], + [ + -73.450282, + 45.56802 + ], + [ + -73.450283, + 45.568016 + ], + [ + -73.450284, + 45.568011 + ], + [ + -73.450285, + 45.568007 + ], + [ + -73.450286, + 45.568002 + ], + [ + -73.450287, + 45.567998 + ], + [ + -73.450288, + 45.567993 + ], + [ + -73.450289, + 45.567989 + ], + [ + -73.45029, + 45.567984 + ], + [ + -73.450291, + 45.56798 + ], + [ + -73.450292, + 45.567975 + ], + [ + -73.450293, + 45.567971 + ], + [ + -73.450294, + 45.567966 + ], + [ + -73.450295, + 45.567962 + ], + [ + -73.450296, + 45.567957 + ], + [ + -73.450297, + 45.567957 + ], + [ + -73.450298, + 45.567953 + ], + [ + -73.450299, + 45.567948 + ], + [ + -73.4503, + 45.567944 + ], + [ + -73.450301, + 45.567939 + ], + [ + -73.450301, + 45.567935 + ], + [ + -73.450302, + 45.56793 + ], + [ + -73.450303, + 45.567926 + ], + [ + -73.450304, + 45.567921 + ], + [ + -73.450305, + 45.567917 + ], + [ + -73.450306, + 45.567912 + ], + [ + -73.450307, + 45.567908 + ], + [ + -73.450308, + 45.567903 + ], + [ + -73.450309, + 45.567899 + ], + [ + -73.450309, + 45.567894 + ], + [ + -73.45031, + 45.56789 + ], + [ + -73.450311, + 45.567885 + ], + [ + -73.450312, + 45.567881 + ], + [ + -73.450313, + 45.567876 + ], + [ + -73.450314, + 45.567872 + ], + [ + -73.450315, + 45.567867 + ], + [ + -73.450316, + 45.567863 + ], + [ + -73.450316, + 45.567858 + ], + [ + -73.450317, + 45.567854 + ], + [ + -73.450318, + 45.567849 + ], + [ + -73.450319, + 45.567845 + ], + [ + -73.45032, + 45.56784 + ], + [ + -73.45032, + 45.567836 + ], + [ + -73.450321, + 45.567831 + ], + [ + -73.450322, + 45.567827 + ], + [ + -73.450323, + 45.567822 + ], + [ + -73.450324, + 45.567818 + ], + [ + -73.450324, + 45.567813 + ], + [ + -73.450325, + 45.567809 + ], + [ + -73.450326, + 45.567804 + ], + [ + -73.450326, + 45.5678 + ], + [ + -73.450327, + 45.567795 + ], + [ + -73.450328, + 45.567791 + ], + [ + -73.450329, + 45.567786 + ], + [ + -73.450329, + 45.567782 + ], + [ + -73.45033, + 45.567777 + ], + [ + -73.450331, + 45.567773 + ], + [ + -73.450332, + 45.567768 + ], + [ + -73.450332, + 45.567764 + ], + [ + -73.450333, + 45.567759 + ], + [ + -73.450334, + 45.567755 + ], + [ + -73.450334, + 45.56775 + ], + [ + -73.450335, + 45.567746 + ], + [ + -73.450336, + 45.567741 + ], + [ + -73.450336, + 45.567737 + ], + [ + -73.450337, + 45.567732 + ], + [ + -73.450337, + 45.567728 + ], + [ + -73.450338, + 45.567723 + ], + [ + -73.450339, + 45.567719 + ], + [ + -73.450339, + 45.567714 + ], + [ + -73.45034, + 45.56771 + ], + [ + -73.45034, + 45.567705 + ], + [ + -73.450341, + 45.567701 + ], + [ + -73.450342, + 45.567696 + ], + [ + -73.450342, + 45.567692 + ], + [ + -73.450343, + 45.567687 + ], + [ + -73.450343, + 45.567683 + ], + [ + -73.450344, + 45.567678 + ], + [ + -73.450345, + 45.567674 + ], + [ + -73.450345, + 45.567669 + ], + [ + -73.450346, + 45.567665 + ], + [ + -73.450346, + 45.56766 + ], + [ + -73.450347, + 45.567656 + ], + [ + -73.450347, + 45.567651 + ], + [ + -73.450348, + 45.567647 + ], + [ + -73.450348, + 45.567642 + ], + [ + -73.450349, + 45.567638 + ], + [ + -73.450349, + 45.567633 + ], + [ + -73.45035, + 45.567629 + ], + [ + -73.45035, + 45.567624 + ], + [ + -73.450351, + 45.56762 + ], + [ + -73.450351, + 45.567615 + ], + [ + -73.450352, + 45.567611 + ], + [ + -73.450352, + 45.567606 + ], + [ + -73.450353, + 45.567602 + ], + [ + -73.450353, + 45.567597 + ], + [ + -73.450353, + 45.567593 + ], + [ + -73.450354, + 45.567588 + ], + [ + -73.450355, + 45.567584 + ], + [ + -73.450355, + 45.567579 + ], + [ + -73.450355, + 45.567575 + ], + [ + -73.450356, + 45.56757 + ], + [ + -73.450356, + 45.567566 + ], + [ + -73.450357, + 45.567561 + ], + [ + -73.450357, + 45.567557 + ], + [ + -73.450357, + 45.567552 + ], + [ + -73.45036, + 45.567548 + ], + [ + -73.45038, + 45.567017 + ], + [ + -73.450434, + 45.565568 + ], + [ + -73.450435, + 45.565535 + ], + [ + -73.450469, + 45.564632 + ], + [ + -73.450501, + 45.563818 + ], + [ + -73.450514, + 45.563467 + ], + [ + -73.450528, + 45.563038 + ], + [ + -73.450546, + 45.562441 + ], + [ + -73.450644, + 45.562216 + ], + [ + -73.450694, + 45.562131 + ], + [ + -73.450783, + 45.562045 + ], + [ + -73.450893, + 45.561982 + ], + [ + -73.451026, + 45.561928 + ], + [ + -73.451225, + 45.561875 + ], + [ + -73.453525, + 45.561813 + ], + [ + -73.454569, + 45.561789 + ], + [ + -73.455653, + 45.561764 + ], + [ + -73.455991, + 45.561756 + ], + [ + -73.459012, + 45.561684 + ], + [ + -73.459275, + 45.561684 + ], + [ + -73.460731, + 45.561644 + ], + [ + -73.461442, + 45.561624 + ], + [ + -73.461679, + 45.561618 + ], + [ + -73.461849, + 45.561685 + ], + [ + -73.461894, + 45.561703 + ], + [ + -73.461935, + 45.561735 + ], + [ + -73.46197, + 45.561762 + ], + [ + -73.46208, + 45.56187 + ], + [ + -73.462094, + 45.562248 + ], + [ + -73.462108, + 45.562302 + ], + [ + -73.462138, + 45.562369 + ], + [ + -73.462191, + 45.562437 + ], + [ + -73.462226, + 45.562464 + ], + [ + -73.462324, + 45.56254 + ], + [ + -73.463645, + 45.56354 + ], + [ + -73.463775, + 45.563638 + ], + [ + -73.465781, + 45.565191 + ], + [ + -73.468089, + 45.566977 + ], + [ + -73.468142, + 45.567019 + ], + [ + -73.470974, + 45.569209 + ], + [ + -73.471116, + 45.569318 + ], + [ + -73.473094, + 45.570835 + ], + [ + -73.473129, + 45.570862 + ], + [ + -73.473953, + 45.571492 + ], + [ + -73.474759, + 45.572109 + ], + [ + -73.47592, + 45.572995 + ], + [ + -73.475992, + 45.573049 + ], + [ + -73.476026, + 45.573085 + ], + [ + -73.477034, + 45.573852 + ], + [ + -73.47886, + 45.575219 + ], + [ + -73.479129, + 45.57542 + ], + [ + -73.479185, + 45.575469 + ], + [ + -73.47919, + 45.575474 + ], + [ + -73.479274, + 45.575534 + ], + [ + -73.47941, + 45.575433 + ], + [ + -73.479496, + 45.575361 + ], + [ + -73.479622, + 45.575253 + ], + [ + -73.4798, + 45.575097 + ], + [ + -73.479996, + 45.574941 + ], + [ + -73.480237, + 45.574738 + ], + [ + -73.48034, + 45.574648 + ], + [ + -73.480453, + 45.574551 + ], + [ + -73.480801, + 45.574263 + ], + [ + -73.481358, + 45.573789 + ], + [ + -73.481529, + 45.573644 + ], + [ + -73.481972, + 45.573269 + ], + [ + -73.482082, + 45.573173 + ], + [ + -73.482204, + 45.573068 + ], + [ + -73.482412, + 45.572903 + ], + [ + -73.482823, + 45.572557 + ], + [ + -73.482916, + 45.572476 + ], + [ + -73.482986, + 45.57241 + ], + [ + -73.483315, + 45.572122 + ], + [ + -73.483678, + 45.571813 + ], + [ + -73.483735, + 45.571764 + ], + [ + -73.483843, + 45.57167 + ], + [ + -73.484123, + 45.57144 + ], + [ + -73.484526, + 45.571099 + ], + [ + -73.484935, + 45.570755 + ], + [ + -73.484967, + 45.570727 + ], + [ + -73.485483, + 45.570269 + ], + [ + -73.485867, + 45.569908 + ], + [ + -73.485881, + 45.569894 + ], + [ + -73.485994, + 45.569784 + ], + [ + -73.486085, + 45.569691 + ], + [ + -73.486421, + 45.569373 + ], + [ + -73.487037, + 45.568739 + ], + [ + -73.487188, + 45.568584 + ], + [ + -73.487556, + 45.568196 + ], + [ + -73.487608, + 45.568138 + ], + [ + -73.488016, + 45.567684 + ], + [ + -73.488394, + 45.567236 + ], + [ + -73.488839, + 45.56671 + ], + [ + -73.488926, + 45.566606 + ], + [ + -73.489299, + 45.566117 + ], + [ + -73.489627, + 45.565684 + ], + [ + -73.489917, + 45.565286 + ], + [ + -73.490075, + 45.56507 + ], + [ + -73.490593, + 45.5643 + ], + [ + -73.490754, + 45.564056 + ], + [ + -73.491532, + 45.562873 + ], + [ + -73.491593, + 45.562778 + ], + [ + -73.491626, + 45.562725 + ], + [ + -73.4917, + 45.562606 + ], + [ + -73.491908, + 45.562298 + ], + [ + -73.49207, + 45.56203 + ], + [ + -73.492185, + 45.561871 + ], + [ + -73.492369, + 45.561588 + ], + [ + -73.49239, + 45.561557 + ], + [ + -73.492391, + 45.561555 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.494716, + 45.558369 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498677, + 45.553944 + ], + [ + -73.498726, + 45.553872 + ], + [ + -73.498813, + 45.553714 + ], + [ + -73.498895, + 45.553562 + ], + [ + -73.49895, + 45.553404 + ], + [ + -73.498964, + 45.55335 + ], + [ + -73.498988, + 45.55326 + ], + [ + -73.499026, + 45.553035 + ], + [ + -73.499051, + 45.55281 + ], + [ + -73.49911, + 45.552261 + ], + [ + -73.499127, + 45.552095 + ], + [ + -73.49916, + 45.551767 + ], + [ + -73.499199, + 45.551371 + ], + [ + -73.49924, + 45.551092 + ], + [ + -73.499284, + 45.550946 + ], + [ + -73.499366, + 45.550811 + ], + [ + -73.499487, + 45.550651 + ], + [ + -73.499683, + 45.550403 + ], + [ + -73.499747, + 45.550322 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.500107, + 45.550074 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.503657, + 45.547898 + ], + [ + -73.503782, + 45.547778 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.505412, + 45.54611 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507878, + 45.543482 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.509779, + 45.541607 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.511274, + 45.540355 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.51299, + 45.53913 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.514321, + 45.538181 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.515311, + 45.537392 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.516475, + 45.536189 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.51822, + 45.534135 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519479, + 45.531846 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519522, + 45.531915 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.51917, + 45.531641 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.518817, + 45.531415 + ], + [ + -73.518763, + 45.531374 + ], + [ + -73.518709, + 45.531325 + ], + [ + -73.518655, + 45.531271 + ], + [ + -73.518619, + 45.531213 + ], + [ + -73.518601, + 45.531154 + ], + [ + -73.518588, + 45.531096 + ], + [ + -73.518588, + 45.531055 + ], + [ + -73.518597, + 45.531006 + ], + [ + -73.518619, + 45.530952 + ], + [ + -73.518659, + 45.530884 + ], + [ + -73.518691, + 45.530826 + ], + [ + -73.518718, + 45.530785 + ], + [ + -73.518753, + 45.530731 + ], + [ + -73.518803, + 45.530646 + ], + [ + -73.518839, + 45.530596 + ], + [ + -73.518875, + 45.530547 + ], + [ + -73.518897, + 45.530497 + ], + [ + -73.518915, + 45.530448 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519398, + 45.526008 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519766, + 45.52338 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52237, + 45.524141 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 75, + "properties": { + "id": "0dfd6db4-5a37-4c27-8199-572025ad2809", + "data": { + "gtfs": { + "shape_id": "25_1_A" + }, + "segments": [ + { + "distanceMeters": 288, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 407, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 598, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 471, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 452, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 457, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 526, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 425, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 335, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 375, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 423, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 331, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 829, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 463, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 335, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 655, + "travelTimeSeconds": 109 + }, + { + "distanceMeters": 829, + "travelTimeSeconds": 138 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 222, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 16477, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10831.790036187247, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.42, + "travelTimeWithoutDwellTimesSeconds": 2220, + "operatingTimeWithLayoverTimeSeconds": 2442, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2220, + "operatingSpeedWithLayoverMetersPerSecond": 6.75, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.42 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "a913c5ce-8de0-458e-a9ee-4ae555d41e98", + "a4120eb1-d1f9-43e5-8720-90115641165b", + "0681e3d4-c5fd-4f85-982e-d5d26960784a", + "2260ef06-cda3-48e1-919a-84c2b44c938b", + "494eea8e-2f4e-4123-9eb6-ab837bba3b5d", + "2fb188f9-f7b1-471b-a5d6-51581b357b49", + "0041d8ec-3bef-4a62-90da-3711f5d509d2", + "0d73df1c-f948-4c1f-ba36-487a91089d51", + "b734f683-dc9f-47d6-a659-53e6bf9d2915", + "58c5658c-7476-4072-998b-0663b682b8a6", + "cb78d8bd-4b44-40b3-8301-c4501b063d48", + "af75f57b-23de-436e-ac1d-d36a204dd0cd", + "f1fdc85c-124b-4428-8960-81d8b0fa863a", + "68d70807-e1f4-4393-a156-0cb02f37fe17", + "a77f8bf1-6b13-445b-a79c-6b0770c935c0", + "83669f2f-a25c-47b1-99a1-53a7c08fed91", + "e979db3f-26cd-41d5-8708-f07b7090bef0", + "33622e57-d444-4916-a7fb-d1fa4643eb90", + "ae6e0f03-aee3-4f3b-9a79-98bb90a35a7a", + "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "911acdc7-e82a-4bb1-aecd-7f8fbf39cc16", + "50e25e6e-b3a0-49ca-b0a6-22261b688cbf", + "767c22ba-e4bc-43df-94bc-025afee14810", + "28b7e465-7627-4587-950e-0fe104f1bac7", + "9ce474bd-b957-414c-a2bb-a8fbae6720a2", + "a09356f2-d06c-43dd-b67b-b970ca63de4c", + "efdd0b14-8e79-4a0f-85cb-f5ec3d032eec", + "7330c47a-92ea-4650-a95f-c6010983e0e2", + "41fd6b6d-a514-49a6-acf5-1a39152b0c5f", + "a0c45e7b-af06-4ea8-a82a-a658b829e198", + "fb348def-00b5-4574-9848-5f275a3fa42d", + "75347f42-115f-47ec-b394-c1f56ce167fb", + "dc112aae-906c-47be-a1fb-06ef714fd1ab", + "ab105343-272d-4aa3-9238-846c2fa787cb", + "24527bed-7ea6-44d6-b6db-18ac609f4938", + "1b1077ca-8a37-46a1-a7be-751ea2f7f2ae", + "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", + "d5099816-374e-4ebc-ab50-5ca4d2f829e5", + "84a0424b-0f35-4bd8-8109-5ac9219d5869", + "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", + "261a087b-9323-4696-9046-146a299af43d", + "66456437-f154-4a2f-a12f-2f54cf668687", + "820a9d7c-25e9-487c-9e51-cfefcb1432f7", + "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", + "72c849ab-069a-4dc5-92fe-9ecc63ba074d", + "d9324afd-9cb7-46ba-ad04-bb8387256785", + "45ed93e4-f128-470f-b287-4d6ddc400e49", + "52f97fd3-6c91-420e-82d2-2198f2064d40", + "2d2815ee-443f-48d9-a68e-7f53a9aa6216", + "dadcd93c-5469-44bf-8e3e-ccac4a5af110", + "28d90293-1261-41be-a75c-5fc82c3acd49", + "28559490-1b1e-4bd4-83e1-408fd6a20c77", + "72e3e510-0ae4-407e-a30d-82f52f41e278", + "2e804fba-75d7-4c69-a7f7-706998c1a6f1", + "4fb4515b-e129-4622-b855-89143c2fd488", + "4c755ece-2475-4915-941e-37859f0f391f" + ], + "stops": [], + "line_id": "3dd0da2d-881a-4bb0-bf0c-519de288b81a", + "segments": [ + 0, + 3, + 7, + 11, + 26, + 33, + 35, + 37, + 46, + 57, + 63, + 66, + 68, + 74, + 78, + 87, + 91, + 99, + 162, + 369, + 371, + 375, + 386, + 390, + 401, + 403, + 405, + 406, + 408, + 410, + 414, + 420, + 429, + 435, + 443, + 451, + 461, + 468, + 471, + 477, + 483, + 499, + 505, + 523, + 526, + 530, + 534, + 541, + 544, + 546, + 550, + 553, + 556, + 574, + 605 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 75, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.382771, + 45.57165 + ], + [ + -73.38222, + 45.571719 + ], + [ + -73.382265, + 45.571886 + ], + [ + -73.382294, + 45.571994 + ], + [ + -73.383299, + 45.571875 + ], + [ + -73.383765, + 45.571818 + ], + [ + -73.384997, + 45.571649 + ], + [ + -73.385674, + 45.57155 + ], + [ + -73.38625, + 45.571475 + ], + [ + -73.386982, + 45.571372 + ], + [ + -73.387858, + 45.571256 + ], + [ + -73.387898, + 45.571251 + ], + [ + -73.388912, + 45.571113 + ], + [ + -73.389658, + 45.571014 + ], + [ + -73.390528, + 45.570894 + ], + [ + -73.391191, + 45.570804 + ], + [ + -73.392081, + 45.570684 + ], + [ + -73.39269, + 45.570599 + ], + [ + -73.39317, + 45.570536 + ], + [ + -73.393727, + 45.570456 + ], + [ + -73.394094, + 45.570409 + ], + [ + -73.394177, + 45.570398 + ], + [ + -73.39531, + 45.570246 + ], + [ + -73.396252, + 45.570116 + ], + [ + -73.397337, + 45.569982 + ], + [ + -73.398872, + 45.569831 + ], + [ + -73.398868, + 45.569534 + ], + [ + -73.398845, + 45.569466 + ], + [ + -73.398791, + 45.569385 + ], + [ + -73.398457, + 45.56912 + ], + [ + -73.397619, + 45.568457 + ], + [ + -73.397569, + 45.56839 + ], + [ + -73.397545, + 45.56834 + ], + [ + -73.397554, + 45.56825 + ], + [ + -73.397609, + 45.568156 + ], + [ + -73.397687, + 45.568106 + ], + [ + -73.398109, + 45.567835 + ], + [ + -73.398275, + 45.567729 + ], + [ + -73.399112, + 45.567217 + ], + [ + -73.400881, + 45.566111 + ], + [ + -73.403138, + 45.564701 + ], + [ + -73.403374, + 45.56488 + ], + [ + -73.404259, + 45.565548 + ], + [ + -73.404576, + 45.565795 + ], + [ + -73.404617, + 45.565827 + ], + [ + -73.40476, + 45.565935 + ], + [ + -73.405022, + 45.566133 + ], + [ + -73.405555, + 45.566548 + ], + [ + -73.405791, + 45.566732 + ], + [ + -73.405807, + 45.566745 + ], + [ + -73.406251, + 45.567093 + ], + [ + -73.406658, + 45.567399 + ], + [ + -73.406831, + 45.567543 + ], + [ + -73.407025, + 45.567701 + ], + [ + -73.407271, + 45.567849 + ], + [ + -73.407608, + 45.567993 + ], + [ + -73.407857, + 45.568048 + ], + [ + -73.408124, + 45.568079 + ], + [ + -73.408536, + 45.56808 + ], + [ + -73.409698, + 45.568013 + ], + [ + -73.410197, + 45.567982 + ], + [ + -73.410353, + 45.567973 + ], + [ + -73.41084, + 45.567947 + ], + [ + -73.412702, + 45.567838 + ], + [ + -73.413977, + 45.567764 + ], + [ + -73.414161, + 45.567751 + ], + [ + -73.414428, + 45.567711 + ], + [ + -73.414614, + 45.567648 + ], + [ + -73.414771, + 45.567599 + ], + [ + -73.415031, + 45.567473 + ], + [ + -73.415272, + 45.567347 + ], + [ + -73.415452, + 45.567253 + ], + [ + -73.41745, + 45.566146 + ], + [ + -73.419551, + 45.564984 + ], + [ + -73.420297, + 45.564567 + ], + [ + -73.420525, + 45.56444 + ], + [ + -73.420894, + 45.564251 + ], + [ + -73.42122, + 45.564089 + ], + [ + -73.421549, + 45.563919 + ], + [ + -73.422142, + 45.563568 + ], + [ + -73.423897, + 45.562597 + ], + [ + -73.424088, + 45.562481 + ], + [ + -73.424434, + 45.562242 + ], + [ + -73.424935, + 45.561867 + ], + [ + -73.425154, + 45.561703 + ], + [ + -73.425425, + 45.561919 + ], + [ + -73.425805, + 45.562207 + ], + [ + -73.425983, + 45.562302 + ], + [ + -73.426215, + 45.562374 + ], + [ + -73.426453, + 45.562424 + ], + [ + -73.426484, + 45.562427 + ], + [ + -73.426691, + 45.562451 + ], + [ + -73.426924, + 45.562451 + ], + [ + -73.428161, + 45.562447 + ], + [ + -73.428692, + 45.562443 + ], + [ + -73.429174, + 45.562439 + ], + [ + -73.43018, + 45.562453 + ], + [ + -73.430874, + 45.562507 + ], + [ + -73.431467, + 45.562553 + ], + [ + -73.431994, + 45.562621 + ], + [ + -73.432124, + 45.56264 + ], + [ + -73.432792, + 45.562738 + ], + [ + -73.433489, + 45.562878 + ], + [ + -73.436131, + 45.563444 + ], + [ + -73.436814, + 45.563591 + ], + [ + -73.439993, + 45.564278 + ], + [ + -73.441131, + 45.564524 + ], + [ + -73.441357, + 45.564551 + ], + [ + -73.441513, + 45.564534 + ], + [ + -73.441648, + 45.564502 + ], + [ + -73.441764, + 45.564435 + ], + [ + -73.442037, + 45.564268 + ], + [ + -73.442132, + 45.56421 + ], + [ + -73.442266, + 45.564115 + ], + [ + -73.442879, + 45.56457 + ], + [ + -73.443335, + 45.564932 + ], + [ + -73.443981, + 45.565444 + ], + [ + -73.444144, + 45.565592 + ], + [ + -73.443963, + 45.565808 + ], + [ + -73.442699, + 45.567027 + ], + [ + -73.442645, + 45.567108 + ], + [ + -73.442626, + 45.567202 + ], + [ + -73.44266, + 45.567297 + ], + [ + -73.442738, + 45.567373 + ], + [ + -73.443766, + 45.56816 + ], + [ + -73.444286, + 45.568557 + ], + [ + -73.444688, + 45.568854 + ], + [ + -73.444719, + 45.568877 + ], + [ + -73.44509, + 45.569151 + ], + [ + -73.445158, + 45.569201 + ], + [ + -73.445832, + 45.569723 + ], + [ + -73.44598, + 45.569845 + ], + [ + -73.446079, + 45.569912 + ], + [ + -73.446194, + 45.569957 + ], + [ + -73.446311, + 45.569989 + ], + [ + -73.4464, + 45.570007 + ], + [ + -73.446587, + 45.570044 + ], + [ + -73.447945, + 45.570309 + ], + [ + -73.448177, + 45.570336 + ], + [ + -73.448494, + 45.570395 + ], + [ + -73.449049, + 45.570517 + ], + [ + -73.449223, + 45.570544 + ], + [ + -73.449264, + 45.570454 + ], + [ + -73.449543, + 45.569814 + ], + [ + -73.44969, + 45.569482 + ], + [ + -73.449722, + 45.56941 + ], + [ + -73.449947, + 45.568902 + ], + [ + -73.449982, + 45.56883 + ], + [ + -73.450051, + 45.568681 + ], + [ + -73.450055, + 45.568672 + ], + [ + -73.450057, + 45.568668 + ], + [ + -73.450059, + 45.568663 + ], + [ + -73.450061, + 45.568659 + ], + [ + -73.450063, + 45.568654 + ], + [ + -73.450065, + 45.56865 + ], + [ + -73.450067, + 45.568645 + ], + [ + -73.450069, + 45.568641 + ], + [ + -73.450071, + 45.568636 + ], + [ + -73.450072, + 45.568632 + ], + [ + -73.450074, + 45.568627 + ], + [ + -73.450076, + 45.568623 + ], + [ + -73.450078, + 45.568618 + ], + [ + -73.45008, + 45.568618 + ], + [ + -73.450082, + 45.568614 + ], + [ + -73.450084, + 45.568609 + ], + [ + -73.450086, + 45.568605 + ], + [ + -73.450087, + 45.5686 + ], + [ + -73.450089, + 45.568596 + ], + [ + -73.450091, + 45.568591 + ], + [ + -73.450093, + 45.568587 + ], + [ + -73.450095, + 45.568582 + ], + [ + -73.450097, + 45.568578 + ], + [ + -73.450099, + 45.568573 + ], + [ + -73.450101, + 45.568569 + ], + [ + -73.450102, + 45.568564 + ], + [ + -73.450104, + 45.56856 + ], + [ + -73.450106, + 45.568555 + ], + [ + -73.450108, + 45.568551 + ], + [ + -73.45011, + 45.568546 + ], + [ + -73.450112, + 45.568542 + ], + [ + -73.450114, + 45.568537 + ], + [ + -73.450115, + 45.568533 + ], + [ + -73.450117, + 45.568528 + ], + [ + -73.450119, + 45.568524 + ], + [ + -73.45012, + 45.568519 + ], + [ + -73.450122, + 45.568519 + ], + [ + -73.450124, + 45.568515 + ], + [ + -73.450126, + 45.56851 + ], + [ + -73.450128, + 45.568506 + ], + [ + -73.450129, + 45.568501 + ], + [ + -73.450131, + 45.568497 + ], + [ + -73.450133, + 45.568492 + ], + [ + -73.450134, + 45.568488 + ], + [ + -73.450136, + 45.568483 + ], + [ + -73.450138, + 45.568479 + ], + [ + -73.45014, + 45.568474 + ], + [ + -73.450141, + 45.56847 + ], + [ + -73.450143, + 45.568465 + ], + [ + -73.450145, + 45.568461 + ], + [ + -73.450146, + 45.568456 + ], + [ + -73.450148, + 45.568452 + ], + [ + -73.450148, + 45.568451 + ], + [ + -73.45015, + 45.568447 + ], + [ + -73.450151, + 45.568443 + ], + [ + -73.450153, + 45.568438 + ], + [ + -73.450154, + 45.568434 + ], + [ + -73.450156, + 45.568429 + ], + [ + -73.450158, + 45.568425 + ], + [ + -73.45016, + 45.56842 + ], + [ + -73.450161, + 45.568416 + ], + [ + -73.450163, + 45.568411 + ], + [ + -73.450164, + 45.568407 + ], + [ + -73.450166, + 45.568402 + ], + [ + -73.450168, + 45.568398 + ], + [ + -73.450169, + 45.568393 + ], + [ + -73.450171, + 45.568393 + ], + [ + -73.450173, + 45.568389 + ], + [ + -73.450174, + 45.568384 + ], + [ + -73.450175, + 45.56838 + ], + [ + -73.450177, + 45.568375 + ], + [ + -73.450179, + 45.568371 + ], + [ + -73.45018, + 45.568366 + ], + [ + -73.450182, + 45.568362 + ], + [ + -73.450183, + 45.568357 + ], + [ + -73.450185, + 45.568353 + ], + [ + -73.450186, + 45.568348 + ], + [ + -73.450188, + 45.568344 + ], + [ + -73.450189, + 45.568339 + ], + [ + -73.450191, + 45.568335 + ], + [ + -73.450192, + 45.56833 + ], + [ + -73.450194, + 45.568326 + ], + [ + -73.450195, + 45.568321 + ], + [ + -73.450197, + 45.568317 + ], + [ + -73.450198, + 45.568312 + ], + [ + -73.4502, + 45.568308 + ], + [ + -73.450201, + 45.568303 + ], + [ + -73.450203, + 45.568299 + ], + [ + -73.450204, + 45.568294 + ], + [ + -73.450205, + 45.56829 + ], + [ + -73.450207, + 45.568285 + ], + [ + -73.450208, + 45.568281 + ], + [ + -73.45021, + 45.568276 + ], + [ + -73.450211, + 45.568272 + ], + [ + -73.450213, + 45.568267 + ], + [ + -73.450214, + 45.568263 + ], + [ + -73.450215, + 45.568258 + ], + [ + -73.450217, + 45.568254 + ], + [ + -73.450218, + 45.568249 + ], + [ + -73.450219, + 45.568245 + ], + [ + -73.450221, + 45.56824 + ], + [ + -73.450222, + 45.568236 + ], + [ + -73.450224, + 45.568231 + ], + [ + -73.450225, + 45.568227 + ], + [ + -73.450226, + 45.568227 + ], + [ + -73.450228, + 45.568222 + ], + [ + -73.450229, + 45.568218 + ], + [ + -73.45023, + 45.568213 + ], + [ + -73.450232, + 45.568209 + ], + [ + -73.450233, + 45.568204 + ], + [ + -73.450234, + 45.5682 + ], + [ + -73.450236, + 45.568195 + ], + [ + -73.450237, + 45.568191 + ], + [ + -73.450238, + 45.568186 + ], + [ + -73.45024, + 45.568182 + ], + [ + -73.450241, + 45.568177 + ], + [ + -73.450242, + 45.568173 + ], + [ + -73.450244, + 45.568168 + ], + [ + -73.450245, + 45.568164 + ], + [ + -73.450246, + 45.568159 + ], + [ + -73.450247, + 45.568155 + ], + [ + -73.450248, + 45.56815 + ], + [ + -73.45025, + 45.568146 + ], + [ + -73.450251, + 45.568141 + ], + [ + -73.450252, + 45.568137 + ], + [ + -73.450253, + 45.568132 + ], + [ + -73.450254, + 45.568128 + ], + [ + -73.450256, + 45.568123 + ], + [ + -73.450257, + 45.568119 + ], + [ + -73.450258, + 45.568114 + ], + [ + -73.450259, + 45.56811 + ], + [ + -73.45026, + 45.568105 + ], + [ + -73.450262, + 45.568101 + ], + [ + -73.450263, + 45.568096 + ], + [ + -73.450264, + 45.568092 + ], + [ + -73.450265, + 45.568088 + ], + [ + -73.450266, + 45.568083 + ], + [ + -73.450267, + 45.568079 + ], + [ + -73.450268, + 45.568074 + ], + [ + -73.45027, + 45.56807 + ], + [ + -73.450271, + 45.568065 + ], + [ + -73.450272, + 45.568061 + ], + [ + -73.450273, + 45.568056 + ], + [ + -73.450274, + 45.568052 + ], + [ + -73.450275, + 45.568047 + ], + [ + -73.450277, + 45.568043 + ], + [ + -73.450277, + 45.568038 + ], + [ + -73.450279, + 45.568034 + ], + [ + -73.45028, + 45.568029 + ], + [ + -73.450281, + 45.568025 + ], + [ + -73.450282, + 45.56802 + ], + [ + -73.450283, + 45.568016 + ], + [ + -73.450284, + 45.568011 + ], + [ + -73.450285, + 45.568007 + ], + [ + -73.450286, + 45.568002 + ], + [ + -73.450287, + 45.567998 + ], + [ + -73.450288, + 45.567993 + ], + [ + -73.450289, + 45.567989 + ], + [ + -73.45029, + 45.567984 + ], + [ + -73.450291, + 45.56798 + ], + [ + -73.450292, + 45.567975 + ], + [ + -73.450293, + 45.567971 + ], + [ + -73.450294, + 45.567966 + ], + [ + -73.450295, + 45.567962 + ], + [ + -73.450296, + 45.567957 + ], + [ + -73.450297, + 45.567957 + ], + [ + -73.450298, + 45.567953 + ], + [ + -73.450299, + 45.567948 + ], + [ + -73.4503, + 45.567944 + ], + [ + -73.450301, + 45.567939 + ], + [ + -73.450301, + 45.567935 + ], + [ + -73.450302, + 45.56793 + ], + [ + -73.450303, + 45.567926 + ], + [ + -73.450304, + 45.567921 + ], + [ + -73.450305, + 45.567917 + ], + [ + -73.450306, + 45.567912 + ], + [ + -73.450307, + 45.567908 + ], + [ + -73.450308, + 45.567903 + ], + [ + -73.450309, + 45.567899 + ], + [ + -73.450309, + 45.567894 + ], + [ + -73.45031, + 45.56789 + ], + [ + -73.450311, + 45.567885 + ], + [ + -73.450312, + 45.567881 + ], + [ + -73.450313, + 45.567876 + ], + [ + -73.450314, + 45.567872 + ], + [ + -73.450315, + 45.567867 + ], + [ + -73.450316, + 45.567863 + ], + [ + -73.450316, + 45.567858 + ], + [ + -73.450317, + 45.567854 + ], + [ + -73.450318, + 45.567849 + ], + [ + -73.450319, + 45.567845 + ], + [ + -73.45032, + 45.56784 + ], + [ + -73.45032, + 45.567836 + ], + [ + -73.450321, + 45.567831 + ], + [ + -73.450322, + 45.567827 + ], + [ + -73.450323, + 45.567822 + ], + [ + -73.450324, + 45.567818 + ], + [ + -73.450324, + 45.567813 + ], + [ + -73.450325, + 45.567809 + ], + [ + -73.450326, + 45.567804 + ], + [ + -73.450326, + 45.5678 + ], + [ + -73.450327, + 45.567795 + ], + [ + -73.450328, + 45.567791 + ], + [ + -73.450329, + 45.567786 + ], + [ + -73.450329, + 45.567782 + ], + [ + -73.45033, + 45.567777 + ], + [ + -73.450331, + 45.567773 + ], + [ + -73.450332, + 45.567768 + ], + [ + -73.450332, + 45.567764 + ], + [ + -73.450333, + 45.567759 + ], + [ + -73.450334, + 45.567755 + ], + [ + -73.450334, + 45.56775 + ], + [ + -73.450335, + 45.567746 + ], + [ + -73.450336, + 45.567741 + ], + [ + -73.450336, + 45.567737 + ], + [ + -73.450337, + 45.567732 + ], + [ + -73.450337, + 45.567728 + ], + [ + -73.450338, + 45.567723 + ], + [ + -73.450339, + 45.567719 + ], + [ + -73.450339, + 45.567714 + ], + [ + -73.45034, + 45.56771 + ], + [ + -73.45034, + 45.567705 + ], + [ + -73.450341, + 45.567701 + ], + [ + -73.450342, + 45.567696 + ], + [ + -73.450342, + 45.567692 + ], + [ + -73.450343, + 45.567687 + ], + [ + -73.450343, + 45.567683 + ], + [ + -73.450344, + 45.567678 + ], + [ + -73.450345, + 45.567674 + ], + [ + -73.450345, + 45.567669 + ], + [ + -73.450346, + 45.567665 + ], + [ + -73.450346, + 45.56766 + ], + [ + -73.450347, + 45.567656 + ], + [ + -73.450347, + 45.567651 + ], + [ + -73.450348, + 45.567647 + ], + [ + -73.450348, + 45.567642 + ], + [ + -73.450349, + 45.567638 + ], + [ + -73.450349, + 45.567633 + ], + [ + -73.45035, + 45.567629 + ], + [ + -73.45035, + 45.567624 + ], + [ + -73.450351, + 45.56762 + ], + [ + -73.450351, + 45.567615 + ], + [ + -73.450352, + 45.567611 + ], + [ + -73.450352, + 45.567606 + ], + [ + -73.450353, + 45.567602 + ], + [ + -73.450353, + 45.567597 + ], + [ + -73.450353, + 45.567593 + ], + [ + -73.450354, + 45.567588 + ], + [ + -73.450355, + 45.567584 + ], + [ + -73.450355, + 45.567579 + ], + [ + -73.450355, + 45.567575 + ], + [ + -73.450356, + 45.56757 + ], + [ + -73.450356, + 45.567566 + ], + [ + -73.450357, + 45.567561 + ], + [ + -73.450357, + 45.567557 + ], + [ + -73.450357, + 45.567552 + ], + [ + -73.45036, + 45.567548 + ], + [ + -73.45038, + 45.567003 + ], + [ + -73.450434, + 45.565568 + ], + [ + -73.450435, + 45.565521 + ], + [ + -73.450469, + 45.564632 + ], + [ + -73.450501, + 45.563818 + ], + [ + -73.450514, + 45.563467 + ], + [ + -73.450528, + 45.563034 + ], + [ + -73.450546, + 45.562441 + ], + [ + -73.450644, + 45.562216 + ], + [ + -73.450694, + 45.562131 + ], + [ + -73.450783, + 45.562045 + ], + [ + -73.450893, + 45.561982 + ], + [ + -73.451026, + 45.561928 + ], + [ + -73.451225, + 45.561875 + ], + [ + -73.453525, + 45.561813 + ], + [ + -73.454569, + 45.561789 + ], + [ + -73.455653, + 45.561764 + ], + [ + -73.45601, + 45.561755 + ], + [ + -73.459012, + 45.561684 + ], + [ + -73.459275, + 45.561684 + ], + [ + -73.460731, + 45.561644 + ], + [ + -73.461459, + 45.561624 + ], + [ + -73.461679, + 45.561618 + ], + [ + -73.461849, + 45.561685 + ], + [ + -73.461894, + 45.561703 + ], + [ + -73.461935, + 45.561735 + ], + [ + -73.46197, + 45.561762 + ], + [ + -73.46208, + 45.56187 + ], + [ + -73.462094, + 45.562248 + ], + [ + -73.462108, + 45.562302 + ], + [ + -73.462138, + 45.562369 + ], + [ + -73.462191, + 45.562437 + ], + [ + -73.462237, + 45.562473 + ], + [ + -73.462324, + 45.56254 + ], + [ + -73.463656, + 45.563548 + ], + [ + -73.463775, + 45.563638 + ], + [ + -73.465793, + 45.5652 + ], + [ + -73.468091, + 45.566979 + ], + [ + -73.468142, + 45.567019 + ], + [ + -73.470984, + 45.569217 + ], + [ + -73.471116, + 45.569318 + ], + [ + -73.473095, + 45.570836 + ], + [ + -73.473129, + 45.570862 + ], + [ + -73.473953, + 45.571492 + ], + [ + -73.474759, + 45.572109 + ], + [ + -73.47593, + 45.573002 + ], + [ + -73.475992, + 45.573049 + ], + [ + -73.476026, + 45.573085 + ], + [ + -73.477034, + 45.573852 + ], + [ + -73.47886, + 45.575219 + ], + [ + -73.479129, + 45.57542 + ], + [ + -73.479186, + 45.57547 + ], + [ + -73.47919, + 45.575474 + ], + [ + -73.479274, + 45.575534 + ], + [ + -73.47941, + 45.575433 + ], + [ + -73.479496, + 45.575361 + ], + [ + -73.479622, + 45.575253 + ], + [ + -73.4798, + 45.575097 + ], + [ + -73.479996, + 45.574941 + ], + [ + -73.480237, + 45.574738 + ], + [ + -73.480349, + 45.574641 + ], + [ + -73.480453, + 45.574551 + ], + [ + -73.480801, + 45.574263 + ], + [ + -73.481358, + 45.573789 + ], + [ + -73.481529, + 45.573644 + ], + [ + -73.481972, + 45.573269 + ], + [ + -73.482082, + 45.573173 + ], + [ + -73.482204, + 45.573068 + ], + [ + -73.482412, + 45.572903 + ], + [ + -73.482823, + 45.572557 + ], + [ + -73.482916, + 45.572476 + ], + [ + -73.482986, + 45.57241 + ], + [ + -73.483315, + 45.572122 + ], + [ + -73.483678, + 45.571813 + ], + [ + -73.483735, + 45.571764 + ], + [ + -73.483843, + 45.57167 + ], + [ + -73.484123, + 45.57144 + ], + [ + -73.484526, + 45.571099 + ], + [ + -73.484935, + 45.570755 + ], + [ + -73.484967, + 45.570727 + ], + [ + -73.485483, + 45.570269 + ], + [ + -73.485867, + 45.569908 + ], + [ + -73.485881, + 45.569895 + ], + [ + -73.485994, + 45.569784 + ], + [ + -73.486085, + 45.569691 + ], + [ + -73.486421, + 45.569373 + ], + [ + -73.487037, + 45.568739 + ], + [ + -73.487188, + 45.568584 + ], + [ + -73.487556, + 45.568196 + ], + [ + -73.487608, + 45.568138 + ], + [ + -73.488016, + 45.567684 + ], + [ + -73.488394, + 45.567236 + ], + [ + -73.488838, + 45.56671 + ], + [ + -73.488926, + 45.566606 + ], + [ + -73.489299, + 45.566117 + ], + [ + -73.489627, + 45.565684 + ], + [ + -73.489917, + 45.565286 + ], + [ + -73.490075, + 45.56507 + ], + [ + -73.490593, + 45.5643 + ], + [ + -73.490758, + 45.564049 + ], + [ + -73.491532, + 45.562873 + ], + [ + -73.491593, + 45.562778 + ], + [ + -73.491625, + 45.562726 + ], + [ + -73.4917, + 45.562606 + ], + [ + -73.491908, + 45.562298 + ], + [ + -73.49207, + 45.56203 + ], + [ + -73.492185, + 45.561871 + ], + [ + -73.492369, + 45.561588 + ], + [ + -73.492389, + 45.561559 + ], + [ + -73.492391, + 45.561555 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.494714, + 45.55837 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498677, + 45.553944 + ], + [ + -73.498726, + 45.553872 + ], + [ + -73.498813, + 45.553714 + ], + [ + -73.498895, + 45.553562 + ], + [ + -73.49895, + 45.553404 + ], + [ + -73.498964, + 45.55335 + ], + [ + -73.498988, + 45.55326 + ], + [ + -73.499026, + 45.553035 + ], + [ + -73.499051, + 45.55281 + ], + [ + -73.49911, + 45.552261 + ], + [ + -73.499127, + 45.552095 + ], + [ + -73.49916, + 45.55177 + ], + [ + -73.499199, + 45.551371 + ], + [ + -73.49924, + 45.551092 + ], + [ + -73.499284, + 45.550946 + ], + [ + -73.499366, + 45.550811 + ], + [ + -73.499487, + 45.550651 + ], + [ + -73.499681, + 45.550406 + ], + [ + -73.499747, + 45.550322 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.500107, + 45.550074 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.503657, + 45.547898 + ], + [ + -73.503779, + 45.547781 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.505408, + 45.546113 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507875, + 45.543486 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.509782, + 45.541604 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.511269, + 45.540359 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512993, + 45.539127 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.514324, + 45.538179 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.515313, + 45.537389 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.516477, + 45.536186 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.518222, + 45.534133 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519479, + 45.531846 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519522, + 45.531915 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519179, + 45.531645 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.518817, + 45.531415 + ], + [ + -73.518763, + 45.531374 + ], + [ + -73.518709, + 45.531325 + ], + [ + -73.518655, + 45.531271 + ], + [ + -73.518619, + 45.531213 + ], + [ + -73.518601, + 45.531154 + ], + [ + -73.518588, + 45.531096 + ], + [ + -73.518588, + 45.531055 + ], + [ + -73.518597, + 45.531006 + ], + [ + -73.518619, + 45.530952 + ], + [ + -73.518659, + 45.530884 + ], + [ + -73.518691, + 45.530826 + ], + [ + -73.518718, + 45.530785 + ], + [ + -73.518753, + 45.530731 + ], + [ + -73.518803, + 45.530646 + ], + [ + -73.518839, + 45.530596 + ], + [ + -73.518875, + 45.530547 + ], + [ + -73.518897, + 45.530497 + ], + [ + -73.518915, + 45.530448 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519399, + 45.526016 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519784, + 45.523381 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522466, + 45.524143 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 76, + "properties": { + "id": "35c6e21b-b654-4bb2-9c49-df18ba41e2a3", + "data": { + "gtfs": { + "shape_id": "25_2_A" + }, + "segments": [ + { + "distanceMeters": 516, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 495, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 468, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 406, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 598, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 471, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 453, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 457, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 527, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 425, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 327, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 374, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 423, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 829, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 463, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 334, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 655, + "travelTimeSeconds": 109 + }, + { + "distanceMeters": 830, + "travelTimeSeconds": 139 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 240, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 18140, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 12105.606803880566, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.56, + "travelTimeWithoutDwellTimesSeconds": 2400, + "operatingTimeWithLayoverTimeSeconds": 2640, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2400, + "operatingSpeedWithLayoverMetersPerSecond": 6.87, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.56 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "b195cac8-133e-4e85-98b4-0a7ab23c800c", + "35827d6c-59cb-43b0-bfdd-eaa586fe772c", + "7335aafe-31d7-4598-a3ca-7bfa36ca76b3", + "a93c22b5-170a-45a8-a2c1-143c975239a9", + "a913c5ce-8de0-458e-a9ee-4ae555d41e98", + "a4120eb1-d1f9-43e5-8720-90115641165b", + "0681e3d4-c5fd-4f85-982e-d5d26960784a", + "2260ef06-cda3-48e1-919a-84c2b44c938b", + "494eea8e-2f4e-4123-9eb6-ab837bba3b5d", + "2fb188f9-f7b1-471b-a5d6-51581b357b49", + "0041d8ec-3bef-4a62-90da-3711f5d509d2", + "0d73df1c-f948-4c1f-ba36-487a91089d51", + "b734f683-dc9f-47d6-a659-53e6bf9d2915", + "58c5658c-7476-4072-998b-0663b682b8a6", + "cb78d8bd-4b44-40b3-8301-c4501b063d48", + "af75f57b-23de-436e-ac1d-d36a204dd0cd", + "f1fdc85c-124b-4428-8960-81d8b0fa863a", + "68d70807-e1f4-4393-a156-0cb02f37fe17", + "a77f8bf1-6b13-445b-a79c-6b0770c935c0", + "83669f2f-a25c-47b1-99a1-53a7c08fed91", + "e979db3f-26cd-41d5-8708-f07b7090bef0", + "33622e57-d444-4916-a7fb-d1fa4643eb90", + "ae6e0f03-aee3-4f3b-9a79-98bb90a35a7a", + "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "911acdc7-e82a-4bb1-aecd-7f8fbf39cc16", + "50e25e6e-b3a0-49ca-b0a6-22261b688cbf", + "767c22ba-e4bc-43df-94bc-025afee14810", + "28b7e465-7627-4587-950e-0fe104f1bac7", + "9ce474bd-b957-414c-a2bb-a8fbae6720a2", + "a09356f2-d06c-43dd-b67b-b970ca63de4c", + "efdd0b14-8e79-4a0f-85cb-f5ec3d032eec", + "7330c47a-92ea-4650-a95f-c6010983e0e2", + "41fd6b6d-a514-49a6-acf5-1a39152b0c5f", + "a0c45e7b-af06-4ea8-a82a-a658b829e198", + "fb348def-00b5-4574-9848-5f275a3fa42d", + "75347f42-115f-47ec-b394-c1f56ce167fb", + "dc112aae-906c-47be-a1fb-06ef714fd1ab", + "ab105343-272d-4aa3-9238-846c2fa787cb", + "24527bed-7ea6-44d6-b6db-18ac609f4938", + "1b1077ca-8a37-46a1-a7be-751ea2f7f2ae", + "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", + "d5099816-374e-4ebc-ab50-5ca4d2f829e5", + "84a0424b-0f35-4bd8-8109-5ac9219d5869", + "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", + "261a087b-9323-4696-9046-146a299af43d", + "66456437-f154-4a2f-a12f-2f54cf668687", + "820a9d7c-25e9-487c-9e51-cfefcb1432f7", + "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", + "72c849ab-069a-4dc5-92fe-9ecc63ba074d", + "d9324afd-9cb7-46ba-ad04-bb8387256785", + "45ed93e4-f128-470f-b287-4d6ddc400e49", + "52f97fd3-6c91-420e-82d2-2198f2064d40", + "2d2815ee-443f-48d9-a68e-7f53a9aa6216", + "dadcd93c-5469-44bf-8e3e-ccac4a5af110", + "28d90293-1261-41be-a75c-5fc82c3acd49", + "28559490-1b1e-4bd4-83e1-408fd6a20c77", + "72e3e510-0ae4-407e-a30d-82f52f41e278", + "2e804fba-75d7-4c69-a7f7-706998c1a6f1", + "4fb4515b-e129-4622-b855-89143c2fd488", + "4c755ece-2475-4915-941e-37859f0f391f" + ], + "stops": [], + "line_id": "3dd0da2d-881a-4bb0-bf0c-519de288b81a", + "segments": [ + 0, + 10, + 20, + 29, + 36, + 39, + 44, + 49, + 63, + 70, + 72, + 74, + 83, + 94, + 100, + 103, + 105, + 111, + 115, + 124, + 128, + 136, + 201, + 406, + 408, + 412, + 423, + 427, + 438, + 440, + 442, + 443, + 445, + 447, + 451, + 457, + 466, + 472, + 480, + 488, + 498, + 505, + 508, + 514, + 520, + 536, + 542, + 560, + 563, + 567, + 571, + 578, + 581, + 583, + 587, + 590, + 593, + 611, + 642 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 76, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.382771, + 45.57165 + ], + [ + -73.38222, + 45.571719 + ], + [ + -73.382265, + 45.571886 + ], + [ + -73.382294, + 45.571994 + ], + [ + -73.383299, + 45.571875 + ], + [ + -73.383765, + 45.571818 + ], + [ + -73.384997, + 45.571649 + ], + [ + -73.385674, + 45.57155 + ], + [ + -73.38625, + 45.571475 + ], + [ + -73.386982, + 45.571372 + ], + [ + -73.387898, + 45.571251 + ], + [ + -73.388912, + 45.571113 + ], + [ + -73.389658, + 45.571014 + ], + [ + -73.390528, + 45.570894 + ], + [ + -73.391191, + 45.570804 + ], + [ + -73.392081, + 45.570684 + ], + [ + -73.39269, + 45.570599 + ], + [ + -73.39317, + 45.570536 + ], + [ + -73.393727, + 45.570456 + ], + [ + -73.394177, + 45.570398 + ], + [ + -73.39531, + 45.570246 + ], + [ + -73.396252, + 45.570116 + ], + [ + -73.397337, + 45.569982 + ], + [ + -73.398872, + 45.569831 + ], + [ + -73.398868, + 45.569534 + ], + [ + -73.398845, + 45.569466 + ], + [ + -73.398791, + 45.569385 + ], + [ + -73.397619, + 45.568457 + ], + [ + -73.397569, + 45.56839 + ], + [ + -73.397545, + 45.56834 + ], + [ + -73.397554, + 45.56825 + ], + [ + -73.397609, + 45.568156 + ], + [ + -73.397687, + 45.568106 + ], + [ + -73.398275, + 45.567729 + ], + [ + -73.399112, + 45.567217 + ], + [ + -73.403138, + 45.564701 + ], + [ + -73.403374, + 45.56488 + ], + [ + -73.404259, + 45.565548 + ], + [ + -73.404576, + 45.565795 + ], + [ + -73.40476, + 45.565935 + ], + [ + -73.405022, + 45.566133 + ], + [ + -73.405555, + 45.566548 + ], + [ + -73.405791, + 45.566732 + ], + [ + -73.406251, + 45.567093 + ], + [ + -73.406658, + 45.567399 + ], + [ + -73.406831, + 45.567543 + ], + [ + -73.407025, + 45.567701 + ], + [ + -73.407271, + 45.567849 + ], + [ + -73.407608, + 45.567993 + ], + [ + -73.407857, + 45.568048 + ], + [ + -73.408124, + 45.568079 + ], + [ + -73.408536, + 45.56808 + ], + [ + -73.409698, + 45.568013 + ], + [ + -73.410197, + 45.567982 + ], + [ + -73.410353, + 45.567973 + ], + [ + -73.41084, + 45.567947 + ], + [ + -73.413977, + 45.567764 + ], + [ + -73.414161, + 45.567751 + ], + [ + -73.414428, + 45.567711 + ], + [ + -73.414614, + 45.567648 + ], + [ + -73.414771, + 45.567599 + ], + [ + -73.415031, + 45.567473 + ], + [ + -73.415452, + 45.567253 + ], + [ + -73.419551, + 45.564984 + ], + [ + -73.420525, + 45.56444 + ], + [ + -73.420894, + 45.564251 + ], + [ + -73.42122, + 45.564089 + ], + [ + -73.421549, + 45.563919 + ], + [ + -73.422142, + 45.563568 + ], + [ + -73.423897, + 45.562597 + ], + [ + -73.424088, + 45.562481 + ], + [ + -73.424434, + 45.562242 + ], + [ + -73.425154, + 45.561703 + ], + [ + -73.425425, + 45.561919 + ], + [ + -73.425805, + 45.562207 + ], + [ + -73.425983, + 45.562302 + ], + [ + -73.426215, + 45.562374 + ], + [ + -73.426453, + 45.562424 + ], + [ + -73.426484, + 45.562427 + ], + [ + -73.426691, + 45.562451 + ], + [ + -73.426924, + 45.562451 + ], + [ + -73.428161, + 45.562447 + ], + [ + -73.429174, + 45.562439 + ], + [ + -73.43018, + 45.562453 + ], + [ + -73.430874, + 45.562507 + ], + [ + -73.431467, + 45.562553 + ], + [ + -73.431994, + 45.562621 + ], + [ + -73.432792, + 45.562738 + ], + [ + -73.433489, + 45.562878 + ], + [ + -73.436814, + 45.563591 + ], + [ + -73.441131, + 45.564524 + ], + [ + -73.441357, + 45.564551 + ], + [ + -73.441513, + 45.564534 + ], + [ + -73.441648, + 45.564502 + ], + [ + -73.441764, + 45.564435 + ], + [ + -73.442132, + 45.56421 + ], + [ + -73.442266, + 45.564115 + ], + [ + -73.442879, + 45.56457 + ], + [ + -73.443981, + 45.565444 + ], + [ + -73.444144, + 45.565592 + ], + [ + -73.443963, + 45.565808 + ], + [ + -73.442699, + 45.567027 + ], + [ + -73.442645, + 45.567108 + ], + [ + -73.442626, + 45.567202 + ], + [ + -73.44266, + 45.567297 + ], + [ + -73.442738, + 45.567373 + ], + [ + -73.444286, + 45.568557 + ], + [ + -73.444688, + 45.568854 + ], + [ + -73.444719, + 45.568877 + ], + [ + -73.445158, + 45.569201 + ], + [ + -73.445832, + 45.569723 + ], + [ + -73.44598, + 45.569845 + ], + [ + -73.446079, + 45.569912 + ], + [ + -73.446194, + 45.569957 + ], + [ + -73.446311, + 45.569989 + ], + [ + -73.4464, + 45.570007 + ], + [ + -73.447945, + 45.570309 + ], + [ + -73.448177, + 45.570336 + ], + [ + -73.448494, + 45.570395 + ], + [ + -73.449049, + 45.570517 + ], + [ + -73.449223, + 45.570544 + ], + [ + -73.449264, + 45.570454 + ], + [ + -73.449543, + 45.569814 + ], + [ + -73.44969, + 45.569482 + ], + [ + -73.449722, + 45.56941 + ], + [ + -73.449947, + 45.568902 + ], + [ + -73.449982, + 45.56883 + ], + [ + -73.450051, + 45.568681 + ], + [ + -73.450055, + 45.568672 + ], + [ + -73.450057, + 45.568668 + ], + [ + -73.450059, + 45.568663 + ], + [ + -73.450061, + 45.568659 + ], + [ + -73.450063, + 45.568654 + ], + [ + -73.450065, + 45.56865 + ], + [ + -73.450067, + 45.568645 + ], + [ + -73.450069, + 45.568641 + ], + [ + -73.450071, + 45.568636 + ], + [ + -73.450072, + 45.568632 + ], + [ + -73.450074, + 45.568627 + ], + [ + -73.450076, + 45.568623 + ], + [ + -73.450078, + 45.568618 + ], + [ + -73.45008, + 45.568618 + ], + [ + -73.450082, + 45.568614 + ], + [ + -73.450084, + 45.568609 + ], + [ + -73.450086, + 45.568605 + ], + [ + -73.450087, + 45.5686 + ], + [ + -73.450089, + 45.568596 + ], + [ + -73.450091, + 45.568591 + ], + [ + -73.450093, + 45.568587 + ], + [ + -73.450095, + 45.568582 + ], + [ + -73.450097, + 45.568578 + ], + [ + -73.450099, + 45.568573 + ], + [ + -73.450101, + 45.568569 + ], + [ + -73.450102, + 45.568564 + ], + [ + -73.450104, + 45.56856 + ], + [ + -73.450106, + 45.568555 + ], + [ + -73.450108, + 45.568551 + ], + [ + -73.45011, + 45.568546 + ], + [ + -73.450112, + 45.568542 + ], + [ + -73.450114, + 45.568537 + ], + [ + -73.450115, + 45.568533 + ], + [ + -73.450117, + 45.568528 + ], + [ + -73.450119, + 45.568524 + ], + [ + -73.45012, + 45.568519 + ], + [ + -73.450122, + 45.568519 + ], + [ + -73.450124, + 45.568515 + ], + [ + -73.450126, + 45.56851 + ], + [ + -73.450128, + 45.568506 + ], + [ + -73.450129, + 45.568501 + ], + [ + -73.450131, + 45.568497 + ], + [ + -73.450133, + 45.568492 + ], + [ + -73.450134, + 45.568488 + ], + [ + -73.450136, + 45.568483 + ], + [ + -73.450138, + 45.568479 + ], + [ + -73.45014, + 45.568474 + ], + [ + -73.450141, + 45.56847 + ], + [ + -73.450143, + 45.568465 + ], + [ + -73.450145, + 45.568461 + ], + [ + -73.450146, + 45.568456 + ], + [ + -73.450148, + 45.568452 + ], + [ + -73.45015, + 45.568447 + ], + [ + -73.450151, + 45.568443 + ], + [ + -73.450153, + 45.568438 + ], + [ + -73.450154, + 45.568434 + ], + [ + -73.450156, + 45.568429 + ], + [ + -73.450158, + 45.568425 + ], + [ + -73.45016, + 45.56842 + ], + [ + -73.450161, + 45.568416 + ], + [ + -73.450163, + 45.568411 + ], + [ + -73.450164, + 45.568407 + ], + [ + -73.450166, + 45.568402 + ], + [ + -73.450168, + 45.568398 + ], + [ + -73.450169, + 45.568393 + ], + [ + -73.450171, + 45.568393 + ], + [ + -73.450173, + 45.568389 + ], + [ + -73.450174, + 45.568384 + ], + [ + -73.450175, + 45.56838 + ], + [ + -73.450177, + 45.568375 + ], + [ + -73.450179, + 45.568371 + ], + [ + -73.45018, + 45.568366 + ], + [ + -73.450182, + 45.568362 + ], + [ + -73.450183, + 45.568357 + ], + [ + -73.450185, + 45.568353 + ], + [ + -73.450186, + 45.568348 + ], + [ + -73.450188, + 45.568344 + ], + [ + -73.450189, + 45.568339 + ], + [ + -73.450191, + 45.568335 + ], + [ + -73.450192, + 45.56833 + ], + [ + -73.450194, + 45.568326 + ], + [ + -73.450195, + 45.568321 + ], + [ + -73.450197, + 45.568317 + ], + [ + -73.450198, + 45.568312 + ], + [ + -73.4502, + 45.568308 + ], + [ + -73.450201, + 45.568303 + ], + [ + -73.450203, + 45.568299 + ], + [ + -73.450204, + 45.568294 + ], + [ + -73.450205, + 45.56829 + ], + [ + -73.450207, + 45.568285 + ], + [ + -73.450208, + 45.568281 + ], + [ + -73.45021, + 45.568276 + ], + [ + -73.450211, + 45.568272 + ], + [ + -73.450213, + 45.568267 + ], + [ + -73.450214, + 45.568263 + ], + [ + -73.450215, + 45.568258 + ], + [ + -73.450217, + 45.568254 + ], + [ + -73.450218, + 45.568249 + ], + [ + -73.450219, + 45.568245 + ], + [ + -73.450221, + 45.56824 + ], + [ + -73.450222, + 45.568236 + ], + [ + -73.450224, + 45.568231 + ], + [ + -73.450225, + 45.568227 + ], + [ + -73.450226, + 45.568227 + ], + [ + -73.450228, + 45.568222 + ], + [ + -73.450229, + 45.568218 + ], + [ + -73.45023, + 45.568213 + ], + [ + -73.450232, + 45.568209 + ], + [ + -73.450233, + 45.568204 + ], + [ + -73.450234, + 45.5682 + ], + [ + -73.450236, + 45.568195 + ], + [ + -73.450237, + 45.568191 + ], + [ + -73.450238, + 45.568186 + ], + [ + -73.45024, + 45.568182 + ], + [ + -73.450241, + 45.568177 + ], + [ + -73.450242, + 45.568173 + ], + [ + -73.450244, + 45.568168 + ], + [ + -73.450245, + 45.568164 + ], + [ + -73.450246, + 45.568159 + ], + [ + -73.450247, + 45.568155 + ], + [ + -73.450248, + 45.56815 + ], + [ + -73.45025, + 45.568146 + ], + [ + -73.450251, + 45.568141 + ], + [ + -73.450252, + 45.568137 + ], + [ + -73.450253, + 45.568132 + ], + [ + -73.450254, + 45.568128 + ], + [ + -73.450256, + 45.568123 + ], + [ + -73.450257, + 45.568119 + ], + [ + -73.450258, + 45.568114 + ], + [ + -73.450259, + 45.56811 + ], + [ + -73.45026, + 45.568105 + ], + [ + -73.450262, + 45.568101 + ], + [ + -73.450263, + 45.568096 + ], + [ + -73.450264, + 45.568092 + ], + [ + -73.450265, + 45.568088 + ], + [ + -73.450266, + 45.568083 + ], + [ + -73.450267, + 45.568079 + ], + [ + -73.450268, + 45.568074 + ], + [ + -73.45027, + 45.56807 + ], + [ + -73.450271, + 45.568065 + ], + [ + -73.450272, + 45.568061 + ], + [ + -73.450273, + 45.568056 + ], + [ + -73.450274, + 45.568052 + ], + [ + -73.450275, + 45.568047 + ], + [ + -73.450277, + 45.568043 + ], + [ + -73.450277, + 45.568038 + ], + [ + -73.450279, + 45.568034 + ], + [ + -73.45028, + 45.568029 + ], + [ + -73.450281, + 45.568025 + ], + [ + -73.450282, + 45.56802 + ], + [ + -73.450283, + 45.568016 + ], + [ + -73.450284, + 45.568011 + ], + [ + -73.450285, + 45.568007 + ], + [ + -73.450286, + 45.568002 + ], + [ + -73.450287, + 45.567998 + ], + [ + -73.450288, + 45.567993 + ], + [ + -73.450289, + 45.567989 + ], + [ + -73.45029, + 45.567984 + ], + [ + -73.450291, + 45.56798 + ], + [ + -73.450292, + 45.567975 + ], + [ + -73.450293, + 45.567971 + ], + [ + -73.450294, + 45.567966 + ], + [ + -73.450295, + 45.567962 + ], + [ + -73.450296, + 45.567957 + ], + [ + -73.450297, + 45.567957 + ], + [ + -73.450298, + 45.567953 + ], + [ + -73.450299, + 45.567948 + ], + [ + -73.4503, + 45.567944 + ], + [ + -73.450301, + 45.567939 + ], + [ + -73.450301, + 45.567935 + ], + [ + -73.450302, + 45.56793 + ], + [ + -73.450303, + 45.567926 + ], + [ + -73.450304, + 45.567921 + ], + [ + -73.450305, + 45.567917 + ], + [ + -73.450306, + 45.567912 + ], + [ + -73.450307, + 45.567908 + ], + [ + -73.450308, + 45.567903 + ], + [ + -73.450309, + 45.567899 + ], + [ + -73.450309, + 45.567894 + ], + [ + -73.45031, + 45.56789 + ], + [ + -73.450311, + 45.567885 + ], + [ + -73.450312, + 45.567881 + ], + [ + -73.450313, + 45.567876 + ], + [ + -73.450314, + 45.567872 + ], + [ + -73.450315, + 45.567867 + ], + [ + -73.450316, + 45.567863 + ], + [ + -73.450316, + 45.567858 + ], + [ + -73.450317, + 45.567854 + ], + [ + -73.450318, + 45.567849 + ], + [ + -73.450319, + 45.567845 + ], + [ + -73.45032, + 45.56784 + ], + [ + -73.45032, + 45.567836 + ], + [ + -73.450321, + 45.567831 + ], + [ + -73.450322, + 45.567827 + ], + [ + -73.450323, + 45.567822 + ], + [ + -73.450324, + 45.567818 + ], + [ + -73.450324, + 45.567813 + ], + [ + -73.450325, + 45.567809 + ], + [ + -73.450326, + 45.567804 + ], + [ + -73.450326, + 45.5678 + ], + [ + -73.450327, + 45.567795 + ], + [ + -73.450328, + 45.567791 + ], + [ + -73.450329, + 45.567786 + ], + [ + -73.450329, + 45.567782 + ], + [ + -73.45033, + 45.567777 + ], + [ + -73.450331, + 45.567773 + ], + [ + -73.450332, + 45.567768 + ], + [ + -73.450332, + 45.567764 + ], + [ + -73.450333, + 45.567759 + ], + [ + -73.450334, + 45.567755 + ], + [ + -73.450334, + 45.56775 + ], + [ + -73.450335, + 45.567746 + ], + [ + -73.450336, + 45.567741 + ], + [ + -73.450336, + 45.567737 + ], + [ + -73.450337, + 45.567732 + ], + [ + -73.450337, + 45.567728 + ], + [ + -73.450338, + 45.567723 + ], + [ + -73.450339, + 45.567719 + ], + [ + -73.450339, + 45.567714 + ], + [ + -73.45034, + 45.56771 + ], + [ + -73.45034, + 45.567705 + ], + [ + -73.450341, + 45.567701 + ], + [ + -73.450342, + 45.567696 + ], + [ + -73.450342, + 45.567692 + ], + [ + -73.450343, + 45.567687 + ], + [ + -73.450343, + 45.567683 + ], + [ + -73.450344, + 45.567678 + ], + [ + -73.450345, + 45.567674 + ], + [ + -73.450345, + 45.567669 + ], + [ + -73.450346, + 45.567665 + ], + [ + -73.450346, + 45.56766 + ], + [ + -73.450347, + 45.567656 + ], + [ + -73.450347, + 45.567651 + ], + [ + -73.450348, + 45.567647 + ], + [ + -73.450348, + 45.567642 + ], + [ + -73.450349, + 45.567638 + ], + [ + -73.450349, + 45.567633 + ], + [ + -73.45035, + 45.567629 + ], + [ + -73.45035, + 45.567624 + ], + [ + -73.450351, + 45.56762 + ], + [ + -73.450351, + 45.567615 + ], + [ + -73.450352, + 45.567611 + ], + [ + -73.450352, + 45.567606 + ], + [ + -73.450353, + 45.567602 + ], + [ + -73.450353, + 45.567597 + ], + [ + -73.450353, + 45.567593 + ], + [ + -73.450354, + 45.567588 + ], + [ + -73.450355, + 45.567584 + ], + [ + -73.450355, + 45.567579 + ], + [ + -73.450355, + 45.567575 + ], + [ + -73.450356, + 45.56757 + ], + [ + -73.450356, + 45.567566 + ], + [ + -73.450357, + 45.567561 + ], + [ + -73.450357, + 45.567557 + ], + [ + -73.450357, + 45.567552 + ], + [ + -73.45036, + 45.567548 + ], + [ + -73.450434, + 45.565568 + ], + [ + -73.450469, + 45.564632 + ], + [ + -73.450501, + 45.563818 + ], + [ + -73.450514, + 45.563467 + ], + [ + -73.450546, + 45.562441 + ], + [ + -73.450644, + 45.562216 + ], + [ + -73.450694, + 45.562131 + ], + [ + -73.450783, + 45.562045 + ], + [ + -73.450893, + 45.561982 + ], + [ + -73.451026, + 45.561928 + ], + [ + -73.451225, + 45.561875 + ], + [ + -73.453525, + 45.561813 + ], + [ + -73.454569, + 45.561789 + ], + [ + -73.455653, + 45.561764 + ], + [ + -73.459012, + 45.561684 + ], + [ + -73.459275, + 45.561684 + ], + [ + -73.460731, + 45.561644 + ], + [ + -73.461679, + 45.561618 + ], + [ + -73.461849, + 45.561685 + ], + [ + -73.461894, + 45.561703 + ], + [ + -73.461935, + 45.561735 + ], + [ + -73.46197, + 45.561762 + ], + [ + -73.46208, + 45.56187 + ], + [ + -73.462094, + 45.562248 + ], + [ + -73.462108, + 45.562302 + ], + [ + -73.462138, + 45.562369 + ], + [ + -73.462191, + 45.562437 + ], + [ + -73.462324, + 45.56254 + ], + [ + -73.463775, + 45.563638 + ], + [ + -73.468142, + 45.567019 + ], + [ + -73.471116, + 45.569318 + ], + [ + -73.473129, + 45.570862 + ], + [ + -73.473953, + 45.571492 + ], + [ + -73.474759, + 45.572109 + ], + [ + -73.475992, + 45.573049 + ], + [ + -73.476026, + 45.573085 + ], + [ + -73.477034, + 45.573852 + ], + [ + -73.47886, + 45.575219 + ], + [ + -73.479129, + 45.57542 + ], + [ + -73.47919, + 45.575474 + ], + [ + -73.479274, + 45.575534 + ], + [ + -73.47941, + 45.575433 + ], + [ + -73.479496, + 45.575361 + ], + [ + -73.479622, + 45.575253 + ], + [ + -73.4798, + 45.575097 + ], + [ + -73.479996, + 45.574941 + ], + [ + -73.480237, + 45.574738 + ], + [ + -73.480453, + 45.574551 + ], + [ + -73.480801, + 45.574263 + ], + [ + -73.481358, + 45.573789 + ], + [ + -73.481529, + 45.573644 + ], + [ + -73.481972, + 45.573269 + ], + [ + -73.482204, + 45.573068 + ], + [ + -73.482412, + 45.572903 + ], + [ + -73.482823, + 45.572557 + ], + [ + -73.482916, + 45.572476 + ], + [ + -73.482986, + 45.57241 + ], + [ + -73.483315, + 45.572122 + ], + [ + -73.483678, + 45.571813 + ], + [ + -73.483843, + 45.57167 + ], + [ + -73.484123, + 45.57144 + ], + [ + -73.484526, + 45.571099 + ], + [ + -73.484935, + 45.570755 + ], + [ + -73.484967, + 45.570727 + ], + [ + -73.485483, + 45.570269 + ], + [ + -73.485867, + 45.569908 + ], + [ + -73.485994, + 45.569784 + ], + [ + -73.486085, + 45.569691 + ], + [ + -73.486421, + 45.569373 + ], + [ + -73.487037, + 45.568739 + ], + [ + -73.487188, + 45.568584 + ], + [ + -73.487556, + 45.568196 + ], + [ + -73.487608, + 45.568138 + ], + [ + -73.488016, + 45.567684 + ], + [ + -73.488394, + 45.567236 + ], + [ + -73.488926, + 45.566606 + ], + [ + -73.489299, + 45.566117 + ], + [ + -73.489627, + 45.565684 + ], + [ + -73.489917, + 45.565286 + ], + [ + -73.490075, + 45.56507 + ], + [ + -73.490593, + 45.5643 + ], + [ + -73.491532, + 45.562873 + ], + [ + -73.491593, + 45.562778 + ], + [ + -73.4917, + 45.562606 + ], + [ + -73.491908, + 45.562298 + ], + [ + -73.49207, + 45.56203 + ], + [ + -73.492185, + 45.561871 + ], + [ + -73.492369, + 45.561588 + ], + [ + -73.492391, + 45.561555 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498677, + 45.553944 + ], + [ + -73.498726, + 45.553872 + ], + [ + -73.498813, + 45.553714 + ], + [ + -73.498895, + 45.553562 + ], + [ + -73.49895, + 45.553404 + ], + [ + -73.498964, + 45.55335 + ], + [ + -73.498988, + 45.55326 + ], + [ + -73.499026, + 45.553035 + ], + [ + -73.499051, + 45.55281 + ], + [ + -73.49911, + 45.552261 + ], + [ + -73.499127, + 45.552095 + ], + [ + -73.499199, + 45.551371 + ], + [ + -73.49924, + 45.551092 + ], + [ + -73.499284, + 45.550946 + ], + [ + -73.499366, + 45.550811 + ], + [ + -73.499487, + 45.550651 + ], + [ + -73.499747, + 45.550322 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.500107, + 45.550074 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.503657, + 45.547898 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.50801, + 45.54334 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519479, + 45.531846 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519522, + 45.531915 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.518817, + 45.531415 + ], + [ + -73.518763, + 45.531374 + ], + [ + -73.518709, + 45.531325 + ], + [ + -73.518655, + 45.531271 + ], + [ + -73.518619, + 45.531213 + ], + [ + -73.518601, + 45.531154 + ], + [ + -73.518588, + 45.531096 + ], + [ + -73.518588, + 45.531055 + ], + [ + -73.518597, + 45.531006 + ], + [ + -73.518619, + 45.530952 + ], + [ + -73.518659, + 45.530884 + ], + [ + -73.518691, + 45.530826 + ], + [ + -73.518718, + 45.530785 + ], + [ + -73.518753, + 45.530731 + ], + [ + -73.518803, + 45.530646 + ], + [ + -73.518839, + 45.530596 + ], + [ + -73.518875, + 45.530547 + ], + [ + -73.518897, + 45.530497 + ], + [ + -73.518915, + 45.530448 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519784, + 45.523381 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522466, + 45.524143 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 77, + "properties": { + "id": "2bd282ac-9dd9-461e-876f-7be0b7415cb9", + "data": { + "gtfs": { + "shape_id": "25_2_A" + }, + "segments": [ + { + "distanceMeters": 15021, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 3120, + "travelTimeSeconds": 71 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 18140, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 537.8312017370496, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 151.16, + "travelTimeWithoutDwellTimesSeconds": 120, + "operatingTimeWithLayoverTimeSeconds": 300, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 120, + "operatingSpeedWithLayoverMetersPerSecond": 60.47, + "averageSpeedWithoutDwellTimesMetersPerSecond": 151.16 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "a913c5ce-8de0-458e-a9ee-4ae555d41e98", + "a4120eb1-d1f9-43e5-8720-90115641165b", + "0681e3d4-c5fd-4f85-982e-d5d26960784a" + ], + "stops": [], + "line_id": "3dd0da2d-881a-4bb0-bf0c-519de288b81a", + "segments": [ + 0, + 519 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 77, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519057, + 45.525166 + ], + [ + -73.518828, + 45.525169 + ], + [ + -73.518662, + 45.525195 + ], + [ + -73.518477, + 45.525222 + ], + [ + -73.51841, + 45.525229 + ], + [ + -73.518309, + 45.525233 + ], + [ + -73.518165, + 45.525238 + ], + [ + -73.517846, + 45.525224 + ], + [ + -73.516858, + 45.525188 + ], + [ + -73.516329, + 45.525185 + ], + [ + -73.51586, + 45.52522 + ], + [ + -73.515879, + 45.525306 + ], + [ + -73.515954, + 45.525625 + ], + [ + -73.515993, + 45.52576 + ], + [ + -73.516108, + 45.52615 + ], + [ + -73.51612, + 45.526192 + ], + [ + -73.516245, + 45.52653 + ], + [ + -73.516302, + 45.526687 + ], + [ + -73.516434, + 45.526894 + ], + [ + -73.517006, + 45.527735 + ], + [ + -73.517118, + 45.52798 + ], + [ + -73.51723, + 45.528227 + ], + [ + -73.517263, + 45.528301 + ], + [ + -73.517272, + 45.52832 + ], + [ + -73.517504, + 45.528922 + ], + [ + -73.517577, + 45.529094 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.517456, + 45.531762 + ], + [ + -73.516885, + 45.532291 + ], + [ + -73.51664, + 45.532518 + ], + [ + -73.515885, + 45.533161 + ], + [ + -73.515753, + 45.533238 + ], + [ + -73.515672, + 45.533321 + ], + [ + -73.515318, + 45.533719 + ], + [ + -73.515257, + 45.533788 + ], + [ + -73.515202, + 45.533848 + ], + [ + -73.514831, + 45.534265 + ], + [ + -73.514791, + 45.534311 + ], + [ + -73.514731, + 45.534379 + ], + [ + -73.514684, + 45.534434 + ], + [ + -73.51432, + 45.534799 + ], + [ + -73.513992, + 45.535131 + ], + [ + -73.513904, + 45.53522 + ], + [ + -73.513681, + 45.535468 + ], + [ + -73.51342, + 45.535713 + ], + [ + -73.513155, + 45.535985 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.511223, + 45.537344 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.50962, + 45.538704 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.508029, + 45.540693 + ], + [ + -73.508021, + 45.540689 + ], + [ + -73.507516, + 45.540484 + ], + [ + -73.507102, + 45.540316 + ], + [ + -73.506536, + 45.540077 + ], + [ + -73.505445, + 45.539634 + ], + [ + -73.504975, + 45.539443 + ], + [ + -73.50484, + 45.539375 + ], + [ + -73.504659, + 45.53925 + ], + [ + -73.504204, + 45.538858 + ], + [ + -73.50401, + 45.538714 + ], + [ + -73.503972, + 45.538693 + ], + [ + -73.503897, + 45.538651 + ], + [ + -73.5035, + 45.538476 + ], + [ + -73.502143, + 45.537905 + ], + [ + -73.501222, + 45.537517 + ], + [ + -73.499672, + 45.536865 + ], + [ + -73.499534, + 45.536807 + ], + [ + -73.498456, + 45.536361 + ], + [ + -73.497345, + 45.53588 + ], + [ + -73.496932, + 45.535682 + ], + [ + -73.496814, + 45.535632 + ], + [ + -73.496497, + 45.535505 + ], + [ + -73.495741, + 45.5352 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.494397, + 45.534676 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.492605, + 45.533937 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.491081, + 45.533305 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.488555, + 45.53227 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.485465, + 45.530985 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.481692, + 45.529414 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.48089, + 45.529066 + ], + [ + -73.480753, + 45.529011 + ], + [ + -73.480164, + 45.528774 + ], + [ + -73.479454, + 45.528472 + ], + [ + -73.478785, + 45.528194 + ], + [ + -73.478598, + 45.528117 + ], + [ + -73.477725, + 45.527748 + ], + [ + -73.476969, + 45.527428 + ], + [ + -73.476219, + 45.527117 + ], + [ + -73.476032, + 45.52704 + ], + [ + -73.475894, + 45.526982 + ], + [ + -73.475467, + 45.526811 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.474212, + 45.526282 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.47271, + 45.525659 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.471997, + 45.525357 + ], + [ + -73.471094, + 45.524979 + ], + [ + -73.470555, + 45.524749 + ], + [ + -73.470239, + 45.524623 + ], + [ + -73.469721, + 45.524403 + ], + [ + -73.469562, + 45.524338 + ], + [ + -73.469522, + 45.524322 + ], + [ + -73.468866, + 45.524038 + ], + [ + -73.468141, + 45.523743 + ], + [ + -73.468048, + 45.523705 + ], + [ + -73.467237, + 45.523363 + ], + [ + -73.466276, + 45.522967 + ], + [ + -73.466082, + 45.522841 + ], + [ + -73.465634, + 45.52266 + ], + [ + -73.465479, + 45.522594 + ], + [ + -73.464874, + 45.522336 + ], + [ + -73.464576, + 45.522215 + ], + [ + -73.464439, + 45.522143 + ], + [ + -73.464336, + 45.522093 + ], + [ + -73.464186, + 45.522017 + ], + [ + -73.463952, + 45.52192 + ], + [ + -73.463574, + 45.521763 + ], + [ + -73.463125, + 45.521577 + ], + [ + -73.462859, + 45.521467 + ], + [ + -73.46256, + 45.521341 + ], + [ + -73.460701, + 45.520558 + ], + [ + -73.460592, + 45.520513 + ], + [ + -73.460391, + 45.520427 + ], + [ + -73.460276, + 45.520379 + ], + [ + -73.458651, + 45.519707 + ], + [ + -73.457431, + 45.519186 + ], + [ + -73.457332, + 45.519144 + ], + [ + -73.457212, + 45.51909 + ], + [ + -73.456379, + 45.518756 + ], + [ + -73.455695, + 45.518468 + ], + [ + -73.454296, + 45.517868 + ], + [ + -73.454164, + 45.517811 + ], + [ + -73.453487, + 45.51753 + ], + [ + -73.452741, + 45.51722 + ], + [ + -73.452666, + 45.517189 + ], + [ + -73.452271, + 45.517027 + ], + [ + -73.452136, + 45.516973 + ], + [ + -73.452066, + 45.516942 + ], + [ + -73.450061, + 45.51612 + ], + [ + -73.450032, + 45.516108 + ], + [ + -73.448668, + 45.515529 + ], + [ + -73.448601, + 45.5155 + ], + [ + -73.445026, + 45.513997 + ], + [ + -73.444787, + 45.513896 + ], + [ + -73.443398, + 45.513312 + ], + [ + -73.443129, + 45.513199 + ], + [ + -73.440479, + 45.512077 + ], + [ + -73.440324, + 45.51201 + ], + [ + -73.440007, + 45.511874 + ], + [ + -73.439905, + 45.511834 + ], + [ + -73.439831, + 45.511802 + ], + [ + -73.439067, + 45.511482 + ], + [ + -73.438299, + 45.511131 + ], + [ + -73.438017, + 45.511 + ], + [ + -73.437245, + 45.510635 + ], + [ + -73.435988, + 45.510081 + ], + [ + -73.435895, + 45.510041 + ], + [ + -73.435854, + 45.510023 + ], + [ + -73.435758, + 45.510131 + ], + [ + -73.435507, + 45.510414 + ], + [ + -73.4355, + 45.510423 + ], + [ + -73.435493, + 45.510432 + ], + [ + -73.435487, + 45.510437 + ], + [ + -73.435479, + 45.510446 + ], + [ + -73.435472, + 45.510455 + ], + [ + -73.435465, + 45.510459 + ], + [ + -73.435457, + 45.510468 + ], + [ + -73.43545, + 45.510477 + ], + [ + -73.435442, + 45.510481 + ], + [ + -73.435434, + 45.51049 + ], + [ + -73.435426, + 45.510495 + ], + [ + -73.435418, + 45.510504 + ], + [ + -73.43541, + 45.510513 + ], + [ + -73.435402, + 45.510517 + ], + [ + -73.435394, + 45.510526 + ], + [ + -73.435386, + 45.510531 + ], + [ + -73.43538, + 45.510537 + ], + [ + -73.435377, + 45.51054 + ], + [ + -73.435369, + 45.510544 + ], + [ + -73.43536, + 45.510553 + ], + [ + -73.435352, + 45.510558 + ], + [ + -73.435343, + 45.510567 + ], + [ + -73.435334, + 45.510571 + ], + [ + -73.435325, + 45.510576 + ], + [ + -73.435316, + 45.510585 + ], + [ + -73.435306, + 45.510589 + ], + [ + -73.435297, + 45.510598 + ], + [ + -73.435288, + 45.510603 + ], + [ + -73.435278, + 45.510607 + ], + [ + -73.435269, + 45.510616 + ], + [ + -73.43526, + 45.510621 + ], + [ + -73.43525, + 45.510625 + ], + [ + -73.43524, + 45.510634 + ], + [ + -73.43523, + 45.510639 + ], + [ + -73.43522, + 45.510643 + ], + [ + -73.43521, + 45.510648 + ], + [ + -73.435201, + 45.510657 + ], + [ + -73.43518, + 45.510666 + ], + [ + -73.43517, + 45.51067 + ], + [ + -73.435159, + 45.510679 + ], + [ + -73.435149, + 45.510684 + ], + [ + -73.435139, + 45.510688 + ], + [ + -73.435128, + 45.510693 + ], + [ + -73.435118, + 45.510697 + ], + [ + -73.435107, + 45.510706 + ], + [ + -73.435097, + 45.510711 + ], + [ + -73.435086, + 45.510715 + ], + [ + -73.435075, + 45.51072 + ], + [ + -73.435065, + 45.510724 + ], + [ + -73.435053, + 45.510729 + ], + [ + -73.435043, + 45.510733 + ], + [ + -73.435032, + 45.510738 + ], + [ + -73.435021, + 45.510742 + ], + [ + -73.435009, + 45.510747 + ], + [ + -73.434998, + 45.510751 + ], + [ + -73.434987, + 45.510756 + ], + [ + -73.434976, + 45.51076 + ], + [ + -73.434964, + 45.510765 + ], + [ + -73.434953, + 45.510769 + ], + [ + -73.434941, + 45.510774 + ], + [ + -73.43493, + 45.510778 + ], + [ + -73.434918, + 45.510778 + ], + [ + -73.434907, + 45.510783 + ], + [ + -73.434895, + 45.510787 + ], + [ + -73.434883, + 45.510792 + ], + [ + -73.434871, + 45.510796 + ], + [ + -73.43486, + 45.510796 + ], + [ + -73.434848, + 45.510801 + ], + [ + -73.434836, + 45.510805 + ], + [ + -73.434824, + 45.51081 + ], + [ + -73.434812, + 45.51081 + ], + [ + -73.4348, + 45.510814 + ], + [ + -73.434788, + 45.510819 + ], + [ + -73.434775, + 45.510819 + ], + [ + -73.434763, + 45.510823 + ], + [ + -73.434751, + 45.510823 + ], + [ + -73.434739, + 45.510828 + ], + [ + -73.434727, + 45.510828 + ], + [ + -73.434714, + 45.510832 + ], + [ + -73.434702, + 45.510837 + ], + [ + -73.434689, + 45.510837 + ], + [ + -73.434677, + 45.510841 + ], + [ + -73.434665, + 45.510841 + ], + [ + -73.434652, + 45.510841 + ], + [ + -73.434639, + 45.510845 + ], + [ + -73.434627, + 45.510845 + ], + [ + -73.434615, + 45.51085 + ], + [ + -73.434602, + 45.51085 + ], + [ + -73.434589, + 45.51085 + ], + [ + -73.434577, + 45.510854 + ], + [ + -73.434564, + 45.510854 + ], + [ + -73.434551, + 45.510854 + ], + [ + -73.434539, + 45.510859 + ], + [ + -73.434526, + 45.510859 + ], + [ + -73.434513, + 45.510859 + ], + [ + -73.434501, + 45.510859 + ], + [ + -73.434488, + 45.510859 + ], + [ + -73.434475, + 45.510863 + ], + [ + -73.434462, + 45.510863 + ], + [ + -73.434449, + 45.510863 + ], + [ + -73.434437, + 45.510863 + ], + [ + -73.434424, + 45.510863 + ], + [ + -73.434411, + 45.510863 + ], + [ + -73.433233, + 45.510854 + ], + [ + -73.433213, + 45.510854 + ], + [ + -73.4332, + 45.510854 + ], + [ + -73.433188, + 45.510854 + ], + [ + -73.433175, + 45.510858 + ], + [ + -73.433162, + 45.510858 + ], + [ + -73.43315, + 45.510858 + ], + [ + -73.433137, + 45.510858 + ], + [ + -73.433124, + 45.510858 + ], + [ + -73.433111, + 45.510858 + ], + [ + -73.433098, + 45.510863 + ], + [ + -73.433086, + 45.510863 + ], + [ + -73.433073, + 45.510863 + ], + [ + -73.43306, + 45.510863 + ], + [ + -73.43305, + 45.510866 + ], + [ + -73.433048, + 45.510867 + ], + [ + -73.433035, + 45.510867 + ], + [ + -73.433022, + 45.510867 + ], + [ + -73.43301, + 45.510872 + ], + [ + -73.432997, + 45.510872 + ], + [ + -73.432985, + 45.510872 + ], + [ + -73.432971, + 45.510876 + ], + [ + -73.432878, + 45.510894 + ], + [ + -73.432865, + 45.510898 + ], + [ + -73.432853, + 45.510898 + ], + [ + -73.432841, + 45.510903 + ], + [ + -73.432828, + 45.510903 + ], + [ + -73.432816, + 45.510907 + ], + [ + -73.432804, + 45.510912 + ], + [ + -73.432792, + 45.510912 + ], + [ + -73.43278, + 45.510916 + ], + [ + -73.432768, + 45.510921 + ], + [ + -73.432756, + 45.510921 + ], + [ + -73.432744, + 45.510925 + ], + [ + -73.432732, + 45.51093 + ], + [ + -73.43272, + 45.51093 + ], + [ + -73.432708, + 45.510934 + ], + [ + -73.432696, + 45.510939 + ], + [ + -73.432684, + 45.510943 + ], + [ + -73.432672, + 45.510943 + ], + [ + -73.43266, + 45.510948 + ], + [ + -73.432649, + 45.510952 + ], + [ + -73.432637, + 45.510957 + ], + [ + -73.432626, + 45.510961 + ], + [ + -73.432614, + 45.510961 + ], + [ + -73.432602, + 45.510966 + ], + [ + -73.432591, + 45.51097 + ], + [ + -73.432579, + 45.510975 + ], + [ + -73.432568, + 45.510979 + ], + [ + -73.432556, + 45.510984 + ], + [ + -73.432545, + 45.510988 + ], + [ + -73.432534, + 45.510993 + ], + [ + -73.432522, + 45.510997 + ], + [ + -73.432511, + 45.511002 + ], + [ + -73.4325, + 45.511006 + ], + [ + -73.432489, + 45.511011 + ], + [ + -73.432478, + 45.511015 + ], + [ + -73.432467, + 45.51102 + ], + [ + -73.432456, + 45.511024 + ], + [ + -73.432445, + 45.511029 + ], + [ + -73.432434, + 45.511033 + ], + [ + -73.432423, + 45.511038 + ], + [ + -73.432413, + 45.511042 + ], + [ + -73.432402, + 45.511047 + ], + [ + -73.432391, + 45.511051 + ], + [ + -73.432381, + 45.511056 + ], + [ + -73.43237, + 45.511065 + ], + [ + -73.43236, + 45.511069 + ], + [ + -73.432349, + 45.511074 + ], + [ + -73.432339, + 45.511078 + ], + [ + -73.432329, + 45.511083 + ], + [ + -73.432319, + 45.511087 + ], + [ + -73.432309, + 45.511096 + ], + [ + -73.432299, + 45.511101 + ], + [ + -73.432288, + 45.511105 + ], + [ + -73.432279, + 45.51111 + ], + [ + -73.432269, + 45.511119 + ], + [ + -73.432259, + 45.511123 + ], + [ + -73.432249, + 45.511128 + ], + [ + -73.432239, + 45.511132 + ], + [ + -73.432229, + 45.511141 + ], + [ + -73.43222, + 45.511146 + ], + [ + -73.43221, + 45.51115 + ], + [ + -73.432201, + 45.511159 + ], + [ + -73.432191, + 45.511163 + ], + [ + -73.432182, + 45.511172 + ], + [ + -73.432172, + 45.511177 + ], + [ + -73.432163, + 45.511181 + ], + [ + -73.432154, + 45.51119 + ], + [ + -73.432145, + 45.511195 + ], + [ + -73.432136, + 45.511199 + ], + [ + -73.432127, + 45.511208 + ], + [ + -73.432118, + 45.511213 + ], + [ + -73.432109, + 45.511222 + ], + [ + -73.4321, + 45.511226 + ], + [ + -73.432092, + 45.511235 + ], + [ + -73.432083, + 45.51124 + ], + [ + -73.432075, + 45.511249 + ], + [ + -73.432066, + 45.511253 + ], + [ + -73.432058, + 45.511262 + ], + [ + -73.43205, + 45.511267 + ], + [ + -73.432042, + 45.511276 + ], + [ + -73.432034, + 45.51128 + ], + [ + -73.432026, + 45.511289 + ], + [ + -73.432018, + 45.511294 + ], + [ + -73.43201, + 45.511303 + ], + [ + -73.432002, + 45.511312 + ], + [ + -73.431994, + 45.511316 + ], + [ + -73.431987, + 45.511325 + ], + [ + -73.431979, + 45.51133 + ], + [ + -73.431972, + 45.511339 + ], + [ + -73.431964, + 45.511348 + ], + [ + -73.431957, + 45.511352 + ], + [ + -73.431949, + 45.511361 + ], + [ + -73.431943, + 45.51137 + ], + [ + -73.431935, + 45.511375 + ], + [ + -73.431929, + 45.511384 + ], + [ + -73.431921, + 45.511393 + ], + [ + -73.431915, + 45.511397 + ], + [ + -73.431908, + 45.511406 + ], + [ + -73.431901, + 45.511415 + ], + [ + -73.431895, + 45.511424 + ], + [ + -73.431888, + 45.511429 + ], + [ + -73.431881, + 45.511438 + ], + [ + -73.431875, + 45.511447 + ], + [ + -73.431868, + 45.511451 + ], + [ + -73.431862, + 45.51146 + ], + [ + -73.431854, + 45.511469 + ], + [ + -73.431842, + 45.511483 + ], + [ + -73.431836, + 45.511492 + ], + [ + -73.431831, + 45.511501 + ], + [ + -73.431825, + 45.51151 + ], + [ + -73.431819, + 45.511519 + ], + [ + -73.431813, + 45.511523 + ], + [ + -73.431808, + 45.511532 + ], + [ + -73.431803, + 45.511541 + ], + [ + -73.431797, + 45.51155 + ], + [ + -73.431792, + 45.511559 + ], + [ + -73.431787, + 45.511564 + ], + [ + -73.431782, + 45.511573 + ], + [ + -73.431777, + 45.511582 + ], + [ + -73.431772, + 45.511591 + ], + [ + -73.431768, + 45.5116 + ], + [ + -73.431763, + 45.511609 + ], + [ + -73.431759, + 45.511618 + ], + [ + -73.431754, + 45.511627 + ], + [ + -73.43175, + 45.511631 + ], + [ + -73.431746, + 45.51164 + ], + [ + -73.431742, + 45.511649 + ], + [ + -73.431738, + 45.511658 + ], + [ + -73.431734, + 45.511667 + ], + [ + -73.43173, + 45.511676 + ], + [ + -73.431726, + 45.511685 + ], + [ + -73.431723, + 45.511694 + ], + [ + -73.431719, + 45.511703 + ], + [ + -73.431716, + 45.511712 + ], + [ + -73.431712, + 45.511721 + ], + [ + -73.431709, + 45.511726 + ], + [ + -73.431706, + 45.511735 + ], + [ + -73.431703, + 45.511744 + ], + [ + -73.4317, + 45.511753 + ], + [ + -73.431697, + 45.511762 + ], + [ + -73.431695, + 45.511771 + ], + [ + -73.431692, + 45.51178 + ], + [ + -73.431689, + 45.511789 + ], + [ + -73.431687, + 45.511798 + ], + [ + -73.431685, + 45.511807 + ], + [ + -73.431683, + 45.511816 + ], + [ + -73.431665, + 45.511901 + ], + [ + -73.431544, + 45.512161 + ], + [ + -73.431398, + 45.512474 + ], + [ + -73.430968, + 45.513394 + ], + [ + -73.430964, + 45.513405 + ], + [ + -73.430859, + 45.51368 + ], + [ + -73.430789, + 45.513841 + ], + [ + -73.430568, + 45.51435 + ], + [ + -73.429532, + 45.516417 + ], + [ + -73.429446, + 45.516583 + ], + [ + -73.429331, + 45.516814 + ], + [ + -73.429076, + 45.517326 + ], + [ + -73.428778, + 45.517897 + ], + [ + -73.428741, + 45.517969 + ], + [ + -73.428677, + 45.518077 + ], + [ + -73.428609, + 45.51821 + ], + [ + -73.42817, + 45.519067 + ], + [ + -73.427999, + 45.519399 + ], + [ + -73.427981, + 45.519435 + ], + [ + -73.427427, + 45.520538 + ], + [ + -73.4271, + 45.521187 + ], + [ + -73.426988, + 45.521409 + ], + [ + -73.426937, + 45.521513 + ], + [ + -73.426864, + 45.521657 + ], + [ + -73.426582, + 45.522215 + ], + [ + -73.426259, + 45.522854 + ], + [ + -73.4262, + 45.52297 + ], + [ + -73.426172, + 45.523031 + ], + [ + -73.426142, + 45.523096 + ], + [ + -73.425801, + 45.523748 + ], + [ + -73.425675, + 45.523928 + ], + [ + -73.425562, + 45.524081 + ], + [ + -73.425537, + 45.524109 + ], + [ + -73.425414, + 45.524243 + ], + [ + -73.424925, + 45.524616 + ], + [ + -73.423418, + 45.525708 + ], + [ + -73.423238, + 45.52583 + ], + [ + -73.423172, + 45.525884 + ], + [ + -73.422826, + 45.526068 + ], + [ + -73.42265, + 45.526009 + ], + [ + -73.422416, + 45.525951 + ], + [ + -73.422264, + 45.525874 + ], + [ + -73.422144, + 45.525784 + ], + [ + -73.419695, + 45.523915 + ], + [ + -73.41965, + 45.523903 + ], + [ + -73.419509, + 45.523866 + ], + [ + -73.419456, + 45.523861 + ], + [ + -73.419403, + 45.523865 + ], + [ + -73.419351, + 45.523865 + ], + [ + -73.419315, + 45.52387 + ], + [ + -73.419103, + 45.523933 + ], + [ + -73.419059, + 45.523946 + ], + [ + -73.418952, + 45.524009 + ], + [ + -73.416902, + 45.525767 + ], + [ + -73.416911, + 45.525773 + ], + [ + -73.417416, + 45.526158 + ], + [ + -73.418423, + 45.526924 + ], + [ + -73.418708, + 45.527143 + ], + [ + -73.418798, + 45.527212 + ], + [ + -73.418328, + 45.527239 + ], + [ + -73.4181, + 45.527253 + ], + [ + -73.417889, + 45.527266 + ], + [ + -73.417233, + 45.527306 + ], + [ + -73.416471, + 45.527368 + ], + [ + -73.416113, + 45.527413 + ], + [ + -73.415864, + 45.527462 + ], + [ + -73.415791, + 45.527476 + ], + [ + -73.415623, + 45.527507 + ], + [ + -73.415341, + 45.527583 + ], + [ + -73.414947, + 45.527714 + ], + [ + -73.414433, + 45.527907 + ], + [ + -73.414317, + 45.52797 + ], + [ + -73.414095, + 45.528122 + ], + [ + -73.413981, + 45.528206 + ], + [ + -73.413829, + 45.528316 + ], + [ + -73.413427, + 45.528639 + ], + [ + -73.412935, + 45.529071 + ], + [ + -73.41228, + 45.529682 + ], + [ + -73.411928, + 45.530019 + ], + [ + -73.41126, + 45.530705 + ], + [ + -73.411161, + 45.530806 + ], + [ + -73.410191, + 45.531944 + ], + [ + -73.40972, + 45.532479 + ], + [ + -73.409422, + 45.53282 + ], + [ + -73.407976, + 45.534494 + ], + [ + -73.40783, + 45.534664 + ], + [ + -73.407306, + 45.534276 + ], + [ + -73.403296, + 45.531178 + ], + [ + -73.402755, + 45.530772 + ], + [ + -73.402547, + 45.530579 + ], + [ + -73.402372, + 45.530398 + ], + [ + -73.402191, + 45.530164 + ], + [ + -73.402009, + 45.529831 + ], + [ + -73.40188, + 45.529593 + ], + [ + -73.401787, + 45.529467 + ], + [ + -73.401662, + 45.529296 + ], + [ + -73.401534, + 45.529165 + ], + [ + -73.401344, + 45.52898 + ], + [ + -73.398838, + 45.527039 + ], + [ + -73.396808, + 45.525476 + ], + [ + -73.396516, + 45.525251 + ], + [ + -73.39603, + 45.524872 + ], + [ + -73.395926, + 45.524796 + ], + [ + -73.395913, + 45.524787 + ], + [ + -73.395487, + 45.524422 + ], + [ + -73.395062, + 45.524093 + ], + [ + -73.393689, + 45.523044 + ], + [ + -73.392528, + 45.522188 + ], + [ + -73.392608, + 45.522129 + ], + [ + -73.392765, + 45.522062 + ], + [ + -73.392857, + 45.522019 + ], + [ + -73.392947, + 45.521977 + ], + [ + -73.393247, + 45.521891 + ], + [ + -73.393516, + 45.521869 + ], + [ + -73.393778, + 45.521869 + ], + [ + -73.39387, + 45.521885 + ], + [ + -73.394218, + 45.521942 + ], + [ + -73.394476, + 45.522045 + ], + [ + -73.394652, + 45.522154 + ], + [ + -73.394747, + 45.522217 + ], + [ + -73.394826, + 45.522289 + ], + [ + -73.396251, + 45.521368 + ], + [ + -73.397218, + 45.52073 + ], + [ + -73.397969, + 45.520235 + ], + [ + -73.399127, + 45.519472 + ], + [ + -73.400623, + 45.518491 + ], + [ + -73.400643, + 45.518479 + ], + [ + -73.400681, + 45.518454 + ], + [ + -73.401985, + 45.517616 + ], + [ + -73.402852, + 45.517042 + ], + [ + -73.402988, + 45.516952 + ], + [ + -73.403934, + 45.516317 + ], + [ + -73.40525, + 45.515455 + ], + [ + -73.405458, + 45.515319 + ], + [ + -73.406805, + 45.514436 + ], + [ + -73.408069, + 45.513608 + ], + [ + -73.408317, + 45.513441 + ], + [ + -73.408576, + 45.513275 + ] + ] + }, + "id": 78, + "properties": { + "id": "6e9b65f8-8524-4d67-b9f7-d38deda045a3", + "data": { + "gtfs": { + "shape_id": "28_1_R" + }, + "segments": [ + { + "distanceMeters": 1052, + "travelTimeSeconds": 182 + }, + { + "distanceMeters": 483, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 392, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 331, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 481, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 347, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 400, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 653, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 493, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 1973, + "travelTimeSeconds": 223 + }, + { + "distanceMeters": 708, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 22 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 252, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17135, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8860.319167895477, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.8, + "travelTimeWithoutDwellTimesSeconds": 2520, + "operatingTimeWithLayoverTimeSeconds": 2772, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2520, + "operatingSpeedWithLayoverMetersPerSecond": 6.18, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.8 + }, + "mode": "bus", + "name": "Aéroport St-Hubert", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "b19be6c8-c333-401a-98e4-d16876257831", + "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "d00d9138-966b-4522-be1d-8c665c71246b", + "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", + "48ea0d06-7b69-4895-b55b-2a18e6e6f906", + "21e2e89a-3df0-4ff7-aa64-17a07fbd660e", + "0b419003-a369-45de-8ce5-7da6890d7f0a", + "680dba5d-14fa-4f77-98bd-f3a49fec7b48", + "f45a38ac-0f3f-41d9-9da1-be7902cc983a", + "9cf81604-6d70-4ba8-a3fc-521104742058", + "28f2fe65-961c-4550-a722-1e7790fe94ad", + "9d0a7ab6-be66-4ca9-b863-8712d8cd028c", + "999ed130-7d99-4115-ac3c-cabba7731288", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "27c5df15-201f-4855-9f49-556fd659fd8e", + "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", + "aa7795c0-dd5c-4462-b672-459c92223af2", + "49918c5a-8414-49fd-abf9-87ae6b9f3976", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "011d1f54-164c-4564-a051-bdacad3e287d", + "c3a2368c-bf2d-4c72-9adb-41ee799004b3", + "6885c351-726d-4431-84b5-d9262699183f", + "4e3112b5-abc7-4db5-a6a8-19b4193263c2", + "a5ca0f69-bb6f-4ef0-aaaa-1498b5ff9d00", + "ca3fc9fc-e2eb-41c4-a8d2-0ad2d2109db1", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "d3991811-d92b-4ba2-9732-26a74abc49b7", + "a873c2b7-5c8e-4dd4-9140-a7e8d042d038", + "b8513e69-5eee-478d-b428-8f498c145b40", + "344c16fc-7161-4015-9999-e3e0f325dd1e", + "abd431b8-dcf2-4c7a-a458-732690905187", + "dcaa1460-3c81-4616-b65b-ed7fae894032", + "a3922a48-9f26-4845-9881-2b33d59d0127", + "0f06220e-c086-4a85-9d80-5c4d5410f93e", + "789f4442-496b-49a8-9269-68c86839ee71", + "4d0b0e5c-93dc-4d99-84e1-62026882c424", + "5fca388e-eb04-4453-a322-bc37f3153a8f", + "feb4de14-0e62-4e9e-a6c1-ea3c1270d98e", + "3abeeed6-00fe-4697-9dbf-87d5c2515aac", + "23054239-a5b5-43b6-a4dd-70fd7b62e6fb", + "945bff31-775d-46d3-8e37-f61285a9e40d", + "e508c7cf-026b-4bcf-8135-74c7544363a5", + "ed42da21-6b05-4077-96ea-1a113eaf4850", + "14f0cd5d-3ba1-4c3a-96f5-43862d47ec96", + "94a06ef0-fab6-48d9-b546-63c0a5523117", + "96dc38f6-44d4-438d-b986-07c908b99f23", + "d488b16d-4bf0-4526-8c06-e8192c180e3b", + "a208dd9e-53a1-4deb-bed5-724b8b3ed912", + "aef95744-a773-4cb5-9474-7425de00e382", + "84766cb6-ab9a-4256-a341-0b084c084dbb", + "7b3cddda-c6ba-4d35-a936-01ff21d1501b", + "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", + "4012bfc4-334d-4b7d-9898-4cfd802d0479", + "784dd9cc-281a-47d9-8014-a2e6add384f6", + "3ce1139e-888c-4783-a57f-da50952eee26", + "90f9f389-96b4-444b-8d1b-774cf89df3c1" + ], + "stops": [], + "line_id": "87d9ede3-8a3c-4f40-b8d3-fade3320fa27", + "segments": [ + 0, + 42, + 61, + 66, + 74, + 82, + 89, + 99, + 102, + 108, + 113, + 119, + 123, + 126, + 129, + 134, + 137, + 144, + 150, + 155, + 159, + 162, + 169, + 172, + 178, + 185, + 189, + 194, + 199, + 202, + 207, + 209, + 211, + 213, + 216, + 245, + 346, + 504, + 510, + 512, + 518, + 519, + 523, + 527, + 532, + 544, + 554, + 557, + 566, + 573, + 579, + 584, + 615, + 625, + 629, + 632, + 634 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 78, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.408622, + 45.513244 + ], + [ + -73.408576, + 45.513275 + ], + [ + -73.408317, + 45.513441 + ], + [ + -73.408069, + 45.513608 + ], + [ + -73.406656, + 45.514533 + ], + [ + -73.405458, + 45.515319 + ], + [ + -73.405252, + 45.515454 + ], + [ + -73.403934, + 45.516317 + ], + [ + -73.403117, + 45.516866 + ], + [ + -73.402988, + 45.516952 + ], + [ + -73.401985, + 45.517616 + ], + [ + -73.400781, + 45.51839 + ], + [ + -73.400681, + 45.518454 + ], + [ + -73.400643, + 45.518479 + ], + [ + -73.399127, + 45.519472 + ], + [ + -73.397969, + 45.520235 + ], + [ + -73.397218, + 45.52073 + ], + [ + -73.396251, + 45.521368 + ], + [ + -73.394826, + 45.522289 + ], + [ + -73.394198, + 45.522707 + ], + [ + -73.394126, + 45.522755 + ], + [ + -73.393689, + 45.523044 + ], + [ + -73.392528, + 45.522188 + ], + [ + -73.392608, + 45.522129 + ], + [ + -73.392668, + 45.522103 + ], + [ + -73.392765, + 45.522062 + ], + [ + -73.392947, + 45.521977 + ], + [ + -73.393247, + 45.521891 + ], + [ + -73.393516, + 45.521869 + ], + [ + -73.393694, + 45.521869 + ], + [ + -73.393778, + 45.521869 + ], + [ + -73.394218, + 45.521942 + ], + [ + -73.394467, + 45.522042 + ], + [ + -73.394476, + 45.522045 + ], + [ + -73.394652, + 45.522154 + ], + [ + -73.394747, + 45.522217 + ], + [ + -73.394826, + 45.522289 + ], + [ + -73.394198, + 45.522707 + ], + [ + -73.393689, + 45.523044 + ], + [ + -73.393551, + 45.523138 + ], + [ + -73.393547, + 45.523138 + ], + [ + -73.394849, + 45.524138 + ], + [ + -73.395227, + 45.524377 + ], + [ + -73.395913, + 45.524787 + ], + [ + -73.395926, + 45.524796 + ], + [ + -73.39603, + 45.524872 + ], + [ + -73.396516, + 45.525251 + ], + [ + -73.396808, + 45.525476 + ], + [ + -73.398838, + 45.527039 + ], + [ + -73.401344, + 45.52898 + ], + [ + -73.401534, + 45.529165 + ], + [ + -73.401662, + 45.529296 + ], + [ + -73.401787, + 45.529467 + ], + [ + -73.40188, + 45.529593 + ], + [ + -73.402009, + 45.529831 + ], + [ + -73.402191, + 45.530164 + ], + [ + -73.402372, + 45.530398 + ], + [ + -73.402547, + 45.530579 + ], + [ + -73.402755, + 45.530772 + ], + [ + -73.403296, + 45.531178 + ], + [ + -73.407306, + 45.534276 + ], + [ + -73.407661, + 45.534539 + ], + [ + -73.40783, + 45.534664 + ], + [ + -73.407942, + 45.534534 + ], + [ + -73.409422, + 45.53282 + ], + [ + -73.40972, + 45.532479 + ], + [ + -73.410191, + 45.531944 + ], + [ + -73.410879, + 45.531138 + ], + [ + -73.411161, + 45.530806 + ], + [ + -73.411928, + 45.530019 + ], + [ + -73.41228, + 45.529682 + ], + [ + -73.412935, + 45.529071 + ], + [ + -73.413427, + 45.528639 + ], + [ + -73.413829, + 45.528316 + ], + [ + -73.414095, + 45.528122 + ], + [ + -73.414107, + 45.528115 + ], + [ + -73.414317, + 45.52797 + ], + [ + -73.414433, + 45.527907 + ], + [ + -73.414947, + 45.527714 + ], + [ + -73.415341, + 45.527583 + ], + [ + -73.415623, + 45.527507 + ], + [ + -73.415864, + 45.527462 + ], + [ + -73.416113, + 45.527413 + ], + [ + -73.416376, + 45.52738 + ], + [ + -73.416471, + 45.527368 + ], + [ + -73.417233, + 45.527306 + ], + [ + -73.417889, + 45.527266 + ], + [ + -73.418328, + 45.527239 + ], + [ + -73.418647, + 45.527221 + ], + [ + -73.418798, + 45.527212 + ], + [ + -73.418423, + 45.526924 + ], + [ + -73.418108, + 45.526684 + ], + [ + -73.416902, + 45.525767 + ], + [ + -73.4189, + 45.524054 + ], + [ + -73.418952, + 45.524009 + ], + [ + -73.419059, + 45.523946 + ], + [ + -73.419315, + 45.52387 + ], + [ + -73.419351, + 45.523865 + ], + [ + -73.419403, + 45.523865 + ], + [ + -73.419456, + 45.523861 + ], + [ + -73.419509, + 45.523866 + ], + [ + -73.419695, + 45.523915 + ], + [ + -73.419839, + 45.524025 + ], + [ + -73.422144, + 45.525784 + ], + [ + -73.422264, + 45.525874 + ], + [ + -73.422416, + 45.525951 + ], + [ + -73.42265, + 45.526009 + ], + [ + -73.422826, + 45.526068 + ], + [ + -73.422965, + 45.525994 + ], + [ + -73.423172, + 45.525884 + ], + [ + -73.423238, + 45.52583 + ], + [ + -73.423418, + 45.525708 + ], + [ + -73.424925, + 45.524616 + ], + [ + -73.425414, + 45.524243 + ], + [ + -73.425562, + 45.524081 + ], + [ + -73.425603, + 45.524025 + ], + [ + -73.425675, + 45.523928 + ], + [ + -73.425801, + 45.523748 + ], + [ + -73.42609, + 45.523195 + ], + [ + -73.426142, + 45.523096 + ], + [ + -73.4262, + 45.52297 + ], + [ + -73.426259, + 45.522854 + ], + [ + -73.426582, + 45.522215 + ], + [ + -73.426866, + 45.521653 + ], + [ + -73.426937, + 45.521513 + ], + [ + -73.426988, + 45.521409 + ], + [ + -73.4271, + 45.521187 + ], + [ + -73.427475, + 45.520442 + ], + [ + -73.427965, + 45.519467 + ], + [ + -73.427999, + 45.519399 + ], + [ + -73.42817, + 45.519067 + ], + [ + -73.428609, + 45.51821 + ], + [ + -73.428677, + 45.518077 + ], + [ + -73.428741, + 45.517969 + ], + [ + -73.428892, + 45.517677 + ], + [ + -73.429076, + 45.517326 + ], + [ + -73.429373, + 45.516729 + ], + [ + -73.429446, + 45.516583 + ], + [ + -73.429532, + 45.516417 + ], + [ + -73.430568, + 45.51435 + ], + [ + -73.430789, + 45.513841 + ], + [ + -73.430859, + 45.51368 + ], + [ + -73.430933, + 45.513487 + ], + [ + -73.430968, + 45.513394 + ], + [ + -73.431544, + 45.512161 + ], + [ + -73.431665, + 45.511901 + ], + [ + -73.431703, + 45.511825 + ], + [ + -73.43171, + 45.511816 + ], + [ + -73.431715, + 45.511807 + ], + [ + -73.43172, + 45.511798 + ], + [ + -73.431725, + 45.511789 + ], + [ + -73.43173, + 45.51178 + ], + [ + -73.431735, + 45.511771 + ], + [ + -73.43174, + 45.511766 + ], + [ + -73.431745, + 45.511757 + ], + [ + -73.431751, + 45.511748 + ], + [ + -73.431757, + 45.511739 + ], + [ + -73.431762, + 45.51173 + ], + [ + -73.431767, + 45.511726 + ], + [ + -73.431773, + 45.511717 + ], + [ + -73.431779, + 45.511708 + ], + [ + -73.431785, + 45.511699 + ], + [ + -73.431791, + 45.51169 + ], + [ + -73.431797, + 45.511685 + ], + [ + -73.431803, + 45.511676 + ], + [ + -73.431809, + 45.511667 + ], + [ + -73.431815, + 45.511658 + ], + [ + -73.431822, + 45.511654 + ], + [ + -73.431828, + 45.511645 + ], + [ + -73.431834, + 45.511636 + ], + [ + -73.43184, + 45.511627 + ], + [ + -73.431847, + 45.511622 + ], + [ + -73.431854, + 45.511613 + ], + [ + -73.43186, + 45.511604 + ], + [ + -73.431867, + 45.5116 + ], + [ + -73.431874, + 45.511591 + ], + [ + -73.43188, + 45.511582 + ], + [ + -73.431888, + 45.511577 + ], + [ + -73.431894, + 45.511568 + ], + [ + -73.431902, + 45.511559 + ], + [ + -73.431908, + 45.511555 + ], + [ + -73.431916, + 45.511546 + ], + [ + -73.431923, + 45.511537 + ], + [ + -73.43193, + 45.511532 + ], + [ + -73.431938, + 45.511523 + ], + [ + -73.431945, + 45.511514 + ], + [ + -73.431953, + 45.51151 + ], + [ + -73.431962, + 45.511501 + ], + [ + -73.431969, + 45.511492 + ], + [ + -73.431977, + 45.511487 + ], + [ + -73.431985, + 45.511478 + ], + [ + -73.431993, + 45.511469 + ], + [ + -73.432001, + 45.511465 + ], + [ + -73.432009, + 45.511456 + ], + [ + -73.432017, + 45.511451 + ], + [ + -73.432025, + 45.511442 + ], + [ + -73.432033, + 45.511438 + ], + [ + -73.432042, + 45.511429 + ], + [ + -73.43205, + 45.511424 + ], + [ + -73.432058, + 45.511415 + ], + [ + -73.432067, + 45.511411 + ], + [ + -73.432075, + 45.511402 + ], + [ + -73.432084, + 45.511397 + ], + [ + -73.432092, + 45.511388 + ], + [ + -73.432101, + 45.511384 + ], + [ + -73.43211, + 45.511375 + ], + [ + -73.432118, + 45.51137 + ], + [ + -73.432127, + 45.511361 + ], + [ + -73.432136, + 45.511357 + ], + [ + -73.432145, + 45.511348 + ], + [ + -73.432154, + 45.511343 + ], + [ + -73.432163, + 45.511339 + ], + [ + -73.432172, + 45.51133 + ], + [ + -73.432181, + 45.511325 + ], + [ + -73.43219, + 45.511316 + ], + [ + -73.4322, + 45.511312 + ], + [ + -73.432209, + 45.511307 + ], + [ + -73.432218, + 45.511298 + ], + [ + -73.432228, + 45.511294 + ], + [ + -73.432237, + 45.511285 + ], + [ + -73.432247, + 45.511281 + ], + [ + -73.432256, + 45.511276 + ], + [ + -73.432266, + 45.511267 + ], + [ + -73.432276, + 45.511263 + ], + [ + -73.432285, + 45.511258 + ], + [ + -73.432295, + 45.511254 + ], + [ + -73.432305, + 45.511245 + ], + [ + -73.432315, + 45.51124 + ], + [ + -73.432324, + 45.511236 + ], + [ + -73.432334, + 45.511227 + ], + [ + -73.432344, + 45.511222 + ], + [ + -73.432355, + 45.511218 + ], + [ + -73.432365, + 45.511213 + ], + [ + -73.432375, + 45.511209 + ], + [ + -73.432385, + 45.5112 + ], + [ + -73.432396, + 45.511195 + ], + [ + -73.432406, + 45.511191 + ], + [ + -73.432416, + 45.511186 + ], + [ + -73.432426, + 45.511182 + ], + [ + -73.432437, + 45.511173 + ], + [ + -73.432448, + 45.511168 + ], + [ + -73.432458, + 45.511164 + ], + [ + -73.432469, + 45.511159 + ], + [ + -73.432479, + 45.511155 + ], + [ + -73.43249, + 45.51115 + ], + [ + -73.432501, + 45.511146 + ], + [ + -73.432512, + 45.511141 + ], + [ + -73.432522, + 45.511137 + ], + [ + -73.432533, + 45.511132 + ], + [ + -73.432544, + 45.511128 + ], + [ + -73.432555, + 45.511123 + ], + [ + -73.432566, + 45.511114 + ], + [ + -73.432577, + 45.51111 + ], + [ + -73.432588, + 45.511105 + ], + [ + -73.432599, + 45.511101 + ], + [ + -73.432611, + 45.511096 + ], + [ + -73.432622, + 45.511096 + ], + [ + -73.432633, + 45.511092 + ], + [ + -73.432644, + 45.511087 + ], + [ + -73.432655, + 45.511083 + ], + [ + -73.432667, + 45.511078 + ], + [ + -73.432678, + 45.511074 + ], + [ + -73.43269, + 45.511069 + ], + [ + -73.432701, + 45.511065 + ], + [ + -73.432713, + 45.51106 + ], + [ + -73.432724, + 45.511056 + ], + [ + -73.432736, + 45.511051 + ], + [ + -73.432747, + 45.511051 + ], + [ + -73.432759, + 45.511047 + ], + [ + -73.432771, + 45.511042 + ], + [ + -73.432778, + 45.51104 + ], + [ + -73.432782, + 45.511038 + ], + [ + -73.432794, + 45.511033 + ], + [ + -73.432806, + 45.511033 + ], + [ + -73.432818, + 45.511029 + ], + [ + -73.432829, + 45.511024 + ], + [ + -73.432841, + 45.51102 + ], + [ + -73.432853, + 45.51102 + ], + [ + -73.432865, + 45.511015 + ], + [ + -73.432877, + 45.511011 + ], + [ + -73.432889, + 45.511006 + ], + [ + -73.432901, + 45.511006 + ], + [ + -73.432913, + 45.511002 + ], + [ + -73.433005, + 45.510989 + ], + [ + -73.433027, + 45.510984 + ], + [ + -73.43304, + 45.51098 + ], + [ + -73.433052, + 45.51098 + ], + [ + -73.433065, + 45.51098 + ], + [ + -73.433077, + 45.510975 + ], + [ + -73.43309, + 45.510975 + ], + [ + -73.433103, + 45.510975 + ], + [ + -73.433115, + 45.510971 + ], + [ + -73.433128, + 45.510971 + ], + [ + -73.433141, + 45.510971 + ], + [ + -73.433153, + 45.510971 + ], + [ + -73.433166, + 45.510971 + ], + [ + -73.433179, + 45.510971 + ], + [ + -73.433192, + 45.510971 + ], + [ + -73.433205, + 45.510971 + ], + [ + -73.433981, + 45.510974 + ], + [ + -73.434422, + 45.510976 + ], + [ + -73.434437, + 45.510976 + ], + [ + -73.43445, + 45.510976 + ], + [ + -73.434463, + 45.510976 + ], + [ + -73.434476, + 45.510971 + ], + [ + -73.434488, + 45.510971 + ], + [ + -73.434501, + 45.510971 + ], + [ + -73.434514, + 45.510971 + ], + [ + -73.434527, + 45.510971 + ], + [ + -73.434539, + 45.510967 + ], + [ + -73.434552, + 45.510967 + ], + [ + -73.434565, + 45.510967 + ], + [ + -73.434578, + 45.510967 + ], + [ + -73.43459, + 45.510962 + ], + [ + -73.434603, + 45.510962 + ], + [ + -73.434615, + 45.510962 + ], + [ + -73.434628, + 45.510958 + ], + [ + -73.43464, + 45.510958 + ], + [ + -73.434653, + 45.510958 + ], + [ + -73.434666, + 45.510953 + ], + [ + -73.434678, + 45.510953 + ], + [ + -73.43469, + 45.510949 + ], + [ + -73.434703, + 45.510949 + ], + [ + -73.434716, + 45.510945 + ], + [ + -73.434728, + 45.510945 + ], + [ + -73.43474, + 45.51094 + ], + [ + -73.434752, + 45.51094 + ], + [ + -73.434765, + 45.510936 + ], + [ + -73.434777, + 45.510936 + ], + [ + -73.43479, + 45.510931 + ], + [ + -73.434802, + 45.510931 + ], + [ + -73.434814, + 45.510927 + ], + [ + -73.434826, + 45.510922 + ], + [ + -73.434838, + 45.510922 + ], + [ + -73.43485, + 45.510918 + ], + [ + -73.434862, + 45.510913 + ], + [ + -73.434874, + 45.510913 + ], + [ + -73.434886, + 45.510909 + ], + [ + -73.434898, + 45.510904 + ], + [ + -73.43491, + 45.5109 + ], + [ + -73.434922, + 45.5109 + ], + [ + -73.434934, + 45.510895 + ], + [ + -73.434946, + 45.510891 + ], + [ + -73.434957, + 45.510886 + ], + [ + -73.434969, + 45.510886 + ], + [ + -73.43498, + 45.510882 + ], + [ + -73.434992, + 45.510877 + ], + [ + -73.435004, + 45.510873 + ], + [ + -73.435015, + 45.510868 + ], + [ + -73.435027, + 45.510864 + ], + [ + -73.435038, + 45.510859 + ], + [ + -73.435049, + 45.510855 + ], + [ + -73.435061, + 45.51085 + ], + [ + -73.435072, + 45.510846 + ], + [ + -73.435083, + 45.510846 + ], + [ + -73.435095, + 45.510841 + ], + [ + -73.435105, + 45.510837 + ], + [ + -73.435117, + 45.510832 + ], + [ + -73.435127, + 45.510823 + ], + [ + -73.435139, + 45.510819 + ], + [ + -73.435149, + 45.510814 + ], + [ + -73.43516, + 45.51081 + ], + [ + -73.435171, + 45.510805 + ], + [ + -73.435181, + 45.510801 + ], + [ + -73.435192, + 45.510796 + ], + [ + -73.435203, + 45.510792 + ], + [ + -73.435213, + 45.510787 + ], + [ + -73.435223, + 45.510783 + ], + [ + -73.435234, + 45.510774 + ], + [ + -73.435244, + 45.510769 + ], + [ + -73.435255, + 45.510765 + ], + [ + -73.435265, + 45.51076 + ], + [ + -73.435275, + 45.510756 + ], + [ + -73.435285, + 45.510747 + ], + [ + -73.435296, + 45.510742 + ], + [ + -73.435308, + 45.510733 + ], + [ + -73.435318, + 45.510729 + ], + [ + -73.435328, + 45.510724 + ], + [ + -73.435338, + 45.51072 + ], + [ + -73.435347, + 45.510711 + ], + [ + -73.435357, + 45.510706 + ], + [ + -73.435367, + 45.510702 + ], + [ + -73.435377, + 45.510697 + ], + [ + -73.435387, + 45.510688 + ], + [ + -73.435396, + 45.510684 + ], + [ + -73.435405, + 45.510679 + ], + [ + -73.435415, + 45.51067 + ], + [ + -73.435424, + 45.510666 + ], + [ + -73.435433, + 45.510657 + ], + [ + -73.435443, + 45.510652 + ], + [ + -73.435451, + 45.510648 + ], + [ + -73.435461, + 45.510639 + ], + [ + -73.43547, + 45.510634 + ], + [ + -73.435478, + 45.510625 + ], + [ + -73.435487, + 45.510621 + ], + [ + -73.435496, + 45.510612 + ], + [ + -73.435504, + 45.510608 + ], + [ + -73.435513, + 45.510599 + ], + [ + -73.435521, + 45.510594 + ], + [ + -73.43553, + 45.510585 + ], + [ + -73.435538, + 45.510581 + ], + [ + -73.435546, + 45.510572 + ], + [ + -73.435554, + 45.510567 + ], + [ + -73.435562, + 45.510558 + ], + [ + -73.43557, + 45.510554 + ], + [ + -73.435578, + 45.510545 + ], + [ + -73.435586, + 45.510536 + ], + [ + -73.435593, + 45.510531 + ], + [ + -73.435601, + 45.510522 + ], + [ + -73.435608, + 45.510518 + ], + [ + -73.435616, + 45.510509 + ], + [ + -73.435623, + 45.5105 + ], + [ + -73.435627, + 45.510497 + ], + [ + -73.43563, + 45.510495 + ], + [ + -73.435637, + 45.510486 + ], + [ + -73.435782, + 45.510319 + ], + [ + -73.435893, + 45.510189 + ], + [ + -73.43661, + 45.510502 + ], + [ + -73.437183, + 45.510752 + ], + [ + -73.437938, + 45.511081 + ], + [ + -73.438224, + 45.511212 + ], + [ + -73.438478, + 45.511327 + ], + [ + -73.439008, + 45.511568 + ], + [ + -73.439422, + 45.511744 + ], + [ + -73.439738, + 45.511879 + ], + [ + -73.43983, + 45.511919 + ], + [ + -73.439896, + 45.511951 + ], + [ + -73.440237, + 45.512095 + ], + [ + -73.441448, + 45.512613 + ], + [ + -73.441811, + 45.512775 + ], + [ + -73.442867, + 45.513201 + ], + [ + -73.443061, + 45.51328 + ], + [ + -73.445634, + 45.514379 + ], + [ + -73.44565, + 45.514386 + ], + [ + -73.446646, + 45.514811 + ], + [ + -73.448382, + 45.515525 + ], + [ + -73.448481, + 45.515566 + ], + [ + -73.44854, + 45.51559 + ], + [ + -73.449494, + 45.515978 + ], + [ + -73.449844, + 45.516127 + ], + [ + -73.450296, + 45.51632 + ], + [ + -73.451352, + 45.516753 + ], + [ + -73.451373, + 45.516761 + ], + [ + -73.451903, + 45.516982 + ], + [ + -73.452053, + 45.517054 + ], + [ + -73.45224, + 45.517153 + ], + [ + -73.452412, + 45.517228 + ], + [ + -73.452518, + 45.517275 + ], + [ + -73.453808, + 45.5178 + ], + [ + -73.45397, + 45.517866 + ], + [ + -73.454088, + 45.517914 + ], + [ + -73.454764, + 45.518193 + ], + [ + -73.455195, + 45.518372 + ], + [ + -73.455625, + 45.518549 + ], + [ + -73.45631, + 45.518837 + ], + [ + -73.457028, + 45.51913 + ], + [ + -73.457149, + 45.51918 + ], + [ + -73.457268, + 45.519234 + ], + [ + -73.458416, + 45.519718 + ], + [ + -73.458582, + 45.519788 + ], + [ + -73.460182, + 45.520458 + ], + [ + -73.460326, + 45.520518 + ], + [ + -73.460513, + 45.520597 + ], + [ + -73.462498, + 45.52143 + ], + [ + -73.462791, + 45.521553 + ], + [ + -73.463763, + 45.521951 + ], + [ + -73.463823, + 45.521976 + ], + [ + -73.464215, + 45.522138 + ], + [ + -73.464352, + 45.522188 + ], + [ + -73.464459, + 45.522246 + ], + [ + -73.464607, + 45.522332 + ], + [ + -73.465147, + 45.522548 + ], + [ + -73.465496, + 45.522687 + ], + [ + -73.466002, + 45.522899 + ], + [ + -73.466103, + 45.522924 + ], + [ + -73.466276, + 45.522967 + ], + [ + -73.467237, + 45.523363 + ], + [ + -73.467896, + 45.523641 + ], + [ + -73.468048, + 45.523705 + ], + [ + -73.468866, + 45.524038 + ], + [ + -73.469522, + 45.524322 + ], + [ + -73.469647, + 45.524373 + ], + [ + -73.469721, + 45.524403 + ], + [ + -73.470239, + 45.524623 + ], + [ + -73.470555, + 45.524749 + ], + [ + -73.471094, + 45.524979 + ], + [ + -73.471997, + 45.525357 + ], + [ + -73.472452, + 45.52555 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.474647, + 45.526461 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.475467, + 45.526811 + ], + [ + -73.475894, + 45.526982 + ], + [ + -73.476145, + 45.527086 + ], + [ + -73.476219, + 45.527117 + ], + [ + -73.476969, + 45.527428 + ], + [ + -73.477725, + 45.527748 + ], + [ + -73.478323, + 45.528 + ], + [ + -73.478598, + 45.528117 + ], + [ + -73.479454, + 45.528472 + ], + [ + -73.480164, + 45.528774 + ], + [ + -73.480753, + 45.529011 + ], + [ + -73.48089, + 45.529066 + ], + [ + -73.481416, + 45.529295 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.484952, + 45.530771 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.488426, + 45.532214 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.490637, + 45.533125 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.492957, + 45.534082 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.494095, + 45.534551 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.495628, + 45.535241 + ], + [ + -73.495883, + 45.535371 + ], + [ + -73.496552, + 45.535684 + ], + [ + -73.496645, + 45.535727 + ], + [ + -73.49677, + 45.535781 + ], + [ + -73.49726, + 45.535988 + ], + [ + -73.498459, + 45.536487 + ], + [ + -73.498937, + 45.536688 + ], + [ + -73.499435, + 45.536897 + ], + [ + -73.501142, + 45.537612 + ], + [ + -73.502066, + 45.537998 + ], + [ + -73.503253, + 45.538494 + ], + [ + -73.503424, + 45.538566 + ], + [ + -73.503808, + 45.538728 + ], + [ + -73.503912, + 45.538786 + ], + [ + -73.504095, + 45.538926 + ], + [ + -73.504553, + 45.539317 + ], + [ + -73.504747, + 45.539452 + ], + [ + -73.504761, + 45.539459 + ], + [ + -73.504898, + 45.539533 + ], + [ + -73.506469, + 45.540185 + ], + [ + -73.507029, + 45.540406 + ], + [ + -73.507958, + 45.540788 + ], + [ + -73.508096, + 45.540847 + ], + [ + -73.508112, + 45.54082 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.50824, + 45.540633 + ], + [ + -73.508341, + 45.540486 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.509497, + 45.538872 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.511586, + 45.537133 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.513272, + 45.536035 + ], + [ + -73.513413, + 45.535879 + ], + [ + -73.513707, + 45.535583 + ], + [ + -73.513941, + 45.535349 + ], + [ + -73.51397, + 45.535321 + ], + [ + -73.514031, + 45.535263 + ], + [ + -73.514312, + 45.534967 + ], + [ + -73.514735, + 45.53454 + ], + [ + -73.514842, + 45.53442 + ], + [ + -73.514898, + 45.534357 + ], + [ + -73.515145, + 45.534084 + ], + [ + -73.515317, + 45.533897 + ], + [ + -73.515372, + 45.533842 + ], + [ + -73.515504, + 45.533699 + ], + [ + -73.515506, + 45.533696 + ], + [ + -73.515888, + 45.533287 + ], + [ + -73.515986, + 45.533193 + ], + [ + -73.516612, + 45.53265 + ], + [ + -73.516729, + 45.532549 + ], + [ + -73.517579, + 45.531802 + ], + [ + -73.517924, + 45.531465 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518212, + 45.531168 + ], + [ + -73.51845, + 45.53088 + ], + [ + -73.518608, + 45.530695 + ], + [ + -73.518713, + 45.530574 + ], + [ + -73.518834, + 45.53043 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519398, + 45.526004 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 79, + "properties": { + "id": "2eeee3b8-b7d4-4faf-bf75-14b071cbfb5a", + "data": { + "gtfs": { + "shape_id": "28_1_A" + }, + "segments": [ + { + "distanceMeters": 210, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 989, + "travelTimeSeconds": 85 + }, + { + "distanceMeters": 1927, + "travelTimeSeconds": 166 + }, + { + "distanceMeters": 478, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 421, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 563, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 644, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 100, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 112, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 87, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 392, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 347, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 636, + "travelTimeSeconds": 157 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 132 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 252, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17138, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8860.319167895477, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.8, + "travelTimeWithoutDwellTimesSeconds": 2520, + "operatingTimeWithLayoverTimeSeconds": 2772, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2520, + "operatingSpeedWithLayoverMetersPerSecond": 6.18, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.8 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "90f9f389-96b4-444b-8d1b-774cf89df3c1", + "6d909e49-9727-42dc-95db-42259425acbd", + "4ee012e8-fd5c-471a-bb0b-87721da74cf6", + "02c6c49d-886b-440d-919e-7dc5515da70b", + "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", + "7b3cddda-c6ba-4d35-a936-01ff21d1501b", + "84766cb6-ab9a-4256-a341-0b084c084dbb", + "aef95744-a773-4cb5-9474-7425de00e382", + "a208dd9e-53a1-4deb-bed5-724b8b3ed912", + "d488b16d-4bf0-4526-8c06-e8192c180e3b", + "96dc38f6-44d4-438d-b986-07c908b99f23", + "14f0cd5d-3ba1-4c3a-96f5-43862d47ec96", + "ed42da21-6b05-4077-96ea-1a113eaf4850", + "e508c7cf-026b-4bcf-8135-74c7544363a5", + "945bff31-775d-46d3-8e37-f61285a9e40d", + "d8268f60-1558-45f9-8a7a-1fd3cd695326", + "3abeeed6-00fe-4697-9dbf-87d5c2515aac", + "feb4de14-0e62-4e9e-a6c1-ea3c1270d98e", + "5fca388e-eb04-4453-a322-bc37f3153a8f", + "4d0b0e5c-93dc-4d99-84e1-62026882c424", + "789f4442-496b-49a8-9269-68c86839ee71", + "0c9c2b52-ead4-4bb7-9085-39aca76f0358", + "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", + "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", + "7b1c691c-8a55-45c2-8401-9d619a0efb76", + "c4825963-416e-404b-a744-6ffe763e2d89", + "344c16fc-7161-4015-9999-e3e0f325dd1e", + "5636d204-312b-4d1e-bac7-614621da4bb5", + "d3991811-d92b-4ba2-9732-26a74abc49b7", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "5981cea7-b196-4e72-820c-362fb9c4e212", + "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", + "130245ae-209b-4e27-b903-ff57832b92eb", + "0d6b35f8-1b6c-4403-a7a5-53247aec7649", + "c3a2368c-bf2d-4c72-9adb-41ee799004b3", + "011d1f54-164c-4564-a051-bdacad3e287d", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "49918c5a-8414-49fd-abf9-87ae6b9f3976", + "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", + "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", + "65175945-c54c-4732-85a9-890393a0975c", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "999ed130-7d99-4115-ac3c-cabba7731288", + "d15f81ba-7519-47f7-aa07-0026f1b03e42", + "28f2fe65-961c-4550-a722-1e7790fe94ad", + "9cf81604-6d70-4ba8-a3fc-521104742058", + "4d48f36b-2274-4392-afac-b2c2c64b98f0", + "5f58acb6-be68-437f-bde7-a77d03125af9", + "4e61612c-2f48-47d6-ad42-7c0737853911", + "e46ba2d2-9f30-419f-acae-c73c3ef665c5", + "48ea0d06-7b69-4895-b55b-2a18e6e6f906", + "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", + "d00d9138-966b-4522-be1d-8c665c71246b", + "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "649e6394-9376-40eb-bc0e-4a376a0044aa", + "4fb4515b-e129-4622-b855-89143c2fd488", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "87d9ede3-8a3c-4f40-b8d3-fade3320fa27", + "segments": [ + 0, + 4, + 6, + 8, + 11, + 29, + 61, + 67, + 75, + 83, + 88, + 102, + 115, + 118, + 123, + 127, + 128, + 134, + 136, + 142, + 270, + 415, + 421, + 423, + 430, + 433, + 435, + 441, + 449, + 455, + 460, + 465, + 471, + 477, + 481, + 487, + 491, + 495, + 499, + 505, + 512, + 515, + 519, + 524, + 526, + 532, + 537, + 541, + 548, + 557, + 563, + 571, + 579, + 589, + 592, + 595, + 612 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 79, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.408622, + 45.513244 + ], + [ + -73.408576, + 45.513275 + ], + [ + -73.408317, + 45.513441 + ], + [ + -73.408069, + 45.513608 + ], + [ + -73.406656, + 45.514534 + ], + [ + -73.405458, + 45.515319 + ], + [ + -73.405252, + 45.515454 + ], + [ + -73.403934, + 45.516317 + ], + [ + -73.403117, + 45.516866 + ], + [ + -73.402988, + 45.516952 + ], + [ + -73.401985, + 45.517616 + ], + [ + -73.40078, + 45.51839 + ], + [ + -73.400681, + 45.518454 + ], + [ + -73.400643, + 45.518479 + ], + [ + -73.399127, + 45.519472 + ], + [ + -73.397969, + 45.520235 + ], + [ + -73.397218, + 45.52073 + ], + [ + -73.396251, + 45.521368 + ], + [ + -73.394826, + 45.522289 + ], + [ + -73.394198, + 45.522707 + ], + [ + -73.394126, + 45.522755 + ], + [ + -73.393689, + 45.523044 + ], + [ + -73.392528, + 45.522188 + ], + [ + -73.392608, + 45.522129 + ], + [ + -73.392668, + 45.522103 + ], + [ + -73.392765, + 45.522062 + ], + [ + -73.392947, + 45.521977 + ], + [ + -73.393247, + 45.521891 + ], + [ + -73.393516, + 45.521869 + ], + [ + -73.393695, + 45.521869 + ], + [ + -73.393778, + 45.521869 + ], + [ + -73.394218, + 45.521942 + ], + [ + -73.394467, + 45.522042 + ], + [ + -73.394476, + 45.522045 + ], + [ + -73.394652, + 45.522154 + ], + [ + -73.394747, + 45.522217 + ], + [ + -73.394826, + 45.522289 + ], + [ + -73.394198, + 45.522707 + ], + [ + -73.393689, + 45.523044 + ], + [ + -73.393551, + 45.523138 + ], + [ + -73.393547, + 45.523138 + ], + [ + -73.394849, + 45.524138 + ], + [ + -73.395227, + 45.524377 + ], + [ + -73.395913, + 45.524787 + ], + [ + -73.395926, + 45.524796 + ], + [ + -73.39603, + 45.524872 + ], + [ + -73.396516, + 45.525251 + ], + [ + -73.396808, + 45.525476 + ], + [ + -73.398838, + 45.527039 + ], + [ + -73.401344, + 45.52898 + ], + [ + -73.401534, + 45.529165 + ], + [ + -73.401662, + 45.529296 + ], + [ + -73.401787, + 45.529467 + ], + [ + -73.40188, + 45.529593 + ], + [ + -73.402009, + 45.529831 + ], + [ + -73.402191, + 45.530164 + ], + [ + -73.402372, + 45.530398 + ], + [ + -73.402547, + 45.530579 + ], + [ + -73.402755, + 45.530772 + ], + [ + -73.403296, + 45.531178 + ], + [ + -73.407306, + 45.534276 + ], + [ + -73.407663, + 45.53454 + ], + [ + -73.40783, + 45.534664 + ], + [ + -73.407942, + 45.534534 + ], + [ + -73.409422, + 45.53282 + ], + [ + -73.40972, + 45.532479 + ], + [ + -73.410191, + 45.531944 + ], + [ + -73.41088, + 45.531136 + ], + [ + -73.411161, + 45.530806 + ], + [ + -73.411928, + 45.530019 + ], + [ + -73.41228, + 45.529682 + ], + [ + -73.412935, + 45.529071 + ], + [ + -73.413427, + 45.528639 + ], + [ + -73.413829, + 45.528316 + ], + [ + -73.414095, + 45.528122 + ], + [ + -73.414108, + 45.528113 + ], + [ + -73.414317, + 45.52797 + ], + [ + -73.414433, + 45.527907 + ], + [ + -73.414947, + 45.527714 + ], + [ + -73.415341, + 45.527583 + ], + [ + -73.415623, + 45.527507 + ], + [ + -73.415864, + 45.527462 + ], + [ + -73.416113, + 45.527413 + ], + [ + -73.416379, + 45.52738 + ], + [ + -73.416471, + 45.527368 + ], + [ + -73.417233, + 45.527306 + ], + [ + -73.417889, + 45.527266 + ], + [ + -73.418328, + 45.527239 + ], + [ + -73.418649, + 45.527221 + ], + [ + -73.418798, + 45.527212 + ], + [ + -73.418423, + 45.526924 + ], + [ + -73.418108, + 45.526684 + ], + [ + -73.416902, + 45.525767 + ], + [ + -73.4189, + 45.524054 + ], + [ + -73.418952, + 45.524009 + ], + [ + -73.419059, + 45.523946 + ], + [ + -73.419315, + 45.52387 + ], + [ + -73.419351, + 45.523865 + ], + [ + -73.419403, + 45.523865 + ], + [ + -73.419456, + 45.523861 + ], + [ + -73.419509, + 45.523866 + ], + [ + -73.419695, + 45.523915 + ], + [ + -73.419841, + 45.524026 + ], + [ + -73.422144, + 45.525784 + ], + [ + -73.422264, + 45.525874 + ], + [ + -73.422416, + 45.525951 + ], + [ + -73.42265, + 45.526009 + ], + [ + -73.422826, + 45.526068 + ], + [ + -73.422965, + 45.525994 + ], + [ + -73.423172, + 45.525884 + ], + [ + -73.423238, + 45.52583 + ], + [ + -73.423418, + 45.525708 + ], + [ + -73.424925, + 45.524616 + ], + [ + -73.425414, + 45.524243 + ], + [ + -73.425562, + 45.524081 + ], + [ + -73.425605, + 45.524023 + ], + [ + -73.425675, + 45.523928 + ], + [ + -73.425801, + 45.523748 + ], + [ + -73.426091, + 45.523193 + ], + [ + -73.426142, + 45.523096 + ], + [ + -73.4262, + 45.52297 + ], + [ + -73.426259, + 45.522854 + ], + [ + -73.426582, + 45.522215 + ], + [ + -73.426867, + 45.521651 + ], + [ + -73.426937, + 45.521513 + ], + [ + -73.426988, + 45.521409 + ], + [ + -73.4271, + 45.521187 + ], + [ + -73.427476, + 45.520439 + ], + [ + -73.427966, + 45.519465 + ], + [ + -73.427999, + 45.519399 + ], + [ + -73.42817, + 45.519067 + ], + [ + -73.428609, + 45.51821 + ], + [ + -73.428677, + 45.518077 + ], + [ + -73.428741, + 45.517969 + ], + [ + -73.428894, + 45.517675 + ], + [ + -73.429076, + 45.517326 + ], + [ + -73.429374, + 45.516727 + ], + [ + -73.429446, + 45.516583 + ], + [ + -73.429532, + 45.516417 + ], + [ + -73.430568, + 45.51435 + ], + [ + -73.430789, + 45.513841 + ], + [ + -73.430859, + 45.51368 + ], + [ + -73.430916, + 45.513531 + ], + [ + -73.430934, + 45.513485 + ], + [ + -73.430968, + 45.513394 + ], + [ + -73.431589, + 45.513342 + ], + [ + -73.431761, + 45.513327 + ], + [ + -73.431949, + 45.513314 + ], + [ + -73.432163, + 45.513323 + ], + [ + -73.43254, + 45.5134 + ], + [ + -73.432606, + 45.513418 + ], + [ + -73.432902, + 45.513499 + ], + [ + -73.434194, + 45.513819 + ], + [ + -73.434274, + 45.513839 + ], + [ + -73.434817, + 45.513977 + ], + [ + -73.43514, + 45.514054 + ], + [ + -73.435477, + 45.514135 + ], + [ + -73.435628, + 45.513847 + ], + [ + -73.435644, + 45.513814 + ], + [ + -73.435792, + 45.513514 + ], + [ + -73.436343, + 45.513649 + ], + [ + -73.436723, + 45.513748 + ], + [ + -73.436797, + 45.513767 + ], + [ + -73.437172, + 45.513041 + ], + [ + -73.437908, + 45.511621 + ], + [ + -73.438008, + 45.511455 + ], + [ + -73.438076, + 45.511377 + ], + [ + -73.438152, + 45.511288 + ], + [ + -73.438224, + 45.511212 + ], + [ + -73.438475, + 45.511326 + ], + [ + -73.439008, + 45.511568 + ], + [ + -73.439429, + 45.511747 + ], + [ + -73.439738, + 45.511879 + ], + [ + -73.43983, + 45.511919 + ], + [ + -73.439896, + 45.511951 + ], + [ + -73.440237, + 45.512095 + ], + [ + -73.441448, + 45.512613 + ], + [ + -73.441811, + 45.512775 + ], + [ + -73.442875, + 45.513204 + ], + [ + -73.443061, + 45.51328 + ], + [ + -73.445634, + 45.514379 + ], + [ + -73.445658, + 45.514389 + ], + [ + -73.446646, + 45.514811 + ], + [ + -73.44839, + 45.515529 + ], + [ + -73.448481, + 45.515566 + ], + [ + -73.44854, + 45.51559 + ], + [ + -73.449494, + 45.515978 + ], + [ + -73.449844, + 45.516127 + ], + [ + -73.450296, + 45.51632 + ], + [ + -73.45136, + 45.516756 + ], + [ + -73.451373, + 45.516761 + ], + [ + -73.451903, + 45.516982 + ], + [ + -73.452053, + 45.517054 + ], + [ + -73.45224, + 45.517153 + ], + [ + -73.452412, + 45.517228 + ], + [ + -73.452518, + 45.517275 + ], + [ + -73.453808, + 45.5178 + ], + [ + -73.453978, + 45.517869 + ], + [ + -73.454088, + 45.517914 + ], + [ + -73.454764, + 45.518193 + ], + [ + -73.455195, + 45.518372 + ], + [ + -73.455625, + 45.518549 + ], + [ + -73.45631, + 45.518837 + ], + [ + -73.457036, + 45.519134 + ], + [ + -73.457149, + 45.51918 + ], + [ + -73.457268, + 45.519234 + ], + [ + -73.458416, + 45.519718 + ], + [ + -73.458582, + 45.519788 + ], + [ + -73.46019, + 45.520462 + ], + [ + -73.460326, + 45.520518 + ], + [ + -73.460513, + 45.520597 + ], + [ + -73.462498, + 45.52143 + ], + [ + -73.462791, + 45.521553 + ], + [ + -73.463771, + 45.521955 + ], + [ + -73.463823, + 45.521976 + ], + [ + -73.464215, + 45.522138 + ], + [ + -73.464352, + 45.522188 + ], + [ + -73.464459, + 45.522246 + ], + [ + -73.464607, + 45.522332 + ], + [ + -73.465155, + 45.522551 + ], + [ + -73.465496, + 45.522687 + ], + [ + -73.466002, + 45.522899 + ], + [ + -73.466103, + 45.522924 + ], + [ + -73.466276, + 45.522967 + ], + [ + -73.467237, + 45.523363 + ], + [ + -73.467894, + 45.52364 + ], + [ + -73.468048, + 45.523705 + ], + [ + -73.468866, + 45.524038 + ], + [ + -73.469522, + 45.524322 + ], + [ + -73.469645, + 45.524372 + ], + [ + -73.469721, + 45.524403 + ], + [ + -73.470239, + 45.524623 + ], + [ + -73.470555, + 45.524749 + ], + [ + -73.471094, + 45.524979 + ], + [ + -73.471997, + 45.525357 + ], + [ + -73.47246, + 45.525554 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.474655, + 45.526465 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.475467, + 45.526811 + ], + [ + -73.475894, + 45.526982 + ], + [ + -73.476154, + 45.52709 + ], + [ + -73.476219, + 45.527117 + ], + [ + -73.476969, + 45.527428 + ], + [ + -73.477725, + 45.527748 + ], + [ + -73.478332, + 45.528004 + ], + [ + -73.478598, + 45.528117 + ], + [ + -73.479454, + 45.528472 + ], + [ + -73.480164, + 45.528774 + ], + [ + -73.480753, + 45.529011 + ], + [ + -73.48089, + 45.529066 + ], + [ + -73.481414, + 45.529294 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.484961, + 45.530774 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.488424, + 45.532213 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.490635, + 45.533124 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.492956, + 45.534081 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.494094, + 45.534551 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.495628, + 45.535241 + ], + [ + -73.495883, + 45.535371 + ], + [ + -73.496551, + 45.535683 + ], + [ + -73.496645, + 45.535727 + ], + [ + -73.49677, + 45.535781 + ], + [ + -73.49726, + 45.535988 + ], + [ + -73.498459, + 45.536487 + ], + [ + -73.498936, + 45.536687 + ], + [ + -73.499435, + 45.536897 + ], + [ + -73.501142, + 45.537612 + ], + [ + -73.502066, + 45.537998 + ], + [ + -73.503263, + 45.538498 + ], + [ + -73.503424, + 45.538566 + ], + [ + -73.503808, + 45.538728 + ], + [ + -73.503912, + 45.538786 + ], + [ + -73.504095, + 45.538926 + ], + [ + -73.504553, + 45.539317 + ], + [ + -73.504747, + 45.539452 + ], + [ + -73.50477, + 45.539464 + ], + [ + -73.504898, + 45.539533 + ], + [ + -73.506469, + 45.540185 + ], + [ + -73.507029, + 45.540406 + ], + [ + -73.507958, + 45.540788 + ], + [ + -73.508096, + 45.540847 + ], + [ + -73.508112, + 45.54082 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.50824, + 45.540633 + ], + [ + -73.50834, + 45.540487 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.509502, + 45.538865 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.511595, + 45.537128 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.513272, + 45.536035 + ], + [ + -73.513413, + 45.535879 + ], + [ + -73.513707, + 45.535583 + ], + [ + -73.513941, + 45.535349 + ], + [ + -73.513977, + 45.535314 + ], + [ + -73.514031, + 45.535263 + ], + [ + -73.514312, + 45.534967 + ], + [ + -73.514735, + 45.53454 + ], + [ + -73.514842, + 45.53442 + ], + [ + -73.514898, + 45.534357 + ], + [ + -73.515145, + 45.534084 + ], + [ + -73.515317, + 45.533897 + ], + [ + -73.515372, + 45.533842 + ], + [ + -73.515504, + 45.533699 + ], + [ + -73.515513, + 45.533689 + ], + [ + -73.515888, + 45.533287 + ], + [ + -73.515986, + 45.533193 + ], + [ + -73.516619, + 45.532644 + ], + [ + -73.516729, + 45.532549 + ], + [ + -73.517579, + 45.531802 + ], + [ + -73.517931, + 45.531458 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518212, + 45.531168 + ], + [ + -73.51845, + 45.53088 + ], + [ + -73.518608, + 45.530695 + ], + [ + -73.518713, + 45.530574 + ], + [ + -73.518834, + 45.53043 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519398, + 45.526004 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 80, + "properties": { + "id": "490b7dc7-e851-4e10-be23-ae6f2d6b1bdc", + "data": { + "gtfs": { + "shape_id": "28_2_A" + }, + "segments": [ + { + "distanceMeters": 210, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 989, + "travelTimeSeconds": 85 + }, + { + "distanceMeters": 1927, + "travelTimeSeconds": 166 + }, + { + "distanceMeters": 478, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 421, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 563, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 644, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 100, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 112, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 819, + "travelTimeSeconds": 107 + }, + { + "distanceMeters": 45, + "travelTimeSeconds": 6 + }, + { + "distanceMeters": 88, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 635, + "travelTimeSeconds": 172 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 145 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 276, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17161, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8860.319167895477, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.22, + "travelTimeWithoutDwellTimesSeconds": 2760, + "operatingTimeWithLayoverTimeSeconds": 3036, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2760, + "operatingSpeedWithLayoverMetersPerSecond": 5.65, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.22 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "90f9f389-96b4-444b-8d1b-774cf89df3c1", + "6d909e49-9727-42dc-95db-42259425acbd", + "4ee012e8-fd5c-471a-bb0b-87721da74cf6", + "02c6c49d-886b-440d-919e-7dc5515da70b", + "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", + "7b3cddda-c6ba-4d35-a936-01ff21d1501b", + "84766cb6-ab9a-4256-a341-0b084c084dbb", + "aef95744-a773-4cb5-9474-7425de00e382", + "a208dd9e-53a1-4deb-bed5-724b8b3ed912", + "d488b16d-4bf0-4526-8c06-e8192c180e3b", + "96dc38f6-44d4-438d-b986-07c908b99f23", + "14f0cd5d-3ba1-4c3a-96f5-43862d47ec96", + "ed42da21-6b05-4077-96ea-1a113eaf4850", + "e508c7cf-026b-4bcf-8135-74c7544363a5", + "945bff31-775d-46d3-8e37-f61285a9e40d", + "d8268f60-1558-45f9-8a7a-1fd3cd695326", + "3abeeed6-00fe-4697-9dbf-87d5c2515aac", + "feb4de14-0e62-4e9e-a6c1-ea3c1270d98e", + "5fca388e-eb04-4453-a322-bc37f3153a8f", + "4d0b0e5c-93dc-4d99-84e1-62026882c424", + "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", + "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", + "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", + "7b1c691c-8a55-45c2-8401-9d619a0efb76", + "c4825963-416e-404b-a744-6ffe763e2d89", + "344c16fc-7161-4015-9999-e3e0f325dd1e", + "5636d204-312b-4d1e-bac7-614621da4bb5", + "d3991811-d92b-4ba2-9732-26a74abc49b7", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "5981cea7-b196-4e72-820c-362fb9c4e212", + "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", + "130245ae-209b-4e27-b903-ff57832b92eb", + "0d6b35f8-1b6c-4403-a7a5-53247aec7649", + "c3a2368c-bf2d-4c72-9adb-41ee799004b3", + "011d1f54-164c-4564-a051-bdacad3e287d", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "49918c5a-8414-49fd-abf9-87ae6b9f3976", + "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", + "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", + "65175945-c54c-4732-85a9-890393a0975c", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "999ed130-7d99-4115-ac3c-cabba7731288", + "d15f81ba-7519-47f7-aa07-0026f1b03e42", + "28f2fe65-961c-4550-a722-1e7790fe94ad", + "9cf81604-6d70-4ba8-a3fc-521104742058", + "4d48f36b-2274-4392-afac-b2c2c64b98f0", + "5f58acb6-be68-437f-bde7-a77d03125af9", + "4e61612c-2f48-47d6-ad42-7c0737853911", + "e46ba2d2-9f30-419f-acae-c73c3ef665c5", + "48ea0d06-7b69-4895-b55b-2a18e6e6f906", + "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", + "d00d9138-966b-4522-be1d-8c665c71246b", + "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "649e6394-9376-40eb-bc0e-4a376a0044aa", + "4fb4515b-e129-4622-b855-89143c2fd488", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "87d9ede3-8a3c-4f40-b8d3-fade3320fa27", + "segments": [ + 0, + 4, + 6, + 8, + 11, + 29, + 61, + 67, + 75, + 83, + 88, + 102, + 115, + 118, + 123, + 127, + 128, + 134, + 136, + 143, + 166, + 169, + 171, + 178, + 181, + 183, + 189, + 197, + 203, + 208, + 213, + 219, + 225, + 229, + 235, + 239, + 243, + 247, + 253, + 260, + 263, + 267, + 272, + 274, + 280, + 285, + 289, + 296, + 305, + 311, + 319, + 327, + 337, + 340, + 343, + 360 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 80, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.520811, + 45.523427 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522189, + 45.522392 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514253, + 45.51909 + ], + [ + -73.513885, + 45.518962 + ], + [ + -73.51387, + 45.518957 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513317, + 45.518773 + ], + [ + -73.51223, + 45.518422 + ], + [ + -73.509841, + 45.517649 + ], + [ + -73.506681, + 45.516623 + ], + [ + -73.506298, + 45.516497 + ], + [ + -73.506049, + 45.516416 + ], + [ + -73.506087, + 45.516538 + ], + [ + -73.506123, + 45.516645 + ], + [ + -73.506267, + 45.517046 + ], + [ + -73.506363, + 45.517243 + ], + [ + -73.506418, + 45.517356 + ], + [ + -73.506679, + 45.517851 + ], + [ + -73.506804, + 45.518072 + ], + [ + -73.506924, + 45.518297 + ], + [ + -73.507158, + 45.518738 + ], + [ + -73.507261, + 45.518931 + ], + [ + -73.507367, + 45.519126 + ], + [ + -73.507395, + 45.519177 + ], + [ + -73.507557, + 45.519476 + ], + [ + -73.507699, + 45.519736 + ], + [ + -73.507813, + 45.519948 + ], + [ + -73.5079, + 45.52011 + ], + [ + -73.508092, + 45.520465 + ], + [ + -73.508316, + 45.520888 + ], + [ + -73.50837, + 45.520987 + ], + [ + -73.508816, + 45.52186 + ], + [ + -73.508893, + 45.522004 + ], + [ + -73.509178, + 45.522539 + ], + [ + -73.50928, + 45.522728 + ], + [ + -73.509633, + 45.523397 + ], + [ + -73.509691, + 45.523507 + ], + [ + -73.509731, + 45.523583 + ], + [ + -73.509969, + 45.524042 + ], + [ + -73.510188, + 45.524465 + ], + [ + -73.510373, + 45.525036 + ], + [ + -73.510439, + 45.525351 + ], + [ + -73.510453, + 45.525414 + ], + [ + -73.510529, + 45.525734 + ], + [ + -73.510579, + 45.526273 + ], + [ + -73.510562, + 45.527029 + ], + [ + -73.510547, + 45.527214 + ], + [ + -73.51052, + 45.52743 + ], + [ + -73.510528, + 45.527565 + ], + [ + -73.510548, + 45.527677 + ], + [ + -73.510563, + 45.527749 + ], + [ + -73.510557, + 45.527853 + ], + [ + -73.510522, + 45.52797 + ], + [ + -73.510476, + 45.528037 + ], + [ + -73.510429, + 45.528114 + ], + [ + -73.510285, + 45.528097 + ], + [ + -73.510194, + 45.528086 + ], + [ + -73.510077, + 45.528048 + ], + [ + -73.507316, + 45.527151 + ], + [ + -73.506756, + 45.526962 + ], + [ + -73.506719, + 45.527057 + ], + [ + -73.50664, + 45.527183 + ], + [ + -73.506547, + 45.527291 + ], + [ + -73.50641, + 45.527444 + ], + [ + -73.506327, + 45.527507 + ], + [ + -73.506169, + 45.527714 + ], + [ + -73.505923, + 45.528082 + ], + [ + -73.505501, + 45.528735 + ], + [ + -73.504996, + 45.529468 + ], + [ + -73.504493, + 45.530197 + ], + [ + -73.504137, + 45.530724 + ], + [ + -73.504093, + 45.530787 + ], + [ + -73.503599, + 45.531497 + ], + [ + -73.503223, + 45.532051 + ], + [ + -73.502833, + 45.532654 + ], + [ + -73.502157, + 45.533563 + ], + [ + -73.501739, + 45.534094 + ], + [ + -73.50124, + 45.534719 + ], + [ + -73.500783, + 45.535317 + ], + [ + -73.50017, + 45.536064 + ], + [ + -73.499604, + 45.536744 + ], + [ + -73.499534, + 45.536807 + ], + [ + -73.499435, + 45.536897 + ], + [ + -73.49936, + 45.536964 + ], + [ + -73.498721, + 45.537445 + ], + [ + -73.496933, + 45.539034 + ], + [ + -73.496814, + 45.538963 + ], + [ + -73.496516, + 45.538786 + ], + [ + -73.495691, + 45.538291 + ], + [ + -73.494803, + 45.53776 + ], + [ + -73.4947, + 45.537693 + ], + [ + -73.494245, + 45.538158 + ], + [ + -73.493408, + 45.539015 + ], + [ + -73.492739, + 45.539699 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.491774, + 45.540689 + ], + [ + -73.491536, + 45.540936 + ], + [ + -73.491291, + 45.541175 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491035, + 45.541427 + ], + [ + -73.491084, + 45.541584 + ], + [ + -73.491099, + 45.541724 + ], + [ + -73.491106, + 45.541854 + ], + [ + -73.491092, + 45.542156 + ], + [ + -73.491081, + 45.542381 + ], + [ + -73.49104, + 45.543146 + ], + [ + -73.490998, + 45.543726 + ], + [ + -73.491037, + 45.544117 + ], + [ + -73.491071, + 45.544252 + ], + [ + -73.491113, + 45.544396 + ], + [ + -73.491272, + 45.544698 + ], + [ + -73.491367, + 45.544855 + ], + [ + -73.491449, + 45.544981 + ], + [ + -73.491608, + 45.545148 + ], + [ + -73.491886, + 45.545409 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.491911, + 45.546057 + ], + [ + -73.491829, + 45.546111 + ], + [ + -73.491431, + 45.546368 + ], + [ + -73.491216, + 45.546506 + ], + [ + -73.490714, + 45.547006 + ], + [ + -73.48951, + 45.547751 + ], + [ + -73.489407, + 45.547816 + ], + [ + -73.485955, + 45.549961 + ], + [ + -73.485528, + 45.550218 + ], + [ + -73.485059, + 45.550458 + ], + [ + -73.483956, + 45.551023 + ], + [ + -73.48427, + 45.551357 + ], + [ + -73.48453, + 45.551635 + ], + [ + -73.484618, + 45.551734 + ], + [ + -73.484693, + 45.55186 + ], + [ + -73.484759, + 45.552008 + ], + [ + -73.484816, + 45.552215 + ], + [ + -73.484834, + 45.552346 + ], + [ + -73.484812, + 45.552548 + ], + [ + -73.484776, + 45.552733 + ], + [ + -73.484668, + 45.55315 + ], + [ + -73.48441, + 45.55415 + ], + [ + -73.484362, + 45.554361 + ], + [ + -73.484318, + 45.554555 + ], + [ + -73.4843, + 45.554726 + ], + [ + -73.484291, + 45.554865 + ], + [ + -73.484305, + 45.555234 + ], + [ + -73.484308, + 45.555285 + ], + [ + -73.484331, + 45.555639 + ], + [ + -73.48434, + 45.555782 + ], + [ + -73.484366, + 45.556165 + ], + [ + -73.484397, + 45.556377 + ], + [ + -73.48445, + 45.556532 + ], + [ + -73.484458, + 45.556557 + ], + [ + -73.484529, + 45.556737 + ], + [ + -73.484586, + 45.556858 + ], + [ + -73.484746, + 45.557101 + ], + [ + -73.484811, + 45.5572 + ], + [ + -73.484876, + 45.557286 + ], + [ + -73.48555, + 45.5581 + ], + [ + -73.485664, + 45.558262 + ], + [ + -73.485726, + 45.558424 + ], + [ + -73.485748, + 45.558546 + ], + [ + -73.485765, + 45.558649 + ], + [ + -73.48573, + 45.558798 + ], + [ + -73.48566, + 45.558951 + ], + [ + -73.485563, + 45.559104 + ], + [ + -73.485413, + 45.559252 + ], + [ + -73.485085, + 45.559516 + ], + [ + -73.484971, + 45.559607 + ], + [ + -73.48489, + 45.559675 + ], + [ + -73.484312, + 45.560233 + ], + [ + -73.484078, + 45.560521 + ], + [ + -73.484025, + 45.56059 + ], + [ + -73.483849, + 45.560818 + ], + [ + -73.483677, + 45.561074 + ], + [ + -73.483637, + 45.561133 + ], + [ + -73.483578, + 45.561221 + ], + [ + -73.483026, + 45.562041 + ], + [ + -73.482901, + 45.562217 + ], + [ + -73.482854, + 45.562284 + ], + [ + -73.482493, + 45.562708 + ], + [ + -73.482425, + 45.562788 + ], + [ + -73.482409, + 45.562806 + ], + [ + -73.482342, + 45.562878 + ], + [ + -73.482066, + 45.563125 + ], + [ + -73.48196, + 45.56322 + ], + [ + -73.481758, + 45.563341 + ], + [ + -73.481506, + 45.563472 + ], + [ + -73.481447, + 45.563492 + ], + [ + -73.481361, + 45.563521 + ], + [ + -73.481206, + 45.563571 + ], + [ + -73.480981, + 45.563621 + ], + [ + -73.480428, + 45.563746 + ], + [ + -73.480284, + 45.563777 + ], + [ + -73.480145, + 45.563809 + ], + [ + -73.479899, + 45.563872 + ], + [ + -73.47976, + 45.563926 + ], + [ + -73.479667, + 45.563981 + ], + [ + -73.479595, + 45.564025 + ], + [ + -73.47922, + 45.564269 + ], + [ + -73.479021, + 45.564398 + ], + [ + -73.47891, + 45.564479 + ], + [ + -73.480326, + 45.56555 + ], + [ + -73.4804, + 45.565606 + ], + [ + -73.480492, + 45.565676 + ], + [ + -73.482494, + 45.567196 + ], + [ + -73.482644, + 45.56731 + ], + [ + -73.483836, + 45.568212 + ], + [ + -73.484053, + 45.568376 + ], + [ + -73.484489, + 45.568691 + ], + [ + -73.484675, + 45.568831 + ], + [ + -73.484833, + 45.568931 + ], + [ + -73.48493, + 45.568993 + ], + [ + -73.485344, + 45.569308 + ], + [ + -73.485559, + 45.569527 + ], + [ + -73.485603, + 45.569573 + ], + [ + -73.485637, + 45.569627 + ], + [ + -73.485662, + 45.569681 + ], + [ + -73.485673, + 45.569726 + ], + [ + -73.485673, + 45.569767 + ], + [ + -73.48567, + 45.569825 + ], + [ + -73.485662, + 45.569906 + ], + [ + -73.485627, + 45.569986 + ], + [ + -73.485389, + 45.570203 + ], + [ + -73.485317, + 45.570269 + ], + [ + -73.484918, + 45.570637 + ], + [ + -73.484877, + 45.570674 + ], + [ + -73.484851, + 45.570698 + ], + [ + -73.484572, + 45.570948 + ], + [ + -73.484207, + 45.571258 + ], + [ + -73.484112, + 45.571335 + ], + [ + -73.483947, + 45.571468 + ], + [ + -73.483827, + 45.571565 + ], + [ + -73.483769, + 45.571618 + ], + [ + -73.483704, + 45.571572 + ], + [ + -73.482973, + 45.571016 + ], + [ + -73.482377, + 45.570563 + ], + [ + -73.481862, + 45.570157 + ] + ] + }, + "id": 81, + "properties": { + "id": "aa45b43a-2145-42b5-aa48-ecac16171707", + "data": { + "gtfs": { + "shape_id": "29_1_R" + }, + "segments": [ + { + "distanceMeters": 7175, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 304, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 56 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10167, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2750.9275501855577, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 15.4, + "travelTimeWithoutDwellTimesSeconds": 660, + "operatingTimeWithLayoverTimeSeconds": 840, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 660, + "operatingSpeedWithLayoverMetersPerSecond": 12.1, + "averageSpeedWithoutDwellTimesMetersPerSecond": 15.4 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", + "fc1c0989-eb4e-4e77-b261-f952dd40601e", + "717d6b36-87fa-4b34-a418-6b20c1bc0d29", + "6db4cc67-3620-48bd-9c7c-28ab936b1e0b", + "a77c95ec-f278-40ce-a777-9f8b498d4367", + "f1b172ed-b501-4e36-bd1c-2425165ce50b", + "527ca44e-8da2-49e9-b2e4-033371d02c50", + "e6df12e3-4f2f-4277-aa8e-a04daab48336", + "9d19395e-81cd-4b78-af4a-b6c8e4259c9c", + "4f581479-b61b-497b-82d2-4c290ee6a857", + "84f7a7c0-b176-49cc-89e3-6756a3c3e4cc", + "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", + "0e909db9-b45c-44fa-bfff-a89f751e1acf", + "1c1d06bf-7e76-429d-9eb4-4a4d4d2842d4", + "24527bed-7ea6-44d6-b6db-18ac609f4938", + "ef393841-8a29-4383-a7b9-545addf087f6" + ], + "stops": [], + "line_id": "0d69f146-d423-4ce1-8347-91d9b5165fe2", + "segments": [ + 0, + 173, + 182, + 189, + 198, + 210, + 217, + 223, + 234, + 242, + 247, + 248, + 250, + 257, + 274 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 81, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.481862, + 45.570157 + ], + [ + -73.481822, + 45.570126 + ], + [ + -73.481331, + 45.569766 + ], + [ + -73.481257, + 45.569712 + ], + [ + -73.480428, + 45.569077 + ], + [ + -73.479866, + 45.568647 + ], + [ + -73.479008, + 45.56799 + ], + [ + -73.47867, + 45.567732 + ], + [ + -73.47894, + 45.567404 + ], + [ + -73.479088, + 45.567237 + ], + [ + -73.479664, + 45.56659 + ], + [ + -73.479946, + 45.566274 + ], + [ + -73.480076, + 45.566265 + ], + [ + -73.480517, + 45.566553 + ], + [ + -73.48115, + 45.567044 + ], + [ + -73.481186, + 45.567156 + ], + [ + -73.481181, + 45.5673 + ], + [ + -73.481322, + 45.567426 + ], + [ + -73.481717, + 45.567726 + ], + [ + -73.481834, + 45.567813 + ], + [ + -73.482502, + 45.567398 + ], + [ + -73.482513, + 45.567391 + ], + [ + -73.482644, + 45.56731 + ], + [ + -73.482793, + 45.567251 + ], + [ + -73.4815, + 45.566273 + ], + [ + -73.480444, + 45.565474 + ], + [ + -73.480073, + 45.565193 + ], + [ + -73.479542, + 45.564792 + ], + [ + -73.479021, + 45.564398 + ], + [ + -73.477591, + 45.5633 + ], + [ + -73.477496, + 45.563228 + ], + [ + -73.476819, + 45.562716 + ], + [ + -73.476459, + 45.562443 + ], + [ + -73.475938, + 45.562049 + ], + [ + -73.475231, + 45.561513 + ], + [ + -73.474585, + 45.561026 + ], + [ + -73.474436, + 45.560913 + ], + [ + -73.474349, + 45.560847 + ], + [ + -73.474262, + 45.560781 + ], + [ + -73.473051, + 45.559853 + ], + [ + -73.472951, + 45.559778 + ], + [ + -73.472285, + 45.559277 + ], + [ + -73.471768, + 45.558881 + ], + [ + -73.471246, + 45.558487 + ], + [ + -73.471028, + 45.558322 + ], + [ + -73.471824, + 45.557823 + ], + [ + -73.472324, + 45.557504 + ], + [ + -73.472479, + 45.557405 + ], + [ + -73.472629, + 45.557279 + ], + [ + -73.472632, + 45.557275 + ], + [ + -73.473526, + 45.556709 + ], + [ + -73.473662, + 45.556622 + ], + [ + -73.473763, + 45.556559 + ], + [ + -73.475299, + 45.555549 + ], + [ + -73.475452, + 45.555449 + ], + [ + -73.475549, + 45.55539 + ], + [ + -73.47589, + 45.555179 + ], + [ + -73.47658, + 45.554819 + ], + [ + -73.47721, + 45.554495 + ], + [ + -73.478403, + 45.55387 + ], + [ + -73.478898, + 45.553619 + ], + [ + -73.479586, + 45.553272 + ], + [ + -73.480214, + 45.552938 + ], + [ + -73.480374, + 45.552853 + ], + [ + -73.480484, + 45.552799 + ], + [ + -73.482032, + 45.552008 + ], + [ + -73.482067, + 45.551991 + ], + [ + -73.482159, + 45.551945 + ], + [ + -73.483045, + 45.55149 + ], + [ + -73.48356, + 45.551226 + ], + [ + -73.483956, + 45.551023 + ], + [ + -73.485059, + 45.550458 + ], + [ + -73.485528, + 45.550218 + ], + [ + -73.485955, + 45.549961 + ], + [ + -73.489407, + 45.547816 + ], + [ + -73.48951, + 45.547751 + ], + [ + -73.489875, + 45.547525 + ], + [ + -73.490714, + 45.547006 + ], + [ + -73.491216, + 45.546506 + ], + [ + -73.491431, + 45.546368 + ], + [ + -73.491829, + 45.546111 + ], + [ + -73.491911, + 45.546057 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.491976, + 45.545189 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.491356, + 45.541251 + ], + [ + -73.491461, + 45.541175 + ], + [ + -73.491486, + 45.541152 + ], + [ + -73.491857, + 45.540774 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.492859, + 45.539758 + ], + [ + -73.494699, + 45.537867 + ], + [ + -73.494803, + 45.53776 + ], + [ + -73.495499, + 45.537063 + ], + [ + -73.495945, + 45.536614 + ], + [ + -73.496193, + 45.536366 + ], + [ + -73.496375, + 45.536444 + ], + [ + -73.498721, + 45.537445 + ], + [ + -73.498812, + 45.537377 + ], + [ + -73.499302, + 45.537008 + ], + [ + -73.49936, + 45.536964 + ], + [ + -73.499435, + 45.536897 + ], + [ + -73.499534, + 45.536807 + ], + [ + -73.499604, + 45.536744 + ], + [ + -73.50017, + 45.536064 + ], + [ + -73.500783, + 45.535317 + ], + [ + -73.5012, + 45.534772 + ], + [ + -73.50124, + 45.534719 + ], + [ + -73.501739, + 45.534094 + ], + [ + -73.502114, + 45.533617 + ], + [ + -73.502157, + 45.533563 + ], + [ + -73.502833, + 45.532654 + ], + [ + -73.503135, + 45.532187 + ], + [ + -73.503223, + 45.532051 + ], + [ + -73.503599, + 45.531497 + ], + [ + -73.504033, + 45.530874 + ], + [ + -73.504093, + 45.530787 + ], + [ + -73.504137, + 45.530724 + ], + [ + -73.504493, + 45.530197 + ], + [ + -73.504926, + 45.529569 + ], + [ + -73.504996, + 45.529468 + ], + [ + -73.505501, + 45.528735 + ], + [ + -73.505861, + 45.528179 + ], + [ + -73.505923, + 45.528082 + ], + [ + -73.506169, + 45.527714 + ], + [ + -73.506327, + 45.527507 + ], + [ + -73.50641, + 45.527444 + ], + [ + -73.506547, + 45.527291 + ], + [ + -73.50664, + 45.527183 + ], + [ + -73.506682, + 45.527116 + ], + [ + -73.506719, + 45.527057 + ], + [ + -73.506756, + 45.526962 + ], + [ + -73.507316, + 45.527151 + ], + [ + -73.510077, + 45.528048 + ], + [ + -73.510194, + 45.528086 + ], + [ + -73.510285, + 45.528134 + ], + [ + -73.510385, + 45.528186 + ], + [ + -73.510473, + 45.528213 + ], + [ + -73.510517, + 45.528141 + ], + [ + -73.510544, + 45.528105 + ], + [ + -73.510616, + 45.52801 + ], + [ + -73.510673, + 45.527898 + ], + [ + -73.510724, + 45.527781 + ], + [ + -73.510813, + 45.527427 + ], + [ + -73.510842, + 45.527313 + ], + [ + -73.510878, + 45.526809 + ], + [ + -73.510897, + 45.526495 + ], + [ + -73.510904, + 45.526386 + ], + [ + -73.510825, + 45.525626 + ], + [ + -73.510791, + 45.525473 + ], + [ + -73.51061, + 45.524785 + ], + [ + -73.510559, + 45.524591 + ], + [ + -73.510103, + 45.523637 + ], + [ + -73.510027, + 45.523495 + ], + [ + -73.509615, + 45.522728 + ], + [ + -73.509474, + 45.522467 + ], + [ + -73.509184, + 45.521936 + ], + [ + -73.509122, + 45.521825 + ], + [ + -73.509119, + 45.521819 + ], + [ + -73.508895, + 45.52141 + ], + [ + -73.508877, + 45.521377 + ], + [ + -73.508774, + 45.52119 + ], + [ + -73.50866, + 45.520978 + ], + [ + -73.508615, + 45.520897 + ], + [ + -73.507931, + 45.519572 + ], + [ + -73.507805, + 45.519327 + ], + [ + -73.507767, + 45.519257 + ], + [ + -73.507224, + 45.518241 + ], + [ + -73.507088, + 45.517986 + ], + [ + -73.50664, + 45.517136 + ], + [ + -73.506594, + 45.517054 + ], + [ + -73.506515, + 45.516915 + ], + [ + -73.506521, + 45.516821 + ], + [ + -73.506537, + 45.516798 + ], + [ + -73.506565, + 45.51678 + ], + [ + -73.506617, + 45.516753 + ], + [ + -73.506766, + 45.516758 + ], + [ + -73.507482, + 45.51699 + ], + [ + -73.509647, + 45.51769 + ], + [ + -73.509783, + 45.517734 + ], + [ + -73.51201, + 45.518455 + ], + [ + -73.512173, + 45.518508 + ], + [ + -73.513534, + 45.518951 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.514991, + 45.519419 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518887, + 45.520627 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520861, + 45.524416 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.520811, + 45.523427 + ] + ] + }, + "id": 82, + "properties": { + "id": "3a76676a-b05d-436c-b9b5-7286eeff2f90", + "data": { + "gtfs": { + "shape_id": "29_1_A" + }, + "segments": [ + { + "distanceMeters": 60, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 83, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 481, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 1005, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 523, + "travelTimeSeconds": 88 + }, + { + "distanceMeters": 392, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 331, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 432, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 104, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 846, + "travelTimeSeconds": 158 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10737, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5993.066645974276, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.39, + "travelTimeWithoutDwellTimesSeconds": 1680, + "operatingTimeWithLayoverTimeSeconds": 1860, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1680, + "operatingSpeedWithLayoverMetersPerSecond": 5.77, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.39 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "ef393841-8a29-4383-a7b9-545addf087f6", + "ef393841-8a29-4383-a7b9-545addf087f6", + "281f350b-faae-4302-bcde-cc7831951682", + "59b13438-eb20-4204-b1fd-fe2ed2a80258", + "bc413ffa-dc65-4fc7-93f0-58dddebb3024", + "ce65fcd5-5449-4ede-b81b-9d2cd21731a7", + "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", + "08472942-a2a0-45ef-be22-2dc8587875b6", + "768e4b50-abe9-456e-9460-90d8cbf65940", + "b15716e4-5653-476c-ba57-960f89ea42d5", + "2332d398-d991-4d3f-9d67-38ab4930ac25", + "f5001112-5d1e-4489-87be-a34e9ded0d46", + "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", + "a388aa98-4c24-4671-8a33-a0e95f9d5ada", + "fc1c0989-eb4e-4e77-b261-f952dd40601e", + "2d7687a5-f458-4ce1-a3df-9639d89c0154", + "411bafbe-bac8-4586-9af4-bc0b3163bdde", + "04b348b3-bb46-4177-9e4b-604bf8d96a58", + "4ae33b06-30dd-4ad3-8df9-3ce610880853", + "02ddb4e4-c9f0-483c-9ae1-3f0d44c6367b", + "ba31b8f9-0d39-4bdd-b821-6bb787db72e9", + "95af381b-5ec5-4208-a73c-8f86d7b96b62", + "dac4f8d3-28c8-4cad-bd6d-c9e7c6bfb82b", + "91d2eb2a-bbfe-4d2d-887b-5ab9a417b7e2", + "3b0f936b-399c-4201-853b-8259a72529d0", + "09e0cc45-0105-4ba6-b7c5-86201ed79edf", + "43f366d5-ac33-41ca-be94-6282f0233cd1", + "aa2ca75c-2e9d-4072-a531-98e6423e4538", + "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", + "94f3304d-66ff-42a6-bd12-7828cf5efc64", + "7dd9be07-f5cb-4f00-86f7-d61821676a78", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "01cbab8a-50a9-42e0-9d05-820a9dd4fa51", + "c28a8fa6-886c-4f1e-b291-00d0237d02dd", + "eab3c393-e690-4d4a-921c-9c45533c53f2", + "e66fb997-f83d-42a0-a232-e5b0a94a0caf", + "608948b3-8ac4-493b-a2b3-48bd266c12ab", + "9da92501-0f80-4a3e-b324-83bbfa32d05c", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "acabc807-b0f5-4579-b183-cef0484a7cc2" + ], + "stops": [], + "line_id": "0d69f146-d423-4ce1-8347-91d9b5165fe2", + "segments": [ + 0, + 2, + 5, + 6, + 9, + 18, + 20, + 27, + 32, + 36, + 43, + 50, + 53, + 62, + 69, + 86, + 107, + 110, + 113, + 118, + 125, + 128, + 131, + 134, + 138, + 141, + 148, + 162, + 165, + 169, + 173, + 179, + 183, + 186, + 189, + 197, + 199, + 201, + 206, + 212 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 82, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.520811, + 45.523427 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522189, + 45.522392 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519246, + 45.520729 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514985, + 45.519324 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514253, + 45.51909 + ], + [ + -73.513885, + 45.518962 + ], + [ + -73.51387, + 45.518957 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513317, + 45.518773 + ], + [ + -73.512359, + 45.518464 + ], + [ + -73.51223, + 45.518422 + ], + [ + -73.510158, + 45.517751 + ], + [ + -73.509841, + 45.517649 + ], + [ + -73.507574, + 45.516913 + ], + [ + -73.506681, + 45.516623 + ], + [ + -73.506298, + 45.516497 + ], + [ + -73.506049, + 45.516416 + ], + [ + -73.506087, + 45.516538 + ], + [ + -73.506123, + 45.516645 + ], + [ + -73.506267, + 45.517046 + ], + [ + -73.506363, + 45.517243 + ], + [ + -73.506418, + 45.517356 + ], + [ + -73.50657, + 45.517645 + ], + [ + -73.506679, + 45.517851 + ], + [ + -73.506804, + 45.518072 + ], + [ + -73.506924, + 45.518297 + ], + [ + -73.507158, + 45.518738 + ], + [ + -73.507261, + 45.518931 + ], + [ + -73.507367, + 45.519126 + ], + [ + -73.507395, + 45.519177 + ], + [ + -73.507467, + 45.51931 + ], + [ + -73.507557, + 45.519476 + ], + [ + -73.507699, + 45.519736 + ], + [ + -73.507813, + 45.519948 + ], + [ + -73.5079, + 45.52011 + ], + [ + -73.508092, + 45.520465 + ], + [ + -73.508242, + 45.520748 + ], + [ + -73.508316, + 45.520888 + ], + [ + -73.50837, + 45.520987 + ], + [ + -73.508816, + 45.52186 + ], + [ + -73.508893, + 45.522004 + ], + [ + -73.509178, + 45.522539 + ], + [ + -73.509182, + 45.522545 + ], + [ + -73.50928, + 45.522728 + ], + [ + -73.509633, + 45.523397 + ], + [ + -73.509691, + 45.523507 + ], + [ + -73.509731, + 45.523583 + ], + [ + -73.509969, + 45.524042 + ], + [ + -73.510116, + 45.524325 + ], + [ + -73.510188, + 45.524465 + ], + [ + -73.510373, + 45.525036 + ], + [ + -73.510439, + 45.525351 + ], + [ + -73.510453, + 45.525414 + ], + [ + -73.510529, + 45.525734 + ], + [ + -73.510565, + 45.526126 + ], + [ + -73.510579, + 45.526273 + ], + [ + -73.510562, + 45.527029 + ], + [ + -73.510547, + 45.527214 + ], + [ + -73.51052, + 45.52743 + ], + [ + -73.51052, + 45.527436 + ], + [ + -73.510528, + 45.527565 + ], + [ + -73.510548, + 45.527677 + ], + [ + -73.510563, + 45.527749 + ], + [ + -73.510557, + 45.527853 + ], + [ + -73.510522, + 45.52797 + ], + [ + -73.510476, + 45.528037 + ], + [ + -73.510429, + 45.528114 + ], + [ + -73.510285, + 45.528097 + ], + [ + -73.510194, + 45.528086 + ], + [ + -73.510077, + 45.528048 + ], + [ + -73.509251, + 45.52778 + ], + [ + -73.507506, + 45.527213 + ], + [ + -73.507316, + 45.527151 + ], + [ + -73.506756, + 45.526962 + ], + [ + -73.506719, + 45.527057 + ], + [ + -73.50664, + 45.527183 + ], + [ + -73.506547, + 45.527291 + ], + [ + -73.50641, + 45.527444 + ], + [ + -73.506327, + 45.527507 + ], + [ + -73.506169, + 45.527714 + ], + [ + -73.505994, + 45.527977 + ], + [ + -73.505923, + 45.528082 + ], + [ + -73.505501, + 45.528735 + ], + [ + -73.505037, + 45.529409 + ], + [ + -73.504996, + 45.529468 + ], + [ + -73.504493, + 45.530197 + ], + [ + -73.504171, + 45.530673 + ], + [ + -73.504137, + 45.530724 + ], + [ + -73.504093, + 45.530787 + ], + [ + -73.503599, + 45.531497 + ], + [ + -73.503279, + 45.531968 + ], + [ + -73.503223, + 45.532051 + ], + [ + -73.502833, + 45.532654 + ], + [ + -73.502233, + 45.53346 + ], + [ + -73.502157, + 45.533563 + ], + [ + -73.501739, + 45.534094 + ], + [ + -73.50129, + 45.534656 + ], + [ + -73.50124, + 45.534719 + ], + [ + -73.500783, + 45.535317 + ], + [ + -73.50017, + 45.536064 + ], + [ + -73.499655, + 45.536682 + ], + [ + -73.499604, + 45.536744 + ], + [ + -73.499534, + 45.536807 + ], + [ + -73.499435, + 45.536897 + ], + [ + -73.49936, + 45.536964 + ], + [ + -73.498721, + 45.537445 + ], + [ + -73.497037, + 45.538941 + ], + [ + -73.496933, + 45.539034 + ], + [ + -73.496814, + 45.538963 + ], + [ + -73.496516, + 45.538786 + ], + [ + -73.495691, + 45.538291 + ], + [ + -73.494803, + 45.53776 + ], + [ + -73.4947, + 45.537693 + ], + [ + -73.494427, + 45.537972 + ], + [ + -73.494245, + 45.538158 + ], + [ + -73.493408, + 45.539015 + ], + [ + -73.493383, + 45.53904 + ], + [ + -73.492739, + 45.539699 + ], + [ + -73.492049, + 45.540404 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.491774, + 45.540689 + ], + [ + -73.491536, + 45.540936 + ], + [ + -73.491291, + 45.541175 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491035, + 45.541427 + ], + [ + -73.491084, + 45.541584 + ], + [ + -73.491099, + 45.541724 + ], + [ + -73.491103, + 45.541803 + ], + [ + -73.491106, + 45.541854 + ], + [ + -73.491092, + 45.542156 + ], + [ + -73.491081, + 45.542381 + ], + [ + -73.49104, + 45.543146 + ], + [ + -73.490998, + 45.543726 + ], + [ + -73.491037, + 45.544117 + ], + [ + -73.491071, + 45.544252 + ], + [ + -73.491113, + 45.544396 + ], + [ + -73.491272, + 45.544698 + ], + [ + -73.491367, + 45.544855 + ], + [ + -73.491449, + 45.544981 + ], + [ + -73.491608, + 45.545148 + ], + [ + -73.491886, + 45.545409 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.491911, + 45.546057 + ], + [ + -73.491829, + 45.546111 + ], + [ + -73.491635, + 45.546236 + ], + [ + -73.491431, + 45.546368 + ], + [ + -73.491216, + 45.546506 + ], + [ + -73.490714, + 45.547006 + ], + [ + -73.48951, + 45.547751 + ], + [ + -73.489407, + 45.547816 + ], + [ + -73.485955, + 45.549961 + ], + [ + -73.485528, + 45.550218 + ], + [ + -73.485059, + 45.550458 + ], + [ + -73.483956, + 45.551023 + ], + [ + -73.48427, + 45.551357 + ], + [ + -73.48453, + 45.551635 + ], + [ + -73.484618, + 45.551734 + ], + [ + -73.484693, + 45.55186 + ], + [ + -73.484759, + 45.552008 + ], + [ + -73.484816, + 45.552215 + ], + [ + -73.484834, + 45.552346 + ], + [ + -73.484812, + 45.552548 + ], + [ + -73.484776, + 45.552733 + ], + [ + -73.484668, + 45.55315 + ], + [ + -73.48441, + 45.55415 + ], + [ + -73.484362, + 45.554361 + ], + [ + -73.484318, + 45.554555 + ], + [ + -73.4843, + 45.554726 + ], + [ + -73.484291, + 45.554865 + ], + [ + -73.484305, + 45.555234 + ], + [ + -73.484308, + 45.555285 + ], + [ + -73.484331, + 45.555639 + ], + [ + -73.48434, + 45.555782 + ], + [ + -73.484366, + 45.556165 + ], + [ + -73.484397, + 45.556377 + ], + [ + -73.48445, + 45.556532 + ], + [ + -73.484458, + 45.556557 + ], + [ + -73.484529, + 45.556737 + ], + [ + -73.484586, + 45.556858 + ], + [ + -73.484746, + 45.557101 + ], + [ + -73.484811, + 45.5572 + ], + [ + -73.484876, + 45.557286 + ], + [ + -73.48555, + 45.5581 + ], + [ + -73.485664, + 45.558262 + ], + [ + -73.485726, + 45.558424 + ], + [ + -73.485748, + 45.558546 + ], + [ + -73.485765, + 45.558649 + ], + [ + -73.48573, + 45.558798 + ], + [ + -73.48566, + 45.558951 + ], + [ + -73.485563, + 45.559104 + ], + [ + -73.485413, + 45.559252 + ], + [ + -73.485085, + 45.559516 + ], + [ + -73.484971, + 45.559607 + ], + [ + -73.48489, + 45.559675 + ], + [ + -73.484312, + 45.560233 + ], + [ + -73.484078, + 45.560521 + ], + [ + -73.484025, + 45.56059 + ], + [ + -73.483849, + 45.560818 + ], + [ + -73.483677, + 45.561074 + ], + [ + -73.483637, + 45.561133 + ], + [ + -73.483578, + 45.561221 + ], + [ + -73.483026, + 45.562041 + ], + [ + -73.482901, + 45.562217 + ], + [ + -73.482854, + 45.562284 + ], + [ + -73.482493, + 45.562708 + ], + [ + -73.482425, + 45.562788 + ], + [ + -73.482409, + 45.562806 + ], + [ + -73.482342, + 45.562878 + ], + [ + -73.482066, + 45.563125 + ], + [ + -73.48196, + 45.56322 + ], + [ + -73.481758, + 45.563341 + ], + [ + -73.481506, + 45.563472 + ], + [ + -73.481447, + 45.563492 + ], + [ + -73.481361, + 45.563521 + ], + [ + -73.481206, + 45.563571 + ], + [ + -73.480981, + 45.563621 + ], + [ + -73.480428, + 45.563746 + ], + [ + -73.480284, + 45.563777 + ], + [ + -73.480145, + 45.563809 + ], + [ + -73.479899, + 45.563872 + ], + [ + -73.47976, + 45.563926 + ], + [ + -73.479667, + 45.563981 + ], + [ + -73.479595, + 45.564025 + ], + [ + -73.47922, + 45.564269 + ], + [ + -73.479021, + 45.564398 + ], + [ + -73.47891, + 45.564479 + ], + [ + -73.480326, + 45.56555 + ], + [ + -73.4804, + 45.565606 + ], + [ + -73.480492, + 45.565676 + ], + [ + -73.482494, + 45.567196 + ], + [ + -73.482644, + 45.56731 + ], + [ + -73.483836, + 45.568212 + ], + [ + -73.484053, + 45.568376 + ], + [ + -73.484489, + 45.568691 + ], + [ + -73.484675, + 45.568831 + ], + [ + -73.484833, + 45.568931 + ], + [ + -73.48493, + 45.568993 + ], + [ + -73.485344, + 45.569308 + ], + [ + -73.485559, + 45.569527 + ], + [ + -73.485603, + 45.569573 + ], + [ + -73.485637, + 45.569627 + ], + [ + -73.485662, + 45.569681 + ], + [ + -73.485673, + 45.569726 + ], + [ + -73.485673, + 45.569767 + ], + [ + -73.48567, + 45.569825 + ], + [ + -73.485662, + 45.569906 + ], + [ + -73.485627, + 45.569986 + ], + [ + -73.485389, + 45.570203 + ], + [ + -73.485317, + 45.570269 + ], + [ + -73.484918, + 45.570637 + ], + [ + -73.484877, + 45.570674 + ], + [ + -73.484851, + 45.570698 + ], + [ + -73.484572, + 45.570948 + ], + [ + -73.484207, + 45.571258 + ], + [ + -73.484112, + 45.571335 + ], + [ + -73.483947, + 45.571468 + ], + [ + -73.483827, + 45.571565 + ], + [ + -73.483769, + 45.571618 + ], + [ + -73.483704, + 45.571572 + ], + [ + -73.482973, + 45.571016 + ], + [ + -73.482377, + 45.570563 + ], + [ + -73.481862, + 45.570157 + ] + ] + }, + "id": 83, + "properties": { + "id": "031ab155-4186-4446-9bb8-adb6340e2848", + "data": { + "gtfs": { + "shape_id": "29_1_R" + }, + "segments": [ + { + "distanceMeters": 631, + "travelTimeSeconds": 92 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 549, + "travelTimeSeconds": 99 + }, + { + "distanceMeters": 848, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 304, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 67 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10167, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5993.066645974276, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.84, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 5.3, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.84 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "acabc807-b0f5-4579-b183-cef0484a7cc2", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "608948b3-8ac4-493b-a2b3-48bd266c12ab", + "e66fb997-f83d-42a0-a232-e5b0a94a0caf", + "aaca7ee9-974a-47d8-922b-2905590b6265", + "85d8d9e6-1387-4893-85de-43bc3c6ef93c", + "a9120d5d-ef7d-4b1d-b378-8c10096d7dd8", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "7dd9be07-f5cb-4f00-86f7-d61821676a78", + "94f3304d-66ff-42a6-bd12-7828cf5efc64", + "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", + "aa2ca75c-2e9d-4072-a531-98e6423e4538", + "0bf73f5f-c68a-4a9e-ae23-67c7ea602d08", + "43f366d5-ac33-41ca-be94-6282f0233cd1", + "09e0cc45-0105-4ba6-b7c5-86201ed79edf", + "3b0f936b-399c-4201-853b-8259a72529d0", + "91d2eb2a-bbfe-4d2d-887b-5ab9a417b7e2", + "dac4f8d3-28c8-4cad-bd6d-c9e7c6bfb82b", + "95af381b-5ec5-4208-a73c-8f86d7b96b62", + "ba31b8f9-0d39-4bdd-b821-6bb787db72e9", + "f45a38ac-0f3f-41d9-9da1-be7902cc983a", + "5917d490-78cc-4191-a19b-92a11e1dbb54", + "04b348b3-bb46-4177-9e4b-604bf8d96a58", + "df883f3f-5d1a-4061-a525-ec3be165a7a9", + "cae6ea67-63f0-47ac-84f1-96217eeb03b3", + "038a22ba-4928-42fc-aaed-50fbd831df37", + "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", + "fc1c0989-eb4e-4e77-b261-f952dd40601e", + "717d6b36-87fa-4b34-a418-6b20c1bc0d29", + "6db4cc67-3620-48bd-9c7c-28ab936b1e0b", + "a77c95ec-f278-40ce-a777-9f8b498d4367", + "f1b172ed-b501-4e36-bd1c-2425165ce50b", + "527ca44e-8da2-49e9-b2e4-033371d02c50", + "e6df12e3-4f2f-4277-aa8e-a04daab48336", + "9d19395e-81cd-4b78-af4a-b6c8e4259c9c", + "4f581479-b61b-497b-82d2-4c290ee6a857", + "84f7a7c0-b176-49cc-89e3-6756a3c3e4cc", + "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", + "0e909db9-b45c-44fa-bfff-a89f751e1acf", + "1c1d06bf-7e76-429d-9eb4-4a4d4d2842d4", + "24527bed-7ea6-44d6-b6db-18ac609f4938", + "ef393841-8a29-4383-a7b9-545addf087f6" + ], + "stops": [], + "line_id": "0d69f146-d423-4ce1-8347-91d9b5165fe2", + "segments": [ + 0, + 39, + 46, + 53, + 55, + 57, + 66, + 74, + 80, + 86, + 92, + 98, + 103, + 114, + 115, + 124, + 127, + 130, + 134, + 137, + 140, + 144, + 150, + 157, + 160, + 162, + 173, + 190, + 200, + 209, + 216, + 225, + 237, + 244, + 250, + 261, + 269, + 274, + 275, + 277, + 284, + 301 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 83, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.481862, + 45.570157 + ], + [ + -73.481822, + 45.570126 + ], + [ + -73.481257, + 45.569712 + ], + [ + -73.48061, + 45.569217 + ], + [ + -73.480428, + 45.569077 + ], + [ + -73.47867, + 45.567732 + ], + [ + -73.47894, + 45.567404 + ], + [ + -73.479664, + 45.56659 + ], + [ + -73.47987, + 45.56636 + ], + [ + -73.479946, + 45.566274 + ], + [ + -73.480076, + 45.566265 + ], + [ + -73.480517, + 45.566553 + ], + [ + -73.48115, + 45.567044 + ], + [ + -73.481186, + 45.567156 + ], + [ + -73.481181, + 45.5673 + ], + [ + -73.481322, + 45.567426 + ], + [ + -73.481736, + 45.56774 + ], + [ + -73.481834, + 45.567813 + ], + [ + -73.482513, + 45.567391 + ], + [ + -73.482644, + 45.56731 + ], + [ + -73.482793, + 45.567251 + ], + [ + -73.481602, + 45.56635 + ], + [ + -73.4815, + 45.566273 + ], + [ + -73.480444, + 45.565474 + ], + [ + -73.480073, + 45.565193 + ], + [ + -73.479021, + 45.564398 + ], + [ + -73.477591, + 45.5633 + ], + [ + -73.477496, + 45.563228 + ], + [ + -73.476819, + 45.562716 + ], + [ + -73.475938, + 45.562049 + ], + [ + -73.475231, + 45.561513 + ], + [ + -73.474585, + 45.561026 + ], + [ + -73.474358, + 45.560854 + ], + [ + -73.474349, + 45.560847 + ], + [ + -73.474262, + 45.560781 + ], + [ + -73.473051, + 45.559853 + ], + [ + -73.472951, + 45.559778 + ], + [ + -73.47264, + 45.559544 + ], + [ + -73.472285, + 45.559277 + ], + [ + -73.471768, + 45.558881 + ], + [ + -73.471028, + 45.558322 + ], + [ + -73.471824, + 45.557823 + ], + [ + -73.472324, + 45.557504 + ], + [ + -73.472479, + 45.557405 + ], + [ + -73.472629, + 45.557279 + ], + [ + -73.472632, + 45.557275 + ], + [ + -73.473662, + 45.556622 + ], + [ + -73.473763, + 45.556559 + ], + [ + -73.475452, + 45.555449 + ], + [ + -73.475549, + 45.55539 + ], + [ + -73.47589, + 45.555179 + ], + [ + -73.47658, + 45.554819 + ], + [ + -73.47721, + 45.554495 + ], + [ + -73.478403, + 45.55387 + ], + [ + -73.47852, + 45.553811 + ], + [ + -73.478898, + 45.553619 + ], + [ + -73.479586, + 45.553272 + ], + [ + -73.480374, + 45.552853 + ], + [ + -73.480484, + 45.552799 + ], + [ + -73.482032, + 45.552008 + ], + [ + -73.482067, + 45.551991 + ], + [ + -73.482159, + 45.551945 + ], + [ + -73.483045, + 45.55149 + ], + [ + -73.483956, + 45.551023 + ], + [ + -73.485059, + 45.550458 + ], + [ + -73.485528, + 45.550218 + ], + [ + -73.485955, + 45.549961 + ], + [ + -73.487162, + 45.549211 + ], + [ + -73.489407, + 45.547816 + ], + [ + -73.48951, + 45.547751 + ], + [ + -73.489875, + 45.547525 + ], + [ + -73.490714, + 45.547006 + ], + [ + -73.491216, + 45.546506 + ], + [ + -73.491431, + 45.546368 + ], + [ + -73.491829, + 45.546111 + ], + [ + -73.491911, + 45.546057 + ], + [ + -73.492309, + 45.545807 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.491356, + 45.541251 + ], + [ + -73.491461, + 45.541175 + ], + [ + -73.491486, + 45.541152 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.492859, + 45.539758 + ], + [ + -73.493745, + 45.538847 + ], + [ + -73.494803, + 45.53776 + ], + [ + -73.495499, + 45.537063 + ], + [ + -73.496193, + 45.536366 + ], + [ + -73.496375, + 45.536444 + ], + [ + -73.498721, + 45.537445 + ], + [ + -73.498812, + 45.537377 + ], + [ + -73.49936, + 45.536964 + ], + [ + -73.499435, + 45.536897 + ], + [ + -73.499534, + 45.536807 + ], + [ + -73.499604, + 45.536744 + ], + [ + -73.499739, + 45.536582 + ], + [ + -73.50017, + 45.536064 + ], + [ + -73.500783, + 45.535317 + ], + [ + -73.50124, + 45.534719 + ], + [ + -73.501739, + 45.534094 + ], + [ + -73.502157, + 45.533563 + ], + [ + -73.502545, + 45.533042 + ], + [ + -73.502833, + 45.532654 + ], + [ + -73.503223, + 45.532051 + ], + [ + -73.503599, + 45.531497 + ], + [ + -73.504093, + 45.530787 + ], + [ + -73.504137, + 45.530724 + ], + [ + -73.504493, + 45.530197 + ], + [ + -73.504996, + 45.529468 + ], + [ + -73.505501, + 45.528735 + ], + [ + -73.505923, + 45.528082 + ], + [ + -73.506169, + 45.527714 + ], + [ + -73.506327, + 45.527507 + ], + [ + -73.50641, + 45.527444 + ], + [ + -73.506547, + 45.527291 + ], + [ + -73.50664, + 45.527183 + ], + [ + -73.506719, + 45.527057 + ], + [ + -73.506756, + 45.526962 + ], + [ + -73.507316, + 45.527151 + ], + [ + -73.510077, + 45.528048 + ], + [ + -73.510194, + 45.528086 + ], + [ + -73.510285, + 45.528134 + ], + [ + -73.510385, + 45.528186 + ], + [ + -73.510473, + 45.528213 + ], + [ + -73.510517, + 45.528141 + ], + [ + -73.510544, + 45.528105 + ], + [ + -73.510616, + 45.52801 + ], + [ + -73.510673, + 45.527898 + ], + [ + -73.510724, + 45.527781 + ], + [ + -73.510769, + 45.527602 + ], + [ + -73.510842, + 45.527313 + ], + [ + -73.510878, + 45.526809 + ], + [ + -73.510904, + 45.526386 + ], + [ + -73.510825, + 45.525626 + ], + [ + -73.510791, + 45.525473 + ], + [ + -73.510559, + 45.524591 + ], + [ + -73.510103, + 45.523637 + ], + [ + -73.510027, + 45.523495 + ], + [ + -73.509474, + 45.522467 + ], + [ + -73.509184, + 45.521936 + ], + [ + -73.509122, + 45.521825 + ], + [ + -73.509119, + 45.521819 + ], + [ + -73.508895, + 45.52141 + ], + [ + -73.508774, + 45.52119 + ], + [ + -73.50866, + 45.520978 + ], + [ + -73.508641, + 45.520945 + ], + [ + -73.508615, + 45.520897 + ], + [ + -73.507805, + 45.519327 + ], + [ + -73.507767, + 45.519257 + ], + [ + -73.507088, + 45.517986 + ], + [ + -73.50664, + 45.517136 + ], + [ + -73.506515, + 45.516915 + ], + [ + -73.506521, + 45.516821 + ], + [ + -73.506537, + 45.516798 + ], + [ + -73.506565, + 45.51678 + ], + [ + -73.506617, + 45.516753 + ], + [ + -73.506766, + 45.516758 + ], + [ + -73.507482, + 45.51699 + ], + [ + -73.509783, + 45.517734 + ], + [ + -73.512173, + 45.518508 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520861, + 45.524416 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.520811, + 45.523427 + ] + ] + }, + "id": 84, + "properties": { + "id": "36f4b167-2c1e-45ed-8960-9b40cc597cd1", + "data": { + "gtfs": { + "shape_id": "29_1_A" + }, + "segments": [ + { + "distanceMeters": 143, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 403, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 832, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 956, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 846, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 553, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 875, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 691, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 451, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 1147, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 770, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 2395, + "travelTimeSeconds": 120 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10737, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2870.8809623402344, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 19.88, + "travelTimeWithoutDwellTimesSeconds": 540, + "operatingTimeWithLayoverTimeSeconds": 720, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 540, + "operatingSpeedWithLayoverMetersPerSecond": 14.91, + "averageSpeedWithoutDwellTimesMetersPerSecond": 19.88 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "ef393841-8a29-4383-a7b9-545addf087f6", + "ef393841-8a29-4383-a7b9-545addf087f6", + "281f350b-faae-4302-bcde-cc7831951682", + "59b13438-eb20-4204-b1fd-fe2ed2a80258", + "bc413ffa-dc65-4fc7-93f0-58dddebb3024", + "ce65fcd5-5449-4ede-b81b-9d2cd21731a7", + "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", + "08472942-a2a0-45ef-be22-2dc8587875b6", + "768e4b50-abe9-456e-9460-90d8cbf65940", + "b15716e4-5653-476c-ba57-960f89ea42d5", + "2332d398-d991-4d3f-9d67-38ab4930ac25", + "f5001112-5d1e-4489-87be-a34e9ded0d46", + "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", + "a388aa98-4c24-4671-8a33-a0e95f9d5ada", + "fc1c0989-eb4e-4e77-b261-f952dd40601e", + "2d7687a5-f458-4ce1-a3df-9639d89c0154" + ], + "stops": [], + "line_id": "0d69f146-d423-4ce1-8347-91d9b5165fe2", + "segments": [ + 0, + 3, + 8, + 16, + 21, + 32, + 37, + 54, + 67, + 76, + 103, + 114, + 120, + 148, + 164 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 84, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469043, + 45.46624 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469327, + 45.468092 + ], + [ + -73.469492, + 45.4681 + ], + [ + -73.469751, + 45.468115 + ], + [ + -73.470299, + 45.468145 + ], + [ + -73.471063, + 45.468181 + ], + [ + -73.471238, + 45.46819 + ], + [ + -73.471526, + 45.468208 + ], + [ + -73.472194, + 45.468244 + ], + [ + -73.472429, + 45.468255 + ], + [ + -73.472597, + 45.468262 + ], + [ + -73.472728, + 45.468276 + ], + [ + -73.472834, + 45.468294 + ], + [ + -73.472877, + 45.468307 + ], + [ + -73.473025, + 45.468348 + ], + [ + -73.473214, + 45.468424 + ], + [ + -73.473671, + 45.468604 + ], + [ + -73.473673, + 45.468604 + ], + [ + -73.473905, + 45.468649 + ], + [ + -73.474077, + 45.468676 + ], + [ + -73.474259, + 45.46869 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474366, + 45.468872 + ], + [ + -73.474292, + 45.469387 + ], + [ + -73.474257, + 45.469566 + ], + [ + -73.474234, + 45.469689 + ], + [ + -73.474156, + 45.470095 + ], + [ + -73.474035, + 45.470724 + ], + [ + -73.473974, + 45.47107 + ], + [ + -73.473942, + 45.471336 + ], + [ + -73.473932, + 45.471601 + ], + [ + -73.473938, + 45.471698 + ], + [ + -73.473947, + 45.471826 + ], + [ + -73.473986, + 45.472118 + ], + [ + -73.473998, + 45.472177 + ], + [ + -73.474046, + 45.47242 + ], + [ + -73.474106, + 45.47264 + ], + [ + -73.474275, + 45.473063 + ], + [ + -73.474463, + 45.473437 + ], + [ + -73.474513, + 45.473518 + ], + [ + -73.474653, + 45.473477 + ], + [ + -73.474959, + 45.473425 + ], + [ + -73.475204, + 45.473383 + ], + [ + -73.475244, + 45.473378 + ], + [ + -73.4754, + 45.473356 + ], + [ + -73.47558, + 45.473334 + ], + [ + -73.476017, + 45.473311 + ], + [ + -73.478743, + 45.473401 + ], + [ + -73.478906, + 45.473406 + ], + [ + -73.482478, + 45.473519 + ], + [ + -73.482622, + 45.473524 + ], + [ + -73.483288, + 45.473542 + ], + [ + -73.483471, + 45.473542 + ], + [ + -73.483606, + 45.473542 + ], + [ + -73.484062, + 45.473524 + ], + [ + -73.484567, + 45.473475 + ], + [ + -73.484784, + 45.473448 + ], + [ + -73.485243, + 45.473362 + ], + [ + -73.485556, + 45.473295 + ], + [ + -73.485874, + 45.4732 + ], + [ + -73.485892, + 45.473195 + ], + [ + -73.485995, + 45.473164 + ], + [ + -73.486151, + 45.473119 + ], + [ + -73.486787, + 45.472912 + ], + [ + -73.486715, + 45.472804 + ], + [ + -73.486545, + 45.47257 + ], + [ + -73.486541, + 45.472564 + ], + [ + -73.486282, + 45.472161 + ], + [ + -73.486077, + 45.471855 + ], + [ + -73.486023, + 45.471762 + ], + [ + -73.485922, + 45.47159 + ], + [ + -73.485859, + 45.471396 + ], + [ + -73.485933, + 45.470276 + ], + [ + -73.485957, + 45.470015 + ], + [ + -73.485925, + 45.469758 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.485815, + 45.46921 + ], + [ + -73.486087, + 45.469094 + ], + [ + -73.486363, + 45.468976 + ], + [ + -73.486598, + 45.468913 + ], + [ + -73.486742, + 45.468895 + ], + [ + -73.486913, + 45.468899 + ], + [ + -73.487892, + 45.468935 + ], + [ + -73.488642, + 45.468977 + ], + [ + -73.488788, + 45.468985 + ], + [ + -73.492287, + 45.469102 + ], + [ + -73.492434, + 45.469107 + ], + [ + -73.4927, + 45.469111 + ], + [ + -73.493631, + 45.469155 + ], + [ + -73.49395, + 45.46917 + ], + [ + -73.494075, + 45.469188 + ], + [ + -73.494154, + 45.469237 + ], + [ + -73.494556, + 45.469962 + ], + [ + -73.494611, + 45.470061 + ], + [ + -73.494791, + 45.470417 + ], + [ + -73.494862, + 45.47056 + ], + [ + -73.49485, + 45.470814 + ], + [ + -73.494847, + 45.470884 + ], + [ + -73.49484, + 45.471001 + ], + [ + -73.495967, + 45.471037 + ], + [ + -73.496018, + 45.471127 + ], + [ + -73.496042, + 45.471167 + ], + [ + -73.496235, + 45.471478 + ], + [ + -73.496437, + 45.471928 + ], + [ + -73.496811, + 45.472579 + ], + [ + -73.496974, + 45.472864 + ], + [ + -73.497891, + 45.47451 + ], + [ + -73.498064, + 45.474821 + ], + [ + -73.497243, + 45.474807 + ], + [ + -73.49673, + 45.474753 + ], + [ + -73.496473, + 45.474726 + ], + [ + -73.495455, + 45.474677 + ], + [ + -73.49535, + 45.474671 + ], + [ + -73.494958, + 45.47465 + ], + [ + -73.494447, + 45.474632 + ], + [ + -73.493572, + 45.474611 + ], + [ + -73.49348, + 45.474609 + ], + [ + -73.492987, + 45.474582 + ], + [ + -73.492833, + 45.474564 + ], + [ + -73.492566, + 45.474483 + ], + [ + -73.4924, + 45.474429 + ], + [ + -73.492221, + 45.474321 + ], + [ + -73.491964, + 45.474047 + ], + [ + -73.491842, + 45.473885 + ], + [ + -73.491654, + 45.473675 + ], + [ + -73.491514, + 45.47352 + ], + [ + -73.491175, + 45.473666 + ], + [ + -73.490727, + 45.473858 + ], + [ + -73.490186, + 45.474073 + ], + [ + -73.489892, + 45.474191 + ], + [ + -73.489482, + 45.474308 + ], + [ + -73.48921, + 45.474343 + ], + [ + -73.488939, + 45.474348 + ], + [ + -73.488579, + 45.47433 + ], + [ + -73.48828, + 45.474348 + ], + [ + -73.487939, + 45.474393 + ], + [ + -73.487696, + 45.474462 + ], + [ + -73.487656, + 45.474474 + ], + [ + -73.487464, + 45.474541 + ], + [ + -73.487385, + 45.474582 + ], + [ + -73.487281, + 45.474457 + ], + [ + -73.486897, + 45.473997 + ], + [ + -73.486669, + 45.473713 + ], + [ + -73.486211, + 45.473189 + ], + [ + -73.486151, + 45.473119 + ], + [ + -73.48607, + 45.47302 + ], + [ + -73.485914, + 45.473065 + ], + [ + -73.485421, + 45.473196 + ], + [ + -73.485194, + 45.47325 + ], + [ + -73.484873, + 45.473304 + ], + [ + -73.484839, + 45.473311 + ], + [ + -73.484747, + 45.473331 + ], + [ + -73.484539, + 45.473353 + ], + [ + -73.484309, + 45.47338 + ], + [ + -73.484047, + 45.473403 + ], + [ + -73.483831, + 45.473413 + ], + [ + -73.483761, + 45.473416 + ], + [ + -73.483613, + 45.473425 + ], + [ + -73.48263, + 45.473402 + ], + [ + -73.479098, + 45.47329 + ], + [ + -73.478915, + 45.473285 + ], + [ + -73.476016, + 45.473194 + ], + [ + -73.47556, + 45.473217 + ], + [ + -73.475367, + 45.473239 + ], + [ + -73.475163, + 45.47327 + ], + [ + -73.474761, + 45.473356 + ], + [ + -73.474613, + 45.473387 + ], + [ + -73.474495, + 45.473154 + ], + [ + -73.474431, + 45.473027 + ], + [ + -73.474274, + 45.472609 + ], + [ + -73.474213, + 45.472397 + ], + [ + -73.474173, + 45.472208 + ], + [ + -73.474165, + 45.472163 + ], + [ + -73.474141, + 45.472028 + ], + [ + -73.474138, + 45.472013 + ], + [ + -73.47411, + 45.47183 + ], + [ + -73.474121, + 45.471228 + ], + [ + -73.474166, + 45.470967 + ], + [ + -73.474399, + 45.469698 + ], + [ + -73.474423, + 45.469567 + ], + [ + -73.474454, + 45.469396 + ], + [ + -73.474489, + 45.469055 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474241, + 45.46856 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.473198, + 45.468293 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.471421, + 45.468098 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469574, + 45.467137 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469043, + 45.46624 + ] + ] + }, + "id": 85, + "properties": { + "id": "14446196-fe03-4817-9409-2e400a919923", + "data": { + "gtfs": { + "shape_id": "30_1_A" + }, + "segments": [ + { + "distanceMeters": 629, + "travelTimeSeconds": 89 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 329, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 92 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 623, + "travelTimeSeconds": 267 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7703, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 0, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.42, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 5.58, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.42 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", + "3a8b9936-4595-4770-a3f4-b31253602356", + "80a85fd6-8b7e-4c4c-b616-26338ab496f1", + "2ef5dac7-c226-43bb-8534-6642e7a8ab89", + "a9b02686-8465-48b9-89ba-773a03aed1e8", + "17fd1ec9-db8e-4d18-a174-72ce7cb4c434", + "7e4b21bb-20d6-4104-9b98-071226922d49", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "d83daa69-bf92-4b93-8173-1c0fd22cbec0", + "66a0749c-2a5b-458d-b059-307f555cb93a", + "c5effd0a-a9b0-4cfe-8176-06c99313f58b", + "e7a825d7-e677-4fe7-b1ef-b6db556d3c70", + "9e1adf1c-c578-4c50-baba-31b7f0c157c4", + "2e10a277-1746-4c1f-9808-3de94d853988", + "28d21225-939d-4260-9ed4-5c109f412ad9", + "be011751-8885-454f-b767-5c0f1402d83f", + "c6165892-3719-417f-8d25-92e65471b42c", + "6735199f-47fc-47db-9116-7c110cca8945", + "6e4c328c-6fba-4e81-b589-59318e11a37a", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", + "2ef5dac7-c226-43bb-8534-6642e7a8ab89", + "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", + "3a8b9936-4595-4770-a3f4-b31253602356", + "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "29cba7e4-8bdf-4f18-8ad1-43c3e8462643", + "segments": [ + 0, + 21, + 25, + 32, + 40, + 47, + 59, + 63, + 65, + 76, + 85, + 93, + 99, + 101, + 108, + 112, + 120, + 122, + 128, + 131, + 140, + 144, + 152, + 159, + 171, + 175, + 181, + 190, + 195, + 207, + 214 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 85, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.494712, + 45.447919 + ], + [ + -73.494697, + 45.447893 + ], + [ + -73.494624, + 45.447861 + ], + [ + -73.494525, + 45.447852 + ], + [ + -73.494476, + 45.447857 + ], + [ + -73.494435, + 45.447875 + ], + [ + -73.49439, + 45.447915 + ], + [ + -73.494388, + 45.447966 + ], + [ + -73.494386, + 45.448037 + ], + [ + -73.494428, + 45.448163 + ], + [ + -73.494462, + 45.448248 + ], + [ + -73.494489, + 45.448329 + ], + [ + -73.494471, + 45.448874 + ], + [ + -73.494276, + 45.449063 + ], + [ + -73.494147, + 45.449144 + ], + [ + -73.494018, + 45.449216 + ], + [ + -73.494109, + 45.449297 + ], + [ + -73.494201, + 45.4494 + ], + [ + -73.494247, + 45.449472 + ], + [ + -73.494296, + 45.449557 + ], + [ + -73.494313, + 45.449602 + ], + [ + -73.494327, + 45.449665 + ], + [ + -73.494377, + 45.450487 + ], + [ + -73.494417, + 45.451142 + ], + [ + -73.494427, + 45.451304 + ], + [ + -73.494474, + 45.452091 + ], + [ + -73.49448, + 45.452725 + ], + [ + -73.494479, + 45.452741 + ], + [ + -73.494478, + 45.452891 + ], + [ + -73.494465, + 45.45381 + ], + [ + -73.494454, + 45.45461 + ], + [ + -73.494465, + 45.454948 + ], + [ + -73.494524, + 45.455177 + ], + [ + -73.49453, + 45.455198 + ], + [ + -73.494622, + 45.45551 + ], + [ + -73.494635, + 45.455658 + ], + [ + -73.494605, + 45.455874 + ], + [ + -73.494534, + 45.456009 + ], + [ + -73.494391, + 45.456194 + ], + [ + -73.493984, + 45.456569 + ], + [ + -73.493865, + 45.45668 + ], + [ + -73.493654, + 45.456851 + ], + [ + -73.493562, + 45.456918 + ], + [ + -73.493458, + 45.456968 + ], + [ + -73.493388, + 45.456981 + ], + [ + -73.493324, + 45.45699 + ], + [ + -73.493169, + 45.456999 + ], + [ + -73.493073, + 45.457004 + ], + [ + -73.492597, + 45.457018 + ], + [ + -73.492295, + 45.457024 + ], + [ + -73.492185, + 45.457026 + ], + [ + -73.492061, + 45.457031 + ], + [ + -73.491825, + 45.457026 + ], + [ + -73.491366, + 45.457004 + ], + [ + -73.489993, + 45.456945 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.488779, + 45.456899 + ], + [ + -73.488212, + 45.456877 + ], + [ + -73.486514, + 45.456819 + ], + [ + -73.486364, + 45.456814 + ], + [ + -73.485148, + 45.456777 + ], + [ + -73.483698, + 45.456733 + ], + [ + -73.482894, + 45.456698 + ], + [ + -73.482756, + 45.456692 + ], + [ + -73.480001, + 45.456616 + ], + [ + -73.479792, + 45.456611 + ], + [ + -73.479622, + 45.456606 + ], + [ + -73.475848, + 45.456479 + ], + [ + -73.475839, + 45.456592 + ], + [ + -73.475813, + 45.456928 + ], + [ + -73.475794, + 45.457174 + ], + [ + -73.475778, + 45.457388 + ], + [ + -73.475737, + 45.458081 + ], + [ + -73.475737, + 45.458153 + ], + [ + -73.475692, + 45.458216 + ], + [ + -73.475621, + 45.458261 + ], + [ + -73.475551, + 45.458302 + ], + [ + -73.475386, + 45.45836 + ], + [ + -73.475117, + 45.458356 + ], + [ + -73.474813, + 45.458351 + ], + [ + -73.47477, + 45.459147 + ], + [ + -73.474311, + 45.459493 + ], + [ + -73.474131, + 45.459629 + ], + [ + -73.473576, + 45.460056 + ], + [ + -73.473509, + 45.460119 + ], + [ + -73.473517, + 45.460168 + ], + [ + -73.473556, + 45.460227 + ], + [ + -73.473658, + 45.46029 + ], + [ + -73.475666, + 45.461613 + ], + [ + -73.476381, + 45.462061 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476178, + 45.462316 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.474375, + 45.46823 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474126, + 45.468548 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.473204, + 45.468295 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.471427, + 45.468098 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469574, + 45.467137 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.46908, + 45.465912 + ], + [ + -73.469107, + 45.46587 + ] + ] + }, + "id": 86, + "properties": { + "id": "dcedba9b-6b53-4153-b7ee-1b86d8f1b849", + "data": { + "gtfs": { + "shape_id": "31_1_A" + }, + "segments": [ + { + "distanceMeters": 339, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 91, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 119, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 402, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 407, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 738, + "travelTimeSeconds": 132 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 654, + "travelTimeSeconds": 118 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 4955, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2843.9841808748993, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.9, + "travelTimeWithoutDwellTimesSeconds": 840, + "operatingTimeWithLayoverTimeSeconds": 1020, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 840, + "operatingSpeedWithLayoverMetersPerSecond": 4.86, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.9 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "127a18dc-2231-401d-91c9-c547e1fe457d", + "a0c55e08-a29d-42c6-a917-251b8ca35935", + "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", + "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", + "a3a2d6d0-5008-4980-ba25-7b3a00feca26", + "81232cdf-e1d4-440c-91bd-cfdc85007144", + "3ebb53d0-1c64-4727-874b-d39ed1870cae", + "16a4cfe7-4b02-454a-8a07-9501f3c5e0c5", + "984def83-5f59-45f7-bb33-ed1dbca30502", + "1d56d4cb-0ab2-44f2-924d-aa119de8c362", + "ecb00316-793a-4c41-88bd-3870bea4d999", + "9c3366b7-c832-4b7b-8636-18bed8c1e2de", + "1782a1a7-eddc-4228-a7a8-bf733f339e68", + "54e2350c-1dbf-481f-9610-f78cb1a71b49", + "ef6b8e74-cf7c-405a-a81c-caa03b93a96a", + "ff23cabb-ca11-421b-a582-f6413aa21fa0", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "dc5073fb-7496-4e44-b1ed-fbf8a3b6373d", + "segments": [ + 0, + 22, + 24, + 27, + 29, + 33, + 39, + 49, + 54, + 58, + 62, + 64, + 70, + 78, + 81, + 89, + 118, + 127, + 134 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 86, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469107, + 45.46587 + ], + [ + -73.469152, + 45.465801 + ], + [ + -73.469114, + 45.465711 + ], + [ + -73.469034, + 45.465669 + ], + [ + -73.468913, + 45.46567 + ], + [ + -73.468751, + 45.465752 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469327, + 45.468092 + ], + [ + -73.469492, + 45.4681 + ], + [ + -73.470024, + 45.46813 + ], + [ + -73.470299, + 45.468145 + ], + [ + -73.471058, + 45.468181 + ], + [ + -73.471238, + 45.46819 + ], + [ + -73.471526, + 45.468208 + ], + [ + -73.472194, + 45.468244 + ], + [ + -73.472438, + 45.468255 + ], + [ + -73.472597, + 45.468262 + ], + [ + -73.472728, + 45.468276 + ], + [ + -73.472834, + 45.468294 + ], + [ + -73.472877, + 45.468307 + ], + [ + -73.473025, + 45.468348 + ], + [ + -73.473214, + 45.468424 + ], + [ + -73.473673, + 45.468604 + ], + [ + -73.473905, + 45.468649 + ], + [ + -73.474077, + 45.468676 + ], + [ + -73.474259, + 45.46869 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474544, + 45.468492 + ], + [ + -73.474545, + 45.468488 + ], + [ + -73.474528, + 45.468236 + ], + [ + -73.474508, + 45.467936 + ], + [ + -73.474508, + 45.467294 + ], + [ + -73.474542, + 45.4665 + ], + [ + -73.474546, + 45.466404 + ], + [ + -73.474554, + 45.466199 + ], + [ + -73.474621, + 45.465194 + ], + [ + -73.474664, + 45.464506 + ], + [ + -73.474669, + 45.464397 + ], + [ + -73.474734, + 45.464067 + ], + [ + -73.474884, + 45.463697 + ], + [ + -73.475002, + 45.463492 + ], + [ + -73.47522, + 45.463212 + ], + [ + -73.475408, + 45.463039 + ], + [ + -73.47556, + 45.462909 + ], + [ + -73.475821, + 45.462711 + ], + [ + -73.476105, + 45.462495 + ], + [ + -73.476557, + 45.462176 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.47607, + 45.461866 + ], + [ + -73.475666, + 45.461613 + ], + [ + -73.473658, + 45.46029 + ], + [ + -73.473556, + 45.460227 + ], + [ + -73.473517, + 45.460168 + ], + [ + -73.473509, + 45.460119 + ], + [ + -73.473576, + 45.460056 + ], + [ + -73.474029, + 45.459707 + ], + [ + -73.474131, + 45.459629 + ], + [ + -73.47477, + 45.459147 + ], + [ + -73.474796, + 45.458672 + ], + [ + -73.474805, + 45.458502 + ], + [ + -73.474813, + 45.458351 + ], + [ + -73.475386, + 45.45836 + ], + [ + -73.475551, + 45.458302 + ], + [ + -73.475621, + 45.458261 + ], + [ + -73.475692, + 45.458216 + ], + [ + -73.475737, + 45.458153 + ], + [ + -73.475737, + 45.458081 + ], + [ + -73.475778, + 45.457388 + ], + [ + -73.475826, + 45.456757 + ], + [ + -73.475839, + 45.456592 + ], + [ + -73.476829, + 45.456625 + ], + [ + -73.479455, + 45.456713 + ], + [ + -73.479632, + 45.456719 + ], + [ + -73.479803, + 45.456723 + ], + [ + -73.482639, + 45.456832 + ], + [ + -73.482746, + 45.456836 + ], + [ + -73.483692, + 45.456872 + ], + [ + -73.485139, + 45.456916 + ], + [ + -73.486298, + 45.456952 + ], + [ + -73.48636, + 45.456954 + ], + [ + -73.488203, + 45.457017 + ], + [ + -73.489573, + 45.457064 + ], + [ + -73.489765, + 45.457071 + ], + [ + -73.491355, + 45.457125 + ], + [ + -73.491543, + 45.457127 + ], + [ + -73.491916, + 45.45713 + ], + [ + -73.492063, + 45.457125 + ], + [ + -73.492191, + 45.457112 + ], + [ + -73.492604, + 45.457095 + ], + [ + -73.492835, + 45.457085 + ], + [ + -73.493082, + 45.457085 + ], + [ + -73.493265, + 45.457076 + ], + [ + -73.493358, + 45.457067 + ], + [ + -73.493489, + 45.457062 + ], + [ + -73.49357, + 45.457044 + ], + [ + -73.493685, + 45.456995 + ], + [ + -73.493839, + 45.456873 + ], + [ + -73.493898, + 45.456821 + ], + [ + -73.493987, + 45.456743 + ], + [ + -73.494541, + 45.456266 + ], + [ + -73.494697, + 45.456063 + ], + [ + -73.494742, + 45.455982 + ], + [ + -73.494781, + 45.455901 + ], + [ + -73.494793, + 45.45582 + ], + [ + -73.494815, + 45.455658 + ], + [ + -73.494801, + 45.455497 + ], + [ + -73.494711, + 45.455185 + ], + [ + -73.4947, + 45.45515 + ], + [ + -73.494644, + 45.454934 + ], + [ + -73.494633, + 45.454606 + ], + [ + -73.494639, + 45.454202 + ], + [ + -73.494657, + 45.4529 + ], + [ + -73.494661, + 45.45272 + ], + [ + -73.494661, + 45.452693 + ], + [ + -73.494642, + 45.452086 + ], + [ + -73.494616, + 45.451642 + ], + [ + -73.494597, + 45.451326 + ], + [ + -73.494586, + 45.45114 + ], + [ + -73.494547, + 45.450511 + ], + [ + -73.494534, + 45.450314 + ], + [ + -73.494533, + 45.450291 + ], + [ + -73.494494, + 45.449652 + ], + [ + -73.494477, + 45.449575 + ], + [ + -73.494455, + 45.449517 + ], + [ + -73.494402, + 45.449423 + ], + [ + -73.494348, + 45.449342 + ], + [ + -73.494245, + 45.449225 + ], + [ + -73.494147, + 45.449144 + ], + [ + -73.494276, + 45.449063 + ], + [ + -73.494471, + 45.448874 + ], + [ + -73.494489, + 45.448329 + ], + [ + -73.494627, + 45.448172 + ], + [ + -73.494714, + 45.448037 + ], + [ + -73.494728, + 45.447947 + ], + [ + -73.494712, + 45.447919 + ] + ] + }, + "id": 87, + "properties": { + "id": "16f93891-111a-4b20-bf5c-e0fbf8b36459", + "data": { + "gtfs": { + "shape_id": "31_2_R" + }, + "segments": [ + { + "distanceMeters": 662, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 1001, + "travelTimeSeconds": 102 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 195, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 71 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 4997, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2843.9841808748993, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.95, + "travelTimeWithoutDwellTimesSeconds": 840, + "operatingTimeWithLayoverTimeSeconds": 1020, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 840, + "operatingSpeedWithLayoverMetersPerSecond": 4.9, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.95 + }, + "mode": "bus", + "name": "de Rome / St-Laurent", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "ef6b8e74-cf7c-405a-a81c-caa03b93a96a", + "54e2350c-1dbf-481f-9610-f78cb1a71b49", + "1782a1a7-eddc-4228-a7a8-bf733f339e68", + "9a86a407-515f-4b5e-8a56-9a4c52c91c96", + "ecb00316-793a-4c41-88bd-3870bea4d999", + "1d56d4cb-0ab2-44f2-924d-aa119de8c362", + "2f68c8b3-ace6-41af-8853-d72177e835fd", + "69fd316d-244b-48fa-871d-645ac04399fc", + "d8eae8f7-d8ed-4c6f-8280-28fd4b885b03", + "81232cdf-e1d4-440c-91bd-cfdc85007144", + "7ad52fd5-2149-40d5-ae51-5e78e11fdbc1", + "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", + "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", + "c25e5964-dcb2-42c5-8dcb-381856954cdc", + "127a18dc-2231-401d-91c9-c547e1fe457d" + ], + "stops": [], + "line_id": "dc5073fb-7496-4e44-b1ed-fbf8a3b6373d", + "segments": [ + 0, + 28, + 32, + 67, + 74, + 78, + 87, + 90, + 93, + 97, + 100, + 103, + 116, + 125, + 129, + 132, + 134, + 138 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 87, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.373402, + 45.474467 + ], + [ + -73.373508, + 45.474319 + ], + [ + -73.37362, + 45.474193 + ], + [ + -73.373694, + 45.474085 + ], + [ + -73.373933, + 45.473762 + ], + [ + -73.374049, + 45.473595 + ], + [ + -73.374374, + 45.473141 + ], + [ + -73.37528, + 45.471878 + ], + [ + -73.375836, + 45.471092 + ], + [ + -73.375891, + 45.471015 + ], + [ + -73.377848, + 45.468313 + ], + [ + -73.378046, + 45.468041 + ], + [ + -73.3781, + 45.467967 + ], + [ + -73.380064, + 45.465238 + ], + [ + -73.380225, + 45.465008 + ], + [ + -73.380313, + 45.464882 + ], + [ + -73.382026, + 45.462513 + ], + [ + -73.382106, + 45.462403 + ], + [ + -73.382221, + 45.462246 + ], + [ + -73.382279, + 45.462167 + ], + [ + -73.382765, + 45.462469 + ], + [ + -73.383093, + 45.462681 + ], + [ + -73.383388, + 45.462852 + ], + [ + -73.383811, + 45.463104 + ], + [ + -73.383987, + 45.463212 + ], + [ + -73.384113, + 45.463294 + ], + [ + -73.384301, + 45.463415 + ], + [ + -73.384394, + 45.463478 + ], + [ + -73.384483, + 45.463537 + ], + [ + -73.384869, + 45.463758 + ], + [ + -73.385651, + 45.464201 + ], + [ + -73.385776, + 45.464272 + ], + [ + -73.38684, + 45.464853 + ], + [ + -73.387555, + 45.46525 + ], + [ + -73.387669, + 45.465313 + ], + [ + -73.388483, + 45.465759 + ], + [ + -73.389138, + 45.46612 + ], + [ + -73.38988, + 45.466534 + ], + [ + -73.390262, + 45.466745 + ], + [ + -73.390354, + 45.466796 + ], + [ + -73.390424, + 45.466834 + ], + [ + -73.391099, + 45.467206 + ], + [ + -73.391994, + 45.467693 + ], + [ + -73.393092, + 45.468287 + ], + [ + -73.393732, + 45.46863 + ], + [ + -73.396144, + 45.469946 + ], + [ + -73.397056, + 45.470438 + ], + [ + -73.397163, + 45.470496 + ], + [ + -73.397862, + 45.470825 + ], + [ + -73.398503, + 45.471208 + ], + [ + -73.398786, + 45.471352 + ], + [ + -73.398824, + 45.471372 + ], + [ + -73.399097, + 45.471519 + ], + [ + -73.399156, + 45.471564 + ], + [ + -73.39922, + 45.471582 + ], + [ + -73.399274, + 45.471591 + ], + [ + -73.399342, + 45.471587 + ], + [ + -73.399667, + 45.471492 + ], + [ + -73.400031, + 45.471674 + ], + [ + -73.400137, + 45.471727 + ], + [ + -73.400955, + 45.472186 + ], + [ + -73.401756, + 45.472606 + ], + [ + -73.401771, + 45.472613 + ], + [ + -73.402701, + 45.473114 + ], + [ + -73.402861, + 45.4732 + ], + [ + -73.402925, + 45.473236 + ], + [ + -73.403012, + 45.473281 + ], + [ + -73.403898, + 45.473773 + ], + [ + -73.404553, + 45.474122 + ], + [ + -73.404642, + 45.474169 + ], + [ + -73.404723, + 45.474214 + ], + [ + -73.404728, + 45.474217 + ], + [ + -73.405388, + 45.474584 + ], + [ + -73.406182, + 45.475012 + ], + [ + -73.406593, + 45.475239 + ], + [ + -73.406966, + 45.475444 + ], + [ + -73.407442, + 45.475093 + ], + [ + -73.409542, + 45.473543 + ], + [ + -73.411465, + 45.472123 + ], + [ + -73.411574, + 45.472042 + ], + [ + -73.413909, + 45.470306 + ], + [ + -73.414113, + 45.470154 + ], + [ + -73.41561, + 45.469048 + ], + [ + -73.415792, + 45.468914 + ], + [ + -73.415843, + 45.468873 + ], + [ + -73.415903, + 45.468828 + ], + [ + -73.417636, + 45.467547 + ], + [ + -73.417764, + 45.467453 + ], + [ + -73.421216, + 45.464901 + ], + [ + -73.421345, + 45.464806 + ], + [ + -73.424593, + 45.462401 + ], + [ + -73.424962, + 45.462645 + ], + [ + -73.425069, + 45.462716 + ], + [ + -73.425478, + 45.462986 + ], + [ + -73.426192, + 45.463458 + ], + [ + -73.426502, + 45.463663 + ], + [ + -73.43053, + 45.466326 + ], + [ + -73.430797, + 45.466502 + ], + [ + -73.432747, + 45.467791 + ], + [ + -73.434186, + 45.468737 + ], + [ + -73.434223, + 45.46871 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.434426, + 45.468557 + ], + [ + -73.434574, + 45.46844 + ], + [ + -73.434593, + 45.468428 + ], + [ + -73.434654, + 45.468386 + ], + [ + -73.434706, + 45.46835 + ], + [ + -73.43479, + 45.468319 + ], + [ + -73.434953, + 45.468251 + ], + [ + -73.435895, + 45.468018 + ], + [ + -73.437585, + 45.467585 + ], + [ + -73.437909, + 45.467502 + ], + [ + -73.438637, + 45.467322 + ], + [ + -73.438692, + 45.467309 + ], + [ + -73.439001, + 45.46721 + ], + [ + -73.439742, + 45.466711 + ], + [ + -73.439775, + 45.466686 + ], + [ + -73.44004, + 45.466481 + ], + [ + -73.440337, + 45.466252 + ], + [ + -73.440976, + 45.46578 + ], + [ + -73.441167, + 45.465915 + ], + [ + -73.441736, + 45.466257 + ], + [ + -73.442013, + 45.466357 + ], + [ + -73.442153, + 45.466404 + ], + [ + -73.442317, + 45.46646 + ], + [ + -73.442367, + 45.466471 + ], + [ + -73.442596, + 45.466523 + ], + [ + -73.442944, + 45.465921 + ], + [ + -73.443084, + 45.465673 + ], + [ + -73.443189, + 45.465511 + ], + [ + -73.443468, + 45.465264 + ], + [ + -73.443779, + 45.464994 + ], + [ + -73.444237, + 45.464769 + ], + [ + -73.444389, + 45.464707 + ], + [ + -73.444519, + 45.464666 + ], + [ + -73.444828, + 45.464542 + ], + [ + -73.444876, + 45.464522 + ], + [ + -73.44528, + 45.464334 + ], + [ + -73.445535, + 45.464194 + ], + [ + -73.44617, + 45.463772 + ], + [ + -73.446423, + 45.463543 + ], + [ + -73.446424, + 45.463542 + ], + [ + -73.446687, + 45.463268 + ], + [ + -73.446942, + 45.463331 + ], + [ + -73.447276, + 45.463394 + ], + [ + -73.447618, + 45.463408 + ], + [ + -73.447895, + 45.463394 + ], + [ + -73.448196, + 45.46335 + ], + [ + -73.448372, + 45.463309 + ], + [ + -73.448465, + 45.463278 + ], + [ + -73.448508, + 45.463264 + ], + [ + -73.448659, + 45.463206 + ], + [ + -73.44876, + 45.463165 + ], + [ + -73.448872, + 45.463116 + ], + [ + -73.449057, + 45.462995 + ], + [ + -73.449921, + 45.462399 + ], + [ + -73.450113, + 45.462266 + ], + [ + -73.450857, + 45.461731 + ], + [ + -73.451239, + 45.461455 + ], + [ + -73.451413, + 45.461329 + ], + [ + -73.451566, + 45.461218 + ], + [ + -73.452841, + 45.462119 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.453161, + 45.462302 + ], + [ + -73.453343, + 45.462373 + ], + [ + -73.453553, + 45.462428 + ], + [ + -73.453729, + 45.462455 + ], + [ + -73.453888, + 45.462462 + ], + [ + -73.454017, + 45.462437 + ], + [ + -73.454092, + 45.462406 + ], + [ + -73.454278, + 45.462276 + ], + [ + -73.454797, + 45.462637 + ], + [ + -73.455404, + 45.463083 + ], + [ + -73.455675, + 45.463282 + ], + [ + -73.45655, + 45.463924 + ], + [ + -73.457079, + 45.464307 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.458744, + 45.465452 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.4601, + 45.466432 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.460554, + 45.466805 + ], + [ + -73.460661, + 45.466886 + ], + [ + -73.461028, + 45.467148 + ], + [ + -73.46125, + 45.467305 + ], + [ + -73.461806, + 45.46771 + ], + [ + -73.461902, + 45.467781 + ], + [ + -73.461978, + 45.467836 + ], + [ + -73.462611, + 45.468268 + ], + [ + -73.462993, + 45.468565 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464452, + 45.468222 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.465222, + 45.468287 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469043, + 45.46624 + ] + ] + }, + "id": 88, + "properties": { + "id": "86e9cd4e-3bb7-44a4-ba6f-8150ba2558df", + "data": { + "gtfs": { + "shape_id": "32_2_A" + }, + "segments": [ + { + "distanceMeters": 166, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 378, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 671, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 329, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 406, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 423, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 494, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 329, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 371, + "travelTimeSeconds": 95 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 548, + "travelTimeSeconds": 142 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10765, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7538.031212506085, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.18, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 6.41, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.18 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "c5d63249-9c53-468b-a75e-33839919bc02", + "00770ec2-f385-4c5e-86f3-1e107a204be7", + "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", + "24542ec6-1b63-420d-8089-98a7341dfe66", + "40363de6-68fe-4797-a6b6-a7c0b8b379e0", + "2bad9abb-726e-4e19-bd55-ea4436446fe9", + "2bfdc814-6852-43cf-a60e-ce2e7fee82b8", + "cfa8e93e-db19-45e9-8258-0b21519d678a", + "76c5dc0c-6c87-48e4-b4a8-6f7986e09fb7", + "78e9801c-50c9-4092-905b-26f4c2c9691f", + "6d9b7e37-cd6f-4931-b931-b7d0d8977c84", + "8566f24d-a192-4017-b9c9-09c3d46779b5", + "e50671a0-a4b5-4876-82f3-d4b9358f2b9f", + "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", + "55ca5f95-fab1-46cf-be83-81db90d348a5", + "bd054361-ba99-4c5e-bde0-47f325682b88", + "cf532e47-3506-49e5-a1ed-43182c89aa79", + "cbe5dd37-dce1-464a-9725-6d31d37c48ab", + "8dc191fb-71db-4873-9019-c9cedd32b2f0", + "176a1328-a08b-40f7-9010-c279f0b6cf5d", + "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", + "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "2f104875-795a-4778-a419-276272abfb07", + "ba86f45f-9fb5-4525-a50b-a876919fd012", + "988c86da-04eb-4067-b650-f13c447b17e7", + "4827a17d-8dc9-4cbd-8430-3334ebece64a", + "504cb53f-f1f4-46f2-81f5-f99fef8227fd", + "966472c1-4384-4d94-92f7-48afa023de51", + "6159ebda-8d7f-40cc-ac22-1f98fc48a7cc", + "d7a2b864-2fd6-4357-924f-7fbbb1858b57", + "160a49df-4dfe-423d-acd7-52bd439d623b", + "90bf0496-ccdf-450d-91bf-4dc999f62290", + "5cacbe7b-f308-4076-8842-25195b37874b", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "1a441bab-41b8-447f-ba84-5034fae1da67", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "01153fa0-59fe-4f77-8e46-e418296b526d", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "ed9c5ec5-b078-4065-9f49-fd6bc0951263", + "segments": [ + 0, + 6, + 8, + 11, + 14, + 17, + 27, + 30, + 33, + 38, + 46, + 51, + 58, + 63, + 68, + 74, + 77, + 78, + 80, + 82, + 86, + 88, + 91, + 94, + 97, + 104, + 110, + 117, + 123, + 135, + 140, + 149, + 155, + 158, + 161, + 172, + 179, + 181, + 188, + 191, + 204 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 88, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469043, + 45.46624 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.46363, + 45.4683 + ], + [ + -73.463472, + 45.468395 + ], + [ + -73.463397, + 45.468431 + ], + [ + -73.463306, + 45.468449 + ], + [ + -73.463219, + 45.468458 + ], + [ + -73.463124, + 45.468449 + ], + [ + -73.463037, + 45.468413 + ], + [ + -73.462702, + 45.468201 + ], + [ + -73.462471, + 45.468057 + ], + [ + -73.462195, + 45.467872 + ], + [ + -73.461894, + 45.467656 + ], + [ + -73.461788, + 45.46758 + ], + [ + -73.46133, + 45.467251 + ], + [ + -73.461109, + 45.467094 + ], + [ + -73.460905, + 45.466945 + ], + [ + -73.460722, + 45.466814 + ], + [ + -73.460629, + 45.466751 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457079, + 45.464307 + ], + [ + -73.45655, + 45.463924 + ], + [ + -73.455675, + 45.463282 + ], + [ + -73.454797, + 45.462637 + ], + [ + -73.454278, + 45.462276 + ], + [ + -73.454092, + 45.462406 + ], + [ + -73.454017, + 45.462437 + ], + [ + -73.453888, + 45.462462 + ], + [ + -73.453729, + 45.462455 + ], + [ + -73.453553, + 45.462428 + ], + [ + -73.453343, + 45.462373 + ], + [ + -73.453161, + 45.462302 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.451566, + 45.461218 + ], + [ + -73.451413, + 45.461329 + ], + [ + -73.450857, + 45.461731 + ], + [ + -73.450113, + 45.462266 + ], + [ + -73.449057, + 45.462995 + ], + [ + -73.448872, + 45.463116 + ], + [ + -73.44876, + 45.463165 + ], + [ + -73.448659, + 45.463206 + ], + [ + -73.448508, + 45.463264 + ], + [ + -73.448372, + 45.463309 + ], + [ + -73.448196, + 45.46335 + ], + [ + -73.447895, + 45.463394 + ], + [ + -73.447618, + 45.463408 + ], + [ + -73.447276, + 45.463394 + ], + [ + -73.446942, + 45.463331 + ], + [ + -73.446687, + 45.463268 + ], + [ + -73.446424, + 45.463542 + ], + [ + -73.44617, + 45.463772 + ], + [ + -73.445535, + 45.464194 + ], + [ + -73.44528, + 45.464334 + ], + [ + -73.444876, + 45.464522 + ], + [ + -73.444519, + 45.464666 + ], + [ + -73.444389, + 45.464707 + ], + [ + -73.444237, + 45.464769 + ], + [ + -73.443779, + 45.464994 + ], + [ + -73.443468, + 45.465264 + ], + [ + -73.443189, + 45.465511 + ], + [ + -73.443084, + 45.465673 + ], + [ + -73.442944, + 45.465921 + ], + [ + -73.442596, + 45.466523 + ], + [ + -73.442367, + 45.466471 + ], + [ + -73.442317, + 45.46646 + ], + [ + -73.442013, + 45.466357 + ], + [ + -73.441736, + 45.466257 + ], + [ + -73.441167, + 45.465915 + ], + [ + -73.440976, + 45.46578 + ], + [ + -73.440337, + 45.466252 + ], + [ + -73.439775, + 45.466686 + ], + [ + -73.439742, + 45.466711 + ], + [ + -73.439001, + 45.46721 + ], + [ + -73.438692, + 45.467309 + ], + [ + -73.438637, + 45.467322 + ], + [ + -73.437909, + 45.467502 + ], + [ + -73.435895, + 45.468018 + ], + [ + -73.434953, + 45.468251 + ], + [ + -73.43479, + 45.468319 + ], + [ + -73.434706, + 45.46835 + ], + [ + -73.434654, + 45.468386 + ], + [ + -73.434574, + 45.46844 + ], + [ + -73.434426, + 45.468557 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.434141, + 45.46853 + ], + [ + -73.433058, + 45.467863 + ], + [ + -73.430632, + 45.466255 + ], + [ + -73.426608, + 45.463587 + ], + [ + -73.425566, + 45.462896 + ], + [ + -73.425014, + 45.46253 + ], + [ + -73.4247, + 45.462321 + ], + [ + -73.424593, + 45.462401 + ], + [ + -73.424266, + 45.462642 + ], + [ + -73.421428, + 45.464744 + ], + [ + -73.421345, + 45.464806 + ], + [ + -73.417813, + 45.467417 + ], + [ + -73.417764, + 45.467453 + ], + [ + -73.416005, + 45.468753 + ], + [ + -73.415903, + 45.468828 + ], + [ + -73.415843, + 45.468873 + ], + [ + -73.415792, + 45.468914 + ], + [ + -73.4142, + 45.47009 + ], + [ + -73.414113, + 45.470154 + ], + [ + -73.411703, + 45.471946 + ], + [ + -73.411574, + 45.472042 + ], + [ + -73.409684, + 45.473438 + ], + [ + -73.407178, + 45.475288 + ], + [ + -73.406966, + 45.475444 + ], + [ + -73.40664, + 45.475265 + ], + [ + -73.406182, + 45.475012 + ], + [ + -73.40552, + 45.474655 + ], + [ + -73.405388, + 45.474584 + ], + [ + -73.404728, + 45.474217 + ], + [ + -73.404723, + 45.474214 + ], + [ + -73.404642, + 45.474169 + ], + [ + -73.403898, + 45.473773 + ], + [ + -73.403016, + 45.473284 + ], + [ + -73.403012, + 45.473281 + ], + [ + -73.402925, + 45.473236 + ], + [ + -73.402861, + 45.4732 + ], + [ + -73.401771, + 45.472613 + ], + [ + -73.401756, + 45.472606 + ], + [ + -73.400955, + 45.472186 + ], + [ + -73.400225, + 45.471777 + ], + [ + -73.400137, + 45.471727 + ], + [ + -73.399667, + 45.471492 + ], + [ + -73.399342, + 45.471587 + ], + [ + -73.399274, + 45.471591 + ], + [ + -73.39922, + 45.471582 + ], + [ + -73.399156, + 45.471564 + ], + [ + -73.399097, + 45.471519 + ], + [ + -73.398956, + 45.471443 + ], + [ + -73.398786, + 45.471352 + ], + [ + -73.398503, + 45.471208 + ], + [ + -73.397862, + 45.470825 + ], + [ + -73.397254, + 45.470538 + ], + [ + -73.397163, + 45.470496 + ], + [ + -73.396144, + 45.469946 + ], + [ + -73.393732, + 45.46863 + ], + [ + -73.393092, + 45.468287 + ], + [ + -73.391994, + 45.467693 + ], + [ + -73.391099, + 45.467206 + ], + [ + -73.390464, + 45.466856 + ], + [ + -73.390424, + 45.466834 + ], + [ + -73.390354, + 45.466796 + ], + [ + -73.38988, + 45.466534 + ], + [ + -73.389138, + 45.46612 + ], + [ + -73.388483, + 45.465759 + ], + [ + -73.387787, + 45.465378 + ], + [ + -73.387669, + 45.465313 + ], + [ + -73.38684, + 45.464853 + ], + [ + -73.385882, + 45.46433 + ], + [ + -73.385776, + 45.464272 + ], + [ + -73.384869, + 45.463758 + ], + [ + -73.384483, + 45.463537 + ], + [ + -73.384413, + 45.46349 + ], + [ + -73.384301, + 45.463415 + ], + [ + -73.384113, + 45.463294 + ], + [ + -73.383987, + 45.463212 + ], + [ + -73.383811, + 45.463104 + ], + [ + -73.383388, + 45.462852 + ], + [ + -73.383093, + 45.462681 + ], + [ + -73.382765, + 45.462469 + ], + [ + -73.382417, + 45.462253 + ], + [ + -73.382279, + 45.462167 + ], + [ + -73.382221, + 45.462246 + ], + [ + -73.382026, + 45.462513 + ], + [ + -73.380339, + 45.464847 + ], + [ + -73.380313, + 45.464882 + ], + [ + -73.380064, + 45.465238 + ], + [ + -73.378283, + 45.467712 + ], + [ + -73.3781, + 45.467967 + ], + [ + -73.377848, + 45.468313 + ], + [ + -73.37595, + 45.470932 + ], + [ + -73.375891, + 45.471015 + ], + [ + -73.37528, + 45.471878 + ], + [ + -73.374049, + 45.473595 + ], + [ + -73.373933, + 45.473762 + ], + [ + -73.373887, + 45.473824 + ], + [ + -73.373694, + 45.474085 + ], + [ + -73.37362, + 45.474193 + ], + [ + -73.373508, + 45.474319 + ], + [ + -73.373171, + 45.474788 + ] + ] + }, + "id": 89, + "properties": { + "id": "1153b015-ae98-479d-824c-4063436e3dca", + "data": { + "gtfs": { + "shape_id": "32_2_R" + }, + "segments": [ + { + "distanceMeters": 5291, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 670, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 402, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 360, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 121, + "travelTimeSeconds": 26 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10946, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4176.42235624854, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 14.03, + "travelTimeWithoutDwellTimesSeconds": 780, + "operatingTimeWithLayoverTimeSeconds": 960, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 780, + "operatingSpeedWithLayoverMetersPerSecond": 11.4, + "averageSpeedWithoutDwellTimesMetersPerSecond": 14.03 + }, + "mode": "bus", + "name": "boul. Mountainview", + "color": "#A32638", + "nodes": [ + "d739fe08-5298-4356-bd9e-c48a7fee16a1", + "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", + "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", + "176a1328-a08b-40f7-9010-c279f0b6cf5d", + "8dc191fb-71db-4873-9019-c9cedd32b2f0", + "cbe5dd37-dce1-464a-9725-6d31d37c48ab", + "fb30643a-60d9-443e-8b22-29ad762aebdb", + "bd054361-ba99-4c5e-bde0-47f325682b88", + "931c7650-b24c-4431-a556-56243637e8a2", + "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", + "e50671a0-a4b5-4876-82f3-d4b9358f2b9f", + "8566f24d-a192-4017-b9c9-09c3d46779b5", + "6d9b7e37-cd6f-4931-b931-b7d0d8977c84", + "78e9801c-50c9-4092-905b-26f4c2c9691f", + "76c5dc0c-6c87-48e4-b4a8-6f7986e09fb7", + "cfa8e93e-db19-45e9-8258-0b21519d678a", + "2bfdc814-6852-43cf-a60e-ce2e7fee82b8", + "2bad9abb-726e-4e19-bd55-ea4436446fe9", + "40363de6-68fe-4797-a6b6-a7c0b8b379e0", + "24542ec6-1b63-420d-8089-98a7341dfe66", + "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", + "2cd6db83-9a4e-4640-91da-759ec9e4a386", + "c5d63249-9c53-468b-a75e-33839919bc02" + ], + "stops": [], + "line_id": "ed9c5ec5-b078-4065-9f49-fd6bc0951263", + "segments": [ + 0, + 131, + 133, + 135, + 139, + 141, + 143, + 144, + 148, + 154, + 161, + 169, + 173, + 180, + 186, + 189, + 193, + 201, + 205, + 208, + 211, + 216 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 89, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469043, + 45.46624 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465583, + 45.46821 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.46363, + 45.4683 + ], + [ + -73.463472, + 45.468395 + ], + [ + -73.463397, + 45.468431 + ], + [ + -73.463306, + 45.468449 + ], + [ + -73.463219, + 45.468458 + ], + [ + -73.463124, + 45.468449 + ], + [ + -73.463037, + 45.468413 + ], + [ + -73.462702, + 45.468201 + ], + [ + -73.462471, + 45.468057 + ], + [ + -73.462195, + 45.467872 + ], + [ + -73.462013, + 45.467741 + ], + [ + -73.461894, + 45.467656 + ], + [ + -73.461788, + 45.46758 + ], + [ + -73.46133, + 45.467251 + ], + [ + -73.461109, + 45.467094 + ], + [ + -73.460905, + 45.466945 + ], + [ + -73.460724, + 45.466816 + ], + [ + -73.460722, + 45.466814 + ], + [ + -73.460629, + 45.466751 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.458931, + 45.465589 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457079, + 45.464307 + ], + [ + -73.456582, + 45.463948 + ], + [ + -73.45655, + 45.463924 + ], + [ + -73.455675, + 45.463282 + ], + [ + -73.454797, + 45.462637 + ], + [ + -73.454278, + 45.462276 + ], + [ + -73.454092, + 45.462406 + ], + [ + -73.454017, + 45.462437 + ], + [ + -73.453888, + 45.462462 + ], + [ + -73.453729, + 45.462455 + ], + [ + -73.453553, + 45.462428 + ], + [ + -73.453343, + 45.462373 + ], + [ + -73.453304, + 45.462358 + ], + [ + -73.453161, + 45.462302 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.451566, + 45.461218 + ], + [ + -73.451413, + 45.461329 + ], + [ + -73.451302, + 45.46141 + ], + [ + -73.450857, + 45.461731 + ], + [ + -73.450328, + 45.462112 + ], + [ + -73.450113, + 45.462266 + ], + [ + -73.449057, + 45.462995 + ], + [ + -73.448872, + 45.463116 + ], + [ + -73.44876, + 45.463165 + ], + [ + -73.448736, + 45.463175 + ], + [ + -73.448659, + 45.463206 + ], + [ + -73.448508, + 45.463264 + ], + [ + -73.448372, + 45.463309 + ], + [ + -73.448196, + 45.46335 + ], + [ + -73.447895, + 45.463394 + ], + [ + -73.447618, + 45.463408 + ], + [ + -73.447276, + 45.463394 + ], + [ + -73.446942, + 45.463331 + ], + [ + -73.446797, + 45.463295 + ], + [ + -73.446687, + 45.463268 + ], + [ + -73.446424, + 45.463542 + ], + [ + -73.44617, + 45.463772 + ], + [ + -73.445535, + 45.464194 + ], + [ + -73.44528, + 45.464334 + ], + [ + -73.444876, + 45.464522 + ], + [ + -73.444595, + 45.464636 + ], + [ + -73.444519, + 45.464666 + ], + [ + -73.444389, + 45.464707 + ], + [ + -73.444237, + 45.464769 + ], + [ + -73.443779, + 45.464994 + ], + [ + -73.443468, + 45.465264 + ], + [ + -73.443189, + 45.465511 + ], + [ + -73.443084, + 45.465673 + ], + [ + -73.442944, + 45.465921 + ], + [ + -73.442711, + 45.466324 + ], + [ + -73.442596, + 45.466523 + ], + [ + -73.442367, + 45.466471 + ], + [ + -73.442317, + 45.46646 + ], + [ + -73.442013, + 45.466357 + ], + [ + -73.441736, + 45.466257 + ], + [ + -73.44141, + 45.466061 + ], + [ + -73.441167, + 45.465915 + ], + [ + -73.440976, + 45.46578 + ], + [ + -73.440457, + 45.466164 + ], + [ + -73.440337, + 45.466252 + ], + [ + -73.439775, + 45.466686 + ], + [ + -73.439742, + 45.466711 + ], + [ + -73.439001, + 45.46721 + ], + [ + -73.438692, + 45.467309 + ], + [ + -73.438637, + 45.467322 + ], + [ + -73.438031, + 45.467472 + ], + [ + -73.437909, + 45.467502 + ], + [ + -73.435895, + 45.468018 + ], + [ + -73.434953, + 45.468251 + ], + [ + -73.43479, + 45.468319 + ], + [ + -73.434706, + 45.46835 + ], + [ + -73.434654, + 45.468386 + ], + [ + -73.434574, + 45.46844 + ], + [ + -73.434426, + 45.468557 + ], + [ + -73.434412, + 45.468567 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.434141, + 45.46853 + ], + [ + -73.433058, + 45.467863 + ], + [ + -73.430632, + 45.466255 + ], + [ + -73.430206, + 45.465972 + ], + [ + -73.426678, + 45.463633 + ], + [ + -73.426608, + 45.463587 + ], + [ + -73.425566, + 45.462896 + ], + [ + -73.425014, + 45.46253 + ], + [ + -73.4247, + 45.462321 + ], + [ + -73.424593, + 45.462401 + ], + [ + -73.424266, + 45.462642 + ], + [ + -73.423956, + 45.462872 + ], + [ + -73.421428, + 45.464744 + ], + [ + -73.421345, + 45.464806 + ], + [ + -73.417813, + 45.467417 + ], + [ + -73.417764, + 45.467453 + ], + [ + -73.416005, + 45.468753 + ], + [ + -73.415903, + 45.468828 + ], + [ + -73.415843, + 45.468873 + ], + [ + -73.415792, + 45.468914 + ], + [ + -73.4142, + 45.47009 + ], + [ + -73.414113, + 45.470154 + ], + [ + -73.411703, + 45.471946 + ], + [ + -73.411574, + 45.472042 + ], + [ + -73.409684, + 45.473438 + ], + [ + -73.407178, + 45.475288 + ], + [ + -73.406966, + 45.475444 + ], + [ + -73.40664, + 45.475265 + ], + [ + -73.406182, + 45.475012 + ], + [ + -73.40552, + 45.474655 + ], + [ + -73.405388, + 45.474584 + ], + [ + -73.404728, + 45.474217 + ], + [ + -73.404723, + 45.474214 + ], + [ + -73.404642, + 45.474169 + ], + [ + -73.403898, + 45.473773 + ], + [ + -73.403016, + 45.473284 + ], + [ + -73.403012, + 45.473281 + ], + [ + -73.402925, + 45.473236 + ], + [ + -73.402861, + 45.4732 + ], + [ + -73.401771, + 45.472613 + ], + [ + -73.401756, + 45.472606 + ], + [ + -73.400955, + 45.472186 + ], + [ + -73.400225, + 45.471777 + ], + [ + -73.400137, + 45.471727 + ], + [ + -73.399667, + 45.471492 + ], + [ + -73.399342, + 45.471587 + ], + [ + -73.399274, + 45.471591 + ], + [ + -73.39922, + 45.471582 + ], + [ + -73.399156, + 45.471564 + ], + [ + -73.399097, + 45.471519 + ], + [ + -73.398956, + 45.471443 + ], + [ + -73.398786, + 45.471352 + ], + [ + -73.398503, + 45.471208 + ], + [ + -73.397862, + 45.470825 + ], + [ + -73.397254, + 45.470538 + ], + [ + -73.397163, + 45.470496 + ], + [ + -73.396144, + 45.469946 + ], + [ + -73.393732, + 45.46863 + ], + [ + -73.393092, + 45.468287 + ], + [ + -73.391994, + 45.467693 + ], + [ + -73.391099, + 45.467206 + ], + [ + -73.390464, + 45.466856 + ], + [ + -73.390424, + 45.466834 + ], + [ + -73.390354, + 45.466796 + ], + [ + -73.38988, + 45.466534 + ], + [ + -73.389138, + 45.46612 + ], + [ + -73.388483, + 45.465759 + ], + [ + -73.387787, + 45.465378 + ], + [ + -73.387669, + 45.465313 + ], + [ + -73.38684, + 45.464853 + ], + [ + -73.385882, + 45.46433 + ], + [ + -73.385776, + 45.464272 + ], + [ + -73.384869, + 45.463758 + ], + [ + -73.384483, + 45.463537 + ], + [ + -73.384413, + 45.46349 + ], + [ + -73.384301, + 45.463415 + ], + [ + -73.384113, + 45.463294 + ], + [ + -73.383987, + 45.463212 + ], + [ + -73.383811, + 45.463104 + ], + [ + -73.383388, + 45.462852 + ], + [ + -73.383093, + 45.462681 + ], + [ + -73.382765, + 45.462469 + ], + [ + -73.382417, + 45.462253 + ], + [ + -73.382279, + 45.462167 + ], + [ + -73.382221, + 45.462246 + ], + [ + -73.382026, + 45.462513 + ], + [ + -73.380339, + 45.464847 + ], + [ + -73.380313, + 45.464882 + ], + [ + -73.380064, + 45.465238 + ], + [ + -73.378283, + 45.467712 + ], + [ + -73.3781, + 45.467967 + ], + [ + -73.377848, + 45.468313 + ], + [ + -73.37595, + 45.470932 + ], + [ + -73.375891, + 45.471015 + ], + [ + -73.37528, + 45.471878 + ], + [ + -73.374049, + 45.473595 + ], + [ + -73.373933, + 45.473762 + ], + [ + -73.373887, + 45.473824 + ], + [ + -73.373694, + 45.474085 + ], + [ + -73.37362, + 45.474193 + ], + [ + -73.373508, + 45.474319 + ], + [ + -73.373171, + 45.474788 + ] + ] + }, + "id": 90, + "properties": { + "id": "3beb91ce-1755-4eef-b2fa-935f27f69e14", + "data": { + "gtfs": { + "shape_id": "32_2_R" + }, + "segments": [ + { + "distanceMeters": 694, + "travelTimeSeconds": 127 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 344, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 311, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 448, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 670, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 402, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 360, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 121, + "travelTimeSeconds": 26 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10946, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7538.031212506085, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.02, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 6.29, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.02 + }, + "mode": "bus", + "name": "boul. Mountainview", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "5cacbe7b-f308-4076-8842-25195b37874b", + "90bf0496-ccdf-450d-91bf-4dc999f62290", + "160a49df-4dfe-423d-acd7-52bd439d623b", + "d7a2b864-2fd6-4357-924f-7fbbb1858b57", + "6159ebda-8d7f-40cc-ac22-1f98fc48a7cc", + "966472c1-4384-4d94-92f7-48afa023de51", + "43d1b9da-374a-4022-9200-6e68a13388db", + "504cb53f-f1f4-46f2-81f5-f99fef8227fd", + "4827a17d-8dc9-4cbd-8430-3334ebece64a", + "988c86da-04eb-4067-b650-f13c447b17e7", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "988183db-88f1-47cb-87bf-b2a03dd4a38d", + "d739fe08-5298-4356-bd9e-c48a7fee16a1", + "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", + "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", + "176a1328-a08b-40f7-9010-c279f0b6cf5d", + "8dc191fb-71db-4873-9019-c9cedd32b2f0", + "cbe5dd37-dce1-464a-9725-6d31d37c48ab", + "fb30643a-60d9-443e-8b22-29ad762aebdb", + "bd054361-ba99-4c5e-bde0-47f325682b88", + "931c7650-b24c-4431-a556-56243637e8a2", + "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", + "e50671a0-a4b5-4876-82f3-d4b9358f2b9f", + "8566f24d-a192-4017-b9c9-09c3d46779b5", + "6d9b7e37-cd6f-4931-b931-b7d0d8977c84", + "78e9801c-50c9-4092-905b-26f4c2c9691f", + "76c5dc0c-6c87-48e4-b4a8-6f7986e09fb7", + "cfa8e93e-db19-45e9-8258-0b21519d678a", + "2bfdc814-6852-43cf-a60e-ce2e7fee82b8", + "2bad9abb-726e-4e19-bd55-ea4436446fe9", + "40363de6-68fe-4797-a6b6-a7c0b8b379e0", + "24542ec6-1b63-420d-8089-98a7341dfe66", + "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", + "2cd6db83-9a4e-4640-91da-759ec9e4a386", + "c5d63249-9c53-468b-a75e-33839919bc02" + ], + "stops": [], + "line_id": "ed9c5ec5-b078-4065-9f49-fd6bc0951263", + "segments": [ + 0, + 27, + 47, + 53, + 57, + 63, + 74, + 79, + 81, + 86, + 95, + 102, + 111, + 117, + 120, + 127, + 136, + 141, + 142, + 149, + 150, + 152, + 154, + 158, + 160, + 162, + 163, + 167, + 173, + 180, + 188, + 192, + 199, + 205, + 208, + 212, + 220, + 224, + 227, + 230, + 235 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 90, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.470853, + 45.437641 + ], + [ + -73.470909, + 45.43755 + ], + [ + -73.471049, + 45.437306 + ], + [ + -73.471113, + 45.437194 + ], + [ + -73.471139, + 45.437154 + ], + [ + -73.472058, + 45.435759 + ], + [ + -73.471657, + 45.43562 + ], + [ + -73.471617, + 45.435607 + ], + [ + -73.471308, + 45.435507 + ], + [ + -73.470856, + 45.435367 + ], + [ + -73.470685, + 45.435314 + ], + [ + -73.470598, + 45.435287 + ], + [ + -73.469951, + 45.435071 + ], + [ + -73.469143, + 45.434801 + ], + [ + -73.469086, + 45.434782 + ], + [ + -73.466273, + 45.43385 + ], + [ + -73.465529, + 45.433585 + ], + [ + -73.465352, + 45.433521 + ], + [ + -73.464983, + 45.434165 + ], + [ + -73.464402, + 45.435154 + ], + [ + -73.464363, + 45.435226 + ], + [ + -73.464262, + 45.435411 + ], + [ + -73.464217, + 45.435519 + ], + [ + -73.464208, + 45.435541 + ], + [ + -73.464129, + 45.435726 + ], + [ + -73.464042, + 45.435933 + ], + [ + -73.463949, + 45.43609 + ], + [ + -73.463882, + 45.436218 + ], + [ + -73.463836, + 45.436306 + ], + [ + -73.462701, + 45.435982 + ], + [ + -73.462324, + 45.436581 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.461454, + 45.437926 + ], + [ + -73.461441, + 45.437947 + ], + [ + -73.460899, + 45.438784 + ], + [ + -73.460824, + 45.438928 + ], + [ + -73.460775, + 45.43905 + ], + [ + -73.460753, + 45.439144 + ], + [ + -73.460745, + 45.439189 + ], + [ + -73.460732, + 45.439261 + ], + [ + -73.460756, + 45.439374 + ], + [ + -73.460804, + 45.439527 + ], + [ + -73.460879, + 45.439666 + ], + [ + -73.4611, + 45.439963 + ], + [ + -73.461732, + 45.440683 + ], + [ + -73.46187, + 45.440814 + ], + [ + -73.462084, + 45.440965 + ], + [ + -73.462213, + 45.441057 + ], + [ + -73.462145, + 45.441115 + ], + [ + -73.46199, + 45.441264 + ], + [ + -73.461921, + 45.441345 + ], + [ + -73.461307, + 45.442277 + ], + [ + -73.461249, + 45.442366 + ], + [ + -73.460621, + 45.443341 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.460454, + 45.443598 + ], + [ + -73.460027, + 45.444237 + ], + [ + -73.459538, + 45.44501 + ], + [ + -73.459486, + 45.445092 + ], + [ + -73.458903, + 45.445978 + ], + [ + -73.458716, + 45.446252 + ], + [ + -73.458499, + 45.446437 + ], + [ + -73.458358, + 45.446536 + ], + [ + -73.45823, + 45.446598 + ], + [ + -73.458121, + 45.446639 + ], + [ + -73.458114, + 45.446641 + ], + [ + -73.458085, + 45.446651 + ], + [ + -73.458009, + 45.446676 + ], + [ + -73.457516, + 45.446841 + ], + [ + -73.456885, + 45.447052 + ], + [ + -73.456392, + 45.447217 + ], + [ + -73.456253, + 45.447264 + ], + [ + -73.455927, + 45.447371 + ], + [ + -73.455661, + 45.447479 + ], + [ + -73.455528, + 45.447551 + ], + [ + -73.455416, + 45.447619 + ], + [ + -73.455304, + 45.447709 + ], + [ + -73.455137, + 45.447929 + ], + [ + -73.454897, + 45.448293 + ], + [ + -73.454606, + 45.448707 + ], + [ + -73.454507, + 45.448806 + ], + [ + -73.454415, + 45.448878 + ], + [ + -73.454351, + 45.448928 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.454088, + 45.449121 + ], + [ + -73.454556, + 45.449427 + ], + [ + -73.454798, + 45.449611 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.453977, + 45.450264 + ], + [ + -73.452732, + 45.451135 + ], + [ + -73.452622, + 45.451213 + ], + [ + -73.453298, + 45.451699 + ], + [ + -73.452613, + 45.45218 + ], + [ + -73.45248, + 45.452271 + ], + [ + -73.451628, + 45.452856 + ], + [ + -73.451486, + 45.452953 + ], + [ + -73.45112, + 45.453219 + ], + [ + -73.450766, + 45.453502 + ], + [ + -73.450725, + 45.453552 + ], + [ + -73.450488, + 45.453839 + ], + [ + -73.451305, + 45.454127 + ], + [ + -73.451557, + 45.454204 + ], + [ + -73.45174, + 45.454276 + ], + [ + -73.451873, + 45.454344 + ], + [ + -73.451956, + 45.454402 + ], + [ + -73.452095, + 45.454542 + ], + [ + -73.452189, + 45.454636 + ], + [ + -73.452038, + 45.454708 + ], + [ + -73.451941, + 45.454767 + ], + [ + -73.451848, + 45.45487 + ], + [ + -73.45166, + 45.455126 + ], + [ + -73.451461, + 45.455422 + ], + [ + -73.451253, + 45.455729 + ], + [ + -73.450443, + 45.45693 + ], + [ + -73.450382, + 45.457097 + ], + [ + -73.450362, + 45.457232 + ], + [ + -73.450367, + 45.457403 + ], + [ + -73.450397, + 45.457544 + ], + [ + -73.450437, + 45.457731 + ], + [ + -73.451112, + 45.458216 + ], + [ + -73.451165, + 45.458254 + ], + [ + -73.452534, + 45.459239 + ], + [ + -73.453088, + 45.459645 + ], + [ + -73.453221, + 45.459743 + ], + [ + -73.454644, + 45.460765 + ], + [ + -73.456104, + 45.461814 + ], + [ + -73.456268, + 45.4619 + ], + [ + -73.456608, + 45.461964 + ], + [ + -73.457019, + 45.462007 + ], + [ + -73.457412, + 45.462047 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.458524, + 45.462178 + ], + [ + -73.458611, + 45.462189 + ], + [ + -73.459742, + 45.462333 + ], + [ + -73.460596, + 45.46227 + ], + [ + -73.461008, + 45.46224 + ], + [ + -73.461012, + 45.46224 + ], + [ + -73.461274, + 45.462221 + ], + [ + -73.46213, + 45.462145 + ], + [ + -73.462729, + 45.462095 + ], + [ + -73.462839, + 45.462082 + ], + [ + -73.462926, + 45.462051 + ], + [ + -73.463004, + 45.46201 + ], + [ + -73.463058, + 45.461956 + ], + [ + -73.463101, + 45.461866 + ], + [ + -73.463097, + 45.461763 + ], + [ + -73.463035, + 45.46138 + ], + [ + -73.462936, + 45.460768 + ], + [ + -73.462922, + 45.460678 + ], + [ + -73.462766, + 45.459543 + ], + [ + -73.462745, + 45.459391 + ], + [ + -73.463717, + 45.459342 + ], + [ + -73.464994, + 45.459278 + ], + [ + -73.465215, + 45.461562 + ], + [ + -73.465247, + 45.461893 + ], + [ + -73.465328, + 45.462497 + ], + [ + -73.465435, + 45.463211 + ], + [ + -73.465484, + 45.463543 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469043, + 45.46624 + ] + ] + }, + "id": 91, + "properties": { + "id": "0260c5dc-2e8f-484e-8c39-58a75062684e", + "data": { + "gtfs": { + "shape_id": "33_1_A" + }, + "segments": [ + { + "distanceMeters": 268, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 337, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 88, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 93, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 1137, + "travelTimeSeconds": 257 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6974, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3146.349625898839, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.81, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 5.05, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.81 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", + "f36c7de3-84dd-4573-ac69-91ccd87efd4f", + "1d638a17-5a2b-40f7-a0cc-6db81666104e", + "e990ec2d-e586-4b2f-884d-4124f22426b3", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "c7e2639a-bb94-426e-918b-714f0212d53b", + "19a4f64a-0169-40b9-8b9c-84de3158151e", + "b93691d0-438e-4eac-87a0-7c1ac45a7c18", + "9b31d865-da9f-4eb8-b8a9-3d488eb579df", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "57126f14-f5bb-4578-a4ae-48d75eae5e82", + "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", + "8b7e764f-0227-410c-89b9-51b9a8ad8c88", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", + "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", + "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", + "0087674f-0098-4bab-9a77-b31eb3602613", + "db56dff4-d82c-4b2d-ad34-35b3db3f27de", + "800b4ca8-f540-48ef-9acf-ec6d45db3496", + "0c735a18-4964-435c-ad38-89ab21a47f83", + "c01e4d9c-c5df-425f-9b40-215a62d76b50", + "4ca26d1e-a5a2-4d1a-ba5a-7bed9b5a1bee", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "5d862a7d-92b0-4def-8199-258993ce3523", + "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", + "d0325326-9fbf-42e2-aefa-29fa09853c10", + "d13720b6-fb91-4a90-a816-addaef17cf17", + "80775ca9-8434-48d9-a65d-5f3eace6e2d8", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "8b2ad537-2155-49dc-b85b-0cd08b823921", + "segments": [ + 0, + 7, + 13, + 16, + 27, + 30, + 33, + 38, + 46, + 51, + 53, + 57, + 65, + 70, + 81, + 86, + 89, + 94, + 98, + 105, + 112, + 117, + 122, + 124, + 129, + 131, + 135, + 147, + 149, + 151 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 91, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469043, + 45.46624 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466352, + 45.465288 + ], + [ + -73.466238, + 45.465062 + ], + [ + -73.466142, + 45.464853 + ], + [ + -73.466048, + 45.464638 + ], + [ + -73.46599, + 45.464498 + ], + [ + -73.465967, + 45.464441 + ], + [ + -73.465777, + 45.463945 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465663, + 45.463449 + ], + [ + -73.465646, + 45.463238 + ], + [ + -73.465636, + 45.463073 + ], + [ + -73.465461, + 45.461275 + ], + [ + -73.465447, + 45.461137 + ], + [ + -73.465251, + 45.459263 + ], + [ + -73.465215, + 45.458894 + ], + [ + -73.465199, + 45.458728 + ], + [ + -73.465132, + 45.458038 + ], + [ + -73.465113, + 45.457592 + ], + [ + -73.465124, + 45.457143 + ], + [ + -73.465143, + 45.45685 + ], + [ + -73.465153, + 45.456755 + ], + [ + -73.465199, + 45.456301 + ], + [ + -73.465244, + 45.456 + ], + [ + -73.465335, + 45.455572 + ], + [ + -73.465339, + 45.455554 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465617, + 45.454677 + ], + [ + -73.465629, + 45.454641 + ], + [ + -73.465631, + 45.454637 + ], + [ + -73.465694, + 45.454481 + ], + [ + -73.465735, + 45.45438 + ], + [ + -73.465853, + 45.45411 + ], + [ + -73.466087, + 45.453654 + ], + [ + -73.46613, + 45.45357 + ], + [ + -73.466877, + 45.452297 + ], + [ + -73.467521, + 45.451236 + ], + [ + -73.468182, + 45.450183 + ], + [ + -73.469986, + 45.447403 + ], + [ + -73.470115, + 45.447205 + ], + [ + -73.470215, + 45.447052 + ], + [ + -73.47028, + 45.446953 + ], + [ + -73.470478, + 45.446647 + ], + [ + -73.471792, + 45.444623 + ], + [ + -73.47221, + 45.443966 + ], + [ + -73.472405, + 45.443633 + ], + [ + -73.472572, + 45.443287 + ], + [ + -73.472646, + 45.443111 + ], + [ + -73.472778, + 45.442752 + ], + [ + -73.472833, + 45.442567 + ], + [ + -73.472919, + 45.442194 + ], + [ + -73.472951, + 45.442005 + ], + [ + -73.473027, + 45.441433 + ], + [ + -73.473089, + 45.441055 + ], + [ + -73.47323, + 45.44052 + ], + [ + -73.473412, + 45.440048 + ], + [ + -73.47351, + 45.439841 + ], + [ + -73.47354, + 45.439773 + ], + [ + -73.473721, + 45.439445 + ], + [ + -73.474086, + 45.43886 + ], + [ + -73.474303, + 45.438527 + ], + [ + -73.474529, + 45.438181 + ], + [ + -73.474202, + 45.438163 + ], + [ + -73.474062, + 45.438151 + ], + [ + -73.472418, + 45.438013 + ], + [ + -73.472271, + 45.438 + ], + [ + -73.470756, + 45.437887 + ], + [ + -73.470768, + 45.437797 + ], + [ + -73.470818, + 45.437698 + ], + [ + -73.470853, + 45.437641 + ] + ] + }, + "id": 92, + "properties": { + "id": "3c656582-5c55-4d10-a8df-9bc7607fa134", + "data": { + "gtfs": { + "shape_id": "33_1_R" + }, + "segments": [ + { + "distanceMeters": 769, + "travelTimeSeconds": 154 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 478, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 899, + "travelTimeSeconds": 141 + }, + { + "distanceMeters": 1235, + "travelTimeSeconds": 194 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 25 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 3787, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3146.349625898839, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.74, + "travelTimeWithoutDwellTimesSeconds": 660, + "operatingTimeWithLayoverTimeSeconds": 840, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 660, + "operatingSpeedWithLayoverMetersPerSecond": 4.51, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.74 + }, + "mode": "bus", + "name": "Sect. M-N-O Brossard", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "74887516-47d5-4269-9513-84672d18e287", + "1e3a74d9-9d8a-467f-a82e-3dafee501e32", + "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", + "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", + "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", + "3eb5b313-c26d-472e-a3c1-397c7596c769" + ], + "stops": [], + "line_id": "8b2ad537-2155-49dc-b85b-0cd08b823921", + "segments": [ + 0, + 24, + 26, + 41, + 51, + 76 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 92, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469043, + 45.46624 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466352, + 45.465288 + ], + [ + -73.466238, + 45.465062 + ], + [ + -73.466142, + 45.464853 + ], + [ + -73.466048, + 45.464638 + ], + [ + -73.46599, + 45.464498 + ], + [ + -73.465967, + 45.464441 + ], + [ + -73.465973, + 45.464235 + ], + [ + -73.466002, + 45.464038 + ], + [ + -73.466104, + 45.463863 + ], + [ + -73.466216, + 45.463756 + ], + [ + -73.466371, + 45.463679 + ], + [ + -73.466622, + 45.463647 + ], + [ + -73.466852, + 45.463668 + ], + [ + -73.467082, + 45.463784 + ], + [ + -73.467212, + 45.463951 + ], + [ + -73.467234, + 45.464135 + ], + [ + -73.467163, + 45.464287 + ], + [ + -73.467024, + 45.464416 + ], + [ + -73.466735, + 45.46451 + ], + [ + -73.466567, + 45.464522 + ], + [ + -73.465706, + 45.464485 + ], + [ + -73.464402, + 45.464429 + ], + [ + -73.463422, + 45.464395 + ], + [ + -73.462294, + 45.464357 + ], + [ + -73.461419, + 45.464323 + ], + [ + -73.460353, + 45.4642 + ], + [ + -73.459906, + 45.464144 + ], + [ + -73.459408, + 45.464052 + ], + [ + -73.458521, + 45.463796 + ], + [ + -73.458275, + 45.463724 + ], + [ + -73.457681, + 45.463496 + ], + [ + -73.457669, + 45.463491 + ], + [ + -73.456975, + 45.463149 + ], + [ + -73.456896, + 45.463092 + ], + [ + -73.456843, + 45.463043 + ], + [ + -73.456777, + 45.462977 + ], + [ + -73.456717, + 45.462912 + ], + [ + -73.456666, + 45.462833 + ], + [ + -73.456625, + 45.462758 + ], + [ + -73.456603, + 45.462667 + ], + [ + -73.456593, + 45.462539 + ], + [ + -73.456593, + 45.462536 + ], + [ + -73.4566, + 45.462399 + ], + [ + -73.456621, + 45.462264 + ], + [ + -73.456608, + 45.461964 + ], + [ + -73.456268, + 45.4619 + ], + [ + -73.456104, + 45.461814 + ], + [ + -73.455623, + 45.461469 + ], + [ + -73.454191, + 45.46044 + ], + [ + -73.453314, + 45.45981 + ], + [ + -73.453221, + 45.459743 + ], + [ + -73.452534, + 45.459239 + ], + [ + -73.451112, + 45.458216 + ], + [ + -73.450772, + 45.457972 + ], + [ + -73.450437, + 45.457731 + ], + [ + -73.450367, + 45.457403 + ], + [ + -73.450362, + 45.457232 + ], + [ + -73.450382, + 45.457097 + ], + [ + -73.450443, + 45.45693 + ], + [ + -73.450536, + 45.456792 + ], + [ + -73.451229, + 45.455766 + ], + [ + -73.451461, + 45.455422 + ], + [ + -73.45166, + 45.455126 + ], + [ + -73.451848, + 45.45487 + ], + [ + -73.451904, + 45.454808 + ], + [ + -73.451941, + 45.454767 + ], + [ + -73.452038, + 45.454708 + ], + [ + -73.452189, + 45.454636 + ], + [ + -73.451956, + 45.454402 + ], + [ + -73.451873, + 45.454344 + ], + [ + -73.45174, + 45.454276 + ], + [ + -73.451557, + 45.454204 + ], + [ + -73.451305, + 45.454127 + ], + [ + -73.450793, + 45.453947 + ], + [ + -73.450488, + 45.453839 + ], + [ + -73.450766, + 45.453502 + ], + [ + -73.45112, + 45.453219 + ], + [ + -73.451334, + 45.453063 + ], + [ + -73.451486, + 45.452953 + ], + [ + -73.45248, + 45.452271 + ], + [ + -73.452613, + 45.45218 + ], + [ + -73.453298, + 45.451699 + ], + [ + -73.452768, + 45.451318 + ], + [ + -73.452622, + 45.451213 + ], + [ + -73.453977, + 45.450264 + ], + [ + -73.454497, + 45.449915 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.455056, + 45.44954 + ], + [ + -73.454737, + 45.449301 + ], + [ + -73.454437, + 45.449104 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.454351, + 45.448928 + ], + [ + -73.454507, + 45.448806 + ], + [ + -73.454606, + 45.448707 + ], + [ + -73.454897, + 45.448293 + ], + [ + -73.455137, + 45.447929 + ], + [ + -73.455304, + 45.447709 + ], + [ + -73.455416, + 45.447619 + ], + [ + -73.455528, + 45.447551 + ], + [ + -73.455661, + 45.447479 + ], + [ + -73.455899, + 45.447383 + ], + [ + -73.455927, + 45.447371 + ], + [ + -73.456253, + 45.447264 + ], + [ + -73.456885, + 45.447052 + ], + [ + -73.457516, + 45.446841 + ], + [ + -73.457772, + 45.446756 + ], + [ + -73.458009, + 45.446676 + ], + [ + -73.458085, + 45.446651 + ], + [ + -73.458121, + 45.446639 + ], + [ + -73.45823, + 45.446598 + ], + [ + -73.458358, + 45.446536 + ], + [ + -73.458499, + 45.446437 + ], + [ + -73.458716, + 45.446252 + ], + [ + -73.458903, + 45.445978 + ], + [ + -73.459429, + 45.445179 + ], + [ + -73.459486, + 45.445092 + ], + [ + -73.460027, + 45.444237 + ], + [ + -73.460311, + 45.443812 + ], + [ + -73.460454, + 45.443598 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.461197, + 45.442446 + ], + [ + -73.461249, + 45.442366 + ], + [ + -73.461921, + 45.441345 + ], + [ + -73.46199, + 45.441264 + ], + [ + -73.462047, + 45.441209 + ], + [ + -73.462145, + 45.441115 + ], + [ + -73.462213, + 45.441057 + ], + [ + -73.46187, + 45.440814 + ], + [ + -73.461732, + 45.440683 + ], + [ + -73.461111, + 45.439976 + ], + [ + -73.4611, + 45.439963 + ], + [ + -73.460879, + 45.439666 + ], + [ + -73.460804, + 45.439527 + ], + [ + -73.460756, + 45.439374 + ], + [ + -73.460732, + 45.439261 + ], + [ + -73.460751, + 45.43915 + ], + [ + -73.460753, + 45.439144 + ], + [ + -73.460775, + 45.43905 + ], + [ + -73.460824, + 45.438928 + ], + [ + -73.460899, + 45.438784 + ], + [ + -73.461532, + 45.437806 + ], + [ + -73.462055, + 45.436998 + ], + [ + -73.462056, + 45.436996 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.462701, + 45.435982 + ], + [ + -73.463836, + 45.436306 + ], + [ + -73.463949, + 45.43609 + ], + [ + -73.464018, + 45.435973 + ], + [ + -73.464042, + 45.435933 + ], + [ + -73.464129, + 45.435726 + ], + [ + -73.464208, + 45.435541 + ], + [ + -73.464217, + 45.435519 + ], + [ + -73.464262, + 45.435411 + ], + [ + -73.464363, + 45.435226 + ], + [ + -73.464402, + 45.435154 + ], + [ + -73.464983, + 45.434165 + ], + [ + -73.465298, + 45.433616 + ], + [ + -73.465352, + 45.433521 + ], + [ + -73.466273, + 45.43385 + ], + [ + -73.468913, + 45.434725 + ], + [ + -73.469086, + 45.434782 + ], + [ + -73.469951, + 45.435071 + ], + [ + -73.470598, + 45.435287 + ], + [ + -73.470685, + 45.435314 + ], + [ + -73.470856, + 45.435367 + ], + [ + -73.471308, + 45.435507 + ], + [ + -73.471316, + 45.43551 + ], + [ + -73.471657, + 45.43562 + ], + [ + -73.472058, + 45.435759 + ], + [ + -73.471139, + 45.437154 + ], + [ + -73.471113, + 45.437194 + ], + [ + -73.471037, + 45.437237 + ], + [ + -73.470968, + 45.437275 + ], + [ + -73.470767, + 45.437505 + ], + [ + -73.470657, + 45.43764 + ], + [ + -73.470585, + 45.437793 + ], + [ + -73.470582, + 45.437803 + ] + ] + }, + "id": 93, + "properties": { + "id": "52b602e7-66ec-47ad-872c-639f35f3df0d", + "data": { + "gtfs": { + "shape_id": "33_2_R" + }, + "segments": [ + { + "distanceMeters": 1684, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 119, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 135 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 88 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 137 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6576, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3146.349625898839, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.22, + "travelTimeWithoutDwellTimesSeconds": 1260, + "operatingTimeWithLayoverTimeSeconds": 1440, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1260, + "operatingSpeedWithLayoverMetersPerSecond": 4.57, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.22 + }, + "mode": "bus", + "name": "Sect. M-N-O Brossard", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "30d24143-abd0-4a47-955d-cdbc3943ae61", + "47d3a0e8-5db6-4263-911d-0835de2b9cb0", + "c01e4d9c-c5df-425f-9b40-215a62d76b50", + "5781af67-07a2-4732-99f5-af7b2835e18a", + "800b4ca8-f540-48ef-9acf-ec6d45db3496", + "db56dff4-d82c-4b2d-ad34-35b3db3f27de", + "0087674f-0098-4bab-9a77-b31eb3602613", + "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", + "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", + "fd4f887b-9300-41e3-8cc1-44b80109a4ad", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "8b7e764f-0227-410c-89b9-51b9a8ad8c88", + "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", + "57126f14-f5bb-4578-a4ae-48d75eae5e82", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "9b31d865-da9f-4eb8-b8a9-3d488eb579df", + "b93691d0-438e-4eac-87a0-7c1ac45a7c18", + "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", + "19a4f64a-0169-40b9-8b9c-84de3158151e", + "c7e2639a-bb94-426e-918b-714f0212d53b", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "e990ec2d-e586-4b2f-884d-4124f22426b3", + "1d638a17-5a2b-40f7-a0cc-6db81666104e", + "f36c7de3-84dd-4573-ac69-91ccd87efd4f", + "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", + "3eb5b313-c26d-472e-a3c1-397c7596c769" + ], + "stops": [], + "line_id": "8b2ad537-2155-49dc-b85b-0cd08b823921", + "segments": [ + 0, + 59, + 60, + 61, + 65, + 72, + 76, + 85, + 89, + 94, + 97, + 101, + 112, + 117, + 126, + 129, + 132, + 136, + 141, + 147, + 152, + 154, + 159, + 168, + 171, + 178 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 93, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.470582, + 45.437803 + ], + [ + -73.470561, + 45.437874 + ], + [ + -73.470756, + 45.437887 + ], + [ + -73.472271, + 45.438 + ], + [ + -73.474202, + 45.438163 + ], + [ + -73.474023, + 45.438441 + ], + [ + -73.47371, + 45.438932 + ], + [ + -73.473393, + 45.439449 + ], + [ + -73.473246, + 45.439724 + ], + [ + -73.473111, + 45.440012 + ], + [ + -73.472993, + 45.440308 + ], + [ + -73.472892, + 45.440614 + ], + [ + -73.472775, + 45.441091 + ], + [ + -73.472634, + 45.442077 + ], + [ + -73.472562, + 45.44241 + ], + [ + -73.472464, + 45.442742 + ], + [ + -73.47234, + 45.44308 + ], + [ + -73.47219, + 45.443413 + ], + [ + -73.472106, + 45.443579 + ], + [ + -73.471921, + 45.443899 + ], + [ + -73.471725, + 45.444209 + ], + [ + -73.470379, + 45.446283 + ], + [ + -73.470198, + 45.446562 + ], + [ + -73.470085, + 45.446735 + ], + [ + -73.470002, + 45.446863 + ], + [ + -73.469936, + 45.446962 + ], + [ + -73.4697, + 45.447326 + ], + [ + -73.467906, + 45.450089 + ], + [ + -73.467328, + 45.451002 + ], + [ + -73.46669, + 45.452054 + ], + [ + -73.465968, + 45.453278 + ], + [ + -73.465918, + 45.453363 + ], + [ + -73.465707, + 45.453755 + ], + [ + -73.46558, + 45.454016 + ], + [ + -73.46536, + 45.454529 + ], + [ + -73.465344, + 45.454574 + ], + [ + -73.465258, + 45.454822 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.465167, + 45.455082 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465048, + 45.455509 + ], + [ + -73.465041, + 45.455536 + ], + [ + -73.464975, + 45.455829 + ], + [ + -73.464919, + 45.45613 + ], + [ + -73.464878, + 45.456427 + ], + [ + -73.464848, + 45.456873 + ], + [ + -73.464844, + 45.457169 + ], + [ + -73.464871, + 45.457574 + ], + [ + -73.464981, + 45.459102 + ], + [ + -73.464994, + 45.459278 + ], + [ + -73.465215, + 45.461562 + ], + [ + -73.465247, + 45.461893 + ], + [ + -73.465328, + 45.462497 + ], + [ + -73.465435, + 45.463211 + ], + [ + -73.465484, + 45.463543 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469043, + 45.46624 + ] + ] + }, + "id": 94, + "properties": { + "id": "29e59c5c-7626-454a-8895-a4097b12eef7", + "data": { + "gtfs": { + "shape_id": "33_2_A" + }, + "segments": [ + { + "distanceMeters": 1307, + "travelTimeSeconds": 137 + }, + { + "distanceMeters": 976, + "travelTimeSeconds": 103 + }, + { + "distanceMeters": 479, + "travelTimeSeconds": 112 + }, + { + "distanceMeters": 1056, + "travelTimeSeconds": 248 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 3818, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3146.349625898839, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.36, + "travelTimeWithoutDwellTimesSeconds": 600, + "operatingTimeWithLayoverTimeSeconds": 780, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 600, + "operatingSpeedWithLayoverMetersPerSecond": 4.89, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.36 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "25804924-ba76-4ef4-b42b-ff451a0d33dc", + "3481b163-efe1-4b08-b6af-eecb2141ddbe", + "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "8b2ad537-2155-49dc-b85b-0cd08b823921", + "segments": [ + 0, + 23, + 36, + 48 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 94, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.451254, + 45.48212 + ], + [ + -73.45011, + 45.4828 + ], + [ + -73.449882, + 45.482936 + ], + [ + -73.449245, + 45.483336 + ], + [ + -73.449101, + 45.483471 + ], + [ + -73.448914, + 45.483713 + ], + [ + -73.448817, + 45.483898 + ], + [ + -73.448629, + 45.484109 + ], + [ + -73.44844, + 45.484271 + ], + [ + -73.448225, + 45.484479 + ], + [ + -73.44775, + 45.484937 + ], + [ + -73.447415, + 45.485256 + ], + [ + -73.447237, + 45.485427 + ], + [ + -73.447005, + 45.485643 + ], + [ + -73.446791, + 45.485847 + ], + [ + -73.446708, + 45.485926 + ], + [ + -73.445795, + 45.486794 + ], + [ + -73.445654, + 45.486915 + ], + [ + -73.445524, + 45.487041 + ], + [ + -73.445408, + 45.487167 + ], + [ + -73.445368, + 45.48722 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445129, + 45.48732 + ], + [ + -73.444962, + 45.487262 + ], + [ + -73.444731, + 45.487167 + ], + [ + -73.444565, + 45.487086 + ], + [ + -73.444194, + 45.486807 + ], + [ + -73.444066, + 45.486883 + ], + [ + -73.443689, + 45.487108 + ], + [ + -73.443512, + 45.487213 + ], + [ + -73.443286, + 45.487346 + ], + [ + -73.441903, + 45.488164 + ], + [ + -73.441634, + 45.488328 + ], + [ + -73.441555, + 45.488376 + ], + [ + -73.441228, + 45.488564 + ], + [ + -73.440838, + 45.488816 + ], + [ + -73.440766, + 45.488924 + ], + [ + -73.440606, + 45.489239 + ], + [ + -73.440578, + 45.489293 + ], + [ + -73.440338, + 45.489779 + ], + [ + -73.440267, + 45.489918 + ], + [ + -73.440103, + 45.49026 + ], + [ + -73.439969, + 45.490525 + ], + [ + -73.440429, + 45.490652 + ], + [ + -73.440479, + 45.490665 + ], + [ + -73.440619, + 45.490703 + ], + [ + -73.44083, + 45.49076 + ], + [ + -73.44181, + 45.490985 + ], + [ + -73.44219, + 45.491013 + ], + [ + -73.442537, + 45.491049 + ], + [ + -73.442618, + 45.491067 + ], + [ + -73.442673, + 45.49108 + ], + [ + -73.443323, + 45.491233 + ], + [ + -73.443743, + 45.491333 + ], + [ + -73.444455, + 45.490906 + ], + [ + -73.445249, + 45.490425 + ], + [ + -73.445609, + 45.490209 + ], + [ + -73.445808, + 45.490089 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446822, + 45.490639 + ], + [ + -73.44688, + 45.490686 + ], + [ + -73.447261, + 45.491005 + ], + [ + -73.447337, + 45.491069 + ], + [ + -73.447665, + 45.490889 + ], + [ + -73.448136, + 45.490592 + ], + [ + -73.44848, + 45.49039 + ], + [ + -73.448793, + 45.490206 + ], + [ + -73.44919, + 45.489963 + ], + [ + -73.449328, + 45.489885 + ], + [ + -73.449476, + 45.489801 + ], + [ + -73.450048, + 45.489455 + ], + [ + -73.450226, + 45.489293 + ], + [ + -73.450385, + 45.489131 + ], + [ + -73.450522, + 45.488807 + ], + [ + -73.450553, + 45.488639 + ], + [ + -73.450562, + 45.488591 + ], + [ + -73.450564, + 45.488501 + ], + [ + -73.451142, + 45.48852 + ], + [ + -73.451437, + 45.488556 + ], + [ + -73.451471, + 45.48856 + ], + [ + -73.451663, + 45.488618 + ], + [ + -73.451864, + 45.488677 + ], + [ + -73.452026, + 45.48874 + ], + [ + -73.452059, + 45.488756 + ], + [ + -73.45223, + 45.488835 + ], + [ + -73.452272, + 45.488864 + ], + [ + -73.452316, + 45.488894 + ], + [ + -73.452398, + 45.488943 + ], + [ + -73.452482, + 45.488993 + ], + [ + -73.452596, + 45.489092 + ], + [ + -73.452853, + 45.489389 + ], + [ + -73.453059, + 45.489641 + ], + [ + -73.453301, + 45.489897 + ], + [ + -73.453554, + 45.490154 + ], + [ + -73.453816, + 45.490388 + ], + [ + -73.454028, + 45.490572 + ], + [ + -73.454376, + 45.490852 + ], + [ + -73.454694, + 45.491103 + ], + [ + -73.454792, + 45.49118 + ], + [ + -73.455383, + 45.490825 + ], + [ + -73.456177, + 45.490348 + ], + [ + -73.456382, + 45.490186 + ], + [ + -73.45652, + 45.490034 + ], + [ + -73.456589, + 45.489894 + ], + [ + -73.456688, + 45.489687 + ], + [ + -73.456691, + 45.489676 + ], + [ + -73.456709, + 45.489602 + ], + [ + -73.456724, + 45.489525 + ], + [ + -73.456835, + 45.488612 + ], + [ + -73.456898, + 45.488075 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.45772, + 45.486658 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.459245, + 45.485727 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.461093, + 45.484448 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.46135, + 45.4837 + ], + [ + -73.460838, + 45.483637 + ], + [ + -73.460406, + 45.4836 + ], + [ + -73.460182, + 45.483581 + ], + [ + -73.459999, + 45.483565 + ], + [ + -73.459497, + 45.483511 + ], + [ + -73.459033, + 45.483457 + ], + [ + -73.458739, + 45.483407 + ], + [ + -73.458547, + 45.483371 + ], + [ + -73.458333, + 45.483321 + ], + [ + -73.458016, + 45.483245 + ], + [ + -73.45777, + 45.483182 + ], + [ + -73.457498, + 45.483103 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.457528, + 45.482714 + ], + [ + -73.460931, + 45.480411 + ], + [ + -73.461043, + 45.480335 + ], + [ + -73.460965, + 45.480282 + ], + [ + -73.46017, + 45.47975 + ], + [ + -73.460311, + 45.479654 + ], + [ + -73.461947, + 45.478549 + ], + [ + -73.462028, + 45.478495 + ], + [ + -73.461943, + 45.478433 + ], + [ + -73.461432, + 45.478058 + ], + [ + -73.461335, + 45.477986 + ], + [ + -73.461695, + 45.47774 + ], + [ + -73.46271, + 45.477045 + ], + [ + -73.462832, + 45.476961 + ], + [ + -73.464383, + 45.475913 + ], + [ + -73.464098, + 45.475712 + ], + [ + -73.463948, + 45.475607 + ], + [ + -73.463529, + 45.475427 + ], + [ + -73.463, + 45.475189 + ], + [ + -73.462895, + 45.475142 + ], + [ + -73.462818, + 45.475107 + ], + [ + -73.461823, + 45.474666 + ], + [ + -73.461586, + 45.474511 + ], + [ + -73.4615, + 45.474454 + ], + [ + -73.462087, + 45.474055 + ], + [ + -73.462597, + 45.473708 + ], + [ + -73.462985, + 45.473456 + ], + [ + -73.464054, + 45.472703 + ], + [ + -73.464089, + 45.472678 + ], + [ + -73.465434, + 45.471774 + ], + [ + -73.465943, + 45.471423 + ], + [ + -73.466451, + 45.471073 + ], + [ + -73.467061, + 45.471469 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467869, + 45.471793 + ], + [ + -73.467954, + 45.471482 + ], + [ + -73.467979, + 45.471365 + ], + [ + -73.468005, + 45.471249 + ], + [ + -73.468064, + 45.470898 + ], + [ + -73.468088, + 45.470651 + ], + [ + -73.468112, + 45.470407 + ], + [ + -73.468119, + 45.470155 + ], + [ + -73.468115, + 45.470044 + ], + [ + -73.468111, + 45.469894 + ], + [ + -73.468108, + 45.469818 + ], + [ + -73.468107, + 45.469773 + ], + [ + -73.46805, + 45.4693 + ], + [ + -73.46801, + 45.469108 + ], + [ + -73.467953, + 45.468834 + ], + [ + -73.467932, + 45.468733 + ], + [ + -73.467793, + 45.468274 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466768 + ] + ] + }, + "id": 95, + "properties": { + "id": "5ed70b86-88e8-486b-9e8e-36d94ec0e0d0", + "data": { + "gtfs": { + "shape_id": "34_1_A" + }, + "segments": [ + { + "distanceMeters": 117, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 446, + "travelTimeSeconds": 85 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 76, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 138 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 79 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 143 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7145, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2182.003382807829, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 4.96, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 4.41, + "averageSpeedWithoutDwellTimesMetersPerSecond": 4.96 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "d9b94443-0b59-40db-aecb-0acb5ea7976c", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "e72d0d41-60dd-429c-9fc0-986190945d76", + "5a038102-c755-4ed1-808d-b41a0eb02aa9", + "6e3cdc85-5c0c-43a6-859f-4ad3aa775f67", + "5cb52e5c-c1b7-4111-984c-122d6e4401d5", + "7650e289-ca0a-45d4-ad94-da11b1683dc6", + "35f25056-4f99-4b6e-babc-10c53194c70e", + "0f232130-277e-4d7b-b106-b6821c45f0a9", + "4262a22a-885d-4877-ad99-0a8406e2adaa", + "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", + "517a8299-e807-4040-8ccd-f417dda7338c", + "da4ca96f-4db9-4287-b307-afc6221c923f", + "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "a90c4da7-455c-41d3-9961-c7a64d627572", + "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", + "491099bb-9493-4888-bd4e-20bd2140830a", + "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", + "10c2e9e3-14c8-465a-917c-28c8d9977609", + "9f622393-7da9-4ff8-9bda-12008512c7ed", + "4122212c-2ecd-4db2-a305-20f02711d17b", + "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", + "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", + "c467599b-2164-4b14-b9ca-8960936bda58", + "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", + "156c412f-0b84-4b14-a73e-e1d07d0b148d", + "51e1600d-418e-4477-9b26-9e5507d72a03", + "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "131616ed-8c78-458b-a65e-78f1aeac1fc7" + ], + "stops": [], + "line_id": "64663c2a-c848-4948-a48c-7e18d4a3fd0e", + "segments": [ + 0, + 1, + 9, + 14, + 20, + 29, + 32, + 37, + 45, + 52, + 57, + 63, + 70, + 76, + 87, + 99, + 107, + 111, + 120, + 125, + 130, + 142, + 151, + 154, + 159, + 162, + 165, + 168, + 175, + 180, + 183, + 194, + 203 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 95, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469004, + 45.466768 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466795, + 45.466596 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467476, + 45.467991 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467548, + 45.468225 + ], + [ + -73.467698, + 45.468792 + ], + [ + -73.467776, + 45.469183 + ], + [ + -73.46782, + 45.469453 + ], + [ + -73.46784, + 45.469698 + ], + [ + -73.467865, + 45.469989 + ], + [ + -73.467864, + 45.470057 + ], + [ + -73.467862, + 45.470168 + ], + [ + -73.46786, + 45.470362 + ], + [ + -73.467821, + 45.470781 + ], + [ + -73.467786, + 45.471019 + ], + [ + -73.467768, + 45.4711 + ], + [ + -73.467742, + 45.471226 + ], + [ + -73.467655, + 45.471563 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467508, + 45.472063 + ], + [ + -73.467493, + 45.472108 + ], + [ + -73.467254, + 45.472832 + ], + [ + -73.467075, + 45.473412 + ], + [ + -73.467018, + 45.473612 + ], + [ + -73.46686, + 45.474168 + ], + [ + -73.466715, + 45.474632 + ], + [ + -73.466501, + 45.475269 + ], + [ + -73.466278, + 45.475935 + ], + [ + -73.466234, + 45.476067 + ], + [ + -73.465592, + 45.477979 + ], + [ + -73.465357, + 45.478703 + ], + [ + -73.465269, + 45.478932 + ], + [ + -73.465247, + 45.479 + ], + [ + -73.465079, + 45.478932 + ], + [ + -73.464926, + 45.478932 + ], + [ + -73.4648, + 45.478959 + ], + [ + -73.4647, + 45.479009 + ], + [ + -73.464557, + 45.479101 + ], + [ + -73.464555, + 45.479102 + ], + [ + -73.463657, + 45.479683 + ], + [ + -73.462968, + 45.479195 + ], + [ + -73.462837, + 45.479103 + ], + [ + -73.462535, + 45.47931 + ], + [ + -73.461147, + 45.480264 + ], + [ + -73.461043, + 45.480335 + ], + [ + -73.457236, + 45.482911 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45645, + 45.482799 + ], + [ + -73.455886, + 45.482623 + ], + [ + -73.455654, + 45.482542 + ], + [ + -73.455462, + 45.482465 + ], + [ + -73.455276, + 45.482384 + ], + [ + -73.455009, + 45.482272 + ], + [ + -73.454605, + 45.482087 + ], + [ + -73.454381, + 45.481984 + ], + [ + -73.454145, + 45.481862 + ], + [ + -73.453796, + 45.481673 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452062, + 45.481636 + ], + [ + -73.45135, + 45.482063 + ], + [ + -73.451254, + 45.48212 + ] + ] + }, + "id": 96, + "properties": { + "id": "fd1b7eb8-6f34-4eeb-9b5a-027913e20099", + "data": { + "gtfs": { + "shape_id": "34_1_R" + }, + "segments": [ + { + "distanceMeters": 805, + "travelTimeSeconds": 420 + }, + { + "distanceMeters": 1119, + "travelTimeSeconds": 215 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 424, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 576, + "travelTimeSeconds": 112 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 3294, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2182.003382807829, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 3.66, + "travelTimeWithoutDwellTimesSeconds": 900, + "operatingTimeWithLayoverTimeSeconds": 1080, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 900, + "operatingSpeedWithLayoverMetersPerSecond": 3.05, + "averageSpeedWithoutDwellTimesMetersPerSecond": 3.66 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "acb7092d-3b2a-4d79-a4e3-09e7e52af475", + "bf51d692-a22e-42e9-a495-2d1955e0c462", + "a2558ba6-6969-4ec2-a211-1170eb732a2b", + "10c2e9e3-14c8-465a-917c-28c8d9977609", + "fd67ddde-e938-481c-8721-79fa136304ae", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af" + ], + "stops": [], + "line_id": "64663c2a-c848-4948-a48c-7e18d4a3fd0e", + "segments": [ + 0, + 31, + 61, + 64, + 67, + 69 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 96, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469004, + 45.466768 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466795, + 45.466596 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467476, + 45.467991 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467548, + 45.468225 + ], + [ + -73.467698, + 45.468792 + ], + [ + -73.467776, + 45.469183 + ], + [ + -73.46782, + 45.469453 + ], + [ + -73.46784, + 45.469694 + ], + [ + -73.467865, + 45.469989 + ], + [ + -73.467864, + 45.470057 + ], + [ + -73.467862, + 45.470168 + ], + [ + -73.46786, + 45.470362 + ], + [ + -73.467821, + 45.470781 + ], + [ + -73.467786, + 45.471019 + ], + [ + -73.467768, + 45.4711 + ], + [ + -73.467579, + 45.47132 + ], + [ + -73.467528, + 45.471365 + ], + [ + -73.467462, + 45.471392 + ], + [ + -73.467361, + 45.47141 + ], + [ + -73.467264, + 45.471406 + ], + [ + -73.467156, + 45.471392 + ], + [ + -73.466545, + 45.47101 + ], + [ + -73.466451, + 45.471073 + ], + [ + -73.465997, + 45.471386 + ], + [ + -73.465434, + 45.471774 + ], + [ + -73.464154, + 45.472634 + ], + [ + -73.464089, + 45.472678 + ], + [ + -73.462985, + 45.473456 + ], + [ + -73.462597, + 45.473708 + ], + [ + -73.462087, + 45.474055 + ], + [ + -73.461663, + 45.474343 + ], + [ + -73.4615, + 45.474454 + ], + [ + -73.461823, + 45.474666 + ], + [ + -73.462818, + 45.475107 + ], + [ + -73.462895, + 45.475142 + ], + [ + -73.463083, + 45.475227 + ], + [ + -73.463529, + 45.475427 + ], + [ + -73.463948, + 45.475607 + ], + [ + -73.464297, + 45.475853 + ], + [ + -73.464383, + 45.475913 + ], + [ + -73.462939, + 45.476889 + ], + [ + -73.462832, + 45.476961 + ], + [ + -73.461674, + 45.477754 + ], + [ + -73.461426, + 45.477924 + ], + [ + -73.461335, + 45.477986 + ], + [ + -73.461553, + 45.478146 + ], + [ + -73.461937, + 45.478429 + ], + [ + -73.462028, + 45.478495 + ], + [ + -73.461776, + 45.478665 + ], + [ + -73.46017, + 45.47975 + ], + [ + -73.460433, + 45.479926 + ], + [ + -73.460869, + 45.480218 + ], + [ + -73.461043, + 45.480335 + ], + [ + -73.460772, + 45.480518 + ], + [ + -73.457233, + 45.482913 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.456963, + 45.483096 + ], + [ + -73.457696, + 45.483312 + ], + [ + -73.457948, + 45.48338 + ], + [ + -73.45825, + 45.483452 + ], + [ + -73.458477, + 45.483499 + ], + [ + -73.458491, + 45.483501 + ], + [ + -73.458691, + 45.483542 + ], + [ + -73.458995, + 45.483592 + ], + [ + -73.459974, + 45.483704 + ], + [ + -73.46004, + 45.48371 + ], + [ + -73.460533, + 45.483756 + ], + [ + -73.460806, + 45.483781 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.459549, + 45.485502 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.457875, + 45.486542 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.456938, + 45.487845 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456835, + 45.488612 + ], + [ + -73.456724, + 45.489525 + ], + [ + -73.456709, + 45.489602 + ], + [ + -73.456688, + 45.489687 + ], + [ + -73.456589, + 45.489894 + ], + [ + -73.456548, + 45.489976 + ], + [ + -73.45652, + 45.490034 + ], + [ + -73.456382, + 45.490186 + ], + [ + -73.456177, + 45.490348 + ], + [ + -73.455038, + 45.491032 + ], + [ + -73.454792, + 45.49118 + ], + [ + -73.454498, + 45.490948 + ], + [ + -73.454376, + 45.490852 + ], + [ + -73.454028, + 45.490572 + ], + [ + -73.453816, + 45.490388 + ], + [ + -73.453554, + 45.490154 + ], + [ + -73.453301, + 45.489897 + ], + [ + -73.453059, + 45.489641 + ], + [ + -73.452853, + 45.489389 + ], + [ + -73.452596, + 45.489092 + ], + [ + -73.452482, + 45.488993 + ], + [ + -73.452443, + 45.48897 + ], + [ + -73.452398, + 45.488943 + ], + [ + -73.452316, + 45.488894 + ], + [ + -73.45223, + 45.488835 + ], + [ + -73.452059, + 45.488756 + ], + [ + -73.452026, + 45.48874 + ], + [ + -73.451864, + 45.488677 + ], + [ + -73.451663, + 45.488618 + ], + [ + -73.451471, + 45.48856 + ], + [ + -73.451142, + 45.48852 + ], + [ + -73.450763, + 45.488508 + ], + [ + -73.450564, + 45.488501 + ], + [ + -73.450562, + 45.488591 + ], + [ + -73.450522, + 45.488807 + ], + [ + -73.450385, + 45.489131 + ], + [ + -73.450226, + 45.489293 + ], + [ + -73.450048, + 45.489455 + ], + [ + -73.449936, + 45.489523 + ], + [ + -73.44964, + 45.489702 + ], + [ + -73.449476, + 45.489801 + ], + [ + -73.44919, + 45.489963 + ], + [ + -73.448793, + 45.490206 + ], + [ + -73.44848, + 45.49039 + ], + [ + -73.448136, + 45.490592 + ], + [ + -73.447665, + 45.490889 + ], + [ + -73.447464, + 45.490999 + ], + [ + -73.447337, + 45.491069 + ], + [ + -73.44688, + 45.490686 + ], + [ + -73.446822, + 45.490639 + ], + [ + -73.446256, + 45.490176 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.445609, + 45.490209 + ], + [ + -73.445249, + 45.490425 + ], + [ + -73.444455, + 45.490906 + ], + [ + -73.443921, + 45.491226 + ], + [ + -73.443743, + 45.491333 + ], + [ + -73.442673, + 45.49108 + ], + [ + -73.442618, + 45.491067 + ], + [ + -73.442537, + 45.491049 + ], + [ + -73.44219, + 45.491013 + ], + [ + -73.44181, + 45.490985 + ], + [ + -73.44083, + 45.49076 + ], + [ + -73.440429, + 45.490652 + ], + [ + -73.440092, + 45.490559 + ], + [ + -73.439969, + 45.490525 + ], + [ + -73.440103, + 45.49026 + ], + [ + -73.44012, + 45.490225 + ], + [ + -73.440267, + 45.489918 + ], + [ + -73.440338, + 45.489779 + ], + [ + -73.44053, + 45.489391 + ], + [ + -73.440578, + 45.489293 + ], + [ + -73.440766, + 45.488924 + ], + [ + -73.440838, + 45.488816 + ], + [ + -73.441228, + 45.488564 + ], + [ + -73.441409, + 45.48846 + ], + [ + -73.441555, + 45.488376 + ], + [ + -73.441903, + 45.488164 + ], + [ + -73.443286, + 45.487346 + ], + [ + -73.443689, + 45.487108 + ], + [ + -73.443933, + 45.486963 + ], + [ + -73.444066, + 45.486883 + ], + [ + -73.444405, + 45.487149 + ], + [ + -73.44464, + 45.487266 + ], + [ + -73.444883, + 45.487369 + ], + [ + -73.445062, + 45.487428 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445319, + 45.487496 + ], + [ + -73.445386, + 45.487388 + ], + [ + -73.445526, + 45.487217 + ], + [ + -73.445638, + 45.487095 + ], + [ + -73.445646, + 45.487088 + ], + [ + -73.445764, + 45.486978 + ], + [ + -73.445905, + 45.486857 + ], + [ + -73.44672, + 45.48608 + ], + [ + -73.44682, + 45.485985 + ], + [ + -73.447123, + 45.485706 + ], + [ + -73.447356, + 45.48549 + ], + [ + -73.447536, + 45.485315 + ], + [ + -73.447867, + 45.484995 + ], + [ + -73.448286, + 45.484591 + ], + [ + -73.448552, + 45.484334 + ], + [ + -73.448747, + 45.484168 + ], + [ + -73.448891, + 45.484006 + ], + [ + -73.448947, + 45.483943 + ], + [ + -73.449046, + 45.483754 + ], + [ + -73.449223, + 45.483529 + ], + [ + -73.449352, + 45.483408 + ], + [ + -73.449873, + 45.483083 + ], + [ + -73.449978, + 45.483017 + ], + [ + -73.451449, + 45.482131 + ], + [ + -73.451776, + 45.481934 + ] + ] + }, + "id": 97, + "properties": { + "id": "314742bd-e920-4fd4-9fd1-e04e8b44b014", + "data": { + "gtfs": { + "shape_id": "34_2_R" + }, + "segments": [ + { + "distanceMeters": 805, + "travelTimeSeconds": 125 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 78, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 432, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 317, + "travelTimeSeconds": 79 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 49 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7451, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2182.003382807829, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.4, + "travelTimeWithoutDwellTimesSeconds": 1380, + "operatingTimeWithLayoverTimeSeconds": 1560, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1380, + "operatingSpeedWithLayoverMetersPerSecond": 4.78, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.4 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "acb7092d-3b2a-4d79-a4e3-09e7e52af475", + "156c412f-0b84-4b14-a73e-e1d07d0b148d", + "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", + "c467599b-2164-4b14-b9ca-8960936bda58", + "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", + "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", + "4122212c-2ecd-4db2-a305-20f02711d17b", + "9f622393-7da9-4ff8-9bda-12008512c7ed", + "10c2e9e3-14c8-465a-917c-28c8d9977609", + "fd67ddde-e938-481c-8721-79fa136304ae", + "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", + "c24b91da-a4a3-4b28-b987-5726c6a01fdb", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", + "da4ca96f-4db9-4287-b307-afc6221c923f", + "517a8299-e807-4040-8ccd-f417dda7338c", + "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", + "4262a22a-885d-4877-ad99-0a8406e2adaa", + "0f232130-277e-4d7b-b106-b6821c45f0a9", + "35f25056-4f99-4b6e-babc-10c53194c70e", + "7650e289-ca0a-45d4-ad94-da11b1683dc6", + "5cb52e5c-c1b7-4111-984c-122d6e4401d5", + "6e3cdc85-5c0c-43a6-859f-4ad3aa775f67", + "5a038102-c755-4ed1-808d-b41a0eb02aa9", + "e72d0d41-60dd-429c-9fc0-986190945d76", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af" + ], + "stops": [], + "line_id": "64663c2a-c848-4948-a48c-7e18d4a3fd0e", + "segments": [ + 0, + 31, + 47, + 49, + 54, + 62, + 64, + 67, + 70, + 75, + 78, + 90, + 102, + 108, + 117, + 124, + 128, + 140, + 150, + 158, + 165, + 169, + 176, + 185, + 191, + 196, + 201, + 212, + 215, + 221, + 229 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 97, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.451776, + 45.481934 + ], + [ + -73.45215, + 45.481708 + ], + [ + -73.452851, + 45.48129 + ], + [ + -73.453668, + 45.481781 + ], + [ + -73.454023, + 45.481974 + ], + [ + -73.454266, + 45.482101 + ], + [ + -73.454494, + 45.482204 + ], + [ + -73.454624, + 45.482357 + ], + [ + -73.455203, + 45.482812 + ], + [ + -73.455441, + 45.482965 + ], + [ + -73.45551, + 45.483008 + ], + [ + -73.456089, + 45.483375 + ], + [ + -73.456112, + 45.483393 + ], + [ + -73.456334, + 45.483523 + ], + [ + -73.456426, + 45.48346 + ], + [ + -73.456963, + 45.483096 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.460937, + 45.480407 + ], + [ + -73.461043, + 45.480335 + ], + [ + -73.4625, + 45.479334 + ], + [ + -73.462715, + 45.479187 + ], + [ + -73.462837, + 45.479103 + ], + [ + -73.463592, + 45.479637 + ], + [ + -73.463657, + 45.479683 + ], + [ + -73.4647, + 45.479009 + ], + [ + -73.4648, + 45.478959 + ], + [ + -73.464926, + 45.478932 + ], + [ + -73.465079, + 45.478932 + ], + [ + -73.465247, + 45.479 + ], + [ + -73.46547, + 45.479009 + ], + [ + -73.465503, + 45.478911 + ], + [ + -73.465652, + 45.478467 + ], + [ + -73.465874, + 45.477808 + ], + [ + -73.466476, + 45.475989 + ], + [ + -73.466484, + 45.475966 + ], + [ + -73.466637, + 45.475504 + ], + [ + -73.467366, + 45.473305 + ], + [ + -73.467616, + 45.472553 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467869, + 45.471793 + ], + [ + -73.467954, + 45.471482 + ], + [ + -73.467979, + 45.471365 + ], + [ + -73.468005, + 45.471249 + ], + [ + -73.468064, + 45.470898 + ], + [ + -73.468089, + 45.470646 + ], + [ + -73.468112, + 45.470407 + ], + [ + -73.468119, + 45.470155 + ], + [ + -73.468115, + 45.470044 + ], + [ + -73.468111, + 45.469894 + ], + [ + -73.468108, + 45.469818 + ], + [ + -73.468107, + 45.469773 + ], + [ + -73.46805, + 45.4693 + ], + [ + -73.46801, + 45.469108 + ], + [ + -73.467952, + 45.468828 + ], + [ + -73.467932, + 45.468733 + ], + [ + -73.467793, + 45.468274 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466768 + ] + ] + }, + "id": 98, + "properties": { + "id": "32420bf3-2cc6-476e-a95c-bb5faa71b0b4", + "data": { + "gtfs": { + "shape_id": "34_2_A" + }, + "segments": [ + { + "distanceMeters": 979, + "travelTimeSeconds": 217 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 527, + "travelTimeSeconds": 117 + }, + { + "distanceMeters": 608, + "travelTimeSeconds": 135 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 81 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 2969, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2182.003382807829, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 4.5, + "travelTimeWithoutDwellTimesSeconds": 660, + "operatingTimeWithLayoverTimeSeconds": 840, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 660, + "operatingSpeedWithLayoverMetersPerSecond": 3.53, + "averageSpeedWithoutDwellTimesMetersPerSecond": 4.5 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "10c2e9e3-14c8-465a-917c-28c8d9977609", + "a2558ba6-6969-4ec2-a211-1170eb732a2b", + "a2558ba6-6969-4ec2-a211-1170eb732a2b", + "1758013c-4193-42f0-a495-c36930003f5b", + "51e1600d-418e-4477-9b26-9e5507d72a03", + "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "131616ed-8c78-458b-a65e-78f1aeac1fc7" + ], + "stops": [], + "line_id": "64663c2a-c848-4948-a48c-7e18d4a3fd0e", + "segments": [ + 0, + 17, + 20, + 22, + 33, + 45, + 54 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 98, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.457315, + 45.431886 + ], + [ + -73.457278, + 45.431848 + ], + [ + -73.456419, + 45.43101 + ], + [ + -73.456394, + 45.430985 + ], + [ + -73.455874, + 45.430428 + ], + [ + -73.455223, + 45.429731 + ], + [ + -73.45511, + 45.429613 + ], + [ + -73.455058, + 45.429559 + ], + [ + -73.455039, + 45.42954 + ], + [ + -73.454933, + 45.42945 + ], + [ + -73.454809, + 45.429506 + ], + [ + -73.454657, + 45.429588 + ], + [ + -73.454225, + 45.429797 + ], + [ + -73.453566, + 45.430073 + ], + [ + -73.453131, + 45.430253 + ], + [ + -73.452234, + 45.430624 + ], + [ + -73.451821, + 45.430796 + ], + [ + -73.451723, + 45.43084 + ], + [ + -73.451449, + 45.430962 + ], + [ + -73.451306, + 45.431026 + ], + [ + -73.450883, + 45.431238 + ], + [ + -73.450399, + 45.431499 + ], + [ + -73.449891, + 45.431803 + ], + [ + -73.449325, + 45.43218 + ], + [ + -73.448785, + 45.432585 + ], + [ + -73.448377, + 45.432935 + ], + [ + -73.447875, + 45.433413 + ], + [ + -73.447643, + 45.43369 + ], + [ + -73.44745, + 45.433901 + ], + [ + -73.447206, + 45.434187 + ], + [ + -73.447139, + 45.434272 + ], + [ + -73.446987, + 45.434468 + ], + [ + -73.446912, + 45.434572 + ], + [ + -73.446579, + 45.435033 + ], + [ + -73.446026, + 45.435853 + ], + [ + -73.445899, + 45.436025 + ], + [ + -73.445817, + 45.436136 + ], + [ + -73.445664, + 45.436383 + ], + [ + -73.445561, + 45.436548 + ], + [ + -73.445502, + 45.43665 + ], + [ + -73.445413, + 45.436734 + ], + [ + -73.444106, + 45.438698 + ], + [ + -73.443987, + 45.438877 + ], + [ + -73.443881, + 45.43883 + ], + [ + -73.443802, + 45.43881 + ], + [ + -73.443767, + 45.438801 + ], + [ + -73.443695, + 45.438781 + ], + [ + -73.44351, + 45.438696 + ], + [ + -73.443361, + 45.438611 + ], + [ + -73.443195, + 45.438492 + ], + [ + -73.443078, + 45.438408 + ], + [ + -73.443034, + 45.438377 + ], + [ + -73.442658, + 45.438118 + ], + [ + -73.442476, + 45.438049 + ], + [ + -73.442242, + 45.438054 + ], + [ + -73.442128, + 45.438081 + ], + [ + -73.441977, + 45.438145 + ], + [ + -73.44184, + 45.438241 + ], + [ + -73.441559, + 45.438446 + ], + [ + -73.440651, + 45.439108 + ], + [ + -73.439875, + 45.439682 + ], + [ + -73.439709, + 45.439781 + ], + [ + -73.439595, + 45.439843 + ], + [ + -73.439694, + 45.439922 + ], + [ + -73.440104, + 45.440226 + ], + [ + -73.440198, + 45.440296 + ], + [ + -73.440843, + 45.440775 + ], + [ + -73.441844, + 45.441518 + ], + [ + -73.441948, + 45.441595 + ], + [ + -73.442064, + 45.44172 + ], + [ + -73.442173, + 45.441795 + ], + [ + -73.4445, + 45.443462 + ], + [ + -73.444646, + 45.443567 + ], + [ + -73.444814, + 45.443691 + ], + [ + -73.445792, + 45.44439 + ], + [ + -73.445916, + 45.444479 + ], + [ + -73.447003, + 45.445252 + ], + [ + -73.447144, + 45.445352 + ], + [ + -73.44736, + 45.4455 + ], + [ + -73.447729, + 45.445718 + ], + [ + -73.448087, + 45.44592 + ], + [ + -73.449211, + 45.446549 + ], + [ + -73.449266, + 45.44658 + ], + [ + -73.4494, + 45.446659 + ], + [ + -73.449563, + 45.446742 + ], + [ + -73.450068, + 45.447011 + ], + [ + -73.450448, + 45.447201 + ], + [ + -73.451097, + 45.447517 + ], + [ + -73.4522, + 45.448094 + ], + [ + -73.452476, + 45.448237 + ], + [ + -73.453807, + 45.448921 + ], + [ + -73.454019, + 45.449072 + ], + [ + -73.454088, + 45.449121 + ], + [ + -73.454556, + 45.449427 + ], + [ + -73.454811, + 45.449621 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.455393, + 45.45012 + ], + [ + -73.456061, + 45.45066 + ], + [ + -73.456286, + 45.450829 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.457156, + 45.45145 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457924, + 45.451894 + ], + [ + -73.458487, + 45.4522 + ], + [ + -73.458738, + 45.452335 + ], + [ + -73.458941, + 45.452443 + ], + [ + -73.459713, + 45.452799 + ], + [ + -73.461251, + 45.45348 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.462928, + 45.454227 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463822, + 45.454609 + ], + [ + -73.464911, + 45.455069 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465048, + 45.455509 + ], + [ + -73.465041, + 45.455536 + ], + [ + -73.464975, + 45.455829 + ], + [ + -73.464919, + 45.45613 + ], + [ + -73.464881, + 45.456408 + ], + [ + -73.464878, + 45.456427 + ], + [ + -73.464848, + 45.456873 + ], + [ + -73.464844, + 45.457169 + ], + [ + -73.464871, + 45.457574 + ], + [ + -73.464982, + 45.459112 + ], + [ + -73.464994, + 45.459278 + ], + [ + -73.465215, + 45.461562 + ], + [ + -73.465247, + 45.461893 + ], + [ + -73.465328, + 45.462497 + ], + [ + -73.465435, + 45.463211 + ], + [ + -73.465484, + 45.463543 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466768 + ] + ] + }, + "id": 99, + "properties": { + "id": "e97d47cc-1faa-4ad3-a552-86879a670f37", + "data": { + "gtfs": { + "shape_id": "35_2_A" + }, + "segments": [ + { + "distanceMeters": 120, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 343, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 542, + "travelTimeSeconds": 82 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 427, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 451, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 469, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 87, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 462, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 1106, + "travelTimeSeconds": 290 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6362, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3971.080358174438, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.05, + "travelTimeWithoutDwellTimesSeconds": 1260, + "operatingTimeWithLayoverTimeSeconds": 1440, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1260, + "operatingSpeedWithLayoverMetersPerSecond": 4.42, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.05 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "ba9dbeb6-b197-4bf3-9ae7-2251eb9f3485", + "772e5e9c-3d69-4a70-b583-9525616f4a61", + "dca1f1af-a3cf-4dc0-9b7c-88db3f7a9ff7", + "1e5e280b-187c-453e-ae50-34515416c146", + "6780d4e6-8fc6-40a2-9f96-57ee1360cc41", + "639f03d6-fbc0-4032-b293-79460cff8a75", + "d3ead48f-87a1-4905-af00-10546937b61d", + "49b9afd3-56d8-4495-8b7a-642e5568568e", + "13dab893-0384-46f9-a2e5-e504a47de39a", + "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", + "d306b992-8d43-4ba8-8460-68d87b486222", + "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", + "b5853393-4072-4255-b507-e9c4b6659c5b", + "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", + "2ac07b96-98be-4710-a749-3162a661fcb5", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "981ebecb-3dc2-4439-8648-8052a51df7ec", + "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", + "131616ed-8c78-458b-a65e-78f1aeac1fc7" + ], + "stops": [], + "line_id": "0e24625c-d936-4ae1-b0bd-5cb2a1f4b411", + "segments": [ + 0, + 2, + 6, + 18, + 32, + 35, + 49, + 65, + 67, + 71, + 76, + 81, + 91, + 94, + 100, + 105, + 108, + 110, + 113, + 124 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 99, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469004, + 45.466768 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466352, + 45.465288 + ], + [ + -73.466238, + 45.465062 + ], + [ + -73.466142, + 45.464853 + ], + [ + -73.466048, + 45.464638 + ], + [ + -73.46599, + 45.464498 + ], + [ + -73.465967, + 45.464441 + ], + [ + -73.465777, + 45.463945 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465663, + 45.463449 + ], + [ + -73.465646, + 45.463238 + ], + [ + -73.465636, + 45.463073 + ], + [ + -73.465461, + 45.461275 + ], + [ + -73.465447, + 45.461137 + ], + [ + -73.465251, + 45.459263 + ], + [ + -73.465199, + 45.458728 + ], + [ + -73.465132, + 45.458038 + ], + [ + -73.465113, + 45.457592 + ], + [ + -73.465124, + 45.457143 + ], + [ + -73.465143, + 45.45685 + ], + [ + -73.465153, + 45.456755 + ], + [ + -73.465199, + 45.456301 + ], + [ + -73.465244, + 45.456 + ], + [ + -73.465335, + 45.455572 + ], + [ + -73.465339, + 45.455554 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.463912, + 45.454506 + ], + [ + -73.463601, + 45.454377 + ], + [ + -73.463324, + 45.454263 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.461816, + 45.453582 + ], + [ + -73.461798, + 45.453573 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.459815, + 45.452691 + ], + [ + -73.459196, + 45.452403 + ], + [ + -73.45904, + 45.452331 + ], + [ + -73.458688, + 45.452137 + ], + [ + -73.458046, + 45.451791 + ], + [ + -73.457698, + 45.451589 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457438, + 45.451421 + ], + [ + -73.457131, + 45.451219 + ], + [ + -73.456851, + 45.451021 + ], + [ + -73.45659, + 45.450823 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456003, + 45.45033 + ], + [ + -73.455823, + 45.450178 + ], + [ + -73.455605, + 45.449994 + ], + [ + -73.455056, + 45.44954 + ], + [ + -73.454737, + 45.449301 + ], + [ + -73.454449, + 45.449112 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.453273, + 45.448481 + ], + [ + -73.451557, + 45.447603 + ], + [ + -73.45107, + 45.447354 + ], + [ + -73.45026, + 45.446936 + ], + [ + -73.44967, + 45.446635 + ], + [ + -73.449652, + 45.446626 + ], + [ + -73.449554, + 45.446569 + ], + [ + -73.449363, + 45.446456 + ], + [ + -73.447677, + 45.44551 + ], + [ + -73.447484, + 45.445387 + ], + [ + -73.447408, + 45.44534 + ], + [ + -73.447287, + 45.445263 + ], + [ + -73.447125, + 45.445146 + ], + [ + -73.446612, + 45.444764 + ], + [ + -73.445568, + 45.444021 + ], + [ + -73.444903, + 45.443527 + ], + [ + -73.444834, + 45.443475 + ], + [ + -73.444807, + 45.443457 + ], + [ + -73.442882, + 45.442105 + ], + [ + -73.442352, + 45.441733 + ], + [ + -73.442337, + 45.441722 + ], + [ + -73.442193, + 45.441589 + ], + [ + -73.442073, + 45.441479 + ], + [ + -73.441548, + 45.441133 + ], + [ + -73.4411, + 45.440787 + ], + [ + -73.440974, + 45.440696 + ], + [ + -73.440252, + 45.440176 + ], + [ + -73.439966, + 45.439968 + ], + [ + -73.439796, + 45.439844 + ], + [ + -73.439951, + 45.43977 + ], + [ + -73.439998, + 45.439736 + ], + [ + -73.441517, + 45.438614 + ], + [ + -73.441585, + 45.438564 + ], + [ + -73.441653, + 45.438513 + ], + [ + -73.441894, + 45.43833 + ], + [ + -73.441985, + 45.438261 + ], + [ + -73.442108, + 45.438203 + ], + [ + -73.442221, + 45.438167 + ], + [ + -73.442354, + 45.438153 + ], + [ + -73.442462, + 45.438164 + ], + [ + -73.442569, + 45.438189 + ], + [ + -73.442661, + 45.43824 + ], + [ + -73.442769, + 45.438297 + ], + [ + -73.442853, + 45.438358 + ], + [ + -73.442961, + 45.438436 + ], + [ + -73.44304, + 45.438492 + ], + [ + -73.443321, + 45.438701 + ], + [ + -73.443465, + 45.438788 + ], + [ + -73.443675, + 45.438864 + ], + [ + -73.44376, + 45.438896 + ], + [ + -73.443838, + 45.438937 + ], + [ + -73.443906, + 45.438986 + ], + [ + -73.444093, + 45.439042 + ], + [ + -73.444175, + 45.438929 + ], + [ + -73.444341, + 45.438676 + ], + [ + -73.444677, + 45.438164 + ], + [ + -73.445291, + 45.437242 + ], + [ + -73.445458, + 45.436994 + ], + [ + -73.445467, + 45.43698 + ], + [ + -73.445588, + 45.436789 + ], + [ + -73.445658, + 45.436699 + ], + [ + -73.445998, + 45.43622 + ], + [ + -73.446132, + 45.436018 + ], + [ + -73.446179, + 45.435948 + ], + [ + -73.446205, + 45.435911 + ], + [ + -73.446635, + 45.435286 + ], + [ + -73.447013, + 45.43472 + ], + [ + -73.447167, + 45.434479 + ], + [ + -73.447171, + 45.434474 + ], + [ + -73.447325, + 45.434288 + ], + [ + -73.447405, + 45.434193 + ], + [ + -73.447515, + 45.434057 + ], + [ + -73.447812, + 45.43372 + ], + [ + -73.44808, + 45.433435 + ], + [ + -73.448286, + 45.433242 + ], + [ + -73.448467, + 45.433072 + ], + [ + -73.448834, + 45.432756 + ], + [ + -73.449139, + 45.432514 + ], + [ + -73.449431, + 45.432297 + ], + [ + -73.44953, + 45.432225 + ], + [ + -73.449956, + 45.431941 + ], + [ + -73.450305, + 45.431728 + ], + [ + -73.450787, + 45.431457 + ], + [ + -73.451268, + 45.431211 + ], + [ + -73.451712, + 45.431001 + ], + [ + -73.451771, + 45.430971 + ], + [ + -73.451808, + 45.430952 + ], + [ + -73.451911, + 45.430904 + ], + [ + -73.452123, + 45.43081 + ], + [ + -73.452869, + 45.430501 + ], + [ + -73.453778, + 45.430126 + ], + [ + -73.454571, + 45.429789 + ], + [ + -73.454851, + 45.429635 + ], + [ + -73.4549, + 45.429607 + ], + [ + -73.455039, + 45.42954 + ], + [ + -73.455058, + 45.429559 + ], + [ + -73.455223, + 45.429731 + ], + [ + -73.455874, + 45.430428 + ], + [ + -73.456394, + 45.430985 + ], + [ + -73.456434, + 45.431024 + ], + [ + -73.457278, + 45.431848 + ], + [ + -73.457465, + 45.432045 + ], + [ + -73.457548, + 45.432133 + ] + ] + }, + "id": 100, + "properties": { + "id": "3102729f-268c-4e96-a67d-b6aa5993b3fb", + "data": { + "gtfs": { + "shape_id": "35_2_R" + }, + "segments": [ + { + "distanceMeters": 837, + "travelTimeSeconds": 135 + }, + { + "distanceMeters": 864, + "travelTimeSeconds": 139 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 464, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 343, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 497, + "travelTimeSeconds": 91 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 536, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 23 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6345, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3971.080358174438, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.22, + "travelTimeWithoutDwellTimesSeconds": 1020, + "operatingTimeWithLayoverTimeSeconds": 1200, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1020, + "operatingSpeedWithLayoverMetersPerSecond": 5.29, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.22 + }, + "mode": "bus", + "name": "Sect. L Brossard", + "color": "#A32638", + "nodes": [ + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "74887516-47d5-4269-9513-84672d18e287", + "2946050b-73ca-45c7-be10-f80ba5b43ab5", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "ab493a3c-1217-4122-93b5-217f7741b2ea", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "2c6638eb-437e-4a41-bb5d-d6093797361d", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", + "d306b992-8d43-4ba8-8460-68d87b486222", + "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", + "88486643-e9da-4936-905d-86d1e3882217", + "c5b32d48-73e8-4193-bbcc-f643b32c6ad7", + "d3ead48f-87a1-4905-af00-10546937b61d", + "c7ecdf81-e322-4f7b-837f-23d0dbe48d4e", + "7086213c-6c6f-4acd-ad80-070f91d1eae3", + "601fc633-4aed-4e9a-b678-52e4dedfe19d", + "dca1f1af-a3cf-4dc0-9b7c-88db3f7a9ff7", + "772e5e9c-3d69-4a70-b583-9525616f4a61", + "ba9dbeb6-b197-4bf3-9ae7-2251eb9f3485" + ], + "stops": [], + "line_id": "0e24625c-d936-4ae1-b0bd-5cb2a1f4b411", + "segments": [ + 0, + 29, + 46, + 49, + 53, + 57, + 65, + 69, + 75, + 81, + 86, + 90, + 98, + 114, + 133, + 139, + 156, + 163, + 170 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 100, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.471801, + 45.47482 + ], + [ + -73.471919, + 45.474907 + ], + [ + -73.472018, + 45.474979 + ], + [ + -73.47234, + 45.475227 + ], + [ + -73.473157, + 45.475808 + ], + [ + -73.473415, + 45.476001 + ], + [ + -73.473844, + 45.476308 + ], + [ + -73.475018, + 45.477149 + ], + [ + -73.475712, + 45.477639 + ], + [ + -73.476119, + 45.477927 + ], + [ + -73.476929, + 45.478485 + ], + [ + -73.477462, + 45.478904 + ], + [ + -73.477667, + 45.479048 + ], + [ + -73.477713, + 45.479021 + ], + [ + -73.477757, + 45.479003 + ], + [ + -73.477866, + 45.478954 + ], + [ + -73.477979, + 45.478918 + ], + [ + -73.478075, + 45.478904 + ], + [ + -73.478146, + 45.478904 + ], + [ + -73.478298, + 45.478904 + ], + [ + -73.478426, + 45.478904 + ], + [ + -73.478918, + 45.478914 + ], + [ + -73.479078, + 45.478918 + ], + [ + -73.479175, + 45.478922 + ], + [ + -73.479295, + 45.478922 + ], + [ + -73.479623, + 45.478936 + ], + [ + -73.479808, + 45.478941 + ], + [ + -73.480089, + 45.478949 + ], + [ + -73.481631, + 45.478977 + ], + [ + -73.482205, + 45.478986 + ], + [ + -73.482348, + 45.478989 + ], + [ + -73.482631, + 45.478995 + ], + [ + -73.482756, + 45.478997 + ], + [ + -73.484917, + 45.479027 + ], + [ + -73.485227, + 45.479031 + ], + [ + -73.485584, + 45.479045 + ], + [ + -73.485771, + 45.479058 + ], + [ + -73.486111, + 45.479058 + ], + [ + -73.486149, + 45.479058 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486526, + 45.47904 + ], + [ + -73.486789, + 45.47904 + ], + [ + -73.487039, + 45.479049 + ], + [ + -73.491329, + 45.479132 + ], + [ + -73.491487, + 45.479136 + ], + [ + -73.491713, + 45.47914 + ], + [ + -73.49213, + 45.479149 + ], + [ + -73.493367, + 45.479162 + ], + [ + -73.495789, + 45.479202 + ], + [ + -73.496137, + 45.479208 + ], + [ + -73.496207, + 45.479208 + ], + [ + -73.496272, + 45.479208 + ], + [ + -73.497101, + 45.479217 + ], + [ + -73.497966, + 45.479231 + ], + [ + -73.498188, + 45.479235 + ], + [ + -73.498413, + 45.479239 + ], + [ + -73.498669, + 45.479235 + ], + [ + -73.498683, + 45.479234 + ], + [ + -73.498818, + 45.47923 + ], + [ + -73.499162, + 45.479257 + ], + [ + -73.49961, + 45.479198 + ], + [ + -73.500019, + 45.479082 + ], + [ + -73.500107, + 45.478998 + ], + [ + -73.500272, + 45.479047 + ], + [ + -73.500354, + 45.479074 + ], + [ + -73.500404, + 45.479087 + ], + [ + -73.500422, + 45.479099 + ], + [ + -73.500588, + 45.479205 + ], + [ + -73.501159, + 45.479818 + ], + [ + -73.501455, + 45.480118 + ], + [ + -73.50163, + 45.480263 + ], + [ + -73.501828, + 45.48048 + ], + [ + -73.502007, + 45.480678 + ], + [ + -73.502676, + 45.481412 + ], + [ + -73.502806, + 45.48156 + ], + [ + -73.503272, + 45.482092 + ], + [ + -73.50345, + 45.482308 + ], + [ + -73.503512, + 45.48238 + ], + [ + -73.503598, + 45.482497 + ], + [ + -73.50345, + 45.482561 + ], + [ + -73.50324, + 45.482654 + ], + [ + -73.503128, + 45.482703 + ], + [ + -73.503016, + 45.482753 + ], + [ + -73.502869, + 45.482816 + ], + [ + -73.502327, + 45.483041 + ], + [ + -73.502207, + 45.483054 + ], + [ + -73.501868, + 45.48304 + ], + [ + -73.501782, + 45.483036 + ], + [ + -73.501783, + 45.482959 + ], + [ + -73.501789, + 45.482654 + ], + [ + -73.501796, + 45.482353 + ], + [ + -73.501797, + 45.482254 + ], + [ + -73.501794, + 45.482164 + ], + [ + -73.501801, + 45.482028 + ], + [ + -73.501807, + 45.481903 + ], + [ + -73.50182, + 45.481637 + ], + [ + -73.501658, + 45.481634 + ], + [ + -73.499752, + 45.481598 + ], + [ + -73.499712, + 45.481597 + ], + [ + -73.498761, + 45.481579 + ], + [ + -73.498134, + 45.481565 + ], + [ + -73.497935, + 45.481564 + ], + [ + -73.497219, + 45.481561 + ], + [ + -73.497004, + 45.48157 + ], + [ + -73.496494, + 45.481781 + ], + [ + -73.496461, + 45.481795 + ], + [ + -73.496343, + 45.481844 + ], + [ + -73.496212, + 45.481898 + ], + [ + -73.496051, + 45.481961 + ], + [ + -73.495949, + 45.482002 + ], + [ + -73.495781, + 45.482065 + ], + [ + -73.495646, + 45.482096 + ], + [ + -73.495536, + 45.482132 + ], + [ + -73.495418, + 45.482168 + ], + [ + -73.49497, + 45.482155 + ], + [ + -73.494838, + 45.48215 + ], + [ + -73.494698, + 45.482146 + ], + [ + -73.493158, + 45.482132 + ], + [ + -73.493, + 45.482114 + ], + [ + -73.492853, + 45.482078 + ], + [ + -73.492741, + 45.482042 + ], + [ + -73.492546, + 45.481956 + ], + [ + -73.492453, + 45.4819 + ], + [ + -73.492355, + 45.481839 + ], + [ + -73.492197, + 45.481727 + ], + [ + -73.492063, + 45.481628 + ], + [ + -73.491478, + 45.481178 + ], + [ + -73.491326, + 45.481039 + ], + [ + -73.491065, + 45.480765 + ], + [ + -73.491016, + 45.480715 + ], + [ + -73.49089, + 45.480751 + ], + [ + -73.490751, + 45.480796 + ], + [ + -73.490511, + 45.480858 + ], + [ + -73.489826, + 45.480989 + ], + [ + -73.489679, + 45.481016 + ], + [ + -73.489517, + 45.481047 + ], + [ + -73.489299, + 45.481083 + ], + [ + -73.48873, + 45.481185 + ], + [ + -73.488719, + 45.481187 + ], + [ + -73.488596, + 45.481209 + ], + [ + -73.488358, + 45.481254 + ], + [ + -73.488145, + 45.481295 + ], + [ + -73.48795, + 45.481331 + ], + [ + -73.487751, + 45.481349 + ], + [ + -73.487396, + 45.481353 + ], + [ + -73.486991, + 45.481335 + ], + [ + -73.486845, + 45.481313 + ], + [ + -73.486702, + 45.481259 + ], + [ + -73.486595, + 45.481214 + ], + [ + -73.486506, + 45.481151 + ], + [ + -73.486352, + 45.480984 + ], + [ + -73.48629, + 45.480791 + ], + [ + -73.486283, + 45.48048 + ], + [ + -73.486282, + 45.480458 + ], + [ + -73.486298, + 45.480129 + ], + [ + -73.486318, + 45.479855 + ], + [ + -73.486329, + 45.479263 + ], + [ + -73.486368, + 45.479174 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486149, + 45.479058 + ], + [ + -73.485771, + 45.479058 + ], + [ + -73.485584, + 45.479045 + ], + [ + -73.485227, + 45.479031 + ], + [ + -73.484917, + 45.479027 + ], + [ + -73.482809, + 45.478997 + ], + [ + -73.482777, + 45.478997 + ], + [ + -73.482756, + 45.478997 + ], + [ + -73.482631, + 45.478995 + ], + [ + -73.482205, + 45.478986 + ], + [ + -73.481631, + 45.478977 + ], + [ + -73.480089, + 45.478949 + ], + [ + -73.479623, + 45.478936 + ], + [ + -73.479295, + 45.478922 + ], + [ + -73.47927, + 45.478922 + ], + [ + -73.479175, + 45.478922 + ], + [ + -73.479078, + 45.478918 + ], + [ + -73.478426, + 45.478904 + ], + [ + -73.478115, + 45.478841 + ], + [ + -73.477983, + 45.47885 + ], + [ + -73.477828, + 45.478837 + ], + [ + -73.477715, + 45.478814 + ], + [ + -73.477616, + 45.478774 + ], + [ + -73.477564, + 45.478751 + ], + [ + -73.477508, + 45.478715 + ], + [ + -73.477033, + 45.478413 + ], + [ + -73.476649, + 45.478132 + ], + [ + -73.47654, + 45.478053 + ], + [ + -73.476251, + 45.477842 + ], + [ + -73.475153, + 45.477059 + ], + [ + -73.474544, + 45.476636 + ], + [ + -73.474345, + 45.476487 + ], + [ + -73.474159, + 45.476348 + ], + [ + -73.4733, + 45.475709 + ], + [ + -73.473152, + 45.475605 + ], + [ + -73.472484, + 45.475128 + ], + [ + -73.472421, + 45.475079 + ], + [ + -73.47218, + 45.47489 + ], + [ + -73.472074, + 45.474808 + ], + [ + -73.471729, + 45.474583 + ], + [ + -73.470368, + 45.473605 + ], + [ + -73.470364, + 45.473602 + ], + [ + -73.470064, + 45.473386 + ], + [ + -73.468607, + 45.472409 + ], + [ + -73.468277, + 45.472099 + ], + [ + -73.4682, + 45.472022 + ], + [ + -73.468135, + 45.47195 + ], + [ + -73.46809, + 45.471883 + ], + [ + -73.468053, + 45.47177 + ], + [ + -73.467979, + 45.471365 + ], + [ + -73.468005, + 45.471249 + ], + [ + -73.468064, + 45.470898 + ], + [ + -73.468089, + 45.470648 + ], + [ + -73.468112, + 45.470407 + ], + [ + -73.468119, + 45.470155 + ], + [ + -73.468115, + 45.470044 + ], + [ + -73.468111, + 45.469894 + ], + [ + -73.468108, + 45.469818 + ], + [ + -73.468107, + 45.469773 + ], + [ + -73.46805, + 45.4693 + ], + [ + -73.467953, + 45.468832 + ], + [ + -73.467932, + 45.468733 + ], + [ + -73.467793, + 45.468274 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466768 + ] + ] + }, + "id": 101, + "properties": { + "id": "9bfb4239-38af-426f-8e0c-f2ccb1521bbd", + "data": { + "gtfs": { + "shape_id": "37_1_A" + }, + "segments": [ + { + "distanceMeters": 230, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 420, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 418, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 119, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 347, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 109 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7210, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 923.8566618585256, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.46, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 4.81, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.46 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "ece1943b-159a-42fa-a0c1-16e06714e25e", + "d73e4ff6-4502-4376-9cf1-5410d307a82f", + "c04702f7-b2cf-440e-a6da-0a84aefc3963", + "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", + "528dcb9e-5a83-46d3-8e03-42692ca57a5a", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", + "6b54424b-6f85-4448-8e7d-a05da4ef5b95", + "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", + "4df7f34c-ec49-4d48-90b3-56f3faffc976", + "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "4f2dd8ac-70e9-487b-b0af-329673c88b03", + "ab2d66e0-27d7-4818-8e33-267927ea3fe2", + "2f1abb54-e47c-4c4c-bf29-58794c82c9d7", + "197613c4-818a-45ed-a120-7c785862199b", + "d0834662-f361-47c8-897d-090ca396cc80", + "c97bf2a0-4e35-4343-a821-fd37344059ce", + "8b87176c-4d30-4e5f-8750-8f2e6ea9737c", + "b4a272ff-ad07-49f4-b3bf-37e38018a4d0", + "a9e9d254-0411-40ff-8540-2c41b97aa285", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "528dcb9e-5a83-46d3-8e03-42692ca57a5a", + "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", + "fe84c986-2907-4842-bde4-72fbe08a0576", + "d73e4ff6-4502-4376-9cf1-5410d307a82f", + "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", + "85f19be2-1f67-4673-b3b3-52d06ed31ae3", + "51e1600d-418e-4477-9b26-9e5507d72a03", + "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "131616ed-8c78-458b-a65e-78f1aeac1fc7" + ], + "stops": [], + "line_id": "d6887351-1f8d-468a-bae7-5d39771799c8", + "segments": [ + 0, + 6, + 8, + 21, + 30, + 37, + 45, + 49, + 54, + 73, + 82, + 87, + 94, + 102, + 106, + 116, + 123, + 129, + 139, + 153, + 158, + 167, + 175, + 187, + 193, + 197, + 202, + 213, + 221 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 101, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469004, + 45.466768 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466379, + 45.465757 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467476, + 45.467991 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467548, + 45.468225 + ], + [ + -73.467698, + 45.468792 + ], + [ + -73.467776, + 45.469183 + ], + [ + -73.46782, + 45.469453 + ], + [ + -73.467865, + 45.469989 + ], + [ + -73.467864, + 45.470057 + ], + [ + -73.467862, + 45.470168 + ], + [ + -73.46786, + 45.470362 + ], + [ + -73.467821, + 45.470781 + ], + [ + -73.467786, + 45.471019 + ], + [ + -73.467768, + 45.4711 + ], + [ + -73.467742, + 45.471226 + ], + [ + -73.467655, + 45.471563 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.468499, + 45.472486 + ], + [ + -73.469236, + 45.473 + ], + [ + -73.46966, + 45.473295 + ], + [ + -73.469926, + 45.473481 + ], + [ + -73.471608, + 45.474678 + ], + [ + -73.471801, + 45.47482 + ] + ] + }, + "id": 102, + "properties": { + "id": "6428f5a2-50a3-486c-985d-e5147762e0de", + "data": { + "gtfs": { + "shape_id": "37_1_R" + }, + "segments": [ + { + "distanceMeters": 1274, + "travelTimeSeconds": 353 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 67 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 1512, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 923.8566618585256, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 3.6, + "travelTimeWithoutDwellTimesSeconds": 420, + "operatingTimeWithLayoverTimeSeconds": 600, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 420, + "operatingSpeedWithLayoverMetersPerSecond": 2.52, + "averageSpeedWithoutDwellTimesMetersPerSecond": 3.6 + }, + "mode": "bus", + "name": "boul. Simard", + "color": "#A32638", + "nodes": [ + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "1345672a-9148-439f-9a52-b8a216612929", + "ece1943b-159a-42fa-a0c1-16e06714e25e" + ], + "stops": [], + "line_id": "d6887351-1f8d-468a-bae7-5d39771799c8", + "segments": [ + 0, + 45 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 102, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469004, + 45.466768 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466379, + 45.465758 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467476, + 45.467991 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467548, + 45.468225 + ], + [ + -73.467698, + 45.468792 + ], + [ + -73.467776, + 45.469183 + ], + [ + -73.46782, + 45.469453 + ], + [ + -73.467865, + 45.469989 + ], + [ + -73.467864, + 45.470057 + ], + [ + -73.467862, + 45.470168 + ], + [ + -73.46786, + 45.470362 + ], + [ + -73.467821, + 45.470781 + ], + [ + -73.467786, + 45.471019 + ], + [ + -73.467768, + 45.4711 + ], + [ + -73.467742, + 45.471226 + ], + [ + -73.467655, + 45.471563 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.468499, + 45.472486 + ], + [ + -73.469236, + 45.473 + ], + [ + -73.469643, + 45.473283 + ], + [ + -73.469926, + 45.473481 + ], + [ + -73.471608, + 45.474678 + ], + [ + -73.471781, + 45.474806 + ], + [ + -73.471919, + 45.474907 + ], + [ + -73.472018, + 45.474979 + ], + [ + -73.47234, + 45.475227 + ], + [ + -73.473157, + 45.475808 + ], + [ + -73.473415, + 45.476001 + ], + [ + -73.473824, + 45.476294 + ], + [ + -73.475018, + 45.477149 + ], + [ + -73.475701, + 45.477632 + ], + [ + -73.476119, + 45.477927 + ], + [ + -73.476929, + 45.478485 + ], + [ + -73.477462, + 45.478904 + ], + [ + -73.477667, + 45.479048 + ], + [ + -73.477713, + 45.479021 + ], + [ + -73.477757, + 45.479003 + ], + [ + -73.477866, + 45.478954 + ], + [ + -73.477979, + 45.478918 + ], + [ + -73.478075, + 45.478904 + ], + [ + -73.478146, + 45.478904 + ], + [ + -73.478298, + 45.478904 + ], + [ + -73.478426, + 45.478904 + ], + [ + -73.478903, + 45.478914 + ], + [ + -73.479078, + 45.478918 + ], + [ + -73.479175, + 45.478922 + ], + [ + -73.479295, + 45.478922 + ], + [ + -73.479623, + 45.478936 + ], + [ + -73.479808, + 45.478941 + ], + [ + -73.480089, + 45.478949 + ], + [ + -73.481631, + 45.478977 + ], + [ + -73.482205, + 45.478986 + ], + [ + -73.482334, + 45.478989 + ], + [ + -73.482631, + 45.478995 + ], + [ + -73.482756, + 45.478997 + ], + [ + -73.484917, + 45.479027 + ], + [ + -73.485227, + 45.479031 + ], + [ + -73.485584, + 45.479045 + ], + [ + -73.485771, + 45.479058 + ], + [ + -73.486097, + 45.479058 + ], + [ + -73.486149, + 45.479058 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486329, + 45.479263 + ], + [ + -73.486318, + 45.479855 + ], + [ + -73.486298, + 45.480129 + ], + [ + -73.486286, + 45.480369 + ], + [ + -73.486286, + 45.480386 + ], + [ + -73.486282, + 45.480458 + ], + [ + -73.48629, + 45.480791 + ], + [ + -73.486352, + 45.480984 + ], + [ + -73.486506, + 45.481151 + ], + [ + -73.486595, + 45.481214 + ], + [ + -73.486702, + 45.481259 + ], + [ + -73.486845, + 45.481313 + ], + [ + -73.486991, + 45.481335 + ], + [ + -73.487396, + 45.481353 + ], + [ + -73.487751, + 45.481349 + ], + [ + -73.48795, + 45.481331 + ], + [ + -73.488145, + 45.481295 + ], + [ + -73.488358, + 45.481254 + ], + [ + -73.48843, + 45.481241 + ], + [ + -73.488596, + 45.481209 + ], + [ + -73.489299, + 45.481083 + ], + [ + -73.489517, + 45.481047 + ], + [ + -73.489679, + 45.481016 + ], + [ + -73.489826, + 45.480989 + ], + [ + -73.490511, + 45.480858 + ], + [ + -73.490644, + 45.480824 + ], + [ + -73.490751, + 45.480796 + ], + [ + -73.49089, + 45.480751 + ], + [ + -73.491016, + 45.480715 + ], + [ + -73.491326, + 45.481039 + ], + [ + -73.491478, + 45.481178 + ], + [ + -73.491846, + 45.481461 + ], + [ + -73.492063, + 45.481628 + ], + [ + -73.492197, + 45.481727 + ], + [ + -73.492355, + 45.481839 + ], + [ + -73.492441, + 45.481892 + ], + [ + -73.492546, + 45.481956 + ], + [ + -73.492741, + 45.482042 + ], + [ + -73.492853, + 45.482078 + ], + [ + -73.493, + 45.482114 + ], + [ + -73.493158, + 45.482132 + ], + [ + -73.49459, + 45.482145 + ], + [ + -73.494698, + 45.482146 + ], + [ + -73.49497, + 45.482155 + ], + [ + -73.495418, + 45.482168 + ], + [ + -73.495536, + 45.482132 + ], + [ + -73.495646, + 45.482096 + ], + [ + -73.495781, + 45.482065 + ], + [ + -73.495949, + 45.482002 + ], + [ + -73.496051, + 45.481961 + ], + [ + -73.496212, + 45.481898 + ], + [ + -73.496248, + 45.481883 + ], + [ + -73.496343, + 45.481844 + ], + [ + -73.496494, + 45.481781 + ], + [ + -73.497004, + 45.48157 + ], + [ + -73.497219, + 45.481561 + ], + [ + -73.498134, + 45.481565 + ], + [ + -73.498239, + 45.481568 + ], + [ + -73.498761, + 45.481579 + ], + [ + -73.499712, + 45.481597 + ], + [ + -73.499752, + 45.481598 + ], + [ + -73.501593, + 45.481633 + ], + [ + -73.50182, + 45.481637 + ], + [ + -73.501809, + 45.481864 + ], + [ + -73.501807, + 45.481903 + ], + [ + -73.501794, + 45.482164 + ], + [ + -73.501797, + 45.482254 + ], + [ + -73.501796, + 45.482353 + ], + [ + -73.501789, + 45.482654 + ], + [ + -73.501786, + 45.482807 + ], + [ + -73.501782, + 45.483036 + ], + [ + -73.502069, + 45.483049 + ], + [ + -73.502207, + 45.483054 + ], + [ + -73.502327, + 45.483041 + ], + [ + -73.502869, + 45.482816 + ], + [ + -73.503016, + 45.482753 + ], + [ + -73.50324, + 45.482654 + ], + [ + -73.50344, + 45.482566 + ], + [ + -73.503598, + 45.482497 + ], + [ + -73.503512, + 45.48238 + ], + [ + -73.50345, + 45.482308 + ], + [ + -73.503412, + 45.482262 + ], + [ + -73.503272, + 45.482092 + ], + [ + -73.502806, + 45.48156 + ], + [ + -73.502676, + 45.481412 + ], + [ + -73.501947, + 45.480611 + ], + [ + -73.501828, + 45.48048 + ], + [ + -73.50163, + 45.480263 + ], + [ + -73.501562, + 45.480174 + ], + [ + -73.501309, + 45.479775 + ], + [ + -73.501238, + 45.479689 + ], + [ + -73.501074, + 45.479488 + ], + [ + -73.500829, + 45.479284 + ], + [ + -73.50074, + 45.479167 + ], + [ + -73.500635, + 45.479076 + ], + [ + -73.500662, + 45.478997 + ], + [ + -73.500703, + 45.478888 + ], + [ + -73.500708, + 45.478848 + ], + [ + -73.500618, + 45.478724 + ], + [ + -73.500601, + 45.478716 + ], + [ + -73.500465, + 45.47866 + ], + [ + -73.500435, + 45.478659 + ], + [ + -73.500337, + 45.478661 + ], + [ + -73.50019, + 45.478724 + ], + [ + -73.500175, + 45.478743 + ], + [ + -73.500117, + 45.478833 + ], + [ + -73.500062, + 45.478934 + ], + [ + -73.499809, + 45.479021 + ], + [ + -73.4995, + 45.479103 + ], + [ + -73.498818, + 45.47923 + ], + [ + -73.498683, + 45.479234 + ], + [ + -73.498669, + 45.479235 + ], + [ + -73.498466, + 45.479238 + ], + [ + -73.498413, + 45.479239 + ], + [ + -73.498188, + 45.479235 + ], + [ + -73.497101, + 45.479217 + ], + [ + -73.496417, + 45.479209 + ], + [ + -73.496272, + 45.479208 + ], + [ + -73.496207, + 45.479208 + ], + [ + -73.496137, + 45.479208 + ], + [ + -73.493367, + 45.479162 + ], + [ + -73.49213, + 45.479149 + ], + [ + -73.491859, + 45.479143 + ], + [ + -73.491713, + 45.47914 + ], + [ + -73.491329, + 45.479132 + ], + [ + -73.487039, + 45.479049 + ], + [ + -73.486789, + 45.47904 + ], + [ + -73.486635, + 45.47904 + ] + ] + }, + "id": 103, + "properties": { + "id": "31d5f106-c324-468d-8264-4a4be2315a4c", + "data": { + "gtfs": { + "shape_id": "37_2_R" + }, + "segments": [ + { + "distanceMeters": 1272, + "travelTimeSeconds": 353 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 435, + "travelTimeSeconds": 129 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 356, + "travelTimeSeconds": 106 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 121 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6292, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 1920.0019683199766, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 4.37, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 3.88, + "averageSpeedWithoutDwellTimesMetersPerSecond": 4.37 + }, + "mode": "bus", + "name": "boul. Simard", + "color": "#A32638", + "nodes": [ + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "1345672a-9148-439f-9a52-b8a216612929", + "ece1943b-159a-42fa-a0c1-16e06714e25e", + "d73e4ff6-4502-4376-9cf1-5410d307a82f", + "c04702f7-b2cf-440e-a6da-0a84aefc3963", + "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", + "528dcb9e-5a83-46d3-8e03-42692ca57a5a", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "a9e9d254-0411-40ff-8540-2c41b97aa285", + "b4a272ff-ad07-49f4-b3bf-37e38018a4d0", + "8b87176c-4d30-4e5f-8750-8f2e6ea9737c", + "c97bf2a0-4e35-4343-a821-fd37344059ce", + "d0834662-f361-47c8-897d-090ca396cc80", + "197613c4-818a-45ed-a120-7c785862199b", + "2f1abb54-e47c-4c4c-bf29-58794c82c9d7", + "ab2d66e0-27d7-4818-8e33-267927ea3fe2", + "4f2dd8ac-70e9-487b-b0af-329673c88b03", + "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "4df7f34c-ec49-4d48-90b3-56f3faffc976", + "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", + "6b54424b-6f85-4448-8e7d-a05da4ef5b95", + "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", + "dfda995e-8686-4f89-a9b1-4109795a27c3" + ], + "stops": [], + "line_id": "d6887351-1f8d-468a-bae7-5d39771799c8", + "segments": [ + 0, + 45, + 48, + 54, + 56, + 69, + 78, + 85, + 91, + 106, + 113, + 123, + 129, + 139, + 145, + 149, + 157, + 165, + 173, + 200, + 204, + 210 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 103, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.486635, + 45.47904 + ], + [ + -73.486526, + 45.47904 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486149, + 45.479058 + ], + [ + -73.485771, + 45.479058 + ], + [ + -73.485584, + 45.479045 + ], + [ + -73.485227, + 45.479031 + ], + [ + -73.484917, + 45.479027 + ], + [ + -73.482794, + 45.478997 + ], + [ + -73.482756, + 45.478997 + ], + [ + -73.482631, + 45.478995 + ], + [ + -73.482205, + 45.478986 + ], + [ + -73.481631, + 45.478977 + ], + [ + -73.480089, + 45.478949 + ], + [ + -73.479623, + 45.478936 + ], + [ + -73.479295, + 45.478922 + ], + [ + -73.479285, + 45.478922 + ], + [ + -73.479175, + 45.478922 + ], + [ + -73.479078, + 45.478918 + ], + [ + -73.478426, + 45.478904 + ], + [ + -73.478115, + 45.478841 + ], + [ + -73.477983, + 45.47885 + ], + [ + -73.477828, + 45.478837 + ], + [ + -73.477715, + 45.478814 + ], + [ + -73.477616, + 45.478774 + ], + [ + -73.477564, + 45.478751 + ], + [ + -73.477508, + 45.478715 + ], + [ + -73.477033, + 45.478413 + ], + [ + -73.476658, + 45.478139 + ], + [ + -73.47654, + 45.478053 + ], + [ + -73.476251, + 45.477842 + ], + [ + -73.475153, + 45.477059 + ], + [ + -73.474544, + 45.476636 + ], + [ + -73.474345, + 45.476487 + ], + [ + -73.474166, + 45.476354 + ], + [ + -73.4733, + 45.475709 + ], + [ + -73.473152, + 45.475605 + ], + [ + -73.472484, + 45.475128 + ], + [ + -73.472427, + 45.475083 + ], + [ + -73.472426, + 45.475082 + ], + [ + -73.47218, + 45.47489 + ], + [ + -73.472074, + 45.474808 + ], + [ + -73.471729, + 45.474583 + ], + [ + -73.470369, + 45.473605 + ], + [ + -73.470064, + 45.473386 + ], + [ + -73.468607, + 45.472409 + ], + [ + -73.468277, + 45.472099 + ], + [ + -73.4682, + 45.472022 + ], + [ + -73.468135, + 45.47195 + ], + [ + -73.46809, + 45.471883 + ], + [ + -73.468053, + 45.47177 + ], + [ + -73.467979, + 45.471365 + ], + [ + -73.468005, + 45.471249 + ], + [ + -73.468064, + 45.470898 + ], + [ + -73.468088, + 45.470651 + ], + [ + -73.468112, + 45.470407 + ], + [ + -73.468119, + 45.470155 + ], + [ + -73.468115, + 45.470044 + ], + [ + -73.468111, + 45.469894 + ], + [ + -73.468108, + 45.469818 + ], + [ + -73.468107, + 45.469773 + ], + [ + -73.46805, + 45.4693 + ], + [ + -73.467953, + 45.468834 + ], + [ + -73.467932, + 45.468733 + ], + [ + -73.467793, + 45.468274 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466768 + ] + ] + }, + "id": 104, + "properties": { + "id": "8f6bd7c5-b3c5-43a8-8ce2-4232307680f8", + "data": { + "gtfs": { + "shape_id": "37_2_A" + }, + "segments": [ + { + "distanceMeters": 300, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 141 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 128 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 2478, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 1920.0019683199762, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 4.59, + "travelTimeWithoutDwellTimesSeconds": 540, + "operatingTimeWithLayoverTimeSeconds": 720, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 540, + "operatingSpeedWithLayoverMetersPerSecond": 3.44, + "averageSpeedWithoutDwellTimesMetersPerSecond": 4.59 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "528dcb9e-5a83-46d3-8e03-42692ca57a5a", + "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", + "fe84c986-2907-4842-bde4-72fbe08a0576", + "d73e4ff6-4502-4376-9cf1-5410d307a82f", + "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", + "85f19be2-1f67-4673-b3b3-52d06ed31ae3", + "51e1600d-418e-4477-9b26-9e5507d72a03", + "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "131616ed-8c78-458b-a65e-78f1aeac1fc7" + ], + "stops": [], + "line_id": "d6887351-1f8d-468a-bae7-5d39771799c8", + "segments": [ + 0, + 9, + 17, + 29, + 35, + 39, + 44, + 55, + 63 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 104, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469004, + 45.466768 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.466949, + 45.466907 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.46363, + 45.4683 + ], + [ + -73.463472, + 45.468395 + ], + [ + -73.463397, + 45.468431 + ], + [ + -73.463306, + 45.468449 + ], + [ + -73.463219, + 45.468458 + ], + [ + -73.463124, + 45.468449 + ], + [ + -73.463037, + 45.468413 + ], + [ + -73.462702, + 45.468201 + ], + [ + -73.462471, + 45.468057 + ], + [ + -73.4624, + 45.46801 + ], + [ + -73.462195, + 45.467872 + ], + [ + -73.461894, + 45.467656 + ], + [ + -73.461788, + 45.46758 + ], + [ + -73.46133, + 45.467251 + ], + [ + -73.461109, + 45.467094 + ], + [ + -73.460905, + 45.466945 + ], + [ + -73.460722, + 45.466814 + ], + [ + -73.460629, + 45.466751 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457079, + 45.464307 + ], + [ + -73.45655, + 45.463924 + ], + [ + -73.455675, + 45.463282 + ], + [ + -73.454797, + 45.462637 + ], + [ + -73.454278, + 45.462276 + ], + [ + -73.453602, + 45.461785 + ], + [ + -73.453448, + 45.461674 + ], + [ + -73.453385, + 45.461629 + ], + [ + -73.45305, + 45.461381 + ], + [ + -73.45275, + 45.461169 + ], + [ + -73.452262, + 45.460814 + ], + [ + -73.449839, + 45.459072 + ], + [ + -73.449359, + 45.458774 + ], + [ + -73.448479, + 45.458383 + ], + [ + -73.448024, + 45.45813 + ], + [ + -73.447729, + 45.457941 + ], + [ + -73.447401, + 45.457716 + ], + [ + -73.447206, + 45.457532 + ], + [ + -73.447146, + 45.457473 + ], + [ + -73.447054, + 45.457381 + ], + [ + -73.446923, + 45.457262 + ], + [ + -73.446661, + 45.457072 + ], + [ + -73.44657, + 45.457027 + ], + [ + -73.446482, + 45.456996 + ], + [ + -73.446388, + 45.45696 + ], + [ + -73.446222, + 45.456915 + ], + [ + -73.445958, + 45.456735 + ], + [ + -73.445693, + 45.456555 + ], + [ + -73.445746, + 45.456494 + ], + [ + -73.445865, + 45.456318 + ], + [ + -73.445906, + 45.456257 + ], + [ + -73.446041, + 45.456058 + ], + [ + -73.446043, + 45.456054 + ], + [ + -73.446111, + 45.455953 + ], + [ + -73.446181, + 45.455847 + ], + [ + -73.446343, + 45.455601 + ], + [ + -73.446437, + 45.455437 + ], + [ + -73.446586, + 45.455194 + ], + [ + -73.446879, + 45.454751 + ], + [ + -73.447023, + 45.454568 + ], + [ + -73.447165, + 45.454332 + ], + [ + -73.447525, + 45.453748 + ], + [ + -73.44757, + 45.453671 + ], + [ + -73.447695, + 45.453468 + ], + [ + -73.44774, + 45.453378 + ], + [ + -73.447769, + 45.4533 + ], + [ + -73.447791, + 45.453214 + ], + [ + -73.447801, + 45.453131 + ], + [ + -73.447811, + 45.453054 + ], + [ + -73.447804, + 45.452962 + ], + [ + -73.447788, + 45.452881 + ], + [ + -73.447741, + 45.452726 + ], + [ + -73.447658, + 45.45258 + ], + [ + -73.447495, + 45.452391 + ], + [ + -73.44669, + 45.451742 + ], + [ + -73.446544, + 45.451625 + ], + [ + -73.446361, + 45.451477 + ], + [ + -73.446255, + 45.45139 + ], + [ + -73.44517, + 45.4505 + ], + [ + -73.445063, + 45.450414 + ], + [ + -73.444716, + 45.450137 + ], + [ + -73.444172, + 45.449695 + ], + [ + -73.444019, + 45.449571 + ], + [ + -73.443592, + 45.449224 + ], + [ + -73.442952, + 45.448701 + ], + [ + -73.442867, + 45.448632 + ], + [ + -73.442823, + 45.448596 + ], + [ + -73.442719, + 45.448512 + ], + [ + -73.442307, + 45.448179 + ], + [ + -73.442297, + 45.448171 + ], + [ + -73.442221, + 45.44811 + ], + [ + -73.441797, + 45.447793 + ], + [ + -73.441083, + 45.447203 + ], + [ + -73.440353, + 45.446619 + ], + [ + -73.440227, + 45.446519 + ], + [ + -73.440193, + 45.446491 + ], + [ + -73.439095, + 45.445641 + ], + [ + -73.438366, + 45.445057 + ], + [ + -73.438227, + 45.444954 + ], + [ + -73.438338, + 45.444864 + ], + [ + -73.438657, + 45.444631 + ] + ] + }, + "id": 105, + "properties": { + "id": "4e55cd26-a98d-4667-b55c-053578f2fa9f", + "data": { + "gtfs": { + "shape_id": "39_1_R" + }, + "segments": [ + { + "distanceMeters": 2897, + "travelTimeSeconds": 500 + }, + { + "distanceMeters": 570, + "travelTimeSeconds": 98 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 52 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 4518, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3415.644677569863, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.79, + "travelTimeWithoutDwellTimesSeconds": 780, + "operatingTimeWithLayoverTimeSeconds": 960, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 780, + "operatingSpeedWithLayoverMetersPerSecond": 4.71, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.79 + }, + "mode": "bus", + "name": "Quartier DIX30", + "color": "#A32638", + "nodes": [ + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "94c39e43-404d-41dd-8452-81a760a980e9", + "23bba49e-4054-4c02-89b3-a6043c3d4d67", + "bffdb17e-eb32-4d5e-9070-23ef35e6d825", + "52770c2f-36d3-4ae3-81c7-657d2436c44e", + "bc708643-7ab2-41eb-a233-30eac22a0a3d", + "9a91df5e-7976-4b04-a1ed-26fb34f4f58f" + ], + "stops": [], + "line_id": "d085df2b-e036-42e3-a4ef-9924b3d41c12", + "segments": [ + 0, + 94, + 119, + 126, + 129, + 138 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 105, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.438657, + 45.444631 + ], + [ + -73.438851, + 45.444488 + ], + [ + -73.439723, + 45.443742 + ], + [ + -73.439844, + 45.443642 + ], + [ + -73.439975, + 45.443534 + ], + [ + -73.440539, + 45.443068 + ], + [ + -73.441274, + 45.442431 + ], + [ + -73.441943, + 45.441851 + ], + [ + -73.442064, + 45.44172 + ], + [ + -73.442193, + 45.441589 + ], + [ + -73.442303, + 45.441474 + ], + [ + -73.442523, + 45.44124 + ], + [ + -73.442854, + 45.440852 + ], + [ + -73.443162, + 45.440437 + ], + [ + -73.443514, + 45.439932 + ], + [ + -73.443912, + 45.439328 + ], + [ + -73.444093, + 45.439042 + ], + [ + -73.444175, + 45.438929 + ], + [ + -73.443987, + 45.438877 + ], + [ + -73.443881, + 45.43883 + ], + [ + -73.443802, + 45.43881 + ], + [ + -73.443695, + 45.438781 + ], + [ + -73.443559, + 45.438718 + ], + [ + -73.44351, + 45.438696 + ], + [ + -73.443361, + 45.438611 + ], + [ + -73.443201, + 45.438496 + ], + [ + -73.443078, + 45.438408 + ], + [ + -73.443034, + 45.438377 + ], + [ + -73.442658, + 45.438118 + ], + [ + -73.442476, + 45.438049 + ], + [ + -73.442242, + 45.438054 + ], + [ + -73.442128, + 45.438081 + ], + [ + -73.441977, + 45.438145 + ], + [ + -73.44184, + 45.438241 + ], + [ + -73.441559, + 45.438446 + ], + [ + -73.440651, + 45.439108 + ], + [ + -73.44046, + 45.439249 + ], + [ + -73.439875, + 45.439682 + ], + [ + -73.439709, + 45.439781 + ], + [ + -73.439595, + 45.439843 + ], + [ + -73.438695, + 45.440523 + ], + [ + -73.438546, + 45.440636 + ], + [ + -73.437671, + 45.441298 + ], + [ + -73.437352, + 45.441524 + ], + [ + -73.437177, + 45.441649 + ], + [ + -73.437052, + 45.441737 + ], + [ + -73.436237, + 45.442325 + ], + [ + -73.435959, + 45.442526 + ], + [ + -73.435812, + 45.442662 + ], + [ + -73.435748, + 45.442792 + ], + [ + -73.43573, + 45.442883 + ], + [ + -73.435741, + 45.443026 + ], + [ + -73.43579, + 45.443164 + ], + [ + -73.435894, + 45.4433 + ], + [ + -73.4359, + 45.443306 + ], + [ + -73.436036, + 45.443456 + ], + [ + -73.436379, + 45.443712 + ], + [ + -73.436575, + 45.443858 + ], + [ + -73.436661, + 45.443921 + ], + [ + -73.436662, + 45.443922 + ], + [ + -73.437463, + 45.444543 + ], + [ + -73.437835, + 45.444824 + ], + [ + -73.437838, + 45.444826 + ], + [ + -73.437964, + 45.444933 + ], + [ + -73.438029, + 45.444985 + ], + [ + -73.438094, + 45.445037 + ], + [ + -73.438233, + 45.445143 + ], + [ + -73.438783, + 45.445547 + ], + [ + -73.439565, + 45.446129 + ], + [ + -73.439739, + 45.446268 + ], + [ + -73.439937, + 45.446427 + ], + [ + -73.440135, + 45.446587 + ], + [ + -73.440935, + 45.447233 + ], + [ + -73.441223, + 45.447465 + ], + [ + -73.4421, + 45.448181 + ], + [ + -73.442609, + 45.448595 + ], + [ + -73.442709, + 45.448676 + ], + [ + -73.443174, + 45.449054 + ], + [ + -73.443314, + 45.449167 + ], + [ + -73.443912, + 45.449652 + ], + [ + -73.444945, + 45.45049 + ], + [ + -73.445035, + 45.450563 + ], + [ + -73.446301, + 45.451587 + ], + [ + -73.446449, + 45.451707 + ], + [ + -73.446907, + 45.452078 + ], + [ + -73.447367, + 45.452454 + ], + [ + -73.447546, + 45.452649 + ], + [ + -73.447632, + 45.452802 + ], + [ + -73.447676, + 45.452946 + ], + [ + -73.447686, + 45.453104 + ], + [ + -73.447657, + 45.45327 + ], + [ + -73.44759, + 45.453435 + ], + [ + -73.447532, + 45.453533 + ], + [ + -73.447462, + 45.453653 + ], + [ + -73.447183, + 45.454118 + ], + [ + -73.446921, + 45.454564 + ], + [ + -73.446879, + 45.454751 + ], + [ + -73.446586, + 45.455194 + ], + [ + -73.446437, + 45.455437 + ], + [ + -73.446343, + 45.455601 + ], + [ + -73.446181, + 45.455847 + ], + [ + -73.446111, + 45.455953 + ], + [ + -73.446043, + 45.456054 + ], + [ + -73.446041, + 45.456058 + ], + [ + -73.445746, + 45.456494 + ], + [ + -73.445693, + 45.456555 + ], + [ + -73.445605, + 45.456635 + ], + [ + -73.445698, + 45.456697 + ], + [ + -73.445878, + 45.456816 + ], + [ + -73.445952, + 45.456865 + ], + [ + -73.446142, + 45.456982 + ], + [ + -73.446227, + 45.457004 + ], + [ + -73.446332, + 45.457032 + ], + [ + -73.446489, + 45.457095 + ], + [ + -73.446596, + 45.457158 + ], + [ + -73.446702, + 45.457243 + ], + [ + -73.446812, + 45.457324 + ], + [ + -73.446913, + 45.457357 + ], + [ + -73.446965, + 45.457368 + ], + [ + -73.447054, + 45.457381 + ], + [ + -73.447226, + 45.457406 + ], + [ + -73.447335, + 45.457449 + ], + [ + -73.447855, + 45.457782 + ], + [ + -73.448552, + 45.458228 + ], + [ + -73.448934, + 45.458388 + ], + [ + -73.449458, + 45.458593 + ], + [ + -73.449707, + 45.458708 + ], + [ + -73.450153, + 45.459037 + ], + [ + -73.451481, + 45.460003 + ], + [ + -73.452547, + 45.46077 + ], + [ + -73.454622, + 45.462265 + ], + [ + -73.454692, + 45.462368 + ], + [ + -73.454988, + 45.462608 + ], + [ + -73.455597, + 45.463097 + ], + [ + -73.456345, + 45.463585 + ], + [ + -73.45668, + 45.463751 + ], + [ + -73.457165, + 45.463986 + ], + [ + -73.45779, + 45.464251 + ], + [ + -73.457936, + 45.464285 + ], + [ + -73.458332, + 45.464415 + ], + [ + -73.458709, + 45.464519 + ], + [ + -73.459184, + 45.464658 + ], + [ + -73.459848, + 45.464797 + ], + [ + -73.460341, + 45.46487 + ], + [ + -73.460876, + 45.464928 + ], + [ + -73.461292, + 45.464968 + ], + [ + -73.461888, + 45.465033 + ], + [ + -73.462599, + 45.465146 + ], + [ + -73.463202, + 45.465285 + ], + [ + -73.463734, + 45.465422 + ], + [ + -73.464137, + 45.465531 + ], + [ + -73.464519, + 45.465639 + ], + [ + -73.464829, + 45.465721 + ], + [ + -73.465021, + 45.465762 + ], + [ + -73.465202, + 45.465781 + ], + [ + -73.465352, + 45.4658 + ], + [ + -73.465498, + 45.465796 + ], + [ + -73.465647, + 45.465796 + ], + [ + -73.465791, + 45.465789 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466768 + ] + ] + }, + "id": 106, + "properties": { + "id": "aa1878dd-86e5-4efd-8c23-5436cd8bd98d", + "data": { + "gtfs": { + "shape_id": "39_1_A" + }, + "segments": [ + { + "distanceMeters": 144, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 544, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 2723, + "travelTimeSeconds": 452 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5956, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3415.644677569863, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.84, + "travelTimeWithoutDwellTimesSeconds": 1020, + "operatingTimeWithLayoverTimeSeconds": 1200, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1020, + "operatingSpeedWithLayoverMetersPerSecond": 4.96, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.84 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "9a91df5e-7976-4b04-a1ed-26fb34f4f58f", + "936850f5-3268-43bc-97bf-4daf0894fdc7", + "00c8e0cb-91d0-48ff-97f2-5154a17a68bc", + "d3ead48f-87a1-4905-af00-10546937b61d", + "fb801cfe-4d06-4f1b-8a43-460434286646", + "c1bf220e-ad95-40e3-900b-3dda32780f07", + "fb79a3c6-17e7-4bc7-88f4-d17bcc5467ca", + "1336b6ed-25ac-4ba0-b4d2-c273e4f51d74", + "6a7293d7-c2a9-4a56-ac00-3470ede84ecb", + "9bb9e4f0-3571-429e-bd1b-989f4196b247", + "708749bc-6754-4d22-849f-c5632030ae08", + "65ac05d1-7282-4065-a1b1-3364a3426c7e", + "55fda563-44c0-4720-b1a4-2ef0e89eddae", + "131616ed-8c78-458b-a65e-78f1aeac1fc7" + ], + "stops": [], + "line_id": "d085df2b-e036-42e3-a4ef-9924b3d41c12", + "segments": [ + 0, + 3, + 6, + 25, + 36, + 40, + 43, + 56, + 61, + 69, + 77, + 82, + 92 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 106, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469043, + 45.46624 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469327, + 45.468092 + ], + [ + -73.469492, + 45.4681 + ], + [ + -73.470299, + 45.468145 + ], + [ + -73.470478, + 45.468153 + ], + [ + -73.471067, + 45.468182 + ], + [ + -73.471238, + 45.46819 + ], + [ + -73.471526, + 45.468208 + ], + [ + -73.472194, + 45.468244 + ], + [ + -73.472434, + 45.468255 + ], + [ + -73.472597, + 45.468262 + ], + [ + -73.472728, + 45.468276 + ], + [ + -73.472834, + 45.468294 + ], + [ + -73.472877, + 45.468307 + ], + [ + -73.473025, + 45.468348 + ], + [ + -73.473214, + 45.468424 + ], + [ + -73.473673, + 45.468604 + ], + [ + -73.473905, + 45.468649 + ], + [ + -73.474077, + 45.468676 + ], + [ + -73.474259, + 45.46869 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474544, + 45.468492 + ], + [ + -73.474545, + 45.468488 + ], + [ + -73.474528, + 45.468236 + ], + [ + -73.474508, + 45.467936 + ], + [ + -73.474508, + 45.467294 + ], + [ + -73.474542, + 45.4665 + ], + [ + -73.474546, + 45.466404 + ], + [ + -73.474554, + 45.466199 + ], + [ + -73.474621, + 45.465194 + ], + [ + -73.474664, + 45.464506 + ], + [ + -73.474669, + 45.464397 + ], + [ + -73.474734, + 45.464067 + ], + [ + -73.474884, + 45.463697 + ], + [ + -73.475002, + 45.463492 + ], + [ + -73.47522, + 45.463212 + ], + [ + -73.475408, + 45.463039 + ], + [ + -73.47556, + 45.462909 + ], + [ + -73.475821, + 45.462711 + ], + [ + -73.476105, + 45.462495 + ], + [ + -73.476441, + 45.462258 + ], + [ + -73.476557, + 45.462176 + ], + [ + -73.477249, + 45.461685 + ], + [ + -73.47821, + 45.460959 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.47855, + 45.461011 + ], + [ + -73.478678, + 45.461105 + ], + [ + -73.478983, + 45.461465 + ], + [ + -73.479274, + 45.461807 + ], + [ + -73.479712, + 45.46233 + ], + [ + -73.480306, + 45.46304 + ], + [ + -73.480932, + 45.463792 + ], + [ + -73.481363, + 45.464307 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.481982, + 45.464183 + ], + [ + -73.482309, + 45.464098 + ], + [ + -73.48257, + 45.464048 + ], + [ + -73.482853, + 45.464053 + ], + [ + -73.484342, + 45.46408 + ], + [ + -73.484494, + 45.464076 + ], + [ + -73.484669, + 45.464067 + ], + [ + -73.484817, + 45.464035 + ], + [ + -73.484961, + 45.463999 + ], + [ + -73.485098, + 45.46395 + ], + [ + -73.485277, + 45.463878 + ], + [ + -73.485826, + 45.463612 + ], + [ + -73.485896, + 45.463576 + ], + [ + -73.485986, + 45.463539 + ], + [ + -73.486089, + 45.463495 + ], + [ + -73.486243, + 45.463455 + ], + [ + -73.486321, + 45.463433 + ], + [ + -73.486489, + 45.463401 + ], + [ + -73.486606, + 45.463401 + ], + [ + -73.487042, + 45.463406 + ], + [ + -73.487283, + 45.463388 + ], + [ + -73.487412, + 45.463379 + ], + [ + -73.487821, + 45.463302 + ], + [ + -73.488109, + 45.463235 + ], + [ + -73.488349, + 45.463109 + ], + [ + -73.488479, + 45.462953 + ], + [ + -73.488498, + 45.462929 + ], + [ + -73.488573, + 45.462762 + ], + [ + -73.488594, + 45.462464 + ], + [ + -73.488653, + 45.461599 + ], + [ + -73.488659, + 45.461512 + ], + [ + -73.488701, + 45.460814 + ], + [ + -73.488777, + 45.459727 + ], + [ + -73.488805, + 45.459338 + ], + [ + -73.488828, + 45.459006 + ], + [ + -73.488929, + 45.458754 + ], + [ + -73.489058, + 45.458542 + ], + [ + -73.489182, + 45.458344 + ], + [ + -73.489694, + 45.457516 + ], + [ + -73.4897, + 45.457501 + ], + [ + -73.489736, + 45.457408 + ], + [ + -73.489763, + 45.457296 + ], + [ + -73.489765, + 45.457071 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.488779, + 45.456899 + ], + [ + -73.488212, + 45.456877 + ], + [ + -73.486513, + 45.456819 + ], + [ + -73.486364, + 45.456814 + ], + [ + -73.485148, + 45.456777 + ], + [ + -73.483698, + 45.456733 + ], + [ + -73.483402, + 45.45672 + ], + [ + -73.482905, + 45.456699 + ], + [ + -73.482756, + 45.456692 + ], + [ + -73.48, + 45.456616 + ], + [ + -73.479792, + 45.456611 + ], + [ + -73.479622, + 45.456606 + ], + [ + -73.476059, + 45.456487 + ], + [ + -73.475848, + 45.456479 + ], + [ + -73.474778, + 45.456443 + ], + [ + -73.473716, + 45.456411 + ], + [ + -73.47264, + 45.456375 + ], + [ + -73.471572, + 45.456339 + ], + [ + -73.47073, + 45.456312 + ], + [ + -73.47047, + 45.456303 + ], + [ + -73.469686, + 45.456262 + ], + [ + -73.46943, + 45.456244 + ], + [ + -73.468978, + 45.456199 + ], + [ + -73.468627, + 45.456148 + ], + [ + -73.468607, + 45.456145 + ], + [ + -73.468443, + 45.456109 + ], + [ + -73.467856, + 45.455996 + ], + [ + -73.467523, + 45.455919 + ], + [ + -73.467299, + 45.455861 + ], + [ + -73.466983, + 45.455757 + ], + [ + -73.466899, + 45.455728 + ], + [ + -73.466828, + 45.455703 + ], + [ + -73.466297, + 45.455491 + ], + [ + -73.466093, + 45.45541 + ], + [ + -73.465683, + 45.455224 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.463912, + 45.454506 + ], + [ + -73.463601, + 45.454377 + ], + [ + -73.463285, + 45.454246 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.461779, + 45.453564 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.459815, + 45.452691 + ], + [ + -73.45917, + 45.452391 + ], + [ + -73.45904, + 45.452331 + ], + [ + -73.458688, + 45.452137 + ], + [ + -73.458046, + 45.451791 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457438, + 45.451421 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.456632, + 45.45207 + ], + [ + -73.456511, + 45.452168 + ], + [ + -73.456345, + 45.452339 + ], + [ + -73.456105, + 45.452573 + ], + [ + -73.455893, + 45.452816 + ], + [ + -73.455803, + 45.452933 + ], + [ + -73.45573, + 45.453027 + ], + [ + -73.455536, + 45.453301 + ], + [ + -73.455293, + 45.453751 + ], + [ + -73.455167, + 45.454075 + ], + [ + -73.455022, + 45.454574 + ], + [ + -73.454999, + 45.454666 + ], + [ + -73.454977, + 45.454754 + ], + [ + -73.454933, + 45.455281 + ], + [ + -73.454963, + 45.455744 + ], + [ + -73.455037, + 45.456136 + ], + [ + -73.455173, + 45.456599 + ], + [ + -73.455283, + 45.456847 + ], + [ + -73.455363, + 45.457004 + ], + [ + -73.455596, + 45.457405 + ], + [ + -73.455654, + 45.457509 + ], + [ + -73.455986, + 45.458098 + ], + [ + -73.456006, + 45.458134 + ], + [ + -73.456237, + 45.458545 + ], + [ + -73.456258, + 45.458583 + ], + [ + -73.456281, + 45.458624 + ], + [ + -73.457246, + 45.460352 + ], + [ + -73.457292, + 45.460433 + ], + [ + -73.45742, + 45.460667 + ], + [ + -73.457486, + 45.46082 + ], + [ + -73.457532, + 45.460955 + ], + [ + -73.457565, + 45.461072 + ], + [ + -73.457606, + 45.46123 + ], + [ + -73.457631, + 45.461396 + ], + [ + -73.457639, + 45.461477 + ], + [ + -73.457625, + 45.461707 + ], + [ + -73.457614, + 45.461848 + ], + [ + -73.45763, + 45.461949 + ], + [ + -73.457635, + 45.461955 + ], + [ + -73.45769, + 45.462033 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.454356, + 45.464727 + ], + [ + -73.45432, + 45.464702 + ], + [ + -73.453971, + 45.464449 + ], + [ + -73.453617, + 45.464193 + ], + [ + -73.453261, + 45.463932 + ], + [ + -73.452912, + 45.463662 + ], + [ + -73.452802, + 45.463536 + ], + [ + -73.452721, + 45.463379 + ], + [ + -73.452662, + 45.463158 + ], + [ + -73.45263, + 45.463001 + ], + [ + -73.452634, + 45.462879 + ], + [ + -73.452663, + 45.462722 + ], + [ + -73.452703, + 45.4626 + ], + [ + -73.452775, + 45.462447 + ], + [ + -73.452835, + 45.462344 + ], + [ + -73.452853, + 45.462318 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.453096, + 45.462269 + ], + [ + -73.453161, + 45.462302 + ], + [ + -73.453343, + 45.462373 + ], + [ + -73.453553, + 45.462428 + ], + [ + -73.453729, + 45.462455 + ], + [ + -73.453888, + 45.462462 + ], + [ + -73.454017, + 45.462437 + ], + [ + -73.454092, + 45.462406 + ], + [ + -73.454278, + 45.462276 + ], + [ + -73.454797, + 45.462637 + ], + [ + -73.455417, + 45.463093 + ], + [ + -73.455675, + 45.463282 + ], + [ + -73.45655, + 45.463924 + ], + [ + -73.457079, + 45.464307 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.458748, + 45.465456 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.460105, + 45.466435 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.460554, + 45.466805 + ], + [ + -73.460661, + 45.466886 + ], + [ + -73.461028, + 45.467148 + ], + [ + -73.46125, + 45.467305 + ], + [ + -73.461806, + 45.46771 + ], + [ + -73.461907, + 45.467784 + ], + [ + -73.461978, + 45.467836 + ], + [ + -73.462611, + 45.468268 + ], + [ + -73.462997, + 45.468569 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463833, + 45.469169 + ], + [ + -73.464474, + 45.469628 + ], + [ + -73.464829, + 45.469888 + ], + [ + -73.465113, + 45.470096 + ], + [ + -73.465778, + 45.470582 + ], + [ + -73.466302, + 45.470964 + ], + [ + -73.466451, + 45.471073 + ], + [ + -73.467061, + 45.471469 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467869, + 45.471793 + ], + [ + -73.467893, + 45.471706 + ], + [ + -73.467954, + 45.471482 + ], + [ + -73.467979, + 45.471365 + ], + [ + -73.468005, + 45.471249 + ], + [ + -73.468064, + 45.470898 + ], + [ + -73.468088, + 45.470653 + ], + [ + -73.468112, + 45.470407 + ], + [ + -73.468119, + 45.470155 + ], + [ + -73.468115, + 45.470044 + ], + [ + -73.468111, + 45.469894 + ], + [ + -73.468108, + 45.469818 + ], + [ + -73.468107, + 45.469773 + ], + [ + -73.46805, + 45.4693 + ], + [ + -73.467954, + 45.468836 + ], + [ + -73.467932, + 45.468733 + ], + [ + -73.467793, + 45.468274 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469043, + 45.46624 + ] + ] + }, + "id": 107, + "properties": { + "id": "b81d4314-a77d-45d0-af8d-68c205002414", + "data": { + "gtfs": { + "shape_id": "41_1_A" + }, + "segments": [ + { + "distanceMeters": 629, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 938, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 582, + "travelTimeSeconds": 79 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 514, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 82 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 423, + "travelTimeSeconds": 95 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10825, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 0, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.01, + "travelTimeWithoutDwellTimesSeconds": 1800, + "operatingTimeWithLayoverTimeSeconds": 1980, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1800, + "operatingSpeedWithLayoverMetersPerSecond": 5.47, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.01 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "003bcf5e-54a8-471f-b008-b7fa64ff94ba", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "57de752e-d268-4125-8223-581e6c2ff56e", + "1339471a-52fa-47e9-b0e4-753bf917ef08", + "9c711698-0f65-4997-8a72-24f5d8ab8fb7", + "5a6d8067-b58d-4ab2-838e-422e8f003ee9", + "e20e768c-bd5a-43fd-8842-af2717d6cb09", + "1d56d4cb-0ab2-44f2-924d-aa119de8c362", + "ecb00316-793a-4c41-88bd-3870bea4d999", + "9c3366b7-c832-4b7b-8636-18bed8c1e2de", + "1782a1a7-eddc-4228-a7a8-bf733f339e68", + "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", + "8443a69f-fccf-4a19-8d08-6da77269e686", + "2946050b-73ca-45c7-be10-f80ba5b43ab5", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "ab493a3c-1217-4122-93b5-217f7741b2ea", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "59b4f87c-067e-4dc3-856a-07fb245d4fe3", + "c77e59d9-5075-4e39-a183-6bacc1afd03e", + "f5f0a75d-b9e9-4575-845b-09748935c6e0", + "d271cca7-cd7a-4e22-8728-7a598b88fe32", + "3b708726-0db1-43de-b014-b11ddc9fc24a", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "1a441bab-41b8-447f-ba84-5034fae1da67", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "01153fa0-59fe-4f77-8e46-e418296b526d", + "977065eb-9054-495e-befc-5f3b6e0e6046", + "42f48eea-ee59-46f6-9c43-4b63100a50dc", + "51e1600d-418e-4477-9b26-9e5507d72a03", + "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "5a2827c6-463e-4fdc-b721-6524bd6915e8", + "segments": [ + 0, + 21, + 25, + 58, + 61, + 67, + 70, + 75, + 85, + 101, + 105, + 111, + 118, + 123, + 125, + 128, + 139, + 148, + 155, + 158, + 161, + 168, + 173, + 179, + 188, + 191, + 194, + 206, + 218, + 233, + 245, + 252, + 254, + 261, + 264, + 269, + 272, + 284, + 292 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 107, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.400131, + 45.4861 + ], + [ + -73.400474, + 45.48563 + ], + [ + -73.401257, + 45.484567 + ], + [ + -73.401315, + 45.484488 + ], + [ + -73.4013, + 45.484402 + ], + [ + -73.401353, + 45.482238 + ], + [ + -73.401357, + 45.481812 + ], + [ + -73.401359, + 45.48155 + ], + [ + -73.400341, + 45.481544 + ], + [ + -73.399897, + 45.481539 + ], + [ + -73.399682, + 45.481548 + ], + [ + -73.399426, + 45.481575 + ], + [ + -73.399227, + 45.481602 + ], + [ + -73.398981, + 45.481629 + ], + [ + -73.398926, + 45.481636 + ], + [ + -73.398721, + 45.481664 + ], + [ + -73.398467, + 45.481727 + ], + [ + -73.398262, + 45.481785 + ], + [ + -73.398091, + 45.481826 + ], + [ + -73.397814, + 45.481933 + ], + [ + -73.397794, + 45.481943 + ], + [ + -73.397442, + 45.4821 + ], + [ + -73.396764, + 45.482484 + ], + [ + -73.396697, + 45.482522 + ], + [ + -73.396445, + 45.482675 + ], + [ + -73.396029, + 45.482994 + ], + [ + -73.394946, + 45.483785 + ], + [ + -73.394578, + 45.484054 + ], + [ + -73.394481, + 45.484095 + ], + [ + -73.394326, + 45.48422 + ], + [ + -73.394526, + 45.48436 + ], + [ + -73.394852, + 45.484608 + ], + [ + -73.395097, + 45.484806 + ], + [ + -73.395347, + 45.485022 + ], + [ + -73.395593, + 45.485252 + ], + [ + -73.39622, + 45.485892 + ], + [ + -73.396316, + 45.48599 + ], + [ + -73.396877, + 45.486562 + ], + [ + -73.397253, + 45.486945 + ], + [ + -73.397988, + 45.487693 + ], + [ + -73.398417, + 45.488135 + ], + [ + -73.398503, + 45.488224 + ], + [ + -73.400292, + 45.490061 + ], + [ + -73.400338, + 45.490108 + ], + [ + -73.400631, + 45.490403 + ], + [ + -73.40073, + 45.490503 + ], + [ + -73.40103, + 45.490791 + ], + [ + -73.401471, + 45.491169 + ], + [ + -73.401956, + 45.491543 + ], + [ + -73.402249, + 45.491741 + ], + [ + -73.402261, + 45.491748 + ], + [ + -73.402357, + 45.491809 + ], + [ + -73.40251, + 45.491908 + ], + [ + -73.402561, + 45.491939 + ], + [ + -73.403076, + 45.492241 + ], + [ + -73.403455, + 45.492444 + ], + [ + -73.403526, + 45.492478 + ], + [ + -73.403928, + 45.492669 + ], + [ + -73.405609, + 45.493428 + ], + [ + -73.405646, + 45.493445 + ], + [ + -73.406465, + 45.493815 + ], + [ + -73.407044, + 45.494076 + ], + [ + -73.407318, + 45.494207 + ], + [ + -73.407449, + 45.49427 + ], + [ + -73.408138, + 45.494635 + ], + [ + -73.408708, + 45.49495 + ], + [ + -73.408748, + 45.494972 + ], + [ + -73.408851, + 45.495036 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.409259, + 45.494533 + ], + [ + -73.409537, + 45.494129 + ], + [ + -73.409554, + 45.494104 + ], + [ + -73.409872, + 45.493642 + ], + [ + -73.411355, + 45.491553 + ], + [ + -73.41144, + 45.491434 + ], + [ + -73.412048, + 45.490575 + ], + [ + -73.41308, + 45.489116 + ], + [ + -73.41317, + 45.488987 + ], + [ + -73.413246, + 45.48888 + ], + [ + -73.414235, + 45.487508 + ], + [ + -73.414543, + 45.487058 + ], + [ + -73.414879, + 45.486604 + ], + [ + -73.415045, + 45.486384 + ], + [ + -73.415216, + 45.486168 + ], + [ + -73.41547, + 45.485876 + ], + [ + -73.415597, + 45.485745 + ], + [ + -73.415653, + 45.485687 + ], + [ + -73.415881, + 45.485467 + ], + [ + -73.415979, + 45.485368 + ], + [ + -73.416171, + 45.485201 + ], + [ + -73.416634, + 45.484828 + ], + [ + -73.417619, + 45.484091 + ], + [ + -73.41778, + 45.483973 + ], + [ + -73.418029, + 45.48379 + ], + [ + -73.419479, + 45.482708 + ], + [ + -73.420488, + 45.481958 + ], + [ + -73.420745, + 45.481758 + ], + [ + -73.421007, + 45.481565 + ], + [ + -73.421135, + 45.481471 + ], + [ + -73.4234, + 45.479802 + ], + [ + -73.423539, + 45.479699 + ], + [ + -73.42384, + 45.47947 + ], + [ + -73.424374, + 45.479093 + ], + [ + -73.424606, + 45.47894 + ], + [ + -73.42499, + 45.478702 + ], + [ + -73.425384, + 45.478481 + ], + [ + -73.425755, + 45.478293 + ], + [ + -73.426224, + 45.478077 + ], + [ + -73.426575, + 45.477924 + ], + [ + -73.426849, + 45.477821 + ], + [ + -73.427064, + 45.47774 + ], + [ + -73.427293, + 45.477659 + ], + [ + -73.427592, + 45.477565 + ], + [ + -73.427919, + 45.477471 + ], + [ + -73.428417, + 45.477332 + ], + [ + -73.430191, + 45.476874 + ], + [ + -73.430341, + 45.476838 + ], + [ + -73.430884, + 45.476699 + ], + [ + -73.430953, + 45.476681 + ], + [ + -73.431616, + 45.47651 + ], + [ + -73.432188, + 45.476362 + ], + [ + -73.434429, + 45.475783 + ], + [ + -73.43506, + 45.475615 + ], + [ + -73.435306, + 45.475549 + ], + [ + -73.435634, + 45.475469 + ], + [ + -73.436518, + 45.475235 + ], + [ + -73.437045, + 45.475069 + ], + [ + -73.437596, + 45.47488 + ], + [ + -73.437872, + 45.474768 + ], + [ + -73.438084, + 45.474678 + ], + [ + -73.438162, + 45.474642 + ], + [ + -73.43841, + 45.474525 + ], + [ + -73.438836, + 45.474314 + ], + [ + -73.43909, + 45.474175 + ], + [ + -73.440044, + 45.473644 + ], + [ + -73.440381, + 45.473457 + ], + [ + -73.440502, + 45.47339 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.440904, + 45.473168 + ], + [ + -73.441015, + 45.473108 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.442498, + 45.472063 + ], + [ + -73.442653, + 45.471954 + ], + [ + -73.444466, + 45.470668 + ], + [ + -73.444558, + 45.470603 + ], + [ + -73.444668, + 45.470525 + ], + [ + -73.445328, + 45.470057 + ], + [ + -73.445338, + 45.470052 + ], + [ + -73.445622, + 45.469854 + ], + [ + -73.446091, + 45.469543 + ], + [ + -73.446352, + 45.46937 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.447066, + 45.468996 + ], + [ + -73.4474, + 45.468829 + ], + [ + -73.447822, + 45.468645 + ], + [ + -73.448427, + 45.468407 + ], + [ + -73.449383, + 45.468079 + ], + [ + -73.449709, + 45.467968 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450233, + 45.467787 + ], + [ + -73.451014, + 45.467517 + ], + [ + -73.451685, + 45.467271 + ], + [ + -73.451729, + 45.467255 + ], + [ + -73.451774, + 45.467238 + ], + [ + -73.452502, + 45.466987 + ], + [ + -73.452657, + 45.466933 + ], + [ + -73.453014, + 45.466803 + ], + [ + -73.45314, + 45.466749 + ], + [ + -73.453548, + 45.466537 + ], + [ + -73.453946, + 45.466304 + ], + [ + -73.454679, + 45.465797 + ], + [ + -73.454693, + 45.465786 + ], + [ + -73.45516, + 45.46545 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.455952, + 45.465079 + ], + [ + -73.456078, + 45.465023 + ], + [ + -73.456262, + 45.464907 + ], + [ + -73.456407, + 45.464824 + ], + [ + -73.456567, + 45.464772 + ], + [ + -73.456717, + 45.464744 + ], + [ + -73.456798, + 45.464739 + ], + [ + -73.456888, + 45.464733 + ], + [ + -73.457035, + 45.464719 + ], + [ + -73.45718, + 45.464674 + ], + [ + -73.457301, + 45.4646 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.458716, + 45.465432 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.460072, + 45.466411 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.460554, + 45.466805 + ], + [ + -73.460661, + 45.466886 + ], + [ + -73.461028, + 45.467148 + ], + [ + -73.46125, + 45.467305 + ], + [ + -73.461806, + 45.46771 + ], + [ + -73.461873, + 45.46776 + ], + [ + -73.461978, + 45.467836 + ], + [ + -73.462611, + 45.468268 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.465179, + 45.468283 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466386, + 45.468385 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.468602, + 45.466372 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.46904, + 45.466273 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469319, + 45.467991 + ], + [ + -73.469043, + 45.467983 + ], + [ + -73.468598, + 45.467969 + ], + [ + -73.468434, + 45.467978 + ], + [ + -73.467926, + 45.468045 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.46758, + 45.467757 + ], + [ + -73.467357, + 45.467296 + ], + [ + -73.467335, + 45.467098 + ], + [ + -73.467287, + 45.466921 + ], + [ + -73.46724, + 45.46679 + ], + [ + -73.467201, + 45.466621 + ], + [ + -73.467171, + 45.466457 + ], + [ + -73.467168, + 45.466361 + ], + [ + -73.467171, + 45.466266 + ], + [ + -73.46719, + 45.46616 + ], + [ + -73.467233, + 45.466051 + ], + [ + -73.467286, + 45.465947 + ], + [ + -73.467286, + 45.465946 + ], + [ + -73.467347, + 45.465852 + ], + [ + -73.46743, + 45.465768 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467565, + 45.465647 + ], + [ + -73.467708, + 45.465556 + ], + [ + -73.467899, + 45.465442 + ], + [ + -73.46805, + 45.465387 + ], + [ + -73.468287, + 45.465321 + ], + [ + -73.468514, + 45.465288 + ], + [ + -73.468859, + 45.465256 + ], + [ + -73.469207, + 45.465245 + ], + [ + -73.471824, + 45.46534 + ], + [ + -73.47278, + 45.465351 + ], + [ + -73.473923, + 45.465346 + ], + [ + -73.474792, + 45.465284 + ], + [ + -73.476448, + 45.465339 + ], + [ + -73.478069, + 45.465419 + ], + [ + -73.47931, + 45.465481 + ], + [ + -73.480681, + 45.465584 + ], + [ + -73.481658, + 45.465665 + ], + [ + -73.483804, + 45.465854 + ], + [ + -73.485886, + 45.466123 + ], + [ + -73.488038, + 45.466444 + ], + [ + -73.489088, + 45.466602 + ], + [ + -73.491585, + 45.46694 + ], + [ + -73.494707, + 45.467307 + ], + [ + -73.494917, + 45.467332 + ], + [ + -73.494999, + 45.467342 + ], + [ + -73.497318, + 45.467635 + ], + [ + -73.501976, + 45.468162 + ], + [ + -73.50546, + 45.468524 + ], + [ + -73.508994, + 45.468874 + ], + [ + -73.510795, + 45.469064 + ], + [ + -73.516615, + 45.469606 + ], + [ + -73.520513, + 45.469901 + ], + [ + -73.524263, + 45.470138 + ], + [ + -73.526895, + 45.470234 + ], + [ + -73.536203, + 45.470502 + ], + [ + -73.537479, + 45.470611 + ], + [ + -73.540035, + 45.470737 + ], + [ + -73.540574, + 45.470754 + ], + [ + -73.541689, + 45.470806 + ], + [ + -73.54236, + 45.470938 + ], + [ + -73.542685, + 45.471019 + ], + [ + -73.543056, + 45.471172 + ], + [ + -73.543235, + 45.471297 + ], + [ + -73.543427, + 45.47153 + ], + [ + -73.543495, + 45.471781 + ], + [ + -73.543487, + 45.471977 + ], + [ + -73.543374, + 45.472246 + ], + [ + -73.543123, + 45.472648 + ], + [ + -73.543053, + 45.472745 + ], + [ + -73.543034, + 45.472772 + ], + [ + -73.543013, + 45.472801 + ], + [ + -73.542473, + 45.473549 + ], + [ + -73.542275, + 45.473832 + ], + [ + -73.542255, + 45.473861 + ], + [ + -73.542175, + 45.473976 + ], + [ + -73.542016, + 45.474229 + ], + [ + -73.541794, + 45.474618 + ], + [ + -73.541458, + 45.475221 + ], + [ + -73.541094, + 45.47588 + ], + [ + -73.540722, + 45.476557 + ], + [ + -73.540393, + 45.477154 + ], + [ + -73.540141, + 45.477612 + ], + [ + -73.539989, + 45.477937 + ], + [ + -73.539912, + 45.478117 + ], + [ + -73.53962, + 45.478792 + ], + [ + -73.539453, + 45.479242 + ], + [ + -73.539011, + 45.480452 + ], + [ + -73.538771, + 45.481137 + ], + [ + -73.538372, + 45.4823 + ], + [ + -73.537796, + 45.483909 + ], + [ + -73.537682, + 45.484235 + ], + [ + -73.537533, + 45.484742 + ], + [ + -73.537501, + 45.485252 + ], + [ + -73.537565, + 45.485765 + ], + [ + -73.537725, + 45.486206 + ], + [ + -73.537953, + 45.486613 + ], + [ + -73.538211, + 45.486968 + ], + [ + -73.538564, + 45.487319 + ], + [ + -73.538991, + 45.48766 + ], + [ + -73.539413, + 45.487933 + ], + [ + -73.540409, + 45.488352 + ], + [ + -73.540999, + 45.488508 + ], + [ + -73.545779, + 45.489431 + ], + [ + -73.547415, + 45.489732 + ], + [ + -73.548107, + 45.48986 + ], + [ + -73.549549, + 45.490154 + ], + [ + -73.549968, + 45.490239 + ], + [ + -73.550646, + 45.490459 + ], + [ + -73.551261, + 45.490742 + ], + [ + -73.55163, + 45.490924 + ], + [ + -73.551996, + 45.491154 + ], + [ + -73.552466, + 45.491495 + ], + [ + -73.552812, + 45.491812 + ], + [ + -73.553225, + 45.492293 + ], + [ + -73.553459, + 45.492647 + ], + [ + -73.553701, + 45.493121 + ], + [ + -73.553714, + 45.493155 + ], + [ + -73.554005, + 45.493935 + ], + [ + -73.554229, + 45.494495 + ], + [ + -73.55441, + 45.494962 + ], + [ + -73.554709, + 45.495574 + ], + [ + -73.554963, + 45.495825 + ], + [ + -73.555225, + 45.496022 + ], + [ + -73.555665, + 45.496222 + ], + [ + -73.557268, + 45.496821 + ], + [ + -73.557934, + 45.497074 + ], + [ + -73.558511, + 45.497291 + ], + [ + -73.558754, + 45.497382 + ], + [ + -73.559665, + 45.497799 + ], + [ + -73.559804, + 45.497871 + ], + [ + -73.56055, + 45.498258 + ], + [ + -73.561247, + 45.498577 + ], + [ + -73.561574, + 45.498701 + ], + [ + -73.561917, + 45.498838 + ], + [ + -73.562165, + 45.49894 + ], + [ + -73.562545, + 45.499119 + ], + [ + -73.562571, + 45.499093 + ], + [ + -73.562654, + 45.499004 + ], + [ + -73.563341, + 45.498281 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.56431, + 45.497835 + ], + [ + -73.565142, + 45.498217 + ], + [ + -73.565601, + 45.498443 + ], + [ + -73.565748, + 45.49831 + ], + [ + -73.565849, + 45.498292 + ], + [ + -73.566051, + 45.498359 + ], + [ + -73.566361, + 45.498471 + ], + [ + -73.566492, + 45.498485 + ], + [ + -73.566611, + 45.498345 + ] + ] + }, + "id": 108, + "properties": { + "id": "a7350e66-a889-4200-b022-c89941108c5a", + "data": { + "gtfs": { + "shape_id": "42_1_A" + }, + "segments": [ + { + "distanceMeters": 192, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 307, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 375, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 424, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 368, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 345, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 548, + "travelTimeSeconds": 101 + }, + { + "distanceMeters": 10799, + "travelTimeSeconds": 720 + }, + { + "distanceMeters": 830, + "travelTimeSeconds": 420 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 258, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 21120, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 13062.319579171586, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.19, + "travelTimeWithoutDwellTimesSeconds": 2580, + "operatingTimeWithLayoverTimeSeconds": 2838, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2580, + "operatingSpeedWithLayoverMetersPerSecond": 7.44, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.19 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6", + "2d9ef136-ec60-4019-bd4d-d2df55cc0477", + "df277747-60c8-4b3b-bafb-24f50e6b7964", + "b50ae6c0-de25-4d7f-a9d6-e6512b40be80", + "968b7b22-34c3-4022-8ddb-f9483ac7dca5", + "33e21d89-c421-4efc-9bcf-2137e1092e00", + "819870cc-ffb6-4a2a-add6-5b056cc3e4c0", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", + "7c34d8fb-52d2-4cf7-8954-ff69847540ac", + "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", + "76b4c3d5-f580-480d-bfec-c2639dd60d13", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "78262195-7c3a-4ed5-81d8-a33c906e3099", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", + "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", + "8131cbf3-211d-4b69-adcb-9af688489a49", + "e865e27f-7453-42b2-9745-a8e5425a0276", + "0e293c4f-51c2-4ecd-9469-442389cb7915", + "71881b96-39d5-48ea-9242-5e05ded39cda", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "46c30d80-c93e-497b-a096-3a7c13e3723f", + "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", + "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "4fc83229-a15e-48e1-aa4f-fae0073dacf9", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "461a5d33-406e-481a-b773-6e450c48b670", + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" + ], + "stops": [], + "line_id": "b0ae745d-0a62-4849-894f-55aed31a5b79", + "segments": [ + 0, + 2, + 6, + 14, + 22, + 26, + 35, + 40, + 43, + 50, + 56, + 58, + 69, + 73, + 76, + 85, + 92, + 97, + 99, + 109, + 118, + 122, + 130, + 136, + 141, + 145, + 150, + 157, + 164, + 170, + 189, + 191, + 198, + 212, + 238, + 383 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 108, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.400131, + 45.4861 + ], + [ + -73.400474, + 45.48563 + ], + [ + -73.401257, + 45.484566 + ], + [ + -73.401315, + 45.484488 + ], + [ + -73.4013, + 45.484402 + ], + [ + -73.401353, + 45.482238 + ], + [ + -73.401357, + 45.48181 + ], + [ + -73.401359, + 45.48155 + ], + [ + -73.400341, + 45.481544 + ], + [ + -73.399897, + 45.481539 + ], + [ + -73.399682, + 45.481548 + ], + [ + -73.399426, + 45.481575 + ], + [ + -73.399227, + 45.481602 + ], + [ + -73.398981, + 45.481629 + ], + [ + -73.398923, + 45.481637 + ], + [ + -73.398721, + 45.481664 + ], + [ + -73.398467, + 45.481727 + ], + [ + -73.398262, + 45.481785 + ], + [ + -73.398091, + 45.481826 + ], + [ + -73.397814, + 45.481933 + ], + [ + -73.397794, + 45.481943 + ], + [ + -73.397442, + 45.4821 + ], + [ + -73.39676, + 45.482486 + ], + [ + -73.396697, + 45.482522 + ], + [ + -73.396445, + 45.482675 + ], + [ + -73.396029, + 45.482994 + ], + [ + -73.394942, + 45.483788 + ], + [ + -73.394578, + 45.484054 + ], + [ + -73.394481, + 45.484095 + ], + [ + -73.394326, + 45.48422 + ], + [ + -73.394526, + 45.48436 + ], + [ + -73.394852, + 45.484608 + ], + [ + -73.395097, + 45.484806 + ], + [ + -73.395347, + 45.485022 + ], + [ + -73.395593, + 45.485252 + ], + [ + -73.396224, + 45.485896 + ], + [ + -73.396316, + 45.48599 + ], + [ + -73.396877, + 45.486562 + ], + [ + -73.397253, + 45.486945 + ], + [ + -73.397988, + 45.487693 + ], + [ + -73.398421, + 45.48814 + ], + [ + -73.398503, + 45.488224 + ], + [ + -73.400292, + 45.490061 + ], + [ + -73.400344, + 45.490113 + ], + [ + -73.400631, + 45.490403 + ], + [ + -73.40073, + 45.490503 + ], + [ + -73.40103, + 45.490791 + ], + [ + -73.401471, + 45.491169 + ], + [ + -73.401956, + 45.491543 + ], + [ + -73.402249, + 45.491741 + ], + [ + -73.402269, + 45.491753 + ], + [ + -73.402357, + 45.491809 + ], + [ + -73.40251, + 45.491908 + ], + [ + -73.402561, + 45.491939 + ], + [ + -73.403076, + 45.492241 + ], + [ + -73.403455, + 45.492444 + ], + [ + -73.403535, + 45.492483 + ], + [ + -73.403928, + 45.492669 + ], + [ + -73.405619, + 45.493433 + ], + [ + -73.405646, + 45.493445 + ], + [ + -73.406465, + 45.493815 + ], + [ + -73.407044, + 45.494076 + ], + [ + -73.407318, + 45.494207 + ], + [ + -73.407449, + 45.49427 + ], + [ + -73.408138, + 45.494635 + ], + [ + -73.408708, + 45.49495 + ], + [ + -73.408748, + 45.494972 + ], + [ + -73.408851, + 45.495036 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.409265, + 45.494524 + ], + [ + -73.409537, + 45.494129 + ], + [ + -73.409554, + 45.494104 + ], + [ + -73.409872, + 45.493642 + ], + [ + -73.411362, + 45.491544 + ], + [ + -73.41144, + 45.491434 + ], + [ + -73.412048, + 45.490575 + ], + [ + -73.413087, + 45.489105 + ], + [ + -73.41317, + 45.488987 + ], + [ + -73.413246, + 45.48888 + ], + [ + -73.414235, + 45.487508 + ], + [ + -73.414543, + 45.487058 + ], + [ + -73.414879, + 45.486604 + ], + [ + -73.415045, + 45.486384 + ], + [ + -73.415216, + 45.486168 + ], + [ + -73.41547, + 45.485876 + ], + [ + -73.415608, + 45.485734 + ], + [ + -73.415653, + 45.485687 + ], + [ + -73.415881, + 45.485467 + ], + [ + -73.415979, + 45.485368 + ], + [ + -73.416171, + 45.485201 + ], + [ + -73.416634, + 45.484828 + ], + [ + -73.417619, + 45.484091 + ], + [ + -73.417793, + 45.483963 + ], + [ + -73.418029, + 45.48379 + ], + [ + -73.419479, + 45.482708 + ], + [ + -73.420488, + 45.481958 + ], + [ + -73.420745, + 45.481758 + ], + [ + -73.421022, + 45.481554 + ], + [ + -73.421135, + 45.481471 + ], + [ + -73.423416, + 45.47979 + ], + [ + -73.423539, + 45.479699 + ], + [ + -73.42384, + 45.47947 + ], + [ + -73.424374, + 45.479093 + ], + [ + -73.424606, + 45.47894 + ], + [ + -73.42499, + 45.478702 + ], + [ + -73.425384, + 45.478481 + ], + [ + -73.425755, + 45.478293 + ], + [ + -73.426224, + 45.478077 + ], + [ + -73.426575, + 45.477924 + ], + [ + -73.42687, + 45.477813 + ], + [ + -73.427064, + 45.47774 + ], + [ + -73.427293, + 45.477659 + ], + [ + -73.427592, + 45.477565 + ], + [ + -73.427919, + 45.477471 + ], + [ + -73.428417, + 45.477332 + ], + [ + -73.430191, + 45.476874 + ], + [ + -73.430341, + 45.476838 + ], + [ + -73.430884, + 45.476699 + ], + [ + -73.430977, + 45.476675 + ], + [ + -73.431616, + 45.47651 + ], + [ + -73.432188, + 45.476362 + ], + [ + -73.434429, + 45.475783 + ], + [ + -73.435086, + 45.475608 + ], + [ + -73.435306, + 45.475549 + ], + [ + -73.435634, + 45.475469 + ], + [ + -73.436518, + 45.475235 + ], + [ + -73.437045, + 45.475069 + ], + [ + -73.437596, + 45.47488 + ], + [ + -73.437872, + 45.474768 + ], + [ + -73.438084, + 45.474678 + ], + [ + -73.438186, + 45.47463 + ], + [ + -73.43841, + 45.474525 + ], + [ + -73.438836, + 45.474314 + ], + [ + -73.43909, + 45.474175 + ], + [ + -73.440044, + 45.473644 + ], + [ + -73.440381, + 45.473457 + ], + [ + -73.440526, + 45.473376 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.440904, + 45.473168 + ], + [ + -73.441015, + 45.473108 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.44252, + 45.472048 + ], + [ + -73.442653, + 45.471954 + ], + [ + -73.444466, + 45.470668 + ], + [ + -73.444558, + 45.470603 + ], + [ + -73.444691, + 45.470508 + ], + [ + -73.445328, + 45.470057 + ], + [ + -73.445338, + 45.470052 + ], + [ + -73.445622, + 45.469854 + ], + [ + -73.446091, + 45.469543 + ], + [ + -73.446376, + 45.469353 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.447066, + 45.468996 + ], + [ + -73.4474, + 45.468829 + ], + [ + -73.447822, + 45.468645 + ], + [ + -73.448427, + 45.468407 + ], + [ + -73.449383, + 45.468079 + ], + [ + -73.44974, + 45.467957 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450233, + 45.467787 + ], + [ + -73.451014, + 45.467517 + ], + [ + -73.451685, + 45.467271 + ], + [ + -73.451729, + 45.467255 + ], + [ + -73.451774, + 45.467238 + ], + [ + -73.452534, + 45.466975 + ], + [ + -73.452657, + 45.466933 + ], + [ + -73.453014, + 45.466803 + ], + [ + -73.45314, + 45.466749 + ], + [ + -73.453548, + 45.466537 + ], + [ + -73.453946, + 45.466304 + ], + [ + -73.454693, + 45.465786 + ], + [ + -73.454705, + 45.465778 + ], + [ + -73.45516, + 45.46545 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.455952, + 45.465079 + ], + [ + -73.456078, + 45.465023 + ], + [ + -73.456262, + 45.464907 + ], + [ + -73.456407, + 45.464824 + ], + [ + -73.456567, + 45.464772 + ], + [ + -73.456717, + 45.464744 + ], + [ + -73.456798, + 45.464739 + ], + [ + -73.456888, + 45.464733 + ], + [ + -73.457035, + 45.464719 + ], + [ + -73.45718, + 45.464674 + ], + [ + -73.457301, + 45.4646 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.458743, + 45.465452 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.460099, + 45.466431 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.460554, + 45.466805 + ], + [ + -73.460661, + 45.466886 + ], + [ + -73.461028, + 45.467148 + ], + [ + -73.46125, + 45.467305 + ], + [ + -73.461806, + 45.46771 + ], + [ + -73.461901, + 45.46778 + ], + [ + -73.461978, + 45.467836 + ], + [ + -73.462611, + 45.468268 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464452, + 45.468222 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.465221, + 45.468287 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.46908, + 45.465912 + ], + [ + -73.469107, + 45.46587 + ] + ] + }, + "id": 109, + "properties": { + "id": "23a0290f-0491-4104-8c51-e054d7885d47", + "data": { + "gtfs": { + "shape_id": "42_2_A" + }, + "segments": [ + { + "distanceMeters": 192, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 307, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 375, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 424, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 368, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 345, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 102 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 82 + }, + { + "distanceMeters": 579, + "travelTimeSeconds": 146 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9526, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5813.842791168849, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.9, + "travelTimeWithoutDwellTimesSeconds": 1380, + "operatingTimeWithLayoverTimeSeconds": 1560, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1380, + "operatingSpeedWithLayoverMetersPerSecond": 6.11, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.9 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6", + "2d9ef136-ec60-4019-bd4d-d2df55cc0477", + "df277747-60c8-4b3b-bafb-24f50e6b7964", + "b50ae6c0-de25-4d7f-a9d6-e6512b40be80", + "968b7b22-34c3-4022-8ddb-f9483ac7dca5", + "33e21d89-c421-4efc-9bcf-2137e1092e00", + "819870cc-ffb6-4a2a-add6-5b056cc3e4c0", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", + "7c34d8fb-52d2-4cf7-8954-ff69847540ac", + "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", + "76b4c3d5-f580-480d-bfec-c2639dd60d13", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "78262195-7c3a-4ed5-81d8-a33c906e3099", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", + "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", + "8131cbf3-211d-4b69-adcb-9af688489a49", + "e865e27f-7453-42b2-9745-a8e5425a0276", + "0e293c4f-51c2-4ecd-9469-442389cb7915", + "71881b96-39d5-48ea-9242-5e05ded39cda", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "46c30d80-c93e-497b-a096-3a7c13e3723f", + "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", + "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "4fc83229-a15e-48e1-aa4f-fae0073dacf9", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "b0ae745d-0a62-4849-894f-55aed31a5b79", + "segments": [ + 0, + 2, + 6, + 14, + 22, + 26, + 35, + 40, + 43, + 50, + 56, + 58, + 69, + 73, + 76, + 85, + 92, + 97, + 99, + 109, + 118, + 122, + 130, + 136, + 141, + 145, + 150, + 157, + 164, + 171, + 189, + 191, + 198, + 213 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 109, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469107, + 45.46587 + ], + [ + -73.469152, + 45.465801 + ], + [ + -73.469114, + 45.465711 + ], + [ + -73.469034, + 45.465669 + ], + [ + -73.468913, + 45.46567 + ], + [ + -73.468751, + 45.465752 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466951, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465591, + 45.468211 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.46363, + 45.4683 + ], + [ + -73.463472, + 45.468395 + ], + [ + -73.463397, + 45.468431 + ], + [ + -73.463306, + 45.468449 + ], + [ + -73.463219, + 45.468458 + ], + [ + -73.463124, + 45.468449 + ], + [ + -73.463037, + 45.468413 + ], + [ + -73.462702, + 45.468201 + ], + [ + -73.462471, + 45.468057 + ], + [ + -73.462195, + 45.467872 + ], + [ + -73.46201, + 45.467739 + ], + [ + -73.461894, + 45.467656 + ], + [ + -73.461788, + 45.46758 + ], + [ + -73.46133, + 45.467251 + ], + [ + -73.461109, + 45.467094 + ], + [ + -73.460905, + 45.466945 + ], + [ + -73.460722, + 45.466814 + ], + [ + -73.460721, + 45.466814 + ], + [ + -73.460629, + 45.466751 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.458928, + 45.465587 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457079, + 45.464307 + ], + [ + -73.456579, + 45.463946 + ], + [ + -73.45655, + 45.463924 + ], + [ + -73.455675, + 45.463282 + ], + [ + -73.454797, + 45.462637 + ], + [ + -73.454278, + 45.462276 + ], + [ + -73.454092, + 45.462406 + ], + [ + -73.454017, + 45.462437 + ], + [ + -73.453888, + 45.462462 + ], + [ + -73.453729, + 45.462455 + ], + [ + -73.453553, + 45.462428 + ], + [ + -73.453343, + 45.462373 + ], + [ + -73.453161, + 45.462302 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.452838, + 45.46234 + ], + [ + -73.452835, + 45.462344 + ], + [ + -73.452775, + 45.462447 + ], + [ + -73.452703, + 45.4626 + ], + [ + -73.452685, + 45.462654 + ], + [ + -73.452663, + 45.462722 + ], + [ + -73.452634, + 45.462879 + ], + [ + -73.45263, + 45.463001 + ], + [ + -73.452662, + 45.463158 + ], + [ + -73.452721, + 45.463379 + ], + [ + -73.452802, + 45.463536 + ], + [ + -73.452912, + 45.463662 + ], + [ + -73.453261, + 45.463932 + ], + [ + -73.453533, + 45.464132 + ], + [ + -73.453617, + 45.464193 + ], + [ + -73.453971, + 45.464449 + ], + [ + -73.45432, + 45.464702 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.454655, + 45.465624 + ], + [ + -73.45456, + 45.465692 + ], + [ + -73.453819, + 45.466205 + ], + [ + -73.453432, + 45.466434 + ], + [ + -73.453035, + 45.466641 + ], + [ + -73.452922, + 45.46669 + ], + [ + -73.452774, + 45.466754 + ], + [ + -73.452589, + 45.466834 + ], + [ + -73.451705, + 45.467139 + ], + [ + -73.451627, + 45.467166 + ], + [ + -73.45158, + 45.467183 + ], + [ + -73.451003, + 45.467382 + ], + [ + -73.450937, + 45.467405 + ], + [ + -73.450156, + 45.467679 + ], + [ + -73.449888, + 45.467769 + ], + [ + -73.449338, + 45.467948 + ], + [ + -73.44837, + 45.46829 + ], + [ + -73.447748, + 45.468524 + ], + [ + -73.447289, + 45.468721 + ], + [ + -73.446426, + 45.469169 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445905, + 45.469485 + ], + [ + -73.445671, + 45.469643 + ], + [ + -73.445475, + 45.469778 + ], + [ + -73.445396, + 45.469832 + ], + [ + -73.445298, + 45.469899 + ], + [ + -73.444328, + 45.470583 + ], + [ + -73.444068, + 45.470766 + ], + [ + -73.442651, + 45.471766 + ], + [ + -73.442644, + 45.471771 + ], + [ + -73.442519, + 45.471859 + ], + [ + -73.441942, + 45.47227 + ], + [ + -73.441014, + 45.472931 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.440777, + 45.473082 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.439918, + 45.473559 + ], + [ + -73.438731, + 45.47422 + ], + [ + -73.438304, + 45.474435 + ], + [ + -73.43826, + 45.474455 + ], + [ + -73.437984, + 45.474579 + ], + [ + -73.437774, + 45.474669 + ], + [ + -73.437493, + 45.474781 + ], + [ + -73.436979, + 45.47497 + ], + [ + -73.436441, + 45.475136 + ], + [ + -73.43565, + 45.475338 + ], + [ + -73.435349, + 45.475415 + ], + [ + -73.435246, + 45.475441 + ], + [ + -73.434371, + 45.475675 + ], + [ + -73.43213, + 45.476249 + ], + [ + -73.430984, + 45.476543 + ], + [ + -73.430431, + 45.476684 + ], + [ + -73.430219, + 45.476739 + ], + [ + -73.43007, + 45.476775 + ], + [ + -73.429697, + 45.476873 + ], + [ + -73.429193, + 45.477005 + ], + [ + -73.428358, + 45.477224 + ], + [ + -73.427857, + 45.477363 + ], + [ + -73.427526, + 45.477457 + ], + [ + -73.427221, + 45.477556 + ], + [ + -73.427138, + 45.477585 + ], + [ + -73.426989, + 45.477637 + ], + [ + -73.426493, + 45.477825 + ], + [ + -73.426135, + 45.477978 + ], + [ + -73.425662, + 45.478198 + ], + [ + -73.425284, + 45.478387 + ], + [ + -73.424884, + 45.478612 + ], + [ + -73.424494, + 45.47885 + ], + [ + -73.424258, + 45.479012 + ], + [ + -73.423721, + 45.479389 + ], + [ + -73.423502, + 45.479556 + ], + [ + -73.423421, + 45.479618 + ], + [ + -73.421119, + 45.481314 + ], + [ + -73.421017, + 45.481389 + ], + [ + -73.419775, + 45.482315 + ], + [ + -73.419122, + 45.482809 + ], + [ + -73.418378, + 45.483361 + ], + [ + -73.417919, + 45.483709 + ], + [ + -73.417514, + 45.484019 + ], + [ + -73.417488, + 45.484038 + ], + [ + -73.416526, + 45.484761 + ], + [ + -73.416059, + 45.485134 + ], + [ + -73.415863, + 45.485305 + ], + [ + -73.415534, + 45.485624 + ], + [ + -73.415523, + 45.485635 + ], + [ + -73.415347, + 45.485822 + ], + [ + -73.41509, + 45.486114 + ], + [ + -73.414917, + 45.486334 + ], + [ + -73.41475, + 45.486555 + ], + [ + -73.414412, + 45.487013 + ], + [ + -73.41409, + 45.487458 + ], + [ + -73.413175, + 45.488755 + ], + [ + -73.413119, + 45.488834 + ], + [ + -73.413049, + 45.488947 + ], + [ + -73.411857, + 45.490612 + ], + [ + -73.411373, + 45.491287 + ], + [ + -73.4113, + 45.491389 + ], + [ + -73.410804, + 45.492083 + ], + [ + -73.410177, + 45.492961 + ], + [ + -73.409729, + 45.493588 + ], + [ + -73.409634, + 45.493716 + ], + [ + -73.409271, + 45.494208 + ], + [ + -73.409071, + 45.494478 + ], + [ + -73.409048, + 45.494509 + ], + [ + -73.408825, + 45.494811 + ], + [ + -73.408434, + 45.49459 + ], + [ + -73.408369, + 45.494555 + ], + [ + -73.408119, + 45.494419 + ], + [ + -73.407843, + 45.49427 + ], + [ + -73.407735, + 45.494211 + ], + [ + -73.407122, + 45.493914 + ], + [ + -73.406659, + 45.493705 + ], + [ + -73.406594, + 45.493675 + ], + [ + -73.404056, + 45.49253 + ], + [ + -73.40355, + 45.492282 + ], + [ + -73.403081, + 45.492034 + ], + [ + -73.402785, + 45.491856 + ], + [ + -73.402782, + 45.491854 + ], + [ + -73.402626, + 45.491759 + ], + [ + -73.402493, + 45.491674 + ], + [ + -73.402463, + 45.491651 + ], + [ + -73.402075, + 45.491386 + ], + [ + -73.401668, + 45.491075 + ], + [ + -73.401167, + 45.490642 + ], + [ + -73.400821, + 45.490307 + ], + [ + -73.40081, + 45.490296 + ], + [ + -73.398818, + 45.488256 + ], + [ + -73.398629, + 45.488062 + ], + [ + -73.398311, + 45.487738 + ], + [ + -73.397543, + 45.486952 + ], + [ + -73.397073, + 45.486473 + ], + [ + -73.39668, + 45.48607 + ], + [ + -73.396515, + 45.485901 + ], + [ + -73.395797, + 45.485167 + ], + [ + -73.395424, + 45.48482 + ], + [ + -73.39519, + 45.484626 + ], + [ + -73.394903, + 45.484401 + ], + [ + -73.394667, + 45.484225 + ], + [ + -73.39454, + 45.484131 + ], + [ + -73.394481, + 45.484095 + ], + [ + -73.394578, + 45.484054 + ], + [ + -73.396029, + 45.482994 + ], + [ + -73.396445, + 45.482675 + ], + [ + -73.396657, + 45.482546 + ], + [ + -73.396697, + 45.482522 + ], + [ + -73.397442, + 45.4821 + ], + [ + -73.397756, + 45.481959 + ], + [ + -73.397814, + 45.481933 + ], + [ + -73.398091, + 45.481826 + ], + [ + -73.398262, + 45.481785 + ], + [ + -73.398467, + 45.481727 + ], + [ + -73.398721, + 45.481664 + ], + [ + -73.398955, + 45.481632 + ], + [ + -73.398981, + 45.481629 + ], + [ + -73.399227, + 45.481602 + ], + [ + -73.399426, + 45.481575 + ], + [ + -73.399682, + 45.481548 + ], + [ + -73.399897, + 45.481539 + ], + [ + -73.400341, + 45.481544 + ], + [ + -73.401174, + 45.481549 + ], + [ + -73.401359, + 45.48155 + ], + [ + -73.401353, + 45.482238 + ], + [ + -73.4013, + 45.484402 + ], + [ + -73.4013, + 45.484402 + ], + [ + -73.401315, + 45.484488 + ], + [ + -73.400474, + 45.48563 + ], + [ + -73.400321, + 45.48584 + ] + ] + }, + "id": 110, + "properties": { + "id": "29cc2b7d-3ccc-404f-a8ed-c61c55e50c59", + "data": { + "gtfs": { + "shape_id": "42_2_R" + }, + "segments": [ + { + "distanceMeters": 673, + "travelTimeSeconds": 99 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 433, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 415, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 366, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 508, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 31 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10225, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5813.842791168849, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.1, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 6.31, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.1 + }, + "mode": "bus", + "name": "Parc de la Cité", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "b6dfeeab-9981-4db8-9a90-2e14691bf516", + "bd9b4c12-08ed-4715-ae67-eb179ed7f974", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "ff779c9a-cd83-463a-8d0c-a93f3584a187", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", + "c8919560-2bb2-4063-8184-8e6c296badbe", + "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", + "0e293c4f-51c2-4ecd-9469-442389cb7915", + "e865e27f-7453-42b2-9745-a8e5425a0276", + "f7218298-f862-4f68-aabe-7a0d51011bc1", + "7f82f5fb-e61e-43a9-957c-0c400fd3ecbd", + "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "78262195-7c3a-4ed5-81d8-a33c906e3099", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "df4c6e14-8093-4f02-87d3-4b3d84466b04", + "7c34d8fb-52d2-4cf7-8954-ff69847540ac", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "7b30134c-a936-4c6b-8038-780d1041baea", + "9f7ffafe-2aab-4507-b571-cce792adfb7d", + "968b7b22-34c3-4022-8ddb-f9483ac7dca5", + "b50ae6c0-de25-4d7f-a9d6-e6512b40be80", + "df277747-60c8-4b3b-bafb-24f50e6b7964", + "2d9ef136-ec60-4019-bd4d-d2df55cc0477", + "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6" + ], + "stops": [], + "line_id": "b0ae745d-0a62-4849-894f-55aed31a5b79", + "segments": [ + 0, + 31, + 51, + 58, + 61, + 67, + 84, + 93, + 98, + 104, + 109, + 117, + 125, + 126, + 130, + 137, + 144, + 149, + 158, + 168, + 170, + 177, + 182, + 189, + 193, + 200, + 209, + 214, + 224, + 229, + 235, + 241, + 250, + 257, + 261 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 110, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.566611, + 45.498345 + ], + [ + -73.566738, + 45.498195 + ], + [ + -73.566628, + 45.49808 + ], + [ + -73.566306, + 45.497931 + ], + [ + -73.566253, + 45.497841 + ], + [ + -73.56638, + 45.497699 + ], + [ + -73.566016, + 45.497523 + ], + [ + -73.564691, + 45.496892 + ], + [ + -73.563974, + 45.496566 + ], + [ + -73.562701, + 45.495919 + ], + [ + -73.562651, + 45.496018 + ], + [ + -73.562646, + 45.496027 + ], + [ + -73.562481, + 45.496317 + ], + [ + -73.562367, + 45.496479 + ], + [ + -73.562274, + 45.496658 + ], + [ + -73.562038, + 45.497108 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.561446, + 45.497988 + ], + [ + -73.561033, + 45.497765 + ], + [ + -73.560139, + 45.497347 + ], + [ + -73.559235, + 45.49696 + ], + [ + -73.55917, + 45.496938 + ], + [ + -73.558356, + 45.496631 + ], + [ + -73.558148, + 45.496557 + ], + [ + -73.557604, + 45.496364 + ], + [ + -73.556782, + 45.49606 + ], + [ + -73.555745, + 45.495673 + ], + [ + -73.555351, + 45.495512 + ], + [ + -73.555133, + 45.495401 + ], + [ + -73.554916, + 45.495262 + ], + [ + -73.554768, + 45.495125 + ], + [ + -73.55465, + 45.494994 + ], + [ + -73.553944, + 45.493258 + ], + [ + -73.553818, + 45.492971 + ], + [ + -73.553465, + 45.492338 + ], + [ + -73.552977, + 45.491759 + ], + [ + -73.552502, + 45.491344 + ], + [ + -73.551956, + 45.490962 + ], + [ + -73.551651, + 45.490791 + ], + [ + -73.551074, + 45.490513 + ], + [ + -73.550682, + 45.490367 + ], + [ + -73.550312, + 45.490228 + ], + [ + -73.54956, + 45.490034 + ], + [ + -73.548355, + 45.489798 + ], + [ + -73.542648, + 45.488704 + ], + [ + -73.541878, + 45.488554 + ], + [ + -73.541083, + 45.488397 + ], + [ + -73.540636, + 45.488282 + ], + [ + -73.540145, + 45.488119 + ], + [ + -73.539582, + 45.48786 + ], + [ + -73.539239, + 45.487663 + ], + [ + -73.538946, + 45.487462 + ], + [ + -73.538619, + 45.487192 + ], + [ + -73.538304, + 45.486863 + ], + [ + -73.538089, + 45.486564 + ], + [ + -73.537885, + 45.486183 + ], + [ + -73.537862, + 45.486139 + ], + [ + -73.537796, + 45.485958 + ], + [ + -73.537731, + 45.485785 + ], + [ + -73.53767, + 45.485461 + ], + [ + -73.537646, + 45.485264 + ], + [ + -73.537653, + 45.484914 + ], + [ + -73.537707, + 45.484604 + ], + [ + -73.537881, + 45.484168 + ], + [ + -73.537968, + 45.483893 + ], + [ + -73.538058, + 45.483623 + ], + [ + -73.539557, + 45.479354 + ], + [ + -73.53982, + 45.478652 + ], + [ + -73.540179, + 45.47782 + ], + [ + -73.540481, + 45.477177 + ], + [ + -73.540578, + 45.477027 + ], + [ + -73.540928, + 45.476409 + ], + [ + -73.5413, + 45.475732 + ], + [ + -73.541747, + 45.474937 + ], + [ + -73.542136, + 45.474264 + ], + [ + -73.542539, + 45.47363 + ], + [ + -73.543159, + 45.472786 + ], + [ + -73.543162, + 45.472781 + ], + [ + -73.5432, + 45.472729 + ], + [ + -73.543381, + 45.472482 + ], + [ + -73.543908, + 45.471834 + ], + [ + -73.544604, + 45.471016 + ], + [ + -73.54479, + 45.470824 + ], + [ + -73.544929, + 45.470679 + ], + [ + -73.54509, + 45.470477 + ], + [ + -73.545159, + 45.470391 + ], + [ + -73.545162, + 45.470289 + ], + [ + -73.54518, + 45.470102 + ], + [ + -73.54513, + 45.469912 + ], + [ + -73.545032, + 45.469762 + ], + [ + -73.544829, + 45.469589 + ], + [ + -73.544396, + 45.469456 + ], + [ + -73.544223, + 45.469408 + ], + [ + -73.544, + 45.469414 + ], + [ + -73.54385, + 45.469436 + ], + [ + -73.543665, + 45.469485 + ], + [ + -73.543125, + 45.469658 + ], + [ + -73.542795, + 45.46978 + ], + [ + -73.542335, + 45.469915 + ], + [ + -73.542042, + 45.469974 + ], + [ + -73.541634, + 45.469988 + ], + [ + -73.538583, + 45.470121 + ], + [ + -73.536645, + 45.47012 + ], + [ + -73.534843, + 45.470106 + ], + [ + -73.531663, + 45.470044 + ], + [ + -73.528901, + 45.469979 + ], + [ + -73.525636, + 45.469864 + ], + [ + -73.520215, + 45.469565 + ], + [ + -73.516228, + 45.469261 + ], + [ + -73.50737, + 45.468395 + ], + [ + -73.501604, + 45.467786 + ], + [ + -73.499262, + 45.467514 + ], + [ + -73.493921, + 45.466881 + ], + [ + -73.491932, + 45.466645 + ], + [ + -73.489852, + 45.466348 + ], + [ + -73.489119, + 45.46624 + ], + [ + -73.489027, + 45.466226 + ], + [ + -73.486848, + 45.465931 + ], + [ + -73.485714, + 45.465782 + ], + [ + -73.482904, + 45.465439 + ], + [ + -73.482123, + 45.46537 + ], + [ + -73.479736, + 45.465191 + ], + [ + -73.47968, + 45.465187 + ], + [ + -73.478363, + 45.465119 + ], + [ + -73.477796, + 45.465089 + ], + [ + -73.475753, + 45.464994 + ], + [ + -73.474695, + 45.464942 + ], + [ + -73.474262, + 45.464921 + ], + [ + -73.474113, + 45.464916 + ], + [ + -73.473291, + 45.464882 + ], + [ + -73.472501, + 45.46485 + ], + [ + -73.471447, + 45.46476 + ], + [ + -73.469875, + 45.464616 + ], + [ + -73.469333, + 45.464554 + ], + [ + -73.46902, + 45.464515 + ], + [ + -73.468704, + 45.464452 + ], + [ + -73.468392, + 45.464367 + ], + [ + -73.468066, + 45.46424 + ], + [ + -73.467826, + 45.46409 + ], + [ + -73.467593, + 45.463944 + ], + [ + -73.467415, + 45.463833 + ], + [ + -73.467133, + 45.463667 + ], + [ + -73.466953, + 45.463591 + ], + [ + -73.466529, + 45.463529 + ], + [ + -73.466232, + 45.463594 + ], + [ + -73.466092, + 45.463623 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.468298, + 45.46636 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469044, + 45.466212 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466904, + 45.46682 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465533, + 45.468205 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.46363, + 45.4683 + ], + [ + -73.463472, + 45.468395 + ], + [ + -73.463397, + 45.468431 + ], + [ + -73.463306, + 45.468449 + ], + [ + -73.463219, + 45.468458 + ], + [ + -73.463124, + 45.468449 + ], + [ + -73.463037, + 45.468413 + ], + [ + -73.462702, + 45.468201 + ], + [ + -73.462471, + 45.468057 + ], + [ + -73.462195, + 45.467872 + ], + [ + -73.461979, + 45.467717 + ], + [ + -73.461894, + 45.467656 + ], + [ + -73.461788, + 45.46758 + ], + [ + -73.46133, + 45.467251 + ], + [ + -73.461109, + 45.467094 + ], + [ + -73.460905, + 45.466945 + ], + [ + -73.460722, + 45.466814 + ], + [ + -73.46069, + 45.466793 + ], + [ + -73.460629, + 45.466751 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.458899, + 45.465565 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457079, + 45.464307 + ], + [ + -73.45655, + 45.463925 + ], + [ + -73.45655, + 45.463924 + ], + [ + -73.455675, + 45.463282 + ], + [ + -73.454797, + 45.462637 + ], + [ + -73.454278, + 45.462276 + ], + [ + -73.45418, + 45.462345 + ], + [ + -73.454092, + 45.462406 + ], + [ + -73.454017, + 45.462437 + ], + [ + -73.453888, + 45.462462 + ], + [ + -73.453729, + 45.462455 + ], + [ + -73.453553, + 45.462428 + ], + [ + -73.453343, + 45.462373 + ], + [ + -73.453161, + 45.462302 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.452835, + 45.462344 + ], + [ + -73.452775, + 45.462447 + ], + [ + -73.452703, + 45.4626 + ], + [ + -73.452676, + 45.462681 + ], + [ + -73.452663, + 45.462722 + ], + [ + -73.452634, + 45.462879 + ], + [ + -73.45263, + 45.463001 + ], + [ + -73.452662, + 45.463158 + ], + [ + -73.452721, + 45.463379 + ], + [ + -73.452802, + 45.463536 + ], + [ + -73.452912, + 45.463662 + ], + [ + -73.453261, + 45.463932 + ], + [ + -73.453559, + 45.464151 + ], + [ + -73.453617, + 45.464193 + ], + [ + -73.453971, + 45.464449 + ], + [ + -73.45432, + 45.464702 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.454944, + 45.465416 + ], + [ + -73.454629, + 45.465642 + ], + [ + -73.45456, + 45.465692 + ], + [ + -73.453819, + 45.466205 + ], + [ + -73.453432, + 45.466434 + ], + [ + -73.453035, + 45.466641 + ], + [ + -73.452922, + 45.46669 + ], + [ + -73.452743, + 45.466767 + ], + [ + -73.452589, + 45.466834 + ], + [ + -73.451705, + 45.467139 + ], + [ + -73.451627, + 45.467166 + ], + [ + -73.45158, + 45.467183 + ], + [ + -73.450971, + 45.467393 + ], + [ + -73.450937, + 45.467405 + ], + [ + -73.450156, + 45.467679 + ], + [ + -73.449888, + 45.467769 + ], + [ + -73.449338, + 45.467948 + ], + [ + -73.44837, + 45.46829 + ], + [ + -73.447748, + 45.468524 + ], + [ + -73.447289, + 45.468721 + ], + [ + -73.446399, + 45.469183 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445905, + 45.469485 + ], + [ + -73.445671, + 45.469643 + ], + [ + -73.445475, + 45.469778 + ], + [ + -73.445396, + 45.469832 + ], + [ + -73.445298, + 45.469899 + ], + [ + -73.444328, + 45.470583 + ], + [ + -73.444046, + 45.470782 + ], + [ + -73.442644, + 45.471771 + ], + [ + -73.442628, + 45.471782 + ], + [ + -73.442519, + 45.471859 + ], + [ + -73.441942, + 45.47227 + ], + [ + -73.440993, + 45.472946 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.440777, + 45.473082 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.439918, + 45.473559 + ], + [ + -73.438731, + 45.47422 + ], + [ + -73.438304, + 45.474435 + ], + [ + -73.438236, + 45.474466 + ], + [ + -73.437984, + 45.474579 + ], + [ + -73.437774, + 45.474669 + ], + [ + -73.437493, + 45.474781 + ], + [ + -73.436979, + 45.47497 + ], + [ + -73.436441, + 45.475136 + ], + [ + -73.43565, + 45.475338 + ], + [ + -73.435322, + 45.475422 + ], + [ + -73.435246, + 45.475441 + ], + [ + -73.434371, + 45.475675 + ], + [ + -73.43213, + 45.476249 + ], + [ + -73.430984, + 45.476543 + ], + [ + -73.430407, + 45.476691 + ], + [ + -73.430219, + 45.476739 + ], + [ + -73.43007, + 45.476775 + ], + [ + -73.429697, + 45.476873 + ], + [ + -73.429193, + 45.477005 + ], + [ + -73.428358, + 45.477224 + ], + [ + -73.427857, + 45.477363 + ], + [ + -73.427526, + 45.477457 + ], + [ + -73.427221, + 45.477556 + ], + [ + -73.427116, + 45.477592 + ], + [ + -73.426989, + 45.477637 + ], + [ + -73.426493, + 45.477825 + ], + [ + -73.426135, + 45.477978 + ], + [ + -73.425662, + 45.478198 + ], + [ + -73.425284, + 45.478387 + ], + [ + -73.424884, + 45.478612 + ], + [ + -73.424494, + 45.47885 + ], + [ + -73.424258, + 45.479012 + ], + [ + -73.423721, + 45.479389 + ], + [ + -73.423487, + 45.479568 + ], + [ + -73.423421, + 45.479618 + ], + [ + -73.421104, + 45.481326 + ], + [ + -73.421017, + 45.481389 + ], + [ + -73.419775, + 45.482315 + ], + [ + -73.419122, + 45.482809 + ], + [ + -73.418378, + 45.483361 + ], + [ + -73.417919, + 45.483709 + ], + [ + -73.417514, + 45.484019 + ], + [ + -73.417475, + 45.484048 + ], + [ + -73.416526, + 45.484761 + ], + [ + -73.416059, + 45.485134 + ], + [ + -73.415863, + 45.485305 + ], + [ + -73.415534, + 45.485624 + ], + [ + -73.415513, + 45.485646 + ], + [ + -73.415347, + 45.485822 + ], + [ + -73.41509, + 45.486114 + ], + [ + -73.414917, + 45.486334 + ], + [ + -73.41475, + 45.486555 + ], + [ + -73.414412, + 45.487013 + ], + [ + -73.41409, + 45.487458 + ], + [ + -73.413167, + 45.488766 + ], + [ + -73.413119, + 45.488834 + ], + [ + -73.413049, + 45.488947 + ], + [ + -73.411857, + 45.490612 + ], + [ + -73.411366, + 45.491297 + ], + [ + -73.4113, + 45.491389 + ], + [ + -73.410804, + 45.492083 + ], + [ + -73.410177, + 45.492961 + ], + [ + -73.409729, + 45.493588 + ], + [ + -73.409634, + 45.493716 + ], + [ + -73.409271, + 45.494208 + ], + [ + -73.409065, + 45.494486 + ], + [ + -73.409048, + 45.494509 + ], + [ + -73.408825, + 45.494811 + ], + [ + -73.408434, + 45.49459 + ], + [ + -73.408369, + 45.494555 + ], + [ + -73.408119, + 45.494419 + ], + [ + -73.407843, + 45.49427 + ], + [ + -73.407735, + 45.494211 + ], + [ + -73.407122, + 45.493914 + ], + [ + -73.406648, + 45.4937 + ], + [ + -73.406594, + 45.493675 + ], + [ + -73.404056, + 45.49253 + ], + [ + -73.40355, + 45.492282 + ], + [ + -73.403081, + 45.492034 + ], + [ + -73.402782, + 45.491854 + ], + [ + -73.402777, + 45.491851 + ], + [ + -73.402626, + 45.491759 + ], + [ + -73.402493, + 45.491674 + ], + [ + -73.402463, + 45.491651 + ], + [ + -73.402075, + 45.491386 + ], + [ + -73.401668, + 45.491075 + ], + [ + -73.401167, + 45.490642 + ], + [ + -73.400821, + 45.490307 + ], + [ + -73.40081, + 45.490296 + ], + [ + -73.398814, + 45.488251 + ], + [ + -73.398629, + 45.488062 + ], + [ + -73.398311, + 45.487738 + ], + [ + -73.397543, + 45.486952 + ], + [ + -73.397073, + 45.486473 + ], + [ + -73.396677, + 45.486066 + ], + [ + -73.396515, + 45.485901 + ], + [ + -73.395797, + 45.485167 + ], + [ + -73.395424, + 45.48482 + ], + [ + -73.39519, + 45.484626 + ], + [ + -73.394903, + 45.484401 + ], + [ + -73.394663, + 45.484222 + ], + [ + -73.39454, + 45.484131 + ], + [ + -73.394481, + 45.484095 + ], + [ + -73.394578, + 45.484054 + ], + [ + -73.396029, + 45.482994 + ], + [ + -73.396445, + 45.482675 + ], + [ + -73.396661, + 45.482544 + ], + [ + -73.396697, + 45.482522 + ], + [ + -73.397442, + 45.4821 + ], + [ + -73.397756, + 45.481959 + ], + [ + -73.397814, + 45.481933 + ], + [ + -73.398091, + 45.481826 + ], + [ + -73.398262, + 45.481785 + ], + [ + -73.398467, + 45.481727 + ], + [ + -73.398721, + 45.481664 + ], + [ + -73.398958, + 45.481632 + ], + [ + -73.398981, + 45.481629 + ], + [ + -73.399227, + 45.481602 + ], + [ + -73.399426, + 45.481575 + ], + [ + -73.399682, + 45.481548 + ], + [ + -73.399897, + 45.481539 + ], + [ + -73.400341, + 45.481544 + ], + [ + -73.401177, + 45.481549 + ], + [ + -73.401359, + 45.48155 + ], + [ + -73.401353, + 45.482238 + ], + [ + -73.4013, + 45.484402 + ], + [ + -73.4013, + 45.484403 + ], + [ + -73.401315, + 45.484488 + ], + [ + -73.400474, + 45.48563 + ], + [ + -73.400321, + 45.48584 + ] + ] + }, + "id": 111, + "properties": { + "id": "7ba6dc97-dc46-45a9-b2e1-f2c60a3b93ec", + "data": { + "gtfs": { + "shape_id": "42_1_R" + }, + "segments": [ + { + "distanceMeters": 1006, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 10885, + "travelTimeSeconds": 720 + }, + { + "distanceMeters": 695, + "travelTimeSeconds": 101 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 433, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 415, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 366, + "travelTimeSeconds": 85 + }, + { + "distanceMeters": 508, + "travelTimeSeconds": 118 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 42 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 264, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 22132, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 13062.319579171586, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.38, + "travelTimeWithoutDwellTimesSeconds": 2640, + "operatingTimeWithLayoverTimeSeconds": 2904, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2640, + "operatingSpeedWithLayoverMetersPerSecond": 7.62, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.38 + }, + "mode": "bus", + "name": "Parc de la Cité", + "color": "#A32638", + "nodes": [ + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", + "0f8ef5e7-ff7c-4097-8d8a-9727f12190ea", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "b6dfeeab-9981-4db8-9a90-2e14691bf516", + "bd9b4c12-08ed-4715-ae67-eb179ed7f974", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "ff779c9a-cd83-463a-8d0c-a93f3584a187", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", + "c8919560-2bb2-4063-8184-8e6c296badbe", + "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", + "0e293c4f-51c2-4ecd-9469-442389cb7915", + "e865e27f-7453-42b2-9745-a8e5425a0276", + "f7218298-f862-4f68-aabe-7a0d51011bc1", + "7f82f5fb-e61e-43a9-957c-0c400fd3ecbd", + "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "78262195-7c3a-4ed5-81d8-a33c906e3099", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "df4c6e14-8093-4f02-87d3-4b3d84466b04", + "7c34d8fb-52d2-4cf7-8954-ff69847540ac", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "7b30134c-a936-4c6b-8038-780d1041baea", + "9f7ffafe-2aab-4507-b571-cce792adfb7d", + "968b7b22-34c3-4022-8ddb-f9483ac7dca5", + "b50ae6c0-de25-4d7f-a9d6-e6512b40be80", + "df277747-60c8-4b3b-bafb-24f50e6b7964", + "2d9ef136-ec60-4019-bd4d-d2df55cc0477", + "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6" + ], + "stops": [], + "line_id": "b0ae745d-0a62-4849-894f-55aed31a5b79", + "segments": [ + 0, + 23, + 173, + 201, + 221, + 228, + 231, + 237, + 254, + 263, + 269, + 275, + 280, + 288, + 296, + 298, + 301, + 308, + 315, + 320, + 329, + 339, + 341, + 348, + 353, + 360, + 364, + 371, + 380, + 386, + 395, + 400, + 406, + 412, + 421, + 428, + 432 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 111, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469043, + 45.46624 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466402, + 45.465803 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467476, + 45.467991 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467548, + 45.468225 + ], + [ + -73.467698, + 45.468792 + ], + [ + -73.467776, + 45.469183 + ], + [ + -73.46782, + 45.469453 + ], + [ + -73.46784, + 45.469697 + ], + [ + -73.467865, + 45.469989 + ], + [ + -73.467864, + 45.470057 + ], + [ + -73.467862, + 45.470168 + ], + [ + -73.46786, + 45.470362 + ], + [ + -73.467828, + 45.470697 + ], + [ + -73.467821, + 45.470781 + ], + [ + -73.467786, + 45.471019 + ], + [ + -73.467768, + 45.4711 + ], + [ + -73.467579, + 45.47132 + ], + [ + -73.467528, + 45.471365 + ], + [ + -73.467462, + 45.471392 + ], + [ + -73.467361, + 45.47141 + ], + [ + -73.467264, + 45.471406 + ], + [ + -73.467156, + 45.471392 + ], + [ + -73.466545, + 45.47101 + ], + [ + -73.466292, + 45.470829 + ], + [ + -73.465866, + 45.470524 + ], + [ + -73.465275, + 45.470094 + ], + [ + -73.465197, + 45.470037 + ], + [ + -73.464559, + 45.469569 + ], + [ + -73.464, + 45.469161 + ], + [ + -73.463838, + 45.469043 + ], + [ + -73.463631, + 45.468892 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463257, + 45.46862 + ], + [ + -73.462702, + 45.468201 + ], + [ + -73.462471, + 45.468057 + ], + [ + -73.462195, + 45.467872 + ], + [ + -73.462016, + 45.467744 + ], + [ + -73.461894, + 45.467656 + ], + [ + -73.461788, + 45.46758 + ], + [ + -73.46133, + 45.467251 + ], + [ + -73.461109, + 45.467094 + ], + [ + -73.460905, + 45.466945 + ], + [ + -73.460727, + 45.466818 + ], + [ + -73.460722, + 45.466814 + ], + [ + -73.460629, + 45.466751 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.458934, + 45.465591 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457079, + 45.464307 + ], + [ + -73.456594, + 45.463956 + ], + [ + -73.45655, + 45.463924 + ], + [ + -73.455675, + 45.463282 + ], + [ + -73.454797, + 45.462637 + ], + [ + -73.454278, + 45.462276 + ], + [ + -73.454092, + 45.462406 + ], + [ + -73.454017, + 45.462437 + ], + [ + -73.453888, + 45.462462 + ], + [ + -73.453729, + 45.462455 + ], + [ + -73.453553, + 45.462428 + ], + [ + -73.453343, + 45.462373 + ], + [ + -73.453161, + 45.462302 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.452835, + 45.462344 + ], + [ + -73.452775, + 45.462447 + ], + [ + -73.452703, + 45.4626 + ], + [ + -73.45269, + 45.46264 + ], + [ + -73.452663, + 45.462722 + ], + [ + -73.452634, + 45.462879 + ], + [ + -73.45263, + 45.463001 + ], + [ + -73.452662, + 45.463158 + ], + [ + -73.452721, + 45.463379 + ], + [ + -73.452802, + 45.463536 + ], + [ + -73.452912, + 45.463662 + ], + [ + -73.45323, + 45.463908 + ], + [ + -73.453261, + 45.463932 + ], + [ + -73.453528, + 45.464128 + ], + [ + -73.453617, + 45.464193 + ], + [ + -73.453971, + 45.464449 + ], + [ + -73.45432, + 45.464702 + ], + [ + -73.454629, + 45.464917 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.457611, + 45.462231 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.45769, + 45.462033 + ], + [ + -73.457776, + 45.461966 + ], + [ + -73.45778, + 45.461865 + ], + [ + -73.457805, + 45.461716 + ], + [ + -73.457817, + 45.461563 + ], + [ + -73.45782, + 45.461477 + ], + [ + -73.457812, + 45.461383 + ], + [ + -73.457786, + 45.461212 + ], + [ + -73.457782, + 45.461196 + ], + [ + -73.457743, + 45.46105 + ], + [ + -73.457714, + 45.460928 + ], + [ + -73.457665, + 45.460784 + ], + [ + -73.457595, + 45.460627 + ], + [ + -73.457462, + 45.460379 + ], + [ + -73.457342, + 45.460166 + ], + [ + -73.456512, + 45.458696 + ], + [ + -73.456446, + 45.458579 + ], + [ + -73.455831, + 45.457474 + ], + [ + -73.455767, + 45.45736 + ], + [ + -73.455551, + 45.456955 + ], + [ + -73.455474, + 45.456802 + ], + [ + -73.455367, + 45.456563 + ], + [ + -73.455234, + 45.456113 + ], + [ + -73.455192, + 45.45589 + ], + [ + -73.455162, + 45.455731 + ], + [ + -73.455134, + 45.455281 + ], + [ + -73.455163, + 45.45493 + ], + [ + -73.455177, + 45.454772 + ], + [ + -73.455206, + 45.454588 + ], + [ + -73.455346, + 45.454111 + ], + [ + -73.455479, + 45.453796 + ], + [ + -73.455501, + 45.453755 + ], + [ + -73.455716, + 45.453355 + ], + [ + -73.455855, + 45.453148 + ], + [ + -73.455902, + 45.453077 + ], + [ + -73.456055, + 45.452883 + ], + [ + -73.45626, + 45.452645 + ], + [ + -73.456494, + 45.452415 + ], + [ + -73.45667, + 45.452253 + ], + [ + -73.457271, + 45.451733 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457807, + 45.451831 + ], + [ + -73.457924, + 45.451894 + ], + [ + -73.458487, + 45.4522 + ], + [ + -73.458707, + 45.452318 + ], + [ + -73.458941, + 45.452443 + ], + [ + -73.459713, + 45.452799 + ], + [ + -73.461206, + 45.45346 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.462893, + 45.454211 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463822, + 45.454609 + ], + [ + -73.464865, + 45.45505 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465851, + 45.455474 + ], + [ + -73.466482, + 45.45573 + ], + [ + -73.466742, + 45.45582 + ], + [ + -73.466794, + 45.455838 + ], + [ + -73.466905, + 45.455874 + ], + [ + -73.467229, + 45.455978 + ], + [ + -73.467462, + 45.456041 + ], + [ + -73.467802, + 45.456122 + ], + [ + -73.468107, + 45.456179 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468564, + 45.456262 + ], + [ + -73.468949, + 45.456316 + ], + [ + -73.469418, + 45.456365 + ], + [ + -73.469671, + 45.456392 + ], + [ + -73.470468, + 45.456429 + ], + [ + -73.471559, + 45.45646 + ], + [ + -73.472632, + 45.456497 + ], + [ + -73.473708, + 45.456537 + ], + [ + -73.474773, + 45.456569 + ], + [ + -73.475665, + 45.456588 + ], + [ + -73.475839, + 45.456592 + ], + [ + -73.479452, + 45.456713 + ], + [ + -73.479632, + 45.456719 + ], + [ + -73.479803, + 45.456723 + ], + [ + -73.482649, + 45.456832 + ], + [ + -73.482746, + 45.456836 + ], + [ + -73.483692, + 45.456872 + ], + [ + -73.485139, + 45.456916 + ], + [ + -73.486296, + 45.456952 + ], + [ + -73.48636, + 45.456954 + ], + [ + -73.488203, + 45.457017 + ], + [ + -73.489583, + 45.457065 + ], + [ + -73.489765, + 45.457071 + ], + [ + -73.489763, + 45.457296 + ], + [ + -73.489736, + 45.457408 + ], + [ + -73.489694, + 45.457516 + ], + [ + -73.489182, + 45.458344 + ], + [ + -73.489058, + 45.458542 + ], + [ + -73.488929, + 45.458754 + ], + [ + -73.488834, + 45.458991 + ], + [ + -73.488828, + 45.459006 + ], + [ + -73.488777, + 45.459727 + ], + [ + -73.488711, + 45.460671 + ], + [ + -73.488701, + 45.460814 + ], + [ + -73.488665, + 45.461414 + ], + [ + -73.488659, + 45.461512 + ], + [ + -73.488594, + 45.462464 + ], + [ + -73.488573, + 45.462762 + ], + [ + -73.488498, + 45.462929 + ], + [ + -73.488349, + 45.463109 + ], + [ + -73.488109, + 45.463235 + ], + [ + -73.487821, + 45.463302 + ], + [ + -73.487412, + 45.463379 + ], + [ + -73.487283, + 45.463388 + ], + [ + -73.487042, + 45.463406 + ], + [ + -73.486606, + 45.463401 + ], + [ + -73.486489, + 45.463401 + ], + [ + -73.486321, + 45.463433 + ], + [ + -73.486243, + 45.463455 + ], + [ + -73.486089, + 45.463495 + ], + [ + -73.485927, + 45.463564 + ], + [ + -73.485896, + 45.463576 + ], + [ + -73.485826, + 45.463612 + ], + [ + -73.485277, + 45.463878 + ], + [ + -73.485098, + 45.46395 + ], + [ + -73.484961, + 45.463999 + ], + [ + -73.484817, + 45.464035 + ], + [ + -73.484669, + 45.464067 + ], + [ + -73.484494, + 45.464076 + ], + [ + -73.484342, + 45.46408 + ], + [ + -73.48257, + 45.464048 + ], + [ + -73.482309, + 45.464098 + ], + [ + -73.482121, + 45.464147 + ], + [ + -73.481982, + 45.464183 + ], + [ + -73.481571, + 45.464347 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.480932, + 45.463792 + ], + [ + -73.480306, + 45.46304 + ], + [ + -73.47995, + 45.462614 + ], + [ + -73.479274, + 45.461807 + ], + [ + -73.478983, + 45.461465 + ], + [ + -73.478678, + 45.461105 + ], + [ + -73.47855, + 45.461011 + ], + [ + -73.478428, + 45.460902 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.476641, + 45.461978 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.474375, + 45.468231 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.473202, + 45.468294 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472931, + 45.468203 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.471425, + 45.468098 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469574, + 45.467137 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469043, + 45.46624 + ] + ] + }, + "id": 112, + "properties": { + "id": "e8501f0e-4285-4044-81bb-9a422356af93", + "data": { + "gtfs": { + "shape_id": "43_1_A" + }, + "segments": [ + { + "distanceMeters": 737, + "travelTimeSeconds": 103 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 433, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 471, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 119, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 593, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 363, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 750, + "travelTimeSeconds": 97 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 623, + "travelTimeSeconds": 81 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10858, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 0, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.96, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 6.24, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.96 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "acb7092d-3b2a-4d79-a4e3-09e7e52af475", + "42f48eea-ee59-46f6-9c43-4b63100a50dc", + "8e9afee7-e1de-4794-a91d-f9db0ef29ed2", + "ee43ab70-74a3-4a43-bfec-164062a98584", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "b6dfeeab-9981-4db8-9a90-2e14691bf516", + "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "ac84633b-6f3b-458c-8f4e-099cc310c05e", + "d271cca7-cd7a-4e22-8728-7a598b88fe32", + "f5f0a75d-b9e9-4575-845b-09748935c6e0", + "c77e59d9-5075-4e39-a183-6bacc1afd03e", + "59b4f87c-067e-4dc3-856a-07fb245d4fe3", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", + "2ac07b96-98be-4710-a749-3162a661fcb5", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "981ebecb-3dc2-4439-8648-8052a51df7ec", + "2a268094-fe95-4a75-83da-d02aa638cbb6", + "1782a1a7-eddc-4228-a7a8-bf733f339e68", + "9a86a407-515f-4b5e-8a56-9a4c52c91c96", + "ecb00316-793a-4c41-88bd-3870bea4d999", + "1d56d4cb-0ab2-44f2-924d-aa119de8c362", + "2f68c8b3-ace6-41af-8853-d72177e835fd", + "5a6d8067-b58d-4ab2-838e-422e8f003ee9", + "9c711698-0f65-4997-8a72-24f5d8ab8fb7", + "1339471a-52fa-47e9-b0e4-753bf917ef08", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "003bcf5e-54a8-471f-b008-b7fa64ff94ba", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "d02b4c09-d6fe-4b0b-9f40-be133215bbcd", + "segments": [ + 0, + 26, + 42, + 44, + 48, + 55, + 61, + 65, + 71, + 87, + 97, + 101, + 113, + 123, + 130, + 132, + 141, + 148, + 154, + 159, + 162, + 164, + 167, + 178, + 189, + 191, + 194, + 198, + 201, + 209, + 214, + 230, + 244, + 248, + 253, + 256, + 284, + 292, + 300 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 112, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469107, + 45.46587 + ], + [ + -73.469152, + 45.465801 + ], + [ + -73.469114, + 45.465711 + ], + [ + -73.469034, + 45.465669 + ], + [ + -73.468913, + 45.46567 + ], + [ + -73.468751, + 45.465752 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467294, + 45.46564 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466352, + 45.465288 + ], + [ + -73.466238, + 45.465062 + ], + [ + -73.466142, + 45.464853 + ], + [ + -73.466048, + 45.464638 + ], + [ + -73.46599, + 45.464498 + ], + [ + -73.465967, + 45.464441 + ], + [ + -73.465973, + 45.464235 + ], + [ + -73.466002, + 45.464038 + ], + [ + -73.466103, + 45.463865 + ], + [ + -73.466104, + 45.463863 + ], + [ + -73.466216, + 45.463756 + ], + [ + -73.466371, + 45.463679 + ], + [ + -73.466622, + 45.463647 + ], + [ + -73.466852, + 45.463668 + ], + [ + -73.467082, + 45.463784 + ], + [ + -73.467212, + 45.463951 + ], + [ + -73.467234, + 45.464135 + ], + [ + -73.467163, + 45.464287 + ], + [ + -73.467024, + 45.464416 + ], + [ + -73.466735, + 45.46451 + ], + [ + -73.466567, + 45.464522 + ], + [ + -73.465706, + 45.464485 + ], + [ + -73.464402, + 45.464429 + ], + [ + -73.463422, + 45.464395 + ], + [ + -73.462294, + 45.464357 + ], + [ + -73.461419, + 45.464323 + ], + [ + -73.460353, + 45.4642 + ], + [ + -73.459906, + 45.464144 + ], + [ + -73.459408, + 45.464052 + ], + [ + -73.458521, + 45.463796 + ], + [ + -73.458275, + 45.463724 + ], + [ + -73.457681, + 45.463496 + ], + [ + -73.457669, + 45.463491 + ], + [ + -73.456975, + 45.463149 + ], + [ + -73.456896, + 45.463092 + ], + [ + -73.456843, + 45.463043 + ], + [ + -73.456777, + 45.462977 + ], + [ + -73.456717, + 45.462912 + ], + [ + -73.456666, + 45.462833 + ], + [ + -73.456655, + 45.462813 + ], + [ + -73.456625, + 45.462758 + ], + [ + -73.456603, + 45.462667 + ], + [ + -73.456593, + 45.462539 + ], + [ + -73.4566, + 45.462399 + ], + [ + -73.456621, + 45.462264 + ], + [ + -73.456608, + 45.461964 + ], + [ + -73.457019, + 45.462007 + ], + [ + -73.457439, + 45.46205 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.458538, + 45.46218 + ], + [ + -73.458611, + 45.462189 + ], + [ + -73.459742, + 45.462333 + ], + [ + -73.460492, + 45.462278 + ], + [ + -73.460596, + 45.46227 + ], + [ + -73.461023, + 45.462239 + ], + [ + -73.461274, + 45.462221 + ], + [ + -73.46213, + 45.462145 + ], + [ + -73.462729, + 45.462095 + ], + [ + -73.462839, + 45.462082 + ], + [ + -73.462926, + 45.462051 + ], + [ + -73.463004, + 45.46201 + ], + [ + -73.463058, + 45.461956 + ], + [ + -73.463101, + 45.461866 + ], + [ + -73.463097, + 45.461763 + ], + [ + -73.463035, + 45.46138 + ], + [ + -73.462935, + 45.460758 + ], + [ + -73.462922, + 45.460678 + ], + [ + -73.462765, + 45.459533 + ], + [ + -73.462745, + 45.459391 + ], + [ + -73.462712, + 45.459175 + ], + [ + -73.462647, + 45.459013 + ], + [ + -73.462455, + 45.458766 + ], + [ + -73.462238, + 45.458487 + ], + [ + -73.462081, + 45.458239 + ], + [ + -73.461867, + 45.457825 + ], + [ + -73.461773, + 45.457468 + ], + [ + -73.46176, + 45.45742 + ], + [ + -73.461721, + 45.457015 + ], + [ + -73.461737, + 45.456795 + ], + [ + -73.461786, + 45.456489 + ], + [ + -73.461835, + 45.456326 + ], + [ + -73.461874, + 45.456197 + ], + [ + -73.462014, + 45.455891 + ], + [ + -73.462203, + 45.455612 + ], + [ + -73.462528, + 45.455151 + ], + [ + -73.462597, + 45.455054 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.461797, + 45.453573 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.461995, + 45.453092 + ], + [ + -73.462227, + 45.45284 + ], + [ + -73.462647, + 45.452373 + ], + [ + -73.462794, + 45.452251 + ], + [ + -73.463322, + 45.451863 + ], + [ + -73.463473, + 45.451752 + ], + [ + -73.464171, + 45.451253 + ], + [ + -73.464437, + 45.450996 + ], + [ + -73.464564, + 45.450822 + ], + [ + -73.464689, + 45.45065 + ], + [ + -73.465053, + 45.450083 + ], + [ + -73.465975, + 45.448646 + ], + [ + -73.466, + 45.448608 + ], + [ + -73.466078, + 45.448455 + ], + [ + -73.466096, + 45.44836 + ], + [ + -73.466204, + 45.447915 + ], + [ + -73.466314, + 45.447523 + ], + [ + -73.466576, + 45.447132 + ], + [ + -73.466916, + 45.446619 + ], + [ + -73.467114, + 45.446411 + ] + ] + }, + "id": 113, + "properties": { + "id": "8ba6f793-a23d-4bbe-a585-a7f393a475c5", + "data": { + "gtfs": { + "shape_id": "44_2_R" + }, + "segments": [ + { + "distanceMeters": 1632, + "travelTimeSeconds": 166 + }, + { + "distanceMeters": 87, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 48 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 4039, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2186.3644699692118, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.48, + "travelTimeWithoutDwellTimesSeconds": 540, + "operatingTimeWithLayoverTimeSeconds": 720, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 540, + "operatingSpeedWithLayoverMetersPerSecond": 5.61, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.48 + }, + "mode": "bus", + "name": "Sect. M-N-O Brossard", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "5d862a7d-92b0-4def-8199-258993ce3523", + "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", + "d0325326-9fbf-42e2-aefa-29fa09853c10", + "d13720b6-fb91-4a90-a816-addaef17cf17", + "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", + "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", + "5b030db6-8eaf-4505-a2c0-5a5290886d5b", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "90d9bb0e-4845-468b-af33-21831922eede", + "d300031f-a642-4e09-b48b-0e859400e1f7", + "27cd912d-c30d-4955-977f-68eb1e010190", + "809d30b8-456e-4e86-b782-8a6448d546e0" + ], + "stops": [], + "line_id": "740403f9-e874-4b22-96d1-770fdebef13f", + "segments": [ + 0, + 63, + 65, + 70, + 81, + 83, + 91, + 96, + 100, + 105, + 111, + 115, + 118 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 113, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.467114, + 45.446411 + ], + [ + -73.467388, + 45.446125 + ], + [ + -73.467467, + 45.446048 + ], + [ + -73.46755, + 45.445972 + ], + [ + -73.466635, + 45.445539 + ], + [ + -73.466252, + 45.445364 + ], + [ + -73.466048, + 45.445292 + ], + [ + -73.465811, + 45.44522 + ], + [ + -73.464202, + 45.444698 + ], + [ + -73.464073, + 45.444657 + ], + [ + -73.461826, + 45.443936 + ], + [ + -73.460756, + 45.443592 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.461189, + 45.442458 + ], + [ + -73.461249, + 45.442366 + ], + [ + -73.461921, + 45.441345 + ], + [ + -73.46199, + 45.441264 + ], + [ + -73.462043, + 45.441213 + ], + [ + -73.462145, + 45.441115 + ], + [ + -73.462213, + 45.441057 + ], + [ + -73.46187, + 45.440814 + ], + [ + -73.461732, + 45.440683 + ], + [ + -73.461652, + 45.440592 + ], + [ + -73.461122, + 45.439988 + ], + [ + -73.4611, + 45.439963 + ], + [ + -73.460879, + 45.439666 + ], + [ + -73.460804, + 45.439527 + ], + [ + -73.460756, + 45.439374 + ], + [ + -73.460732, + 45.439261 + ], + [ + -73.460749, + 45.439165 + ], + [ + -73.460753, + 45.439144 + ], + [ + -73.460775, + 45.43905 + ], + [ + -73.460824, + 45.438928 + ], + [ + -73.460899, + 45.438784 + ], + [ + -73.461528, + 45.437813 + ], + [ + -73.462047, + 45.437011 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.462943, + 45.436853 + ], + [ + -73.463269, + 45.436949 + ], + [ + -73.464723, + 45.437368 + ], + [ + -73.465091, + 45.437458 + ], + [ + -73.465119, + 45.437463 + ], + [ + -73.4653, + 45.437494 + ], + [ + -73.465515, + 45.437526 + ], + [ + -73.465864, + 45.437562 + ], + [ + -73.467655, + 45.437691 + ], + [ + -73.46781, + 45.437702 + ], + [ + -73.468967, + 45.437779 + ], + [ + -73.470109, + 45.437842 + ], + [ + -73.470307, + 45.437856 + ], + [ + -73.470561, + 45.437874 + ], + [ + -73.470756, + 45.437887 + ], + [ + -73.472271, + 45.438 + ], + [ + -73.472042, + 45.438344 + ], + [ + -73.471887, + 45.438576 + ], + [ + -73.471678, + 45.438891 + ], + [ + -73.470361, + 45.440881 + ], + [ + -73.470303, + 45.440969 + ], + [ + -73.470099, + 45.441352 + ], + [ + -73.470027, + 45.441639 + ], + [ + -73.470012, + 45.441666 + ], + [ + -73.469784, + 45.442018 + ], + [ + -73.469477, + 45.442492 + ], + [ + -73.469144, + 45.443007 + ], + [ + -73.469051, + 45.443151 + ], + [ + -73.468613, + 45.443844 + ], + [ + -73.468216, + 45.444456 + ], + [ + -73.468179, + 45.444519 + ], + [ + -73.468126, + 45.444631 + ], + [ + -73.468082, + 45.444748 + ], + [ + -73.468044, + 45.444901 + ], + [ + -73.468021, + 45.445022 + ], + [ + -73.467959, + 45.445234 + ], + [ + -73.467968, + 45.445351 + ], + [ + -73.467947, + 45.445454 + ], + [ + -73.467879, + 45.445603 + ], + [ + -73.467843, + 45.445639 + ], + [ + -73.467743, + 45.445738 + ], + [ + -73.46755, + 45.445972 + ], + [ + -73.467467, + 45.446048 + ], + [ + -73.467388, + 45.446125 + ], + [ + -73.466916, + 45.446619 + ], + [ + -73.466576, + 45.447132 + ], + [ + -73.466314, + 45.447523 + ], + [ + -73.466204, + 45.447915 + ], + [ + -73.466096, + 45.44836 + ], + [ + -73.466078, + 45.448455 + ], + [ + -73.466037, + 45.448534 + ], + [ + -73.466, + 45.448608 + ], + [ + -73.465053, + 45.450083 + ], + [ + -73.464779, + 45.45051 + ], + [ + -73.464689, + 45.45065 + ], + [ + -73.464437, + 45.450996 + ], + [ + -73.464171, + 45.451253 + ], + [ + -73.463612, + 45.451652 + ], + [ + -73.463473, + 45.451752 + ], + [ + -73.462794, + 45.452251 + ], + [ + -73.462647, + 45.452373 + ], + [ + -73.462227, + 45.45284 + ], + [ + -73.461995, + 45.453092 + ], + [ + -73.461764, + 45.45334 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.462889, + 45.454209 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.462597, + 45.455054 + ], + [ + -73.462203, + 45.455612 + ], + [ + -73.462014, + 45.455891 + ], + [ + -73.461932, + 45.456069 + ], + [ + -73.461874, + 45.456197 + ], + [ + -73.461786, + 45.456489 + ], + [ + -73.461778, + 45.456537 + ], + [ + -73.461737, + 45.456795 + ], + [ + -73.461721, + 45.457015 + ], + [ + -73.461745, + 45.457266 + ], + [ + -73.46176, + 45.45742 + ], + [ + -73.461867, + 45.457825 + ], + [ + -73.462081, + 45.458239 + ], + [ + -73.462238, + 45.458487 + ], + [ + -73.462455, + 45.458766 + ], + [ + -73.462604, + 45.458958 + ], + [ + -73.462647, + 45.459013 + ], + [ + -73.462712, + 45.459175 + ], + [ + -73.462745, + 45.459391 + ], + [ + -73.463665, + 45.459345 + ], + [ + -73.464994, + 45.459278 + ], + [ + -73.465215, + 45.461562 + ], + [ + -73.465247, + 45.461893 + ], + [ + -73.465328, + 45.462497 + ], + [ + -73.465435, + 45.463211 + ], + [ + -73.465484, + 45.463543 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.468602, + 45.466372 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.46904, + 45.466283 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469319, + 45.467991 + ], + [ + -73.469043, + 45.467983 + ], + [ + -73.468598, + 45.467969 + ], + [ + -73.468434, + 45.467978 + ], + [ + -73.467926, + 45.468045 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.46758, + 45.467757 + ], + [ + -73.467357, + 45.467296 + ], + [ + -73.467335, + 45.467098 + ], + [ + -73.467287, + 45.466921 + ], + [ + -73.46724, + 45.46679 + ], + [ + -73.467201, + 45.466621 + ], + [ + -73.467171, + 45.466457 + ], + [ + -73.467168, + 45.466361 + ], + [ + -73.467171, + 45.466266 + ], + [ + -73.46719, + 45.46616 + ], + [ + -73.467233, + 45.466051 + ], + [ + -73.467286, + 45.465947 + ], + [ + -73.467286, + 45.465946 + ], + [ + -73.467347, + 45.465852 + ], + [ + -73.46743, + 45.465768 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467565, + 45.465647 + ], + [ + -73.467708, + 45.465556 + ], + [ + -73.467899, + 45.465442 + ], + [ + -73.46805, + 45.465387 + ], + [ + -73.468287, + 45.465321 + ], + [ + -73.468514, + 45.465288 + ], + [ + -73.468859, + 45.465256 + ], + [ + -73.469207, + 45.465245 + ], + [ + -73.471824, + 45.46534 + ], + [ + -73.47278, + 45.465351 + ], + [ + -73.473923, + 45.465346 + ], + [ + -73.474792, + 45.465284 + ], + [ + -73.476448, + 45.465339 + ], + [ + -73.478069, + 45.465419 + ], + [ + -73.47931, + 45.465481 + ], + [ + -73.480681, + 45.465584 + ], + [ + -73.481658, + 45.465665 + ], + [ + -73.483804, + 45.465854 + ], + [ + -73.485886, + 45.466123 + ], + [ + -73.488038, + 45.466444 + ], + [ + -73.489088, + 45.466602 + ], + [ + -73.491585, + 45.46694 + ], + [ + -73.494707, + 45.467307 + ], + [ + -73.494917, + 45.467332 + ], + [ + -73.494999, + 45.467342 + ], + [ + -73.497318, + 45.467635 + ], + [ + -73.501976, + 45.468162 + ], + [ + -73.50546, + 45.468524 + ], + [ + -73.508994, + 45.468874 + ], + [ + -73.510795, + 45.469064 + ], + [ + -73.516615, + 45.469606 + ], + [ + -73.520513, + 45.469901 + ], + [ + -73.524263, + 45.470138 + ], + [ + -73.526895, + 45.470234 + ], + [ + -73.536203, + 45.470502 + ], + [ + -73.537479, + 45.470611 + ], + [ + -73.540035, + 45.470737 + ], + [ + -73.540574, + 45.470754 + ], + [ + -73.541689, + 45.470806 + ], + [ + -73.54236, + 45.470938 + ], + [ + -73.542685, + 45.471019 + ], + [ + -73.543056, + 45.471172 + ], + [ + -73.543235, + 45.471297 + ], + [ + -73.543427, + 45.47153 + ], + [ + -73.543495, + 45.471781 + ], + [ + -73.543487, + 45.471977 + ], + [ + -73.543374, + 45.472246 + ], + [ + -73.543123, + 45.472648 + ], + [ + -73.543053, + 45.472745 + ], + [ + -73.543034, + 45.472772 + ], + [ + -73.543013, + 45.472801 + ], + [ + -73.542473, + 45.473549 + ], + [ + -73.542275, + 45.473832 + ], + [ + -73.542255, + 45.473861 + ], + [ + -73.542175, + 45.473976 + ], + [ + -73.542016, + 45.474229 + ], + [ + -73.541794, + 45.474618 + ], + [ + -73.541458, + 45.475221 + ], + [ + -73.541094, + 45.47588 + ], + [ + -73.540722, + 45.476557 + ], + [ + -73.540393, + 45.477154 + ], + [ + -73.540141, + 45.477612 + ], + [ + -73.539989, + 45.477937 + ], + [ + -73.539912, + 45.478117 + ], + [ + -73.53962, + 45.478792 + ], + [ + -73.539453, + 45.479242 + ], + [ + -73.539011, + 45.480452 + ], + [ + -73.538771, + 45.481137 + ], + [ + -73.538372, + 45.4823 + ], + [ + -73.537796, + 45.483909 + ], + [ + -73.537682, + 45.484235 + ], + [ + -73.537533, + 45.484742 + ], + [ + -73.537501, + 45.485252 + ], + [ + -73.537565, + 45.485765 + ], + [ + -73.537725, + 45.486206 + ], + [ + -73.537953, + 45.486613 + ], + [ + -73.538211, + 45.486968 + ], + [ + -73.538564, + 45.487319 + ], + [ + -73.538991, + 45.48766 + ], + [ + -73.539413, + 45.487933 + ], + [ + -73.540409, + 45.488352 + ], + [ + -73.540999, + 45.488508 + ], + [ + -73.545779, + 45.489431 + ], + [ + -73.547415, + 45.489732 + ], + [ + -73.548107, + 45.48986 + ], + [ + -73.549549, + 45.490154 + ], + [ + -73.549968, + 45.490239 + ], + [ + -73.550646, + 45.490459 + ], + [ + -73.551261, + 45.490742 + ], + [ + -73.55163, + 45.490924 + ], + [ + -73.551996, + 45.491154 + ], + [ + -73.552466, + 45.491495 + ], + [ + -73.552812, + 45.491812 + ], + [ + -73.553225, + 45.492293 + ], + [ + -73.553459, + 45.492647 + ], + [ + -73.553701, + 45.493121 + ], + [ + -73.553714, + 45.493155 + ], + [ + -73.554005, + 45.493935 + ], + [ + -73.554229, + 45.494495 + ], + [ + -73.55441, + 45.494962 + ], + [ + -73.554709, + 45.495574 + ], + [ + -73.554963, + 45.495825 + ], + [ + -73.555225, + 45.496022 + ], + [ + -73.555665, + 45.496222 + ], + [ + -73.557268, + 45.496821 + ], + [ + -73.557934, + 45.497074 + ], + [ + -73.55851, + 45.49729 + ], + [ + -73.558754, + 45.497382 + ], + [ + -73.559665, + 45.497799 + ], + [ + -73.559804, + 45.497871 + ], + [ + -73.56055, + 45.498258 + ], + [ + -73.561247, + 45.498577 + ], + [ + -73.561574, + 45.498701 + ], + [ + -73.561917, + 45.498838 + ], + [ + -73.562165, + 45.49894 + ], + [ + -73.562545, + 45.499119 + ], + [ + -73.562571, + 45.499093 + ], + [ + -73.562654, + 45.499004 + ], + [ + -73.563341, + 45.498281 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.56431, + 45.497835 + ], + [ + -73.565142, + 45.498217 + ], + [ + -73.565601, + 45.498443 + ], + [ + -73.565748, + 45.49831 + ], + [ + -73.565849, + 45.498292 + ], + [ + -73.566051, + 45.498359 + ], + [ + -73.566361, + 45.498471 + ], + [ + -73.566492, + 45.498485 + ], + [ + -73.566611, + 45.498345 + ] + ] + }, + "id": 114, + "properties": { + "id": "8a40e1c8-f95e-4126-9002-a4682331de81", + "data": { + "gtfs": { + "shape_id": "44_1_A" + }, + "segments": [ + { + "distanceMeters": 358, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 1136, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 10800, + "travelTimeSeconds": 720 + }, + { + "distanceMeters": 830, + "travelTimeSeconds": 480 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 204, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17864, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 9681.943592335054, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.76, + "travelTimeWithoutDwellTimesSeconds": 2040, + "operatingTimeWithLayoverTimeSeconds": 2244, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2040, + "operatingSpeedWithLayoverMetersPerSecond": 7.96, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.76 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "809d30b8-456e-4e86-b782-8a6448d546e0", + "ae5cac19-c84c-4e41-ae57-bbf3b3bda217", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "9b31d865-da9f-4eb8-b8a9-3d488eb579df", + "b93691d0-438e-4eac-87a0-7c1ac45a7c18", + "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", + "19a4f64a-0169-40b9-8b9c-84de3158151e", + "c7e2639a-bb94-426e-918b-714f0212d53b", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", + "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "e13d482c-ee57-4f7d-bc38-264ca460deda", + "daacedd2-0b84-4f73-9f01-d9072ec32dce", + "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", + "e7ac28b2-1ac9-4d12-811f-8e49f5a7d7ab", + "27cd912d-c30d-4955-977f-68eb1e010190", + "d300031f-a642-4e09-b48b-0e859400e1f7", + "90d9bb0e-4845-468b-af33-21831922eede", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", + "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", + "d13720b6-fb91-4a90-a816-addaef17cf17", + "80775ca9-8434-48d9-a65d-5f3eace6e2d8", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "461a5d33-406e-481a-b773-6e450c48b670", + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" + ], + "stops": [], + "line_id": "740403f9-e874-4b22-96d1-770fdebef13f", + "segments": [ + 0, + 8, + 11, + 13, + 17, + 23, + 29, + 34, + 35, + 41, + 45, + 49, + 54, + 56, + 63, + 76, + 87, + 90, + 94, + 100, + 103, + 108, + 114, + 120, + 124, + 157, + 302 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 114, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.467114, + 45.446411 + ], + [ + -73.467388, + 45.446125 + ], + [ + -73.467467, + 45.446048 + ], + [ + -73.46755, + 45.445972 + ], + [ + -73.466635, + 45.445539 + ], + [ + -73.466252, + 45.445364 + ], + [ + -73.466048, + 45.445292 + ], + [ + -73.465811, + 45.44522 + ], + [ + -73.464199, + 45.444697 + ], + [ + -73.464073, + 45.444657 + ], + [ + -73.461826, + 45.443936 + ], + [ + -73.460751, + 45.44359 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.461192, + 45.442454 + ], + [ + -73.461249, + 45.442366 + ], + [ + -73.461921, + 45.441345 + ], + [ + -73.46199, + 45.441264 + ], + [ + -73.462047, + 45.441209 + ], + [ + -73.462145, + 45.441115 + ], + [ + -73.462213, + 45.441057 + ], + [ + -73.46187, + 45.440814 + ], + [ + -73.461732, + 45.440683 + ], + [ + -73.461652, + 45.440592 + ], + [ + -73.461117, + 45.439982 + ], + [ + -73.4611, + 45.439963 + ], + [ + -73.460879, + 45.439666 + ], + [ + -73.460804, + 45.439527 + ], + [ + -73.460756, + 45.439374 + ], + [ + -73.460732, + 45.439261 + ], + [ + -73.46075, + 45.439158 + ], + [ + -73.460753, + 45.439144 + ], + [ + -73.460775, + 45.43905 + ], + [ + -73.460824, + 45.438928 + ], + [ + -73.460899, + 45.438784 + ], + [ + -73.461533, + 45.437805 + ], + [ + -73.462052, + 45.437003 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.462943, + 45.436853 + ], + [ + -73.463269, + 45.436949 + ], + [ + -73.464723, + 45.437368 + ], + [ + -73.465091, + 45.437458 + ], + [ + -73.465133, + 45.437466 + ], + [ + -73.4653, + 45.437494 + ], + [ + -73.465515, + 45.437526 + ], + [ + -73.465864, + 45.437562 + ], + [ + -73.467672, + 45.437692 + ], + [ + -73.46781, + 45.437702 + ], + [ + -73.468967, + 45.437779 + ], + [ + -73.470109, + 45.437842 + ], + [ + -73.470325, + 45.437857 + ], + [ + -73.470561, + 45.437874 + ], + [ + -73.470756, + 45.437887 + ], + [ + -73.472271, + 45.438 + ], + [ + -73.472042, + 45.438344 + ], + [ + -73.471879, + 45.438589 + ], + [ + -73.471678, + 45.438891 + ], + [ + -73.470352, + 45.440895 + ], + [ + -73.470303, + 45.440969 + ], + [ + -73.470099, + 45.441352 + ], + [ + -73.470027, + 45.441639 + ], + [ + -73.470012, + 45.441666 + ], + [ + -73.469784, + 45.442018 + ], + [ + -73.469477, + 45.442492 + ], + [ + -73.469134, + 45.443023 + ], + [ + -73.469051, + 45.443151 + ], + [ + -73.468613, + 45.443844 + ], + [ + -73.468216, + 45.444456 + ], + [ + -73.468179, + 45.444519 + ], + [ + -73.468126, + 45.444631 + ], + [ + -73.468082, + 45.444748 + ], + [ + -73.468044, + 45.444901 + ], + [ + -73.468021, + 45.445022 + ], + [ + -73.467959, + 45.445234 + ], + [ + -73.467968, + 45.445351 + ], + [ + -73.467947, + 45.445454 + ], + [ + -73.467879, + 45.445603 + ], + [ + -73.467828, + 45.445654 + ], + [ + -73.467743, + 45.445738 + ], + [ + -73.46755, + 45.445972 + ], + [ + -73.467467, + 45.446048 + ], + [ + -73.467388, + 45.446125 + ], + [ + -73.466916, + 45.446619 + ], + [ + -73.466576, + 45.447132 + ], + [ + -73.466314, + 45.447523 + ], + [ + -73.466204, + 45.447915 + ], + [ + -73.466096, + 45.44836 + ], + [ + -73.466078, + 45.448455 + ], + [ + -73.466027, + 45.448554 + ], + [ + -73.466, + 45.448608 + ], + [ + -73.465053, + 45.450083 + ], + [ + -73.464766, + 45.450531 + ], + [ + -73.464689, + 45.45065 + ], + [ + -73.464437, + 45.450996 + ], + [ + -73.464171, + 45.451253 + ], + [ + -73.463589, + 45.451669 + ], + [ + -73.463473, + 45.451752 + ], + [ + -73.462794, + 45.452251 + ], + [ + -73.462647, + 45.452373 + ], + [ + -73.462227, + 45.45284 + ], + [ + -73.461995, + 45.453092 + ], + [ + -73.461744, + 45.45336 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.46292, + 45.454223 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.462597, + 45.455054 + ], + [ + -73.462203, + 45.455612 + ], + [ + -73.462014, + 45.455891 + ], + [ + -73.461921, + 45.456095 + ], + [ + -73.461874, + 45.456197 + ], + [ + -73.461786, + 45.456489 + ], + [ + -73.461778, + 45.456537 + ], + [ + -73.461737, + 45.456795 + ], + [ + -73.461721, + 45.457015 + ], + [ + -73.461748, + 45.457294 + ], + [ + -73.46176, + 45.45742 + ], + [ + -73.461867, + 45.457825 + ], + [ + -73.462081, + 45.458239 + ], + [ + -73.462238, + 45.458487 + ], + [ + -73.462455, + 45.458766 + ], + [ + -73.462624, + 45.458983 + ], + [ + -73.462647, + 45.459013 + ], + [ + -73.462712, + 45.459175 + ], + [ + -73.462745, + 45.459391 + ], + [ + -73.463708, + 45.459343 + ], + [ + -73.464994, + 45.459278 + ], + [ + -73.465215, + 45.461562 + ], + [ + -73.465247, + 45.461893 + ], + [ + -73.465328, + 45.462497 + ], + [ + -73.465435, + 45.463211 + ], + [ + -73.465484, + 45.463543 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.46908, + 45.465912 + ], + [ + -73.469107, + 45.46587 + ] + ] + }, + "id": 115, + "properties": { + "id": "38fab6c6-9b27-4886-b4e6-f71476d1c8a5", + "data": { + "gtfs": { + "shape_id": "44_2_A" + }, + "segments": [ + { + "distanceMeters": 358, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 1052, + "travelTimeSeconds": 360 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6154, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2186.3644699692118, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.7, + "travelTimeWithoutDwellTimesSeconds": 1080, + "operatingTimeWithLayoverTimeSeconds": 1260, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1080, + "operatingSpeedWithLayoverMetersPerSecond": 4.88, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.7 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "809d30b8-456e-4e86-b782-8a6448d546e0", + "ae5cac19-c84c-4e41-ae57-bbf3b3bda217", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "9b31d865-da9f-4eb8-b8a9-3d488eb579df", + "b93691d0-438e-4eac-87a0-7c1ac45a7c18", + "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", + "19a4f64a-0169-40b9-8b9c-84de3158151e", + "c7e2639a-bb94-426e-918b-714f0212d53b", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", + "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "e13d482c-ee57-4f7d-bc38-264ca460deda", + "daacedd2-0b84-4f73-9f01-d9072ec32dce", + "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", + "e7ac28b2-1ac9-4d12-811f-8e49f5a7d7ab", + "27cd912d-c30d-4955-977f-68eb1e010190", + "d300031f-a642-4e09-b48b-0e859400e1f7", + "90d9bb0e-4845-468b-af33-21831922eede", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", + "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", + "d13720b6-fb91-4a90-a816-addaef17cf17", + "80775ca9-8434-48d9-a65d-5f3eace6e2d8", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "740403f9-e874-4b22-96d1-770fdebef13f", + "segments": [ + 0, + 8, + 11, + 13, + 17, + 23, + 29, + 34, + 35, + 41, + 45, + 49, + 54, + 56, + 63, + 76, + 87, + 90, + 94, + 100, + 103, + 108, + 114, + 120, + 124 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 115, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.566611, + 45.498345 + ], + [ + -73.566738, + 45.498195 + ], + [ + -73.566628, + 45.49808 + ], + [ + -73.566306, + 45.497931 + ], + [ + -73.566253, + 45.497841 + ], + [ + -73.56638, + 45.497699 + ], + [ + -73.566016, + 45.497523 + ], + [ + -73.564691, + 45.496892 + ], + [ + -73.563974, + 45.496566 + ], + [ + -73.562701, + 45.495919 + ], + [ + -73.562651, + 45.496018 + ], + [ + -73.562646, + 45.496027 + ], + [ + -73.562481, + 45.496317 + ], + [ + -73.562367, + 45.496479 + ], + [ + -73.562274, + 45.496658 + ], + [ + -73.562038, + 45.497108 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.561446, + 45.497988 + ], + [ + -73.561033, + 45.497765 + ], + [ + -73.560139, + 45.497347 + ], + [ + -73.559235, + 45.49696 + ], + [ + -73.55917, + 45.496938 + ], + [ + -73.558356, + 45.496631 + ], + [ + -73.558149, + 45.496557 + ], + [ + -73.557604, + 45.496364 + ], + [ + -73.556782, + 45.49606 + ], + [ + -73.555745, + 45.495673 + ], + [ + -73.555351, + 45.495512 + ], + [ + -73.555133, + 45.495401 + ], + [ + -73.554916, + 45.495262 + ], + [ + -73.554768, + 45.495125 + ], + [ + -73.55465, + 45.494994 + ], + [ + -73.553944, + 45.493258 + ], + [ + -73.553818, + 45.492971 + ], + [ + -73.553465, + 45.492338 + ], + [ + -73.552977, + 45.491759 + ], + [ + -73.552502, + 45.491344 + ], + [ + -73.551956, + 45.490962 + ], + [ + -73.551651, + 45.490791 + ], + [ + -73.551074, + 45.490513 + ], + [ + -73.550682, + 45.490367 + ], + [ + -73.550312, + 45.490228 + ], + [ + -73.54956, + 45.490034 + ], + [ + -73.548355, + 45.489798 + ], + [ + -73.542648, + 45.488704 + ], + [ + -73.541878, + 45.488554 + ], + [ + -73.541083, + 45.488397 + ], + [ + -73.540636, + 45.488282 + ], + [ + -73.540145, + 45.488119 + ], + [ + -73.539582, + 45.48786 + ], + [ + -73.539239, + 45.487663 + ], + [ + -73.538946, + 45.487462 + ], + [ + -73.538893, + 45.487419 + ], + [ + -73.538619, + 45.487192 + ], + [ + -73.538304, + 45.486863 + ], + [ + -73.538089, + 45.486564 + ], + [ + -73.537862, + 45.486139 + ], + [ + -73.537796, + 45.485958 + ], + [ + -73.537731, + 45.485785 + ], + [ + -73.53767, + 45.485461 + ], + [ + -73.537646, + 45.485264 + ], + [ + -73.537653, + 45.484914 + ], + [ + -73.537707, + 45.484604 + ], + [ + -73.537881, + 45.484168 + ], + [ + -73.537968, + 45.483893 + ], + [ + -73.538058, + 45.483623 + ], + [ + -73.539557, + 45.479354 + ], + [ + -73.53982, + 45.478652 + ], + [ + -73.540179, + 45.47782 + ], + [ + -73.540481, + 45.477177 + ], + [ + -73.540578, + 45.477027 + ], + [ + -73.540928, + 45.476409 + ], + [ + -73.5413, + 45.475732 + ], + [ + -73.541747, + 45.474937 + ], + [ + -73.542136, + 45.474264 + ], + [ + -73.542539, + 45.47363 + ], + [ + -73.543159, + 45.472786 + ], + [ + -73.543162, + 45.472781 + ], + [ + -73.5432, + 45.472729 + ], + [ + -73.543381, + 45.472482 + ], + [ + -73.543908, + 45.471834 + ], + [ + -73.544604, + 45.471016 + ], + [ + -73.54479, + 45.470824 + ], + [ + -73.544929, + 45.470679 + ], + [ + -73.54509, + 45.470477 + ], + [ + -73.545159, + 45.470391 + ], + [ + -73.545162, + 45.470289 + ], + [ + -73.54518, + 45.470102 + ], + [ + -73.54513, + 45.469912 + ], + [ + -73.545032, + 45.469762 + ], + [ + -73.544829, + 45.469589 + ], + [ + -73.544396, + 45.469456 + ], + [ + -73.544223, + 45.469408 + ], + [ + -73.544, + 45.469414 + ], + [ + -73.54385, + 45.469436 + ], + [ + -73.543665, + 45.469485 + ], + [ + -73.543125, + 45.469658 + ], + [ + -73.542795, + 45.46978 + ], + [ + -73.542335, + 45.469915 + ], + [ + -73.542042, + 45.469974 + ], + [ + -73.541634, + 45.469988 + ], + [ + -73.538583, + 45.470121 + ], + [ + -73.536645, + 45.47012 + ], + [ + -73.534843, + 45.470106 + ], + [ + -73.531663, + 45.470044 + ], + [ + -73.528901, + 45.469979 + ], + [ + -73.525636, + 45.469864 + ], + [ + -73.520215, + 45.469565 + ], + [ + -73.516228, + 45.469261 + ], + [ + -73.50737, + 45.468395 + ], + [ + -73.501604, + 45.467786 + ], + [ + -73.499262, + 45.467514 + ], + [ + -73.493921, + 45.466881 + ], + [ + -73.491932, + 45.466645 + ], + [ + -73.489852, + 45.466348 + ], + [ + -73.489119, + 45.46624 + ], + [ + -73.489027, + 45.466226 + ], + [ + -73.486848, + 45.465931 + ], + [ + -73.485714, + 45.465782 + ], + [ + -73.482904, + 45.465439 + ], + [ + -73.482123, + 45.46537 + ], + [ + -73.479736, + 45.465191 + ], + [ + -73.47968, + 45.465187 + ], + [ + -73.478363, + 45.465119 + ], + [ + -73.477796, + 45.465089 + ], + [ + -73.475753, + 45.464994 + ], + [ + -73.474695, + 45.464942 + ], + [ + -73.474262, + 45.464921 + ], + [ + -73.474113, + 45.464916 + ], + [ + -73.473291, + 45.464882 + ], + [ + -73.472501, + 45.46485 + ], + [ + -73.471447, + 45.46476 + ], + [ + -73.469875, + 45.464616 + ], + [ + -73.469333, + 45.464554 + ], + [ + -73.46902, + 45.464515 + ], + [ + -73.468704, + 45.464452 + ], + [ + -73.468392, + 45.464367 + ], + [ + -73.468066, + 45.46424 + ], + [ + -73.467826, + 45.46409 + ], + [ + -73.467593, + 45.463944 + ], + [ + -73.467415, + 45.463833 + ], + [ + -73.467133, + 45.463667 + ], + [ + -73.466953, + 45.463591 + ], + [ + -73.466529, + 45.463529 + ], + [ + -73.466232, + 45.463594 + ], + [ + -73.466092, + 45.463623 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46852, + 45.466369 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469044, + 45.46622 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466352, + 45.465288 + ], + [ + -73.466238, + 45.465062 + ], + [ + -73.466142, + 45.464853 + ], + [ + -73.466048, + 45.464638 + ], + [ + -73.46599, + 45.464498 + ], + [ + -73.465967, + 45.464441 + ], + [ + -73.465973, + 45.464235 + ], + [ + -73.465993, + 45.464101 + ], + [ + -73.466002, + 45.464038 + ], + [ + -73.466104, + 45.463863 + ], + [ + -73.466216, + 45.463756 + ], + [ + -73.466371, + 45.463679 + ], + [ + -73.466622, + 45.463647 + ], + [ + -73.466852, + 45.463668 + ], + [ + -73.467082, + 45.463784 + ], + [ + -73.467212, + 45.463951 + ], + [ + -73.467234, + 45.464135 + ], + [ + -73.467163, + 45.464287 + ], + [ + -73.467024, + 45.464416 + ], + [ + -73.466735, + 45.46451 + ], + [ + -73.466567, + 45.464522 + ], + [ + -73.465706, + 45.464485 + ], + [ + -73.464402, + 45.464429 + ], + [ + -73.463422, + 45.464395 + ], + [ + -73.462294, + 45.464357 + ], + [ + -73.461419, + 45.464323 + ], + [ + -73.460353, + 45.4642 + ], + [ + -73.459906, + 45.464144 + ], + [ + -73.459408, + 45.464052 + ], + [ + -73.458521, + 45.463796 + ], + [ + -73.458275, + 45.463724 + ], + [ + -73.457681, + 45.463496 + ], + [ + -73.457669, + 45.463491 + ], + [ + -73.456975, + 45.463149 + ], + [ + -73.456896, + 45.463092 + ], + [ + -73.456843, + 45.463043 + ], + [ + -73.456777, + 45.462977 + ], + [ + -73.456717, + 45.462912 + ], + [ + -73.456666, + 45.462833 + ], + [ + -73.456625, + 45.462758 + ], + [ + -73.456603, + 45.462667 + ], + [ + -73.456593, + 45.462539 + ], + [ + -73.4566, + 45.462399 + ], + [ + -73.456621, + 45.462264 + ], + [ + -73.456612, + 45.462071 + ], + [ + -73.456608, + 45.461964 + ], + [ + -73.457019, + 45.462007 + ], + [ + -73.45746, + 45.462052 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.458559, + 45.462182 + ], + [ + -73.458611, + 45.462189 + ], + [ + -73.459742, + 45.462333 + ], + [ + -73.460308, + 45.462292 + ], + [ + -73.460596, + 45.46227 + ], + [ + -73.461042, + 45.462238 + ], + [ + -73.461274, + 45.462221 + ], + [ + -73.46213, + 45.462145 + ], + [ + -73.462729, + 45.462095 + ], + [ + -73.462839, + 45.462082 + ], + [ + -73.462926, + 45.462051 + ], + [ + -73.463004, + 45.46201 + ], + [ + -73.463058, + 45.461956 + ], + [ + -73.463101, + 45.461866 + ], + [ + -73.463097, + 45.461763 + ], + [ + -73.463035, + 45.46138 + ], + [ + -73.462933, + 45.460747 + ], + [ + -73.462922, + 45.460678 + ], + [ + -73.462763, + 45.459522 + ], + [ + -73.462745, + 45.459391 + ], + [ + -73.462724, + 45.459253 + ], + [ + -73.462712, + 45.459175 + ], + [ + -73.462647, + 45.459013 + ], + [ + -73.462455, + 45.458766 + ], + [ + -73.462238, + 45.458487 + ], + [ + -73.462081, + 45.458239 + ], + [ + -73.461867, + 45.457825 + ], + [ + -73.46177, + 45.457459 + ], + [ + -73.46176, + 45.45742 + ], + [ + -73.461721, + 45.457015 + ], + [ + -73.461737, + 45.456795 + ], + [ + -73.461786, + 45.456489 + ], + [ + -73.461838, + 45.456318 + ], + [ + -73.461874, + 45.456197 + ], + [ + -73.462014, + 45.455891 + ], + [ + -73.462203, + 45.455612 + ], + [ + -73.462533, + 45.455145 + ], + [ + -73.462597, + 45.455054 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.46179, + 45.45357 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.461995, + 45.453092 + ], + [ + -73.462227, + 45.45284 + ], + [ + -73.462647, + 45.452373 + ], + [ + -73.462794, + 45.452251 + ], + [ + -73.463326, + 45.45186 + ], + [ + -73.463473, + 45.451752 + ], + [ + -73.464171, + 45.451253 + ], + [ + -73.464437, + 45.450996 + ], + [ + -73.464566, + 45.450819 + ], + [ + -73.464689, + 45.45065 + ], + [ + -73.465053, + 45.450083 + ], + [ + -73.465976, + 45.448645 + ], + [ + -73.466, + 45.448608 + ], + [ + -73.466078, + 45.448455 + ], + [ + -73.466096, + 45.44836 + ], + [ + -73.466204, + 45.447915 + ], + [ + -73.466314, + 45.447523 + ], + [ + -73.466576, + 45.447132 + ], + [ + -73.466916, + 45.446619 + ], + [ + -73.467114, + 45.446411 + ] + ] + }, + "id": 116, + "properties": { + "id": "0e360d4a-65a1-4bde-ba04-e298e442b70b", + "data": { + "gtfs": { + "shape_id": "44_1_R" + }, + "segments": [ + { + "distanceMeters": 1006, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 10884, + "travelTimeSeconds": 1020 + }, + { + "distanceMeters": 1652, + "travelTimeSeconds": 167 + }, + { + "distanceMeters": 87, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 57 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 15946, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 9681.943592335054, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.86, + "travelTimeWithoutDwellTimesSeconds": 1800, + "operatingTimeWithLayoverTimeSeconds": 1980, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1800, + "operatingSpeedWithLayoverMetersPerSecond": 8.05, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.86 + }, + "mode": "bus", + "name": "Sect. M-N-O Brossard", + "color": "#A32638", + "nodes": [ + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", + "0f8ef5e7-ff7c-4097-8d8a-9727f12190ea", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "5d862a7d-92b0-4def-8199-258993ce3523", + "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", + "d0325326-9fbf-42e2-aefa-29fa09853c10", + "d13720b6-fb91-4a90-a816-addaef17cf17", + "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", + "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", + "5b030db6-8eaf-4505-a2c0-5a5290886d5b", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "90d9bb0e-4845-468b-af33-21831922eede", + "d300031f-a642-4e09-b48b-0e859400e1f7", + "27cd912d-c30d-4955-977f-68eb1e010190", + "809d30b8-456e-4e86-b782-8a6448d546e0" + ], + "stops": [], + "line_id": "740403f9-e874-4b22-96d1-770fdebef13f", + "segments": [ + 0, + 23, + 173, + 232, + 234, + 239, + 250, + 252, + 261, + 266, + 270, + 275, + 281, + 285, + 288 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 116, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469043, + 45.46624 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.468869, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469319, + 45.467991 + ], + [ + -73.468598, + 45.467969 + ], + [ + -73.468434, + 45.467978 + ], + [ + -73.468189, + 45.46801 + ], + [ + -73.467926, + 45.468045 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.46758, + 45.467757 + ], + [ + -73.467357, + 45.467296 + ], + [ + -73.467335, + 45.467098 + ], + [ + -73.467287, + 45.466921 + ], + [ + -73.46724, + 45.46679 + ], + [ + -73.467201, + 45.466621 + ], + [ + -73.467171, + 45.466457 + ], + [ + -73.467168, + 45.466361 + ], + [ + -73.467171, + 45.466266 + ], + [ + -73.46719, + 45.46616 + ], + [ + -73.467201, + 45.466133 + ], + [ + -73.467233, + 45.466051 + ], + [ + -73.467286, + 45.465947 + ], + [ + -73.467347, + 45.465852 + ], + [ + -73.46743, + 45.465768 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467565, + 45.465647 + ], + [ + -73.467708, + 45.465556 + ], + [ + -73.467899, + 45.465442 + ], + [ + -73.46805, + 45.465387 + ], + [ + -73.468287, + 45.465321 + ], + [ + -73.468514, + 45.465288 + ], + [ + -73.468859, + 45.465256 + ], + [ + -73.469207, + 45.465245 + ], + [ + -73.471824, + 45.46534 + ], + [ + -73.47278, + 45.465351 + ], + [ + -73.473923, + 45.465346 + ], + [ + -73.474792, + 45.465284 + ], + [ + -73.476448, + 45.465339 + ], + [ + -73.478069, + 45.465419 + ], + [ + -73.47931, + 45.465481 + ], + [ + -73.480681, + 45.465584 + ], + [ + -73.481658, + 45.465665 + ], + [ + -73.483804, + 45.465854 + ], + [ + -73.485886, + 45.466123 + ], + [ + -73.488038, + 45.466444 + ], + [ + -73.489088, + 45.466602 + ], + [ + -73.491585, + 45.46694 + ], + [ + -73.494707, + 45.467307 + ], + [ + -73.494917, + 45.467332 + ], + [ + -73.494999, + 45.467342 + ], + [ + -73.497318, + 45.467635 + ], + [ + -73.501976, + 45.468162 + ], + [ + -73.50546, + 45.468524 + ], + [ + -73.508994, + 45.468874 + ], + [ + -73.510795, + 45.469064 + ], + [ + -73.516615, + 45.469606 + ], + [ + -73.520513, + 45.469901 + ], + [ + -73.524263, + 45.470138 + ], + [ + -73.526895, + 45.470234 + ], + [ + -73.536203, + 45.470502 + ], + [ + -73.537479, + 45.470611 + ], + [ + -73.540035, + 45.470737 + ], + [ + -73.540574, + 45.470754 + ], + [ + -73.541689, + 45.470806 + ], + [ + -73.54236, + 45.470938 + ], + [ + -73.542685, + 45.471019 + ], + [ + -73.543056, + 45.471172 + ], + [ + -73.543235, + 45.471297 + ], + [ + -73.543427, + 45.47153 + ], + [ + -73.543495, + 45.471781 + ], + [ + -73.543487, + 45.471977 + ], + [ + -73.543374, + 45.472246 + ], + [ + -73.543123, + 45.472648 + ], + [ + -73.543053, + 45.472745 + ], + [ + -73.543034, + 45.472772 + ], + [ + -73.543013, + 45.472801 + ], + [ + -73.542473, + 45.473549 + ], + [ + -73.542275, + 45.473832 + ], + [ + -73.542255, + 45.473861 + ], + [ + -73.542175, + 45.473976 + ], + [ + -73.542016, + 45.474229 + ], + [ + -73.541794, + 45.474618 + ], + [ + -73.541458, + 45.475221 + ], + [ + -73.541094, + 45.47588 + ], + [ + -73.540722, + 45.476557 + ], + [ + -73.540393, + 45.477154 + ], + [ + -73.540141, + 45.477612 + ], + [ + -73.539989, + 45.477937 + ], + [ + -73.539912, + 45.478117 + ], + [ + -73.53962, + 45.478792 + ], + [ + -73.539453, + 45.479242 + ], + [ + -73.539011, + 45.480452 + ], + [ + -73.538771, + 45.481137 + ], + [ + -73.538372, + 45.4823 + ], + [ + -73.537796, + 45.483909 + ], + [ + -73.537682, + 45.484235 + ], + [ + -73.537533, + 45.484742 + ], + [ + -73.537501, + 45.485252 + ], + [ + -73.537565, + 45.485765 + ], + [ + -73.537725, + 45.486206 + ], + [ + -73.537953, + 45.486613 + ], + [ + -73.538211, + 45.486968 + ], + [ + -73.538564, + 45.487319 + ], + [ + -73.538991, + 45.48766 + ], + [ + -73.539413, + 45.487933 + ], + [ + -73.540409, + 45.488352 + ], + [ + -73.540999, + 45.488508 + ], + [ + -73.545779, + 45.489431 + ], + [ + -73.547415, + 45.489732 + ], + [ + -73.548107, + 45.48986 + ], + [ + -73.549549, + 45.490154 + ], + [ + -73.549968, + 45.490239 + ], + [ + -73.550646, + 45.490459 + ], + [ + -73.551261, + 45.490742 + ], + [ + -73.55163, + 45.490924 + ], + [ + -73.551996, + 45.491154 + ], + [ + -73.552466, + 45.491495 + ], + [ + -73.552812, + 45.491812 + ], + [ + -73.553225, + 45.492293 + ], + [ + -73.553459, + 45.492647 + ], + [ + -73.553701, + 45.493121 + ], + [ + -73.553714, + 45.493155 + ], + [ + -73.554005, + 45.493935 + ], + [ + -73.554229, + 45.494495 + ], + [ + -73.55441, + 45.494962 + ], + [ + -73.554709, + 45.495574 + ], + [ + -73.554963, + 45.495825 + ], + [ + -73.555225, + 45.496022 + ], + [ + -73.555665, + 45.496222 + ], + [ + -73.557268, + 45.496821 + ], + [ + -73.557934, + 45.497074 + ], + [ + -73.558754, + 45.497382 + ], + [ + -73.559129, + 45.497554 + ], + [ + -73.559665, + 45.497799 + ], + [ + -73.56055, + 45.498258 + ], + [ + -73.561247, + 45.498577 + ], + [ + -73.561311, + 45.498457 + ], + [ + -73.561361, + 45.498363 + ], + [ + -73.561384, + 45.498316 + ], + [ + -73.561417, + 45.498249 + ], + [ + -73.561461, + 45.49816 + ], + [ + -73.561504, + 45.498074 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.562038, + 45.497108 + ], + [ + -73.562161, + 45.497168 + ], + [ + -73.562611, + 45.497387 + ], + [ + -73.562698, + 45.497457 + ], + [ + -73.562791, + 45.497486 + ], + [ + -73.562898, + 45.497495 + ], + [ + -73.563026, + 45.497486 + ], + [ + -73.563269, + 45.497461 + ], + [ + -73.563391, + 45.497457 + ], + [ + -73.563535, + 45.497468 + ], + [ + -73.56365, + 45.497486 + ], + [ + -73.56376, + 45.497514 + ], + [ + -73.563861, + 45.497562 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.56431, + 45.497835 + ], + [ + -73.565142, + 45.498217 + ], + [ + -73.565601, + 45.498443 + ], + [ + -73.565748, + 45.49831 + ], + [ + -73.565849, + 45.498292 + ], + [ + -73.566051, + 45.498359 + ], + [ + -73.566361, + 45.498471 + ], + [ + -73.566492, + 45.498485 + ], + [ + -73.566611, + 45.498345 + ] + ] + }, + "id": 117, + "properties": { + "id": "38177cc8-5261-421d-ab67-219652b6517a", + "data": { + "gtfs": { + "shape_id": "45_1_A" + }, + "segments": [ + { + "distanceMeters": 11653, + "travelTimeSeconds": 960 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11653, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8421.515277164277, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 12.14, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 10.22, + "averageSpeedWithoutDwellTimesMetersPerSecond": 12.14 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" + ], + "stops": [], + "line_id": "67d0890c-e329-422d-a190-b15ca731ce3a", + "segments": [ + 0 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 117, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.566611, + 45.498345 + ], + [ + -73.566738, + 45.498195 + ], + [ + -73.566628, + 45.49808 + ], + [ + -73.566306, + 45.497931 + ], + [ + -73.566253, + 45.497841 + ], + [ + -73.56638, + 45.497699 + ], + [ + -73.566016, + 45.497523 + ], + [ + -73.564691, + 45.496892 + ], + [ + -73.564548, + 45.497036 + ], + [ + -73.564308, + 45.497279 + ], + [ + -73.564223, + 45.497363 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.562654, + 45.499004 + ], + [ + -73.562195, + 45.498662 + ], + [ + -73.561924, + 45.498365 + ], + [ + -73.561751, + 45.4982 + ], + [ + -73.561721, + 45.498171 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.561033, + 45.497765 + ], + [ + -73.560139, + 45.497347 + ], + [ + -73.559235, + 45.49696 + ], + [ + -73.55917, + 45.496938 + ], + [ + -73.558356, + 45.496631 + ], + [ + -73.557604, + 45.496364 + ], + [ + -73.556782, + 45.49606 + ], + [ + -73.555745, + 45.495673 + ], + [ + -73.555351, + 45.495512 + ], + [ + -73.555133, + 45.495401 + ], + [ + -73.554916, + 45.495262 + ], + [ + -73.554768, + 45.495125 + ], + [ + -73.55465, + 45.494994 + ], + [ + -73.553944, + 45.493258 + ], + [ + -73.553818, + 45.492971 + ], + [ + -73.553465, + 45.492338 + ], + [ + -73.552977, + 45.491759 + ], + [ + -73.552502, + 45.491344 + ], + [ + -73.551956, + 45.490962 + ], + [ + -73.551651, + 45.490791 + ], + [ + -73.551074, + 45.490513 + ], + [ + -73.550682, + 45.490367 + ], + [ + -73.550312, + 45.490228 + ], + [ + -73.54956, + 45.490034 + ], + [ + -73.548355, + 45.489798 + ], + [ + -73.542648, + 45.488704 + ], + [ + -73.541878, + 45.488554 + ], + [ + -73.541083, + 45.488397 + ], + [ + -73.540636, + 45.488282 + ], + [ + -73.540145, + 45.488119 + ], + [ + -73.539582, + 45.48786 + ], + [ + -73.53933, + 45.487715 + ], + [ + -73.539239, + 45.487663 + ], + [ + -73.538946, + 45.487462 + ], + [ + -73.538619, + 45.487192 + ], + [ + -73.538304, + 45.486863 + ], + [ + -73.538089, + 45.486564 + ], + [ + -73.537862, + 45.486139 + ], + [ + -73.537796, + 45.485958 + ], + [ + -73.537731, + 45.485785 + ], + [ + -73.53767, + 45.485461 + ], + [ + -73.537646, + 45.485264 + ], + [ + -73.537653, + 45.484914 + ], + [ + -73.537707, + 45.484604 + ], + [ + -73.537881, + 45.484168 + ], + [ + -73.537968, + 45.483893 + ], + [ + -73.538058, + 45.483623 + ], + [ + -73.539557, + 45.479354 + ], + [ + -73.53982, + 45.478652 + ], + [ + -73.540179, + 45.47782 + ], + [ + -73.540481, + 45.477177 + ], + [ + -73.540578, + 45.477027 + ], + [ + -73.540928, + 45.476409 + ], + [ + -73.5413, + 45.475732 + ], + [ + -73.541747, + 45.474937 + ], + [ + -73.542136, + 45.474264 + ], + [ + -73.542539, + 45.47363 + ], + [ + -73.543159, + 45.472786 + ], + [ + -73.543162, + 45.472781 + ], + [ + -73.5432, + 45.472729 + ], + [ + -73.543381, + 45.472482 + ], + [ + -73.543908, + 45.471834 + ], + [ + -73.544604, + 45.471016 + ], + [ + -73.54479, + 45.470824 + ], + [ + -73.544929, + 45.470679 + ], + [ + -73.54509, + 45.470477 + ], + [ + -73.545159, + 45.470391 + ], + [ + -73.545162, + 45.470289 + ], + [ + -73.54518, + 45.470102 + ], + [ + -73.54513, + 45.469912 + ], + [ + -73.545032, + 45.469762 + ], + [ + -73.544829, + 45.469589 + ], + [ + -73.544396, + 45.469456 + ], + [ + -73.544223, + 45.469408 + ], + [ + -73.544, + 45.469414 + ], + [ + -73.54385, + 45.469436 + ], + [ + -73.543665, + 45.469485 + ], + [ + -73.543125, + 45.469658 + ], + [ + -73.542795, + 45.46978 + ], + [ + -73.542335, + 45.469915 + ], + [ + -73.542042, + 45.469974 + ], + [ + -73.541634, + 45.469988 + ], + [ + -73.538583, + 45.470121 + ], + [ + -73.536645, + 45.47012 + ], + [ + -73.534843, + 45.470106 + ], + [ + -73.531663, + 45.470044 + ], + [ + -73.528901, + 45.469979 + ], + [ + -73.525636, + 45.469864 + ], + [ + -73.520215, + 45.469565 + ], + [ + -73.516228, + 45.469261 + ], + [ + -73.50737, + 45.468395 + ], + [ + -73.501604, + 45.467786 + ], + [ + -73.499262, + 45.467514 + ], + [ + -73.493921, + 45.466881 + ], + [ + -73.491932, + 45.466645 + ], + [ + -73.489852, + 45.466348 + ], + [ + -73.489119, + 45.46624 + ], + [ + -73.489027, + 45.466226 + ], + [ + -73.486848, + 45.465931 + ], + [ + -73.485714, + 45.465782 + ], + [ + -73.482904, + 45.465439 + ], + [ + -73.482123, + 45.46537 + ], + [ + -73.479736, + 45.465191 + ], + [ + -73.47968, + 45.465187 + ], + [ + -73.478363, + 45.465119 + ], + [ + -73.477796, + 45.465089 + ], + [ + -73.475753, + 45.464994 + ], + [ + -73.474695, + 45.464942 + ], + [ + -73.474262, + 45.464921 + ], + [ + -73.474113, + 45.464916 + ], + [ + -73.473291, + 45.464882 + ], + [ + -73.472501, + 45.46485 + ], + [ + -73.471447, + 45.46476 + ], + [ + -73.469875, + 45.464616 + ], + [ + -73.469333, + 45.464554 + ], + [ + -73.46902, + 45.464515 + ], + [ + -73.468704, + 45.464452 + ], + [ + -73.468392, + 45.464367 + ], + [ + -73.468066, + 45.46424 + ], + [ + -73.467826, + 45.46409 + ], + [ + -73.467593, + 45.463944 + ], + [ + -73.467415, + 45.463833 + ], + [ + -73.467133, + 45.463667 + ], + [ + -73.466953, + 45.463591 + ], + [ + -73.466529, + 45.463529 + ], + [ + -73.466232, + 45.463594 + ], + [ + -73.466092, + 45.463623 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469043, + 45.46624 + ] + ] + }, + "id": 118, + "properties": { + "id": "2f191c44-845e-47b1-bbe2-1e3ec1123284", + "data": { + "gtfs": { + "shape_id": "45_4_R" + }, + "segments": [ + { + "distanceMeters": 11869, + "travelTimeSeconds": 1080 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11869, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8421.515277164277, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 10.99, + "travelTimeWithoutDwellTimesSeconds": 1080, + "operatingTimeWithLayoverTimeSeconds": 1260, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1080, + "operatingSpeedWithLayoverMetersPerSecond": 9.42, + "averageSpeedWithoutDwellTimesMetersPerSecond": 10.99 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "67d0890c-e329-422d-a190-b15ca731ce3a", + "segments": [ + 0 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 118, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.490549, + 45.447733 + ], + [ + -73.490554, + 45.447636 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.486184, + 45.447402 + ], + [ + -73.485394, + 45.447385 + ], + [ + -73.485334, + 45.447383 + ], + [ + -73.484501, + 45.447365 + ], + [ + -73.483174, + 45.447338 + ], + [ + -73.483047, + 45.447334 + ], + [ + -73.482811, + 45.447302 + ], + [ + -73.4826, + 45.447257 + ], + [ + -73.482392, + 45.447199 + ], + [ + -73.482245, + 45.447145 + ], + [ + -73.482082, + 45.447077 + ], + [ + -73.481942, + 45.447005 + ], + [ + -73.481839, + 45.446947 + ], + [ + -73.481644, + 45.446821 + ], + [ + -73.481637, + 45.446815 + ], + [ + -73.481469, + 45.446695 + ], + [ + -73.481319, + 45.446551 + ], + [ + -73.481245, + 45.446479 + ], + [ + -73.481147, + 45.446357 + ], + [ + -73.481089, + 45.446285 + ], + [ + -73.480926, + 45.445993 + ], + [ + -73.480839, + 45.445718 + ], + [ + -73.480811, + 45.445444 + ], + [ + -73.480848, + 45.445021 + ], + [ + -73.481002, + 45.443761 + ], + [ + -73.481012, + 45.443676 + ], + [ + -73.481219, + 45.441988 + ], + [ + -73.481286, + 45.441406 + ], + [ + -73.481299, + 45.441295 + ], + [ + -73.482016, + 45.441346 + ], + [ + -73.482262, + 45.441363 + ], + [ + -73.482811, + 45.441395 + ], + [ + -73.483146, + 45.441426 + ], + [ + -73.483482, + 45.441503 + ], + [ + -73.483768, + 45.441606 + ], + [ + -73.483788, + 45.441616 + ], + [ + -73.484016, + 45.441723 + ], + [ + -73.484181, + 45.441813 + ], + [ + -73.484668, + 45.442183 + ], + [ + -73.485324, + 45.442682 + ], + [ + -73.485435, + 45.442763 + ], + [ + -73.48577, + 45.442902 + ], + [ + -73.486077, + 45.44301 + ], + [ + -73.486385, + 45.443073 + ], + [ + -73.486658, + 45.4431 + ], + [ + -73.48683, + 45.443109 + ], + [ + -73.487183, + 45.443127 + ], + [ + -73.487353, + 45.44313 + ], + [ + -73.487487, + 45.443132 + ], + [ + -73.490545, + 45.443222 + ], + [ + -73.491559, + 45.443245 + ], + [ + -73.49153, + 45.443633 + ], + [ + -73.491504, + 45.443969 + ], + [ + -73.491285, + 45.444689 + ], + [ + -73.491116, + 45.445211 + ], + [ + -73.491092, + 45.445287 + ], + [ + -73.491055, + 45.445404 + ], + [ + -73.49061, + 45.446822 + ], + [ + -73.490573, + 45.447292 + ], + [ + -73.490565, + 45.447402 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.490554, + 45.447636 + ], + [ + -73.490536, + 45.447992 + ], + [ + -73.490521, + 45.448293 + ], + [ + -73.490447, + 45.449075 + ], + [ + -73.490406, + 45.449508 + ], + [ + -73.490386, + 45.449719 + ], + [ + -73.490356, + 45.450109 + ], + [ + -73.490274, + 45.451145 + ], + [ + -73.490184, + 45.451911 + ], + [ + -73.490174, + 45.451996 + ], + [ + -73.490164, + 45.452099 + ], + [ + -73.490107, + 45.452689 + ], + [ + -73.490099, + 45.452842 + ], + [ + -73.490095, + 45.452936 + ], + [ + -73.490138, + 45.453076 + ], + [ + -73.490177, + 45.453161 + ], + [ + -73.490251, + 45.453269 + ], + [ + -73.490337, + 45.453359 + ], + [ + -73.490543, + 45.453512 + ], + [ + -73.49064, + 45.453584 + ], + [ + -73.490922, + 45.453778 + ], + [ + -73.491049, + 45.453868 + ], + [ + -73.491205, + 45.454016 + ], + [ + -73.491307, + 45.454169 + ], + [ + -73.491353, + 45.454286 + ], + [ + -73.491385, + 45.45439 + ], + [ + -73.491385, + 45.45452 + ], + [ + -73.491384, + 45.454537 + ], + [ + -73.491379, + 45.454673 + ], + [ + -73.491306, + 45.455478 + ], + [ + -73.491179, + 45.455672 + ], + [ + -73.49101, + 45.455802 + ], + [ + -73.491002, + 45.455806 + ], + [ + -73.490874, + 45.45587 + ], + [ + -73.490235, + 45.456194 + ], + [ + -73.490047, + 45.45632 + ], + [ + -73.489891, + 45.45645 + ], + [ + -73.489837, + 45.456558 + ], + [ + -73.489805, + 45.456679 + ], + [ + -73.489788, + 45.4568 + ], + [ + -73.489787, + 45.45681 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.488883, + 45.456902 + ], + [ + -73.488779, + 45.456899 + ], + [ + -73.488212, + 45.456877 + ], + [ + -73.486508, + 45.456819 + ], + [ + -73.486364, + 45.456814 + ], + [ + -73.485148, + 45.456777 + ], + [ + -73.483698, + 45.456733 + ], + [ + -73.483692, + 45.456872 + ], + [ + -73.483678, + 45.457203 + ], + [ + -73.483653, + 45.457786 + ], + [ + -73.48364, + 45.457923 + ], + [ + -73.483634, + 45.457988 + ], + [ + -73.483603, + 45.458325 + ], + [ + -73.483595, + 45.45842 + ], + [ + -73.483547, + 45.458852 + ], + [ + -73.4835, + 45.459081 + ], + [ + -73.483406, + 45.459504 + ], + [ + -73.483319, + 45.459756 + ], + [ + -73.483304, + 45.459801 + ], + [ + -73.482827, + 45.460805 + ], + [ + -73.482782, + 45.460899 + ], + [ + -73.482626, + 45.461448 + ], + [ + -73.482575, + 45.461956 + ], + [ + -73.482571, + 45.462082 + ], + [ + -73.482568, + 45.462177 + ], + [ + -73.48256, + 45.462375 + ], + [ + -73.482548, + 45.462559 + ], + [ + -73.482585, + 45.462708 + ], + [ + -73.482613, + 45.462807 + ], + [ + -73.482595, + 45.463423 + ], + [ + -73.482573, + 45.463964 + ], + [ + -73.48257, + 45.464048 + ], + [ + -73.482309, + 45.464098 + ], + [ + -73.482029, + 45.464171 + ], + [ + -73.481982, + 45.464183 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.480952, + 45.464593 + ], + [ + -73.480652, + 45.464687 + ], + [ + -73.480287, + 45.464772 + ], + [ + -73.479951, + 45.464831 + ], + [ + -73.479651, + 45.464862 + ], + [ + -73.479281, + 45.464889 + ], + [ + -73.478969, + 45.464889 + ], + [ + -73.478726, + 45.46488 + ], + [ + -73.478688, + 45.464879 + ], + [ + -73.476229, + 45.46479 + ], + [ + -73.475061, + 45.464753 + ], + [ + -73.474661, + 45.464744 + ], + [ + -73.474508, + 45.464734 + ], + [ + -73.474286, + 45.464723 + ], + [ + -73.474168, + 45.464717 + ], + [ + -73.473949, + 45.464699 + ], + [ + -73.473705, + 45.464641 + ], + [ + -73.473499, + 45.464573 + ], + [ + -73.473207, + 45.464434 + ], + [ + -73.473026, + 45.464318 + ], + [ + -73.472811, + 45.464181 + ], + [ + -73.472979, + 45.464046 + ], + [ + -73.474001, + 45.463224 + ], + [ + -73.474018, + 45.46321 + ], + [ + -73.47413, + 45.463142 + ], + [ + -73.474225, + 45.463052 + ], + [ + -73.474394, + 45.46281 + ], + [ + -73.474502, + 45.462639 + ], + [ + -73.474959, + 45.462171 + ], + [ + -73.474994, + 45.462135 + ], + [ + -73.475315, + 45.461869 + ], + [ + -73.475666, + 45.461613 + ], + [ + -73.47638, + 45.462061 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.474375, + 45.468229 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474256, + 45.468562 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.473204, + 45.468295 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.471427, + 45.468098 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469574, + 45.467137 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.46908, + 45.465912 + ], + [ + -73.469107, + 45.46587 + ] + ] + }, + "id": 119, + "properties": { + "id": "12e2e4bf-6074-410b-aeaf-0605434f5966", + "data": { + "gtfs": { + "shape_id": "46_1_A" + }, + "segments": [ + { + "distanceMeters": 430, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 374, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 78, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 329, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 347, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 738, + "travelTimeSeconds": 158 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 654, + "travelTimeSeconds": 141 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8064, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2640.1217649066293, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.11, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 5.38, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.11 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "601c2147-2f83-405b-be6a-8fe05117cb43", + "8f4ce296-9511-42d4-a138-f52bb761830f", + "0a5b3fec-6725-4b10-9b81-ad6506fe82d2", + "a532b39a-66ec-444f-abc1-766787d9387c", + "3518bfc1-7b5d-4295-9440-6fc17dd6b559", + "e9dbe1ee-244a-4556-8fa1-052d6f2dee5e", + "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", + "56755a3d-6779-4355-8b48-27271fb6ce0b", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "997c4af9-ab50-4dfb-941a-afadff58f267", + "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", + "c7c30949-db61-44fc-b7ab-a69b9fde12cc", + "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", + "f1131e74-6c65-4f22-a18d-41dbe35e4576", + "984def83-5f59-45f7-bb33-ed1dbca30502", + "1d56d4cb-0ab2-44f2-924d-aa119de8c362", + "258cb5fd-8795-41af-8e07-3de8ea977e23", + "d2127fc0-fbc1-4459-b6f9-07c0b8d9cdbe", + "e51dbc0e-9385-4f59-b401-fd29a59c8b5b", + "2d435714-a542-4404-9910-0df9675e2087", + "2ecca6ee-e688-465d-a0b1-929435b41047", + "57de752e-d268-4125-8223-581e6c2ff56e", + "eee98f97-7434-4d16-88a6-93a424bc6846", + "4bbdfb79-c7dc-46c0-893b-48e38ccd2db0", + "70ace55a-2f3c-410b-8740-bea06ecb9924", + "7389acbe-1784-4fea-a2ab-a4a9c9239e83", + "06992afa-6d7e-4650-bffc-5a747de5860c", + "ff23cabb-ca11-421b-a582-f6413aa21fa0", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "482f6809-9300-45ae-8346-18e995a1cb75", + "segments": [ + 0, + 4, + 21, + 27, + 30, + 38, + 50, + 54, + 57, + 61, + 65, + 68, + 72, + 82, + 91, + 96, + 103, + 109, + 114, + 118, + 123, + 125, + 129, + 136, + 149, + 155, + 161, + 164, + 170, + 174, + 202, + 211, + 218 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 119, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469107, + 45.46587 + ], + [ + -73.469152, + 45.465801 + ], + [ + -73.469114, + 45.465711 + ], + [ + -73.469034, + 45.465669 + ], + [ + -73.468913, + 45.46567 + ], + [ + -73.468751, + 45.465752 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469327, + 45.468092 + ], + [ + -73.469492, + 45.4681 + ], + [ + -73.469734, + 45.468114 + ], + [ + -73.470299, + 45.468145 + ], + [ + -73.471061, + 45.468181 + ], + [ + -73.471238, + 45.46819 + ], + [ + -73.471526, + 45.468208 + ], + [ + -73.472194, + 45.468244 + ], + [ + -73.472441, + 45.468255 + ], + [ + -73.472597, + 45.468262 + ], + [ + -73.472728, + 45.468276 + ], + [ + -73.472834, + 45.468294 + ], + [ + -73.472877, + 45.468307 + ], + [ + -73.473025, + 45.468348 + ], + [ + -73.473214, + 45.468424 + ], + [ + -73.473673, + 45.468604 + ], + [ + -73.473905, + 45.468649 + ], + [ + -73.474077, + 45.468676 + ], + [ + -73.474259, + 45.46869 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474543, + 45.468507 + ], + [ + -73.474544, + 45.468492 + ], + [ + -73.474545, + 45.468488 + ], + [ + -73.474528, + 45.468236 + ], + [ + -73.474508, + 45.467936 + ], + [ + -73.474508, + 45.467294 + ], + [ + -73.474542, + 45.4665 + ], + [ + -73.474546, + 45.466404 + ], + [ + -73.474554, + 45.466199 + ], + [ + -73.474621, + 45.465194 + ], + [ + -73.474664, + 45.464506 + ], + [ + -73.474669, + 45.464397 + ], + [ + -73.474734, + 45.464067 + ], + [ + -73.474884, + 45.463697 + ], + [ + -73.475002, + 45.463492 + ], + [ + -73.47522, + 45.463212 + ], + [ + -73.475408, + 45.463039 + ], + [ + -73.47556, + 45.462909 + ], + [ + -73.475821, + 45.462711 + ], + [ + -73.476105, + 45.462495 + ], + [ + -73.476557, + 45.462176 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476065, + 45.461863 + ], + [ + -73.475959, + 45.461796 + ], + [ + -73.475666, + 45.461613 + ], + [ + -73.475315, + 45.461869 + ], + [ + -73.475118, + 45.462032 + ], + [ + -73.474994, + 45.462135 + ], + [ + -73.474502, + 45.462639 + ], + [ + -73.474394, + 45.46281 + ], + [ + -73.474225, + 45.463052 + ], + [ + -73.47413, + 45.463142 + ], + [ + -73.474123, + 45.463147 + ], + [ + -73.474018, + 45.46321 + ], + [ + -73.472905, + 45.464106 + ], + [ + -73.472811, + 45.464181 + ], + [ + -73.472881, + 45.464226 + ], + [ + -73.473207, + 45.464434 + ], + [ + -73.473499, + 45.464573 + ], + [ + -73.473705, + 45.464641 + ], + [ + -73.473949, + 45.464699 + ], + [ + -73.474168, + 45.464717 + ], + [ + -73.474508, + 45.464734 + ], + [ + -73.474661, + 45.464744 + ], + [ + -73.474787, + 45.464747 + ], + [ + -73.475061, + 45.464753 + ], + [ + -73.476229, + 45.46479 + ], + [ + -73.478166, + 45.46486 + ], + [ + -73.478688, + 45.464879 + ], + [ + -73.478969, + 45.464889 + ], + [ + -73.479281, + 45.464889 + ], + [ + -73.479651, + 45.464862 + ], + [ + -73.479951, + 45.464831 + ], + [ + -73.480287, + 45.464772 + ], + [ + -73.480652, + 45.464687 + ], + [ + -73.480952, + 45.464593 + ], + [ + -73.481347, + 45.464436 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.481982, + 45.464183 + ], + [ + -73.482309, + 45.464098 + ], + [ + -73.48257, + 45.464048 + ], + [ + -73.482585, + 45.463683 + ], + [ + -73.482595, + 45.463423 + ], + [ + -73.482613, + 45.462807 + ], + [ + -73.482585, + 45.462708 + ], + [ + -73.482548, + 45.462559 + ], + [ + -73.48256, + 45.462375 + ], + [ + -73.482561, + 45.462339 + ], + [ + -73.482568, + 45.462177 + ], + [ + -73.482575, + 45.461956 + ], + [ + -73.482626, + 45.461448 + ], + [ + -73.482758, + 45.460984 + ], + [ + -73.482782, + 45.460899 + ], + [ + -73.482858, + 45.460738 + ], + [ + -73.48327, + 45.459873 + ], + [ + -73.483304, + 45.459801 + ], + [ + -73.483406, + 45.459504 + ], + [ + -73.4835, + 45.459081 + ], + [ + -73.483547, + 45.458852 + ], + [ + -73.483589, + 45.458474 + ], + [ + -73.483595, + 45.45842 + ], + [ + -73.48364, + 45.457923 + ], + [ + -73.483653, + 45.457786 + ], + [ + -73.483675, + 45.457272 + ], + [ + -73.483692, + 45.456872 + ], + [ + -73.485139, + 45.456916 + ], + [ + -73.486297, + 45.456952 + ], + [ + -73.48636, + 45.456954 + ], + [ + -73.488203, + 45.457017 + ], + [ + -73.489765, + 45.457071 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.489787, + 45.45681 + ], + [ + -73.489805, + 45.456679 + ], + [ + -73.489837, + 45.456558 + ], + [ + -73.489878, + 45.456476 + ], + [ + -73.489891, + 45.45645 + ], + [ + -73.490047, + 45.45632 + ], + [ + -73.490235, + 45.456194 + ], + [ + -73.490842, + 45.455886 + ], + [ + -73.490874, + 45.45587 + ], + [ + -73.49101, + 45.455802 + ], + [ + -73.491179, + 45.455672 + ], + [ + -73.491306, + 45.455478 + ], + [ + -73.491365, + 45.454827 + ], + [ + -73.491379, + 45.454673 + ], + [ + -73.491385, + 45.45452 + ], + [ + -73.491385, + 45.45439 + ], + [ + -73.491353, + 45.454286 + ], + [ + -73.491307, + 45.454169 + ], + [ + -73.491205, + 45.454016 + ], + [ + -73.491049, + 45.453868 + ], + [ + -73.490922, + 45.453778 + ], + [ + -73.490733, + 45.453648 + ], + [ + -73.49064, + 45.453584 + ], + [ + -73.490337, + 45.453359 + ], + [ + -73.490251, + 45.453269 + ], + [ + -73.490177, + 45.453161 + ], + [ + -73.490138, + 45.453076 + ], + [ + -73.490095, + 45.452936 + ], + [ + -73.490099, + 45.452842 + ], + [ + -73.490107, + 45.452689 + ], + [ + -73.490162, + 45.452119 + ], + [ + -73.490164, + 45.452099 + ], + [ + -73.490174, + 45.451996 + ], + [ + -73.490274, + 45.451145 + ], + [ + -73.490347, + 45.450218 + ], + [ + -73.490356, + 45.450109 + ], + [ + -73.490386, + 45.449719 + ], + [ + -73.490521, + 45.448293 + ], + [ + -73.490549, + 45.447733 + ] + ] + }, + "id": 120, + "properties": { + "id": "8a39e1ea-2ec5-45fa-b525-cd25f9b7f06a", + "data": { + "gtfs": { + "shape_id": "46_2_R" + }, + "segments": [ + { + "distanceMeters": 662, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 1002, + "travelTimeSeconds": 102 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 439, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 60 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5382, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2640.1217649066293, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.9, + "travelTimeWithoutDwellTimesSeconds": 780, + "operatingTimeWithLayoverTimeSeconds": 960, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 780, + "operatingSpeedWithLayoverMetersPerSecond": 5.61, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.9 + }, + "mode": "bus", + "name": "Sect. R Brossard", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "06992afa-6d7e-4650-bffc-5a747de5860c", + "7389acbe-1784-4fea-a2ab-a4a9c9239e83", + "70ace55a-2f3c-410b-8740-bea06ecb9924", + "5a01eede-d090-4bda-988f-792a987bafc2", + "eee98f97-7434-4d16-88a6-93a424bc6846", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "57de752e-d268-4125-8223-581e6c2ff56e", + "2ecca6ee-e688-465d-a0b1-929435b41047", + "57b17011-c22d-458b-b4e5-e636c5436ed9", + "e51dbc0e-9385-4f59-b401-fd29a59c8b5b", + "d2127fc0-fbc1-4459-b6f9-07c0b8d9cdbe", + "258cb5fd-8795-41af-8e07-3de8ea977e23", + "1d56d4cb-0ab2-44f2-924d-aa119de8c362", + "f1131e74-6c65-4f22-a18d-41dbe35e4576", + "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", + "c7c30949-db61-44fc-b7ab-a69b9fde12cc", + "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", + "997c4af9-ab50-4dfb-941a-afadff58f267", + "11a7e876-eb5a-402b-8bb8-10625e7584e3" + ], + "stops": [], + "line_id": "482f6809-9300-45ae-8346-18e995a1cb75", + "segments": [ + 0, + 28, + 32, + 68, + 72, + 78, + 80, + 90, + 93, + 102, + 107, + 113, + 117, + 120, + 125, + 129, + 132, + 144, + 149, + 158, + 167, + 171 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 120, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.490549, + 45.447733 + ], + [ + -73.490554, + 45.447636 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.486184, + 45.447402 + ], + [ + -73.485334, + 45.447383 + ], + [ + -73.484501, + 45.447365 + ], + [ + -73.483174, + 45.447338 + ], + [ + -73.483047, + 45.447334 + ], + [ + -73.482811, + 45.447302 + ], + [ + -73.4826, + 45.447257 + ], + [ + -73.482392, + 45.447199 + ], + [ + -73.482245, + 45.447145 + ], + [ + -73.482082, + 45.447077 + ], + [ + -73.481942, + 45.447005 + ], + [ + -73.481839, + 45.446947 + ], + [ + -73.481644, + 45.446821 + ], + [ + -73.481637, + 45.446815 + ], + [ + -73.481469, + 45.446695 + ], + [ + -73.481319, + 45.446551 + ], + [ + -73.481245, + 45.446479 + ], + [ + -73.481089, + 45.446285 + ], + [ + -73.480926, + 45.445993 + ], + [ + -73.480839, + 45.445718 + ], + [ + -73.480811, + 45.445444 + ], + [ + -73.480848, + 45.445021 + ], + [ + -73.481012, + 45.443676 + ], + [ + -73.481207, + 45.442083 + ], + [ + -73.481219, + 45.441988 + ], + [ + -73.481299, + 45.441295 + ], + [ + -73.482016, + 45.441346 + ], + [ + -73.482262, + 45.441363 + ], + [ + -73.482811, + 45.441395 + ], + [ + -73.483146, + 45.441426 + ], + [ + -73.483482, + 45.441503 + ], + [ + -73.483768, + 45.441606 + ], + [ + -73.484016, + 45.441723 + ], + [ + -73.484181, + 45.441813 + ], + [ + -73.484668, + 45.442183 + ], + [ + -73.485324, + 45.442682 + ], + [ + -73.485435, + 45.442763 + ], + [ + -73.48577, + 45.442902 + ], + [ + -73.486077, + 45.44301 + ], + [ + -73.486385, + 45.443073 + ], + [ + -73.486658, + 45.4431 + ], + [ + -73.48683, + 45.443109 + ], + [ + -73.487183, + 45.443127 + ], + [ + -73.487487, + 45.443132 + ], + [ + -73.490545, + 45.443222 + ], + [ + -73.491559, + 45.443245 + ], + [ + -73.491504, + 45.443969 + ], + [ + -73.491287, + 45.44468 + ], + [ + -73.491285, + 45.444689 + ], + [ + -73.491092, + 45.445287 + ], + [ + -73.491055, + 45.445404 + ], + [ + -73.49061, + 45.446822 + ], + [ + -73.490565, + 45.447402 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.490554, + 45.447636 + ], + [ + -73.490521, + 45.448293 + ], + [ + -73.490447, + 45.449075 + ], + [ + -73.490386, + 45.449719 + ], + [ + -73.490356, + 45.450109 + ], + [ + -73.490274, + 45.451145 + ], + [ + -73.490174, + 45.451996 + ], + [ + -73.490164, + 45.452099 + ], + [ + -73.490124, + 45.452513 + ], + [ + -73.490107, + 45.452689 + ], + [ + -73.490099, + 45.452842 + ], + [ + -73.490095, + 45.452936 + ], + [ + -73.490138, + 45.453076 + ], + [ + -73.490177, + 45.453161 + ], + [ + -73.490251, + 45.453269 + ], + [ + -73.490337, + 45.453359 + ], + [ + -73.49064, + 45.453584 + ], + [ + -73.490922, + 45.453778 + ], + [ + -73.491049, + 45.453868 + ], + [ + -73.491205, + 45.454016 + ], + [ + -73.491307, + 45.454169 + ], + [ + -73.491353, + 45.454286 + ], + [ + -73.491385, + 45.45439 + ], + [ + -73.491385, + 45.45452 + ], + [ + -73.491379, + 45.454673 + ], + [ + -73.491306, + 45.455478 + ], + [ + -73.491179, + 45.455672 + ], + [ + -73.49101, + 45.455802 + ], + [ + -73.490874, + 45.45587 + ], + [ + -73.490235, + 45.456194 + ], + [ + -73.490047, + 45.45632 + ], + [ + -73.489891, + 45.45645 + ], + [ + -73.489837, + 45.456558 + ], + [ + -73.489805, + 45.456679 + ], + [ + -73.489787, + 45.45681 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.488883, + 45.456902 + ], + [ + -73.488779, + 45.456899 + ], + [ + -73.488212, + 45.456877 + ], + [ + -73.487092, + 45.456839 + ], + [ + -73.486364, + 45.456814 + ], + [ + -73.485148, + 45.456777 + ], + [ + -73.483698, + 45.456733 + ], + [ + -73.483692, + 45.456872 + ], + [ + -73.483653, + 45.457786 + ], + [ + -73.48364, + 45.457923 + ], + [ + -73.483634, + 45.457988 + ], + [ + -73.483595, + 45.45842 + ], + [ + -73.483547, + 45.458852 + ], + [ + -73.4835, + 45.459081 + ], + [ + -73.483406, + 45.459504 + ], + [ + -73.483304, + 45.459801 + ], + [ + -73.483203, + 45.460013 + ], + [ + -73.482782, + 45.460899 + ], + [ + -73.482626, + 45.461448 + ], + [ + -73.482575, + 45.461956 + ], + [ + -73.482568, + 45.462177 + ], + [ + -73.48256, + 45.462375 + ], + [ + -73.482548, + 45.462559 + ], + [ + -73.482585, + 45.462708 + ], + [ + -73.482613, + 45.462807 + ], + [ + -73.482595, + 45.463423 + ], + [ + -73.48257, + 45.464048 + ], + [ + -73.482309, + 45.464098 + ], + [ + -73.482029, + 45.464171 + ], + [ + -73.481982, + 45.464183 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.480952, + 45.464593 + ], + [ + -73.480652, + 45.464687 + ], + [ + -73.480287, + 45.464772 + ], + [ + -73.479951, + 45.464831 + ], + [ + -73.479651, + 45.464862 + ], + [ + -73.479281, + 45.464889 + ], + [ + -73.478969, + 45.464889 + ], + [ + -73.478688, + 45.464879 + ], + [ + -73.476229, + 45.46479 + ], + [ + -73.475649, + 45.464772 + ], + [ + -73.475061, + 45.464753 + ], + [ + -73.474661, + 45.464744 + ], + [ + -73.474508, + 45.464734 + ], + [ + -73.474168, + 45.464717 + ], + [ + -73.473949, + 45.464699 + ], + [ + -73.473705, + 45.464641 + ], + [ + -73.473499, + 45.464573 + ], + [ + -73.473207, + 45.464434 + ], + [ + -73.472811, + 45.464181 + ], + [ + -73.472979, + 45.464046 + ], + [ + -73.474018, + 45.46321 + ], + [ + -73.47413, + 45.463142 + ], + [ + -73.474225, + 45.463052 + ], + [ + -73.474394, + 45.46281 + ], + [ + -73.474502, + 45.462639 + ], + [ + -73.474994, + 45.462135 + ], + [ + -73.475315, + 45.461869 + ], + [ + -73.475666, + 45.461613 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474482, + 45.465486 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474256, + 45.468562 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.472085, + 45.468129 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469574, + 45.467137 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.46908, + 45.465912 + ], + [ + -73.469107, + 45.46587 + ] + ] + }, + "id": 121, + "properties": { + "id": "ff88549f-1374-4a51-bd94-ea0a55cd8bcb", + "data": { + "gtfs": { + "shape_id": "46_1_A" + }, + "segments": [ + { + "distanceMeters": 1285, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 1117, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 879, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 786, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 634, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 1016, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 1111, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 535, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 705, + "travelTimeSeconds": 32 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8064, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 0, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 22.4, + "travelTimeWithoutDwellTimesSeconds": 360, + "operatingTimeWithLayoverTimeSeconds": 540, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 360, + "operatingSpeedWithLayoverMetersPerSecond": 14.93, + "averageSpeedWithoutDwellTimesMetersPerSecond": 22.4 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "601c2147-2f83-405b-be6a-8fe05117cb43", + "8f4ce296-9511-42d4-a138-f52bb761830f", + "0a5b3fec-6725-4b10-9b81-ad6506fe82d2", + "a532b39a-66ec-444f-abc1-766787d9387c", + "3518bfc1-7b5d-4295-9440-6fc17dd6b559", + "e9dbe1ee-244a-4556-8fa1-052d6f2dee5e", + "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", + "56755a3d-6779-4355-8b48-27271fb6ce0b", + "11a7e876-eb5a-402b-8bb8-10625e7584e3" + ], + "stops": [], + "line_id": "482f6809-9300-45ae-8346-18e995a1cb75", + "segments": [ + 0, + 26, + 50, + 65, + 96, + 109, + 133, + 171, + 193 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 121, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469043, + 45.46624 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467814, + 45.466067 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469327, + 45.468092 + ], + [ + -73.469492, + 45.4681 + ], + [ + -73.470299, + 45.468145 + ], + [ + -73.471071, + 45.468182 + ], + [ + -73.471238, + 45.46819 + ], + [ + -73.471526, + 45.468208 + ], + [ + -73.472194, + 45.468244 + ], + [ + -73.472438, + 45.468255 + ], + [ + -73.472597, + 45.468262 + ], + [ + -73.472728, + 45.468276 + ], + [ + -73.472736, + 45.468277 + ], + [ + -73.472834, + 45.468294 + ], + [ + -73.472877, + 45.468307 + ], + [ + -73.473025, + 45.468348 + ], + [ + -73.473214, + 45.468424 + ], + [ + -73.473673, + 45.468604 + ], + [ + -73.473905, + 45.468649 + ], + [ + -73.474077, + 45.468676 + ], + [ + -73.474259, + 45.46869 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474544, + 45.468492 + ], + [ + -73.474545, + 45.468488 + ], + [ + -73.474528, + 45.468236 + ], + [ + -73.474508, + 45.467936 + ], + [ + -73.474508, + 45.467294 + ], + [ + -73.474542, + 45.4665 + ], + [ + -73.474546, + 45.466404 + ], + [ + -73.474554, + 45.466199 + ], + [ + -73.474621, + 45.465194 + ], + [ + -73.474664, + 45.464506 + ], + [ + -73.474669, + 45.464397 + ], + [ + -73.474734, + 45.464067 + ], + [ + -73.474884, + 45.463697 + ], + [ + -73.475002, + 45.463492 + ], + [ + -73.47522, + 45.463212 + ], + [ + -73.475408, + 45.463039 + ], + [ + -73.47556, + 45.462909 + ], + [ + -73.475821, + 45.462711 + ], + [ + -73.476105, + 45.462495 + ], + [ + -73.476448, + 45.462252 + ], + [ + -73.476557, + 45.462176 + ], + [ + -73.477249, + 45.461685 + ], + [ + -73.478219, + 45.460953 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.47888, + 45.460399 + ], + [ + -73.479008, + 45.460264 + ], + [ + -73.479302, + 45.459904 + ], + [ + -73.479398, + 45.459769 + ], + [ + -73.479488, + 45.459616 + ], + [ + -73.479616, + 45.459382 + ], + [ + -73.479649, + 45.459311 + ], + [ + -73.479699, + 45.459202 + ], + [ + -73.47976, + 45.459027 + ], + [ + -73.479776, + 45.458968 + ], + [ + -73.479808, + 45.458865 + ], + [ + -73.479852, + 45.458707 + ], + [ + -73.479891, + 45.458478 + ], + [ + -73.479913, + 45.458325 + ], + [ + -73.479923, + 45.458145 + ], + [ + -73.479926, + 45.458073 + ], + [ + -73.479893, + 45.457659 + ], + [ + -73.479819, + 45.456897 + ], + [ + -73.479803, + 45.456723 + ], + [ + -73.479792, + 45.456611 + ], + [ + -73.479747, + 45.456084 + ], + [ + -73.479731, + 45.4559 + ], + [ + -73.479696, + 45.455396 + ], + [ + -73.479646, + 45.454851 + ], + [ + -73.479629, + 45.454671 + ], + [ + -73.479566, + 45.454028 + ], + [ + -73.479521, + 45.453709 + ], + [ + -73.47946, + 45.45338 + ], + [ + -73.479374, + 45.453016 + ], + [ + -73.479309, + 45.452772 + ], + [ + -73.479278, + 45.452656 + ], + [ + -73.479074, + 45.452084 + ], + [ + -73.478902, + 45.451688 + ], + [ + -73.478649, + 45.451162 + ], + [ + -73.478451, + 45.450779 + ], + [ + -73.47833, + 45.450536 + ], + [ + -73.478167, + 45.450257 + ], + [ + -73.478015, + 45.45006 + ], + [ + -73.478004, + 45.450046 + ], + [ + -73.477921, + 45.449951 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.479229, + 45.449466 + ], + [ + -73.479291, + 45.449444 + ], + [ + -73.480707, + 45.44894 + ], + [ + -73.480948, + 45.448841 + ], + [ + -73.481186, + 45.448724 + ], + [ + -73.481319, + 45.448638 + ], + [ + -73.481405, + 45.448562 + ], + [ + -73.481538, + 45.448436 + ], + [ + -73.481595, + 45.448363 + ], + [ + -73.481672, + 45.448265 + ], + [ + -73.482262, + 45.447391 + ] + ] + }, + "id": 122, + "properties": { + "id": "28e0bb75-8007-474e-8bb1-865ce909a4e5", + "data": { + "gtfs": { + "shape_id": "47_2_R" + }, + "segments": [ + { + "distanceMeters": 111, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 518, + "travelTimeSeconds": 79 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 938, + "travelTimeSeconds": 143 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 91 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 35 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 3615, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2293.7049268168794, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.02, + "travelTimeWithoutDwellTimesSeconds": 720, + "operatingTimeWithLayoverTimeSeconds": 900, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 720, + "operatingSpeedWithLayoverMetersPerSecond": 4.02, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.02 + }, + "mode": "bus", + "name": "Sect. R Brossard", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "7b9bfdae-7d0d-4463-a7d7-1a62138b83b5", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", + "87774b57-5ee3-418d-948c-ba4db73d3893", + "c25adb1f-635e-4881-a89d-af8a9ea5ca92", + "4509b80b-76a5-49de-acb2-533a50bafac5", + "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", + "3e4f29c9-7bf2-4ca4-9cb4-2a3c4710cea6", + "91b595a9-abca-41fb-9723-f6ca055bd16b" + ], + "stops": [], + "line_id": "7fb41c77-2376-4573-8588-47eaa467011a", + "segments": [ + 0, + 2, + 21, + 25, + 59, + 62, + 70, + 81, + 87, + 93, + 101, + 106, + 113 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 122, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.482262, + 45.447391 + ], + [ + -73.48231, + 45.44732 + ], + [ + -73.482392, + 45.447199 + ], + [ + -73.482245, + 45.447145 + ], + [ + -73.482082, + 45.447077 + ], + [ + -73.481942, + 45.447005 + ], + [ + -73.481839, + 45.446947 + ], + [ + -73.481672, + 45.446839 + ], + [ + -73.481644, + 45.446821 + ], + [ + -73.481469, + 45.446695 + ], + [ + -73.481319, + 45.446551 + ], + [ + -73.481245, + 45.446479 + ], + [ + -73.481153, + 45.446365 + ], + [ + -73.481089, + 45.446285 + ], + [ + -73.480926, + 45.445993 + ], + [ + -73.480839, + 45.445718 + ], + [ + -73.480811, + 45.445444 + ], + [ + -73.480848, + 45.445021 + ], + [ + -73.481, + 45.44378 + ], + [ + -73.481012, + 45.443676 + ], + [ + -73.481219, + 45.441988 + ], + [ + -73.481285, + 45.441417 + ], + [ + -73.481299, + 45.441295 + ], + [ + -73.481973, + 45.441343 + ], + [ + -73.482262, + 45.441363 + ], + [ + -73.482811, + 45.441395 + ], + [ + -73.483146, + 45.441426 + ], + [ + -73.483482, + 45.441503 + ], + [ + -73.483768, + 45.441606 + ], + [ + -73.483774, + 45.441609 + ], + [ + -73.484016, + 45.441723 + ], + [ + -73.484181, + 45.441813 + ], + [ + -73.484668, + 45.442183 + ], + [ + -73.485324, + 45.442682 + ], + [ + -73.485435, + 45.442763 + ], + [ + -73.48577, + 45.442902 + ], + [ + -73.486077, + 45.44301 + ], + [ + -73.486385, + 45.443073 + ], + [ + -73.486658, + 45.4431 + ], + [ + -73.48683, + 45.443109 + ], + [ + -73.487183, + 45.443127 + ], + [ + -73.487333, + 45.44313 + ], + [ + -73.487487, + 45.443132 + ], + [ + -73.490545, + 45.443222 + ], + [ + -73.491559, + 45.443245 + ], + [ + -73.491531, + 45.443618 + ], + [ + -73.491504, + 45.443969 + ], + [ + -73.491285, + 45.444689 + ], + [ + -73.491121, + 45.445196 + ], + [ + -73.491092, + 45.445287 + ], + [ + -73.491055, + 45.445404 + ], + [ + -73.49061, + 45.446822 + ], + [ + -73.490575, + 45.447275 + ], + [ + -73.490565, + 45.447402 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.489956, + 45.447483 + ], + [ + -73.486184, + 45.447402 + ], + [ + -73.485413, + 45.447385 + ], + [ + -73.485334, + 45.447383 + ], + [ + -73.484501, + 45.447365 + ], + [ + -73.483174, + 45.447338 + ], + [ + -73.483047, + 45.447334 + ], + [ + -73.482811, + 45.447302 + ], + [ + -73.4826, + 45.447257 + ], + [ + -73.482392, + 45.447199 + ], + [ + -73.48231, + 45.44732 + ], + [ + -73.482044, + 45.447715 + ], + [ + -73.481672, + 45.448265 + ], + [ + -73.481538, + 45.448436 + ], + [ + -73.481405, + 45.448562 + ], + [ + -73.481319, + 45.448638 + ], + [ + -73.481186, + 45.448724 + ], + [ + -73.480948, + 45.448841 + ], + [ + -73.480707, + 45.44894 + ], + [ + -73.479536, + 45.449357 + ], + [ + -73.479229, + 45.449466 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.478222, + 45.449842 + ], + [ + -73.477921, + 45.449951 + ], + [ + -73.477783, + 45.450014 + ], + [ + -73.477866, + 45.4501 + ], + [ + -73.478024, + 45.450307 + ], + [ + -73.478182, + 45.450577 + ], + [ + -73.4785, + 45.451198 + ], + [ + -73.478751, + 45.451724 + ], + [ + -73.478921, + 45.452116 + ], + [ + -73.479079, + 45.452556 + ], + [ + -73.479123, + 45.452678 + ], + [ + -73.479207, + 45.453038 + ], + [ + -73.479292, + 45.453398 + ], + [ + -73.479352, + 45.453722 + ], + [ + -73.479396, + 45.454042 + ], + [ + -73.47947, + 45.454755 + ], + [ + -73.47953, + 45.455342 + ], + [ + -73.479549, + 45.455666 + ], + [ + -73.479585, + 45.456089 + ], + [ + -73.479606, + 45.456387 + ], + [ + -73.479622, + 45.456606 + ], + [ + -73.479632, + 45.456719 + ], + [ + -73.47972, + 45.457668 + ], + [ + -73.479747, + 45.458082 + ], + [ + -73.479754, + 45.45832 + ], + [ + -73.479732, + 45.458469 + ], + [ + -73.479695, + 45.458689 + ], + [ + -73.479603, + 45.459 + ], + [ + -73.479545, + 45.459171 + ], + [ + -73.479525, + 45.459214 + ], + [ + -73.479465, + 45.459342 + ], + [ + -73.479339, + 45.459576 + ], + [ + -73.479253, + 45.45972 + ], + [ + -73.479162, + 45.45985 + ], + [ + -73.478872, + 45.460205 + ], + [ + -73.478751, + 45.460331 + ], + [ + -73.478345, + 45.460681 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.476671, + 45.461955 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.474373, + 45.468197 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.473978, + 45.468528 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.473245, + 45.468312 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.471475, + 45.468101 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469574, + 45.467137 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.468602, + 45.466372 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.46904, + 45.466278 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467869, + 45.466069 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469319, + 45.467991 + ], + [ + -73.469043, + 45.467983 + ], + [ + -73.468598, + 45.467969 + ], + [ + -73.468434, + 45.467978 + ], + [ + -73.467926, + 45.468045 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.46758, + 45.467757 + ], + [ + -73.467357, + 45.467296 + ], + [ + -73.467335, + 45.467098 + ], + [ + -73.467287, + 45.466921 + ], + [ + -73.46724, + 45.46679 + ], + [ + -73.467201, + 45.466621 + ], + [ + -73.467171, + 45.466457 + ], + [ + -73.467168, + 45.466361 + ], + [ + -73.467171, + 45.466266 + ], + [ + -73.46719, + 45.46616 + ], + [ + -73.467233, + 45.466051 + ], + [ + -73.467286, + 45.465947 + ], + [ + -73.467286, + 45.465946 + ], + [ + -73.467347, + 45.465852 + ], + [ + -73.46743, + 45.465768 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467565, + 45.465647 + ], + [ + -73.467708, + 45.465556 + ], + [ + -73.467899, + 45.465442 + ], + [ + -73.46805, + 45.465387 + ], + [ + -73.468287, + 45.465321 + ], + [ + -73.468514, + 45.465288 + ], + [ + -73.468859, + 45.465256 + ], + [ + -73.469207, + 45.465245 + ], + [ + -73.471824, + 45.46534 + ], + [ + -73.47278, + 45.465351 + ], + [ + -73.473923, + 45.465346 + ], + [ + -73.474792, + 45.465284 + ], + [ + -73.476448, + 45.465339 + ], + [ + -73.478069, + 45.465419 + ], + [ + -73.47931, + 45.465481 + ], + [ + -73.480681, + 45.465584 + ], + [ + -73.481658, + 45.465665 + ], + [ + -73.483804, + 45.465854 + ], + [ + -73.485886, + 45.466123 + ], + [ + -73.488038, + 45.466444 + ], + [ + -73.489088, + 45.466602 + ], + [ + -73.491585, + 45.46694 + ], + [ + -73.494707, + 45.467307 + ], + [ + -73.494917, + 45.467332 + ], + [ + -73.494999, + 45.467342 + ], + [ + -73.497318, + 45.467635 + ], + [ + -73.501976, + 45.468162 + ], + [ + -73.50546, + 45.468524 + ], + [ + -73.508994, + 45.468874 + ], + [ + -73.510795, + 45.469064 + ], + [ + -73.516615, + 45.469606 + ], + [ + -73.520513, + 45.469901 + ], + [ + -73.524263, + 45.470138 + ], + [ + -73.526895, + 45.470234 + ], + [ + -73.536203, + 45.470502 + ], + [ + -73.537479, + 45.470611 + ], + [ + -73.540035, + 45.470737 + ], + [ + -73.540574, + 45.470754 + ], + [ + -73.541689, + 45.470806 + ], + [ + -73.54236, + 45.470938 + ], + [ + -73.542685, + 45.471019 + ], + [ + -73.543056, + 45.471172 + ], + [ + -73.543235, + 45.471297 + ], + [ + -73.543427, + 45.47153 + ], + [ + -73.543495, + 45.471781 + ], + [ + -73.543487, + 45.471977 + ], + [ + -73.543374, + 45.472246 + ], + [ + -73.543123, + 45.472648 + ], + [ + -73.543053, + 45.472745 + ], + [ + -73.543034, + 45.472772 + ], + [ + -73.543013, + 45.472801 + ], + [ + -73.542473, + 45.473549 + ], + [ + -73.542275, + 45.473832 + ], + [ + -73.542255, + 45.473861 + ], + [ + -73.542175, + 45.473976 + ], + [ + -73.542016, + 45.474229 + ], + [ + -73.541794, + 45.474618 + ], + [ + -73.541458, + 45.475221 + ], + [ + -73.541094, + 45.47588 + ], + [ + -73.540722, + 45.476557 + ], + [ + -73.540393, + 45.477154 + ], + [ + -73.540141, + 45.477612 + ], + [ + -73.539989, + 45.477937 + ], + [ + -73.539912, + 45.478117 + ], + [ + -73.53962, + 45.478792 + ], + [ + -73.539453, + 45.479242 + ], + [ + -73.539011, + 45.480452 + ], + [ + -73.538771, + 45.481137 + ], + [ + -73.538372, + 45.4823 + ], + [ + -73.537796, + 45.483909 + ], + [ + -73.537682, + 45.484235 + ], + [ + -73.537533, + 45.484742 + ], + [ + -73.537501, + 45.485252 + ], + [ + -73.537565, + 45.485765 + ], + [ + -73.537725, + 45.486206 + ], + [ + -73.537953, + 45.486613 + ], + [ + -73.538211, + 45.486968 + ], + [ + -73.538564, + 45.487319 + ], + [ + -73.538991, + 45.48766 + ], + [ + -73.539413, + 45.487933 + ], + [ + -73.540409, + 45.488352 + ], + [ + -73.540999, + 45.488508 + ], + [ + -73.545779, + 45.489431 + ], + [ + -73.547415, + 45.489732 + ], + [ + -73.548107, + 45.48986 + ], + [ + -73.549549, + 45.490154 + ], + [ + -73.549968, + 45.490239 + ], + [ + -73.550646, + 45.490459 + ], + [ + -73.551261, + 45.490742 + ], + [ + -73.55163, + 45.490924 + ], + [ + -73.551996, + 45.491154 + ], + [ + -73.552466, + 45.491495 + ], + [ + -73.552812, + 45.491812 + ], + [ + -73.553225, + 45.492293 + ], + [ + -73.553459, + 45.492647 + ], + [ + -73.553701, + 45.493121 + ], + [ + -73.553714, + 45.493155 + ], + [ + -73.554005, + 45.493935 + ], + [ + -73.554229, + 45.494495 + ], + [ + -73.55441, + 45.494962 + ], + [ + -73.554709, + 45.495574 + ], + [ + -73.554963, + 45.495825 + ], + [ + -73.555225, + 45.496022 + ], + [ + -73.555665, + 45.496222 + ], + [ + -73.557268, + 45.496821 + ], + [ + -73.557934, + 45.497074 + ], + [ + -73.558499, + 45.497286 + ], + [ + -73.558754, + 45.497382 + ], + [ + -73.559665, + 45.497799 + ], + [ + -73.56055, + 45.498258 + ], + [ + -73.561247, + 45.498577 + ], + [ + -73.561574, + 45.498701 + ], + [ + -73.561917, + 45.498838 + ], + [ + -73.562165, + 45.49894 + ], + [ + -73.562545, + 45.499119 + ], + [ + -73.562571, + 45.499093 + ], + [ + -73.562654, + 45.499004 + ], + [ + -73.563341, + 45.498281 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.56431, + 45.497835 + ], + [ + -73.565142, + 45.498217 + ], + [ + -73.565601, + 45.498443 + ], + [ + -73.565748, + 45.49831 + ], + [ + -73.565849, + 45.498292 + ], + [ + -73.566051, + 45.498359 + ], + [ + -73.566361, + 45.498471 + ], + [ + -73.566492, + 45.498485 + ], + [ + -73.566611, + 45.498345 + ] + ] + }, + "id": 123, + "properties": { + "id": "f2c17895-ee0b-4936-9d82-4cac5f61195b", + "data": { + "gtfs": { + "shape_id": "47_1_A" + }, + "segments": [ + { + "distanceMeters": 160, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 427, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 317, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 749, + "travelTimeSeconds": 95 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 623, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 10687, + "travelTimeSeconds": 832 + }, + { + "distanceMeters": 831, + "travelTimeSeconds": 300 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 198, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17923, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8693.922388021205, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.05, + "travelTimeWithoutDwellTimesSeconds": 1980, + "operatingTimeWithLayoverTimeSeconds": 2178, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1980, + "operatingSpeedWithLayoverMetersPerSecond": 8.23, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.05 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "91b595a9-abca-41fb-9723-f6ca055bd16b", + "8f4ce296-9511-42d4-a138-f52bb761830f", + "0a5b3fec-6725-4b10-9b81-ad6506fe82d2", + "a532b39a-66ec-444f-abc1-766787d9387c", + "3518bfc1-7b5d-4295-9440-6fc17dd6b559", + "e9dbe1ee-244a-4556-8fa1-052d6f2dee5e", + "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", + "56755a3d-6779-4355-8b48-27271fb6ce0b", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "601c2147-2f83-405b-be6a-8fe05117cb43", + "91b595a9-abca-41fb-9723-f6ca055bd16b", + "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", + "4509b80b-76a5-49de-acb2-533a50bafac5", + "c25adb1f-635e-4881-a89d-af8a9ea5ca92", + "87774b57-5ee3-418d-948c-ba4db73d3893", + "1ea7db5e-3ee6-4553-9276-7c24296c866d", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "7b9bfdae-7d0d-4463-a7d7-1a62138b83b5", + "461a5d33-406e-481a-b773-6e450c48b670", + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" + ], + "stops": [], + "line_id": "7fb41c77-2376-4573-8588-47eaa467011a", + "segments": [ + 0, + 12, + 18, + 21, + 29, + 41, + 45, + 48, + 52, + 57, + 66, + 74, + 77, + 86, + 92, + 96, + 106, + 113, + 115, + 143, + 152, + 159, + 178, + 180, + 324 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 123, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.482262, + 45.447391 + ], + [ + -73.48231, + 45.44732 + ], + [ + -73.482392, + 45.447199 + ], + [ + -73.482245, + 45.447145 + ], + [ + -73.482082, + 45.447077 + ], + [ + -73.481942, + 45.447005 + ], + [ + -73.481839, + 45.446947 + ], + [ + -73.481672, + 45.446839 + ], + [ + -73.481644, + 45.446821 + ], + [ + -73.481469, + 45.446695 + ], + [ + -73.481319, + 45.446551 + ], + [ + -73.481245, + 45.446479 + ], + [ + -73.481153, + 45.446364 + ], + [ + -73.481089, + 45.446285 + ], + [ + -73.480926, + 45.445993 + ], + [ + -73.480839, + 45.445718 + ], + [ + -73.480811, + 45.445444 + ], + [ + -73.480848, + 45.445021 + ], + [ + -73.481, + 45.443777 + ], + [ + -73.481012, + 45.443676 + ], + [ + -73.481219, + 45.441988 + ], + [ + -73.481285, + 45.441413 + ], + [ + -73.481299, + 45.441295 + ], + [ + -73.481973, + 45.441343 + ], + [ + -73.482262, + 45.441363 + ], + [ + -73.482811, + 45.441395 + ], + [ + -73.483146, + 45.441426 + ], + [ + -73.483482, + 45.441503 + ], + [ + -73.483768, + 45.441606 + ], + [ + -73.48378, + 45.441612 + ], + [ + -73.484016, + 45.441723 + ], + [ + -73.484181, + 45.441813 + ], + [ + -73.484668, + 45.442183 + ], + [ + -73.485324, + 45.442682 + ], + [ + -73.485435, + 45.442763 + ], + [ + -73.48577, + 45.442902 + ], + [ + -73.486077, + 45.44301 + ], + [ + -73.486385, + 45.443073 + ], + [ + -73.486658, + 45.4431 + ], + [ + -73.48683, + 45.443109 + ], + [ + -73.487183, + 45.443127 + ], + [ + -73.487344, + 45.44313 + ], + [ + -73.487487, + 45.443132 + ], + [ + -73.490545, + 45.443222 + ], + [ + -73.491559, + 45.443245 + ], + [ + -73.49153, + 45.443628 + ], + [ + -73.491504, + 45.443969 + ], + [ + -73.491285, + 45.444689 + ], + [ + -73.491118, + 45.445206 + ], + [ + -73.491092, + 45.445287 + ], + [ + -73.491055, + 45.445404 + ], + [ + -73.49061, + 45.446822 + ], + [ + -73.490574, + 45.447287 + ], + [ + -73.490565, + 45.447402 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.489956, + 45.447483 + ], + [ + -73.486184, + 45.447402 + ], + [ + -73.485392, + 45.447385 + ], + [ + -73.485334, + 45.447383 + ], + [ + -73.484501, + 45.447365 + ], + [ + -73.483174, + 45.447338 + ], + [ + -73.483047, + 45.447334 + ], + [ + -73.482811, + 45.447302 + ], + [ + -73.4826, + 45.447257 + ], + [ + -73.482392, + 45.447199 + ], + [ + -73.48231, + 45.44732 + ], + [ + -73.482034, + 45.44773 + ], + [ + -73.481672, + 45.448265 + ], + [ + -73.481538, + 45.448436 + ], + [ + -73.481405, + 45.448562 + ], + [ + -73.481319, + 45.448638 + ], + [ + -73.481186, + 45.448724 + ], + [ + -73.480948, + 45.448841 + ], + [ + -73.480707, + 45.44894 + ], + [ + -73.479513, + 45.449365 + ], + [ + -73.479229, + 45.449466 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.478198, + 45.44985 + ], + [ + -73.477921, + 45.449951 + ], + [ + -73.477783, + 45.450014 + ], + [ + -73.477866, + 45.4501 + ], + [ + -73.478024, + 45.450307 + ], + [ + -73.478182, + 45.450577 + ], + [ + -73.4785, + 45.451198 + ], + [ + -73.478751, + 45.451724 + ], + [ + -73.478921, + 45.452116 + ], + [ + -73.479087, + 45.452577 + ], + [ + -73.479123, + 45.452678 + ], + [ + -73.479207, + 45.453038 + ], + [ + -73.479292, + 45.453398 + ], + [ + -73.479352, + 45.453722 + ], + [ + -73.479396, + 45.454042 + ], + [ + -73.479472, + 45.454777 + ], + [ + -73.47953, + 45.455342 + ], + [ + -73.479549, + 45.455666 + ], + [ + -73.479585, + 45.456089 + ], + [ + -73.479608, + 45.45641 + ], + [ + -73.479622, + 45.456606 + ], + [ + -73.479632, + 45.456719 + ], + [ + -73.47972, + 45.457668 + ], + [ + -73.479747, + 45.458082 + ], + [ + -73.479754, + 45.45832 + ], + [ + -73.479732, + 45.458469 + ], + [ + -73.479695, + 45.458689 + ], + [ + -73.479603, + 45.459 + ], + [ + -73.479545, + 45.459171 + ], + [ + -73.479513, + 45.459238 + ], + [ + -73.479465, + 45.459342 + ], + [ + -73.479339, + 45.459576 + ], + [ + -73.479253, + 45.45972 + ], + [ + -73.479162, + 45.45985 + ], + [ + -73.478872, + 45.460205 + ], + [ + -73.478751, + 45.460331 + ], + [ + -73.478321, + 45.460701 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.476645, + 45.461976 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.474375, + 45.468229 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473876, + 45.468507 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.473204, + 45.468295 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.471427, + 45.468098 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469574, + 45.467137 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469043, + 45.46624 + ] + ] + }, + "id": 124, + "properties": { + "id": "9135afa3-6a72-47bb-a17c-2f1d9254451f", + "data": { + "gtfs": { + "shape_id": "47_2_A" + }, + "segments": [ + { + "distanceMeters": 160, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 427, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 317, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 750, + "travelTimeSeconds": 95 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 623, + "travelTimeSeconds": 80 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6299, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2293.7049268168794, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.5, + "travelTimeWithoutDwellTimesSeconds": 840, + "operatingTimeWithLayoverTimeSeconds": 1020, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 840, + "operatingSpeedWithLayoverMetersPerSecond": 6.17, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.5 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "91b595a9-abca-41fb-9723-f6ca055bd16b", + "8f4ce296-9511-42d4-a138-f52bb761830f", + "0a5b3fec-6725-4b10-9b81-ad6506fe82d2", + "a532b39a-66ec-444f-abc1-766787d9387c", + "3518bfc1-7b5d-4295-9440-6fc17dd6b559", + "e9dbe1ee-244a-4556-8fa1-052d6f2dee5e", + "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", + "56755a3d-6779-4355-8b48-27271fb6ce0b", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "601c2147-2f83-405b-be6a-8fe05117cb43", + "91b595a9-abca-41fb-9723-f6ca055bd16b", + "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", + "4509b80b-76a5-49de-acb2-533a50bafac5", + "c25adb1f-635e-4881-a89d-af8a9ea5ca92", + "87774b57-5ee3-418d-948c-ba4db73d3893", + "1ea7db5e-3ee6-4553-9276-7c24296c866d", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "7fb41c77-2376-4573-8588-47eaa467011a", + "segments": [ + 0, + 12, + 18, + 21, + 29, + 41, + 45, + 48, + 52, + 57, + 66, + 74, + 77, + 86, + 92, + 96, + 106, + 113, + 115, + 143, + 152, + 159 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 124, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.566611, + 45.498345 + ], + [ + -73.566738, + 45.498195 + ], + [ + -73.566628, + 45.49808 + ], + [ + -73.566306, + 45.497931 + ], + [ + -73.566253, + 45.497841 + ], + [ + -73.56638, + 45.497699 + ], + [ + -73.566016, + 45.497523 + ], + [ + -73.564691, + 45.496892 + ], + [ + -73.563974, + 45.496566 + ], + [ + -73.562701, + 45.495919 + ], + [ + -73.562646, + 45.496027 + ], + [ + -73.562481, + 45.496317 + ], + [ + -73.562435, + 45.496383 + ], + [ + -73.562367, + 45.496479 + ], + [ + -73.562274, + 45.496658 + ], + [ + -73.562038, + 45.497108 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.561218, + 45.497864 + ], + [ + -73.561033, + 45.497765 + ], + [ + -73.560139, + 45.497347 + ], + [ + -73.559235, + 45.49696 + ], + [ + -73.55917, + 45.496938 + ], + [ + -73.558356, + 45.496631 + ], + [ + -73.558148, + 45.496557 + ], + [ + -73.557604, + 45.496364 + ], + [ + -73.556782, + 45.49606 + ], + [ + -73.555745, + 45.495673 + ], + [ + -73.555351, + 45.495512 + ], + [ + -73.555133, + 45.495401 + ], + [ + -73.554916, + 45.495262 + ], + [ + -73.554768, + 45.495125 + ], + [ + -73.55465, + 45.494994 + ], + [ + -73.553944, + 45.493258 + ], + [ + -73.553818, + 45.492971 + ], + [ + -73.553465, + 45.492338 + ], + [ + -73.552977, + 45.491759 + ], + [ + -73.552502, + 45.491344 + ], + [ + -73.551956, + 45.490962 + ], + [ + -73.551651, + 45.490791 + ], + [ + -73.551074, + 45.490513 + ], + [ + -73.550682, + 45.490367 + ], + [ + -73.550312, + 45.490228 + ], + [ + -73.54956, + 45.490034 + ], + [ + -73.548355, + 45.489798 + ], + [ + -73.542648, + 45.488704 + ], + [ + -73.541878, + 45.488554 + ], + [ + -73.541083, + 45.488397 + ], + [ + -73.540636, + 45.488282 + ], + [ + -73.540145, + 45.488119 + ], + [ + -73.539582, + 45.48786 + ], + [ + -73.539557, + 45.487845 + ], + [ + -73.539239, + 45.487663 + ], + [ + -73.538946, + 45.487462 + ], + [ + -73.538619, + 45.487192 + ], + [ + -73.538304, + 45.486863 + ], + [ + -73.538089, + 45.486564 + ], + [ + -73.537862, + 45.486139 + ], + [ + -73.537796, + 45.485958 + ], + [ + -73.537731, + 45.485785 + ], + [ + -73.53767, + 45.485461 + ], + [ + -73.537646, + 45.485264 + ], + [ + -73.537653, + 45.484914 + ], + [ + -73.537707, + 45.484604 + ], + [ + -73.537881, + 45.484168 + ], + [ + -73.537968, + 45.483893 + ], + [ + -73.538058, + 45.483623 + ], + [ + -73.539557, + 45.479354 + ], + [ + -73.53982, + 45.478652 + ], + [ + -73.540179, + 45.47782 + ], + [ + -73.540481, + 45.477177 + ], + [ + -73.540578, + 45.477027 + ], + [ + -73.540928, + 45.476409 + ], + [ + -73.5413, + 45.475732 + ], + [ + -73.541747, + 45.474937 + ], + [ + -73.542136, + 45.474264 + ], + [ + -73.542539, + 45.47363 + ], + [ + -73.543159, + 45.472786 + ], + [ + -73.543162, + 45.472781 + ], + [ + -73.5432, + 45.472729 + ], + [ + -73.543381, + 45.472482 + ], + [ + -73.543908, + 45.471834 + ], + [ + -73.544604, + 45.471016 + ], + [ + -73.54479, + 45.470824 + ], + [ + -73.544929, + 45.470679 + ], + [ + -73.54509, + 45.470477 + ], + [ + -73.545159, + 45.470391 + ], + [ + -73.545162, + 45.470289 + ], + [ + -73.54518, + 45.470102 + ], + [ + -73.54513, + 45.469912 + ], + [ + -73.545032, + 45.469762 + ], + [ + -73.544829, + 45.469589 + ], + [ + -73.544396, + 45.469456 + ], + [ + -73.544223, + 45.469408 + ], + [ + -73.544, + 45.469414 + ], + [ + -73.54385, + 45.469436 + ], + [ + -73.543665, + 45.469485 + ], + [ + -73.543125, + 45.469658 + ], + [ + -73.542795, + 45.46978 + ], + [ + -73.542335, + 45.469915 + ], + [ + -73.542042, + 45.469974 + ], + [ + -73.541634, + 45.469988 + ], + [ + -73.538583, + 45.470121 + ], + [ + -73.536645, + 45.47012 + ], + [ + -73.534843, + 45.470106 + ], + [ + -73.531663, + 45.470044 + ], + [ + -73.528901, + 45.469979 + ], + [ + -73.525636, + 45.469864 + ], + [ + -73.520215, + 45.469565 + ], + [ + -73.516228, + 45.469261 + ], + [ + -73.50737, + 45.468395 + ], + [ + -73.501604, + 45.467786 + ], + [ + -73.499262, + 45.467514 + ], + [ + -73.493921, + 45.466881 + ], + [ + -73.491932, + 45.466645 + ], + [ + -73.489852, + 45.466348 + ], + [ + -73.489119, + 45.46624 + ], + [ + -73.489027, + 45.466226 + ], + [ + -73.486848, + 45.465931 + ], + [ + -73.485714, + 45.465782 + ], + [ + -73.482904, + 45.465439 + ], + [ + -73.482123, + 45.46537 + ], + [ + -73.479736, + 45.465191 + ], + [ + -73.47968, + 45.465187 + ], + [ + -73.478363, + 45.465119 + ], + [ + -73.477796, + 45.465089 + ], + [ + -73.475753, + 45.464994 + ], + [ + -73.474695, + 45.464942 + ], + [ + -73.474262, + 45.464921 + ], + [ + -73.474113, + 45.464916 + ], + [ + -73.473291, + 45.464882 + ], + [ + -73.472501, + 45.46485 + ], + [ + -73.471447, + 45.46476 + ], + [ + -73.469875, + 45.464616 + ], + [ + -73.469333, + 45.464554 + ], + [ + -73.46902, + 45.464515 + ], + [ + -73.468704, + 45.464452 + ], + [ + -73.468392, + 45.464367 + ], + [ + -73.468066, + 45.46424 + ], + [ + -73.467826, + 45.46409 + ], + [ + -73.467593, + 45.463944 + ], + [ + -73.467415, + 45.463833 + ], + [ + -73.467133, + 45.463667 + ], + [ + -73.466953, + 45.463591 + ], + [ + -73.466529, + 45.463529 + ], + [ + -73.466232, + 45.463594 + ], + [ + -73.466092, + 45.463623 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.468838, + 45.466382 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469045, + 45.46621 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467773, + 45.466066 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469327, + 45.468092 + ], + [ + -73.469492, + 45.4681 + ], + [ + -73.470299, + 45.468145 + ], + [ + -73.471107, + 45.468184 + ], + [ + -73.471238, + 45.46819 + ], + [ + -73.471526, + 45.468208 + ], + [ + -73.471971, + 45.468232 + ], + [ + -73.472194, + 45.468244 + ], + [ + -73.472485, + 45.468257 + ], + [ + -73.472597, + 45.468262 + ], + [ + -73.472728, + 45.468276 + ], + [ + -73.472834, + 45.468294 + ], + [ + -73.472877, + 45.468307 + ], + [ + -73.473025, + 45.468348 + ], + [ + -73.473214, + 45.468424 + ], + [ + -73.473673, + 45.468604 + ], + [ + -73.473905, + 45.468649 + ], + [ + -73.474077, + 45.468676 + ], + [ + -73.474259, + 45.46869 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474544, + 45.468492 + ], + [ + -73.474545, + 45.468488 + ], + [ + -73.474528, + 45.468236 + ], + [ + -73.474508, + 45.467936 + ], + [ + -73.474508, + 45.467294 + ], + [ + -73.474542, + 45.4665 + ], + [ + -73.474546, + 45.466404 + ], + [ + -73.474554, + 45.466199 + ], + [ + -73.474621, + 45.465194 + ], + [ + -73.474664, + 45.464506 + ], + [ + -73.474669, + 45.464397 + ], + [ + -73.474734, + 45.464067 + ], + [ + -73.474884, + 45.463697 + ], + [ + -73.475002, + 45.463492 + ], + [ + -73.47522, + 45.463212 + ], + [ + -73.475408, + 45.463039 + ], + [ + -73.47556, + 45.462909 + ], + [ + -73.475821, + 45.462711 + ], + [ + -73.476105, + 45.462495 + ], + [ + -73.476465, + 45.462241 + ], + [ + -73.476557, + 45.462176 + ], + [ + -73.477249, + 45.461685 + ], + [ + -73.478242, + 45.460935 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.47888, + 45.460399 + ], + [ + -73.479008, + 45.460264 + ], + [ + -73.479302, + 45.459904 + ], + [ + -73.479398, + 45.459769 + ], + [ + -73.479488, + 45.459616 + ], + [ + -73.479616, + 45.459382 + ], + [ + -73.479654, + 45.459298 + ], + [ + -73.479699, + 45.459202 + ], + [ + -73.47976, + 45.459027 + ], + [ + -73.479776, + 45.458968 + ], + [ + -73.479808, + 45.458865 + ], + [ + -73.479852, + 45.458707 + ], + [ + -73.479891, + 45.458478 + ], + [ + -73.479913, + 45.458325 + ], + [ + -73.479923, + 45.458145 + ], + [ + -73.479926, + 45.458073 + ], + [ + -73.479893, + 45.457659 + ], + [ + -73.479818, + 45.456877 + ], + [ + -73.479803, + 45.456723 + ], + [ + -73.479792, + 45.456611 + ], + [ + -73.479747, + 45.456084 + ], + [ + -73.479731, + 45.4559 + ], + [ + -73.479696, + 45.455396 + ], + [ + -73.479645, + 45.454842 + ], + [ + -73.479629, + 45.454671 + ], + [ + -73.479566, + 45.454028 + ], + [ + -73.479521, + 45.453709 + ], + [ + -73.47946, + 45.45338 + ], + [ + -73.479374, + 45.453016 + ], + [ + -73.479305, + 45.452757 + ], + [ + -73.479278, + 45.452656 + ], + [ + -73.479074, + 45.452084 + ], + [ + -73.478902, + 45.451688 + ], + [ + -73.478649, + 45.451162 + ], + [ + -73.478451, + 45.450779 + ], + [ + -73.47833, + 45.450536 + ], + [ + -73.478167, + 45.450257 + ], + [ + -73.478006, + 45.450048 + ], + [ + -73.478004, + 45.450046 + ], + [ + -73.477921, + 45.449951 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.479229, + 45.449466 + ], + [ + -73.479306, + 45.449438 + ], + [ + -73.480707, + 45.44894 + ], + [ + -73.480948, + 45.448841 + ], + [ + -73.481186, + 45.448724 + ], + [ + -73.481319, + 45.448638 + ], + [ + -73.481405, + 45.448562 + ], + [ + -73.481538, + 45.448436 + ], + [ + -73.481602, + 45.448354 + ], + [ + -73.481672, + 45.448265 + ], + [ + -73.482262, + 45.447391 + ] + ] + }, + "id": 125, + "properties": { + "id": "2dc8c0fb-42f4-4440-966e-c416cca8e772", + "data": { + "gtfs": { + "shape_id": "47_1_R" + }, + "segments": [ + { + "distanceMeters": 1006, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 10885, + "travelTimeSeconds": 780 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 518, + "travelTimeSeconds": 79 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 936, + "travelTimeSeconds": 143 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 119, + "travelTimeSeconds": 23 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 15501, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8693.922388021205, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.94, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 8.91, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.94 + }, + "mode": "bus", + "name": "Sect. R Brossard", + "color": "#A32638", + "nodes": [ + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", + "0f8ef5e7-ff7c-4097-8d8a-9727f12190ea", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "7b9bfdae-7d0d-4463-a7d7-1a62138b83b5", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", + "87774b57-5ee3-418d-948c-ba4db73d3893", + "c25adb1f-635e-4881-a89d-af8a9ea5ca92", + "4509b80b-76a5-49de-acb2-533a50bafac5", + "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", + "3e4f29c9-7bf2-4ca4-9cb4-2a3c4710cea6", + "91b595a9-abca-41fb-9723-f6ca055bd16b" + ], + "stops": [], + "line_id": "7fb41c77-2376-4573-8588-47eaa467011a", + "segments": [ + 0, + 23, + 173, + 175, + 194, + 199, + 232, + 235, + 243, + 254, + 260, + 266, + 274, + 279, + 286 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 125, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469043, + 45.46624 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469327, + 45.468092 + ], + [ + -73.469492, + 45.4681 + ], + [ + -73.470299, + 45.468145 + ], + [ + -73.471072, + 45.468182 + ], + [ + -73.471238, + 45.46819 + ], + [ + -73.471526, + 45.468208 + ], + [ + -73.472194, + 45.468244 + ], + [ + -73.472439, + 45.468255 + ], + [ + -73.472597, + 45.468262 + ], + [ + -73.472654, + 45.468268 + ], + [ + -73.472728, + 45.468276 + ], + [ + -73.472834, + 45.468294 + ], + [ + -73.472877, + 45.468307 + ], + [ + -73.473025, + 45.468348 + ], + [ + -73.473214, + 45.468424 + ], + [ + -73.473673, + 45.468604 + ], + [ + -73.473905, + 45.468649 + ], + [ + -73.474077, + 45.468676 + ], + [ + -73.474259, + 45.46869 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474544, + 45.468492 + ], + [ + -73.474545, + 45.468488 + ], + [ + -73.474528, + 45.468236 + ], + [ + -73.474508, + 45.467936 + ], + [ + -73.474508, + 45.467294 + ], + [ + -73.474542, + 45.4665 + ], + [ + -73.474546, + 45.466404 + ], + [ + -73.474554, + 45.466199 + ], + [ + -73.474621, + 45.465194 + ], + [ + -73.474664, + 45.464506 + ], + [ + -73.474669, + 45.464397 + ], + [ + -73.474734, + 45.464067 + ], + [ + -73.474884, + 45.463697 + ], + [ + -73.475002, + 45.463492 + ], + [ + -73.47522, + 45.463212 + ], + [ + -73.475408, + 45.463039 + ], + [ + -73.47556, + 45.462909 + ], + [ + -73.475821, + 45.462711 + ], + [ + -73.476105, + 45.462495 + ], + [ + -73.476557, + 45.462176 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476053, + 45.461855 + ], + [ + -73.475666, + 45.461613 + ], + [ + -73.475315, + 45.461869 + ], + [ + -73.475116, + 45.462034 + ], + [ + -73.474994, + 45.462135 + ], + [ + -73.474502, + 45.462639 + ], + [ + -73.474394, + 45.46281 + ], + [ + -73.474225, + 45.463052 + ], + [ + -73.47413, + 45.463142 + ], + [ + -73.47412, + 45.463148 + ], + [ + -73.474018, + 45.46321 + ], + [ + -73.472903, + 45.464108 + ], + [ + -73.472811, + 45.464181 + ], + [ + -73.472107, + 45.4637 + ], + [ + -73.471841, + 45.463592 + ], + [ + -73.471685, + 45.463568 + ], + [ + -73.471666, + 45.463565 + ], + [ + -73.471494, + 45.463556 + ], + [ + -73.471257, + 45.463547 + ], + [ + -73.470687, + 45.463533 + ], + [ + -73.469164, + 45.463481 + ], + [ + -73.468972, + 45.463474 + ], + [ + -73.468884, + 45.463461 + ], + [ + -73.468833, + 45.46342 + ], + [ + -73.468836, + 45.463308 + ], + [ + -73.468837, + 45.463254 + ], + [ + -73.468876, + 45.462738 + ], + [ + -73.46897, + 45.46149 + ], + [ + -73.46901, + 45.460865 + ], + [ + -73.469029, + 45.46061 + ], + [ + -73.469045, + 45.460397 + ], + [ + -73.469046, + 45.459978 + ], + [ + -73.46901, + 45.459861 + ], + [ + -73.468938, + 45.459704 + ], + [ + -73.468742, + 45.459506 + ], + [ + -73.468425, + 45.459258 + ], + [ + -73.468212, + 45.459096 + ], + [ + -73.468158, + 45.459039 + ], + [ + -73.468056, + 45.45893 + ], + [ + -73.467979, + 45.458754 + ], + [ + -73.467956, + 45.458669 + ], + [ + -73.467971, + 45.458525 + ], + [ + -73.467975, + 45.458309 + ], + [ + -73.467993, + 45.458208 + ], + [ + -73.468021, + 45.458057 + ], + [ + -73.468109, + 45.457211 + ], + [ + -73.468147, + 45.457005 + ], + [ + -73.468158, + 45.456945 + ], + [ + -73.468342, + 45.456404 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468443, + 45.456109 + ], + [ + -73.468739, + 45.455281 + ], + [ + -73.468828, + 45.455033 + ], + [ + -73.468944, + 45.454656 + ], + [ + -73.469059, + 45.454371 + ], + [ + -73.469093, + 45.454287 + ], + [ + -73.469306, + 45.453787 + ], + [ + -73.469579, + 45.453148 + ], + [ + -73.469962, + 45.452249 + ], + [ + -73.470381, + 45.451277 + ], + [ + -73.470498, + 45.451021 + ], + [ + -73.470665, + 45.450674 + ], + [ + -73.470688, + 45.450625 + ], + [ + -73.470954, + 45.450197 + ], + [ + -73.471118, + 45.449963 + ], + [ + -73.471258, + 45.449752 + ], + [ + -73.471364, + 45.449599 + ], + [ + -73.471456, + 45.449523 + ], + [ + -73.471562, + 45.449433 + ], + [ + -73.471718, + 45.449347 + ], + [ + -73.471866, + 45.449284 + ], + [ + -73.471995, + 45.449248 + ], + [ + -73.472128, + 45.449217 + ], + [ + -73.47242, + 45.449145 + ], + [ + -73.472583, + 45.449086 + ], + [ + -73.472758, + 45.448996 + ], + [ + -73.472948, + 45.448844 + ], + [ + -73.47303, + 45.448749 + ], + [ + -73.47338, + 45.448205 + ], + [ + -73.473437, + 45.448115 + ], + [ + -73.473507, + 45.448007 + ], + [ + -73.473833, + 45.447525 + ], + [ + -73.473962, + 45.447314 + ], + [ + -73.474095, + 45.447058 + ], + [ + -73.474171, + 45.446882 + ], + [ + -73.474217, + 45.446698 + ], + [ + -73.474269, + 45.446255 + ], + [ + -73.474281, + 45.446153 + ], + [ + -73.474377, + 45.444612 + ], + [ + -73.474384, + 45.444507 + ], + [ + -73.474438, + 45.443521 + ], + [ + -73.474469, + 45.443314 + ], + [ + -73.474541, + 45.443044 + ], + [ + -73.474682, + 45.442761 + ], + [ + -73.474902, + 45.442388 + ], + [ + -73.475039, + 45.44219 + ], + [ + -73.475115, + 45.442091 + ], + [ + -73.475247, + 45.441942 + ], + [ + -73.475479, + 45.441749 + ], + [ + -73.475658, + 45.441634 + ], + [ + -73.475703, + 45.441605 + ], + [ + -73.475852, + 45.44151 + ], + [ + -73.476413, + 45.441313 + ], + [ + -73.476584, + 45.441272 + ], + [ + -73.47678, + 45.441236 + ], + [ + -73.477021, + 45.4412 + ], + [ + -73.477247, + 45.441191 + ], + [ + -73.477718, + 45.441194 + ], + [ + -73.478107, + 45.441196 + ], + [ + -73.479034, + 45.441203 + ], + [ + -73.479817, + 45.44121 + ], + [ + -73.480147, + 45.441223 + ], + [ + -73.480968, + 45.441277 + ], + [ + -73.481107, + 45.441286 + ], + [ + -73.481299, + 45.441295 + ], + [ + -73.48139, + 45.440598 + ], + [ + -73.481487, + 45.439784 + ], + [ + -73.481519, + 45.439469 + ], + [ + -73.481531, + 45.439172 + ], + [ + -73.481538, + 45.438613 + ] + ] + }, + "id": 126, + "properties": { + "id": "0e73c9cf-536a-4ec9-b36d-a83270ecf019", + "data": { + "gtfs": { + "shape_id": "49_2_R" + }, + "segments": [ + { + "distanceMeters": 629, + "travelTimeSeconds": 106 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 1003, + "travelTimeSeconds": 169 + }, + { + "distanceMeters": 104, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 96, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 363, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 65 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5838, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3213.4164872454244, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.08, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 5.12, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.08 + }, + "mode": "bus", + "name": "Sect. R Brossard", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "06992afa-6d7e-4650-bffc-5a747de5860c", + "7389acbe-1784-4fea-a2ab-a4a9c9239e83", + "70ace55a-2f3c-410b-8740-bea06ecb9924", + "71ffac32-604a-4260-b51e-c427856a20c4", + "f872f4da-bae9-485b-a2fb-ae01787389fc", + "f045bfca-885e-4fa6-be24-3e8f1855457a", + "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", + "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", + "ca62a640-5508-4ced-94a0-1f22107c57c9", + "d5176685-5789-4135-ac00-ee677cfb093a", + "e21c6436-090b-4893-a347-5a67018da073", + "23085815-2dff-4082-9402-38931522fb99", + "9d8d74b7-fc1f-4af5-a4a4-0cee1ee7b556", + "aebecb3d-b7f4-4a39-9b68-19a1c1a3b2b2", + "eab0f5d6-db57-4bf2-a26d-a49e7fe11c54", + "972f2e12-8185-4823-8ce3-2c965170ad9a", + "ca880d29-2a91-4666-9ed1-c2825e5165f2", + "a532b39a-66ec-444f-abc1-766787d9387c", + "205aad7d-06ec-4492-b7ed-ac8ab79f10b2" + ], + "stops": [], + "line_id": "7a4e0a54-3576-4fd4-8663-468d225b84ff", + "segments": [ + 0, + 20, + 24, + 60, + 63, + 69, + 71, + 75, + 80, + 89, + 97, + 103, + 108, + 114, + 117, + 121, + 138, + 146, + 148, + 159, + 167, + 172 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 126, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.481538, + 45.438613 + ], + [ + -73.48154, + 45.438492 + ], + [ + -73.481571, + 45.437827 + ], + [ + -73.481572, + 45.437776 + ], + [ + -73.481581, + 45.437111 + ], + [ + -73.481588, + 45.436691 + ], + [ + -73.48159, + 45.436549 + ], + [ + -73.481583, + 45.435531 + ], + [ + -73.481582, + 45.43541 + ], + [ + -73.482932, + 45.435402 + ], + [ + -73.484572, + 45.435388 + ], + [ + -73.484708, + 45.435387 + ], + [ + -73.487428, + 45.435365 + ], + [ + -73.487529, + 45.435364 + ], + [ + -73.487766, + 45.435362 + ], + [ + -73.488499, + 45.435353 + ], + [ + -73.489074, + 45.435353 + ], + [ + -73.489078, + 45.435353 + ], + [ + -73.490339, + 45.435335 + ], + [ + -73.490512, + 45.435353 + ], + [ + -73.490636, + 45.435389 + ], + [ + -73.49074, + 45.435443 + ], + [ + -73.490825, + 45.43552 + ], + [ + -73.490911, + 45.435596 + ], + [ + -73.490933, + 45.4358 + ], + [ + -73.490941, + 45.43588 + ], + [ + -73.490978, + 45.436131 + ], + [ + -73.491142, + 45.436851 + ], + [ + -73.491212, + 45.437097 + ], + [ + -73.491237, + 45.437184 + ], + [ + -73.49152, + 45.437954 + ], + [ + -73.491681, + 45.43831 + ], + [ + -73.491751, + 45.438464 + ], + [ + -73.491829, + 45.438638 + ], + [ + -73.488272, + 45.438589 + ], + [ + -73.488148, + 45.438588 + ], + [ + -73.485007, + 45.438549 + ], + [ + -73.484835, + 45.438547 + ], + [ + -73.484725, + 45.438545 + ], + [ + -73.481678, + 45.438495 + ], + [ + -73.48154, + 45.438492 + ], + [ + -73.481345, + 45.438492 + ], + [ + -73.481336, + 45.439167 + ], + [ + -73.481322, + 45.43946 + ], + [ + -73.481291, + 45.439775 + ], + [ + -73.481194, + 45.440589 + ], + [ + -73.481136, + 45.441053 + ], + [ + -73.481135, + 45.441066 + ], + [ + -73.481107, + 45.441286 + ], + [ + -73.480147, + 45.441223 + ], + [ + -73.479817, + 45.44121 + ], + [ + -73.478107, + 45.441196 + ], + [ + -73.477739, + 45.441194 + ], + [ + -73.477247, + 45.441191 + ], + [ + -73.477021, + 45.4412 + ], + [ + -73.47678, + 45.441236 + ], + [ + -73.476584, + 45.441272 + ], + [ + -73.476413, + 45.441313 + ], + [ + -73.475946, + 45.441477 + ], + [ + -73.475852, + 45.44151 + ], + [ + -73.475703, + 45.441605 + ], + [ + -73.475479, + 45.441749 + ], + [ + -73.475247, + 45.441942 + ], + [ + -73.475115, + 45.442091 + ], + [ + -73.475039, + 45.44219 + ], + [ + -73.474902, + 45.442388 + ], + [ + -73.474682, + 45.442761 + ], + [ + -73.474541, + 45.443044 + ], + [ + -73.474469, + 45.443314 + ], + [ + -73.474438, + 45.443521 + ], + [ + -73.474388, + 45.444425 + ], + [ + -73.474384, + 45.444507 + ], + [ + -73.474283, + 45.446131 + ], + [ + -73.474281, + 45.446153 + ], + [ + -73.474217, + 45.446698 + ], + [ + -73.474171, + 45.446882 + ], + [ + -73.474095, + 45.447058 + ], + [ + -73.473962, + 45.447314 + ], + [ + -73.473833, + 45.447525 + ], + [ + -73.473561, + 45.447927 + ], + [ + -73.473507, + 45.448007 + ], + [ + -73.473437, + 45.448115 + ], + [ + -73.473038, + 45.448738 + ], + [ + -73.47303, + 45.448749 + ], + [ + -73.472948, + 45.448844 + ], + [ + -73.472758, + 45.448996 + ], + [ + -73.472583, + 45.449086 + ], + [ + -73.47242, + 45.449145 + ], + [ + -73.472128, + 45.449217 + ], + [ + -73.471995, + 45.449248 + ], + [ + -73.471866, + 45.449284 + ], + [ + -73.471718, + 45.449347 + ], + [ + -73.471562, + 45.449433 + ], + [ + -73.471456, + 45.449523 + ], + [ + -73.471364, + 45.449599 + ], + [ + -73.471258, + 45.449752 + ], + [ + -73.471118, + 45.449963 + ], + [ + -73.470954, + 45.450197 + ], + [ + -73.470688, + 45.450625 + ], + [ + -73.470665, + 45.450673 + ], + [ + -73.470498, + 45.451021 + ], + [ + -73.470381, + 45.451277 + ], + [ + -73.469962, + 45.452249 + ], + [ + -73.469631, + 45.453026 + ], + [ + -73.469306, + 45.453787 + ], + [ + -73.469157, + 45.454137 + ], + [ + -73.469093, + 45.454287 + ], + [ + -73.468944, + 45.454656 + ], + [ + -73.468828, + 45.455033 + ], + [ + -73.468739, + 45.455281 + ], + [ + -73.4685, + 45.455947 + ], + [ + -73.468443, + 45.456109 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468158, + 45.456945 + ], + [ + -73.468147, + 45.457005 + ], + [ + -73.468109, + 45.457211 + ], + [ + -73.468044, + 45.457838 + ], + [ + -73.468021, + 45.458057 + ], + [ + -73.467975, + 45.458309 + ], + [ + -73.467971, + 45.458525 + ], + [ + -73.467956, + 45.458669 + ], + [ + -73.467979, + 45.458754 + ], + [ + -73.468053, + 45.458922 + ], + [ + -73.468056, + 45.45893 + ], + [ + -73.468212, + 45.459096 + ], + [ + -73.468425, + 45.459258 + ], + [ + -73.468742, + 45.459506 + ], + [ + -73.468938, + 45.459704 + ], + [ + -73.46901, + 45.459861 + ], + [ + -73.469046, + 45.459978 + ], + [ + -73.469045, + 45.460397 + ], + [ + -73.469024, + 45.460677 + ], + [ + -73.46901, + 45.460865 + ], + [ + -73.46897, + 45.46149 + ], + [ + -73.468876, + 45.462738 + ], + [ + -73.468837, + 45.463254 + ], + [ + -73.468834, + 45.463415 + ], + [ + -73.468833, + 45.46342 + ], + [ + -73.468884, + 45.463461 + ], + [ + -73.468972, + 45.463474 + ], + [ + -73.46938, + 45.463488 + ], + [ + -73.470687, + 45.463533 + ], + [ + -73.471257, + 45.463547 + ], + [ + -73.471494, + 45.463556 + ], + [ + -73.471524, + 45.463557 + ], + [ + -73.471666, + 45.463565 + ], + [ + -73.471841, + 45.463592 + ], + [ + -73.472107, + 45.4637 + ], + [ + -73.472767, + 45.464151 + ], + [ + -73.472811, + 45.464181 + ], + [ + -73.474007, + 45.463218 + ], + [ + -73.474018, + 45.46321 + ], + [ + -73.47413, + 45.463142 + ], + [ + -73.474225, + 45.463052 + ], + [ + -73.474394, + 45.46281 + ], + [ + -73.474502, + 45.462639 + ], + [ + -73.474965, + 45.462165 + ], + [ + -73.474994, + 45.462135 + ], + [ + -73.475315, + 45.461869 + ], + [ + -73.475666, + 45.461613 + ], + [ + -73.476379, + 45.46206 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.474375, + 45.468229 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.473995, + 45.46853 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.473204, + 45.468295 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.471427, + 45.468098 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469574, + 45.467137 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469043, + 45.46624 + ] + ] + }, + "id": 127, + "properties": { + "id": "885eb183-bc94-4c46-84f0-4eadc45ef44e", + "data": { + "gtfs": { + "shape_id": "49_2_A" + }, + "segments": [ + { + "distanceMeters": 214, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 121, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 738, + "travelTimeSeconds": 106 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 623, + "travelTimeSeconds": 90 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8032, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3213.4164872454244, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.44, + "travelTimeWithoutDwellTimesSeconds": 1080, + "operatingTimeWithLayoverTimeSeconds": 1260, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1080, + "operatingSpeedWithLayoverMetersPerSecond": 6.37, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.44 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", + "52fa062f-ca90-4e1d-998a-7b658a499b52", + "553f2fec-7dd4-475c-b1ed-ff9a62614e74", + "7a321951-38aa-4886-b297-59c69bcf3448", + "23afb18c-7e9a-4c38-a0e7-59d1aa5f5f5f", + "8f8e9cec-3b4e-465e-9db7-a68a74d060d1", + "a755707e-dbca-49b2-ba36-d6e6ffe0de89", + "70846d21-918c-4542-969d-4e5cccbc6e50", + "b88e581a-07f9-428f-bbb4-ab3a41e2dfe7", + "6195cfbf-10cd-4d7a-86f0-ca5dad76f9d9", + "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", + "a532b39a-66ec-444f-abc1-766787d9387c", + "ca880d29-2a91-4666-9ed1-c2825e5165f2", + "972f2e12-8185-4823-8ce3-2c965170ad9a", + "eab0f5d6-db57-4bf2-a26d-a49e7fe11c54", + "aebecb3d-b7f4-4a39-9b68-19a1c1a3b2b2", + "9d8d74b7-fc1f-4af5-a4a4-0cee1ee7b556", + "5847442f-86f3-431c-ac38-324378b56363", + "23085815-2dff-4082-9402-38931522fb99", + "e21c6436-090b-4893-a347-5a67018da073", + "d5176685-5789-4135-ac00-ee677cfb093a", + "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", + "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", + "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", + "ef880d61-7a9a-4504-a9a1-27967a52e95d", + "f872f4da-bae9-485b-a2fb-ae01787389fc", + "71ffac32-604a-4260-b51e-c427856a20c4", + "70ace55a-2f3c-410b-8740-bea06ecb9924", + "7389acbe-1784-4fea-a2ab-a4a9c9239e83", + "06992afa-6d7e-4650-bffc-5a747de5860c", + "ff23cabb-ca11-421b-a582-f6413aa21fa0", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "7a4e0a54-3576-4fd4-8663-468d225b84ff", + "segments": [ + 0, + 5, + 7, + 10, + 12, + 24, + 28, + 32, + 34, + 36, + 39, + 47, + 52, + 58, + 70, + 72, + 79, + 82, + 99, + 103, + 105, + 110, + 116, + 122, + 131, + 136, + 144, + 148, + 150, + 156, + 160, + 188, + 197, + 204 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 127, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.481538, + 45.438613 + ], + [ + -73.48154, + 45.438492 + ], + [ + -73.481571, + 45.437827 + ], + [ + -73.481572, + 45.437776 + ], + [ + -73.481581, + 45.437111 + ], + [ + -73.48159, + 45.436549 + ], + [ + -73.481582, + 45.43541 + ], + [ + -73.482932, + 45.435402 + ], + [ + -73.484708, + 45.435387 + ], + [ + -73.486868, + 45.435369 + ], + [ + -73.487529, + 45.435364 + ], + [ + -73.487766, + 45.435362 + ], + [ + -73.488499, + 45.435353 + ], + [ + -73.489074, + 45.435353 + ], + [ + -73.489078, + 45.435353 + ], + [ + -73.490339, + 45.435335 + ], + [ + -73.490512, + 45.435353 + ], + [ + -73.490636, + 45.435389 + ], + [ + -73.49074, + 45.435443 + ], + [ + -73.490825, + 45.43552 + ], + [ + -73.490911, + 45.435596 + ], + [ + -73.490941, + 45.43588 + ], + [ + -73.490978, + 45.436131 + ], + [ + -73.491134, + 45.436815 + ], + [ + -73.491142, + 45.436851 + ], + [ + -73.491237, + 45.437184 + ], + [ + -73.49152, + 45.437954 + ], + [ + -73.491681, + 45.43831 + ], + [ + -73.491829, + 45.438638 + ], + [ + -73.488148, + 45.438588 + ], + [ + -73.484835, + 45.438547 + ], + [ + -73.484725, + 45.438545 + ], + [ + -73.483151, + 45.438519 + ], + [ + -73.48154, + 45.438492 + ], + [ + -73.481345, + 45.438492 + ], + [ + -73.481336, + 45.439167 + ], + [ + -73.481322, + 45.43946 + ], + [ + -73.481291, + 45.439775 + ], + [ + -73.481194, + 45.440589 + ], + [ + -73.481136, + 45.441053 + ], + [ + -73.481107, + 45.441286 + ], + [ + -73.480147, + 45.441223 + ], + [ + -73.479817, + 45.44121 + ], + [ + -73.478107, + 45.441196 + ], + [ + -73.477247, + 45.441191 + ], + [ + -73.477021, + 45.4412 + ], + [ + -73.47678, + 45.441236 + ], + [ + -73.476653, + 45.441259 + ], + [ + -73.476584, + 45.441272 + ], + [ + -73.476413, + 45.441313 + ], + [ + -73.475852, + 45.44151 + ], + [ + -73.475703, + 45.441605 + ], + [ + -73.475479, + 45.441749 + ], + [ + -73.475247, + 45.441942 + ], + [ + -73.475115, + 45.442091 + ], + [ + -73.475039, + 45.44219 + ], + [ + -73.474902, + 45.442388 + ], + [ + -73.474682, + 45.442761 + ], + [ + -73.474541, + 45.443044 + ], + [ + -73.474469, + 45.443314 + ], + [ + -73.474438, + 45.443521 + ], + [ + -73.474384, + 45.444507 + ], + [ + -73.474281, + 45.446153 + ], + [ + -73.474217, + 45.446698 + ], + [ + -73.474171, + 45.446882 + ], + [ + -73.474095, + 45.447058 + ], + [ + -73.473962, + 45.447314 + ], + [ + -73.473833, + 45.447525 + ], + [ + -73.473507, + 45.448007 + ], + [ + -73.473437, + 45.448115 + ], + [ + -73.47303, + 45.448749 + ], + [ + -73.472948, + 45.448844 + ], + [ + -73.472758, + 45.448996 + ], + [ + -73.472583, + 45.449086 + ], + [ + -73.47242, + 45.449145 + ], + [ + -73.472128, + 45.449217 + ], + [ + -73.471995, + 45.449248 + ], + [ + -73.471866, + 45.449284 + ], + [ + -73.471718, + 45.449347 + ], + [ + -73.471562, + 45.449433 + ], + [ + -73.471456, + 45.449523 + ], + [ + -73.471364, + 45.449599 + ], + [ + -73.471313, + 45.449672 + ], + [ + -73.471258, + 45.449752 + ], + [ + -73.471118, + 45.449963 + ], + [ + -73.470954, + 45.450197 + ], + [ + -73.470688, + 45.450625 + ], + [ + -73.470498, + 45.451021 + ], + [ + -73.470381, + 45.451277 + ], + [ + -73.469962, + 45.452249 + ], + [ + -73.469306, + 45.453787 + ], + [ + -73.469159, + 45.454132 + ], + [ + -73.469093, + 45.454287 + ], + [ + -73.468944, + 45.454656 + ], + [ + -73.468828, + 45.455033 + ], + [ + -73.468739, + 45.455281 + ], + [ + -73.468443, + 45.456109 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468158, + 45.456945 + ], + [ + -73.468147, + 45.457005 + ], + [ + -73.468109, + 45.457211 + ], + [ + -73.468021, + 45.458057 + ], + [ + -73.467975, + 45.458309 + ], + [ + -73.467971, + 45.458525 + ], + [ + -73.467956, + 45.458669 + ], + [ + -73.467979, + 45.458754 + ], + [ + -73.468056, + 45.45893 + ], + [ + -73.468212, + 45.459096 + ], + [ + -73.468215, + 45.459099 + ], + [ + -73.468425, + 45.459258 + ], + [ + -73.468742, + 45.459506 + ], + [ + -73.468938, + 45.459704 + ], + [ + -73.46901, + 45.459861 + ], + [ + -73.469046, + 45.459978 + ], + [ + -73.469045, + 45.460397 + ], + [ + -73.46901, + 45.460865 + ], + [ + -73.46897, + 45.46149 + ], + [ + -73.468876, + 45.462738 + ], + [ + -73.468837, + 45.463254 + ], + [ + -73.468833, + 45.46342 + ], + [ + -73.468884, + 45.463461 + ], + [ + -73.468972, + 45.463474 + ], + [ + -73.46938, + 45.463488 + ], + [ + -73.470687, + 45.463533 + ], + [ + -73.471257, + 45.463547 + ], + [ + -73.471494, + 45.463556 + ], + [ + -73.471666, + 45.463565 + ], + [ + -73.471841, + 45.463592 + ], + [ + -73.472107, + 45.4637 + ], + [ + -73.472811, + 45.464181 + ], + [ + -73.474018, + 45.46321 + ], + [ + -73.47413, + 45.463142 + ], + [ + -73.474225, + 45.463052 + ], + [ + -73.474394, + 45.46281 + ], + [ + -73.474502, + 45.462639 + ], + [ + -73.474586, + 45.462553 + ], + [ + -73.474994, + 45.462135 + ], + [ + -73.475315, + 45.461869 + ], + [ + -73.475666, + 45.461613 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.474357, + 45.467954 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.473995, + 45.46853 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469574, + 45.467137 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469043, + 45.46624 + ] + ] + }, + "id": 128, + "properties": { + "id": "e2676ef9-8967-4f7b-9439-071e6e08162a", + "data": { + "gtfs": { + "shape_id": "49_2_A" + }, + "segments": [ + { + "distanceMeters": 769, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 464, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 888, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 802, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 1100, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 525, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 568, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 1071, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 916, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 934, + "travelTimeSeconds": 28 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8032, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 0, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 33.47, + "travelTimeWithoutDwellTimesSeconds": 240, + "operatingTimeWithLayoverTimeSeconds": 420, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 240, + "operatingSpeedWithLayoverMetersPerSecond": 19.12, + "averageSpeedWithoutDwellTimesMetersPerSecond": 33.47 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", + "52fa062f-ca90-4e1d-998a-7b658a499b52", + "553f2fec-7dd4-475c-b1ed-ff9a62614e74", + "7a321951-38aa-4886-b297-59c69bcf3448", + "23afb18c-7e9a-4c38-a0e7-59d1aa5f5f5f", + "8f8e9cec-3b4e-465e-9db7-a68a74d060d1", + "a755707e-dbca-49b2-ba36-d6e6ffe0de89", + "70846d21-918c-4542-969d-4e5cccbc6e50", + "b88e581a-07f9-428f-bbb4-ab3a41e2dfe7", + "6195cfbf-10cd-4d7a-86f0-ca5dad76f9d9", + "205aad7d-06ec-4492-b7ed-ac8ab79f10b2" + ], + "stops": [], + "line_id": "7a4e0a54-3576-4fd4-8663-468d225b84ff", + "segments": [ + 0, + 9, + 23, + 32, + 47, + 82, + 91, + 108, + 135, + 166 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 128, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469043, + 45.46624 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466446, + 45.465894 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.463779, + 45.468251 + ], + [ + -73.463257, + 45.46862 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463016, + 45.468741 + ], + [ + -73.462763, + 45.468943 + ], + [ + -73.462689, + 45.46902 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448625, + 45.478273 + ], + [ + -73.448305, + 45.478058 + ], + [ + -73.447769, + 45.477695 + ], + [ + -73.4477, + 45.477648 + ], + [ + -73.446992, + 45.477175 + ], + [ + -73.446393, + 45.476765 + ], + [ + -73.445743, + 45.476329 + ], + [ + -73.445364, + 45.476065 + ], + [ + -73.445205, + 45.475955 + ], + [ + -73.444867, + 45.475726 + ], + [ + -73.444508, + 45.475482 + ], + [ + -73.443609, + 45.474874 + ], + [ + -73.443515, + 45.474946 + ], + [ + -73.443474, + 45.474978 + ], + [ + -73.443381, + 45.47505 + ], + [ + -73.443257, + 45.475141 + ], + [ + -73.443079, + 45.475273 + ], + [ + -73.441123, + 45.476718 + ], + [ + -73.441038, + 45.476781 + ], + [ + -73.438955, + 45.478323 + ], + [ + -73.438567, + 45.47861 + ], + [ + -73.43848, + 45.478674 + ], + [ + -73.436743, + 45.479964 + ], + [ + -73.436011, + 45.480501 + ], + [ + -73.435909, + 45.480575 + ], + [ + -73.435802, + 45.480665 + ], + [ + -73.4357, + 45.480746 + ], + [ + -73.433397, + 45.48244 + ], + [ + -73.433303, + 45.482509 + ], + [ + -73.431493, + 45.483848 + ], + [ + -73.430767, + 45.484381 + ], + [ + -73.430708, + 45.484424 + ], + [ + -73.427769, + 45.486623 + ], + [ + -73.427651, + 45.486712 + ], + [ + -73.427512, + 45.486636 + ], + [ + -73.426791, + 45.486243 + ], + [ + -73.425934, + 45.48578 + ], + [ + -73.425069, + 45.485316 + ], + [ + -73.424818, + 45.485176 + ], + [ + -73.42419, + 45.484829 + ], + [ + -73.423325, + 45.484347 + ], + [ + -73.422743, + 45.484032 + ], + [ + -73.422435, + 45.483865 + ], + [ + -73.421542, + 45.483378 + ], + [ + -73.420946, + 45.483046 + ], + [ + -73.42066, + 45.482887 + ], + [ + -73.420042, + 45.482559 + ], + [ + -73.419826, + 45.482446 + ], + [ + -73.419695, + 45.482374 + ], + [ + -73.419097, + 45.48205 + ], + [ + -73.418881, + 45.481932 + ], + [ + -73.418984, + 45.481849 + ], + [ + -73.419019, + 45.48182 + ], + [ + -73.419233, + 45.481532 + ], + [ + -73.419409, + 45.481249 + ], + [ + -73.419411, + 45.481243 + ], + [ + -73.419428, + 45.481163 + ], + [ + -73.419425, + 45.481015 + ], + [ + -73.419388, + 45.480961 + ], + [ + -73.419545, + 45.480916 + ], + [ + -73.419768, + 45.480885 + ], + [ + -73.420004, + 45.480898 + ], + [ + -73.420262, + 45.480935 + ], + [ + -73.420402, + 45.480998 + ], + [ + -73.420899, + 45.481322 + ], + [ + -73.42092, + 45.481335 + ], + [ + -73.421017, + 45.481389 + ], + [ + -73.420853, + 45.481512 + ], + [ + -73.419775, + 45.482315 + ], + [ + -73.419122, + 45.482809 + ], + [ + -73.418378, + 45.483361 + ], + [ + -73.417919, + 45.483709 + ], + [ + -73.417812, + 45.483628 + ], + [ + -73.417557, + 45.483463 + ], + [ + -73.417096, + 45.483164 + ], + [ + -73.417029, + 45.483123 + ], + [ + -73.41701, + 45.483087 + ], + [ + -73.416987, + 45.483038 + ], + [ + -73.416999, + 45.482988 + ], + [ + -73.417044, + 45.482943 + ], + [ + -73.417259, + 45.482782 + ], + [ + -73.418062, + 45.48218 + ], + [ + -73.418268, + 45.482026 + ], + [ + -73.418999, + 45.482405 + ], + [ + -73.419134, + 45.482472 + ], + [ + -73.419285, + 45.482536 + ], + [ + -73.419388, + 45.482612 + ], + [ + -73.419497, + 45.482693 + ], + [ + -73.420093, + 45.483009 + ], + [ + -73.42011, + 45.483017 + ], + [ + -73.420308, + 45.483112 + ], + [ + -73.420348, + 45.483134 + ], + [ + -73.42046, + 45.483193 + ], + [ + -73.421429, + 45.483725 + ], + [ + -73.422428, + 45.48427 + ], + [ + -73.423447, + 45.484823 + ], + [ + -73.423524, + 45.484865 + ], + [ + -73.423667, + 45.484946 + ], + [ + -73.424722, + 45.485522 + ], + [ + -73.425074, + 45.485712 + ], + [ + -73.425082, + 45.485716 + ], + [ + -73.425509, + 45.485946 + ], + [ + -73.425286, + 45.486255 + ], + [ + -73.423328, + 45.488971 + ], + [ + -73.423292, + 45.489022 + ], + [ + -73.421235, + 45.491904 + ], + [ + -73.421183, + 45.491976 + ], + [ + -73.421099, + 45.492084 + ], + [ + -73.418957, + 45.495073 + ], + [ + -73.418892, + 45.495165 + ], + [ + -73.416874, + 45.498016 + ], + [ + -73.416828, + 45.498074 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.416635, + 45.498326 + ], + [ + -73.416523, + 45.498497 + ], + [ + -73.414847, + 45.500817 + ], + [ + -73.414616, + 45.501136 + ] + ] + }, + "id": 129, + "properties": { + "id": "b0042967-c51a-4d31-ba30-2d0c4aa11116", + "data": { + "gtfs": { + "shape_id": "50_2_R" + }, + "segments": [ + { + "distanceMeters": 2586, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 405, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 329, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 420, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 395, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 382, + "travelTimeSeconds": 72 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9196, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3725.609547512516, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.02, + "travelTimeWithoutDwellTimesSeconds": 1020, + "operatingTimeWithLayoverTimeSeconds": 1200, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1020, + "operatingSpeedWithLayoverMetersPerSecond": 7.66, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.02 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "76ff8292-f41f-4d17-998d-6dd3d2c32288", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "d6d99976-b155-4a29-b088-e41bf69a502a", + "3753be88-b479-4ca1-bd8a-5ea694207952", + "cfc3e1d1-58b4-4975-b310-259719029f69", + "cd932703-83f9-4acf-94fa-d521e6d427d0", + "dd69c268-00e5-467c-8e8d-2b0301743114", + "3b77dae0-2a5d-4b97-b5b6-65893df568aa", + "f026582d-e34c-4c8f-97d3-a9902c9cf75e", + "9b3c9288-610f-44d5-ac44-d6199a8a0d55", + "335b9e5b-fca5-4f4b-8f3b-2277caa27d7a", + "cb1c9669-6517-4a25-af17-321fc49ae537", + "d8baecf8-a12f-4e7f-9e2a-2cdfa71e72d0", + "784376eb-c666-4a01-b5d4-f21e9880ab84", + "f7218298-f862-4f68-aabe-7a0d51011bc1", + "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", + "07f8e631-764d-44cf-ab3a-dcf1276de1d6", + "495fd0d8-631d-48a3-bc48-4ec746693d10", + "c4df5893-41b2-4d6a-81b5-7128fb72aba4", + "5665bcec-62a1-4d01-9550-6900a57f083d", + "0e836f4e-0231-42bf-9c3d-37ea2aef8934", + "30c08115-a1b6-45b8-9122-c5fe99723d2e", + "bf4259d8-23ae-478a-8a93-ec28083b908d", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "853b0202-bae1-4c20-ab0e-8b27d1350e9a" + ], + "stops": [], + "line_id": "20f532fa-3da9-413b-be59-a6857696c35b", + "segments": [ + 0, + 53, + 58, + 66, + 68, + 71, + 74, + 78, + 81, + 83, + 89, + 92, + 95, + 100, + 106, + 115, + 124, + 132, + 140, + 146, + 150, + 154, + 156, + 159, + 162 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 129, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.414616, + 45.501136 + ], + [ + -73.414535, + 45.501249 + ], + [ + -73.414536, + 45.50133 + ], + [ + -73.414045, + 45.501145 + ], + [ + -73.413646, + 45.500992 + ], + [ + -73.413399, + 45.500906 + ], + [ + -73.41311, + 45.500798 + ], + [ + -73.412769, + 45.500658 + ], + [ + -73.412474, + 45.500548 + ], + [ + -73.412332, + 45.500496 + ], + [ + -73.411788, + 45.500288 + ], + [ + -73.411184, + 45.500063 + ], + [ + -73.410857, + 45.499937 + ], + [ + -73.410514, + 45.499802 + ], + [ + -73.410403, + 45.499758 + ], + [ + -73.40994, + 45.499576 + ], + [ + -73.409228, + 45.499298 + ], + [ + -73.409074, + 45.499238 + ], + [ + -73.408846, + 45.499152 + ], + [ + -73.408613, + 45.499067 + ], + [ + -73.408565, + 45.499044 + ], + [ + -73.407743, + 45.498715 + ], + [ + -73.407513, + 45.498634 + ], + [ + -73.406574, + 45.498264 + ], + [ + -73.406782, + 45.49797 + ], + [ + -73.406814, + 45.497925 + ], + [ + -73.407382, + 45.497122 + ], + [ + -73.407645, + 45.49675 + ], + [ + -73.407675, + 45.496708 + ], + [ + -73.407892, + 45.496394 + ], + [ + -73.408205, + 45.495957 + ], + [ + -73.408715, + 45.495247 + ], + [ + -73.408773, + 45.495157 + ], + [ + -73.408851, + 45.495036 + ], + [ + -73.4093, + 45.495297 + ], + [ + -73.410398, + 45.49591 + ], + [ + -73.410625, + 45.49603 + ], + [ + -73.410729, + 45.496085 + ], + [ + -73.411068, + 45.496248 + ], + [ + -73.41156, + 45.496461 + ], + [ + -73.411587, + 45.496473 + ], + [ + -73.412271, + 45.49673 + ], + [ + -73.412864, + 45.496955 + ], + [ + -73.413694, + 45.497257 + ], + [ + -73.414507, + 45.497553 + ], + [ + -73.415733, + 45.497998 + ], + [ + -73.416635, + 45.498326 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.416874, + 45.498016 + ], + [ + -73.417029, + 45.497796 + ], + [ + -73.41707, + 45.49774 + ], + [ + -73.418824, + 45.495261 + ], + [ + -73.418892, + 45.495165 + ], + [ + -73.421027, + 45.492185 + ], + [ + -73.421099, + 45.492084 + ], + [ + -73.421183, + 45.491976 + ], + [ + -73.423211, + 45.489134 + ], + [ + -73.423292, + 45.489022 + ], + [ + -73.425245, + 45.486311 + ], + [ + -73.425509, + 45.485946 + ], + [ + -73.425082, + 45.485716 + ], + [ + -73.425077, + 45.485713 + ], + [ + -73.424722, + 45.485522 + ], + [ + -73.423671, + 45.484948 + ], + [ + -73.423667, + 45.484946 + ], + [ + -73.423524, + 45.484865 + ], + [ + -73.422428, + 45.48427 + ], + [ + -73.421429, + 45.483725 + ], + [ + -73.42046, + 45.483193 + ], + [ + -73.420447, + 45.483186 + ], + [ + -73.420348, + 45.483134 + ], + [ + -73.420308, + 45.483112 + ], + [ + -73.419609, + 45.483652 + ], + [ + -73.418778, + 45.484272 + ], + [ + -73.418235, + 45.483922 + ], + [ + -73.418109, + 45.483842 + ], + [ + -73.418029, + 45.48379 + ], + [ + -73.419479, + 45.482708 + ], + [ + -73.420488, + 45.481958 + ], + [ + -73.420745, + 45.481758 + ], + [ + -73.42092, + 45.481704 + ], + [ + -73.421015, + 45.481695 + ], + [ + -73.421095, + 45.481704 + ], + [ + -73.421171, + 45.481741 + ], + [ + -73.421343, + 45.481822 + ], + [ + -73.421516, + 45.481941 + ], + [ + -73.421646, + 45.482031 + ], + [ + -73.42174, + 45.482096 + ], + [ + -73.421254, + 45.48246 + ], + [ + -73.420769, + 45.482809 + ], + [ + -73.42066, + 45.482887 + ], + [ + -73.420985, + 45.483068 + ], + [ + -73.421542, + 45.483378 + ], + [ + -73.422311, + 45.483797 + ], + [ + -73.422435, + 45.483865 + ], + [ + -73.423325, + 45.484347 + ], + [ + -73.42419, + 45.484829 + ], + [ + -73.424992, + 45.485273 + ], + [ + -73.425069, + 45.485316 + ], + [ + -73.425934, + 45.48578 + ], + [ + -73.426791, + 45.486243 + ], + [ + -73.427651, + 45.486712 + ], + [ + -73.427823, + 45.486583 + ], + [ + -73.428211, + 45.486293 + ], + [ + -73.43062, + 45.48449 + ], + [ + -73.430708, + 45.484424 + ], + [ + -73.431493, + 45.483848 + ], + [ + -73.433082, + 45.482672 + ], + [ + -73.433303, + 45.482509 + ], + [ + -73.435655, + 45.48078 + ], + [ + -73.4357, + 45.480746 + ], + [ + -73.435802, + 45.480665 + ], + [ + -73.435909, + 45.480575 + ], + [ + -73.436743, + 45.479964 + ], + [ + -73.43835, + 45.478771 + ], + [ + -73.43848, + 45.478674 + ], + [ + -73.438955, + 45.478323 + ], + [ + -73.440958, + 45.47684 + ], + [ + -73.441038, + 45.476781 + ], + [ + -73.443321, + 45.475094 + ], + [ + -73.443381, + 45.47505 + ], + [ + -73.443474, + 45.474978 + ], + [ + -73.443927, + 45.475285 + ], + [ + -73.44437, + 45.475586 + ], + [ + -73.445007, + 45.476018 + ], + [ + -73.445067, + 45.476058 + ], + [ + -73.445608, + 45.476432 + ], + [ + -73.446237, + 45.47686 + ], + [ + -73.446804, + 45.477248 + ], + [ + -73.446869, + 45.477292 + ], + [ + -73.44754, + 45.477747 + ], + [ + -73.448146, + 45.478157 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.448868, + 45.478494 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.44939, + 45.478141 + ], + [ + -73.449478, + 45.478081 + ], + [ + -73.451123, + 45.476955 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.453442, + 45.475367 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.455853, + 45.473716 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.458237, + 45.472085 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.460514, + 45.470531 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.46262, + 45.469086 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465234, + 45.468288 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469043, + 45.46624 + ] + ] + }, + "id": 130, + "properties": { + "id": "08d5dd74-5946-473f-acdf-8a9bc6086af3", + "data": { + "gtfs": { + "shape_id": "50_2_A" + }, + "segments": [ + { + "distanceMeters": 206, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 383, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 380, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 417, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 307, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 547, + "travelTimeSeconds": 104 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10034, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5775.568824827481, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.19, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 5.57, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.19 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "853b0202-bae1-4c20-ab0e-8b27d1350e9a", + "69889f24-c076-4661-981b-6008a401d446", + "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", + "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", + "50ca3159-13cc-4149-b07f-8267a31166e3", + "590769f9-bd2c-482c-8bd5-e3724936b683", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "bf4259d8-23ae-478a-8a93-ec28083b908d", + "30c08115-a1b6-45b8-9122-c5fe99723d2e", + "0e836f4e-0231-42bf-9c3d-37ea2aef8934", + "037aae6d-413d-4b3d-8987-50e8714ef6c5", + "c4df5893-41b2-4d6a-81b5-7128fb72aba4", + "495fd0d8-631d-48a3-bc48-4ec746693d10", + "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", + "8131cbf3-211d-4b69-adcb-9af688489a49", + "cb1c9669-6517-4a25-af17-321fc49ae537", + "335b9e5b-fca5-4f4b-8f3b-2277caa27d7a", + "9b3c9288-610f-44d5-ac44-d6199a8a0d55", + "f026582d-e34c-4c8f-97d3-a9902c9cf75e", + "3b77dae0-2a5d-4b97-b5b6-65893df568aa", + "dd69c268-00e5-467c-8e8d-2b0301743114", + "cd932703-83f9-4acf-94fa-d521e6d427d0", + "cfc3e1d1-58b4-4975-b310-259719029f69", + "3753be88-b479-4ca1-bd8a-5ea694207952", + "d6d99976-b155-4a29-b088-e41bf69a502a", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "c4061c94-e615-4bca-b219-1ff6ea9657d0", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "907f8610-452b-440d-849b-c803b07dedc1", + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "20f532fa-3da9-413b-be59-a6857696c35b", + "segments": [ + 0, + 8, + 14, + 16, + 25, + 27, + 32, + 36, + 43, + 50, + 51, + 53, + 56, + 58, + 63, + 69, + 74, + 86, + 89, + 93, + 97, + 103, + 104, + 107, + 109, + 114, + 117, + 119, + 124, + 128, + 135, + 137, + 139, + 141, + 143, + 145, + 148, + 161 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 130, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469043, + 45.46624 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466446, + 45.465894 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465582, + 45.46821 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.463779, + 45.468251 + ], + [ + -73.463257, + 45.46862 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463016, + 45.468741 + ], + [ + -73.462763, + 45.468943 + ], + [ + -73.462689, + 45.46902 + ], + [ + -73.462689, + 45.46902 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.460799, + 45.470335 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.45844, + 45.471946 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.456055, + 45.473577 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.453681, + 45.475203 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.451334, + 45.47681 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.449271, + 45.478222 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448625, + 45.478273 + ], + [ + -73.448305, + 45.478058 + ], + [ + -73.447769, + 45.477695 + ], + [ + -73.4477, + 45.477648 + ], + [ + -73.446992, + 45.477175 + ], + [ + -73.446393, + 45.476765 + ], + [ + -73.445743, + 45.476329 + ], + [ + -73.445364, + 45.476065 + ], + [ + -73.445205, + 45.475955 + ], + [ + -73.444867, + 45.475726 + ], + [ + -73.444508, + 45.475482 + ], + [ + -73.443609, + 45.474874 + ], + [ + -73.443515, + 45.474946 + ], + [ + -73.443474, + 45.474978 + ], + [ + -73.443381, + 45.47505 + ], + [ + -73.443257, + 45.475141 + ], + [ + -73.443079, + 45.475273 + ], + [ + -73.441123, + 45.476718 + ], + [ + -73.441038, + 45.476781 + ], + [ + -73.438955, + 45.478323 + ], + [ + -73.438567, + 45.47861 + ], + [ + -73.43848, + 45.478674 + ], + [ + -73.436743, + 45.479964 + ], + [ + -73.436011, + 45.480501 + ], + [ + -73.435909, + 45.480575 + ], + [ + -73.435802, + 45.480665 + ], + [ + -73.4357, + 45.480746 + ], + [ + -73.433397, + 45.48244 + ], + [ + -73.433303, + 45.482509 + ], + [ + -73.431493, + 45.483848 + ], + [ + -73.430767, + 45.484381 + ], + [ + -73.430708, + 45.484424 + ], + [ + -73.427769, + 45.486623 + ], + [ + -73.427651, + 45.486712 + ], + [ + -73.427512, + 45.486636 + ], + [ + -73.426791, + 45.486243 + ], + [ + -73.425934, + 45.48578 + ], + [ + -73.425069, + 45.485316 + ], + [ + -73.424818, + 45.485176 + ], + [ + -73.42419, + 45.484829 + ], + [ + -73.423325, + 45.484347 + ], + [ + -73.422743, + 45.484032 + ], + [ + -73.422435, + 45.483865 + ], + [ + -73.421542, + 45.483378 + ], + [ + -73.420946, + 45.483046 + ], + [ + -73.42066, + 45.482887 + ], + [ + -73.420042, + 45.482559 + ], + [ + -73.419826, + 45.482446 + ], + [ + -73.419695, + 45.482374 + ], + [ + -73.419097, + 45.48205 + ], + [ + -73.418881, + 45.481932 + ], + [ + -73.418984, + 45.481849 + ], + [ + -73.419019, + 45.48182 + ], + [ + -73.419233, + 45.481532 + ], + [ + -73.419409, + 45.481249 + ], + [ + -73.419411, + 45.481243 + ], + [ + -73.419428, + 45.481163 + ], + [ + -73.419425, + 45.481015 + ], + [ + -73.419388, + 45.480961 + ], + [ + -73.419545, + 45.480916 + ], + [ + -73.419768, + 45.480885 + ], + [ + -73.420004, + 45.480898 + ], + [ + -73.420262, + 45.480935 + ], + [ + -73.420402, + 45.480998 + ], + [ + -73.420899, + 45.481322 + ], + [ + -73.42092, + 45.481335 + ], + [ + -73.421017, + 45.481389 + ], + [ + -73.420853, + 45.481512 + ], + [ + -73.419775, + 45.482315 + ], + [ + -73.419122, + 45.482809 + ], + [ + -73.418378, + 45.483361 + ], + [ + -73.417919, + 45.483709 + ], + [ + -73.417812, + 45.483628 + ], + [ + -73.417557, + 45.483463 + ], + [ + -73.417096, + 45.483164 + ], + [ + -73.417029, + 45.483123 + ], + [ + -73.41701, + 45.483087 + ], + [ + -73.416987, + 45.483038 + ], + [ + -73.416999, + 45.482988 + ], + [ + -73.417044, + 45.482943 + ], + [ + -73.417259, + 45.482782 + ], + [ + -73.418062, + 45.48218 + ], + [ + -73.418268, + 45.482026 + ], + [ + -73.418999, + 45.482405 + ], + [ + -73.419134, + 45.482472 + ], + [ + -73.419285, + 45.482536 + ], + [ + -73.419388, + 45.482612 + ], + [ + -73.419497, + 45.482693 + ], + [ + -73.420093, + 45.483009 + ], + [ + -73.42011, + 45.483017 + ], + [ + -73.420308, + 45.483112 + ], + [ + -73.420348, + 45.483134 + ], + [ + -73.42046, + 45.483193 + ], + [ + -73.421429, + 45.483725 + ], + [ + -73.422428, + 45.48427 + ], + [ + -73.423447, + 45.484823 + ], + [ + -73.423524, + 45.484865 + ], + [ + -73.423667, + 45.484946 + ], + [ + -73.424722, + 45.485522 + ], + [ + -73.425074, + 45.485712 + ], + [ + -73.425082, + 45.485716 + ], + [ + -73.425509, + 45.485946 + ], + [ + -73.425286, + 45.486255 + ], + [ + -73.423328, + 45.488971 + ], + [ + -73.423292, + 45.489022 + ], + [ + -73.421235, + 45.491904 + ], + [ + -73.421183, + 45.491976 + ], + [ + -73.421099, + 45.492084 + ], + [ + -73.418957, + 45.495073 + ], + [ + -73.418892, + 45.495165 + ], + [ + -73.416874, + 45.498016 + ], + [ + -73.416828, + 45.498074 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.416635, + 45.498326 + ], + [ + -73.416523, + 45.498497 + ], + [ + -73.414847, + 45.500817 + ], + [ + -73.414616, + 45.501136 + ] + ] + }, + "id": 131, + "properties": { + "id": "66149db6-534c-4592-9687-c3b09e8a4f02", + "data": { + "gtfs": { + "shape_id": "50_2_R" + }, + "segments": [ + { + "distanceMeters": 694, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 405, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 329, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 420, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 395, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 382, + "travelTimeSeconds": 72 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9196, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5775.568824827481, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.39, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 5.68, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.39 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "907f8610-452b-440d-849b-c803b07dedc1", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "76ff8292-f41f-4d17-998d-6dd3d2c32288", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "d6d99976-b155-4a29-b088-e41bf69a502a", + "3753be88-b479-4ca1-bd8a-5ea694207952", + "cfc3e1d1-58b4-4975-b310-259719029f69", + "cd932703-83f9-4acf-94fa-d521e6d427d0", + "dd69c268-00e5-467c-8e8d-2b0301743114", + "3b77dae0-2a5d-4b97-b5b6-65893df568aa", + "f026582d-e34c-4c8f-97d3-a9902c9cf75e", + "9b3c9288-610f-44d5-ac44-d6199a8a0d55", + "335b9e5b-fca5-4f4b-8f3b-2277caa27d7a", + "cb1c9669-6517-4a25-af17-321fc49ae537", + "d8baecf8-a12f-4e7f-9e2a-2cdfa71e72d0", + "784376eb-c666-4a01-b5d4-f21e9880ab84", + "f7218298-f862-4f68-aabe-7a0d51011bc1", + "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", + "07f8e631-764d-44cf-ab3a-dcf1276de1d6", + "495fd0d8-631d-48a3-bc48-4ec746693d10", + "c4df5893-41b2-4d6a-81b5-7128fb72aba4", + "5665bcec-62a1-4d01-9550-6900a57f083d", + "0e836f4e-0231-42bf-9c3d-37ea2aef8934", + "30c08115-a1b6-45b8-9122-c5fe99723d2e", + "bf4259d8-23ae-478a-8a93-ec28083b908d", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "853b0202-bae1-4c20-ab0e-8b27d1350e9a" + ], + "stops": [], + "line_id": "20f532fa-3da9-413b-be59-a6857696c35b", + "segments": [ + 0, + 28, + 44, + 47, + 49, + 51, + 53, + 55, + 57, + 61, + 66, + 74, + 76, + 79, + 82, + 86, + 89, + 91, + 97, + 100, + 103, + 108, + 114, + 123, + 132, + 140, + 148, + 154, + 158, + 162, + 164, + 167, + 170 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 131, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.414616, + 45.501136 + ], + [ + -73.414535, + 45.501249 + ], + [ + -73.414536, + 45.50133 + ], + [ + -73.414045, + 45.501145 + ], + [ + -73.413646, + 45.500992 + ], + [ + -73.413399, + 45.500906 + ], + [ + -73.41311, + 45.500798 + ], + [ + -73.412769, + 45.500658 + ], + [ + -73.412332, + 45.500496 + ], + [ + -73.411788, + 45.500288 + ], + [ + -73.411184, + 45.500063 + ], + [ + -73.410857, + 45.499937 + ], + [ + -73.410514, + 45.499802 + ], + [ + -73.40994, + 45.499576 + ], + [ + -73.409074, + 45.499238 + ], + [ + -73.408846, + 45.499152 + ], + [ + -73.408613, + 45.499067 + ], + [ + -73.408565, + 45.499044 + ], + [ + -73.407743, + 45.498715 + ], + [ + -73.407513, + 45.498634 + ], + [ + -73.406574, + 45.498264 + ], + [ + -73.406782, + 45.49797 + ], + [ + -73.407382, + 45.497122 + ], + [ + -73.407675, + 45.496708 + ], + [ + -73.407892, + 45.496394 + ], + [ + -73.408205, + 45.495957 + ], + [ + -73.408552, + 45.495474 + ], + [ + -73.408715, + 45.495247 + ], + [ + -73.408851, + 45.495036 + ], + [ + -73.4093, + 45.495297 + ], + [ + -73.410398, + 45.49591 + ], + [ + -73.410729, + 45.496085 + ], + [ + -73.411068, + 45.496248 + ], + [ + -73.41156, + 45.496461 + ], + [ + -73.411587, + 45.496473 + ], + [ + -73.412271, + 45.49673 + ], + [ + -73.412864, + 45.496955 + ], + [ + -73.414507, + 45.497553 + ], + [ + -73.415733, + 45.497998 + ], + [ + -73.416635, + 45.498326 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.416874, + 45.498016 + ], + [ + -73.417029, + 45.497796 + ], + [ + -73.417777, + 45.496741 + ], + [ + -73.418892, + 45.495165 + ], + [ + -73.420928, + 45.492323 + ], + [ + -73.421099, + 45.492084 + ], + [ + -73.421183, + 45.491976 + ], + [ + -73.423292, + 45.489022 + ], + [ + -73.425509, + 45.485946 + ], + [ + -73.425082, + 45.485716 + ], + [ + -73.425077, + 45.485713 + ], + [ + -73.424722, + 45.485522 + ], + [ + -73.423667, + 45.484946 + ], + [ + -73.423524, + 45.484865 + ], + [ + -73.422428, + 45.48427 + ], + [ + -73.421429, + 45.483725 + ], + [ + -73.42046, + 45.483193 + ], + [ + -73.420348, + 45.483134 + ], + [ + -73.420308, + 45.483112 + ], + [ + -73.419609, + 45.483652 + ], + [ + -73.418985, + 45.484117 + ], + [ + -73.418778, + 45.484272 + ], + [ + -73.418109, + 45.483842 + ], + [ + -73.418029, + 45.48379 + ], + [ + -73.419479, + 45.482708 + ], + [ + -73.420488, + 45.481958 + ], + [ + -73.420745, + 45.481758 + ], + [ + -73.42092, + 45.481704 + ], + [ + -73.421015, + 45.481695 + ], + [ + -73.421095, + 45.481704 + ], + [ + -73.421171, + 45.481741 + ], + [ + -73.421343, + 45.481822 + ], + [ + -73.421516, + 45.481941 + ], + [ + -73.42174, + 45.482096 + ], + [ + -73.421254, + 45.48246 + ], + [ + -73.42066, + 45.482887 + ], + [ + -73.420985, + 45.483068 + ], + [ + -73.421542, + 45.483378 + ], + [ + -73.42201, + 45.483634 + ], + [ + -73.422435, + 45.483865 + ], + [ + -73.423325, + 45.484347 + ], + [ + -73.42419, + 45.484829 + ], + [ + -73.425069, + 45.485316 + ], + [ + -73.425934, + 45.48578 + ], + [ + -73.426791, + 45.486243 + ], + [ + -73.427651, + 45.486712 + ], + [ + -73.427823, + 45.486583 + ], + [ + -73.430708, + 45.484424 + ], + [ + -73.431493, + 45.483848 + ], + [ + -73.431857, + 45.483578 + ], + [ + -73.433303, + 45.482509 + ], + [ + -73.4357, + 45.480746 + ], + [ + -73.435802, + 45.480665 + ], + [ + -73.435909, + 45.480575 + ], + [ + -73.436743, + 45.479964 + ], + [ + -73.43848, + 45.478674 + ], + [ + -73.438955, + 45.478323 + ], + [ + -73.440715, + 45.47702 + ], + [ + -73.441038, + 45.476781 + ], + [ + -73.443381, + 45.47505 + ], + [ + -73.443474, + 45.474978 + ], + [ + -73.443927, + 45.475285 + ], + [ + -73.44437, + 45.475586 + ], + [ + -73.445067, + 45.476058 + ], + [ + -73.445608, + 45.476432 + ], + [ + -73.446237, + 45.47686 + ], + [ + -73.446869, + 45.477292 + ], + [ + -73.44754, + 45.477747 + ], + [ + -73.448146, + 45.478157 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.448868, + 45.478494 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.449478, + 45.478081 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.453878, + 45.475068 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469043, + 45.46624 + ] + ] + }, + "id": 132, + "properties": { + "id": "8b258900-b588-486f-ab86-80085195acc4", + "data": { + "gtfs": { + "shape_id": "50_2_A" + }, + "segments": [ + { + "distanceMeters": 1078, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 963, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 550, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 1460, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 764, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 1036, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 1005, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 1444, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 1737, + "travelTimeSeconds": 52 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10034, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 402.25170076447296, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 33.44, + "travelTimeWithoutDwellTimesSeconds": 300, + "operatingTimeWithLayoverTimeSeconds": 480, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 300, + "operatingSpeedWithLayoverMetersPerSecond": 20.9, + "averageSpeedWithoutDwellTimesMetersPerSecond": 33.44 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "853b0202-bae1-4c20-ab0e-8b27d1350e9a", + "69889f24-c076-4661-981b-6008a401d446", + "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", + "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", + "50ca3159-13cc-4149-b07f-8267a31166e3", + "590769f9-bd2c-482c-8bd5-e3724936b683", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e" + ], + "stops": [], + "line_id": "20f532fa-3da9-413b-be59-a6857696c35b", + "segments": [ + 0, + 26, + 43, + 45, + 61, + 79, + 90, + 98, + 116 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 132, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469107, + 45.46587 + ], + [ + -73.469152, + 45.465801 + ], + [ + -73.469114, + 45.465711 + ], + [ + -73.469034, + 45.465669 + ], + [ + -73.468913, + 45.46567 + ], + [ + -73.468751, + 45.465752 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466385, + 45.46577 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467476, + 45.467991 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467548, + 45.468225 + ], + [ + -73.467698, + 45.468792 + ], + [ + -73.467776, + 45.469183 + ], + [ + -73.46782, + 45.469453 + ], + [ + -73.46784, + 45.469692 + ], + [ + -73.467865, + 45.469989 + ], + [ + -73.467864, + 45.470057 + ], + [ + -73.467862, + 45.470168 + ], + [ + -73.46786, + 45.470362 + ], + [ + -73.467821, + 45.470781 + ], + [ + -73.467786, + 45.471019 + ], + [ + -73.467768, + 45.4711 + ], + [ + -73.467742, + 45.471226 + ], + [ + -73.467655, + 45.471563 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467508, + 45.472063 + ], + [ + -73.467493, + 45.472108 + ], + [ + -73.467344, + 45.472561 + ], + [ + -73.467254, + 45.472832 + ], + [ + -73.467075, + 45.473412 + ], + [ + -73.467018, + 45.473612 + ], + [ + -73.46686, + 45.474168 + ], + [ + -73.466715, + 45.474632 + ], + [ + -73.466501, + 45.475269 + ], + [ + -73.466278, + 45.475935 + ], + [ + -73.466234, + 45.476067 + ], + [ + -73.46613, + 45.476375 + ], + [ + -73.465592, + 45.477979 + ], + [ + -73.465357, + 45.478703 + ], + [ + -73.46534, + 45.478747 + ], + [ + -73.465269, + 45.478932 + ], + [ + -73.465247, + 45.479 + ], + [ + -73.464879, + 45.480107 + ], + [ + -73.464823, + 45.480273 + ], + [ + -73.464733, + 45.480574 + ], + [ + -73.464664, + 45.480885 + ], + [ + -73.464648, + 45.481003 + ], + [ + -73.464634, + 45.481108 + ], + [ + -73.464622, + 45.481195 + ], + [ + -73.464619, + 45.481245 + ], + [ + -73.464603, + 45.481524 + ], + [ + -73.464619, + 45.481956 + ], + [ + -73.464693, + 45.482383 + ], + [ + -73.464736, + 45.482559 + ], + [ + -73.46485, + 45.482905 + ], + [ + -73.46499, + 45.483243 + ], + [ + -73.465069, + 45.483405 + ], + [ + -73.465231, + 45.483688 + ], + [ + -73.465328, + 45.483837 + ], + [ + -73.465383, + 45.483922 + ], + [ + -73.465513, + 45.484102 + ], + [ + -73.465839, + 45.48448 + ], + [ + -73.466022, + 45.484682 + ], + [ + -73.46613, + 45.484773 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.46623, + 45.484867 + ], + [ + -73.466294, + 45.484926 + ], + [ + -73.466447, + 45.485047 + ], + [ + -73.466566, + 45.485142 + ], + [ + -73.466759, + 45.48529 + ], + [ + -73.466948, + 45.485421 + ], + [ + -73.467024, + 45.48547 + ], + [ + -73.468004, + 45.486118 + ], + [ + -73.469888, + 45.487365 + ], + [ + -73.470621, + 45.487851 + ], + [ + -73.471588, + 45.488492 + ], + [ + -73.471789, + 45.488626 + ], + [ + -73.473768, + 45.489935 + ], + [ + -73.473993, + 45.490084 + ], + [ + -73.474218, + 45.490232 + ], + [ + -73.476501, + 45.49174 + ], + [ + -73.4777, + 45.49253 + ], + [ + -73.47907, + 45.493434 + ], + [ + -73.479217, + 45.493531 + ], + [ + -73.480275, + 45.494231 + ], + [ + -73.481907, + 45.495309 + ], + [ + -73.482, + 45.495372 + ], + [ + -73.482343, + 45.495598 + ], + [ + -73.483276, + 45.496213 + ], + [ + -73.483953, + 45.496659 + ], + [ + -73.484022, + 45.496708 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.483872, + 45.497077 + ], + [ + -73.483787, + 45.497139 + ], + [ + -73.483504, + 45.497347 + ], + [ + -73.483382, + 45.497433 + ], + [ + -73.483338, + 45.497469 + ], + [ + -73.483277, + 45.497509 + ], + [ + -73.482985, + 45.497707 + ], + [ + -73.482752, + 45.497863 + ], + [ + -73.482636, + 45.497941 + ], + [ + -73.482124, + 45.49831 + ], + [ + -73.481899, + 45.498472 + ], + [ + -73.481589, + 45.498697 + ], + [ + -73.481169, + 45.498994 + ], + [ + -73.480847, + 45.499223 + ], + [ + -73.480624, + 45.499383 + ], + [ + -73.480477, + 45.499488 + ], + [ + -73.480579, + 45.499552 + ], + [ + -73.481224, + 45.499993 + ], + [ + -73.481536, + 45.5002 + ], + [ + -73.481569, + 45.500222 + ], + [ + -73.481963, + 45.500488 + ], + [ + -73.48218, + 45.500628 + ], + [ + -73.482611, + 45.500906 + ], + [ + -73.48273, + 45.501001 + ], + [ + -73.482854, + 45.500942 + ], + [ + -73.48327, + 45.500861 + ], + [ + -73.483824, + 45.500767 + ], + [ + -73.484456, + 45.500681 + ], + [ + -73.485116, + 45.500596 + ], + [ + -73.485618, + 45.500533 + ], + [ + -73.486298, + 45.500448 + ], + [ + -73.486817, + 45.500683 + ], + [ + -73.48707, + 45.500799 + ], + [ + -73.487208, + 45.500862 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487613, + 45.501033 + ], + [ + -73.487728, + 45.501082 + ], + [ + -73.487936, + 45.501136 + ], + [ + -73.488187, + 45.501204 + ], + [ + -73.488486, + 45.501271 + ], + [ + -73.488837, + 45.501352 + ], + [ + -73.48926, + 45.501478 + ], + [ + -73.489491, + 45.501551 + ], + [ + -73.489761, + 45.501636 + ], + [ + -73.490233, + 45.501775 + ], + [ + -73.490675, + 45.501901 + ], + [ + -73.490913, + 45.501973 + ], + [ + -73.491171, + 45.502054 + ], + [ + -73.491899, + 45.502265 + ], + [ + -73.491979, + 45.502288 + ], + [ + -73.492173, + 45.502351 + ], + [ + -73.492553, + 45.502563 + ], + [ + -73.492653, + 45.50263 + ], + [ + -73.492961, + 45.502842 + ], + [ + -73.49317, + 45.503004 + ], + [ + -73.493353, + 45.503152 + ], + [ + -73.493565, + 45.503319 + ], + [ + -73.493725, + 45.503481 + ], + [ + -73.493899, + 45.503679 + ], + [ + -73.494111, + 45.503931 + ], + [ + -73.494232, + 45.504142 + ], + [ + -73.494283, + 45.504249 + ], + [ + -73.494313, + 45.504313 + ], + [ + -73.494395, + 45.504574 + ], + [ + -73.494481, + 45.50484 + ], + [ + -73.494522, + 45.504943 + ], + [ + -73.494738, + 45.505308 + ], + [ + -73.494875, + 45.505497 + ], + [ + -73.494934, + 45.505596 + ], + [ + -73.49495, + 45.505622 + ], + [ + -73.495007, + 45.505712 + ], + [ + -73.495705, + 45.506635 + ], + [ + -73.496706, + 45.507958 + ], + [ + -73.496737, + 45.507998 + ], + [ + -73.496824, + 45.508111 + ], + [ + -73.497769, + 45.509294 + ], + [ + -73.498065, + 45.509586 + ], + [ + -73.498161, + 45.50968 + ], + [ + -73.498287, + 45.509766 + ], + [ + -73.498376, + 45.509807 + ], + [ + -73.498525, + 45.509874 + ], + [ + -73.498839, + 45.509996 + ], + [ + -73.49986, + 45.510306 + ], + [ + -73.50032, + 45.51045 + ], + [ + -73.500624, + 45.510549 + ], + [ + -73.500724, + 45.510581 + ], + [ + -73.501152, + 45.51072 + ], + [ + -73.501574, + 45.510855 + ], + [ + -73.501949, + 45.510981 + ], + [ + -73.502532, + 45.511175 + ], + [ + -73.50299, + 45.511323 + ], + [ + -73.503113, + 45.511377 + ], + [ + -73.503356, + 45.511479 + ], + [ + -73.503468, + 45.511526 + ], + [ + -73.50359, + 45.511574 + ], + [ + -73.503649, + 45.511597 + ], + [ + -73.504821, + 45.512052 + ], + [ + -73.504953, + 45.512101 + ], + [ + -73.505513, + 45.512322 + ], + [ + -73.506058, + 45.51253 + ], + [ + -73.506149, + 45.512565 + ], + [ + -73.506238, + 45.512601 + ], + [ + -73.506546, + 45.512721 + ], + [ + -73.508131, + 45.513338 + ], + [ + -73.508565, + 45.513511 + ], + [ + -73.508741, + 45.513581 + ], + [ + -73.509393, + 45.513802 + ], + [ + -73.50981, + 45.513942 + ], + [ + -73.510118, + 45.514045 + ], + [ + -73.511388, + 45.514467 + ], + [ + -73.511507, + 45.514508 + ], + [ + -73.512165, + 45.514728 + ], + [ + -73.512733, + 45.514923 + ], + [ + -73.512796, + 45.514944 + ], + [ + -73.514439, + 45.515505 + ], + [ + -73.514563, + 45.515547 + ], + [ + -73.515414, + 45.515844 + ], + [ + -73.516876, + 45.516355 + ], + [ + -73.51692, + 45.51637 + ], + [ + -73.517225, + 45.516484 + ], + [ + -73.51726, + 45.516497 + ], + [ + -73.517318, + 45.516518 + ], + [ + -73.517741, + 45.516671 + ], + [ + -73.517978, + 45.516757 + ], + [ + -73.518077, + 45.516793 + ], + [ + -73.518456, + 45.516887 + ], + [ + -73.519044, + 45.517037 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.51945, + 45.517552 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520113, + 45.519732 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520194, + 45.520238 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 133, + "properties": { + "id": "511bc800-33bc-4c10-80f2-d96745fe4b5a", + "data": { + "gtfs": { + "shape_id": "54_1_A" + }, + "segments": [ + { + "distanceMeters": 716, + "travelTimeSeconds": 103 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 435, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 485, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 555, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 544, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 394, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 435, + "travelTimeSeconds": 99 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 768, + "travelTimeSeconds": 167 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9701, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7618.188458394157, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.58, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 5.05, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.58 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "acb7092d-3b2a-4d79-a4e3-09e7e52af475", + "47d29e21-b442-4f1e-bc41-0d7871af14e8", + "7eaffbff-c86c-4810-b174-bda8780c04b4", + "e76a6766-6730-419b-bd29-f65b80bb6721", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "4996264a-c3f0-4fe8-be81-9ca3d8659c61", + "e089008c-4123-4897-95b5-a61e5e049f48", + "03b1ef77-b509-4f21-97d5-d511eeb821cb", + "56af9248-f973-4335-84c1-2e5e744a3910", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "fd062866-a8eb-4466-b53a-6adf8fc3f09a", + "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", + "47ef73cf-7799-46e3-b2f1-76a6533f7746", + "36289bfc-a55e-4b55-a0d2-14f7b26cd739", + "59a23245-0190-4421-8038-2ea1cbdc6419", + "dbf189ce-b09f-4cff-a75f-31e014aad97b", + "36bd50e2-1478-4fd8-8def-c1c8e0359032", + "9158bca7-e437-40a4-83b0-5632dd53d6ee", + "f31baed5-09fe-46fd-9f4a-0a7da7aeef56", + "a331dc32-b29f-4455-9199-5b289acc7d53", + "a73a9d8f-0a4d-4f45-8ed5-05aa8ce7acde", + "0f0a758f-b2db-4611-9b64-d413bfce8846", + "2227a38f-9c32-4890-9719-eef7445fa1fc", + "969092dd-fcfd-493a-be55-d0467c757fb1", + "2a197d72-1b4b-4077-a350-4c8656ad7bb1", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "f250cba5-329e-4403-912d-778f924ce25e", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "e14cc329-23e3-4591-a281-87e8e9f1b7f7", + "segments": [ + 0, + 29, + 43, + 52, + 55, + 62, + 83, + 91, + 94, + 98, + 103, + 106, + 115, + 122, + 129, + 139, + 156, + 169, + 176, + 181, + 187, + 192, + 200, + 207, + 212, + 220, + 222, + 227, + 234, + 243 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 133, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521447, + 45.524278 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519706, + 45.52323 + ], + [ + -73.519869, + 45.522907 + ], + [ + -73.520158, + 45.522337 + ], + [ + -73.520306, + 45.521899 + ], + [ + -73.520306, + 45.521896 + ], + [ + -73.520354, + 45.521696 + ], + [ + -73.520401, + 45.521498 + ], + [ + -73.520405, + 45.521373 + ], + [ + -73.520408, + 45.521195 + ], + [ + -73.520409, + 45.52119 + ], + [ + -73.520398, + 45.521025 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520123, + 45.519903 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.518685, + 45.516946 + ], + [ + -73.518456, + 45.516887 + ], + [ + -73.518077, + 45.516793 + ], + [ + -73.517978, + 45.516757 + ], + [ + -73.517741, + 45.516671 + ], + [ + -73.517487, + 45.516579 + ], + [ + -73.517318, + 45.516518 + ], + [ + -73.517055, + 45.51642 + ], + [ + -73.51692, + 45.51637 + ], + [ + -73.516876, + 45.516355 + ], + [ + -73.515414, + 45.515844 + ], + [ + -73.514727, + 45.515604 + ], + [ + -73.514563, + 45.515547 + ], + [ + -73.512796, + 45.514944 + ], + [ + -73.512165, + 45.514728 + ], + [ + -73.51159, + 45.514536 + ], + [ + -73.511507, + 45.514508 + ], + [ + -73.511388, + 45.514467 + ], + [ + -73.510118, + 45.514045 + ], + [ + -73.50981, + 45.513942 + ], + [ + -73.509393, + 45.513802 + ], + [ + -73.508859, + 45.513621 + ], + [ + -73.508741, + 45.513581 + ], + [ + -73.508131, + 45.513338 + ], + [ + -73.506729, + 45.512792 + ], + [ + -73.506238, + 45.512601 + ], + [ + -73.506149, + 45.512565 + ], + [ + -73.505644, + 45.512372 + ], + [ + -73.505513, + 45.512322 + ], + [ + -73.504953, + 45.512101 + ], + [ + -73.504821, + 45.512052 + ], + [ + -73.503649, + 45.511597 + ], + [ + -73.50359, + 45.511574 + ], + [ + -73.503468, + 45.511526 + ], + [ + -73.503333, + 45.511469 + ], + [ + -73.503113, + 45.511377 + ], + [ + -73.50299, + 45.511323 + ], + [ + -73.502532, + 45.511175 + ], + [ + -73.501949, + 45.510981 + ], + [ + -73.501574, + 45.510855 + ], + [ + -73.501152, + 45.51072 + ], + [ + -73.500914, + 45.510643 + ], + [ + -73.500724, + 45.510581 + ], + [ + -73.50032, + 45.51045 + ], + [ + -73.49986, + 45.510306 + ], + [ + -73.498839, + 45.509996 + ], + [ + -73.498525, + 45.509874 + ], + [ + -73.498287, + 45.509766 + ], + [ + -73.498252, + 45.509742 + ], + [ + -73.498161, + 45.50968 + ], + [ + -73.498065, + 45.509586 + ], + [ + -73.497769, + 45.509294 + ], + [ + -73.496946, + 45.508264 + ], + [ + -73.496824, + 45.508111 + ], + [ + -73.496706, + 45.507958 + ], + [ + -73.495705, + 45.506635 + ], + [ + -73.495059, + 45.505781 + ], + [ + -73.495007, + 45.505712 + ], + [ + -73.49495, + 45.505622 + ], + [ + -73.494875, + 45.505497 + ], + [ + -73.494738, + 45.505308 + ], + [ + -73.494522, + 45.504943 + ], + [ + -73.494516, + 45.504928 + ], + [ + -73.494481, + 45.50484 + ], + [ + -73.494395, + 45.504574 + ], + [ + -73.494313, + 45.504313 + ], + [ + -73.494232, + 45.504142 + ], + [ + -73.494111, + 45.503931 + ], + [ + -73.493899, + 45.503679 + ], + [ + -73.493725, + 45.503481 + ], + [ + -73.493565, + 45.503319 + ], + [ + -73.493353, + 45.503152 + ], + [ + -73.49317, + 45.503004 + ], + [ + -73.492961, + 45.502842 + ], + [ + -73.492653, + 45.50263 + ], + [ + -73.492622, + 45.502609 + ], + [ + -73.492553, + 45.502563 + ], + [ + -73.492173, + 45.502351 + ], + [ + -73.491979, + 45.502288 + ], + [ + -73.491171, + 45.502054 + ], + [ + -73.490913, + 45.501973 + ], + [ + -73.490675, + 45.501901 + ], + [ + -73.490406, + 45.501825 + ], + [ + -73.490233, + 45.501775 + ], + [ + -73.489761, + 45.501636 + ], + [ + -73.48926, + 45.501478 + ], + [ + -73.488837, + 45.501352 + ], + [ + -73.488486, + 45.501271 + ], + [ + -73.488187, + 45.501204 + ], + [ + -73.487936, + 45.501136 + ], + [ + -73.487728, + 45.501082 + ], + [ + -73.487613, + 45.501033 + ], + [ + -73.487519, + 45.500719 + ], + [ + -73.487509, + 45.500686 + ], + [ + -73.487464, + 45.50056 + ], + [ + -73.487346, + 45.500232 + ], + [ + -73.487223, + 45.499973 + ], + [ + -73.487139, + 45.499795 + ], + [ + -73.486985, + 45.499512 + ], + [ + -73.48683, + 45.499253 + ], + [ + -73.486818, + 45.499233 + ], + [ + -73.48673, + 45.4991 + ], + [ + -73.486631, + 45.498949 + ], + [ + -73.486428, + 45.498675 + ], + [ + -73.486216, + 45.498401 + ], + [ + -73.486166, + 45.498342 + ], + [ + -73.486, + 45.498149 + ], + [ + -73.485576, + 45.497708 + ], + [ + -73.485299, + 45.497456 + ], + [ + -73.485251, + 45.497415 + ], + [ + -73.485239, + 45.497404 + ], + [ + -73.484899, + 45.497123 + ], + [ + -73.484434, + 45.496776 + ], + [ + -73.484387, + 45.49674 + ], + [ + -73.484357, + 45.496722 + ], + [ + -73.482226, + 45.495313 + ], + [ + -73.482144, + 45.49526 + ], + [ + -73.482055, + 45.495201 + ], + [ + -73.479532, + 45.49353 + ], + [ + -73.479372, + 45.493423 + ], + [ + -73.474514, + 45.490213 + ], + [ + -73.474366, + 45.490115 + ], + [ + -73.473909, + 45.489814 + ], + [ + -73.472098, + 45.488616 + ], + [ + -73.471942, + 45.488513 + ], + [ + -73.46708, + 45.485304 + ], + [ + -73.466642, + 45.484984 + ], + [ + -73.466501, + 45.484867 + ], + [ + -73.466473, + 45.484845 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466302, + 45.484687 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466188, + 45.484448 + ], + [ + -73.466149, + 45.484395 + ], + [ + -73.465905, + 45.484113 + ], + [ + -73.465719, + 45.4839 + ], + [ + -73.46546, + 45.483541 + ], + [ + -73.465236, + 45.483174 + ], + [ + -73.465161, + 45.483037 + ], + [ + -73.465057, + 45.482799 + ], + [ + -73.464968, + 45.48254 + ], + [ + -73.46489, + 45.482284 + ], + [ + -73.464833, + 45.481906 + ], + [ + -73.464816, + 45.481524 + ], + [ + -73.464841, + 45.481188 + ], + [ + -73.464843, + 45.481165 + ], + [ + -73.464847, + 45.481114 + ], + [ + -73.464866, + 45.480979 + ], + [ + -73.46492, + 45.48071 + ], + [ + -73.465032, + 45.480327 + ], + [ + -73.465198, + 45.479819 + ], + [ + -73.46547, + 45.479009 + ], + [ + -73.46555, + 45.47877 + ], + [ + -73.465652, + 45.478467 + ], + [ + -73.465874, + 45.477808 + ], + [ + -73.466477, + 45.475987 + ], + [ + -73.466484, + 45.475966 + ], + [ + -73.466637, + 45.475504 + ], + [ + -73.467366, + 45.473305 + ], + [ + -73.467616, + 45.472553 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467869, + 45.471793 + ], + [ + -73.467954, + 45.471482 + ], + [ + -73.467979, + 45.471365 + ], + [ + -73.468005, + 45.471249 + ], + [ + -73.468064, + 45.470898 + ], + [ + -73.468089, + 45.470647 + ], + [ + -73.468112, + 45.470407 + ], + [ + -73.468119, + 45.470155 + ], + [ + -73.468115, + 45.470044 + ], + [ + -73.468111, + 45.469894 + ], + [ + -73.468108, + 45.469818 + ], + [ + -73.468107, + 45.469773 + ], + [ + -73.46805, + 45.4693 + ], + [ + -73.467952, + 45.46883 + ], + [ + -73.467932, + 45.468733 + ], + [ + -73.467793, + 45.468274 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.46908, + 45.465912 + ], + [ + -73.469107, + 45.46587 + ] + ] + }, + "id": 134, + "properties": { + "id": "d4cc57da-cbfb-4514-84b6-56d4965e7b21", + "data": { + "gtfs": { + "shape_id": "54_1_R" + }, + "segments": [ + { + "distanceMeters": 823, + "travelTimeSeconds": 110 + }, + { + "distanceMeters": 471, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 104, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 304, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 195, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 538, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 604, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 440, + "travelTimeSeconds": 91 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 608, + "travelTimeSeconds": 127 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 453, + "travelTimeSeconds": 95 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9083, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7618.188458394157, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.06, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 5.41, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.06 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "f250cba5-329e-4403-912d-778f924ce25e", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "f1be4054-f28c-45a4-bc0b-58b82e1e6e83", + "969092dd-fcfd-493a-be55-d0467c757fb1", + "2227a38f-9c32-4890-9719-eef7445fa1fc", + "0f0a758f-b2db-4611-9b64-d413bfce8846", + "a73a9d8f-0a4d-4f45-8ed5-05aa8ce7acde", + "a331dc32-b29f-4455-9199-5b289acc7d53", + "f31baed5-09fe-46fd-9f4a-0a7da7aeef56", + "9158bca7-e437-40a4-83b0-5632dd53d6ee", + "36bd50e2-1478-4fd8-8def-c1c8e0359032", + "433424db-8ed2-48db-aa2a-385d6850eb86", + "62e9a71c-d705-430b-ba91-a24283924f89", + "bcd0a901-5384-443e-9be4-1f0faa123ccb", + "fdd9bfef-c8dc-4f65-9008-847050729854", + "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", + "7ad37664-fa6b-478f-8d31-2d3ae7009709", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "94cd69e7-ebc9-452b-a357-367107db73b4", + "03b1ef77-b509-4f21-97d5-d511eeb821cb", + "351136d8-2c40-4c3f-8032-a52e48738c07", + "159a0fe9-bedb-40f2-9806-32ab49594978", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "579043e1-54f7-411f-9a36-e7ee3324290f", + "1758013c-4193-42f0-a495-c36930003f5b", + "51e1600d-418e-4477-9b26-9e5507d72a03", + "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "e14cc329-23e3-4591-a281-87e8e9f1b7f7", + "segments": [ + 0, + 32, + 46, + 52, + 56, + 62, + 65, + 75, + 82, + 89, + 93, + 97, + 103, + 116, + 123, + 133, + 140, + 151, + 153, + 156, + 159, + 161, + 164, + 168, + 185, + 193, + 196, + 208, + 216 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 134, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.508337, + 45.486547 + ], + [ + -73.508385, + 45.486622 + ], + [ + -73.508489, + 45.486784 + ], + [ + -73.508543, + 45.486852 + ], + [ + -73.509573, + 45.488342 + ], + [ + -73.509675, + 45.488489 + ], + [ + -73.509764, + 45.488615 + ], + [ + -73.509971, + 45.488912 + ], + [ + -73.510806, + 45.490109 + ], + [ + -73.510813, + 45.490118 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.512403, + 45.492411 + ], + [ + -73.512404, + 45.492412 + ], + [ + -73.51245, + 45.492507 + ], + [ + -73.512764, + 45.493074 + ], + [ + -73.512921, + 45.493393 + ], + [ + -73.512971, + 45.493496 + ], + [ + -73.512984, + 45.493515 + ], + [ + -73.513008, + 45.493622 + ], + [ + -73.513012, + 45.493663 + ], + [ + -73.513019, + 45.493721 + ], + [ + -73.513009, + 45.493798 + ], + [ + -73.512984, + 45.493864 + ], + [ + -73.512954, + 45.493917 + ], + [ + -73.512916, + 45.493951 + ], + [ + -73.512873, + 45.493987 + ], + [ + -73.512839, + 45.494011 + ], + [ + -73.512778, + 45.494036 + ], + [ + -73.512753, + 45.494043 + ], + [ + -73.512664, + 45.494068 + ], + [ + -73.512506, + 45.494102 + ], + [ + -73.511393, + 45.494185 + ], + [ + -73.51105, + 45.494174 + ], + [ + -73.510846, + 45.494189 + ], + [ + -73.510793, + 45.4942 + ], + [ + -73.510474, + 45.49419 + ], + [ + -73.51005, + 45.494183 + ], + [ + -73.509926, + 45.494181 + ], + [ + -73.50913, + 45.494175 + ], + [ + -73.508103, + 45.494169 + ], + [ + -73.507903, + 45.494167 + ], + [ + -73.506279, + 45.494154 + ], + [ + -73.505489, + 45.494143 + ], + [ + -73.505309, + 45.49414 + ], + [ + -73.504834, + 45.494136 + ], + [ + -73.504012, + 45.494128 + ], + [ + -73.503889, + 45.494127 + ], + [ + -73.502661, + 45.494132 + ], + [ + -73.501918, + 45.494118 + ], + [ + -73.501485, + 45.494123 + ], + [ + -73.501355, + 45.494132 + ], + [ + -73.50111, + 45.494181 + ], + [ + -73.50099, + 45.494217 + ], + [ + -73.500901, + 45.494253 + ], + [ + -73.500871, + 45.494267 + ], + [ + -73.500761, + 45.494325 + ], + [ + -73.500559, + 45.494465 + ], + [ + -73.50052, + 45.494499 + ], + [ + -73.500469, + 45.494546 + ], + [ + -73.500384, + 45.494631 + ], + [ + -73.500337, + 45.494686 + ], + [ + -73.500261, + 45.494702 + ], + [ + -73.500224, + 45.494724 + ], + [ + -73.500159, + 45.494783 + ], + [ + -73.500133, + 45.494806 + ], + [ + -73.500094, + 45.494829 + ], + [ + -73.500044, + 45.494845 + ], + [ + -73.499998, + 45.494851 + ], + [ + -73.499973, + 45.494852 + ], + [ + -73.499929, + 45.494844 + ], + [ + -73.499829, + 45.494828 + ], + [ + -73.499778, + 45.494815 + ], + [ + -73.499763, + 45.494802 + ], + [ + -73.49959, + 45.494676 + ], + [ + -73.499359, + 45.494506 + ], + [ + -73.499315, + 45.494474 + ], + [ + -73.499159, + 45.494361 + ], + [ + -73.498924, + 45.49419 + ], + [ + -73.498797, + 45.494096 + ], + [ + -73.498616, + 45.49397 + ], + [ + -73.49848, + 45.493866 + ], + [ + -73.498238, + 45.493691 + ], + [ + -73.498234, + 45.493687 + ], + [ + -73.49804, + 45.493547 + ], + [ + -73.497995, + 45.493515 + ], + [ + -73.497927, + 45.49347 + ], + [ + -73.497866, + 45.493425 + ], + [ + -73.497771, + 45.493353 + ], + [ + -73.497557, + 45.493191 + ], + [ + -73.497339, + 45.493038 + ], + [ + -73.497128, + 45.492885 + ], + [ + -73.496772, + 45.492629 + ], + [ + -73.496459, + 45.492404 + ], + [ + -73.496416, + 45.492372 + ], + [ + -73.496321, + 45.492305 + ], + [ + -73.496235, + 45.492242 + ], + [ + -73.495851, + 45.491976 + ], + [ + -73.49562, + 45.491814 + ], + [ + -73.495442, + 45.491684 + ], + [ + -73.495204, + 45.491517 + ], + [ + -73.494917, + 45.491315 + ], + [ + -73.49433, + 45.490897 + ], + [ + -73.494242, + 45.490838 + ], + [ + -73.494221, + 45.490823 + ], + [ + -73.493838, + 45.49055 + ], + [ + -73.493701, + 45.490456 + ], + [ + -73.493573, + 45.490366 + ], + [ + -73.492976, + 45.489943 + ], + [ + -73.492778, + 45.489803 + ], + [ + -73.492674, + 45.48973 + ], + [ + -73.492465, + 45.489583 + ], + [ + -73.492419, + 45.48955 + ], + [ + -73.492218, + 45.489407 + ], + [ + -73.49203, + 45.489272 + ], + [ + -73.491721, + 45.489052 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.492055, + 45.488705 + ], + [ + -73.492138, + 45.488647 + ], + [ + -73.492246, + 45.488512 + ], + [ + -73.492413, + 45.48862 + ], + [ + -73.492658, + 45.488782 + ], + [ + -73.492831, + 45.488903 + ], + [ + -73.492984, + 45.489012 + ], + [ + -73.493685, + 45.489511 + ], + [ + -73.493971, + 45.489715 + ], + [ + -73.494044, + 45.489767 + ], + [ + -73.494284, + 45.489943 + ], + [ + -73.494463, + 45.490073 + ], + [ + -73.494432, + 45.490141 + ], + [ + -73.494158, + 45.490222 + ], + [ + -73.49392, + 45.490316 + ], + [ + -73.493794, + 45.490397 + ], + [ + -73.493701, + 45.490456 + ], + [ + -73.493838, + 45.49055 + ], + [ + -73.494242, + 45.490838 + ], + [ + -73.494255, + 45.490846 + ], + [ + -73.49433, + 45.490897 + ], + [ + -73.494917, + 45.491315 + ], + [ + -73.495204, + 45.491517 + ], + [ + -73.495442, + 45.491684 + ], + [ + -73.49562, + 45.491814 + ], + [ + -73.495851, + 45.491976 + ], + [ + -73.496235, + 45.492242 + ], + [ + -73.496321, + 45.492305 + ], + [ + -73.496367, + 45.492338 + ], + [ + -73.496416, + 45.492372 + ], + [ + -73.496772, + 45.492629 + ], + [ + -73.497128, + 45.492885 + ], + [ + -73.497339, + 45.493038 + ], + [ + -73.497557, + 45.493191 + ], + [ + -73.497619, + 45.493238 + ], + [ + -73.497771, + 45.493353 + ], + [ + -73.497866, + 45.493425 + ], + [ + -73.497927, + 45.49347 + ], + [ + -73.497995, + 45.493515 + ], + [ + -73.49804, + 45.493547 + ], + [ + -73.498238, + 45.493691 + ], + [ + -73.49848, + 45.493866 + ], + [ + -73.498616, + 45.49397 + ], + [ + -73.498797, + 45.494096 + ], + [ + -73.498924, + 45.49419 + ], + [ + -73.499159, + 45.494361 + ], + [ + -73.499315, + 45.494474 + ], + [ + -73.499359, + 45.494506 + ], + [ + -73.49959, + 45.494676 + ], + [ + -73.499763, + 45.494802 + ], + [ + -73.499778, + 45.494815 + ], + [ + -73.499802, + 45.494831 + ], + [ + -73.500025, + 45.494979 + ], + [ + -73.500064, + 45.495 + ], + [ + -73.500106, + 45.495026 + ], + [ + -73.500592, + 45.495409 + ], + [ + -73.50081, + 45.495567 + ], + [ + -73.501059, + 45.495724 + ], + [ + -73.501182, + 45.495805 + ], + [ + -73.501279, + 45.495868 + ], + [ + -73.501285, + 45.495872 + ], + [ + -73.501808, + 45.496251 + ], + [ + -73.502239, + 45.49655 + ], + [ + -73.502293, + 45.496588 + ], + [ + -73.502336, + 45.49662 + ], + [ + -73.50284, + 45.49698 + ], + [ + -73.50327, + 45.49729 + ], + [ + -73.503408, + 45.497389 + ], + [ + -73.503475, + 45.497438 + ], + [ + -73.504131, + 45.497897 + ], + [ + -73.504473, + 45.49814 + ], + [ + -73.504683, + 45.498293 + ], + [ + -73.504752, + 45.498345 + ], + [ + -73.504839, + 45.49841 + ], + [ + -73.505105, + 45.498595 + ], + [ + -73.505329, + 45.498757 + ], + [ + -73.505704, + 45.498928 + ], + [ + -73.506001, + 45.499076 + ], + [ + -73.506259, + 45.499211 + ], + [ + -73.506709, + 45.499427 + ], + [ + -73.506801, + 45.499467 + ], + [ + -73.507241, + 45.499655 + ], + [ + -73.50735, + 45.499701 + ], + [ + -73.507712, + 45.499859 + ], + [ + -73.508861, + 45.50034 + ], + [ + -73.508958, + 45.500376 + ], + [ + -73.509608, + 45.500651 + ], + [ + -73.509762, + 45.500713 + ], + [ + -73.50993, + 45.500781 + ], + [ + -73.510419, + 45.501005 + ], + [ + -73.511327, + 45.50142 + ], + [ + -73.512063, + 45.501735 + ], + [ + -73.512398, + 45.501874 + ], + [ + -73.512677, + 45.501991 + ], + [ + -73.512872, + 45.502072 + ], + [ + -73.513437, + 45.502275 + ], + [ + -73.513621, + 45.502342 + ], + [ + -73.513711, + 45.502384 + ], + [ + -73.513806, + 45.502427 + ], + [ + -73.513873, + 45.50226 + ], + [ + -73.513907, + 45.50218 + ], + [ + -73.514024, + 45.501904 + ], + [ + -73.514045, + 45.501797 + ], + [ + -73.514104, + 45.501797 + ], + [ + -73.514193, + 45.501801 + ], + [ + -73.514212, + 45.501802 + ], + [ + -73.514398, + 45.501805 + ], + [ + -73.516158, + 45.501834 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.516514, + 45.501512 + ], + [ + -73.51647, + 45.501401 + ], + [ + -73.516373, + 45.50114 + ], + [ + -73.516146, + 45.500501 + ], + [ + -73.515977, + 45.500074 + ], + [ + -73.515873, + 45.499831 + ], + [ + -73.515686, + 45.499475 + ], + [ + -73.515674, + 45.499453 + ], + [ + -73.515623, + 45.499359 + ], + [ + -73.51517, + 45.49854 + ], + [ + -73.515085, + 45.498391 + ], + [ + -73.514769, + 45.497838 + ], + [ + -73.514552, + 45.497478 + ], + [ + -73.514219, + 45.49697 + ], + [ + -73.514166, + 45.496911 + ], + [ + -73.514104, + 45.49683 + ], + [ + -73.514054, + 45.496749 + ], + [ + -73.514009, + 45.496686 + ], + [ + -73.513974, + 45.496614 + ], + [ + -73.513925, + 45.49652 + ], + [ + -73.513899, + 45.496425 + ], + [ + -73.51384, + 45.496187 + ], + [ + -73.513786, + 45.49598 + ], + [ + -73.513387, + 45.495977 + ], + [ + -73.511796, + 45.495963 + ], + [ + -73.511699, + 45.495962 + ], + [ + -73.510863, + 45.495956 + ], + [ + -73.510445, + 45.495953 + ], + [ + -73.510455, + 45.495391 + ], + [ + -73.510455, + 45.495229 + ], + [ + -73.510456, + 45.495157 + ], + [ + -73.510453, + 45.494797 + ], + [ + -73.510455, + 45.494482 + ], + [ + -73.510459, + 45.494414 + ], + [ + -73.510464, + 45.494334 + ], + [ + -73.510575, + 45.494333 + ], + [ + -73.510666, + 45.494306 + ], + [ + -73.510805, + 45.494295 + ], + [ + -73.511632, + 45.49429 + ], + [ + -73.512028, + 45.4943 + ], + [ + -73.513238, + 45.494329 + ], + [ + -73.513716, + 45.494311 + ], + [ + -73.514173, + 45.494261 + ], + [ + -73.514565, + 45.494198 + ], + [ + -73.515032, + 45.494113 + ], + [ + -73.515165, + 45.494089 + ], + [ + -73.515213, + 45.494088 + ], + [ + -73.515313, + 45.4941 + ], + [ + -73.51545, + 45.494141 + ], + [ + -73.515538, + 45.49417 + ], + [ + -73.515619, + 45.49421 + ], + [ + -73.51569, + 45.494262 + ], + [ + -73.515767, + 45.494337 + ], + [ + -73.515965, + 45.494618 + ], + [ + -73.516201, + 45.494969 + ], + [ + -73.516422, + 45.49528 + ], + [ + -73.516609, + 45.49556 + ], + [ + -73.51677, + 45.495808 + ], + [ + -73.516972, + 45.4961 + ], + [ + -73.517047, + 45.49623 + ], + [ + -73.517102, + 45.496355 + ], + [ + -73.517135, + 45.496512 + ], + [ + -73.517146, + 45.496606 + ], + [ + -73.517124, + 45.496741 + ], + [ + -73.517077, + 45.496814 + ], + [ + -73.517019, + 45.496872 + ], + [ + -73.51692, + 45.496932 + ], + [ + -73.51678, + 45.49698 + ], + [ + -73.516623, + 45.497004 + ], + [ + -73.516491, + 45.497003 + ], + [ + -73.516439, + 45.496993 + ], + [ + -73.516327, + 45.496957 + ], + [ + -73.516222, + 45.496916 + ], + [ + -73.516138, + 45.496858 + ], + [ + -73.516092, + 45.496818 + ], + [ + -73.516045, + 45.496746 + ], + [ + -73.516026, + 45.496702 + ], + [ + -73.51602, + 45.496632 + ], + [ + -73.516024, + 45.496491 + ], + [ + -73.516041, + 45.496421 + ], + [ + -73.516096, + 45.496339 + ], + [ + -73.516157, + 45.496273 + ], + [ + -73.51624, + 45.496205 + ], + [ + -73.516439, + 45.496104 + ], + [ + -73.51654, + 45.496057 + ], + [ + -73.516548, + 45.496054 + ], + [ + -73.516793, + 45.49596 + ], + [ + -73.517034, + 45.495878 + ], + [ + -73.517452, + 45.495744 + ], + [ + -73.517812, + 45.495628 + ], + [ + -73.518724, + 45.495318 + ], + [ + -73.519008, + 45.495223 + ], + [ + -73.526903, + 45.492546 + ], + [ + -73.539774, + 45.488181 + ], + [ + -73.539901, + 45.488138 + ], + [ + -73.540024, + 45.488096 + ], + [ + -73.540676, + 45.487875 + ], + [ + -73.541063, + 45.487748 + ], + [ + -73.541434, + 45.487668 + ], + [ + -73.54173, + 45.487614 + ], + [ + -73.542302, + 45.487537 + ], + [ + -73.54292, + 45.48745 + ], + [ + -73.5435, + 45.487375 + ], + [ + -73.544331, + 45.487261 + ], + [ + -73.545074, + 45.487154 + ], + [ + -73.545182, + 45.487134 + ], + [ + -73.545339, + 45.487094 + ], + [ + -73.545558, + 45.487062 + ], + [ + -73.5458, + 45.487022 + ], + [ + -73.546021, + 45.486972 + ], + [ + -73.547381, + 45.486666 + ], + [ + -73.547964, + 45.486576 + ], + [ + -73.548856, + 45.48654 + ], + [ + -73.550282, + 45.486665 + ], + [ + -73.552303, + 45.486842 + ], + [ + -73.55227, + 45.48703 + ], + [ + -73.552227, + 45.487278 + ], + [ + -73.551897, + 45.489194 + ], + [ + -73.551639, + 45.490868 + ], + [ + -73.551636, + 45.490883 + ], + [ + -73.55163, + 45.490926 + ], + [ + -73.551621, + 45.490981 + ], + [ + -73.550905, + 45.495342 + ], + [ + -73.552737, + 45.496232 + ], + [ + -73.552979, + 45.496354 + ], + [ + -73.552989, + 45.496621 + ], + [ + -73.552979, + 45.496729 + ], + [ + -73.552935, + 45.497044 + ], + [ + -73.552883, + 45.497413 + ], + [ + -73.55284, + 45.498141 + ], + [ + -73.55286, + 45.49878 + ], + [ + -73.553055, + 45.498786 + ], + [ + -73.554295, + 45.4992 + ], + [ + -73.554782, + 45.499367 + ], + [ + -73.554892, + 45.499405 + ], + [ + -73.555129, + 45.499075 + ], + [ + -73.555173, + 45.499014 + ], + [ + -73.555269, + 45.498308 + ], + [ + -73.555414, + 45.497651 + ], + [ + -73.555549, + 45.496965 + ], + [ + -73.555614, + 45.496551 + ], + [ + -73.555665, + 45.496222 + ], + [ + -73.556187, + 45.496417 + ], + [ + -73.557268, + 45.496821 + ], + [ + -73.557934, + 45.497074 + ], + [ + -73.558754, + 45.497382 + ], + [ + -73.559665, + 45.497799 + ], + [ + -73.56055, + 45.498258 + ], + [ + -73.561247, + 45.498577 + ], + [ + -73.561292, + 45.498594 + ], + [ + -73.561574, + 45.498701 + ], + [ + -73.561917, + 45.498838 + ], + [ + -73.562165, + 45.49894 + ], + [ + -73.562545, + 45.499119 + ], + [ + -73.562571, + 45.499093 + ], + [ + -73.562654, + 45.499004 + ], + [ + -73.562195, + 45.498662 + ], + [ + -73.561924, + 45.498365 + ], + [ + -73.561721, + 45.498171 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.562038, + 45.497108 + ], + [ + -73.562152, + 45.497164 + ], + [ + -73.562611, + 45.497387 + ], + [ + -73.562698, + 45.497457 + ], + [ + -73.562791, + 45.497486 + ], + [ + -73.562898, + 45.497495 + ], + [ + -73.563026, + 45.497486 + ], + [ + -73.563269, + 45.497461 + ], + [ + -73.563391, + 45.497457 + ], + [ + -73.563535, + 45.497468 + ], + [ + -73.56365, + 45.497486 + ], + [ + -73.56376, + 45.497514 + ], + [ + -73.563861, + 45.497562 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.56431, + 45.497835 + ], + [ + -73.565142, + 45.498217 + ], + [ + -73.565601, + 45.498443 + ], + [ + -73.565748, + 45.49831 + ], + [ + -73.565849, + 45.498292 + ], + [ + -73.566051, + 45.498359 + ], + [ + -73.566361, + 45.498471 + ], + [ + -73.566492, + 45.498485 + ], + [ + -73.566611, + 45.498345 + ] + ] + }, + "id": 135, + "properties": { + "id": "4fdebed2-95b9-4530-a85b-d19f21fe9f09", + "data": { + "gtfs": { + "shape_id": "55_1_A" + }, + "segments": [ + { + "distanceMeters": 222, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 411, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 445, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 337, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 312, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 93 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 3996, + "travelTimeSeconds": 644 + }, + { + "distanceMeters": 404, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 774, + "travelTimeSeconds": 125 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 1356, + "travelTimeSeconds": 298 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 228, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13957, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4736.079082751775, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.12, + "travelTimeWithoutDwellTimesSeconds": 2280, + "operatingTimeWithLayoverTimeSeconds": 2508, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2280, + "operatingSpeedWithLayoverMetersPerSecond": 5.56, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.12 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "41d7b6d4-1fe4-44ed-a774-b005607fc59d", + "bc9b9243-e0ec-461a-9898-6eb69ecd511a", + "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "5d15d6e1-5f1d-4e9c-8c3a-63a3b3f11da3", + "17130fb5-7835-48a4-911b-07c08af792bb", + "f09bea25-9e7f-4f46-8a1e-1137fbe57059", + "16f75d06-f538-4735-a99f-9bc7eaa6eaab", + "ea9801c9-a110-4900-bcae-f1b3a40050e8", + "0b6032e7-414a-429f-9df2-796599b947c2", + "88d8365e-2528-4422-a483-bb2efd9de617", + "196681e4-c9e5-4a79-a3b1-ce225227e0aa", + "fa220212-b6b2-4456-934f-7248f9884444", + "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", + "88d8365e-2528-4422-a483-bb2efd9de617", + "0b6032e7-414a-429f-9df2-796599b947c2", + "1cedf968-65c8-4c0f-b92c-c06da7b8fe69", + "16f75d06-f538-4735-a99f-9bc7eaa6eaab", + "1cea6199-481e-43b0-8d4a-8c7593ff485f", + "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", + "6557d1fe-6975-49e2-871c-ab07d42ea35b", + "0ac44bed-6f37-406e-8654-f8d5f36c840e", + "443288e2-2ae9-4c97-a015-0e176d8f71b2", + "a230c1b0-ee13-40c1-8d3f-12ae20006cc6", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "0b09b82c-ec97-406d-9f1c-690cc935b5ea", + "114aaaad-d40e-4930-853f-ef5cebdd299f", + "144dbf94-6da5-4246-8207-b5ee6c953066", + "c56a5ffb-5390-4f94-8172-c9ab40c1a523", + "b622f016-a8e6-4f2a-835d-417fa16ddd32", + "f0399757-57fe-401c-85d1-a8835da56bb7", + "72bc37a1-b03c-4149-8154-962f4512a12d", + "8e6eba9f-71d7-47ba-ab56-7f4eadc64281", + "587bca45-e028-437b-8c17-3d0fa1f4d9bd", + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" + ], + "stops": [], + "line_id": "9728c421-e658-48b0-86dc-586caebce3cc", + "segments": [ + 0, + 4, + 8, + 11, + 36, + 39, + 42, + 63, + 82, + 92, + 103, + 113, + 122, + 126, + 135, + 144, + 150, + 167, + 176, + 178, + 188, + 197, + 205, + 216, + 223, + 231, + 248, + 251, + 258, + 341, + 344, + 352, + 360, + 365 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 135, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.566668, + 45.498277 + ], + [ + -73.566738, + 45.498195 + ], + [ + -73.566628, + 45.49808 + ], + [ + -73.566306, + 45.497931 + ], + [ + -73.566253, + 45.497841 + ], + [ + -73.56638, + 45.497699 + ], + [ + -73.566016, + 45.497523 + ], + [ + -73.564691, + 45.496892 + ], + [ + -73.564548, + 45.497036 + ], + [ + -73.564308, + 45.497279 + ], + [ + -73.564223, + 45.497363 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.562654, + 45.499004 + ], + [ + -73.562195, + 45.498662 + ], + [ + -73.561924, + 45.498365 + ], + [ + -73.561751, + 45.4982 + ], + [ + -73.561721, + 45.498171 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.561033, + 45.497765 + ], + [ + -73.560139, + 45.497347 + ], + [ + -73.559235, + 45.49696 + ], + [ + -73.55917, + 45.496938 + ], + [ + -73.558356, + 45.496631 + ], + [ + -73.557604, + 45.496364 + ], + [ + -73.556782, + 45.49606 + ], + [ + -73.55595, + 45.49575 + ], + [ + -73.555745, + 45.495673 + ], + [ + -73.555351, + 45.495512 + ], + [ + -73.555133, + 45.495401 + ], + [ + -73.554916, + 45.495262 + ], + [ + -73.554768, + 45.495125 + ], + [ + -73.55465, + 45.494994 + ], + [ + -73.553944, + 45.493258 + ], + [ + -73.553818, + 45.492971 + ], + [ + -73.553465, + 45.492338 + ], + [ + -73.552977, + 45.491759 + ], + [ + -73.552502, + 45.491344 + ], + [ + -73.551956, + 45.490962 + ], + [ + -73.551651, + 45.490791 + ], + [ + -73.551074, + 45.490513 + ], + [ + -73.550682, + 45.490367 + ], + [ + -73.550312, + 45.490228 + ], + [ + -73.54956, + 45.490034 + ], + [ + -73.548355, + 45.489798 + ], + [ + -73.542648, + 45.488704 + ], + [ + -73.541878, + 45.488554 + ], + [ + -73.541483, + 45.488476 + ], + [ + -73.541083, + 45.488397 + ], + [ + -73.540636, + 45.488282 + ], + [ + -73.540145, + 45.488119 + ], + [ + -73.539582, + 45.48786 + ], + [ + -73.539239, + 45.487663 + ], + [ + -73.538946, + 45.487462 + ], + [ + -73.538619, + 45.487192 + ], + [ + -73.538304, + 45.486863 + ], + [ + -73.538089, + 45.486564 + ], + [ + -73.537862, + 45.486139 + ], + [ + -73.537796, + 45.485958 + ], + [ + -73.537731, + 45.485785 + ], + [ + -73.53767, + 45.485461 + ], + [ + -73.537646, + 45.485264 + ], + [ + -73.537653, + 45.484914 + ], + [ + -73.537707, + 45.484604 + ], + [ + -73.537881, + 45.484168 + ], + [ + -73.537968, + 45.483893 + ], + [ + -73.538058, + 45.483623 + ], + [ + -73.539557, + 45.479354 + ], + [ + -73.53982, + 45.478652 + ], + [ + -73.540179, + 45.47782 + ], + [ + -73.540481, + 45.477177 + ], + [ + -73.540578, + 45.477027 + ], + [ + -73.540928, + 45.476409 + ], + [ + -73.5413, + 45.475732 + ], + [ + -73.541747, + 45.474937 + ], + [ + -73.542136, + 45.474264 + ], + [ + -73.542539, + 45.47363 + ], + [ + -73.543159, + 45.472786 + ], + [ + -73.543162, + 45.472781 + ], + [ + -73.5432, + 45.472729 + ], + [ + -73.543381, + 45.472482 + ], + [ + -73.543908, + 45.471834 + ], + [ + -73.544604, + 45.471016 + ], + [ + -73.54479, + 45.470824 + ], + [ + -73.544929, + 45.470679 + ], + [ + -73.54509, + 45.470477 + ], + [ + -73.545159, + 45.470391 + ], + [ + -73.545162, + 45.470289 + ], + [ + -73.54518, + 45.470102 + ], + [ + -73.54513, + 45.469912 + ], + [ + -73.545039, + 45.469774 + ], + [ + -73.545032, + 45.469762 + ], + [ + -73.544829, + 45.469589 + ], + [ + -73.544396, + 45.469456 + ], + [ + -73.544223, + 45.469408 + ], + [ + -73.544, + 45.469414 + ], + [ + -73.54385, + 45.469436 + ], + [ + -73.543665, + 45.469485 + ], + [ + -73.543125, + 45.469658 + ], + [ + -73.542795, + 45.46978 + ], + [ + -73.542335, + 45.469915 + ], + [ + -73.542042, + 45.469974 + ], + [ + -73.541634, + 45.469988 + ], + [ + -73.538583, + 45.470121 + ], + [ + -73.536645, + 45.47012 + ], + [ + -73.534843, + 45.470106 + ], + [ + -73.531663, + 45.470044 + ], + [ + -73.528901, + 45.469979 + ], + [ + -73.525636, + 45.469864 + ], + [ + -73.520215, + 45.469565 + ], + [ + -73.516228, + 45.469261 + ], + [ + -73.50737, + 45.468395 + ], + [ + -73.501604, + 45.467786 + ], + [ + -73.499262, + 45.467514 + ], + [ + -73.493921, + 45.466881 + ], + [ + -73.491932, + 45.466645 + ], + [ + -73.489852, + 45.466348 + ], + [ + -73.489119, + 45.46624 + ], + [ + -73.488353, + 45.466099 + ], + [ + -73.487947, + 45.465982 + ], + [ + -73.487624, + 45.465833 + ], + [ + -73.487378, + 45.465638 + ], + [ + -73.487289, + 45.465389 + ], + [ + -73.487411, + 45.465142 + ], + [ + -73.487606, + 45.464949 + ], + [ + -73.487929, + 45.464813 + ], + [ + -73.488584, + 45.464665 + ], + [ + -73.489559, + 45.464575 + ], + [ + -73.49019, + 45.464579 + ], + [ + -73.490836, + 45.464607 + ], + [ + -73.491353, + 45.464709 + ], + [ + -73.492266, + 45.464916 + ], + [ + -73.493024, + 45.46511 + ], + [ + -73.493289, + 45.465231 + ], + [ + -73.49355, + 45.46545 + ], + [ + -73.493833, + 45.466097 + ], + [ + -73.493922, + 45.46638 + ], + [ + -73.494209, + 45.467172 + ], + [ + -73.494809, + 45.468733 + ], + [ + -73.495076, + 45.469359 + ], + [ + -73.495234, + 45.469683 + ], + [ + -73.495362, + 45.469939 + ], + [ + -73.495491, + 45.470173 + ], + [ + -73.49554, + 45.470262 + ], + [ + -73.495895, + 45.470906 + ], + [ + -73.495967, + 45.471037 + ], + [ + -73.496018, + 45.471127 + ], + [ + -73.496235, + 45.471478 + ], + [ + -73.496323, + 45.471617 + ], + [ + -73.496799, + 45.472387 + ], + [ + -73.497277, + 45.473188 + ], + [ + -73.497508, + 45.473543 + ], + [ + -73.497684, + 45.473744 + ], + [ + -73.49797, + 45.473998 + ], + [ + -73.497971, + 45.473998 + ], + [ + -73.498154, + 45.474204 + ], + [ + -73.498345, + 45.474398 + ], + [ + -73.498759, + 45.474776 + ], + [ + -73.498981, + 45.474956 + ], + [ + -73.499212, + 45.475131 + ], + [ + -73.499453, + 45.475307 + ], + [ + -73.502533, + 45.47734 + ], + [ + -73.504857, + 45.478866 + ], + [ + -73.505913, + 45.479567 + ], + [ + -73.50636, + 45.479923 + ], + [ + -73.506669, + 45.480206 + ], + [ + -73.506703, + 45.480242 + ], + [ + -73.507214, + 45.480985 + ], + [ + -73.5074, + 45.481264 + ], + [ + -73.507557, + 45.481556 + ], + [ + -73.507623, + 45.481709 + ], + [ + -73.507749, + 45.482028 + ], + [ + -73.507806, + 45.482204 + ], + [ + -73.507893, + 45.482523 + ], + [ + -73.508036, + 45.483162 + ], + [ + -73.508086, + 45.483459 + ], + [ + -73.50815, + 45.483909 + ], + [ + -73.508179, + 45.484188 + ], + [ + -73.508181, + 45.484296 + ], + [ + -73.50814, + 45.484525 + ], + [ + -73.508054, + 45.484759 + ], + [ + -73.508002, + 45.484854 + ], + [ + -73.507955, + 45.484919 + ], + [ + -73.507937, + 45.484944 + ], + [ + -73.507769, + 45.485092 + ], + [ + -73.507516, + 45.485245 + ], + [ + -73.507431, + 45.485295 + ], + [ + -73.507518, + 45.485367 + ], + [ + -73.50762, + 45.485484 + ], + [ + -73.507754, + 45.485677 + ], + [ + -73.508077, + 45.486145 + ], + [ + -73.508225, + 45.48637 + ], + [ + -73.508337, + 45.486547 + ] + ] + }, + "id": 136, + "properties": { + "id": "45158145-9537-42e5-a793-889b7b82d42c", + "data": { + "gtfs": { + "shape_id": "55_1_R" + }, + "segments": [ + { + "distanceMeters": 1173, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 11746, + "travelTimeSeconds": 873 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12919, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4736.079082751775, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 13.46, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 11.33, + "averageSpeedWithoutDwellTimesMetersPerSecond": 13.46 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", + "41c5e691-5e17-40ab-889a-89c7787b0afb", + "41d7b6d4-1fe4-44ed-a774-b005607fc59d" + ], + "stops": [], + "line_id": "9728c421-e658-48b0-86dc-586caebce3cc", + "segments": [ + 0, + 25 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 136, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.566611, + 45.498345 + ], + [ + -73.566663, + 45.498283 + ], + [ + -73.566738, + 45.498195 + ], + [ + -73.566628, + 45.49808 + ], + [ + -73.566306, + 45.497931 + ], + [ + -73.566253, + 45.497841 + ], + [ + -73.56638, + 45.497699 + ], + [ + -73.566016, + 45.497523 + ], + [ + -73.564691, + 45.496892 + ], + [ + -73.563974, + 45.496566 + ], + [ + -73.562701, + 45.495919 + ], + [ + -73.562646, + 45.496027 + ], + [ + -73.562481, + 45.496317 + ], + [ + -73.562435, + 45.496383 + ], + [ + -73.562367, + 45.496479 + ], + [ + -73.562274, + 45.496658 + ], + [ + -73.562038, + 45.497108 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.561461, + 45.49816 + ], + [ + -73.561417, + 45.498249 + ], + [ + -73.561384, + 45.498316 + ], + [ + -73.561361, + 45.498363 + ], + [ + -73.561311, + 45.498457 + ], + [ + -73.561247, + 45.498577 + ], + [ + -73.560252, + 45.500015 + ], + [ + -73.559986, + 45.500369 + ], + [ + -73.559795, + 45.500646 + ], + [ + -73.559563, + 45.501001 + ], + [ + -73.559259, + 45.500902 + ], + [ + -73.559035, + 45.500829 + ], + [ + -73.558351, + 45.500588 + ], + [ + -73.557917, + 45.500441 + ], + [ + -73.557166, + 45.500183 + ], + [ + -73.556646, + 45.500001 + ], + [ + -73.556233, + 45.499854 + ], + [ + -73.55496, + 45.499427 + ], + [ + -73.554892, + 45.499405 + ], + [ + -73.555129, + 45.499076 + ], + [ + -73.555173, + 45.499014 + ], + [ + -73.555269, + 45.498308 + ], + [ + -73.555414, + 45.497651 + ], + [ + -73.555549, + 45.496965 + ], + [ + -73.555612, + 45.496561 + ], + [ + -73.555665, + 45.496222 + ], + [ + -73.55571, + 45.495915 + ], + [ + -73.555745, + 45.495673 + ], + [ + -73.555436, + 45.495547 + ], + [ + -73.555351, + 45.495512 + ], + [ + -73.555133, + 45.495401 + ], + [ + -73.554916, + 45.495262 + ], + [ + -73.554768, + 45.495125 + ], + [ + -73.55465, + 45.494994 + ], + [ + -73.553944, + 45.493258 + ], + [ + -73.553818, + 45.492971 + ], + [ + -73.553465, + 45.492338 + ], + [ + -73.552977, + 45.491759 + ], + [ + -73.552502, + 45.491344 + ], + [ + -73.551956, + 45.490962 + ], + [ + -73.551651, + 45.490791 + ], + [ + -73.551074, + 45.490513 + ], + [ + -73.550682, + 45.490367 + ], + [ + -73.550465, + 45.490243 + ], + [ + -73.55013, + 45.490094 + ], + [ + -73.549603, + 45.489918 + ], + [ + -73.548474, + 45.489705 + ], + [ + -73.547199, + 45.489425 + ], + [ + -73.546739, + 45.489334 + ], + [ + -73.546333, + 45.489254 + ], + [ + -73.546022, + 45.489193 + ], + [ + -73.545864, + 45.489079 + ], + [ + -73.54579, + 45.489001 + ], + [ + -73.545696, + 45.488867 + ], + [ + -73.545692, + 45.488569 + ], + [ + -73.545588, + 45.488027 + ], + [ + -73.545574, + 45.487952 + ], + [ + -73.545551, + 45.487831 + ], + [ + -73.545339, + 45.487094 + ], + [ + -73.545236, + 45.487092 + ], + [ + -73.54504, + 45.487116 + ], + [ + -73.543974, + 45.487251 + ], + [ + -73.542985, + 45.487395 + ], + [ + -73.541983, + 45.487533 + ], + [ + -73.54164, + 45.487587 + ], + [ + -73.541188, + 45.487707 + ], + [ + -73.541063, + 45.487748 + ], + [ + -73.540676, + 45.487875 + ], + [ + -73.540024, + 45.488096 + ], + [ + -73.539901, + 45.488138 + ], + [ + -73.539774, + 45.488181 + ], + [ + -73.537894, + 45.488819 + ], + [ + -73.526903, + 45.492546 + ], + [ + -73.519008, + 45.495223 + ], + [ + -73.518724, + 45.495318 + ], + [ + -73.518635, + 45.495403 + ], + [ + -73.518629, + 45.49541 + ], + [ + -73.518545, + 45.495511 + ], + [ + -73.518484, + 45.495601 + ], + [ + -73.518441, + 45.495718 + ], + [ + -73.518426, + 45.495907 + ], + [ + -73.518469, + 45.496038 + ], + [ + -73.518536, + 45.496128 + ], + [ + -73.518615, + 45.496182 + ], + [ + -73.518722, + 45.496222 + ], + [ + -73.518881, + 45.496245 + ], + [ + -73.519001, + 45.49624 + ], + [ + -73.51909, + 45.496218 + ], + [ + -73.519187, + 45.496191 + ], + [ + -73.519277, + 45.496141 + ], + [ + -73.519341, + 45.496083 + ], + [ + -73.519379, + 45.496011 + ], + [ + -73.519379, + 45.495813 + ], + [ + -73.519328, + 45.495682 + ], + [ + -73.519241, + 45.495552 + ], + [ + -73.519238, + 45.495547 + ], + [ + -73.519103, + 45.495363 + ], + [ + -73.519008, + 45.495223 + ], + [ + -73.518969, + 45.495174 + ], + [ + -73.518955, + 45.495156 + ], + [ + -73.518899, + 45.495084 + ], + [ + -73.518835, + 45.494971 + ], + [ + -73.518466, + 45.494463 + ], + [ + -73.518217, + 45.494139 + ], + [ + -73.518079, + 45.493932 + ], + [ + -73.518029, + 45.493842 + ], + [ + -73.518022, + 45.493784 + ], + [ + -73.518019, + 45.493707 + ], + [ + -73.518007, + 45.493527 + ], + [ + -73.518012, + 45.49337 + ], + [ + -73.517974, + 45.492915 + ], + [ + -73.517967, + 45.492735 + ], + [ + -73.517917, + 45.492636 + ], + [ + -73.517844, + 45.49256 + ], + [ + -73.517716, + 45.492488 + ], + [ + -73.517581, + 45.492434 + ], + [ + -73.517376, + 45.49238 + ], + [ + -73.517193, + 45.492403 + ], + [ + -73.516784, + 45.492461 + ], + [ + -73.516125, + 45.492551 + ], + [ + -73.515824, + 45.492601 + ], + [ + -73.515723, + 45.492632 + ], + [ + -73.515592, + 45.4927 + ], + [ + -73.51548, + 45.492821 + ], + [ + -73.515432, + 45.492911 + ], + [ + -73.515429, + 45.493064 + ], + [ + -73.515475, + 45.493199 + ], + [ + -73.515528, + 45.493384 + ], + [ + -73.515566, + 45.493523 + ], + [ + -73.515582, + 45.493618 + ], + [ + -73.515582, + 45.493699 + ], + [ + -73.515544, + 45.493775 + ], + [ + -73.515517, + 45.493829 + ], + [ + -73.515444, + 45.493879 + ], + [ + -73.515351, + 45.493969 + ], + [ + -73.515349, + 45.493969 + ], + [ + -73.515173, + 45.494005 + ], + [ + -73.514588, + 45.494108 + ], + [ + -73.514568, + 45.494108 + ], + [ + -73.514121, + 45.494176 + ], + [ + -73.513695, + 45.494221 + ], + [ + -73.513332, + 45.494239 + ], + [ + -73.513204, + 45.494243 + ], + [ + -73.511549, + 45.49423 + ], + [ + -73.511202, + 45.494223 + ], + [ + -73.510793, + 45.4942 + ], + [ + -73.510474, + 45.49419 + ], + [ + -73.510478, + 45.494145 + ], + [ + -73.510481, + 45.494082 + ], + [ + -73.510482, + 45.493708 + ], + [ + -73.510483, + 45.493422 + ], + [ + -73.510483, + 45.493366 + ], + [ + -73.510492, + 45.492939 + ], + [ + -73.5105, + 45.492713 + ], + [ + -73.510502, + 45.492624 + ], + [ + -73.510682, + 45.492628 + ], + [ + -73.510871, + 45.492628 + ], + [ + -73.511144, + 45.492628 + ], + [ + -73.511254, + 45.492628 + ], + [ + -73.511437, + 45.492619 + ], + [ + -73.512134, + 45.492542 + ], + [ + -73.51245, + 45.492507 + ], + [ + -73.512553, + 45.492693 + ], + [ + -73.512764, + 45.493074 + ], + [ + -73.512921, + 45.493393 + ], + [ + -73.512971, + 45.493496 + ], + [ + -73.512984, + 45.493515 + ], + [ + -73.513094, + 45.493766 + ], + [ + -73.513261, + 45.494078 + ], + [ + -73.513283, + 45.494149 + ], + [ + -73.513342, + 45.494287 + ], + [ + -73.513459, + 45.494626 + ], + [ + -73.513505, + 45.494783 + ], + [ + -73.513561, + 45.49499 + ], + [ + -73.513604, + 45.495179 + ], + [ + -73.513621, + 45.495251 + ], + [ + -73.513692, + 45.495557 + ], + [ + -73.513764, + 45.495883 + ], + [ + -73.513786, + 45.49598 + ], + [ + -73.51384, + 45.496187 + ], + [ + -73.513899, + 45.496425 + ], + [ + -73.513925, + 45.49652 + ], + [ + -73.513974, + 45.496614 + ], + [ + -73.514009, + 45.496686 + ], + [ + -73.514054, + 45.496749 + ], + [ + -73.514104, + 45.49683 + ], + [ + -73.514166, + 45.496911 + ], + [ + -73.514219, + 45.49697 + ], + [ + -73.514552, + 45.497478 + ], + [ + -73.514769, + 45.497838 + ], + [ + -73.515085, + 45.498391 + ], + [ + -73.51517, + 45.49854 + ], + [ + -73.515544, + 45.499217 + ], + [ + -73.515623, + 45.499359 + ], + [ + -73.515674, + 45.499453 + ], + [ + -73.515873, + 45.499831 + ], + [ + -73.515977, + 45.500074 + ], + [ + -73.516146, + 45.500501 + ], + [ + -73.516373, + 45.50114 + ], + [ + -73.51647, + 45.501401 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.516245, + 45.501835 + ], + [ + -73.516043, + 45.501832 + ], + [ + -73.514398, + 45.501805 + ], + [ + -73.514212, + 45.501802 + ], + [ + -73.514104, + 45.501797 + ], + [ + -73.514045, + 45.501797 + ], + [ + -73.513805, + 45.501793 + ], + [ + -73.5136, + 45.501784 + ], + [ + -73.513522, + 45.501784 + ], + [ + -73.51344, + 45.501784 + ], + [ + -73.513284, + 45.501793 + ], + [ + -73.513035, + 45.501807 + ], + [ + -73.512897, + 45.501829 + ], + [ + -73.5127, + 45.501847 + ], + [ + -73.512499, + 45.501865 + ], + [ + -73.512398, + 45.501874 + ], + [ + -73.512063, + 45.501735 + ], + [ + -73.511984, + 45.501701 + ], + [ + -73.511327, + 45.50142 + ], + [ + -73.50993, + 45.500781 + ], + [ + -73.509894, + 45.500767 + ], + [ + -73.509762, + 45.500713 + ], + [ + -73.509608, + 45.500651 + ], + [ + -73.508958, + 45.500376 + ], + [ + -73.508861, + 45.50034 + ], + [ + -73.507712, + 45.499859 + ], + [ + -73.50735, + 45.499701 + ], + [ + -73.507069, + 45.499581 + ], + [ + -73.506801, + 45.499467 + ], + [ + -73.506709, + 45.499427 + ], + [ + -73.506259, + 45.499211 + ], + [ + -73.506001, + 45.499076 + ], + [ + -73.505704, + 45.498928 + ], + [ + -73.505329, + 45.498757 + ], + [ + -73.505105, + 45.498595 + ], + [ + -73.504951, + 45.498488 + ], + [ + -73.504839, + 45.49841 + ], + [ + -73.504683, + 45.498293 + ], + [ + -73.504473, + 45.49814 + ], + [ + -73.504131, + 45.497897 + ], + [ + -73.503475, + 45.497438 + ], + [ + -73.503408, + 45.497389 + ], + [ + -73.50327, + 45.49729 + ], + [ + -73.50284, + 45.49698 + ], + [ + -73.502635, + 45.496834 + ], + [ + -73.502336, + 45.49662 + ], + [ + -73.502293, + 45.496588 + ], + [ + -73.501808, + 45.496251 + ], + [ + -73.501447, + 45.49599 + ], + [ + -73.501279, + 45.495868 + ], + [ + -73.501182, + 45.495805 + ], + [ + -73.501059, + 45.495724 + ], + [ + -73.50081, + 45.495567 + ], + [ + -73.500592, + 45.495409 + ], + [ + -73.500498, + 45.495335 + ], + [ + -73.500106, + 45.495026 + ], + [ + -73.500064, + 45.495 + ], + [ + -73.500025, + 45.494979 + ], + [ + -73.499778, + 45.494815 + ], + [ + -73.499763, + 45.494802 + ], + [ + -73.49959, + 45.494676 + ], + [ + -73.499359, + 45.494506 + ], + [ + -73.499315, + 45.494474 + ], + [ + -73.499159, + 45.494361 + ], + [ + -73.498924, + 45.49419 + ], + [ + -73.498797, + 45.494096 + ], + [ + -73.498616, + 45.49397 + ], + [ + -73.49848, + 45.493866 + ], + [ + -73.498241, + 45.493693 + ], + [ + -73.498238, + 45.493691 + ], + [ + -73.49804, + 45.493547 + ], + [ + -73.497995, + 45.493515 + ], + [ + -73.497927, + 45.49347 + ], + [ + -73.497866, + 45.493425 + ], + [ + -73.497771, + 45.493353 + ], + [ + -73.497557, + 45.493191 + ], + [ + -73.497339, + 45.493038 + ], + [ + -73.497128, + 45.492885 + ], + [ + -73.496772, + 45.492629 + ], + [ + -73.496458, + 45.492403 + ], + [ + -73.496416, + 45.492372 + ], + [ + -73.496321, + 45.492305 + ], + [ + -73.496235, + 45.492242 + ], + [ + -73.495851, + 45.491976 + ], + [ + -73.49562, + 45.491814 + ], + [ + -73.495442, + 45.491684 + ], + [ + -73.495204, + 45.491517 + ], + [ + -73.494917, + 45.491315 + ], + [ + -73.49433, + 45.490897 + ], + [ + -73.494242, + 45.490838 + ], + [ + -73.494219, + 45.490822 + ], + [ + -73.493838, + 45.49055 + ], + [ + -73.493701, + 45.490456 + ], + [ + -73.493573, + 45.490366 + ], + [ + -73.492976, + 45.489943 + ], + [ + -73.492778, + 45.489803 + ], + [ + -73.492465, + 45.489583 + ], + [ + -73.492419, + 45.48955 + ], + [ + -73.492218, + 45.489407 + ], + [ + -73.492028, + 45.489271 + ], + [ + -73.491735, + 45.489062 + ], + [ + -73.491721, + 45.489052 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.492138, + 45.488647 + ], + [ + -73.492246, + 45.488512 + ], + [ + -73.492413, + 45.48862 + ], + [ + -73.492658, + 45.488782 + ], + [ + -73.492831, + 45.488903 + ], + [ + -73.492977, + 45.489007 + ], + [ + -73.493685, + 45.489511 + ], + [ + -73.494044, + 45.489767 + ], + [ + -73.494123, + 45.489824 + ], + [ + -73.494277, + 45.489938 + ], + [ + -73.494463, + 45.490073 + ], + [ + -73.495016, + 45.490456 + ], + [ + -73.495224, + 45.490582 + ], + [ + -73.495457, + 45.490703 + ], + [ + -73.495685, + 45.490802 + ], + [ + -73.495823, + 45.490837 + ], + [ + -73.495827, + 45.490838 + ], + [ + -73.495938, + 45.490852 + ], + [ + -73.496542, + 45.490861 + ], + [ + -73.497071, + 45.49087 + ], + [ + -73.497636, + 45.490865 + ], + [ + -73.49822, + 45.490861 + ], + [ + -73.49837, + 45.490865 + ], + [ + -73.498703, + 45.49087 + ], + [ + -73.498972, + 45.490879 + ], + [ + -73.499099, + 45.490883 + ], + [ + -73.499523, + 45.490883 + ], + [ + -73.500019, + 45.490892 + ], + [ + -73.500399, + 45.490897 + ], + [ + -73.500765, + 45.4909 + ], + [ + -73.500934, + 45.490901 + ], + [ + -73.501389, + 45.49091 + ], + [ + -73.502611, + 45.490928 + ], + [ + -73.502759, + 45.49091 + ], + [ + -73.502923, + 45.490879 + ], + [ + -73.503314, + 45.490753 + ], + [ + -73.503637, + 45.490636 + ], + [ + -73.503868, + 45.49055 + ], + [ + -73.504078, + 45.490474 + ], + [ + -73.504178, + 45.490438 + ], + [ + -73.504792, + 45.490226 + ], + [ + -73.504891, + 45.490195 + ], + [ + -73.505021, + 45.490186 + ], + [ + -73.505114, + 45.490179 + ], + [ + -73.505151, + 45.490177 + ], + [ + -73.505337, + 45.490177 + ], + [ + -73.507035, + 45.490202 + ], + [ + -73.508965, + 45.49023 + ], + [ + -73.509495, + 45.490235 + ], + [ + -73.509541, + 45.490235 + ], + [ + -73.510213, + 45.490248 + ], + [ + -73.510776, + 45.490256 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.510846, + 45.490168 + ], + [ + -73.510813, + 45.490118 + ], + [ + -73.509971, + 45.488912 + ], + [ + -73.509789, + 45.488652 + ], + [ + -73.509764, + 45.488615 + ], + [ + -73.509675, + 45.488489 + ], + [ + -73.508553, + 45.486866 + ], + [ + -73.508543, + 45.486852 + ], + [ + -73.508489, + 45.486784 + ], + [ + -73.508385, + 45.486622 + ], + [ + -73.508225, + 45.48637 + ], + [ + -73.508077, + 45.486145 + ], + [ + -73.507754, + 45.485677 + ], + [ + -73.50762, + 45.485484 + ], + [ + -73.507518, + 45.485367 + ], + [ + -73.507431, + 45.485295 + ], + [ + -73.507329, + 45.4852 + ], + [ + -73.507185, + 45.485097 + ], + [ + -73.507115, + 45.485056 + ], + [ + -73.506951, + 45.484962 + ], + [ + -73.506746, + 45.484863 + ], + [ + -73.506624, + 45.484814 + ], + [ + -73.505993, + 45.484584 + ], + [ + -73.505851, + 45.484535 + ], + [ + -73.505663, + 45.484463 + ], + [ + -73.505521, + 45.484395 + ], + [ + -73.505364, + 45.484314 + ], + [ + -73.505242, + 45.484242 + ], + [ + -73.505108, + 45.484152 + ], + [ + -73.504924, + 45.483995 + ], + [ + -73.504889, + 45.483959 + ], + [ + -73.504857, + 45.483927 + ], + [ + -73.504846, + 45.483915 + ], + [ + -73.504614, + 45.483657 + ], + [ + -73.504141, + 45.483117 + ], + [ + -73.503641, + 45.482546 + ], + [ + -73.503598, + 45.482497 + ], + [ + -73.503512, + 45.48238 + ], + [ + -73.50345, + 45.482308 + ], + [ + -73.503272, + 45.482092 + ], + [ + -73.502806, + 45.48156 + ], + [ + -73.502676, + 45.481412 + ], + [ + -73.501939, + 45.480602 + ] + ] + }, + "id": 137, + "properties": { + "id": "f8dc3bc5-f503-4bb3-a85c-204550e965f7", + "data": { + "gtfs": { + "shape_id": "55_2_R" + }, + "segments": [ + { + "distanceMeters": 8, + "travelTimeSeconds": 2 + }, + { + "distanceMeters": 1498, + "travelTimeSeconds": 418 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 1375, + "travelTimeSeconds": 152 + }, + { + "distanceMeters": 3770, + "travelTimeSeconds": 417 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 416, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 89 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 79 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 104, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 195, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 358, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 100, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 447, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 46 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 240, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13725, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5430.598658537578, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.72, + "travelTimeWithoutDwellTimesSeconds": 2400, + "operatingTimeWithLayoverTimeSeconds": 2640, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2400, + "operatingSpeedWithLayoverMetersPerSecond": 5.2, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.72 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", + "8e6eba9f-71d7-47ba-ab56-7f4eadc64281", + "587bca45-e028-437b-8c17-3d0fa1f4d9bd", + "92af9da4-27c5-4709-ac8c-743f6f7a85c2", + "b1a22815-cfc5-4e07-95ed-3ff84f5dc613", + "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "114aaaad-d40e-4930-853f-ef5cebdd299f", + "0b09b82c-ec97-406d-9f1c-690cc935b5ea", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "46687bb1-1189-4edc-bbd4-c90db18d4ff5", + "df5b9592-81e3-4b2c-8a30-7f3a9144671b", + "d24bea6e-da8d-4183-8a5f-0e99be199484", + "6557d1fe-6975-49e2-871c-ab07d42ea35b", + "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", + "1cea6199-481e-43b0-8d4a-8c7593ff485f", + "467e03f3-2556-4d22-ae48-618a76e6b0b4", + "ea9801c9-a110-4900-bcae-f1b3a40050e8", + "0b6032e7-414a-429f-9df2-796599b947c2", + "88d8365e-2528-4422-a483-bb2efd9de617", + "196681e4-c9e5-4a79-a3b1-ce225227e0aa", + "fa220212-b6b2-4456-934f-7248f9884444", + "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", + "1fc11ea4-4e32-4f30-8519-34208d0f8931", + "1fa03421-8026-43d9-b21a-b3e57dfa43c2", + "d67aee3e-be1e-429b-b464-c7a6549e761a", + "51191948-9067-4256-853f-d80a1333a164", + "602dc8fb-62ff-45ed-888f-4b4172318b5d", + "5224c05b-57d6-4d5c-87fd-b9e78147c66e", + "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "bc9b9243-e0ec-461a-9898-6eb69ecd511a", + "41d7b6d4-1fe4-44ed-a774-b005607fc59d", + "9f22d75f-cc66-4020-8804-7912f49950d8", + "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "4df7f34c-ec49-4d48-90b3-56f3faffc976" + ], + "stops": [], + "line_id": "9728c421-e658-48b0-86dc-586caebce3cc", + "segments": [ + 0, + 1, + 37, + 42, + 74, + 168, + 178, + 195, + 210, + 219, + 233, + 239, + 246, + 254, + 263, + 267, + 273, + 287, + 298, + 309, + 318, + 327, + 331, + 337, + 346, + 351, + 365, + 368, + 370, + 373, + 378, + 381, + 405, + 410 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 137, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.50194, + 45.480604 + ], + [ + -73.501828, + 45.48048 + ], + [ + -73.50163, + 45.480263 + ], + [ + -73.501562, + 45.480174 + ], + [ + -73.501309, + 45.479775 + ], + [ + -73.501238, + 45.479689 + ], + [ + -73.501074, + 45.479488 + ], + [ + -73.500829, + 45.479284 + ], + [ + -73.50074, + 45.479167 + ], + [ + -73.500635, + 45.479076 + ], + [ + -73.500662, + 45.478997 + ], + [ + -73.500703, + 45.478888 + ], + [ + -73.500736, + 45.478807 + ], + [ + -73.50145, + 45.478313 + ], + [ + -73.501961, + 45.477845 + ], + [ + -73.502052, + 45.477777 + ], + [ + -73.502296, + 45.477583 + ], + [ + -73.502952, + 45.477093 + ], + [ + -73.502403, + 45.476724 + ], + [ + -73.50056, + 45.475514 + ], + [ + -73.499645, + 45.474902 + ], + [ + -73.499299, + 45.47465 + ], + [ + -73.498979, + 45.474389 + ], + [ + -73.498685, + 45.474119 + ], + [ + -73.498411, + 45.47384 + ], + [ + -73.498325, + 45.473782 + ], + [ + -73.498219, + 45.473741 + ], + [ + -73.498167, + 45.473683 + ], + [ + -73.49797, + 45.473435 + ], + [ + -73.497878, + 45.473309 + ], + [ + -73.497713, + 45.473057 + ], + [ + -73.497572, + 45.47281 + ], + [ + -73.497162, + 45.472027 + ], + [ + -73.496825, + 45.471419 + ], + [ + -73.496511, + 45.470727 + ], + [ + -73.496402, + 45.47047 + ], + [ + -73.496381, + 45.470358 + ], + [ + -73.496379, + 45.470241 + ], + [ + -73.496428, + 45.470119 + ], + [ + -73.496499, + 45.470002 + ], + [ + -73.496531, + 45.469965 + ], + [ + -73.496579, + 45.469908 + ], + [ + -73.496686, + 45.469804 + ], + [ + -73.496817, + 45.469701 + ], + [ + -73.49702, + 45.469503 + ], + [ + -73.497096, + 45.469404 + ], + [ + -73.49716, + 45.469287 + ], + [ + -73.497202, + 45.469174 + ], + [ + -73.497215, + 45.468981 + ], + [ + -73.497183, + 45.468841 + ], + [ + -73.497127, + 45.468733 + ], + [ + -73.497047, + 45.468625 + ], + [ + -73.496943, + 45.468526 + ], + [ + -73.496821, + 45.468441 + ], + [ + -73.496676, + 45.468364 + ], + [ + -73.496512, + 45.46831 + ], + [ + -73.496333, + 45.46827 + ], + [ + -73.496141, + 45.468247 + ], + [ + -73.493047, + 45.468 + ], + [ + -73.492105, + 45.467932 + ], + [ + -73.490403, + 45.467775 + ], + [ + -73.488766, + 45.467638 + ], + [ + -73.487489, + 45.467534 + ], + [ + -73.487032, + 45.467476 + ], + [ + -73.486892, + 45.467435 + ], + [ + -73.486646, + 45.467309 + ], + [ + -73.48649, + 45.467138 + ], + [ + -73.486474, + 45.467037 + ], + [ + -73.486472, + 45.466929 + ], + [ + -73.486596, + 45.466721 + ], + [ + -73.486839, + 45.466557 + ], + [ + -73.487156, + 45.466478 + ], + [ + -73.487511, + 45.466464 + ], + [ + -73.488017, + 45.466487 + ], + [ + -73.489088, + 45.466602 + ], + [ + -73.491585, + 45.46694 + ], + [ + -73.494707, + 45.467307 + ], + [ + -73.494917, + 45.467332 + ], + [ + -73.494999, + 45.467342 + ], + [ + -73.497318, + 45.467635 + ], + [ + -73.501976, + 45.468162 + ], + [ + -73.50546, + 45.468524 + ], + [ + -73.508994, + 45.468874 + ], + [ + -73.510795, + 45.469064 + ], + [ + -73.516615, + 45.469606 + ], + [ + -73.520513, + 45.469901 + ], + [ + -73.524263, + 45.470138 + ], + [ + -73.526895, + 45.470234 + ], + [ + -73.536203, + 45.470502 + ], + [ + -73.537479, + 45.470611 + ], + [ + -73.540035, + 45.470737 + ], + [ + -73.540574, + 45.470754 + ], + [ + -73.541689, + 45.470806 + ], + [ + -73.54236, + 45.470938 + ], + [ + -73.542685, + 45.471019 + ], + [ + -73.543056, + 45.471172 + ], + [ + -73.543235, + 45.471297 + ], + [ + -73.543427, + 45.47153 + ], + [ + -73.543495, + 45.471781 + ], + [ + -73.543487, + 45.471977 + ], + [ + -73.543374, + 45.472246 + ], + [ + -73.543123, + 45.472648 + ], + [ + -73.543053, + 45.472745 + ], + [ + -73.543034, + 45.472772 + ], + [ + -73.543013, + 45.472801 + ], + [ + -73.542473, + 45.473549 + ], + [ + -73.542275, + 45.473832 + ], + [ + -73.542255, + 45.473861 + ], + [ + -73.542175, + 45.473976 + ], + [ + -73.542016, + 45.474229 + ], + [ + -73.541794, + 45.474618 + ], + [ + -73.541458, + 45.475221 + ], + [ + -73.541094, + 45.47588 + ], + [ + -73.540722, + 45.476557 + ], + [ + -73.540393, + 45.477154 + ], + [ + -73.540141, + 45.477612 + ], + [ + -73.539989, + 45.477937 + ], + [ + -73.539912, + 45.478117 + ], + [ + -73.53962, + 45.478792 + ], + [ + -73.539453, + 45.479242 + ], + [ + -73.539011, + 45.480452 + ], + [ + -73.538771, + 45.481137 + ], + [ + -73.538372, + 45.4823 + ], + [ + -73.537796, + 45.483909 + ], + [ + -73.537682, + 45.484235 + ], + [ + -73.537533, + 45.484742 + ], + [ + -73.537501, + 45.485252 + ], + [ + -73.537565, + 45.485765 + ], + [ + -73.537725, + 45.486206 + ], + [ + -73.537953, + 45.486613 + ], + [ + -73.538211, + 45.486968 + ], + [ + -73.538564, + 45.487319 + ], + [ + -73.538991, + 45.48766 + ], + [ + -73.539413, + 45.487933 + ], + [ + -73.540409, + 45.488352 + ], + [ + -73.540999, + 45.488508 + ], + [ + -73.545779, + 45.489431 + ], + [ + -73.547415, + 45.489732 + ], + [ + -73.548107, + 45.48986 + ], + [ + -73.549549, + 45.490154 + ], + [ + -73.549968, + 45.490239 + ], + [ + -73.550646, + 45.490459 + ], + [ + -73.551261, + 45.490742 + ], + [ + -73.55163, + 45.490924 + ], + [ + -73.551996, + 45.491154 + ], + [ + -73.552466, + 45.491495 + ], + [ + -73.552812, + 45.491812 + ], + [ + -73.553225, + 45.492293 + ], + [ + -73.553459, + 45.492647 + ], + [ + -73.553701, + 45.493121 + ], + [ + -73.553714, + 45.493155 + ], + [ + -73.554005, + 45.493935 + ], + [ + -73.554229, + 45.494495 + ], + [ + -73.55441, + 45.494962 + ], + [ + -73.554709, + 45.495574 + ], + [ + -73.554963, + 45.495825 + ], + [ + -73.555225, + 45.496022 + ], + [ + -73.555665, + 45.496222 + ], + [ + -73.557268, + 45.496821 + ], + [ + -73.557934, + 45.497074 + ], + [ + -73.558754, + 45.497382 + ], + [ + -73.559129, + 45.497554 + ], + [ + -73.559665, + 45.497799 + ], + [ + -73.56055, + 45.498258 + ], + [ + -73.561247, + 45.498577 + ], + [ + -73.561311, + 45.498457 + ], + [ + -73.561361, + 45.498363 + ], + [ + -73.561384, + 45.498316 + ], + [ + -73.561417, + 45.498249 + ], + [ + -73.561461, + 45.49816 + ], + [ + -73.561504, + 45.498074 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.562038, + 45.497108 + ], + [ + -73.562161, + 45.497168 + ], + [ + -73.562611, + 45.497387 + ], + [ + -73.562698, + 45.497457 + ], + [ + -73.562791, + 45.497486 + ], + [ + -73.562898, + 45.497495 + ], + [ + -73.563026, + 45.497486 + ], + [ + -73.563269, + 45.497461 + ], + [ + -73.563391, + 45.497457 + ], + [ + -73.563535, + 45.497468 + ], + [ + -73.56365, + 45.497486 + ], + [ + -73.56376, + 45.497514 + ], + [ + -73.563861, + 45.497562 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.56431, + 45.497835 + ], + [ + -73.565142, + 45.498217 + ], + [ + -73.565601, + 45.498443 + ], + [ + -73.565748, + 45.49831 + ], + [ + -73.565849, + 45.498292 + ], + [ + -73.566051, + 45.498359 + ], + [ + -73.566361, + 45.498471 + ], + [ + -73.566492, + 45.498485 + ], + [ + -73.566611, + 45.498345 + ] + ] + }, + "id": 138, + "properties": { + "id": "450ac9fb-bbf0-4aaa-b9eb-061a8d717967", + "data": { + "gtfs": { + "shape_id": "55_2_A" + }, + "segments": [ + { + "distanceMeters": 11801, + "travelTimeSeconds": 1380 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11801, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5430.598658537579, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.55, + "travelTimeWithoutDwellTimesSeconds": 1380, + "operatingTimeWithLayoverTimeSeconds": 1560, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1380, + "operatingSpeedWithLayoverMetersPerSecond": 7.56, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.55 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "4df7f34c-ec49-4d48-90b3-56f3faffc976", + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" + ], + "stops": [], + "line_id": "9728c421-e658-48b0-86dc-586caebce3cc", + "segments": [ + 0 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 138, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.442122, + 45.495875 + ], + [ + -73.441071, + 45.497396 + ], + [ + -73.440992, + 45.497509 + ], + [ + -73.439779, + 45.499267 + ], + [ + -73.439705, + 45.499371 + ], + [ + -73.439312, + 45.499933 + ], + [ + -73.439307, + 45.49994 + ], + [ + -73.43919, + 45.500108 + ], + [ + -73.438982, + 45.500329 + ], + [ + -73.438767, + 45.500522 + ], + [ + -73.438604, + 45.500652 + ], + [ + -73.438428, + 45.500778 + ], + [ + -73.437976, + 45.501106 + ], + [ + -73.437808, + 45.501228 + ], + [ + -73.437244, + 45.501651 + ], + [ + -73.436813, + 45.501961 + ], + [ + -73.436689, + 45.502032 + ], + [ + -73.436593, + 45.502087 + ], + [ + -73.43603, + 45.502316 + ], + [ + -73.435796, + 45.502406 + ], + [ + -73.435545, + 45.502486 + ], + [ + -73.435163, + 45.502576 + ], + [ + -73.434928, + 45.502621 + ], + [ + -73.434661, + 45.502657 + ], + [ + -73.433922, + 45.502755 + ], + [ + -73.433848, + 45.502765 + ], + [ + -73.433805, + 45.50277 + ], + [ + -73.432211, + 45.50297 + ], + [ + -73.432026, + 45.502993 + ], + [ + -73.431799, + 45.503033 + ], + [ + -73.431685, + 45.503059 + ], + [ + -73.431525, + 45.503096 + ], + [ + -73.431196, + 45.503181 + ], + [ + -73.430935, + 45.503271 + ], + [ + -73.430699, + 45.503361 + ], + [ + -73.43052, + 45.503446 + ], + [ + -73.430068, + 45.503683 + ], + [ + -73.430031, + 45.503702 + ], + [ + -73.429757, + 45.503783 + ], + [ + -73.429672, + 45.503797 + ], + [ + -73.429584, + 45.503797 + ], + [ + -73.429496, + 45.503792 + ], + [ + -73.429392, + 45.50377 + ], + [ + -73.429307, + 45.503738 + ], + [ + -73.429206, + 45.503684 + ], + [ + -73.429121, + 45.503648 + ], + [ + -73.429007, + 45.503562 + ], + [ + -73.428781, + 45.503414 + ], + [ + -73.428662, + 45.503344 + ], + [ + -73.428528, + 45.503265 + ], + [ + -73.428383, + 45.503193 + ], + [ + -73.428061, + 45.503062 + ], + [ + -73.427348, + 45.502808 + ], + [ + -73.427282, + 45.502785 + ], + [ + -73.42662, + 45.502548 + ], + [ + -73.426292, + 45.502431 + ], + [ + -73.42672, + 45.501739 + ], + [ + -73.426823, + 45.501595 + ], + [ + -73.427084, + 45.50123 + ], + [ + -73.427197, + 45.501073 + ], + [ + -73.427378, + 45.500821 + ], + [ + -73.428135, + 45.49975 + ], + [ + -73.428857, + 45.49873 + ], + [ + -73.428976, + 45.498568 + ], + [ + -73.429191, + 45.498276 + ], + [ + -73.429247, + 45.498199 + ], + [ + -73.429364, + 45.498159 + ], + [ + -73.429465, + 45.498146 + ], + [ + -73.429588, + 45.498159 + ], + [ + -73.430906, + 45.49864 + ], + [ + -73.430984, + 45.498668 + ], + [ + -73.431441, + 45.498021 + ], + [ + -73.431832, + 45.497459 + ], + [ + -73.432149, + 45.497026 + ], + [ + -73.432274, + 45.496856 + ], + [ + -73.432352, + 45.496748 + ], + [ + -73.431192, + 45.49634 + ], + [ + -73.430595, + 45.496131 + ], + [ + -73.430662, + 45.496027 + ], + [ + -73.431051, + 45.495488 + ], + [ + -73.431456, + 45.494916 + ], + [ + -73.431797, + 45.494463 + ], + [ + -73.431866, + 45.494372 + ], + [ + -73.432269, + 45.493788 + ], + [ + -73.432568, + 45.493374 + ], + [ + -73.432639, + 45.493293 + ], + [ + -73.43277, + 45.493221 + ], + [ + -73.432927, + 45.49323 + ], + [ + -73.433324, + 45.493373 + ], + [ + -73.433602, + 45.493473 + ], + [ + -73.433946, + 45.493598 + ], + [ + -73.434513, + 45.493802 + ], + [ + -73.435361, + 45.494049 + ], + [ + -73.435472, + 45.494082 + ], + [ + -73.435723, + 45.494151 + ], + [ + -73.436664, + 45.494411 + ], + [ + -73.437312, + 45.494598 + ], + [ + -73.43754, + 45.494663 + ], + [ + -73.438053, + 45.493957 + ], + [ + -73.438134, + 45.493858 + ], + [ + -73.438287, + 45.49358 + ], + [ + -73.438402, + 45.493454 + ], + [ + -73.438551, + 45.493308 + ], + [ + -73.438558, + 45.493301 + ], + [ + -73.438673, + 45.493188 + ], + [ + -73.440776, + 45.494361 + ], + [ + -73.440795, + 45.494371 + ], + [ + -73.44114, + 45.494563 + ], + [ + -73.4419, + 45.494987 + ], + [ + -73.442288, + 45.495204 + ], + [ + -73.442397, + 45.495264 + ], + [ + -73.442507, + 45.495318 + ], + [ + -73.442662, + 45.495404 + ], + [ + -73.442881, + 45.495526 + ], + [ + -73.445644, + 45.497056 + ], + [ + -73.445726, + 45.497102 + ], + [ + -73.446114, + 45.497358 + ], + [ + -73.4462, + 45.497417 + ], + [ + -73.446473, + 45.497601 + ], + [ + -73.446666, + 45.497444 + ], + [ + -73.446768, + 45.497359 + ], + [ + -73.446827, + 45.497326 + ], + [ + -73.44702, + 45.497219 + ], + [ + -73.447146, + 45.497146 + ], + [ + -73.447323, + 45.497044 + ], + [ + -73.448168, + 45.496536 + ], + [ + -73.44881, + 45.496149 + ], + [ + -73.449164, + 45.495938 + ], + [ + -73.451626, + 45.494472 + ], + [ + -73.451675, + 45.494444 + ], + [ + -73.451788, + 45.494378 + ], + [ + -73.454215, + 45.492926 + ], + [ + -73.45465, + 45.492666 + ], + [ + -73.454766, + 45.492597 + ], + [ + -73.455091, + 45.492872 + ], + [ + -73.455092, + 45.492873 + ], + [ + -73.455334, + 45.493075 + ], + [ + -73.455637, + 45.493327 + ], + [ + -73.455847, + 45.4935 + ], + [ + -73.455921, + 45.493561 + ], + [ + -73.455445, + 45.493846 + ], + [ + -73.453925, + 45.494757 + ], + [ + -73.452944, + 45.495341 + ], + [ + -73.453272, + 45.495611 + ], + [ + -73.453454, + 45.495766 + ], + [ + -73.453569, + 45.495863 + ], + [ + -73.452688, + 45.496389 + ], + [ + -73.450515, + 45.497686 + ], + [ + -73.45036, + 45.497779 + ], + [ + -73.450085, + 45.497941 + ], + [ + -73.450487, + 45.498161 + ], + [ + -73.450534, + 45.498187 + ], + [ + -73.451013, + 45.498449 + ], + [ + -73.451357, + 45.498643 + ], + [ + -73.451834, + 45.498904 + ], + [ + -73.452113, + 45.499057 + ], + [ + -73.452413, + 45.499224 + ], + [ + -73.452639, + 45.49935 + ], + [ + -73.452794, + 45.499431 + ], + [ + -73.453172, + 45.499634 + ], + [ + -73.453483, + 45.499755 + ], + [ + -73.45482, + 45.500233 + ], + [ + -73.454914, + 45.500255 + ], + [ + -73.455067, + 45.500305 + ], + [ + -73.455166, + 45.5003 + ], + [ + -73.455262, + 45.5003 + ], + [ + -73.455439, + 45.500273 + ], + [ + -73.455554, + 45.500255 + ], + [ + -73.455726, + 45.500228 + ], + [ + -73.455806, + 45.50017 + ], + [ + -73.456009, + 45.500058 + ], + [ + -73.458133, + 45.498798 + ], + [ + -73.45823, + 45.49874 + ], + [ + -73.45866, + 45.498475 + ], + [ + -73.459486, + 45.49798 + ], + [ + -73.45999, + 45.497679 + ], + [ + -73.460119, + 45.497603 + ], + [ + -73.460224, + 45.497535 + ], + [ + -73.460362, + 45.497454 + ], + [ + -73.461046, + 45.497049 + ], + [ + -73.461541, + 45.496748 + ], + [ + -73.462777, + 45.49601 + ], + [ + -73.462904, + 45.495934 + ], + [ + -73.465269, + 45.494527 + ], + [ + -73.465632, + 45.494314 + ], + [ + -73.465714, + 45.494266 + ], + [ + -73.466671, + 45.49369 + ], + [ + -73.469134, + 45.492221 + ], + [ + -73.469303, + 45.492121 + ], + [ + -73.469006, + 45.491923 + ], + [ + -73.468992, + 45.491914 + ], + [ + -73.468656, + 45.491698 + ], + [ + -73.468573, + 45.49163 + ], + [ + -73.468166, + 45.49136 + ], + [ + -73.468537, + 45.491086 + ], + [ + -73.468726, + 45.490951 + ], + [ + -73.468846, + 45.490865 + ], + [ + -73.469097, + 45.490677 + ], + [ + -73.469549, + 45.490326 + ], + [ + -73.469835, + 45.49011 + ], + [ + -73.470185, + 45.489841 + ], + [ + -73.470269, + 45.489777 + ], + [ + -73.470505, + 45.489602 + ], + [ + -73.470987, + 45.489246 + ], + [ + -73.471332, + 45.488982 + ], + [ + -73.47145, + 45.488891 + ], + [ + -73.471789, + 45.488626 + ], + [ + -73.47187, + 45.488576 + ], + [ + -73.471942, + 45.488513 + ], + [ + -73.471603, + 45.48829 + ], + [ + -73.46708, + 45.485304 + ], + [ + -73.466642, + 45.484984 + ], + [ + -73.46651, + 45.484875 + ], + [ + -73.466473, + 45.484845 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466302, + 45.484687 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466188, + 45.484448 + ], + [ + -73.466149, + 45.484395 + ], + [ + -73.465905, + 45.484113 + ], + [ + -73.465719, + 45.4839 + ], + [ + -73.46546, + 45.483541 + ], + [ + -73.465236, + 45.483174 + ], + [ + -73.465161, + 45.483037 + ], + [ + -73.465057, + 45.482799 + ], + [ + -73.464968, + 45.48254 + ], + [ + -73.46489, + 45.482284 + ], + [ + -73.464833, + 45.481906 + ], + [ + -73.464816, + 45.481524 + ], + [ + -73.464841, + 45.48119 + ], + [ + -73.464843, + 45.481165 + ], + [ + -73.464847, + 45.481114 + ], + [ + -73.464866, + 45.480979 + ], + [ + -73.46492, + 45.48071 + ], + [ + -73.465032, + 45.480327 + ], + [ + -73.465198, + 45.479819 + ], + [ + -73.46547, + 45.479009 + ], + [ + -73.465549, + 45.478772 + ], + [ + -73.465652, + 45.478467 + ], + [ + -73.465874, + 45.477808 + ], + [ + -73.466476, + 45.47599 + ], + [ + -73.466484, + 45.475966 + ], + [ + -73.466637, + 45.475504 + ], + [ + -73.467366, + 45.473305 + ], + [ + -73.467616, + 45.472553 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467869, + 45.471793 + ], + [ + -73.467954, + 45.471482 + ], + [ + -73.467979, + 45.471365 + ], + [ + -73.468005, + 45.471249 + ], + [ + -73.468064, + 45.470898 + ], + [ + -73.468088, + 45.470651 + ], + [ + -73.468112, + 45.470407 + ], + [ + -73.468119, + 45.470155 + ], + [ + -73.468115, + 45.470044 + ], + [ + -73.468111, + 45.469894 + ], + [ + -73.468108, + 45.469818 + ], + [ + -73.468107, + 45.469773 + ], + [ + -73.46805, + 45.4693 + ], + [ + -73.467953, + 45.468834 + ], + [ + -73.467932, + 45.468733 + ], + [ + -73.467793, + 45.468274 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466768 + ] + ] + }, + "id": 139, + "properties": { + "id": "25ac6328-b789-4a95-a77f-6dbe93804ee3", + "data": { + "gtfs": { + "shape_id": "59_1_A" + }, + "segments": [ + { + "distanceMeters": 188, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 112, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 376, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 327, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 359, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 657, + "travelTimeSeconds": 137 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 95 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 608, + "travelTimeSeconds": 133 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 79 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 192, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11508, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3861.488572820391, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.99, + "travelTimeWithoutDwellTimesSeconds": 1920, + "operatingTimeWithLayoverTimeSeconds": 2112, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1920, + "operatingSpeedWithLayoverMetersPerSecond": 5.45, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.99 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "662f52e5-0ed5-4ba7-81cb-757051eefa2c", + "015193c6-e760-4b43-b20c-28dc44f0558a", + "565e8198-26d9-4715-bc5d-75974e6721d9", + "9b336d4e-db84-472b-aee3-9690d5d224b6", + "3b96e6d6-e4f7-4e24-903e-8fb3993ff6c9", + "22b915c8-bf8d-4e3f-9fa4-f7abce5fa7bb", + "3c0bf327-9e6c-4db5-9401-9cdab070b521", + "959a039b-3225-4812-af55-0e181302cf5d", + "b904303e-de8b-4c71-8b48-48af0de2a9a1", + "2b273df9-aa5e-4062-ae81-92ee60a67a5c", + "450e4ca7-36c4-47db-b1ed-be5672eba5df", + "467e0f7f-f932-4d5e-ba82-9bb0389d7158", + "747c9196-e225-4f37-90ad-0a4fef1b26af", + "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", + "d9bf2534-8f61-4d16-adab-8e4d84e855be", + "f1d23184-1962-40c7-b052-f1f4b7010174", + "0de64186-5455-4222-b348-dab3af89fb3c", + "648c28de-ca97-4dbf-950c-84a7af5578c7", + "20955fbd-1587-4ce3-bc7b-59e84c9c964d", + "3437d9a1-68b8-4d3b-8599-7f7b86a577b8", + "f5c53aa7-466b-4eea-b3e2-5399d8d7f806", + "2e1dd055-2856-439e-b231-cd2b626a492f", + "e9e722ad-a155-4750-9a2a-a126be84e7ec", + "e49c515c-3414-4a88-aaec-43f9499177ec", + "c6b0edc5-b07e-4471-93c5-2b6117d67602", + "43297c29-6e25-4fbe-a1b6-70a1ce96533d", + "923afb03-b5b7-44ed-a97d-4785d2468e97", + "31cd9a31-1ee8-4458-8681-91c1c006b9aa", + "c335387f-3250-40f6-a22d-cdf683517398", + "f46c44d6-0823-444d-9902-d03499774c08", + "69ce0958-621c-4e07-9f8c-41bd64014240", + "800a1d6c-4d5b-4560-b691-99e1b0db1343", + "e827aa2c-577c-4249-9fc7-9a6572084b69", + "12181a0a-32eb-4333-b444-1760ecaa417c", + "bfc273c8-ec5d-4e76-b6a3-3d443d9f65a2", + "c988f5aa-9ab5-48a6-898c-21c53961d2f3", + "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", + "cee5ccf3-ece1-4350-8264-3c360d07d279", + "d5196968-9845-4e31-966a-0ac0f5f77b83", + "e089008c-4123-4897-95b5-a61e5e049f48", + "159a0fe9-bedb-40f2-9806-32ab49594978", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "579043e1-54f7-411f-9a36-e7ee3324290f", + "1758013c-4193-42f0-a495-c36930003f5b", + "51e1600d-418e-4477-9b26-9e5507d72a03", + "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "131616ed-8c78-458b-a65e-78f1aeac1fc7" + ], + "stops": [], + "line_id": "4e9421ca-697a-46ef-ab77-d977505dec90", + "segments": [ + 0, + 1, + 5, + 12, + 16, + 25, + 30, + 36, + 54, + 58, + 61, + 63, + 69, + 73, + 76, + 81, + 88, + 92, + 96, + 102, + 105, + 108, + 114, + 123, + 127, + 129, + 132, + 138, + 144, + 147, + 156, + 167, + 171, + 175, + 181, + 184, + 187, + 195, + 200, + 204, + 212, + 229, + 237, + 240, + 252, + 260 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 139, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469004, + 45.466768 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46641, + 45.465821 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467476, + 45.467991 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467548, + 45.468225 + ], + [ + -73.467698, + 45.468792 + ], + [ + -73.467776, + 45.469183 + ], + [ + -73.46782, + 45.469453 + ], + [ + -73.46784, + 45.469698 + ], + [ + -73.467865, + 45.469989 + ], + [ + -73.467864, + 45.470057 + ], + [ + -73.467862, + 45.470168 + ], + [ + -73.46786, + 45.470362 + ], + [ + -73.467821, + 45.470781 + ], + [ + -73.467786, + 45.471019 + ], + [ + -73.467768, + 45.4711 + ], + [ + -73.467742, + 45.471226 + ], + [ + -73.467655, + 45.471563 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467508, + 45.472063 + ], + [ + -73.467493, + 45.472108 + ], + [ + -73.467344, + 45.472558 + ], + [ + -73.467254, + 45.472832 + ], + [ + -73.467075, + 45.473412 + ], + [ + -73.467018, + 45.473612 + ], + [ + -73.46686, + 45.474168 + ], + [ + -73.466715, + 45.474632 + ], + [ + -73.466501, + 45.475269 + ], + [ + -73.466278, + 45.475935 + ], + [ + -73.466234, + 45.476067 + ], + [ + -73.466128, + 45.476383 + ], + [ + -73.465592, + 45.477979 + ], + [ + -73.465357, + 45.478703 + ], + [ + -73.46534, + 45.478746 + ], + [ + -73.465269, + 45.478932 + ], + [ + -73.465247, + 45.479 + ], + [ + -73.464879, + 45.480107 + ], + [ + -73.464823, + 45.480273 + ], + [ + -73.464733, + 45.480574 + ], + [ + -73.464664, + 45.480885 + ], + [ + -73.464647, + 45.481012 + ], + [ + -73.464634, + 45.481108 + ], + [ + -73.464622, + 45.481195 + ], + [ + -73.464619, + 45.481245 + ], + [ + -73.464603, + 45.481524 + ], + [ + -73.464619, + 45.481956 + ], + [ + -73.464693, + 45.482383 + ], + [ + -73.464736, + 45.482559 + ], + [ + -73.46485, + 45.482905 + ], + [ + -73.46499, + 45.483243 + ], + [ + -73.465069, + 45.483405 + ], + [ + -73.465231, + 45.483688 + ], + [ + -73.465328, + 45.483837 + ], + [ + -73.465383, + 45.483922 + ], + [ + -73.465513, + 45.484102 + ], + [ + -73.465839, + 45.48448 + ], + [ + -73.466022, + 45.484682 + ], + [ + -73.46613, + 45.484773 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.46623, + 45.484867 + ], + [ + -73.466294, + 45.484926 + ], + [ + -73.466457, + 45.485056 + ], + [ + -73.466566, + 45.485142 + ], + [ + -73.466759, + 45.48529 + ], + [ + -73.466948, + 45.485421 + ], + [ + -73.467024, + 45.48547 + ], + [ + -73.468004, + 45.486118 + ], + [ + -73.467659, + 45.486389 + ], + [ + -73.467603, + 45.486433 + ], + [ + -73.467188, + 45.486748 + ], + [ + -73.466683, + 45.487126 + ], + [ + -73.466468, + 45.487283 + ], + [ + -73.466112, + 45.487553 + ], + [ + -73.465746, + 45.487828 + ], + [ + -73.46537, + 45.488106 + ], + [ + -73.465024, + 45.488363 + ], + [ + -73.464766, + 45.488561 + ], + [ + -73.464472, + 45.488786 + ], + [ + -73.464379, + 45.488857 + ], + [ + -73.46422, + 45.488754 + ], + [ + -73.464097, + 45.488673 + ], + [ + -73.463537, + 45.488299 + ], + [ + -73.463291, + 45.488146 + ], + [ + -73.463053, + 45.487989 + ], + [ + -73.462983, + 45.487944 + ], + [ + -73.46278, + 45.487809 + ], + [ + -73.462163, + 45.488174 + ], + [ + -73.461945, + 45.488303 + ], + [ + -73.46072, + 45.489032 + ], + [ + -73.459285, + 45.489895 + ], + [ + -73.457963, + 45.490686 + ], + [ + -73.457738, + 45.49083 + ], + [ + -73.456382, + 45.491631 + ], + [ + -73.454851, + 45.492546 + ], + [ + -73.454766, + 45.492597 + ], + [ + -73.454215, + 45.492926 + ], + [ + -73.451866, + 45.494331 + ], + [ + -73.451788, + 45.494378 + ], + [ + -73.451626, + 45.494472 + ], + [ + -73.448884, + 45.496105 + ], + [ + -73.44881, + 45.496149 + ], + [ + -73.448168, + 45.496536 + ], + [ + -73.447755, + 45.496784 + ], + [ + -73.447323, + 45.497044 + ], + [ + -73.44702, + 45.497219 + ], + [ + -73.446768, + 45.497359 + ], + [ + -73.446666, + 45.497444 + ], + [ + -73.446534, + 45.497471 + ], + [ + -73.44646, + 45.497475 + ], + [ + -73.44636, + 45.497457 + ], + [ + -73.4462, + 45.497417 + ], + [ + -73.446114, + 45.497358 + ], + [ + -73.445877, + 45.497202 + ], + [ + -73.445726, + 45.497102 + ], + [ + -73.442891, + 45.495531 + ], + [ + -73.442881, + 45.495526 + ], + [ + -73.442662, + 45.495404 + ], + [ + -73.442507, + 45.495318 + ], + [ + -73.442122, + 45.495875 + ] + ] + }, + "id": 140, + "properties": { + "id": "27f8601c-024f-48b9-a12d-d7e1f5289604", + "data": { + "gtfs": { + "shape_id": "59_1_R" + }, + "segments": [ + { + "distanceMeters": 805, + "travelTimeSeconds": 112 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 436, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 485, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 574, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 994, + "travelTimeSeconds": 104 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 12 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5459, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3861.488572820391, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.27, + "travelTimeWithoutDwellTimesSeconds": 660, + "operatingTimeWithLayoverTimeSeconds": 840, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 660, + "operatingSpeedWithLayoverMetersPerSecond": 6.5, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.27 + }, + "mode": "bus", + "name": "boul. Gareau", + "color": "#A32638", + "nodes": [ + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "acb7092d-3b2a-4d79-a4e3-09e7e52af475", + "47d29e21-b442-4f1e-bc41-0d7871af14e8", + "7eaffbff-c86c-4810-b174-bda8780c04b4", + "e76a6766-6730-419b-bd29-f65b80bb6721", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "4996264a-c3f0-4fe8-be81-9ca3d8659c61", + "e49dac95-6777-4527-88d9-43533c4c81ab", + "923afb03-b5b7-44ed-a97d-4785d2468e97", + "43297c29-6e25-4fbe-a1b6-70a1ce96533d", + "c6b0edc5-b07e-4471-93c5-2b6117d67602", + "e49c515c-3414-4a88-aaec-43f9499177ec", + "e9e722ad-a155-4750-9a2a-a126be84e7ec", + "a03c8e5e-b707-45da-b2b1-2e8109893679", + "662f52e5-0ed5-4ba7-81cb-757051eefa2c" + ], + "stops": [], + "line_id": "4e9421ca-697a-46ef-ab77-d977505dec90", + "segments": [ + 0, + 31, + 45, + 54, + 57, + 64, + 85, + 101, + 117, + 120, + 123, + 126, + 136, + 138 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 140, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469004, + 45.466768 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46641, + 45.465821 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467476, + 45.467991 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467548, + 45.468225 + ], + [ + -73.467698, + 45.468792 + ], + [ + -73.467776, + 45.469183 + ], + [ + -73.46782, + 45.469453 + ], + [ + -73.46784, + 45.469694 + ], + [ + -73.467865, + 45.469989 + ], + [ + -73.467864, + 45.470057 + ], + [ + -73.467862, + 45.470168 + ], + [ + -73.46786, + 45.470362 + ], + [ + -73.467821, + 45.470781 + ], + [ + -73.467786, + 45.471019 + ], + [ + -73.467768, + 45.4711 + ], + [ + -73.467742, + 45.471226 + ], + [ + -73.467655, + 45.471563 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467508, + 45.472063 + ], + [ + -73.467493, + 45.472108 + ], + [ + -73.467346, + 45.472554 + ], + [ + -73.467254, + 45.472832 + ], + [ + -73.467075, + 45.473412 + ], + [ + -73.467018, + 45.473612 + ], + [ + -73.46686, + 45.474168 + ], + [ + -73.466715, + 45.474632 + ], + [ + -73.466501, + 45.475269 + ], + [ + -73.466278, + 45.475935 + ], + [ + -73.466234, + 45.476067 + ], + [ + -73.46613, + 45.476377 + ], + [ + -73.465592, + 45.477979 + ], + [ + -73.465357, + 45.478703 + ], + [ + -73.465343, + 45.478739 + ], + [ + -73.465269, + 45.478932 + ], + [ + -73.465247, + 45.479 + ], + [ + -73.464879, + 45.480107 + ], + [ + -73.464823, + 45.480273 + ], + [ + -73.464733, + 45.480574 + ], + [ + -73.464664, + 45.480885 + ], + [ + -73.464648, + 45.481004 + ], + [ + -73.464634, + 45.481108 + ], + [ + -73.464622, + 45.481195 + ], + [ + -73.464619, + 45.481245 + ], + [ + -73.464603, + 45.481524 + ], + [ + -73.464619, + 45.481956 + ], + [ + -73.464693, + 45.482383 + ], + [ + -73.464736, + 45.482559 + ], + [ + -73.46485, + 45.482905 + ], + [ + -73.46499, + 45.483243 + ], + [ + -73.465069, + 45.483405 + ], + [ + -73.465231, + 45.483688 + ], + [ + -73.465328, + 45.483837 + ], + [ + -73.465383, + 45.483922 + ], + [ + -73.465513, + 45.484102 + ], + [ + -73.465839, + 45.48448 + ], + [ + -73.466022, + 45.484682 + ], + [ + -73.46613, + 45.484773 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.46623, + 45.484867 + ], + [ + -73.466294, + 45.484926 + ], + [ + -73.466447, + 45.485048 + ], + [ + -73.466566, + 45.485142 + ], + [ + -73.466759, + 45.48529 + ], + [ + -73.466948, + 45.485421 + ], + [ + -73.467024, + 45.48547 + ], + [ + -73.468004, + 45.486118 + ], + [ + -73.469888, + 45.487365 + ], + [ + -73.470621, + 45.487851 + ], + [ + -73.471789, + 45.488626 + ], + [ + -73.471521, + 45.488835 + ], + [ + -73.47145, + 45.488891 + ], + [ + -73.471357, + 45.488962 + ], + [ + -73.470987, + 45.489246 + ], + [ + -73.470505, + 45.489602 + ], + [ + -73.470376, + 45.489697 + ], + [ + -73.470269, + 45.489777 + ], + [ + -73.469835, + 45.49011 + ], + [ + -73.469549, + 45.490326 + ], + [ + -73.469097, + 45.490677 + ], + [ + -73.468846, + 45.490865 + ], + [ + -73.468537, + 45.491086 + ], + [ + -73.468316, + 45.491249 + ], + [ + -73.468166, + 45.49136 + ], + [ + -73.468573, + 45.49163 + ], + [ + -73.468656, + 45.491698 + ], + [ + -73.469006, + 45.491923 + ], + [ + -73.469037, + 45.491943 + ], + [ + -73.469303, + 45.492121 + ], + [ + -73.468677, + 45.492494 + ], + [ + -73.466671, + 45.49369 + ], + [ + -73.465866, + 45.494175 + ], + [ + -73.465714, + 45.494266 + ], + [ + -73.465269, + 45.494527 + ], + [ + -73.46304, + 45.495853 + ], + [ + -73.462904, + 45.495934 + ], + [ + -73.461541, + 45.496748 + ], + [ + -73.461046, + 45.497049 + ], + [ + -73.460407, + 45.497428 + ], + [ + -73.460362, + 45.497454 + ], + [ + -73.460224, + 45.497535 + ], + [ + -73.460119, + 45.497603 + ], + [ + -73.459486, + 45.49798 + ], + [ + -73.45866, + 45.498475 + ], + [ + -73.458451, + 45.498604 + ], + [ + -73.45823, + 45.49874 + ], + [ + -73.456009, + 45.500058 + ], + [ + -73.455817, + 45.500164 + ], + [ + -73.455806, + 45.50017 + ], + [ + -73.455726, + 45.500228 + ], + [ + -73.455439, + 45.500273 + ], + [ + -73.455262, + 45.5003 + ], + [ + -73.455166, + 45.5003 + ], + [ + -73.455067, + 45.500305 + ], + [ + -73.454914, + 45.500255 + ], + [ + -73.45482, + 45.500233 + ], + [ + -73.453483, + 45.499755 + ], + [ + -73.453172, + 45.499634 + ], + [ + -73.452889, + 45.499482 + ], + [ + -73.452794, + 45.499431 + ], + [ + -73.452639, + 45.49935 + ], + [ + -73.452113, + 45.499057 + ], + [ + -73.451834, + 45.498904 + ], + [ + -73.451357, + 45.498643 + ], + [ + -73.451013, + 45.498449 + ], + [ + -73.450805, + 45.498335 + ], + [ + -73.450487, + 45.498161 + ], + [ + -73.450387, + 45.498107 + ], + [ + -73.450085, + 45.497941 + ], + [ + -73.45036, + 45.497779 + ], + [ + -73.452688, + 45.496389 + ], + [ + -73.453569, + 45.495863 + ], + [ + -73.453272, + 45.495611 + ], + [ + -73.453008, + 45.495394 + ], + [ + -73.452944, + 45.495341 + ], + [ + -73.453925, + 45.494757 + ], + [ + -73.455147, + 45.494025 + ], + [ + -73.455814, + 45.493625 + ], + [ + -73.455921, + 45.493561 + ], + [ + -73.455637, + 45.493327 + ], + [ + -73.455334, + 45.493075 + ], + [ + -73.455091, + 45.492872 + ], + [ + -73.454873, + 45.492688 + ], + [ + -73.454766, + 45.492597 + ], + [ + -73.454215, + 45.492926 + ], + [ + -73.453992, + 45.493059 + ], + [ + -73.45188, + 45.494323 + ], + [ + -73.451788, + 45.494378 + ], + [ + -73.451626, + 45.494472 + ], + [ + -73.448899, + 45.496096 + ], + [ + -73.44881, + 45.496149 + ], + [ + -73.448168, + 45.496536 + ], + [ + -73.447761, + 45.496781 + ], + [ + -73.447323, + 45.497044 + ], + [ + -73.44702, + 45.497219 + ], + [ + -73.446768, + 45.497359 + ], + [ + -73.446666, + 45.497444 + ], + [ + -73.446534, + 45.497471 + ], + [ + -73.44646, + 45.497475 + ], + [ + -73.44636, + 45.497457 + ], + [ + -73.4462, + 45.497417 + ], + [ + -73.446114, + 45.497358 + ], + [ + -73.445884, + 45.497206 + ], + [ + -73.445726, + 45.497102 + ], + [ + -73.442899, + 45.495536 + ], + [ + -73.442881, + 45.495526 + ], + [ + -73.442662, + 45.495404 + ], + [ + -73.442507, + 45.495318 + ], + [ + -73.442397, + 45.495264 + ], + [ + -73.442288, + 45.495204 + ], + [ + -73.44114, + 45.494563 + ], + [ + -73.440907, + 45.494434 + ], + [ + -73.440795, + 45.494371 + ], + [ + -73.438673, + 45.493188 + ], + [ + -73.438558, + 45.493301 + ], + [ + -73.438402, + 45.493454 + ], + [ + -73.438287, + 45.49358 + ], + [ + -73.438194, + 45.49375 + ], + [ + -73.438134, + 45.493858 + ], + [ + -73.438053, + 45.493957 + ], + [ + -73.437626, + 45.494545 + ], + [ + -73.43754, + 45.494663 + ], + [ + -73.437089, + 45.494534 + ], + [ + -73.436664, + 45.494411 + ], + [ + -73.435723, + 45.494151 + ], + [ + -73.435623, + 45.494123 + ], + [ + -73.435472, + 45.494082 + ], + [ + -73.434513, + 45.493802 + ], + [ + -73.43378, + 45.493538 + ], + [ + -73.433602, + 45.493473 + ], + [ + -73.432927, + 45.49323 + ], + [ + -73.43277, + 45.493221 + ], + [ + -73.432639, + 45.493293 + ], + [ + -73.432568, + 45.493374 + ], + [ + -73.432269, + 45.493788 + ], + [ + -73.43193, + 45.494279 + ], + [ + -73.431866, + 45.494372 + ], + [ + -73.431456, + 45.494916 + ], + [ + -73.431051, + 45.495488 + ], + [ + -73.430859, + 45.495754 + ], + [ + -73.430693, + 45.495984 + ], + [ + -73.430662, + 45.496027 + ], + [ + -73.430595, + 45.496131 + ], + [ + -73.430519, + 45.496234 + ], + [ + -73.432076, + 45.496786 + ], + [ + -73.432274, + 45.496856 + ], + [ + -73.431832, + 45.497459 + ], + [ + -73.431441, + 45.498021 + ], + [ + -73.431182, + 45.498388 + ], + [ + -73.430984, + 45.498668 + ], + [ + -73.429588, + 45.498159 + ], + [ + -73.429465, + 45.498146 + ], + [ + -73.429364, + 45.498159 + ], + [ + -73.429247, + 45.498199 + ], + [ + -73.429191, + 45.498276 + ], + [ + -73.429062, + 45.498451 + ], + [ + -73.428857, + 45.49873 + ], + [ + -73.428065, + 45.49985 + ], + [ + -73.427378, + 45.500821 + ], + [ + -73.427249, + 45.501 + ], + [ + -73.427197, + 45.501073 + ], + [ + -73.426823, + 45.501594 + ], + [ + -73.426823, + 45.501595 + ], + [ + -73.42672, + 45.501739 + ], + [ + -73.426492, + 45.502108 + ], + [ + -73.426292, + 45.502431 + ], + [ + -73.426184, + 45.502584 + ], + [ + -73.427788, + 45.503152 + ], + [ + -73.428083, + 45.503265 + ], + [ + -73.428273, + 45.50335 + ], + [ + -73.428512, + 45.503472 + ], + [ + -73.428643, + 45.503549 + ], + [ + -73.428884, + 45.503715 + ], + [ + -73.428992, + 45.503801 + ], + [ + -73.429012, + 45.50382 + ], + [ + -73.429175, + 45.503967 + ], + [ + -73.429253, + 45.504057 + ], + [ + -73.429303, + 45.504111 + ], + [ + -73.429332, + 45.504143 + ], + [ + -73.429534, + 45.504058 + ], + [ + -73.429729, + 45.503968 + ], + [ + -73.429957, + 45.503864 + ], + [ + -73.430302, + 45.503725 + ], + [ + -73.430634, + 45.503559 + ], + [ + -73.430802, + 45.503483 + ], + [ + -73.431026, + 45.503393 + ], + [ + -73.431274, + 45.503312 + ], + [ + -73.431374, + 45.503285 + ], + [ + -73.431595, + 45.503227 + ], + [ + -73.431855, + 45.503168 + ], + [ + -73.432067, + 45.503128 + ], + [ + -73.433772, + 45.502914 + ], + [ + -73.433958, + 45.50289 + ], + [ + -73.434701, + 45.502796 + ], + [ + -73.434919, + 45.50277 + ], + [ + -73.43507, + 45.502747 + ], + [ + -73.435218, + 45.502711 + ], + [ + -73.435619, + 45.502617 + ], + [ + -73.435671, + 45.5026 + ], + [ + -73.435885, + 45.502532 + ], + [ + -73.436128, + 45.502437 + ], + [ + -73.436599, + 45.50223 + ], + [ + -73.436771, + 45.502154 + ], + [ + -73.437089, + 45.501929 + ], + [ + -73.437803, + 45.501427 + ], + [ + -73.437952, + 45.501322 + ], + [ + -73.438749, + 45.500747 + ], + [ + -73.438772, + 45.500729 + ], + [ + -73.43892, + 45.500612 + ], + [ + -73.439048, + 45.500497 + ], + [ + -73.439144, + 45.50041 + ], + [ + -73.439363, + 45.500176 + ], + [ + -73.439833, + 45.499501 + ], + [ + -73.43988, + 45.499434 + ], + [ + -73.439954, + 45.499326 + ], + [ + -73.441093, + 45.497682 + ], + [ + -73.441172, + 45.497567 + ], + [ + -73.442302, + 45.495927 + ] + ] + }, + "id": 141, + "properties": { + "id": "58441819-df62-44c5-8947-b39865be55f6", + "data": { + "gtfs": { + "shape_id": "59_2_R" + }, + "segments": [ + { + "distanceMeters": 805, + "travelTimeSeconds": 131 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 436, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 485, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 627, + "travelTimeSeconds": 103 + }, + { + "distanceMeters": 112, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 455, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 74, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 613, + "travelTimeSeconds": 175 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 63 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 210, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11903, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3856.754273888441, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.67, + "travelTimeWithoutDwellTimesSeconds": 2100, + "operatingTimeWithLayoverTimeSeconds": 2310, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2100, + "operatingSpeedWithLayoverMetersPerSecond": 5.15, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.67 + }, + "mode": "bus", + "name": "boul. Gareau", + "color": "#A32638", + "nodes": [ + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "acb7092d-3b2a-4d79-a4e3-09e7e52af475", + "47d29e21-b442-4f1e-bc41-0d7871af14e8", + "7eaffbff-c86c-4810-b174-bda8780c04b4", + "e76a6766-6730-419b-bd29-f65b80bb6721", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "4996264a-c3f0-4fe8-be81-9ca3d8659c61", + "e089008c-4123-4897-95b5-a61e5e049f48", + "d5196968-9845-4e31-966a-0ac0f5f77b83", + "cee5ccf3-ece1-4350-8264-3c360d07d279", + "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", + "c988f5aa-9ab5-48a6-898c-21c53961d2f3", + "bfc273c8-ec5d-4e76-b6a3-3d443d9f65a2", + "12181a0a-32eb-4333-b444-1760ecaa417c", + "e827aa2c-577c-4249-9fc7-9a6572084b69", + "800a1d6c-4d5b-4560-b691-99e1b0db1343", + "69ce0958-621c-4e07-9f8c-41bd64014240", + "f46c44d6-0823-444d-9902-d03499774c08", + "c335387f-3250-40f6-a22d-cdf683517398", + "31cd9a31-1ee8-4458-8681-91c1c006b9aa", + "923afb03-b5b7-44ed-a97d-4785d2468e97", + "43297c29-6e25-4fbe-a1b6-70a1ce96533d", + "c6b0edc5-b07e-4471-93c5-2b6117d67602", + "e49c515c-3414-4a88-aaec-43f9499177ec", + "e9e722ad-a155-4750-9a2a-a126be84e7ec", + "a03c8e5e-b707-45da-b2b1-2e8109893679", + "f5c53aa7-466b-4eea-b3e2-5399d8d7f806", + "3437d9a1-68b8-4d3b-8599-7f7b86a577b8", + "20955fbd-1587-4ce3-bc7b-59e84c9c964d", + "648c28de-ca97-4dbf-950c-84a7af5578c7", + "0de64186-5455-4222-b348-dab3af89fb3c", + "f1d23184-1962-40c7-b052-f1f4b7010174", + "d9bf2534-8f61-4d16-adab-8e4d84e855be", + "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", + "747c9196-e225-4f37-90ad-0a4fef1b26af", + "467e0f7f-f932-4d5e-ba82-9bb0389d7158", + "450e4ca7-36c4-47db-b1ed-be5672eba5df", + "2b273df9-aa5e-4062-ae81-92ee60a67a5c", + "2b273df9-aa5e-4062-ae81-92ee60a67a5c", + "175e7e04-90a9-48d6-93fb-0788b2b7dc79", + "cb99f0c8-b0c6-47e9-9827-66190161063b", + "3b96e6d6-e4f7-4e24-903e-8fb3993ff6c9", + "9b336d4e-db84-472b-aee3-9690d5d224b6", + "a39b7f03-1a32-4d28-9091-59543b1980d1", + "2eba5ff6-a088-4286-aafa-5c6b0646f734", + "015193c6-e760-4b43-b20c-28dc44f0558a", + "280e5a85-9e1a-4b2a-8fde-6cc3d439dfe9" + ], + "stops": [], + "line_id": "4e9421ca-697a-46ef-ab77-d977505dec90", + "segments": [ + 0, + 31, + 45, + 54, + 57, + 64, + 85, + 96, + 99, + 106, + 111, + 115, + 118, + 122, + 128, + 131, + 142, + 151, + 157, + 161, + 166, + 170, + 173, + 176, + 186, + 188, + 195, + 201, + 204, + 209, + 212, + 219, + 224, + 228, + 232, + 239, + 241, + 243, + 245, + 271, + 275, + 285, + 288, + 293, + 296, + 299 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 141, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.442302, + 45.495927 + ], + [ + -73.442662, + 45.495404 + ], + [ + -73.442507, + 45.495318 + ], + [ + -73.442397, + 45.495264 + ], + [ + -73.442288, + 45.495204 + ], + [ + -73.44114, + 45.494563 + ], + [ + -73.440908, + 45.494434 + ], + [ + -73.440795, + 45.494371 + ], + [ + -73.438673, + 45.493188 + ], + [ + -73.438254, + 45.492959 + ], + [ + -73.437906, + 45.492769 + ], + [ + -73.437413, + 45.492495 + ], + [ + -73.436849, + 45.492184 + ], + [ + -73.436481, + 45.491981 + ], + [ + -73.436012, + 45.49172 + ], + [ + -73.435273, + 45.491315 + ], + [ + -73.435169, + 45.491256 + ], + [ + -73.435083, + 45.491207 + ], + [ + -73.434375, + 45.49081 + ], + [ + -73.433245, + 45.490184 + ], + [ + -73.432787, + 45.489937 + ], + [ + -73.432356, + 45.489693 + ], + [ + -73.432063, + 45.489531 + ], + [ + -73.43217, + 45.489383 + ], + [ + -73.43219, + 45.48936 + ], + [ + -73.432305, + 45.489239 + ], + [ + -73.432556, + 45.489041 + ], + [ + -73.432684, + 45.488933 + ], + [ + -73.432921, + 45.48878 + ], + [ + -73.433484, + 45.488439 + ], + [ + -73.435153, + 45.487468 + ], + [ + -73.437094, + 45.486331 + ], + [ + -73.437465, + 45.486115 + ], + [ + -73.43775, + 45.485944 + ], + [ + -73.438008, + 45.485782 + ], + [ + -73.439264, + 45.485036 + ], + [ + -73.439959, + 45.484631 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.443018, + 45.482865 + ], + [ + -73.443745, + 45.48242 + ], + [ + -73.445624, + 45.481309 + ], + [ + -73.446581, + 45.480738 + ], + [ + -73.448771, + 45.479431 + ], + [ + -73.449044, + 45.479268 + ], + [ + -73.449242, + 45.479145 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.44954, + 45.478958 + ], + [ + -73.449587, + 45.478931 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.44904, + 45.47838 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.465226, + 45.468287 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466768 + ] + ] + }, + "id": 142, + "properties": { + "id": "28bb247a-d7e4-486e-98bf-3391f4d65e70", + "data": { + "gtfs": { + "shape_id": "59_2_A" + }, + "segments": [ + { + "distanceMeters": 239, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 4491, + "travelTimeSeconds": 930 + }, + { + "distanceMeters": 487, + "travelTimeSeconds": 101 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5216, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3856.754273888441, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 4.83, + "travelTimeWithoutDwellTimesSeconds": 1080, + "operatingTimeWithLayoverTimeSeconds": 1260, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1080, + "operatingSpeedWithLayoverMetersPerSecond": 4.14, + "averageSpeedWithoutDwellTimesMetersPerSecond": 4.83 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "280e5a85-9e1a-4b2a-8fde-6cc3d439dfe9", + "f5c53aa7-466b-4eea-b3e2-5399d8d7f806", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "131616ed-8c78-458b-a65e-78f1aeac1fc7" + ], + "stops": [], + "line_id": "4e9421ca-697a-46ef-ab77-d977505dec90", + "segments": [ + 0, + 6, + 68 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 142, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.385045, + 45.506579 + ], + [ + -73.384797, + 45.506518 + ], + [ + -73.383777, + 45.506274 + ], + [ + -73.382498, + 45.505967 + ], + [ + -73.382363, + 45.505931 + ], + [ + -73.382185, + 45.50589 + ], + [ + -73.382118, + 45.506021 + ], + [ + -73.381988, + 45.506301 + ], + [ + -73.381841, + 45.50662 + ], + [ + -73.38158, + 45.507188 + ], + [ + -73.381335, + 45.507721 + ], + [ + -73.38128, + 45.507806 + ], + [ + -73.380619, + 45.508917 + ], + [ + -73.380471, + 45.509177 + ], + [ + -73.380338, + 45.509474 + ], + [ + -73.380312, + 45.5096 + ], + [ + -73.380265, + 45.50983 + ], + [ + -73.380243, + 45.510001 + ], + [ + -73.380445, + 45.509992 + ], + [ + -73.380791, + 45.509943 + ], + [ + -73.380949, + 45.509965 + ], + [ + -73.380985, + 45.509971 + ], + [ + -73.382527, + 45.510205 + ], + [ + -73.382962, + 45.510282 + ], + [ + -73.383372, + 45.510346 + ], + [ + -73.383559, + 45.510373 + ], + [ + -73.383894, + 45.510396 + ], + [ + -73.384418, + 45.510414 + ], + [ + -73.384628, + 45.51041 + ], + [ + -73.38478, + 45.510388 + ], + [ + -73.384919, + 45.510388 + ], + [ + -73.385295, + 45.510379 + ], + [ + -73.385917, + 45.510362 + ], + [ + -73.386235, + 45.510353 + ], + [ + -73.387775, + 45.510287 + ], + [ + -73.388662, + 45.510288 + ], + [ + -73.38988, + 45.510258 + ], + [ + -73.39086, + 45.510227 + ], + [ + -73.391524, + 45.510196 + ], + [ + -73.392204, + 45.510161 + ], + [ + -73.392652, + 45.510134 + ], + [ + -73.393167, + 45.510108 + ], + [ + -73.393621, + 45.510086 + ], + [ + -73.393726, + 45.510072 + ], + [ + -73.393813, + 45.510063 + ], + [ + -73.394181, + 45.510028 + ], + [ + -73.394199, + 45.510028 + ], + [ + -73.395527, + 45.509872 + ], + [ + -73.399448, + 45.509601 + ], + [ + -73.399404, + 45.509279 + ], + [ + -73.399352, + 45.508899 + ], + [ + -73.399307, + 45.508559 + ], + [ + -73.399294, + 45.508462 + ], + [ + -73.399228, + 45.507945 + ], + [ + -73.399213, + 45.507801 + ], + [ + -73.399133, + 45.507198 + ], + [ + -73.399108, + 45.507031 + ], + [ + -73.399111, + 45.507003 + ], + [ + -73.399117, + 45.50695 + ], + [ + -73.39914, + 45.506797 + ], + [ + -73.399188, + 45.506676 + ], + [ + -73.399379, + 45.50637 + ], + [ + -73.399802, + 45.506078 + ], + [ + -73.399985, + 45.50597 + ], + [ + -73.400046, + 45.505939 + ], + [ + -73.400152, + 45.505885 + ], + [ + -73.400052, + 45.505795 + ], + [ + -73.399949, + 45.505664 + ], + [ + -73.399886, + 45.505552 + ], + [ + -73.39982, + 45.505426 + ], + [ + -73.399787, + 45.505322 + ], + [ + -73.39976, + 45.505156 + ], + [ + -73.399734, + 45.504783 + ], + [ + -73.399729, + 45.504706 + ], + [ + -73.399657, + 45.504175 + ], + [ + -73.399561, + 45.503495 + ], + [ + -73.399542, + 45.50336 + ], + [ + -73.399508, + 45.503131 + ], + [ + -73.399441, + 45.502676 + ], + [ + -73.399417, + 45.50246 + ], + [ + -73.3994, + 45.502333 + ], + [ + -73.399355, + 45.501992 + ], + [ + -73.399825, + 45.501965 + ], + [ + -73.400848, + 45.501905 + ], + [ + -73.40102, + 45.501895 + ], + [ + -73.402013, + 45.501846 + ], + [ + -73.402508, + 45.501802 + ], + [ + -73.402812, + 45.501766 + ], + [ + -73.402823, + 45.501763 + ], + [ + -73.402978, + 45.501726 + ], + [ + -73.403257, + 45.501667 + ], + [ + -73.403564, + 45.501582 + ], + [ + -73.4038, + 45.50151 + ], + [ + -73.404012, + 45.501416 + ], + [ + -73.404181, + 45.501344 + ], + [ + -73.404368, + 45.50125 + ], + [ + -73.404541, + 45.501151 + ], + [ + -73.404768, + 45.501003 + ], + [ + -73.405014, + 45.500818 + ], + [ + -73.405183, + 45.500652 + ], + [ + -73.405207, + 45.500629 + ], + [ + -73.40521, + 45.500625 + ], + [ + -73.405385, + 45.500423 + ], + [ + -73.405524, + 45.500243 + ], + [ + -73.405638, + 45.500032 + ], + [ + -73.405906, + 45.499487 + ], + [ + -73.406057, + 45.499182 + ], + [ + -73.40631, + 45.498674 + ], + [ + -73.406337, + 45.498619 + ], + [ + -73.406472, + 45.498417 + ], + [ + -73.406574, + 45.498264 + ], + [ + -73.406814, + 45.497925 + ], + [ + -73.407382, + 45.497122 + ], + [ + -73.407646, + 45.49675 + ], + [ + -73.407675, + 45.496708 + ], + [ + -73.407892, + 45.496394 + ], + [ + -73.408205, + 45.495957 + ], + [ + -73.408715, + 45.495247 + ], + [ + -73.408773, + 45.495157 + ], + [ + -73.408851, + 45.495036 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.409273, + 45.494513 + ], + [ + -73.409537, + 45.494129 + ], + [ + -73.409872, + 45.493642 + ], + [ + -73.411364, + 45.49154 + ], + [ + -73.41144, + 45.491434 + ], + [ + -73.412048, + 45.490575 + ], + [ + -73.413095, + 45.489094 + ], + [ + -73.41317, + 45.488987 + ], + [ + -73.413246, + 45.48888 + ], + [ + -73.414235, + 45.487508 + ], + [ + -73.414543, + 45.487058 + ], + [ + -73.414879, + 45.486604 + ], + [ + -73.415045, + 45.486384 + ], + [ + -73.415216, + 45.486168 + ], + [ + -73.41547, + 45.485876 + ], + [ + -73.415618, + 45.485723 + ], + [ + -73.415653, + 45.485687 + ], + [ + -73.415881, + 45.485467 + ], + [ + -73.415979, + 45.485368 + ], + [ + -73.416171, + 45.485201 + ], + [ + -73.416634, + 45.484828 + ], + [ + -73.417619, + 45.484091 + ], + [ + -73.417797, + 45.483961 + ], + [ + -73.418029, + 45.48379 + ], + [ + -73.419479, + 45.482708 + ], + [ + -73.420488, + 45.481958 + ], + [ + -73.420745, + 45.481758 + ], + [ + -73.421034, + 45.481545 + ], + [ + -73.421135, + 45.481471 + ], + [ + -73.423418, + 45.479788 + ], + [ + -73.423539, + 45.479699 + ], + [ + -73.42384, + 45.47947 + ], + [ + -73.424374, + 45.479093 + ], + [ + -73.424606, + 45.47894 + ], + [ + -73.42499, + 45.478702 + ], + [ + -73.425384, + 45.478481 + ], + [ + -73.425755, + 45.478293 + ], + [ + -73.426224, + 45.478077 + ], + [ + -73.426575, + 45.477924 + ], + [ + -73.426885, + 45.477807 + ], + [ + -73.427064, + 45.47774 + ], + [ + -73.427293, + 45.477659 + ], + [ + -73.427592, + 45.477565 + ], + [ + -73.427919, + 45.477471 + ], + [ + -73.428417, + 45.477332 + ], + [ + -73.430191, + 45.476874 + ], + [ + -73.430341, + 45.476838 + ], + [ + -73.430884, + 45.476699 + ], + [ + -73.430981, + 45.476674 + ], + [ + -73.431616, + 45.47651 + ], + [ + -73.432188, + 45.476362 + ], + [ + -73.434429, + 45.475783 + ], + [ + -73.435101, + 45.475604 + ], + [ + -73.435306, + 45.475549 + ], + [ + -73.435634, + 45.475469 + ], + [ + -73.436518, + 45.475235 + ], + [ + -73.437045, + 45.475069 + ], + [ + -73.437596, + 45.47488 + ], + [ + -73.437872, + 45.474768 + ], + [ + -73.438084, + 45.474678 + ], + [ + -73.438199, + 45.474624 + ], + [ + -73.43841, + 45.474525 + ], + [ + -73.438836, + 45.474314 + ], + [ + -73.43909, + 45.474175 + ], + [ + -73.440044, + 45.473644 + ], + [ + -73.440381, + 45.473457 + ], + [ + -73.440528, + 45.473375 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.440904, + 45.473168 + ], + [ + -73.441015, + 45.473108 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.442522, + 45.472046 + ], + [ + -73.442653, + 45.471954 + ], + [ + -73.444466, + 45.470668 + ], + [ + -73.444558, + 45.470603 + ], + [ + -73.444693, + 45.470507 + ], + [ + -73.445328, + 45.470057 + ], + [ + -73.445338, + 45.470052 + ], + [ + -73.445622, + 45.469854 + ], + [ + -73.446091, + 45.469543 + ], + [ + -73.446378, + 45.469352 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.447066, + 45.468996 + ], + [ + -73.4474, + 45.468829 + ], + [ + -73.447822, + 45.468645 + ], + [ + -73.448427, + 45.468407 + ], + [ + -73.449383, + 45.468079 + ], + [ + -73.449742, + 45.467957 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450233, + 45.467787 + ], + [ + -73.451014, + 45.467517 + ], + [ + -73.451685, + 45.467271 + ], + [ + -73.451729, + 45.467255 + ], + [ + -73.451774, + 45.467238 + ], + [ + -73.452547, + 45.466971 + ], + [ + -73.452657, + 45.466933 + ], + [ + -73.453014, + 45.466803 + ], + [ + -73.45314, + 45.466749 + ], + [ + -73.453548, + 45.466537 + ], + [ + -73.453946, + 45.466304 + ], + [ + -73.454693, + 45.465786 + ], + [ + -73.454706, + 45.465778 + ], + [ + -73.45516, + 45.46545 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.455952, + 45.465079 + ], + [ + -73.456078, + 45.465023 + ], + [ + -73.456262, + 45.464907 + ], + [ + -73.456407, + 45.464824 + ], + [ + -73.456567, + 45.464772 + ], + [ + -73.456717, + 45.464744 + ], + [ + -73.456798, + 45.464739 + ], + [ + -73.456888, + 45.464733 + ], + [ + -73.457035, + 45.464719 + ], + [ + -73.45718, + 45.464674 + ], + [ + -73.457301, + 45.4646 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.458744, + 45.465452 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.4601, + 45.466432 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.460554, + 45.466805 + ], + [ + -73.460661, + 45.466886 + ], + [ + -73.461028, + 45.467148 + ], + [ + -73.46125, + 45.467305 + ], + [ + -73.461806, + 45.46771 + ], + [ + -73.461902, + 45.467781 + ], + [ + -73.461978, + 45.467836 + ], + [ + -73.462611, + 45.468268 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464452, + 45.468222 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465234, + 45.468288 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.46908, + 45.465912 + ], + [ + -73.469107, + 45.46587 + ] + ] + }, + "id": 143, + "properties": { + "id": "de3cf47e-6775-4ffa-b95b-caae23e0ce99", + "data": { + "gtfs": { + "shape_id": "60_2_A" + }, + "segments": [ + { + "distanceMeters": 388, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 1955, + "travelTimeSeconds": 221 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 61, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 82, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 304, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 424, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 344, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 343, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 102 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 82 + }, + { + "distanceMeters": 578, + "travelTimeSeconds": 146 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10965, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7973.128099927979, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.77, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 6.09, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.77 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "71f7bbc9-363a-40ba-86f7-7f9ec638da55", + "f20e2154-4487-4d25-8e73-57adbf7414bd", + "ff0214aa-5a67-4237-87c2-863aa17e8087", + "6765611d-305b-41e3-b519-b65e608494ba", + "b20c17a3-277e-418e-90be-8f8d32918ba9", + "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", + "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", + "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", + "00ed067b-7627-492d-ac0f-5d03bd3b185c", + "dc630e4d-102e-48b9-8b4a-920cafc01d4a", + "d2cca46c-df28-490b-b5de-9bc99956bc15", + "aab8672e-86c9-4a43-9806-f5135dc02b4e", + "50ca3159-13cc-4149-b07f-8267a31166e3", + "590769f9-bd2c-482c-8bd5-e3724936b683", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "78262195-7c3a-4ed5-81d8-a33c906e3099", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", + "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", + "8131cbf3-211d-4b69-adcb-9af688489a49", + "e865e27f-7453-42b2-9745-a8e5425a0276", + "0e293c4f-51c2-4ecd-9469-442389cb7915", + "71881b96-39d5-48ea-9242-5e05ded39cda", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "46c30d80-c93e-497b-a096-3a7c13e3723f", + "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", + "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "4fc83229-a15e-48e1-aa4f-fae0073dacf9", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "41820b50-a095-40c0-8d54-449e5a8d8c41", + "segments": [ + 0, + 9, + 51, + 57, + 64, + 72, + 75, + 80, + 83, + 88, + 100, + 109, + 111, + 113, + 118, + 121, + 124, + 127, + 136, + 143, + 148, + 150, + 160, + 169, + 173, + 181, + 187, + 192, + 196, + 201, + 208, + 215, + 222, + 240, + 242, + 249, + 265 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 143, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.385045, + 45.506579 + ], + [ + -73.384797, + 45.506518 + ], + [ + -73.383777, + 45.506274 + ], + [ + -73.382498, + 45.505967 + ], + [ + -73.382363, + 45.505931 + ], + [ + -73.382185, + 45.50589 + ], + [ + -73.382118, + 45.506021 + ], + [ + -73.381988, + 45.506301 + ], + [ + -73.381841, + 45.50662 + ], + [ + -73.38158, + 45.507187 + ], + [ + -73.381335, + 45.507721 + ], + [ + -73.38128, + 45.507806 + ], + [ + -73.380619, + 45.508917 + ], + [ + -73.380471, + 45.509177 + ], + [ + -73.380338, + 45.509474 + ], + [ + -73.380312, + 45.5096 + ], + [ + -73.380265, + 45.50983 + ], + [ + -73.380243, + 45.510001 + ], + [ + -73.380445, + 45.509992 + ], + [ + -73.380791, + 45.509943 + ], + [ + -73.380949, + 45.509965 + ], + [ + -73.380985, + 45.509971 + ], + [ + -73.382527, + 45.510205 + ], + [ + -73.382962, + 45.510282 + ], + [ + -73.383372, + 45.510346 + ], + [ + -73.383559, + 45.510373 + ], + [ + -73.383894, + 45.510396 + ], + [ + -73.384418, + 45.510414 + ], + [ + -73.384628, + 45.51041 + ], + [ + -73.38478, + 45.510388 + ], + [ + -73.384919, + 45.510388 + ], + [ + -73.385295, + 45.510379 + ], + [ + -73.385917, + 45.510362 + ], + [ + -73.386235, + 45.510353 + ], + [ + -73.387775, + 45.510287 + ], + [ + -73.388662, + 45.510288 + ], + [ + -73.38988, + 45.510258 + ], + [ + -73.39086, + 45.510227 + ], + [ + -73.391524, + 45.510196 + ], + [ + -73.392204, + 45.510161 + ], + [ + -73.392652, + 45.510134 + ], + [ + -73.393167, + 45.510108 + ], + [ + -73.393621, + 45.510086 + ], + [ + -73.393726, + 45.510072 + ], + [ + -73.393813, + 45.510063 + ], + [ + -73.394181, + 45.510028 + ], + [ + -73.394199, + 45.510028 + ], + [ + -73.395527, + 45.509872 + ], + [ + -73.399448, + 45.509601 + ], + [ + -73.399404, + 45.509279 + ], + [ + -73.399352, + 45.508899 + ], + [ + -73.399308, + 45.508566 + ], + [ + -73.399294, + 45.508462 + ], + [ + -73.399228, + 45.507945 + ], + [ + -73.399213, + 45.507801 + ], + [ + -73.399133, + 45.507198 + ], + [ + -73.399108, + 45.507031 + ], + [ + -73.39911, + 45.50701 + ], + [ + -73.399117, + 45.50695 + ], + [ + -73.39914, + 45.506797 + ], + [ + -73.399188, + 45.506676 + ], + [ + -73.399379, + 45.50637 + ], + [ + -73.399802, + 45.506078 + ], + [ + -73.399985, + 45.50597 + ], + [ + -73.400037, + 45.505943 + ], + [ + -73.400152, + 45.505885 + ], + [ + -73.400052, + 45.505795 + ], + [ + -73.399949, + 45.505664 + ], + [ + -73.399886, + 45.505552 + ], + [ + -73.39982, + 45.505426 + ], + [ + -73.399787, + 45.505322 + ], + [ + -73.39976, + 45.505156 + ], + [ + -73.399735, + 45.504791 + ], + [ + -73.399729, + 45.504706 + ], + [ + -73.399657, + 45.504175 + ], + [ + -73.399562, + 45.503503 + ], + [ + -73.399542, + 45.50336 + ], + [ + -73.399508, + 45.503131 + ], + [ + -73.399441, + 45.502676 + ], + [ + -73.399417, + 45.50246 + ], + [ + -73.399401, + 45.502342 + ], + [ + -73.399355, + 45.501992 + ], + [ + -73.399825, + 45.501965 + ], + [ + -73.400835, + 45.501906 + ], + [ + -73.40102, + 45.501895 + ], + [ + -73.402013, + 45.501846 + ], + [ + -73.402508, + 45.501802 + ], + [ + -73.40281, + 45.501766 + ], + [ + -73.402812, + 45.501766 + ], + [ + -73.402978, + 45.501726 + ], + [ + -73.403257, + 45.501667 + ], + [ + -73.403564, + 45.501582 + ], + [ + -73.4038, + 45.50151 + ], + [ + -73.404012, + 45.501416 + ], + [ + -73.404181, + 45.501344 + ], + [ + -73.404368, + 45.50125 + ], + [ + -73.404541, + 45.501151 + ], + [ + -73.404768, + 45.501003 + ], + [ + -73.405014, + 45.500818 + ], + [ + -73.405183, + 45.500652 + ], + [ + -73.405198, + 45.500637 + ], + [ + -73.40521, + 45.500625 + ], + [ + -73.405385, + 45.500423 + ], + [ + -73.405524, + 45.500243 + ], + [ + -73.405638, + 45.500032 + ], + [ + -73.405906, + 45.499487 + ], + [ + -73.406057, + 45.499182 + ], + [ + -73.40631, + 45.498674 + ], + [ + -73.406337, + 45.498619 + ], + [ + -73.406465, + 45.498427 + ], + [ + -73.406574, + 45.498264 + ], + [ + -73.406807, + 45.497934 + ], + [ + -73.407382, + 45.497122 + ], + [ + -73.407638, + 45.49676 + ], + [ + -73.407675, + 45.496708 + ], + [ + -73.407892, + 45.496394 + ], + [ + -73.408205, + 45.495957 + ], + [ + -73.408715, + 45.495247 + ], + [ + -73.408766, + 45.495167 + ], + [ + -73.408851, + 45.495036 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.409265, + 45.494524 + ], + [ + -73.409537, + 45.494129 + ], + [ + -73.409872, + 45.493642 + ], + [ + -73.411356, + 45.491552 + ], + [ + -73.41144, + 45.491434 + ], + [ + -73.412048, + 45.490575 + ], + [ + -73.413086, + 45.489106 + ], + [ + -73.41317, + 45.488987 + ], + [ + -73.413246, + 45.48888 + ], + [ + -73.414235, + 45.487508 + ], + [ + -73.414543, + 45.487058 + ], + [ + -73.414879, + 45.486604 + ], + [ + -73.415045, + 45.486384 + ], + [ + -73.415216, + 45.486168 + ], + [ + -73.41547, + 45.485876 + ], + [ + -73.415606, + 45.485736 + ], + [ + -73.415653, + 45.485687 + ], + [ + -73.415881, + 45.485467 + ], + [ + -73.415979, + 45.485368 + ], + [ + -73.416171, + 45.485201 + ], + [ + -73.416634, + 45.484828 + ], + [ + -73.417619, + 45.484091 + ], + [ + -73.417781, + 45.483972 + ], + [ + -73.418029, + 45.48379 + ], + [ + -73.419479, + 45.482708 + ], + [ + -73.420488, + 45.481958 + ], + [ + -73.420745, + 45.481758 + ], + [ + -73.421017, + 45.481557 + ], + [ + -73.421135, + 45.481471 + ], + [ + -73.423401, + 45.479801 + ], + [ + -73.423539, + 45.479699 + ], + [ + -73.42384, + 45.47947 + ], + [ + -73.424374, + 45.479093 + ], + [ + -73.424606, + 45.47894 + ], + [ + -73.42499, + 45.478702 + ], + [ + -73.425384, + 45.478481 + ], + [ + -73.425755, + 45.478293 + ], + [ + -73.426224, + 45.478077 + ], + [ + -73.426575, + 45.477924 + ], + [ + -73.426861, + 45.477816 + ], + [ + -73.427064, + 45.47774 + ], + [ + -73.427293, + 45.477659 + ], + [ + -73.427592, + 45.477565 + ], + [ + -73.427919, + 45.477471 + ], + [ + -73.428417, + 45.477332 + ], + [ + -73.430191, + 45.476874 + ], + [ + -73.430341, + 45.476838 + ], + [ + -73.430884, + 45.476699 + ], + [ + -73.430954, + 45.476681 + ], + [ + -73.431616, + 45.47651 + ], + [ + -73.432188, + 45.476362 + ], + [ + -73.434429, + 45.475783 + ], + [ + -73.435074, + 45.475611 + ], + [ + -73.435306, + 45.475549 + ], + [ + -73.435634, + 45.475469 + ], + [ + -73.436518, + 45.475235 + ], + [ + -73.437045, + 45.475069 + ], + [ + -73.437596, + 45.47488 + ], + [ + -73.437872, + 45.474768 + ], + [ + -73.438084, + 45.474678 + ], + [ + -73.438174, + 45.474636 + ], + [ + -73.43841, + 45.474525 + ], + [ + -73.438836, + 45.474314 + ], + [ + -73.43909, + 45.474175 + ], + [ + -73.440044, + 45.473644 + ], + [ + -73.440381, + 45.473457 + ], + [ + -73.440504, + 45.473389 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.440904, + 45.473168 + ], + [ + -73.441015, + 45.473108 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.442499, + 45.472062 + ], + [ + -73.442653, + 45.471954 + ], + [ + -73.444466, + 45.470668 + ], + [ + -73.444558, + 45.470603 + ], + [ + -73.444669, + 45.470524 + ], + [ + -73.445328, + 45.470057 + ], + [ + -73.445338, + 45.470052 + ], + [ + -73.445622, + 45.469854 + ], + [ + -73.446091, + 45.469543 + ], + [ + -73.446353, + 45.469369 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.447066, + 45.468996 + ], + [ + -73.4474, + 45.468829 + ], + [ + -73.447822, + 45.468645 + ], + [ + -73.448427, + 45.468407 + ], + [ + -73.449383, + 45.468079 + ], + [ + -73.44971, + 45.467968 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450233, + 45.467787 + ], + [ + -73.451014, + 45.467517 + ], + [ + -73.451685, + 45.467271 + ], + [ + -73.451729, + 45.467255 + ], + [ + -73.451774, + 45.467238 + ], + [ + -73.452515, + 45.466982 + ], + [ + -73.452657, + 45.466933 + ], + [ + -73.453014, + 45.466803 + ], + [ + -73.45314, + 45.466749 + ], + [ + -73.453548, + 45.466537 + ], + [ + -73.453946, + 45.466304 + ], + [ + -73.45468, + 45.465796 + ], + [ + -73.454693, + 45.465786 + ], + [ + -73.45516, + 45.46545 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.455952, + 45.465079 + ], + [ + -73.456078, + 45.465023 + ], + [ + -73.456262, + 45.464907 + ], + [ + -73.456407, + 45.464824 + ], + [ + -73.456567, + 45.464772 + ], + [ + -73.456717, + 45.464744 + ], + [ + -73.456888, + 45.464733 + ], + [ + -73.457035, + 45.464719 + ], + [ + -73.45718, + 45.464674 + ], + [ + -73.457301, + 45.4646 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.457995, + 45.464902 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.458717, + 45.465433 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.460073, + 45.466412 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.460554, + 45.466805 + ], + [ + -73.460661, + 45.466886 + ], + [ + -73.461028, + 45.467148 + ], + [ + -73.46125, + 45.467305 + ], + [ + -73.461806, + 45.46771 + ], + [ + -73.461874, + 45.46776 + ], + [ + -73.461978, + 45.467836 + ], + [ + -73.462611, + 45.468268 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.464665, + 45.468237 + ], + [ + -73.465193, + 45.468284 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.468602, + 45.466372 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469041, + 45.466263 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469319, + 45.467991 + ], + [ + -73.469043, + 45.467983 + ], + [ + -73.468598, + 45.467969 + ], + [ + -73.468434, + 45.467978 + ], + [ + -73.467926, + 45.468045 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.46758, + 45.467757 + ], + [ + -73.467357, + 45.467296 + ], + [ + -73.467335, + 45.467098 + ], + [ + -73.467287, + 45.466921 + ], + [ + -73.46724, + 45.46679 + ], + [ + -73.467201, + 45.466621 + ], + [ + -73.467171, + 45.466457 + ], + [ + -73.467168, + 45.466361 + ], + [ + -73.467171, + 45.466266 + ], + [ + -73.46719, + 45.46616 + ], + [ + -73.467233, + 45.466051 + ], + [ + -73.467286, + 45.465947 + ], + [ + -73.467286, + 45.465946 + ], + [ + -73.467347, + 45.465852 + ], + [ + -73.46743, + 45.465768 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467565, + 45.465647 + ], + [ + -73.467708, + 45.465556 + ], + [ + -73.467899, + 45.465442 + ], + [ + -73.46805, + 45.465387 + ], + [ + -73.468287, + 45.465321 + ], + [ + -73.468514, + 45.465288 + ], + [ + -73.468859, + 45.465256 + ], + [ + -73.469207, + 45.465245 + ], + [ + -73.471824, + 45.46534 + ], + [ + -73.47278, + 45.465351 + ], + [ + -73.473923, + 45.465346 + ], + [ + -73.474792, + 45.465284 + ], + [ + -73.476448, + 45.465339 + ], + [ + -73.478069, + 45.465419 + ], + [ + -73.47931, + 45.465481 + ], + [ + -73.480681, + 45.465584 + ], + [ + -73.481658, + 45.465665 + ], + [ + -73.483804, + 45.465854 + ], + [ + -73.485886, + 45.466123 + ], + [ + -73.488038, + 45.466444 + ], + [ + -73.489088, + 45.466602 + ], + [ + -73.491585, + 45.46694 + ], + [ + -73.494707, + 45.467307 + ], + [ + -73.494917, + 45.467332 + ], + [ + -73.494999, + 45.467342 + ], + [ + -73.497318, + 45.467635 + ], + [ + -73.501976, + 45.468162 + ], + [ + -73.50546, + 45.468524 + ], + [ + -73.508994, + 45.468874 + ], + [ + -73.510795, + 45.469064 + ], + [ + -73.516615, + 45.469606 + ], + [ + -73.520513, + 45.469901 + ], + [ + -73.524263, + 45.470138 + ], + [ + -73.526895, + 45.470234 + ], + [ + -73.536203, + 45.470502 + ], + [ + -73.537479, + 45.470611 + ], + [ + -73.540035, + 45.470737 + ], + [ + -73.540574, + 45.470754 + ], + [ + -73.541689, + 45.470806 + ], + [ + -73.54236, + 45.470938 + ], + [ + -73.542685, + 45.471019 + ], + [ + -73.543056, + 45.471172 + ], + [ + -73.543235, + 45.471297 + ], + [ + -73.543427, + 45.47153 + ], + [ + -73.543495, + 45.471781 + ], + [ + -73.543487, + 45.471977 + ], + [ + -73.543374, + 45.472246 + ], + [ + -73.543123, + 45.472648 + ], + [ + -73.543053, + 45.472745 + ], + [ + -73.543034, + 45.472772 + ], + [ + -73.543013, + 45.472801 + ], + [ + -73.542473, + 45.473549 + ], + [ + -73.542275, + 45.473832 + ], + [ + -73.542255, + 45.473861 + ], + [ + -73.542175, + 45.473976 + ], + [ + -73.542016, + 45.474229 + ], + [ + -73.541794, + 45.474618 + ], + [ + -73.541458, + 45.475221 + ], + [ + -73.541094, + 45.47588 + ], + [ + -73.540722, + 45.476557 + ], + [ + -73.540393, + 45.477154 + ], + [ + -73.540141, + 45.477612 + ], + [ + -73.539989, + 45.477937 + ], + [ + -73.539912, + 45.478117 + ], + [ + -73.53962, + 45.478792 + ], + [ + -73.539453, + 45.479242 + ], + [ + -73.539011, + 45.480452 + ], + [ + -73.538771, + 45.481137 + ], + [ + -73.538372, + 45.4823 + ], + [ + -73.537796, + 45.483909 + ], + [ + -73.537682, + 45.484235 + ], + [ + -73.537533, + 45.484742 + ], + [ + -73.537501, + 45.485252 + ], + [ + -73.537565, + 45.485765 + ], + [ + -73.537725, + 45.486206 + ], + [ + -73.537953, + 45.486613 + ], + [ + -73.538211, + 45.486968 + ], + [ + -73.538564, + 45.487319 + ], + [ + -73.538991, + 45.48766 + ], + [ + -73.539413, + 45.487933 + ], + [ + -73.540409, + 45.488352 + ], + [ + -73.540999, + 45.488508 + ], + [ + -73.545779, + 45.489431 + ], + [ + -73.547415, + 45.489732 + ], + [ + -73.548107, + 45.48986 + ], + [ + -73.549549, + 45.490154 + ], + [ + -73.549968, + 45.490239 + ], + [ + -73.550646, + 45.490459 + ], + [ + -73.551261, + 45.490742 + ], + [ + -73.55163, + 45.490924 + ], + [ + -73.551996, + 45.491154 + ], + [ + -73.552466, + 45.491495 + ], + [ + -73.552812, + 45.491812 + ], + [ + -73.553225, + 45.492293 + ], + [ + -73.553459, + 45.492647 + ], + [ + -73.553701, + 45.493121 + ], + [ + -73.553714, + 45.493155 + ], + [ + -73.554005, + 45.493935 + ], + [ + -73.554229, + 45.494495 + ], + [ + -73.55441, + 45.494962 + ], + [ + -73.554709, + 45.495574 + ], + [ + -73.554963, + 45.495825 + ], + [ + -73.555225, + 45.496022 + ], + [ + -73.555665, + 45.496222 + ], + [ + -73.557268, + 45.496821 + ], + [ + -73.557934, + 45.497074 + ], + [ + -73.558511, + 45.497291 + ], + [ + -73.558754, + 45.497382 + ], + [ + -73.559665, + 45.497799 + ], + [ + -73.56055, + 45.498258 + ], + [ + -73.561247, + 45.498577 + ], + [ + -73.561574, + 45.498701 + ], + [ + -73.561917, + 45.498838 + ], + [ + -73.562165, + 45.49894 + ], + [ + -73.562545, + 45.499119 + ], + [ + -73.562571, + 45.499093 + ], + [ + -73.562654, + 45.499004 + ], + [ + -73.563341, + 45.498281 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.56431, + 45.497835 + ], + [ + -73.565142, + 45.498217 + ], + [ + -73.565601, + 45.498443 + ], + [ + -73.565748, + 45.49831 + ], + [ + -73.565849, + 45.498292 + ], + [ + -73.566051, + 45.498359 + ], + [ + -73.566361, + 45.498471 + ], + [ + -73.566492, + 45.498485 + ], + [ + -73.566611, + 45.498345 + ] + ] + }, + "id": 144, + "properties": { + "id": "cd2bcdae-2c3f-4989-a98b-9f57338e5dc9", + "data": { + "gtfs": { + "shape_id": "60_1_A" + }, + "segments": [ + { + "distanceMeters": 388, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 1955, + "travelTimeSeconds": 221 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 61, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 82, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 304, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 424, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 344, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 343, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 548, + "travelTimeSeconds": 101 + }, + { + "distanceMeters": 10798, + "travelTimeSeconds": 840 + }, + { + "distanceMeters": 830, + "travelTimeSeconds": 540 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 300, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 22558, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 14216.124465200928, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.52, + "travelTimeWithoutDwellTimesSeconds": 3000, + "operatingTimeWithLayoverTimeSeconds": 3300, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3000, + "operatingSpeedWithLayoverMetersPerSecond": 6.84, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.52 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "71f7bbc9-363a-40ba-86f7-7f9ec638da55", + "f20e2154-4487-4d25-8e73-57adbf7414bd", + "ff0214aa-5a67-4237-87c2-863aa17e8087", + "6765611d-305b-41e3-b519-b65e608494ba", + "b20c17a3-277e-418e-90be-8f8d32918ba9", + "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", + "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", + "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", + "00ed067b-7627-492d-ac0f-5d03bd3b185c", + "dc630e4d-102e-48b9-8b4a-920cafc01d4a", + "d2cca46c-df28-490b-b5de-9bc99956bc15", + "aab8672e-86c9-4a43-9806-f5135dc02b4e", + "50ca3159-13cc-4149-b07f-8267a31166e3", + "590769f9-bd2c-482c-8bd5-e3724936b683", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "78262195-7c3a-4ed5-81d8-a33c906e3099", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", + "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", + "8131cbf3-211d-4b69-adcb-9af688489a49", + "e865e27f-7453-42b2-9745-a8e5425a0276", + "0e293c4f-51c2-4ecd-9469-442389cb7915", + "71881b96-39d5-48ea-9242-5e05ded39cda", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "46c30d80-c93e-497b-a096-3a7c13e3723f", + "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", + "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "4fc83229-a15e-48e1-aa4f-fae0073dacf9", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "461a5d33-406e-481a-b773-6e450c48b670", + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" + ], + "stops": [], + "line_id": "41820b50-a095-40c0-8d54-449e5a8d8c41", + "segments": [ + 0, + 9, + 51, + 57, + 64, + 72, + 75, + 80, + 83, + 87, + 100, + 109, + 111, + 113, + 118, + 121, + 124, + 127, + 136, + 143, + 148, + 150, + 160, + 169, + 173, + 181, + 187, + 192, + 196, + 201, + 208, + 215, + 221, + 240, + 242, + 249, + 264, + 289, + 434 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 144, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469107, + 45.46587 + ], + [ + -73.469152, + 45.465801 + ], + [ + -73.469114, + 45.465711 + ], + [ + -73.469034, + 45.465669 + ], + [ + -73.468913, + 45.46567 + ], + [ + -73.468751, + 45.465752 + ], + [ + -73.468452, + 45.465865 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466568, + 45.466141 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465592, + 45.468211 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.46363, + 45.4683 + ], + [ + -73.463472, + 45.468395 + ], + [ + -73.463397, + 45.468431 + ], + [ + -73.463306, + 45.468449 + ], + [ + -73.463219, + 45.468458 + ], + [ + -73.463124, + 45.468449 + ], + [ + -73.463037, + 45.468413 + ], + [ + -73.462702, + 45.468201 + ], + [ + -73.462688, + 45.468192 + ], + [ + -73.462471, + 45.468057 + ], + [ + -73.462195, + 45.467872 + ], + [ + -73.462011, + 45.46774 + ], + [ + -73.461894, + 45.467656 + ], + [ + -73.461788, + 45.46758 + ], + [ + -73.46133, + 45.467251 + ], + [ + -73.461109, + 45.467094 + ], + [ + -73.460905, + 45.466945 + ], + [ + -73.460722, + 45.466815 + ], + [ + -73.460722, + 45.466814 + ], + [ + -73.460629, + 45.466751 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.458929, + 45.465587 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457079, + 45.464307 + ], + [ + -73.45658, + 45.463947 + ], + [ + -73.45655, + 45.463924 + ], + [ + -73.455675, + 45.463282 + ], + [ + -73.454797, + 45.462637 + ], + [ + -73.454278, + 45.462276 + ], + [ + -73.454092, + 45.462406 + ], + [ + -73.454017, + 45.462437 + ], + [ + -73.453888, + 45.462462 + ], + [ + -73.453729, + 45.462455 + ], + [ + -73.453553, + 45.462428 + ], + [ + -73.453343, + 45.462373 + ], + [ + -73.453161, + 45.462302 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.452835, + 45.462344 + ], + [ + -73.452819, + 45.462371 + ], + [ + -73.452775, + 45.462447 + ], + [ + -73.452703, + 45.4626 + ], + [ + -73.452686, + 45.462652 + ], + [ + -73.452663, + 45.462722 + ], + [ + -73.452634, + 45.462879 + ], + [ + -73.45263, + 45.463001 + ], + [ + -73.452662, + 45.463158 + ], + [ + -73.452721, + 45.463379 + ], + [ + -73.452802, + 45.463536 + ], + [ + -73.452912, + 45.463662 + ], + [ + -73.453261, + 45.463932 + ], + [ + -73.453531, + 45.46413 + ], + [ + -73.453617, + 45.464193 + ], + [ + -73.453971, + 45.464449 + ], + [ + -73.45432, + 45.464702 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.454657, + 45.465622 + ], + [ + -73.45456, + 45.465692 + ], + [ + -73.453819, + 45.466205 + ], + [ + -73.453432, + 45.466434 + ], + [ + -73.453035, + 45.466641 + ], + [ + -73.452922, + 45.46669 + ], + [ + -73.452777, + 45.466753 + ], + [ + -73.452589, + 45.466834 + ], + [ + -73.451705, + 45.467139 + ], + [ + -73.451627, + 45.467166 + ], + [ + -73.45158, + 45.467183 + ], + [ + -73.451006, + 45.467381 + ], + [ + -73.450937, + 45.467405 + ], + [ + -73.450156, + 45.467679 + ], + [ + -73.449888, + 45.467769 + ], + [ + -73.449338, + 45.467948 + ], + [ + -73.44837, + 45.46829 + ], + [ + -73.447748, + 45.468524 + ], + [ + -73.447289, + 45.468721 + ], + [ + -73.446429, + 45.469167 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445905, + 45.469485 + ], + [ + -73.445671, + 45.469643 + ], + [ + -73.445475, + 45.469778 + ], + [ + -73.445396, + 45.469832 + ], + [ + -73.445298, + 45.469899 + ], + [ + -73.444328, + 45.470583 + ], + [ + -73.444072, + 45.470764 + ], + [ + -73.442654, + 45.471764 + ], + [ + -73.442644, + 45.471771 + ], + [ + -73.442519, + 45.471859 + ], + [ + -73.441942, + 45.47227 + ], + [ + -73.441018, + 45.472928 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.440777, + 45.473082 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.439918, + 45.473559 + ], + [ + -73.438731, + 45.47422 + ], + [ + -73.438304, + 45.474435 + ], + [ + -73.438265, + 45.474453 + ], + [ + -73.437984, + 45.474579 + ], + [ + -73.437774, + 45.474669 + ], + [ + -73.437493, + 45.474781 + ], + [ + -73.436979, + 45.47497 + ], + [ + -73.436441, + 45.475136 + ], + [ + -73.43565, + 45.475338 + ], + [ + -73.435354, + 45.475414 + ], + [ + -73.435246, + 45.475441 + ], + [ + -73.434371, + 45.475675 + ], + [ + -73.43213, + 45.476249 + ], + [ + -73.430984, + 45.476543 + ], + [ + -73.430437, + 45.476683 + ], + [ + -73.430219, + 45.476739 + ], + [ + -73.43007, + 45.476775 + ], + [ + -73.429697, + 45.476873 + ], + [ + -73.429193, + 45.477005 + ], + [ + -73.428358, + 45.477224 + ], + [ + -73.427857, + 45.477363 + ], + [ + -73.427526, + 45.477457 + ], + [ + -73.427221, + 45.477556 + ], + [ + -73.427144, + 45.477583 + ], + [ + -73.426989, + 45.477637 + ], + [ + -73.426493, + 45.477825 + ], + [ + -73.426135, + 45.477978 + ], + [ + -73.425662, + 45.478198 + ], + [ + -73.425284, + 45.478387 + ], + [ + -73.424884, + 45.478612 + ], + [ + -73.424494, + 45.47885 + ], + [ + -73.424258, + 45.479012 + ], + [ + -73.423721, + 45.479389 + ], + [ + -73.423507, + 45.479553 + ], + [ + -73.423421, + 45.479618 + ], + [ + -73.421124, + 45.481311 + ], + [ + -73.421017, + 45.481389 + ], + [ + -73.419775, + 45.482315 + ], + [ + -73.419122, + 45.482809 + ], + [ + -73.418378, + 45.483361 + ], + [ + -73.417919, + 45.483709 + ], + [ + -73.417514, + 45.484019 + ], + [ + -73.417494, + 45.484034 + ], + [ + -73.416526, + 45.484761 + ], + [ + -73.416059, + 45.485134 + ], + [ + -73.415863, + 45.485305 + ], + [ + -73.415534, + 45.485624 + ], + [ + -73.415528, + 45.48563 + ], + [ + -73.415347, + 45.485822 + ], + [ + -73.41509, + 45.486114 + ], + [ + -73.414917, + 45.486334 + ], + [ + -73.41475, + 45.486555 + ], + [ + -73.414412, + 45.487013 + ], + [ + -73.41409, + 45.487458 + ], + [ + -73.413179, + 45.48875 + ], + [ + -73.413119, + 45.488834 + ], + [ + -73.413049, + 45.488947 + ], + [ + -73.411857, + 45.490612 + ], + [ + -73.411377, + 45.491281 + ], + [ + -73.4113, + 45.491389 + ], + [ + -73.410804, + 45.492083 + ], + [ + -73.410177, + 45.492961 + ], + [ + -73.409729, + 45.493588 + ], + [ + -73.409634, + 45.493716 + ], + [ + -73.409271, + 45.494208 + ], + [ + -73.409075, + 45.494472 + ], + [ + -73.409048, + 45.494509 + ], + [ + -73.408825, + 45.494811 + ], + [ + -73.408748, + 45.494972 + ], + [ + -73.408585, + 45.495202 + ], + [ + -73.408395, + 45.495466 + ], + [ + -73.408074, + 45.495912 + ], + [ + -73.407847, + 45.49623 + ], + [ + -73.407762, + 45.496348 + ], + [ + -73.407636, + 45.496526 + ], + [ + -73.407544, + 45.496654 + ], + [ + -73.40725, + 45.497068 + ], + [ + -73.406795, + 45.497708 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.406288, + 45.49843 + ], + [ + -73.406193, + 45.498579 + ], + [ + -73.406192, + 45.498581 + ], + [ + -73.406163, + 45.49864 + ], + [ + -73.405911, + 45.499145 + ], + [ + -73.405493, + 45.499995 + ], + [ + -73.405383, + 45.500198 + ], + [ + -73.405251, + 45.500369 + ], + [ + -73.405082, + 45.500567 + ], + [ + -73.405029, + 45.500617 + ], + [ + -73.404894, + 45.500746 + ], + [ + -73.404658, + 45.500926 + ], + [ + -73.404439, + 45.50107 + ], + [ + -73.404275, + 45.501164 + ], + [ + -73.404095, + 45.501254 + ], + [ + -73.403728, + 45.501411 + ], + [ + -73.403505, + 45.501483 + ], + [ + -73.40323, + 45.501557 + ], + [ + -73.403207, + 45.501564 + ], + [ + -73.402929, + 45.501627 + ], + [ + -73.402747, + 45.501658 + ], + [ + -73.402456, + 45.501689 + ], + [ + -73.401996, + 45.50172 + ], + [ + -73.401158, + 45.501773 + ], + [ + -73.401007, + 45.501782 + ], + [ + -73.399341, + 45.501884 + ], + [ + -73.399355, + 45.501992 + ], + [ + -73.399389, + 45.50225 + ], + [ + -73.399401, + 45.502338 + ], + [ + -73.399417, + 45.50246 + ], + [ + -73.399441, + 45.502676 + ], + [ + -73.399508, + 45.503131 + ], + [ + -73.399524, + 45.503241 + ], + [ + -73.399542, + 45.50336 + ], + [ + -73.399657, + 45.504175 + ], + [ + -73.399715, + 45.5046 + ], + [ + -73.399729, + 45.504706 + ], + [ + -73.39976, + 45.505156 + ], + [ + -73.399787, + 45.505322 + ], + [ + -73.39982, + 45.505426 + ], + [ + -73.399886, + 45.505552 + ], + [ + -73.399949, + 45.505664 + ], + [ + -73.400043, + 45.505783 + ], + [ + -73.400052, + 45.505795 + ], + [ + -73.400152, + 45.505885 + ], + [ + -73.399985, + 45.50597 + ], + [ + -73.399802, + 45.506078 + ], + [ + -73.399379, + 45.50637 + ], + [ + -73.399188, + 45.506676 + ], + [ + -73.39914, + 45.506797 + ], + [ + -73.399138, + 45.506811 + ], + [ + -73.399117, + 45.50695 + ], + [ + -73.399108, + 45.507031 + ], + [ + -73.399133, + 45.507198 + ], + [ + -73.399213, + 45.507801 + ], + [ + -73.399228, + 45.507945 + ], + [ + -73.399281, + 45.508358 + ], + [ + -73.399294, + 45.508462 + ], + [ + -73.399352, + 45.508899 + ], + [ + -73.399432, + 45.509485 + ], + [ + -73.399448, + 45.509601 + ], + [ + -73.399031, + 45.509629 + ], + [ + -73.395527, + 45.509872 + ], + [ + -73.394199, + 45.510028 + ], + [ + -73.394181, + 45.510028 + ], + [ + -73.393813, + 45.510063 + ], + [ + -73.393726, + 45.510072 + ], + [ + -73.393621, + 45.510086 + ], + [ + -73.393167, + 45.510108 + ], + [ + -73.392652, + 45.510134 + ], + [ + -73.392204, + 45.510161 + ], + [ + -73.391524, + 45.510196 + ], + [ + -73.39086, + 45.510227 + ], + [ + -73.38988, + 45.510258 + ], + [ + -73.388662, + 45.510288 + ], + [ + -73.387775, + 45.510287 + ], + [ + -73.386235, + 45.510353 + ], + [ + -73.385917, + 45.510362 + ], + [ + -73.385295, + 45.510379 + ], + [ + -73.384919, + 45.510388 + ], + [ + -73.38478, + 45.510388 + ], + [ + -73.384446, + 45.510311 + ], + [ + -73.383925, + 45.510283 + ], + [ + -73.383581, + 45.510269 + ], + [ + -73.383401, + 45.510242 + ], + [ + -73.382986, + 45.510188 + ], + [ + -73.382978, + 45.510188 + ], + [ + -73.382559, + 45.510111 + ], + [ + -73.381159, + 45.509898 + ], + [ + -73.380887, + 45.509763 + ], + [ + -73.38076, + 45.509682 + ], + [ + -73.380689, + 45.509601 + ], + [ + -73.380643, + 45.509506 + ], + [ + -73.380639, + 45.509412 + ], + [ + -73.380633, + 45.509322 + ], + [ + -73.380641, + 45.509218 + ], + [ + -73.380743, + 45.509009 + ], + [ + -73.380768, + 45.508957 + ], + [ + -73.38135, + 45.507922 + ], + [ + -73.381389, + 45.507851 + ], + [ + -73.381468, + 45.507752 + ], + [ + -73.381562, + 45.507572 + ], + [ + -73.381667, + 45.507356 + ], + [ + -73.381733, + 45.507226 + ], + [ + -73.381816, + 45.507051 + ], + [ + -73.381935, + 45.506785 + ], + [ + -73.382054, + 45.506552 + ], + [ + -73.382181, + 45.506291 + ], + [ + -73.382207, + 45.50624 + ], + [ + -73.382294, + 45.50607 + ], + [ + -73.382297, + 45.506061 + ], + [ + -73.382427, + 45.506097 + ], + [ + -73.384621, + 45.506625 + ] + ] + }, + "id": 145, + "properties": { + "id": "ea2a6fb9-0518-4dec-b40d-e7c6c83675cb", + "data": { + "gtfs": { + "shape_id": "60_2_R" + }, + "segments": [ + { + "distanceMeters": 673, + "travelTimeSeconds": 99 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 433, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 415, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 1697, + "travelTimeSeconds": 279 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 35 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11622, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7973.128099927979, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.45, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 6.68, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.45 + }, + "mode": "bus", + "name": "Promenades St-Bruno", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "b6dfeeab-9981-4db8-9a90-2e14691bf516", + "bd9b4c12-08ed-4715-ae67-eb179ed7f974", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "ff779c9a-cd83-463a-8d0c-a93f3584a187", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", + "c8919560-2bb2-4063-8184-8e6c296badbe", + "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", + "0e293c4f-51c2-4ecd-9469-442389cb7915", + "e865e27f-7453-42b2-9745-a8e5425a0276", + "f7218298-f862-4f68-aabe-7a0d51011bc1", + "7f82f5fb-e61e-43a9-957c-0c400fd3ecbd", + "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "78262195-7c3a-4ed5-81d8-a33c906e3099", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "d1cd707b-8ed5-4d1d-b1cb-7633cade451b", + "590769f9-bd2c-482c-8bd5-e3724936b683", + "3e90658d-8898-49d9-be57-5b29936d4a9e", + "aab8672e-86c9-4a43-9806-f5135dc02b4e", + "7414010b-fe1f-4d77-8cdd-701cc437e73a", + "dc630e4d-102e-48b9-8b4a-920cafc01d4a", + "00ed067b-7627-492d-ac0f-5d03bd3b185c", + "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", + "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", + "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", + "b20c17a3-277e-418e-90be-8f8d32918ba9", + "6765611d-305b-41e3-b519-b65e608494ba", + "ff0214aa-5a67-4237-87c2-863aa17e8087", + "c22b0880-b3ca-4797-aa47-0cda85146514", + "a6d38dbd-ef0c-4533-9d2c-7149d1941078", + "c4c03f6a-b2dc-4fb8-87cd-df1a4417beae", + "71f7bbc9-363a-40ba-86f7-7f9ec638da55" + ], + "stops": [], + "line_id": "41820b50-a095-40c0-8d54-449e5a8d8c41", + "segments": [ + 0, + 31, + 52, + 58, + 62, + 68, + 85, + 94, + 99, + 105, + 110, + 118, + 126, + 127, + 131, + 138, + 145, + 150, + 159, + 169, + 171, + 178, + 183, + 190, + 194, + 201, + 206, + 210, + 213, + 217, + 224, + 232, + 238, + 243, + 247, + 250, + 257, + 265, + 271, + 274, + 313, + 323 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 145, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.566611, + 45.498345 + ], + [ + -73.566738, + 45.498195 + ], + [ + -73.566628, + 45.49808 + ], + [ + -73.566306, + 45.497931 + ], + [ + -73.566253, + 45.497841 + ], + [ + -73.56638, + 45.497699 + ], + [ + -73.566016, + 45.497523 + ], + [ + -73.564691, + 45.496892 + ], + [ + -73.563974, + 45.496566 + ], + [ + -73.562701, + 45.495919 + ], + [ + -73.562651, + 45.496018 + ], + [ + -73.562646, + 45.496027 + ], + [ + -73.562481, + 45.496317 + ], + [ + -73.562367, + 45.496479 + ], + [ + -73.562274, + 45.496658 + ], + [ + -73.562038, + 45.497108 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.561446, + 45.497988 + ], + [ + -73.561033, + 45.497765 + ], + [ + -73.560139, + 45.497347 + ], + [ + -73.559235, + 45.49696 + ], + [ + -73.55917, + 45.496938 + ], + [ + -73.558356, + 45.496631 + ], + [ + -73.558149, + 45.496557 + ], + [ + -73.557604, + 45.496364 + ], + [ + -73.556782, + 45.49606 + ], + [ + -73.555745, + 45.495673 + ], + [ + -73.555351, + 45.495512 + ], + [ + -73.555133, + 45.495401 + ], + [ + -73.554916, + 45.495262 + ], + [ + -73.554768, + 45.495125 + ], + [ + -73.55465, + 45.494994 + ], + [ + -73.553944, + 45.493258 + ], + [ + -73.553818, + 45.492971 + ], + [ + -73.553465, + 45.492338 + ], + [ + -73.552977, + 45.491759 + ], + [ + -73.552502, + 45.491344 + ], + [ + -73.551956, + 45.490962 + ], + [ + -73.551651, + 45.490791 + ], + [ + -73.551074, + 45.490513 + ], + [ + -73.550682, + 45.490367 + ], + [ + -73.550312, + 45.490228 + ], + [ + -73.54956, + 45.490034 + ], + [ + -73.548355, + 45.489798 + ], + [ + -73.542648, + 45.488704 + ], + [ + -73.541878, + 45.488554 + ], + [ + -73.541083, + 45.488397 + ], + [ + -73.540636, + 45.488282 + ], + [ + -73.540145, + 45.488119 + ], + [ + -73.539582, + 45.48786 + ], + [ + -73.539239, + 45.487663 + ], + [ + -73.538946, + 45.487462 + ], + [ + -73.538619, + 45.487192 + ], + [ + -73.538548, + 45.487117 + ], + [ + -73.538304, + 45.486863 + ], + [ + -73.538089, + 45.486564 + ], + [ + -73.537862, + 45.486139 + ], + [ + -73.537796, + 45.485958 + ], + [ + -73.537731, + 45.485785 + ], + [ + -73.53767, + 45.485461 + ], + [ + -73.537646, + 45.485264 + ], + [ + -73.537653, + 45.484914 + ], + [ + -73.537707, + 45.484604 + ], + [ + -73.537881, + 45.484168 + ], + [ + -73.537968, + 45.483893 + ], + [ + -73.538058, + 45.483623 + ], + [ + -73.539557, + 45.479354 + ], + [ + -73.53982, + 45.478652 + ], + [ + -73.540179, + 45.47782 + ], + [ + -73.540481, + 45.477177 + ], + [ + -73.540578, + 45.477027 + ], + [ + -73.540928, + 45.476409 + ], + [ + -73.5413, + 45.475732 + ], + [ + -73.541747, + 45.474937 + ], + [ + -73.542136, + 45.474264 + ], + [ + -73.542539, + 45.47363 + ], + [ + -73.543159, + 45.472786 + ], + [ + -73.543162, + 45.472781 + ], + [ + -73.5432, + 45.472729 + ], + [ + -73.543381, + 45.472482 + ], + [ + -73.543908, + 45.471834 + ], + [ + -73.544604, + 45.471016 + ], + [ + -73.54479, + 45.470824 + ], + [ + -73.544929, + 45.470679 + ], + [ + -73.54509, + 45.470477 + ], + [ + -73.545159, + 45.470391 + ], + [ + -73.545162, + 45.470289 + ], + [ + -73.54518, + 45.470102 + ], + [ + -73.54513, + 45.469912 + ], + [ + -73.545032, + 45.469762 + ], + [ + -73.544829, + 45.469589 + ], + [ + -73.544396, + 45.469456 + ], + [ + -73.544223, + 45.469408 + ], + [ + -73.544, + 45.469414 + ], + [ + -73.54385, + 45.469436 + ], + [ + -73.543665, + 45.469485 + ], + [ + -73.543125, + 45.469658 + ], + [ + -73.542795, + 45.46978 + ], + [ + -73.542335, + 45.469915 + ], + [ + -73.542042, + 45.469974 + ], + [ + -73.541634, + 45.469988 + ], + [ + -73.538583, + 45.470121 + ], + [ + -73.536645, + 45.47012 + ], + [ + -73.534843, + 45.470106 + ], + [ + -73.531663, + 45.470044 + ], + [ + -73.528901, + 45.469979 + ], + [ + -73.525636, + 45.469864 + ], + [ + -73.520215, + 45.469565 + ], + [ + -73.516228, + 45.469261 + ], + [ + -73.50737, + 45.468395 + ], + [ + -73.501604, + 45.467786 + ], + [ + -73.499262, + 45.467514 + ], + [ + -73.493921, + 45.466881 + ], + [ + -73.491932, + 45.466645 + ], + [ + -73.489852, + 45.466348 + ], + [ + -73.489119, + 45.46624 + ], + [ + -73.489027, + 45.466226 + ], + [ + -73.486848, + 45.465931 + ], + [ + -73.485714, + 45.465782 + ], + [ + -73.482904, + 45.465439 + ], + [ + -73.482123, + 45.46537 + ], + [ + -73.479736, + 45.465191 + ], + [ + -73.47968, + 45.465187 + ], + [ + -73.478363, + 45.465119 + ], + [ + -73.477796, + 45.465089 + ], + [ + -73.475753, + 45.464994 + ], + [ + -73.474695, + 45.464942 + ], + [ + -73.474262, + 45.464921 + ], + [ + -73.474113, + 45.464916 + ], + [ + -73.473291, + 45.464882 + ], + [ + -73.472501, + 45.46485 + ], + [ + -73.471447, + 45.46476 + ], + [ + -73.469875, + 45.464616 + ], + [ + -73.469333, + 45.464554 + ], + [ + -73.46902, + 45.464515 + ], + [ + -73.468704, + 45.464452 + ], + [ + -73.468392, + 45.464367 + ], + [ + -73.468066, + 45.46424 + ], + [ + -73.467826, + 45.46409 + ], + [ + -73.467593, + 45.463944 + ], + [ + -73.467415, + 45.463833 + ], + [ + -73.467133, + 45.463667 + ], + [ + -73.466953, + 45.463591 + ], + [ + -73.466529, + 45.463529 + ], + [ + -73.466232, + 45.463594 + ], + [ + -73.466092, + 45.463623 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.468391, + 45.466363 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469044, + 45.466215 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466863, + 45.466735 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465538, + 45.468206 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.46363, + 45.4683 + ], + [ + -73.463472, + 45.468395 + ], + [ + -73.463397, + 45.468431 + ], + [ + -73.463306, + 45.468449 + ], + [ + -73.463219, + 45.468458 + ], + [ + -73.463124, + 45.468449 + ], + [ + -73.463037, + 45.468413 + ], + [ + -73.462702, + 45.468201 + ], + [ + -73.462471, + 45.468057 + ], + [ + -73.462195, + 45.467872 + ], + [ + -73.461982, + 45.467719 + ], + [ + -73.461894, + 45.467656 + ], + [ + -73.461788, + 45.46758 + ], + [ + -73.46133, + 45.467251 + ], + [ + -73.461109, + 45.467094 + ], + [ + -73.460905, + 45.466945 + ], + [ + -73.460722, + 45.466814 + ], + [ + -73.460693, + 45.466795 + ], + [ + -73.460629, + 45.466751 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.458902, + 45.465568 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457079, + 45.464307 + ], + [ + -73.456554, + 45.463927 + ], + [ + -73.45655, + 45.463924 + ], + [ + -73.455675, + 45.463282 + ], + [ + -73.454797, + 45.462637 + ], + [ + -73.454278, + 45.462276 + ], + [ + -73.454092, + 45.462406 + ], + [ + -73.454017, + 45.462437 + ], + [ + -73.453888, + 45.462462 + ], + [ + -73.453844, + 45.46246 + ], + [ + -73.453729, + 45.462455 + ], + [ + -73.453553, + 45.462428 + ], + [ + -73.453343, + 45.462373 + ], + [ + -73.453161, + 45.462302 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.452835, + 45.462344 + ], + [ + -73.452775, + 45.462447 + ], + [ + -73.452703, + 45.4626 + ], + [ + -73.452677, + 45.462677 + ], + [ + -73.452663, + 45.462722 + ], + [ + -73.452634, + 45.462879 + ], + [ + -73.45263, + 45.463001 + ], + [ + -73.452662, + 45.463158 + ], + [ + -73.452668, + 45.46318 + ], + [ + -73.452721, + 45.463379 + ], + [ + -73.452802, + 45.463536 + ], + [ + -73.452912, + 45.463662 + ], + [ + -73.453261, + 45.463932 + ], + [ + -73.453556, + 45.464148 + ], + [ + -73.453617, + 45.464193 + ], + [ + -73.453971, + 45.464449 + ], + [ + -73.45432, + 45.464702 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.454921, + 45.465432 + ], + [ + -73.454633, + 45.46564 + ], + [ + -73.45456, + 45.465692 + ], + [ + -73.453819, + 45.466205 + ], + [ + -73.453432, + 45.466434 + ], + [ + -73.453035, + 45.466641 + ], + [ + -73.452922, + 45.46669 + ], + [ + -73.452747, + 45.466765 + ], + [ + -73.452589, + 45.466834 + ], + [ + -73.451705, + 45.467139 + ], + [ + -73.451627, + 45.467166 + ], + [ + -73.45158, + 45.467183 + ], + [ + -73.450976, + 45.467391 + ], + [ + -73.450937, + 45.467405 + ], + [ + -73.450156, + 45.467679 + ], + [ + -73.449888, + 45.467769 + ], + [ + -73.449338, + 45.467948 + ], + [ + -73.44837, + 45.46829 + ], + [ + -73.447748, + 45.468524 + ], + [ + -73.447289, + 45.468721 + ], + [ + -73.446403, + 45.469181 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445905, + 45.469485 + ], + [ + -73.445671, + 45.469643 + ], + [ + -73.445475, + 45.469778 + ], + [ + -73.445396, + 45.469832 + ], + [ + -73.445298, + 45.469899 + ], + [ + -73.444328, + 45.470583 + ], + [ + -73.444049, + 45.470779 + ], + [ + -73.442644, + 45.471771 + ], + [ + -73.442632, + 45.471779 + ], + [ + -73.442519, + 45.471859 + ], + [ + -73.441942, + 45.47227 + ], + [ + -73.440996, + 45.472943 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.440777, + 45.473082 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.439918, + 45.473559 + ], + [ + -73.438731, + 45.47422 + ], + [ + -73.438304, + 45.474435 + ], + [ + -73.43824, + 45.474464 + ], + [ + -73.437984, + 45.474579 + ], + [ + -73.437774, + 45.474669 + ], + [ + -73.437493, + 45.474781 + ], + [ + -73.436979, + 45.47497 + ], + [ + -73.436441, + 45.475136 + ], + [ + -73.43565, + 45.475338 + ], + [ + -73.435327, + 45.475421 + ], + [ + -73.435246, + 45.475441 + ], + [ + -73.434371, + 45.475675 + ], + [ + -73.43213, + 45.476249 + ], + [ + -73.430984, + 45.476543 + ], + [ + -73.430412, + 45.476689 + ], + [ + -73.430219, + 45.476739 + ], + [ + -73.43007, + 45.476775 + ], + [ + -73.429697, + 45.476873 + ], + [ + -73.429193, + 45.477005 + ], + [ + -73.428358, + 45.477224 + ], + [ + -73.427857, + 45.477363 + ], + [ + -73.427526, + 45.477457 + ], + [ + -73.427221, + 45.477556 + ], + [ + -73.427121, + 45.477591 + ], + [ + -73.426989, + 45.477637 + ], + [ + -73.426493, + 45.477825 + ], + [ + -73.426135, + 45.477978 + ], + [ + -73.425662, + 45.478198 + ], + [ + -73.425284, + 45.478387 + ], + [ + -73.424884, + 45.478612 + ], + [ + -73.424494, + 45.47885 + ], + [ + -73.424258, + 45.479012 + ], + [ + -73.423721, + 45.479389 + ], + [ + -73.423491, + 45.479565 + ], + [ + -73.423421, + 45.479618 + ], + [ + -73.421108, + 45.481322 + ], + [ + -73.421017, + 45.481389 + ], + [ + -73.419775, + 45.482315 + ], + [ + -73.419122, + 45.482809 + ], + [ + -73.418378, + 45.483361 + ], + [ + -73.417919, + 45.483709 + ], + [ + -73.417514, + 45.484019 + ], + [ + -73.417479, + 45.484045 + ], + [ + -73.416526, + 45.484761 + ], + [ + -73.416059, + 45.485134 + ], + [ + -73.415863, + 45.485305 + ], + [ + -73.415534, + 45.485624 + ], + [ + -73.415516, + 45.485642 + ], + [ + -73.415347, + 45.485822 + ], + [ + -73.41509, + 45.486114 + ], + [ + -73.414917, + 45.486334 + ], + [ + -73.41475, + 45.486555 + ], + [ + -73.414412, + 45.487013 + ], + [ + -73.41409, + 45.487458 + ], + [ + -73.41317, + 45.488762 + ], + [ + -73.413119, + 45.488834 + ], + [ + -73.413049, + 45.488947 + ], + [ + -73.411857, + 45.490612 + ], + [ + -73.411369, + 45.491293 + ], + [ + -73.4113, + 45.491389 + ], + [ + -73.410804, + 45.492083 + ], + [ + -73.410177, + 45.492961 + ], + [ + -73.409729, + 45.493588 + ], + [ + -73.409634, + 45.493716 + ], + [ + -73.409271, + 45.494208 + ], + [ + -73.409068, + 45.494482 + ], + [ + -73.409048, + 45.494509 + ], + [ + -73.408825, + 45.494811 + ], + [ + -73.408748, + 45.494972 + ], + [ + -73.408585, + 45.495202 + ], + [ + -73.408388, + 45.495476 + ], + [ + -73.408074, + 45.495912 + ], + [ + -73.407847, + 45.49623 + ], + [ + -73.407762, + 45.496348 + ], + [ + -73.407629, + 45.496536 + ], + [ + -73.407544, + 45.496654 + ], + [ + -73.40725, + 45.497068 + ], + [ + -73.406789, + 45.497717 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.406288, + 45.49843 + ], + [ + -73.406193, + 45.498579 + ], + [ + -73.406188, + 45.49859 + ], + [ + -73.406163, + 45.49864 + ], + [ + -73.405911, + 45.499145 + ], + [ + -73.405493, + 45.499995 + ], + [ + -73.405383, + 45.500198 + ], + [ + -73.405251, + 45.500369 + ], + [ + -73.405082, + 45.500567 + ], + [ + -73.405021, + 45.500624 + ], + [ + -73.404894, + 45.500746 + ], + [ + -73.404658, + 45.500926 + ], + [ + -73.404439, + 45.50107 + ], + [ + -73.404275, + 45.501164 + ], + [ + -73.404095, + 45.501254 + ], + [ + -73.403728, + 45.501411 + ], + [ + -73.403505, + 45.501483 + ], + [ + -73.403218, + 45.501561 + ], + [ + -73.403207, + 45.501564 + ], + [ + -73.402929, + 45.501627 + ], + [ + -73.402747, + 45.501658 + ], + [ + -73.402456, + 45.501689 + ], + [ + -73.401996, + 45.50172 + ], + [ + -73.401146, + 45.501774 + ], + [ + -73.401007, + 45.501782 + ], + [ + -73.399341, + 45.501884 + ], + [ + -73.399355, + 45.501992 + ], + [ + -73.399389, + 45.50225 + ], + [ + -73.399402, + 45.502346 + ], + [ + -73.399417, + 45.50246 + ], + [ + -73.399441, + 45.502676 + ], + [ + -73.399508, + 45.503131 + ], + [ + -73.399525, + 45.503248 + ], + [ + -73.399542, + 45.50336 + ], + [ + -73.399657, + 45.504175 + ], + [ + -73.399716, + 45.504607 + ], + [ + -73.399729, + 45.504706 + ], + [ + -73.39976, + 45.505156 + ], + [ + -73.399787, + 45.505322 + ], + [ + -73.39982, + 45.505426 + ], + [ + -73.399886, + 45.505552 + ], + [ + -73.399949, + 45.505664 + ], + [ + -73.400048, + 45.505789 + ], + [ + -73.400052, + 45.505795 + ], + [ + -73.400152, + 45.505885 + ], + [ + -73.399985, + 45.50597 + ], + [ + -73.399802, + 45.506078 + ], + [ + -73.399379, + 45.50637 + ], + [ + -73.399188, + 45.506676 + ], + [ + -73.39914, + 45.506797 + ], + [ + -73.399137, + 45.506817 + ], + [ + -73.399117, + 45.50695 + ], + [ + -73.399108, + 45.507031 + ], + [ + -73.399133, + 45.507198 + ], + [ + -73.399213, + 45.507801 + ], + [ + -73.399228, + 45.507945 + ], + [ + -73.399281, + 45.508364 + ], + [ + -73.399294, + 45.508462 + ], + [ + -73.399352, + 45.508899 + ], + [ + -73.399433, + 45.50949 + ], + [ + -73.399448, + 45.509601 + ], + [ + -73.399031, + 45.509629 + ], + [ + -73.395527, + 45.509872 + ], + [ + -73.394199, + 45.510028 + ], + [ + -73.394181, + 45.510028 + ], + [ + -73.393813, + 45.510063 + ], + [ + -73.393726, + 45.510072 + ], + [ + -73.393621, + 45.510086 + ], + [ + -73.393167, + 45.510108 + ], + [ + -73.392652, + 45.510134 + ], + [ + -73.392204, + 45.510161 + ], + [ + -73.391524, + 45.510196 + ], + [ + -73.39086, + 45.510227 + ], + [ + -73.38988, + 45.510258 + ], + [ + -73.388662, + 45.510288 + ], + [ + -73.387775, + 45.510287 + ], + [ + -73.386235, + 45.510353 + ], + [ + -73.385917, + 45.510362 + ], + [ + -73.385295, + 45.510379 + ], + [ + -73.384919, + 45.510388 + ], + [ + -73.38478, + 45.510388 + ], + [ + -73.384446, + 45.510311 + ], + [ + -73.383925, + 45.510283 + ], + [ + -73.383581, + 45.510269 + ], + [ + -73.383401, + 45.510242 + ], + [ + -73.382986, + 45.510188 + ], + [ + -73.382978, + 45.510188 + ], + [ + -73.382559, + 45.510111 + ], + [ + -73.381159, + 45.509898 + ], + [ + -73.380887, + 45.509763 + ], + [ + -73.38076, + 45.509682 + ], + [ + -73.380689, + 45.509601 + ], + [ + -73.380643, + 45.509506 + ], + [ + -73.380639, + 45.509412 + ], + [ + -73.380633, + 45.509322 + ], + [ + -73.380641, + 45.509218 + ], + [ + -73.380743, + 45.509009 + ], + [ + -73.380768, + 45.508957 + ], + [ + -73.38135, + 45.507921 + ], + [ + -73.381389, + 45.507851 + ], + [ + -73.381468, + 45.507752 + ], + [ + -73.381562, + 45.507572 + ], + [ + -73.381667, + 45.507356 + ], + [ + -73.381733, + 45.507226 + ], + [ + -73.381816, + 45.507051 + ], + [ + -73.381935, + 45.506785 + ], + [ + -73.382054, + 45.506552 + ], + [ + -73.382181, + 45.506291 + ], + [ + -73.382207, + 45.50624 + ], + [ + -73.382294, + 45.50607 + ], + [ + -73.382297, + 45.506061 + ], + [ + -73.382427, + 45.506097 + ], + [ + -73.384621, + 45.506625 + ] + ] + }, + "id": 146, + "properties": { + "id": "40a77a53-08e9-4835-8b5a-7f2208f65c59", + "data": { + "gtfs": { + "shape_id": "60_1_R" + }, + "segments": [ + { + "distanceMeters": 1006, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 10885, + "travelTimeSeconds": 1080 + }, + { + "distanceMeters": 694, + "travelTimeSeconds": 118 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 433, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 415, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 1696, + "travelTimeSeconds": 239 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 30 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 288, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 23529, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 14216.124465200928, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.17, + "travelTimeWithoutDwellTimesSeconds": 2880, + "operatingTimeWithLayoverTimeSeconds": 3168, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2880, + "operatingSpeedWithLayoverMetersPerSecond": 7.43, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.17 + }, + "mode": "bus", + "name": "Promenades St-Bruno", + "color": "#A32638", + "nodes": [ + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", + "0f8ef5e7-ff7c-4097-8d8a-9727f12190ea", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "b6dfeeab-9981-4db8-9a90-2e14691bf516", + "bd9b4c12-08ed-4715-ae67-eb179ed7f974", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "ff779c9a-cd83-463a-8d0c-a93f3584a187", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", + "c8919560-2bb2-4063-8184-8e6c296badbe", + "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", + "0e293c4f-51c2-4ecd-9469-442389cb7915", + "e865e27f-7453-42b2-9745-a8e5425a0276", + "f7218298-f862-4f68-aabe-7a0d51011bc1", + "7f82f5fb-e61e-43a9-957c-0c400fd3ecbd", + "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "78262195-7c3a-4ed5-81d8-a33c906e3099", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "d1cd707b-8ed5-4d1d-b1cb-7633cade451b", + "590769f9-bd2c-482c-8bd5-e3724936b683", + "3e90658d-8898-49d9-be57-5b29936d4a9e", + "aab8672e-86c9-4a43-9806-f5135dc02b4e", + "7414010b-fe1f-4d77-8cdd-701cc437e73a", + "dc630e4d-102e-48b9-8b4a-920cafc01d4a", + "00ed067b-7627-492d-ac0f-5d03bd3b185c", + "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", + "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", + "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", + "b20c17a3-277e-418e-90be-8f8d32918ba9", + "6765611d-305b-41e3-b519-b65e608494ba", + "ff0214aa-5a67-4237-87c2-863aa17e8087", + "c22b0880-b3ca-4797-aa47-0cda85146514", + "a6d38dbd-ef0c-4533-9d2c-7149d1941078", + "c4c03f6a-b2dc-4fb8-87cd-df1a4417beae", + "71f7bbc9-363a-40ba-86f7-7f9ec638da55" + ], + "stops": [], + "line_id": "41820b50-a095-40c0-8d54-449e5a8d8c41", + "segments": [ + 0, + 23, + 173, + 201, + 221, + 228, + 231, + 237, + 254, + 264, + 270, + 276, + 281, + 289, + 297, + 299, + 302, + 309, + 316, + 321, + 330, + 340, + 342, + 349, + 354, + 361, + 365, + 372, + 377, + 381, + 384, + 388, + 395, + 403, + 409, + 414, + 418, + 421, + 428, + 436, + 442, + 445, + 484, + 494 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 146, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.453106, + 45.603884 + ], + [ + -73.453124, + 45.603897 + ], + [ + -73.453269, + 45.60401 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453904, + 45.604474 + ], + [ + -73.454133, + 45.604694 + ], + [ + -73.454539, + 45.605032 + ], + [ + -73.454917, + 45.605315 + ], + [ + -73.455171, + 45.605504 + ], + [ + -73.455782, + 45.605973 + ], + [ + -73.456001, + 45.606135 + ], + [ + -73.456106, + 45.606225 + ], + [ + -73.45638, + 45.606432 + ], + [ + -73.456447, + 45.606464 + ], + [ + -73.456464, + 45.606472 + ], + [ + -73.456606, + 45.606499 + ], + [ + -73.456615, + 45.606661 + ], + [ + -73.456615, + 45.606796 + ], + [ + -73.456613, + 45.606975 + ], + [ + -73.45661, + 45.607368 + ], + [ + -73.456599, + 45.607836 + ], + [ + -73.456595, + 45.608188 + ], + [ + -73.456594, + 45.608335 + ], + [ + -73.456582, + 45.60905 + ], + [ + -73.456558, + 45.609802 + ], + [ + -73.456543, + 45.610011 + ], + [ + -73.456534, + 45.610121 + ], + [ + -73.456537, + 45.610463 + ], + [ + -73.456508, + 45.610998 + ], + [ + -73.4565, + 45.611138 + ], + [ + -73.456491, + 45.611268 + ], + [ + -73.456473, + 45.611516 + ], + [ + -73.456454, + 45.611725 + ], + [ + -73.456449, + 45.611777 + ], + [ + -73.456429, + 45.612204 + ], + [ + -73.456403, + 45.612587 + ], + [ + -73.456367, + 45.613122 + ], + [ + -73.456346, + 45.613356 + ], + [ + -73.45632, + 45.613646 + ], + [ + -73.456315, + 45.613702 + ], + [ + -73.456295, + 45.613828 + ], + [ + -73.456125, + 45.615281 + ], + [ + -73.45606, + 45.615718 + ], + [ + -73.456015, + 45.616024 + ], + [ + -73.455984, + 45.616307 + ], + [ + -73.45596, + 45.616501 + ], + [ + -73.455915, + 45.616856 + ], + [ + -73.4559, + 45.616984 + ], + [ + -73.455888, + 45.617081 + ], + [ + -73.455879, + 45.617157 + ], + [ + -73.45581, + 45.617621 + ], + [ + -73.455762, + 45.617967 + ], + [ + -73.455729, + 45.618206 + ], + [ + -73.455676, + 45.618606 + ], + [ + -73.45562, + 45.619025 + ], + [ + -73.455571, + 45.619434 + ], + [ + -73.455487, + 45.620124 + ], + [ + -73.455479, + 45.620194 + ], + [ + -73.455459, + 45.620347 + ], + [ + -73.455364, + 45.621566 + ], + [ + -73.455352, + 45.621774 + ], + [ + -73.455345, + 45.621886 + ], + [ + -73.455228, + 45.623663 + ], + [ + -73.455175, + 45.624106 + ], + [ + -73.455153, + 45.624288 + ], + [ + -73.454435, + 45.626407 + ], + [ + -73.454319, + 45.626723 + ], + [ + -73.454243, + 45.626929 + ], + [ + -73.454024, + 45.62755 + ], + [ + -73.453881, + 45.627971 + ], + [ + -73.453834, + 45.628108 + ], + [ + -73.453601, + 45.628791 + ], + [ + -73.453393, + 45.629394 + ], + [ + -73.453358, + 45.629493 + ], + [ + -73.453315, + 45.629624 + ], + [ + -73.453257, + 45.629785 + ], + [ + -73.453011, + 45.630504 + ], + [ + -73.452942, + 45.630703 + ], + [ + -73.452778, + 45.631153 + ], + [ + -73.452686, + 45.631346 + ], + [ + -73.452502, + 45.631778 + ], + [ + -73.452319, + 45.632093 + ], + [ + -73.452094, + 45.632426 + ], + [ + -73.451791, + 45.632821 + ], + [ + -73.451773, + 45.632844 + ], + [ + -73.451693, + 45.632925 + ], + [ + -73.451614, + 45.633011 + ], + [ + -73.451195, + 45.633474 + ], + [ + -73.450679, + 45.634027 + ], + [ + -73.450136, + 45.634603 + ], + [ + -73.449542, + 45.635227 + ], + [ + -73.449434, + 45.63534 + ], + [ + -73.449285, + 45.635498 + ], + [ + -73.449067, + 45.635736 + ], + [ + -73.448723, + 45.636136 + ], + [ + -73.448535, + 45.636361 + ], + [ + -73.448252, + 45.636716 + ], + [ + -73.448132, + 45.636874 + ], + [ + -73.447882, + 45.637201 + ], + [ + -73.447778, + 45.637337 + ], + [ + -73.447634, + 45.637301 + ], + [ + -73.447384, + 45.637215 + ], + [ + -73.447064, + 45.637088 + ], + [ + -73.446874, + 45.637013 + ], + [ + -73.446777, + 45.636959 + ], + [ + -73.446639, + 45.63686 + ], + [ + -73.446407, + 45.636689 + ], + [ + -73.44625, + 45.636558 + ], + [ + -73.446134, + 45.636441 + ], + [ + -73.445951, + 45.636247 + ], + [ + -73.445769, + 45.636018 + ], + [ + -73.445712, + 45.635937 + ], + [ + -73.445634, + 45.635856 + ], + [ + -73.445562, + 45.635784 + ], + [ + -73.445466, + 45.635698 + ], + [ + -73.445268, + 45.635536 + ], + [ + -73.445251, + 45.635524 + ], + [ + -73.445104, + 45.635415 + ], + [ + -73.444715, + 45.635109 + ], + [ + -73.44467, + 45.635073 + ], + [ + -73.444422, + 45.63487 + ], + [ + -73.444148, + 45.634658 + ], + [ + -73.444049, + 45.634573 + ], + [ + -73.443845, + 45.634429 + ], + [ + -73.443417, + 45.63408 + ], + [ + -73.443242, + 45.633938 + ], + [ + -73.442909, + 45.633686 + ], + [ + -73.442563, + 45.633434 + ], + [ + -73.442416, + 45.633371 + ], + [ + -73.44208, + 45.633254 + ], + [ + -73.441599, + 45.633114 + ], + [ + -73.440871, + 45.632915 + ], + [ + -73.440824, + 45.632902 + ], + [ + -73.440392, + 45.632771 + ], + [ + -73.440856, + 45.631968 + ], + [ + -73.441271, + 45.631251 + ], + [ + -73.441456, + 45.630932 + ], + [ + -73.441684, + 45.63054 + ], + [ + -73.441866, + 45.630228 + ], + [ + -73.442088, + 45.629846 + ], + [ + -73.443114, + 45.62808 + ], + [ + -73.443242, + 45.627856 + ], + [ + -73.443605, + 45.627221 + ], + [ + -73.444022, + 45.626488 + ], + [ + -73.444047, + 45.626446 + ], + [ + -73.444573, + 45.625552 + ], + [ + -73.445344, + 45.624206 + ], + [ + -73.445387, + 45.624131 + ], + [ + -73.445586, + 45.623794 + ], + [ + -73.445824, + 45.623425 + ], + [ + -73.446146, + 45.622876 + ], + [ + -73.446829, + 45.62169 + ], + [ + -73.446834, + 45.62168 + ], + [ + -73.447011, + 45.621372 + ], + [ + -73.447396, + 45.620704 + ], + [ + -73.448364, + 45.619075 + ], + [ + -73.448491, + 45.618837 + ], + [ + -73.448637, + 45.61859 + ], + [ + -73.448711, + 45.618462 + ], + [ + -73.44919, + 45.617636 + ], + [ + -73.449409, + 45.617264 + ], + [ + -73.449512, + 45.617087 + ], + [ + -73.449827, + 45.616539 + ], + [ + -73.450142, + 45.615999 + ], + [ + -73.450551, + 45.61523 + ], + [ + -73.450783, + 45.614775 + ], + [ + -73.450957, + 45.614433 + ], + [ + -73.451219, + 45.613822 + ], + [ + -73.451496, + 45.613129 + ], + [ + -73.451588, + 45.612886 + ], + [ + -73.451731, + 45.612481 + ], + [ + -73.451764, + 45.612387 + ], + [ + -73.451963, + 45.611811 + ], + [ + -73.452038, + 45.611557 + ], + [ + -73.452151, + 45.611172 + ], + [ + -73.452319, + 45.610623 + ], + [ + -73.45242, + 45.610223 + ], + [ + -73.452502, + 45.609899 + ], + [ + -73.452742, + 45.608653 + ], + [ + -73.452838, + 45.608171 + ], + [ + -73.452843, + 45.608151 + ], + [ + -73.452894, + 45.607902 + ], + [ + -73.452956, + 45.607582 + ], + [ + -73.45303, + 45.607204 + ], + [ + -73.45313, + 45.606689 + ], + [ + -73.45351, + 45.604734 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453269, + 45.60401 + ], + [ + -73.453124, + 45.603897 + ], + [ + -73.452881, + 45.60371 + ], + [ + -73.452751, + 45.603609 + ], + [ + -73.452634, + 45.603524 + ], + [ + -73.45156, + 45.602679 + ], + [ + -73.45153, + 45.602655 + ], + [ + -73.451134, + 45.602344 + ], + [ + -73.450997, + 45.602236 + ], + [ + -73.450804, + 45.602087 + ], + [ + -73.450717, + 45.602019 + ], + [ + -73.450711, + 45.601962 + ], + [ + -73.450652, + 45.601878 + ], + [ + -73.450633, + 45.601851 + ], + [ + -73.45062, + 45.601823 + ], + [ + -73.450613, + 45.6018 + ], + [ + -73.450612, + 45.601775 + ], + [ + -73.450612, + 45.601745 + ], + [ + -73.450617, + 45.601719 + ], + [ + -73.450626, + 45.601694 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450359, + 45.600861 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.450329, + 45.600811 + ], + [ + -73.45028, + 45.600747 + ], + [ + -73.45017, + 45.600666 + ], + [ + -73.450081, + 45.60062 + ], + [ + -73.449968, + 45.600603 + ], + [ + -73.449925, + 45.600607 + ], + [ + -73.449868, + 45.600621 + ], + [ + -73.449802, + 45.600661 + ], + [ + -73.449715, + 45.600713 + ], + [ + -73.449674, + 45.600743 + ], + [ + -73.449661, + 45.600772 + ], + [ + -73.449666, + 45.600812 + ], + [ + -73.449924, + 45.601045 + ], + [ + -73.449978, + 45.601072 + ], + [ + -73.450055, + 45.601083 + ], + [ + -73.45017, + 45.60109 + ], + [ + -73.450263, + 45.601099 + ], + [ + -73.450328, + 45.601118 + ], + [ + -73.450379, + 45.601155 + ], + [ + -73.450393, + 45.601201 + ], + [ + -73.450376, + 45.60125 + ], + [ + -73.450362, + 45.601293 + ], + [ + -73.450349, + 45.601366 + ], + [ + -73.450328, + 45.601396 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450247, + 45.601412 + ], + [ + -73.450159, + 45.601408 + ], + [ + -73.450117, + 45.6014 + ], + [ + -73.450076, + 45.601382 + ], + [ + -73.450018, + 45.601356 + ], + [ + -73.449945, + 45.60132 + ], + [ + -73.449881, + 45.6013 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.447966, + 45.599856 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.446985, + 45.599062 + ], + [ + -73.446713, + 45.59886 + ], + [ + -73.446259, + 45.598527 + ], + [ + -73.445451, + 45.597962 + ], + [ + -73.445261, + 45.597829 + ], + [ + -73.444803, + 45.597518 + ], + [ + -73.44364, + 45.596727 + ], + [ + -73.443394, + 45.596559 + ], + [ + -73.442992, + 45.59628 + ], + [ + -73.442927, + 45.596235 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.439978, + 45.594044 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438316, + 45.592819 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.436924, + 45.591152 + ], + [ + -73.437164, + 45.591013 + ], + [ + -73.437547, + 45.590791 + ], + [ + -73.438173, + 45.590429 + ], + [ + -73.438715, + 45.590114 + ], + [ + -73.438952, + 45.589961 + ], + [ + -73.439419, + 45.589653 + ], + [ + -73.439421, + 45.589651 + ], + [ + -73.439556, + 45.58957 + ], + [ + -73.43977, + 45.589417 + ], + [ + -73.43999, + 45.589251 + ], + [ + -73.440162, + 45.58912 + ], + [ + -73.440356, + 45.588972 + ], + [ + -73.440499, + 45.588855 + ], + [ + -73.440849, + 45.588559 + ], + [ + -73.441414, + 45.588033 + ], + [ + -73.441626, + 45.587839 + ], + [ + -73.442055, + 45.587448 + ], + [ + -73.442542, + 45.586998 + ], + [ + -73.443306, + 45.586303 + ], + [ + -73.4435, + 45.586126 + ], + [ + -73.444399, + 45.585304 + ], + [ + -73.444685, + 45.585042 + ], + [ + -73.445533, + 45.584264 + ], + [ + -73.445779, + 45.584064 + ], + [ + -73.446073, + 45.583824 + ], + [ + -73.446281, + 45.583662 + ], + [ + -73.446365, + 45.583594 + ], + [ + -73.446509, + 45.583477 + ], + [ + -73.446663, + 45.583334 + ], + [ + -73.446759, + 45.583239 + ], + [ + -73.446885, + 45.583095 + ], + [ + -73.447026, + 45.582915 + ], + [ + -73.44712, + 45.582776 + ], + [ + -73.447147, + 45.582728 + ], + [ + -73.447216, + 45.582605 + ], + [ + -73.447288, + 45.582456 + ], + [ + -73.447348, + 45.582322 + ], + [ + -73.447422, + 45.58211 + ], + [ + -73.447475, + 45.581885 + ], + [ + -73.447497, + 45.581732 + ], + [ + -73.447521, + 45.581602 + ], + [ + -73.447516, + 45.581462 + ], + [ + -73.447513, + 45.581287 + ], + [ + -73.447477, + 45.581057 + ], + [ + -73.447342, + 45.58039 + ], + [ + -73.447286, + 45.580117 + ], + [ + -73.447144, + 45.579424 + ], + [ + -73.447107, + 45.579243 + ], + [ + -73.447056, + 45.578992 + ], + [ + -73.447038, + 45.578907 + ], + [ + -73.446989, + 45.578673 + ], + [ + -73.446939, + 45.578425 + ], + [ + -73.446764, + 45.577557 + ], + [ + -73.446738, + 45.577422 + ], + [ + -73.446692, + 45.57717 + ], + [ + -73.446671, + 45.576945 + ], + [ + -73.446671, + 45.57667 + ], + [ + -73.446671, + 45.576571 + ], + [ + -73.446676, + 45.576533 + ], + [ + -73.44669, + 45.576436 + ], + [ + -73.446707, + 45.576333 + ], + [ + -73.446734, + 45.576243 + ], + [ + -73.446807, + 45.576018 + ], + [ + -73.446886, + 45.575843 + ], + [ + -73.446894, + 45.575825 + ], + [ + -73.447166, + 45.575249 + ], + [ + -73.447388, + 45.574789 + ], + [ + -73.447238, + 45.574749 + ], + [ + -73.446746, + 45.574587 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.443147, + 45.572802 + ], + [ + -73.443228, + 45.572879 + ], + [ + -73.443273, + 45.572955 + ], + [ + -73.443271, + 45.573 + ], + [ + -73.443276, + 45.573125 + ], + [ + -73.443281, + 45.573166 + ], + [ + -73.443386, + 45.57326 + ], + [ + -73.443502, + 45.573319 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.44468, + 45.573697 + ], + [ + -73.444697, + 45.573706 + ], + [ + -73.444729, + 45.573713 + ], + [ + -73.444769, + 45.573716 + ], + [ + -73.444831, + 45.573715 + ], + [ + -73.444884, + 45.573708 + ], + [ + -73.44491, + 45.573694 + ], + [ + -73.444932, + 45.573662 + ], + [ + -73.444953, + 45.573633 + ], + [ + -73.44492, + 45.573618 + ], + [ + -73.444872, + 45.573601 + ], + [ + -73.444829, + 45.573598 + ], + [ + -73.44477, + 45.57361 + ], + [ + -73.444749, + 45.573615 + ], + [ + -73.44471, + 45.573635 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.443568, + 45.573245 + ], + [ + -73.443539, + 45.573203 + ], + [ + -73.44348, + 45.573034 + ], + [ + -73.443427, + 45.572912 + ], + [ + -73.44336, + 45.572841 + ], + [ + -73.443253, + 45.572772 + ], + [ + -73.443199, + 45.572746 + ], + [ + -73.443114, + 45.572731 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.446746, + 45.574587 + ], + [ + -73.447238, + 45.574749 + ], + [ + -73.447388, + 45.574789 + ], + [ + -73.447436, + 45.574664 + ], + [ + -73.447747, + 45.574246 + ], + [ + -73.447911, + 45.574048 + ], + [ + -73.448003, + 45.573949 + ], + [ + -73.448105, + 45.573859 + ], + [ + -73.448208, + 45.573776 + ], + [ + -73.448217, + 45.573769 + ], + [ + -73.448342, + 45.573688 + ], + [ + -73.448479, + 45.573616 + ], + [ + -73.448612, + 45.573562 + ], + [ + -73.448944, + 45.573459 + ], + [ + -73.449123, + 45.573428 + ], + [ + -73.449305, + 45.573405 + ], + [ + -73.4495, + 45.573396 + ], + [ + -73.449708, + 45.573401 + ], + [ + -73.450131, + 45.573437 + ], + [ + -73.45057, + 45.573487 + ], + [ + -73.452027, + 45.573685 + ], + [ + -73.45367, + 45.573951 + ], + [ + -73.455009, + 45.57424 + ], + [ + -73.456205, + 45.574501 + ], + [ + -73.457846, + 45.574844 + ], + [ + -73.459196, + 45.575101 + ], + [ + -73.460081, + 45.575263 + ], + [ + -73.460408, + 45.575326 + ], + [ + -73.462346, + 45.575705 + ], + [ + -73.463166, + 45.575871 + ], + [ + -73.466047, + 45.576484 + ], + [ + -73.467519, + 45.576809 + ], + [ + -73.469081, + 45.577137 + ], + [ + -73.469847, + 45.5773 + ], + [ + -73.46993, + 45.577318 + ], + [ + -73.470459, + 45.57743 + ], + [ + -73.474313, + 45.578254 + ], + [ + -73.475326, + 45.578471 + ], + [ + -73.475636, + 45.578538 + ], + [ + -73.475932, + 45.578601 + ], + [ + -73.476433, + 45.578707 + ], + [ + -73.481329, + 45.579745 + ], + [ + -73.48155, + 45.579795 + ], + [ + -73.484545, + 45.580447 + ], + [ + -73.485965, + 45.580767 + ], + [ + -73.497124, + 45.583147 + ], + [ + -73.508904, + 45.585656 + ], + [ + -73.509302, + 45.58574 + ], + [ + -73.509739, + 45.585835 + ], + [ + -73.510248, + 45.585943 + ], + [ + -73.510753, + 45.58605 + ], + [ + -73.511089, + 45.586122 + ], + [ + -73.512652, + 45.586456 + ], + [ + -73.513072, + 45.586547 + ], + [ + -73.513383, + 45.586622 + ], + [ + -73.513615, + 45.586679 + ], + [ + -73.513896, + 45.586752 + ], + [ + -73.51435, + 45.586877 + ], + [ + -73.514692, + 45.586978 + ], + [ + -73.514943, + 45.587051 + ], + [ + -73.515214, + 45.587137 + ], + [ + -73.515381, + 45.587189 + ], + [ + -73.515499, + 45.58723 + ], + [ + -73.515615, + 45.587265 + ], + [ + -73.515863, + 45.587347 + ], + [ + -73.516018, + 45.587396 + ], + [ + -73.516093, + 45.587421 + ], + [ + -73.516263, + 45.587478 + ], + [ + -73.516374, + 45.587512 + ], + [ + -73.517412, + 45.587855 + ], + [ + -73.517647, + 45.587929 + ], + [ + -73.517898, + 45.588012 + ], + [ + -73.518165, + 45.5881 + ], + [ + -73.518383, + 45.588169 + ], + [ + -73.51862, + 45.588243 + ], + [ + -73.518873, + 45.588329 + ], + [ + -73.519146, + 45.588421 + ], + [ + -73.519592, + 45.588583 + ], + [ + -73.519868, + 45.588673 + ], + [ + -73.520234, + 45.588791 + ], + [ + -73.520667, + 45.588925 + ], + [ + -73.520851, + 45.588978 + ], + [ + -73.521073, + 45.589039 + ], + [ + -73.521333, + 45.589108 + ], + [ + -73.521497, + 45.589152 + ], + [ + -73.521544, + 45.589163 + ], + [ + -73.521823, + 45.58923 + ], + [ + -73.522033, + 45.589281 + ], + [ + -73.522524, + 45.589399 + ], + [ + -73.522914, + 45.589494 + ], + [ + -73.52345, + 45.589622 + ], + [ + -73.523991, + 45.589764 + ], + [ + -73.52438, + 45.58988 + ], + [ + -73.524584, + 45.589945 + ], + [ + -73.524734, + 45.589998 + ], + [ + -73.52493, + 45.590067 + ], + [ + -73.525178, + 45.590158 + ], + [ + -73.525533, + 45.5903 + ], + [ + -73.526168, + 45.590581 + ], + [ + -73.526515, + 45.590738 + ], + [ + -73.526839, + 45.590884 + ], + [ + -73.527065, + 45.590977 + ], + [ + -73.527417, + 45.591124 + ], + [ + -73.527746, + 45.591255 + ], + [ + -73.527969, + 45.591342 + ], + [ + -73.528175, + 45.59142 + ], + [ + -73.52845, + 45.591517 + ], + [ + -73.528558, + 45.591559 + ], + [ + -73.528686, + 45.591601 + ], + [ + -73.528843, + 45.591657 + ], + [ + -73.528989, + 45.591705 + ], + [ + -73.529147, + 45.591753 + ], + [ + -73.529298, + 45.591799 + ], + [ + -73.529667, + 45.591896 + ], + [ + -73.530088, + 45.591993 + ], + [ + -73.530428, + 45.592062 + ], + [ + -73.530573, + 45.592092 + ], + [ + -73.530708, + 45.592118 + ], + [ + -73.530821, + 45.59214 + ], + [ + -73.531509, + 45.592269 + ], + [ + -73.531903, + 45.592341 + ], + [ + -73.532263, + 45.592438 + ], + [ + -73.532659, + 45.592533 + ], + [ + -73.532915, + 45.592591 + ], + [ + -73.533081, + 45.592632 + ], + [ + -73.533228, + 45.592666 + ], + [ + -73.534254, + 45.592895 + ], + [ + -73.53476, + 45.593005 + ], + [ + -73.535125, + 45.593079 + ], + [ + -73.53543, + 45.59314 + ], + [ + -73.535913, + 45.593237 + ], + [ + -73.536223, + 45.593308 + ], + [ + -73.536422, + 45.593363 + ], + [ + -73.536757, + 45.593427 + ], + [ + -73.536928, + 45.593461 + ], + [ + -73.537323, + 45.593537 + ], + [ + -73.53774, + 45.59364 + ], + [ + -73.538073, + 45.593797 + ], + [ + -73.538329, + 45.593961 + ], + [ + -73.538376, + 45.594194 + ], + [ + -73.538248, + 45.594374 + ], + [ + -73.538003, + 45.594472 + ], + [ + -73.537828, + 45.594497 + ], + [ + -73.537529, + 45.594425 + ], + [ + -73.536539, + 45.594133 + ], + [ + -73.536896, + 45.593513 + ], + [ + -73.536928, + 45.593461 + ], + [ + -73.537021, + 45.593311 + ], + [ + -73.537094, + 45.593191 + ], + [ + -73.537199, + 45.593022 + ], + [ + -73.537249, + 45.59294 + ], + [ + -73.537595, + 45.592349 + ], + [ + -73.538187, + 45.591323 + ], + [ + -73.538445, + 45.590876 + ], + [ + -73.539019, + 45.589891 + ], + [ + -73.538858, + 45.589857 + ], + [ + -73.538782, + 45.58985 + ], + [ + -73.538619, + 45.589794 + ], + [ + -73.537871, + 45.589536 + ], + [ + -73.537763, + 45.589685 + ], + [ + -73.537641, + 45.589854 + ], + [ + -73.53791, + 45.589946 + ], + [ + -73.538217, + 45.59005 + ], + [ + -73.538311, + 45.590083 + ], + [ + -73.538428, + 45.589913 + ], + [ + -73.538041, + 45.58978 + ] + ] + }, + "id": 147, + "properties": { + "id": "85da5396-940e-4c03-9ee3-ddbf78746840", + "data": { + "gtfs": { + "shape_id": "61_2_A" + }, + "segments": [ + { + "distanceMeters": 213, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 388, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 520, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 390, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 439, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 78, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 335, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 83, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 92, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 1000, + "travelTimeSeconds": 166 + }, + { + "distanceMeters": 9040, + "travelTimeSeconds": 660 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 252, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 22325, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6800.672553992669, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.86, + "travelTimeWithoutDwellTimesSeconds": 2520, + "operatingTimeWithLayoverTimeSeconds": 2772, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2520, + "operatingSpeedWithLayoverMetersPerSecond": 8.05, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.86 + }, + "mode": "bus", + "name": "Métro Radisson", + "color": "#A32638", + "nodes": [ + "ca205394-9833-4e14-b4fa-653c28b9a37d", + "dd170d68-d567-4a2d-8a93-47dec3a52cd1", + "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", + "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", + "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", + "204b558a-c106-4589-888d-4bd6528787b5", + "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", + "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", + "949c3098-32ca-4f3b-81ba-cbe506f68923", + "518135ae-62e9-44c2-bac7-e8c50c56eec9", + "148d4b0f-418e-4993-b335-f1dcd1c4df41", + "568437d9-2de5-4e5e-b111-1a7811ac5c99", + "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", + "6928ef4b-2825-4234-84d9-1c82edb211b0", + "777d67e8-62c3-46b4-a71f-e76a88b45f45", + "d04543e8-f38e-4937-b92b-1bc9ff97fd25", + "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", + "389622d0-ee1f-428b-9366-e69f134ff23e", + "02fef102-0f62-42d0-b4ed-790bc76ef1ad", + "f659a652-a61c-4199-abbc-a42f3ceef5cb", + "90b41412-0c12-4505-b7c9-b915901b1dd2", + "78a9a588-c1f0-470f-bbcc-52b6da866dad", + "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", + "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", + "253353ba-aba2-4e63-bf86-819bb7c9cecd", + "706f0077-9543-4662-8684-a321216a8a90", + "589f0f16-2c87-45fc-856c-d82dc5449f14", + "0778ac37-7369-4d81-abbc-9aa1d13b1c38", + "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", + "039c87a4-2647-4079-9a79-c7d3278ef6b2", + "e2d71c2d-a170-4ce7-a381-519755a00e36", + "a2b2c8d3-da2c-46a1-8009-597d5c6a0c19", + "ca205394-9833-4e14-b4fa-653c28b9a37d", + "bbe875bc-cb85-4a61-923d-53ee4746a213", + "96c08dfd-d2e7-4584-a6b3-36c3a2e1abcc", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "4c25cc73-ac26-4e31-9812-bc4ad7f583b5", + "49262d07-72b2-466f-bf49-88656466e4a4", + "0872c388-8faf-4852-b4ce-cf3f6312e0ef", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "e177b755-3bcf-4a35-afd7-a49fb240f250", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", + "2cdb15ef-cdbd-4b50-8947-cb9baee33626", + "7b512bac-ad2d-4d5a-87d8-173290a7b311", + "44ce6da8-ee79-4e09-9c16-f31566643c0c", + "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", + "6c99422e-05cb-48dc-811f-162fee50cf80", + "7c5ab4a9-cc9e-4b88-bc68-d214d8c04000", + "a83efd44-0d7a-49ef-b344-ef523d875f87", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "b49806f2-28c3-484e-bd5a-b46e80d9eb6f" + ], + "stops": [], + "line_id": "edf773b4-79da-4881-a607-1b6f2dc9fb32", + "segments": [ + 0, + 7, + 13, + 21, + 25, + 32, + 38, + 47, + 51, + 56, + 60, + 63, + 66, + 69, + 76, + 83, + 90, + 98, + 116, + 124, + 131, + 138, + 141, + 144, + 146, + 151, + 158, + 160, + 165, + 170, + 176, + 180, + 189, + 223, + 262, + 268, + 271, + 274, + 277, + 283, + 290, + 295, + 300, + 305, + 313, + 315, + 318, + 328, + 339, + 342, + 346, + 353, + 406 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 147, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.538041, + 45.58978 + ], + [ + -73.537763, + 45.589685 + ], + [ + -73.537412, + 45.589569 + ], + [ + -73.537296, + 45.589531 + ], + [ + -73.537175, + 45.589492 + ], + [ + -73.537061, + 45.589663 + ], + [ + -73.537347, + 45.589757 + ], + [ + -73.537641, + 45.589854 + ], + [ + -73.537763, + 45.589685 + ], + [ + -73.537871, + 45.589536 + ], + [ + -73.538619, + 45.589794 + ], + [ + -73.538782, + 45.58985 + ], + [ + -73.538858, + 45.589857 + ], + [ + -73.538292, + 45.590834 + ], + [ + -73.53801, + 45.591289 + ], + [ + -73.53724, + 45.592229 + ], + [ + -73.536919, + 45.592462 + ], + [ + -73.536427, + 45.592632 + ], + [ + -73.536128, + 45.592668 + ], + [ + -73.535634, + 45.592691 + ], + [ + -73.535039, + 45.592586 + ], + [ + -73.534497, + 45.592491 + ], + [ + -73.534162, + 45.592432 + ], + [ + -73.533328, + 45.592284 + ], + [ + -73.532072, + 45.592016 + ], + [ + -73.529941, + 45.591524 + ], + [ + -73.529126, + 45.591256 + ], + [ + -73.527811, + 45.590825 + ], + [ + -73.527241, + 45.590441 + ], + [ + -73.52689, + 45.590006 + ], + [ + -73.526662, + 45.589263 + ], + [ + -73.526448, + 45.58921 + ], + [ + -73.526233, + 45.589625 + ], + [ + -73.526099, + 45.589887 + ], + [ + -73.525936, + 45.590207 + ], + [ + -73.525676, + 45.590715 + ], + [ + -73.525536, + 45.590657 + ], + [ + -73.524684, + 45.590291 + ], + [ + -73.523747, + 45.589931 + ], + [ + -73.522883, + 45.5897 + ], + [ + -73.520235, + 45.589073 + ], + [ + -73.520459, + 45.5886 + ], + [ + -73.520755, + 45.588049 + ], + [ + -73.52084, + 45.587831 + ], + [ + -73.52129, + 45.586836 + ], + [ + -73.521505, + 45.586119 + ], + [ + -73.521883, + 45.584855 + ], + [ + -73.521921, + 45.584808 + ], + [ + -73.521957, + 45.584763 + ], + [ + -73.522003, + 45.584698 + ], + [ + -73.522045, + 45.584645 + ], + [ + -73.522061, + 45.584629 + ], + [ + -73.522081, + 45.58461 + ], + [ + -73.522109, + 45.58459 + ], + [ + -73.522134, + 45.584576 + ], + [ + -73.522163, + 45.584561 + ], + [ + -73.522192, + 45.584549 + ], + [ + -73.522235, + 45.584534 + ], + [ + -73.522274, + 45.584523 + ], + [ + -73.522325, + 45.584515 + ], + [ + -73.522374, + 45.584509 + ], + [ + -73.522429, + 45.58451 + ], + [ + -73.522571, + 45.584531 + ], + [ + -73.52343, + 45.584815 + ], + [ + -73.52376, + 45.584927 + ], + [ + -73.523841, + 45.584954 + ], + [ + -73.523945, + 45.584989 + ], + [ + -73.524016, + 45.585015 + ], + [ + -73.524096, + 45.585047 + ], + [ + -73.524151, + 45.585073 + ], + [ + -73.524197, + 45.585098 + ], + [ + -73.524236, + 45.585122 + ], + [ + -73.524278, + 45.585148 + ], + [ + -73.524324, + 45.585178 + ], + [ + -73.524369, + 45.585214 + ], + [ + -73.524406, + 45.585247 + ], + [ + -73.524463, + 45.585303 + ], + [ + -73.524503, + 45.585349 + ], + [ + -73.524542, + 45.58539 + ], + [ + -73.524569, + 45.58543 + ], + [ + -73.524587, + 45.58546 + ], + [ + -73.524593, + 45.58547 + ], + [ + -73.52462, + 45.585521 + ], + [ + -73.52464, + 45.58557 + ], + [ + -73.52466, + 45.585624 + ], + [ + -73.524672, + 45.58567 + ], + [ + -73.524685, + 45.585725 + ], + [ + -73.524689, + 45.585768 + ], + [ + -73.524691, + 45.585817 + ], + [ + -73.524689, + 45.585864 + ], + [ + -73.524682, + 45.585915 + ], + [ + -73.524667, + 45.585966 + ], + [ + -73.524655, + 45.586011 + ], + [ + -73.524638, + 45.586057 + ], + [ + -73.524579, + 45.586185 + ], + [ + -73.5243, + 45.586752 + ], + [ + -73.524239, + 45.586876 + ], + [ + -73.524205, + 45.586942 + ], + [ + -73.524179, + 45.586987 + ], + [ + -73.524164, + 45.587015 + ], + [ + -73.524145, + 45.587045 + ], + [ + -73.524103, + 45.587109 + ], + [ + -73.524067, + 45.587159 + ], + [ + -73.524034, + 45.587198 + ], + [ + -73.523996, + 45.587242 + ], + [ + -73.523958, + 45.587276 + ], + [ + -73.523927, + 45.587306 + ], + [ + -73.523898, + 45.587332 + ], + [ + -73.523863, + 45.587361 + ], + [ + -73.523831, + 45.587386 + ], + [ + -73.523767, + 45.587435 + ], + [ + -73.5237, + 45.58748 + ], + [ + -73.523647, + 45.587515 + ], + [ + -73.523625, + 45.587528 + ], + [ + -73.523564, + 45.587565 + ], + [ + -73.523503, + 45.587597 + ], + [ + -73.523435, + 45.587631 + ], + [ + -73.523361, + 45.587666 + ], + [ + -73.522995, + 45.587814 + ], + [ + -73.522789, + 45.587888 + ], + [ + -73.522534, + 45.587959 + ], + [ + -73.522332, + 45.588012 + ], + [ + -73.522084, + 45.58807 + ], + [ + -73.521851, + 45.588105 + ], + [ + -73.521643, + 45.588133 + ], + [ + -73.521312, + 45.588151 + ], + [ + -73.521043, + 45.588156 + ], + [ + -73.520917, + 45.588158 + ], + [ + -73.52081, + 45.588158 + ], + [ + -73.520688, + 45.588159 + ], + [ + -73.520523, + 45.588154 + ], + [ + -73.520408, + 45.588148 + ], + [ + -73.520268, + 45.588141 + ], + [ + -73.520163, + 45.588135 + ], + [ + -73.520068, + 45.588129 + ], + [ + -73.51998, + 45.588122 + ], + [ + -73.519887, + 45.588116 + ], + [ + -73.51979, + 45.588107 + ], + [ + -73.519696, + 45.588097 + ], + [ + -73.519541, + 45.588083 + ], + [ + -73.519413, + 45.588068 + ], + [ + -73.519239, + 45.588046 + ], + [ + -73.519068, + 45.588023 + ], + [ + -73.518923, + 45.588002 + ], + [ + -73.518749, + 45.587973 + ], + [ + -73.518537, + 45.587936 + ], + [ + -73.518361, + 45.587901 + ], + [ + -73.518208, + 45.587865 + ], + [ + -73.518073, + 45.587834 + ], + [ + -73.517947, + 45.587803 + ], + [ + -73.517919, + 45.587796 + ], + [ + -73.517669, + 45.587733 + ], + [ + -73.517466, + 45.587675 + ], + [ + -73.517114, + 45.587597 + ], + [ + -73.516945, + 45.587542 + ], + [ + -73.516325, + 45.587341 + ], + [ + -73.515858, + 45.587189 + ], + [ + -73.515252, + 45.586992 + ], + [ + -73.514772, + 45.586839 + ], + [ + -73.514455, + 45.586742 + ], + [ + -73.51397, + 45.586605 + ], + [ + -73.513711, + 45.586533 + ], + [ + -73.51342, + 45.586456 + ], + [ + -73.513232, + 45.586405 + ], + [ + -73.513046, + 45.586357 + ], + [ + -73.512839, + 45.586307 + ], + [ + -73.512478, + 45.586224 + ], + [ + -73.511402, + 45.585995 + ], + [ + -73.508969, + 45.585479 + ], + [ + -73.497184, + 45.582969 + ], + [ + -73.48603, + 45.580596 + ], + [ + -73.484605, + 45.580304 + ], + [ + -73.481594, + 45.579682 + ], + [ + -73.481299, + 45.579619 + ], + [ + -73.476527, + 45.578597 + ], + [ + -73.475793, + 45.57844 + ], + [ + -73.471564, + 45.577476 + ], + [ + -73.470253, + 45.577185 + ], + [ + -73.470227, + 45.577179 + ], + [ + -73.470082, + 45.577148 + ], + [ + -73.469737, + 45.577073 + ], + [ + -73.469494, + 45.57702 + ], + [ + -73.468711, + 45.57685 + ], + [ + -73.465956, + 45.57631 + ], + [ + -73.462443, + 45.575565 + ], + [ + -73.457218, + 45.5744 + ], + [ + -73.456588, + 45.574263 + ], + [ + -73.454467, + 45.573722 + ], + [ + -73.453947, + 45.573587 + ], + [ + -73.453448, + 45.573447 + ], + [ + -73.452981, + 45.573299 + ], + [ + -73.452764, + 45.573218 + ], + [ + -73.452558, + 45.573128 + ], + [ + -73.452363, + 45.573028 + ], + [ + -73.452177, + 45.572916 + ], + [ + -73.452006, + 45.572794 + ], + [ + -73.45185, + 45.572659 + ], + [ + -73.451709, + 45.572515 + ], + [ + -73.451584, + 45.572362 + ], + [ + -73.451481, + 45.5722 + ], + [ + -73.451391, + 45.572034 + ], + [ + -73.451086, + 45.571422 + ], + [ + -73.451003, + 45.571291 + ], + [ + -73.450904, + 45.571179 + ], + [ + -73.450791, + 45.571075 + ], + [ + -73.450667, + 45.570994 + ], + [ + -73.450535, + 45.570922 + ], + [ + -73.450463, + 45.570891 + ], + [ + -73.450402, + 45.570864 + ], + [ + -73.449347, + 45.570476 + ], + [ + -73.449264, + 45.570454 + ], + [ + -73.449093, + 45.570413 + ], + [ + -73.449089, + 45.570422 + ], + [ + -73.44907, + 45.570467 + ], + [ + -73.449049, + 45.570517 + ], + [ + -73.448873, + 45.570917 + ], + [ + -73.448823, + 45.571034 + ], + [ + -73.448756, + 45.571199 + ], + [ + -73.44818, + 45.572625 + ], + [ + -73.447654, + 45.573778 + ], + [ + -73.447519, + 45.574084 + ], + [ + -73.447518, + 45.574088 + ], + [ + -73.447455, + 45.574133 + ], + [ + -73.447308, + 45.574407 + ], + [ + -73.447267, + 45.574466 + ], + [ + -73.447241, + 45.574497 + ], + [ + -73.447197, + 45.574529 + ], + [ + -73.447149, + 45.574547 + ], + [ + -73.447112, + 45.574556 + ], + [ + -73.447049, + 45.574565 + ], + [ + -73.446965, + 45.574569 + ], + [ + -73.446884, + 45.574565 + ], + [ + -73.446792, + 45.574547 + ], + [ + -73.446652, + 45.574511 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.443147, + 45.572802 + ], + [ + -73.443228, + 45.572879 + ], + [ + -73.443273, + 45.572955 + ], + [ + -73.443271, + 45.573 + ], + [ + -73.443276, + 45.573125 + ], + [ + -73.443281, + 45.573166 + ], + [ + -73.443386, + 45.57326 + ], + [ + -73.443502, + 45.573319 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.44468, + 45.573697 + ], + [ + -73.444697, + 45.573706 + ], + [ + -73.444729, + 45.573713 + ], + [ + -73.444769, + 45.573716 + ], + [ + -73.444831, + 45.573715 + ], + [ + -73.444884, + 45.573708 + ], + [ + -73.44491, + 45.573694 + ], + [ + -73.444924, + 45.573673 + ], + [ + -73.444953, + 45.573633 + ], + [ + -73.44492, + 45.573618 + ], + [ + -73.444872, + 45.573601 + ], + [ + -73.444829, + 45.573598 + ], + [ + -73.444749, + 45.573615 + ], + [ + -73.44471, + 45.573635 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.443539, + 45.573203 + ], + [ + -73.443513, + 45.573129 + ], + [ + -73.44348, + 45.573034 + ], + [ + -73.443427, + 45.572912 + ], + [ + -73.44336, + 45.572841 + ], + [ + -73.443253, + 45.572772 + ], + [ + -73.443199, + 45.572746 + ], + [ + -73.443114, + 45.572731 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.446698, + 45.574646 + ], + [ + -73.446963, + 45.574749 + ], + [ + -73.446986, + 45.574767 + ], + [ + -73.447005, + 45.574781 + ], + [ + -73.447026, + 45.574808 + ], + [ + -73.447042, + 45.57483 + ], + [ + -73.447056, + 45.574857 + ], + [ + -73.44707, + 45.574889 + ], + [ + -73.447082, + 45.57492 + ], + [ + -73.447099, + 45.575037 + ], + [ + -73.447045, + 45.575158 + ], + [ + -73.446765, + 45.575789 + ], + [ + -73.446759, + 45.575802 + ], + [ + -73.446721, + 45.575887 + ], + [ + -73.446618, + 45.576202 + ], + [ + -73.446585, + 45.576297 + ], + [ + -73.446578, + 45.576319 + ], + [ + -73.446558, + 45.576387 + ], + [ + -73.44653, + 45.57654 + ], + [ + -73.446519, + 45.57667 + ], + [ + -73.446516, + 45.576796 + ], + [ + -73.446516, + 45.576958 + ], + [ + -73.446539, + 45.577179 + ], + [ + -73.446584, + 45.57744 + ], + [ + -73.446591, + 45.577468 + ], + [ + -73.446615, + 45.57757 + ], + [ + -73.446868, + 45.578828 + ], + [ + -73.446887, + 45.57892 + ], + [ + -73.446904, + 45.579005 + ], + [ + -73.447128, + 45.58009 + ], + [ + -73.447136, + 45.58013 + ], + [ + -73.447307, + 45.58099 + ], + [ + -73.447337, + 45.581174 + ], + [ + -73.447364, + 45.581462 + ], + [ + -73.447358, + 45.581597 + ], + [ + -73.447346, + 45.581723 + ], + [ + -73.447325, + 45.581872 + ], + [ + -73.447274, + 45.582088 + ], + [ + -73.447195, + 45.582299 + ], + [ + -73.447186, + 45.582322 + ], + [ + -73.447144, + 45.582429 + ], + [ + -73.447053, + 45.582609 + ], + [ + -73.44698, + 45.58274 + ], + [ + -73.446895, + 45.58287 + ], + [ + -73.446759, + 45.583041 + ], + [ + -73.446638, + 45.583181 + ], + [ + -73.446546, + 45.58327 + ], + [ + -73.446413, + 45.583392 + ], + [ + -73.446149, + 45.583603 + ], + [ + -73.446105, + 45.583638 + ], + [ + -73.446013, + 45.583711 + ], + [ + -73.445968, + 45.583747 + ], + [ + -73.44592, + 45.583788 + ], + [ + -73.445774, + 45.583904 + ], + [ + -73.445416, + 45.584201 + ], + [ + -73.44456, + 45.584979 + ], + [ + -73.444559, + 45.58498 + ], + [ + -73.444401, + 45.585119 + ], + [ + -73.443474, + 45.585971 + ], + [ + -73.443398, + 45.58604 + ], + [ + -73.44263, + 45.586742 + ], + [ + -73.442422, + 45.586935 + ], + [ + -73.442064, + 45.587259 + ], + [ + -73.44183, + 45.58747 + ], + [ + -73.441505, + 45.587776 + ], + [ + -73.441295, + 45.58797 + ], + [ + -73.440302, + 45.588851 + ], + [ + -73.440242, + 45.588905 + ], + [ + -73.439836, + 45.589215 + ], + [ + -73.439587, + 45.589392 + ], + [ + -73.439545, + 45.589422 + ], + [ + -73.43944, + 45.589489 + ], + [ + -73.439298, + 45.589588 + ], + [ + -73.438772, + 45.589939 + ], + [ + -73.438073, + 45.590343 + ], + [ + -73.437854, + 45.590472 + ], + [ + -73.436355, + 45.59135 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.437792, + 45.592431 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.43834, + 45.592837 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.440079, + 45.594121 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.442158, + 45.595675 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442992, + 45.59628 + ], + [ + -73.443305, + 45.596498 + ], + [ + -73.443394, + 45.596559 + ], + [ + -73.444803, + 45.597518 + ], + [ + -73.445261, + 45.597829 + ], + [ + -73.445346, + 45.597888 + ], + [ + -73.446259, + 45.598527 + ], + [ + -73.446713, + 45.59886 + ], + [ + -73.447005, + 45.599077 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.448105, + 45.599966 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449825, + 45.601331 + ], + [ + -73.449842, + 45.601358 + ], + [ + -73.449882, + 45.601394 + ], + [ + -73.449937, + 45.601432 + ], + [ + -73.449974, + 45.601468 + ], + [ + -73.450006, + 45.601497 + ], + [ + -73.450033, + 45.601528 + ], + [ + -73.450045, + 45.601571 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.450309, + 45.600785 + ], + [ + -73.45028, + 45.600747 + ], + [ + -73.45017, + 45.600666 + ], + [ + -73.45012, + 45.60064 + ], + [ + -73.450081, + 45.60062 + ], + [ + -73.449968, + 45.600603 + ], + [ + -73.449925, + 45.600607 + ], + [ + -73.449868, + 45.600621 + ], + [ + -73.449802, + 45.600661 + ], + [ + -73.449715, + 45.600713 + ], + [ + -73.449674, + 45.600743 + ], + [ + -73.449661, + 45.600772 + ], + [ + -73.449666, + 45.600812 + ], + [ + -73.449924, + 45.601045 + ], + [ + -73.449978, + 45.601072 + ], + [ + -73.450055, + 45.601083 + ], + [ + -73.45017, + 45.60109 + ], + [ + -73.450263, + 45.601099 + ], + [ + -73.450328, + 45.601118 + ], + [ + -73.450379, + 45.601155 + ], + [ + -73.450393, + 45.601201 + ], + [ + -73.450376, + 45.60125 + ], + [ + -73.450362, + 45.601293 + ], + [ + -73.450349, + 45.601366 + ], + [ + -73.450328, + 45.601396 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450295, + 45.60142 + ], + [ + -73.450274, + 45.60143 + ], + [ + -73.450229, + 45.60144 + ], + [ + -73.450195, + 45.601446 + ], + [ + -73.450161, + 45.601455 + ], + [ + -73.450131, + 45.601466 + ], + [ + -73.450095, + 45.601482 + ], + [ + -73.450073, + 45.601501 + ], + [ + -73.450052, + 45.601522 + ], + [ + -73.450048, + 45.601541 + ], + [ + -73.450048, + 45.601565 + ], + [ + -73.450051, + 45.601586 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450452, + 45.601873 + ], + [ + -73.45054, + 45.60193 + ], + [ + -73.450604, + 45.601966 + ], + [ + -73.450658, + 45.602007 + ], + [ + -73.450717, + 45.602019 + ], + [ + -73.450804, + 45.602087 + ], + [ + -73.450997, + 45.602236 + ], + [ + -73.451134, + 45.602344 + ], + [ + -73.45153, + 45.602655 + ], + [ + -73.45156, + 45.602679 + ], + [ + -73.452634, + 45.603524 + ], + [ + -73.452751, + 45.603609 + ], + [ + -73.453106, + 45.603884 + ] + ] + }, + "id": 148, + "properties": { + "id": "926b2d65-e2b3-4b21-98d7-f1233dd40c45", + "data": { + "gtfs": { + "shape_id": "61_2_R" + }, + "segments": [ + { + "distanceMeters": 2553, + "travelTimeSeconds": 199 + }, + { + "distanceMeters": 6987, + "travelTimeSeconds": 548 + }, + { + "distanceMeters": 1184, + "travelTimeSeconds": 93 + }, + { + "distanceMeters": 548, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 405, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 82, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 415, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 559, + "travelTimeSeconds": 120 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 15696, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6800.672553992669, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 10.06, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 9.02, + "averageSpeedWithoutDwellTimesMetersPerSecond": 10.06 + }, + "mode": "bus", + "name": "boul. De Montarville", + "color": "#A32638", + "nodes": [ + "b49806f2-28c3-484e-bd5a-b46e80d9eb6f", + "e3b3b7c9-8cf4-450f-95eb-c8f9836e391d", + "6672cb43-3241-42d7-b5c0-fdaed10338b9", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "c520acc8-980c-45c0-9195-152ad50ee471", + "18aabfcd-f4e1-4782-a757-80cdf1597763", + "6c99422e-05cb-48dc-811f-162fee50cf80", + "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", + "44ce6da8-ee79-4e09-9c16-f31566643c0c", + "7b512bac-ad2d-4d5a-87d8-173290a7b311", + "2cdb15ef-cdbd-4b50-8947-cb9baee33626", + "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "617c5711-4aaa-4c7f-bebe-63268ac405bb", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "4fcc129f-8015-4b36-a21f-2437aa91a265", + "49262d07-72b2-466f-bf49-88656466e4a4", + "9e857d67-44b9-48aa-aa36-d1284504d820", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", + "bbe875bc-cb85-4a61-923d-53ee4746a213", + "ca205394-9833-4e14-b4fa-653c28b9a37d" + ], + "stops": [], + "line_id": "edf773b4-79da-4881-a607-1b6f2dc9fb32", + "segments": [ + 0, + 45, + 217, + 276, + 308, + 322, + 324, + 327, + 337, + 347, + 354, + 356, + 364, + 367, + 373, + 379, + 386, + 390, + 394, + 398, + 401, + 407, + 455 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 148, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.453106, + 45.603884 + ], + [ + -73.453124, + 45.603897 + ], + [ + -73.453269, + 45.60401 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453904, + 45.604474 + ], + [ + -73.454133, + 45.604694 + ], + [ + -73.454539, + 45.605032 + ], + [ + -73.455171, + 45.605504 + ], + [ + -73.455782, + 45.605973 + ], + [ + -73.456001, + 45.606135 + ], + [ + -73.456106, + 45.606225 + ], + [ + -73.45638, + 45.606432 + ], + [ + -73.456464, + 45.606472 + ], + [ + -73.456606, + 45.606499 + ], + [ + -73.456615, + 45.606661 + ], + [ + -73.456615, + 45.606796 + ], + [ + -73.456613, + 45.606975 + ], + [ + -73.45661, + 45.607368 + ], + [ + -73.456599, + 45.607836 + ], + [ + -73.456596, + 45.608119 + ], + [ + -73.456594, + 45.608335 + ], + [ + -73.456582, + 45.60905 + ], + [ + -73.456558, + 45.609802 + ], + [ + -73.456534, + 45.610121 + ], + [ + -73.456537, + 45.610463 + ], + [ + -73.456508, + 45.610998 + ], + [ + -73.4565, + 45.611138 + ], + [ + -73.456491, + 45.611268 + ], + [ + -73.456473, + 45.611516 + ], + [ + -73.456449, + 45.611777 + ], + [ + -73.456429, + 45.612204 + ], + [ + -73.456415, + 45.612407 + ], + [ + -73.456403, + 45.612587 + ], + [ + -73.456367, + 45.613122 + ], + [ + -73.456346, + 45.613356 + ], + [ + -73.456315, + 45.613702 + ], + [ + -73.456295, + 45.613828 + ], + [ + -73.456125, + 45.615281 + ], + [ + -73.45606, + 45.615718 + ], + [ + -73.456015, + 45.616024 + ], + [ + -73.455984, + 45.616307 + ], + [ + -73.45596, + 45.616501 + ], + [ + -73.455915, + 45.616856 + ], + [ + -73.455888, + 45.617081 + ], + [ + -73.455879, + 45.617157 + ], + [ + -73.455855, + 45.617319 + ], + [ + -73.45581, + 45.617621 + ], + [ + -73.455729, + 45.618206 + ], + [ + -73.455676, + 45.618606 + ], + [ + -73.45562, + 45.619025 + ], + [ + -73.455571, + 45.619434 + ], + [ + -73.455479, + 45.620194 + ], + [ + -73.455459, + 45.620347 + ], + [ + -73.455364, + 45.621566 + ], + [ + -73.455345, + 45.621886 + ], + [ + -73.455319, + 45.622282 + ], + [ + -73.455228, + 45.623663 + ], + [ + -73.455153, + 45.624288 + ], + [ + -73.454435, + 45.626407 + ], + [ + -73.454258, + 45.626887 + ], + [ + -73.454243, + 45.626929 + ], + [ + -73.454024, + 45.62755 + ], + [ + -73.453834, + 45.628108 + ], + [ + -73.453601, + 45.628791 + ], + [ + -73.453393, + 45.629394 + ], + [ + -73.453358, + 45.629493 + ], + [ + -73.453315, + 45.629624 + ], + [ + -73.453257, + 45.629785 + ], + [ + -73.452942, + 45.630703 + ], + [ + -73.452778, + 45.631153 + ], + [ + -73.452686, + 45.631346 + ], + [ + -73.452502, + 45.631778 + ], + [ + -73.452393, + 45.631966 + ], + [ + -73.452319, + 45.632093 + ], + [ + -73.452094, + 45.632426 + ], + [ + -73.451773, + 45.632844 + ], + [ + -73.451693, + 45.632925 + ], + [ + -73.451614, + 45.633011 + ], + [ + -73.451195, + 45.633474 + ], + [ + -73.450679, + 45.634027 + ], + [ + -73.450136, + 45.634603 + ], + [ + -73.449434, + 45.63534 + ], + [ + -73.449285, + 45.635498 + ], + [ + -73.449067, + 45.635736 + ], + [ + -73.448723, + 45.636136 + ], + [ + -73.448535, + 45.636361 + ], + [ + -73.448252, + 45.636716 + ], + [ + -73.448132, + 45.636874 + ], + [ + -73.447778, + 45.637337 + ], + [ + -73.447634, + 45.637301 + ], + [ + -73.447384, + 45.637215 + ], + [ + -73.447064, + 45.637088 + ], + [ + -73.446874, + 45.637013 + ], + [ + -73.446777, + 45.636959 + ], + [ + -73.446639, + 45.63686 + ], + [ + -73.446407, + 45.636689 + ], + [ + -73.44625, + 45.636558 + ], + [ + -73.446134, + 45.636441 + ], + [ + -73.445951, + 45.636247 + ], + [ + -73.445769, + 45.636018 + ], + [ + -73.445712, + 45.635937 + ], + [ + -73.445634, + 45.635856 + ], + [ + -73.445562, + 45.635784 + ], + [ + -73.445466, + 45.635698 + ], + [ + -73.445268, + 45.635536 + ], + [ + -73.445104, + 45.635415 + ], + [ + -73.444983, + 45.635319 + ], + [ + -73.444715, + 45.635109 + ], + [ + -73.44467, + 45.635073 + ], + [ + -73.444422, + 45.63487 + ], + [ + -73.444148, + 45.634658 + ], + [ + -73.444049, + 45.634573 + ], + [ + -73.443845, + 45.634429 + ], + [ + -73.443242, + 45.633938 + ], + [ + -73.442909, + 45.633686 + ], + [ + -73.442563, + 45.633434 + ], + [ + -73.442416, + 45.633371 + ], + [ + -73.442362, + 45.633352 + ], + [ + -73.44208, + 45.633254 + ], + [ + -73.441599, + 45.633114 + ], + [ + -73.440824, + 45.632902 + ], + [ + -73.440392, + 45.632771 + ], + [ + -73.440856, + 45.631968 + ], + [ + -73.441271, + 45.631251 + ], + [ + -73.441456, + 45.630932 + ], + [ + -73.441684, + 45.63054 + ], + [ + -73.442088, + 45.629846 + ], + [ + -73.442765, + 45.628681 + ], + [ + -73.443114, + 45.62808 + ], + [ + -73.443605, + 45.627221 + ], + [ + -73.444022, + 45.626488 + ], + [ + -73.444573, + 45.625552 + ], + [ + -73.445177, + 45.624497 + ], + [ + -73.445387, + 45.624131 + ], + [ + -73.445586, + 45.623794 + ], + [ + -73.445824, + 45.623425 + ], + [ + -73.446146, + 45.622876 + ], + [ + -73.446834, + 45.62168 + ], + [ + -73.447011, + 45.621372 + ], + [ + -73.447396, + 45.620704 + ], + [ + -73.448364, + 45.619075 + ], + [ + -73.448491, + 45.618837 + ], + [ + -73.448632, + 45.618598 + ], + [ + -73.448637, + 45.61859 + ], + [ + -73.44919, + 45.617636 + ], + [ + -73.449512, + 45.617087 + ], + [ + -73.449827, + 45.616539 + ], + [ + -73.450142, + 45.615999 + ], + [ + -73.450551, + 45.61523 + ], + [ + -73.450957, + 45.614433 + ], + [ + -73.451219, + 45.613822 + ], + [ + -73.451496, + 45.613129 + ], + [ + -73.451588, + 45.612886 + ], + [ + -73.451764, + 45.612387 + ], + [ + -73.451963, + 45.611811 + ], + [ + -73.452004, + 45.61167 + ], + [ + -73.452038, + 45.611557 + ], + [ + -73.452151, + 45.611172 + ], + [ + -73.452319, + 45.610623 + ], + [ + -73.452502, + 45.609899 + ], + [ + -73.452742, + 45.608653 + ], + [ + -73.45283, + 45.608213 + ], + [ + -73.452838, + 45.608171 + ], + [ + -73.452894, + 45.607902 + ], + [ + -73.452956, + 45.607582 + ], + [ + -73.45303, + 45.607204 + ], + [ + -73.45313, + 45.606689 + ], + [ + -73.45351, + 45.604734 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453269, + 45.60401 + ], + [ + -73.453124, + 45.603897 + ], + [ + -73.452751, + 45.603609 + ], + [ + -73.452634, + 45.603524 + ], + [ + -73.45156, + 45.602679 + ], + [ + -73.45153, + 45.602655 + ], + [ + -73.451134, + 45.602344 + ], + [ + -73.450997, + 45.602236 + ], + [ + -73.450804, + 45.602087 + ], + [ + -73.450717, + 45.602019 + ], + [ + -73.450711, + 45.601962 + ], + [ + -73.45068, + 45.601918 + ], + [ + -73.450652, + 45.601878 + ], + [ + -73.450633, + 45.601851 + ], + [ + -73.45062, + 45.601823 + ], + [ + -73.450613, + 45.6018 + ], + [ + -73.450612, + 45.601775 + ], + [ + -73.450612, + 45.601745 + ], + [ + -73.450617, + 45.601719 + ], + [ + -73.450626, + 45.601694 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.450329, + 45.600811 + ], + [ + -73.45028, + 45.600747 + ], + [ + -73.45017, + 45.600666 + ], + [ + -73.450081, + 45.60062 + ], + [ + -73.449968, + 45.600603 + ], + [ + -73.449925, + 45.600607 + ], + [ + -73.449868, + 45.600621 + ], + [ + -73.449802, + 45.600661 + ], + [ + -73.449715, + 45.600713 + ], + [ + -73.449674, + 45.600743 + ], + [ + -73.449661, + 45.600772 + ], + [ + -73.449666, + 45.600812 + ], + [ + -73.449924, + 45.601045 + ], + [ + -73.449978, + 45.601072 + ], + [ + -73.450055, + 45.601083 + ], + [ + -73.45017, + 45.60109 + ], + [ + -73.450263, + 45.601099 + ], + [ + -73.450328, + 45.601118 + ], + [ + -73.450379, + 45.601155 + ], + [ + -73.450393, + 45.601201 + ], + [ + -73.450376, + 45.60125 + ], + [ + -73.450362, + 45.601293 + ], + [ + -73.450349, + 45.601366 + ], + [ + -73.450328, + 45.601396 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450247, + 45.601412 + ], + [ + -73.450159, + 45.601408 + ], + [ + -73.450117, + 45.6014 + ], + [ + -73.450076, + 45.601382 + ], + [ + -73.450018, + 45.601356 + ], + [ + -73.449945, + 45.60132 + ], + [ + -73.449881, + 45.6013 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.446713, + 45.59886 + ], + [ + -73.446351, + 45.598594 + ], + [ + -73.446259, + 45.598527 + ], + [ + -73.445261, + 45.597829 + ], + [ + -73.444803, + 45.597518 + ], + [ + -73.443394, + 45.596559 + ], + [ + -73.442992, + 45.59628 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438528, + 45.592975 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.436924, + 45.591152 + ], + [ + -73.437547, + 45.590791 + ], + [ + -73.438173, + 45.590429 + ], + [ + -73.438715, + 45.590114 + ], + [ + -73.438952, + 45.589961 + ], + [ + -73.439421, + 45.589651 + ], + [ + -73.439556, + 45.58957 + ], + [ + -73.43977, + 45.589417 + ], + [ + -73.43999, + 45.589251 + ], + [ + -73.440356, + 45.588972 + ], + [ + -73.440499, + 45.588855 + ], + [ + -73.440774, + 45.588622 + ], + [ + -73.440849, + 45.588559 + ], + [ + -73.441414, + 45.588033 + ], + [ + -73.441626, + 45.587839 + ], + [ + -73.442055, + 45.587448 + ], + [ + -73.442542, + 45.586998 + ], + [ + -73.4435, + 45.586126 + ], + [ + -73.444685, + 45.585042 + ], + [ + -73.445533, + 45.584264 + ], + [ + -73.446073, + 45.583824 + ], + [ + -73.446281, + 45.583662 + ], + [ + -73.446365, + 45.583594 + ], + [ + -73.446509, + 45.583477 + ], + [ + -73.446663, + 45.583334 + ], + [ + -73.446759, + 45.583239 + ], + [ + -73.446885, + 45.583095 + ], + [ + -73.447026, + 45.582915 + ], + [ + -73.44712, + 45.582776 + ], + [ + -73.447199, + 45.582634 + ], + [ + -73.447216, + 45.582605 + ], + [ + -73.447288, + 45.582456 + ], + [ + -73.447348, + 45.582322 + ], + [ + -73.447422, + 45.58211 + ], + [ + -73.447475, + 45.581885 + ], + [ + -73.447497, + 45.581732 + ], + [ + -73.447521, + 45.581602 + ], + [ + -73.447516, + 45.581462 + ], + [ + -73.447513, + 45.581287 + ], + [ + -73.447477, + 45.581057 + ], + [ + -73.447286, + 45.580117 + ], + [ + -73.447144, + 45.579424 + ], + [ + -73.447056, + 45.578992 + ], + [ + -73.447038, + 45.578907 + ], + [ + -73.446989, + 45.578673 + ], + [ + -73.446764, + 45.577557 + ], + [ + -73.446739, + 45.577429 + ], + [ + -73.446738, + 45.577422 + ], + [ + -73.446692, + 45.57717 + ], + [ + -73.446671, + 45.576945 + ], + [ + -73.446671, + 45.57667 + ], + [ + -73.446671, + 45.576571 + ], + [ + -73.44669, + 45.576436 + ], + [ + -73.446707, + 45.576333 + ], + [ + -73.446734, + 45.576243 + ], + [ + -73.446807, + 45.576018 + ], + [ + -73.446886, + 45.575843 + ], + [ + -73.446894, + 45.575825 + ], + [ + -73.447166, + 45.575249 + ], + [ + -73.447388, + 45.574789 + ], + [ + -73.447238, + 45.574749 + ], + [ + -73.446746, + 45.574587 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443252, + 45.573408 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.443147, + 45.572802 + ], + [ + -73.443228, + 45.572879 + ], + [ + -73.443273, + 45.572955 + ], + [ + -73.443271, + 45.573 + ], + [ + -73.443276, + 45.573125 + ], + [ + -73.443281, + 45.573166 + ], + [ + -73.443386, + 45.57326 + ], + [ + -73.443502, + 45.573319 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.44468, + 45.573697 + ], + [ + -73.444697, + 45.573706 + ], + [ + -73.444729, + 45.573713 + ], + [ + -73.444769, + 45.573716 + ], + [ + -73.444831, + 45.573715 + ], + [ + -73.444884, + 45.573708 + ], + [ + -73.44491, + 45.573694 + ], + [ + -73.444932, + 45.573662 + ], + [ + -73.444953, + 45.573633 + ], + [ + -73.44492, + 45.573618 + ], + [ + -73.444872, + 45.573601 + ], + [ + -73.444829, + 45.573598 + ], + [ + -73.44477, + 45.57361 + ], + [ + -73.444749, + 45.573615 + ], + [ + -73.44471, + 45.573635 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.443539, + 45.573203 + ], + [ + -73.44348, + 45.573034 + ], + [ + -73.443427, + 45.572912 + ], + [ + -73.44336, + 45.572841 + ], + [ + -73.443253, + 45.572772 + ], + [ + -73.443199, + 45.572746 + ], + [ + -73.443114, + 45.572731 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.446746, + 45.574587 + ], + [ + -73.446924, + 45.574646 + ], + [ + -73.447238, + 45.574749 + ], + [ + -73.447388, + 45.574789 + ], + [ + -73.447436, + 45.574664 + ], + [ + -73.447747, + 45.574246 + ], + [ + -73.447911, + 45.574048 + ], + [ + -73.448003, + 45.573949 + ], + [ + -73.448105, + 45.573859 + ], + [ + -73.448208, + 45.573776 + ], + [ + -73.448217, + 45.573769 + ], + [ + -73.448342, + 45.573688 + ], + [ + -73.448479, + 45.573616 + ], + [ + -73.448612, + 45.573562 + ], + [ + -73.448944, + 45.573459 + ], + [ + -73.449123, + 45.573428 + ], + [ + -73.449305, + 45.573405 + ], + [ + -73.4495, + 45.573396 + ], + [ + -73.449708, + 45.573401 + ], + [ + -73.450131, + 45.573437 + ], + [ + -73.45057, + 45.573487 + ], + [ + -73.452027, + 45.573685 + ], + [ + -73.45367, + 45.573951 + ], + [ + -73.455009, + 45.57424 + ], + [ + -73.45569, + 45.574389 + ], + [ + -73.456205, + 45.574501 + ], + [ + -73.457846, + 45.574844 + ], + [ + -73.459196, + 45.575101 + ], + [ + -73.460081, + 45.575263 + ], + [ + -73.460408, + 45.575326 + ], + [ + -73.461386, + 45.575517 + ], + [ + -73.462346, + 45.575705 + ], + [ + -73.463166, + 45.575871 + ], + [ + -73.466047, + 45.576484 + ], + [ + -73.467519, + 45.576809 + ], + [ + -73.469081, + 45.577137 + ], + [ + -73.469847, + 45.5773 + ], + [ + -73.46993, + 45.577318 + ], + [ + -73.470408, + 45.57742 + ], + [ + -73.470459, + 45.57743 + ], + [ + -73.474313, + 45.578254 + ], + [ + -73.475326, + 45.578471 + ], + [ + -73.475636, + 45.578538 + ], + [ + -73.475932, + 45.578601 + ], + [ + -73.476433, + 45.578707 + ], + [ + -73.480563, + 45.579583 + ], + [ + -73.481329, + 45.579745 + ], + [ + -73.48155, + 45.579795 + ], + [ + -73.484545, + 45.580447 + ], + [ + -73.485965, + 45.580767 + ], + [ + -73.493552, + 45.582386 + ], + [ + -73.497124, + 45.583147 + ], + [ + -73.498378, + 45.583415 + ], + [ + -73.508333, + 45.585534 + ], + [ + -73.508904, + 45.585656 + ], + [ + -73.509302, + 45.58574 + ], + [ + -73.509739, + 45.585835 + ], + [ + -73.510248, + 45.585943 + ], + [ + -73.510753, + 45.58605 + ], + [ + -73.511089, + 45.586122 + ], + [ + -73.512652, + 45.586456 + ], + [ + -73.513072, + 45.586547 + ], + [ + -73.513383, + 45.586622 + ], + [ + -73.513615, + 45.586679 + ], + [ + -73.513896, + 45.586752 + ], + [ + -73.51435, + 45.586877 + ], + [ + -73.514692, + 45.586978 + ], + [ + -73.514943, + 45.587051 + ], + [ + -73.515214, + 45.587137 + ], + [ + -73.515381, + 45.587189 + ], + [ + -73.515499, + 45.58723 + ], + [ + -73.515615, + 45.587265 + ], + [ + -73.515863, + 45.587347 + ], + [ + -73.516018, + 45.587396 + ], + [ + -73.516093, + 45.587421 + ], + [ + -73.516263, + 45.587478 + ], + [ + -73.516374, + 45.587512 + ], + [ + -73.517083, + 45.587747 + ], + [ + -73.517412, + 45.587855 + ], + [ + -73.517647, + 45.587929 + ], + [ + -73.517898, + 45.588012 + ], + [ + -73.518165, + 45.5881 + ], + [ + -73.518383, + 45.588169 + ], + [ + -73.51862, + 45.588243 + ], + [ + -73.518873, + 45.588329 + ], + [ + -73.519146, + 45.588421 + ], + [ + -73.519592, + 45.588583 + ], + [ + -73.519868, + 45.588673 + ], + [ + -73.520234, + 45.588791 + ], + [ + -73.520667, + 45.588925 + ], + [ + -73.520851, + 45.588978 + ], + [ + -73.521073, + 45.589039 + ], + [ + -73.521333, + 45.589108 + ], + [ + -73.521497, + 45.589152 + ], + [ + -73.521544, + 45.589163 + ], + [ + -73.521823, + 45.58923 + ], + [ + -73.522033, + 45.589281 + ], + [ + -73.522524, + 45.589399 + ], + [ + -73.522914, + 45.589494 + ], + [ + -73.52345, + 45.589622 + ], + [ + -73.523991, + 45.589764 + ], + [ + -73.52438, + 45.58988 + ], + [ + -73.524584, + 45.589945 + ], + [ + -73.524734, + 45.589998 + ], + [ + -73.52493, + 45.590067 + ], + [ + -73.525178, + 45.590158 + ], + [ + -73.525348, + 45.590226 + ], + [ + -73.525533, + 45.5903 + ], + [ + -73.526168, + 45.590581 + ], + [ + -73.526515, + 45.590738 + ], + [ + -73.526839, + 45.590884 + ], + [ + -73.527065, + 45.590977 + ], + [ + -73.527417, + 45.591124 + ], + [ + -73.527746, + 45.591255 + ], + [ + -73.527969, + 45.591342 + ], + [ + -73.528175, + 45.59142 + ], + [ + -73.52845, + 45.591517 + ], + [ + -73.528558, + 45.591559 + ], + [ + -73.528686, + 45.591601 + ], + [ + -73.528843, + 45.591657 + ], + [ + -73.528989, + 45.591705 + ], + [ + -73.529147, + 45.591753 + ], + [ + -73.529298, + 45.591799 + ], + [ + -73.529667, + 45.591896 + ], + [ + -73.530088, + 45.591993 + ], + [ + -73.530428, + 45.592062 + ], + [ + -73.530573, + 45.592092 + ], + [ + -73.530708, + 45.592118 + ], + [ + -73.530821, + 45.59214 + ], + [ + -73.531509, + 45.592269 + ], + [ + -73.531903, + 45.592341 + ], + [ + -73.532263, + 45.592438 + ], + [ + -73.532659, + 45.592533 + ], + [ + -73.532744, + 45.592553 + ], + [ + -73.532915, + 45.592591 + ], + [ + -73.533081, + 45.592632 + ], + [ + -73.533228, + 45.592666 + ], + [ + -73.534254, + 45.592895 + ], + [ + -73.53476, + 45.593005 + ], + [ + -73.535125, + 45.593079 + ], + [ + -73.53543, + 45.59314 + ], + [ + -73.535913, + 45.593237 + ], + [ + -73.536223, + 45.593308 + ], + [ + -73.536422, + 45.593363 + ], + [ + -73.536757, + 45.593427 + ], + [ + -73.536928, + 45.593461 + ], + [ + -73.537323, + 45.593537 + ], + [ + -73.53774, + 45.59364 + ], + [ + -73.538073, + 45.593797 + ], + [ + -73.538329, + 45.593961 + ], + [ + -73.538376, + 45.594194 + ], + [ + -73.538248, + 45.594374 + ], + [ + -73.538003, + 45.594472 + ], + [ + -73.537828, + 45.594497 + ], + [ + -73.537529, + 45.594425 + ], + [ + -73.536539, + 45.594133 + ], + [ + -73.536896, + 45.593513 + ], + [ + -73.536928, + 45.593461 + ], + [ + -73.537021, + 45.593311 + ], + [ + -73.537094, + 45.593191 + ], + [ + -73.537199, + 45.593022 + ], + [ + -73.537249, + 45.59294 + ], + [ + -73.537595, + 45.592349 + ], + [ + -73.538187, + 45.591323 + ], + [ + -73.538445, + 45.590876 + ], + [ + -73.539019, + 45.589891 + ], + [ + -73.538858, + 45.589857 + ], + [ + -73.538782, + 45.58985 + ], + [ + -73.538619, + 45.589794 + ], + [ + -73.537871, + 45.589536 + ], + [ + -73.537763, + 45.589685 + ], + [ + -73.537641, + 45.589854 + ], + [ + -73.53791, + 45.589946 + ], + [ + -73.538217, + 45.59005 + ], + [ + -73.538311, + 45.590083 + ], + [ + -73.538428, + 45.589913 + ], + [ + -73.538041, + 45.58978 + ] + ] + }, + "id": 149, + "properties": { + "id": "e390968a-8f3d-4da1-b558-834b6c1b993f", + "data": { + "gtfs": { + "shape_id": "61_2_A" + }, + "segments": [ + { + "distanceMeters": 581, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 478, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 549, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 554, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 521, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 584, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 1017, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 658, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 502, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 709, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 816, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 390, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 791, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 753, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 873, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 696, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 835, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 587, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 660, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 944, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 778, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 461, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 734, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 827, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 1058, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 810, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 726, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 701, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 636, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 1418, + "travelTimeSeconds": 63 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 22325, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 0, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 23.25, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 19.58, + "averageSpeedWithoutDwellTimesMetersPerSecond": 23.25 + }, + "mode": "bus", + "name": "Métro Radisson", + "color": "#A32638", + "nodes": [ + "ca205394-9833-4e14-b4fa-653c28b9a37d", + "dd170d68-d567-4a2d-8a93-47dec3a52cd1", + "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", + "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", + "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", + "204b558a-c106-4589-888d-4bd6528787b5", + "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", + "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", + "949c3098-32ca-4f3b-81ba-cbe506f68923", + "518135ae-62e9-44c2-bac7-e8c50c56eec9", + "148d4b0f-418e-4993-b335-f1dcd1c4df41", + "568437d9-2de5-4e5e-b111-1a7811ac5c99", + "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", + "6928ef4b-2825-4234-84d9-1c82edb211b0", + "777d67e8-62c3-46b4-a71f-e76a88b45f45", + "d04543e8-f38e-4937-b92b-1bc9ff97fd25", + "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", + "389622d0-ee1f-428b-9366-e69f134ff23e", + "02fef102-0f62-42d0-b4ed-790bc76ef1ad", + "f659a652-a61c-4199-abbc-a42f3ceef5cb", + "90b41412-0c12-4505-b7c9-b915901b1dd2", + "78a9a588-c1f0-470f-bbcc-52b6da866dad", + "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", + "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", + "253353ba-aba2-4e63-bf86-819bb7c9cecd", + "706f0077-9543-4662-8684-a321216a8a90", + "589f0f16-2c87-45fc-856c-d82dc5449f14", + "0778ac37-7369-4d81-abbc-9aa1d13b1c38", + "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", + "039c87a4-2647-4079-9a79-c7d3278ef6b2", + "e2d71c2d-a170-4ce7-a381-519755a00e36", + "a2b2c8d3-da2c-46a1-8009-597d5c6a0c19", + "ca205394-9833-4e14-b4fa-653c28b9a37d" + ], + "stops": [], + "line_id": "edf773b4-79da-4881-a607-1b6f2dc9fb32", + "segments": [ + 0, + 19, + 31, + 45, + 55, + 59, + 72, + 106, + 117, + 127, + 132, + 142, + 155, + 161, + 180, + 249, + 265, + 281, + 299, + 316, + 340, + 398, + 421, + 427, + 435, + 442, + 447, + 449, + 450, + 474, + 503, + 530 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 149, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.477962, + 45.536183 + ], + [ + -73.477686, + 45.536714 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479481, + 45.538072 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.478347, + 45.539271 + ], + [ + -73.478211, + 45.539381 + ], + [ + -73.478021, + 45.539535 + ], + [ + -73.47788, + 45.539657 + ], + [ + -73.476575, + 45.540723 + ], + [ + -73.475701, + 45.541436 + ], + [ + -73.475595, + 45.541524 + ], + [ + -73.475008, + 45.542027 + ], + [ + -73.474845, + 45.542176 + ], + [ + -73.474596, + 45.542482 + ], + [ + -73.474386, + 45.54274 + ], + [ + -73.474133, + 45.543051 + ], + [ + -73.473915, + 45.543318 + ], + [ + -73.473362, + 45.542963 + ], + [ + -73.472636, + 45.54249 + ], + [ + -73.472231, + 45.542247 + ], + [ + -73.471821, + 45.542012 + ], + [ + -73.471763, + 45.541978 + ], + [ + -73.47173, + 45.541959 + ], + [ + -73.471636, + 45.541824 + ], + [ + -73.471767, + 45.541743 + ], + [ + -73.472855, + 45.540974 + ], + [ + -73.473584, + 45.540484 + ], + [ + -73.473775, + 45.540344 + ], + [ + -73.474071, + 45.540124 + ], + [ + -73.474153, + 45.540067 + ], + [ + -73.475129, + 45.539395 + ], + [ + -73.476288, + 45.538569 + ], + [ + -73.476737, + 45.538248 + ], + [ + -73.476875, + 45.538142 + ], + [ + -73.47704, + 45.538015 + ], + [ + -73.477271, + 45.537781 + ], + [ + -73.477387, + 45.537628 + ], + [ + -73.477399, + 45.537608 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477644, + 45.537235 + ], + [ + -73.477761, + 45.537128 + ], + [ + -73.47795, + 45.537029 + ], + [ + -73.478248, + 45.536966 + ], + [ + -73.47847, + 45.536877 + ], + [ + -73.478805, + 45.536643 + ], + [ + -73.479405, + 45.535102 + ], + [ + -73.479448, + 45.534992 + ], + [ + -73.480261, + 45.532909 + ], + [ + -73.480308, + 45.532787 + ], + [ + -73.481263, + 45.530321 + ], + [ + -73.481304, + 45.530061 + ], + [ + -73.481326, + 45.530017 + ], + [ + -73.481353, + 45.529963 + ], + [ + -73.481466, + 45.529737 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.482017, + 45.528653 + ], + [ + -73.482357, + 45.528098 + ], + [ + -73.482414, + 45.528005 + ], + [ + -73.482806, + 45.527438 + ], + [ + -73.483138, + 45.526916 + ], + [ + -73.483206, + 45.526808 + ], + [ + -73.483691, + 45.526075 + ], + [ + -73.484041, + 45.525555 + ], + [ + -73.4841, + 45.525467 + ], + [ + -73.48433, + 45.525112 + ], + [ + -73.484525, + 45.524815 + ], + [ + -73.484791, + 45.524401 + ], + [ + -73.485113, + 45.523913 + ], + [ + -73.48523, + 45.523735 + ], + [ + -73.485667, + 45.523079 + ], + [ + -73.486062, + 45.52248 + ], + [ + -73.486402, + 45.521974 + ], + [ + -73.486488, + 45.521846 + ], + [ + -73.487114, + 45.52091 + ], + [ + -73.487432, + 45.520427 + ], + [ + -73.487508, + 45.520312 + ], + [ + -73.487872, + 45.519763 + ], + [ + -73.488237, + 45.519187 + ], + [ + -73.488494, + 45.518801 + ], + [ + -73.488593, + 45.518652 + ], + [ + -73.488968, + 45.518103 + ], + [ + -73.489152, + 45.517788 + ], + [ + -73.489519, + 45.517242 + ], + [ + -73.489606, + 45.517113 + ], + [ + -73.49002, + 45.51647 + ], + [ + -73.490427, + 45.515876 + ], + [ + -73.490762, + 45.515388 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.491255, + 45.514612 + ], + [ + -73.491732, + 45.513901 + ], + [ + -73.492115, + 45.513322 + ], + [ + -73.492199, + 45.513195 + ], + [ + -73.49237, + 45.512938 + ], + [ + -73.493364, + 45.512745 + ], + [ + -73.493619, + 45.512695 + ], + [ + -73.494452, + 45.512965 + ], + [ + -73.495612, + 45.513332 + ], + [ + -73.495635, + 45.51334 + ], + [ + -73.495774, + 45.513384 + ], + [ + -73.498931, + 45.514382 + ], + [ + -73.499247, + 45.514482 + ], + [ + -73.501091, + 45.515069 + ], + [ + -73.501252, + 45.51512 + ], + [ + -73.501676, + 45.515264 + ], + [ + -73.503119, + 45.515714 + ], + [ + -73.503239, + 45.515746 + ], + [ + -73.503355, + 45.515767 + ], + [ + -73.503487, + 45.515791 + ], + [ + -73.503653, + 45.515813 + ], + [ + -73.504061, + 45.515903 + ], + [ + -73.504906, + 45.516155 + ], + [ + -73.505397, + 45.516314 + ], + [ + -73.505601, + 45.51638 + ], + [ + -73.506087, + 45.516538 + ], + [ + -73.506374, + 45.516632 + ], + [ + -73.506766, + 45.516758 + ], + [ + -73.507004, + 45.516835 + ], + [ + -73.509646, + 45.51769 + ], + [ + -73.509783, + 45.517734 + ], + [ + -73.51201, + 45.518455 + ], + [ + -73.512173, + 45.518508 + ], + [ + -73.513534, + 45.51895 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515002, + 45.519422 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518898, + 45.52063 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522194, + 45.522338 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.521609, + 45.523676 + ], + [ + -73.521556, + 45.52368 + ], + [ + -73.521506, + 45.523698 + ], + [ + -73.521494, + 45.523725 + ], + [ + -73.521489, + 45.523788 + ], + [ + -73.521486, + 45.523819 + ] + ] + }, + "id": 150, + "properties": { + "id": "ce0fc8f6-ca75-444e-b19f-9448525535f4", + "data": { + "gtfs": { + "shape_id": "71_1_A" + }, + "segments": [ + { + "distanceMeters": 338, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 374, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 339, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 693, + "travelTimeSeconds": 181 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7948, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3637.0108816876414, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.3, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 4.73, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.3 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "41617015-5d74-4430-aee6-934b0fd13e70", + "5f672947-8abc-447c-bf60-535abbf76fae", + "31db3d90-e07f-4dbc-995f-00186e6ce5e0", + "1396e79d-a217-431f-ba1d-6596c1924ac0", + "3a5ea563-a764-4bb6-b2d3-d98a1c377161", + "a1edad0a-8432-4850-b895-9d97092489b6", + "f7649797-fc15-4753-8189-cbc65d444f77", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "4b62100a-5cde-4d2b-8815-1a60c1ba3220", + "d488846f-abf4-41f2-9dd0-43b9cbb645a3", + "ec90d5a6-8d45-4327-b9de-7b521004b298", + "250954ca-54cd-4e08-bea5-5c6ef0e42c4e", + "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", + "5bc0109e-fc2a-4d2a-8204-5be74af579b9", + "a87339f4-b5b3-4402-b9ee-9ea1d8fcf569", + "212f4608-5163-4f8c-b126-acfdafddd04a", + "88e6eee9-3b8c-474d-aeb4-599447d404be", + "ee7545d3-966c-460d-94a1-5e0d16623919", + "e88f5f2a-b0b5-4bb5-afb4-833f49fbaeea", + "315b8823-6c3a-493b-9af5-7325cbc48096", + "d76fa63a-1787-4749-9166-b1ecce1f4af2", + "4a0c512f-2ce4-41cc-a200-cf81d75487c1", + "09272548-09d5-4afa-a45f-80ba6dd656dd", + "4070ca4c-584b-43bd-a874-a91871fdf63a", + "9e3f5b7f-c832-420a-b6d0-a87946ebafd2", + "d2f3e0fa-8998-4ca4-96de-f858c0088aad", + "60f00f0f-eca3-4ad1-beab-4b6811c87e8c", + "e66fb997-f83d-42a0-a232-e5b0a94a0caf", + "608948b3-8ac4-493b-a2b3-48bd266c12ab", + "9da92501-0f80-4a3e-b324-83bbfa32d05c", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "1168ae71-ead9-46c4-b667-5aed1e607ad6", + "segments": [ + 0, + 9, + 12, + 16, + 22, + 27, + 36, + 44, + 53, + 55, + 60, + 64, + 67, + 70, + 75, + 79, + 82, + 86, + 90, + 94, + 98, + 104, + 107, + 109, + 114, + 119, + 124, + 125, + 127, + 129, + 134, + 140 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 150, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521486, + 45.523819 + ], + [ + -73.521481, + 45.523874 + ], + [ + -73.52149, + 45.523892 + ], + [ + -73.521509, + 45.523906 + ], + [ + -73.521542, + 45.523919 + ], + [ + -73.521581, + 45.523923 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522215, + 45.522112 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519255, + 45.520728 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514994, + 45.519327 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514253, + 45.51909 + ], + [ + -73.513885, + 45.518962 + ], + [ + -73.51387, + 45.518957 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513317, + 45.518773 + ], + [ + -73.512368, + 45.518467 + ], + [ + -73.51223, + 45.518422 + ], + [ + -73.510168, + 45.517754 + ], + [ + -73.509841, + 45.517649 + ], + [ + -73.506886, + 45.51669 + ], + [ + -73.506681, + 45.516623 + ], + [ + -73.506298, + 45.516497 + ], + [ + -73.506049, + 45.516416 + ], + [ + -73.505657, + 45.516295 + ], + [ + -73.505303, + 45.516177 + ], + [ + -73.504964, + 45.516065 + ], + [ + -73.504125, + 45.515804 + ], + [ + -73.50387, + 45.515738 + ], + [ + -73.503729, + 45.515701 + ], + [ + -73.503503, + 45.515692 + ], + [ + -73.5034, + 45.515678 + ], + [ + -73.503275, + 45.51566 + ], + [ + -73.503167, + 45.515633 + ], + [ + -73.50173, + 45.515183 + ], + [ + -73.50143, + 45.515086 + ], + [ + -73.501301, + 45.515044 + ], + [ + -73.499299, + 45.514405 + ], + [ + -73.499247, + 45.514482 + ], + [ + -73.49901, + 45.514836 + ], + [ + -73.498727, + 45.51526 + ], + [ + -73.49801, + 45.515033 + ], + [ + -73.495404, + 45.514208 + ], + [ + -73.495274, + 45.514166 + ], + [ + -73.493385, + 45.51357 + ], + [ + -73.492199, + 45.513195 + ], + [ + -73.491774, + 45.513837 + ], + [ + -73.491732, + 45.513901 + ], + [ + -73.491255, + 45.514612 + ], + [ + -73.490896, + 45.515186 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.490427, + 45.515876 + ], + [ + -73.49002, + 45.51647 + ], + [ + -73.489669, + 45.517016 + ], + [ + -73.489606, + 45.517113 + ], + [ + -73.489152, + 45.517788 + ], + [ + -73.488968, + 45.518103 + ], + [ + -73.488657, + 45.518558 + ], + [ + -73.488593, + 45.518652 + ], + [ + -73.488237, + 45.519187 + ], + [ + -73.487872, + 45.519763 + ], + [ + -73.487582, + 45.5202 + ], + [ + -73.487508, + 45.520312 + ], + [ + -73.487114, + 45.52091 + ], + [ + -73.486537, + 45.521772 + ], + [ + -73.486488, + 45.521846 + ], + [ + -73.486062, + 45.52248 + ], + [ + -73.485667, + 45.523079 + ], + [ + -73.485333, + 45.52358 + ], + [ + -73.48523, + 45.523735 + ], + [ + -73.484791, + 45.524401 + ], + [ + -73.484525, + 45.524815 + ], + [ + -73.48433, + 45.525112 + ], + [ + -73.484137, + 45.52541 + ], + [ + -73.4841, + 45.525467 + ], + [ + -73.483691, + 45.526075 + ], + [ + -73.483307, + 45.526656 + ], + [ + -73.483206, + 45.526808 + ], + [ + -73.482806, + 45.527438 + ], + [ + -73.482472, + 45.52792 + ], + [ + -73.482414, + 45.528005 + ], + [ + -73.482017, + 45.528653 + ], + [ + -73.481724, + 45.5292 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.481466, + 45.529737 + ], + [ + -73.481445, + 45.529779 + ], + [ + -73.481326, + 45.530017 + ], + [ + -73.481304, + 45.530061 + ], + [ + -73.481198, + 45.530124 + ], + [ + -73.47991, + 45.532587 + ], + [ + -73.479864, + 45.532675 + ], + [ + -73.478747, + 45.534738 + ], + [ + -73.478696, + 45.534834 + ], + [ + -73.478274, + 45.535591 + ], + [ + -73.478188, + 45.535747 + ], + [ + -73.477962, + 45.536183 + ] + ] + }, + "id": 151, + "properties": { + "id": "0b93b409-1945-41ed-ad17-2ba91d169f69", + "data": { + "gtfs": { + "shape_id": "71_1_R" + }, + "segments": [ + { + "distanceMeters": 706, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 353, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 68, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 121 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 92 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 63 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5869, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3637.0108816876414, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.75, + "travelTimeWithoutDwellTimesSeconds": 1020, + "operatingTimeWithLayoverTimeSeconds": 1200, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1020, + "operatingSpeedWithLayoverMetersPerSecond": 4.89, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.75 + }, + "mode": "bus", + "name": "boul. Curé-Poirier", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "608948b3-8ac4-493b-a2b3-48bd266c12ab", + "e66fb997-f83d-42a0-a232-e5b0a94a0caf", + "aaca7ee9-974a-47d8-922b-2905590b6265", + "37e8736b-c9d0-4a33-a437-1f0196c113f1", + "9e3f5b7f-c832-420a-b6d0-a87946ebafd2", + "4070ca4c-584b-43bd-a874-a91871fdf63a", + "3760f02e-7f2c-4906-8d8a-455bbf644cec", + "2c0958f9-14bd-4467-9157-d96db49f68da", + "5e6dbb10-5962-4ed1-802d-bc3c0e5d2742", + "315b8823-6c3a-493b-9af5-7325cbc48096", + "e88f5f2a-b0b5-4bb5-afb4-833f49fbaeea", + "ee7545d3-966c-460d-94a1-5e0d16623919", + "88e6eee9-3b8c-474d-aeb4-599447d404be", + "212f4608-5163-4f8c-b126-acfdafddd04a", + "a87339f4-b5b3-4402-b9ee-9ea1d8fcf569", + "5bc0109e-fc2a-4d2a-8204-5be74af579b9", + "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", + "250954ca-54cd-4e08-bea5-5c6ef0e42c4e", + "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", + "48e0fb78-b91c-4eec-a77a-11ad01e61d0c", + "d488846f-abf4-41f2-9dd0-43b9cbb645a3", + "24abc23f-a2cf-493e-ad62-b789edf9cd26", + "41617015-5d74-4430-aee6-934b0fd13e70" + ], + "stops": [], + "line_id": "1168ae71-ead9-46c4-b667-5aed1e607ad6", + "segments": [ + 0, + 46, + 53, + 60, + 62, + 64, + 69, + 72, + 79, + 85, + 86, + 90, + 93, + 97, + 101, + 105, + 108, + 112, + 117, + 120, + 123, + 126, + 129, + 133, + 135 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 151, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.477962, + 45.536183 + ], + [ + -73.477686, + 45.536714 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.478347, + 45.539271 + ], + [ + -73.478021, + 45.539535 + ], + [ + -73.47788, + 45.539657 + ], + [ + -73.476575, + 45.540723 + ], + [ + -73.475595, + 45.541524 + ], + [ + -73.475008, + 45.542027 + ], + [ + -73.474845, + 45.542176 + ], + [ + -73.474596, + 45.542482 + ], + [ + -73.474386, + 45.54274 + ], + [ + -73.473915, + 45.543318 + ], + [ + -73.473362, + 45.542963 + ], + [ + -73.472636, + 45.54249 + ], + [ + -73.472231, + 45.542247 + ], + [ + -73.471763, + 45.541978 + ], + [ + -73.47173, + 45.541959 + ], + [ + -73.471636, + 45.541824 + ], + [ + -73.471767, + 45.541743 + ], + [ + -73.471798, + 45.541721 + ], + [ + -73.472855, + 45.540974 + ], + [ + -73.473584, + 45.540484 + ], + [ + -73.473775, + 45.540344 + ], + [ + -73.474071, + 45.540124 + ], + [ + -73.475129, + 45.539395 + ], + [ + -73.476288, + 45.538569 + ], + [ + -73.476737, + 45.538248 + ], + [ + -73.476875, + 45.538142 + ], + [ + -73.47704, + 45.538015 + ], + [ + -73.477271, + 45.537781 + ], + [ + -73.477387, + 45.537628 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477644, + 45.537235 + ], + [ + -73.477761, + 45.537128 + ], + [ + -73.47795, + 45.537029 + ], + [ + -73.478248, + 45.536966 + ], + [ + -73.47847, + 45.536877 + ], + [ + -73.478805, + 45.536643 + ], + [ + -73.478827, + 45.536587 + ], + [ + -73.479448, + 45.534992 + ], + [ + -73.480308, + 45.532787 + ], + [ + -73.481263, + 45.530321 + ], + [ + -73.481304, + 45.530061 + ], + [ + -73.481326, + 45.530017 + ], + [ + -73.481466, + 45.529737 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.482017, + 45.528653 + ], + [ + -73.482414, + 45.528005 + ], + [ + -73.482806, + 45.527438 + ], + [ + -73.483206, + 45.526808 + ], + [ + -73.483537, + 45.526307 + ], + [ + -73.483691, + 45.526075 + ], + [ + -73.4841, + 45.525467 + ], + [ + -73.48433, + 45.525112 + ], + [ + -73.484525, + 45.524815 + ], + [ + -73.484791, + 45.524401 + ], + [ + -73.48523, + 45.523735 + ], + [ + -73.485667, + 45.523079 + ], + [ + -73.486062, + 45.52248 + ], + [ + -73.486488, + 45.521846 + ], + [ + -73.487114, + 45.52091 + ], + [ + -73.487508, + 45.520312 + ], + [ + -73.487872, + 45.519763 + ], + [ + -73.488235, + 45.51919 + ], + [ + -73.488237, + 45.519187 + ], + [ + -73.488593, + 45.518652 + ], + [ + -73.488968, + 45.518103 + ], + [ + -73.489152, + 45.517788 + ], + [ + -73.489606, + 45.517113 + ], + [ + -73.49002, + 45.51647 + ], + [ + -73.490427, + 45.515876 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.491255, + 45.514612 + ], + [ + -73.491732, + 45.513901 + ], + [ + -73.492199, + 45.513195 + ], + [ + -73.49237, + 45.512938 + ], + [ + -73.493364, + 45.512745 + ], + [ + -73.493619, + 45.512695 + ], + [ + -73.494452, + 45.512965 + ], + [ + -73.495307, + 45.513236 + ], + [ + -73.495635, + 45.51334 + ], + [ + -73.495774, + 45.513384 + ], + [ + -73.499247, + 45.514482 + ], + [ + -73.501252, + 45.51512 + ], + [ + -73.501676, + 45.515264 + ], + [ + -73.503119, + 45.515714 + ], + [ + -73.503239, + 45.515746 + ], + [ + -73.503487, + 45.515791 + ], + [ + -73.503653, + 45.515813 + ], + [ + -73.504061, + 45.515903 + ], + [ + -73.504906, + 45.516155 + ], + [ + -73.505601, + 45.51638 + ], + [ + -73.506087, + 45.516538 + ], + [ + -73.506374, + 45.516632 + ], + [ + -73.506766, + 45.516758 + ], + [ + -73.509517, + 45.517648 + ], + [ + -73.509783, + 45.517734 + ], + [ + -73.512173, + 45.518508 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522194, + 45.522338 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.521609, + 45.523676 + ], + [ + -73.521556, + 45.52368 + ], + [ + -73.521506, + 45.523698 + ], + [ + -73.521494, + 45.523725 + ], + [ + -73.521489, + 45.523788 + ], + [ + -73.521486, + 45.523819 + ] + ] + }, + "id": 152, + "properties": { + "id": "9b8332d9-ebb1-456d-9866-b7d5e7e3d406", + "data": { + "gtfs": { + "shape_id": "71_1_A" + }, + "segments": [ + { + "distanceMeters": 1352, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 800, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 1204, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 872, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 1012, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 1212, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 1496, + "travelTimeSeconds": 73 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7948, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 167.1576570680154, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 22.08, + "travelTimeWithoutDwellTimesSeconds": 360, + "operatingTimeWithLayoverTimeSeconds": 540, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 360, + "operatingSpeedWithLayoverMetersPerSecond": 14.72, + "averageSpeedWithoutDwellTimesMetersPerSecond": 22.08 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "41617015-5d74-4430-aee6-934b0fd13e70", + "5f672947-8abc-447c-bf60-535abbf76fae", + "31db3d90-e07f-4dbc-995f-00186e6ce5e0", + "1396e79d-a217-431f-ba1d-6596c1924ac0", + "3a5ea563-a764-4bb6-b2d3-d98a1c377161", + "a1edad0a-8432-4850-b895-9d97092489b6", + "f7649797-fc15-4753-8189-cbc65d444f77", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7" + ], + "stops": [], + "line_id": "1168ae71-ead9-46c4-b667-5aed1e607ad6", + "segments": [ + 0, + 27, + 47, + 59, + 72, + 88, + 104 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 152, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.457475, + 45.518459 + ], + [ + -73.457496, + 45.518478 + ], + [ + -73.457557, + 45.518527 + ], + [ + -73.457569, + 45.518527 + ], + [ + -73.457816, + 45.518604 + ], + [ + -73.458054, + 45.518618 + ], + [ + -73.458153, + 45.5186 + ], + [ + -73.458265, + 45.518568 + ], + [ + -73.458385, + 45.518523 + ], + [ + -73.458481, + 45.51846 + ], + [ + -73.458593, + 45.518303 + ], + [ + -73.458982, + 45.517723 + ], + [ + -73.458702, + 45.517621 + ], + [ + -73.458025, + 45.517374 + ], + [ + -73.457868, + 45.517317 + ], + [ + -73.456975, + 45.516997 + ], + [ + -73.456441, + 45.516772 + ], + [ + -73.456248, + 45.516691 + ], + [ + -73.455542, + 45.516417 + ], + [ + -73.455236, + 45.516302 + ], + [ + -73.454979, + 45.516206 + ], + [ + -73.454831, + 45.516151 + ], + [ + -73.454013, + 45.515854 + ], + [ + -73.455202, + 45.514131 + ], + [ + -73.455279, + 45.514018 + ], + [ + -73.456161, + 45.512754 + ], + [ + -73.456504, + 45.512268 + ], + [ + -73.456608, + 45.51212 + ], + [ + -73.456698, + 45.51199 + ], + [ + -73.456753, + 45.511846 + ], + [ + -73.456808, + 45.511652 + ], + [ + -73.456888, + 45.511378 + ], + [ + -73.45704, + 45.510771 + ], + [ + -73.457089, + 45.510627 + ], + [ + -73.457162, + 45.510496 + ], + [ + -73.457236, + 45.510384 + ], + [ + -73.457391, + 45.510154 + ], + [ + -73.457734, + 45.509682 + ], + [ + -73.457832, + 45.509547 + ], + [ + -73.458054, + 45.509219 + ], + [ + -73.458146, + 45.509057 + ], + [ + -73.458208, + 45.508913 + ], + [ + -73.458247, + 45.508832 + ], + [ + -73.458287, + 45.508665 + ], + [ + -73.458312, + 45.508463 + ], + [ + -73.458313, + 45.508315 + ], + [ + -73.458163, + 45.508323 + ], + [ + -73.458045, + 45.508331 + ], + [ + -73.457712, + 45.508354 + ], + [ + -73.456906, + 45.508408 + ], + [ + -73.456055, + 45.508471 + ], + [ + -73.45574, + 45.508494 + ], + [ + -73.454618, + 45.50857 + ], + [ + -73.453912, + 45.508619 + ], + [ + -73.453476, + 45.50865 + ], + [ + -73.452659, + 45.508713 + ], + [ + -73.452308, + 45.50874 + ], + [ + -73.451594, + 45.508784 + ], + [ + -73.451512, + 45.508816 + ], + [ + -73.451476, + 45.508843 + ], + [ + -73.451466, + 45.508892 + ], + [ + -73.451538, + 45.509395 + ], + [ + -73.451588, + 45.509738 + ], + [ + -73.451657, + 45.510181 + ], + [ + -73.451682, + 45.510341 + ], + [ + -73.451973, + 45.510422 + ], + [ + -73.452035, + 45.510443 + ], + [ + -73.452277, + 45.510526 + ], + [ + -73.45322, + 45.510876 + ], + [ + -73.453343, + 45.510922 + ], + [ + -73.454142, + 45.511217 + ], + [ + -73.455144, + 45.511587 + ], + [ + -73.455589, + 45.511751 + ], + [ + -73.456374, + 45.512037 + ], + [ + -73.456479, + 45.512075 + ], + [ + -73.456608, + 45.51212 + ], + [ + -73.457632, + 45.512503 + ], + [ + -73.458519, + 45.512827 + ], + [ + -73.459541, + 45.51322 + ], + [ + -73.45968, + 45.513273 + ], + [ + -73.460138, + 45.51344 + ], + [ + -73.460261, + 45.513273 + ], + [ + -73.460623, + 45.512783 + ], + [ + -73.461001, + 45.512272 + ], + [ + -73.461069, + 45.51218 + ], + [ + -73.461539, + 45.511564 + ], + [ + -73.46197, + 45.510961 + ], + [ + -73.462383, + 45.510395 + ], + [ + -73.462553, + 45.510233 + ], + [ + -73.462779, + 45.510066 + ], + [ + -73.463045, + 45.509936 + ], + [ + -73.463106, + 45.509911 + ], + [ + -73.463381, + 45.509801 + ], + [ + -73.463431, + 45.509882 + ], + [ + -73.463519, + 45.509999 + ], + [ + -73.463611, + 45.510088 + ], + [ + -73.463631, + 45.510107 + ], + [ + -73.463794, + 45.510215 + ], + [ + -73.464529, + 45.510665 + ], + [ + -73.464919, + 45.510915 + ], + [ + -73.465268, + 45.511138 + ], + [ + -73.464982, + 45.511318 + ], + [ + -73.464762, + 45.511493 + ], + [ + -73.464626, + 45.511606 + ], + [ + -73.464478, + 45.511745 + ], + [ + -73.464282, + 45.512001 + ], + [ + -73.463932, + 45.512501 + ], + [ + -73.463557, + 45.513003 + ], + [ + -73.463478, + 45.513108 + ], + [ + -73.463065, + 45.513684 + ], + [ + -73.462747, + 45.514125 + ], + [ + -73.462726, + 45.514155 + ], + [ + -73.462602, + 45.514327 + ], + [ + -73.462954, + 45.51446 + ], + [ + -73.464082, + 45.514885 + ], + [ + -73.465771, + 45.515522 + ], + [ + -73.465949, + 45.515589 + ], + [ + -73.466056, + 45.515628 + ], + [ + -73.466138, + 45.51566 + ], + [ + -73.466232, + 45.515695 + ], + [ + -73.466474, + 45.515795 + ], + [ + -73.466702, + 45.515853 + ], + [ + -73.466807, + 45.515867 + ], + [ + -73.466838, + 45.515871 + ], + [ + -73.466992, + 45.515894 + ], + [ + -73.467576, + 45.515962 + ], + [ + -73.467711, + 45.515993 + ], + [ + -73.467803, + 45.516016 + ], + [ + -73.467947, + 45.51607 + ], + [ + -73.46809, + 45.516124 + ], + [ + -73.468254, + 45.516187 + ], + [ + -73.468571, + 45.51575 + ], + [ + -73.468993, + 45.515905 + ], + [ + -73.472494, + 45.517187 + ], + [ + -73.472524, + 45.517197 + ], + [ + -73.472693, + 45.517254 + ], + [ + -73.473088, + 45.517412 + ], + [ + -73.473656, + 45.51761 + ], + [ + -73.47566, + 45.518326 + ], + [ + -73.476615, + 45.51865 + ], + [ + -73.476759, + 45.51865 + ], + [ + -73.476929, + 45.518627 + ], + [ + -73.477134, + 45.518529 + ], + [ + -73.477396, + 45.518622 + ], + [ + -73.477613, + 45.5187 + ], + [ + -73.477896, + 45.51831 + ], + [ + -73.478269, + 45.517795 + ], + [ + -73.478446, + 45.517555 + ], + [ + -73.478676, + 45.517242 + ], + [ + -73.479419, + 45.517499 + ], + [ + -73.480051, + 45.517717 + ], + [ + -73.480625, + 45.517916 + ], + [ + -73.481238, + 45.518128 + ], + [ + -73.481789, + 45.518318 + ], + [ + -73.481931, + 45.518367 + ], + [ + -73.48228, + 45.51849 + ], + [ + -73.482651, + 45.51862 + ], + [ + -73.484182, + 45.519156 + ], + [ + -73.484224, + 45.519171 + ], + [ + -73.484747, + 45.519354 + ], + [ + -73.484886, + 45.519403 + ], + [ + -73.487078, + 45.520163 + ], + [ + -73.487389, + 45.520271 + ], + [ + -73.487508, + 45.520312 + ], + [ + -73.487872, + 45.520438 + ], + [ + -73.488243, + 45.520566 + ], + [ + -73.490748, + 45.521428 + ], + [ + -73.490877, + 45.521473 + ], + [ + -73.492238, + 45.521946 + ], + [ + -73.493734, + 45.522466 + ], + [ + -73.493855, + 45.522508 + ], + [ + -73.496555, + 45.523453 + ], + [ + -73.496788, + 45.523534 + ], + [ + -73.49715, + 45.52366 + ], + [ + -73.499753, + 45.524564 + ], + [ + -73.499894, + 45.524635 + ], + [ + -73.500013, + 45.524695 + ], + [ + -73.500147, + 45.524758 + ], + [ + -73.500458, + 45.524879 + ], + [ + -73.501143, + 45.525113 + ], + [ + -73.502371, + 45.525517 + ], + [ + -73.502691, + 45.525622 + ], + [ + -73.503591, + 45.525919 + ], + [ + -73.505271, + 45.526473 + ], + [ + -73.505347, + 45.526499 + ], + [ + -73.506628, + 45.52692 + ], + [ + -73.506756, + 45.526962 + ], + [ + -73.507316, + 45.527151 + ], + [ + -73.510077, + 45.528048 + ], + [ + -73.510194, + 45.528086 + ], + [ + -73.510236, + 45.528108 + ], + [ + -73.510285, + 45.528134 + ], + [ + -73.510385, + 45.528186 + ], + [ + -73.510473, + 45.528213 + ], + [ + -73.512606, + 45.528919 + ], + [ + -73.51289, + 45.529013 + ], + [ + -73.513005, + 45.529045 + ], + [ + -73.513248, + 45.529135 + ], + [ + -73.513336, + 45.529202 + ], + [ + -73.513366, + 45.529261 + ], + [ + -73.513446, + 45.529391 + ], + [ + -73.513457, + 45.529436 + ], + [ + -73.51347, + 45.529553 + ], + [ + -73.513494, + 45.529621 + ], + [ + -73.513538, + 45.52967 + ], + [ + -73.513588, + 45.529733 + ], + [ + -73.513638, + 45.529769 + ], + [ + -73.513734, + 45.529818 + ], + [ + -73.514759, + 45.53017 + ], + [ + -73.514771, + 45.530174 + ], + [ + -73.514912, + 45.530221 + ], + [ + -73.516478, + 45.530744 + ], + [ + -73.516786, + 45.530847 + ], + [ + -73.516824, + 45.53086 + ], + [ + -73.516951, + 45.530902 + ], + [ + -73.517254, + 45.531006 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518212, + 45.531168 + ], + [ + -73.51845, + 45.53088 + ], + [ + -73.518608, + 45.530695 + ], + [ + -73.518713, + 45.530574 + ], + [ + -73.518834, + 45.53043 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519035, + 45.530137 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519398, + 45.526003 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 153, + "properties": { + "id": "3e6396bf-57fa-4784-b05f-5d70c2371c5b", + "data": { + "gtfs": { + "shape_id": "73_1_A" + }, + "segments": [ + { + "distanceMeters": 264, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 88, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 90, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 417, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 425, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 310, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 311, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 725, + "travelTimeSeconds": 156 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 116 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10213, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5011.742126295151, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.08, + "travelTimeWithoutDwellTimesSeconds": 1680, + "operatingTimeWithLayoverTimeSeconds": 1860, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1680, + "operatingSpeedWithLayoverMetersPerSecond": 5.49, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.08 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "6fe3defb-8d6f-405c-8fb2-44b73532b240", + "329dac46-2c72-4ec4-aeeb-8492af5be014", + "ff7f9dbf-a0e0-4bfa-86dc-2f9a0bdd5926", + "4ecd13b4-71e4-4328-bc7f-b30325894d82", + "065b0112-1102-48ec-b10a-c88cde002f4f", + "77540404-5599-4bb2-b15d-add1fcb9fe20", + "1fdfd4f4-c553-4a7d-8963-4eb750e13bff", + "98d2ace5-e4e8-4113-91e3-89c01d89a89f", + "3dcc9db5-75c0-46a8-8247-d3d2e0220e07", + "e10756d4-095f-4fec-94fb-19ac7075bc43", + "e7cd0200-d7e2-4808-b4af-d251dcc23019", + "b79429dc-e0f7-44a7-b564-ff6f9831d545", + "065b0112-1102-48ec-b10a-c88cde002f4f", + "d8f16090-e69f-45d8-b535-45f45ab1b739", + "7183eaac-7645-401f-919b-91209487af61", + "3d29747a-7b75-4b0e-ad8a-50eec4e70061", + "5b565a57-bd7f-42f0-a279-0af0bf5f2a4d", + "0751a485-9efa-4491-b69f-eed5163417d8", + "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", + "5ca73944-03b3-4fca-ab1f-781dd6f959a4", + "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", + "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9", + "41c46bd6-8021-4abc-88c9-f9d4d32afe26", + "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", + "40cc5489-ce8f-4df1-916b-c682450d39d7", + "e9c79425-c47b-44ec-82ff-b480b97ceae7", + "e31a1f56-4ede-4f4f-a7a7-2fdbee444a41", + "88e6eee9-3b8c-474d-aeb4-599447d404be", + "a63c10e3-b289-47b6-9867-4d82c043e2cb", + "a76bf032-5164-44ff-92fb-30023319517e", + "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "d41672d0-e186-418e-b20f-1d82b60c3365", + "3166d228-f358-4741-9950-420cebd0aa4c", + "20a17f7f-4c8c-4119-ac8f-7160c6595370", + "43f366d5-ac33-41ca-be94-6282f0233cd1", + "0abd44bc-ce59-4161-a0a7-b31176db0e89", + "05160b93-3ef3-4dd9-83e8-740d2dc282d9", + "1f0868f3-8164-4687-b1c9-c08ae88ce2f3", + "75f8e698-ddc5-4206-bed4-8258ad166d7e", + "4fb4515b-e129-4622-b855-89143c2fd488", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "9f852c1c-4b54-4204-a46d-ef0fcc79ef7a", + "segments": [ + 0, + 13, + 20, + 23, + 26, + 37, + 48, + 50, + 53, + 61, + 63, + 68, + 73, + 78, + 83, + 91, + 99, + 107, + 110, + 115, + 122, + 129, + 134, + 143, + 147, + 153, + 159, + 162, + 166, + 169, + 171, + 175, + 180, + 183, + 185, + 190, + 194, + 210, + 212, + 234 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 153, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519446, + 45.523424 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519332, + 45.526816 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517858, + 45.526792 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517465, + 45.528168 + ], + [ + -73.517458, + 45.528249 + ], + [ + -73.517471, + 45.528385 + ], + [ + -73.517504, + 45.528565 + ], + [ + -73.517516, + 45.528652 + ], + [ + -73.517553, + 45.52877 + ], + [ + -73.517635, + 45.529002 + ], + [ + -73.517693, + 45.529249 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.517924, + 45.530466 + ], + [ + -73.517924, + 45.530565 + ], + [ + -73.517923, + 45.530682 + ], + [ + -73.517904, + 45.530799 + ], + [ + -73.517858, + 45.530853 + ], + [ + -73.517828, + 45.530889 + ], + [ + -73.517788, + 45.53092 + ], + [ + -73.517759, + 45.530933 + ], + [ + -73.517724, + 45.530947 + ], + [ + -73.517669, + 45.530974 + ], + [ + -73.517613, + 45.530983 + ], + [ + -73.517533, + 45.530997 + ], + [ + -73.517254, + 45.531006 + ], + [ + -73.516951, + 45.530902 + ], + [ + -73.516824, + 45.53086 + ], + [ + -73.51664, + 45.530799 + ], + [ + -73.516478, + 45.530744 + ], + [ + -73.514771, + 45.530174 + ], + [ + -73.514759, + 45.53017 + ], + [ + -73.514639, + 45.530129 + ], + [ + -73.513734, + 45.529818 + ], + [ + -73.513638, + 45.529769 + ], + [ + -73.513588, + 45.529733 + ], + [ + -73.513538, + 45.52967 + ], + [ + -73.513494, + 45.529621 + ], + [ + -73.51347, + 45.529553 + ], + [ + -73.513457, + 45.529436 + ], + [ + -73.513446, + 45.529391 + ], + [ + -73.513471, + 45.529252 + ], + [ + -73.513425, + 45.529166 + ], + [ + -73.513314, + 45.529076 + ], + [ + -73.513051, + 45.528977 + ], + [ + -73.51294, + 45.528941 + ], + [ + -73.512091, + 45.528661 + ], + [ + -73.510517, + 45.528141 + ], + [ + -73.510429, + 45.528114 + ], + [ + -73.510285, + 45.528097 + ], + [ + -73.510194, + 45.528086 + ], + [ + -73.509273, + 45.527787 + ], + [ + -73.507529, + 45.52722 + ], + [ + -73.507316, + 45.527151 + ], + [ + -73.506756, + 45.526962 + ], + [ + -73.5055, + 45.526549 + ], + [ + -73.505347, + 45.526499 + ], + [ + -73.503591, + 45.525919 + ], + [ + -73.502833, + 45.525669 + ], + [ + -73.502691, + 45.525622 + ], + [ + -73.501143, + 45.525113 + ], + [ + -73.500458, + 45.524879 + ], + [ + -73.500147, + 45.524758 + ], + [ + -73.500146, + 45.524757 + ], + [ + -73.500013, + 45.524695 + ], + [ + -73.499753, + 45.524564 + ], + [ + -73.49715, + 45.52366 + ], + [ + -73.496944, + 45.523588 + ], + [ + -73.496788, + 45.523534 + ], + [ + -73.49395, + 45.522541 + ], + [ + -73.493855, + 45.522508 + ], + [ + -73.492238, + 45.521946 + ], + [ + -73.490999, + 45.521515 + ], + [ + -73.490877, + 45.521473 + ], + [ + -73.488564, + 45.520676 + ], + [ + -73.488243, + 45.520566 + ], + [ + -73.487872, + 45.520438 + ], + [ + -73.487606, + 45.520346 + ], + [ + -73.487508, + 45.520312 + ], + [ + -73.487078, + 45.520163 + ], + [ + -73.484987, + 45.519438 + ], + [ + -73.484886, + 45.519403 + ], + [ + -73.484224, + 45.519171 + ], + [ + -73.484182, + 45.519156 + ], + [ + -73.482651, + 45.51862 + ], + [ + -73.48228, + 45.51849 + ], + [ + -73.482075, + 45.518418 + ], + [ + -73.481931, + 45.518367 + ], + [ + -73.481238, + 45.518128 + ], + [ + -73.480625, + 45.517916 + ], + [ + -73.479419, + 45.517499 + ], + [ + -73.478857, + 45.517304 + ], + [ + -73.478676, + 45.517242 + ], + [ + -73.478461, + 45.517535 + ], + [ + -73.478269, + 45.517795 + ], + [ + -73.477613, + 45.5187 + ], + [ + -73.477397, + 45.518622 + ], + [ + -73.477236, + 45.518565 + ], + [ + -73.477134, + 45.518529 + ], + [ + -73.476929, + 45.518627 + ], + [ + -73.476759, + 45.51865 + ], + [ + -73.476615, + 45.51865 + ], + [ + -73.47566, + 45.518326 + ], + [ + -73.473656, + 45.51761 + ], + [ + -73.473088, + 45.517412 + ], + [ + -73.472997, + 45.517376 + ], + [ + -73.472693, + 45.517254 + ], + [ + -73.472494, + 45.517187 + ], + [ + -73.468979, + 45.5159 + ], + [ + -73.468571, + 45.51575 + ], + [ + -73.468254, + 45.516187 + ], + [ + -73.467947, + 45.51607 + ], + [ + -73.467803, + 45.516016 + ], + [ + -73.467711, + 45.515993 + ], + [ + -73.467576, + 45.515962 + ], + [ + -73.466992, + 45.515894 + ], + [ + -73.466838, + 45.515871 + ], + [ + -73.466702, + 45.515853 + ], + [ + -73.466474, + 45.515795 + ], + [ + -73.466367, + 45.515751 + ], + [ + -73.466232, + 45.515695 + ], + [ + -73.466138, + 45.51566 + ], + [ + -73.466056, + 45.515628 + ], + [ + -73.465949, + 45.515589 + ], + [ + -73.464082, + 45.514885 + ], + [ + -73.463063, + 45.514501 + ], + [ + -73.462602, + 45.514327 + ], + [ + -73.462726, + 45.514155 + ], + [ + -73.463065, + 45.513684 + ], + [ + -73.463478, + 45.513108 + ], + [ + -73.46386, + 45.512598 + ], + [ + -73.463932, + 45.512501 + ], + [ + -73.464282, + 45.512001 + ], + [ + -73.464478, + 45.511745 + ], + [ + -73.464626, + 45.511606 + ], + [ + -73.464762, + 45.511493 + ], + [ + -73.464982, + 45.511318 + ], + [ + -73.465008, + 45.511301 + ], + [ + -73.465268, + 45.511138 + ], + [ + -73.464812, + 45.510846 + ], + [ + -73.464529, + 45.510665 + ], + [ + -73.463794, + 45.510215 + ], + [ + -73.463631, + 45.510107 + ], + [ + -73.463519, + 45.509999 + ], + [ + -73.463476, + 45.509942 + ], + [ + -73.463431, + 45.509882 + ], + [ + -73.463381, + 45.509801 + ], + [ + -73.463045, + 45.509936 + ], + [ + -73.462779, + 45.510066 + ], + [ + -73.462553, + 45.510233 + ], + [ + -73.462383, + 45.510395 + ], + [ + -73.462003, + 45.510916 + ], + [ + -73.46197, + 45.510961 + ], + [ + -73.461539, + 45.511564 + ], + [ + -73.461157, + 45.512065 + ], + [ + -73.461069, + 45.51218 + ], + [ + -73.460623, + 45.512783 + ], + [ + -73.460194, + 45.513364 + ], + [ + -73.460138, + 45.51344 + ], + [ + -73.459872, + 45.513343 + ], + [ + -73.45968, + 45.513273 + ], + [ + -73.458666, + 45.512884 + ], + [ + -73.458519, + 45.512827 + ], + [ + -73.457632, + 45.512503 + ], + [ + -73.456763, + 45.512178 + ], + [ + -73.456608, + 45.51212 + ], + [ + -73.456479, + 45.512075 + ], + [ + -73.455589, + 45.511751 + ], + [ + -73.455144, + 45.511587 + ], + [ + -73.454142, + 45.511217 + ], + [ + -73.453539, + 45.510994 + ], + [ + -73.453343, + 45.510922 + ], + [ + -73.452277, + 45.510526 + ], + [ + -73.451973, + 45.510422 + ], + [ + -73.451828, + 45.510382 + ], + [ + -73.451682, + 45.510341 + ], + [ + -73.451588, + 45.509738 + ], + [ + -73.451505, + 45.509164 + ], + [ + -73.451466, + 45.508892 + ], + [ + -73.451476, + 45.508843 + ], + [ + -73.451512, + 45.508816 + ], + [ + -73.451594, + 45.508784 + ], + [ + -73.451816, + 45.50877 + ], + [ + -73.452308, + 45.50874 + ], + [ + -73.452659, + 45.508713 + ], + [ + -73.453272, + 45.508666 + ], + [ + -73.453476, + 45.50865 + ], + [ + -73.454618, + 45.50857 + ], + [ + -73.455619, + 45.508502 + ], + [ + -73.45574, + 45.508494 + ], + [ + -73.456906, + 45.508408 + ], + [ + -73.458029, + 45.508333 + ], + [ + -73.458163, + 45.508323 + ], + [ + -73.458169, + 45.508458 + ], + [ + -73.458145, + 45.508652 + ], + [ + -73.458115, + 45.508773 + ], + [ + -73.458072, + 45.508881 + ], + [ + -73.458056, + 45.508918 + ], + [ + -73.458012, + 45.509021 + ], + [ + -73.457924, + 45.509178 + ], + [ + -73.457755, + 45.509426 + ], + [ + -73.457704, + 45.509502 + ], + [ + -73.457273, + 45.510105 + ], + [ + -73.457109, + 45.510339 + ], + [ + -73.457034, + 45.51046 + ], + [ + -73.456955, + 45.5106 + ], + [ + -73.456904, + 45.510748 + ], + [ + -73.456748, + 45.51131 + ], + [ + -73.456616, + 45.511823 + ], + [ + -73.456565, + 45.511954 + ], + [ + -73.456558, + 45.511964 + ], + [ + -73.456479, + 45.512075 + ], + [ + -73.456035, + 45.512709 + ], + [ + -73.455222, + 45.513885 + ], + [ + -73.455157, + 45.513978 + ], + [ + -73.454374, + 45.515104 + ], + [ + -73.454257, + 45.515272 + ], + [ + -73.453884, + 45.515808 + ], + [ + -73.454013, + 45.515854 + ], + [ + -73.454366, + 45.515982 + ], + [ + -73.454831, + 45.516151 + ], + [ + -73.455236, + 45.516302 + ], + [ + -73.455505, + 45.516403 + ], + [ + -73.455542, + 45.516417 + ], + [ + -73.456248, + 45.516691 + ], + [ + -73.456441, + 45.516772 + ], + [ + -73.456975, + 45.516997 + ], + [ + -73.457301, + 45.517114 + ], + [ + -73.457868, + 45.517317 + ], + [ + -73.457427, + 45.517884 + ], + [ + -73.457318, + 45.518118 + ], + [ + -73.457329, + 45.518248 + ], + [ + -73.457353, + 45.518325 + ], + [ + -73.457425, + 45.518415 + ], + [ + -73.457475, + 45.518459 + ] + ] + }, + "id": 154, + "properties": { + "id": "5469b770-5d8c-42ac-80a8-71e88959775f", + "data": { + "gtfs": { + "shape_id": "73_1_R" + }, + "segments": [ + { + "distanceMeters": 1308, + "travelTimeSeconds": 178 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 48 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10117, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5011.742126295151, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.74, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 6.02, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.74 + }, + "mode": "bus", + "name": "de Fontainebleau", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "75f8e698-ddc5-4206-bed4-8258ad166d7e", + "1f0868f3-8164-4687-b1c9-c08ae88ce2f3", + "acba124b-c690-43dc-b717-ae889034a110", + "0bf73f5f-c68a-4a9e-ae23-67c7ea602d08", + "43f366d5-ac33-41ca-be94-6282f0233cd1", + "20a17f7f-4c8c-4119-ac8f-7160c6595370", + "3166d228-f358-4741-9950-420cebd0aa4c", + "d41672d0-e186-418e-b20f-1d82b60c3365", + "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "a76bf032-5164-44ff-92fb-30023319517e", + "a63c10e3-b289-47b6-9867-4d82c043e2cb", + "88e6eee9-3b8c-474d-aeb4-599447d404be", + "e31a1f56-4ede-4f4f-a7a7-2fdbee444a41", + "e9c79425-c47b-44ec-82ff-b480b97ceae7", + "40cc5489-ce8f-4df1-916b-c682450d39d7", + "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", + "41c46bd6-8021-4abc-88c9-f9d4d32afe26", + "ddeef6c2-ef0f-4d9f-a765-534563936049", + "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", + "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", + "0751a485-9efa-4491-b69f-eed5163417d8", + "5b565a57-bd7f-42f0-a279-0af0bf5f2a4d", + "3d29747a-7b75-4b0e-ad8a-50eec4e70061", + "1f1dcc94-03fa-4333-b695-c1027c760604", + "7183eaac-7645-401f-919b-91209487af61", + "d8f16090-e69f-45d8-b535-45f45ab1b739", + "2f3f3f3e-941f-4165-a7c4-41af6cf1cc84", + "065b0112-1102-48ec-b10a-c88cde002f4f", + "b79429dc-e0f7-44a7-b564-ff6f9831d545", + "e7cd0200-d7e2-4808-b4af-d251dcc23019", + "e10756d4-095f-4fec-94fb-19ac7075bc43", + "3dcc9db5-75c0-46a8-8247-d3d2e0220e07", + "98d2ace5-e4e8-4113-91e3-89c01d89a89f", + "1fdfd4f4-c553-4a7d-8963-4eb750e13bff", + "77540404-5599-4bb2-b15d-add1fcb9fe20", + "065b0112-1102-48ec-b10a-c88cde002f4f", + "4ecd13b4-71e4-4328-bc7f-b30325894d82", + "6716e17d-58d0-427c-a6f7-62e8d8197b2a", + "ff7f9dbf-a0e0-4bfa-86dc-2f9a0bdd5926", + "c5f578ca-60dd-46cb-8482-2978ed0e3898", + "6fe3defb-8d6f-405c-8fb2-44b73532b240" + ], + "stops": [], + "line_id": "9f852c1c-4b54-4204-a46d-ef0fcc79ef7a", + "segments": [ + 0, + 65, + 69, + 83, + 88, + 89, + 92, + 95, + 100, + 104, + 106, + 109, + 114, + 117, + 123, + 128, + 134, + 142, + 145, + 156, + 162, + 167, + 174, + 181, + 188, + 191, + 194, + 198, + 201, + 207, + 211, + 214, + 222, + 225, + 228, + 237, + 247, + 250, + 252, + 259, + 264 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 154, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.492289, + 45.54075 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.491774, + 45.540689 + ], + [ + -73.491536, + 45.540936 + ], + [ + -73.491291, + 45.541175 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.490856, + 45.541391 + ], + [ + -73.490437, + 45.541395 + ], + [ + -73.490356, + 45.541476 + ], + [ + -73.490311, + 45.541521 + ], + [ + -73.49018, + 45.541653 + ], + [ + -73.489395, + 45.542444 + ], + [ + -73.488704, + 45.543195 + ], + [ + -73.488001, + 45.543908 + ], + [ + -73.487884, + 45.544027 + ], + [ + -73.48768, + 45.544252 + ], + [ + -73.487059, + 45.544886 + ], + [ + -73.486552, + 45.545435 + ], + [ + -73.486097, + 45.545903 + ], + [ + -73.486005, + 45.545998 + ], + [ + -73.486053, + 45.546041 + ], + [ + -73.486189, + 45.54616 + ], + [ + -73.486468, + 45.546407 + ], + [ + -73.486482, + 45.54642 + ], + [ + -73.486479, + 45.546436 + ], + [ + -73.486458, + 45.546464 + ], + [ + -73.486409, + 45.546515 + ], + [ + -73.486013, + 45.546983 + ], + [ + -73.485652, + 45.547424 + ], + [ + -73.485491, + 45.547622 + ], + [ + -73.485401, + 45.547541 + ], + [ + -73.485366, + 45.547509 + ], + [ + -73.485238, + 45.547406 + ], + [ + -73.484884, + 45.547199 + ], + [ + -73.482637, + 45.545463 + ], + [ + -73.48256, + 45.545403 + ], + [ + -73.483053, + 45.544877 + ], + [ + -73.482584, + 45.544656 + ], + [ + -73.482193, + 45.54447 + ], + [ + -73.482083, + 45.544418 + ], + [ + -73.481629, + 45.544211 + ], + [ + -73.481279, + 45.544013 + ], + [ + -73.480617, + 45.543637 + ], + [ + -73.480477, + 45.543558 + ], + [ + -73.479661, + 45.543171 + ], + [ + -73.47897, + 45.542857 + ], + [ + -73.478849, + 45.542802 + ], + [ + -73.47904, + 45.542608 + ], + [ + -73.480877, + 45.540737 + ], + [ + -73.481259, + 45.540921 + ], + [ + -73.481531, + 45.541053 + ], + [ + -73.48168, + 45.541124 + ], + [ + -73.482506, + 45.541502 + ], + [ + -73.483318, + 45.54188 + ], + [ + -73.484046, + 45.542234 + ], + [ + -73.484143, + 45.542281 + ], + [ + -73.484216, + 45.542206 + ], + [ + -73.485485, + 45.540909 + ], + [ + -73.486028, + 45.540333 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486472, + 45.540363 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.491356, + 45.541251 + ], + [ + -73.491461, + 45.541175 + ], + [ + -73.491486, + 45.541152 + ], + [ + -73.49164, + 45.540995 + ], + [ + -73.49186, + 45.54077 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.493936, + 45.541747 + ], + [ + -73.494874, + 45.542315 + ], + [ + -73.496064, + 45.543035 + ], + [ + -73.496254, + 45.54315 + ], + [ + -73.496791, + 45.543474 + ], + [ + -73.496867, + 45.543519 + ], + [ + -73.499661, + 45.545207 + ], + [ + -73.499752, + 45.545132 + ], + [ + -73.500101, + 45.544844 + ], + [ + -73.500523, + 45.544496 + ], + [ + -73.500751, + 45.544302 + ], + [ + -73.501211, + 45.54392 + ], + [ + -73.501781, + 45.54345 + ], + [ + -73.501834, + 45.543407 + ], + [ + -73.501981, + 45.543281 + ], + [ + -73.502286, + 45.543051 + ], + [ + -73.502846, + 45.54261 + ], + [ + -73.502328, + 45.542295 + ], + [ + -73.502111, + 45.542162 + ], + [ + -73.502034, + 45.542116 + ], + [ + -73.503012, + 45.541243 + ], + [ + -73.503038, + 45.54122 + ], + [ + -73.503066, + 45.541193 + ], + [ + -73.503699, + 45.540599 + ], + [ + -73.504224, + 45.540133 + ], + [ + -73.50482, + 45.539603 + ], + [ + -73.504898, + 45.539533 + ], + [ + -73.504975, + 45.539443 + ], + [ + -73.50558, + 45.538773 + ], + [ + -73.505956, + 45.538332 + ], + [ + -73.50648, + 45.537755 + ], + [ + -73.506577, + 45.537648 + ], + [ + -73.507126, + 45.537027 + ], + [ + -73.507696, + 45.536401 + ], + [ + -73.508162, + 45.535873 + ], + [ + -73.508267, + 45.535753 + ], + [ + -73.508747, + 45.535178 + ], + [ + -73.508996, + 45.534802 + ], + [ + -73.509057, + 45.53471 + ], + [ + -73.509584, + 45.533933 + ], + [ + -73.509676, + 45.533796 + ], + [ + -73.510203, + 45.533014 + ], + [ + -73.510297, + 45.532874 + ], + [ + -73.510341, + 45.532811 + ], + [ + -73.510685, + 45.532302 + ], + [ + -73.511187, + 45.531582 + ], + [ + -73.511629, + 45.530912 + ], + [ + -73.511673, + 45.530845 + ], + [ + -73.512251, + 45.529999 + ], + [ + -73.512894, + 45.529094 + ], + [ + -73.512896, + 45.529091 + ], + [ + -73.512953, + 45.529067 + ], + [ + -73.513005, + 45.529045 + ], + [ + -73.513051, + 45.528977 + ], + [ + -73.513252, + 45.528721 + ], + [ + -73.513325, + 45.528595 + ], + [ + -73.513328, + 45.528589 + ], + [ + -73.513398, + 45.528455 + ], + [ + -73.513452, + 45.528302 + ], + [ + -73.513516, + 45.528104 + ], + [ + -73.513533, + 45.528001 + ], + [ + -73.513546, + 45.527897 + ], + [ + -73.513561, + 45.527753 + ], + [ + -73.51356, + 45.527686 + ], + [ + -73.513558, + 45.527573 + ], + [ + -73.513561, + 45.527191 + ], + [ + -73.513541, + 45.526452 + ], + [ + -73.513539, + 45.526341 + ], + [ + -73.513537, + 45.526287 + ], + [ + -73.513532, + 45.525958 + ], + [ + -73.513526, + 45.525517 + ], + [ + -73.513522, + 45.525432 + ], + [ + -73.513519, + 45.52504 + ], + [ + -73.513516, + 45.524743 + ], + [ + -73.513509, + 45.524386 + ], + [ + -73.513496, + 45.523736 + ], + [ + -73.513488, + 45.523187 + ], + [ + -73.513483, + 45.522998 + ], + [ + -73.51347, + 45.522512 + ], + [ + -73.513465, + 45.522094 + ], + [ + -73.513454, + 45.521135 + ], + [ + -73.513455, + 45.520586 + ], + [ + -73.513456, + 45.520393 + ], + [ + -73.51347, + 45.52019 + ], + [ + -73.513487, + 45.520033 + ], + [ + -73.513501, + 45.519929 + ], + [ + -73.513525, + 45.519803 + ], + [ + -73.51356, + 45.519673 + ], + [ + -73.513601, + 45.519583 + ], + [ + -73.51367, + 45.519425 + ], + [ + -73.513716, + 45.519349 + ], + [ + -73.513785, + 45.519236 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.51499, + 45.519418 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518886, + 45.520627 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.520811, + 45.523427 + ] + ] + }, + "id": 155, + "properties": { + "id": "2782f422-4db3-4a90-adbf-8f2f38bebe61", + "data": { + "gtfs": { + "shape_id": "74_2_A" + }, + "segments": [ + { + "distanceMeters": 234, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 353, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 538, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 439, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 423, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 113, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 846, + "travelTimeSeconds": 196 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8583, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2931.147715673713, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.3, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 4.77, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.3 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "c1b679f5-d94a-4515-826d-dd0fd3e8ca0c", + "e44b3c5f-74b7-4e0a-acc8-bc0a05baf09f", + "b51729a5-1e80-46dd-9ed7-163c961e0d95", + "c4313974-2fe8-435a-a8ec-78bf1341b346", + "1b5000a9-d080-4281-9d35-635cb0e911cd", + "e3a6e93e-902a-4799-a8c4-465418843387", + "2e76faaa-8ff2-48d3-89f2-a3a048b7ecca", + "cdc9ba38-1ba1-4c7e-a7a9-ae7024ff0e4d", + "d7cbf513-910d-43ce-9c34-aa1e924c7d28", + "05e26e6f-35ac-45f7-bc21-12a31eb161dc", + "46596ba7-53c7-438c-8206-a65ed3391683", + "0d1ddd51-f4a3-4891-9182-dbefd8d042a9", + "411bafbe-bac8-4586-9af4-bc0b3163bdde", + "0266ed3c-e279-4178-b7ea-9f611780869a", + "29cae4d6-53eb-4c22-9faf-214af53be38b", + "8634d456-175f-4ee5-a685-5738fae49ba8", + "840bd1e4-f448-41f0-a87f-5dae42946219", + "4e61612c-2f48-47d6-ad42-7c0737853911", + "04ab1113-dedd-49f1-b83b-245bc43e1753", + "400be995-0bb4-471e-9c4c-3e3721339f13", + "65c1dd37-3015-432d-9f39-899ad6f7cc49", + "0cafd6f5-a2c7-4cf8-830a-6909e29ea5a5", + "71c8be20-aaf2-429f-a16b-1898198bf831", + "a38bb101-9e0e-47dc-b58f-8ec1437b1704", + "d3ebe7a8-432f-4ee4-be20-7363589d4629", + "5c162246-d3ef-4a9f-b99a-0c101155442e", + "7c2cb131-4fec-4986-8542-841b59b571c8", + "234e805d-82ab-4d93-bec5-6c8c331d4f7b", + "b412dc8e-18d6-40de-b77b-38439256c33f", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "acabc807-b0f5-4579-b183-cef0484a7cc2" + ], + "stops": [], + "line_id": "ba3d9f18-da7a-4c29-9ded-b203538f6c74", + "segments": [ + 0, + 12, + 15, + 20, + 30, + 36, + 40, + 44, + 47, + 52, + 56, + 60, + 83, + 87, + 93, + 97, + 103, + 110, + 115, + 119, + 122, + 124, + 126, + 131, + 141, + 151, + 159, + 164, + 175, + 180, + 187 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 155, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.520811, + 45.523427 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522224, + 45.522012 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519245, + 45.520729 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514253, + 45.51909 + ], + [ + -73.513885, + 45.518962 + ], + [ + -73.51387, + 45.518957 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.51366, + 45.519196 + ], + [ + -73.513552, + 45.519371 + ], + [ + -73.513541, + 45.519389 + ], + [ + -73.513476, + 45.519506 + ], + [ + -73.513414, + 45.519673 + ], + [ + -73.513365, + 45.519832 + ], + [ + -73.513342, + 45.519907 + ], + [ + -73.513328, + 45.519997 + ], + [ + -73.513311, + 45.520181 + ], + [ + -73.513297, + 45.520388 + ], + [ + -73.513304, + 45.520586 + ], + [ + -73.51331, + 45.521135 + ], + [ + -73.513325, + 45.522121 + ], + [ + -73.513329, + 45.522453 + ], + [ + -73.513335, + 45.523191 + ], + [ + -73.51335, + 45.523736 + ], + [ + -73.513351, + 45.523799 + ], + [ + -73.51336, + 45.524503 + ], + [ + -73.513363, + 45.524689 + ], + [ + -73.513378, + 45.52504 + ], + [ + -73.513377, + 45.525436 + ], + [ + -73.513379, + 45.525517 + ], + [ + -73.513391, + 45.525995 + ], + [ + -73.513398, + 45.526291 + ], + [ + -73.513408, + 45.526678 + ], + [ + -73.513441, + 45.527191 + ], + [ + -73.513439, + 45.527573 + ], + [ + -73.513442, + 45.527753 + ], + [ + -73.513414, + 45.527992 + ], + [ + -73.513387, + 45.528104 + ], + [ + -73.513328, + 45.528284 + ], + [ + -73.513278, + 45.528428 + ], + [ + -73.513176, + 45.528612 + ], + [ + -73.513138, + 45.52868 + ], + [ + -73.51294, + 45.528941 + ], + [ + -73.51289, + 45.529013 + ], + [ + -73.512893, + 45.529054 + ], + [ + -73.512896, + 45.529091 + ], + [ + -73.512894, + 45.529094 + ], + [ + -73.512251, + 45.529999 + ], + [ + -73.511755, + 45.530725 + ], + [ + -73.511673, + 45.530845 + ], + [ + -73.511187, + 45.531582 + ], + [ + -73.510685, + 45.532302 + ], + [ + -73.510412, + 45.532706 + ], + [ + -73.510341, + 45.532811 + ], + [ + -73.510297, + 45.532874 + ], + [ + -73.509786, + 45.533633 + ], + [ + -73.509676, + 45.533796 + ], + [ + -73.509138, + 45.534591 + ], + [ + -73.509057, + 45.53471 + ], + [ + -73.508747, + 45.535178 + ], + [ + -73.508346, + 45.535659 + ], + [ + -73.508267, + 45.535753 + ], + [ + -73.507696, + 45.536401 + ], + [ + -73.507126, + 45.537027 + ], + [ + -73.506677, + 45.537536 + ], + [ + -73.506577, + 45.537648 + ], + [ + -73.505956, + 45.538332 + ], + [ + -73.50558, + 45.538773 + ], + [ + -73.505121, + 45.539282 + ], + [ + -73.504975, + 45.539443 + ], + [ + -73.504898, + 45.539533 + ], + [ + -73.504224, + 45.540133 + ], + [ + -73.50377, + 45.540537 + ], + [ + -73.503699, + 45.540599 + ], + [ + -73.503066, + 45.541193 + ], + [ + -73.503038, + 45.54122 + ], + [ + -73.503012, + 45.541243 + ], + [ + -73.502254, + 45.541919 + ], + [ + -73.502034, + 45.542116 + ], + [ + -73.501988, + 45.542215 + ], + [ + -73.501922, + 45.542287 + ], + [ + -73.501896, + 45.542336 + ], + [ + -73.501899, + 45.542395 + ], + [ + -73.501984, + 45.542655 + ], + [ + -73.502028, + 45.542939 + ], + [ + -73.502024, + 45.542997 + ], + [ + -73.501981, + 45.543281 + ], + [ + -73.501834, + 45.543407 + ], + [ + -73.501211, + 45.54392 + ], + [ + -73.500872, + 45.544202 + ], + [ + -73.500751, + 45.544302 + ], + [ + -73.500523, + 45.544496 + ], + [ + -73.499788, + 45.545102 + ], + [ + -73.499752, + 45.545132 + ], + [ + -73.499661, + 45.545207 + ], + [ + -73.496867, + 45.543519 + ], + [ + -73.496791, + 45.543474 + ], + [ + -73.496378, + 45.543225 + ], + [ + -73.496254, + 45.54315 + ], + [ + -73.494874, + 45.542315 + ], + [ + -73.493936, + 45.541747 + ], + [ + -73.492289, + 45.54075 + ] + ] + }, + "id": 156, + "properties": { + "id": "5ea3f58b-4695-414f-b7b6-47f6ca482040", + "data": { + "gtfs": { + "shape_id": "74_1_R" + }, + "segments": [ + { + "distanceMeters": 631, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 571, + "travelTimeSeconds": 79 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 353, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 421, + "travelTimeSeconds": 81 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5095, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2931.1477156737124, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.06, + "travelTimeWithoutDwellTimesSeconds": 840, + "operatingTimeWithLayoverTimeSeconds": 1020, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 840, + "operatingSpeedWithLayoverMetersPerSecond": 4.99, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.06 + }, + "mode": "bus", + "name": "Sect. Bellerive", + "color": "#A32638", + "nodes": [ + "acabc807-b0f5-4579-b183-cef0484a7cc2", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "a4d70496-3fc5-40c1-865f-08991bdf0a19", + "3e3330f1-b4ce-44de-ae6a-efb45bab99e2", + "7c2cb131-4fec-4986-8542-841b59b571c8", + "474f6d90-0342-4671-a3ab-be4a9490140d", + "1c9586e9-c28e-4ee4-84b8-583c2c8a23be", + "a38bb101-9e0e-47dc-b58f-8ec1437b1704", + "71c8be20-aaf2-429f-a16b-1898198bf831", + "0cafd6f5-a2c7-4cf8-830a-6909e29ea5a5", + "65c1dd37-3015-432d-9f39-899ad6f7cc49", + "400be995-0bb4-471e-9c4c-3e3721339f13", + "04ab1113-dedd-49f1-b83b-245bc43e1753", + "7f65f816-23ac-464f-829f-09002e2fc4f7", + "337549aa-ba36-4710-9a0e-ef42ab0adcd5", + "840bd1e4-f448-41f0-a87f-5dae42946219", + "038fb8b8-8fc5-42c2-a9eb-69fdd39d83de", + "29cae4d6-53eb-4c22-9faf-214af53be38b", + "0266ed3c-e279-4178-b7ea-9f611780869a", + "c1b679f5-d94a-4515-826d-dd0fd3e8ca0c" + ], + "stops": [], + "line_id": "ba3d9f18-da7a-4c29-9ded-b203538f6c74", + "segments": [ + 0, + 39, + 56, + 63, + 68, + 73, + 83, + 91, + 95, + 98, + 100, + 103, + 107, + 111, + 115, + 120, + 132, + 135, + 140 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 156, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.492289, + 45.54075 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.491774, + 45.540689 + ], + [ + -73.491536, + 45.540936 + ], + [ + -73.491291, + 45.541175 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.490856, + 45.541391 + ], + [ + -73.490437, + 45.541395 + ], + [ + -73.490356, + 45.541476 + ], + [ + -73.490311, + 45.541521 + ], + [ + -73.49018, + 45.541653 + ], + [ + -73.489395, + 45.542444 + ], + [ + -73.488704, + 45.543195 + ], + [ + -73.488001, + 45.543908 + ], + [ + -73.487884, + 45.544027 + ], + [ + -73.48768, + 45.544252 + ], + [ + -73.487059, + 45.544886 + ], + [ + -73.486552, + 45.545435 + ], + [ + -73.486097, + 45.545903 + ], + [ + -73.486005, + 45.545998 + ], + [ + -73.486053, + 45.546041 + ], + [ + -73.486189, + 45.54616 + ], + [ + -73.486468, + 45.546407 + ], + [ + -73.486482, + 45.54642 + ], + [ + -73.486479, + 45.546436 + ], + [ + -73.486458, + 45.546464 + ], + [ + -73.486409, + 45.546515 + ], + [ + -73.486013, + 45.546983 + ], + [ + -73.485652, + 45.547424 + ], + [ + -73.485491, + 45.547622 + ], + [ + -73.485401, + 45.547541 + ], + [ + -73.485366, + 45.547509 + ], + [ + -73.485238, + 45.547406 + ], + [ + -73.484884, + 45.547199 + ], + [ + -73.482637, + 45.545463 + ], + [ + -73.48256, + 45.545403 + ], + [ + -73.483053, + 45.544877 + ], + [ + -73.482584, + 45.544656 + ], + [ + -73.482193, + 45.54447 + ], + [ + -73.482083, + 45.544418 + ], + [ + -73.481629, + 45.544211 + ], + [ + -73.481279, + 45.544013 + ], + [ + -73.480617, + 45.543637 + ], + [ + -73.480477, + 45.543558 + ], + [ + -73.479661, + 45.543171 + ], + [ + -73.47897, + 45.542857 + ], + [ + -73.478849, + 45.542802 + ], + [ + -73.47904, + 45.542608 + ], + [ + -73.480877, + 45.540737 + ], + [ + -73.481259, + 45.540921 + ], + [ + -73.481531, + 45.541053 + ], + [ + -73.48168, + 45.541124 + ], + [ + -73.482506, + 45.541502 + ], + [ + -73.483318, + 45.54188 + ], + [ + -73.484046, + 45.542234 + ], + [ + -73.484143, + 45.542281 + ], + [ + -73.484216, + 45.542206 + ], + [ + -73.485485, + 45.540909 + ], + [ + -73.486028, + 45.540333 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486472, + 45.540363 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.491356, + 45.541251 + ], + [ + -73.491461, + 45.541175 + ], + [ + -73.491486, + 45.541152 + ], + [ + -73.49164, + 45.540995 + ], + [ + -73.49186, + 45.54077 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.493936, + 45.541747 + ], + [ + -73.494874, + 45.542315 + ], + [ + -73.496064, + 45.543035 + ], + [ + -73.496254, + 45.54315 + ], + [ + -73.496791, + 45.543474 + ], + [ + -73.496867, + 45.543519 + ], + [ + -73.499661, + 45.545207 + ], + [ + -73.499752, + 45.545132 + ], + [ + -73.500101, + 45.544844 + ], + [ + -73.500523, + 45.544496 + ], + [ + -73.500751, + 45.544302 + ], + [ + -73.501211, + 45.54392 + ], + [ + -73.501781, + 45.54345 + ], + [ + -73.501834, + 45.543407 + ], + [ + -73.501981, + 45.543281 + ], + [ + -73.502286, + 45.543051 + ], + [ + -73.502846, + 45.54261 + ], + [ + -73.502328, + 45.542295 + ], + [ + -73.502111, + 45.542162 + ], + [ + -73.502034, + 45.542116 + ], + [ + -73.503012, + 45.541243 + ], + [ + -73.503038, + 45.54122 + ], + [ + -73.503066, + 45.541193 + ], + [ + -73.503699, + 45.540599 + ], + [ + -73.504224, + 45.540133 + ], + [ + -73.50482, + 45.539603 + ], + [ + -73.504898, + 45.539533 + ], + [ + -73.504975, + 45.539443 + ], + [ + -73.50558, + 45.538773 + ], + [ + -73.505956, + 45.538332 + ], + [ + -73.50648, + 45.537755 + ], + [ + -73.506577, + 45.537648 + ], + [ + -73.507126, + 45.537027 + ], + [ + -73.507696, + 45.536401 + ], + [ + -73.508162, + 45.535873 + ], + [ + -73.508267, + 45.535753 + ], + [ + -73.508747, + 45.535178 + ], + [ + -73.508996, + 45.534802 + ], + [ + -73.509057, + 45.53471 + ], + [ + -73.509584, + 45.533933 + ], + [ + -73.509676, + 45.533796 + ], + [ + -73.510203, + 45.533014 + ], + [ + -73.510297, + 45.532874 + ], + [ + -73.510341, + 45.532811 + ], + [ + -73.510685, + 45.532302 + ], + [ + -73.511187, + 45.531582 + ], + [ + -73.511629, + 45.530912 + ], + [ + -73.511673, + 45.530845 + ], + [ + -73.512251, + 45.529999 + ], + [ + -73.512894, + 45.529094 + ], + [ + -73.512896, + 45.529091 + ], + [ + -73.512953, + 45.529067 + ], + [ + -73.513005, + 45.529045 + ], + [ + -73.513051, + 45.528977 + ], + [ + -73.513252, + 45.528721 + ], + [ + -73.513325, + 45.528595 + ], + [ + -73.513328, + 45.528589 + ], + [ + -73.513398, + 45.528455 + ], + [ + -73.513452, + 45.528302 + ], + [ + -73.513516, + 45.528104 + ], + [ + -73.513533, + 45.528001 + ], + [ + -73.513546, + 45.527897 + ], + [ + -73.513561, + 45.527753 + ], + [ + -73.51356, + 45.527686 + ], + [ + -73.513558, + 45.527573 + ], + [ + -73.513561, + 45.527191 + ], + [ + -73.513541, + 45.526452 + ], + [ + -73.513539, + 45.526341 + ], + [ + -73.513537, + 45.526287 + ], + [ + -73.513532, + 45.525958 + ], + [ + -73.513526, + 45.525517 + ], + [ + -73.513522, + 45.525432 + ], + [ + -73.513519, + 45.52504 + ], + [ + -73.513516, + 45.524743 + ], + [ + -73.513509, + 45.524386 + ], + [ + -73.513496, + 45.523736 + ], + [ + -73.513488, + 45.523187 + ], + [ + -73.513483, + 45.522998 + ], + [ + -73.51347, + 45.522512 + ], + [ + -73.513465, + 45.522094 + ], + [ + -73.513454, + 45.521135 + ], + [ + -73.513455, + 45.520586 + ], + [ + -73.513456, + 45.520393 + ], + [ + -73.51347, + 45.52019 + ], + [ + -73.513487, + 45.520033 + ], + [ + -73.513501, + 45.519929 + ], + [ + -73.513525, + 45.519803 + ], + [ + -73.51356, + 45.519673 + ], + [ + -73.513601, + 45.519583 + ], + [ + -73.51367, + 45.519425 + ], + [ + -73.513716, + 45.519349 + ], + [ + -73.513785, + 45.519236 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.51499, + 45.519418 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518886, + 45.520627 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.520811, + 45.523427 + ] + ] + }, + "id": 157, + "properties": { + "id": "2269ed5b-ceb4-452c-ad1b-020d2b6c69b1", + "data": { + "gtfs": { + "shape_id": "74_1_A" + }, + "segments": [ + { + "distanceMeters": 234, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 353, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 538, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 439, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 423, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 113, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 846, + "travelTimeSeconds": 174 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8583, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2931.147715673713, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.5, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 4.93, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.5 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "c1b679f5-d94a-4515-826d-dd0fd3e8ca0c", + "e44b3c5f-74b7-4e0a-acc8-bc0a05baf09f", + "b51729a5-1e80-46dd-9ed7-163c961e0d95", + "c4313974-2fe8-435a-a8ec-78bf1341b346", + "1b5000a9-d080-4281-9d35-635cb0e911cd", + "e3a6e93e-902a-4799-a8c4-465418843387", + "2e76faaa-8ff2-48d3-89f2-a3a048b7ecca", + "cdc9ba38-1ba1-4c7e-a7a9-ae7024ff0e4d", + "d7cbf513-910d-43ce-9c34-aa1e924c7d28", + "05e26e6f-35ac-45f7-bc21-12a31eb161dc", + "46596ba7-53c7-438c-8206-a65ed3391683", + "0d1ddd51-f4a3-4891-9182-dbefd8d042a9", + "411bafbe-bac8-4586-9af4-bc0b3163bdde", + "0266ed3c-e279-4178-b7ea-9f611780869a", + "29cae4d6-53eb-4c22-9faf-214af53be38b", + "8634d456-175f-4ee5-a685-5738fae49ba8", + "840bd1e4-f448-41f0-a87f-5dae42946219", + "4e61612c-2f48-47d6-ad42-7c0737853911", + "04ab1113-dedd-49f1-b83b-245bc43e1753", + "400be995-0bb4-471e-9c4c-3e3721339f13", + "65c1dd37-3015-432d-9f39-899ad6f7cc49", + "0cafd6f5-a2c7-4cf8-830a-6909e29ea5a5", + "71c8be20-aaf2-429f-a16b-1898198bf831", + "a38bb101-9e0e-47dc-b58f-8ec1437b1704", + "d3ebe7a8-432f-4ee4-be20-7363589d4629", + "5c162246-d3ef-4a9f-b99a-0c101155442e", + "7c2cb131-4fec-4986-8542-841b59b571c8", + "234e805d-82ab-4d93-bec5-6c8c331d4f7b", + "b412dc8e-18d6-40de-b77b-38439256c33f", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "acabc807-b0f5-4579-b183-cef0484a7cc2" + ], + "stops": [], + "line_id": "ba3d9f18-da7a-4c29-9ded-b203538f6c74", + "segments": [ + 0, + 12, + 15, + 20, + 30, + 36, + 40, + 44, + 47, + 52, + 56, + 60, + 83, + 87, + 93, + 97, + 103, + 110, + 115, + 119, + 122, + 124, + 126, + 131, + 141, + 151, + 159, + 164, + 175, + 180, + 187 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 157, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.464983, + 45.520729 + ], + [ + -73.46486, + 45.520895 + ], + [ + -73.464878, + 45.520901 + ], + [ + -73.464952, + 45.520927 + ], + [ + -73.465718, + 45.521198 + ], + [ + -73.467193, + 45.521726 + ], + [ + -73.468184, + 45.522081 + ], + [ + -73.468838, + 45.522313 + ], + [ + -73.468996, + 45.522369 + ], + [ + -73.469137, + 45.522183 + ], + [ + -73.4694, + 45.521838 + ], + [ + -73.469592, + 45.521572 + ], + [ + -73.469782, + 45.521307 + ], + [ + -73.472273, + 45.522194 + ], + [ + -73.472365, + 45.522221 + ], + [ + -73.472449, + 45.522239 + ], + [ + -73.472533, + 45.522244 + ], + [ + -73.472695, + 45.522222 + ], + [ + -73.473177, + 45.522159 + ], + [ + -73.473235, + 45.522395 + ], + [ + -73.473364, + 45.522923 + ], + [ + -73.473544, + 45.523567 + ], + [ + -73.473606, + 45.523607 + ], + [ + -73.473836, + 45.523655 + ], + [ + -73.474023, + 45.523693 + ], + [ + -73.477228, + 45.524781 + ], + [ + -73.477339, + 45.524818 + ], + [ + -73.480209, + 45.525784 + ], + [ + -73.480349, + 45.525831 + ], + [ + -73.482756, + 45.526654 + ], + [ + -73.483206, + 45.526808 + ], + [ + -73.48624, + 45.527837 + ], + [ + -73.486324, + 45.527866 + ], + [ + -73.488239, + 45.52853 + ], + [ + -73.488593, + 45.528653 + ], + [ + -73.490396, + 45.529257 + ], + [ + -73.4904, + 45.529257 + ], + [ + -73.490523, + 45.529279 + ], + [ + -73.493082, + 45.530154 + ], + [ + -73.493221, + 45.530202 + ], + [ + -73.493403, + 45.529945 + ], + [ + -73.493736, + 45.529477 + ], + [ + -73.494083, + 45.528958 + ], + [ + -73.494145, + 45.528865 + ], + [ + -73.494363, + 45.528568 + ], + [ + -73.494718, + 45.528046 + ], + [ + -73.494816, + 45.527903 + ], + [ + -73.495197, + 45.528015 + ], + [ + -73.495362, + 45.52806 + ], + [ + -73.495453, + 45.528078 + ], + [ + -73.495497, + 45.528087 + ], + [ + -73.495567, + 45.528087 + ], + [ + -73.495797, + 45.528078 + ], + [ + -73.495971, + 45.528083 + ], + [ + -73.496095, + 45.528092 + ], + [ + -73.496147, + 45.528092 + ], + [ + -73.496204, + 45.528146 + ], + [ + -73.49645, + 45.528221 + ], + [ + -73.496584, + 45.528263 + ], + [ + -73.498361, + 45.528857 + ], + [ + -73.498495, + 45.528901 + ], + [ + -73.50108, + 45.529766 + ], + [ + -73.501294, + 45.529837 + ], + [ + -73.504093, + 45.530787 + ], + [ + -73.504601, + 45.530957 + ], + [ + -73.505899, + 45.531394 + ], + [ + -73.5077, + 45.531998 + ], + [ + -73.507857, + 45.532051 + ], + [ + -73.510172, + 45.532831 + ], + [ + -73.510297, + 45.532874 + ], + [ + -73.512251, + 45.533535 + ], + [ + -73.512873, + 45.533746 + ], + [ + -73.514731, + 45.534379 + ], + [ + -73.514842, + 45.53442 + ], + [ + -73.514898, + 45.534357 + ], + [ + -73.515048, + 45.534191 + ], + [ + -73.515145, + 45.534084 + ], + [ + -73.515317, + 45.533897 + ], + [ + -73.515372, + 45.533842 + ], + [ + -73.515504, + 45.533699 + ], + [ + -73.515508, + 45.533694 + ], + [ + -73.515888, + 45.533287 + ], + [ + -73.515986, + 45.533193 + ], + [ + -73.516613, + 45.532649 + ], + [ + -73.516729, + 45.532549 + ], + [ + -73.517579, + 45.531802 + ], + [ + -73.517925, + 45.531464 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518212, + 45.531168 + ], + [ + -73.51845, + 45.53088 + ], + [ + -73.518608, + 45.530695 + ], + [ + -73.518713, + 45.530574 + ], + [ + -73.518834, + 45.53043 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519398, + 45.526003 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.521017, + 45.523892 + ], + [ + -73.521053, + 45.523883 + ], + [ + -73.521061, + 45.523869 + ], + [ + -73.521065, + 45.523851 + ], + [ + -73.521071, + 45.523799 + ] + ] + }, + "id": 158, + "properties": { + "id": "73699353-1163-43bc-a7f2-a855651c85af", + "data": { + "gtfs": { + "shape_id": "75_1_A" + }, + "segments": [ + { + "distanceMeters": 225, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 113, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 636, + "travelTimeSeconds": 151 + }, + { + "distanceMeters": 471, + "travelTimeSeconds": 112 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6190, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4425.628912314127, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.07, + "travelTimeWithoutDwellTimesSeconds": 1020, + "operatingTimeWithLayoverTimeSeconds": 1200, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1020, + "operatingSpeedWithLayoverMetersPerSecond": 5.16, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.07 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "39c3eab5-6995-4187-aaec-6f0b6badd5cf", + "a19868d7-c9fb-4897-bf6a-82b0033e3c99", + "04824713-a1de-4a19-8b1a-89e11d974239", + "155dd6bc-ae76-4503-8b2b-d216841c4707", + "1426b4ef-4dd9-466b-8c3e-012df230f19a", + "75f82802-187b-4386-b435-5da7ab066898", + "30b4855a-ec3f-4079-bee1-0b92e6c4e1b7", + "1926fe87-9eee-4758-bf0a-1f846178b541", + "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", + "1d3f02c5-7aee-413f-85a4-ed64749a6a77", + "db8d9e51-701d-47ce-b55e-d7d57227adcb", + "37861c82-a45a-4026-bde0-eec4ce121a64", + "26271fe7-0782-47bf-8004-074c0d15a687", + "b9fb2a74-12ac-47e5-aa61-be591a0ecc88", + "b698a0cc-85d5-482c-b2a6-121d92347ec2", + "823b1092-4711-483c-9263-9ad04625e16e", + "477ced41-131e-4c2f-8fce-4f1ed3d08b09", + "9cff00e1-2ab5-4f6d-8e36-32c660c30d08", + "91d2eb2a-bbfe-4d2d-887b-5ab9a417b7e2", + "2b80c3a0-2156-4dd8-b0cd-326bc34d2ed2", + "71c8be20-aaf2-429f-a16b-1898198bf831", + "cab743f1-61f7-4321-bc18-32e2897e9a10", + "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "649e6394-9376-40eb-bc0e-4a376a0044aa", + "4fb4515b-e129-4622-b855-89143c2fd488", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "ceb81ce7-4f5a-4b36-ba17-e4d6ee601c1f", + "segments": [ + 0, + 5, + 7, + 11, + 17, + 23, + 25, + 27, + 29, + 31, + 33, + 36, + 38, + 42, + 45, + 57, + 59, + 61, + 64, + 66, + 68, + 71, + 80, + 83, + 86, + 103 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 158, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521071, + 45.523799 + ], + [ + -73.521073, + 45.52378 + ], + [ + -73.521082, + 45.523698 + ], + [ + -73.521077, + 45.523679 + ], + [ + -73.52106, + 45.523665 + ], + [ + -73.521034, + 45.523659 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519057, + 45.525166 + ], + [ + -73.518828, + 45.525169 + ], + [ + -73.518662, + 45.525195 + ], + [ + -73.518477, + 45.525222 + ], + [ + -73.51841, + 45.525229 + ], + [ + -73.518309, + 45.525233 + ], + [ + -73.518165, + 45.525238 + ], + [ + -73.517846, + 45.525224 + ], + [ + -73.516858, + 45.525188 + ], + [ + -73.516329, + 45.525185 + ], + [ + -73.51586, + 45.52522 + ], + [ + -73.515879, + 45.525306 + ], + [ + -73.515954, + 45.525625 + ], + [ + -73.515993, + 45.52576 + ], + [ + -73.516048, + 45.525946 + ], + [ + -73.516108, + 45.52615 + ], + [ + -73.51612, + 45.526192 + ], + [ + -73.516245, + 45.52653 + ], + [ + -73.516302, + 45.526687 + ], + [ + -73.516434, + 45.526894 + ], + [ + -73.517006, + 45.527735 + ], + [ + -73.517118, + 45.52798 + ], + [ + -73.517261, + 45.528296 + ], + [ + -73.517272, + 45.52832 + ], + [ + -73.517504, + 45.528922 + ], + [ + -73.517577, + 45.529094 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.517456, + 45.531762 + ], + [ + -73.516901, + 45.532276 + ], + [ + -73.51664, + 45.532518 + ], + [ + -73.515885, + 45.533161 + ], + [ + -73.515753, + 45.533238 + ], + [ + -73.515672, + 45.533321 + ], + [ + -73.515326, + 45.53371 + ], + [ + -73.515257, + 45.533788 + ], + [ + -73.515202, + 45.533848 + ], + [ + -73.514831, + 45.534265 + ], + [ + -73.514791, + 45.534311 + ], + [ + -73.514372, + 45.534169 + ], + [ + -73.513081, + 45.533732 + ], + [ + -73.5123, + 45.533467 + ], + [ + -73.510526, + 45.532873 + ], + [ + -73.510341, + 45.532811 + ], + [ + -73.508089, + 45.532051 + ], + [ + -73.5079, + 45.531988 + ], + [ + -73.50594, + 45.531331 + ], + [ + -73.50432, + 45.530785 + ], + [ + -73.504137, + 45.530724 + ], + [ + -73.501539, + 45.529843 + ], + [ + -73.501337, + 45.529774 + ], + [ + -73.498713, + 45.528902 + ], + [ + -73.498535, + 45.528843 + ], + [ + -73.4968, + 45.52825 + ], + [ + -73.496653, + 45.5282 + ], + [ + -73.496381, + 45.528119 + ], + [ + -73.496239, + 45.528083 + ], + [ + -73.496147, + 45.528092 + ], + [ + -73.496095, + 45.528092 + ], + [ + -73.495971, + 45.528083 + ], + [ + -73.495797, + 45.528078 + ], + [ + -73.495567, + 45.528087 + ], + [ + -73.495497, + 45.528087 + ], + [ + -73.49548, + 45.528084 + ], + [ + -73.495453, + 45.528078 + ], + [ + -73.495362, + 45.52806 + ], + [ + -73.495197, + 45.528015 + ], + [ + -73.494816, + 45.527903 + ], + [ + -73.494618, + 45.528194 + ], + [ + -73.494363, + 45.528568 + ], + [ + -73.494209, + 45.528778 + ], + [ + -73.494145, + 45.528865 + ], + [ + -73.493736, + 45.529477 + ], + [ + -73.493297, + 45.530095 + ], + [ + -73.493221, + 45.530202 + ], + [ + -73.492644, + 45.530004 + ], + [ + -73.490632, + 45.529316 + ], + [ + -73.490523, + 45.529279 + ], + [ + -73.490396, + 45.529257 + ], + [ + -73.488761, + 45.52871 + ], + [ + -73.488593, + 45.528653 + ], + [ + -73.486474, + 45.527918 + ], + [ + -73.486324, + 45.527866 + ], + [ + -73.483382, + 45.526868 + ], + [ + -73.483206, + 45.526808 + ], + [ + -73.480548, + 45.525899 + ], + [ + -73.480349, + 45.525831 + ], + [ + -73.477602, + 45.524907 + ], + [ + -73.477339, + 45.524818 + ], + [ + -73.474221, + 45.52376 + ], + [ + -73.474023, + 45.523693 + ], + [ + -73.473606, + 45.523607 + ], + [ + -73.473544, + 45.523567 + ], + [ + -73.473364, + 45.522923 + ], + [ + -73.473207, + 45.522283 + ], + [ + -73.473177, + 45.522159 + ], + [ + -73.472533, + 45.522244 + ], + [ + -73.472449, + 45.522239 + ], + [ + -73.472365, + 45.522221 + ], + [ + -73.472273, + 45.522194 + ], + [ + -73.472025, + 45.522106 + ], + [ + -73.469935, + 45.521362 + ], + [ + -73.469782, + 45.521307 + ], + [ + -73.467299, + 45.52042 + ], + [ + -73.467196, + 45.52038 + ], + [ + -73.467101, + 45.520339 + ], + [ + -73.467083, + 45.520326 + ], + [ + -73.467042, + 45.520272 + ], + [ + -73.466862, + 45.52 + ], + [ + -73.466791, + 45.519894 + ], + [ + -73.465827, + 45.520235 + ], + [ + -73.465207, + 45.520429 + ], + [ + -73.464983, + 45.520729 + ] + ] + }, + "id": 159, + "properties": { + "id": "941db450-3655-4040-b8c7-7cdb47686afc", + "data": { + "gtfs": { + "shape_id": "75_1_R" + }, + "segments": [ + { + "distanceMeters": 994, + "travelTimeSeconds": 156 + }, + { + "distanceMeters": 482, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 90 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 90 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 58 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6374, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4425.628912314127, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.59, + "travelTimeWithoutDwellTimesSeconds": 1140, + "operatingTimeWithLayoverTimeSeconds": 1320, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1140, + "operatingSpeedWithLayoverMetersPerSecond": 4.83, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.59 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "b19be6c8-c333-401a-98e4-d16876257831", + "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "7c6d588b-9971-4708-89a6-d92fb634eb39", + "71c8be20-aaf2-429f-a16b-1898198bf831", + "2b80c3a0-2156-4dd8-b0cd-326bc34d2ed2", + "91d2eb2a-bbfe-4d2d-887b-5ab9a417b7e2", + "9cff00e1-2ab5-4f6d-8e36-32c660c30d08", + "477ced41-131e-4c2f-8fce-4f1ed3d08b09", + "823b1092-4711-483c-9263-9ad04625e16e", + "b698a0cc-85d5-482c-b2a6-121d92347ec2", + "b9fb2a74-12ac-47e5-aa61-be591a0ecc88", + "26271fe7-0782-47bf-8004-074c0d15a687", + "37861c82-a45a-4026-bde0-eec4ce121a64", + "280d705c-e41e-4a8f-8450-ac212bf84d99", + "1d3f02c5-7aee-413f-85a4-ed64749a6a77", + "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", + "1926fe87-9eee-4758-bf0a-1f846178b541", + "30b4855a-ec3f-4079-bee1-0b92e6c4e1b7", + "75f82802-187b-4386-b435-5da7ab066898", + "1426b4ef-4dd9-466b-8c3e-012df230f19a", + "155dd6bc-ae76-4503-8b2b-d216841c4707", + "fd80e727-4261-4c36-aabc-b0a2c48d1470", + "39c3eab5-6995-4187-aaec-6f0b6badd5cf" + ], + "stops": [], + "line_id": "ceb81ce7-4f5a-4b36-ba17-e4d6ee601c1f", + "segments": [ + 0, + 38, + 57, + 62, + 68, + 70, + 72, + 75, + 77, + 79, + 81, + 91, + 98, + 101, + 104, + 107, + 109, + 111, + 113, + 115, + 117, + 122, + 129, + 136 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 159, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519446, + 45.523424 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519332, + 45.526816 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517858, + 45.526792 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517465, + 45.528168 + ], + [ + -73.517458, + 45.528249 + ], + [ + -73.517471, + 45.528385 + ], + [ + -73.517504, + 45.528565 + ], + [ + -73.517516, + 45.528652 + ], + [ + -73.517553, + 45.52877 + ], + [ + -73.517635, + 45.529002 + ], + [ + -73.517693, + 45.529249 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.51956, + 45.531975 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501211, + 45.549971 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.499756, + 45.550039 + ], + [ + -73.499564, + 45.550308 + ], + [ + -73.499518, + 45.550373 + ], + [ + -73.499348, + 45.550589 + ], + [ + -73.499249, + 45.550718 + ], + [ + -73.499149, + 45.550849 + ], + [ + -73.49909, + 45.551 + ], + [ + -73.499052, + 45.551292 + ], + [ + -73.498947, + 45.552086 + ], + [ + -73.498793, + 45.55209 + ], + [ + -73.498694, + 45.552086 + ], + [ + -73.498592, + 45.552072 + ], + [ + -73.498413, + 45.552 + ], + [ + -73.498201, + 45.551838 + ], + [ + -73.497569, + 45.551352 + ], + [ + -73.496964, + 45.550873 + ], + [ + -73.496546, + 45.550543 + ], + [ + -73.496482, + 45.550493 + ], + [ + -73.495901, + 45.550034 + ], + [ + -73.494604, + 45.549013 + ], + [ + -73.494377, + 45.548846 + ], + [ + -73.494352, + 45.548779 + ], + [ + -73.494351, + 45.54877 + ], + [ + -73.494341, + 45.548702 + ], + [ + -73.494355, + 45.548662 + ], + [ + -73.494517, + 45.548567 + ], + [ + -73.494756, + 45.548419 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491296, + 45.54289 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.460868, + 45.531797 + ], + [ + -73.460137, + 45.531468 + ], + [ + -73.459095, + 45.531013 + ], + [ + -73.457591, + 45.530387 + ], + [ + -73.456631, + 45.529983 + ], + [ + -73.45522, + 45.529388 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.453608, + 45.528719 + ], + [ + -73.45246, + 45.528241 + ], + [ + -73.452419, + 45.528224 + ], + [ + -73.452095, + 45.528089 + ], + [ + -73.451849, + 45.527987 + ], + [ + -73.449586, + 45.5271 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.449239, + 45.527747 + ], + [ + -73.449096, + 45.528021 + ], + [ + -73.448776, + 45.528634 + ], + [ + -73.448472, + 45.529257 + ], + [ + -73.448445, + 45.529313 + ], + [ + -73.448085, + 45.530001 + ], + [ + -73.448024, + 45.530118 + ], + [ + -73.447862, + 45.53032 + ], + [ + -73.44764, + 45.530474 + ], + [ + -73.447631, + 45.53048 + ], + [ + -73.447543, + 45.530541 + ], + [ + -73.447385, + 45.530442 + ], + [ + -73.447236, + 45.530379 + ], + [ + -73.44713, + 45.530342 + ], + [ + -73.44702, + 45.530311 + ], + [ + -73.446897, + 45.530293 + ], + [ + -73.446778, + 45.530284 + ], + [ + -73.446722, + 45.530284 + ], + [ + -73.446558, + 45.530297 + ], + [ + -73.446426, + 45.53032 + ], + [ + -73.446303, + 45.53036 + ], + [ + -73.446188, + 45.530392 + ], + [ + -73.44616, + 45.530403 + ], + [ + -73.446078, + 45.530436 + ], + [ + -73.445986, + 45.530495 + ], + [ + -73.445934, + 45.530553 + ], + [ + -73.44588, + 45.530594 + ], + [ + -73.445655, + 45.53081 + ], + [ + -73.445416, + 45.531246 + ], + [ + -73.445297, + 45.531608 + ], + [ + -73.445262, + 45.531714 + ], + [ + -73.445217, + 45.531876 + ], + [ + -73.445159, + 45.532011 + ], + [ + -73.445133, + 45.532069 + ], + [ + -73.44472, + 45.532816 + ], + [ + -73.444441, + 45.533378 + ], + [ + -73.444119, + 45.533972 + ], + [ + -73.444063, + 45.534075 + ], + [ + -73.443132, + 45.533854 + ], + [ + -73.443002, + 45.533823 + ], + [ + -73.442012, + 45.533579 + ], + [ + -73.441709, + 45.533503 + ], + [ + -73.441658, + 45.533491 + ], + [ + -73.441109, + 45.53336 + ], + [ + -73.440969, + 45.533327 + ], + [ + -73.439556, + 45.532972 + ], + [ + -73.439437, + 45.532943 + ], + [ + -73.439417, + 45.532938 + ], + [ + -73.439309, + 45.532912 + ], + [ + -73.440141, + 45.531003 + ], + [ + -73.440178, + 45.530918 + ], + [ + -73.440526, + 45.530139 + ], + [ + -73.440987, + 45.529108 + ], + [ + -73.441026, + 45.529021 + ], + [ + -73.441195, + 45.528603 + ], + [ + -73.441689, + 45.527492 + ], + [ + -73.441723, + 45.527415 + ], + [ + -73.442111, + 45.526543 + ], + [ + -73.442305, + 45.526133 + ], + [ + -73.442765, + 45.52521 + ], + [ + -73.442852, + 45.525036 + ], + [ + -73.442988, + 45.525071 + ], + [ + -73.443284, + 45.525148 + ] + ] + }, + "id": 160, + "properties": { + "id": "51028f85-c71c-4a75-8da1-9ccb7c51b69f", + "data": { + "gtfs": { + "shape_id": "76_1_R" + }, + "segments": [ + { + "distanceMeters": 9235, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 63 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11820, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 1021.7958591439391, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 21.89, + "travelTimeWithoutDwellTimesSeconds": 540, + "operatingTimeWithLayoverTimeSeconds": 720, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 540, + "operatingSpeedWithLayoverMetersPerSecond": 16.42, + "averageSpeedWithoutDwellTimesMetersPerSecond": 21.89 + }, + "mode": "bus", + "name": "Sect. B Vieux-Longueuil", + "color": "#A32638", + "nodes": [ + "6e83e147-802a-4695-95f3-96585bd15c4a", + "51878141-1194-4666-977c-0597ee638ffb", + "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "da0ea2a1-8305-4096-84b5-3da6997f0293", + "69483ac1-331d-4f0e-93b5-d8134f380763", + "23ef9461-bbd0-492e-8678-c51238629a13", + "51637772-6b85-4c49-a14a-4de104a8f1f5", + "210e532b-2acc-4a3e-b173-3471add098b1", + "576ef8c5-693c-4ae9-bb41-68685f43e174", + "2dda318d-8bf9-4860-b60d-6fcb1dd29156", + "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", + "de69f95c-e485-42da-bcac-5eeb8a8928ad", + "e36c087c-d78e-48bb-9430-6af9d10493cf", + "5b35096e-2561-4a9f-8bf4-a3e7609358bf" + ], + "stops": [], + "line_id": "9dee9443-6118-4400-be3e-92e85733a02b", + "segments": [ + 0, + 253, + 260, + 262, + 268, + 281, + 288, + 295, + 302, + 306, + 308, + 311, + 314 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 160, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.443284, + 45.525148 + ], + [ + -73.444342, + 45.525423 + ], + [ + -73.444482, + 45.52546 + ], + [ + -73.444863, + 45.525554 + ], + [ + -73.4451, + 45.525613 + ], + [ + -73.445298, + 45.525685 + ], + [ + -73.4455, + 45.525762 + ], + [ + -73.446302, + 45.526081 + ], + [ + -73.446307, + 45.526083 + ], + [ + -73.446395, + 45.526117 + ], + [ + -73.447841, + 45.526653 + ], + [ + -73.449341, + 45.527225 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.45067, + 45.527735 + ], + [ + -73.450838, + 45.527798 + ], + [ + -73.451123, + 45.527906 + ], + [ + -73.451519, + 45.528063 + ], + [ + -73.452176, + 45.528364 + ], + [ + -73.452276, + 45.528409 + ], + [ + -73.452337, + 45.528437 + ], + [ + -73.45321, + 45.528797 + ], + [ + -73.454095, + 45.529149 + ], + [ + -73.454901, + 45.529494 + ], + [ + -73.454978, + 45.529527 + ], + [ + -73.45507, + 45.529563 + ], + [ + -73.457307, + 45.530474 + ], + [ + -73.457482, + 45.530545 + ], + [ + -73.458332, + 45.530905 + ], + [ + -73.460581, + 45.531882 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.462043, + 45.532634 + ], + [ + -73.462751, + 45.533003 + ], + [ + -73.463714, + 45.533571 + ], + [ + -73.463873, + 45.533665 + ], + [ + -73.464875, + 45.534543 + ], + [ + -73.465742, + 45.535342 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.468816, + 45.53705 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469941, + 45.537318 + ], + [ + -73.470305, + 45.537406 + ], + [ + -73.470749, + 45.537487 + ], + [ + -73.471335, + 45.537563 + ], + [ + -73.471845, + 45.53759 + ], + [ + -73.47195, + 45.53759 + ], + [ + -73.472146, + 45.537591 + ], + [ + -73.472355, + 45.537591 + ], + [ + -73.473126, + 45.537555 + ], + [ + -73.473826, + 45.537492 + ], + [ + -73.474517, + 45.537429 + ], + [ + -73.47454, + 45.537427 + ], + [ + -73.474599, + 45.537423 + ], + [ + -73.475173, + 45.53738 + ], + [ + -73.47563, + 45.537344 + ], + [ + -73.476192, + 45.537353 + ], + [ + -73.476662, + 45.537394 + ], + [ + -73.477026, + 45.537434 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.477902, + 45.537605 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479519, + 45.538086 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.482479, + 45.53892 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.485793, + 45.540123 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491035, + 45.541427 + ], + [ + -73.491084, + 45.541584 + ], + [ + -73.491099, + 45.541724 + ], + [ + -73.491105, + 45.541835 + ], + [ + -73.491106, + 45.541854 + ], + [ + -73.491092, + 45.542156 + ], + [ + -73.491081, + 45.542381 + ], + [ + -73.49104, + 45.543146 + ], + [ + -73.490998, + 45.543726 + ], + [ + -73.491037, + 45.544117 + ], + [ + -73.491071, + 45.544252 + ], + [ + -73.491113, + 45.544396 + ], + [ + -73.491272, + 45.544698 + ], + [ + -73.491367, + 45.544855 + ], + [ + -73.491449, + 45.544981 + ], + [ + -73.491608, + 45.545148 + ], + [ + -73.491886, + 45.545409 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.492812, + 45.546146 + ], + [ + -73.492868, + 45.546192 + ], + [ + -73.492976, + 45.546278 + ], + [ + -73.493835, + 45.546966 + ], + [ + -73.494604, + 45.547573 + ], + [ + -73.495185, + 45.548034 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.495043, + 45.548244 + ], + [ + -73.494756, + 45.548419 + ], + [ + -73.494517, + 45.548567 + ], + [ + -73.494355, + 45.548662 + ], + [ + -73.494341, + 45.548702 + ], + [ + -73.494351, + 45.54877 + ], + [ + -73.494352, + 45.548779 + ], + [ + -73.494377, + 45.548846 + ], + [ + -73.494604, + 45.549013 + ], + [ + -73.495901, + 45.550034 + ], + [ + -73.496337, + 45.550379 + ], + [ + -73.496482, + 45.550493 + ], + [ + -73.496546, + 45.550543 + ], + [ + -73.496964, + 45.550873 + ], + [ + -73.497569, + 45.551352 + ], + [ + -73.498413, + 45.552 + ], + [ + -73.498592, + 45.552072 + ], + [ + -73.498694, + 45.552086 + ], + [ + -73.498793, + 45.55209 + ], + [ + -73.498947, + 45.552086 + ], + [ + -73.499127, + 45.552095 + ], + [ + -73.499133, + 45.552039 + ], + [ + -73.499161, + 45.551758 + ], + [ + -73.499199, + 45.551371 + ], + [ + -73.49924, + 45.551092 + ], + [ + -73.499284, + 45.550946 + ], + [ + -73.499366, + 45.550811 + ], + [ + -73.499487, + 45.550651 + ], + [ + -73.499689, + 45.550396 + ], + [ + -73.499747, + 45.550322 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.500118, + 45.550075 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.503237, + 45.548311 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.503789, + 45.547771 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.505418, + 45.546103 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507884, + 45.543476 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.509785, + 45.541602 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.511281, + 45.54035 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512997, + 45.539125 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.514327, + 45.538177 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.515316, + 45.537387 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.516479, + 45.536183 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.518224, + 45.53413 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519165, + 45.531639 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.518817, + 45.531415 + ], + [ + -73.518763, + 45.531374 + ], + [ + -73.518709, + 45.531325 + ], + [ + -73.518655, + 45.531271 + ], + [ + -73.518619, + 45.531213 + ], + [ + -73.518601, + 45.531154 + ], + [ + -73.518588, + 45.531096 + ], + [ + -73.518588, + 45.531055 + ], + [ + -73.518597, + 45.531006 + ], + [ + -73.518619, + 45.530952 + ], + [ + -73.518659, + 45.530884 + ], + [ + -73.518691, + 45.530826 + ], + [ + -73.518718, + 45.530785 + ], + [ + -73.518753, + 45.530731 + ], + [ + -73.518803, + 45.530646 + ], + [ + -73.518839, + 45.530596 + ], + [ + -73.518875, + 45.530547 + ], + [ + -73.518897, + 45.530497 + ], + [ + -73.518915, + 45.530448 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519398, + 45.526004 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 161, + "properties": { + "id": "fdf6b031-1df2-4640-9354-84940344a0a8", + "data": { + "gtfs": { + "shape_id": "76_1_A" + }, + "segments": [ + { + "distanceMeters": 88, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 507, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 524, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 463, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 655, + "travelTimeSeconds": 85 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 70 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9840, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6104.888068714351, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.13, + "travelTimeWithoutDwellTimesSeconds": 1380, + "operatingTimeWithLayoverTimeSeconds": 1560, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1380, + "operatingSpeedWithLayoverMetersPerSecond": 6.31, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.13 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "5b35096e-2561-4a9f-8bf4-a3e7609358bf", + "37e0037c-1e13-45e4-a410-24f20d2177f9", + "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", + "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "51878141-1194-4666-977c-0597ee638ffb", + "0a078431-12d6-4e73-9908-076c3a27e8ed", + "211cb268-dcfa-4d7b-810c-681bfa65d4c8", + "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "1e4facbf-29da-4515-97c4-4ef86c22290e", + "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", + "06d26eca-08e9-467e-9ff0-9595778162a0", + "abdcf999-0861-4881-a478-42fa957c7f17", + "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "5f672947-8abc-447c-bf60-535abbf76fae", + "31e8057b-0fb0-44bd-83cf-3acad24654ec", + "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", + "038a22ba-4928-42fc-aaed-50fbd831df37", + "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", + "64648218-6b63-436c-9a46-4770987ba432", + "87d520cc-f77e-449c-88c9-cee424bbc329", + "66456437-f154-4a2f-a12f-2f54cf668687", + "820a9d7c-25e9-487c-9e51-cfefcb1432f7", + "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", + "72c849ab-069a-4dc5-92fe-9ecc63ba074d", + "d9324afd-9cb7-46ba-ad04-bb8387256785", + "45ed93e4-f128-470f-b287-4d6ddc400e49", + "52f97fd3-6c91-420e-82d2-2198f2064d40", + "2d2815ee-443f-48d9-a68e-7f53a9aa6216", + "dadcd93c-5469-44bf-8e3e-ccac4a5af110", + "28d90293-1261-41be-a75c-5fc82c3acd49", + "28559490-1b1e-4bd4-83e1-408fd6a20c77", + "72e3e510-0ae4-407e-a30d-82f52f41e278", + "2e804fba-75d7-4c69-a7f7-706998c1a6f1", + "4fb4515b-e129-4622-b855-89143c2fd488", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "9dee9443-6118-4400-be3e-92e85733a02b", + "segments": [ + 0, + 1, + 7, + 11, + 17, + 22, + 25, + 31, + 33, + 36, + 46, + 53, + 59, + 69, + 73, + 79, + 84, + 104, + 119, + 124, + 136, + 148, + 154, + 172, + 175, + 179, + 183, + 190, + 193, + 195, + 199, + 202, + 205, + 219, + 250 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 161, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519446, + 45.523424 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519332, + 45.526816 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517858, + 45.526792 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517465, + 45.528168 + ], + [ + -73.517458, + 45.528249 + ], + [ + -73.517471, + 45.528385 + ], + [ + -73.517504, + 45.528565 + ], + [ + -73.517516, + 45.528652 + ], + [ + -73.517553, + 45.52877 + ], + [ + -73.517635, + 45.529002 + ], + [ + -73.517693, + 45.529249 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518849, + 45.531518 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.51956, + 45.531975 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.518107, + 45.534268 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.516367, + 45.536313 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.515482, + 45.537237 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.514572, + 45.537992 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.512979, + 45.539138 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.511379, + 45.540279 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.509929, + 45.541464 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.50782, + 45.543544 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.505657, + 45.545849 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.503925, + 45.547642 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501211, + 45.549971 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500335, + 45.550074 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.499756, + 45.550039 + ], + [ + -73.499564, + 45.550308 + ], + [ + -73.499518, + 45.550373 + ], + [ + -73.499348, + 45.550589 + ], + [ + -73.499249, + 45.550718 + ], + [ + -73.499149, + 45.550849 + ], + [ + -73.49909, + 45.551 + ], + [ + -73.499052, + 45.551292 + ], + [ + -73.498994, + 45.551736 + ], + [ + -73.498947, + 45.552086 + ], + [ + -73.498793, + 45.55209 + ], + [ + -73.498694, + 45.552086 + ], + [ + -73.498592, + 45.552072 + ], + [ + -73.498413, + 45.552 + ], + [ + -73.498201, + 45.551838 + ], + [ + -73.497834, + 45.551556 + ], + [ + -73.497569, + 45.551352 + ], + [ + -73.496964, + 45.550873 + ], + [ + -73.496546, + 45.550543 + ], + [ + -73.496482, + 45.550493 + ], + [ + -73.495901, + 45.550034 + ], + [ + -73.495899, + 45.550032 + ], + [ + -73.494604, + 45.549013 + ], + [ + -73.494377, + 45.548846 + ], + [ + -73.494352, + 45.548779 + ], + [ + -73.494351, + 45.54877 + ], + [ + -73.494341, + 45.548702 + ], + [ + -73.494355, + 45.548662 + ], + [ + -73.494517, + 45.548567 + ], + [ + -73.494756, + 45.548419 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494907, + 45.547553 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.491996, + 45.545207 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491296, + 45.54289 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.490614, + 45.540705 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486499, + 45.540159 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482923, + 45.53886 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.480042, + 45.53806 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476967, + 45.537233 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472348, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.469386, + 45.536997 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466189, + 45.53548 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464128, + 45.533599 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461207, + 45.531963 + ], + [ + -73.460868, + 45.531797 + ], + [ + -73.460137, + 45.531468 + ], + [ + -73.459095, + 45.531013 + ], + [ + -73.457812, + 45.53048 + ], + [ + -73.457591, + 45.530387 + ], + [ + -73.456631, + 45.529983 + ], + [ + -73.45522, + 45.529388 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.454676, + 45.529164 + ], + [ + -73.453608, + 45.528719 + ], + [ + -73.45246, + 45.528241 + ], + [ + -73.452419, + 45.528224 + ], + [ + -73.452095, + 45.528089 + ], + [ + -73.451849, + 45.527987 + ], + [ + -73.449586, + 45.5271 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.449239, + 45.527747 + ], + [ + -73.449096, + 45.528021 + ], + [ + -73.448776, + 45.528634 + ], + [ + -73.448472, + 45.529257 + ], + [ + -73.448445, + 45.529313 + ], + [ + -73.448085, + 45.530001 + ], + [ + -73.448024, + 45.530118 + ], + [ + -73.447862, + 45.53032 + ], + [ + -73.44764, + 45.530474 + ], + [ + -73.447631, + 45.53048 + ], + [ + -73.447543, + 45.530541 + ], + [ + -73.447385, + 45.530442 + ], + [ + -73.447236, + 45.530379 + ], + [ + -73.44713, + 45.530342 + ], + [ + -73.44702, + 45.530311 + ], + [ + -73.446897, + 45.530293 + ], + [ + -73.446778, + 45.530284 + ], + [ + -73.446722, + 45.530284 + ], + [ + -73.446558, + 45.530297 + ], + [ + -73.446426, + 45.53032 + ], + [ + -73.446303, + 45.53036 + ], + [ + -73.446188, + 45.530392 + ], + [ + -73.44616, + 45.530403 + ], + [ + -73.446078, + 45.530436 + ], + [ + -73.445986, + 45.530495 + ], + [ + -73.445934, + 45.530553 + ], + [ + -73.44588, + 45.530594 + ], + [ + -73.445655, + 45.53081 + ], + [ + -73.445416, + 45.531246 + ], + [ + -73.445297, + 45.531608 + ], + [ + -73.445262, + 45.531714 + ], + [ + -73.445217, + 45.531876 + ], + [ + -73.445159, + 45.532011 + ], + [ + -73.445133, + 45.532069 + ], + [ + -73.44472, + 45.532816 + ], + [ + -73.444441, + 45.533378 + ], + [ + -73.444119, + 45.533972 + ], + [ + -73.444063, + 45.534075 + ], + [ + -73.443132, + 45.533854 + ], + [ + -73.443002, + 45.533823 + ], + [ + -73.442012, + 45.533579 + ], + [ + -73.441709, + 45.533503 + ], + [ + -73.441658, + 45.533491 + ], + [ + -73.441109, + 45.53336 + ], + [ + -73.440969, + 45.533327 + ], + [ + -73.439556, + 45.532972 + ], + [ + -73.439437, + 45.532943 + ], + [ + -73.439417, + 45.532938 + ], + [ + -73.439309, + 45.532912 + ], + [ + -73.440141, + 45.531003 + ], + [ + -73.440178, + 45.530918 + ], + [ + -73.440526, + 45.530139 + ], + [ + -73.440987, + 45.529108 + ], + [ + -73.441026, + 45.529021 + ], + [ + -73.441195, + 45.528603 + ], + [ + -73.441689, + 45.527492 + ], + [ + -73.441723, + 45.527415 + ], + [ + -73.442111, + 45.526543 + ], + [ + -73.442305, + 45.526133 + ], + [ + -73.442765, + 45.52521 + ], + [ + -73.442852, + 45.525036 + ], + [ + -73.442988, + 45.525071 + ], + [ + -73.443284, + 45.525148 + ] + ] + }, + "id": 162, + "properties": { + "id": "fc27f367-8c72-4e36-98e5-5d88e4a8c4c8", + "data": { + "gtfs": { + "shape_id": "76_1_R" + }, + "segments": [ + { + "distanceMeters": 1321, + "travelTimeSeconds": 176 + }, + { + "distanceMeters": 364, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 307, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 376, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 310, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 312, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 63 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11820, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6104.888068714351, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.57, + "travelTimeWithoutDwellTimesSeconds": 1800, + "operatingTimeWithLayoverTimeSeconds": 1980, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1800, + "operatingSpeedWithLayoverMetersPerSecond": 5.97, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.57 + }, + "mode": "bus", + "name": "Sect. B Vieux-Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "2e804fba-75d7-4c69-a7f7-706998c1a6f1", + "72e3e510-0ae4-407e-a30d-82f52f41e278", + "28559490-1b1e-4bd4-83e1-408fd6a20c77", + "28d90293-1261-41be-a75c-5fc82c3acd49", + "dadcd93c-5469-44bf-8e3e-ccac4a5af110", + "2d2815ee-443f-48d9-a68e-7f53a9aa6216", + "52f97fd3-6c91-420e-82d2-2198f2064d40", + "45ed93e4-f128-470f-b287-4d6ddc400e49", + "d9324afd-9cb7-46ba-ad04-bb8387256785", + "72c849ab-069a-4dc5-92fe-9ecc63ba074d", + "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", + "09bf17cd-9db1-41e3-b993-62146cb91158", + "bc056e84-1f20-4604-aad7-40427c6685a6", + "f8b461c2-c03e-4da6-aa56-a50e7e1d9db0", + "86b1f9fa-fc35-4bee-a9b9-a70269091ef1", + "8a3f1208-7ffb-452e-8ebb-c436acba82d6", + "2d7687a5-f458-4ce1-a3df-9639d89c0154", + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "ce58f095-9b51-4521-8a41-e64bfb0df31e", + "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", + "65003b15-0baf-4f82-9e15-665e17fd1c75", + "81b3573e-d948-478d-a011-db20e21b0c62", + "def08726-b847-4fc6-b901-78e04519a492", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "3b70b024-5c5b-4081-8c70-3fc026422289", + "1e4facbf-29da-4515-97c4-4ef86c22290e", + "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "53aec761-3dae-44a6-bc58-9d5003bfa1bb", + "6e83e147-802a-4695-95f3-96585bd15c4a", + "51878141-1194-4666-977c-0597ee638ffb", + "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "da0ea2a1-8305-4096-84b5-3da6997f0293", + "69483ac1-331d-4f0e-93b5-d8134f380763", + "23ef9461-bbd0-492e-8678-c51238629a13", + "51637772-6b85-4c49-a14a-4de104a8f1f5", + "210e532b-2acc-4a3e-b173-3471add098b1", + "576ef8c5-693c-4ae9-bb41-68685f43e174", + "2dda318d-8bf9-4860-b60d-6fcb1dd29156", + "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", + "de69f95c-e485-42da-bcac-5eeb8a8928ad", + "e36c087c-d78e-48bb-9430-6af9d10493cf", + "5b35096e-2561-4a9f-8bf4-a3e7609358bf" + ], + "stops": [], + "line_id": "9dee9443-6118-4400-be3e-92e85733a02b", + "segments": [ + 0, + 61, + 77, + 80, + 82, + 86, + 89, + 92, + 98, + 103, + 106, + 109, + 124, + 135, + 142, + 148, + 159, + 165, + 189, + 199, + 204, + 213, + 222, + 234, + 244, + 257, + 263, + 271, + 275, + 280, + 282, + 289, + 291, + 297, + 310, + 317, + 324, + 331, + 335, + 337, + 340, + 343 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 162, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.496722, + 45.536592 + ], + [ + -73.498721, + 45.537445 + ], + [ + -73.499294, + 45.537014 + ], + [ + -73.499301, + 45.537008 + ], + [ + -73.49936, + 45.536964 + ], + [ + -73.499435, + 45.536897 + ], + [ + -73.499534, + 45.536807 + ], + [ + -73.498456, + 45.536361 + ], + [ + -73.497345, + 45.53588 + ], + [ + -73.497166, + 45.535794 + ], + [ + -73.496932, + 45.535682 + ], + [ + -73.496814, + 45.535632 + ], + [ + -73.495741, + 45.5352 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.494412, + 45.534682 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.492621, + 45.533943 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.491097, + 45.533312 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.488583, + 45.532281 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.485494, + 45.530997 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.485571, + 45.530652 + ], + [ + -73.485959, + 45.530394 + ], + [ + -73.486628, + 45.52994 + ], + [ + -73.487089, + 45.529621 + ], + [ + -73.487775, + 45.529162 + ], + [ + -73.488524, + 45.528696 + ], + [ + -73.488593, + 45.528653 + ], + [ + -73.489528, + 45.528064 + ], + [ + -73.490298, + 45.527569 + ], + [ + -73.490653, + 45.527304 + ], + [ + -73.491341, + 45.526748 + ], + [ + -73.4914, + 45.526701 + ], + [ + -73.492088, + 45.526179 + ], + [ + -73.492707, + 45.525635 + ], + [ + -73.49291, + 45.52541 + ], + [ + -73.49318, + 45.525113 + ], + [ + -73.493408, + 45.524902 + ], + [ + -73.493799, + 45.524641 + ], + [ + -73.494186, + 45.524488 + ], + [ + -73.49472, + 45.524299 + ], + [ + -73.494785, + 45.524276 + ], + [ + -73.495166, + 45.524155 + ], + [ + -73.495493, + 45.524047 + ], + [ + -73.495888, + 45.523925 + ], + [ + -73.496536, + 45.523723 + ], + [ + -73.496725, + 45.523581 + ], + [ + -73.496788, + 45.523534 + ], + [ + -73.497235, + 45.523003 + ], + [ + -73.497422, + 45.522652 + ], + [ + -73.497435, + 45.5224 + ], + [ + -73.497299, + 45.521792 + ], + [ + -73.497269, + 45.521658 + ], + [ + -73.497101, + 45.520911 + ], + [ + -73.497017, + 45.520339 + ], + [ + -73.497012, + 45.520222 + ], + [ + -73.49702, + 45.520083 + ], + [ + -73.497044, + 45.519908 + ], + [ + -73.497064, + 45.519764 + ], + [ + -73.497084, + 45.519669 + ], + [ + -73.497108, + 45.519561 + ], + [ + -73.497278, + 45.518832 + ], + [ + -73.497354, + 45.518522 + ], + [ + -73.497411, + 45.518364 + ], + [ + -73.497477, + 45.518175 + ], + [ + -73.497619, + 45.517812 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.498036, + 45.516808 + ], + [ + -73.498302, + 45.516239 + ], + [ + -73.498388, + 45.516056 + ], + [ + -73.498727, + 45.51526 + ], + [ + -73.499247, + 45.514482 + ], + [ + -73.499299, + 45.514405 + ], + [ + -73.498854, + 45.514264 + ], + [ + -73.498543, + 45.514166 + ], + [ + -73.495977, + 45.513355 + ], + [ + -73.495825, + 45.513307 + ], + [ + -73.494505, + 45.512884 + ], + [ + -73.493805, + 45.512659 + ], + [ + -73.493619, + 45.512695 + ], + [ + -73.493364, + 45.512745 + ], + [ + -73.492988, + 45.512628 + ], + [ + -73.492639, + 45.51252 + ], + [ + -73.492845, + 45.512216 + ], + [ + -73.493081, + 45.511867 + ], + [ + -73.493369, + 45.51144 + ], + [ + -73.493508, + 45.511225 + ], + [ + -73.493538, + 45.511179 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494003, + 45.510501 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491831, + 45.50868 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488541, + 45.503629 + ], + [ + -73.48831, + 45.50321 + ], + [ + -73.48823, + 45.503039 + ], + [ + -73.488092, + 45.502693 + ], + [ + -73.487989, + 45.502369 + ], + [ + -73.487959, + 45.502275 + ], + [ + -73.487746, + 45.501478 + ], + [ + -73.487613, + 45.501033 + ], + [ + -73.48752, + 45.500725 + ], + [ + -73.487509, + 45.500686 + ], + [ + -73.487464, + 45.50056 + ], + [ + -73.487346, + 45.500232 + ], + [ + -73.487139, + 45.499795 + ], + [ + -73.486985, + 45.499512 + ], + [ + -73.486833, + 45.499258 + ], + [ + -73.486818, + 45.499233 + ], + [ + -73.48673, + 45.4991 + ], + [ + -73.486631, + 45.498949 + ], + [ + -73.486428, + 45.498675 + ], + [ + -73.486216, + 45.498401 + ], + [ + -73.486166, + 45.498342 + ], + [ + -73.486, + 45.498149 + ], + [ + -73.485576, + 45.497708 + ], + [ + -73.485299, + 45.497456 + ], + [ + -73.485251, + 45.497415 + ], + [ + -73.485243, + 45.497408 + ], + [ + -73.484899, + 45.497123 + ], + [ + -73.484431, + 45.496773 + ], + [ + -73.484387, + 45.49674 + ], + [ + -73.484357, + 45.496722 + ], + [ + -73.482221, + 45.49531 + ], + [ + -73.482144, + 45.49526 + ], + [ + -73.482055, + 45.495201 + ], + [ + -73.479528, + 45.493526 + ], + [ + -73.479372, + 45.493423 + ], + [ + -73.474518, + 45.490216 + ], + [ + -73.474366, + 45.490115 + ], + [ + -73.473909, + 45.489814 + ], + [ + -73.472092, + 45.488613 + ], + [ + -73.471942, + 45.488513 + ], + [ + -73.46708, + 45.485304 + ], + [ + -73.466642, + 45.484984 + ], + [ + -73.466504, + 45.48487 + ], + [ + -73.466473, + 45.484845 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466302, + 45.484687 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466188, + 45.484448 + ], + [ + -73.466149, + 45.484395 + ], + [ + -73.465905, + 45.484113 + ], + [ + -73.465719, + 45.4839 + ], + [ + -73.46546, + 45.483541 + ], + [ + -73.465236, + 45.483174 + ], + [ + -73.465161, + 45.483037 + ], + [ + -73.465057, + 45.482799 + ], + [ + -73.464968, + 45.48254 + ], + [ + -73.46489, + 45.482284 + ], + [ + -73.464833, + 45.481906 + ], + [ + -73.464816, + 45.481524 + ], + [ + -73.464842, + 45.481182 + ], + [ + -73.464843, + 45.481165 + ], + [ + -73.464847, + 45.481114 + ], + [ + -73.464866, + 45.480979 + ], + [ + -73.46492, + 45.48071 + ], + [ + -73.465032, + 45.480327 + ], + [ + -73.465198, + 45.479819 + ], + [ + -73.46547, + 45.479009 + ], + [ + -73.465549, + 45.478773 + ], + [ + -73.465652, + 45.478467 + ], + [ + -73.465874, + 45.477808 + ], + [ + -73.466476, + 45.475989 + ], + [ + -73.466484, + 45.475966 + ], + [ + -73.466637, + 45.475504 + ], + [ + -73.467366, + 45.473305 + ], + [ + -73.467616, + 45.472553 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467869, + 45.471793 + ], + [ + -73.467954, + 45.471482 + ], + [ + -73.467979, + 45.471365 + ], + [ + -73.468005, + 45.471249 + ], + [ + -73.468064, + 45.470898 + ], + [ + -73.468089, + 45.470648 + ], + [ + -73.468112, + 45.470407 + ], + [ + -73.468119, + 45.470155 + ], + [ + -73.468115, + 45.470044 + ], + [ + -73.468111, + 45.469894 + ], + [ + -73.468108, + 45.469818 + ], + [ + -73.468107, + 45.469773 + ], + [ + -73.46805, + 45.4693 + ], + [ + -73.467952, + 45.468831 + ], + [ + -73.467932, + 45.468733 + ], + [ + -73.467793, + 45.468274 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.468955, + 45.466871 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466764 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466352, + 45.465288 + ], + [ + -73.466238, + 45.465062 + ], + [ + -73.466142, + 45.464853 + ], + [ + -73.466048, + 45.464638 + ], + [ + -73.46599, + 45.464498 + ], + [ + -73.465967, + 45.464441 + ], + [ + -73.465777, + 45.463945 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465663, + 45.463449 + ], + [ + -73.465646, + 45.463238 + ], + [ + -73.465636, + 45.463073 + ], + [ + -73.465461, + 45.461275 + ], + [ + -73.465446, + 45.461132 + ], + [ + -73.465251, + 45.459263 + ], + [ + -73.465215, + 45.45889 + ], + [ + -73.465199, + 45.458728 + ], + [ + -73.465132, + 45.458038 + ], + [ + -73.465113, + 45.457592 + ], + [ + -73.465124, + 45.457143 + ], + [ + -73.465143, + 45.45685 + ], + [ + -73.465153, + 45.456755 + ], + [ + -73.465199, + 45.456301 + ], + [ + -73.465244, + 45.456 + ], + [ + -73.465335, + 45.455572 + ], + [ + -73.465339, + 45.455554 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465617, + 45.454677 + ], + [ + -73.465629, + 45.454641 + ], + [ + -73.465631, + 45.454637 + ], + [ + -73.465694, + 45.454481 + ], + [ + -73.465735, + 45.45438 + ], + [ + -73.465853, + 45.45411 + ], + [ + -73.466087, + 45.453654 + ], + [ + -73.46613, + 45.45357 + ], + [ + -73.466877, + 45.452297 + ], + [ + -73.467521, + 45.451236 + ], + [ + -73.468182, + 45.450183 + ], + [ + -73.469986, + 45.447403 + ], + [ + -73.470113, + 45.447209 + ], + [ + -73.470215, + 45.447052 + ], + [ + -73.47028, + 45.446953 + ], + [ + -73.470478, + 45.446647 + ], + [ + -73.471792, + 45.444623 + ], + [ + -73.47221, + 45.443966 + ], + [ + -73.472405, + 45.443633 + ], + [ + -73.472572, + 45.443287 + ], + [ + -73.472646, + 45.443111 + ], + [ + -73.472778, + 45.442752 + ], + [ + -73.472833, + 45.442567 + ], + [ + -73.472919, + 45.442194 + ], + [ + -73.472951, + 45.442005 + ], + [ + -73.473027, + 45.441433 + ], + [ + -73.473089, + 45.441055 + ], + [ + -73.47323, + 45.44052 + ], + [ + -73.473412, + 45.440048 + ], + [ + -73.47351, + 45.439841 + ], + [ + -73.47354, + 45.439773 + ], + [ + -73.473721, + 45.439445 + ], + [ + -73.474086, + 45.43886 + ], + [ + -73.474303, + 45.438527 + ], + [ + -73.474451, + 45.438299 + ], + [ + -73.474529, + 45.438181 + ], + [ + -73.474754, + 45.437834 + ], + [ + -73.474796, + 45.437771 + ], + [ + -73.476491, + 45.435131 + ], + [ + -73.476679, + 45.434838 + ], + [ + -73.476735, + 45.434748 + ], + [ + -73.47646, + 45.434649 + ], + [ + -73.475468, + 45.434329 + ], + [ + -73.475339, + 45.434286 + ], + [ + -73.474709, + 45.434072 + ], + [ + -73.473919, + 45.433803 + ], + [ + -73.472029, + 45.433164 + ], + [ + -73.469852, + 45.432429 + ], + [ + -73.46881, + 45.432083 + ], + [ + -73.467709, + 45.431733 + ], + [ + -73.467377, + 45.431628 + ], + [ + -73.468527, + 45.429807 + ], + [ + -73.468612, + 45.429671 + ], + [ + -73.469521, + 45.428308 + ], + [ + -73.469323, + 45.428236 + ], + [ + -73.468819, + 45.428066 + ], + [ + -73.46628, + 45.427209 + ], + [ + -73.465707, + 45.427016 + ], + [ + -73.465691, + 45.42701 + ], + [ + -73.465621, + 45.426984 + ], + [ + -73.465518, + 45.426984 + ], + [ + -73.465439, + 45.427007 + ], + [ + -73.465404, + 45.427043 + ], + [ + -73.465004, + 45.427618 + ], + [ + -73.464866, + 45.42783 + ], + [ + -73.464713, + 45.428068 + ], + [ + -73.464654, + 45.428172 + ], + [ + -73.464636, + 45.428221 + ], + [ + -73.464646, + 45.428266 + ], + [ + -73.464674, + 45.428302 + ], + [ + -73.464725, + 45.428338 + ], + [ + -73.46484, + 45.428383 + ], + [ + -73.466697, + 45.429014 + ], + [ + -73.467149, + 45.429168 + ], + [ + -73.468287, + 45.429554 + ], + [ + -73.468473, + 45.429621 + ] + ] + }, + "id": 163, + "properties": { + "id": "0e33d615-63e2-421c-b659-d17ef3f90b7c", + "data": { + "gtfs": { + "shape_id": "77_1_R" + }, + "segments": [ + { + "distanceMeters": 248, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 953, + "travelTimeSeconds": 138 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 95, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 537, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 603, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 608, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 837, + "travelTimeSeconds": 128 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 477, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 898, + "travelTimeSeconds": 126 + }, + { + "distanceMeters": 1055, + "travelTimeSeconds": 148 + }, + { + "distanceMeters": 554, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 34 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 246, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 16548, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 12092.399309267032, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.73, + "travelTimeWithoutDwellTimesSeconds": 2460, + "operatingTimeWithLayoverTimeSeconds": 2706, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2460, + "operatingSpeedWithLayoverMetersPerSecond": 6.12, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.73 + }, + "mode": "bus", + "name": "CÉGEP Édouard-Montpetit", + "color": "#A32638", + "nodes": [ + "4ae33b06-30dd-4ad3-8df9-3ce610880853", + "02ddb4e4-c9f0-483c-9ae1-3f0d44c6367b", + "25e9b688-116d-4828-87b8-e7d0946c452f", + "28f2fe65-961c-4550-a722-1e7790fe94ad", + "9d0a7ab6-be66-4ca9-b863-8712d8cd028c", + "999ed130-7d99-4115-ac3c-cabba7731288", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "27c5df15-201f-4855-9f49-556fd659fd8e", + "280d705c-e41e-4a8f-8450-ac212bf84d99", + "dc7a6dd7-6fde-40ea-9f37-85aaefe35169", + "16c6c90b-9ef2-4203-a4a2-74a27e23dc94", + "afda06bb-9f3e-43a6-883f-96226fa884c5", + "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "6c8872a8-685f-49ed-9246-92743dd113de", + "161f72ac-926f-49be-80a4-a3cb10884d02", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "d32c5a5b-6e6f-48c3-9f4e-37b94ed6e20d", + "09272548-09d5-4afa-a45f-80ba6dd656dd", + "4a0c512f-2ce4-41cc-a200-cf81d75487c1", + "7095ff94-e6bf-4956-8b59-9e66be631584", + "5d573c90-ed41-4ac1-9f58-abc862e00f93", + "37199bb2-9740-4484-b68f-12d3c82f8bf9", + "bcd0a901-5384-443e-9be4-1f0faa123ccb", + "fdd9bfef-c8dc-4f65-9008-847050729854", + "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", + "7ad37664-fa6b-478f-8d31-2d3ae7009709", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "94cd69e7-ebc9-452b-a357-367107db73b4", + "03b1ef77-b509-4f21-97d5-d511eeb821cb", + "351136d8-2c40-4c3f-8032-a52e48738c07", + "159a0fe9-bedb-40f2-9806-32ab49594978", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "579043e1-54f7-411f-9a36-e7ee3324290f", + "1758013c-4193-42f0-a495-c36930003f5b", + "51e1600d-418e-4477-9b26-9e5507d72a03", + "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "74887516-47d5-4269-9513-84672d18e287", + "1e3a74d9-9d8a-467f-a82e-3dafee501e32", + "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", + "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", + "9d435e32-ad0d-41e2-bb28-30458533923f", + "46f71035-3e65-4e46-9e5d-154a9fb90fc8", + "c5dd3e08-dca5-473a-b3e2-b94affceddb5", + "99ed9a7e-9c9a-49bd-8a93-0c7a4fc5376d", + "f58a318f-2fac-4a22-b374-38335fe92155", + "bce84a67-72ba-4847-b756-b7ff7e256fb0", + "46ee0c64-acf7-4889-b8c8-a5aa9e1d42ae", + "a1ca7f00-0457-4527-945c-e70fcf3a2d14", + "02173302-0d13-4f4c-b805-a10732912553", + "dd75840f-4ec8-4ee8-b04f-ae7639f6c994" + ], + "stops": [], + "line_id": "27ac94b8-b83e-4a3e-a222-91dec1b1b4bd", + "segments": [ + 0, + 2, + 9, + 15, + 18, + 21, + 26, + 29, + 36, + 41, + 45, + 50, + 56, + 61, + 69, + 75, + 78, + 83, + 85, + 91, + 96, + 110, + 128, + 134, + 145, + 147, + 150, + 153, + 155, + 158, + 162, + 179, + 187, + 190, + 202, + 210, + 225, + 254, + 256, + 271, + 281, + 303, + 312, + 315, + 318, + 320, + 324, + 325, + 333, + 342 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 163, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.468473, + 45.429621 + ], + [ + -73.468612, + 45.429671 + ], + [ + -73.467519, + 45.431403 + ], + [ + -73.467377, + 45.431628 + ], + [ + -73.467321, + 45.431724 + ], + [ + -73.469507, + 45.432418 + ], + [ + -73.472271, + 45.433358 + ], + [ + -73.473856, + 45.433897 + ], + [ + -73.474588, + 45.434146 + ], + [ + -73.475417, + 45.434428 + ], + [ + -73.476079, + 45.43472 + ], + [ + -73.476112, + 45.434747 + ], + [ + -73.476145, + 45.434786 + ], + [ + -73.47617, + 45.434839 + ], + [ + -73.476192, + 45.43492 + ], + [ + -73.476201, + 45.434971 + ], + [ + -73.476213, + 45.435032 + ], + [ + -73.476032, + 45.435312 + ], + [ + -73.474803, + 45.437222 + ], + [ + -73.474468, + 45.437749 + ], + [ + -73.474322, + 45.437976 + ], + [ + -73.474202, + 45.438163 + ], + [ + -73.474023, + 45.438441 + ], + [ + -73.47371, + 45.438932 + ], + [ + -73.473393, + 45.439449 + ], + [ + -73.473246, + 45.439724 + ], + [ + -73.473111, + 45.440012 + ], + [ + -73.472993, + 45.440308 + ], + [ + -73.472892, + 45.440614 + ], + [ + -73.472775, + 45.441091 + ], + [ + -73.472634, + 45.442077 + ], + [ + -73.472562, + 45.44241 + ], + [ + -73.472464, + 45.442742 + ], + [ + -73.47234, + 45.44308 + ], + [ + -73.47219, + 45.443413 + ], + [ + -73.472106, + 45.443579 + ], + [ + -73.471921, + 45.443899 + ], + [ + -73.471725, + 45.444209 + ], + [ + -73.470198, + 45.446562 + ], + [ + -73.470086, + 45.446734 + ], + [ + -73.470002, + 45.446863 + ], + [ + -73.469936, + 45.446962 + ], + [ + -73.4697, + 45.447326 + ], + [ + -73.467906, + 45.450089 + ], + [ + -73.467328, + 45.451002 + ], + [ + -73.46669, + 45.452054 + ], + [ + -73.465968, + 45.453278 + ], + [ + -73.465918, + 45.453363 + ], + [ + -73.465707, + 45.453755 + ], + [ + -73.46558, + 45.454016 + ], + [ + -73.46536, + 45.454529 + ], + [ + -73.465344, + 45.454574 + ], + [ + -73.46526, + 45.454818 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.465167, + 45.455082 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465048, + 45.455509 + ], + [ + -73.465041, + 45.455536 + ], + [ + -73.464975, + 45.455829 + ], + [ + -73.464919, + 45.45613 + ], + [ + -73.464878, + 45.456427 + ], + [ + -73.464848, + 45.456873 + ], + [ + -73.464844, + 45.457169 + ], + [ + -73.464871, + 45.457574 + ], + [ + -73.464981, + 45.459097 + ], + [ + -73.464994, + 45.459278 + ], + [ + -73.465215, + 45.461562 + ], + [ + -73.465247, + 45.461893 + ], + [ + -73.465328, + 45.462497 + ], + [ + -73.465435, + 45.463211 + ], + [ + -73.465484, + 45.463543 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467476, + 45.467991 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467548, + 45.468225 + ], + [ + -73.467698, + 45.468792 + ], + [ + -73.467776, + 45.469183 + ], + [ + -73.46782, + 45.469453 + ], + [ + -73.467839, + 45.469682 + ], + [ + -73.467865, + 45.469989 + ], + [ + -73.467864, + 45.470057 + ], + [ + -73.467862, + 45.470168 + ], + [ + -73.46786, + 45.470362 + ], + [ + -73.467821, + 45.470781 + ], + [ + -73.467786, + 45.471019 + ], + [ + -73.467768, + 45.4711 + ], + [ + -73.467742, + 45.471226 + ], + [ + -73.467655, + 45.471563 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467508, + 45.472063 + ], + [ + -73.467493, + 45.472108 + ], + [ + -73.467349, + 45.472543 + ], + [ + -73.467254, + 45.472832 + ], + [ + -73.467075, + 45.473412 + ], + [ + -73.467018, + 45.473612 + ], + [ + -73.46686, + 45.474168 + ], + [ + -73.466715, + 45.474632 + ], + [ + -73.466501, + 45.475269 + ], + [ + -73.466278, + 45.475935 + ], + [ + -73.466234, + 45.476067 + ], + [ + -73.466132, + 45.476368 + ], + [ + -73.465592, + 45.477979 + ], + [ + -73.465357, + 45.478703 + ], + [ + -73.465343, + 45.478741 + ], + [ + -73.465269, + 45.478932 + ], + [ + -73.465247, + 45.479 + ], + [ + -73.464879, + 45.480107 + ], + [ + -73.464823, + 45.480273 + ], + [ + -73.464733, + 45.480574 + ], + [ + -73.464664, + 45.480885 + ], + [ + -73.464649, + 45.480998 + ], + [ + -73.464634, + 45.481108 + ], + [ + -73.464622, + 45.481195 + ], + [ + -73.464619, + 45.481245 + ], + [ + -73.464603, + 45.481524 + ], + [ + -73.464619, + 45.481956 + ], + [ + -73.464693, + 45.482383 + ], + [ + -73.464736, + 45.482559 + ], + [ + -73.46485, + 45.482905 + ], + [ + -73.46499, + 45.483243 + ], + [ + -73.465069, + 45.483405 + ], + [ + -73.465231, + 45.483688 + ], + [ + -73.465328, + 45.483837 + ], + [ + -73.465383, + 45.483922 + ], + [ + -73.465513, + 45.484102 + ], + [ + -73.465839, + 45.48448 + ], + [ + -73.466022, + 45.484682 + ], + [ + -73.46613, + 45.484773 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.46623, + 45.484867 + ], + [ + -73.466294, + 45.484926 + ], + [ + -73.466444, + 45.485045 + ], + [ + -73.466566, + 45.485142 + ], + [ + -73.466759, + 45.48529 + ], + [ + -73.466948, + 45.485421 + ], + [ + -73.467024, + 45.48547 + ], + [ + -73.468004, + 45.486118 + ], + [ + -73.469888, + 45.487365 + ], + [ + -73.470621, + 45.487851 + ], + [ + -73.471587, + 45.488492 + ], + [ + -73.471789, + 45.488626 + ], + [ + -73.473768, + 45.489935 + ], + [ + -73.473993, + 45.490084 + ], + [ + -73.474218, + 45.490232 + ], + [ + -73.476501, + 45.49174 + ], + [ + -73.4777, + 45.49253 + ], + [ + -73.479072, + 45.493436 + ], + [ + -73.479217, + 45.493531 + ], + [ + -73.480275, + 45.494231 + ], + [ + -73.481907, + 45.495309 + ], + [ + -73.482, + 45.495372 + ], + [ + -73.482347, + 45.495601 + ], + [ + -73.483276, + 45.496213 + ], + [ + -73.483953, + 45.496659 + ], + [ + -73.484027, + 45.496711 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.48442, + 45.496983 + ], + [ + -73.484708, + 45.497199 + ], + [ + -73.484931, + 45.497378 + ], + [ + -73.485095, + 45.49751 + ], + [ + -73.485397, + 45.497784 + ], + [ + -73.485739, + 45.498135 + ], + [ + -73.485877, + 45.498284 + ], + [ + -73.486105, + 45.498553 + ], + [ + -73.486286, + 45.498787 + ], + [ + -73.486368, + 45.498907 + ], + [ + -73.486538, + 45.499154 + ], + [ + -73.486685, + 45.499381 + ], + [ + -73.486823, + 45.499615 + ], + [ + -73.486951, + 45.499858 + ], + [ + -73.487138, + 45.500263 + ], + [ + -73.487159, + 45.500317 + ], + [ + -73.487261, + 45.500591 + ], + [ + -73.487306, + 45.500713 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487417, + 45.501077 + ], + [ + -73.487455, + 45.501208 + ], + [ + -73.487464, + 45.50124 + ], + [ + -73.48765, + 45.50191 + ], + [ + -73.487855, + 45.502589 + ], + [ + -73.488032, + 45.50303 + ], + [ + -73.488178, + 45.503309 + ], + [ + -73.488409, + 45.50371 + ], + [ + -73.489159, + 45.504974 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492912, + 45.510101 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497907, + 45.512049 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.499949, + 45.513375 + ], + [ + -73.4998, + 45.513609 + ], + [ + -73.499373, + 45.514289 + ], + [ + -73.499299, + 45.514405 + ], + [ + -73.499247, + 45.514482 + ], + [ + -73.498727, + 45.51526 + ], + [ + -73.498434, + 45.515947 + ], + [ + -73.498388, + 45.516056 + ], + [ + -73.498036, + 45.516808 + ], + [ + -73.497778, + 45.517414 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.497477, + 45.518175 + ], + [ + -73.497411, + 45.518364 + ], + [ + -73.497354, + 45.518522 + ], + [ + -73.497278, + 45.518832 + ], + [ + -73.497143, + 45.519412 + ], + [ + -73.497108, + 45.519561 + ], + [ + -73.497064, + 45.519764 + ], + [ + -73.497044, + 45.519908 + ], + [ + -73.49702, + 45.520083 + ], + [ + -73.497012, + 45.520222 + ], + [ + -73.497017, + 45.520339 + ], + [ + -73.497101, + 45.520911 + ], + [ + -73.497229, + 45.521482 + ], + [ + -73.497269, + 45.521658 + ], + [ + -73.497435, + 45.5224 + ], + [ + -73.497422, + 45.522652 + ], + [ + -73.497235, + 45.523003 + ], + [ + -73.496903, + 45.523397 + ], + [ + -73.496788, + 45.523534 + ], + [ + -73.496536, + 45.523723 + ], + [ + -73.495888, + 45.523925 + ], + [ + -73.495493, + 45.524047 + ], + [ + -73.495166, + 45.524155 + ], + [ + -73.494785, + 45.524276 + ], + [ + -73.494282, + 45.524454 + ], + [ + -73.494186, + 45.524488 + ], + [ + -73.493799, + 45.524641 + ], + [ + -73.493408, + 45.524902 + ], + [ + -73.49318, + 45.525113 + ], + [ + -73.492799, + 45.525533 + ], + [ + -73.492707, + 45.525635 + ], + [ + -73.492088, + 45.526179 + ], + [ + -73.491468, + 45.526649 + ], + [ + -73.4914, + 45.526701 + ], + [ + -73.490653, + 45.527304 + ], + [ + -73.490298, + 45.527569 + ], + [ + -73.489528, + 45.528064 + ], + [ + -73.488693, + 45.52859 + ], + [ + -73.488593, + 45.528653 + ], + [ + -73.487775, + 45.529162 + ], + [ + -73.487089, + 45.529621 + ], + [ + -73.486767, + 45.529844 + ], + [ + -73.486628, + 45.52994 + ], + [ + -73.485959, + 45.530394 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.485545, + 45.531018 + ], + [ + -73.485764, + 45.531107 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.488401, + 45.532204 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.490614, + 45.533115 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.492947, + 45.534078 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.494075, + 45.534543 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.495628, + 45.535241 + ], + [ + -73.495883, + 45.535371 + ], + [ + -73.496535, + 45.535675 + ], + [ + -73.496645, + 45.535727 + ], + [ + -73.496517, + 45.535856 + ], + [ + -73.496068, + 45.536307 + ], + [ + -73.496193, + 45.536366 + ], + [ + -73.496722, + 45.536592 + ] + ] + }, + "id": 164, + "properties": { + "id": "d4a5c810-4fc7-4839-b263-fa0d3d4b2179", + "data": { + "gtfs": { + "shape_id": "77_1_A" + }, + "segments": [ + { + "distanceMeters": 223, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 466, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 1036, + "travelTimeSeconds": 109 + }, + { + "distanceMeters": 976, + "travelTimeSeconds": 103 + }, + { + "distanceMeters": 479, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 1206, + "travelTimeSeconds": 129 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 436, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 485, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 555, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 544, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 507, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 1157, + "travelTimeSeconds": 151 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 384, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 102, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 48 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 216, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 14751, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 12092.399309267032, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.83, + "travelTimeWithoutDwellTimesSeconds": 2160, + "operatingTimeWithLayoverTimeSeconds": 2376, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2160, + "operatingSpeedWithLayoverMetersPerSecond": 6.21, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.83 + }, + "mode": "bus", + "name": "Parc ind. Brossard", + "color": "#A32638", + "nodes": [ + "dd75840f-4ec8-4ee8-b04f-ae7639f6c994", + "fbc5c4f7-343a-481e-867b-6e46cf998478", + "24ba4b22-45ca-4a49-b97e-fa35f5d53093", + "4c302a60-4ab3-44a3-be17-43359562aaf4", + "a09465ea-562d-48bd-b60a-ae948c06a28a", + "f673dd78-5910-4b73-a147-fdcaa1bf6a01", + "25804924-ba76-4ef4-b42b-ff451a0d33dc", + "3481b163-efe1-4b08-b6af-eecb2141ddbe", + "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", + "acb7092d-3b2a-4d79-a4e3-09e7e52af475", + "47d29e21-b442-4f1e-bc41-0d7871af14e8", + "7eaffbff-c86c-4810-b174-bda8780c04b4", + "e76a6766-6730-419b-bd29-f65b80bb6721", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "4996264a-c3f0-4fe8-be81-9ca3d8659c61", + "e089008c-4123-4897-95b5-a61e5e049f48", + "03b1ef77-b509-4f21-97d5-d511eeb821cb", + "56af9248-f973-4335-84c1-2e5e744a3910", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "fd062866-a8eb-4466-b53a-6adf8fc3f09a", + "6c42a8f6-a98f-4058-9992-d00706a03dff", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "09272548-09d5-4afa-a45f-80ba6dd656dd", + "d32c5a5b-6e6f-48c3-9f4e-37b94ed6e20d", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "161f72ac-926f-49be-80a4-a3cb10884d02", + "6c8872a8-685f-49ed-9246-92743dd113de", + "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "afda06bb-9f3e-43a6-883f-96226fa884c5", + "16c6c90b-9ef2-4203-a4a2-74a27e23dc94", + "dc7a6dd7-6fde-40ea-9f37-85aaefe35169", + "280d705c-e41e-4a8f-8450-ac212bf84d99", + "79974834-930d-4e4d-921b-dafd49580553", + "27c5df15-201f-4855-9f49-556fd659fd8e", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "999ed130-7d99-4115-ac3c-cabba7731288", + "d15f81ba-7519-47f7-aa07-0026f1b03e42", + "28f2fe65-961c-4550-a722-1e7790fe94ad", + "9cf81604-6d70-4ba8-a3fc-521104742058", + "4ae33b06-30dd-4ad3-8df9-3ce610880853" + ], + "stops": [], + "line_id": "27ac94b8-b83e-4a3e-a222-91dec1b1b4bd", + "segments": [ + 0, + 2, + 6, + 8, + 17, + 20, + 39, + 52, + 64, + 95, + 109, + 118, + 121, + 128, + 149, + 157, + 160, + 164, + 169, + 172, + 190, + 212, + 225, + 230, + 234, + 237, + 243, + 251, + 256, + 263, + 268, + 271, + 276, + 280, + 285, + 287, + 291, + 296, + 298, + 304 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 164, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.456382, + 45.545018 + ], + [ + -73.456413, + 45.545022 + ], + [ + -73.456506, + 45.545025 + ], + [ + -73.456655, + 45.545026 + ], + [ + -73.45681, + 45.545021 + ], + [ + -73.457082, + 45.545011 + ], + [ + -73.457324, + 45.544996 + ], + [ + -73.457656, + 45.544978 + ], + [ + -73.458865, + 45.54493 + ], + [ + -73.459543, + 45.544902 + ], + [ + -73.461426, + 45.544804 + ], + [ + -73.461417, + 45.544731 + ], + [ + -73.461405, + 45.544617 + ], + [ + -73.461397, + 45.544555 + ], + [ + -73.461383, + 45.54449 + ], + [ + -73.461378, + 45.544474 + ], + [ + -73.461351, + 45.54439 + ], + [ + -73.461333, + 45.544338 + ], + [ + -73.46128, + 45.544184 + ], + [ + -73.461265, + 45.544142 + ], + [ + -73.461237, + 45.544054 + ], + [ + -73.461219, + 45.543973 + ], + [ + -73.461207, + 45.543881 + ], + [ + -73.461191, + 45.543707 + ], + [ + -73.461179, + 45.543582 + ], + [ + -73.461166, + 45.543438 + ], + [ + -73.461154, + 45.543353 + ], + [ + -73.461131, + 45.543264 + ], + [ + -73.461124, + 45.543242 + ], + [ + -73.461112, + 45.543205 + ], + [ + -73.461098, + 45.543164 + ], + [ + -73.461081, + 45.543126 + ], + [ + -73.461069, + 45.543101 + ], + [ + -73.461055, + 45.543072 + ], + [ + -73.46101, + 45.542995 + ], + [ + -73.460943, + 45.542899 + ], + [ + -73.460902, + 45.54285 + ], + [ + -73.460879, + 45.542823 + ], + [ + -73.46086, + 45.542802 + ], + [ + -73.460836, + 45.542778 + ], + [ + -73.460809, + 45.542751 + ], + [ + -73.460787, + 45.542731 + ], + [ + -73.460762, + 45.542708 + ], + [ + -73.460739, + 45.542689 + ], + [ + -73.460712, + 45.542667 + ], + [ + -73.46069, + 45.542652 + ], + [ + -73.460685, + 45.542649 + ], + [ + -73.460657, + 45.542626 + ], + [ + -73.460649, + 45.542622 + ], + [ + -73.460643, + 45.542617 + ], + [ + -73.460635, + 45.542613 + ], + [ + -73.460629, + 45.542608 + ], + [ + -73.460601, + 45.54259 + ], + [ + -73.4606, + 45.54259 + ], + [ + -73.460571, + 45.542572 + ], + [ + -73.460541, + 45.542554 + ], + [ + -73.460511, + 45.542536 + ], + [ + -73.460481, + 45.542518 + ], + [ + -73.46045, + 45.542505 + ], + [ + -73.460419, + 45.542487 + ], + [ + -73.460387, + 45.542469 + ], + [ + -73.460355, + 45.542455 + ], + [ + -73.460322, + 45.542437 + ], + [ + -73.460289, + 45.542424 + ], + [ + -73.460256, + 45.54241 + ], + [ + -73.460223, + 45.542397 + ], + [ + -73.460189, + 45.542383 + ], + [ + -73.460154, + 45.54237 + ], + [ + -73.460119, + 45.542356 + ], + [ + -73.460085, + 45.542343 + ], + [ + -73.460079, + 45.542341 + ], + [ + -73.460014, + 45.54232 + ], + [ + -73.459951, + 45.542301 + ], + [ + -73.459906, + 45.542289 + ], + [ + -73.459869, + 45.54228 + ], + [ + -73.459827, + 45.542271 + ], + [ + -73.45951, + 45.542189 + ], + [ + -73.459471, + 45.54218 + ], + [ + -73.459432, + 45.542171 + ], + [ + -73.459394, + 45.542162 + ], + [ + -73.45936, + 45.54215 + ], + [ + -73.459356, + 45.542149 + ], + [ + -73.459318, + 45.54214 + ], + [ + -73.459297, + 45.542133 + ], + [ + -73.45928, + 45.542126 + ], + [ + -73.459243, + 45.542113 + ], + [ + -73.459206, + 45.542099 + ], + [ + -73.459169, + 45.542086 + ], + [ + -73.459133, + 45.542072 + ], + [ + -73.459097, + 45.542059 + ], + [ + -73.459062, + 45.542045 + ], + [ + -73.459026, + 45.542027 + ], + [ + -73.458992, + 45.542014 + ], + [ + -73.458957, + 45.541996 + ], + [ + -73.458923, + 45.541982 + ], + [ + -73.458889, + 45.541964 + ], + [ + -73.458856, + 45.541946 + ], + [ + -73.458823, + 45.541928 + ], + [ + -73.458791, + 45.54191 + ], + [ + -73.458759, + 45.541892 + ], + [ + -73.458728, + 45.541874 + ], + [ + -73.458697, + 45.541852 + ], + [ + -73.458666, + 45.541834 + ], + [ + -73.458636, + 45.541816 + ], + [ + -73.458598, + 45.541789 + ], + [ + -73.4585, + 45.541718 + ], + [ + -73.458394, + 45.54164 + ], + [ + -73.458385, + 45.541636 + ], + [ + -73.458368, + 45.541622 + ], + [ + -73.457785, + 45.541206 + ], + [ + -73.457586, + 45.541064 + ], + [ + -73.457684, + 45.540996 + ], + [ + -73.458502, + 45.54043 + ], + [ + -73.458577, + 45.540376 + ], + [ + -73.459325, + 45.539858 + ], + [ + -73.459859, + 45.539489 + ], + [ + -73.459971, + 45.539411 + ], + [ + -73.460057, + 45.539352 + ], + [ + -73.460539, + 45.539018 + ], + [ + -73.460731, + 45.538885 + ], + [ + -73.460897, + 45.538771 + ], + [ + -73.461553, + 45.538316 + ], + [ + -73.461725, + 45.538197 + ], + [ + -73.461864, + 45.5381 + ], + [ + -73.462187, + 45.53833 + ], + [ + -73.462514, + 45.538538 + ], + [ + -73.462534, + 45.538551 + ], + [ + -73.462697, + 45.53865 + ], + [ + -73.462874, + 45.538753 + ], + [ + -73.463118, + 45.538911 + ], + [ + -73.463271, + 45.539023 + ], + [ + -73.463464, + 45.539174 + ], + [ + -73.463513, + 45.539212 + ], + [ + -73.463699, + 45.539363 + ], + [ + -73.463797, + 45.539442 + ], + [ + -73.463819, + 45.53946 + ], + [ + -73.463869, + 45.5395 + ], + [ + -73.463917, + 45.539539 + ], + [ + -73.463967, + 45.539581 + ], + [ + -73.464033, + 45.539628 + ], + [ + -73.464064, + 45.539651 + ], + [ + -73.464104, + 45.539676 + ], + [ + -73.46414, + 45.539697 + ], + [ + -73.46418, + 45.539719 + ], + [ + -73.464231, + 45.539745 + ], + [ + -73.464269, + 45.539763 + ], + [ + -73.464334, + 45.539792 + ], + [ + -73.464385, + 45.539815 + ], + [ + -73.464445, + 45.539835 + ], + [ + -73.464497, + 45.539849 + ], + [ + -73.464558, + 45.53987 + ], + [ + -73.464679, + 45.539901 + ], + [ + -73.464825, + 45.539928 + ], + [ + -73.464951, + 45.539943 + ], + [ + -73.465098, + 45.539953 + ], + [ + -73.465216, + 45.539952 + ], + [ + -73.465315, + 45.539947 + ], + [ + -73.465335, + 45.539946 + ], + [ + -73.465482, + 45.539933 + ], + [ + -73.4656, + 45.539921 + ], + [ + -73.465709, + 45.539906 + ], + [ + -73.465848, + 45.539899 + ], + [ + -73.46602, + 45.539896 + ], + [ + -73.466115, + 45.539901 + ], + [ + -73.466142, + 45.539902 + ], + [ + -73.466227, + 45.539907 + ], + [ + -73.466407, + 45.539932 + ], + [ + -73.466559, + 45.539965 + ], + [ + -73.466727, + 45.539999 + ], + [ + -73.466892, + 45.540019 + ], + [ + -73.467302, + 45.540031 + ], + [ + -73.46737, + 45.540049 + ], + [ + -73.467487, + 45.540063 + ], + [ + -73.467665, + 45.540072 + ], + [ + -73.467897, + 45.540082 + ], + [ + -73.468103, + 45.540091 + ], + [ + -73.468119, + 45.540092 + ], + [ + -73.468265, + 45.540108 + ], + [ + -73.468441, + 45.540138 + ], + [ + -73.468505, + 45.54015 + ], + [ + -73.468874, + 45.540244 + ], + [ + -73.469159, + 45.540339 + ], + [ + -73.469347, + 45.540429 + ], + [ + -73.469589, + 45.540555 + ], + [ + -73.469962, + 45.540807 + ], + [ + -73.470428, + 45.541135 + ], + [ + -73.470827, + 45.541423 + ], + [ + -73.471228, + 45.5417 + ], + [ + -73.471277, + 45.541734 + ], + [ + -73.471378, + 45.541806 + ], + [ + -73.471513, + 45.541905 + ], + [ + -73.47173, + 45.541959 + ], + [ + -73.472231, + 45.542247 + ], + [ + -73.472636, + 45.54249 + ], + [ + -73.473362, + 45.542963 + ], + [ + -73.473833, + 45.543265 + ], + [ + -73.473915, + 45.543318 + ], + [ + -73.474124, + 45.54344 + ], + [ + -73.474404, + 45.543587 + ], + [ + -73.474586, + 45.543683 + ], + [ + -73.475053, + 45.543884 + ], + [ + -73.475109, + 45.543908 + ], + [ + -73.475416, + 45.544033 + ], + [ + -73.475463, + 45.544052 + ], + [ + -73.475489, + 45.544062 + ], + [ + -73.475906, + 45.544232 + ], + [ + -73.476368, + 45.544484 + ], + [ + -73.476738, + 45.5447 + ], + [ + -73.477125, + 45.544952 + ], + [ + -73.47749, + 45.545227 + ], + [ + -73.478085, + 45.54574 + ], + [ + -73.47809, + 45.545745 + ], + [ + -73.478167, + 45.545816 + ], + [ + -73.478252, + 45.545902 + ], + [ + -73.479053, + 45.546743 + ], + [ + -73.47929, + 45.546982 + ], + [ + -73.479428, + 45.54712 + ], + [ + -73.479532, + 45.547225 + ], + [ + -73.479872, + 45.547514 + ], + [ + -73.479981, + 45.547607 + ], + [ + -73.480465, + 45.547976 + ], + [ + -73.480787, + 45.548206 + ], + [ + -73.481574, + 45.548732 + ], + [ + -73.481869, + 45.548945 + ], + [ + -73.481961, + 45.549011 + ], + [ + -73.482061, + 45.549092 + ], + [ + -73.482468, + 45.549434 + ], + [ + -73.482621, + 45.549591 + ], + [ + -73.48267, + 45.549641 + ], + [ + -73.482956, + 45.549956 + ], + [ + -73.483212, + 45.550235 + ], + [ + -73.483487, + 45.550526 + ], + [ + -73.483692, + 45.550744 + ], + [ + -73.483956, + 45.551023 + ], + [ + -73.484888, + 45.550545 + ], + [ + -73.485059, + 45.550458 + ], + [ + -73.485528, + 45.550218 + ], + [ + -73.485955, + 45.549961 + ], + [ + -73.489407, + 45.547816 + ], + [ + -73.48951, + 45.547751 + ], + [ + -73.490714, + 45.547006 + ], + [ + -73.491216, + 45.546506 + ], + [ + -73.491431, + 45.546368 + ], + [ + -73.491829, + 45.546111 + ], + [ + -73.491911, + 45.546057 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.492793, + 45.54613 + ], + [ + -73.492868, + 45.546192 + ], + [ + -73.492976, + 45.546278 + ], + [ + -73.493835, + 45.546966 + ], + [ + -73.494604, + 45.547573 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.495748, + 45.548498 + ], + [ + -73.495811, + 45.548549 + ], + [ + -73.49673, + 45.549278 + ], + [ + -73.497087, + 45.549548 + ], + [ + -73.49736, + 45.549719 + ], + [ + -73.497501, + 45.549805 + ], + [ + -73.497722, + 45.549908 + ], + [ + -73.497944, + 45.549998 + ], + [ + -73.498136, + 45.55007 + ], + [ + -73.498405, + 45.550151 + ], + [ + -73.498716, + 45.550237 + ], + [ + -73.499009, + 45.550295 + ], + [ + -73.499514, + 45.550349 + ], + [ + -73.499763, + 45.550363 + ], + [ + -73.501515, + 45.550448 + ], + [ + -73.502446, + 45.550493 + ], + [ + -73.502797, + 45.550502 + ], + [ + -73.502913, + 45.550498 + ], + [ + -73.503017, + 45.550484 + ], + [ + -73.503194, + 45.550453 + ], + [ + -73.503355, + 45.550399 + ], + [ + -73.503504, + 45.550327 + ], + [ + -73.503636, + 45.550237 + ], + [ + -73.503751, + 45.550133 + ], + [ + -73.503955, + 45.549904 + ], + [ + -73.504046, + 45.549787 + ], + [ + -73.504119, + 45.549647 + ], + [ + -73.50416, + 45.549508 + ], + [ + -73.504212, + 45.548909 + ], + [ + -73.504289, + 45.548585 + ], + [ + -73.504342, + 45.548423 + ], + [ + -73.504477, + 45.548095 + ], + [ + -73.504558, + 45.547933 + ], + [ + -73.504654, + 45.547771 + ], + [ + -73.504887, + 45.547461 + ], + [ + -73.505281, + 45.546997 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.52282, + 45.530146 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.517872, + 45.525397 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.521017, + 45.523892 + ], + [ + -73.521053, + 45.523883 + ], + [ + -73.521061, + 45.523869 + ], + [ + -73.521065, + 45.523851 + ], + [ + -73.521071, + 45.523799 + ] + ] + }, + "id": 165, + "properties": { + "id": "b466d4c8-fa43-4f0f-ac9f-fe51b209a22b", + "data": { + "gtfs": { + "shape_id": "78_1_A" + }, + "segments": [ + { + "distanceMeters": 194, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 435, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 464, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 997, + "travelTimeSeconds": 126 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 5077, + "travelTimeSeconds": 562 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10102, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5569.104551797418, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.42, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 7.32, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.42 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "7297ee1d-b36d-46fd-b6df-e9807a5791cf", + "ed9c5edc-a8fc-42c1-8283-02b881c76ff4", + "81ceaeba-df2d-476d-a80e-d7112cda70cb", + "b42cc3ff-2da3-4535-b070-1150cc42c135", + "e11daa5e-3189-4684-b63e-0ec15544872f", + "aa7a5ed8-9a21-492a-a960-c6b24bbf08aa", + "3f5db866-fafa-412d-a611-8e8ceedc9d66", + "a392bf4c-9790-451e-a9bc-51428fa10a69", + "497c7cbc-7c2a-4684-ae90-71dc2a66863f", + "8e9d3a93-2217-4362-8631-6cc69bd428bc", + "248781a4-a949-4c45-bc5a-1de80211510e", + "d179e57e-d1e0-4e92-9205-bca60d3115b1", + "3a5ea563-a764-4bb6-b2d3-d98a1c377161", + "0e8b7968-4242-43b0-a1a6-300cb3c93219", + "06cdca3a-f2d1-4f41-837c-693f8619463c", + "221d32b3-ef8a-416e-a402-91b2f0007208", + "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", + "64648218-6b63-436c-9a46-4770987ba432", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "abb1e85e-1feb-4df9-9b0a-8176309def3f", + "segments": [ + 0, + 8, + 15, + 28, + 80, + 109, + 119, + 122, + 133, + 156, + 175, + 187, + 195, + 211, + 223, + 231, + 246, + 252 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 165, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521071, + 45.523799 + ], + [ + -73.521073, + 45.52378 + ], + [ + -73.521082, + 45.523698 + ], + [ + -73.521077, + 45.523679 + ], + [ + -73.52106, + 45.523665 + ], + [ + -73.521034, + 45.523659 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519421, + 45.523501 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519273, + 45.526813 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517718, + 45.527204 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517465, + 45.528168 + ], + [ + -73.517458, + 45.528249 + ], + [ + -73.517471, + 45.528385 + ], + [ + -73.517504, + 45.528565 + ], + [ + -73.517516, + 45.528652 + ], + [ + -73.517553, + 45.52877 + ], + [ + -73.517635, + 45.529002 + ], + [ + -73.517693, + 45.529249 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518574, + 45.533716 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501288, + 45.549946 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500328, + 45.550074 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.499756, + 45.550039 + ], + [ + -73.499583, + 45.550043 + ], + [ + -73.499254, + 45.550048 + ], + [ + -73.49904, + 45.550039 + ], + [ + -73.498716, + 45.549998 + ], + [ + -73.49829, + 45.549868 + ], + [ + -73.497924, + 45.54971 + ], + [ + -73.497576, + 45.54953 + ], + [ + -73.497225, + 45.549332 + ], + [ + -73.497041, + 45.549211 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494903, + 45.54755 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.491911, + 45.546057 + ], + [ + -73.491829, + 45.546111 + ], + [ + -73.491647, + 45.546228 + ], + [ + -73.491431, + 45.546368 + ], + [ + -73.491216, + 45.546506 + ], + [ + -73.491073, + 45.546649 + ], + [ + -73.490714, + 45.547006 + ], + [ + -73.48951, + 45.547751 + ], + [ + -73.489407, + 45.547816 + ], + [ + -73.485955, + 45.549961 + ], + [ + -73.485528, + 45.550218 + ], + [ + -73.485059, + 45.550458 + ], + [ + -73.484679, + 45.550653 + ], + [ + -73.484195, + 45.5509 + ], + [ + -73.483956, + 45.551023 + ], + [ + -73.483692, + 45.550744 + ], + [ + -73.483212, + 45.550235 + ], + [ + -73.482956, + 45.549956 + ], + [ + -73.48267, + 45.549641 + ], + [ + -73.482621, + 45.549591 + ], + [ + -73.482468, + 45.549434 + ], + [ + -73.482152, + 45.549169 + ], + [ + -73.482061, + 45.549092 + ], + [ + -73.481961, + 45.549011 + ], + [ + -73.481574, + 45.548732 + ], + [ + -73.480787, + 45.548206 + ], + [ + -73.480465, + 45.547976 + ], + [ + -73.479981, + 45.547607 + ], + [ + -73.479872, + 45.547514 + ], + [ + -73.479532, + 45.547225 + ], + [ + -73.479428, + 45.54712 + ], + [ + -73.47929, + 45.546982 + ], + [ + -73.479053, + 45.546743 + ], + [ + -73.478328, + 45.545982 + ], + [ + -73.478252, + 45.545902 + ], + [ + -73.478167, + 45.545816 + ], + [ + -73.478085, + 45.54574 + ], + [ + -73.47749, + 45.545227 + ], + [ + -73.477125, + 45.544952 + ], + [ + -73.476738, + 45.5447 + ], + [ + -73.476368, + 45.544484 + ], + [ + -73.475906, + 45.544232 + ], + [ + -73.475489, + 45.544062 + ], + [ + -73.475463, + 45.544052 + ], + [ + -73.475416, + 45.544033 + ], + [ + -73.475109, + 45.543908 + ], + [ + -73.475053, + 45.543884 + ], + [ + -73.474586, + 45.543683 + ], + [ + -73.474404, + 45.543587 + ], + [ + -73.474124, + 45.54344 + ], + [ + -73.474009, + 45.543373 + ], + [ + -73.473915, + 45.543318 + ], + [ + -73.473362, + 45.542963 + ], + [ + -73.473189, + 45.54285 + ], + [ + -73.472636, + 45.54249 + ], + [ + -73.472231, + 45.542247 + ], + [ + -73.471823, + 45.542013 + ], + [ + -73.47173, + 45.541959 + ], + [ + -73.471636, + 45.541824 + ], + [ + -73.471512, + 45.54173 + ], + [ + -73.471385, + 45.541635 + ], + [ + -73.470953, + 45.541334 + ], + [ + -73.470086, + 45.540717 + ], + [ + -73.469639, + 45.540393 + ], + [ + -73.469465, + 45.540289 + ], + [ + -73.469233, + 45.540177 + ], + [ + -73.468887, + 45.540078 + ], + [ + -73.468519, + 45.54001 + ], + [ + -73.468512, + 45.540009 + ], + [ + -73.468289, + 45.539983 + ], + [ + -73.468097, + 45.539977 + ], + [ + -73.467889, + 45.539974 + ], + [ + -73.467676, + 45.539978 + ], + [ + -73.467668, + 45.539978 + ], + [ + -73.467407, + 45.539989 + ], + [ + -73.467341, + 45.540003 + ], + [ + -73.467302, + 45.540031 + ], + [ + -73.466892, + 45.540019 + ], + [ + -73.466727, + 45.539999 + ], + [ + -73.466559, + 45.539965 + ], + [ + -73.466407, + 45.539932 + ], + [ + -73.466227, + 45.539907 + ], + [ + -73.466142, + 45.539902 + ], + [ + -73.466115, + 45.539901 + ], + [ + -73.46602, + 45.539896 + ], + [ + -73.465926, + 45.539898 + ], + [ + -73.465848, + 45.539899 + ], + [ + -73.465709, + 45.539906 + ], + [ + -73.4656, + 45.539921 + ], + [ + -73.465482, + 45.539933 + ], + [ + -73.465335, + 45.539946 + ], + [ + -73.465216, + 45.539952 + ], + [ + -73.465098, + 45.539953 + ], + [ + -73.464951, + 45.539943 + ], + [ + -73.464825, + 45.539928 + ], + [ + -73.464679, + 45.539901 + ], + [ + -73.464558, + 45.53987 + ], + [ + -73.464497, + 45.539849 + ], + [ + -73.464445, + 45.539835 + ], + [ + -73.464385, + 45.539815 + ], + [ + -73.464334, + 45.539792 + ], + [ + -73.464269, + 45.539763 + ], + [ + -73.464231, + 45.539745 + ], + [ + -73.46418, + 45.539719 + ], + [ + -73.46414, + 45.539697 + ], + [ + -73.464104, + 45.539676 + ], + [ + -73.464064, + 45.539651 + ], + [ + -73.464033, + 45.539628 + ], + [ + -73.46402, + 45.539619 + ], + [ + -73.463967, + 45.539581 + ], + [ + -73.463917, + 45.539539 + ], + [ + -73.463869, + 45.5395 + ], + [ + -73.463819, + 45.53946 + ], + [ + -73.463797, + 45.539442 + ], + [ + -73.463513, + 45.539212 + ], + [ + -73.463464, + 45.539174 + ], + [ + -73.463271, + 45.539023 + ], + [ + -73.463118, + 45.538911 + ], + [ + -73.462874, + 45.538753 + ], + [ + -73.462697, + 45.53865 + ], + [ + -73.462534, + 45.538551 + ], + [ + -73.462187, + 45.53833 + ], + [ + -73.461988, + 45.538188 + ], + [ + -73.461864, + 45.5381 + ], + [ + -73.461621, + 45.538269 + ], + [ + -73.461553, + 45.538316 + ], + [ + -73.460897, + 45.538771 + ], + [ + -73.460767, + 45.53886 + ], + [ + -73.460539, + 45.539018 + ], + [ + -73.460057, + 45.539352 + ], + [ + -73.459971, + 45.539411 + ], + [ + -73.459859, + 45.539489 + ], + [ + -73.459325, + 45.539858 + ], + [ + -73.458596, + 45.540363 + ], + [ + -73.458577, + 45.540376 + ], + [ + -73.458502, + 45.54043 + ], + [ + -73.457586, + 45.541064 + ], + [ + -73.457727, + 45.541165 + ], + [ + -73.458046, + 45.541392 + ], + [ + -73.458368, + 45.541622 + ], + [ + -73.458385, + 45.541636 + ], + [ + -73.458394, + 45.54164 + ], + [ + -73.4585, + 45.541718 + ], + [ + -73.458598, + 45.541789 + ], + [ + -73.458636, + 45.541816 + ], + [ + -73.458666, + 45.541834 + ], + [ + -73.458697, + 45.541852 + ], + [ + -73.458728, + 45.541874 + ], + [ + -73.458759, + 45.541892 + ], + [ + -73.458791, + 45.54191 + ], + [ + -73.458823, + 45.541928 + ], + [ + -73.458856, + 45.541946 + ], + [ + -73.458889, + 45.541964 + ], + [ + -73.458923, + 45.541982 + ], + [ + -73.458957, + 45.541996 + ], + [ + -73.458992, + 45.542014 + ], + [ + -73.459026, + 45.542027 + ], + [ + -73.459062, + 45.542045 + ], + [ + -73.459097, + 45.542059 + ], + [ + -73.459133, + 45.542072 + ], + [ + -73.459169, + 45.542086 + ], + [ + -73.459206, + 45.542099 + ], + [ + -73.459243, + 45.542113 + ], + [ + -73.45928, + 45.542126 + ], + [ + -73.459297, + 45.542133 + ], + [ + -73.459318, + 45.54214 + ], + [ + -73.459356, + 45.542149 + ], + [ + -73.459394, + 45.542162 + ], + [ + -73.459432, + 45.542171 + ], + [ + -73.459471, + 45.54218 + ], + [ + -73.45951, + 45.542189 + ], + [ + -73.459794, + 45.542262 + ], + [ + -73.459827, + 45.542271 + ], + [ + -73.459869, + 45.54228 + ], + [ + -73.459906, + 45.542289 + ], + [ + -73.459951, + 45.542301 + ], + [ + -73.460014, + 45.54232 + ], + [ + -73.460079, + 45.542341 + ], + [ + -73.460085, + 45.542343 + ], + [ + -73.460119, + 45.542356 + ], + [ + -73.460154, + 45.54237 + ], + [ + -73.460189, + 45.542383 + ], + [ + -73.460223, + 45.542397 + ], + [ + -73.460256, + 45.54241 + ], + [ + -73.460289, + 45.542424 + ], + [ + -73.460322, + 45.542437 + ], + [ + -73.460355, + 45.542455 + ], + [ + -73.460387, + 45.542469 + ], + [ + -73.460419, + 45.542487 + ], + [ + -73.46045, + 45.542505 + ], + [ + -73.460481, + 45.542518 + ], + [ + -73.460511, + 45.542536 + ], + [ + -73.460541, + 45.542554 + ], + [ + -73.460571, + 45.542572 + ], + [ + -73.4606, + 45.54259 + ], + [ + -73.460601, + 45.54259 + ], + [ + -73.460629, + 45.542608 + ], + [ + -73.460635, + 45.542613 + ], + [ + -73.460643, + 45.542617 + ], + [ + -73.460649, + 45.542622 + ], + [ + -73.460657, + 45.542626 + ], + [ + -73.460685, + 45.542649 + ], + [ + -73.46069, + 45.542652 + ], + [ + -73.460712, + 45.542667 + ], + [ + -73.460739, + 45.542689 + ], + [ + -73.460762, + 45.542708 + ], + [ + -73.460787, + 45.542731 + ], + [ + -73.460809, + 45.542751 + ], + [ + -73.460812, + 45.542754 + ], + [ + -73.460836, + 45.542778 + ], + [ + -73.46086, + 45.542802 + ], + [ + -73.460879, + 45.542823 + ], + [ + -73.460902, + 45.54285 + ], + [ + -73.460943, + 45.542899 + ], + [ + -73.46101, + 45.542995 + ], + [ + -73.461055, + 45.543072 + ], + [ + -73.461069, + 45.543101 + ], + [ + -73.461081, + 45.543126 + ], + [ + -73.461098, + 45.543164 + ], + [ + -73.461112, + 45.543205 + ], + [ + -73.461131, + 45.543264 + ], + [ + -73.461154, + 45.543353 + ], + [ + -73.461166, + 45.543438 + ], + [ + -73.461179, + 45.543582 + ], + [ + -73.461191, + 45.543707 + ], + [ + -73.461207, + 45.543881 + ], + [ + -73.461219, + 45.543973 + ], + [ + -73.461237, + 45.544054 + ], + [ + -73.461265, + 45.544142 + ], + [ + -73.46128, + 45.544184 + ], + [ + -73.461333, + 45.544338 + ], + [ + -73.461351, + 45.54439 + ], + [ + -73.461383, + 45.54449 + ], + [ + -73.461397, + 45.544555 + ], + [ + -73.461405, + 45.544617 + ], + [ + -73.461409, + 45.544654 + ], + [ + -73.461426, + 45.544804 + ], + [ + -73.459568, + 45.544901 + ], + [ + -73.459545, + 45.544902 + ], + [ + -73.459543, + 45.544902 + ], + [ + -73.457656, + 45.544978 + ], + [ + -73.457324, + 45.544996 + ], + [ + -73.457082, + 45.545011 + ], + [ + -73.456903, + 45.545306 + ], + [ + -73.456635, + 45.545662 + ], + [ + -73.456377, + 45.545905 + ], + [ + -73.456057, + 45.546152 + ], + [ + -73.455906, + 45.546254 + ], + [ + -73.455904, + 45.546255 + ], + [ + -73.455836, + 45.5463 + ], + [ + -73.45572, + 45.546377 + ], + [ + -73.455632, + 45.546287 + ], + [ + -73.45524, + 45.54599 + ], + [ + -73.455132, + 45.545846 + ], + [ + -73.455065, + 45.545787 + ], + [ + -73.455026, + 45.545751 + ], + [ + -73.455001, + 45.545724 + ], + [ + -73.454986, + 45.545697 + ], + [ + -73.454971, + 45.545648 + ], + [ + -73.454962, + 45.545589 + ], + [ + -73.454971, + 45.545535 + ], + [ + -73.454997, + 45.54547 + ], + [ + -73.455003, + 45.545454 + ], + [ + -73.45504, + 45.545414 + ], + [ + -73.455094, + 45.545301 + ], + [ + -73.455158, + 45.545252 + ], + [ + -73.455247, + 45.545184 + ], + [ + -73.455332, + 45.545094 + ], + [ + -73.455461, + 45.54495 + ], + [ + -73.455559, + 45.544829 + ], + [ + -73.456108, + 45.544969 + ], + [ + -73.456291, + 45.545005 + ], + [ + -73.456382, + 45.545018 + ] + ] + }, + "id": 166, + "properties": { + "id": "3ab91717-5c76-40b7-bf26-f29de615a350", + "data": { + "gtfs": { + "shape_id": "78_1_R" + }, + "segments": [ + { + "distanceMeters": 3895, + "travelTimeSeconds": 480 + }, + { + "distanceMeters": 534, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 782, + "travelTimeSeconds": 106 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 465, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 348, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 67 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9768, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5569.104551797418, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.78, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 6.03, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.78 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "09bf17cd-9db1-41e3-b993-62146cb91158", + "8a3f1208-7ffb-452e-8ebb-c436acba82d6", + "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", + "cd788179-2c9b-4e1e-9ba3-10b35bfde3fa", + "06cdca3a-f2d1-4f41-837c-693f8619463c", + "0e8b7968-4242-43b0-a1a6-300cb3c93219", + "3a5ea563-a764-4bb6-b2d3-d98a1c377161", + "a1edad0a-8432-4850-b895-9d97092489b6", + "248781a4-a949-4c45-bc5a-1de80211510e", + "8e9d3a93-2217-4362-8631-6cc69bd428bc", + "497c7cbc-7c2a-4684-ae90-71dc2a66863f", + "a392bf4c-9790-451e-a9bc-51428fa10a69", + "3f5db866-fafa-412d-a611-8e8ceedc9d66", + "6fd0bc88-4e0d-40ae-bdaa-413bd47146b0", + "aa7a5ed8-9a21-492a-a960-c6b24bbf08aa", + "c7d03075-5044-4f36-93d3-b0ab9d315d42", + "b42cc3ff-2da3-4535-b070-1150cc42c135", + "81ceaeba-df2d-476d-a80e-d7112cda70cb", + "ed9c5edc-a8fc-42c1-8283-02b881c76ff4", + "10018cb4-bab7-4531-9c02-bb0d227ab19c", + "7297ee1d-b36d-46fd-b6df-e9807a5791cf" + ], + "stops": [], + "line_id": "abb1e85e-1feb-4df9-9b0a-8176309def3f", + "segments": [ + 0, + 109, + 126, + 133, + 144, + 152, + 164, + 181, + 187, + 199, + 216, + 239, + 253, + 258, + 264, + 269, + 302, + 339, + 366, + 368, + 379 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 166, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521071, + 45.523799 + ], + [ + -73.521073, + 45.52378 + ], + [ + -73.521082, + 45.523698 + ], + [ + -73.521077, + 45.523679 + ], + [ + -73.52106, + 45.523665 + ], + [ + -73.521034, + 45.523659 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523523, + 45.527958 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.502818, + 45.54899 + ], + [ + -73.502212, + 45.54962 + ], + [ + -73.501984, + 45.549836 + ], + [ + -73.50186, + 45.549926 + ], + [ + -73.501728, + 45.550007 + ], + [ + -73.501592, + 45.550079 + ], + [ + -73.501452, + 45.550133 + ], + [ + -73.501309, + 45.550183 + ], + [ + -73.50116, + 45.550219 + ], + [ + -73.501011, + 45.55025 + ], + [ + -73.500705, + 45.550282 + ], + [ + -73.500547, + 45.550286 + ], + [ + -73.49991, + 45.550295 + ], + [ + -73.499238, + 45.550226 + ], + [ + -73.498778, + 45.550153 + ], + [ + -73.498464, + 45.550065 + ], + [ + -73.498138, + 45.54995 + ], + [ + -73.497746, + 45.549767 + ], + [ + -73.497494, + 45.54961 + ], + [ + -73.497234, + 45.549428 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494901, + 45.547549 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.491911, + 45.546057 + ], + [ + -73.491829, + 45.546111 + ], + [ + -73.491646, + 45.546229 + ], + [ + -73.491431, + 45.546368 + ], + [ + -73.491216, + 45.546506 + ], + [ + -73.491073, + 45.546649 + ], + [ + -73.490714, + 45.547006 + ], + [ + -73.48951, + 45.547751 + ], + [ + -73.489407, + 45.547816 + ], + [ + -73.485955, + 45.549961 + ], + [ + -73.485528, + 45.550218 + ], + [ + -73.485059, + 45.550458 + ], + [ + -73.484322, + 45.550836 + ], + [ + -73.484194, + 45.550901 + ], + [ + -73.483956, + 45.551023 + ], + [ + -73.483692, + 45.550744 + ], + [ + -73.483212, + 45.550235 + ], + [ + -73.482956, + 45.549956 + ], + [ + -73.48267, + 45.549641 + ], + [ + -73.482621, + 45.549591 + ], + [ + -73.482468, + 45.549434 + ], + [ + -73.482151, + 45.549168 + ], + [ + -73.482061, + 45.549092 + ], + [ + -73.481961, + 45.549011 + ], + [ + -73.481574, + 45.548732 + ], + [ + -73.480787, + 45.548206 + ], + [ + -73.480465, + 45.547976 + ], + [ + -73.479981, + 45.547607 + ], + [ + -73.479872, + 45.547514 + ], + [ + -73.479532, + 45.547225 + ], + [ + -73.479428, + 45.54712 + ], + [ + -73.47929, + 45.546982 + ], + [ + -73.479053, + 45.546743 + ], + [ + -73.478327, + 45.545981 + ], + [ + -73.478252, + 45.545902 + ], + [ + -73.478167, + 45.545816 + ], + [ + -73.478085, + 45.54574 + ], + [ + -73.47749, + 45.545227 + ], + [ + -73.477125, + 45.544952 + ], + [ + -73.476738, + 45.5447 + ], + [ + -73.476368, + 45.544484 + ], + [ + -73.475906, + 45.544232 + ], + [ + -73.475489, + 45.544062 + ], + [ + -73.475463, + 45.544052 + ], + [ + -73.475416, + 45.544033 + ], + [ + -73.475109, + 45.543908 + ], + [ + -73.475053, + 45.543884 + ], + [ + -73.474586, + 45.543683 + ], + [ + -73.474404, + 45.543587 + ], + [ + -73.474124, + 45.54344 + ], + [ + -73.474008, + 45.543372 + ], + [ + -73.473915, + 45.543318 + ], + [ + -73.473362, + 45.542963 + ], + [ + -73.473189, + 45.54285 + ], + [ + -73.472636, + 45.54249 + ], + [ + -73.472231, + 45.542247 + ], + [ + -73.471822, + 45.542012 + ], + [ + -73.47173, + 45.541959 + ], + [ + -73.471636, + 45.541824 + ], + [ + -73.471512, + 45.54173 + ], + [ + -73.471385, + 45.541635 + ], + [ + -73.470953, + 45.541334 + ], + [ + -73.470086, + 45.540717 + ], + [ + -73.469639, + 45.540393 + ], + [ + -73.469465, + 45.540289 + ], + [ + -73.469233, + 45.540177 + ], + [ + -73.468887, + 45.540078 + ], + [ + -73.468519, + 45.54001 + ], + [ + -73.468511, + 45.540009 + ], + [ + -73.468289, + 45.539983 + ], + [ + -73.468097, + 45.539977 + ], + [ + -73.467889, + 45.539974 + ], + [ + -73.467676, + 45.539978 + ], + [ + -73.467668, + 45.539978 + ], + [ + -73.467407, + 45.539989 + ], + [ + -73.467341, + 45.540003 + ], + [ + -73.467302, + 45.540031 + ], + [ + -73.466892, + 45.540019 + ], + [ + -73.466727, + 45.539999 + ], + [ + -73.466559, + 45.539965 + ], + [ + -73.466407, + 45.539932 + ], + [ + -73.466227, + 45.539907 + ], + [ + -73.466142, + 45.539902 + ], + [ + -73.466115, + 45.539901 + ], + [ + -73.46602, + 45.539896 + ], + [ + -73.465938, + 45.539898 + ], + [ + -73.465848, + 45.539899 + ], + [ + -73.465709, + 45.539906 + ], + [ + -73.4656, + 45.539921 + ], + [ + -73.465482, + 45.539933 + ], + [ + -73.465335, + 45.539946 + ], + [ + -73.465216, + 45.539952 + ], + [ + -73.465098, + 45.539953 + ], + [ + -73.464951, + 45.539943 + ], + [ + -73.464825, + 45.539928 + ], + [ + -73.464679, + 45.539901 + ], + [ + -73.464558, + 45.53987 + ], + [ + -73.464497, + 45.539849 + ], + [ + -73.464445, + 45.539835 + ], + [ + -73.464385, + 45.539815 + ], + [ + -73.464334, + 45.539792 + ], + [ + -73.464269, + 45.539763 + ], + [ + -73.464231, + 45.539745 + ], + [ + -73.46418, + 45.539719 + ], + [ + -73.46414, + 45.539697 + ], + [ + -73.464104, + 45.539676 + ], + [ + -73.464064, + 45.539651 + ], + [ + -73.464033, + 45.539628 + ], + [ + -73.46402, + 45.539618 + ], + [ + -73.463967, + 45.539581 + ], + [ + -73.463917, + 45.539539 + ], + [ + -73.463869, + 45.5395 + ], + [ + -73.463819, + 45.53946 + ], + [ + -73.463797, + 45.539442 + ], + [ + -73.463513, + 45.539212 + ], + [ + -73.463464, + 45.539174 + ], + [ + -73.463271, + 45.539023 + ], + [ + -73.463118, + 45.538911 + ], + [ + -73.462874, + 45.538753 + ], + [ + -73.462697, + 45.53865 + ], + [ + -73.462534, + 45.538551 + ], + [ + -73.462187, + 45.53833 + ], + [ + -73.461987, + 45.538188 + ], + [ + -73.461864, + 45.5381 + ], + [ + -73.461621, + 45.538269 + ], + [ + -73.461553, + 45.538316 + ], + [ + -73.460897, + 45.538771 + ], + [ + -73.460767, + 45.538861 + ], + [ + -73.460539, + 45.539018 + ], + [ + -73.460057, + 45.539352 + ], + [ + -73.459971, + 45.539411 + ], + [ + -73.459859, + 45.539489 + ], + [ + -73.459325, + 45.539858 + ], + [ + -73.458595, + 45.540364 + ], + [ + -73.458577, + 45.540376 + ], + [ + -73.458502, + 45.54043 + ], + [ + -73.457586, + 45.541064 + ], + [ + -73.457727, + 45.541165 + ], + [ + -73.458047, + 45.541393 + ], + [ + -73.458368, + 45.541622 + ], + [ + -73.458385, + 45.541636 + ], + [ + -73.458394, + 45.54164 + ], + [ + -73.4585, + 45.541718 + ], + [ + -73.458598, + 45.541789 + ], + [ + -73.458636, + 45.541816 + ], + [ + -73.458666, + 45.541834 + ], + [ + -73.458697, + 45.541852 + ], + [ + -73.458728, + 45.541874 + ], + [ + -73.458759, + 45.541892 + ], + [ + -73.458791, + 45.54191 + ], + [ + -73.458823, + 45.541928 + ], + [ + -73.458856, + 45.541946 + ], + [ + -73.458889, + 45.541964 + ], + [ + -73.458923, + 45.541982 + ], + [ + -73.458957, + 45.541996 + ], + [ + -73.458992, + 45.542014 + ], + [ + -73.459026, + 45.542027 + ], + [ + -73.459062, + 45.542045 + ], + [ + -73.459097, + 45.542059 + ], + [ + -73.459133, + 45.542072 + ], + [ + -73.459169, + 45.542086 + ], + [ + -73.459206, + 45.542099 + ], + [ + -73.459243, + 45.542113 + ], + [ + -73.45928, + 45.542126 + ], + [ + -73.459297, + 45.542133 + ], + [ + -73.459318, + 45.54214 + ], + [ + -73.459356, + 45.542149 + ], + [ + -73.459394, + 45.542162 + ], + [ + -73.459432, + 45.542171 + ], + [ + -73.459471, + 45.54218 + ], + [ + -73.45951, + 45.542189 + ], + [ + -73.459795, + 45.542262 + ], + [ + -73.459827, + 45.542271 + ], + [ + -73.459869, + 45.54228 + ], + [ + -73.459906, + 45.542289 + ], + [ + -73.459951, + 45.542301 + ], + [ + -73.460014, + 45.54232 + ], + [ + -73.460079, + 45.542341 + ], + [ + -73.460085, + 45.542343 + ], + [ + -73.460119, + 45.542356 + ], + [ + -73.460154, + 45.54237 + ], + [ + -73.460189, + 45.542383 + ], + [ + -73.460223, + 45.542397 + ], + [ + -73.460256, + 45.54241 + ], + [ + -73.460289, + 45.542424 + ], + [ + -73.460322, + 45.542437 + ], + [ + -73.460355, + 45.542455 + ], + [ + -73.460387, + 45.542469 + ], + [ + -73.460419, + 45.542487 + ], + [ + -73.46045, + 45.542505 + ], + [ + -73.460481, + 45.542518 + ], + [ + -73.460511, + 45.542536 + ], + [ + -73.460541, + 45.542554 + ], + [ + -73.460571, + 45.542572 + ], + [ + -73.4606, + 45.54259 + ], + [ + -73.460601, + 45.54259 + ], + [ + -73.460629, + 45.542608 + ], + [ + -73.460635, + 45.542613 + ], + [ + -73.460643, + 45.542617 + ], + [ + -73.460649, + 45.542622 + ], + [ + -73.460657, + 45.542626 + ], + [ + -73.460685, + 45.542649 + ], + [ + -73.46069, + 45.542652 + ], + [ + -73.460712, + 45.542667 + ], + [ + -73.460739, + 45.542689 + ], + [ + -73.460762, + 45.542708 + ], + [ + -73.460787, + 45.542731 + ], + [ + -73.460809, + 45.542751 + ], + [ + -73.460812, + 45.542755 + ], + [ + -73.460836, + 45.542778 + ], + [ + -73.46086, + 45.542802 + ], + [ + -73.460879, + 45.542823 + ], + [ + -73.460902, + 45.54285 + ], + [ + -73.460943, + 45.542899 + ], + [ + -73.46101, + 45.542995 + ], + [ + -73.461055, + 45.543072 + ], + [ + -73.461069, + 45.543101 + ], + [ + -73.461081, + 45.543126 + ], + [ + -73.461098, + 45.543164 + ], + [ + -73.461112, + 45.543205 + ], + [ + -73.461131, + 45.543264 + ], + [ + -73.461154, + 45.543353 + ], + [ + -73.461166, + 45.543438 + ], + [ + -73.461179, + 45.543582 + ], + [ + -73.461191, + 45.543707 + ], + [ + -73.461207, + 45.543881 + ], + [ + -73.461219, + 45.543973 + ], + [ + -73.461237, + 45.544054 + ], + [ + -73.461265, + 45.544142 + ], + [ + -73.46128, + 45.544184 + ], + [ + -73.4613, + 45.544241 + ], + [ + -73.461333, + 45.544338 + ], + [ + -73.461351, + 45.54439 + ], + [ + -73.461383, + 45.54449 + ], + [ + -73.461397, + 45.544555 + ], + [ + -73.461405, + 45.544617 + ], + [ + -73.461409, + 45.544654 + ], + [ + -73.461426, + 45.544804 + ], + [ + -73.459567, + 45.544901 + ], + [ + -73.459543, + 45.544902 + ], + [ + -73.457656, + 45.544978 + ], + [ + -73.457324, + 45.544996 + ], + [ + -73.457082, + 45.545011 + ], + [ + -73.456903, + 45.545306 + ], + [ + -73.456635, + 45.545662 + ], + [ + -73.456377, + 45.545905 + ], + [ + -73.456057, + 45.546152 + ], + [ + -73.455906, + 45.546254 + ], + [ + -73.455903, + 45.546255 + ], + [ + -73.455836, + 45.5463 + ], + [ + -73.45572, + 45.546377 + ], + [ + -73.455632, + 45.546287 + ], + [ + -73.45524, + 45.54599 + ], + [ + -73.455132, + 45.545846 + ], + [ + -73.455065, + 45.545787 + ], + [ + -73.455026, + 45.545751 + ], + [ + -73.455001, + 45.545724 + ], + [ + -73.454986, + 45.545697 + ], + [ + -73.454971, + 45.545648 + ], + [ + -73.454962, + 45.545589 + ], + [ + -73.454971, + 45.545535 + ], + [ + -73.454997, + 45.54547 + ], + [ + -73.455003, + 45.545454 + ], + [ + -73.45504, + 45.545414 + ], + [ + -73.455094, + 45.545301 + ], + [ + -73.455158, + 45.545252 + ], + [ + -73.455247, + 45.545184 + ], + [ + -73.455332, + 45.545094 + ], + [ + -73.455461, + 45.54495 + ], + [ + -73.455559, + 45.544829 + ], + [ + -73.456108, + 45.544969 + ], + [ + -73.456291, + 45.545005 + ], + [ + -73.456382, + 45.545018 + ] + ] + }, + "id": 167, + "properties": { + "id": "2102d6e8-70cb-4b1e-af3a-af76451933d5", + "data": { + "gtfs": { + "shape_id": "78_2_R" + }, + "segments": [ + { + "distanceMeters": 4539, + "travelTimeSeconds": 332 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 782, + "travelTimeSeconds": 106 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 465, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 348, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 67 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9878, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5569.104551797418, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.23, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 7.16, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.23 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "8a3f1208-7ffb-452e-8ebb-c436acba82d6", + "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", + "cd788179-2c9b-4e1e-9ba3-10b35bfde3fa", + "06cdca3a-f2d1-4f41-837c-693f8619463c", + "0e8b7968-4242-43b0-a1a6-300cb3c93219", + "3a5ea563-a764-4bb6-b2d3-d98a1c377161", + "a1edad0a-8432-4850-b895-9d97092489b6", + "248781a4-a949-4c45-bc5a-1de80211510e", + "8e9d3a93-2217-4362-8631-6cc69bd428bc", + "497c7cbc-7c2a-4684-ae90-71dc2a66863f", + "a392bf4c-9790-451e-a9bc-51428fa10a69", + "3f5db866-fafa-412d-a611-8e8ceedc9d66", + "6fd0bc88-4e0d-40ae-bdaa-413bd47146b0", + "aa7a5ed8-9a21-492a-a960-c6b24bbf08aa", + "c7d03075-5044-4f36-93d3-b0ab9d315d42", + "b42cc3ff-2da3-4535-b070-1150cc42c135", + "81ceaeba-df2d-476d-a80e-d7112cda70cb", + "ed9c5edc-a8fc-42c1-8283-02b881c76ff4", + "10018cb4-bab7-4531-9c02-bb0d227ab19c", + "7297ee1d-b36d-46fd-b6df-e9807a5791cf" + ], + "stops": [], + "line_id": "abb1e85e-1feb-4df9-9b0a-8176309def3f", + "segments": [ + 0, + 73, + 80, + 91, + 99, + 111, + 128, + 134, + 146, + 163, + 186, + 200, + 205, + 211, + 216, + 249, + 286, + 314, + 316, + 326 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 167, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.404465, + 45.573132 + ], + [ + -73.404516, + 45.573227 + ], + [ + -73.405062, + 45.574199 + ], + [ + -73.405195, + 45.574394 + ], + [ + -73.405268, + 45.574469 + ], + [ + -73.405457, + 45.574621 + ], + [ + -73.40583, + 45.574917 + ], + [ + -73.405913, + 45.574988 + ], + [ + -73.406351, + 45.574604 + ], + [ + -73.406355, + 45.5746 + ], + [ + -73.407375, + 45.573704 + ], + [ + -73.407648, + 45.573464 + ], + [ + -73.407902, + 45.573272 + ], + [ + -73.408156, + 45.573119 + ], + [ + -73.408432, + 45.572987 + ], + [ + -73.40901, + 45.572865 + ], + [ + -73.410733, + 45.572762 + ], + [ + -73.410922, + 45.572751 + ], + [ + -73.411036, + 45.572745 + ], + [ + -73.412381, + 45.572673 + ], + [ + -73.412661, + 45.572692 + ], + [ + -73.412713, + 45.572696 + ], + [ + -73.413219, + 45.572818 + ], + [ + -73.413504, + 45.572924 + ], + [ + -73.413615, + 45.572947 + ], + [ + -73.413719, + 45.573015 + ], + [ + -73.413779, + 45.573055 + ], + [ + -73.413834, + 45.573102 + ], + [ + -73.413911, + 45.573168 + ], + [ + -73.414077, + 45.573294 + ], + [ + -73.414647, + 45.573758 + ], + [ + -73.414791, + 45.57387 + ], + [ + -73.415442, + 45.574385 + ], + [ + -73.415714, + 45.5746 + ], + [ + -73.416156, + 45.574947 + ], + [ + -73.417067, + 45.575663 + ], + [ + -73.418497, + 45.576798 + ], + [ + -73.418642, + 45.576911 + ], + [ + -73.418667, + 45.576931 + ], + [ + -73.41886, + 45.577081 + ], + [ + -73.418953, + 45.577153 + ], + [ + -73.419, + 45.577192 + ], + [ + -73.419047, + 45.57723 + ], + [ + -73.419313, + 45.577437 + ], + [ + -73.41953, + 45.577608 + ], + [ + -73.420061, + 45.578025 + ], + [ + -73.420081, + 45.578041 + ], + [ + -73.420386, + 45.578284 + ], + [ + -73.420532, + 45.578396 + ], + [ + -73.421072, + 45.578819 + ], + [ + -73.4211, + 45.578841 + ], + [ + -73.421662, + 45.579281 + ], + [ + -73.421745, + 45.579346 + ], + [ + -73.421793, + 45.579382 + ], + [ + -73.421846, + 45.579423 + ], + [ + -73.42208, + 45.579603 + ], + [ + -73.422546, + 45.579959 + ], + [ + -73.422663, + 45.580049 + ], + [ + -73.422804, + 45.580157 + ], + [ + -73.423009, + 45.580315 + ], + [ + -73.423236, + 45.580486 + ], + [ + -73.423455, + 45.580651 + ], + [ + -73.423789, + 45.580905 + ], + [ + -73.424012, + 45.581077 + ], + [ + -73.424062, + 45.581115 + ], + [ + -73.424788, + 45.581676 + ], + [ + -73.425168, + 45.581969 + ], + [ + -73.425206, + 45.581999 + ], + [ + -73.425286, + 45.58206 + ], + [ + -73.425816, + 45.582464 + ], + [ + -73.426256, + 45.5828 + ], + [ + -73.426384, + 45.582896 + ], + [ + -73.426528, + 45.583004 + ], + [ + -73.429814, + 45.585537 + ], + [ + -73.429847, + 45.585562 + ], + [ + -73.429958, + 45.585646 + ], + [ + -73.430085, + 45.585745 + ], + [ + -73.430467, + 45.586051 + ], + [ + -73.430716, + 45.586245 + ], + [ + -73.430893, + 45.586393 + ], + [ + -73.431289, + 45.586718 + ], + [ + -73.431332, + 45.586755 + ], + [ + -73.431717, + 45.587092 + ], + [ + -73.431818, + 45.587179 + ], + [ + -73.431883, + 45.587238 + ], + [ + -73.432034, + 45.587385 + ], + [ + -73.432226, + 45.587579 + ], + [ + -73.433253, + 45.588702 + ], + [ + -73.433542, + 45.589015 + ], + [ + -73.433674, + 45.589158 + ], + [ + -73.433885, + 45.58936 + ], + [ + -73.4342, + 45.589657 + ], + [ + -73.434715, + 45.590103 + ], + [ + -73.434884, + 45.590234 + ], + [ + -73.434944, + 45.590279 + ], + [ + -73.434983, + 45.59031 + ], + [ + -73.434992, + 45.590318 + ], + [ + -73.435014, + 45.590337 + ], + [ + -73.435057, + 45.590373 + ], + [ + -73.435107, + 45.590414 + ], + [ + -73.435254, + 45.590517 + ], + [ + -73.435815, + 45.590941 + ], + [ + -73.436192, + 45.591218 + ], + [ + -73.43623, + 45.591247 + ], + [ + -73.436355, + 45.59135 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.438332, + 45.592831 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.440081, + 45.594123 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.442162, + 45.595678 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442992, + 45.59628 + ], + [ + -73.44331, + 45.596501 + ], + [ + -73.443394, + 45.596559 + ], + [ + -73.444803, + 45.597518 + ], + [ + -73.445261, + 45.597829 + ], + [ + -73.445352, + 45.597893 + ], + [ + -73.446259, + 45.598527 + ], + [ + -73.446713, + 45.59886 + ], + [ + -73.447012, + 45.599082 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.448113, + 45.599972 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449825, + 45.601331 + ], + [ + -73.449842, + 45.601358 + ], + [ + -73.449882, + 45.601394 + ], + [ + -73.449937, + 45.601432 + ], + [ + -73.449974, + 45.601468 + ], + [ + -73.450006, + 45.601497 + ], + [ + -73.450033, + 45.601528 + ], + [ + -73.450045, + 45.601571 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.450329, + 45.600811 + ], + [ + -73.450302, + 45.600775 + ], + [ + -73.45028, + 45.600747 + ], + [ + -73.45017, + 45.600666 + ], + [ + -73.450081, + 45.60062 + ], + [ + -73.449968, + 45.600603 + ], + [ + -73.449925, + 45.600607 + ], + [ + -73.449868, + 45.600621 + ], + [ + -73.449802, + 45.600661 + ], + [ + -73.449715, + 45.600713 + ], + [ + -73.449674, + 45.600743 + ], + [ + -73.449661, + 45.600772 + ], + [ + -73.449666, + 45.600812 + ], + [ + -73.449924, + 45.601045 + ], + [ + -73.449978, + 45.601072 + ], + [ + -73.450055, + 45.601083 + ], + [ + -73.45017, + 45.60109 + ], + [ + -73.450263, + 45.601099 + ], + [ + -73.450328, + 45.601118 + ], + [ + -73.450379, + 45.601155 + ], + [ + -73.450393, + 45.601201 + ], + [ + -73.450376, + 45.60125 + ], + [ + -73.450362, + 45.601293 + ], + [ + -73.450349, + 45.601366 + ], + [ + -73.450328, + 45.601396 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450295, + 45.60142 + ], + [ + -73.450274, + 45.60143 + ], + [ + -73.450229, + 45.60144 + ], + [ + -73.450195, + 45.601446 + ], + [ + -73.450161, + 45.601455 + ], + [ + -73.450131, + 45.601466 + ], + [ + -73.450095, + 45.601482 + ], + [ + -73.450073, + 45.601501 + ], + [ + -73.450052, + 45.601522 + ], + [ + -73.450048, + 45.601541 + ], + [ + -73.450048, + 45.601565 + ], + [ + -73.450051, + 45.601586 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450683, + 45.601629 + ], + [ + -73.45076, + 45.601581 + ], + [ + -73.450865, + 45.60153 + ], + [ + -73.451136, + 45.601427 + ], + [ + -73.451322, + 45.601341 + ], + [ + -73.45143, + 45.601269 + ], + [ + -73.451545, + 45.601187 + ], + [ + -73.451753, + 45.601 + ], + [ + -73.451831, + 45.600914 + ], + [ + -73.451899, + 45.600828 + ], + [ + -73.451961, + 45.600734 + ], + [ + -73.452054, + 45.600554 + ], + [ + -73.452082, + 45.600442 + ], + [ + -73.452078, + 45.600293 + ], + [ + -73.452054, + 45.600172 + ], + [ + -73.45194, + 45.599798 + ], + [ + -73.451915, + 45.599672 + ], + [ + -73.451904, + 45.599524 + ], + [ + -73.451926, + 45.59938 + ], + [ + -73.451964, + 45.599267 + ], + [ + -73.452063, + 45.599123 + ], + [ + -73.452183, + 45.598993 + ], + [ + -73.452318, + 45.598881 + ], + [ + -73.452477, + 45.598768 + ], + [ + -73.452963, + 45.598458 + ], + [ + -73.45458, + 45.597401 + ], + [ + -73.459437, + 45.594497 + ], + [ + -73.459888, + 45.594213 + ], + [ + -73.46035, + 45.593903 + ], + [ + -73.460702, + 45.593647 + ], + [ + -73.461218, + 45.593251 + ], + [ + -73.46178, + 45.592783 + ], + [ + -73.465585, + 45.589586 + ], + [ + -73.468548, + 45.587089 + ], + [ + -73.468925, + 45.586766 + ], + [ + -73.469282, + 45.586424 + ], + [ + -73.469476, + 45.586217 + ], + [ + -73.46977, + 45.585875 + ], + [ + -73.470065, + 45.585497 + ], + [ + -73.470208, + 45.585295 + ], + [ + -73.470515, + 45.584795 + ], + [ + -73.470777, + 45.584346 + ], + [ + -73.470818, + 45.584266 + ], + [ + -73.471151, + 45.583659 + ], + [ + -73.471441, + 45.583163 + ], + [ + -73.471782, + 45.582588 + ], + [ + -73.471999, + 45.582223 + ], + [ + -73.472179, + 45.58194 + ], + [ + -73.472331, + 45.581716 + ], + [ + -73.472649, + 45.581329 + ], + [ + -73.47273, + 45.58124 + ], + [ + -73.472825, + 45.58114 + ], + [ + -73.473026, + 45.580958 + ], + [ + -73.473162, + 45.580835 + ], + [ + -73.473456, + 45.580601 + ], + [ + -73.473548, + 45.580529 + ], + [ + -73.474056, + 45.580187 + ], + [ + -73.474914, + 45.579634 + ], + [ + -73.475349, + 45.579354 + ], + [ + -73.475514, + 45.57924 + ], + [ + -73.475748, + 45.579059 + ], + [ + -73.476005, + 45.578855 + ], + [ + -73.476092, + 45.578785 + ], + [ + -73.476311, + 45.578613 + ], + [ + -73.476531, + 45.578426 + ], + [ + -73.477316, + 45.577756 + ], + [ + -73.478746, + 45.576546 + ], + [ + -73.485291, + 45.570941 + ], + [ + -73.485924, + 45.570374 + ], + [ + -73.486543, + 45.569794 + ], + [ + -73.487144, + 45.5692 + ], + [ + -73.487725, + 45.568597 + ], + [ + -73.488283, + 45.567985 + ], + [ + -73.489005, + 45.567148 + ], + [ + -73.489524, + 45.56651 + ], + [ + -73.490025, + 45.565857 + ], + [ + -73.490348, + 45.565416 + ], + [ + -73.490811, + 45.564746 + ], + [ + -73.492757, + 45.561799 + ], + [ + -73.493231, + 45.561129 + ], + [ + -73.493558, + 45.560688 + ], + [ + -73.493892, + 45.560256 + ], + [ + -73.494237, + 45.559829 + ], + [ + -73.499922, + 45.552981 + ], + [ + -73.501151, + 45.551492 + ], + [ + -73.501844, + 45.550646 + ], + [ + -73.502872, + 45.549445 + ], + [ + -73.503558, + 45.548684 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523837, + 45.530517 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522438, + 45.524142 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524363 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 168, + "properties": { + "id": "aaf5c8ba-2506-4514-a4a1-8cfb54912190", + "data": { + "gtfs": { + "shape_id": "80_1_A" + }, + "segments": [ + { + "distanceMeters": 293, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 552, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 328, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 415, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 12140, + "travelTimeSeconds": 840 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17537, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10704.036435587395, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 10.82, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 9.74, + "averageSpeedWithoutDwellTimesMetersPerSecond": 10.82 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "2f7dafc2-f82c-429d-8ce9-0ab21c7cde49", + "0f2d673a-8365-425e-adb1-c97927e1fe04", + "33427dde-b7ac-44e3-ba8b-3d835422c2dc", + "c6549833-3800-4d1f-a789-747fc95c595a", + "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", + "88dc439b-1c69-4b99-b3d0-d19592029cc1", + "ed651d5d-88ba-4ece-bfe1-02e5832cfee7", + "31ed7f59-0c7b-45ae-b437-8270ad7f8e62", + "cc142acd-cd00-4b27-8c30-0fb03b101fb8", + "8602485c-23c0-44fe-9b32-fa177f723a3a", + "3dedf179-3478-4b4d-b706-36e0a8981094", + "c4a07fb5-3745-472e-8e03-a61e6908d906", + "3e60c63a-1f50-42ff-98f0-f081a7dc4017", + "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", + "ebf7fd24-b756-481f-9a88-33b6362fcbda", + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "4fcc129f-8015-4b36-a21f-2437aa91a265", + "49262d07-72b2-466f-bf49-88656466e4a4", + "9e857d67-44b9-48aa-aa36-d1284504d820", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", + "bbe875bc-cb85-4a61-923d-53ee4746a213", + "4c755ece-2475-4915-941e-37859f0f391f" + ], + "stops": [], + "line_id": "85ada749-0996-4a0e-a41e-34953d66ac4a", + "segments": [ + 0, + 8, + 10, + 27, + 32, + 39, + 51, + 58, + 63, + 66, + 71, + 74, + 81, + 88, + 96, + 102, + 108, + 115, + 119, + 123, + 127, + 130, + 136, + 185 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 168, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.52252, + 45.524045 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.503549, + 45.548419 + ], + [ + -73.502986, + 45.54904 + ], + [ + -73.502097, + 45.550079 + ], + [ + -73.501025, + 45.551361 + ], + [ + -73.500319, + 45.55223 + ], + [ + -73.497146, + 45.556054 + ], + [ + -73.496787, + 45.55649 + ], + [ + -73.495905, + 45.557543 + ], + [ + -73.495369, + 45.558173 + ], + [ + -73.494314, + 45.559446 + ], + [ + -73.493461, + 45.560499 + ], + [ + -73.492975, + 45.561151 + ], + [ + -73.492659, + 45.561597 + ], + [ + -73.492068, + 45.562474 + ], + [ + -73.49148, + 45.563383 + ], + [ + -73.490434, + 45.564962 + ], + [ + -73.489967, + 45.565619 + ], + [ + -73.489477, + 45.566267 + ], + [ + -73.488962, + 45.566906 + ], + [ + -73.48825, + 45.567747 + ], + [ + -73.487877, + 45.568161 + ], + [ + -73.487301, + 45.568777 + ], + [ + -73.486712, + 45.56938 + ], + [ + -73.486308, + 45.569771 + ], + [ + -73.485474, + 45.570545 + ], + [ + -73.48461, + 45.571301 + ], + [ + -73.483654, + 45.572115 + ], + [ + -73.478606, + 45.576433 + ], + [ + -73.478028, + 45.576933 + ], + [ + -73.477248, + 45.577607 + ], + [ + -73.476645, + 45.578128 + ], + [ + -73.475915, + 45.578754 + ], + [ + -73.475553, + 45.579033 + ], + [ + -73.474887, + 45.579478 + ], + [ + -73.474437, + 45.579762 + ], + [ + -73.474095, + 45.580005 + ], + [ + -73.473853, + 45.580158 + ], + [ + -73.473398, + 45.580472 + ], + [ + -73.473077, + 45.58072 + ], + [ + -73.472886, + 45.580886 + ], + [ + -73.472612, + 45.581152 + ], + [ + -73.472574, + 45.581196 + ], + [ + -73.472319, + 45.581482 + ], + [ + -73.472175, + 45.581673 + ], + [ + -73.471994, + 45.581936 + ], + [ + -73.47191, + 45.582061 + ], + [ + -73.471753, + 45.582326 + ], + [ + -73.471543, + 45.582681 + ], + [ + -73.471245, + 45.583188 + ], + [ + -73.471013, + 45.58358 + ], + [ + -73.470714, + 45.584071 + ], + [ + -73.470067, + 45.585151 + ], + [ + -73.469784, + 45.585547 + ], + [ + -73.469628, + 45.585749 + ], + [ + -73.469287, + 45.586145 + ], + [ + -73.469101, + 45.586343 + ], + [ + -73.468904, + 45.586536 + ], + [ + -73.468695, + 45.586725 + ], + [ + -73.466029, + 45.588965 + ], + [ + -73.465851, + 45.589127 + ], + [ + -73.465429, + 45.589482 + ], + [ + -73.463709, + 45.590917 + ], + [ + -73.461267, + 45.592977 + ], + [ + -73.460579, + 45.593525 + ], + [ + -73.460036, + 45.593907 + ], + [ + -73.459551, + 45.594222 + ], + [ + -73.459088, + 45.594506 + ], + [ + -73.458501, + 45.594856 + ], + [ + -73.45527, + 45.596781 + ], + [ + -73.453729, + 45.597707 + ], + [ + -73.452183, + 45.598512 + ], + [ + -73.45172, + 45.598745 + ], + [ + -73.451404, + 45.598885 + ], + [ + -73.451234, + 45.598934 + ], + [ + -73.451048, + 45.598979 + ], + [ + -73.450747, + 45.59901 + ], + [ + -73.450606, + 45.59901 + ], + [ + -73.450404, + 45.598988 + ], + [ + -73.449896, + 45.598898 + ], + [ + -73.449552, + 45.598852 + ], + [ + -73.44936, + 45.598848 + ], + [ + -73.449191, + 45.598861 + ], + [ + -73.449046, + 45.598888 + ], + [ + -73.448769, + 45.598987 + ], + [ + -73.448631, + 45.599054 + ], + [ + -73.448365, + 45.599212 + ], + [ + -73.447787, + 45.599567 + ], + [ + -73.447737, + 45.599598 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.448089, + 45.599954 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449825, + 45.601331 + ], + [ + -73.449842, + 45.601358 + ], + [ + -73.449882, + 45.601394 + ], + [ + -73.449937, + 45.601432 + ], + [ + -73.449974, + 45.601468 + ], + [ + -73.450006, + 45.601497 + ], + [ + -73.450033, + 45.601528 + ], + [ + -73.450045, + 45.601571 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.450329, + 45.600811 + ], + [ + -73.450324, + 45.600805 + ], + [ + -73.45028, + 45.600747 + ], + [ + -73.45017, + 45.600666 + ], + [ + -73.450081, + 45.60062 + ], + [ + -73.449968, + 45.600603 + ], + [ + -73.449925, + 45.600607 + ], + [ + -73.449868, + 45.600621 + ], + [ + -73.449802, + 45.600661 + ], + [ + -73.449715, + 45.600713 + ], + [ + -73.449674, + 45.600743 + ], + [ + -73.449661, + 45.600772 + ], + [ + -73.449666, + 45.600812 + ], + [ + -73.449924, + 45.601045 + ], + [ + -73.449978, + 45.601072 + ], + [ + -73.450055, + 45.601083 + ], + [ + -73.45017, + 45.60109 + ], + [ + -73.450263, + 45.601099 + ], + [ + -73.450328, + 45.601118 + ], + [ + -73.450379, + 45.601155 + ], + [ + -73.450393, + 45.601201 + ], + [ + -73.450376, + 45.60125 + ], + [ + -73.450362, + 45.601293 + ], + [ + -73.450349, + 45.601366 + ], + [ + -73.450328, + 45.601396 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450247, + 45.601412 + ], + [ + -73.450159, + 45.601408 + ], + [ + -73.450117, + 45.6014 + ], + [ + -73.450076, + 45.601382 + ], + [ + -73.450018, + 45.601356 + ], + [ + -73.449945, + 45.60132 + ], + [ + -73.449881, + 45.6013 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.447908, + 45.59981 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.446915, + 45.59901 + ], + [ + -73.446713, + 45.59886 + ], + [ + -73.446259, + 45.598527 + ], + [ + -73.445388, + 45.597918 + ], + [ + -73.445261, + 45.597829 + ], + [ + -73.444803, + 45.597518 + ], + [ + -73.443575, + 45.596683 + ], + [ + -73.443394, + 45.596559 + ], + [ + -73.442992, + 45.59628 + ], + [ + -73.442853, + 45.596184 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.439915, + 45.593997 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438252, + 45.592772 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.436616, + 45.591542 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.436355, + 45.59135 + ], + [ + -73.43623, + 45.591247 + ], + [ + -73.435815, + 45.590941 + ], + [ + -73.435254, + 45.590517 + ], + [ + -73.435107, + 45.590414 + ], + [ + -73.435057, + 45.590373 + ], + [ + -73.435056, + 45.590373 + ], + [ + -73.435014, + 45.590337 + ], + [ + -73.434983, + 45.59031 + ], + [ + -73.434944, + 45.590279 + ], + [ + -73.434884, + 45.590234 + ], + [ + -73.434715, + 45.590103 + ], + [ + -73.4342, + 45.589657 + ], + [ + -73.433901, + 45.589375 + ], + [ + -73.433885, + 45.58936 + ], + [ + -73.433674, + 45.589158 + ], + [ + -73.433253, + 45.588702 + ], + [ + -73.432226, + 45.587579 + ], + [ + -73.432034, + 45.587385 + ], + [ + -73.431891, + 45.587246 + ], + [ + -73.431883, + 45.587238 + ], + [ + -73.431818, + 45.587179 + ], + [ + -73.431717, + 45.587092 + ], + [ + -73.431289, + 45.586718 + ], + [ + -73.430893, + 45.586393 + ], + [ + -73.430716, + 45.586245 + ], + [ + -73.430467, + 45.586051 + ], + [ + -73.430114, + 45.585768 + ], + [ + -73.430085, + 45.585745 + ], + [ + -73.429958, + 45.585646 + ], + [ + -73.429814, + 45.585537 + ], + [ + -73.428491, + 45.584517 + ], + [ + -73.426696, + 45.583133 + ], + [ + -73.426528, + 45.583004 + ], + [ + -73.426256, + 45.5828 + ], + [ + -73.425816, + 45.582464 + ], + [ + -73.425306, + 45.582075 + ], + [ + -73.425286, + 45.58206 + ], + [ + -73.425206, + 45.581999 + ], + [ + -73.424788, + 45.581676 + ], + [ + -73.424167, + 45.581196 + ], + [ + -73.424062, + 45.581115 + ], + [ + -73.423789, + 45.580905 + ], + [ + -73.423455, + 45.580651 + ], + [ + -73.423236, + 45.580486 + ], + [ + -73.423009, + 45.580315 + ], + [ + -73.422847, + 45.58019 + ], + [ + -73.422663, + 45.580049 + ], + [ + -73.422546, + 45.579959 + ], + [ + -73.42208, + 45.579603 + ], + [ + -73.421972, + 45.57952 + ], + [ + -73.421846, + 45.579423 + ], + [ + -73.421793, + 45.579382 + ], + [ + -73.421745, + 45.579346 + ], + [ + -73.4211, + 45.578841 + ], + [ + -73.421072, + 45.578819 + ], + [ + -73.420532, + 45.578396 + ], + [ + -73.420386, + 45.578284 + ], + [ + -73.420081, + 45.578041 + ], + [ + -73.420061, + 45.578025 + ], + [ + -73.41953, + 45.577608 + ], + [ + -73.419313, + 45.577437 + ], + [ + -73.419217, + 45.577363 + ], + [ + -73.419047, + 45.57723 + ], + [ + -73.419, + 45.577192 + ], + [ + -73.418953, + 45.577153 + ], + [ + -73.418667, + 45.576931 + ], + [ + -73.418642, + 45.576911 + ], + [ + -73.418497, + 45.576798 + ], + [ + -73.417067, + 45.575663 + ], + [ + -73.416156, + 45.574947 + ], + [ + -73.415825, + 45.574687 + ], + [ + -73.415714, + 45.5746 + ], + [ + -73.414791, + 45.57387 + ], + [ + -73.414647, + 45.573758 + ], + [ + -73.414077, + 45.573294 + ], + [ + -73.414071, + 45.57329 + ], + [ + -73.413911, + 45.573168 + ], + [ + -73.413779, + 45.573055 + ], + [ + -73.413719, + 45.573015 + ], + [ + -73.413615, + 45.572947 + ], + [ + -73.413498, + 45.572835 + ], + [ + -73.413315, + 45.572731 + ], + [ + -73.413116, + 45.572645 + ], + [ + -73.412923, + 45.572596 + ], + [ + -73.412759, + 45.572574 + ], + [ + -73.412619, + 45.572555 + ], + [ + -73.412388, + 45.572541 + ], + [ + -73.412156, + 45.572541 + ], + [ + -73.411544, + 45.572577 + ], + [ + -73.411304, + 45.572588 + ], + [ + -73.41125, + 45.57259 + ], + [ + -73.411126, + 45.572594 + ], + [ + -73.410903, + 45.572608 + ], + [ + -73.410714, + 45.572617 + ], + [ + -73.410503, + 45.57263 + ], + [ + -73.410213, + 45.572647 + ], + [ + -73.409062, + 45.572719 + ], + [ + -73.409057, + 45.572719 + ], + [ + -73.409052, + 45.572719 + ], + [ + -73.409047, + 45.572719 + ], + [ + -73.409041, + 45.57272 + ], + [ + -73.409036, + 45.57272 + ], + [ + -73.409031, + 45.57272 + ], + [ + -73.409026, + 45.57272 + ], + [ + -73.409021, + 45.57272 + ], + [ + -73.409016, + 45.572721 + ], + [ + -73.409011, + 45.572721 + ], + [ + -73.409006, + 45.572721 + ], + [ + -73.409, + 45.572722 + ], + [ + -73.408995, + 45.572722 + ], + [ + -73.40899, + 45.572722 + ], + [ + -73.408985, + 45.572722 + ], + [ + -73.40898, + 45.572723 + ], + [ + -73.408975, + 45.572723 + ], + [ + -73.40897, + 45.572723 + ], + [ + -73.408965, + 45.572724 + ], + [ + -73.40896, + 45.572724 + ], + [ + -73.408955, + 45.572725 + ], + [ + -73.408949, + 45.572725 + ], + [ + -73.408944, + 45.572725 + ], + [ + -73.408939, + 45.572726 + ], + [ + -73.408934, + 45.572726 + ], + [ + -73.408929, + 45.572727 + ], + [ + -73.408924, + 45.572727 + ], + [ + -73.408919, + 45.572728 + ], + [ + -73.408914, + 45.572728 + ], + [ + -73.408909, + 45.572729 + ], + [ + -73.408904, + 45.572729 + ], + [ + -73.408899, + 45.572729 + ], + [ + -73.408894, + 45.57273 + ], + [ + -73.408889, + 45.572731 + ], + [ + -73.408883, + 45.572731 + ], + [ + -73.408878, + 45.572732 + ], + [ + -73.408873, + 45.572732 + ], + [ + -73.408868, + 45.572733 + ], + [ + -73.408863, + 45.572733 + ], + [ + -73.408858, + 45.572734 + ], + [ + -73.408853, + 45.572734 + ], + [ + -73.408848, + 45.572735 + ], + [ + -73.408843, + 45.572736 + ], + [ + -73.408838, + 45.572736 + ], + [ + -73.408833, + 45.572737 + ], + [ + -73.408828, + 45.572737 + ], + [ + -73.408823, + 45.572738 + ], + [ + -73.408818, + 45.572739 + ], + [ + -73.408813, + 45.572739 + ], + [ + -73.408808, + 45.57274 + ], + [ + -73.408803, + 45.572741 + ], + [ + -73.408798, + 45.572742 + ], + [ + -73.408793, + 45.572742 + ], + [ + -73.408788, + 45.572743 + ], + [ + -73.408783, + 45.572744 + ], + [ + -73.408778, + 45.572744 + ], + [ + -73.408773, + 45.572745 + ], + [ + -73.408768, + 45.572746 + ], + [ + -73.408762, + 45.572747 + ], + [ + -73.408757, + 45.572747 + ], + [ + -73.408752, + 45.572748 + ], + [ + -73.408747, + 45.572749 + ], + [ + -73.408742, + 45.57275 + ], + [ + -73.408738, + 45.572751 + ], + [ + -73.408733, + 45.572752 + ], + [ + -73.408728, + 45.572752 + ], + [ + -73.408723, + 45.572753 + ], + [ + -73.408718, + 45.572754 + ], + [ + -73.408713, + 45.572755 + ], + [ + -73.408708, + 45.572756 + ], + [ + -73.408703, + 45.572757 + ], + [ + -73.408698, + 45.572758 + ], + [ + -73.408693, + 45.572759 + ], + [ + -73.408688, + 45.572759 + ], + [ + -73.408683, + 45.57276 + ], + [ + -73.408678, + 45.572761 + ], + [ + -73.408673, + 45.572762 + ], + [ + -73.408668, + 45.572763 + ], + [ + -73.408663, + 45.572764 + ], + [ + -73.408658, + 45.572765 + ], + [ + -73.408653, + 45.572766 + ], + [ + -73.408648, + 45.572767 + ], + [ + -73.408643, + 45.572768 + ], + [ + -73.408638, + 45.572769 + ], + [ + -73.408634, + 45.57277 + ], + [ + -73.408629, + 45.572771 + ], + [ + -73.408624, + 45.572772 + ], + [ + -73.408619, + 45.572773 + ], + [ + -73.408614, + 45.572774 + ], + [ + -73.408609, + 45.572775 + ], + [ + -73.408604, + 45.572777 + ], + [ + -73.408599, + 45.572778 + ], + [ + -73.408594, + 45.572779 + ], + [ + -73.40859, + 45.57278 + ], + [ + -73.408585, + 45.572781 + ], + [ + -73.40858, + 45.572782 + ], + [ + -73.408575, + 45.572783 + ], + [ + -73.40857, + 45.572784 + ], + [ + -73.408565, + 45.572786 + ], + [ + -73.40856, + 45.572787 + ], + [ + -73.408556, + 45.572788 + ], + [ + -73.408551, + 45.572789 + ], + [ + -73.408546, + 45.57279 + ], + [ + -73.408541, + 45.572792 + ], + [ + -73.408536, + 45.572793 + ], + [ + -73.408531, + 45.572794 + ], + [ + -73.408527, + 45.572795 + ], + [ + -73.408522, + 45.572797 + ], + [ + -73.408517, + 45.572798 + ], + [ + -73.408512, + 45.572799 + ], + [ + -73.408507, + 45.5728 + ], + [ + -73.408503, + 45.572802 + ], + [ + -73.408498, + 45.572803 + ], + [ + -73.408493, + 45.572804 + ], + [ + -73.408488, + 45.572806 + ], + [ + -73.408484, + 45.572807 + ], + [ + -73.408479, + 45.572808 + ], + [ + -73.408474, + 45.57281 + ], + [ + -73.408469, + 45.572811 + ], + [ + -73.408465, + 45.572812 + ], + [ + -73.40846, + 45.572814 + ], + [ + -73.408455, + 45.572815 + ], + [ + -73.40845, + 45.572817 + ], + [ + -73.408446, + 45.572818 + ], + [ + -73.408441, + 45.572819 + ], + [ + -73.408436, + 45.572821 + ], + [ + -73.408432, + 45.572822 + ], + [ + -73.408427, + 45.572824 + ], + [ + -73.408422, + 45.572825 + ], + [ + -73.408418, + 45.572827 + ], + [ + -73.408413, + 45.572828 + ], + [ + -73.408408, + 45.57283 + ], + [ + -73.408404, + 45.572831 + ], + [ + -73.408399, + 45.572833 + ], + [ + -73.408394, + 45.572834 + ], + [ + -73.40839, + 45.572836 + ], + [ + -73.408385, + 45.572837 + ], + [ + -73.40838, + 45.572839 + ], + [ + -73.408376, + 45.57284 + ], + [ + -73.408371, + 45.572842 + ], + [ + -73.408367, + 45.572843 + ], + [ + -73.408362, + 45.572845 + ], + [ + -73.408357, + 45.572847 + ], + [ + -73.408353, + 45.572848 + ], + [ + -73.408348, + 45.57285 + ], + [ + -73.408344, + 45.572851 + ], + [ + -73.408339, + 45.572853 + ], + [ + -73.408334, + 45.572855 + ], + [ + -73.40833, + 45.572856 + ], + [ + -73.408325, + 45.572858 + ], + [ + -73.408321, + 45.57286 + ], + [ + -73.408316, + 45.572861 + ], + [ + -73.408312, + 45.572863 + ], + [ + -73.408307, + 45.572865 + ], + [ + -73.408303, + 45.572867 + ], + [ + -73.408298, + 45.572868 + ], + [ + -73.408294, + 45.57287 + ], + [ + -73.408289, + 45.572872 + ], + [ + -73.408285, + 45.572874 + ], + [ + -73.40828, + 45.572875 + ], + [ + -73.408276, + 45.572877 + ], + [ + -73.408271, + 45.572879 + ], + [ + -73.408267, + 45.572881 + ], + [ + -73.408263, + 45.572883 + ], + [ + -73.408258, + 45.572884 + ], + [ + -73.408254, + 45.572886 + ], + [ + -73.408249, + 45.572888 + ], + [ + -73.408245, + 45.57289 + ], + [ + -73.408241, + 45.572892 + ], + [ + -73.408236, + 45.572894 + ], + [ + -73.408232, + 45.572895 + ], + [ + -73.408227, + 45.572897 + ], + [ + -73.408223, + 45.572899 + ], + [ + -73.408219, + 45.572901 + ], + [ + -73.408214, + 45.572903 + ], + [ + -73.40821, + 45.572905 + ], + [ + -73.408206, + 45.572907 + ], + [ + -73.408201, + 45.572909 + ], + [ + -73.408197, + 45.572911 + ], + [ + -73.408193, + 45.572913 + ], + [ + -73.408188, + 45.572915 + ], + [ + -73.408184, + 45.572917 + ], + [ + -73.40818, + 45.572919 + ], + [ + -73.408176, + 45.572921 + ], + [ + -73.408171, + 45.572923 + ], + [ + -73.408167, + 45.572925 + ], + [ + -73.408163, + 45.572927 + ], + [ + -73.408159, + 45.572929 + ], + [ + -73.408154, + 45.572931 + ], + [ + -73.40815, + 45.572933 + ], + [ + -73.408146, + 45.572935 + ], + [ + -73.408142, + 45.572937 + ], + [ + -73.408138, + 45.572939 + ], + [ + -73.408133, + 45.572941 + ], + [ + -73.408129, + 45.572943 + ], + [ + -73.408125, + 45.572945 + ], + [ + -73.408121, + 45.572947 + ], + [ + -73.408117, + 45.572949 + ], + [ + -73.408112, + 45.572951 + ], + [ + -73.408108, + 45.572953 + ], + [ + -73.408104, + 45.572955 + ], + [ + -73.4081, + 45.572958 + ], + [ + -73.408096, + 45.57296 + ], + [ + -73.408092, + 45.572962 + ], + [ + -73.408087, + 45.572964 + ], + [ + -73.408083, + 45.572966 + ], + [ + -73.408079, + 45.572968 + ], + [ + -73.408075, + 45.57297 + ], + [ + -73.408071, + 45.572972 + ], + [ + -73.408067, + 45.572975 + ], + [ + -73.408063, + 45.572977 + ], + [ + -73.408059, + 45.572979 + ], + [ + -73.408055, + 45.572981 + ], + [ + -73.408051, + 45.572983 + ], + [ + -73.408046, + 45.572985 + ], + [ + -73.408042, + 45.572988 + ], + [ + -73.408038, + 45.57299 + ], + [ + -73.408034, + 45.572992 + ], + [ + -73.40803, + 45.572994 + ], + [ + -73.408026, + 45.572996 + ], + [ + -73.408022, + 45.572999 + ], + [ + -73.408018, + 45.573001 + ], + [ + -73.408014, + 45.573003 + ], + [ + -73.40801, + 45.573005 + ], + [ + -73.408006, + 45.573008 + ], + [ + -73.408002, + 45.57301 + ], + [ + -73.407998, + 45.573012 + ], + [ + -73.407994, + 45.573014 + ], + [ + -73.40799, + 45.573017 + ], + [ + -73.407986, + 45.573019 + ], + [ + -73.407982, + 45.573021 + ], + [ + -73.407978, + 45.573024 + ], + [ + -73.407974, + 45.573026 + ], + [ + -73.40797, + 45.573028 + ], + [ + -73.407966, + 45.57303 + ], + [ + -73.407962, + 45.573033 + ], + [ + -73.407959, + 45.573035 + ], + [ + -73.407955, + 45.573037 + ], + [ + -73.407951, + 45.57304 + ], + [ + -73.407947, + 45.573042 + ], + [ + -73.407943, + 45.573044 + ], + [ + -73.407939, + 45.573047 + ], + [ + -73.407935, + 45.573049 + ], + [ + -73.407931, + 45.573052 + ], + [ + -73.407928, + 45.573054 + ], + [ + -73.407924, + 45.573056 + ], + [ + -73.40792, + 45.573059 + ], + [ + -73.407916, + 45.573061 + ], + [ + -73.407913, + 45.573064 + ], + [ + -73.407909, + 45.573066 + ], + [ + -73.407905, + 45.573069 + ], + [ + -73.407901, + 45.573071 + ], + [ + -73.407898, + 45.573074 + ], + [ + -73.407894, + 45.573076 + ], + [ + -73.40789, + 45.573079 + ], + [ + -73.407887, + 45.573081 + ], + [ + -73.407883, + 45.573084 + ], + [ + -73.40788, + 45.573086 + ], + [ + -73.407876, + 45.573089 + ], + [ + -73.407872, + 45.573091 + ], + [ + -73.407869, + 45.573094 + ], + [ + -73.407865, + 45.573097 + ], + [ + -73.407862, + 45.573099 + ], + [ + -73.407858, + 45.573102 + ], + [ + -73.407855, + 45.573105 + ], + [ + -73.407851, + 45.573107 + ], + [ + -73.407848, + 45.57311 + ], + [ + -73.407844, + 45.573112 + ], + [ + -73.407841, + 45.573115 + ], + [ + -73.407837, + 45.573118 + ], + [ + -73.407834, + 45.573121 + ], + [ + -73.407831, + 45.573123 + ], + [ + -73.407827, + 45.573126 + ], + [ + -73.407824, + 45.573129 + ], + [ + -73.407821, + 45.573131 + ], + [ + -73.407817, + 45.573134 + ], + [ + -73.407812, + 45.57314 + ], + [ + -73.407617, + 45.573325 + ], + [ + -73.407546, + 45.573392 + ], + [ + -73.406884, + 45.572882 + ], + [ + -73.405962, + 45.572152 + ], + [ + -73.405928, + 45.572128 + ], + [ + -73.405899, + 45.572108 + ], + [ + -73.405852, + 45.572099 + ], + [ + -73.405787, + 45.572088 + ], + [ + -73.405648, + 45.572091 + ], + [ + -73.40501, + 45.572118 + ], + [ + -73.404937, + 45.572127 + ], + [ + -73.404887, + 45.572144 + ], + [ + -73.404824, + 45.572173 + ], + [ + -73.404363, + 45.572463 + ], + [ + -73.404167, + 45.572586 + ], + [ + -73.404077, + 45.572646 + ], + [ + -73.404226, + 45.572758 + ], + [ + -73.404305, + 45.572839 + ], + [ + -73.404344, + 45.572907 + ], + [ + -73.404465, + 45.573132 + ] + ] + }, + "id": 169, + "properties": { + "id": "24063ca7-69e9-4bf9-b540-31386cdece08", + "data": { + "gtfs": { + "shape_id": "80_1_R" + }, + "segments": [ + { + "distanceMeters": 10799, + "travelTimeSeconds": 520 + }, + { + "distanceMeters": 414, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 439, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 79, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 334, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 757, + "travelTimeSeconds": 228 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 70 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 16596, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10704.036435587395, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 12.03, + "travelTimeWithoutDwellTimesSeconds": 1380, + "operatingTimeWithLayoverTimeSeconds": 1560, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1380, + "operatingSpeedWithLayoverMetersPerSecond": 10.64, + "averageSpeedWithoutDwellTimesMetersPerSecond": 12.03 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "4c755ece-2475-4915-941e-37859f0f391f", + "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", + "bbe875bc-cb85-4a61-923d-53ee4746a213", + "96c08dfd-d2e7-4584-a6b3-36c3a2e1abcc", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "4c25cc73-ac26-4e31-9812-bc4ad7f583b5", + "49262d07-72b2-466f-bf49-88656466e4a4", + "0872c388-8faf-4852-b4ce-cf3f6312e0ef", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "ebf7fd24-b756-481f-9a88-33b6362fcbda", + "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", + "3613b472-6055-4b55-9c89-01a451d82804", + "4cd6eb13-aeec-4716-a3d3-8e1a38389723", + "9ad04c6c-abc1-49fe-8f36-db6146dd5c5c", + "3dedf179-3478-4b4d-b706-36e0a8981094", + "91fae16f-d2f7-4af8-a4e7-3156976c0aae", + "cc142acd-cd00-4b27-8c30-0fb03b101fb8", + "38f108ec-7ce2-4f60-84c9-81ee447773a8", + "ed651d5d-88ba-4ece-bfe1-02e5832cfee7", + "88dc439b-1c69-4b99-b3d0-d19592029cc1", + "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", + "c6549833-3800-4d1f-a789-747fc95c595a", + "9adb2d51-794e-405a-84b9-dacf33a046bb", + "2f7dafc2-f82c-429d-8ce9-0ab21c7cde49" + ], + "stops": [], + "line_id": "85ada749-0996-4a0e-a41e-34953d66ac4a", + "segments": [ + 0, + 132, + 181, + 218, + 224, + 227, + 230, + 233, + 239, + 246, + 249, + 257, + 264, + 270, + 278, + 282, + 283, + 287, + 291, + 297, + 301, + 313, + 322, + 327, + 630 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 169, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.404465, + 45.573132 + ], + [ + -73.404516, + 45.573227 + ], + [ + -73.405062, + 45.574199 + ], + [ + -73.405195, + 45.574394 + ], + [ + -73.405268, + 45.574469 + ], + [ + -73.405457, + 45.574621 + ], + [ + -73.40583, + 45.574917 + ], + [ + -73.405913, + 45.574988 + ], + [ + -73.406355, + 45.5746 + ], + [ + -73.407648, + 45.573464 + ], + [ + -73.407902, + 45.573272 + ], + [ + -73.408156, + 45.573119 + ], + [ + -73.408432, + 45.572987 + ], + [ + -73.40901, + 45.572865 + ], + [ + -73.410733, + 45.572762 + ], + [ + -73.410922, + 45.572751 + ], + [ + -73.411036, + 45.572745 + ], + [ + -73.412381, + 45.572673 + ], + [ + -73.412661, + 45.572692 + ], + [ + -73.412713, + 45.572696 + ], + [ + -73.413219, + 45.572818 + ], + [ + -73.413504, + 45.572924 + ], + [ + -73.413615, + 45.572947 + ], + [ + -73.413719, + 45.573015 + ], + [ + -73.413779, + 45.573055 + ], + [ + -73.413911, + 45.573168 + ], + [ + -73.414077, + 45.573294 + ], + [ + -73.414647, + 45.573758 + ], + [ + -73.414791, + 45.57387 + ], + [ + -73.415714, + 45.5746 + ], + [ + -73.416156, + 45.574947 + ], + [ + -73.417067, + 45.575663 + ], + [ + -73.418497, + 45.576798 + ], + [ + -73.418642, + 45.576911 + ], + [ + -73.418667, + 45.576931 + ], + [ + -73.418953, + 45.577153 + ], + [ + -73.419, + 45.577192 + ], + [ + -73.419047, + 45.57723 + ], + [ + -73.419313, + 45.577437 + ], + [ + -73.41953, + 45.577608 + ], + [ + -73.420061, + 45.578025 + ], + [ + -73.420081, + 45.578041 + ], + [ + -73.420386, + 45.578284 + ], + [ + -73.420532, + 45.578396 + ], + [ + -73.421072, + 45.578819 + ], + [ + -73.4211, + 45.578841 + ], + [ + -73.421745, + 45.579346 + ], + [ + -73.421793, + 45.579382 + ], + [ + -73.421846, + 45.579423 + ], + [ + -73.42208, + 45.579603 + ], + [ + -73.422546, + 45.579959 + ], + [ + -73.422663, + 45.580049 + ], + [ + -73.423009, + 45.580315 + ], + [ + -73.423236, + 45.580486 + ], + [ + -73.423455, + 45.580651 + ], + [ + -73.423789, + 45.580905 + ], + [ + -73.424062, + 45.581115 + ], + [ + -73.424788, + 45.581676 + ], + [ + -73.425206, + 45.581999 + ], + [ + -73.425286, + 45.58206 + ], + [ + -73.425816, + 45.582464 + ], + [ + -73.426256, + 45.5828 + ], + [ + -73.426528, + 45.583004 + ], + [ + -73.429814, + 45.585537 + ], + [ + -73.429958, + 45.585646 + ], + [ + -73.430085, + 45.585745 + ], + [ + -73.430467, + 45.586051 + ], + [ + -73.430716, + 45.586245 + ], + [ + -73.430893, + 45.586393 + ], + [ + -73.431289, + 45.586718 + ], + [ + -73.431717, + 45.587092 + ], + [ + -73.431818, + 45.587179 + ], + [ + -73.431883, + 45.587238 + ], + [ + -73.432034, + 45.587385 + ], + [ + -73.432226, + 45.587579 + ], + [ + -73.433253, + 45.588702 + ], + [ + -73.433674, + 45.589158 + ], + [ + -73.433885, + 45.58936 + ], + [ + -73.4342, + 45.589657 + ], + [ + -73.434715, + 45.590103 + ], + [ + -73.434884, + 45.590234 + ], + [ + -73.434944, + 45.590279 + ], + [ + -73.434983, + 45.59031 + ], + [ + -73.435014, + 45.590337 + ], + [ + -73.435057, + 45.590373 + ], + [ + -73.435107, + 45.590414 + ], + [ + -73.435254, + 45.590517 + ], + [ + -73.435815, + 45.590941 + ], + [ + -73.43623, + 45.591247 + ], + [ + -73.436355, + 45.59135 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442992, + 45.59628 + ], + [ + -73.443394, + 45.596559 + ], + [ + -73.444803, + 45.597518 + ], + [ + -73.445261, + 45.597829 + ], + [ + -73.446259, + 45.598527 + ], + [ + -73.446713, + 45.59886 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449825, + 45.601331 + ], + [ + -73.449842, + 45.601358 + ], + [ + -73.449882, + 45.601394 + ], + [ + -73.449937, + 45.601432 + ], + [ + -73.449974, + 45.601468 + ], + [ + -73.450006, + 45.601497 + ], + [ + -73.450033, + 45.601528 + ], + [ + -73.450045, + 45.601571 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.450329, + 45.600811 + ], + [ + -73.45028, + 45.600747 + ], + [ + -73.45017, + 45.600666 + ], + [ + -73.450081, + 45.60062 + ], + [ + -73.449968, + 45.600603 + ], + [ + -73.449925, + 45.600607 + ], + [ + -73.449868, + 45.600621 + ], + [ + -73.449802, + 45.600661 + ], + [ + -73.449715, + 45.600713 + ], + [ + -73.449674, + 45.600743 + ], + [ + -73.449661, + 45.600772 + ], + [ + -73.449666, + 45.600812 + ], + [ + -73.449924, + 45.601045 + ], + [ + -73.449978, + 45.601072 + ], + [ + -73.450055, + 45.601083 + ], + [ + -73.45017, + 45.60109 + ], + [ + -73.450263, + 45.601099 + ], + [ + -73.450328, + 45.601118 + ], + [ + -73.450379, + 45.601155 + ], + [ + -73.450393, + 45.601201 + ], + [ + -73.450376, + 45.60125 + ], + [ + -73.450362, + 45.601293 + ], + [ + -73.450349, + 45.601366 + ], + [ + -73.450328, + 45.601396 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450295, + 45.60142 + ], + [ + -73.450274, + 45.60143 + ], + [ + -73.450229, + 45.60144 + ], + [ + -73.450195, + 45.601446 + ], + [ + -73.450161, + 45.601455 + ], + [ + -73.450131, + 45.601466 + ], + [ + -73.450095, + 45.601482 + ], + [ + -73.450073, + 45.601501 + ], + [ + -73.450052, + 45.601522 + ], + [ + -73.450048, + 45.601541 + ], + [ + -73.450048, + 45.601565 + ], + [ + -73.450051, + 45.601586 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450683, + 45.601629 + ], + [ + -73.45076, + 45.601581 + ], + [ + -73.450865, + 45.60153 + ], + [ + -73.451136, + 45.601427 + ], + [ + -73.451322, + 45.601341 + ], + [ + -73.45143, + 45.601269 + ], + [ + -73.451545, + 45.601187 + ], + [ + -73.451753, + 45.601 + ], + [ + -73.451831, + 45.600914 + ], + [ + -73.451899, + 45.600828 + ], + [ + -73.451961, + 45.600734 + ], + [ + -73.452054, + 45.600554 + ], + [ + -73.452082, + 45.600442 + ], + [ + -73.452078, + 45.600293 + ], + [ + -73.452054, + 45.600172 + ], + [ + -73.45194, + 45.599798 + ], + [ + -73.451915, + 45.599672 + ], + [ + -73.451904, + 45.599524 + ], + [ + -73.451926, + 45.59938 + ], + [ + -73.451964, + 45.599267 + ], + [ + -73.452063, + 45.599123 + ], + [ + -73.452183, + 45.598993 + ], + [ + -73.452318, + 45.598881 + ], + [ + -73.452477, + 45.598768 + ], + [ + -73.452963, + 45.598458 + ], + [ + -73.45458, + 45.597401 + ], + [ + -73.459437, + 45.594497 + ], + [ + -73.459888, + 45.594213 + ], + [ + -73.46035, + 45.593903 + ], + [ + -73.460702, + 45.593647 + ], + [ + -73.461218, + 45.593251 + ], + [ + -73.46178, + 45.592783 + ], + [ + -73.465585, + 45.589586 + ], + [ + -73.468548, + 45.587089 + ], + [ + -73.468925, + 45.586766 + ], + [ + -73.469282, + 45.586424 + ], + [ + -73.469476, + 45.586217 + ], + [ + -73.46977, + 45.585875 + ], + [ + -73.470065, + 45.585497 + ], + [ + -73.470208, + 45.585295 + ], + [ + -73.470515, + 45.584795 + ], + [ + -73.470777, + 45.584346 + ], + [ + -73.470818, + 45.584266 + ], + [ + -73.471151, + 45.583659 + ], + [ + -73.471441, + 45.583163 + ], + [ + -73.471782, + 45.582588 + ], + [ + -73.471999, + 45.582223 + ], + [ + -73.472179, + 45.58194 + ], + [ + -73.472331, + 45.581716 + ], + [ + -73.472649, + 45.581329 + ], + [ + -73.47273, + 45.58124 + ], + [ + -73.472825, + 45.58114 + ], + [ + -73.473026, + 45.580958 + ], + [ + -73.473162, + 45.580835 + ], + [ + -73.473456, + 45.580601 + ], + [ + -73.473548, + 45.580529 + ], + [ + -73.474056, + 45.580187 + ], + [ + -73.474914, + 45.579634 + ], + [ + -73.475349, + 45.579354 + ], + [ + -73.475514, + 45.57924 + ], + [ + -73.475748, + 45.579059 + ], + [ + -73.476005, + 45.578855 + ], + [ + -73.476092, + 45.578785 + ], + [ + -73.476311, + 45.578613 + ], + [ + -73.476531, + 45.578426 + ], + [ + -73.477316, + 45.577756 + ], + [ + -73.478746, + 45.576546 + ], + [ + -73.485291, + 45.570941 + ], + [ + -73.485924, + 45.570374 + ], + [ + -73.486543, + 45.569794 + ], + [ + -73.487144, + 45.5692 + ], + [ + -73.487725, + 45.568597 + ], + [ + -73.488283, + 45.567985 + ], + [ + -73.489005, + 45.567148 + ], + [ + -73.489524, + 45.56651 + ], + [ + -73.490025, + 45.565857 + ], + [ + -73.490348, + 45.565416 + ], + [ + -73.490811, + 45.564746 + ], + [ + -73.492757, + 45.561799 + ], + [ + -73.493231, + 45.561129 + ], + [ + -73.493558, + 45.560688 + ], + [ + -73.493892, + 45.560256 + ], + [ + -73.494237, + 45.559829 + ], + [ + -73.499922, + 45.552981 + ], + [ + -73.501151, + 45.551492 + ], + [ + -73.501844, + 45.550646 + ], + [ + -73.502872, + 45.549445 + ], + [ + -73.503558, + 45.548684 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523837, + 45.530517 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522438, + 45.524142 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524363 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 170, + "properties": { + "id": "1382015a-d241-4e4a-9351-26e48d507f7a", + "data": { + "gtfs": { + "shape_id": "80_1_A" + }, + "segments": [ + { + "distanceMeters": 17537, + "travelTimeSeconds": 60 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17537, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 228.22527110989932, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 292.27, + "travelTimeWithoutDwellTimesSeconds": 60, + "operatingTimeWithLayoverTimeSeconds": 240, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 60, + "operatingSpeedWithLayoverMetersPerSecond": 73.07, + "averageSpeedWithoutDwellTimesMetersPerSecond": 292.27 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "2f7dafc2-f82c-429d-8ce9-0ab21c7cde49", + "0f2d673a-8365-425e-adb1-c97927e1fe04" + ], + "stops": [], + "line_id": "85ada749-0996-4a0e-a41e-34953d66ac4a", + "segments": [ + 0 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 170, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.466116, + 45.587789 + ], + [ + -73.464043, + 45.586191 + ], + [ + -73.463882, + 45.586067 + ], + [ + -73.463008, + 45.585396 + ], + [ + -73.462695, + 45.585153 + ], + [ + -73.462695, + 45.585153 + ], + [ + -73.462432, + 45.584973 + ], + [ + -73.461939, + 45.585508 + ], + [ + -73.461685, + 45.585787 + ], + [ + -73.46157, + 45.585914 + ], + [ + -73.461498, + 45.585994 + ], + [ + -73.461393, + 45.586113 + ], + [ + -73.461391, + 45.586115 + ], + [ + -73.461235, + 45.586304 + ], + [ + -73.461153, + 45.586394 + ], + [ + -73.46075, + 45.586842 + ], + [ + -73.46024, + 45.587403 + ], + [ + -73.460107, + 45.58755 + ], + [ + -73.459738, + 45.587955 + ], + [ + -73.459672, + 45.588027 + ], + [ + -73.459565, + 45.588139 + ], + [ + -73.459411, + 45.588319 + ], + [ + -73.45918, + 45.588576 + ], + [ + -73.458866, + 45.588918 + ], + [ + -73.458377, + 45.58947 + ], + [ + -73.458224, + 45.589642 + ], + [ + -73.457847, + 45.590109 + ], + [ + -73.457798, + 45.590177 + ], + [ + -73.457344, + 45.590807 + ], + [ + -73.457079, + 45.591212 + ], + [ + -73.456938, + 45.591427 + ], + [ + -73.456884, + 45.591509 + ], + [ + -73.45679, + 45.591652 + ], + [ + -73.456499, + 45.592179 + ], + [ + -73.456406, + 45.592363 + ], + [ + -73.456312, + 45.592549 + ], + [ + -73.456207, + 45.592759 + ], + [ + -73.456153, + 45.59288 + ], + [ + -73.455854, + 45.593569 + ], + [ + -73.455756, + 45.593816 + ], + [ + -73.455693, + 45.594005 + ], + [ + -73.455619, + 45.594225 + ], + [ + -73.455491, + 45.594772 + ], + [ + -73.455406, + 45.595139 + ], + [ + -73.455188, + 45.59625 + ], + [ + -73.455037, + 45.597022 + ], + [ + -73.454939, + 45.597508 + ], + [ + -73.454897, + 45.597712 + ], + [ + -73.454896, + 45.597721 + ], + [ + -73.454793, + 45.598157 + ], + [ + -73.454668, + 45.598841 + ], + [ + -73.454596, + 45.599241 + ], + [ + -73.454497, + 45.599705 + ], + [ + -73.454335, + 45.600562 + ], + [ + -73.454318, + 45.600654 + ], + [ + -73.454139, + 45.601545 + ], + [ + -73.454053, + 45.601959 + ], + [ + -73.453996, + 45.602252 + ], + [ + -73.453844, + 45.603045 + ], + [ + -73.453814, + 45.6032 + ], + [ + -73.453688, + 45.60384 + ], + [ + -73.453667, + 45.603947 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.45351, + 45.604734 + ], + [ + -73.45313, + 45.606689 + ], + [ + -73.453067, + 45.607012 + ], + [ + -73.45303, + 45.607204 + ], + [ + -73.452956, + 45.607582 + ], + [ + -73.452894, + 45.607902 + ], + [ + -73.452838, + 45.608171 + ], + [ + -73.452742, + 45.608653 + ], + [ + -73.452525, + 45.609783 + ], + [ + -73.452502, + 45.609899 + ], + [ + -73.452319, + 45.610623 + ], + [ + -73.452151, + 45.611172 + ], + [ + -73.452038, + 45.611557 + ], + [ + -73.451963, + 45.611811 + ], + [ + -73.451872, + 45.612075 + ], + [ + -73.451764, + 45.612387 + ], + [ + -73.451588, + 45.612886 + ], + [ + -73.451496, + 45.613129 + ], + [ + -73.451219, + 45.613822 + ], + [ + -73.451034, + 45.614254 + ], + [ + -73.450957, + 45.614433 + ], + [ + -73.450551, + 45.61523 + ], + [ + -73.450142, + 45.615999 + ], + [ + -73.449827, + 45.616539 + ], + [ + -73.449564, + 45.616998 + ], + [ + -73.449512, + 45.617087 + ], + [ + -73.44919, + 45.617636 + ], + [ + -73.448686, + 45.618505 + ], + [ + -73.448637, + 45.61859 + ], + [ + -73.448491, + 45.618837 + ], + [ + -73.448364, + 45.619075 + ], + [ + -73.447396, + 45.620704 + ], + [ + -73.447018, + 45.62136 + ], + [ + -73.447011, + 45.621372 + ], + [ + -73.446834, + 45.62168 + ], + [ + -73.446146, + 45.622876 + ], + [ + -73.445824, + 45.623425 + ], + [ + -73.445586, + 45.623794 + ], + [ + -73.445565, + 45.62383 + ], + [ + -73.445387, + 45.624131 + ], + [ + -73.444573, + 45.625552 + ], + [ + -73.444159, + 45.626255 + ], + [ + -73.444022, + 45.626488 + ], + [ + -73.443605, + 45.627221 + ], + [ + -73.443179, + 45.627966 + ], + [ + -73.443114, + 45.62808 + ], + [ + -73.442091, + 45.629841 + ], + [ + -73.442088, + 45.629846 + ], + [ + -73.441684, + 45.63054 + ], + [ + -73.441456, + 45.630932 + ], + [ + -73.441271, + 45.631251 + ], + [ + -73.440501, + 45.632582 + ], + [ + -73.440392, + 45.632771 + ], + [ + -73.440824, + 45.632902 + ], + [ + -73.440907, + 45.632925 + ], + [ + -73.441299, + 45.633032 + ], + [ + -73.441599, + 45.633114 + ], + [ + -73.44208, + 45.633254 + ], + [ + -73.442416, + 45.633371 + ], + [ + -73.442563, + 45.633434 + ], + [ + -73.442909, + 45.633686 + ], + [ + -73.443242, + 45.633938 + ], + [ + -73.443651, + 45.634271 + ], + [ + -73.443845, + 45.634429 + ], + [ + -73.444049, + 45.634573 + ], + [ + -73.444148, + 45.634658 + ], + [ + -73.444422, + 45.63487 + ], + [ + -73.44467, + 45.635073 + ], + [ + -73.444715, + 45.635109 + ], + [ + -73.445026, + 45.635353 + ], + [ + -73.445104, + 45.635415 + ], + [ + -73.445268, + 45.635536 + ], + [ + -73.445466, + 45.635698 + ], + [ + -73.445562, + 45.635784 + ], + [ + -73.445634, + 45.635856 + ], + [ + -73.445712, + 45.635937 + ], + [ + -73.445769, + 45.636018 + ], + [ + -73.445951, + 45.636247 + ], + [ + -73.446134, + 45.636441 + ], + [ + -73.44625, + 45.636558 + ], + [ + -73.446407, + 45.636689 + ], + [ + -73.446639, + 45.63686 + ], + [ + -73.446777, + 45.636959 + ], + [ + -73.446874, + 45.637013 + ], + [ + -73.447384, + 45.637215 + ], + [ + -73.447605, + 45.637291 + ], + [ + -73.447634, + 45.637301 + ], + [ + -73.447778, + 45.637337 + ], + [ + -73.44802, + 45.63702 + ], + [ + -73.448132, + 45.636874 + ], + [ + -73.448252, + 45.636716 + ], + [ + -73.448535, + 45.636361 + ], + [ + -73.448723, + 45.636136 + ], + [ + -73.449067, + 45.635736 + ], + [ + -73.449285, + 45.635498 + ], + [ + -73.449333, + 45.635447 + ], + [ + -73.449434, + 45.63534 + ], + [ + -73.450136, + 45.634603 + ], + [ + -73.450679, + 45.634027 + ], + [ + -73.451195, + 45.633474 + ], + [ + -73.451614, + 45.633011 + ], + [ + -73.451693, + 45.632925 + ], + [ + -73.451773, + 45.632844 + ], + [ + -73.45193, + 45.632639 + ], + [ + -73.452094, + 45.632426 + ], + [ + -73.452319, + 45.632093 + ], + [ + -73.452502, + 45.631778 + ], + [ + -73.452686, + 45.631346 + ], + [ + -73.452778, + 45.631153 + ], + [ + -73.452942, + 45.630703 + ], + [ + -73.452951, + 45.630677 + ], + [ + -73.453257, + 45.629785 + ], + [ + -73.453315, + 45.629624 + ], + [ + -73.453358, + 45.629493 + ], + [ + -73.453393, + 45.629394 + ], + [ + -73.453601, + 45.628791 + ], + [ + -73.453834, + 45.628108 + ], + [ + -73.453835, + 45.628107 + ], + [ + -73.454024, + 45.62755 + ], + [ + -73.454194, + 45.627067 + ], + [ + -73.454243, + 45.626929 + ], + [ + -73.454435, + 45.626407 + ], + [ + -73.455127, + 45.624366 + ], + [ + -73.455153, + 45.624288 + ], + [ + -73.455228, + 45.623663 + ], + [ + -73.455339, + 45.62198 + ], + [ + -73.455345, + 45.621886 + ], + [ + -73.455364, + 45.621566 + ], + [ + -73.455459, + 45.620347 + ], + [ + -73.455477, + 45.620211 + ], + [ + -73.455479, + 45.620194 + ], + [ + -73.455571, + 45.619434 + ], + [ + -73.45562, + 45.619025 + ], + [ + -73.455676, + 45.618606 + ], + [ + -73.455729, + 45.618206 + ], + [ + -73.455745, + 45.618089 + ], + [ + -73.45581, + 45.617621 + ], + [ + -73.455879, + 45.617157 + ], + [ + -73.455888, + 45.617081 + ], + [ + -73.455915, + 45.616856 + ], + [ + -73.455942, + 45.616638 + ], + [ + -73.45596, + 45.616501 + ], + [ + -73.455984, + 45.616307 + ], + [ + -73.456015, + 45.616024 + ], + [ + -73.45606, + 45.615718 + ], + [ + -73.456125, + 45.615281 + ], + [ + -73.456295, + 45.613828 + ], + [ + -73.456295, + 45.613826 + ], + [ + -73.456315, + 45.613702 + ], + [ + -73.456346, + 45.613356 + ], + [ + -73.456367, + 45.613122 + ], + [ + -73.456403, + 45.612587 + ], + [ + -73.456429, + 45.612204 + ], + [ + -73.456443, + 45.611905 + ], + [ + -73.456449, + 45.611777 + ], + [ + -73.456473, + 45.611516 + ], + [ + -73.456491, + 45.611268 + ], + [ + -73.4565, + 45.611138 + ], + [ + -73.456508, + 45.610998 + ], + [ + -73.456537, + 45.610463 + ], + [ + -73.456535, + 45.610252 + ], + [ + -73.456534, + 45.610121 + ], + [ + -73.456558, + 45.609802 + ], + [ + -73.456582, + 45.60905 + ], + [ + -73.456591, + 45.608481 + ], + [ + -73.456594, + 45.608335 + ], + [ + -73.456599, + 45.607836 + ], + [ + -73.45661, + 45.607368 + ], + [ + -73.456615, + 45.606796 + ], + [ + -73.456615, + 45.60671 + ], + [ + -73.456615, + 45.606661 + ], + [ + -73.456606, + 45.606499 + ], + [ + -73.456639, + 45.606189 + ], + [ + -73.456765, + 45.605708 + ], + [ + -73.456875, + 45.605321 + ], + [ + -73.457004, + 45.60488 + ], + [ + -73.457092, + 45.604538 + ], + [ + -73.457136, + 45.604362 + ], + [ + -73.457297, + 45.603715 + ], + [ + -73.457484, + 45.603017 + ], + [ + -73.457663, + 45.602423 + ], + [ + -73.457682, + 45.602374 + ], + [ + -73.457833, + 45.601965 + ], + [ + -73.458077, + 45.601272 + ], + [ + -73.458405, + 45.600443 + ], + [ + -73.458417, + 45.600413 + ], + [ + -73.45861, + 45.599891 + ], + [ + -73.458773, + 45.599468 + ], + [ + -73.458929, + 45.599081 + ], + [ + -73.45906, + 45.598784 + ], + [ + -73.459093, + 45.598711 + ], + [ + -73.459106, + 45.598681 + ], + [ + -73.459297, + 45.598249 + ], + [ + -73.459417, + 45.597961 + ], + [ + -73.459667, + 45.59743 + ], + [ + -73.459796, + 45.597151 + ], + [ + -73.459954, + 45.596865 + ], + [ + -73.459959, + 45.596854 + ], + [ + -73.460279, + 45.596211 + ], + [ + -73.460377, + 45.59604 + ], + [ + -73.460508, + 45.595878 + ], + [ + -73.46106, + 45.594719 + ], + [ + -73.461071, + 45.594695 + ], + [ + -73.461222, + 45.594399 + ], + [ + -73.461303, + 45.594263 + ], + [ + -73.461165, + 45.594245 + ], + [ + -73.461088, + 45.594223 + ], + [ + -73.461052, + 45.594209 + ], + [ + -73.461012, + 45.594187 + ], + [ + -73.460975, + 45.594164 + ], + [ + -73.460934, + 45.594133 + ], + [ + -73.460903, + 45.594083 + ], + [ + -73.460874, + 45.594007 + ], + [ + -73.460786, + 45.593638 + ], + [ + -73.460732, + 45.593472 + ], + [ + -73.46065, + 45.593102 + ], + [ + -73.460612, + 45.592945 + ], + [ + -73.460597, + 45.592846 + ], + [ + -73.460594, + 45.592756 + ], + [ + -73.460592, + 45.592639 + ], + [ + -73.460627, + 45.592463 + ], + [ + -73.460652, + 45.592387 + ], + [ + -73.460702, + 45.592266 + ], + [ + -73.460724, + 45.592225 + ], + [ + -73.460758, + 45.592162 + ], + [ + -73.460841, + 45.59205 + ], + [ + -73.460858, + 45.592023 + ], + [ + -73.460873, + 45.592 + ], + [ + -73.46094, + 45.591928 + ], + [ + -73.461084, + 45.591784 + ], + [ + -73.46113, + 45.591753 + ], + [ + -73.461225, + 45.59169 + ], + [ + -73.461314, + 45.591613 + ], + [ + -73.462065, + 45.590961 + ], + [ + -73.462195, + 45.590862 + ], + [ + -73.462294, + 45.590799 + ], + [ + -73.462386, + 45.590754 + ], + [ + -73.462519, + 45.590705 + ], + [ + -73.462602, + 45.590678 + ], + [ + -73.462706, + 45.590656 + ], + [ + -73.462813, + 45.590642 + ], + [ + -73.462888, + 45.590633 + ], + [ + -73.463001, + 45.590624 + ], + [ + -73.46316, + 45.59062 + ], + [ + -73.463269, + 45.590611 + ], + [ + -73.463357, + 45.590597 + ], + [ + -73.463462, + 45.590579 + ], + [ + -73.463571, + 45.590548 + ], + [ + -73.463709, + 45.590498 + ], + [ + -73.463772, + 45.590426 + ], + [ + -73.463826, + 45.590404 + ], + [ + -73.463931, + 45.590341 + ], + [ + -73.464069, + 45.590233 + ], + [ + -73.46414, + 45.59017 + ], + [ + -73.464647, + 45.589698 + ], + [ + -73.464743, + 45.589617 + ], + [ + -73.46517, + 45.589257 + ], + [ + -73.465623, + 45.588888 + ], + [ + -73.466111, + 45.588492 + ], + [ + -73.466543, + 45.588142 + ], + [ + -73.466899, + 45.587854 + ], + [ + -73.467583, + 45.587301 + ], + [ + -73.468078, + 45.586878 + ], + [ + -73.468705, + 45.586302 + ], + [ + -73.469343, + 45.585587 + ], + [ + -73.46961, + 45.585203 + ], + [ + -73.470132, + 45.584453 + ], + [ + -73.470152, + 45.584422 + ], + [ + -73.470218, + 45.584246 + ], + [ + -73.470251, + 45.584156 + ], + [ + -73.470298, + 45.583954 + ], + [ + -73.470385, + 45.583842 + ], + [ + -73.470456, + 45.583585 + ], + [ + -73.47052, + 45.583429 + ], + [ + -73.470545, + 45.583369 + ], + [ + -73.470612, + 45.583247 + ], + [ + -73.470683, + 45.583117 + ], + [ + -73.470812, + 45.582911 + ], + [ + -73.470915, + 45.582744 + ], + [ + -73.470923, + 45.582731 + ], + [ + -73.471346, + 45.582051 + ], + [ + -73.471398, + 45.581925 + ], + [ + -73.471433, + 45.581808 + ], + [ + -73.471453, + 45.581699 + ], + [ + -73.471458, + 45.581595 + ], + [ + -73.471454, + 45.581489 + ], + [ + -73.471389, + 45.581345 + ], + [ + -73.471335, + 45.581232 + ], + [ + -73.471105, + 45.580881 + ], + [ + -73.470884, + 45.580526 + ], + [ + -73.470654, + 45.580152 + ], + [ + -73.470298, + 45.579576 + ], + [ + -73.47012, + 45.579347 + ], + [ + -73.469587, + 45.578501 + ], + [ + -73.469497, + 45.578352 + ], + [ + -73.469458, + 45.578217 + ], + [ + -73.469412, + 45.578105 + ], + [ + -73.469426, + 45.578028 + ], + [ + -73.469459, + 45.577871 + ], + [ + -73.469567, + 45.577727 + ], + [ + -73.469918, + 45.577331 + ], + [ + -73.46993, + 45.577318 + ], + [ + -73.46998, + 45.577261 + ], + [ + -73.470749, + 45.576405 + ], + [ + -73.471056, + 45.576076 + ], + [ + -73.471154, + 45.575991 + ], + [ + -73.471267, + 45.57591 + ], + [ + -73.471454, + 45.575824 + ], + [ + -73.471573, + 45.575815 + ], + [ + -73.47168, + 45.575793 + ], + [ + -73.471784, + 45.575788 + ], + [ + -73.47189, + 45.575788 + ], + [ + -73.472025, + 45.575797 + ], + [ + -73.472112, + 45.575815 + ], + [ + -73.472263, + 45.575852 + ], + [ + -73.472355, + 45.575892 + ], + [ + -73.472462, + 45.575951 + ], + [ + -73.472549, + 45.576014 + ], + [ + -73.472694, + 45.576122 + ], + [ + -73.473301, + 45.576594 + ], + [ + -73.473336, + 45.576621 + ], + [ + -73.473371, + 45.57665 + ], + [ + -73.473655, + 45.576878 + ], + [ + -73.474504, + 45.577526 + ], + [ + -73.47467, + 45.577629 + ], + [ + -73.474832, + 45.577728 + ], + [ + -73.474992, + 45.57776 + ], + [ + -73.475075, + 45.577797 + ], + [ + -73.475207, + 45.577851 + ], + [ + -73.4753, + 45.577885 + ], + [ + -73.47539, + 45.577914 + ], + [ + -73.475552, + 45.577947 + ], + [ + -73.475661, + 45.577961 + ], + [ + -73.475789, + 45.577962 + ], + [ + -73.475882, + 45.577959 + ], + [ + -73.475958, + 45.57795 + ], + [ + -73.476012, + 45.577939 + ], + [ + -73.476079, + 45.577928 + ], + [ + -73.476157, + 45.577912 + ], + [ + -73.476217, + 45.577897 + ], + [ + -73.476293, + 45.57787 + ], + [ + -73.476435, + 45.577844 + ], + [ + -73.476547, + 45.57778 + ], + [ + -73.476747, + 45.57765 + ], + [ + -73.476958, + 45.577498 + ], + [ + -73.477027, + 45.57744 + ], + [ + -73.477113, + 45.577369 + ], + [ + -73.477145, + 45.577342 + ], + [ + -73.477324, + 45.577191 + ], + [ + -73.477483, + 45.577054 + ], + [ + -73.477759, + 45.576825 + ], + [ + -73.477862, + 45.576731 + ], + [ + -73.478006, + 45.576618 + ], + [ + -73.478291, + 45.576373 + ], + [ + -73.478455, + 45.576238 + ], + [ + -73.478599, + 45.576116 + ], + [ + -73.478806, + 45.575943 + ], + [ + -73.478978, + 45.575795 + ], + [ + -73.47914, + 45.575661 + ], + [ + -73.479155, + 45.575649 + ], + [ + -73.479274, + 45.575534 + ], + [ + -73.47941, + 45.575433 + ], + [ + -73.479622, + 45.575253 + ], + [ + -73.4798, + 45.575097 + ], + [ + -73.479996, + 45.574941 + ], + [ + -73.480237, + 45.574738 + ], + [ + -73.480297, + 45.574686 + ], + [ + -73.480453, + 45.574551 + ], + [ + -73.480801, + 45.574263 + ], + [ + -73.481358, + 45.573789 + ], + [ + -73.481529, + 45.573644 + ], + [ + -73.481972, + 45.573269 + ], + [ + -73.48204, + 45.57321 + ], + [ + -73.482204, + 45.573068 + ], + [ + -73.482412, + 45.572903 + ], + [ + -73.482823, + 45.572557 + ], + [ + -73.482916, + 45.572476 + ], + [ + -73.482986, + 45.57241 + ], + [ + -73.483315, + 45.572122 + ], + [ + -73.483678, + 45.571813 + ], + [ + -73.483694, + 45.571799 + ], + [ + -73.483843, + 45.57167 + ], + [ + -73.484123, + 45.57144 + ], + [ + -73.484526, + 45.571099 + ], + [ + -73.484935, + 45.570755 + ], + [ + -73.484967, + 45.570727 + ], + [ + -73.485483, + 45.570269 + ], + [ + -73.485845, + 45.569929 + ], + [ + -73.485867, + 45.569908 + ], + [ + -73.485994, + 45.569784 + ], + [ + -73.486085, + 45.569691 + ], + [ + -73.486421, + 45.569373 + ], + [ + -73.487037, + 45.568739 + ], + [ + -73.487188, + 45.568584 + ], + [ + -73.487556, + 45.568196 + ], + [ + -73.487608, + 45.568138 + ], + [ + -73.488016, + 45.567684 + ], + [ + -73.488394, + 45.567236 + ], + [ + -73.488809, + 45.566744 + ], + [ + -73.488926, + 45.566606 + ], + [ + -73.489299, + 45.566117 + ], + [ + -73.489627, + 45.565684 + ], + [ + -73.489917, + 45.565286 + ], + [ + -73.490075, + 45.56507 + ], + [ + -73.490593, + 45.5643 + ], + [ + -73.490731, + 45.564091 + ], + [ + -73.491532, + 45.562873 + ], + [ + -73.491593, + 45.562778 + ], + [ + -73.491605, + 45.562759 + ], + [ + -73.4917, + 45.562606 + ], + [ + -73.491908, + 45.562298 + ], + [ + -73.49207, + 45.56203 + ], + [ + -73.492185, + 45.561871 + ], + [ + -73.492368, + 45.56159 + ], + [ + -73.492369, + 45.561588 + ], + [ + -73.492391, + 45.561555 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.494691, + 45.558396 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498677, + 45.553944 + ], + [ + -73.498726, + 45.553872 + ], + [ + -73.498813, + 45.553714 + ], + [ + -73.498895, + 45.553562 + ], + [ + -73.49895, + 45.553404 + ], + [ + -73.498964, + 45.55335 + ], + [ + -73.498988, + 45.55326 + ], + [ + -73.499026, + 45.553035 + ], + [ + -73.499051, + 45.55281 + ], + [ + -73.49911, + 45.552261 + ], + [ + -73.499127, + 45.552095 + ], + [ + -73.499157, + 45.551794 + ], + [ + -73.499199, + 45.551371 + ], + [ + -73.49924, + 45.551092 + ], + [ + -73.499284, + 45.550946 + ], + [ + -73.499366, + 45.550811 + ], + [ + -73.499487, + 45.550651 + ], + [ + -73.499665, + 45.550425 + ], + [ + -73.499747, + 45.550322 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.50022, + 45.549728 + ], + [ + -73.500444, + 45.549454 + ], + [ + -73.500464, + 45.549427 + ], + [ + -73.501566, + 45.548104 + ], + [ + -73.50204, + 45.547519 + ], + [ + -73.502267, + 45.547252 + ], + [ + -73.502471, + 45.547011 + ], + [ + -73.502541, + 45.546943 + ], + [ + -73.502557, + 45.546876 + ], + [ + -73.502577, + 45.546795 + ], + [ + -73.502631, + 45.546736 + ], + [ + -73.50284, + 45.546532 + ], + [ + -73.503243, + 45.546138 + ], + [ + -73.503599, + 45.545809 + ], + [ + -73.504068, + 45.545423 + ], + [ + -73.504222, + 45.545296 + ], + [ + -73.505423, + 45.544306 + ], + [ + -73.505527, + 45.544221 + ], + [ + -73.505579, + 45.544179 + ], + [ + -73.505629, + 45.54414 + ], + [ + -73.505954, + 45.54387 + ], + [ + -73.506032, + 45.543786 + ], + [ + -73.506072, + 45.543744 + ], + [ + -73.506245, + 45.543564 + ], + [ + -73.506394, + 45.543393 + ], + [ + -73.506629, + 45.543083 + ], + [ + -73.506908, + 45.542688 + ], + [ + -73.507112, + 45.542399 + ], + [ + -73.507514, + 45.541778 + ], + [ + -73.507752, + 45.541396 + ], + [ + -73.508031, + 45.540951 + ], + [ + -73.508096, + 45.540847 + ], + [ + -73.508112, + 45.54082 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.509486, + 45.538888 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.51157, + 45.537143 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.513272, + 45.536035 + ], + [ + -73.513413, + 45.535879 + ], + [ + -73.513707, + 45.535583 + ], + [ + -73.513941, + 45.535349 + ], + [ + -73.51396, + 45.535331 + ], + [ + -73.514031, + 45.535263 + ], + [ + -73.514312, + 45.534967 + ], + [ + -73.514735, + 45.53454 + ], + [ + -73.514842, + 45.53442 + ], + [ + -73.514898, + 45.534357 + ], + [ + -73.515145, + 45.534084 + ], + [ + -73.515317, + 45.533897 + ], + [ + -73.515372, + 45.533842 + ], + [ + -73.515492, + 45.533712 + ], + [ + -73.515504, + 45.533699 + ], + [ + -73.515888, + 45.533287 + ], + [ + -73.515986, + 45.533193 + ], + [ + -73.516604, + 45.532657 + ], + [ + -73.516729, + 45.532549 + ], + [ + -73.517579, + 45.531802 + ], + [ + -73.51791, + 45.531479 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518212, + 45.531168 + ], + [ + -73.51845, + 45.53088 + ], + [ + -73.518608, + 45.530695 + ], + [ + -73.518713, + 45.530574 + ], + [ + -73.518834, + 45.53043 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519399, + 45.526014 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521985, + 45.524134 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 171, + "properties": { + "id": "974f7916-c967-4b1a-85dc-7389dcaa43b9", + "data": { + "gtfs": { + "shape_id": "81_1_A" + }, + "segments": [ + { + "distanceMeters": 240, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 417, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 368, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 356, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 311, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 343, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 329, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 119, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 384, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 364, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 1420, + "travelTimeSeconds": 162 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 423, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 331, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 829, + "travelTimeSeconds": 150 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 407, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 636, + "travelTimeSeconds": 156 + }, + { + "distanceMeters": 829, + "travelTimeSeconds": 204 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 282, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 22407, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8347.563976383852, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.95, + "travelTimeWithoutDwellTimesSeconds": 2820, + "operatingTimeWithLayoverTimeSeconds": 3102, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2820, + "operatingSpeedWithLayoverMetersPerSecond": 7.22, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.95 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "2f7a97d2-c790-4f58-9a63-010938bbaf69", + "b54db9a8-0c8c-43a8-a385-bc532fde3f70", + "21aac851-6052-4e4d-8167-df2d9a876338", + "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", + "c650007a-bdeb-4831-9df5-833406e44887", + "8babca8c-ebff-46bc-b0c6-b6576c4fada6", + "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", + "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", + "50c385af-a7f1-479f-b40d-4ed198aca8ce", + "c70f5c69-70b5-4f23-92e4-0440931e6d31", + "0c7061af-3fd1-4686-aa29-c78d142ae807", + "bef3dd7a-32fd-4081-9a62-9328ee51057a", + "1fa5bec6-00bf-4d49-9290-67a2b0919f84", + "e2d71c2d-a170-4ce7-a381-519755a00e36", + "039c87a4-2647-4079-9a79-c7d3278ef6b2", + "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", + "0778ac37-7369-4d81-abbc-9aa1d13b1c38", + "fe768f5e-31ce-413a-b9fa-a7bf91a912eb", + "706f0077-9543-4662-8684-a321216a8a90", + "253353ba-aba2-4e63-bf86-819bb7c9cecd", + "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", + "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", + "78a9a588-c1f0-470f-bbcc-52b6da866dad", + "90b41412-0c12-4505-b7c9-b915901b1dd2", + "90b41412-0c12-4505-b7c9-b915901b1dd2", + "f659a652-a61c-4199-abbc-a42f3ceef5cb", + "02fef102-0f62-42d0-b4ed-790bc76ef1ad", + "389622d0-ee1f-428b-9366-e69f134ff23e", + "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", + "17cb8bb3-d8b7-472f-9a1a-e49fc66b519c", + "777d67e8-62c3-46b4-a71f-e76a88b45f45", + "6928ef4b-2825-4234-84d9-1c82edb211b0", + "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", + "568437d9-2de5-4e5e-b111-1a7811ac5c99", + "148d4b0f-418e-4993-b335-f1dcd1c4df41", + "518135ae-62e9-44c2-bac7-e8c50c56eec9", + "949c3098-32ca-4f3b-81ba-cbe506f68923", + "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", + "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", + "204b558a-c106-4589-888d-4bd6528787b5", + "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", + "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", + "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", + "bc367579-e120-4c24-8a22-9700d9580818", + "0d10f2fd-9087-48c2-a3cc-d12114887a2b", + "cc54b5e7-0d92-40a3-a2d0-962bd60dc85b", + "695f9244-0dd1-45c0-ba42-b49de2270ee6", + "51dc5cf7-92db-46c8-8c42-9f02a7f9e23c", + "0c601e52-04e5-43e0-9137-7225c37d4cdc", + "6460b11a-31ec-4bbc-b7b7-22be32195079", + "b2bf7d79-9175-4e1d-be9c-4f4140537e43", + "48f19a5c-0937-4c87-ba6d-c01e50729a6a", + "064a6f97-fc69-48b1-8038-7d9a4eea77de", + "da1ccd92-4d5e-4317-ad9f-7a8daa9e9230", + "bf75043d-39f5-40a1-89fa-2154a9f2a45f", + "75347f42-115f-47ec-b394-c1f56ce167fb", + "dc112aae-906c-47be-a1fb-06ef714fd1ab", + "ab105343-272d-4aa3-9238-846c2fa787cb", + "24527bed-7ea6-44d6-b6db-18ac609f4938", + "1b1077ca-8a37-46a1-a7be-751ea2f7f2ae", + "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", + "d5099816-374e-4ebc-ab50-5ca4d2f829e5", + "84a0424b-0f35-4bd8-8109-5ac9219d5869", + "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", + "261a087b-9323-4696-9046-146a299af43d", + "66456437-f154-4a2f-a12f-2f54cf668687", + "820a9d7c-25e9-487c-9e51-cfefcb1432f7", + "7fd25a62-c81c-42ae-bd39-f61c05418964", + "17f362e0-58a1-4091-a2cb-677491725ae9", + "cca1a0cf-beb4-489c-8f77-d54546a85821", + "a8133dc5-71bf-42ce-a22f-48f31a731720", + "21e2e89a-3df0-4ff7-aa64-17a07fbd660e", + "48ea0d06-7b69-4895-b55b-2a18e6e6f906", + "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", + "d00d9138-966b-4522-be1d-8c665c71246b", + "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "649e6394-9376-40eb-bc0e-4a376a0044aa", + "4fb4515b-e129-4622-b855-89143c2fd488", + "4c755ece-2475-4915-941e-37859f0f391f" + ], + "stops": [], + "line_id": "8b333337-1f1c-43e8-ac99-49e33bd82aa9", + "segments": [ + 0, + 1, + 4, + 11, + 18, + 24, + 31, + 35, + 40, + 47, + 53, + 60, + 65, + 71, + 77, + 82, + 87, + 90, + 95, + 101, + 104, + 107, + 109, + 114, + 118, + 125, + 132, + 148, + 158, + 166, + 173, + 180, + 182, + 185, + 188, + 192, + 198, + 203, + 210, + 216, + 223, + 227, + 232, + 239, + 244, + 247, + 253, + 259, + 264, + 293, + 318, + 323, + 328, + 342, + 409, + 421, + 429, + 435, + 443, + 450, + 461, + 468, + 471, + 476, + 483, + 499, + 505, + 513, + 522, + 524, + 534, + 538, + 547, + 555, + 563, + 572, + 576, + 579, + 596 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 171, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.52252, + 45.524045 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519449, + 45.523414 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519343, + 45.526817 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517851, + 45.526813 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517465, + 45.528168 + ], + [ + -73.517458, + 45.528249 + ], + [ + -73.517471, + 45.528385 + ], + [ + -73.517504, + 45.528565 + ], + [ + -73.517516, + 45.528652 + ], + [ + -73.517553, + 45.52877 + ], + [ + -73.517635, + 45.529002 + ], + [ + -73.517693, + 45.529249 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.517456, + 45.531762 + ], + [ + -73.516887, + 45.532289 + ], + [ + -73.51664, + 45.532518 + ], + [ + -73.515885, + 45.533161 + ], + [ + -73.515753, + 45.533238 + ], + [ + -73.515672, + 45.533321 + ], + [ + -73.515319, + 45.533717 + ], + [ + -73.515257, + 45.533788 + ], + [ + -73.515202, + 45.533848 + ], + [ + -73.514831, + 45.534265 + ], + [ + -73.514791, + 45.534311 + ], + [ + -73.514731, + 45.534379 + ], + [ + -73.514684, + 45.534434 + ], + [ + -73.51432, + 45.534799 + ], + [ + -73.513994, + 45.535129 + ], + [ + -73.513904, + 45.53522 + ], + [ + -73.513681, + 45.535468 + ], + [ + -73.51342, + 45.535713 + ], + [ + -73.513155, + 45.535985 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.511226, + 45.537342 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.509622, + 45.538701 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.508112, + 45.54082 + ], + [ + -73.508096, + 45.540847 + ], + [ + -73.507713, + 45.541459 + ], + [ + -73.507514, + 45.541778 + ], + [ + -73.507112, + 45.542399 + ], + [ + -73.506629, + 45.543083 + ], + [ + -73.506394, + 45.543393 + ], + [ + -73.506245, + 45.543564 + ], + [ + -73.506072, + 45.543744 + ], + [ + -73.506032, + 45.543786 + ], + [ + -73.505954, + 45.54387 + ], + [ + -73.505637, + 45.544133 + ], + [ + -73.505629, + 45.54414 + ], + [ + -73.505579, + 45.544179 + ], + [ + -73.505527, + 45.544221 + ], + [ + -73.504297, + 45.545235 + ], + [ + -73.504222, + 45.545296 + ], + [ + -73.503599, + 45.545809 + ], + [ + -73.503243, + 45.546138 + ], + [ + -73.50284, + 45.546532 + ], + [ + -73.502631, + 45.546736 + ], + [ + -73.502629, + 45.546739 + ], + [ + -73.502577, + 45.546795 + ], + [ + -73.502495, + 45.546833 + ], + [ + -73.502421, + 45.546867 + ], + [ + -73.502363, + 45.54693 + ], + [ + -73.501891, + 45.547483 + ], + [ + -73.501089, + 45.54845 + ], + [ + -73.500323, + 45.549368 + ], + [ + -73.500142, + 45.549578 + ], + [ + -73.500016, + 45.549724 + ], + [ + -73.499756, + 45.550039 + ], + [ + -73.499564, + 45.550308 + ], + [ + -73.499518, + 45.550373 + ], + [ + -73.499348, + 45.550589 + ], + [ + -73.499249, + 45.550718 + ], + [ + -73.499149, + 45.550849 + ], + [ + -73.49909, + 45.551 + ], + [ + -73.499052, + 45.551292 + ], + [ + -73.498992, + 45.551746 + ], + [ + -73.498947, + 45.552086 + ], + [ + -73.49893, + 45.552473 + ], + [ + -73.498889, + 45.552801 + ], + [ + -73.498863, + 45.552968 + ], + [ + -73.498848, + 45.553058 + ], + [ + -73.498813, + 45.553251 + ], + [ + -73.498782, + 45.553386 + ], + [ + -73.498737, + 45.553535 + ], + [ + -73.498669, + 45.55371 + ], + [ + -73.498603, + 45.553836 + ], + [ + -73.498557, + 45.553912 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498167, + 45.554475 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.496104, + 45.556848 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.494566, + 45.558538 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.493668, + 45.559597 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.492544, + 45.561193 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.49226, + 45.561543 + ], + [ + -73.492112, + 45.561761 + ], + [ + -73.491962, + 45.561977 + ], + [ + -73.491763, + 45.562292 + ], + [ + -73.491686, + 45.562407 + ], + [ + -73.491585, + 45.562559 + ], + [ + -73.491441, + 45.562784 + ], + [ + -73.490929, + 45.563578 + ], + [ + -73.490558, + 45.564142 + ], + [ + -73.490532, + 45.564181 + ], + [ + -73.490496, + 45.564236 + ], + [ + -73.49016, + 45.564742 + ], + [ + -73.48995, + 45.565062 + ], + [ + -73.48981, + 45.565248 + ], + [ + -73.489559, + 45.565581 + ], + [ + -73.489458, + 45.565721 + ], + [ + -73.489162, + 45.566112 + ], + [ + -73.488997, + 45.566327 + ], + [ + -73.488959, + 45.566375 + ], + [ + -73.488811, + 45.566565 + ], + [ + -73.488635, + 45.566766 + ], + [ + -73.488461, + 45.56699 + ], + [ + -73.488294, + 45.567186 + ], + [ + -73.488221, + 45.567273 + ], + [ + -73.488004, + 45.567517 + ], + [ + -73.487807, + 45.567755 + ], + [ + -73.487503, + 45.56809 + ], + [ + -73.48741, + 45.568192 + ], + [ + -73.487163, + 45.568458 + ], + [ + -73.487007, + 45.568622 + ], + [ + -73.486935, + 45.568697 + ], + [ + -73.486687, + 45.568953 + ], + [ + -73.486371, + 45.569275 + ], + [ + -73.486314, + 45.569328 + ], + [ + -73.486289, + 45.569352 + ], + [ + -73.486149, + 45.569492 + ], + [ + -73.485998, + 45.569634 + ], + [ + -73.485903, + 45.569729 + ], + [ + -73.485627, + 45.569986 + ], + [ + -73.485317, + 45.570269 + ], + [ + -73.484918, + 45.570637 + ], + [ + -73.484877, + 45.570674 + ], + [ + -73.484851, + 45.570698 + ], + [ + -73.484572, + 45.570948 + ], + [ + -73.484207, + 45.571258 + ], + [ + -73.484112, + 45.571335 + ], + [ + -73.483948, + 45.571467 + ], + [ + -73.483827, + 45.571565 + ], + [ + -73.483769, + 45.571618 + ], + [ + -73.483389, + 45.571944 + ], + [ + -73.482893, + 45.572344 + ], + [ + -73.482643, + 45.572566 + ], + [ + -73.482219, + 45.572923 + ], + [ + -73.482208, + 45.572932 + ], + [ + -73.482105, + 45.573016 + ], + [ + -73.481582, + 45.573467 + ], + [ + -73.481445, + 45.573583 + ], + [ + -73.481127, + 45.573851 + ], + [ + -73.480471, + 45.574399 + ], + [ + -73.480455, + 45.574414 + ], + [ + -73.480365, + 45.574496 + ], + [ + -73.480179, + 45.57465 + ], + [ + -73.47988, + 45.574896 + ], + [ + -73.479721, + 45.575038 + ], + [ + -73.479529, + 45.575196 + ], + [ + -73.479284, + 45.575404 + ], + [ + -73.479275, + 45.575411 + ], + [ + -73.47919, + 45.575474 + ], + [ + -73.478877, + 45.575745 + ], + [ + -73.478615, + 45.575963 + ], + [ + -73.478505, + 45.576047 + ], + [ + -73.478299, + 45.576232 + ], + [ + -73.478026, + 45.576459 + ], + [ + -73.477786, + 45.576664 + ], + [ + -73.477515, + 45.576891 + ], + [ + -73.477206, + 45.57715 + ], + [ + -73.477057, + 45.577276 + ], + [ + -73.47701, + 45.577315 + ], + [ + -73.476937, + 45.57737 + ], + [ + -73.476851, + 45.577447 + ], + [ + -73.476716, + 45.577554 + ], + [ + -73.476574, + 45.577658 + ], + [ + -73.476472, + 45.577734 + ], + [ + -73.47642, + 45.577765 + ], + [ + -73.476382, + 45.577787 + ], + [ + -73.476293, + 45.57787 + ], + [ + -73.476217, + 45.577897 + ], + [ + -73.476157, + 45.577912 + ], + [ + -73.476079, + 45.577928 + ], + [ + -73.476012, + 45.577939 + ], + [ + -73.475958, + 45.57795 + ], + [ + -73.475882, + 45.577959 + ], + [ + -73.475789, + 45.577962 + ], + [ + -73.475661, + 45.577961 + ], + [ + -73.475552, + 45.577947 + ], + [ + -73.47539, + 45.577914 + ], + [ + -73.4753, + 45.577885 + ], + [ + -73.475207, + 45.577851 + ], + [ + -73.475075, + 45.577797 + ], + [ + -73.474992, + 45.57776 + ], + [ + -73.47493, + 45.577679 + ], + [ + -73.474765, + 45.577566 + ], + [ + -73.474216, + 45.577139 + ], + [ + -73.473916, + 45.576909 + ], + [ + -73.473451, + 45.576545 + ], + [ + -73.473056, + 45.576248 + ], + [ + -73.472547, + 45.575861 + ], + [ + -73.472442, + 45.575811 + ], + [ + -73.472341, + 45.575771 + ], + [ + -73.472134, + 45.575721 + ], + [ + -73.472025, + 45.575712 + ], + [ + -73.47191, + 45.575703 + ], + [ + -73.471753, + 45.575725 + ], + [ + -73.471621, + 45.575752 + ], + [ + -73.471517, + 45.575779 + ], + [ + -73.471454, + 45.575824 + ], + [ + -73.471267, + 45.57591 + ], + [ + -73.471154, + 45.575991 + ], + [ + -73.471056, + 45.576076 + ], + [ + -73.470749, + 45.576405 + ], + [ + -73.470431, + 45.576759 + ], + [ + -73.46998, + 45.577261 + ], + [ + -73.46993, + 45.577318 + ], + [ + -73.469918, + 45.577331 + ], + [ + -73.469567, + 45.577727 + ], + [ + -73.469459, + 45.577871 + ], + [ + -73.469426, + 45.578028 + ], + [ + -73.469412, + 45.578105 + ], + [ + -73.469387, + 45.578199 + ], + [ + -73.469407, + 45.578361 + ], + [ + -73.469455, + 45.578532 + ], + [ + -73.469488, + 45.578586 + ], + [ + -73.469681, + 45.578892 + ], + [ + -73.469995, + 45.579387 + ], + [ + -73.470195, + 45.579689 + ], + [ + -73.470515, + 45.580203 + ], + [ + -73.470754, + 45.580571 + ], + [ + -73.470975, + 45.580922 + ], + [ + -73.471124, + 45.581142 + ], + [ + -73.471202, + 45.581268 + ], + [ + -73.471253, + 45.581372 + ], + [ + -73.471275, + 45.58143 + ], + [ + -73.471293, + 45.581494 + ], + [ + -73.471312, + 45.581592 + ], + [ + -73.471312, + 45.581772 + ], + [ + -73.471307, + 45.581816 + ], + [ + -73.471303, + 45.581844 + ], + [ + -73.47128, + 45.581907 + ], + [ + -73.471211, + 45.582033 + ], + [ + -73.470821, + 45.582712 + ], + [ + -73.470771, + 45.582791 + ], + [ + -73.470706, + 45.582894 + ], + [ + -73.470582, + 45.58309 + ], + [ + -73.470505, + 45.58323 + ], + [ + -73.470441, + 45.583347 + ], + [ + -73.470413, + 45.583413 + ], + [ + -73.470407, + 45.583428 + ], + [ + -73.470349, + 45.583567 + ], + [ + -73.470274, + 45.583837 + ], + [ + -73.470298, + 45.583954 + ], + [ + -73.470251, + 45.584156 + ], + [ + -73.470218, + 45.584246 + ], + [ + -73.470152, + 45.584422 + ], + [ + -73.470132, + 45.584453 + ], + [ + -73.469343, + 45.585587 + ], + [ + -73.469014, + 45.585956 + ], + [ + -73.468705, + 45.586302 + ], + [ + -73.468078, + 45.586878 + ], + [ + -73.467583, + 45.587301 + ], + [ + -73.466543, + 45.588142 + ], + [ + -73.466439, + 45.588038 + ], + [ + -73.466116, + 45.587789 + ] + ] + }, + "id": 172, + "properties": { + "id": "ca794cb6-4832-4099-9cdb-0142014b7101", + "data": { + "gtfs": { + "shape_id": "81_1_R" + }, + "segments": [ + { + "distanceMeters": 1468, + "travelTimeSeconds": 261 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 388, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 1438, + "travelTimeSeconds": 181 + }, + { + "distanceMeters": 382, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 46 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9609, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8347.563976383852, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.96, + "travelTimeWithoutDwellTimesSeconds": 1380, + "operatingTimeWithLayoverTimeSeconds": 1560, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1380, + "operatingSpeedWithLayoverMetersPerSecond": 6.16, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.96 + }, + "mode": "bus", + "name": "boul. du Fort-St-Louis", + "color": "#A32638", + "nodes": [ + "4c755ece-2475-4915-941e-37859f0f391f", + "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "d00d9138-966b-4522-be1d-8c665c71246b", + "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", + "48ea0d06-7b69-4895-b55b-2a18e6e6f906", + "2759f6fd-0d91-4292-9174-1b3724fde57a", + "cca1a0cf-beb4-489c-8f77-d54546a85821", + "17f362e0-58a1-4091-a2cb-677491725ae9", + "c5521133-14cc-4988-b8c2-4360698fa4ec", + "a42ad0c8-61c2-4ea6-ba0d-de9a1cb40394", + "bc056e84-1f20-4604-aad7-40427c6685a6", + "c879a803-d58b-4487-8291-391e9b516d3c", + "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", + "261a087b-9323-4696-9046-146a299af43d", + "0bcb0e97-db40-44bb-afe9-f6212a5b6387", + "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", + "84a0424b-0f35-4bd8-8109-5ac9219d5869", + "2d4bab42-76d4-4d53-9416-1ff754c71d1d", + "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", + "de56e105-40ff-411e-a830-378b68780088", + "24527bed-7ea6-44d6-b6db-18ac609f4938", + "ab105343-272d-4aa3-9238-846c2fa787cb", + "dc112aae-906c-47be-a1fb-06ef714fd1ab", + "75347f42-115f-47ec-b394-c1f56ce167fb", + "bf75043d-39f5-40a1-89fa-2154a9f2a45f", + "49a50701-87e7-4e72-af25-0a8ac3f9cb08", + "294d6510-b687-486c-b1aa-a7e5b91bdac4", + "2f7a97d2-c790-4f58-9a63-010938bbaf69" + ], + "stops": [], + "line_id": "8b333337-1f1c-43e8-ac99-49e33bd82aa9", + "segments": [ + 0, + 56, + 61, + 69, + 77, + 84, + 94, + 103, + 107, + 113, + 121, + 131, + 145, + 147, + 150, + 152, + 154, + 160, + 164, + 174, + 189, + 202, + 209, + 215, + 221, + 232, + 306, + 321 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 172, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.466116, + 45.587789 + ], + [ + -73.463882, + 45.586067 + ], + [ + -73.463008, + 45.585396 + ], + [ + -73.462695, + 45.585153 + ], + [ + -73.462466, + 45.584997 + ], + [ + -73.462432, + 45.584973 + ], + [ + -73.461939, + 45.585508 + ], + [ + -73.461685, + 45.585787 + ], + [ + -73.46157, + 45.585914 + ], + [ + -73.461498, + 45.585994 + ], + [ + -73.461391, + 45.586115 + ], + [ + -73.461235, + 45.586304 + ], + [ + -73.461153, + 45.586394 + ], + [ + -73.46075, + 45.586842 + ], + [ + -73.460583, + 45.587025 + ], + [ + -73.46024, + 45.587403 + ], + [ + -73.460107, + 45.58755 + ], + [ + -73.459672, + 45.588027 + ], + [ + -73.459565, + 45.588139 + ], + [ + -73.459411, + 45.588319 + ], + [ + -73.45918, + 45.588576 + ], + [ + -73.458866, + 45.588918 + ], + [ + -73.458429, + 45.589411 + ], + [ + -73.458224, + 45.589642 + ], + [ + -73.457847, + 45.590109 + ], + [ + -73.457798, + 45.590177 + ], + [ + -73.457344, + 45.590807 + ], + [ + -73.457079, + 45.591212 + ], + [ + -73.456938, + 45.591427 + ], + [ + -73.45679, + 45.591652 + ], + [ + -73.456499, + 45.592179 + ], + [ + -73.456406, + 45.592363 + ], + [ + -73.456207, + 45.592759 + ], + [ + -73.456158, + 45.59287 + ], + [ + -73.456153, + 45.59288 + ], + [ + -73.455854, + 45.593569 + ], + [ + -73.455756, + 45.593816 + ], + [ + -73.455619, + 45.594225 + ], + [ + -73.455491, + 45.594772 + ], + [ + -73.455406, + 45.595139 + ], + [ + -73.455249, + 45.595936 + ], + [ + -73.455188, + 45.59625 + ], + [ + -73.455037, + 45.597022 + ], + [ + -73.454939, + 45.597508 + ], + [ + -73.454896, + 45.597721 + ], + [ + -73.454793, + 45.598157 + ], + [ + -73.454668, + 45.598841 + ], + [ + -73.454596, + 45.599241 + ], + [ + -73.454497, + 45.599705 + ], + [ + -73.454457, + 45.599919 + ], + [ + -73.454318, + 45.600654 + ], + [ + -73.454139, + 45.601545 + ], + [ + -73.454074, + 45.601856 + ], + [ + -73.454053, + 45.601959 + ], + [ + -73.453996, + 45.602252 + ], + [ + -73.453844, + 45.603045 + ], + [ + -73.453814, + 45.6032 + ], + [ + -73.453667, + 45.603947 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453558, + 45.604496 + ], + [ + -73.45351, + 45.604734 + ], + [ + -73.45313, + 45.606689 + ], + [ + -73.45303, + 45.607204 + ], + [ + -73.452956, + 45.607582 + ], + [ + -73.452894, + 45.607902 + ], + [ + -73.452838, + 45.608171 + ], + [ + -73.452742, + 45.608653 + ], + [ + -73.452502, + 45.609899 + ], + [ + -73.452319, + 45.610623 + ], + [ + -73.452203, + 45.611001 + ], + [ + -73.452151, + 45.611172 + ], + [ + -73.452038, + 45.611557 + ], + [ + -73.451963, + 45.611811 + ], + [ + -73.451764, + 45.612387 + ], + [ + -73.451588, + 45.612886 + ], + [ + -73.451496, + 45.613129 + ], + [ + -73.451219, + 45.613822 + ], + [ + -73.450957, + 45.614433 + ], + [ + -73.450551, + 45.61523 + ], + [ + -73.450224, + 45.615846 + ], + [ + -73.450142, + 45.615999 + ], + [ + -73.449827, + 45.616539 + ], + [ + -73.449512, + 45.617087 + ], + [ + -73.44919, + 45.617636 + ], + [ + -73.448637, + 45.61859 + ], + [ + -73.448491, + 45.618837 + ], + [ + -73.448364, + 45.619075 + ], + [ + -73.447396, + 45.620704 + ], + [ + -73.447098, + 45.621221 + ], + [ + -73.447011, + 45.621372 + ], + [ + -73.446834, + 45.62168 + ], + [ + -73.446146, + 45.622876 + ], + [ + -73.445824, + 45.623425 + ], + [ + -73.445586, + 45.623794 + ], + [ + -73.445387, + 45.624131 + ], + [ + -73.444573, + 45.625552 + ], + [ + -73.444063, + 45.626417 + ], + [ + -73.444022, + 45.626488 + ], + [ + -73.443605, + 45.627221 + ], + [ + -73.443114, + 45.62808 + ], + [ + -73.442088, + 45.629846 + ], + [ + -73.441684, + 45.63054 + ], + [ + -73.441456, + 45.630932 + ], + [ + -73.441437, + 45.630964 + ], + [ + -73.441271, + 45.631251 + ], + [ + -73.440392, + 45.632771 + ], + [ + -73.440824, + 45.632902 + ], + [ + -73.440907, + 45.632925 + ], + [ + -73.441599, + 45.633114 + ], + [ + -73.44208, + 45.633254 + ], + [ + -73.442416, + 45.633371 + ], + [ + -73.442563, + 45.633434 + ], + [ + -73.442909, + 45.633686 + ], + [ + -73.443048, + 45.633791 + ], + [ + -73.443242, + 45.633938 + ], + [ + -73.443845, + 45.634429 + ], + [ + -73.444049, + 45.634573 + ], + [ + -73.444148, + 45.634658 + ], + [ + -73.444422, + 45.63487 + ], + [ + -73.44467, + 45.635073 + ], + [ + -73.444715, + 45.635109 + ], + [ + -73.445104, + 45.635415 + ], + [ + -73.445268, + 45.635536 + ], + [ + -73.445466, + 45.635698 + ], + [ + -73.445562, + 45.635784 + ], + [ + -73.445634, + 45.635856 + ], + [ + -73.445712, + 45.635937 + ], + [ + -73.445769, + 45.636018 + ], + [ + -73.445951, + 45.636247 + ], + [ + -73.446134, + 45.636441 + ], + [ + -73.44625, + 45.636558 + ], + [ + -73.446407, + 45.636689 + ], + [ + -73.44662, + 45.636845 + ], + [ + -73.446639, + 45.63686 + ], + [ + -73.446777, + 45.636959 + ], + [ + -73.446874, + 45.637013 + ], + [ + -73.447384, + 45.637215 + ], + [ + -73.447634, + 45.637301 + ], + [ + -73.447778, + 45.637337 + ], + [ + -73.44802, + 45.63702 + ], + [ + -73.448132, + 45.636874 + ], + [ + -73.448252, + 45.636716 + ], + [ + -73.448535, + 45.636361 + ], + [ + -73.448723, + 45.636136 + ], + [ + -73.449067, + 45.635736 + ], + [ + -73.449285, + 45.635498 + ], + [ + -73.449434, + 45.63534 + ], + [ + -73.450136, + 45.634603 + ], + [ + -73.450679, + 45.634027 + ], + [ + -73.450913, + 45.633777 + ], + [ + -73.451195, + 45.633474 + ], + [ + -73.451614, + 45.633011 + ], + [ + -73.451693, + 45.632925 + ], + [ + -73.451773, + 45.632844 + ], + [ + -73.452094, + 45.632426 + ], + [ + -73.452319, + 45.632093 + ], + [ + -73.452502, + 45.631778 + ], + [ + -73.452686, + 45.631346 + ], + [ + -73.452736, + 45.631241 + ], + [ + -73.452778, + 45.631153 + ], + [ + -73.452942, + 45.630703 + ], + [ + -73.453257, + 45.629785 + ], + [ + -73.453315, + 45.629624 + ], + [ + -73.453358, + 45.629493 + ], + [ + -73.453393, + 45.629394 + ], + [ + -73.453601, + 45.628791 + ], + [ + -73.453834, + 45.628108 + ], + [ + -73.454024, + 45.62755 + ], + [ + -73.454243, + 45.626929 + ], + [ + -73.454435, + 45.626407 + ], + [ + -73.454577, + 45.625988 + ], + [ + -73.455153, + 45.624288 + ], + [ + -73.455228, + 45.623663 + ], + [ + -73.455345, + 45.621886 + ], + [ + -73.455364, + 45.621566 + ], + [ + -73.455381, + 45.621357 + ], + [ + -73.455459, + 45.620347 + ], + [ + -73.455479, + 45.620194 + ], + [ + -73.455571, + 45.619434 + ], + [ + -73.45562, + 45.619025 + ], + [ + -73.455676, + 45.618606 + ], + [ + -73.455729, + 45.618206 + ], + [ + -73.45581, + 45.617621 + ], + [ + -73.455879, + 45.617157 + ], + [ + -73.455888, + 45.617081 + ], + [ + -73.455915, + 45.616856 + ], + [ + -73.455924, + 45.616785 + ], + [ + -73.45596, + 45.616501 + ], + [ + -73.455984, + 45.616307 + ], + [ + -73.456015, + 45.616024 + ], + [ + -73.45606, + 45.615718 + ], + [ + -73.456125, + 45.615281 + ], + [ + -73.456295, + 45.613828 + ], + [ + -73.456315, + 45.613702 + ], + [ + -73.456327, + 45.613565 + ], + [ + -73.456346, + 45.613356 + ], + [ + -73.456367, + 45.613122 + ], + [ + -73.456403, + 45.612587 + ], + [ + -73.456429, + 45.612204 + ], + [ + -73.456449, + 45.611777 + ], + [ + -73.456473, + 45.611516 + ], + [ + -73.456491, + 45.611268 + ], + [ + -73.4565, + 45.611138 + ], + [ + -73.456508, + 45.610998 + ], + [ + -73.456537, + 45.610463 + ], + [ + -73.456534, + 45.610121 + ], + [ + -73.456542, + 45.610021 + ], + [ + -73.456558, + 45.609802 + ], + [ + -73.456582, + 45.60905 + ], + [ + -73.456594, + 45.608335 + ], + [ + -73.456599, + 45.607836 + ], + [ + -73.45661, + 45.607368 + ], + [ + -73.456615, + 45.606796 + ], + [ + -73.456615, + 45.606661 + ], + [ + -73.456606, + 45.606499 + ], + [ + -73.456639, + 45.606189 + ], + [ + -73.456765, + 45.605708 + ], + [ + -73.456875, + 45.605321 + ], + [ + -73.457004, + 45.60488 + ], + [ + -73.45701, + 45.60486 + ], + [ + -73.457136, + 45.604362 + ], + [ + -73.457297, + 45.603715 + ], + [ + -73.457402, + 45.603323 + ], + [ + -73.457484, + 45.603017 + ], + [ + -73.457663, + 45.602423 + ], + [ + -73.457833, + 45.601965 + ], + [ + -73.458077, + 45.601272 + ], + [ + -73.458417, + 45.600413 + ], + [ + -73.45861, + 45.599891 + ], + [ + -73.458667, + 45.599742 + ], + [ + -73.458773, + 45.599468 + ], + [ + -73.458929, + 45.599081 + ], + [ + -73.45906, + 45.598784 + ], + [ + -73.459106, + 45.598681 + ], + [ + -73.459297, + 45.598249 + ], + [ + -73.459417, + 45.597961 + ], + [ + -73.459667, + 45.59743 + ], + [ + -73.459721, + 45.597313 + ], + [ + -73.459796, + 45.597151 + ], + [ + -73.459959, + 45.596854 + ], + [ + -73.460279, + 45.596211 + ], + [ + -73.460377, + 45.59604 + ], + [ + -73.460508, + 45.595878 + ], + [ + -73.461071, + 45.594695 + ], + [ + -73.461222, + 45.594399 + ], + [ + -73.461303, + 45.594263 + ], + [ + -73.461165, + 45.594245 + ], + [ + -73.461088, + 45.594223 + ], + [ + -73.461052, + 45.594209 + ], + [ + -73.461012, + 45.594187 + ], + [ + -73.460975, + 45.594164 + ], + [ + -73.460934, + 45.594133 + ], + [ + -73.460903, + 45.594083 + ], + [ + -73.460874, + 45.594007 + ], + [ + -73.460786, + 45.593638 + ], + [ + -73.460732, + 45.593472 + ], + [ + -73.46065, + 45.593102 + ], + [ + -73.460618, + 45.592971 + ], + [ + -73.460612, + 45.592945 + ], + [ + -73.460597, + 45.592846 + ], + [ + -73.460594, + 45.592756 + ], + [ + -73.460592, + 45.592639 + ], + [ + -73.460627, + 45.592463 + ], + [ + -73.460652, + 45.592387 + ], + [ + -73.460702, + 45.592266 + ], + [ + -73.460724, + 45.592225 + ], + [ + -73.460758, + 45.592162 + ], + [ + -73.460841, + 45.59205 + ], + [ + -73.460858, + 45.592023 + ], + [ + -73.460873, + 45.592 + ], + [ + -73.46094, + 45.591928 + ], + [ + -73.461084, + 45.591784 + ], + [ + -73.461225, + 45.59169 + ], + [ + -73.461314, + 45.591613 + ], + [ + -73.462065, + 45.590961 + ], + [ + -73.462195, + 45.590862 + ], + [ + -73.462294, + 45.590799 + ], + [ + -73.462386, + 45.590754 + ], + [ + -73.462519, + 45.590705 + ], + [ + -73.462602, + 45.590678 + ], + [ + -73.462706, + 45.590656 + ], + [ + -73.462813, + 45.590642 + ], + [ + -73.462888, + 45.590633 + ], + [ + -73.463001, + 45.590624 + ], + [ + -73.46316, + 45.59062 + ], + [ + -73.463269, + 45.590611 + ], + [ + -73.463357, + 45.590597 + ], + [ + -73.463462, + 45.590579 + ], + [ + -73.463571, + 45.590548 + ], + [ + -73.463709, + 45.590498 + ], + [ + -73.463772, + 45.590426 + ], + [ + -73.463826, + 45.590404 + ], + [ + -73.463931, + 45.590341 + ], + [ + -73.464069, + 45.590233 + ], + [ + -73.464125, + 45.590184 + ], + [ + -73.46414, + 45.59017 + ], + [ + -73.464647, + 45.589698 + ], + [ + -73.46517, + 45.589257 + ], + [ + -73.465623, + 45.588888 + ], + [ + -73.466111, + 45.588492 + ], + [ + -73.466543, + 45.588142 + ], + [ + -73.467583, + 45.587301 + ], + [ + -73.468078, + 45.586878 + ], + [ + -73.468705, + 45.586302 + ], + [ + -73.469333, + 45.585598 + ], + [ + -73.469343, + 45.585587 + ], + [ + -73.470132, + 45.584453 + ], + [ + -73.470152, + 45.584422 + ], + [ + -73.470218, + 45.584246 + ], + [ + -73.470251, + 45.584156 + ], + [ + -73.470298, + 45.583954 + ], + [ + -73.470385, + 45.583842 + ], + [ + -73.470456, + 45.583585 + ], + [ + -73.47052, + 45.583429 + ], + [ + -73.470545, + 45.583369 + ], + [ + -73.470612, + 45.583247 + ], + [ + -73.470683, + 45.583117 + ], + [ + -73.470812, + 45.582911 + ], + [ + -73.470915, + 45.582744 + ], + [ + -73.471254, + 45.582198 + ], + [ + -73.471346, + 45.582051 + ], + [ + -73.471398, + 45.581925 + ], + [ + -73.471433, + 45.581808 + ], + [ + -73.471453, + 45.581699 + ], + [ + -73.471458, + 45.581595 + ], + [ + -73.471454, + 45.581489 + ], + [ + -73.471389, + 45.581345 + ], + [ + -73.471335, + 45.581232 + ], + [ + -73.471105, + 45.580881 + ], + [ + -73.470884, + 45.580526 + ], + [ + -73.470654, + 45.580152 + ], + [ + -73.470298, + 45.579576 + ], + [ + -73.47012, + 45.579347 + ], + [ + -73.469587, + 45.578501 + ], + [ + -73.469497, + 45.578352 + ], + [ + -73.469458, + 45.578217 + ], + [ + -73.469412, + 45.578105 + ], + [ + -73.469426, + 45.578028 + ], + [ + -73.469457, + 45.577882 + ], + [ + -73.469459, + 45.577871 + ], + [ + -73.469567, + 45.577727 + ], + [ + -73.469918, + 45.577331 + ], + [ + -73.46993, + 45.577318 + ], + [ + -73.46998, + 45.577261 + ], + [ + -73.470749, + 45.576405 + ], + [ + -73.470861, + 45.576285 + ], + [ + -73.471056, + 45.576076 + ], + [ + -73.471154, + 45.575991 + ], + [ + -73.471267, + 45.57591 + ], + [ + -73.471454, + 45.575824 + ], + [ + -73.471573, + 45.575815 + ], + [ + -73.47168, + 45.575793 + ], + [ + -73.471784, + 45.575788 + ], + [ + -73.47189, + 45.575788 + ], + [ + -73.472025, + 45.575797 + ], + [ + -73.472112, + 45.575815 + ], + [ + -73.472263, + 45.575852 + ], + [ + -73.472355, + 45.575892 + ], + [ + -73.472462, + 45.575951 + ], + [ + -73.472549, + 45.576014 + ], + [ + -73.472694, + 45.576122 + ], + [ + -73.473301, + 45.576594 + ], + [ + -73.473336, + 45.576621 + ], + [ + -73.473371, + 45.57665 + ], + [ + -73.473655, + 45.576878 + ], + [ + -73.474504, + 45.577526 + ], + [ + -73.47467, + 45.577629 + ], + [ + -73.474832, + 45.577728 + ], + [ + -73.474992, + 45.57776 + ], + [ + -73.475075, + 45.577797 + ], + [ + -73.475207, + 45.577851 + ], + [ + -73.4753, + 45.577885 + ], + [ + -73.47539, + 45.577914 + ], + [ + -73.475552, + 45.577947 + ], + [ + -73.475661, + 45.577961 + ], + [ + -73.475789, + 45.577962 + ], + [ + -73.475882, + 45.577959 + ], + [ + -73.475958, + 45.57795 + ], + [ + -73.476012, + 45.577939 + ], + [ + -73.476079, + 45.577928 + ], + [ + -73.476157, + 45.577912 + ], + [ + -73.476217, + 45.577897 + ], + [ + -73.476257, + 45.577883 + ], + [ + -73.476293, + 45.57787 + ], + [ + -73.476435, + 45.577844 + ], + [ + -73.476547, + 45.57778 + ], + [ + -73.476747, + 45.57765 + ], + [ + -73.476958, + 45.577498 + ], + [ + -73.477027, + 45.57744 + ], + [ + -73.477145, + 45.577342 + ], + [ + -73.477324, + 45.577191 + ], + [ + -73.477483, + 45.577054 + ], + [ + -73.477759, + 45.576825 + ], + [ + -73.477862, + 45.576731 + ], + [ + -73.478006, + 45.576618 + ], + [ + -73.478291, + 45.576373 + ], + [ + -73.478455, + 45.576238 + ], + [ + -73.478599, + 45.576116 + ], + [ + -73.478806, + 45.575943 + ], + [ + -73.478978, + 45.575795 + ], + [ + -73.479155, + 45.575649 + ], + [ + -73.479274, + 45.575534 + ], + [ + -73.47941, + 45.575433 + ], + [ + -73.479622, + 45.575253 + ], + [ + -73.4798, + 45.575097 + ], + [ + -73.479996, + 45.574941 + ], + [ + -73.480208, + 45.574762 + ], + [ + -73.480237, + 45.574738 + ], + [ + -73.480453, + 45.574551 + ], + [ + -73.480801, + 45.574263 + ], + [ + -73.481358, + 45.573789 + ], + [ + -73.481529, + 45.573644 + ], + [ + -73.481972, + 45.573269 + ], + [ + -73.482204, + 45.573068 + ], + [ + -73.482412, + 45.572903 + ], + [ + -73.482823, + 45.572557 + ], + [ + -73.482916, + 45.572476 + ], + [ + -73.482986, + 45.57241 + ], + [ + -73.483034, + 45.572367 + ], + [ + -73.483315, + 45.572122 + ], + [ + -73.483678, + 45.571813 + ], + [ + -73.483843, + 45.57167 + ], + [ + -73.484123, + 45.57144 + ], + [ + -73.484526, + 45.571099 + ], + [ + -73.484935, + 45.570755 + ], + [ + -73.484967, + 45.570727 + ], + [ + -73.485483, + 45.570269 + ], + [ + -73.485867, + 45.569908 + ], + [ + -73.485994, + 45.569784 + ], + [ + -73.486085, + 45.569691 + ], + [ + -73.48635, + 45.56944 + ], + [ + -73.486421, + 45.569373 + ], + [ + -73.487037, + 45.568739 + ], + [ + -73.487188, + 45.568584 + ], + [ + -73.487556, + 45.568196 + ], + [ + -73.487608, + 45.568138 + ], + [ + -73.488016, + 45.567684 + ], + [ + -73.48834, + 45.5673 + ], + [ + -73.488394, + 45.567236 + ], + [ + -73.488926, + 45.566606 + ], + [ + -73.489299, + 45.566117 + ], + [ + -73.489627, + 45.565684 + ], + [ + -73.489917, + 45.565286 + ], + [ + -73.490075, + 45.56507 + ], + [ + -73.490593, + 45.5643 + ], + [ + -73.491526, + 45.562883 + ], + [ + -73.491532, + 45.562873 + ], + [ + -73.491593, + 45.562778 + ], + [ + -73.4917, + 45.562606 + ], + [ + -73.491908, + 45.562298 + ], + [ + -73.49207, + 45.56203 + ], + [ + -73.492185, + 45.561871 + ], + [ + -73.492369, + 45.561588 + ], + [ + -73.492391, + 45.561555 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.493493, + 45.559821 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.495649, + 45.557344 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.497974, + 45.554699 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498677, + 45.553944 + ], + [ + -73.498726, + 45.553872 + ], + [ + -73.498813, + 45.553714 + ], + [ + -73.498895, + 45.553562 + ], + [ + -73.49895, + 45.553404 + ], + [ + -73.498964, + 45.55335 + ], + [ + -73.498988, + 45.55326 + ], + [ + -73.499026, + 45.553035 + ], + [ + -73.499051, + 45.55281 + ], + [ + -73.49911, + 45.552261 + ], + [ + -73.499127, + 45.552095 + ], + [ + -73.499158, + 45.551787 + ], + [ + -73.499199, + 45.551371 + ], + [ + -73.49924, + 45.551092 + ], + [ + -73.499284, + 45.550946 + ], + [ + -73.499366, + 45.550811 + ], + [ + -73.499487, + 45.550651 + ], + [ + -73.499747, + 45.550322 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.50022, + 45.549728 + ], + [ + -73.500444, + 45.549454 + ], + [ + -73.500464, + 45.549427 + ], + [ + -73.501389, + 45.548316 + ], + [ + -73.501566, + 45.548104 + ], + [ + -73.50204, + 45.547519 + ], + [ + -73.502471, + 45.547011 + ], + [ + -73.502541, + 45.546943 + ], + [ + -73.502557, + 45.546876 + ], + [ + -73.502577, + 45.546795 + ], + [ + -73.502631, + 45.546736 + ], + [ + -73.50284, + 45.546532 + ], + [ + -73.503243, + 45.546138 + ], + [ + -73.503599, + 45.545809 + ], + [ + -73.504222, + 45.545296 + ], + [ + -73.504433, + 45.545122 + ], + [ + -73.505527, + 45.544221 + ], + [ + -73.505579, + 45.544179 + ], + [ + -73.505629, + 45.54414 + ], + [ + -73.505954, + 45.54387 + ], + [ + -73.506032, + 45.543786 + ], + [ + -73.506072, + 45.543744 + ], + [ + -73.506245, + 45.543564 + ], + [ + -73.506394, + 45.543393 + ], + [ + -73.506629, + 45.543083 + ], + [ + -73.507112, + 45.542399 + ], + [ + -73.507215, + 45.54224 + ], + [ + -73.507514, + 45.541778 + ], + [ + -73.507752, + 45.541396 + ], + [ + -73.508096, + 45.540847 + ], + [ + -73.508112, + 45.54082 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.50912, + 45.539383 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.512149, + 45.536805 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.513272, + 45.536035 + ], + [ + -73.513413, + 45.535879 + ], + [ + -73.513707, + 45.535583 + ], + [ + -73.513941, + 45.535349 + ], + [ + -73.514031, + 45.535263 + ], + [ + -73.514312, + 45.534967 + ], + [ + -73.514735, + 45.53454 + ], + [ + -73.514842, + 45.53442 + ], + [ + -73.514898, + 45.534357 + ], + [ + -73.515145, + 45.534084 + ], + [ + -73.515317, + 45.533897 + ], + [ + -73.515372, + 45.533842 + ], + [ + -73.515504, + 45.533699 + ], + [ + -73.51557, + 45.533628 + ], + [ + -73.515888, + 45.533287 + ], + [ + -73.515986, + 45.533193 + ], + [ + -73.516729, + 45.532549 + ], + [ + -73.517579, + 45.531802 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518212, + 45.531168 + ], + [ + -73.51845, + 45.53088 + ], + [ + -73.518608, + 45.530695 + ], + [ + -73.518713, + 45.530574 + ], + [ + -73.518834, + 45.53043 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519422, + 45.528683 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.520673, + 45.523422 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521985, + 45.524134 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 173, + "properties": { + "id": "670a322a-87eb-4bf8-8789-eca152d72e75", + "data": { + "gtfs": { + "shape_id": "81_1_A" + }, + "segments": [ + { + "distanceMeters": 421, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 425, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 448, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 732, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 562, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 646, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 625, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 546, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 456, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 572, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 602, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 521, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 511, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 360, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 395, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 577, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 411, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 527, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 451, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 653, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 516, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 542, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 467, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 416, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 551, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 376, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 430, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 430, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 390, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 446, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 640, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 674, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 453, + "travelTimeSeconds": 25 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 22407, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 58.65116365707441, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 16.24, + "travelTimeWithoutDwellTimesSeconds": 1380, + "operatingTimeWithLayoverTimeSeconds": 1560, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1380, + "operatingSpeedWithLayoverMetersPerSecond": 14.36, + "averageSpeedWithoutDwellTimesMetersPerSecond": 16.24 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "2f7a97d2-c790-4f58-9a63-010938bbaf69", + "b54db9a8-0c8c-43a8-a385-bc532fde3f70", + "21aac851-6052-4e4d-8167-df2d9a876338", + "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", + "c650007a-bdeb-4831-9df5-833406e44887", + "8babca8c-ebff-46bc-b0c6-b6576c4fada6", + "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", + "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", + "50c385af-a7f1-479f-b40d-4ed198aca8ce", + "c70f5c69-70b5-4f23-92e4-0440931e6d31", + "0c7061af-3fd1-4686-aa29-c78d142ae807", + "bef3dd7a-32fd-4081-9a62-9328ee51057a", + "1fa5bec6-00bf-4d49-9290-67a2b0919f84", + "e2d71c2d-a170-4ce7-a381-519755a00e36", + "039c87a4-2647-4079-9a79-c7d3278ef6b2", + "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", + "0778ac37-7369-4d81-abbc-9aa1d13b1c38", + "fe768f5e-31ce-413a-b9fa-a7bf91a912eb", + "706f0077-9543-4662-8684-a321216a8a90", + "253353ba-aba2-4e63-bf86-819bb7c9cecd", + "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", + "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", + "78a9a588-c1f0-470f-bbcc-52b6da866dad", + "90b41412-0c12-4505-b7c9-b915901b1dd2", + "90b41412-0c12-4505-b7c9-b915901b1dd2", + "f659a652-a61c-4199-abbc-a42f3ceef5cb", + "02fef102-0f62-42d0-b4ed-790bc76ef1ad", + "389622d0-ee1f-428b-9366-e69f134ff23e", + "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", + "17cb8bb3-d8b7-472f-9a1a-e49fc66b519c", + "777d67e8-62c3-46b4-a71f-e76a88b45f45", + "6928ef4b-2825-4234-84d9-1c82edb211b0", + "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", + "568437d9-2de5-4e5e-b111-1a7811ac5c99", + "148d4b0f-418e-4993-b335-f1dcd1c4df41", + "518135ae-62e9-44c2-bac7-e8c50c56eec9", + "949c3098-32ca-4f3b-81ba-cbe506f68923", + "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", + "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", + "204b558a-c106-4589-888d-4bd6528787b5", + "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", + "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", + "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", + "bc367579-e120-4c24-8a22-9700d9580818", + "0d10f2fd-9087-48c2-a3cc-d12114887a2b", + "cc54b5e7-0d92-40a3-a2d0-962bd60dc85b", + "695f9244-0dd1-45c0-ba42-b49de2270ee6", + "51dc5cf7-92db-46c8-8c42-9f02a7f9e23c", + "0c601e52-04e5-43e0-9137-7225c37d4cdc", + "6460b11a-31ec-4bbc-b7b7-22be32195079", + "b2bf7d79-9175-4e1d-be9c-4f4140537e43", + "48f19a5c-0937-4c87-ba6d-c01e50729a6a" + ], + "stops": [], + "line_id": "8b333337-1f1c-43e8-ac99-49e33bd82aa9", + "segments": [ + 0, + 4, + 14, + 22, + 33, + 40, + 49, + 52, + 59, + 69, + 79, + 88, + 96, + 103, + 113, + 132, + 149, + 158, + 170, + 175, + 186, + 194, + 206, + 219, + 222, + 229, + 237, + 257, + 294, + 304, + 319, + 338, + 345, + 382, + 406, + 418, + 430, + 437, + 445, + 456, + 459, + 462, + 476, + 487, + 499, + 510, + 521, + 530, + 546, + 563, + 579 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 173, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.52252, + 45.524045 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523674, + 45.523537 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.503549, + 45.548419 + ], + [ + -73.502986, + 45.54904 + ], + [ + -73.502097, + 45.550079 + ], + [ + -73.501025, + 45.551361 + ], + [ + -73.500319, + 45.55223 + ], + [ + -73.497146, + 45.556054 + ], + [ + -73.496787, + 45.55649 + ], + [ + -73.495905, + 45.557543 + ], + [ + -73.495369, + 45.558173 + ], + [ + -73.494314, + 45.559446 + ], + [ + -73.493461, + 45.560499 + ], + [ + -73.492975, + 45.561151 + ], + [ + -73.492659, + 45.561597 + ], + [ + -73.492068, + 45.562474 + ], + [ + -73.49148, + 45.563383 + ], + [ + -73.490434, + 45.564962 + ], + [ + -73.489967, + 45.565619 + ], + [ + -73.489477, + 45.566267 + ], + [ + -73.488962, + 45.566906 + ], + [ + -73.48825, + 45.567747 + ], + [ + -73.487877, + 45.568161 + ], + [ + -73.487301, + 45.568777 + ], + [ + -73.486712, + 45.56938 + ], + [ + -73.486308, + 45.569771 + ], + [ + -73.485474, + 45.570545 + ], + [ + -73.48461, + 45.571301 + ], + [ + -73.483654, + 45.572115 + ], + [ + -73.478606, + 45.576433 + ], + [ + -73.478028, + 45.576933 + ], + [ + -73.477248, + 45.577607 + ], + [ + -73.476645, + 45.578128 + ], + [ + -73.475915, + 45.578754 + ], + [ + -73.475553, + 45.579033 + ], + [ + -73.474887, + 45.579478 + ], + [ + -73.474437, + 45.579762 + ], + [ + -73.474095, + 45.580005 + ], + [ + -73.473853, + 45.580158 + ], + [ + -73.473398, + 45.580472 + ], + [ + -73.473077, + 45.58072 + ], + [ + -73.472886, + 45.580886 + ], + [ + -73.472612, + 45.581152 + ], + [ + -73.472574, + 45.581196 + ], + [ + -73.472319, + 45.581482 + ], + [ + -73.472175, + 45.581673 + ], + [ + -73.471994, + 45.581936 + ], + [ + -73.47191, + 45.582061 + ], + [ + -73.471753, + 45.582326 + ], + [ + -73.471543, + 45.582681 + ], + [ + -73.471245, + 45.583188 + ], + [ + -73.471013, + 45.58358 + ], + [ + -73.470714, + 45.584071 + ], + [ + -73.470067, + 45.585151 + ], + [ + -73.469784, + 45.585547 + ], + [ + -73.469628, + 45.585749 + ], + [ + -73.469287, + 45.586145 + ], + [ + -73.469101, + 45.586343 + ], + [ + -73.468904, + 45.586536 + ], + [ + -73.468695, + 45.586725 + ], + [ + -73.466029, + 45.588965 + ], + [ + -73.465851, + 45.589127 + ], + [ + -73.465429, + 45.589482 + ], + [ + -73.463709, + 45.590917 + ], + [ + -73.461267, + 45.592977 + ], + [ + -73.460579, + 45.593525 + ], + [ + -73.460036, + 45.593907 + ], + [ + -73.459551, + 45.594222 + ], + [ + -73.459088, + 45.594506 + ], + [ + -73.458501, + 45.594856 + ], + [ + -73.45527, + 45.596781 + ], + [ + -73.453729, + 45.597707 + ], + [ + -73.452183, + 45.598512 + ], + [ + -73.45172, + 45.598745 + ], + [ + -73.451404, + 45.598885 + ], + [ + -73.451234, + 45.598934 + ], + [ + -73.4511, + 45.598966 + ], + [ + -73.451048, + 45.598979 + ], + [ + -73.450747, + 45.59901 + ], + [ + -73.450606, + 45.59901 + ], + [ + -73.450404, + 45.598988 + ], + [ + -73.449896, + 45.598898 + ], + [ + -73.449552, + 45.598852 + ], + [ + -73.44936, + 45.598848 + ], + [ + -73.449191, + 45.598861 + ], + [ + -73.449046, + 45.598888 + ], + [ + -73.448769, + 45.598987 + ], + [ + -73.448631, + 45.599054 + ], + [ + -73.448365, + 45.599212 + ], + [ + -73.447787, + 45.599567 + ], + [ + -73.447737, + 45.599598 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.448109, + 45.599969 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449825, + 45.601331 + ], + [ + -73.449842, + 45.601358 + ], + [ + -73.449882, + 45.601394 + ], + [ + -73.449937, + 45.601432 + ], + [ + -73.449974, + 45.601468 + ], + [ + -73.450006, + 45.601497 + ], + [ + -73.450033, + 45.601528 + ], + [ + -73.450045, + 45.601571 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.45031, + 45.600786 + ] + ] + }, + "id": 174, + "properties": { + "id": "ce5950df-56d3-438b-8198-9a130d42743d", + "data": { + "gtfs": { + "shape_id": "82_1_R" + }, + "segments": [ + { + "distanceMeters": 10801, + "travelTimeSeconds": 577 + }, + { + "distanceMeters": 414, + "travelTimeSeconds": 23 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11215, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10218.50144861644, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 18.69, + "travelTimeWithoutDwellTimesSeconds": 600, + "operatingTimeWithLayoverTimeSeconds": 780, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 600, + "operatingSpeedWithLayoverMetersPerSecond": 14.38, + "averageSpeedWithoutDwellTimesMetersPerSecond": 18.69 + }, + "mode": "bus", + "name": "boul. Marie-Victorin", + "color": "#A32638", + "nodes": [ + "4c755ece-2475-4915-941e-37859f0f391f", + "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", + "bbe875bc-cb85-4a61-923d-53ee4746a213" + ], + "stops": [], + "line_id": "f98fc62f-d869-4694-92ce-358619754322", + "segments": [ + 0, + 134 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 174, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.45031, + 45.600786 + ], + [ + -73.45028, + 45.600747 + ], + [ + -73.45017, + 45.600666 + ], + [ + -73.450081, + 45.60062 + ], + [ + -73.449968, + 45.600603 + ], + [ + -73.449925, + 45.600607 + ], + [ + -73.449868, + 45.600621 + ], + [ + -73.449802, + 45.600661 + ], + [ + -73.449715, + 45.600713 + ], + [ + -73.449674, + 45.600743 + ], + [ + -73.449661, + 45.600772 + ], + [ + -73.449666, + 45.600812 + ], + [ + -73.449924, + 45.601045 + ], + [ + -73.449978, + 45.601072 + ], + [ + -73.450055, + 45.601083 + ], + [ + -73.45017, + 45.60109 + ], + [ + -73.450263, + 45.601099 + ], + [ + -73.450328, + 45.601118 + ], + [ + -73.450379, + 45.601155 + ], + [ + -73.450393, + 45.601201 + ], + [ + -73.450376, + 45.60125 + ], + [ + -73.450362, + 45.601293 + ], + [ + -73.450349, + 45.601366 + ], + [ + -73.450328, + 45.601396 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450295, + 45.60142 + ], + [ + -73.450274, + 45.60143 + ], + [ + -73.450229, + 45.60144 + ], + [ + -73.450195, + 45.601446 + ], + [ + -73.450161, + 45.601455 + ], + [ + -73.450131, + 45.601466 + ], + [ + -73.450095, + 45.601482 + ], + [ + -73.450073, + 45.601501 + ], + [ + -73.450052, + 45.601522 + ], + [ + -73.450048, + 45.601541 + ], + [ + -73.450048, + 45.601565 + ], + [ + -73.450051, + 45.601586 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450452, + 45.601873 + ], + [ + -73.45054, + 45.60193 + ], + [ + -73.450604, + 45.601966 + ], + [ + -73.450658, + 45.602007 + ], + [ + -73.450717, + 45.602019 + ], + [ + -73.450804, + 45.602087 + ], + [ + -73.450997, + 45.602236 + ], + [ + -73.451134, + 45.602344 + ], + [ + -73.45153, + 45.602655 + ], + [ + -73.45156, + 45.602679 + ], + [ + -73.452634, + 45.603524 + ], + [ + -73.452751, + 45.603609 + ], + [ + -73.453102, + 45.603881 + ], + [ + -73.453124, + 45.603897 + ], + [ + -73.453269, + 45.60401 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453904, + 45.604474 + ], + [ + -73.454133, + 45.604694 + ], + [ + -73.454539, + 45.605032 + ], + [ + -73.454923, + 45.605319 + ], + [ + -73.455171, + 45.605504 + ], + [ + -73.455782, + 45.605973 + ], + [ + -73.456001, + 45.606135 + ], + [ + -73.456106, + 45.606225 + ], + [ + -73.45638, + 45.606432 + ], + [ + -73.456455, + 45.606468 + ], + [ + -73.456464, + 45.606472 + ], + [ + -73.456606, + 45.606499 + ], + [ + -73.456615, + 45.606661 + ], + [ + -73.456615, + 45.606796 + ], + [ + -73.456614, + 45.606898 + ], + [ + -73.45661, + 45.607368 + ], + [ + -73.456599, + 45.607836 + ], + [ + -73.456595, + 45.608187 + ], + [ + -73.456594, + 45.608335 + ], + [ + -73.456582, + 45.60905 + ], + [ + -73.456558, + 45.609802 + ], + [ + -73.456542, + 45.61002 + ], + [ + -73.456534, + 45.610121 + ], + [ + -73.456537, + 45.610463 + ], + [ + -73.456508, + 45.610998 + ], + [ + -73.4565, + 45.611138 + ], + [ + -73.456491, + 45.611268 + ], + [ + -73.456473, + 45.611516 + ], + [ + -73.456454, + 45.611727 + ], + [ + -73.456449, + 45.611777 + ], + [ + -73.456429, + 45.612204 + ], + [ + -73.456403, + 45.612587 + ], + [ + -73.456367, + 45.613122 + ], + [ + -73.456346, + 45.613356 + ], + [ + -73.456319, + 45.613657 + ], + [ + -73.456315, + 45.613702 + ], + [ + -73.456295, + 45.613828 + ], + [ + -73.456125, + 45.615281 + ], + [ + -73.45606, + 45.615718 + ], + [ + -73.456015, + 45.616024 + ], + [ + -73.455984, + 45.616307 + ], + [ + -73.45596, + 45.616501 + ], + [ + -73.455915, + 45.616856 + ], + [ + -73.455898, + 45.616998 + ], + [ + -73.455888, + 45.617081 + ], + [ + -73.455879, + 45.617157 + ], + [ + -73.45581, + 45.617621 + ], + [ + -73.45576, + 45.617982 + ], + [ + -73.455729, + 45.618206 + ], + [ + -73.455676, + 45.618606 + ], + [ + -73.45562, + 45.619025 + ], + [ + -73.455571, + 45.619434 + ], + [ + -73.455486, + 45.620131 + ], + [ + -73.455479, + 45.620194 + ], + [ + -73.455459, + 45.620347 + ], + [ + -73.455364, + 45.621566 + ], + [ + -73.455351, + 45.621791 + ], + [ + -73.455345, + 45.621886 + ], + [ + -73.455228, + 45.623663 + ], + [ + -73.455172, + 45.624125 + ], + [ + -73.455153, + 45.624288 + ], + [ + -73.454435, + 45.626407 + ], + [ + -73.454312, + 45.626743 + ], + [ + -73.454243, + 45.626929 + ], + [ + -73.454024, + 45.62755 + ], + [ + -73.453874, + 45.627991 + ], + [ + -73.453834, + 45.628108 + ], + [ + -73.453601, + 45.628791 + ], + [ + -73.453393, + 45.629394 + ], + [ + -73.453358, + 45.629493 + ], + [ + -73.453315, + 45.629624 + ], + [ + -73.453257, + 45.629785 + ], + [ + -73.453003, + 45.630526 + ], + [ + -73.452942, + 45.630703 + ], + [ + -73.452778, + 45.631153 + ], + [ + -73.452686, + 45.631346 + ], + [ + -73.452502, + 45.631778 + ], + [ + -73.452319, + 45.632093 + ], + [ + -73.452094, + 45.632426 + ], + [ + -73.451781, + 45.632835 + ], + [ + -73.451773, + 45.632844 + ], + [ + -73.451693, + 45.632925 + ], + [ + -73.451614, + 45.633011 + ], + [ + -73.451195, + 45.633474 + ], + [ + -73.450679, + 45.634027 + ], + [ + -73.450136, + 45.634603 + ], + [ + -73.449528, + 45.635242 + ], + [ + -73.449434, + 45.63534 + ], + [ + -73.449285, + 45.635498 + ], + [ + -73.449067, + 45.635736 + ], + [ + -73.448723, + 45.636136 + ], + [ + -73.448535, + 45.636361 + ], + [ + -73.448252, + 45.636716 + ], + [ + -73.448132, + 45.636874 + ], + [ + -73.447863, + 45.637226 + ], + [ + -73.447778, + 45.637337 + ], + [ + -73.447634, + 45.637301 + ], + [ + -73.447384, + 45.637215 + ], + [ + -73.447064, + 45.637088 + ], + [ + -73.446874, + 45.637013 + ], + [ + -73.446777, + 45.636959 + ], + [ + -73.446639, + 45.63686 + ], + [ + -73.446407, + 45.636689 + ], + [ + -73.44625, + 45.636558 + ], + [ + -73.446134, + 45.636441 + ], + [ + -73.445951, + 45.636247 + ], + [ + -73.445769, + 45.636018 + ], + [ + -73.445712, + 45.635937 + ], + [ + -73.445634, + 45.635856 + ], + [ + -73.445562, + 45.635784 + ], + [ + -73.445466, + 45.635698 + ], + [ + -73.445268, + 45.635536 + ], + [ + -73.445231, + 45.635509 + ], + [ + -73.445104, + 45.635415 + ], + [ + -73.444715, + 45.635109 + ], + [ + -73.44467, + 45.635073 + ], + [ + -73.444422, + 45.63487 + ], + [ + -73.444148, + 45.634658 + ], + [ + -73.444049, + 45.634573 + ], + [ + -73.443845, + 45.634429 + ], + [ + -73.443396, + 45.634064 + ], + [ + -73.443242, + 45.633938 + ], + [ + -73.442909, + 45.633686 + ], + [ + -73.442563, + 45.633434 + ], + [ + -73.442416, + 45.633371 + ], + [ + -73.44208, + 45.633254 + ], + [ + -73.441599, + 45.633114 + ], + [ + -73.440828, + 45.632903 + ], + [ + -73.440824, + 45.632902 + ], + [ + -73.440392, + 45.632771 + ], + [ + -73.440856, + 45.631968 + ], + [ + -73.441271, + 45.631251 + ], + [ + -73.441456, + 45.630932 + ], + [ + -73.441684, + 45.63054 + ], + [ + -73.441884, + 45.630196 + ], + [ + -73.442088, + 45.629846 + ], + [ + -73.443114, + 45.62808 + ], + [ + -73.443261, + 45.627822 + ], + [ + -73.443605, + 45.627221 + ], + [ + -73.444022, + 45.626488 + ], + [ + -73.444062, + 45.626419 + ], + [ + -73.444573, + 45.625552 + ], + [ + -73.445365, + 45.62417 + ], + [ + -73.445387, + 45.624131 + ], + [ + -73.445586, + 45.623794 + ], + [ + -73.445824, + 45.623425 + ], + [ + -73.446146, + 45.622876 + ], + [ + -73.446834, + 45.62168 + ], + [ + -73.446846, + 45.62166 + ], + [ + -73.447011, + 45.621372 + ], + [ + -73.447396, + 45.620704 + ], + [ + -73.448364, + 45.619075 + ], + [ + -73.448491, + 45.618837 + ], + [ + -73.448637, + 45.61859 + ], + [ + -73.448734, + 45.618422 + ], + [ + -73.44919, + 45.617636 + ], + [ + -73.449432, + 45.617223 + ], + [ + -73.449512, + 45.617087 + ], + [ + -73.449827, + 45.616539 + ], + [ + -73.450142, + 45.615999 + ], + [ + -73.450551, + 45.61523 + ], + [ + -73.450804, + 45.614732 + ], + [ + -73.450957, + 45.614433 + ], + [ + -73.451219, + 45.613822 + ], + [ + -73.451496, + 45.613129 + ], + [ + -73.451588, + 45.612886 + ], + [ + -73.451747, + 45.612435 + ], + [ + -73.451764, + 45.612387 + ], + [ + -73.451963, + 45.611811 + ], + [ + -73.452038, + 45.611557 + ], + [ + -73.452151, + 45.611172 + ], + [ + -73.452319, + 45.610623 + ], + [ + -73.45243, + 45.610184 + ], + [ + -73.452502, + 45.609899 + ], + [ + -73.452742, + 45.608653 + ], + [ + -73.452838, + 45.608171 + ], + [ + -73.452853, + 45.608101 + ], + [ + -73.452894, + 45.607902 + ], + [ + -73.452956, + 45.607582 + ], + [ + -73.45303, + 45.607204 + ], + [ + -73.45313, + 45.606689 + ], + [ + -73.45351, + 45.604734 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453437, + 45.604141 + ], + [ + -73.453269, + 45.60401 + ], + [ + -73.453124, + 45.603897 + ], + [ + -73.45283, + 45.60367 + ], + [ + -73.452751, + 45.603609 + ], + [ + -73.452634, + 45.603524 + ], + [ + -73.45156, + 45.602679 + ], + [ + -73.45153, + 45.602655 + ], + [ + -73.451134, + 45.602344 + ], + [ + -73.450997, + 45.602236 + ], + [ + -73.450804, + 45.602087 + ], + [ + -73.450717, + 45.602019 + ], + [ + -73.450711, + 45.601962 + ], + [ + -73.450652, + 45.601878 + ], + [ + -73.450633, + 45.601851 + ], + [ + -73.45062, + 45.601823 + ], + [ + -73.450613, + 45.6018 + ], + [ + -73.450612, + 45.601775 + ], + [ + -73.450612, + 45.601745 + ], + [ + -73.450617, + 45.601719 + ], + [ + -73.450626, + 45.601694 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450392, + 45.600923 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.450328, + 45.60081 + ], + [ + -73.45028, + 45.600747 + ], + [ + -73.45017, + 45.600666 + ], + [ + -73.450081, + 45.60062 + ], + [ + -73.449968, + 45.600603 + ], + [ + -73.449925, + 45.600607 + ], + [ + -73.449868, + 45.600621 + ], + [ + -73.449802, + 45.600661 + ], + [ + -73.449715, + 45.600713 + ], + [ + -73.449674, + 45.600743 + ], + [ + -73.449661, + 45.600772 + ], + [ + -73.449666, + 45.600812 + ], + [ + -73.449924, + 45.601045 + ], + [ + -73.449978, + 45.601072 + ], + [ + -73.450055, + 45.601083 + ], + [ + -73.45017, + 45.60109 + ], + [ + -73.450263, + 45.601099 + ], + [ + -73.450328, + 45.601118 + ], + [ + -73.450379, + 45.601155 + ], + [ + -73.450393, + 45.601201 + ], + [ + -73.450376, + 45.60125 + ], + [ + -73.450362, + 45.601293 + ], + [ + -73.450349, + 45.601366 + ], + [ + -73.450328, + 45.601396 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450295, + 45.60142 + ], + [ + -73.450274, + 45.60143 + ], + [ + -73.450229, + 45.60144 + ], + [ + -73.450195, + 45.601446 + ], + [ + -73.450161, + 45.601455 + ], + [ + -73.450131, + 45.601466 + ], + [ + -73.450095, + 45.601482 + ], + [ + -73.450073, + 45.601501 + ], + [ + -73.450052, + 45.601522 + ], + [ + -73.450048, + 45.601541 + ], + [ + -73.450048, + 45.601565 + ], + [ + -73.450051, + 45.601586 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450683, + 45.601629 + ], + [ + -73.45076, + 45.601581 + ], + [ + -73.450865, + 45.60153 + ], + [ + -73.451136, + 45.601427 + ], + [ + -73.451322, + 45.601341 + ], + [ + -73.45143, + 45.601269 + ], + [ + -73.451545, + 45.601187 + ], + [ + -73.451753, + 45.601 + ], + [ + -73.451831, + 45.600914 + ], + [ + -73.451899, + 45.600828 + ], + [ + -73.451961, + 45.600734 + ], + [ + -73.452054, + 45.600554 + ], + [ + -73.452082, + 45.600442 + ], + [ + -73.452078, + 45.600293 + ], + [ + -73.452054, + 45.600172 + ], + [ + -73.45194, + 45.599798 + ], + [ + -73.451915, + 45.599672 + ], + [ + -73.451904, + 45.599524 + ], + [ + -73.451926, + 45.59938 + ], + [ + -73.451964, + 45.599267 + ], + [ + -73.452063, + 45.599123 + ], + [ + -73.452082, + 45.599103 + ], + [ + -73.452183, + 45.598993 + ], + [ + -73.452318, + 45.598881 + ], + [ + -73.452477, + 45.598768 + ], + [ + -73.452963, + 45.598458 + ], + [ + -73.45458, + 45.597401 + ], + [ + -73.459437, + 45.594497 + ], + [ + -73.459888, + 45.594213 + ], + [ + -73.46035, + 45.593903 + ], + [ + -73.460702, + 45.593647 + ], + [ + -73.461218, + 45.593251 + ], + [ + -73.46178, + 45.592783 + ], + [ + -73.465585, + 45.589586 + ], + [ + -73.468548, + 45.587089 + ], + [ + -73.468925, + 45.586766 + ], + [ + -73.469282, + 45.586424 + ], + [ + -73.469476, + 45.586217 + ], + [ + -73.46977, + 45.585875 + ], + [ + -73.470065, + 45.585497 + ], + [ + -73.470208, + 45.585295 + ], + [ + -73.470515, + 45.584795 + ], + [ + -73.470777, + 45.584346 + ], + [ + -73.470818, + 45.584266 + ], + [ + -73.471151, + 45.583659 + ], + [ + -73.471441, + 45.583163 + ], + [ + -73.471782, + 45.582588 + ], + [ + -73.471999, + 45.582223 + ], + [ + -73.472179, + 45.58194 + ], + [ + -73.472331, + 45.581716 + ], + [ + -73.472649, + 45.581329 + ], + [ + -73.47273, + 45.58124 + ], + [ + -73.472825, + 45.58114 + ], + [ + -73.473026, + 45.580958 + ], + [ + -73.473162, + 45.580835 + ], + [ + -73.473456, + 45.580601 + ], + [ + -73.473548, + 45.580529 + ], + [ + -73.474056, + 45.580187 + ], + [ + -73.474914, + 45.579634 + ], + [ + -73.475349, + 45.579354 + ], + [ + -73.475514, + 45.57924 + ], + [ + -73.475748, + 45.579059 + ], + [ + -73.476005, + 45.578855 + ], + [ + -73.476092, + 45.578785 + ], + [ + -73.476311, + 45.578613 + ], + [ + -73.476531, + 45.578426 + ], + [ + -73.477316, + 45.577756 + ], + [ + -73.478746, + 45.576546 + ], + [ + -73.485291, + 45.570941 + ], + [ + -73.485924, + 45.570374 + ], + [ + -73.486543, + 45.569794 + ], + [ + -73.487144, + 45.5692 + ], + [ + -73.487725, + 45.568597 + ], + [ + -73.488283, + 45.567985 + ], + [ + -73.489005, + 45.567148 + ], + [ + -73.489524, + 45.56651 + ], + [ + -73.490025, + 45.565857 + ], + [ + -73.490348, + 45.565416 + ], + [ + -73.490811, + 45.564746 + ], + [ + -73.492757, + 45.561799 + ], + [ + -73.493231, + 45.561129 + ], + [ + -73.493558, + 45.560688 + ], + [ + -73.493892, + 45.560256 + ], + [ + -73.494237, + 45.559829 + ], + [ + -73.499922, + 45.552981 + ], + [ + -73.501151, + 45.551492 + ], + [ + -73.501844, + 45.550646 + ], + [ + -73.502872, + 45.549445 + ], + [ + -73.503558, + 45.548684 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521985, + 45.524134 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 175, + "properties": { + "id": "c856b728-4681-462d-8b3d-562478ee3882", + "data": { + "gtfs": { + "shape_id": "82_1_A" + }, + "segments": [ + { + "distanceMeters": 558, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 389, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 520, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 390, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 12144, + "travelTimeSeconds": 840 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 204, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 21278, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10218.50144861644, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 10.43, + "travelTimeWithoutDwellTimesSeconds": 2040, + "operatingTimeWithLayoverTimeSeconds": 2244, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2040, + "operatingSpeedWithLayoverMetersPerSecond": 9.48, + "averageSpeedWithoutDwellTimesMetersPerSecond": 10.43 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "bbe875bc-cb85-4a61-923d-53ee4746a213", + "ca205394-9833-4e14-b4fa-653c28b9a37d", + "dd170d68-d567-4a2d-8a93-47dec3a52cd1", + "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", + "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", + "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", + "204b558a-c106-4589-888d-4bd6528787b5", + "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", + "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", + "949c3098-32ca-4f3b-81ba-cbe506f68923", + "518135ae-62e9-44c2-bac7-e8c50c56eec9", + "148d4b0f-418e-4993-b335-f1dcd1c4df41", + "568437d9-2de5-4e5e-b111-1a7811ac5c99", + "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", + "6928ef4b-2825-4234-84d9-1c82edb211b0", + "777d67e8-62c3-46b4-a71f-e76a88b45f45", + "d04543e8-f38e-4937-b92b-1bc9ff97fd25", + "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", + "389622d0-ee1f-428b-9366-e69f134ff23e", + "02fef102-0f62-42d0-b4ed-790bc76ef1ad", + "f659a652-a61c-4199-abbc-a42f3ceef5cb", + "90b41412-0c12-4505-b7c9-b915901b1dd2", + "78a9a588-c1f0-470f-bbcc-52b6da866dad", + "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", + "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", + "253353ba-aba2-4e63-bf86-819bb7c9cecd", + "706f0077-9543-4662-8684-a321216a8a90", + "589f0f16-2c87-45fc-856c-d82dc5449f14", + "0778ac37-7369-4d81-abbc-9aa1d13b1c38", + "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", + "039c87a4-2647-4079-9a79-c7d3278ef6b2", + "e2d71c2d-a170-4ce7-a381-519755a00e36", + "a2b2c8d3-da2c-46a1-8009-597d5c6a0c19", + "ca205394-9833-4e14-b4fa-653c28b9a37d", + "bbe875bc-cb85-4a61-923d-53ee4746a213", + "4c755ece-2475-4915-941e-37859f0f391f" + ], + "stops": [], + "line_id": "f98fc62f-d869-4694-92ce-358619754322", + "segments": [ + 0, + 60, + 67, + 73, + 81, + 85, + 92, + 98, + 107, + 111, + 116, + 120, + 123, + 126, + 129, + 136, + 143, + 150, + 158, + 176, + 184, + 191, + 198, + 201, + 204, + 206, + 212, + 218, + 220, + 225, + 230, + 236, + 240, + 250, + 286 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 175, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.52252, + 45.524045 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523674, + 45.523537 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.503549, + 45.548419 + ], + [ + -73.502986, + 45.54904 + ], + [ + -73.502097, + 45.550079 + ], + [ + -73.501025, + 45.551361 + ], + [ + -73.500319, + 45.55223 + ], + [ + -73.497146, + 45.556054 + ], + [ + -73.496787, + 45.55649 + ], + [ + -73.495905, + 45.557543 + ], + [ + -73.495369, + 45.558173 + ], + [ + -73.494314, + 45.559446 + ], + [ + -73.493461, + 45.560499 + ], + [ + -73.492975, + 45.561151 + ], + [ + -73.492659, + 45.561597 + ], + [ + -73.492068, + 45.562474 + ], + [ + -73.49148, + 45.563383 + ], + [ + -73.490434, + 45.564962 + ], + [ + -73.489967, + 45.565619 + ], + [ + -73.489477, + 45.566267 + ], + [ + -73.488962, + 45.566906 + ], + [ + -73.48825, + 45.567747 + ], + [ + -73.487877, + 45.568161 + ], + [ + -73.487301, + 45.568777 + ], + [ + -73.486712, + 45.56938 + ], + [ + -73.486308, + 45.569771 + ], + [ + -73.485474, + 45.570545 + ], + [ + -73.48461, + 45.571301 + ], + [ + -73.483654, + 45.572115 + ], + [ + -73.478606, + 45.576433 + ], + [ + -73.478028, + 45.576933 + ], + [ + -73.477248, + 45.577607 + ], + [ + -73.476645, + 45.578128 + ], + [ + -73.475915, + 45.578754 + ], + [ + -73.475553, + 45.579033 + ], + [ + -73.474887, + 45.579478 + ], + [ + -73.474437, + 45.579762 + ], + [ + -73.474095, + 45.580005 + ], + [ + -73.473853, + 45.580158 + ], + [ + -73.473398, + 45.580472 + ], + [ + -73.473077, + 45.58072 + ], + [ + -73.472886, + 45.580886 + ], + [ + -73.472612, + 45.581152 + ], + [ + -73.472574, + 45.581196 + ], + [ + -73.472319, + 45.581482 + ], + [ + -73.472175, + 45.581673 + ], + [ + -73.471994, + 45.581936 + ], + [ + -73.47191, + 45.582061 + ], + [ + -73.471753, + 45.582326 + ], + [ + -73.471543, + 45.582681 + ], + [ + -73.471245, + 45.583188 + ], + [ + -73.471013, + 45.58358 + ], + [ + -73.470714, + 45.584071 + ], + [ + -73.470067, + 45.585151 + ], + [ + -73.469784, + 45.585547 + ], + [ + -73.469628, + 45.585749 + ], + [ + -73.469287, + 45.586145 + ], + [ + -73.469101, + 45.586343 + ], + [ + -73.468904, + 45.586536 + ], + [ + -73.468695, + 45.586725 + ], + [ + -73.466029, + 45.588965 + ], + [ + -73.465851, + 45.589127 + ], + [ + -73.465429, + 45.589482 + ], + [ + -73.463709, + 45.590917 + ], + [ + -73.461267, + 45.592977 + ], + [ + -73.460579, + 45.593525 + ], + [ + -73.460036, + 45.593907 + ], + [ + -73.459551, + 45.594222 + ], + [ + -73.459088, + 45.594506 + ], + [ + -73.458501, + 45.594856 + ], + [ + -73.45527, + 45.596781 + ], + [ + -73.453729, + 45.597707 + ], + [ + -73.452183, + 45.598512 + ], + [ + -73.45172, + 45.598745 + ], + [ + -73.451404, + 45.598885 + ], + [ + -73.451234, + 45.598934 + ], + [ + -73.4511, + 45.598966 + ], + [ + -73.451048, + 45.598979 + ], + [ + -73.450747, + 45.59901 + ], + [ + -73.450606, + 45.59901 + ], + [ + -73.450404, + 45.598988 + ], + [ + -73.449896, + 45.598898 + ], + [ + -73.449552, + 45.598852 + ], + [ + -73.44936, + 45.598848 + ], + [ + -73.449191, + 45.598861 + ], + [ + -73.449046, + 45.598888 + ], + [ + -73.448769, + 45.598987 + ], + [ + -73.448631, + 45.599054 + ], + [ + -73.448365, + 45.599212 + ], + [ + -73.447787, + 45.599567 + ], + [ + -73.447737, + 45.599598 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.448129, + 45.599985 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449825, + 45.601331 + ], + [ + -73.449842, + 45.601358 + ], + [ + -73.449882, + 45.601394 + ], + [ + -73.449937, + 45.601432 + ], + [ + -73.449974, + 45.601468 + ], + [ + -73.450006, + 45.601497 + ], + [ + -73.450033, + 45.601528 + ], + [ + -73.450045, + 45.601571 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.450295, + 45.600766 + ], + [ + -73.45028, + 45.600747 + ], + [ + -73.45017, + 45.600666 + ], + [ + -73.450133, + 45.600647 + ], + [ + -73.450081, + 45.60062 + ], + [ + -73.449968, + 45.600603 + ], + [ + -73.449925, + 45.600607 + ], + [ + -73.449868, + 45.600621 + ], + [ + -73.449802, + 45.600661 + ], + [ + -73.449715, + 45.600713 + ], + [ + -73.449674, + 45.600743 + ], + [ + -73.449661, + 45.600772 + ], + [ + -73.449666, + 45.600812 + ], + [ + -73.449924, + 45.601045 + ], + [ + -73.449978, + 45.601072 + ], + [ + -73.450055, + 45.601083 + ], + [ + -73.45017, + 45.60109 + ], + [ + -73.450263, + 45.601099 + ], + [ + -73.450328, + 45.601118 + ], + [ + -73.450379, + 45.601155 + ], + [ + -73.450393, + 45.601201 + ], + [ + -73.450376, + 45.60125 + ], + [ + -73.450362, + 45.601293 + ], + [ + -73.450349, + 45.601366 + ], + [ + -73.450328, + 45.601396 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450295, + 45.60142 + ], + [ + -73.450274, + 45.60143 + ], + [ + -73.450229, + 45.60144 + ], + [ + -73.450195, + 45.601446 + ], + [ + -73.450161, + 45.601455 + ], + [ + -73.450131, + 45.601466 + ], + [ + -73.450095, + 45.601482 + ], + [ + -73.450073, + 45.601501 + ], + [ + -73.450052, + 45.601522 + ], + [ + -73.450048, + 45.601541 + ], + [ + -73.450048, + 45.601565 + ], + [ + -73.450051, + 45.601586 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450452, + 45.601873 + ], + [ + -73.45054, + 45.60193 + ], + [ + -73.450604, + 45.601966 + ], + [ + -73.450658, + 45.602007 + ], + [ + -73.450717, + 45.602019 + ], + [ + -73.450804, + 45.602087 + ], + [ + -73.450997, + 45.602236 + ], + [ + -73.451134, + 45.602344 + ], + [ + -73.45153, + 45.602655 + ], + [ + -73.45156, + 45.602679 + ], + [ + -73.452634, + 45.603524 + ], + [ + -73.452751, + 45.603609 + ], + [ + -73.453124, + 45.603897 + ], + [ + -73.453132, + 45.603904 + ], + [ + -73.453269, + 45.60401 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453904, + 45.604474 + ], + [ + -73.454133, + 45.604694 + ], + [ + -73.454539, + 45.605032 + ], + [ + -73.454954, + 45.605342 + ], + [ + -73.455171, + 45.605504 + ], + [ + -73.455782, + 45.605973 + ], + [ + -73.456001, + 45.606135 + ], + [ + -73.456106, + 45.606225 + ], + [ + -73.45638, + 45.606432 + ], + [ + -73.456464, + 45.606472 + ], + [ + -73.456485, + 45.606476 + ], + [ + -73.456606, + 45.606499 + ], + [ + -73.456615, + 45.606661 + ], + [ + -73.456615, + 45.606796 + ], + [ + -73.456614, + 45.60687 + ], + [ + -73.45661, + 45.607368 + ], + [ + -73.456599, + 45.607836 + ], + [ + -73.456595, + 45.608219 + ], + [ + -73.456594, + 45.608335 + ], + [ + -73.456582, + 45.60905 + ], + [ + -73.456558, + 45.609802 + ], + [ + -73.45654, + 45.610052 + ], + [ + -73.456534, + 45.610121 + ], + [ + -73.456537, + 45.610463 + ], + [ + -73.456508, + 45.610998 + ], + [ + -73.4565, + 45.611138 + ], + [ + -73.456491, + 45.611268 + ], + [ + -73.456473, + 45.611516 + ], + [ + -73.456451, + 45.611759 + ], + [ + -73.456449, + 45.611777 + ], + [ + -73.456429, + 45.612204 + ], + [ + -73.456403, + 45.612587 + ], + [ + -73.456367, + 45.613122 + ], + [ + -73.456346, + 45.613356 + ], + [ + -73.456317, + 45.61368 + ], + [ + -73.456315, + 45.613702 + ], + [ + -73.456295, + 45.613828 + ], + [ + -73.456125, + 45.615281 + ], + [ + -73.45606, + 45.615718 + ], + [ + -73.456015, + 45.616024 + ], + [ + -73.455984, + 45.616307 + ], + [ + -73.45596, + 45.616501 + ], + [ + -73.455915, + 45.616856 + ], + [ + -73.455895, + 45.617021 + ], + [ + -73.455888, + 45.617081 + ], + [ + -73.455879, + 45.617157 + ], + [ + -73.45581, + 45.617621 + ], + [ + -73.455755, + 45.618014 + ], + [ + -73.455729, + 45.618206 + ], + [ + -73.455676, + 45.618606 + ], + [ + -73.45562, + 45.619025 + ], + [ + -73.455571, + 45.619434 + ], + [ + -73.455483, + 45.620163 + ], + [ + -73.455479, + 45.620194 + ], + [ + -73.455459, + 45.620347 + ], + [ + -73.455364, + 45.621566 + ], + [ + -73.455349, + 45.621824 + ], + [ + -73.455345, + 45.621886 + ], + [ + -73.455228, + 45.623663 + ], + [ + -73.455169, + 45.624157 + ], + [ + -73.455153, + 45.624288 + ], + [ + -73.454435, + 45.626407 + ], + [ + -73.4543, + 45.626775 + ], + [ + -73.454243, + 45.626929 + ], + [ + -73.454024, + 45.62755 + ], + [ + -73.453863, + 45.628023 + ], + [ + -73.453834, + 45.628108 + ], + [ + -73.453601, + 45.628791 + ], + [ + -73.453393, + 45.629394 + ], + [ + -73.453358, + 45.629493 + ], + [ + -73.453315, + 45.629624 + ], + [ + -73.453257, + 45.629785 + ], + [ + -73.452992, + 45.630558 + ], + [ + -73.452942, + 45.630703 + ], + [ + -73.452778, + 45.631153 + ], + [ + -73.452686, + 45.631346 + ], + [ + -73.452502, + 45.631778 + ], + [ + -73.452319, + 45.632093 + ], + [ + -73.452094, + 45.632426 + ], + [ + -73.451773, + 45.632844 + ], + [ + -73.451755, + 45.632863 + ], + [ + -73.451693, + 45.632925 + ], + [ + -73.451614, + 45.633011 + ], + [ + -73.451195, + 45.633474 + ], + [ + -73.450679, + 45.634027 + ], + [ + -73.450136, + 45.634603 + ], + [ + -73.449502, + 45.635269 + ], + [ + -73.449434, + 45.63534 + ], + [ + -73.449285, + 45.635498 + ], + [ + -73.449067, + 45.635736 + ], + [ + -73.448723, + 45.636136 + ], + [ + -73.448535, + 45.636361 + ], + [ + -73.448252, + 45.636716 + ], + [ + -73.448132, + 45.636874 + ], + [ + -73.447841, + 45.637255 + ], + [ + -73.447778, + 45.637337 + ], + [ + -73.447634, + 45.637301 + ], + [ + -73.447384, + 45.637215 + ], + [ + -73.447064, + 45.637088 + ], + [ + -73.446874, + 45.637013 + ], + [ + -73.446777, + 45.636959 + ], + [ + -73.446639, + 45.63686 + ], + [ + -73.446407, + 45.636689 + ], + [ + -73.44625, + 45.636558 + ], + [ + -73.446134, + 45.636441 + ], + [ + -73.445951, + 45.636247 + ], + [ + -73.445769, + 45.636018 + ], + [ + -73.445712, + 45.635937 + ], + [ + -73.445634, + 45.635856 + ], + [ + -73.445562, + 45.635784 + ], + [ + -73.445466, + 45.635698 + ], + [ + -73.445268, + 45.635536 + ], + [ + -73.445198, + 45.635484 + ], + [ + -73.445104, + 45.635415 + ], + [ + -73.444715, + 45.635109 + ], + [ + -73.44467, + 45.635073 + ], + [ + -73.444422, + 45.63487 + ], + [ + -73.444148, + 45.634658 + ], + [ + -73.444049, + 45.634573 + ], + [ + -73.443845, + 45.634429 + ], + [ + -73.443365, + 45.634038 + ], + [ + -73.443242, + 45.633938 + ], + [ + -73.442909, + 45.633686 + ], + [ + -73.442563, + 45.633434 + ], + [ + -73.442416, + 45.633371 + ], + [ + -73.44208, + 45.633254 + ], + [ + -73.441599, + 45.633114 + ], + [ + -73.440824, + 45.632902 + ], + [ + -73.440783, + 45.63289 + ], + [ + -73.440392, + 45.632771 + ], + [ + -73.440856, + 45.631968 + ], + [ + -73.441271, + 45.631251 + ], + [ + -73.441456, + 45.630932 + ], + [ + -73.441684, + 45.63054 + ], + [ + -73.441903, + 45.630165 + ], + [ + -73.442088, + 45.629846 + ], + [ + -73.443114, + 45.62808 + ], + [ + -73.44328, + 45.62779 + ], + [ + -73.443605, + 45.627221 + ], + [ + -73.444022, + 45.626488 + ], + [ + -73.444081, + 45.626388 + ], + [ + -73.444573, + 45.625552 + ], + [ + -73.445383, + 45.624138 + ], + [ + -73.445387, + 45.624131 + ], + [ + -73.445586, + 45.623794 + ], + [ + -73.445824, + 45.623425 + ], + [ + -73.446146, + 45.622876 + ], + [ + -73.446834, + 45.62168 + ], + [ + -73.446864, + 45.621628 + ], + [ + -73.447011, + 45.621372 + ], + [ + -73.447396, + 45.620704 + ], + [ + -73.448364, + 45.619075 + ], + [ + -73.448491, + 45.618837 + ], + [ + -73.448637, + 45.61859 + ], + [ + -73.448753, + 45.61839 + ], + [ + -73.44919, + 45.617636 + ], + [ + -73.449451, + 45.617191 + ], + [ + -73.449512, + 45.617087 + ], + [ + -73.449827, + 45.616539 + ], + [ + -73.450142, + 45.615999 + ], + [ + -73.450551, + 45.61523 + ], + [ + -73.450821, + 45.614699 + ], + [ + -73.450957, + 45.614433 + ], + [ + -73.451219, + 45.613822 + ], + [ + -73.451496, + 45.613129 + ], + [ + -73.451588, + 45.612886 + ], + [ + -73.451756, + 45.612409 + ], + [ + -73.451764, + 45.612387 + ], + [ + -73.451963, + 45.611811 + ], + [ + -73.452038, + 45.611557 + ], + [ + -73.452151, + 45.611172 + ], + [ + -73.452319, + 45.610623 + ], + [ + -73.452439, + 45.610149 + ], + [ + -73.452502, + 45.609899 + ], + [ + -73.452742, + 45.608653 + ], + [ + -73.452838, + 45.608171 + ], + [ + -73.45286, + 45.608066 + ], + [ + -73.452894, + 45.607902 + ], + [ + -73.452956, + 45.607582 + ], + [ + -73.45303, + 45.607204 + ], + [ + -73.45313, + 45.606689 + ], + [ + -73.45351, + 45.604734 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453269, + 45.60401 + ], + [ + -73.453124, + 45.603897 + ], + [ + -73.452804, + 45.60365 + ], + [ + -73.452751, + 45.603609 + ], + [ + -73.452634, + 45.603524 + ], + [ + -73.45156, + 45.602679 + ], + [ + -73.45153, + 45.602655 + ], + [ + -73.451134, + 45.602344 + ], + [ + -73.450997, + 45.602236 + ], + [ + -73.450804, + 45.602087 + ], + [ + -73.450717, + 45.602019 + ], + [ + -73.450711, + 45.601962 + ], + [ + -73.450652, + 45.601878 + ], + [ + -73.450633, + 45.601851 + ], + [ + -73.45062, + 45.601823 + ], + [ + -73.450613, + 45.6018 + ], + [ + -73.450612, + 45.601775 + ], + [ + -73.450612, + 45.601745 + ], + [ + -73.450617, + 45.601719 + ], + [ + -73.450626, + 45.601694 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.45031, + 45.600786 + ] + ] + }, + "id": 176, + "properties": { + "id": "08ef95ac-0f2b-4799-87b8-72a016e144be", + "data": { + "gtfs": { + "shape_id": "82_3_R" + }, + "segments": [ + { + "distanceMeters": 10803, + "travelTimeSeconds": 577 + }, + { + "distanceMeters": 414, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 559, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 389, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 519, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 390, + "travelTimeSeconds": 120 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 192, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 20352, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10218.50144861644, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 10.6, + "travelTimeWithoutDwellTimesSeconds": 1920, + "operatingTimeWithLayoverTimeSeconds": 2112, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1920, + "operatingSpeedWithLayoverMetersPerSecond": 9.64, + "averageSpeedWithoutDwellTimesMetersPerSecond": 10.6 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "4c755ece-2475-4915-941e-37859f0f391f", + "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", + "bbe875bc-cb85-4a61-923d-53ee4746a213", + "ca205394-9833-4e14-b4fa-653c28b9a37d", + "dd170d68-d567-4a2d-8a93-47dec3a52cd1", + "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", + "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", + "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", + "204b558a-c106-4589-888d-4bd6528787b5", + "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", + "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", + "949c3098-32ca-4f3b-81ba-cbe506f68923", + "518135ae-62e9-44c2-bac7-e8c50c56eec9", + "148d4b0f-418e-4993-b335-f1dcd1c4df41", + "568437d9-2de5-4e5e-b111-1a7811ac5c99", + "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", + "6928ef4b-2825-4234-84d9-1c82edb211b0", + "777d67e8-62c3-46b4-a71f-e76a88b45f45", + "d04543e8-f38e-4937-b92b-1bc9ff97fd25", + "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", + "389622d0-ee1f-428b-9366-e69f134ff23e", + "02fef102-0f62-42d0-b4ed-790bc76ef1ad", + "f659a652-a61c-4199-abbc-a42f3ceef5cb", + "90b41412-0c12-4505-b7c9-b915901b1dd2", + "78a9a588-c1f0-470f-bbcc-52b6da866dad", + "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", + "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", + "253353ba-aba2-4e63-bf86-819bb7c9cecd", + "706f0077-9543-4662-8684-a321216a8a90", + "589f0f16-2c87-45fc-856c-d82dc5449f14", + "0778ac37-7369-4d81-abbc-9aa1d13b1c38", + "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", + "039c87a4-2647-4079-9a79-c7d3278ef6b2", + "e2d71c2d-a170-4ce7-a381-519755a00e36", + "a2b2c8d3-da2c-46a1-8009-597d5c6a0c19", + "ca205394-9833-4e14-b4fa-653c28b9a37d", + "bbe875bc-cb85-4a61-923d-53ee4746a213" + ], + "stops": [], + "line_id": "f98fc62f-d869-4694-92ce-358619754322", + "segments": [ + 0, + 134, + 182, + 244, + 250, + 257, + 264, + 268, + 275, + 281, + 290, + 294, + 299, + 303, + 306, + 309, + 312, + 319, + 327, + 333, + 341, + 359, + 367, + 375, + 381, + 384, + 387, + 389, + 395, + 401, + 403, + 408, + 413, + 419, + 423, + 432 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 176, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.45031, + 45.600786 + ], + [ + -73.45028, + 45.600747 + ], + [ + -73.45017, + 45.600666 + ], + [ + -73.450081, + 45.60062 + ], + [ + -73.449968, + 45.600603 + ], + [ + -73.449925, + 45.600607 + ], + [ + -73.449868, + 45.600621 + ], + [ + -73.449802, + 45.600661 + ], + [ + -73.449715, + 45.600713 + ], + [ + -73.449674, + 45.600743 + ], + [ + -73.449661, + 45.600772 + ], + [ + -73.449666, + 45.600812 + ], + [ + -73.449924, + 45.601045 + ], + [ + -73.449978, + 45.601072 + ], + [ + -73.450055, + 45.601083 + ], + [ + -73.45017, + 45.60109 + ], + [ + -73.450263, + 45.601099 + ], + [ + -73.450328, + 45.601118 + ], + [ + -73.450379, + 45.601155 + ], + [ + -73.450393, + 45.601201 + ], + [ + -73.450376, + 45.60125 + ], + [ + -73.450362, + 45.601293 + ], + [ + -73.450349, + 45.601366 + ], + [ + -73.450328, + 45.601396 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450295, + 45.60142 + ], + [ + -73.450274, + 45.60143 + ], + [ + -73.450229, + 45.60144 + ], + [ + -73.450195, + 45.601446 + ], + [ + -73.450161, + 45.601455 + ], + [ + -73.450131, + 45.601466 + ], + [ + -73.450095, + 45.601482 + ], + [ + -73.450073, + 45.601501 + ], + [ + -73.450052, + 45.601522 + ], + [ + -73.450048, + 45.601541 + ], + [ + -73.450048, + 45.601565 + ], + [ + -73.450051, + 45.601586 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450683, + 45.601629 + ], + [ + -73.45076, + 45.601581 + ], + [ + -73.450865, + 45.60153 + ], + [ + -73.451136, + 45.601427 + ], + [ + -73.451322, + 45.601341 + ], + [ + -73.45143, + 45.601269 + ], + [ + -73.451545, + 45.601187 + ], + [ + -73.451753, + 45.601 + ], + [ + -73.451831, + 45.600914 + ], + [ + -73.451899, + 45.600828 + ], + [ + -73.451961, + 45.600734 + ], + [ + -73.452054, + 45.600554 + ], + [ + -73.452082, + 45.600442 + ], + [ + -73.452078, + 45.600293 + ], + [ + -73.452054, + 45.600172 + ], + [ + -73.45194, + 45.599798 + ], + [ + -73.451915, + 45.599672 + ], + [ + -73.451904, + 45.599524 + ], + [ + -73.451926, + 45.59938 + ], + [ + -73.451964, + 45.599267 + ], + [ + -73.452063, + 45.599123 + ], + [ + -73.452082, + 45.599103 + ], + [ + -73.452183, + 45.598993 + ], + [ + -73.452318, + 45.598881 + ], + [ + -73.452477, + 45.598768 + ], + [ + -73.452963, + 45.598458 + ], + [ + -73.45458, + 45.597401 + ], + [ + -73.459437, + 45.594497 + ], + [ + -73.459888, + 45.594213 + ], + [ + -73.46035, + 45.593903 + ], + [ + -73.460702, + 45.593647 + ], + [ + -73.461218, + 45.593251 + ], + [ + -73.46178, + 45.592783 + ], + [ + -73.465585, + 45.589586 + ], + [ + -73.468548, + 45.587089 + ], + [ + -73.468925, + 45.586766 + ], + [ + -73.469282, + 45.586424 + ], + [ + -73.469476, + 45.586217 + ], + [ + -73.46977, + 45.585875 + ], + [ + -73.470065, + 45.585497 + ], + [ + -73.470208, + 45.585295 + ], + [ + -73.470515, + 45.584795 + ], + [ + -73.470777, + 45.584346 + ], + [ + -73.470818, + 45.584266 + ], + [ + -73.471151, + 45.583659 + ], + [ + -73.471441, + 45.583163 + ], + [ + -73.471782, + 45.582588 + ], + [ + -73.471999, + 45.582223 + ], + [ + -73.472179, + 45.58194 + ], + [ + -73.472331, + 45.581716 + ], + [ + -73.472649, + 45.581329 + ], + [ + -73.47273, + 45.58124 + ], + [ + -73.472825, + 45.58114 + ], + [ + -73.473026, + 45.580958 + ], + [ + -73.473162, + 45.580835 + ], + [ + -73.473456, + 45.580601 + ], + [ + -73.473548, + 45.580529 + ], + [ + -73.474056, + 45.580187 + ], + [ + -73.474914, + 45.579634 + ], + [ + -73.475349, + 45.579354 + ], + [ + -73.475514, + 45.57924 + ], + [ + -73.475748, + 45.579059 + ], + [ + -73.476005, + 45.578855 + ], + [ + -73.476092, + 45.578785 + ], + [ + -73.476311, + 45.578613 + ], + [ + -73.476531, + 45.578426 + ], + [ + -73.477316, + 45.577756 + ], + [ + -73.478746, + 45.576546 + ], + [ + -73.485291, + 45.570941 + ], + [ + -73.485924, + 45.570374 + ], + [ + -73.486543, + 45.569794 + ], + [ + -73.487144, + 45.5692 + ], + [ + -73.487725, + 45.568597 + ], + [ + -73.488283, + 45.567985 + ], + [ + -73.489005, + 45.567148 + ], + [ + -73.489524, + 45.56651 + ], + [ + -73.490025, + 45.565857 + ], + [ + -73.490348, + 45.565416 + ], + [ + -73.490811, + 45.564746 + ], + [ + -73.492757, + 45.561799 + ], + [ + -73.493231, + 45.561129 + ], + [ + -73.493558, + 45.560688 + ], + [ + -73.493892, + 45.560256 + ], + [ + -73.494237, + 45.559829 + ], + [ + -73.499922, + 45.552981 + ], + [ + -73.501151, + 45.551492 + ], + [ + -73.501844, + 45.550646 + ], + [ + -73.502872, + 45.549445 + ], + [ + -73.503558, + 45.548684 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521985, + 45.524134 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 177, + "properties": { + "id": "fc1fb26f-df37-4fff-86e1-d216776389d3", + "data": { + "gtfs": { + "shape_id": "82_3_A" + }, + "segments": [ + { + "distanceMeters": 12141, + "travelTimeSeconds": 720 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12141, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10218.50144861644, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 16.86, + "travelTimeWithoutDwellTimesSeconds": 720, + "operatingTimeWithLayoverTimeSeconds": 900, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 720, + "operatingSpeedWithLayoverMetersPerSecond": 13.49, + "averageSpeedWithoutDwellTimesMetersPerSecond": 16.86 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "bbe875bc-cb85-4a61-923d-53ee4746a213", + "4c755ece-2475-4915-941e-37859f0f391f" + ], + "stops": [], + "line_id": "f98fc62f-d869-4694-92ce-358619754322", + "segments": [ + 0 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 177, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.466116, + 45.587789 + ], + [ + -73.464044, + 45.586192 + ], + [ + -73.463882, + 45.586067 + ], + [ + -73.463008, + 45.585396 + ], + [ + -73.462697, + 45.585155 + ], + [ + -73.462695, + 45.585153 + ], + [ + -73.462432, + 45.584973 + ], + [ + -73.461939, + 45.585508 + ], + [ + -73.461685, + 45.585787 + ], + [ + -73.461498, + 45.585994 + ], + [ + -73.461396, + 45.58611 + ], + [ + -73.461391, + 45.586115 + ], + [ + -73.461235, + 45.586304 + ], + [ + -73.460864, + 45.586017 + ], + [ + -73.460241, + 45.585535 + ], + [ + -73.460108, + 45.585431 + ], + [ + -73.459866, + 45.585242 + ], + [ + -73.459738, + 45.585143 + ], + [ + -73.459334, + 45.584828 + ], + [ + -73.458776, + 45.584396 + ], + [ + -73.458406, + 45.584108 + ], + [ + -73.45817, + 45.583923 + ], + [ + -73.4579, + 45.583713 + ], + [ + -73.457597, + 45.583478 + ], + [ + -73.456185, + 45.582393 + ], + [ + -73.455855, + 45.582137 + ], + [ + -73.45575, + 45.582055 + ], + [ + -73.454385, + 45.580997 + ], + [ + -73.454001, + 45.5807 + ], + [ + -73.453713, + 45.58048 + ], + [ + -73.453279, + 45.580142 + ], + [ + -73.453165, + 45.580047 + ], + [ + -73.452919, + 45.579851 + ], + [ + -73.452651, + 45.579638 + ], + [ + -73.452413, + 45.579449 + ], + [ + -73.452177, + 45.579269 + ], + [ + -73.451973, + 45.579107 + ], + [ + -73.451897, + 45.579057 + ], + [ + -73.451728, + 45.578945 + ], + [ + -73.451578, + 45.57885 + ], + [ + -73.451104, + 45.578697 + ], + [ + -73.450828, + 45.578634 + ], + [ + -73.450592, + 45.578602 + ], + [ + -73.450371, + 45.578589 + ], + [ + -73.450127, + 45.578588 + ], + [ + -73.450095, + 45.578593 + ], + [ + -73.449875, + 45.578611 + ], + [ + -73.449811, + 45.578618 + ], + [ + -73.44906, + 45.578696 + ], + [ + -73.448846, + 45.578718 + ], + [ + -73.448502, + 45.578754 + ], + [ + -73.448017, + 45.578803 + ], + [ + -73.447593, + 45.578848 + ], + [ + -73.447038, + 45.578907 + ], + [ + -73.446887, + 45.57892 + ], + [ + -73.446904, + 45.579005 + ], + [ + -73.44692, + 45.579082 + ], + [ + -73.447125, + 45.580074 + ], + [ + -73.447136, + 45.58013 + ], + [ + -73.447307, + 45.58099 + ], + [ + -73.447337, + 45.581174 + ], + [ + -73.447364, + 45.581462 + ], + [ + -73.447358, + 45.581597 + ], + [ + -73.447346, + 45.581723 + ], + [ + -73.447325, + 45.581872 + ], + [ + -73.447274, + 45.582088 + ], + [ + -73.447195, + 45.582299 + ], + [ + -73.447192, + 45.582308 + ], + [ + -73.447144, + 45.582429 + ], + [ + -73.447053, + 45.582609 + ], + [ + -73.44698, + 45.58274 + ], + [ + -73.446895, + 45.58287 + ], + [ + -73.446759, + 45.583041 + ], + [ + -73.446638, + 45.583181 + ], + [ + -73.446546, + 45.58327 + ], + [ + -73.446413, + 45.583392 + ], + [ + -73.446149, + 45.583603 + ], + [ + -73.446118, + 45.583628 + ], + [ + -73.446013, + 45.583711 + ], + [ + -73.445939, + 45.583653 + ], + [ + -73.445855, + 45.583587 + ], + [ + -73.445465, + 45.583283 + ], + [ + -73.445375, + 45.583216 + ], + [ + -73.445296, + 45.583162 + ], + [ + -73.445278, + 45.58316 + ], + [ + -73.445214, + 45.583154 + ], + [ + -73.445192, + 45.583151 + ], + [ + -73.443826, + 45.582072 + ], + [ + -73.443724, + 45.581969 + ], + [ + -73.443647, + 45.581873 + ], + [ + -73.443575, + 45.581784 + ], + [ + -73.443489, + 45.581649 + ], + [ + -73.443437, + 45.581532 + ], + [ + -73.443375, + 45.581348 + ], + [ + -73.443359, + 45.581199 + ], + [ + -73.443264, + 45.580785 + ], + [ + -73.443201, + 45.580462 + ], + [ + -73.443169, + 45.580299 + ], + [ + -73.443122, + 45.580146 + ], + [ + -73.44301, + 45.579552 + ], + [ + -73.442822, + 45.57868 + ], + [ + -73.442754, + 45.578324 + ], + [ + -73.442692, + 45.577982 + ], + [ + -73.442643, + 45.57775 + ], + [ + -73.442632, + 45.577699 + ], + [ + -73.442584, + 45.577456 + ], + [ + -73.442456, + 45.576961 + ], + [ + -73.442427, + 45.576893 + ], + [ + -73.442391, + 45.576835 + ], + [ + -73.442323, + 45.576754 + ], + [ + -73.44223, + 45.576659 + ], + [ + -73.44214, + 45.576587 + ], + [ + -73.441907, + 45.576399 + ], + [ + -73.441498, + 45.576071 + ], + [ + -73.441396, + 45.575988 + ], + [ + -73.441078, + 45.575736 + ], + [ + -73.440733, + 45.575462 + ], + [ + -73.440381, + 45.575187 + ], + [ + -73.440036, + 45.574917 + ], + [ + -73.439719, + 45.574665 + ], + [ + -73.439615, + 45.574593 + ], + [ + -73.43947, + 45.574525 + ], + [ + -73.43935, + 45.574476 + ], + [ + -73.439324, + 45.574468 + ], + [ + -73.439097, + 45.574403 + ], + [ + -73.438625, + 45.5743 + ], + [ + -73.438216, + 45.5742 + ], + [ + -73.437342, + 45.573989 + ], + [ + -73.436584, + 45.573804 + ], + [ + -73.436507, + 45.573962 + ], + [ + -73.436268, + 45.574456 + ], + [ + -73.436266, + 45.574459 + ], + [ + -73.436179, + 45.574618 + ], + [ + -73.436118, + 45.574717 + ], + [ + -73.43596, + 45.574982 + ], + [ + -73.435699, + 45.575382 + ], + [ + -73.435467, + 45.575724 + ], + [ + -73.43543, + 45.575778 + ], + [ + -73.43534, + 45.575913 + ], + [ + -73.435197, + 45.576138 + ], + [ + -73.435093, + 45.576309 + ], + [ + -73.434836, + 45.576741 + ], + [ + -73.434754, + 45.576879 + ], + [ + -73.434669, + 45.577024 + ], + [ + -73.434583, + 45.577154 + ], + [ + -73.434306, + 45.577609 + ], + [ + -73.434048, + 45.57804 + ], + [ + -73.433813, + 45.578436 + ], + [ + -73.433689, + 45.578652 + ], + [ + -73.43354, + 45.57889 + ], + [ + -73.433463, + 45.578994 + ], + [ + -73.433444, + 45.579021 + ], + [ + -73.43335, + 45.57912 + ], + [ + -73.433199, + 45.579264 + ], + [ + -73.433076, + 45.579354 + ], + [ + -73.43294, + 45.579444 + ], + [ + -73.432711, + 45.579565 + ], + [ + -73.432272, + 45.579794 + ], + [ + -73.4319, + 45.579983 + ], + [ + -73.431767, + 45.580048 + ], + [ + -73.431616, + 45.580122 + ], + [ + -73.431357, + 45.580245 + ], + [ + -73.431218, + 45.580311 + ], + [ + -73.430652, + 45.580544 + ], + [ + -73.430169, + 45.580742 + ], + [ + -73.430012, + 45.580805 + ], + [ + -73.42982, + 45.580902 + ], + [ + -73.429773, + 45.580926 + ], + [ + -73.429655, + 45.581003 + ], + [ + -73.429134, + 45.581335 + ], + [ + -73.428882, + 45.581497 + ], + [ + -73.428761, + 45.581574 + ], + [ + -73.42763, + 45.582284 + ], + [ + -73.427138, + 45.582598 + ], + [ + -73.427107, + 45.582619 + ], + [ + -73.427063, + 45.582648 + ], + [ + -73.426641, + 45.582922 + ], + [ + -73.426528, + 45.583004 + ], + [ + -73.426639, + 45.583089 + ], + [ + -73.429814, + 45.585537 + ], + [ + -73.429838, + 45.585555 + ], + [ + -73.429958, + 45.585646 + ], + [ + -73.430085, + 45.585745 + ], + [ + -73.430467, + 45.586051 + ], + [ + -73.430716, + 45.586245 + ], + [ + -73.430893, + 45.586393 + ], + [ + -73.431289, + 45.586718 + ], + [ + -73.431323, + 45.586747 + ], + [ + -73.431717, + 45.587092 + ], + [ + -73.431535, + 45.58712 + ], + [ + -73.431364, + 45.587136 + ], + [ + -73.431218, + 45.587159 + ], + [ + -73.431197, + 45.587162 + ], + [ + -73.431023, + 45.587199 + ], + [ + -73.430126, + 45.587748 + ], + [ + -73.429364, + 45.588228 + ], + [ + -73.428812, + 45.588575 + ], + [ + -73.428677, + 45.58866 + ], + [ + -73.428716, + 45.588691 + ], + [ + -73.428853, + 45.588803 + ], + [ + -73.429011, + 45.588919 + ], + [ + -73.429127, + 45.589004 + ], + [ + -73.429375, + 45.589198 + ], + [ + -73.429464, + 45.589267 + ], + [ + -73.429522, + 45.589319 + ], + [ + -73.429567, + 45.589376 + ], + [ + -73.429601, + 45.589438 + ], + [ + -73.429621, + 45.589502 + ], + [ + -73.429799, + 45.590246 + ], + [ + -73.429965, + 45.590937 + ], + [ + -73.430035, + 45.591102 + ], + [ + -73.430052, + 45.591144 + ], + [ + -73.430249, + 45.591315 + ], + [ + -73.43063, + 45.591631 + ], + [ + -73.430742, + 45.591724 + ], + [ + -73.430999, + 45.591887 + ], + [ + -73.431426, + 45.592216 + ], + [ + -73.431736, + 45.592481 + ], + [ + -73.432411, + 45.593022 + ], + [ + -73.43312, + 45.593626 + ], + [ + -73.433267, + 45.593751 + ], + [ + -73.433327, + 45.59372 + ], + [ + -73.433582, + 45.593589 + ], + [ + -73.433689, + 45.593585 + ], + [ + -73.433785, + 45.593535 + ], + [ + -73.434067, + 45.593383 + ], + [ + -73.434286, + 45.593257 + ], + [ + -73.434482, + 45.593117 + ], + [ + -73.434699, + 45.59296 + ], + [ + -73.434861, + 45.592843 + ], + [ + -73.43505, + 45.592699 + ], + [ + -73.435304, + 45.592506 + ], + [ + -73.435474, + 45.592362 + ], + [ + -73.435781, + 45.592007 + ], + [ + -73.43601, + 45.591773 + ], + [ + -73.436179, + 45.591633 + ], + [ + -73.436205, + 45.591611 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.436746, + 45.591641 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.438331, + 45.59283 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.440071, + 45.594115 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.442151, + 45.59567 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442211, + 45.596301 + ], + [ + -73.442031, + 45.596415 + ], + [ + -73.441835, + 45.596541 + ], + [ + -73.441552, + 45.59672 + ], + [ + -73.441367, + 45.596828 + ], + [ + -73.441264, + 45.59688 + ], + [ + -73.440742, + 45.597138 + ], + [ + -73.439976, + 45.597521 + ], + [ + -73.43978, + 45.597624 + ], + [ + -73.43874, + 45.598164 + ], + [ + -73.438619, + 45.598226 + ], + [ + -73.438241, + 45.598406 + ], + [ + -73.437622, + 45.598721 + ], + [ + -73.43732, + 45.5989 + ], + [ + -73.437156, + 45.599026 + ], + [ + -73.437089, + 45.599085 + ], + [ + -73.437027, + 45.599139 + ], + [ + -73.43685, + 45.599305 + ], + [ + -73.436458, + 45.599696 + ], + [ + -73.436408, + 45.599746 + ], + [ + -73.436103, + 45.600029 + ], + [ + -73.435984, + 45.600152 + ], + [ + -73.435806, + 45.600335 + ], + [ + -73.435516, + 45.600609 + ], + [ + -73.435271, + 45.600843 + ], + [ + -73.43499, + 45.601122 + ], + [ + -73.434679, + 45.601402 + ], + [ + -73.434596, + 45.601477 + ], + [ + -73.434475, + 45.601531 + ], + [ + -73.434166, + 45.601679 + ], + [ + -73.433739, + 45.601863 + ], + [ + -73.432706, + 45.602245 + ], + [ + -73.431263, + 45.60278 + ], + [ + -73.430877, + 45.603027 + ], + [ + -73.430609, + 45.603197 + ], + [ + -73.430523, + 45.603252 + ], + [ + -73.429967, + 45.603607 + ], + [ + -73.429453, + 45.603926 + ], + [ + -73.42903, + 45.604191 + ], + [ + -73.428653, + 45.604427 + ], + [ + -73.42865, + 45.604429 + ], + [ + -73.428564, + 45.604483 + ], + [ + -73.427475, + 45.60518 + ], + [ + -73.427444, + 45.605211 + ], + [ + -73.427423, + 45.605237 + ], + [ + -73.427407, + 45.605278 + ], + [ + -73.427406, + 45.605312 + ], + [ + -73.427424, + 45.605353 + ], + [ + -73.42746, + 45.605399 + ], + [ + -73.427603, + 45.605522 + ], + [ + -73.427963, + 45.605801 + ], + [ + -73.427998, + 45.605828 + ], + [ + -73.428173, + 45.605959 + ], + [ + -73.428311, + 45.606067 + ], + [ + -73.428456, + 45.606159 + ], + [ + -73.428495, + 45.606184 + ], + [ + -73.42867, + 45.606274 + ], + [ + -73.42886, + 45.60635 + ], + [ + -73.429112, + 45.606427 + ], + [ + -73.429341, + 45.606472 + ], + [ + -73.429649, + 45.606522 + ], + [ + -73.429954, + 45.606572 + ], + [ + -73.430121, + 45.606599 + ], + [ + -73.430876, + 45.606707 + ], + [ + -73.431493, + 45.606793 + ], + [ + -73.431775, + 45.606798 + ], + [ + -73.431993, + 45.60678 + ], + [ + -73.43227, + 45.606721 + ], + [ + -73.432434, + 45.606672 + ], + [ + -73.432607, + 45.606605 + ], + [ + -73.432938, + 45.606459 + ], + [ + -73.433088, + 45.606393 + ], + [ + -73.433751, + 45.606088 + ], + [ + -73.436303, + 45.60492 + ], + [ + -73.436609, + 45.60478 + ], + [ + -73.436819, + 45.604684 + ], + [ + -73.436923, + 45.604637 + ], + [ + -73.437443, + 45.604403 + ], + [ + -73.437908, + 45.604191 + ], + [ + -73.437975, + 45.60416 + ], + [ + -73.438466, + 45.603935 + ], + [ + -73.438822, + 45.603769 + ], + [ + -73.441516, + 45.602542 + ], + [ + -73.441922, + 45.602327 + ], + [ + -73.442509, + 45.60198 + ], + [ + -73.443055, + 45.601648 + ], + [ + -73.443189, + 45.601568 + ], + [ + -73.443509, + 45.601378 + ], + [ + -73.444182, + 45.600973 + ], + [ + -73.444832, + 45.600591 + ], + [ + -73.445172, + 45.600385 + ], + [ + -73.44538, + 45.600264 + ], + [ + -73.445606, + 45.600133 + ], + [ + -73.446043, + 45.599863 + ], + [ + -73.446679, + 45.599485 + ], + [ + -73.446908, + 45.599337 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447633, + 45.598914 + ], + [ + -73.447731, + 45.598856 + ], + [ + -73.448171, + 45.59861 + ], + [ + -73.448549, + 45.598398 + ], + [ + -73.448792, + 45.598273 + ], + [ + -73.448839, + 45.598249 + ], + [ + -73.448998, + 45.598218 + ], + [ + -73.44922, + 45.59824 + ], + [ + -73.449408, + 45.598272 + ], + [ + -73.449753, + 45.598322 + ], + [ + -73.449948, + 45.598342 + ], + [ + -73.450323, + 45.59838 + ], + [ + -73.450519, + 45.598376 + ], + [ + -73.451106, + 45.598269 + ], + [ + -73.451434, + 45.59821 + ], + [ + -73.45171, + 45.598138 + ], + [ + -73.45178, + 45.59812 + ], + [ + -73.451924, + 45.598053 + ], + [ + -73.452243, + 45.597868 + ], + [ + -73.452948, + 45.597441 + ], + [ + -73.453377, + 45.59718 + ], + [ + -73.453592, + 45.597032 + ], + [ + -73.453626, + 45.596997 + ], + [ + -73.453715, + 45.596906 + ], + [ + -73.453794, + 45.596785 + ], + [ + -73.453871, + 45.596596 + ], + [ + -73.453885, + 45.59653 + ], + [ + -73.453931, + 45.596308 + ], + [ + -73.453991, + 45.596137 + ], + [ + -73.454092, + 45.595664 + ], + [ + -73.454151, + 45.595322 + ], + [ + -73.454178, + 45.595189 + ], + [ + -73.454204, + 45.595062 + ], + [ + -73.45424, + 45.594796 + ], + [ + -73.454266, + 45.59466 + ], + [ + -73.454311, + 45.594418 + ], + [ + -73.454348, + 45.594256 + ], + [ + -73.454385, + 45.594198 + ], + [ + -73.454452, + 45.594099 + ], + [ + -73.454523, + 45.594018 + ], + [ + -73.454739, + 45.593883 + ], + [ + -73.454817, + 45.593955 + ], + [ + -73.454889, + 45.594009 + ], + [ + -73.454906, + 45.59402 + ], + [ + -73.455013, + 45.59409 + ], + [ + -73.455072, + 45.594122 + ], + [ + -73.455163, + 45.594144 + ], + [ + -73.455387, + 45.594185 + ], + [ + -73.455619, + 45.594225 + ], + [ + -73.455723, + 45.593915 + ], + [ + -73.455756, + 45.593816 + ], + [ + -73.455854, + 45.593569 + ], + [ + -73.456153, + 45.59288 + ], + [ + -73.456207, + 45.592759 + ], + [ + -73.456292, + 45.59259 + ], + [ + -73.456406, + 45.592363 + ], + [ + -73.456499, + 45.592179 + ], + [ + -73.45679, + 45.591652 + ], + [ + -73.456853, + 45.591557 + ], + [ + -73.456938, + 45.591427 + ], + [ + -73.457079, + 45.591212 + ], + [ + -73.457344, + 45.590807 + ], + [ + -73.457798, + 45.590177 + ], + [ + -73.457847, + 45.590109 + ], + [ + -73.458224, + 45.589642 + ], + [ + -73.458281, + 45.589577 + ], + [ + -73.458866, + 45.588918 + ], + [ + -73.45918, + 45.588576 + ], + [ + -73.459411, + 45.588319 + ], + [ + -73.459565, + 45.588139 + ], + [ + -73.459672, + 45.588027 + ], + [ + -73.460061, + 45.587601 + ], + [ + -73.460107, + 45.58755 + ], + [ + -73.46024, + 45.587403 + ], + [ + -73.46075, + 45.586842 + ], + [ + -73.461153, + 45.586394 + ], + [ + -73.461181, + 45.586363 + ], + [ + -73.461235, + 45.586304 + ], + [ + -73.461391, + 45.586115 + ], + [ + -73.461498, + 45.585994 + ], + [ + -73.461685, + 45.585787 + ], + [ + -73.461939, + 45.585508 + ], + [ + -73.462342, + 45.58507 + ], + [ + -73.462432, + 45.584973 + ], + [ + -73.462695, + 45.585153 + ], + [ + -73.463008, + 45.585396 + ], + [ + -73.463073, + 45.585446 + ], + [ + -73.463882, + 45.586067 + ], + [ + -73.464038, + 45.586187 + ], + [ + -73.466411, + 45.588017 + ], + [ + -73.466439, + 45.588038 + ], + [ + -73.466543, + 45.588142 + ], + [ + -73.466111, + 45.588492 + ], + [ + -73.465623, + 45.588888 + ], + [ + -73.46517, + 45.589257 + ], + [ + -73.464687, + 45.589664 + ], + [ + -73.464647, + 45.589698 + ], + [ + -73.46414, + 45.59017 + ], + [ + -73.464069, + 45.590233 + ], + [ + -73.463931, + 45.590341 + ], + [ + -73.463826, + 45.590404 + ], + [ + -73.463772, + 45.590426 + ], + [ + -73.463577, + 45.590467 + ], + [ + -73.463489, + 45.590489 + ], + [ + -73.463333, + 45.590507 + ], + [ + -73.463163, + 45.590516 + ], + [ + -73.462973, + 45.590525 + ], + [ + -73.462784, + 45.590539 + ], + [ + -73.462612, + 45.59057 + ], + [ + -73.46246, + 45.590601 + ], + [ + -73.462308, + 45.590655 + ], + [ + -73.462124, + 45.59075 + ], + [ + -73.462023, + 45.590822 + ], + [ + -73.461943, + 45.590894 + ], + [ + -73.461232, + 45.591481 + ], + [ + -73.461223, + 45.591488 + ], + [ + -73.461175, + 45.591528 + ], + [ + -73.46107, + 45.591613 + ], + [ + -73.460957, + 45.591717 + ], + [ + -73.460805, + 45.591865 + ], + [ + -73.460701, + 45.591996 + ], + [ + -73.460612, + 45.592117 + ], + [ + -73.460536, + 45.592252 + ], + [ + -73.460484, + 45.592382 + ], + [ + -73.46046, + 45.592459 + ], + [ + -73.46044, + 45.592544 + ], + [ + -73.460424, + 45.592634 + ], + [ + -73.460424, + 45.592715 + ], + [ + -73.460428, + 45.592832 + ], + [ + -73.46044, + 45.592958 + ], + [ + -73.460595, + 45.593596 + ], + [ + -73.460755, + 45.594214 + ], + [ + -73.460803, + 45.594245 + ], + [ + -73.460875, + 45.594286 + ], + [ + -73.460951, + 45.594317 + ], + [ + -73.461075, + 45.594358 + ], + [ + -73.461106, + 45.594366 + ], + [ + -73.461222, + 45.594399 + ], + [ + -73.461303, + 45.594263 + ], + [ + -73.461665, + 45.593593 + ], + [ + -73.461732, + 45.593494 + ], + [ + -73.461974, + 45.593139 + ], + [ + -73.462288, + 45.59272 + ], + [ + -73.462683, + 45.592307 + ], + [ + -73.463002, + 45.59201 + ], + [ + -73.463511, + 45.591551 + ], + [ + -73.464164, + 45.590993 + ], + [ + -73.464488, + 45.590697 + ], + [ + -73.464968, + 45.59022 + ], + [ + -73.465402, + 45.589802 + ], + [ + -73.465585, + 45.589586 + ], + [ + -73.468548, + 45.587089 + ], + [ + -73.468925, + 45.586766 + ], + [ + -73.469282, + 45.586424 + ], + [ + -73.469476, + 45.586217 + ], + [ + -73.46977, + 45.585875 + ], + [ + -73.470065, + 45.585497 + ], + [ + -73.470208, + 45.585295 + ], + [ + -73.470515, + 45.584795 + ], + [ + -73.470777, + 45.584346 + ], + [ + -73.470818, + 45.584266 + ], + [ + -73.471151, + 45.583659 + ], + [ + -73.471441, + 45.583163 + ], + [ + -73.471782, + 45.582588 + ], + [ + -73.471999, + 45.582223 + ], + [ + -73.472179, + 45.58194 + ], + [ + -73.472331, + 45.581716 + ], + [ + -73.472649, + 45.581329 + ], + [ + -73.47273, + 45.58124 + ], + [ + -73.472825, + 45.58114 + ], + [ + -73.473026, + 45.580958 + ], + [ + -73.473162, + 45.580835 + ], + [ + -73.473456, + 45.580601 + ], + [ + -73.473548, + 45.580529 + ], + [ + -73.474056, + 45.580187 + ], + [ + -73.474914, + 45.579634 + ], + [ + -73.475349, + 45.579354 + ], + [ + -73.475514, + 45.57924 + ], + [ + -73.475748, + 45.579059 + ], + [ + -73.476005, + 45.578855 + ], + [ + -73.476092, + 45.578785 + ], + [ + -73.476311, + 45.578613 + ], + [ + -73.476531, + 45.578426 + ], + [ + -73.477316, + 45.577756 + ], + [ + -73.478746, + 45.576546 + ], + [ + -73.485291, + 45.570941 + ], + [ + -73.485924, + 45.570374 + ], + [ + -73.486543, + 45.569794 + ], + [ + -73.487144, + 45.5692 + ], + [ + -73.487725, + 45.568597 + ], + [ + -73.488283, + 45.567985 + ], + [ + -73.489005, + 45.567148 + ], + [ + -73.489524, + 45.56651 + ], + [ + -73.490025, + 45.565857 + ], + [ + -73.490348, + 45.565416 + ], + [ + -73.490811, + 45.564746 + ], + [ + -73.492757, + 45.561799 + ], + [ + -73.493231, + 45.561129 + ], + [ + -73.493558, + 45.560688 + ], + [ + -73.493892, + 45.560256 + ], + [ + -73.494237, + 45.559829 + ], + [ + -73.499922, + 45.552981 + ], + [ + -73.501151, + 45.551492 + ], + [ + -73.501844, + 45.550646 + ], + [ + -73.502872, + 45.549445 + ], + [ + -73.503558, + 45.548684 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523837, + 45.530517 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521985, + 45.524134 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 178, + "properties": { + "id": "d0bd78d2-ff31-48eb-9eb5-389716bf5da0", + "data": { + "gtfs": { + "shape_id": "83_1_A" + }, + "segments": [ + { + "distanceMeters": 240, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 119, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 360, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 335, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 391, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 84, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 377, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 505, + "travelTimeSeconds": 93 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 356, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 10681, + "travelTimeSeconds": 772 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 288, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 25832, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8347.563976383852, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.97, + "travelTimeWithoutDwellTimesSeconds": 2880, + "operatingTimeWithLayoverTimeSeconds": 3168, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2880, + "operatingSpeedWithLayoverMetersPerSecond": 8.15, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.97 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "2f7a97d2-c790-4f58-9a63-010938bbaf69", + "b54db9a8-0c8c-43a8-a385-bc532fde3f70", + "21aac851-6052-4e4d-8167-df2d9a876338", + "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", + "1f0a0267-b7e7-48ae-bd8a-a1242dd984ed", + "a3ce54d5-25e0-4e55-a21f-2d2c2139447f", + "3370bd8e-b7b2-4aab-8679-28f57be8da19", + "a6014278-4b2c-4dc8-a0d9-22c0ac11eb1c", + "b0a54de7-81a4-4a54-ac92-70b7a1a6f8cd", + "5d689515-eb8c-46f5-b76c-9783188effbb", + "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", + "44ce6da8-ee79-4e09-9c16-f31566643c0c", + "7b512bac-ad2d-4d5a-87d8-173290a7b311", + "b94a5730-dab3-4715-a12c-41d1c300a3ab", + "3f07914c-7958-4cd1-a0a6-c2c9e04cc913", + "589841be-b3c7-4f02-a8e7-b24569959def", + "d63304a9-15dd-4cf4-8ec7-3f7d0c080252", + "969d12ef-c40c-4428-9c70-2251a9d71a5e", + "8a45829f-032b-46f2-a537-7925e71ca5d2", + "dda3c3c1-6952-475f-8547-789fb757f7c6", + "3ff2d59e-aa78-4d80-b1c5-f7852a289411", + "ba6e04e1-77fc-4b3f-86d2-fd956b418882", + "3bd4e28f-2392-4d87-96de-a2ab53d75020", + "e0ad666d-6319-4692-a7ee-a3080772e28d", + "c4a07fb5-3745-472e-8e03-a61e6908d906", + "3e60c63a-1f50-42ff-98f0-f081a7dc4017", + "de3d06d6-88af-49e3-b183-9464b2f111c8", + "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", + "ed16ff8f-f2f4-4914-b93b-f48229e580b7", + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "4fcc129f-8015-4b36-a21f-2437aa91a265", + "3d278b9f-fcbb-4681-9833-769bdbe48eaf", + "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", + "47dc43f6-90db-4837-be84-0b5d8a2becb4", + "628308c5-3a00-44cb-908b-068616e8e618", + "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", + "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", + "abeb197b-490c-4d67-8abe-37d08d73ce70", + "7d34a327-717a-432e-93f5-7310ac20c2c2", + "7ca4f3b1-99df-4499-964b-1702513ad59f", + "e134e428-8d59-4d84-966a-ce83afff1c1c", + "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", + "f7429ca8-1ccc-41e7-acab-a5d3915affbb", + "494d9db6-32c6-4aa3-9c11-91eba915c58f", + "6b55fd05-7687-457e-ae9d-e87027c7100f", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", + "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", + "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", + "b32eb408-e9c7-49ab-afd7-56523f4ec990", + "50c385af-a7f1-479f-b40d-4ed198aca8ce", + "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", + "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", + "8babca8c-ebff-46bc-b0c6-b6576c4fada6", + "c650007a-bdeb-4831-9df5-833406e44887", + "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", + "21aac851-6052-4e4d-8167-df2d9a876338", + "b54db9a8-0c8c-43a8-a385-bc532fde3f70", + "2f7a97d2-c790-4f58-9a63-010938bbaf69", + "b2bf7d79-9175-4e1d-be9c-4f4140537e43", + "6460b11a-31ec-4bbc-b7b7-22be32195079", + "0c601e52-04e5-43e0-9137-7225c37d4cdc", + "4c755ece-2475-4915-941e-37859f0f391f" + ], + "stops": [], + "line_id": "c2c9a413-072c-4acc-9975-efb3460f5ff3", + "segments": [ + 0, + 1, + 4, + 10, + 17, + 22, + 25, + 32, + 37, + 47, + 57, + 67, + 77, + 89, + 96, + 103, + 113, + 123, + 131, + 142, + 150, + 161, + 170, + 175, + 180, + 187, + 196, + 213, + 219, + 235, + 241, + 248, + 252, + 260, + 264, + 270, + 273, + 281, + 289, + 295, + 305, + 315, + 325, + 330, + 333, + 341, + 346, + 352, + 356, + 367, + 378, + 383, + 401, + 406, + 410, + 417, + 423, + 428, + 434, + 440, + 441, + 447, + 466, + 488 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 178, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.52252, + 45.524045 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.503549, + 45.548419 + ], + [ + -73.502986, + 45.54904 + ], + [ + -73.502097, + 45.550079 + ], + [ + -73.501025, + 45.551361 + ], + [ + -73.500319, + 45.55223 + ], + [ + -73.497146, + 45.556054 + ], + [ + -73.496787, + 45.55649 + ], + [ + -73.495905, + 45.557543 + ], + [ + -73.495369, + 45.558173 + ], + [ + -73.494314, + 45.559446 + ], + [ + -73.493461, + 45.560499 + ], + [ + -73.492975, + 45.561151 + ], + [ + -73.492659, + 45.561597 + ], + [ + -73.492068, + 45.562474 + ], + [ + -73.49148, + 45.563383 + ], + [ + -73.490434, + 45.564962 + ], + [ + -73.489967, + 45.565619 + ], + [ + -73.489477, + 45.566267 + ], + [ + -73.488962, + 45.566906 + ], + [ + -73.48825, + 45.567747 + ], + [ + -73.487877, + 45.568161 + ], + [ + -73.487301, + 45.568777 + ], + [ + -73.486712, + 45.56938 + ], + [ + -73.486308, + 45.569771 + ], + [ + -73.485474, + 45.570545 + ], + [ + -73.48461, + 45.571301 + ], + [ + -73.483654, + 45.572115 + ], + [ + -73.478606, + 45.576433 + ], + [ + -73.478028, + 45.576933 + ], + [ + -73.477248, + 45.577607 + ], + [ + -73.476645, + 45.578128 + ], + [ + -73.475915, + 45.578754 + ], + [ + -73.475553, + 45.579033 + ], + [ + -73.474887, + 45.579478 + ], + [ + -73.474437, + 45.579762 + ], + [ + -73.474095, + 45.580005 + ], + [ + -73.473853, + 45.580158 + ], + [ + -73.473398, + 45.580472 + ], + [ + -73.473077, + 45.58072 + ], + [ + -73.472886, + 45.580886 + ], + [ + -73.472612, + 45.581152 + ], + [ + -73.472574, + 45.581196 + ], + [ + -73.472319, + 45.581482 + ], + [ + -73.472175, + 45.581673 + ], + [ + -73.471994, + 45.581936 + ], + [ + -73.47191, + 45.582061 + ], + [ + -73.471753, + 45.582326 + ], + [ + -73.471543, + 45.582681 + ], + [ + -73.471245, + 45.583188 + ], + [ + -73.471013, + 45.58358 + ], + [ + -73.470714, + 45.584071 + ], + [ + -73.470067, + 45.585151 + ], + [ + -73.469784, + 45.585547 + ], + [ + -73.469628, + 45.585749 + ], + [ + -73.469287, + 45.586145 + ], + [ + -73.469101, + 45.586343 + ], + [ + -73.468904, + 45.586536 + ], + [ + -73.468695, + 45.586725 + ], + [ + -73.466029, + 45.588965 + ], + [ + -73.465851, + 45.589127 + ], + [ + -73.464661, + 45.590008 + ], + [ + -73.463452, + 45.59093 + ], + [ + -73.462873, + 45.59133 + ], + [ + -73.462371, + 45.591654 + ], + [ + -73.46224, + 45.591722 + ], + [ + -73.462125, + 45.591758 + ], + [ + -73.462005, + 45.59178 + ], + [ + -73.461886, + 45.591789 + ], + [ + -73.461876, + 45.591789 + ], + [ + -73.461768, + 45.591789 + ], + [ + -73.461658, + 45.591771 + ], + [ + -73.461565, + 45.591739 + ], + [ + -73.461497, + 45.591709 + ], + [ + -73.461385, + 45.591658 + ], + [ + -73.461314, + 45.591613 + ], + [ + -73.462065, + 45.590961 + ], + [ + -73.462195, + 45.590862 + ], + [ + -73.462294, + 45.590799 + ], + [ + -73.462386, + 45.590754 + ], + [ + -73.462519, + 45.590705 + ], + [ + -73.462602, + 45.590678 + ], + [ + -73.462706, + 45.590656 + ], + [ + -73.462813, + 45.590642 + ], + [ + -73.462888, + 45.590633 + ], + [ + -73.463001, + 45.590624 + ], + [ + -73.46316, + 45.59062 + ], + [ + -73.463269, + 45.590611 + ], + [ + -73.463357, + 45.590597 + ], + [ + -73.463462, + 45.590579 + ], + [ + -73.463571, + 45.590548 + ], + [ + -73.463709, + 45.590498 + ], + [ + -73.463772, + 45.590426 + ], + [ + -73.463826, + 45.590404 + ], + [ + -73.463931, + 45.590341 + ], + [ + -73.464069, + 45.590233 + ], + [ + -73.46414, + 45.59017 + ], + [ + -73.464647, + 45.589698 + ], + [ + -73.464762, + 45.589601 + ], + [ + -73.46517, + 45.589257 + ], + [ + -73.465623, + 45.588888 + ], + [ + -73.466111, + 45.588492 + ], + [ + -73.466543, + 45.588142 + ], + [ + -73.466439, + 45.588038 + ], + [ + -73.466116, + 45.587789 + ] + ] + }, + "id": 179, + "properties": { + "id": "8b5de12b-f79f-41fa-9857-c90beb2e1024", + "data": { + "gtfs": { + "shape_id": "83_1_R" + }, + "segments": [ + { + "distanceMeters": 9324, + "travelTimeSeconds": 504 + }, + { + "distanceMeters": 383, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 15 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9971, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8347.563976383852, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 18.46, + "travelTimeWithoutDwellTimesSeconds": 540, + "operatingTimeWithLayoverTimeSeconds": 720, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 540, + "operatingSpeedWithLayoverMetersPerSecond": 13.85, + "averageSpeedWithoutDwellTimesMetersPerSecond": 18.46 + }, + "mode": "bus", + "name": "boul. De Montarville", + "color": "#A32638", + "nodes": [ + "4c755ece-2475-4915-941e-37859f0f391f", + "6460b11a-31ec-4bbc-b7b7-22be32195079", + "b2bf7d79-9175-4e1d-be9c-4f4140537e43", + "2f7a97d2-c790-4f58-9a63-010938bbaf69" + ], + "stops": [], + "line_id": "c2c9a413-072c-4acc-9975-efb3460f5ff3", + "segments": [ + 0, + 113, + 138 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 179, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.466116, + 45.587789 + ], + [ + -73.463882, + 45.586067 + ], + [ + -73.463008, + 45.585396 + ], + [ + -73.462695, + 45.585153 + ], + [ + -73.462432, + 45.584973 + ], + [ + -73.462351, + 45.585061 + ], + [ + -73.461939, + 45.585508 + ], + [ + -73.461685, + 45.585787 + ], + [ + -73.461498, + 45.585994 + ], + [ + -73.461391, + 45.586115 + ], + [ + -73.461235, + 45.586304 + ], + [ + -73.460864, + 45.586017 + ], + [ + -73.460241, + 45.585535 + ], + [ + -73.460199, + 45.585502 + ], + [ + -73.460108, + 45.585431 + ], + [ + -73.459866, + 45.585242 + ], + [ + -73.459334, + 45.584828 + ], + [ + -73.458776, + 45.584396 + ], + [ + -73.458406, + 45.584108 + ], + [ + -73.45817, + 45.583923 + ], + [ + -73.457597, + 45.583478 + ], + [ + -73.457402, + 45.583327 + ], + [ + -73.456185, + 45.582393 + ], + [ + -73.45575, + 45.582055 + ], + [ + -73.454385, + 45.580997 + ], + [ + -73.454281, + 45.580917 + ], + [ + -73.454001, + 45.5807 + ], + [ + -73.453713, + 45.58048 + ], + [ + -73.453279, + 45.580142 + ], + [ + -73.453165, + 45.580047 + ], + [ + -73.452651, + 45.579638 + ], + [ + -73.452413, + 45.579449 + ], + [ + -73.452177, + 45.579269 + ], + [ + -73.451973, + 45.579107 + ], + [ + -73.451728, + 45.578945 + ], + [ + -73.451578, + 45.57885 + ], + [ + -73.451104, + 45.578697 + ], + [ + -73.450828, + 45.578634 + ], + [ + -73.450652, + 45.57861 + ], + [ + -73.450592, + 45.578602 + ], + [ + -73.450371, + 45.578589 + ], + [ + -73.450127, + 45.578588 + ], + [ + -73.450095, + 45.578593 + ], + [ + -73.449875, + 45.578611 + ], + [ + -73.44906, + 45.578696 + ], + [ + -73.448846, + 45.578718 + ], + [ + -73.448502, + 45.578754 + ], + [ + -73.448017, + 45.578803 + ], + [ + -73.447593, + 45.578848 + ], + [ + -73.447038, + 45.578907 + ], + [ + -73.446887, + 45.57892 + ], + [ + -73.446904, + 45.579005 + ], + [ + -73.44692, + 45.579082 + ], + [ + -73.447134, + 45.580121 + ], + [ + -73.447136, + 45.58013 + ], + [ + -73.447307, + 45.58099 + ], + [ + -73.447337, + 45.581174 + ], + [ + -73.447364, + 45.581462 + ], + [ + -73.447358, + 45.581597 + ], + [ + -73.447346, + 45.581723 + ], + [ + -73.447325, + 45.581872 + ], + [ + -73.447274, + 45.582088 + ], + [ + -73.447195, + 45.582299 + ], + [ + -73.447144, + 45.582429 + ], + [ + -73.447053, + 45.582609 + ], + [ + -73.44698, + 45.58274 + ], + [ + -73.446895, + 45.58287 + ], + [ + -73.446759, + 45.583041 + ], + [ + -73.446638, + 45.583181 + ], + [ + -73.446546, + 45.58327 + ], + [ + -73.446413, + 45.583392 + ], + [ + -73.446149, + 45.583603 + ], + [ + -73.446013, + 45.583711 + ], + [ + -73.445939, + 45.583653 + ], + [ + -73.445855, + 45.583587 + ], + [ + -73.445465, + 45.583283 + ], + [ + -73.445375, + 45.583216 + ], + [ + -73.445296, + 45.583162 + ], + [ + -73.445278, + 45.58316 + ], + [ + -73.445214, + 45.583154 + ], + [ + -73.445192, + 45.583151 + ], + [ + -73.444324, + 45.582465 + ], + [ + -73.443826, + 45.582072 + ], + [ + -73.443724, + 45.581969 + ], + [ + -73.443575, + 45.581784 + ], + [ + -73.443489, + 45.581649 + ], + [ + -73.443437, + 45.581532 + ], + [ + -73.443375, + 45.581348 + ], + [ + -73.443359, + 45.581199 + ], + [ + -73.443264, + 45.580785 + ], + [ + -73.443254, + 45.580732 + ], + [ + -73.443169, + 45.580299 + ], + [ + -73.443122, + 45.580146 + ], + [ + -73.44301, + 45.579552 + ], + [ + -73.442822, + 45.57868 + ], + [ + -73.442754, + 45.578324 + ], + [ + -73.442692, + 45.577982 + ], + [ + -73.442668, + 45.577868 + ], + [ + -73.442632, + 45.577699 + ], + [ + -73.442584, + 45.577456 + ], + [ + -73.442456, + 45.576961 + ], + [ + -73.442427, + 45.576893 + ], + [ + -73.442391, + 45.576835 + ], + [ + -73.442323, + 45.576754 + ], + [ + -73.44223, + 45.576659 + ], + [ + -73.44214, + 45.576587 + ], + [ + -73.441907, + 45.576399 + ], + [ + -73.441396, + 45.575988 + ], + [ + -73.441078, + 45.575736 + ], + [ + -73.440733, + 45.575462 + ], + [ + -73.440381, + 45.575187 + ], + [ + -73.440036, + 45.574917 + ], + [ + -73.439719, + 45.574665 + ], + [ + -73.439615, + 45.574593 + ], + [ + -73.43947, + 45.574525 + ], + [ + -73.43935, + 45.574476 + ], + [ + -73.439097, + 45.574403 + ], + [ + -73.438625, + 45.5743 + ], + [ + -73.438216, + 45.5742 + ], + [ + -73.437342, + 45.573989 + ], + [ + -73.437135, + 45.573938 + ], + [ + -73.436584, + 45.573804 + ], + [ + -73.436507, + 45.573962 + ], + [ + -73.436268, + 45.574456 + ], + [ + -73.436179, + 45.574618 + ], + [ + -73.436118, + 45.574717 + ], + [ + -73.43596, + 45.574982 + ], + [ + -73.435699, + 45.575382 + ], + [ + -73.435467, + 45.575724 + ], + [ + -73.43543, + 45.575778 + ], + [ + -73.43534, + 45.575913 + ], + [ + -73.435197, + 45.576138 + ], + [ + -73.435093, + 45.576309 + ], + [ + -73.434836, + 45.576741 + ], + [ + -73.434669, + 45.577024 + ], + [ + -73.434583, + 45.577154 + ], + [ + -73.43455, + 45.57721 + ], + [ + -73.434306, + 45.577609 + ], + [ + -73.434048, + 45.57804 + ], + [ + -73.433813, + 45.578436 + ], + [ + -73.433689, + 45.578652 + ], + [ + -73.43354, + 45.57889 + ], + [ + -73.433444, + 45.579021 + ], + [ + -73.43335, + 45.57912 + ], + [ + -73.433199, + 45.579264 + ], + [ + -73.433076, + 45.579354 + ], + [ + -73.43294, + 45.579444 + ], + [ + -73.432711, + 45.579565 + ], + [ + -73.432629, + 45.579608 + ], + [ + -73.432272, + 45.579794 + ], + [ + -73.4319, + 45.579983 + ], + [ + -73.431767, + 45.580048 + ], + [ + -73.431616, + 45.580122 + ], + [ + -73.431218, + 45.580311 + ], + [ + -73.430652, + 45.580544 + ], + [ + -73.430169, + 45.580742 + ], + [ + -73.430012, + 45.580805 + ], + [ + -73.42982, + 45.580902 + ], + [ + -73.429773, + 45.580926 + ], + [ + -73.429655, + 45.581003 + ], + [ + -73.429134, + 45.581335 + ], + [ + -73.428761, + 45.581574 + ], + [ + -73.42763, + 45.582284 + ], + [ + -73.427293, + 45.582499 + ], + [ + -73.427138, + 45.582598 + ], + [ + -73.427107, + 45.582619 + ], + [ + -73.426641, + 45.582922 + ], + [ + -73.426528, + 45.583004 + ], + [ + -73.426639, + 45.583089 + ], + [ + -73.428365, + 45.58442 + ], + [ + -73.429814, + 45.585537 + ], + [ + -73.429958, + 45.585646 + ], + [ + -73.430085, + 45.585745 + ], + [ + -73.430467, + 45.586051 + ], + [ + -73.430716, + 45.586245 + ], + [ + -73.430893, + 45.586393 + ], + [ + -73.431289, + 45.586718 + ], + [ + -73.431717, + 45.587092 + ], + [ + -73.431535, + 45.58712 + ], + [ + -73.431364, + 45.587136 + ], + [ + -73.431218, + 45.587159 + ], + [ + -73.431197, + 45.587162 + ], + [ + -73.431023, + 45.587199 + ], + [ + -73.430126, + 45.587748 + ], + [ + -73.430024, + 45.587812 + ], + [ + -73.429364, + 45.588228 + ], + [ + -73.428677, + 45.58866 + ], + [ + -73.428716, + 45.588691 + ], + [ + -73.428853, + 45.588803 + ], + [ + -73.429011, + 45.588919 + ], + [ + -73.429127, + 45.589004 + ], + [ + -73.429375, + 45.589198 + ], + [ + -73.429464, + 45.589267 + ], + [ + -73.429522, + 45.589319 + ], + [ + -73.429567, + 45.589376 + ], + [ + -73.429601, + 45.589438 + ], + [ + -73.429621, + 45.589502 + ], + [ + -73.429799, + 45.590246 + ], + [ + -73.429892, + 45.590634 + ], + [ + -73.429965, + 45.590937 + ], + [ + -73.430035, + 45.591102 + ], + [ + -73.430052, + 45.591144 + ], + [ + -73.430249, + 45.591315 + ], + [ + -73.430742, + 45.591724 + ], + [ + -73.430999, + 45.591887 + ], + [ + -73.431426, + 45.592216 + ], + [ + -73.431736, + 45.592481 + ], + [ + -73.432411, + 45.593022 + ], + [ + -73.433267, + 45.593751 + ], + [ + -73.433327, + 45.59372 + ], + [ + -73.433346, + 45.593711 + ], + [ + -73.433582, + 45.593589 + ], + [ + -73.433689, + 45.593585 + ], + [ + -73.433785, + 45.593535 + ], + [ + -73.434067, + 45.593383 + ], + [ + -73.434286, + 45.593257 + ], + [ + -73.434482, + 45.593117 + ], + [ + -73.434699, + 45.59296 + ], + [ + -73.434861, + 45.592843 + ], + [ + -73.43505, + 45.592699 + ], + [ + -73.435304, + 45.592506 + ], + [ + -73.435474, + 45.592362 + ], + [ + -73.435781, + 45.592007 + ], + [ + -73.43601, + 45.591773 + ], + [ + -73.436205, + 45.591611 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.436746, + 45.591641 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.43816, + 45.592705 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442388, + 45.59619 + ], + [ + -73.442211, + 45.596301 + ], + [ + -73.442031, + 45.596415 + ], + [ + -73.441835, + 45.596541 + ], + [ + -73.441552, + 45.59672 + ], + [ + -73.441367, + 45.596828 + ], + [ + -73.440742, + 45.597138 + ], + [ + -73.439976, + 45.597521 + ], + [ + -73.43978, + 45.597624 + ], + [ + -73.438619, + 45.598226 + ], + [ + -73.438241, + 45.598406 + ], + [ + -73.437629, + 45.598717 + ], + [ + -73.437622, + 45.598721 + ], + [ + -73.43732, + 45.5989 + ], + [ + -73.437156, + 45.599026 + ], + [ + -73.437027, + 45.599139 + ], + [ + -73.43685, + 45.599305 + ], + [ + -73.436408, + 45.599746 + ], + [ + -73.436103, + 45.600029 + ], + [ + -73.435984, + 45.600152 + ], + [ + -73.435806, + 45.600335 + ], + [ + -73.435516, + 45.600609 + ], + [ + -73.435271, + 45.600843 + ], + [ + -73.43499, + 45.601122 + ], + [ + -73.434596, + 45.601477 + ], + [ + -73.434527, + 45.601508 + ], + [ + -73.434475, + 45.601531 + ], + [ + -73.434166, + 45.601679 + ], + [ + -73.433739, + 45.601863 + ], + [ + -73.432706, + 45.602245 + ], + [ + -73.431263, + 45.60278 + ], + [ + -73.430877, + 45.603027 + ], + [ + -73.430523, + 45.603252 + ], + [ + -73.429967, + 45.603607 + ], + [ + -73.429899, + 45.603649 + ], + [ + -73.429453, + 45.603926 + ], + [ + -73.42903, + 45.604191 + ], + [ + -73.428653, + 45.604427 + ], + [ + -73.428564, + 45.604483 + ], + [ + -73.427475, + 45.60518 + ], + [ + -73.427444, + 45.605211 + ], + [ + -73.427423, + 45.605237 + ], + [ + -73.427407, + 45.605278 + ], + [ + -73.427406, + 45.605312 + ], + [ + -73.427424, + 45.605353 + ], + [ + -73.42746, + 45.605399 + ], + [ + -73.427603, + 45.605522 + ], + [ + -73.427998, + 45.605828 + ], + [ + -73.428024, + 45.605847 + ], + [ + -73.428173, + 45.605959 + ], + [ + -73.428311, + 45.606067 + ], + [ + -73.428456, + 45.606159 + ], + [ + -73.428495, + 45.606184 + ], + [ + -73.42867, + 45.606274 + ], + [ + -73.42886, + 45.60635 + ], + [ + -73.429112, + 45.606427 + ], + [ + -73.429341, + 45.606472 + ], + [ + -73.429954, + 45.606572 + ], + [ + -73.430121, + 45.606599 + ], + [ + -73.430876, + 45.606707 + ], + [ + -73.431493, + 45.606793 + ], + [ + -73.431775, + 45.606798 + ], + [ + -73.431993, + 45.60678 + ], + [ + -73.43227, + 45.606721 + ], + [ + -73.432434, + 45.606672 + ], + [ + -73.432607, + 45.606605 + ], + [ + -73.433088, + 45.606393 + ], + [ + -73.433751, + 45.606088 + ], + [ + -73.436303, + 45.60492 + ], + [ + -73.436609, + 45.60478 + ], + [ + -73.436923, + 45.604637 + ], + [ + -73.437059, + 45.604576 + ], + [ + -73.437443, + 45.604403 + ], + [ + -73.437975, + 45.60416 + ], + [ + -73.438466, + 45.603935 + ], + [ + -73.438822, + 45.603769 + ], + [ + -73.440503, + 45.603004 + ], + [ + -73.441516, + 45.602542 + ], + [ + -73.441922, + 45.602327 + ], + [ + -73.442509, + 45.60198 + ], + [ + -73.443055, + 45.601648 + ], + [ + -73.443509, + 45.601378 + ], + [ + -73.444182, + 45.600973 + ], + [ + -73.444832, + 45.600591 + ], + [ + -73.445172, + 45.600385 + ], + [ + -73.445606, + 45.600133 + ], + [ + -73.446043, + 45.599863 + ], + [ + -73.446567, + 45.599552 + ], + [ + -73.446679, + 45.599485 + ], + [ + -73.446908, + 45.599337 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447731, + 45.598856 + ], + [ + -73.448171, + 45.59861 + ], + [ + -73.448549, + 45.598398 + ], + [ + -73.448839, + 45.598249 + ], + [ + -73.448998, + 45.598218 + ], + [ + -73.44922, + 45.59824 + ], + [ + -73.449408, + 45.598272 + ], + [ + -73.449753, + 45.598322 + ], + [ + -73.449948, + 45.598342 + ], + [ + -73.450323, + 45.59838 + ], + [ + -73.450519, + 45.598376 + ], + [ + -73.451106, + 45.598269 + ], + [ + -73.451434, + 45.59821 + ], + [ + -73.45178, + 45.59812 + ], + [ + -73.451924, + 45.598053 + ], + [ + -73.452243, + 45.597868 + ], + [ + -73.452948, + 45.597441 + ], + [ + -73.453377, + 45.59718 + ], + [ + -73.453592, + 45.597032 + ], + [ + -73.453626, + 45.596997 + ], + [ + -73.453715, + 45.596906 + ], + [ + -73.453794, + 45.596785 + ], + [ + -73.453871, + 45.596596 + ], + [ + -73.453885, + 45.596531 + ], + [ + -73.453931, + 45.596308 + ], + [ + -73.453991, + 45.596137 + ], + [ + -73.454092, + 45.595664 + ], + [ + -73.454151, + 45.595322 + ], + [ + -73.454204, + 45.595062 + ], + [ + -73.45424, + 45.594796 + ], + [ + -73.454266, + 45.59466 + ], + [ + -73.454311, + 45.594418 + ], + [ + -73.454348, + 45.594256 + ], + [ + -73.454385, + 45.594198 + ], + [ + -73.454452, + 45.594099 + ], + [ + -73.454523, + 45.594018 + ], + [ + -73.454739, + 45.593883 + ], + [ + -73.454817, + 45.593955 + ], + [ + -73.454889, + 45.594009 + ], + [ + -73.454906, + 45.59402 + ], + [ + -73.455013, + 45.59409 + ], + [ + -73.455072, + 45.594122 + ], + [ + -73.455163, + 45.594144 + ], + [ + -73.455387, + 45.594185 + ], + [ + -73.455619, + 45.594225 + ], + [ + -73.455756, + 45.593816 + ], + [ + -73.455854, + 45.593569 + ], + [ + -73.456122, + 45.592953 + ], + [ + -73.456153, + 45.59288 + ], + [ + -73.456207, + 45.592759 + ], + [ + -73.456406, + 45.592363 + ], + [ + -73.456499, + 45.592179 + ], + [ + -73.45679, + 45.591652 + ], + [ + -73.456938, + 45.591427 + ], + [ + -73.457079, + 45.591212 + ], + [ + -73.457344, + 45.590807 + ], + [ + -73.457798, + 45.590177 + ], + [ + -73.457847, + 45.590109 + ], + [ + -73.458224, + 45.589642 + ], + [ + -73.458866, + 45.588918 + ], + [ + -73.45918, + 45.588576 + ], + [ + -73.459411, + 45.588319 + ], + [ + -73.459565, + 45.588139 + ], + [ + -73.459672, + 45.588027 + ], + [ + -73.459813, + 45.587872 + ], + [ + -73.460107, + 45.58755 + ], + [ + -73.46024, + 45.587403 + ], + [ + -73.46075, + 45.586842 + ], + [ + -73.461153, + 45.586394 + ], + [ + -73.461235, + 45.586304 + ], + [ + -73.461391, + 45.586115 + ], + [ + -73.461498, + 45.585994 + ], + [ + -73.461685, + 45.585787 + ], + [ + -73.461939, + 45.585508 + ], + [ + -73.462432, + 45.584973 + ], + [ + -73.462695, + 45.585153 + ], + [ + -73.463008, + 45.585396 + ], + [ + -73.463014, + 45.5854 + ], + [ + -73.463073, + 45.585446 + ], + [ + -73.463882, + 45.586067 + ], + [ + -73.466109, + 45.587783 + ], + [ + -73.466439, + 45.588038 + ], + [ + -73.466543, + 45.588142 + ], + [ + -73.466111, + 45.588492 + ], + [ + -73.465623, + 45.588888 + ], + [ + -73.46517, + 45.589257 + ], + [ + -73.464647, + 45.589698 + ], + [ + -73.46414, + 45.59017 + ], + [ + -73.464069, + 45.590233 + ], + [ + -73.463931, + 45.590341 + ], + [ + -73.463826, + 45.590404 + ], + [ + -73.463772, + 45.590426 + ], + [ + -73.463577, + 45.590467 + ], + [ + -73.463489, + 45.590489 + ], + [ + -73.463333, + 45.590507 + ], + [ + -73.463215, + 45.590513 + ], + [ + -73.463163, + 45.590516 + ], + [ + -73.462973, + 45.590525 + ], + [ + -73.462784, + 45.590539 + ], + [ + -73.462612, + 45.59057 + ], + [ + -73.46246, + 45.590601 + ], + [ + -73.462308, + 45.590655 + ], + [ + -73.462124, + 45.59075 + ], + [ + -73.462023, + 45.590822 + ], + [ + -73.461943, + 45.590894 + ], + [ + -73.461223, + 45.591488 + ], + [ + -73.461175, + 45.591528 + ], + [ + -73.46107, + 45.591613 + ], + [ + -73.460957, + 45.591717 + ], + [ + -73.460805, + 45.591865 + ], + [ + -73.460701, + 45.591996 + ], + [ + -73.460612, + 45.592117 + ], + [ + -73.460536, + 45.592252 + ], + [ + -73.460484, + 45.592382 + ], + [ + -73.46046, + 45.592459 + ], + [ + -73.46044, + 45.592544 + ], + [ + -73.460424, + 45.592634 + ], + [ + -73.460424, + 45.592715 + ], + [ + -73.460426, + 45.592783 + ], + [ + -73.460428, + 45.592832 + ], + [ + -73.46044, + 45.592958 + ], + [ + -73.460595, + 45.593596 + ], + [ + -73.460755, + 45.594214 + ], + [ + -73.460803, + 45.594245 + ], + [ + -73.460875, + 45.594286 + ], + [ + -73.460951, + 45.594317 + ], + [ + -73.461075, + 45.594358 + ], + [ + -73.461222, + 45.594399 + ], + [ + -73.461303, + 45.594263 + ], + [ + -73.461665, + 45.593593 + ], + [ + -73.461732, + 45.593494 + ], + [ + -73.461974, + 45.593139 + ], + [ + -73.462288, + 45.59272 + ], + [ + -73.462529, + 45.592468 + ], + [ + -73.462683, + 45.592307 + ], + [ + -73.463002, + 45.59201 + ], + [ + -73.463511, + 45.591551 + ], + [ + -73.464164, + 45.590993 + ], + [ + -73.464488, + 45.590697 + ], + [ + -73.464864, + 45.590324 + ], + [ + -73.464968, + 45.59022 + ], + [ + -73.465402, + 45.589802 + ], + [ + -73.465585, + 45.589586 + ], + [ + -73.466022, + 45.589218 + ], + [ + -73.468548, + 45.587089 + ], + [ + -73.468925, + 45.586766 + ], + [ + -73.469282, + 45.586424 + ], + [ + -73.469465, + 45.586229 + ], + [ + -73.469476, + 45.586217 + ], + [ + -73.46977, + 45.585875 + ], + [ + -73.470065, + 45.585497 + ], + [ + -73.470208, + 45.585295 + ], + [ + -73.470515, + 45.584795 + ], + [ + -73.470777, + 45.584346 + ], + [ + -73.470818, + 45.584266 + ], + [ + -73.471151, + 45.583659 + ], + [ + -73.471441, + 45.583163 + ], + [ + -73.471782, + 45.582588 + ], + [ + -73.471999, + 45.582223 + ], + [ + -73.472179, + 45.58194 + ], + [ + -73.472331, + 45.581716 + ], + [ + -73.472649, + 45.581329 + ], + [ + -73.47273, + 45.58124 + ], + [ + -73.472825, + 45.58114 + ], + [ + -73.473026, + 45.580958 + ], + [ + -73.473162, + 45.580835 + ], + [ + -73.473312, + 45.580715 + ], + [ + -73.473456, + 45.580601 + ], + [ + -73.473548, + 45.580529 + ], + [ + -73.474056, + 45.580187 + ], + [ + -73.474914, + 45.579634 + ], + [ + -73.475349, + 45.579354 + ], + [ + -73.475514, + 45.57924 + ], + [ + -73.475748, + 45.579059 + ], + [ + -73.476005, + 45.578855 + ], + [ + -73.476092, + 45.578785 + ], + [ + -73.476311, + 45.578613 + ], + [ + -73.476531, + 45.578426 + ], + [ + -73.476653, + 45.578321 + ], + [ + -73.477316, + 45.577756 + ], + [ + -73.478746, + 45.576546 + ], + [ + -73.479768, + 45.575671 + ], + [ + -73.482103, + 45.573671 + ], + [ + -73.485291, + 45.570941 + ], + [ + -73.485924, + 45.570374 + ], + [ + -73.48604, + 45.570266 + ], + [ + -73.486543, + 45.569794 + ], + [ + -73.487144, + 45.5692 + ], + [ + -73.487725, + 45.568597 + ], + [ + -73.488283, + 45.567985 + ], + [ + -73.489005, + 45.567148 + ], + [ + -73.489524, + 45.56651 + ], + [ + -73.490025, + 45.565857 + ], + [ + -73.490348, + 45.565416 + ], + [ + -73.490461, + 45.565252 + ], + [ + -73.490811, + 45.564746 + ], + [ + -73.491463, + 45.563758 + ], + [ + -73.492757, + 45.561799 + ], + [ + -73.493231, + 45.561129 + ], + [ + -73.493558, + 45.560688 + ], + [ + -73.493892, + 45.560256 + ], + [ + -73.494237, + 45.559829 + ], + [ + -73.497014, + 45.556483 + ], + [ + -73.499642, + 45.553318 + ], + [ + -73.499922, + 45.552981 + ], + [ + -73.501151, + 45.551492 + ], + [ + -73.501844, + 45.550646 + ], + [ + -73.502351, + 45.550053 + ], + [ + -73.502872, + 45.549445 + ], + [ + -73.503558, + 45.548684 + ], + [ + -73.503771, + 45.548458 + ], + [ + -73.506775, + 45.545264 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.51015, + 45.541873 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.512523, + 45.54005 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.516725, + 45.53669 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.518569, + 45.53453 + ], + [ + -73.520037, + 45.532802 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523708, + 45.530307 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523837, + 45.530517 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.51978, + 45.529229 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527263 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.518323, + 45.525374 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520064, + 45.523395 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521985, + 45.524134 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 180, + "properties": { + "id": "9c840050-7b60-409b-b6c0-4a8883e5be16", + "data": { + "gtfs": { + "shape_id": "83_1_A" + }, + "segments": [ + { + "distanceMeters": 437, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 389, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 431, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 622, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 655, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 457, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 311, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 528, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 555, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 389, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 551, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 535, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 466, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 395, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 435, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 348, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 802, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 609, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 711, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 537, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 637, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 448, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 359, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 431, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 360, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 442, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 428, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 686, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 382, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 488, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 657, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 918, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 420, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 426, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 460, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 499, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 473, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 359, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 500, + "travelTimeSeconds": 32 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 25832, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 0, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 14.35, + "travelTimeWithoutDwellTimesSeconds": 1800, + "operatingTimeWithLayoverTimeSeconds": 1980, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1800, + "operatingSpeedWithLayoverMetersPerSecond": 13.05, + "averageSpeedWithoutDwellTimesMetersPerSecond": 14.35 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "2f7a97d2-c790-4f58-9a63-010938bbaf69", + "b54db9a8-0c8c-43a8-a385-bc532fde3f70", + "21aac851-6052-4e4d-8167-df2d9a876338", + "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", + "1f0a0267-b7e7-48ae-bd8a-a1242dd984ed", + "a3ce54d5-25e0-4e55-a21f-2d2c2139447f", + "3370bd8e-b7b2-4aab-8679-28f57be8da19", + "a6014278-4b2c-4dc8-a0d9-22c0ac11eb1c", + "b0a54de7-81a4-4a54-ac92-70b7a1a6f8cd", + "5d689515-eb8c-46f5-b76c-9783188effbb", + "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", + "44ce6da8-ee79-4e09-9c16-f31566643c0c", + "7b512bac-ad2d-4d5a-87d8-173290a7b311", + "b94a5730-dab3-4715-a12c-41d1c300a3ab", + "3f07914c-7958-4cd1-a0a6-c2c9e04cc913", + "589841be-b3c7-4f02-a8e7-b24569959def", + "d63304a9-15dd-4cf4-8ec7-3f7d0c080252", + "969d12ef-c40c-4428-9c70-2251a9d71a5e", + "8a45829f-032b-46f2-a537-7925e71ca5d2", + "dda3c3c1-6952-475f-8547-789fb757f7c6", + "3ff2d59e-aa78-4d80-b1c5-f7852a289411", + "ba6e04e1-77fc-4b3f-86d2-fd956b418882", + "3bd4e28f-2392-4d87-96de-a2ab53d75020", + "e0ad666d-6319-4692-a7ee-a3080772e28d", + "c4a07fb5-3745-472e-8e03-a61e6908d906", + "3e60c63a-1f50-42ff-98f0-f081a7dc4017", + "de3d06d6-88af-49e3-b183-9464b2f111c8", + "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", + "ed16ff8f-f2f4-4914-b93b-f48229e580b7", + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "4fcc129f-8015-4b36-a21f-2437aa91a265", + "3d278b9f-fcbb-4681-9833-769bdbe48eaf", + "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", + "47dc43f6-90db-4837-be84-0b5d8a2becb4", + "628308c5-3a00-44cb-908b-068616e8e618", + "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", + "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", + "abeb197b-490c-4d67-8abe-37d08d73ce70", + "7d34a327-717a-432e-93f5-7310ac20c2c2", + "7ca4f3b1-99df-4499-964b-1702513ad59f", + "e134e428-8d59-4d84-966a-ce83afff1c1c", + "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", + "f7429ca8-1ccc-41e7-acab-a5d3915affbb", + "494d9db6-32c6-4aa3-9c11-91eba915c58f", + "6b55fd05-7687-457e-ae9d-e87027c7100f", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", + "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", + "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", + "b32eb408-e9c7-49ab-afd7-56523f4ec990", + "50c385af-a7f1-479f-b40d-4ed198aca8ce", + "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", + "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", + "8babca8c-ebff-46bc-b0c6-b6576c4fada6", + "c650007a-bdeb-4831-9df5-833406e44887", + "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", + "21aac851-6052-4e4d-8167-df2d9a876338", + "b54db9a8-0c8c-43a8-a385-bc532fde3f70", + "2f7a97d2-c790-4f58-9a63-010938bbaf69" + ], + "stops": [], + "line_id": "c2c9a413-072c-4acc-9975-efb3460f5ff3", + "segments": [ + 0, + 5, + 13, + 21, + 25, + 38, + 53, + 81, + 90, + 97, + 120, + 136, + 148, + 163, + 169, + 184, + 198, + 210, + 229, + 241, + 252, + 266, + 275, + 289, + 312, + 317, + 328, + 355, + 379, + 396, + 409, + 412, + 427, + 450, + 465, + 471, + 475, + 479, + 498, + 510, + 513, + 514, + 517, + 526, + 528, + 534, + 535, + 539, + 542, + 543, + 548, + 552, + 560, + 562, + 563, + 577, + 602, + 608, + 628, + 642 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 180, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.466116, + 45.587789 + ], + [ + -73.464044, + 45.586192 + ], + [ + -73.463882, + 45.586067 + ], + [ + -73.463008, + 45.585396 + ], + [ + -73.462697, + 45.585155 + ], + [ + -73.462695, + 45.585153 + ], + [ + -73.462432, + 45.584973 + ], + [ + -73.461939, + 45.585508 + ], + [ + -73.461685, + 45.585787 + ], + [ + -73.46157, + 45.585914 + ], + [ + -73.461498, + 45.585994 + ], + [ + -73.461396, + 45.58611 + ], + [ + -73.461391, + 45.586115 + ], + [ + -73.461235, + 45.586304 + ], + [ + -73.461153, + 45.586394 + ], + [ + -73.46075, + 45.586842 + ], + [ + -73.46024, + 45.587403 + ], + [ + -73.460107, + 45.58755 + ], + [ + -73.459741, + 45.587951 + ], + [ + -73.459672, + 45.588027 + ], + [ + -73.459565, + 45.588139 + ], + [ + -73.459411, + 45.588319 + ], + [ + -73.45918, + 45.588576 + ], + [ + -73.458866, + 45.588918 + ], + [ + -73.458381, + 45.589465 + ], + [ + -73.458224, + 45.589642 + ], + [ + -73.457847, + 45.590109 + ], + [ + -73.457798, + 45.590177 + ], + [ + -73.457344, + 45.590807 + ], + [ + -73.457079, + 45.591212 + ], + [ + -73.456938, + 45.591427 + ], + [ + -73.456889, + 45.591502 + ], + [ + -73.45679, + 45.591652 + ], + [ + -73.456499, + 45.592179 + ], + [ + -73.456406, + 45.592363 + ], + [ + -73.456316, + 45.592541 + ], + [ + -73.456207, + 45.592759 + ], + [ + -73.456153, + 45.59288 + ], + [ + -73.455854, + 45.593569 + ], + [ + -73.455756, + 45.593816 + ], + [ + -73.455696, + 45.593996 + ], + [ + -73.455619, + 45.594225 + ], + [ + -73.455387, + 45.594185 + ], + [ + -73.455272, + 45.594164 + ], + [ + -73.455163, + 45.594144 + ], + [ + -73.455072, + 45.594122 + ], + [ + -73.455013, + 45.59409 + ], + [ + -73.454889, + 45.594009 + ], + [ + -73.454817, + 45.593955 + ], + [ + -73.454739, + 45.593883 + ], + [ + -73.454523, + 45.594018 + ], + [ + -73.454452, + 45.594099 + ], + [ + -73.454385, + 45.594198 + ], + [ + -73.454348, + 45.594256 + ], + [ + -73.454311, + 45.594418 + ], + [ + -73.454266, + 45.59466 + ], + [ + -73.45424, + 45.594796 + ], + [ + -73.454228, + 45.594888 + ], + [ + -73.454204, + 45.595062 + ], + [ + -73.454151, + 45.595322 + ], + [ + -73.454092, + 45.595664 + ], + [ + -73.454001, + 45.596091 + ], + [ + -73.453991, + 45.596137 + ], + [ + -73.453931, + 45.596308 + ], + [ + -73.453871, + 45.596596 + ], + [ + -73.453794, + 45.596785 + ], + [ + -73.453715, + 45.596906 + ], + [ + -73.453626, + 45.596997 + ], + [ + -73.453592, + 45.597032 + ], + [ + -73.453377, + 45.59718 + ], + [ + -73.452948, + 45.597441 + ], + [ + -73.452243, + 45.597868 + ], + [ + -73.452067, + 45.59797 + ], + [ + -73.451924, + 45.598053 + ], + [ + -73.45178, + 45.59812 + ], + [ + -73.451434, + 45.59821 + ], + [ + -73.451106, + 45.598269 + ], + [ + -73.450519, + 45.598376 + ], + [ + -73.450323, + 45.59838 + ], + [ + -73.449948, + 45.598342 + ], + [ + -73.449753, + 45.598322 + ], + [ + -73.449408, + 45.598272 + ], + [ + -73.44922, + 45.59824 + ], + [ + -73.448998, + 45.598218 + ], + [ + -73.448839, + 45.598249 + ], + [ + -73.448696, + 45.598322 + ], + [ + -73.448549, + 45.598398 + ], + [ + -73.448171, + 45.59861 + ], + [ + -73.447731, + 45.598856 + ], + [ + -73.447317, + 45.599101 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.446908, + 45.599337 + ], + [ + -73.446679, + 45.599485 + ], + [ + -73.446043, + 45.599863 + ], + [ + -73.445865, + 45.599973 + ], + [ + -73.445606, + 45.600133 + ], + [ + -73.445172, + 45.600385 + ], + [ + -73.444832, + 45.600591 + ], + [ + -73.444182, + 45.600973 + ], + [ + -73.443509, + 45.601378 + ], + [ + -73.443055, + 45.601648 + ], + [ + -73.442778, + 45.601816 + ], + [ + -73.442509, + 45.60198 + ], + [ + -73.441922, + 45.602327 + ], + [ + -73.441516, + 45.602542 + ], + [ + -73.438822, + 45.603769 + ], + [ + -73.438466, + 45.603935 + ], + [ + -73.43811, + 45.604098 + ], + [ + -73.437975, + 45.60416 + ], + [ + -73.437443, + 45.604403 + ], + [ + -73.436923, + 45.604637 + ], + [ + -73.436609, + 45.60478 + ], + [ + -73.436419, + 45.604867 + ], + [ + -73.436303, + 45.60492 + ], + [ + -73.433751, + 45.606088 + ], + [ + -73.433088, + 45.606393 + ], + [ + -73.433001, + 45.606432 + ], + [ + -73.432607, + 45.606605 + ], + [ + -73.432434, + 45.606672 + ], + [ + -73.43227, + 45.606721 + ], + [ + -73.431993, + 45.60678 + ], + [ + -73.431775, + 45.606798 + ], + [ + -73.431493, + 45.606793 + ], + [ + -73.430876, + 45.606707 + ], + [ + -73.43026, + 45.606619 + ], + [ + -73.430121, + 45.606599 + ], + [ + -73.429954, + 45.606572 + ], + [ + -73.429341, + 45.606472 + ], + [ + -73.429112, + 45.606427 + ], + [ + -73.42886, + 45.60635 + ], + [ + -73.42867, + 45.606274 + ], + [ + -73.428652, + 45.606264 + ], + [ + -73.428495, + 45.606184 + ], + [ + -73.428311, + 45.606067 + ], + [ + -73.428239, + 45.60601 + ], + [ + -73.428173, + 45.605959 + ], + [ + -73.427998, + 45.605828 + ], + [ + -73.427603, + 45.605522 + ], + [ + -73.42746, + 45.605399 + ], + [ + -73.427424, + 45.605353 + ], + [ + -73.427406, + 45.605312 + ], + [ + -73.427407, + 45.605278 + ], + [ + -73.427423, + 45.605237 + ], + [ + -73.427444, + 45.605211 + ], + [ + -73.427475, + 45.60518 + ], + [ + -73.428453, + 45.604554 + ], + [ + -73.428564, + 45.604483 + ], + [ + -73.428653, + 45.604427 + ], + [ + -73.42903, + 45.604191 + ], + [ + -73.429453, + 45.603926 + ], + [ + -73.429967, + 45.603607 + ], + [ + -73.430523, + 45.603252 + ], + [ + -73.430877, + 45.603027 + ], + [ + -73.431227, + 45.602802 + ], + [ + -73.431263, + 45.60278 + ], + [ + -73.432706, + 45.602245 + ], + [ + -73.433739, + 45.601863 + ], + [ + -73.434166, + 45.601679 + ], + [ + -73.434273, + 45.601628 + ], + [ + -73.434475, + 45.601531 + ], + [ + -73.434596, + 45.601477 + ], + [ + -73.43499, + 45.601122 + ], + [ + -73.435271, + 45.600843 + ], + [ + -73.435516, + 45.600609 + ], + [ + -73.435806, + 45.600335 + ], + [ + -73.435984, + 45.600152 + ], + [ + -73.436103, + 45.600029 + ], + [ + -73.436276, + 45.599868 + ], + [ + -73.436408, + 45.599746 + ], + [ + -73.43685, + 45.599305 + ], + [ + -73.437027, + 45.599139 + ], + [ + -73.437067, + 45.599104 + ], + [ + -73.437156, + 45.599026 + ], + [ + -73.43732, + 45.5989 + ], + [ + -73.437622, + 45.598721 + ], + [ + -73.438241, + 45.598406 + ], + [ + -73.43847, + 45.598297 + ], + [ + -73.438619, + 45.598226 + ], + [ + -73.43978, + 45.597624 + ], + [ + -73.439976, + 45.597521 + ], + [ + -73.440742, + 45.597138 + ], + [ + -73.441214, + 45.596904 + ], + [ + -73.441367, + 45.596828 + ], + [ + -73.441552, + 45.59672 + ], + [ + -73.441835, + 45.596541 + ], + [ + -73.442031, + 45.596415 + ], + [ + -73.44251, + 45.596113 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.442151, + 45.59567 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.439877, + 45.593968 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438222, + 45.592751 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.436355, + 45.59135 + ], + [ + -73.436241, + 45.591437 + ], + [ + -73.43623, + 45.591445 + ], + [ + -73.435937, + 45.591669 + ], + [ + -73.435841, + 45.59175 + ], + [ + -73.435771, + 45.591809 + ], + [ + -73.435656, + 45.59193 + ], + [ + -73.435482, + 45.592133 + ], + [ + -73.435328, + 45.592303 + ], + [ + -73.435201, + 45.592416 + ], + [ + -73.435194, + 45.59242 + ], + [ + -73.434937, + 45.592614 + ], + [ + -73.434583, + 45.592879 + ], + [ + -73.434575, + 45.592883 + ], + [ + -73.434342, + 45.593054 + ], + [ + -73.434176, + 45.59318 + ], + [ + -73.433984, + 45.593306 + ], + [ + -73.433723, + 45.593472 + ], + [ + -73.433623, + 45.593526 + ], + [ + -73.433582, + 45.593589 + ], + [ + -73.433505, + 45.593629 + ], + [ + -73.433267, + 45.593751 + ], + [ + -73.43308, + 45.593591 + ], + [ + -73.432411, + 45.593022 + ], + [ + -73.431736, + 45.592481 + ], + [ + -73.431426, + 45.592216 + ], + [ + -73.430999, + 45.591887 + ], + [ + -73.430852, + 45.591793 + ], + [ + -73.430742, + 45.591724 + ], + [ + -73.430249, + 45.591315 + ], + [ + -73.430052, + 45.591144 + ], + [ + -73.430035, + 45.591102 + ], + [ + -73.429965, + 45.590937 + ], + [ + -73.429799, + 45.590246 + ], + [ + -73.429621, + 45.589502 + ], + [ + -73.429601, + 45.589438 + ], + [ + -73.429567, + 45.589376 + ], + [ + -73.429522, + 45.589319 + ], + [ + -73.429464, + 45.589267 + ], + [ + -73.429127, + 45.589004 + ], + [ + -73.429109, + 45.588991 + ], + [ + -73.429011, + 45.588919 + ], + [ + -73.429137, + 45.588834 + ], + [ + -73.429252, + 45.588761 + ], + [ + -73.429681, + 45.58849 + ], + [ + -73.430455, + 45.587999 + ], + [ + -73.43085, + 45.58775 + ], + [ + -73.431273, + 45.587482 + ], + [ + -73.431644, + 45.587248 + ], + [ + -73.431818, + 45.587179 + ], + [ + -73.431717, + 45.587092 + ], + [ + -73.431654, + 45.587036 + ], + [ + -73.431289, + 45.586718 + ], + [ + -73.430893, + 45.586393 + ], + [ + -73.430716, + 45.586245 + ], + [ + -73.430467, + 45.586051 + ], + [ + -73.430089, + 45.585748 + ], + [ + -73.430085, + 45.585745 + ], + [ + -73.429958, + 45.585646 + ], + [ + -73.429814, + 45.585537 + ], + [ + -73.428457, + 45.584491 + ], + [ + -73.426662, + 45.583107 + ], + [ + -73.426528, + 45.583004 + ], + [ + -73.426641, + 45.582922 + ], + [ + -73.426651, + 45.582915 + ], + [ + -73.427107, + 45.582619 + ], + [ + -73.427138, + 45.582598 + ], + [ + -73.42763, + 45.582284 + ], + [ + -73.428586, + 45.581684 + ], + [ + -73.428761, + 45.581574 + ], + [ + -73.429134, + 45.581335 + ], + [ + -73.429655, + 45.581003 + ], + [ + -73.429773, + 45.580926 + ], + [ + -73.42982, + 45.580902 + ], + [ + -73.430012, + 45.580805 + ], + [ + -73.430169, + 45.580742 + ], + [ + -73.430652, + 45.580544 + ], + [ + -73.431075, + 45.58037 + ], + [ + -73.431218, + 45.580311 + ], + [ + -73.431616, + 45.580122 + ], + [ + -73.431767, + 45.580048 + ], + [ + -73.4319, + 45.579983 + ], + [ + -73.432272, + 45.579794 + ], + [ + -73.432711, + 45.579565 + ], + [ + -73.43294, + 45.579444 + ], + [ + -73.433076, + 45.579354 + ], + [ + -73.433199, + 45.579264 + ], + [ + -73.433286, + 45.579181 + ], + [ + -73.43335, + 45.57912 + ], + [ + -73.433444, + 45.579021 + ], + [ + -73.43354, + 45.57889 + ], + [ + -73.433689, + 45.578652 + ], + [ + -73.433813, + 45.578436 + ], + [ + -73.434048, + 45.57804 + ], + [ + -73.434306, + 45.577609 + ], + [ + -73.434583, + 45.577154 + ], + [ + -73.434585, + 45.577151 + ], + [ + -73.434669, + 45.577024 + ], + [ + -73.434836, + 45.576741 + ], + [ + -73.435093, + 45.576309 + ], + [ + -73.435197, + 45.576138 + ], + [ + -73.43534, + 45.575913 + ], + [ + -73.43543, + 45.575778 + ], + [ + -73.435467, + 45.575724 + ], + [ + -73.435699, + 45.575382 + ], + [ + -73.43596, + 45.574982 + ], + [ + -73.436118, + 45.574717 + ], + [ + -73.436179, + 45.574618 + ], + [ + -73.436268, + 45.574456 + ], + [ + -73.436505, + 45.573966 + ], + [ + -73.436584, + 45.573804 + ], + [ + -73.437066, + 45.573921 + ], + [ + -73.437342, + 45.573989 + ], + [ + -73.438216, + 45.5742 + ], + [ + -73.438625, + 45.5743 + ], + [ + -73.439012, + 45.574385 + ], + [ + -73.439097, + 45.574403 + ], + [ + -73.43935, + 45.574476 + ], + [ + -73.43947, + 45.574525 + ], + [ + -73.439615, + 45.574593 + ], + [ + -73.439719, + 45.574665 + ], + [ + -73.440036, + 45.574917 + ], + [ + -73.440381, + 45.575187 + ], + [ + -73.440733, + 45.575462 + ], + [ + -73.441078, + 45.575736 + ], + [ + -73.441329, + 45.575935 + ], + [ + -73.441396, + 45.575988 + ], + [ + -73.441907, + 45.576399 + ], + [ + -73.44214, + 45.576587 + ], + [ + -73.44223, + 45.576659 + ], + [ + -73.442323, + 45.576754 + ], + [ + -73.442391, + 45.576835 + ], + [ + -73.442427, + 45.576893 + ], + [ + -73.442456, + 45.576961 + ], + [ + -73.442584, + 45.577456 + ], + [ + -73.442632, + 45.577699 + ], + [ + -73.442673, + 45.577892 + ], + [ + -73.442692, + 45.577982 + ], + [ + -73.442754, + 45.578324 + ], + [ + -73.442822, + 45.57868 + ], + [ + -73.44301, + 45.579552 + ], + [ + -73.443122, + 45.580146 + ], + [ + -73.443129, + 45.58017 + ], + [ + -73.443169, + 45.580299 + ], + [ + -73.443264, + 45.580785 + ], + [ + -73.443359, + 45.581199 + ], + [ + -73.443375, + 45.581348 + ], + [ + -73.443437, + 45.581532 + ], + [ + -73.443442, + 45.581544 + ], + [ + -73.443489, + 45.581649 + ], + [ + -73.443575, + 45.581784 + ], + [ + -73.443724, + 45.581969 + ], + [ + -73.443826, + 45.582072 + ], + [ + -73.445192, + 45.583151 + ], + [ + -73.445199, + 45.583169 + ], + [ + -73.445212, + 45.583213 + ], + [ + -73.445216, + 45.583229 + ], + [ + -73.445297, + 45.583292 + ], + [ + -73.44537, + 45.583351 + ], + [ + -73.445826, + 45.583707 + ], + [ + -73.445835, + 45.583715 + ], + [ + -73.44592, + 45.583788 + ], + [ + -73.446073, + 45.583824 + ], + [ + -73.446219, + 45.58371 + ], + [ + -73.446281, + 45.583662 + ], + [ + -73.446365, + 45.583594 + ], + [ + -73.446509, + 45.583477 + ], + [ + -73.446663, + 45.583334 + ], + [ + -73.446759, + 45.583239 + ], + [ + -73.446885, + 45.583095 + ], + [ + -73.447026, + 45.582915 + ], + [ + -73.44712, + 45.582776 + ], + [ + -73.447199, + 45.582634 + ], + [ + -73.447216, + 45.582605 + ], + [ + -73.447288, + 45.582456 + ], + [ + -73.447348, + 45.582322 + ], + [ + -73.447422, + 45.58211 + ], + [ + -73.447475, + 45.581885 + ], + [ + -73.447497, + 45.581732 + ], + [ + -73.447521, + 45.581602 + ], + [ + -73.447516, + 45.581462 + ], + [ + -73.447513, + 45.581287 + ], + [ + -73.447477, + 45.581057 + ], + [ + -73.447321, + 45.58029 + ], + [ + -73.447286, + 45.580117 + ], + [ + -73.447144, + 45.579424 + ], + [ + -73.447056, + 45.578992 + ], + [ + -73.447354, + 45.578963 + ], + [ + -73.447608, + 45.578938 + ], + [ + -73.447895, + 45.578908 + ], + [ + -73.448031, + 45.578893 + ], + [ + -73.44852, + 45.578844 + ], + [ + -73.449074, + 45.578786 + ], + [ + -73.450004, + 45.578692 + ], + [ + -73.450095, + 45.578683 + ], + [ + -73.450109, + 45.578683 + ], + [ + -73.450463, + 45.578688 + ], + [ + -73.450661, + 45.578706 + ], + [ + -73.450775, + 45.578719 + ], + [ + -73.450895, + 45.578737 + ], + [ + -73.451093, + 45.578791 + ], + [ + -73.451234, + 45.578836 + ], + [ + -73.451251, + 45.578842 + ], + [ + -73.451309, + 45.578863 + ], + [ + -73.451495, + 45.578945 + ], + [ + -73.451582, + 45.57899 + ], + [ + -73.451744, + 45.579089 + ], + [ + -73.451869, + 45.579174 + ], + [ + -73.452082, + 45.579336 + ], + [ + -73.452313, + 45.579516 + ], + [ + -73.452549, + 45.579701 + ], + [ + -73.45305, + 45.580087 + ], + [ + -73.453063, + 45.580097 + ], + [ + -73.453179, + 45.580196 + ], + [ + -73.453622, + 45.580543 + ], + [ + -73.453903, + 45.580759 + ], + [ + -73.45429, + 45.581056 + ], + [ + -73.455188, + 45.581753 + ], + [ + -73.45539, + 45.581913 + ], + [ + -73.455648, + 45.582118 + ], + [ + -73.456087, + 45.582456 + ], + [ + -73.456184, + 45.582528 + ], + [ + -73.457344, + 45.583427 + ], + [ + -73.457491, + 45.583541 + ], + [ + -73.458062, + 45.583986 + ], + [ + -73.458301, + 45.584171 + ], + [ + -73.458672, + 45.584459 + ], + [ + -73.459229, + 45.584891 + ], + [ + -73.459558, + 45.585148 + ], + [ + -73.459569, + 45.585156 + ], + [ + -73.459766, + 45.58531 + ], + [ + -73.459861, + 45.585382 + ], + [ + -73.460007, + 45.585499 + ], + [ + -73.460666, + 45.586014 + ], + [ + -73.460691, + 45.586033 + ], + [ + -73.461153, + 45.586394 + ], + [ + -73.461235, + 45.586304 + ], + [ + -73.461391, + 45.586115 + ], + [ + -73.461498, + 45.585994 + ], + [ + -73.461685, + 45.585787 + ], + [ + -73.461939, + 45.585508 + ], + [ + -73.462335, + 45.585078 + ], + [ + -73.462432, + 45.584973 + ], + [ + -73.462695, + 45.585153 + ], + [ + -73.463008, + 45.585396 + ], + [ + -73.463882, + 45.586067 + ], + [ + -73.464038, + 45.586187 + ], + [ + -73.466411, + 45.588017 + ], + [ + -73.466439, + 45.588038 + ], + [ + -73.466543, + 45.588142 + ], + [ + -73.466111, + 45.588492 + ], + [ + -73.465623, + 45.588888 + ], + [ + -73.46517, + 45.589257 + ], + [ + -73.464687, + 45.589664 + ], + [ + -73.464647, + 45.589698 + ], + [ + -73.46414, + 45.59017 + ], + [ + -73.464069, + 45.590233 + ], + [ + -73.463931, + 45.590341 + ], + [ + -73.463826, + 45.590404 + ], + [ + -73.463772, + 45.590426 + ], + [ + -73.463577, + 45.590467 + ], + [ + -73.463489, + 45.590489 + ], + [ + -73.463333, + 45.590507 + ], + [ + -73.463163, + 45.590516 + ], + [ + -73.462973, + 45.590525 + ], + [ + -73.462784, + 45.590539 + ], + [ + -73.462612, + 45.59057 + ], + [ + -73.46246, + 45.590601 + ], + [ + -73.462308, + 45.590655 + ], + [ + -73.462124, + 45.59075 + ], + [ + -73.462023, + 45.590822 + ], + [ + -73.461943, + 45.590894 + ], + [ + -73.461232, + 45.591481 + ], + [ + -73.461223, + 45.591488 + ], + [ + -73.461175, + 45.591528 + ], + [ + -73.46107, + 45.591613 + ], + [ + -73.460957, + 45.591717 + ], + [ + -73.460805, + 45.591865 + ], + [ + -73.460701, + 45.591996 + ], + [ + -73.460612, + 45.592117 + ], + [ + -73.460536, + 45.592252 + ], + [ + -73.460484, + 45.592382 + ], + [ + -73.46046, + 45.592459 + ], + [ + -73.46044, + 45.592544 + ], + [ + -73.460424, + 45.592634 + ], + [ + -73.460424, + 45.592715 + ], + [ + -73.460428, + 45.592832 + ], + [ + -73.46044, + 45.592958 + ], + [ + -73.460595, + 45.593596 + ], + [ + -73.460755, + 45.594214 + ], + [ + -73.460803, + 45.594245 + ], + [ + -73.460875, + 45.594286 + ], + [ + -73.460951, + 45.594317 + ], + [ + -73.461075, + 45.594358 + ], + [ + -73.461106, + 45.594366 + ], + [ + -73.461222, + 45.594399 + ], + [ + -73.461303, + 45.594263 + ], + [ + -73.461665, + 45.593593 + ], + [ + -73.461732, + 45.593494 + ], + [ + -73.461974, + 45.593139 + ], + [ + -73.462288, + 45.59272 + ], + [ + -73.462683, + 45.592307 + ], + [ + -73.463002, + 45.59201 + ], + [ + -73.463511, + 45.591551 + ], + [ + -73.464164, + 45.590993 + ], + [ + -73.464488, + 45.590697 + ], + [ + -73.464968, + 45.59022 + ], + [ + -73.465402, + 45.589802 + ], + [ + -73.465585, + 45.589586 + ], + [ + -73.468548, + 45.587089 + ], + [ + -73.468925, + 45.586766 + ], + [ + -73.469282, + 45.586424 + ], + [ + -73.469476, + 45.586217 + ], + [ + -73.46977, + 45.585875 + ], + [ + -73.470065, + 45.585497 + ], + [ + -73.470208, + 45.585295 + ], + [ + -73.470515, + 45.584795 + ], + [ + -73.470777, + 45.584346 + ], + [ + -73.470818, + 45.584266 + ], + [ + -73.471151, + 45.583659 + ], + [ + -73.471441, + 45.583163 + ], + [ + -73.471782, + 45.582588 + ], + [ + -73.471999, + 45.582223 + ], + [ + -73.472179, + 45.58194 + ], + [ + -73.472331, + 45.581716 + ], + [ + -73.472649, + 45.581329 + ], + [ + -73.47273, + 45.58124 + ], + [ + -73.472825, + 45.58114 + ], + [ + -73.473026, + 45.580958 + ], + [ + -73.473162, + 45.580835 + ], + [ + -73.473456, + 45.580601 + ], + [ + -73.473548, + 45.580529 + ], + [ + -73.474056, + 45.580187 + ], + [ + -73.474914, + 45.579634 + ], + [ + -73.475349, + 45.579354 + ], + [ + -73.475514, + 45.57924 + ], + [ + -73.475748, + 45.579059 + ], + [ + -73.476005, + 45.578855 + ], + [ + -73.476092, + 45.578785 + ], + [ + -73.476311, + 45.578613 + ], + [ + -73.476531, + 45.578426 + ], + [ + -73.477316, + 45.577756 + ], + [ + -73.478746, + 45.576546 + ], + [ + -73.485291, + 45.570941 + ], + [ + -73.485924, + 45.570374 + ], + [ + -73.486543, + 45.569794 + ], + [ + -73.487144, + 45.5692 + ], + [ + -73.487725, + 45.568597 + ], + [ + -73.488283, + 45.567985 + ], + [ + -73.489005, + 45.567148 + ], + [ + -73.489524, + 45.56651 + ], + [ + -73.490025, + 45.565857 + ], + [ + -73.490348, + 45.565416 + ], + [ + -73.490811, + 45.564746 + ], + [ + -73.492757, + 45.561799 + ], + [ + -73.493231, + 45.561129 + ], + [ + -73.493558, + 45.560688 + ], + [ + -73.493892, + 45.560256 + ], + [ + -73.494237, + 45.559829 + ], + [ + -73.499922, + 45.552981 + ], + [ + -73.501151, + 45.551492 + ], + [ + -73.501844, + 45.550646 + ], + [ + -73.502872, + 45.549445 + ], + [ + -73.503558, + 45.548684 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523837, + 45.530517 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521985, + 45.524134 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 181, + "properties": { + "id": "ad30e3ac-9bfc-459c-a8b9-32b86468638f", + "data": { + "gtfs": { + "shape_id": "84_1_A" + }, + "segments": [ + { + "distanceMeters": 240, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 316, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 444, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 328, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 311, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 385, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 100, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 356, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 10681, + "travelTimeSeconds": 827 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 282, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 25820, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8347.563976383852, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.16, + "travelTimeWithoutDwellTimesSeconds": 2820, + "operatingTimeWithLayoverTimeSeconds": 3102, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2820, + "operatingSpeedWithLayoverMetersPerSecond": 8.32, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.16 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "2f7a97d2-c790-4f58-9a63-010938bbaf69", + "b54db9a8-0c8c-43a8-a385-bc532fde3f70", + "21aac851-6052-4e4d-8167-df2d9a876338", + "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", + "c650007a-bdeb-4831-9df5-833406e44887", + "8babca8c-ebff-46bc-b0c6-b6576c4fada6", + "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", + "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", + "50c385af-a7f1-479f-b40d-4ed198aca8ce", + "b32eb408-e9c7-49ab-afd7-56523f4ec990", + "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", + "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", + "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "6b55fd05-7687-457e-ae9d-e87027c7100f", + "494d9db6-32c6-4aa3-9c11-91eba915c58f", + "f7429ca8-1ccc-41e7-acab-a5d3915affbb", + "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", + "e134e428-8d59-4d84-966a-ce83afff1c1c", + "7ca4f3b1-99df-4499-964b-1702513ad59f", + "7d34a327-717a-432e-93f5-7310ac20c2c2", + "abeb197b-490c-4d67-8abe-37d08d73ce70", + "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", + "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", + "628308c5-3a00-44cb-908b-068616e8e618", + "47dc43f6-90db-4837-be84-0b5d8a2becb4", + "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", + "fc32be78-9480-4dfc-b10c-475dc000dd04", + "0872c388-8faf-4852-b4ce-cf3f6312e0ef", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "ed16ff8f-f2f4-4914-b93b-f48229e580b7", + "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", + "de3d06d6-88af-49e3-b183-9464b2f111c8", + "3613b472-6055-4b55-9c89-01a451d82804", + "4cd6eb13-aeec-4716-a3d3-8e1a38389723", + "9ad04c6c-abc1-49fe-8f36-db6146dd5c5c", + "3dedf179-3478-4b4d-b706-36e0a8981094", + "3bd4e28f-2392-4d87-96de-a2ab53d75020", + "ba6e04e1-77fc-4b3f-86d2-fd956b418882", + "3ff2d59e-aa78-4d80-b1c5-f7852a289411", + "dda3c3c1-6952-475f-8547-789fb757f7c6", + "b09cf260-c832-4cf7-bb1b-ef1c96c3308c", + "969d12ef-c40c-4428-9c70-2251a9d71a5e", + "d63304a9-15dd-4cf4-8ec7-3f7d0c080252", + "589841be-b3c7-4f02-a8e7-b24569959def", + "3f07914c-7958-4cd1-a0a6-c2c9e04cc913", + "b94a5730-dab3-4715-a12c-41d1c300a3ab", + "7b512bac-ad2d-4d5a-87d8-173290a7b311", + "44ce6da8-ee79-4e09-9c16-f31566643c0c", + "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", + "43c9714a-9286-4827-a621-a7c2f8cbdfb6", + "5d689515-eb8c-46f5-b76c-9783188effbb", + "b0a54de7-81a4-4a54-ac92-70b7a1a6f8cd", + "a6014278-4b2c-4dc8-a0d9-22c0ac11eb1c", + "3370bd8e-b7b2-4aab-8679-28f57be8da19", + "a3ce54d5-25e0-4e55-a21f-2d2c2139447f", + "1f0a0267-b7e7-48ae-bd8a-a1242dd984ed", + "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", + "21aac851-6052-4e4d-8167-df2d9a876338", + "b54db9a8-0c8c-43a8-a385-bc532fde3f70", + "2f7a97d2-c790-4f58-9a63-010938bbaf69", + "b2bf7d79-9175-4e1d-be9c-4f4140537e43", + "6460b11a-31ec-4bbc-b7b7-22be32195079", + "0c601e52-04e5-43e0-9137-7225c37d4cdc", + "4c755ece-2475-4915-941e-37859f0f391f" + ], + "stops": [], + "line_id": "e597daaa-7703-4108-a2f9-fbf932e44edb", + "segments": [ + 0, + 1, + 4, + 11, + 18, + 24, + 31, + 35, + 40, + 57, + 61, + 72, + 85, + 89, + 94, + 101, + 107, + 112, + 116, + 124, + 134, + 145, + 153, + 158, + 167, + 171, + 176, + 181, + 186, + 193, + 200, + 208, + 224, + 231, + 244, + 251, + 260, + 264, + 265, + 272, + 281, + 291, + 300, + 313, + 319, + 329, + 340, + 346, + 352, + 364, + 376, + 387, + 393, + 397, + 406, + 415, + 422, + 426, + 433, + 438, + 445, + 450, + 451, + 457, + 476, + 498 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 181, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.52252, + 45.524045 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.503549, + 45.548419 + ], + [ + -73.502986, + 45.54904 + ], + [ + -73.502097, + 45.550079 + ], + [ + -73.501025, + 45.551361 + ], + [ + -73.500319, + 45.55223 + ], + [ + -73.497146, + 45.556054 + ], + [ + -73.496787, + 45.55649 + ], + [ + -73.495905, + 45.557543 + ], + [ + -73.495369, + 45.558173 + ], + [ + -73.494314, + 45.559446 + ], + [ + -73.493461, + 45.560499 + ], + [ + -73.492975, + 45.561151 + ], + [ + -73.492659, + 45.561597 + ], + [ + -73.492068, + 45.562474 + ], + [ + -73.49148, + 45.563383 + ], + [ + -73.490434, + 45.564962 + ], + [ + -73.489967, + 45.565619 + ], + [ + -73.489477, + 45.566267 + ], + [ + -73.488962, + 45.566906 + ], + [ + -73.48825, + 45.567747 + ], + [ + -73.487877, + 45.568161 + ], + [ + -73.487301, + 45.568777 + ], + [ + -73.486712, + 45.56938 + ], + [ + -73.486308, + 45.569771 + ], + [ + -73.485474, + 45.570545 + ], + [ + -73.48461, + 45.571301 + ], + [ + -73.483654, + 45.572115 + ], + [ + -73.478606, + 45.576433 + ], + [ + -73.478028, + 45.576933 + ], + [ + -73.477248, + 45.577607 + ], + [ + -73.476645, + 45.578128 + ], + [ + -73.475915, + 45.578754 + ], + [ + -73.475553, + 45.579033 + ], + [ + -73.474887, + 45.579478 + ], + [ + -73.474437, + 45.579762 + ], + [ + -73.474095, + 45.580005 + ], + [ + -73.473853, + 45.580158 + ], + [ + -73.473398, + 45.580472 + ], + [ + -73.473077, + 45.58072 + ], + [ + -73.472886, + 45.580886 + ], + [ + -73.472612, + 45.581152 + ], + [ + -73.472574, + 45.581196 + ], + [ + -73.472319, + 45.581482 + ], + [ + -73.472175, + 45.581673 + ], + [ + -73.471994, + 45.581936 + ], + [ + -73.47191, + 45.582061 + ], + [ + -73.471753, + 45.582326 + ], + [ + -73.471543, + 45.582681 + ], + [ + -73.471245, + 45.583188 + ], + [ + -73.471013, + 45.58358 + ], + [ + -73.470714, + 45.584071 + ], + [ + -73.470067, + 45.585151 + ], + [ + -73.469784, + 45.585547 + ], + [ + -73.469628, + 45.585749 + ], + [ + -73.469287, + 45.586145 + ], + [ + -73.469101, + 45.586343 + ], + [ + -73.468904, + 45.586536 + ], + [ + -73.468695, + 45.586725 + ], + [ + -73.466029, + 45.588965 + ], + [ + -73.465851, + 45.589127 + ], + [ + -73.464661, + 45.590008 + ], + [ + -73.463452, + 45.59093 + ], + [ + -73.462873, + 45.59133 + ], + [ + -73.462371, + 45.591654 + ], + [ + -73.46224, + 45.591722 + ], + [ + -73.462125, + 45.591758 + ], + [ + -73.462005, + 45.59178 + ], + [ + -73.461886, + 45.591789 + ], + [ + -73.461876, + 45.591789 + ], + [ + -73.461768, + 45.591789 + ], + [ + -73.461658, + 45.591771 + ], + [ + -73.461565, + 45.591739 + ], + [ + -73.461497, + 45.591709 + ], + [ + -73.461385, + 45.591658 + ], + [ + -73.461314, + 45.591613 + ], + [ + -73.462065, + 45.590961 + ], + [ + -73.462195, + 45.590862 + ], + [ + -73.462294, + 45.590799 + ], + [ + -73.462386, + 45.590754 + ], + [ + -73.462519, + 45.590705 + ], + [ + -73.462602, + 45.590678 + ], + [ + -73.462706, + 45.590656 + ], + [ + -73.462813, + 45.590642 + ], + [ + -73.462888, + 45.590633 + ], + [ + -73.463001, + 45.590624 + ], + [ + -73.46316, + 45.59062 + ], + [ + -73.463269, + 45.590611 + ], + [ + -73.463357, + 45.590597 + ], + [ + -73.463462, + 45.590579 + ], + [ + -73.463571, + 45.590548 + ], + [ + -73.463709, + 45.590498 + ], + [ + -73.463772, + 45.590426 + ], + [ + -73.463826, + 45.590404 + ], + [ + -73.463931, + 45.590341 + ], + [ + -73.464069, + 45.590233 + ], + [ + -73.46414, + 45.59017 + ], + [ + -73.464647, + 45.589698 + ], + [ + -73.464762, + 45.589601 + ], + [ + -73.46517, + 45.589257 + ], + [ + -73.465623, + 45.588888 + ], + [ + -73.466111, + 45.588492 + ], + [ + -73.466543, + 45.588142 + ], + [ + -73.466439, + 45.588038 + ], + [ + -73.466116, + 45.587789 + ] + ] + }, + "id": 182, + "properties": { + "id": "99bb0b7f-3c95-46e1-809f-d82dee4481c3", + "data": { + "gtfs": { + "shape_id": "84_1_R" + }, + "segments": [ + { + "distanceMeters": 9324, + "travelTimeSeconds": 504 + }, + { + "distanceMeters": 383, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 15 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9971, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8347.563976383852, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 18.46, + "travelTimeWithoutDwellTimesSeconds": 540, + "operatingTimeWithLayoverTimeSeconds": 720, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 540, + "operatingSpeedWithLayoverMetersPerSecond": 13.85, + "averageSpeedWithoutDwellTimesMetersPerSecond": 18.46 + }, + "mode": "bus", + "name": "boul. De Montarville", + "color": "#A32638", + "nodes": [ + "4c755ece-2475-4915-941e-37859f0f391f", + "6460b11a-31ec-4bbc-b7b7-22be32195079", + "b2bf7d79-9175-4e1d-be9c-4f4140537e43", + "2f7a97d2-c790-4f58-9a63-010938bbaf69" + ], + "stops": [], + "line_id": "e597daaa-7703-4108-a2f9-fbf932e44edb", + "segments": [ + 0, + 113, + 138 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 182, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.466116, + 45.587789 + ], + [ + -73.463882, + 45.586067 + ], + [ + -73.463008, + 45.585396 + ], + [ + -73.462695, + 45.585153 + ], + [ + -73.462432, + 45.584973 + ], + [ + -73.46235, + 45.585062 + ], + [ + -73.461939, + 45.585508 + ], + [ + -73.461685, + 45.585787 + ], + [ + -73.46157, + 45.585914 + ], + [ + -73.461498, + 45.585994 + ], + [ + -73.461391, + 45.586115 + ], + [ + -73.461235, + 45.586304 + ], + [ + -73.461153, + 45.586394 + ], + [ + -73.46075, + 45.586842 + ], + [ + -73.460407, + 45.58722 + ], + [ + -73.46024, + 45.587403 + ], + [ + -73.460107, + 45.58755 + ], + [ + -73.459672, + 45.588027 + ], + [ + -73.459565, + 45.588139 + ], + [ + -73.459411, + 45.588319 + ], + [ + -73.45918, + 45.588576 + ], + [ + -73.458866, + 45.588918 + ], + [ + -73.458224, + 45.589642 + ], + [ + -73.458179, + 45.589697 + ], + [ + -73.457847, + 45.590109 + ], + [ + -73.457798, + 45.590177 + ], + [ + -73.457344, + 45.590807 + ], + [ + -73.457079, + 45.591212 + ], + [ + -73.456938, + 45.591427 + ], + [ + -73.45679, + 45.591652 + ], + [ + -73.456499, + 45.592179 + ], + [ + -73.456406, + 45.592363 + ], + [ + -73.456207, + 45.592759 + ], + [ + -73.456153, + 45.59288 + ], + [ + -73.455959, + 45.593326 + ], + [ + -73.455854, + 45.593569 + ], + [ + -73.455756, + 45.593816 + ], + [ + -73.455619, + 45.594225 + ], + [ + -73.455387, + 45.594185 + ], + [ + -73.455272, + 45.594164 + ], + [ + -73.455163, + 45.594144 + ], + [ + -73.455072, + 45.594122 + ], + [ + -73.455013, + 45.59409 + ], + [ + -73.454889, + 45.594009 + ], + [ + -73.454817, + 45.593955 + ], + [ + -73.454739, + 45.593883 + ], + [ + -73.454523, + 45.594018 + ], + [ + -73.454452, + 45.594099 + ], + [ + -73.454385, + 45.594198 + ], + [ + -73.454348, + 45.594256 + ], + [ + -73.454311, + 45.594418 + ], + [ + -73.454266, + 45.59466 + ], + [ + -73.45424, + 45.594796 + ], + [ + -73.454204, + 45.595062 + ], + [ + -73.454151, + 45.595322 + ], + [ + -73.454143, + 45.595367 + ], + [ + -73.454092, + 45.595664 + ], + [ + -73.453991, + 45.596137 + ], + [ + -73.453931, + 45.596308 + ], + [ + -73.453871, + 45.596596 + ], + [ + -73.453794, + 45.596785 + ], + [ + -73.453715, + 45.596906 + ], + [ + -73.453626, + 45.596997 + ], + [ + -73.453592, + 45.597032 + ], + [ + -73.453377, + 45.59718 + ], + [ + -73.452948, + 45.597441 + ], + [ + -73.452243, + 45.597868 + ], + [ + -73.451924, + 45.598053 + ], + [ + -73.45178, + 45.59812 + ], + [ + -73.451434, + 45.59821 + ], + [ + -73.451106, + 45.598269 + ], + [ + -73.450724, + 45.598339 + ], + [ + -73.450519, + 45.598376 + ], + [ + -73.450323, + 45.59838 + ], + [ + -73.449948, + 45.598342 + ], + [ + -73.449753, + 45.598322 + ], + [ + -73.449408, + 45.598272 + ], + [ + -73.44922, + 45.59824 + ], + [ + -73.448998, + 45.598218 + ], + [ + -73.448839, + 45.598249 + ], + [ + -73.448549, + 45.598398 + ], + [ + -73.448171, + 45.59861 + ], + [ + -73.448066, + 45.598669 + ], + [ + -73.447731, + 45.598856 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.446908, + 45.599337 + ], + [ + -73.446679, + 45.599485 + ], + [ + -73.446043, + 45.599863 + ], + [ + -73.445606, + 45.600133 + ], + [ + -73.445172, + 45.600385 + ], + [ + -73.445054, + 45.600456 + ], + [ + -73.444832, + 45.600591 + ], + [ + -73.444182, + 45.600973 + ], + [ + -73.443509, + 45.601378 + ], + [ + -73.443055, + 45.601648 + ], + [ + -73.442509, + 45.60198 + ], + [ + -73.441922, + 45.602327 + ], + [ + -73.441516, + 45.602542 + ], + [ + -73.44087, + 45.602836 + ], + [ + -73.438822, + 45.603769 + ], + [ + -73.438466, + 45.603935 + ], + [ + -73.438229, + 45.604044 + ], + [ + -73.437975, + 45.60416 + ], + [ + -73.437443, + 45.604403 + ], + [ + -73.436923, + 45.604637 + ], + [ + -73.436609, + 45.60478 + ], + [ + -73.436303, + 45.60492 + ], + [ + -73.433751, + 45.606088 + ], + [ + -73.433088, + 45.606393 + ], + [ + -73.432964, + 45.606448 + ], + [ + -73.432607, + 45.606605 + ], + [ + -73.432434, + 45.606672 + ], + [ + -73.43227, + 45.606721 + ], + [ + -73.431993, + 45.60678 + ], + [ + -73.431775, + 45.606798 + ], + [ + -73.431493, + 45.606793 + ], + [ + -73.430876, + 45.606707 + ], + [ + -73.430121, + 45.606599 + ], + [ + -73.429954, + 45.606572 + ], + [ + -73.429341, + 45.606472 + ], + [ + -73.429112, + 45.606427 + ], + [ + -73.42886, + 45.60635 + ], + [ + -73.42867, + 45.606274 + ], + [ + -73.428652, + 45.606264 + ], + [ + -73.428495, + 45.606184 + ], + [ + -73.428311, + 45.606067 + ], + [ + -73.428173, + 45.605959 + ], + [ + -73.427998, + 45.605828 + ], + [ + -73.427603, + 45.605522 + ], + [ + -73.42746, + 45.605399 + ], + [ + -73.427424, + 45.605353 + ], + [ + -73.427406, + 45.605312 + ], + [ + -73.427407, + 45.605278 + ], + [ + -73.427414, + 45.605262 + ], + [ + -73.427423, + 45.605237 + ], + [ + -73.427444, + 45.605211 + ], + [ + -73.427475, + 45.60518 + ], + [ + -73.428564, + 45.604483 + ], + [ + -73.428653, + 45.604427 + ], + [ + -73.42903, + 45.604191 + ], + [ + -73.429453, + 45.603926 + ], + [ + -73.429769, + 45.60373 + ], + [ + -73.429967, + 45.603607 + ], + [ + -73.430523, + 45.603252 + ], + [ + -73.430877, + 45.603027 + ], + [ + -73.431263, + 45.60278 + ], + [ + -73.432557, + 45.602301 + ], + [ + -73.432706, + 45.602245 + ], + [ + -73.433739, + 45.601863 + ], + [ + -73.434166, + 45.601679 + ], + [ + -73.434475, + 45.601531 + ], + [ + -73.434596, + 45.601477 + ], + [ + -73.43499, + 45.601122 + ], + [ + -73.435271, + 45.600843 + ], + [ + -73.435516, + 45.600609 + ], + [ + -73.435806, + 45.600335 + ], + [ + -73.435984, + 45.600152 + ], + [ + -73.436103, + 45.600029 + ], + [ + -73.436408, + 45.599746 + ], + [ + -73.43685, + 45.599305 + ], + [ + -73.437027, + 45.599139 + ], + [ + -73.437156, + 45.599026 + ], + [ + -73.43732, + 45.5989 + ], + [ + -73.437622, + 45.598721 + ], + [ + -73.437661, + 45.598701 + ], + [ + -73.438241, + 45.598406 + ], + [ + -73.438619, + 45.598226 + ], + [ + -73.43978, + 45.597624 + ], + [ + -73.439976, + 45.597521 + ], + [ + -73.440742, + 45.597138 + ], + [ + -73.441367, + 45.596828 + ], + [ + -73.441552, + 45.59672 + ], + [ + -73.441835, + 45.596541 + ], + [ + -73.442031, + 45.596415 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.442151, + 45.59567 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.439837, + 45.593937 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.437317, + 45.592072 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.436355, + 45.59135 + ], + [ + -73.436241, + 45.591437 + ], + [ + -73.43623, + 45.591445 + ], + [ + -73.435937, + 45.591669 + ], + [ + -73.435771, + 45.591809 + ], + [ + -73.435656, + 45.59193 + ], + [ + -73.435482, + 45.592133 + ], + [ + -73.435328, + 45.592303 + ], + [ + -73.435201, + 45.592416 + ], + [ + -73.435194, + 45.59242 + ], + [ + -73.434937, + 45.592614 + ], + [ + -73.434583, + 45.592879 + ], + [ + -73.434575, + 45.592883 + ], + [ + -73.434342, + 45.593054 + ], + [ + -73.434176, + 45.59318 + ], + [ + -73.433984, + 45.593306 + ], + [ + -73.433723, + 45.593472 + ], + [ + -73.433623, + 45.593526 + ], + [ + -73.433582, + 45.593589 + ], + [ + -73.433267, + 45.593751 + ], + [ + -73.43308, + 45.593591 + ], + [ + -73.432411, + 45.593022 + ], + [ + -73.432395, + 45.593009 + ], + [ + -73.431736, + 45.592481 + ], + [ + -73.431426, + 45.592216 + ], + [ + -73.430999, + 45.591887 + ], + [ + -73.430742, + 45.591724 + ], + [ + -73.430249, + 45.591315 + ], + [ + -73.430052, + 45.591144 + ], + [ + -73.430035, + 45.591102 + ], + [ + -73.429965, + 45.590937 + ], + [ + -73.429799, + 45.590246 + ], + [ + -73.429733, + 45.589972 + ], + [ + -73.429621, + 45.589502 + ], + [ + -73.429601, + 45.589438 + ], + [ + -73.429567, + 45.589376 + ], + [ + -73.429522, + 45.589319 + ], + [ + -73.429464, + 45.589267 + ], + [ + -73.429127, + 45.589004 + ], + [ + -73.429011, + 45.588919 + ], + [ + -73.429137, + 45.588834 + ], + [ + -73.429252, + 45.588761 + ], + [ + -73.429681, + 45.58849 + ], + [ + -73.430455, + 45.587999 + ], + [ + -73.430757, + 45.587808 + ], + [ + -73.43085, + 45.58775 + ], + [ + -73.431644, + 45.587248 + ], + [ + -73.431818, + 45.587179 + ], + [ + -73.431717, + 45.587092 + ], + [ + -73.431654, + 45.587036 + ], + [ + -73.431289, + 45.586718 + ], + [ + -73.430893, + 45.586393 + ], + [ + -73.430716, + 45.586245 + ], + [ + -73.430467, + 45.586051 + ], + [ + -73.430085, + 45.585745 + ], + [ + -73.429958, + 45.585646 + ], + [ + -73.429814, + 45.585537 + ], + [ + -73.429355, + 45.585183 + ], + [ + -73.426528, + 45.583004 + ], + [ + -73.426641, + 45.582922 + ], + [ + -73.426651, + 45.582915 + ], + [ + -73.427107, + 45.582619 + ], + [ + -73.427138, + 45.582598 + ], + [ + -73.42763, + 45.582284 + ], + [ + -73.428438, + 45.581777 + ], + [ + -73.428761, + 45.581574 + ], + [ + -73.429134, + 45.581335 + ], + [ + -73.429655, + 45.581003 + ], + [ + -73.429773, + 45.580926 + ], + [ + -73.42982, + 45.580902 + ], + [ + -73.430012, + 45.580805 + ], + [ + -73.430169, + 45.580742 + ], + [ + -73.430652, + 45.580544 + ], + [ + -73.431218, + 45.580311 + ], + [ + -73.431616, + 45.580122 + ], + [ + -73.431767, + 45.580048 + ], + [ + -73.4319, + 45.579983 + ], + [ + -73.432272, + 45.579794 + ], + [ + -73.432711, + 45.579565 + ], + [ + -73.43294, + 45.579444 + ], + [ + -73.433076, + 45.579354 + ], + [ + -73.433199, + 45.579264 + ], + [ + -73.43335, + 45.57912 + ], + [ + -73.433401, + 45.579067 + ], + [ + -73.433444, + 45.579021 + ], + [ + -73.43354, + 45.57889 + ], + [ + -73.433689, + 45.578652 + ], + [ + -73.433813, + 45.578436 + ], + [ + -73.434048, + 45.57804 + ], + [ + -73.434306, + 45.577609 + ], + [ + -73.434583, + 45.577154 + ], + [ + -73.434669, + 45.577024 + ], + [ + -73.434836, + 45.576741 + ], + [ + -73.435093, + 45.576309 + ], + [ + -73.435197, + 45.576138 + ], + [ + -73.43534, + 45.575913 + ], + [ + -73.43543, + 45.575778 + ], + [ + -73.435467, + 45.575724 + ], + [ + -73.435699, + 45.575382 + ], + [ + -73.435758, + 45.575293 + ], + [ + -73.43596, + 45.574982 + ], + [ + -73.436118, + 45.574717 + ], + [ + -73.436179, + 45.574618 + ], + [ + -73.436268, + 45.574456 + ], + [ + -73.436584, + 45.573804 + ], + [ + -73.436743, + 45.573842 + ], + [ + -73.437066, + 45.573921 + ], + [ + -73.437342, + 45.573989 + ], + [ + -73.438216, + 45.5742 + ], + [ + -73.438625, + 45.5743 + ], + [ + -73.439097, + 45.574403 + ], + [ + -73.43935, + 45.574476 + ], + [ + -73.43947, + 45.574525 + ], + [ + -73.439615, + 45.574593 + ], + [ + -73.439719, + 45.574665 + ], + [ + -73.439783, + 45.574716 + ], + [ + -73.440036, + 45.574917 + ], + [ + -73.440381, + 45.575187 + ], + [ + -73.440733, + 45.575462 + ], + [ + -73.441078, + 45.575736 + ], + [ + -73.441396, + 45.575988 + ], + [ + -73.441907, + 45.576399 + ], + [ + -73.44214, + 45.576587 + ], + [ + -73.44223, + 45.576659 + ], + [ + -73.442323, + 45.576754 + ], + [ + -73.442391, + 45.576835 + ], + [ + -73.442427, + 45.576893 + ], + [ + -73.442456, + 45.576961 + ], + [ + -73.442584, + 45.577456 + ], + [ + -73.442632, + 45.577699 + ], + [ + -73.442692, + 45.577982 + ], + [ + -73.442754, + 45.578324 + ], + [ + -73.442755, + 45.578328 + ], + [ + -73.442822, + 45.57868 + ], + [ + -73.44301, + 45.579552 + ], + [ + -73.443122, + 45.580146 + ], + [ + -73.443169, + 45.580299 + ], + [ + -73.443208, + 45.580496 + ], + [ + -73.443264, + 45.580785 + ], + [ + -73.443359, + 45.581199 + ], + [ + -73.443375, + 45.581348 + ], + [ + -73.443437, + 45.581532 + ], + [ + -73.443489, + 45.581649 + ], + [ + -73.443575, + 45.581784 + ], + [ + -73.443724, + 45.581969 + ], + [ + -73.443826, + 45.582072 + ], + [ + -73.445192, + 45.583151 + ], + [ + -73.445199, + 45.583169 + ], + [ + -73.445212, + 45.583213 + ], + [ + -73.445216, + 45.583229 + ], + [ + -73.445297, + 45.583292 + ], + [ + -73.44537, + 45.583351 + ], + [ + -73.445826, + 45.583707 + ], + [ + -73.44592, + 45.583788 + ], + [ + -73.446073, + 45.583824 + ], + [ + -73.446219, + 45.58371 + ], + [ + -73.446281, + 45.583662 + ], + [ + -73.446365, + 45.583594 + ], + [ + -73.446509, + 45.583477 + ], + [ + -73.446663, + 45.583334 + ], + [ + -73.446759, + 45.583239 + ], + [ + -73.446885, + 45.583095 + ], + [ + -73.447026, + 45.582915 + ], + [ + -73.44712, + 45.582776 + ], + [ + -73.447141, + 45.582738 + ], + [ + -73.447216, + 45.582605 + ], + [ + -73.447288, + 45.582456 + ], + [ + -73.447348, + 45.582322 + ], + [ + -73.447422, + 45.58211 + ], + [ + -73.447475, + 45.581885 + ], + [ + -73.447497, + 45.581732 + ], + [ + -73.447521, + 45.581602 + ], + [ + -73.447516, + 45.581462 + ], + [ + -73.447513, + 45.581287 + ], + [ + -73.447477, + 45.581057 + ], + [ + -73.447286, + 45.580117 + ], + [ + -73.447207, + 45.57973 + ], + [ + -73.447144, + 45.579424 + ], + [ + -73.447056, + 45.578992 + ], + [ + -73.447354, + 45.578963 + ], + [ + -73.447608, + 45.578938 + ], + [ + -73.448031, + 45.578893 + ], + [ + -73.44852, + 45.578844 + ], + [ + -73.449074, + 45.578786 + ], + [ + -73.450095, + 45.578683 + ], + [ + -73.450109, + 45.578683 + ], + [ + -73.450463, + 45.578688 + ], + [ + -73.450661, + 45.578706 + ], + [ + -73.450775, + 45.578719 + ], + [ + -73.450895, + 45.578737 + ], + [ + -73.451093, + 45.578791 + ], + [ + -73.451234, + 45.578836 + ], + [ + -73.451309, + 45.578863 + ], + [ + -73.451495, + 45.578945 + ], + [ + -73.451582, + 45.57899 + ], + [ + -73.451744, + 45.579089 + ], + [ + -73.451869, + 45.579174 + ], + [ + -73.452049, + 45.579311 + ], + [ + -73.452082, + 45.579336 + ], + [ + -73.452313, + 45.579516 + ], + [ + -73.452549, + 45.579701 + ], + [ + -73.453063, + 45.580097 + ], + [ + -73.453179, + 45.580196 + ], + [ + -73.453622, + 45.580543 + ], + [ + -73.453903, + 45.580759 + ], + [ + -73.45429, + 45.581056 + ], + [ + -73.455188, + 45.581753 + ], + [ + -73.455648, + 45.582118 + ], + [ + -73.456087, + 45.582456 + ], + [ + -73.456184, + 45.582528 + ], + [ + -73.456409, + 45.582702 + ], + [ + -73.457491, + 45.583541 + ], + [ + -73.458062, + 45.583986 + ], + [ + -73.458301, + 45.584171 + ], + [ + -73.458672, + 45.584459 + ], + [ + -73.459229, + 45.584891 + ], + [ + -73.459558, + 45.585148 + ], + [ + -73.459766, + 45.58531 + ], + [ + -73.459861, + 45.585382 + ], + [ + -73.460007, + 45.585499 + ], + [ + -73.460666, + 45.586014 + ], + [ + -73.461153, + 45.586394 + ], + [ + -73.461235, + 45.586304 + ], + [ + -73.461244, + 45.586293 + ], + [ + -73.461391, + 45.586115 + ], + [ + -73.461498, + 45.585994 + ], + [ + -73.461685, + 45.585787 + ], + [ + -73.461939, + 45.585508 + ], + [ + -73.462432, + 45.584973 + ], + [ + -73.462695, + 45.585153 + ], + [ + -73.463008, + 45.585396 + ], + [ + -73.463882, + 45.586067 + ], + [ + -73.466439, + 45.588038 + ], + [ + -73.466473, + 45.588072 + ], + [ + -73.466543, + 45.588142 + ], + [ + -73.466111, + 45.588492 + ], + [ + -73.465623, + 45.588888 + ], + [ + -73.46517, + 45.589257 + ], + [ + -73.464647, + 45.589698 + ], + [ + -73.46414, + 45.59017 + ], + [ + -73.464069, + 45.590233 + ], + [ + -73.463931, + 45.590341 + ], + [ + -73.463826, + 45.590404 + ], + [ + -73.463772, + 45.590426 + ], + [ + -73.463577, + 45.590467 + ], + [ + -73.463489, + 45.590489 + ], + [ + -73.463333, + 45.590507 + ], + [ + -73.463163, + 45.590516 + ], + [ + -73.462973, + 45.590525 + ], + [ + -73.462784, + 45.590539 + ], + [ + -73.462612, + 45.59057 + ], + [ + -73.46246, + 45.590601 + ], + [ + -73.462403, + 45.590622 + ], + [ + -73.462308, + 45.590655 + ], + [ + -73.462124, + 45.59075 + ], + [ + -73.462023, + 45.590822 + ], + [ + -73.461943, + 45.590894 + ], + [ + -73.461223, + 45.591488 + ], + [ + -73.461175, + 45.591528 + ], + [ + -73.46107, + 45.591613 + ], + [ + -73.460957, + 45.591717 + ], + [ + -73.460805, + 45.591865 + ], + [ + -73.460701, + 45.591996 + ], + [ + -73.460612, + 45.592117 + ], + [ + -73.460536, + 45.592252 + ], + [ + -73.460484, + 45.592382 + ], + [ + -73.46046, + 45.592459 + ], + [ + -73.46044, + 45.592544 + ], + [ + -73.460424, + 45.592634 + ], + [ + -73.460424, + 45.592715 + ], + [ + -73.460428, + 45.592832 + ], + [ + -73.46044, + 45.592958 + ], + [ + -73.460595, + 45.593596 + ], + [ + -73.460755, + 45.594214 + ], + [ + -73.460803, + 45.594245 + ], + [ + -73.460875, + 45.594286 + ], + [ + -73.460951, + 45.594317 + ], + [ + -73.460983, + 45.594327 + ], + [ + -73.461075, + 45.594358 + ], + [ + -73.461222, + 45.594399 + ], + [ + -73.461303, + 45.594263 + ], + [ + -73.461665, + 45.593593 + ], + [ + -73.461732, + 45.593494 + ], + [ + -73.461974, + 45.593139 + ], + [ + -73.462288, + 45.59272 + ], + [ + -73.462683, + 45.592307 + ], + [ + -73.463002, + 45.59201 + ], + [ + -73.463177, + 45.591852 + ], + [ + -73.463511, + 45.591551 + ], + [ + -73.464164, + 45.590993 + ], + [ + -73.464488, + 45.590697 + ], + [ + -73.464968, + 45.59022 + ], + [ + -73.465402, + 45.589802 + ], + [ + -73.465585, + 45.589586 + ], + [ + -73.46611, + 45.589143 + ], + [ + -73.468548, + 45.587089 + ], + [ + -73.468925, + 45.586766 + ], + [ + -73.469282, + 45.586424 + ], + [ + -73.469476, + 45.586217 + ], + [ + -73.469514, + 45.586173 + ], + [ + -73.46977, + 45.585875 + ], + [ + -73.470065, + 45.585497 + ], + [ + -73.470208, + 45.585295 + ], + [ + -73.470515, + 45.584795 + ], + [ + -73.470777, + 45.584346 + ], + [ + -73.470818, + 45.584266 + ], + [ + -73.471151, + 45.583659 + ], + [ + -73.471441, + 45.583163 + ], + [ + -73.471782, + 45.582588 + ], + [ + -73.471817, + 45.58253 + ], + [ + -73.471999, + 45.582223 + ], + [ + -73.472179, + 45.58194 + ], + [ + -73.472331, + 45.581716 + ], + [ + -73.472649, + 45.581329 + ], + [ + -73.47273, + 45.58124 + ], + [ + -73.472825, + 45.58114 + ], + [ + -73.473026, + 45.580958 + ], + [ + -73.473162, + 45.580835 + ], + [ + -73.473456, + 45.580601 + ], + [ + -73.473548, + 45.580529 + ], + [ + -73.474056, + 45.580187 + ], + [ + -73.474808, + 45.579703 + ], + [ + -73.474914, + 45.579634 + ], + [ + -73.475349, + 45.579354 + ], + [ + -73.475514, + 45.57924 + ], + [ + -73.475748, + 45.579059 + ], + [ + -73.476005, + 45.578855 + ], + [ + -73.476092, + 45.578785 + ], + [ + -73.476311, + 45.578613 + ], + [ + -73.476531, + 45.578426 + ], + [ + -73.477316, + 45.577756 + ], + [ + -73.478619, + 45.576654 + ], + [ + -73.478746, + 45.576546 + ], + [ + -73.484311, + 45.57178 + ], + [ + -73.485291, + 45.570941 + ], + [ + -73.485924, + 45.570374 + ], + [ + -73.486543, + 45.569794 + ], + [ + -73.487144, + 45.5692 + ], + [ + -73.487404, + 45.56893 + ], + [ + -73.487725, + 45.568597 + ], + [ + -73.488283, + 45.567985 + ], + [ + -73.489005, + 45.567148 + ], + [ + -73.489524, + 45.56651 + ], + [ + -73.490025, + 45.565857 + ], + [ + -73.490348, + 45.565416 + ], + [ + -73.490386, + 45.565361 + ], + [ + -73.490811, + 45.564746 + ], + [ + -73.492757, + 45.561799 + ], + [ + -73.492857, + 45.561658 + ], + [ + -73.493231, + 45.561129 + ], + [ + -73.493558, + 45.560688 + ], + [ + -73.493892, + 45.560256 + ], + [ + -73.494237, + 45.559829 + ], + [ + -73.495756, + 45.557998 + ], + [ + -73.497576, + 45.555807 + ], + [ + -73.499922, + 45.552981 + ], + [ + -73.501151, + 45.551492 + ], + [ + -73.501185, + 45.551451 + ], + [ + -73.501844, + 45.550646 + ], + [ + -73.502872, + 45.549445 + ], + [ + -73.503379, + 45.548883 + ], + [ + -73.503558, + 45.548684 + ], + [ + -73.506777, + 45.545262 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.509561, + 45.542397 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.512103, + 45.540351 + ], + [ + -73.513737, + 45.539183 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.516706, + 45.536713 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.519972, + 45.53288 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523209, + 45.53011 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523837, + 45.530517 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.520207, + 45.529538 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.518113, + 45.527978 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.518296, + 45.525369 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520062, + 45.523395 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521985, + 45.524134 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 183, + "properties": { + "id": "e9453549-3239-4b07-93e8-78ed7c02fab2", + "data": { + "gtfs": { + "shape_id": "84_1_A" + }, + "segments": [ + { + "distanceMeters": 437, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 464, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 421, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 490, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 504, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 575, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 808, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 579, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 402, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 530, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 493, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 459, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 481, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 597, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 497, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 508, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 566, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 641, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 453, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 479, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 344, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 424, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 444, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 397, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 451, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 701, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 399, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 461, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 455, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 466, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 561, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 482, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 386, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 497, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 413, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 471, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 413, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 501, + "travelTimeSeconds": 33 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 25820, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 0, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 14.34, + "travelTimeWithoutDwellTimesSeconds": 1800, + "operatingTimeWithLayoverTimeSeconds": 1980, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1800, + "operatingSpeedWithLayoverMetersPerSecond": 13.04, + "averageSpeedWithoutDwellTimesMetersPerSecond": 14.34 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "2f7a97d2-c790-4f58-9a63-010938bbaf69", + "b54db9a8-0c8c-43a8-a385-bc532fde3f70", + "21aac851-6052-4e4d-8167-df2d9a876338", + "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", + "c650007a-bdeb-4831-9df5-833406e44887", + "8babca8c-ebff-46bc-b0c6-b6576c4fada6", + "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", + "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", + "50c385af-a7f1-479f-b40d-4ed198aca8ce", + "b32eb408-e9c7-49ab-afd7-56523f4ec990", + "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", + "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", + "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "6b55fd05-7687-457e-ae9d-e87027c7100f", + "494d9db6-32c6-4aa3-9c11-91eba915c58f", + "f7429ca8-1ccc-41e7-acab-a5d3915affbb", + "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", + "e134e428-8d59-4d84-966a-ce83afff1c1c", + "7ca4f3b1-99df-4499-964b-1702513ad59f", + "7d34a327-717a-432e-93f5-7310ac20c2c2", + "abeb197b-490c-4d67-8abe-37d08d73ce70", + "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", + "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", + "628308c5-3a00-44cb-908b-068616e8e618", + "47dc43f6-90db-4837-be84-0b5d8a2becb4", + "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", + "fc32be78-9480-4dfc-b10c-475dc000dd04", + "0872c388-8faf-4852-b4ce-cf3f6312e0ef", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "ed16ff8f-f2f4-4914-b93b-f48229e580b7", + "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", + "de3d06d6-88af-49e3-b183-9464b2f111c8", + "3613b472-6055-4b55-9c89-01a451d82804", + "4cd6eb13-aeec-4716-a3d3-8e1a38389723", + "9ad04c6c-abc1-49fe-8f36-db6146dd5c5c", + "3dedf179-3478-4b4d-b706-36e0a8981094", + "3bd4e28f-2392-4d87-96de-a2ab53d75020", + "ba6e04e1-77fc-4b3f-86d2-fd956b418882", + "3ff2d59e-aa78-4d80-b1c5-f7852a289411", + "dda3c3c1-6952-475f-8547-789fb757f7c6", + "b09cf260-c832-4cf7-bb1b-ef1c96c3308c", + "969d12ef-c40c-4428-9c70-2251a9d71a5e", + "d63304a9-15dd-4cf4-8ec7-3f7d0c080252", + "589841be-b3c7-4f02-a8e7-b24569959def", + "3f07914c-7958-4cd1-a0a6-c2c9e04cc913", + "b94a5730-dab3-4715-a12c-41d1c300a3ab", + "7b512bac-ad2d-4d5a-87d8-173290a7b311", + "44ce6da8-ee79-4e09-9c16-f31566643c0c", + "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", + "43c9714a-9286-4827-a621-a7c2f8cbdfb6", + "5d689515-eb8c-46f5-b76c-9783188effbb", + "b0a54de7-81a4-4a54-ac92-70b7a1a6f8cd", + "a6014278-4b2c-4dc8-a0d9-22c0ac11eb1c", + "3370bd8e-b7b2-4aab-8679-28f57be8da19", + "a3ce54d5-25e0-4e55-a21f-2d2c2139447f", + "1f0a0267-b7e7-48ae-bd8a-a1242dd984ed", + "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", + "21aac851-6052-4e4d-8167-df2d9a876338", + "b54db9a8-0c8c-43a8-a385-bc532fde3f70", + "2f7a97d2-c790-4f58-9a63-010938bbaf69" + ], + "stops": [], + "line_id": "e597daaa-7703-4108-a2f9-fbf932e44edb", + "segments": [ + 0, + 5, + 14, + 23, + 34, + 55, + 71, + 82, + 90, + 98, + 101, + 109, + 133, + 141, + 146, + 164, + 180, + 188, + 213, + 223, + 235, + 248, + 255, + 274, + 290, + 296, + 306, + 323, + 328, + 355, + 367, + 388, + 401, + 414, + 424, + 443, + 468, + 478, + 485, + 490, + 500, + 512, + 522, + 524, + 529, + 536, + 539, + 544, + 545, + 548, + 551, + 553, + 558, + 562, + 563, + 571, + 573, + 583, + 611, + 616, + 638, + 652 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 183, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.417166, + 45.573686 + ], + [ + -73.417361, + 45.573566 + ], + [ + -73.417844, + 45.573274 + ], + [ + -73.418465, + 45.57287 + ], + [ + -73.418508, + 45.572842 + ], + [ + -73.418867, + 45.572673 + ], + [ + -73.419305, + 45.572484 + ], + [ + -73.419819, + 45.572339 + ], + [ + -73.420285, + 45.572239 + ], + [ + -73.420304, + 45.572236 + ], + [ + -73.420344, + 45.572231 + ], + [ + -73.420818, + 45.572175 + ], + [ + -73.421486, + 45.572145 + ], + [ + -73.42168, + 45.572163 + ], + [ + -73.422173, + 45.572209 + ], + [ + -73.422755, + 45.572304 + ], + [ + -73.423131, + 45.572412 + ], + [ + -73.423691, + 45.572591 + ], + [ + -73.423823, + 45.572648 + ], + [ + -73.423927, + 45.572694 + ], + [ + -73.424736, + 45.573135 + ], + [ + -73.424874, + 45.573252 + ], + [ + -73.425125, + 45.573486 + ], + [ + -73.425353, + 45.573729 + ], + [ + -73.425532, + 45.573954 + ], + [ + -73.425663, + 45.574161 + ], + [ + -73.425717, + 45.574247 + ], + [ + -73.426126, + 45.574157 + ], + [ + -73.426291, + 45.574126 + ], + [ + -73.426552, + 45.57418 + ], + [ + -73.426825, + 45.574234 + ], + [ + -73.427053, + 45.574401 + ], + [ + -73.427243, + 45.574532 + ], + [ + -73.427298, + 45.57457 + ], + [ + -73.427307, + 45.574576 + ], + [ + -73.427385, + 45.574631 + ], + [ + -73.426917, + 45.574981 + ], + [ + -73.426842, + 45.575057 + ], + [ + -73.426691, + 45.57521 + ], + [ + -73.426479, + 45.575525 + ], + [ + -73.426344, + 45.575782 + ], + [ + -73.426267, + 45.575971 + ], + [ + -73.426217, + 45.576146 + ], + [ + -73.426194, + 45.576312 + ], + [ + -73.426191, + 45.576488 + ], + [ + -73.426194, + 45.576722 + ], + [ + -73.426236, + 45.576978 + ], + [ + -73.426309, + 45.577172 + ], + [ + -73.426471, + 45.577494 + ], + [ + -73.42652, + 45.57759 + ], + [ + -73.426569, + 45.577671 + ], + [ + -73.426668, + 45.577779 + ], + [ + -73.426759, + 45.577874 + ], + [ + -73.426905, + 45.578027 + ], + [ + -73.427025, + 45.578144 + ], + [ + -73.427164, + 45.578266 + ], + [ + -73.42839, + 45.579198 + ], + [ + -73.428455, + 45.579247 + ], + [ + -73.429652, + 45.580152 + ], + [ + -73.4299, + 45.580427 + ], + [ + -73.430074, + 45.58063 + ], + [ + -73.430169, + 45.580742 + ], + [ + -73.430652, + 45.580544 + ], + [ + -73.431047, + 45.580381 + ], + [ + -73.431218, + 45.580311 + ], + [ + -73.43177, + 45.580734 + ], + [ + -73.431814, + 45.580767 + ], + [ + -73.432012, + 45.580914 + ], + [ + -73.432359, + 45.581193 + ], + [ + -73.432709, + 45.581473 + ], + [ + -73.433005, + 45.581702 + ], + [ + -73.433016, + 45.581711 + ], + [ + -73.433315, + 45.58195 + ], + [ + -73.434334, + 45.58272 + ], + [ + -73.434479, + 45.582859 + ], + [ + -73.43455, + 45.582945 + ], + [ + -73.434594, + 45.583057 + ], + [ + -73.434593, + 45.583147 + ], + [ + -73.434573, + 45.58326 + ], + [ + -73.434532, + 45.583372 + ], + [ + -73.434475, + 45.583458 + ], + [ + -73.434434, + 45.58351 + ], + [ + -73.434386, + 45.58357 + ], + [ + -73.43465, + 45.583624 + ], + [ + -73.434811, + 45.583651 + ], + [ + -73.434837, + 45.583656 + ], + [ + -73.435024, + 45.583692 + ], + [ + -73.435442, + 45.583791 + ], + [ + -73.435641, + 45.583881 + ], + [ + -73.435838, + 45.584003 + ], + [ + -73.437185, + 45.585048 + ], + [ + -73.437636, + 45.585399 + ], + [ + -73.438042, + 45.585678 + ], + [ + -73.4381, + 45.585741 + ], + [ + -73.438139, + 45.585831 + ], + [ + -73.438171, + 45.586006 + ], + [ + -73.43819, + 45.586156 + ], + [ + -73.438207, + 45.586281 + ], + [ + -73.438254, + 45.586654 + ], + [ + -73.438278, + 45.58696 + ], + [ + -73.438322, + 45.587343 + ], + [ + -73.438347, + 45.587571 + ], + [ + -73.438361, + 45.587689 + ], + [ + -73.438397, + 45.58804 + ], + [ + -73.438434, + 45.588373 + ], + [ + -73.438459, + 45.588481 + ], + [ + -73.438525, + 45.588647 + ], + [ + -73.438608, + 45.58876 + ], + [ + -73.438667, + 45.588827 + ], + [ + -73.438743, + 45.588908 + ], + [ + -73.438814, + 45.588976 + ], + [ + -73.439357, + 45.589421 + ], + [ + -73.43944, + 45.589489 + ], + [ + -73.439556, + 45.58957 + ], + [ + -73.439699, + 45.589468 + ], + [ + -73.43977, + 45.589417 + ], + [ + -73.43999, + 45.589251 + ], + [ + -73.440244, + 45.589057 + ], + [ + -73.440356, + 45.588972 + ], + [ + -73.440499, + 45.588855 + ], + [ + -73.440849, + 45.588559 + ], + [ + -73.441414, + 45.588033 + ], + [ + -73.441626, + 45.587839 + ], + [ + -73.442055, + 45.587448 + ], + [ + -73.442542, + 45.586998 + ], + [ + -73.443381, + 45.586235 + ], + [ + -73.4435, + 45.586126 + ], + [ + -73.444473, + 45.585236 + ], + [ + -73.444685, + 45.585042 + ], + [ + -73.445533, + 45.584264 + ], + [ + -73.445859, + 45.583998 + ], + [ + -73.446073, + 45.583824 + ], + [ + -73.446281, + 45.583662 + ], + [ + -73.446365, + 45.583594 + ], + [ + -73.446509, + 45.583477 + ], + [ + -73.446663, + 45.583334 + ], + [ + -73.446759, + 45.583239 + ], + [ + -73.446885, + 45.583095 + ], + [ + -73.447026, + 45.582915 + ], + [ + -73.44712, + 45.582776 + ], + [ + -73.447192, + 45.582647 + ], + [ + -73.447216, + 45.582605 + ], + [ + -73.447288, + 45.582456 + ], + [ + -73.447435, + 45.582484 + ], + [ + -73.447444, + 45.582485 + ], + [ + -73.447893, + 45.582578 + ], + [ + -73.448106, + 45.582673 + ], + [ + -73.44829, + 45.582785 + ], + [ + -73.448524, + 45.582986 + ], + [ + -73.448601, + 45.583051 + ], + [ + -73.448755, + 45.583159 + ], + [ + -73.448893, + 45.583258 + ], + [ + -73.450205, + 45.584302 + ], + [ + -73.45063, + 45.58464 + ], + [ + -73.450731, + 45.584712 + ], + [ + -73.450841, + 45.584784 + ], + [ + -73.450993, + 45.584856 + ], + [ + -73.451251, + 45.58494 + ], + [ + -73.451368, + 45.584978 + ], + [ + -73.451209, + 45.585217 + ], + [ + -73.451142, + 45.58532 + ], + [ + -73.450986, + 45.585558 + ], + [ + -73.45054, + 45.586242 + ], + [ + -73.450427, + 45.586473 + ], + [ + -73.450426, + 45.586476 + ], + [ + -73.450392, + 45.586557 + ], + [ + -73.450263, + 45.586754 + ], + [ + -73.449511, + 45.58791 + ], + [ + -73.449458, + 45.58799 + ], + [ + -73.449407, + 45.588068 + ], + [ + -73.449275, + 45.588284 + ], + [ + -73.44924, + 45.588342 + ], + [ + -73.449234, + 45.588387 + ], + [ + -73.449252, + 45.588411 + ], + [ + -73.449272, + 45.588437 + ], + [ + -73.44976, + 45.588831 + ], + [ + -73.449846, + 45.5889 + ], + [ + -73.45019, + 45.589166 + ], + [ + -73.450502, + 45.589414 + ], + [ + -73.450902, + 45.58972 + ], + [ + -73.451407, + 45.590116 + ], + [ + -73.451448, + 45.590149 + ], + [ + -73.451698, + 45.59035 + ], + [ + -73.452327, + 45.590854 + ], + [ + -73.452695, + 45.591147 + ], + [ + -73.45292, + 45.591326 + ], + [ + -73.453034, + 45.591417 + ], + [ + -73.453444, + 45.591745 + ], + [ + -73.453948, + 45.592143 + ], + [ + -73.454347, + 45.592458 + ], + [ + -73.454414, + 45.592511 + ], + [ + -73.454848, + 45.592862 + ], + [ + -73.455223, + 45.593082 + ], + [ + -73.455854, + 45.593569 + ], + [ + -73.455819, + 45.593656 + ], + [ + -73.455756, + 45.593816 + ], + [ + -73.455693, + 45.594006 + ], + [ + -73.455619, + 45.594225 + ], + [ + -73.455387, + 45.594185 + ], + [ + -73.455163, + 45.594144 + ], + [ + -73.455072, + 45.594122 + ], + [ + -73.455013, + 45.59409 + ], + [ + -73.454889, + 45.594009 + ], + [ + -73.454817, + 45.593955 + ], + [ + -73.454739, + 45.593883 + ], + [ + -73.454523, + 45.594018 + ], + [ + -73.454452, + 45.594099 + ], + [ + -73.454385, + 45.594198 + ], + [ + -73.454348, + 45.594256 + ], + [ + -73.454311, + 45.594418 + ], + [ + -73.45429, + 45.594533 + ], + [ + -73.454266, + 45.59466 + ], + [ + -73.45424, + 45.594796 + ], + [ + -73.454226, + 45.594898 + ], + [ + -73.454204, + 45.595062 + ], + [ + -73.454151, + 45.595322 + ], + [ + -73.454092, + 45.595664 + ], + [ + -73.453999, + 45.596101 + ], + [ + -73.453991, + 45.596137 + ], + [ + -73.453931, + 45.596308 + ], + [ + -73.453871, + 45.596596 + ], + [ + -73.453794, + 45.596785 + ], + [ + -73.453715, + 45.596906 + ], + [ + -73.453626, + 45.596997 + ], + [ + -73.453592, + 45.597032 + ], + [ + -73.453377, + 45.59718 + ], + [ + -73.452948, + 45.597441 + ], + [ + -73.452243, + 45.597868 + ], + [ + -73.452056, + 45.597977 + ], + [ + -73.451924, + 45.598053 + ], + [ + -73.45178, + 45.59812 + ], + [ + -73.451434, + 45.59821 + ], + [ + -73.451106, + 45.598269 + ], + [ + -73.450519, + 45.598376 + ], + [ + -73.450323, + 45.59838 + ], + [ + -73.449948, + 45.598342 + ], + [ + -73.449753, + 45.598322 + ], + [ + -73.449408, + 45.598272 + ], + [ + -73.44922, + 45.59824 + ], + [ + -73.448998, + 45.598218 + ], + [ + -73.448839, + 45.598249 + ], + [ + -73.448684, + 45.598328 + ], + [ + -73.448549, + 45.598398 + ], + [ + -73.448171, + 45.59861 + ], + [ + -73.447731, + 45.598856 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447421, + 45.599401 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.448106, + 45.599967 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449825, + 45.601331 + ], + [ + -73.449842, + 45.601358 + ], + [ + -73.449882, + 45.601394 + ], + [ + -73.449937, + 45.601432 + ], + [ + -73.449974, + 45.601468 + ], + [ + -73.450006, + 45.601497 + ], + [ + -73.450033, + 45.601528 + ], + [ + -73.450045, + 45.601571 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.450329, + 45.600811 + ], + [ + -73.450306, + 45.600781 + ], + [ + -73.45028, + 45.600747 + ], + [ + -73.45017, + 45.600666 + ], + [ + -73.450081, + 45.60062 + ], + [ + -73.449968, + 45.600603 + ], + [ + -73.449925, + 45.600607 + ], + [ + -73.449868, + 45.600621 + ], + [ + -73.449802, + 45.600661 + ], + [ + -73.449715, + 45.600713 + ], + [ + -73.449674, + 45.600743 + ], + [ + -73.449661, + 45.600772 + ], + [ + -73.449666, + 45.600812 + ], + [ + -73.449924, + 45.601045 + ], + [ + -73.449978, + 45.601072 + ], + [ + -73.450055, + 45.601083 + ], + [ + -73.45017, + 45.60109 + ], + [ + -73.450263, + 45.601099 + ], + [ + -73.450328, + 45.601118 + ], + [ + -73.450379, + 45.601155 + ], + [ + -73.450393, + 45.601201 + ], + [ + -73.450376, + 45.60125 + ], + [ + -73.450362, + 45.601293 + ], + [ + -73.450349, + 45.601366 + ], + [ + -73.450328, + 45.601396 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450295, + 45.60142 + ], + [ + -73.450274, + 45.60143 + ], + [ + -73.450229, + 45.60144 + ], + [ + -73.450195, + 45.601446 + ], + [ + -73.450161, + 45.601455 + ], + [ + -73.450131, + 45.601466 + ], + [ + -73.450095, + 45.601482 + ], + [ + -73.450073, + 45.601501 + ], + [ + -73.450052, + 45.601522 + ], + [ + -73.450048, + 45.601541 + ], + [ + -73.450048, + 45.601565 + ], + [ + -73.450051, + 45.601586 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450683, + 45.601629 + ], + [ + -73.45076, + 45.601581 + ], + [ + -73.450865, + 45.60153 + ], + [ + -73.451136, + 45.601427 + ], + [ + -73.451322, + 45.601341 + ], + [ + -73.45143, + 45.601269 + ], + [ + -73.451545, + 45.601187 + ], + [ + -73.451753, + 45.601 + ], + [ + -73.451762, + 45.60099 + ], + [ + -73.451831, + 45.600914 + ], + [ + -73.451899, + 45.600828 + ], + [ + -73.451961, + 45.600734 + ], + [ + -73.452054, + 45.600554 + ], + [ + -73.452082, + 45.600442 + ], + [ + -73.452078, + 45.600293 + ], + [ + -73.452054, + 45.600172 + ], + [ + -73.45194, + 45.599798 + ], + [ + -73.451915, + 45.599672 + ], + [ + -73.451904, + 45.599524 + ], + [ + -73.451926, + 45.59938 + ], + [ + -73.451964, + 45.599267 + ], + [ + -73.452063, + 45.599123 + ], + [ + -73.452183, + 45.598993 + ], + [ + -73.452318, + 45.598881 + ], + [ + -73.452477, + 45.598768 + ], + [ + -73.452963, + 45.598458 + ], + [ + -73.45458, + 45.597401 + ], + [ + -73.459437, + 45.594497 + ], + [ + -73.459888, + 45.594213 + ], + [ + -73.46035, + 45.593903 + ], + [ + -73.460702, + 45.593647 + ], + [ + -73.461218, + 45.593251 + ], + [ + -73.46178, + 45.592783 + ], + [ + -73.465585, + 45.589586 + ], + [ + -73.468548, + 45.587089 + ], + [ + -73.468925, + 45.586766 + ], + [ + -73.469282, + 45.586424 + ], + [ + -73.469476, + 45.586217 + ], + [ + -73.46977, + 45.585875 + ], + [ + -73.470065, + 45.585497 + ], + [ + -73.470208, + 45.585295 + ], + [ + -73.470515, + 45.584795 + ], + [ + -73.470777, + 45.584346 + ], + [ + -73.470818, + 45.584266 + ], + [ + -73.471151, + 45.583659 + ], + [ + -73.471441, + 45.583163 + ], + [ + -73.471782, + 45.582588 + ], + [ + -73.471999, + 45.582223 + ], + [ + -73.472179, + 45.58194 + ], + [ + -73.472331, + 45.581716 + ], + [ + -73.472649, + 45.581329 + ], + [ + -73.47273, + 45.58124 + ], + [ + -73.472825, + 45.58114 + ], + [ + -73.473026, + 45.580958 + ], + [ + -73.473162, + 45.580835 + ], + [ + -73.473456, + 45.580601 + ], + [ + -73.473548, + 45.580529 + ], + [ + -73.474056, + 45.580187 + ], + [ + -73.474914, + 45.579634 + ], + [ + -73.475349, + 45.579354 + ], + [ + -73.475514, + 45.57924 + ], + [ + -73.475748, + 45.579059 + ], + [ + -73.476005, + 45.578855 + ], + [ + -73.476092, + 45.578785 + ], + [ + -73.476311, + 45.578613 + ], + [ + -73.476531, + 45.578426 + ], + [ + -73.477316, + 45.577756 + ], + [ + -73.478746, + 45.576546 + ], + [ + -73.485291, + 45.570941 + ], + [ + -73.485924, + 45.570374 + ], + [ + -73.486543, + 45.569794 + ], + [ + -73.487144, + 45.5692 + ], + [ + -73.487725, + 45.568597 + ], + [ + -73.488283, + 45.567985 + ], + [ + -73.489005, + 45.567148 + ], + [ + -73.489524, + 45.56651 + ], + [ + -73.490025, + 45.565857 + ], + [ + -73.490348, + 45.565416 + ], + [ + -73.490811, + 45.564746 + ], + [ + -73.492757, + 45.561799 + ], + [ + -73.493231, + 45.561129 + ], + [ + -73.493558, + 45.560688 + ], + [ + -73.493892, + 45.560256 + ], + [ + -73.494237, + 45.559829 + ], + [ + -73.499922, + 45.552981 + ], + [ + -73.501151, + 45.551492 + ], + [ + -73.501844, + 45.550646 + ], + [ + -73.502872, + 45.549445 + ], + [ + -73.503558, + 45.548684 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.522965, + 45.530118 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.517551, + 45.525432 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519846, + 45.523384 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522394, + 45.524142 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 184, + "properties": { + "id": "e3f6b19f-982f-496b-8f5f-0d77862f6b98", + "data": { + "gtfs": { + "shape_id": "85_1_A" + }, + "segments": [ + { + "distanceMeters": 136, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 364, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 112, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 415, + "travelTimeSeconds": 94 + }, + { + "distanceMeters": 12141, + "travelTimeSeconds": 840 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 222, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 19583, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 9879.2506362516, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.82, + "travelTimeWithoutDwellTimesSeconds": 2220, + "operatingTimeWithLayoverTimeSeconds": 2442, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2220, + "operatingSpeedWithLayoverMetersPerSecond": 8.02, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.82 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "80eb2b2c-3d80-431d-851d-8665038b93b7", + "8c73c7f2-6a19-4272-8988-4cd9987871b8", + "0b2fb021-eaa4-4107-8980-c7b3bc7fd9a9", + "dba0b7ad-62f7-4b47-ac93-15546ef421d6", + "90388705-b26a-4b3b-a643-8ef39d04ff02", + "25b68a02-d85c-4b7b-b822-bc26c51b07b7", + "0a48a466-5f09-4ad5-911d-e79d40ef78d2", + "8680b7f3-dcb9-422f-a458-e2745493c66f", + "9f16d6ec-8397-4d95-9ce8-1980aa76ecbc", + "ba6e04e1-77fc-4b3f-86d2-fd956b418882", + "c02424dc-f033-4be6-a66b-8712f3e4b064", + "a304bcbf-a90b-4a1c-90fd-af05d73c3bdb", + "f2e35f7f-c43e-48a9-8610-6fc945acde4b", + "39ff7687-30f4-4336-ad6e-7651a86ce308", + "5195ea00-9368-4dce-8167-c17b61cec6aa", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", + "2cdb15ef-cdbd-4b50-8947-cb9baee33626", + "7b512bac-ad2d-4d5a-87d8-173290a7b311", + "44ce6da8-ee79-4e09-9c16-f31566643c0c", + "aa89250f-af50-4115-bf1b-21a034e9dba5", + "f68b9483-e1df-4343-949f-67cf0f140f1c", + "78a5cdb0-2073-4ddc-876e-4b4491cc4cd9", + "e57d7fe5-d3ac-4549-8c17-bc7891d2fb5c", + "7556ee28-3088-47e4-8621-ee5ed1aeb9fd", + "aa3e9b29-cdbb-464c-8a8b-fae908f7b00f", + "7a859698-99f4-4c31-b351-953ef9867df6", + "e4ed3729-d139-4568-882c-36c81b8c1d41", + "50c385af-a7f1-479f-b40d-4ed198aca8ce", + "b32eb408-e9c7-49ab-afd7-56523f4ec990", + "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", + "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", + "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", + "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", + "bbe875bc-cb85-4a61-923d-53ee4746a213", + "4c755ece-2475-4915-941e-37859f0f391f" + ], + "stops": [], + "line_id": "da4ec63c-1521-4b36-8457-a6d5caa1b3e7", + "segments": [ + 0, + 3, + 9, + 13, + 18, + 25, + 32, + 48, + 56, + 63, + 71, + 81, + 90, + 96, + 101, + 111, + 117, + 125, + 127, + 130, + 140, + 148, + 157, + 163, + 168, + 175, + 181, + 185, + 189, + 196, + 213, + 217, + 228, + 241, + 251, + 300 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 184, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.52252, + 45.524045 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523527, + 45.52795 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.503549, + 45.548419 + ], + [ + -73.502986, + 45.54904 + ], + [ + -73.502097, + 45.550079 + ], + [ + -73.501025, + 45.551361 + ], + [ + -73.500319, + 45.55223 + ], + [ + -73.497146, + 45.556054 + ], + [ + -73.496787, + 45.55649 + ], + [ + -73.495905, + 45.557543 + ], + [ + -73.495369, + 45.558173 + ], + [ + -73.494314, + 45.559446 + ], + [ + -73.493461, + 45.560499 + ], + [ + -73.492975, + 45.561151 + ], + [ + -73.492659, + 45.561597 + ], + [ + -73.492068, + 45.562474 + ], + [ + -73.49148, + 45.563383 + ], + [ + -73.490434, + 45.564962 + ], + [ + -73.489967, + 45.565619 + ], + [ + -73.489477, + 45.566267 + ], + [ + -73.488962, + 45.566906 + ], + [ + -73.48825, + 45.567747 + ], + [ + -73.487877, + 45.568161 + ], + [ + -73.487301, + 45.568777 + ], + [ + -73.486712, + 45.56938 + ], + [ + -73.486308, + 45.569771 + ], + [ + -73.485474, + 45.570545 + ], + [ + -73.48461, + 45.571301 + ], + [ + -73.483654, + 45.572115 + ], + [ + -73.478606, + 45.576433 + ], + [ + -73.478028, + 45.576933 + ], + [ + -73.477248, + 45.577607 + ], + [ + -73.476645, + 45.578128 + ], + [ + -73.475915, + 45.578754 + ], + [ + -73.475553, + 45.579033 + ], + [ + -73.474887, + 45.579478 + ], + [ + -73.474437, + 45.579762 + ], + [ + -73.474095, + 45.580005 + ], + [ + -73.473853, + 45.580158 + ], + [ + -73.473398, + 45.580472 + ], + [ + -73.473077, + 45.58072 + ], + [ + -73.472886, + 45.580886 + ], + [ + -73.472612, + 45.581152 + ], + [ + -73.472574, + 45.581196 + ], + [ + -73.472319, + 45.581482 + ], + [ + -73.472175, + 45.581673 + ], + [ + -73.471994, + 45.581936 + ], + [ + -73.47191, + 45.582061 + ], + [ + -73.471753, + 45.582326 + ], + [ + -73.471543, + 45.582681 + ], + [ + -73.471245, + 45.583188 + ], + [ + -73.471013, + 45.58358 + ], + [ + -73.470714, + 45.584071 + ], + [ + -73.470067, + 45.585151 + ], + [ + -73.469784, + 45.585547 + ], + [ + -73.469628, + 45.585749 + ], + [ + -73.469287, + 45.586145 + ], + [ + -73.469101, + 45.586343 + ], + [ + -73.468904, + 45.586536 + ], + [ + -73.468695, + 45.586725 + ], + [ + -73.466029, + 45.588965 + ], + [ + -73.465851, + 45.589127 + ], + [ + -73.465429, + 45.589482 + ], + [ + -73.463709, + 45.590917 + ], + [ + -73.461267, + 45.592977 + ], + [ + -73.460579, + 45.593525 + ], + [ + -73.460036, + 45.593907 + ], + [ + -73.459551, + 45.594222 + ], + [ + -73.459088, + 45.594506 + ], + [ + -73.458501, + 45.594856 + ], + [ + -73.45527, + 45.596781 + ], + [ + -73.453729, + 45.597707 + ], + [ + -73.451702, + 45.598916 + ], + [ + -73.448041, + 45.60111 + ], + [ + -73.447074, + 45.601603 + ], + [ + -73.446821, + 45.601731 + ], + [ + -73.446355, + 45.601965 + ], + [ + -73.445994, + 45.602119 + ], + [ + -73.445612, + 45.602242 + ], + [ + -73.44521, + 45.602301 + ], + [ + -73.444975, + 45.602301 + ], + [ + -73.444719, + 45.602254 + ], + [ + -73.444513, + 45.602165 + ], + [ + -73.444191, + 45.601923 + ], + [ + -73.443738, + 45.601567 + ], + [ + -73.443655, + 45.601499 + ], + [ + -73.443509, + 45.601378 + ], + [ + -73.444182, + 45.600973 + ], + [ + -73.444832, + 45.600591 + ], + [ + -73.445172, + 45.600385 + ], + [ + -73.445341, + 45.600286 + ], + [ + -73.445606, + 45.600133 + ], + [ + -73.446043, + 45.599863 + ], + [ + -73.446679, + 45.599485 + ], + [ + -73.446908, + 45.599337 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447375, + 45.599364 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.448089, + 45.599953 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449825, + 45.601331 + ], + [ + -73.449842, + 45.601358 + ], + [ + -73.449882, + 45.601394 + ], + [ + -73.449937, + 45.601432 + ], + [ + -73.449974, + 45.601468 + ], + [ + -73.450006, + 45.601497 + ], + [ + -73.450033, + 45.601528 + ], + [ + -73.450045, + 45.601571 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.45023, + 45.601805 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.450329, + 45.600811 + ], + [ + -73.450319, + 45.600797 + ], + [ + -73.45028, + 45.600747 + ], + [ + -73.45017, + 45.600666 + ], + [ + -73.450081, + 45.60062 + ], + [ + -73.449968, + 45.600603 + ], + [ + -73.449925, + 45.600607 + ], + [ + -73.449868, + 45.600621 + ], + [ + -73.449802, + 45.600661 + ], + [ + -73.449715, + 45.600713 + ], + [ + -73.449674, + 45.600743 + ], + [ + -73.449661, + 45.600772 + ], + [ + -73.449666, + 45.600812 + ], + [ + -73.449924, + 45.601045 + ], + [ + -73.449978, + 45.601072 + ], + [ + -73.450055, + 45.601083 + ], + [ + -73.45017, + 45.60109 + ], + [ + -73.450263, + 45.601099 + ], + [ + -73.450328, + 45.601118 + ], + [ + -73.450379, + 45.601155 + ], + [ + -73.450393, + 45.601201 + ], + [ + -73.450376, + 45.60125 + ], + [ + -73.450362, + 45.601293 + ], + [ + -73.450349, + 45.601366 + ], + [ + -73.450328, + 45.601396 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450247, + 45.601412 + ], + [ + -73.450159, + 45.601408 + ], + [ + -73.450117, + 45.6014 + ], + [ + -73.450076, + 45.601382 + ], + [ + -73.450018, + 45.601356 + ], + [ + -73.449945, + 45.60132 + ], + [ + -73.449881, + 45.6013 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.4479, + 45.599803 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447328, + 45.599095 + ], + [ + -73.447593, + 45.598938 + ], + [ + -73.447731, + 45.598856 + ], + [ + -73.448171, + 45.59861 + ], + [ + -73.448549, + 45.598398 + ], + [ + -73.448749, + 45.598295 + ], + [ + -73.448839, + 45.598249 + ], + [ + -73.448998, + 45.598218 + ], + [ + -73.44922, + 45.59824 + ], + [ + -73.449408, + 45.598272 + ], + [ + -73.449753, + 45.598322 + ], + [ + -73.449948, + 45.598342 + ], + [ + -73.450323, + 45.59838 + ], + [ + -73.450519, + 45.598376 + ], + [ + -73.451106, + 45.598269 + ], + [ + -73.451434, + 45.59821 + ], + [ + -73.45166, + 45.598151 + ], + [ + -73.45178, + 45.59812 + ], + [ + -73.451924, + 45.598053 + ], + [ + -73.452243, + 45.597868 + ], + [ + -73.452948, + 45.597441 + ], + [ + -73.453377, + 45.59718 + ], + [ + -73.453592, + 45.597032 + ], + [ + -73.453626, + 45.596997 + ], + [ + -73.453715, + 45.596906 + ], + [ + -73.453794, + 45.596785 + ], + [ + -73.453871, + 45.596596 + ], + [ + -73.453877, + 45.596566 + ], + [ + -73.453931, + 45.596308 + ], + [ + -73.453991, + 45.596137 + ], + [ + -73.454092, + 45.595664 + ], + [ + -73.454151, + 45.595322 + ], + [ + -73.454172, + 45.595217 + ], + [ + -73.454204, + 45.595062 + ], + [ + -73.45424, + 45.594796 + ], + [ + -73.454266, + 45.59466 + ], + [ + -73.454311, + 45.594418 + ], + [ + -73.454348, + 45.594256 + ], + [ + -73.454385, + 45.594198 + ], + [ + -73.454452, + 45.594099 + ], + [ + -73.454523, + 45.594018 + ], + [ + -73.454739, + 45.593883 + ], + [ + -73.454817, + 45.593955 + ], + [ + -73.454889, + 45.594009 + ], + [ + -73.455013, + 45.59409 + ], + [ + -73.455072, + 45.594122 + ], + [ + -73.455163, + 45.594144 + ], + [ + -73.455276, + 45.594165 + ], + [ + -73.455387, + 45.594185 + ], + [ + -73.455619, + 45.594225 + ], + [ + -73.455711, + 45.593951 + ], + [ + -73.455756, + 45.593816 + ], + [ + -73.455854, + 45.593569 + ], + [ + -73.455297, + 45.593139 + ], + [ + -73.455223, + 45.593082 + ], + [ + -73.454848, + 45.592862 + ], + [ + -73.454505, + 45.592584 + ], + [ + -73.454414, + 45.592511 + ], + [ + -73.453444, + 45.591745 + ], + [ + -73.453112, + 45.591479 + ], + [ + -73.453034, + 45.591417 + ], + [ + -73.452695, + 45.591147 + ], + [ + -73.452327, + 45.590854 + ], + [ + -73.451698, + 45.59035 + ], + [ + -73.45153, + 45.590215 + ], + [ + -73.451407, + 45.590116 + ], + [ + -73.450902, + 45.58972 + ], + [ + -73.450502, + 45.589414 + ], + [ + -73.45019, + 45.589166 + ], + [ + -73.449979, + 45.589003 + ], + [ + -73.449846, + 45.5889 + ], + [ + -73.449272, + 45.588437 + ], + [ + -73.449234, + 45.588387 + ], + [ + -73.44924, + 45.588342 + ], + [ + -73.449275, + 45.588284 + ], + [ + -73.449407, + 45.588068 + ], + [ + -73.449428, + 45.588037 + ], + [ + -73.449511, + 45.58791 + ], + [ + -73.450216, + 45.586826 + ], + [ + -73.450263, + 45.586754 + ], + [ + -73.450392, + 45.586557 + ], + [ + -73.450426, + 45.586476 + ], + [ + -73.45054, + 45.586242 + ], + [ + -73.450986, + 45.585558 + ], + [ + -73.451142, + 45.58532 + ], + [ + -73.451311, + 45.585064 + ], + [ + -73.451368, + 45.584978 + ], + [ + -73.451108, + 45.584893 + ], + [ + -73.450993, + 45.584856 + ], + [ + -73.450841, + 45.584784 + ], + [ + -73.450731, + 45.584712 + ], + [ + -73.45063, + 45.58464 + ], + [ + -73.450205, + 45.584302 + ], + [ + -73.449028, + 45.583365 + ], + [ + -73.448893, + 45.583258 + ], + [ + -73.448755, + 45.583159 + ], + [ + -73.448601, + 45.583051 + ], + [ + -73.44829, + 45.582785 + ], + [ + -73.448106, + 45.582673 + ], + [ + -73.447893, + 45.582578 + ], + [ + -73.447563, + 45.58251 + ], + [ + -73.447435, + 45.582484 + ], + [ + -73.447288, + 45.582456 + ], + [ + -73.447144, + 45.582429 + ], + [ + -73.447073, + 45.582571 + ], + [ + -73.447053, + 45.582609 + ], + [ + -73.44698, + 45.58274 + ], + [ + -73.446895, + 45.58287 + ], + [ + -73.446759, + 45.583041 + ], + [ + -73.446638, + 45.583181 + ], + [ + -73.446546, + 45.58327 + ], + [ + -73.446413, + 45.583392 + ], + [ + -73.446149, + 45.583603 + ], + [ + -73.446124, + 45.583623 + ], + [ + -73.446013, + 45.583711 + ], + [ + -73.445968, + 45.583747 + ], + [ + -73.44592, + 45.583788 + ], + [ + -73.445774, + 45.583904 + ], + [ + -73.445416, + 45.584201 + ], + [ + -73.444583, + 45.584958 + ], + [ + -73.44456, + 45.584979 + ], + [ + -73.444401, + 45.585119 + ], + [ + -73.443489, + 45.585956 + ], + [ + -73.443398, + 45.58604 + ], + [ + -73.44263, + 45.586742 + ], + [ + -73.442422, + 45.586935 + ], + [ + -73.442064, + 45.587259 + ], + [ + -73.44183, + 45.58747 + ], + [ + -73.441505, + 45.587776 + ], + [ + -73.441295, + 45.58797 + ], + [ + -73.440323, + 45.588832 + ], + [ + -73.440242, + 45.588905 + ], + [ + -73.439836, + 45.589215 + ], + [ + -73.439603, + 45.589381 + ], + [ + -73.439545, + 45.589422 + ], + [ + -73.43944, + 45.589489 + ], + [ + -73.439052, + 45.589171 + ], + [ + -73.438814, + 45.588976 + ], + [ + -73.438743, + 45.588908 + ], + [ + -73.438667, + 45.588827 + ], + [ + -73.438608, + 45.58876 + ], + [ + -73.438525, + 45.588647 + ], + [ + -73.438459, + 45.588481 + ], + [ + -73.438434, + 45.588373 + ], + [ + -73.438397, + 45.58804 + ], + [ + -73.438382, + 45.587898 + ], + [ + -73.438361, + 45.587689 + ], + [ + -73.438322, + 45.587343 + ], + [ + -73.438278, + 45.58696 + ], + [ + -73.438254, + 45.586654 + ], + [ + -73.438229, + 45.586455 + ], + [ + -73.438207, + 45.586281 + ], + [ + -73.438171, + 45.586006 + ], + [ + -73.438139, + 45.585831 + ], + [ + -73.4381, + 45.585741 + ], + [ + -73.438042, + 45.585678 + ], + [ + -73.437636, + 45.585399 + ], + [ + -73.437154, + 45.585024 + ], + [ + -73.435838, + 45.584003 + ], + [ + -73.435641, + 45.583881 + ], + [ + -73.435442, + 45.583791 + ], + [ + -73.435024, + 45.583692 + ], + [ + -73.434811, + 45.583651 + ], + [ + -73.43465, + 45.583624 + ], + [ + -73.434643, + 45.583623 + ], + [ + -73.434386, + 45.58357 + ], + [ + -73.434475, + 45.583458 + ], + [ + -73.434512, + 45.583402 + ], + [ + -73.434532, + 45.583372 + ], + [ + -73.434573, + 45.58326 + ], + [ + -73.434593, + 45.583147 + ], + [ + -73.434594, + 45.583057 + ], + [ + -73.43455, + 45.582945 + ], + [ + -73.434479, + 45.582859 + ], + [ + -73.434334, + 45.58272 + ], + [ + -73.433525, + 45.582109 + ], + [ + -73.433315, + 45.58195 + ], + [ + -73.433005, + 45.581702 + ], + [ + -73.432709, + 45.581473 + ], + [ + -73.432359, + 45.581193 + ], + [ + -73.432012, + 45.580914 + ], + [ + -73.43177, + 45.580734 + ], + [ + -73.431382, + 45.580437 + ], + [ + -73.431218, + 45.580311 + ], + [ + -73.430904, + 45.580441 + ], + [ + -73.430652, + 45.580544 + ], + [ + -73.430169, + 45.580742 + ], + [ + -73.4299, + 45.580427 + ], + [ + -73.429663, + 45.580164 + ], + [ + -73.429652, + 45.580152 + ], + [ + -73.428455, + 45.579247 + ], + [ + -73.428306, + 45.579134 + ], + [ + -73.427164, + 45.578266 + ], + [ + -73.427025, + 45.578144 + ], + [ + -73.426905, + 45.578027 + ], + [ + -73.426759, + 45.577874 + ], + [ + -73.426668, + 45.577779 + ], + [ + -73.426569, + 45.577671 + ], + [ + -73.426565, + 45.577665 + ], + [ + -73.42652, + 45.57759 + ], + [ + -73.426309, + 45.577172 + ], + [ + -73.426236, + 45.576978 + ], + [ + -73.426194, + 45.576722 + ], + [ + -73.426191, + 45.576488 + ], + [ + -73.426194, + 45.576312 + ], + [ + -73.426217, + 45.576146 + ], + [ + -73.426267, + 45.575971 + ], + [ + -73.426344, + 45.575782 + ], + [ + -73.426479, + 45.575525 + ], + [ + -73.426691, + 45.57521 + ], + [ + -73.426842, + 45.575057 + ], + [ + -73.426917, + 45.574981 + ], + [ + -73.427246, + 45.574734 + ], + [ + -73.427385, + 45.574631 + ], + [ + -73.427307, + 45.574576 + ], + [ + -73.427053, + 45.574401 + ], + [ + -73.427033, + 45.574386 + ], + [ + -73.426825, + 45.574234 + ], + [ + -73.426552, + 45.57418 + ], + [ + -73.426291, + 45.574126 + ], + [ + -73.426126, + 45.574157 + ], + [ + -73.425912, + 45.574204 + ], + [ + -73.425717, + 45.574247 + ], + [ + -73.425532, + 45.573954 + ], + [ + -73.425353, + 45.573729 + ], + [ + -73.425125, + 45.573486 + ], + [ + -73.424874, + 45.573252 + ], + [ + -73.424736, + 45.573135 + ], + [ + -73.424027, + 45.572748 + ], + [ + -73.423927, + 45.572694 + ], + [ + -73.423691, + 45.572591 + ], + [ + -73.423131, + 45.572412 + ], + [ + -73.422755, + 45.572304 + ], + [ + -73.422173, + 45.572209 + ], + [ + -73.421978, + 45.572191 + ], + [ + -73.421486, + 45.572145 + ], + [ + -73.420818, + 45.572175 + ], + [ + -73.420398, + 45.572225 + ], + [ + -73.420344, + 45.572231 + ], + [ + -73.420285, + 45.572239 + ], + [ + -73.419819, + 45.572339 + ], + [ + -73.419305, + 45.572484 + ], + [ + -73.418867, + 45.572673 + ], + [ + -73.418645, + 45.572778 + ], + [ + -73.418508, + 45.572842 + ], + [ + -73.417844, + 45.573274 + ], + [ + -73.41744, + 45.573518 + ] + ] + }, + "id": 185, + "properties": { + "id": "490764e1-ce5b-4ebd-a05e-84a0f3fe3da9", + "data": { + "gtfs": { + "shape_id": "85_2_R" + }, + "segments": [ + { + "distanceMeters": 11205, + "travelTimeSeconds": 665 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 415, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 439, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 404, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 83, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 345, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 353, + "travelTimeSeconds": 79 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 29 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 192, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 19529, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 9879.2506362516, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 10.17, + "travelTimeWithoutDwellTimesSeconds": 1920, + "operatingTimeWithLayoverTimeSeconds": 2112, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1920, + "operatingSpeedWithLayoverMetersPerSecond": 9.25, + "averageSpeedWithoutDwellTimesMetersPerSecond": 10.17 + }, + "mode": "bus", + "name": "de Gascogne", + "color": "#A32638", + "nodes": [ + "4c755ece-2475-4915-941e-37859f0f391f", + "494d9db6-32c6-4aa3-9c11-91eba915c58f", + "6b55fd05-7687-457e-ae9d-e87027c7100f", + "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", + "bbe875bc-cb85-4a61-923d-53ee4746a213", + "96c08dfd-d2e7-4584-a6b3-36c3a2e1abcc", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", + "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", + "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", + "b32eb408-e9c7-49ab-afd7-56523f4ec990", + "50c385af-a7f1-479f-b40d-4ed198aca8ce", + "e4ed3729-d139-4568-882c-36c81b8c1d41", + "7a859698-99f4-4c31-b351-953ef9867df6", + "aa3e9b29-cdbb-464c-8a8b-fae908f7b00f", + "7556ee28-3088-47e4-8621-ee5ed1aeb9fd", + "e57d7fe5-d3ac-4549-8c17-bc7891d2fb5c", + "78a5cdb0-2073-4ddc-876e-4b4491cc4cd9", + "f68b9483-e1df-4343-949f-67cf0f140f1c", + "aa89250f-af50-4115-bf1b-21a034e9dba5", + "44ce6da8-ee79-4e09-9c16-f31566643c0c", + "7b512bac-ad2d-4d5a-87d8-173290a7b311", + "2cdb15ef-cdbd-4b50-8947-cb9baee33626", + "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "5195ea00-9368-4dce-8167-c17b61cec6aa", + "39ff7687-30f4-4336-ad6e-7651a86ce308", + "f2e35f7f-c43e-48a9-8610-6fc945acde4b", + "a304bcbf-a90b-4a1c-90fd-af05d73c3bdb", + "c02424dc-f033-4be6-a66b-8712f3e4b064", + "ba6e04e1-77fc-4b3f-86d2-fd956b418882", + "9f16d6ec-8397-4d95-9ce8-1980aa76ecbc", + "8680b7f3-dcb9-422f-a458-e2745493c66f", + "0a48a466-5f09-4ad5-911d-e79d40ef78d2", + "25b68a02-d85c-4b7b-b822-bc26c51b07b7", + "90388705-b26a-4b3b-a643-8ef39d04ff02", + "dba0b7ad-62f7-4b47-ac93-15546ef421d6", + "0b2fb021-eaa4-4107-8980-c7b3bc7fd9a9", + "8c73c7f2-6a19-4272-8988-4cd9987871b8", + "80eb2b2c-3d80-431d-851d-8665038b93b7" + ], + "stops": [], + "line_id": "da4ec63c-1521-4b36-8457-a6d5caa1b3e7", + "segments": [ + 0, + 125, + 130, + 141, + 191, + 228, + 235, + 239, + 250, + 261, + 266, + 284, + 290, + 293, + 298, + 303, + 310, + 312, + 319, + 327, + 334, + 347, + 353, + 356, + 364, + 367, + 379, + 384, + 391, + 398, + 409, + 416, + 425, + 432, + 446, + 455, + 462, + 468, + 471, + 477 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 185, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.435041, + 45.59036 + ], + [ + -73.435014, + 45.590337 + ], + [ + -73.434983, + 45.59031 + ], + [ + -73.434944, + 45.590279 + ], + [ + -73.434884, + 45.590234 + ], + [ + -73.434715, + 45.590103 + ], + [ + -73.4342, + 45.589657 + ], + [ + -73.433894, + 45.589368 + ], + [ + -73.433885, + 45.58936 + ], + [ + -73.433674, + 45.589158 + ], + [ + -73.433253, + 45.588702 + ], + [ + -73.432226, + 45.587579 + ], + [ + -73.432034, + 45.587385 + ], + [ + -73.431883, + 45.587238 + ], + [ + -73.431877, + 45.587232 + ], + [ + -73.431818, + 45.587179 + ], + [ + -73.431717, + 45.587092 + ], + [ + -73.431289, + 45.586718 + ], + [ + -73.430893, + 45.586393 + ], + [ + -73.430716, + 45.586245 + ], + [ + -73.430467, + 45.586051 + ], + [ + -73.430107, + 45.585762 + ], + [ + -73.430085, + 45.585745 + ], + [ + -73.429958, + 45.585646 + ], + [ + -73.429814, + 45.585537 + ], + [ + -73.428484, + 45.584512 + ], + [ + -73.42668, + 45.583121 + ], + [ + -73.426528, + 45.583004 + ], + [ + -73.426641, + 45.582922 + ], + [ + -73.427107, + 45.582619 + ], + [ + -73.427138, + 45.582598 + ], + [ + -73.42763, + 45.582284 + ], + [ + -73.428145, + 45.581961 + ], + [ + -73.428556, + 45.581702 + ], + [ + -73.428761, + 45.581574 + ], + [ + -73.429134, + 45.581335 + ], + [ + -73.429655, + 45.581003 + ], + [ + -73.429773, + 45.580926 + ], + [ + -73.42982, + 45.580902 + ], + [ + -73.430012, + 45.580805 + ], + [ + -73.430169, + 45.580742 + ], + [ + -73.430652, + 45.580544 + ], + [ + -73.43104, + 45.580384 + ], + [ + -73.431218, + 45.580311 + ], + [ + -73.43177, + 45.580734 + ], + [ + -73.432012, + 45.580914 + ], + [ + -73.432359, + 45.581193 + ], + [ + -73.432709, + 45.581473 + ], + [ + -73.433005, + 45.581702 + ], + [ + -73.433011, + 45.581707 + ], + [ + -73.433315, + 45.58195 + ], + [ + -73.434334, + 45.58272 + ], + [ + -73.434479, + 45.582859 + ], + [ + -73.43455, + 45.582945 + ], + [ + -73.434594, + 45.583057 + ], + [ + -73.434593, + 45.583147 + ], + [ + -73.434573, + 45.58326 + ], + [ + -73.434532, + 45.583372 + ], + [ + -73.434475, + 45.583458 + ], + [ + -73.434438, + 45.583505 + ], + [ + -73.434386, + 45.58357 + ], + [ + -73.43465, + 45.583624 + ], + [ + -73.43469, + 45.583631 + ], + [ + -73.434811, + 45.583651 + ], + [ + -73.435024, + 45.583692 + ], + [ + -73.435442, + 45.583791 + ], + [ + -73.435641, + 45.583881 + ], + [ + -73.435838, + 45.584003 + ], + [ + -73.437179, + 45.585044 + ], + [ + -73.437636, + 45.585399 + ], + [ + -73.438042, + 45.585678 + ], + [ + -73.4381, + 45.585741 + ], + [ + -73.438139, + 45.585831 + ], + [ + -73.438171, + 45.586006 + ], + [ + -73.43819, + 45.58615 + ], + [ + -73.438207, + 45.586281 + ], + [ + -73.438254, + 45.586654 + ], + [ + -73.438278, + 45.58696 + ], + [ + -73.438322, + 45.587343 + ], + [ + -73.438347, + 45.587565 + ], + [ + -73.438361, + 45.587689 + ], + [ + -73.438397, + 45.58804 + ], + [ + -73.438434, + 45.588373 + ], + [ + -73.438459, + 45.588481 + ], + [ + -73.438525, + 45.588647 + ], + [ + -73.438608, + 45.58876 + ], + [ + -73.438667, + 45.588827 + ], + [ + -73.438743, + 45.588908 + ], + [ + -73.438814, + 45.588976 + ], + [ + -73.439133, + 45.589237 + ], + [ + -73.439351, + 45.589416 + ], + [ + -73.43944, + 45.589489 + ], + [ + -73.439556, + 45.58957 + ], + [ + -73.43977, + 45.589417 + ], + [ + -73.43999, + 45.589251 + ], + [ + -73.440237, + 45.589062 + ], + [ + -73.440356, + 45.588972 + ], + [ + -73.440489, + 45.58904 + ], + [ + -73.4409, + 45.589283 + ], + [ + -73.441126, + 45.589423 + ], + [ + -73.441169, + 45.589469 + ], + [ + -73.441196, + 45.589499 + ], + [ + -73.441426, + 45.589823 + ], + [ + -73.441784, + 45.590332 + ], + [ + -73.442026, + 45.59066 + ], + [ + -73.442182, + 45.590883 + ], + [ + -73.44224, + 45.590966 + ], + [ + -73.442582, + 45.591336 + ], + [ + -73.442948, + 45.591732 + ], + [ + -73.443153, + 45.591988 + ], + [ + -73.443182, + 45.592056 + ], + [ + -73.443255, + 45.592258 + ], + [ + -73.443289, + 45.59238 + ], + [ + -73.443333, + 45.592528 + ], + [ + -73.443364, + 45.592618 + ], + [ + -73.443554, + 45.593158 + ], + [ + -73.443581, + 45.593242 + ], + [ + -73.443815, + 45.593977 + ], + [ + -73.44393, + 45.594306 + ], + [ + -73.444038, + 45.594472 + ], + [ + -73.444209, + 45.594648 + ], + [ + -73.444384, + 45.594778 + ], + [ + -73.444601, + 45.594868 + ], + [ + -73.444881, + 45.594976 + ], + [ + -73.445271, + 45.595115 + ], + [ + -73.445274, + 45.595116 + ], + [ + -73.445401, + 45.595148 + ], + [ + -73.445373, + 45.595278 + ], + [ + -73.445328, + 45.595355 + ], + [ + -73.445245, + 45.595436 + ], + [ + -73.4452, + 45.595467 + ], + [ + -73.445101, + 45.595534 + ], + [ + -73.444968, + 45.595606 + ], + [ + -73.444718, + 45.595759 + ], + [ + -73.444544, + 45.595865 + ], + [ + -73.444437, + 45.59593 + ], + [ + -73.443627, + 45.596451 + ], + [ + -73.443528, + 45.596515 + ], + [ + -73.443394, + 45.596559 + ], + [ + -73.442992, + 45.59628 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442031, + 45.596415 + ], + [ + -73.441835, + 45.596541 + ], + [ + -73.441552, + 45.59672 + ], + [ + -73.441367, + 45.596828 + ], + [ + -73.441272, + 45.596875 + ], + [ + -73.440742, + 45.597138 + ], + [ + -73.439976, + 45.597521 + ], + [ + -73.43978, + 45.597624 + ], + [ + -73.438748, + 45.598159 + ], + [ + -73.438619, + 45.598226 + ], + [ + -73.438241, + 45.598406 + ], + [ + -73.437622, + 45.598721 + ], + [ + -73.43732, + 45.5989 + ], + [ + -73.437156, + 45.599026 + ], + [ + -73.437096, + 45.599079 + ], + [ + -73.437027, + 45.599139 + ], + [ + -73.43685, + 45.599305 + ], + [ + -73.436464, + 45.59969 + ], + [ + -73.436408, + 45.599746 + ], + [ + -73.436103, + 45.600029 + ], + [ + -73.435984, + 45.600152 + ], + [ + -73.435806, + 45.600335 + ], + [ + -73.435516, + 45.600609 + ], + [ + -73.435271, + 45.600843 + ], + [ + -73.43499, + 45.601122 + ], + [ + -73.434686, + 45.601396 + ], + [ + -73.434596, + 45.601477 + ], + [ + -73.434475, + 45.601531 + ], + [ + -73.434166, + 45.601679 + ], + [ + -73.433739, + 45.601863 + ], + [ + -73.432706, + 45.602245 + ], + [ + -73.431263, + 45.60278 + ], + [ + -73.430877, + 45.603027 + ], + [ + -73.430617, + 45.603192 + ], + [ + -73.430523, + 45.603252 + ], + [ + -73.429967, + 45.603607 + ], + [ + -73.429453, + 45.603926 + ], + [ + -73.42903, + 45.604191 + ], + [ + -73.428659, + 45.604423 + ], + [ + -73.428653, + 45.604427 + ], + [ + -73.428564, + 45.604483 + ], + [ + -73.427475, + 45.60518 + ], + [ + -73.427444, + 45.605211 + ], + [ + -73.427423, + 45.605237 + ], + [ + -73.427407, + 45.605278 + ], + [ + -73.427406, + 45.605312 + ], + [ + -73.427424, + 45.605353 + ], + [ + -73.427432, + 45.605363 + ], + [ + -73.42746, + 45.605399 + ], + [ + -73.427603, + 45.605522 + ], + [ + -73.427955, + 45.605795 + ], + [ + -73.427998, + 45.605828 + ], + [ + -73.428173, + 45.605959 + ], + [ + -73.428311, + 45.606067 + ], + [ + -73.428495, + 45.606184 + ], + [ + -73.42867, + 45.606274 + ], + [ + -73.42886, + 45.60635 + ], + [ + -73.429112, + 45.606427 + ], + [ + -73.429341, + 45.606472 + ], + [ + -73.429637, + 45.60652 + ], + [ + -73.429954, + 45.606572 + ], + [ + -73.430121, + 45.606599 + ], + [ + -73.430876, + 45.606707 + ], + [ + -73.431493, + 45.606793 + ], + [ + -73.431775, + 45.606798 + ], + [ + -73.431993, + 45.60678 + ], + [ + -73.43227, + 45.606721 + ], + [ + -73.432434, + 45.606672 + ], + [ + -73.432556, + 45.606624 + ], + [ + -73.432607, + 45.606605 + ], + [ + -73.432928, + 45.606464 + ], + [ + -73.433088, + 45.606393 + ], + [ + -73.433751, + 45.606088 + ], + [ + -73.436303, + 45.60492 + ], + [ + -73.436609, + 45.60478 + ], + [ + -73.436809, + 45.604689 + ], + [ + -73.436923, + 45.604637 + ], + [ + -73.437443, + 45.604403 + ], + [ + -73.437897, + 45.604195 + ], + [ + -73.437975, + 45.60416 + ], + [ + -73.438466, + 45.603935 + ], + [ + -73.438822, + 45.603769 + ], + [ + -73.441516, + 45.602542 + ], + [ + -73.441922, + 45.602327 + ], + [ + -73.442509, + 45.60198 + ], + [ + -73.443055, + 45.601648 + ], + [ + -73.443179, + 45.601574 + ], + [ + -73.443509, + 45.601378 + ], + [ + -73.444182, + 45.600973 + ], + [ + -73.444832, + 45.600591 + ], + [ + -73.445172, + 45.600385 + ], + [ + -73.44537, + 45.60027 + ], + [ + -73.445606, + 45.600133 + ], + [ + -73.446043, + 45.599863 + ], + [ + -73.446679, + 45.599485 + ], + [ + -73.446908, + 45.599337 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.448286, + 45.60011 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449825, + 45.601331 + ], + [ + -73.449842, + 45.601358 + ], + [ + -73.449882, + 45.601394 + ], + [ + -73.449937, + 45.601432 + ], + [ + -73.449974, + 45.601468 + ], + [ + -73.450006, + 45.601497 + ], + [ + -73.450033, + 45.601528 + ], + [ + -73.450045, + 45.601571 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450452, + 45.601873 + ], + [ + -73.45054, + 45.60193 + ], + [ + -73.450604, + 45.601966 + ], + [ + -73.450658, + 45.602007 + ], + [ + -73.450717, + 45.602019 + ], + [ + -73.450804, + 45.602087 + ], + [ + -73.450997, + 45.602236 + ], + [ + -73.451134, + 45.602344 + ], + [ + -73.45153, + 45.602655 + ], + [ + -73.45156, + 45.602679 + ], + [ + -73.452634, + 45.603524 + ], + [ + -73.452751, + 45.603609 + ], + [ + -73.453115, + 45.603891 + ], + [ + -73.453124, + 45.603897 + ], + [ + -73.453269, + 45.60401 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453904, + 45.604474 + ], + [ + -73.454133, + 45.604694 + ], + [ + -73.454539, + 45.605032 + ], + [ + -73.454935, + 45.605328 + ], + [ + -73.455171, + 45.605504 + ], + [ + -73.455782, + 45.605973 + ], + [ + -73.456001, + 45.606135 + ], + [ + -73.456106, + 45.606225 + ], + [ + -73.45638, + 45.606432 + ], + [ + -73.456464, + 45.606472 + ], + [ + -73.45647, + 45.606473 + ], + [ + -73.456606, + 45.606499 + ], + [ + -73.456639, + 45.606189 + ], + [ + -73.456753, + 45.605752 + ], + [ + -73.456765, + 45.605708 + ], + [ + -73.456875, + 45.605321 + ], + [ + -73.457004, + 45.60488 + ], + [ + -73.457101, + 45.604499 + ], + [ + -73.457136, + 45.604362 + ], + [ + -73.457297, + 45.603715 + ], + [ + -73.457484, + 45.603017 + ], + [ + -73.457663, + 45.602423 + ], + [ + -73.457695, + 45.602338 + ], + [ + -73.457833, + 45.601965 + ], + [ + -73.458077, + 45.601272 + ], + [ + -73.458415, + 45.600417 + ], + [ + -73.458417, + 45.600413 + ], + [ + -73.45861, + 45.599891 + ], + [ + -73.458773, + 45.599468 + ], + [ + -73.458929, + 45.599081 + ], + [ + -73.45906, + 45.598784 + ], + [ + -73.459106, + 45.598681 + ], + [ + -73.459108, + 45.598678 + ], + [ + -73.459297, + 45.598249 + ], + [ + -73.459417, + 45.597961 + ], + [ + -73.459667, + 45.59743 + ], + [ + -73.459796, + 45.597151 + ], + [ + -73.459959, + 45.596854 + ], + [ + -73.459966, + 45.596842 + ], + [ + -73.460279, + 45.596211 + ], + [ + -73.460377, + 45.59604 + ], + [ + -73.460508, + 45.595878 + ], + [ + -73.461071, + 45.594695 + ], + [ + -73.461074, + 45.594689 + ], + [ + -73.461222, + 45.594399 + ], + [ + -73.461303, + 45.594263 + ], + [ + -73.461665, + 45.593593 + ], + [ + -73.461974, + 45.593139 + ], + [ + -73.462288, + 45.59272 + ], + [ + -73.462683, + 45.592307 + ], + [ + -73.463002, + 45.59201 + ], + [ + -73.463511, + 45.591551 + ], + [ + -73.464164, + 45.590993 + ], + [ + -73.464488, + 45.590697 + ], + [ + -73.464968, + 45.59022 + ], + [ + -73.465402, + 45.589802 + ], + [ + -73.465585, + 45.589586 + ], + [ + -73.468548, + 45.587089 + ], + [ + -73.468925, + 45.586766 + ], + [ + -73.469282, + 45.586424 + ], + [ + -73.469476, + 45.586217 + ], + [ + -73.46977, + 45.585875 + ], + [ + -73.470065, + 45.585497 + ], + [ + -73.470208, + 45.585295 + ], + [ + -73.470515, + 45.584795 + ], + [ + -73.470777, + 45.584346 + ], + [ + -73.470818, + 45.584266 + ], + [ + -73.471151, + 45.583659 + ], + [ + -73.471441, + 45.583163 + ], + [ + -73.471782, + 45.582588 + ], + [ + -73.471999, + 45.582223 + ], + [ + -73.472179, + 45.58194 + ], + [ + -73.472331, + 45.581716 + ], + [ + -73.472649, + 45.581329 + ], + [ + -73.47273, + 45.58124 + ], + [ + -73.472825, + 45.58114 + ], + [ + -73.473026, + 45.580958 + ], + [ + -73.473162, + 45.580835 + ], + [ + -73.473456, + 45.580601 + ], + [ + -73.473548, + 45.580529 + ], + [ + -73.474056, + 45.580187 + ], + [ + -73.474914, + 45.579634 + ], + [ + -73.475349, + 45.579354 + ], + [ + -73.475514, + 45.57924 + ], + [ + -73.475748, + 45.579059 + ], + [ + -73.476005, + 45.578855 + ], + [ + -73.476092, + 45.578785 + ], + [ + -73.476311, + 45.578613 + ], + [ + -73.476531, + 45.578426 + ], + [ + -73.477316, + 45.577756 + ], + [ + -73.478746, + 45.576546 + ], + [ + -73.485291, + 45.570941 + ], + [ + -73.485924, + 45.570374 + ], + [ + -73.486543, + 45.569794 + ], + [ + -73.487144, + 45.5692 + ], + [ + -73.487725, + 45.568597 + ], + [ + -73.488283, + 45.567985 + ], + [ + -73.489005, + 45.567148 + ], + [ + -73.489524, + 45.56651 + ], + [ + -73.490025, + 45.565857 + ], + [ + -73.490348, + 45.565416 + ], + [ + -73.490811, + 45.564746 + ], + [ + -73.492757, + 45.561799 + ], + [ + -73.493231, + 45.561129 + ], + [ + -73.493558, + 45.560688 + ], + [ + -73.493892, + 45.560256 + ], + [ + -73.494237, + 45.559829 + ], + [ + -73.499922, + 45.552981 + ], + [ + -73.501151, + 45.551492 + ], + [ + -73.501844, + 45.550646 + ], + [ + -73.502872, + 45.549445 + ], + [ + -73.503558, + 45.548684 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522764, + 45.530162 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.51669, + 45.526331 + ], + [ + -73.516564, + 45.52594 + ], + [ + -73.516314, + 45.525224 + ], + [ + -73.516296, + 45.525161 + ], + [ + -73.516288, + 45.525131 + ], + [ + -73.516317, + 45.525053 + ], + [ + -73.516302, + 45.524919 + ], + [ + -73.516294, + 45.524734 + ], + [ + -73.516303, + 45.524604 + ], + [ + -73.516345, + 45.52437 + ], + [ + -73.516405, + 45.524203 + ], + [ + -73.516578, + 45.523623 + ], + [ + -73.516683, + 45.523438 + ], + [ + -73.516765, + 45.523305 + ], + [ + -73.516823, + 45.523209 + ], + [ + -73.516951, + 45.523069 + ], + [ + -73.517159, + 45.522876 + ], + [ + -73.517395, + 45.522705 + ], + [ + -73.517522, + 45.522552 + ], + [ + -73.518003, + 45.522345 + ], + [ + -73.518219, + 45.522255 + ], + [ + -73.518483, + 45.522178 + ], + [ + -73.518751, + 45.522111 + ], + [ + -73.518959, + 45.52207 + ], + [ + -73.519211, + 45.522021 + ], + [ + -73.519463, + 45.521967 + ], + [ + -73.520583, + 45.521872 + ], + [ + -73.522213, + 45.521732 + ], + [ + -73.523688, + 45.521608 + ], + [ + -73.525933, + 45.521416 + ], + [ + -73.534391, + 45.520735 + ], + [ + -73.534716, + 45.520716 + ], + [ + -73.535006, + 45.520706 + ], + [ + -73.535439, + 45.520719 + ], + [ + -73.535574, + 45.520734 + ], + [ + -73.535886, + 45.520771 + ], + [ + -73.536216, + 45.520827 + ], + [ + -73.538962, + 45.521314 + ], + [ + -73.546713, + 45.522688 + ], + [ + -73.546899, + 45.522724 + ], + [ + -73.547126, + 45.522828 + ], + [ + -73.550978, + 45.524639 + ], + [ + -73.5511, + 45.524684 + ], + [ + -73.551293, + 45.524734 + ], + [ + -73.553654, + 45.525353 + ], + [ + -73.553877, + 45.52543 + ], + [ + -73.554163, + 45.525542 + ], + [ + -73.554506, + 45.525695 + ], + [ + -73.554687, + 45.525824 + ], + [ + -73.554811, + 45.525929 + ], + [ + -73.554929, + 45.526059 + ], + [ + -73.55493, + 45.526059 + ], + [ + -73.554993, + 45.526176 + ], + [ + -73.555026, + 45.52628 + ], + [ + -73.554833, + 45.526514 + ], + [ + -73.554697, + 45.526599 + ], + [ + -73.554558, + 45.526626 + ], + [ + -73.554315, + 45.526628 + ], + [ + -73.553319, + 45.526172 + ], + [ + -73.553138, + 45.526114 + ], + [ + -73.551756, + 45.525462 + ], + [ + -73.551291, + 45.52526 + ], + [ + -73.550364, + 45.524824 + ], + [ + -73.549511, + 45.524419 + ], + [ + -73.548735, + 45.524051 + ], + [ + -73.548198, + 45.52379 + ], + [ + -73.548092, + 45.523688 + ], + [ + -73.547877, + 45.523575 + ], + [ + -73.547516, + 45.523402 + ], + [ + -73.547208, + 45.52326 + ], + [ + -73.546709, + 45.522954 + ], + [ + -73.546707, + 45.522951 + ], + [ + -73.54663, + 45.522846 + ], + [ + -73.546597, + 45.522733 + ], + [ + -73.546634, + 45.522544 + ], + [ + -73.54672, + 45.522337 + ], + [ + -73.547896, + 45.520642 + ], + [ + -73.548022, + 45.520458 + ], + [ + -73.5497, + 45.518116 + ], + [ + -73.550049, + 45.517629 + ], + [ + -73.550362, + 45.51717 + ], + [ + -73.55058, + 45.516878 + ], + [ + -73.551064, + 45.516329 + ], + [ + -73.552085, + 45.515312 + ], + [ + -73.552825, + 45.51449 + ], + [ + -73.555931, + 45.510258 + ], + [ + -73.556297, + 45.509815 + ], + [ + -73.556685, + 45.509346 + ], + [ + -73.556881, + 45.509106 + ], + [ + -73.557097, + 45.508843 + ], + [ + -73.558098, + 45.507631 + ], + [ + -73.558733, + 45.506895 + ], + [ + -73.558902, + 45.506688 + ], + [ + -73.559399, + 45.506102 + ], + [ + -73.559674, + 45.505789 + ], + [ + -73.559961, + 45.505451 + ], + [ + -73.560315, + 45.505045 + ], + [ + -73.560946, + 45.504294 + ], + [ + -73.561138, + 45.504148 + ], + [ + -73.56137, + 45.5039 + ], + [ + -73.561633, + 45.503594 + ], + [ + -73.561765, + 45.503418 + ], + [ + -73.562022, + 45.503083 + ], + [ + -73.562229, + 45.50281 + ], + [ + -73.562656, + 45.502227 + ], + [ + -73.563344, + 45.501278 + ], + [ + -73.563437, + 45.501142 + ], + [ + -73.563582, + 45.500891 + ], + [ + -73.563637, + 45.500782 + ], + [ + -73.563686, + 45.500673 + ], + [ + -73.563742, + 45.500523 + ], + [ + -73.563784, + 45.50037 + ], + [ + -73.563792, + 45.500339 + ], + [ + -73.563799, + 45.500277 + ], + [ + -73.56381, + 45.500164 + ], + [ + -73.563817, + 45.499951 + ], + [ + -73.563801, + 45.499845 + ], + [ + -73.563769, + 45.499726 + ], + [ + -73.563716, + 45.499593 + ], + [ + -73.563657, + 45.499455 + ], + [ + -73.563568, + 45.499314 + ], + [ + -73.56346, + 45.499182 + ], + [ + -73.563335, + 45.499056 + ], + [ + -73.563258, + 45.498987 + ], + [ + -73.563134, + 45.498882 + ], + [ + -73.56301, + 45.498798 + ], + [ + -73.562842, + 45.498706 + ], + [ + -73.562717, + 45.498629 + ], + [ + -73.562641, + 45.498572 + ], + [ + -73.562606, + 45.498541 + ], + [ + -73.562542, + 45.498477 + ], + [ + -73.562514, + 45.498441 + ], + [ + -73.562489, + 45.498405 + ], + [ + -73.56245, + 45.498328 + ], + [ + -73.562437, + 45.498288 + ], + [ + -73.562419, + 45.498207 + ], + [ + -73.562416, + 45.498166 + ], + [ + -73.562423, + 45.498084 + ], + [ + -73.562444, + 45.498004 + ], + [ + -73.562461, + 45.497965 + ], + [ + -73.562483, + 45.497927 + ], + [ + -73.562498, + 45.497907 + ], + [ + -73.562535, + 45.497857 + ], + [ + -73.562592, + 45.497793 + ], + [ + -73.562675, + 45.497717 + ], + [ + -73.562831, + 45.497627 + ], + [ + -73.562983, + 45.497576 + ], + [ + -73.56315, + 45.497541 + ], + [ + -73.563299, + 45.497536 + ], + [ + -73.563474, + 45.497544 + ], + [ + -73.563652, + 45.497556 + ], + [ + -73.563841, + 45.497592 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.56431, + 45.497835 + ], + [ + -73.564363, + 45.497859 + ], + [ + -73.565142, + 45.498217 + ], + [ + -73.565601, + 45.498443 + ], + [ + -73.565748, + 45.49831 + ], + [ + -73.565849, + 45.498292 + ], + [ + -73.566051, + 45.498359 + ], + [ + -73.566361, + 45.498471 + ], + [ + -73.566492, + 45.498485 + ], + [ + -73.566611, + 45.498345 + ] + ] + }, + "id": 186, + "properties": { + "id": "17c1664d-c215-499a-b474-54dbd5b4612e", + "data": { + "gtfs": { + "shape_id": "86_1_A" + }, + "segments": [ + { + "distanceMeters": 142, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 84, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 377, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 505, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 890, + "travelTimeSeconds": 133 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 17552, + "travelTimeSeconds": 2189 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 354, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 27536, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 14487.932640615621, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.78, + "travelTimeWithoutDwellTimesSeconds": 3540, + "operatingTimeWithLayoverTimeSeconds": 3894, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3540, + "operatingSpeedWithLayoverMetersPerSecond": 7.07, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.78 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "ebf7fd24-b756-481f-9a88-33b6362fcbda", + "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", + "3613b472-6055-4b55-9c89-01a451d82804", + "4cd6eb13-aeec-4716-a3d3-8e1a38389723", + "9ad04c6c-abc1-49fe-8f36-db6146dd5c5c", + "3dedf179-3478-4b4d-b706-36e0a8981094", + "3bd4e28f-2392-4d87-96de-a2ab53d75020", + "ba6e04e1-77fc-4b3f-86d2-fd956b418882", + "c02424dc-f033-4be6-a66b-8712f3e4b064", + "a304bcbf-a90b-4a1c-90fd-af05d73c3bdb", + "f2e35f7f-c43e-48a9-8610-6fc945acde4b", + "39ff7687-30f4-4336-ad6e-7651a86ce308", + "5195ea00-9368-4dce-8167-c17b61cec6aa", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "b87ee1fa-53a3-46fa-9d30-2da964c500aa", + "5aedd246-6893-494f-8756-0a623654ca1d", + "cbb95297-898f-493c-b22a-5755d4356a5c", + "49262d07-72b2-466f-bf49-88656466e4a4", + "3d278b9f-fcbb-4681-9833-769bdbe48eaf", + "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", + "47dc43f6-90db-4837-be84-0b5d8a2becb4", + "628308c5-3a00-44cb-908b-068616e8e618", + "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", + "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", + "abeb197b-490c-4d67-8abe-37d08d73ce70", + "7d34a327-717a-432e-93f5-7310ac20c2c2", + "7ca4f3b1-99df-4499-964b-1702513ad59f", + "e134e428-8d59-4d84-966a-ce83afff1c1c", + "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", + "f7429ca8-1ccc-41e7-acab-a5d3915affbb", + "494d9db6-32c6-4aa3-9c11-91eba915c58f", + "6b55fd05-7687-457e-ae9d-e87027c7100f", + "ca205394-9833-4e14-b4fa-653c28b9a37d", + "dd170d68-d567-4a2d-8a93-47dec3a52cd1", + "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", + "bc367579-e120-4c24-8a22-9700d9580818", + "0d10f2fd-9087-48c2-a3cc-d12114887a2b", + "cc54b5e7-0d92-40a3-a2d0-962bd60dc85b", + "695f9244-0dd1-45c0-ba42-b49de2270ee6", + "51dc5cf7-92db-46c8-8c42-9f02a7f9e23c", + "0c601e52-04e5-43e0-9137-7225c37d4cdc", + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" + ], + "stops": [], + "line_id": "494ea6bd-6582-45fe-a505-c8cb0bc59e5f", + "segments": [ + 0, + 7, + 14, + 21, + 25, + 26, + 33, + 42, + 49, + 59, + 68, + 74, + 79, + 90, + 95, + 105, + 116, + 124, + 136, + 145, + 149, + 155, + 158, + 166, + 174, + 179, + 191, + 200, + 211, + 216, + 219, + 227, + 232, + 279, + 286, + 293, + 300, + 305, + 308, + 315, + 321, + 326 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 186, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.566611, + 45.498345 + ], + [ + -73.566738, + 45.498195 + ], + [ + -73.566628, + 45.49808 + ], + [ + -73.566306, + 45.497931 + ], + [ + -73.566253, + 45.497841 + ], + [ + -73.56638, + 45.497699 + ], + [ + -73.566016, + 45.497523 + ], + [ + -73.564691, + 45.496892 + ], + [ + -73.564645, + 45.496938 + ], + [ + -73.564308, + 45.497279 + ], + [ + -73.564223, + 45.497363 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.563751, + 45.497848 + ], + [ + -73.562654, + 45.499004 + ], + [ + -73.562195, + 45.498662 + ], + [ + -73.561924, + 45.498365 + ], + [ + -73.561721, + 45.498171 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.561033, + 45.497765 + ], + [ + -73.560456, + 45.497495 + ], + [ + -73.560139, + 45.497347 + ], + [ + -73.559235, + 45.49696 + ], + [ + -73.55917, + 45.496938 + ], + [ + -73.558356, + 45.496631 + ], + [ + -73.557604, + 45.496364 + ], + [ + -73.556782, + 45.49606 + ], + [ + -73.555745, + 45.495673 + ], + [ + -73.555351, + 45.495512 + ], + [ + -73.555133, + 45.495401 + ], + [ + -73.554916, + 45.495262 + ], + [ + -73.554768, + 45.495125 + ], + [ + -73.55465, + 45.494994 + ], + [ + -73.553944, + 45.493258 + ], + [ + -73.553818, + 45.492971 + ], + [ + -73.553465, + 45.492338 + ], + [ + -73.552977, + 45.491759 + ], + [ + -73.552502, + 45.491344 + ], + [ + -73.551956, + 45.490962 + ], + [ + -73.551651, + 45.490791 + ], + [ + -73.551074, + 45.490513 + ], + [ + -73.550682, + 45.490367 + ], + [ + -73.550312, + 45.490228 + ], + [ + -73.54956, + 45.490034 + ], + [ + -73.548355, + 45.489798 + ], + [ + -73.542648, + 45.488704 + ], + [ + -73.541878, + 45.488554 + ], + [ + -73.541086, + 45.488398 + ], + [ + -73.541083, + 45.488397 + ], + [ + -73.540636, + 45.488282 + ], + [ + -73.540145, + 45.488119 + ], + [ + -73.539582, + 45.48786 + ], + [ + -73.539239, + 45.487663 + ], + [ + -73.538946, + 45.487462 + ], + [ + -73.538619, + 45.487192 + ], + [ + -73.538304, + 45.486863 + ], + [ + -73.538089, + 45.486564 + ], + [ + -73.537862, + 45.486139 + ], + [ + -73.537796, + 45.485958 + ], + [ + -73.537731, + 45.485785 + ], + [ + -73.53767, + 45.485461 + ], + [ + -73.537646, + 45.485264 + ], + [ + -73.537653, + 45.484914 + ], + [ + -73.537707, + 45.484604 + ], + [ + -73.537881, + 45.484168 + ], + [ + -73.537968, + 45.483893 + ], + [ + -73.538058, + 45.483623 + ], + [ + -73.539557, + 45.479354 + ], + [ + -73.53982, + 45.478652 + ], + [ + -73.540179, + 45.47782 + ], + [ + -73.540481, + 45.477177 + ], + [ + -73.540578, + 45.477027 + ], + [ + -73.540928, + 45.476409 + ], + [ + -73.5413, + 45.475732 + ], + [ + -73.541747, + 45.474937 + ], + [ + -73.542136, + 45.474264 + ], + [ + -73.542539, + 45.47363 + ], + [ + -73.543159, + 45.472786 + ], + [ + -73.543162, + 45.472781 + ], + [ + -73.5432, + 45.472729 + ], + [ + -73.543381, + 45.472482 + ], + [ + -73.543908, + 45.471834 + ], + [ + -73.544604, + 45.471016 + ], + [ + -73.54479, + 45.470824 + ], + [ + -73.544929, + 45.470679 + ], + [ + -73.54509, + 45.470477 + ], + [ + -73.545159, + 45.470391 + ], + [ + -73.545162, + 45.470289 + ], + [ + -73.54518, + 45.470102 + ], + [ + -73.54513, + 45.469912 + ], + [ + -73.545032, + 45.469762 + ], + [ + -73.544829, + 45.469589 + ], + [ + -73.544396, + 45.469456 + ], + [ + -73.544223, + 45.469408 + ], + [ + -73.544, + 45.469414 + ], + [ + -73.54385, + 45.469436 + ], + [ + -73.543665, + 45.469485 + ], + [ + -73.543125, + 45.469658 + ], + [ + -73.542795, + 45.46978 + ], + [ + -73.542335, + 45.469915 + ], + [ + -73.542042, + 45.469974 + ], + [ + -73.541634, + 45.469988 + ], + [ + -73.538583, + 45.470121 + ], + [ + -73.536645, + 45.47012 + ], + [ + -73.534843, + 45.470106 + ], + [ + -73.531663, + 45.470044 + ], + [ + -73.528901, + 45.469979 + ], + [ + -73.525636, + 45.469864 + ], + [ + -73.520215, + 45.469565 + ], + [ + -73.516228, + 45.469261 + ], + [ + -73.50737, + 45.468395 + ], + [ + -73.501604, + 45.467786 + ], + [ + -73.499262, + 45.467514 + ], + [ + -73.493921, + 45.466881 + ], + [ + -73.491932, + 45.466645 + ], + [ + -73.489852, + 45.466348 + ], + [ + -73.489119, + 45.46624 + ], + [ + -73.488353, + 45.466099 + ], + [ + -73.487947, + 45.465982 + ], + [ + -73.487624, + 45.465833 + ], + [ + -73.487378, + 45.465638 + ], + [ + -73.487289, + 45.465389 + ], + [ + -73.487411, + 45.465142 + ], + [ + -73.487606, + 45.464949 + ], + [ + -73.487929, + 45.464813 + ], + [ + -73.488584, + 45.464665 + ], + [ + -73.489559, + 45.464575 + ], + [ + -73.49019, + 45.464579 + ], + [ + -73.490836, + 45.464607 + ], + [ + -73.491353, + 45.464709 + ], + [ + -73.492266, + 45.464916 + ], + [ + -73.492298, + 45.464924 + ], + [ + -73.493024, + 45.46511 + ], + [ + -73.493289, + 45.465231 + ], + [ + -73.49355, + 45.46545 + ], + [ + -73.493833, + 45.466097 + ], + [ + -73.493922, + 45.46638 + ], + [ + -73.494209, + 45.467172 + ], + [ + -73.494809, + 45.468733 + ], + [ + -73.495076, + 45.469359 + ], + [ + -73.495234, + 45.469683 + ], + [ + -73.495362, + 45.469939 + ], + [ + -73.495491, + 45.470173 + ], + [ + -73.49554, + 45.470262 + ], + [ + -73.495895, + 45.470906 + ], + [ + -73.495967, + 45.471037 + ], + [ + -73.496018, + 45.471127 + ], + [ + -73.496235, + 45.471478 + ], + [ + -73.496323, + 45.471617 + ], + [ + -73.496799, + 45.472387 + ], + [ + -73.497277, + 45.473188 + ], + [ + -73.497508, + 45.473543 + ], + [ + -73.497684, + 45.473744 + ], + [ + -73.49797, + 45.473998 + ], + [ + -73.497971, + 45.473998 + ], + [ + -73.498154, + 45.474204 + ], + [ + -73.498345, + 45.474398 + ], + [ + -73.498759, + 45.474776 + ], + [ + -73.498981, + 45.474956 + ], + [ + -73.499212, + 45.475131 + ], + [ + -73.499453, + 45.475307 + ], + [ + -73.502533, + 45.47734 + ], + [ + -73.504857, + 45.478866 + ], + [ + -73.505913, + 45.479567 + ], + [ + -73.50636, + 45.479923 + ], + [ + -73.506669, + 45.480206 + ], + [ + -73.506703, + 45.480242 + ], + [ + -73.507146, + 45.480733 + ], + [ + -73.507302, + 45.480949 + ], + [ + -73.507442, + 45.481165 + ], + [ + -73.507569, + 45.481381 + ], + [ + -73.507678, + 45.48161 + ], + [ + -73.507857, + 45.482069 + ], + [ + -73.507995, + 45.482559 + ], + [ + -73.508478, + 45.484485 + ], + [ + -73.508692, + 45.485218 + ], + [ + -73.508857, + 45.485709 + ], + [ + -73.509037, + 45.486199 + ], + [ + -73.509236, + 45.486685 + ], + [ + -73.509454, + 45.487171 + ], + [ + -73.509688, + 45.487657 + ], + [ + -73.509939, + 45.488138 + ], + [ + -73.510206, + 45.488624 + ], + [ + -73.510497, + 45.489096 + ], + [ + -73.510511, + 45.489119 + ], + [ + -73.510962, + 45.489803 + ], + [ + -73.512569, + 45.492115 + ], + [ + -73.512867, + 45.49257 + ], + [ + -73.513116, + 45.493024 + ], + [ + -73.513214, + 45.493253 + ], + [ + -73.513607, + 45.494261 + ], + [ + -73.514156, + 45.495746 + ], + [ + -73.514429, + 45.49643 + ], + [ + -73.514695, + 45.496974 + ], + [ + -73.515628, + 45.498702 + ], + [ + -73.515861, + 45.49917 + ], + [ + -73.516166, + 45.499876 + ], + [ + -73.516897, + 45.501748 + ], + [ + -73.516988, + 45.501968 + ], + [ + -73.517173, + 45.5024 + ], + [ + -73.517284, + 45.502611 + ], + [ + -73.517524, + 45.503025 + ], + [ + -73.517729, + 45.503327 + ], + [ + -73.51827, + 45.504082 + ], + [ + -73.518977, + 45.505113 + ], + [ + -73.519147, + 45.505406 + ], + [ + -73.519228, + 45.505544 + ], + [ + -73.519438, + 45.50599 + ], + [ + -73.519526, + 45.506219 + ], + [ + -73.519678, + 45.506692 + ], + [ + -73.521082, + 45.511245 + ], + [ + -73.521438, + 45.51241 + ], + [ + -73.522146, + 45.514695 + ], + [ + -73.52301, + 45.517471 + ], + [ + -73.523266, + 45.518335 + ], + [ + -73.52329, + 45.518416 + ], + [ + -73.52338, + 45.518726 + ], + [ + -73.523575, + 45.519487 + ], + [ + -73.523691, + 45.519991 + ], + [ + -73.523836, + 45.520746 + ], + [ + -73.523856, + 45.520868 + ], + [ + -73.524112, + 45.522465 + ], + [ + -73.524354, + 45.524161 + ], + [ + -73.524413, + 45.524647 + ], + [ + -73.524445, + 45.525138 + ], + [ + -73.524426, + 45.525628 + ], + [ + -73.524401, + 45.525871 + ], + [ + -73.524367, + 45.526114 + ], + [ + -73.524264, + 45.526595 + ], + [ + -73.524195, + 45.526834 + ], + [ + -73.524183, + 45.526867 + ], + [ + -73.524025, + 45.527306 + ], + [ + -73.523924, + 45.52754 + ], + [ + -73.523683, + 45.528004 + ], + [ + -73.52355, + 45.528233 + ], + [ + -73.523265, + 45.528661 + ], + [ + -73.52295, + 45.529066 + ], + [ + -73.522634, + 45.529444 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.503549, + 45.548419 + ], + [ + -73.502986, + 45.54904 + ], + [ + -73.502097, + 45.550079 + ], + [ + -73.501025, + 45.551361 + ], + [ + -73.500319, + 45.55223 + ], + [ + -73.497146, + 45.556054 + ], + [ + -73.496787, + 45.55649 + ], + [ + -73.495905, + 45.557543 + ], + [ + -73.495369, + 45.558173 + ], + [ + -73.494314, + 45.559446 + ], + [ + -73.493461, + 45.560499 + ], + [ + -73.492975, + 45.561151 + ], + [ + -73.492659, + 45.561597 + ], + [ + -73.492068, + 45.562474 + ], + [ + -73.49148, + 45.563383 + ], + [ + -73.490434, + 45.564962 + ], + [ + -73.489967, + 45.565619 + ], + [ + -73.489477, + 45.566267 + ], + [ + -73.488962, + 45.566906 + ], + [ + -73.48825, + 45.567747 + ], + [ + -73.487877, + 45.568161 + ], + [ + -73.487301, + 45.568777 + ], + [ + -73.486712, + 45.56938 + ], + [ + -73.486308, + 45.569771 + ], + [ + -73.485474, + 45.570545 + ], + [ + -73.48461, + 45.571301 + ], + [ + -73.483654, + 45.572115 + ], + [ + -73.478606, + 45.576433 + ], + [ + -73.478028, + 45.576933 + ], + [ + -73.477248, + 45.577607 + ], + [ + -73.476645, + 45.578128 + ], + [ + -73.475915, + 45.578754 + ], + [ + -73.475553, + 45.579033 + ], + [ + -73.474887, + 45.579478 + ], + [ + -73.474437, + 45.579762 + ], + [ + -73.474095, + 45.580005 + ], + [ + -73.473853, + 45.580158 + ], + [ + -73.473398, + 45.580472 + ], + [ + -73.473077, + 45.58072 + ], + [ + -73.472886, + 45.580886 + ], + [ + -73.472612, + 45.581152 + ], + [ + -73.472574, + 45.581196 + ], + [ + -73.472319, + 45.581482 + ], + [ + -73.472175, + 45.581673 + ], + [ + -73.471994, + 45.581936 + ], + [ + -73.47191, + 45.582061 + ], + [ + -73.471753, + 45.582326 + ], + [ + -73.471543, + 45.582681 + ], + [ + -73.471245, + 45.583188 + ], + [ + -73.471013, + 45.58358 + ], + [ + -73.470714, + 45.584071 + ], + [ + -73.470067, + 45.585151 + ], + [ + -73.469784, + 45.585547 + ], + [ + -73.469628, + 45.585749 + ], + [ + -73.469287, + 45.586145 + ], + [ + -73.469101, + 45.586343 + ], + [ + -73.468904, + 45.586536 + ], + [ + -73.468695, + 45.586725 + ], + [ + -73.466029, + 45.588965 + ], + [ + -73.465851, + 45.589127 + ], + [ + -73.464661, + 45.590008 + ], + [ + -73.463452, + 45.59093 + ], + [ + -73.462873, + 45.59133 + ], + [ + -73.462371, + 45.591654 + ], + [ + -73.46224, + 45.591722 + ], + [ + -73.462125, + 45.591758 + ], + [ + -73.462005, + 45.59178 + ], + [ + -73.461886, + 45.591789 + ], + [ + -73.461768, + 45.591789 + ], + [ + -73.461658, + 45.591771 + ], + [ + -73.461565, + 45.591739 + ], + [ + -73.461494, + 45.591707 + ], + [ + -73.461385, + 45.591658 + ], + [ + -73.461314, + 45.591613 + ], + [ + -73.461175, + 45.591528 + ], + [ + -73.46107, + 45.591613 + ], + [ + -73.460957, + 45.591717 + ], + [ + -73.460805, + 45.591865 + ], + [ + -73.460701, + 45.591996 + ], + [ + -73.460612, + 45.592117 + ], + [ + -73.460536, + 45.592252 + ], + [ + -73.460484, + 45.592382 + ], + [ + -73.46046, + 45.592459 + ], + [ + -73.46044, + 45.592544 + ], + [ + -73.460424, + 45.592634 + ], + [ + -73.460424, + 45.592715 + ], + [ + -73.460428, + 45.592832 + ], + [ + -73.46044, + 45.592958 + ], + [ + -73.460595, + 45.593596 + ], + [ + -73.460755, + 45.594214 + ], + [ + -73.460806, + 45.594407 + ], + [ + -73.460827, + 45.594547 + ], + [ + -73.460833, + 45.594641 + ], + [ + -73.460826, + 45.594731 + ], + [ + -73.460813, + 45.594821 + ], + [ + -73.460783, + 45.59492 + ], + [ + -73.460735, + 45.595046 + ], + [ + -73.46039, + 45.595847 + ], + [ + -73.460377, + 45.59604 + ], + [ + -73.460279, + 45.596211 + ], + [ + -73.46002, + 45.596731 + ], + [ + -73.459959, + 45.596854 + ], + [ + -73.459796, + 45.597151 + ], + [ + -73.459667, + 45.59743 + ], + [ + -73.459417, + 45.597961 + ], + [ + -73.459297, + 45.598249 + ], + [ + -73.459134, + 45.598618 + ], + [ + -73.459106, + 45.598681 + ], + [ + -73.45906, + 45.598784 + ], + [ + -73.458929, + 45.599081 + ], + [ + -73.458773, + 45.599468 + ], + [ + -73.45861, + 45.599891 + ], + [ + -73.458476, + 45.600252 + ], + [ + -73.458417, + 45.600413 + ], + [ + -73.458077, + 45.601272 + ], + [ + -73.457833, + 45.601965 + ], + [ + -73.457685, + 45.602364 + ], + [ + -73.457663, + 45.602423 + ], + [ + -73.457484, + 45.603017 + ], + [ + -73.457297, + 45.603715 + ], + [ + -73.457201, + 45.604101 + ], + [ + -73.457136, + 45.604362 + ], + [ + -73.457004, + 45.60488 + ], + [ + -73.456875, + 45.605321 + ], + [ + -73.456765, + 45.605708 + ], + [ + -73.456649, + 45.60615 + ], + [ + -73.456639, + 45.606189 + ], + [ + -73.456606, + 45.606499 + ], + [ + -73.456464, + 45.606472 + ], + [ + -73.45638, + 45.606432 + ], + [ + -73.456116, + 45.606233 + ], + [ + -73.456106, + 45.606225 + ], + [ + -73.456001, + 45.606135 + ], + [ + -73.455782, + 45.605973 + ], + [ + -73.455171, + 45.605504 + ], + [ + -73.454909, + 45.605308 + ], + [ + -73.454539, + 45.605032 + ], + [ + -73.454133, + 45.604694 + ], + [ + -73.453904, + 45.604474 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453269, + 45.60401 + ], + [ + -73.453124, + 45.603897 + ], + [ + -73.452821, + 45.603664 + ], + [ + -73.452751, + 45.603609 + ], + [ + -73.452634, + 45.603524 + ], + [ + -73.45156, + 45.602679 + ], + [ + -73.45153, + 45.602655 + ], + [ + -73.451134, + 45.602344 + ], + [ + -73.450997, + 45.602236 + ], + [ + -73.450804, + 45.602087 + ], + [ + -73.450717, + 45.602019 + ], + [ + -73.450711, + 45.601962 + ], + [ + -73.450652, + 45.601878 + ], + [ + -73.450633, + 45.601851 + ], + [ + -73.45062, + 45.601823 + ], + [ + -73.450613, + 45.6018 + ], + [ + -73.450612, + 45.601775 + ], + [ + -73.450612, + 45.601745 + ], + [ + -73.450617, + 45.601719 + ], + [ + -73.450626, + 45.601694 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450455, + 45.601424 + ], + [ + -73.450415, + 45.60142 + ], + [ + -73.450377, + 45.601418 + ], + [ + -73.450324, + 45.601415 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450247, + 45.601412 + ], + [ + -73.450159, + 45.601408 + ], + [ + -73.450117, + 45.6014 + ], + [ + -73.450076, + 45.601382 + ], + [ + -73.450018, + 45.601356 + ], + [ + -73.449945, + 45.60132 + ], + [ + -73.449881, + 45.6013 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.446908, + 45.599337 + ], + [ + -73.446679, + 45.599485 + ], + [ + -73.446043, + 45.599863 + ], + [ + -73.445879, + 45.599964 + ], + [ + -73.445606, + 45.600133 + ], + [ + -73.445172, + 45.600385 + ], + [ + -73.444832, + 45.600591 + ], + [ + -73.444182, + 45.600973 + ], + [ + -73.443509, + 45.601378 + ], + [ + -73.443055, + 45.601648 + ], + [ + -73.442793, + 45.601808 + ], + [ + -73.442509, + 45.60198 + ], + [ + -73.441922, + 45.602327 + ], + [ + -73.441516, + 45.602542 + ], + [ + -73.438822, + 45.603769 + ], + [ + -73.438466, + 45.603935 + ], + [ + -73.438125, + 45.604091 + ], + [ + -73.437975, + 45.60416 + ], + [ + -73.437443, + 45.604403 + ], + [ + -73.436923, + 45.604637 + ], + [ + -73.436609, + 45.60478 + ], + [ + -73.436434, + 45.60486 + ], + [ + -73.436303, + 45.60492 + ], + [ + -73.433751, + 45.606088 + ], + [ + -73.433088, + 45.606393 + ], + [ + -73.433017, + 45.606425 + ], + [ + -73.432607, + 45.606605 + ], + [ + -73.432434, + 45.606672 + ], + [ + -73.43227, + 45.606721 + ], + [ + -73.431993, + 45.60678 + ], + [ + -73.431775, + 45.606798 + ], + [ + -73.431493, + 45.606793 + ], + [ + -73.430876, + 45.606707 + ], + [ + -73.430278, + 45.606621 + ], + [ + -73.430121, + 45.606599 + ], + [ + -73.429954, + 45.606572 + ], + [ + -73.429341, + 45.606472 + ], + [ + -73.429112, + 45.606427 + ], + [ + -73.42886, + 45.60635 + ], + [ + -73.42867, + 45.606274 + ], + [ + -73.428495, + 45.606184 + ], + [ + -73.428311, + 45.606067 + ], + [ + -73.428252, + 45.60602 + ], + [ + -73.428173, + 45.605959 + ], + [ + -73.427998, + 45.605828 + ], + [ + -73.427603, + 45.605522 + ], + [ + -73.42746, + 45.605399 + ], + [ + -73.427432, + 45.605363 + ], + [ + -73.427424, + 45.605353 + ], + [ + -73.427406, + 45.605312 + ], + [ + -73.427407, + 45.605278 + ], + [ + -73.427423, + 45.605237 + ], + [ + -73.427444, + 45.605211 + ], + [ + -73.427475, + 45.60518 + ], + [ + -73.428439, + 45.604563 + ], + [ + -73.428564, + 45.604483 + ], + [ + -73.428653, + 45.604427 + ], + [ + -73.42903, + 45.604191 + ], + [ + -73.429453, + 45.603926 + ], + [ + -73.429967, + 45.603607 + ], + [ + -73.430523, + 45.603252 + ], + [ + -73.430877, + 45.603027 + ], + [ + -73.431204, + 45.602817 + ], + [ + -73.431263, + 45.60278 + ], + [ + -73.432706, + 45.602245 + ], + [ + -73.433739, + 45.601863 + ], + [ + -73.434166, + 45.601679 + ], + [ + -73.434258, + 45.601635 + ], + [ + -73.434475, + 45.601531 + ], + [ + -73.434596, + 45.601477 + ], + [ + -73.43499, + 45.601122 + ], + [ + -73.435271, + 45.600843 + ], + [ + -73.435516, + 45.600609 + ], + [ + -73.435806, + 45.600335 + ], + [ + -73.435984, + 45.600152 + ], + [ + -73.436103, + 45.600029 + ], + [ + -73.436265, + 45.599879 + ], + [ + -73.436408, + 45.599746 + ], + [ + -73.43685, + 45.599305 + ], + [ + -73.437027, + 45.599139 + ], + [ + -73.437055, + 45.599114 + ], + [ + -73.437156, + 45.599026 + ], + [ + -73.43732, + 45.5989 + ], + [ + -73.437622, + 45.598721 + ], + [ + -73.438241, + 45.598406 + ], + [ + -73.438454, + 45.598305 + ], + [ + -73.438619, + 45.598226 + ], + [ + -73.43978, + 45.597624 + ], + [ + -73.439976, + 45.597521 + ], + [ + -73.440742, + 45.597138 + ], + [ + -73.441198, + 45.596912 + ], + [ + -73.441367, + 45.596828 + ], + [ + -73.441552, + 45.59672 + ], + [ + -73.441835, + 45.596541 + ], + [ + -73.442031, + 45.596415 + ], + [ + -73.442486, + 45.596128 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442992, + 45.59628 + ], + [ + -73.443394, + 45.596559 + ], + [ + -73.443528, + 45.596515 + ], + [ + -73.443788, + 45.596348 + ], + [ + -73.444437, + 45.59593 + ], + [ + -73.444718, + 45.595759 + ], + [ + -73.444968, + 45.595606 + ], + [ + -73.445101, + 45.595534 + ], + [ + -73.4452, + 45.595467 + ], + [ + -73.445245, + 45.595436 + ], + [ + -73.445328, + 45.595355 + ], + [ + -73.445345, + 45.595325 + ], + [ + -73.445373, + 45.595278 + ], + [ + -73.445401, + 45.595148 + ], + [ + -73.445274, + 45.595116 + ], + [ + -73.444881, + 45.594976 + ], + [ + -73.444601, + 45.594868 + ], + [ + -73.444384, + 45.594778 + ], + [ + -73.444209, + 45.594648 + ], + [ + -73.444038, + 45.594472 + ], + [ + -73.44393, + 45.594306 + ], + [ + -73.443815, + 45.593977 + ], + [ + -73.443598, + 45.593295 + ], + [ + -73.443554, + 45.593158 + ], + [ + -73.443364, + 45.592618 + ], + [ + -73.443333, + 45.592528 + ], + [ + -73.443289, + 45.59238 + ], + [ + -73.443278, + 45.592341 + ], + [ + -73.443255, + 45.592258 + ], + [ + -73.443182, + 45.592056 + ], + [ + -73.443153, + 45.591988 + ], + [ + -73.442948, + 45.591732 + ], + [ + -73.442582, + 45.591336 + ], + [ + -73.44228, + 45.591009 + ], + [ + -73.44224, + 45.590966 + ], + [ + -73.442026, + 45.59066 + ], + [ + -73.441784, + 45.590332 + ], + [ + -73.441426, + 45.589823 + ], + [ + -73.441196, + 45.589499 + ], + [ + -73.441126, + 45.589423 + ], + [ + -73.4409, + 45.589283 + ], + [ + -73.440622, + 45.589119 + ], + [ + -73.440489, + 45.58904 + ], + [ + -73.440356, + 45.588972 + ], + [ + -73.440242, + 45.588905 + ], + [ + -73.439836, + 45.589215 + ], + [ + -73.4396, + 45.589383 + ], + [ + -73.439545, + 45.589422 + ], + [ + -73.43944, + 45.589489 + ], + [ + -73.438814, + 45.588976 + ], + [ + -73.438743, + 45.588908 + ], + [ + -73.438667, + 45.588827 + ], + [ + -73.438608, + 45.58876 + ], + [ + -73.438525, + 45.588647 + ], + [ + -73.438459, + 45.588481 + ], + [ + -73.438434, + 45.588373 + ], + [ + -73.438397, + 45.58804 + ], + [ + -73.438381, + 45.587886 + ], + [ + -73.438361, + 45.587689 + ], + [ + -73.438322, + 45.587343 + ], + [ + -73.438278, + 45.58696 + ], + [ + -73.438254, + 45.586654 + ], + [ + -73.438228, + 45.586444 + ], + [ + -73.438207, + 45.586281 + ], + [ + -73.438171, + 45.586006 + ], + [ + -73.438139, + 45.585831 + ], + [ + -73.4381, + 45.585741 + ], + [ + -73.438042, + 45.585678 + ], + [ + -73.437636, + 45.585399 + ], + [ + -73.437143, + 45.585016 + ], + [ + -73.435838, + 45.584003 + ], + [ + -73.435641, + 45.583881 + ], + [ + -73.435442, + 45.583791 + ], + [ + -73.435024, + 45.583692 + ], + [ + -73.434811, + 45.583651 + ], + [ + -73.43465, + 45.583624 + ], + [ + -73.434628, + 45.58362 + ], + [ + -73.434386, + 45.58357 + ], + [ + -73.434475, + 45.583458 + ], + [ + -73.434532, + 45.583372 + ], + [ + -73.434573, + 45.58326 + ], + [ + -73.434593, + 45.583147 + ], + [ + -73.434594, + 45.583057 + ], + [ + -73.43455, + 45.582945 + ], + [ + -73.434479, + 45.582859 + ], + [ + -73.434334, + 45.58272 + ], + [ + -73.433523, + 45.582107 + ], + [ + -73.433315, + 45.58195 + ], + [ + -73.433005, + 45.581702 + ], + [ + -73.432709, + 45.581473 + ], + [ + -73.432359, + 45.581193 + ], + [ + -73.432012, + 45.580914 + ], + [ + -73.43177, + 45.580734 + ], + [ + -73.43138, + 45.580435 + ], + [ + -73.431218, + 45.580311 + ], + [ + -73.430652, + 45.580544 + ], + [ + -73.430169, + 45.580742 + ], + [ + -73.430012, + 45.580805 + ], + [ + -73.42982, + 45.580902 + ], + [ + -73.429773, + 45.580926 + ], + [ + -73.429655, + 45.581003 + ], + [ + -73.429134, + 45.581335 + ], + [ + -73.428878, + 45.581499 + ], + [ + -73.428761, + 45.581574 + ], + [ + -73.428049, + 45.582021 + ], + [ + -73.42763, + 45.582284 + ], + [ + -73.427138, + 45.582598 + ], + [ + -73.427107, + 45.582619 + ], + [ + -73.427059, + 45.58265 + ], + [ + -73.426641, + 45.582922 + ], + [ + -73.426528, + 45.583004 + ], + [ + -73.429814, + 45.585537 + ], + [ + -73.429841, + 45.585558 + ], + [ + -73.429958, + 45.585646 + ], + [ + -73.430085, + 45.585745 + ], + [ + -73.430467, + 45.586051 + ], + [ + -73.430716, + 45.586245 + ], + [ + -73.430893, + 45.586393 + ], + [ + -73.431289, + 45.586718 + ], + [ + -73.431326, + 45.58675 + ], + [ + -73.431717, + 45.587092 + ], + [ + -73.431818, + 45.587179 + ], + [ + -73.431883, + 45.587238 + ], + [ + -73.432034, + 45.587385 + ], + [ + -73.432226, + 45.587579 + ], + [ + -73.433253, + 45.588702 + ], + [ + -73.433537, + 45.589009 + ], + [ + -73.433674, + 45.589158 + ], + [ + -73.433885, + 45.58936 + ], + [ + -73.4342, + 45.589657 + ], + [ + -73.434715, + 45.590103 + ], + [ + -73.434884, + 45.590234 + ], + [ + -73.434944, + 45.590279 + ], + [ + -73.434983, + 45.59031 + ], + [ + -73.434986, + 45.590313 + ], + [ + -73.435014, + 45.590337 + ], + [ + -73.435057, + 45.590373 + ], + [ + -73.435107, + 45.590414 + ], + [ + -73.435254, + 45.590517 + ], + [ + -73.435815, + 45.590941 + ], + [ + -73.436185, + 45.591213 + ] + ] + }, + "id": 187, + "properties": { + "id": "4b21539d-ac51-4036-8437-cc8820a65c36", + "data": { + "gtfs": { + "shape_id": "86_2_R" + }, + "segments": [ + { + "distanceMeters": 26369, + "travelTimeSeconds": 1698 + }, + { + "distanceMeters": 639, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 818, + "travelTimeSeconds": 110 + }, + { + "distanceMeters": 316, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 444, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 91 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 29 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 336, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 36893, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 14511.029094960697, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 10.98, + "travelTimeWithoutDwellTimesSeconds": 3360, + "operatingTimeWithLayoverTimeSeconds": 3696, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3360, + "operatingSpeedWithLayoverMetersPerSecond": 9.98, + "averageSpeedWithoutDwellTimesMetersPerSecond": 10.98 + }, + "mode": "bus", + "name": "boul. De Montarville", + "color": "#A32638", + "nodes": [ + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", + "6460b11a-31ec-4bbc-b7b7-22be32195079", + "51dc5cf7-92db-46c8-8c42-9f02a7f9e23c", + "695f9244-0dd1-45c0-ba42-b49de2270ee6", + "cc54b5e7-0d92-40a3-a2d0-962bd60dc85b", + "0d10f2fd-9087-48c2-a3cc-d12114887a2b", + "bc367579-e120-4c24-8a22-9700d9580818", + "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", + "6e37aa2c-853a-4603-9807-c4f338ee1e72", + "ca205394-9833-4e14-b4fa-653c28b9a37d", + "6b55fd05-7687-457e-ae9d-e87027c7100f", + "494d9db6-32c6-4aa3-9c11-91eba915c58f", + "f7429ca8-1ccc-41e7-acab-a5d3915affbb", + "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", + "e134e428-8d59-4d84-966a-ce83afff1c1c", + "7ca4f3b1-99df-4499-964b-1702513ad59f", + "7d34a327-717a-432e-93f5-7310ac20c2c2", + "abeb197b-490c-4d67-8abe-37d08d73ce70", + "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", + "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", + "628308c5-3a00-44cb-908b-068616e8e618", + "47dc43f6-90db-4837-be84-0b5d8a2becb4", + "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", + "fc32be78-9480-4dfc-b10c-475dc000dd04", + "0872c388-8faf-4852-b4ce-cf3f6312e0ef", + "49262d07-72b2-466f-bf49-88656466e4a4", + "cbb95297-898f-493c-b22a-5755d4356a5c", + "5aedd246-6893-494f-8756-0a623654ca1d", + "b87ee1fa-53a3-46fa-9d30-2da964c500aa", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "5195ea00-9368-4dce-8167-c17b61cec6aa", + "39ff7687-30f4-4336-ad6e-7651a86ce308", + "f2e35f7f-c43e-48a9-8610-6fc945acde4b", + "a304bcbf-a90b-4a1c-90fd-af05d73c3bdb", + "c02424dc-f033-4be6-a66b-8712f3e4b064", + "ba6e04e1-77fc-4b3f-86d2-fd956b418882", + "3bd4e28f-2392-4d87-96de-a2ab53d75020", + "e0ad666d-6319-4692-a7ee-a3080772e28d", + "c4a07fb5-3745-472e-8e03-a61e6908d906", + "3e60c63a-1f50-42ff-98f0-f081a7dc4017", + "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", + "ebf7fd24-b756-481f-9a88-33b6362fcbda", + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9" + ], + "stops": [], + "line_id": "494ea6bd-6582-45fe-a505-c8cb0bc59e5f", + "segments": [ + 0, + 329, + 358, + 364, + 370, + 374, + 378, + 383, + 393, + 400, + 453, + 460, + 466, + 471, + 475, + 483, + 492, + 504, + 512, + 517, + 526, + 530, + 535, + 540, + 545, + 550, + 558, + 569, + 580, + 588, + 593, + 604, + 609, + 616, + 623, + 633, + 640, + 649, + 655, + 659, + 666, + 673, + 681 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 187, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.453106, + 45.603884 + ], + [ + -73.453124, + 45.603897 + ], + [ + -73.453269, + 45.60401 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453904, + 45.604474 + ], + [ + -73.454133, + 45.604694 + ], + [ + -73.454539, + 45.605032 + ], + [ + -73.454918, + 45.605315 + ], + [ + -73.455171, + 45.605504 + ], + [ + -73.455782, + 45.605973 + ], + [ + -73.456001, + 45.606135 + ], + [ + -73.456106, + 45.606225 + ], + [ + -73.45638, + 45.606432 + ], + [ + -73.456449, + 45.606465 + ], + [ + -73.456464, + 45.606472 + ], + [ + -73.456606, + 45.606499 + ], + [ + -73.456615, + 45.606661 + ], + [ + -73.456615, + 45.606737 + ], + [ + -73.456615, + 45.606796 + ], + [ + -73.45661, + 45.607368 + ], + [ + -73.456599, + 45.607836 + ], + [ + -73.456595, + 45.60819 + ], + [ + -73.456594, + 45.608335 + ], + [ + -73.456582, + 45.60905 + ], + [ + -73.456558, + 45.609802 + ], + [ + -73.456542, + 45.610014 + ], + [ + -73.456534, + 45.610121 + ], + [ + -73.456537, + 45.610463 + ], + [ + -73.456508, + 45.610998 + ], + [ + -73.4565, + 45.611138 + ], + [ + -73.456491, + 45.611268 + ], + [ + -73.456473, + 45.611516 + ], + [ + -73.456454, + 45.611729 + ], + [ + -73.456449, + 45.611777 + ], + [ + -73.456429, + 45.612204 + ], + [ + -73.456403, + 45.612587 + ], + [ + -73.456367, + 45.613122 + ], + [ + -73.456346, + 45.613356 + ], + [ + -73.456319, + 45.61365 + ], + [ + -73.456315, + 45.613702 + ], + [ + -73.456295, + 45.613828 + ], + [ + -73.456125, + 45.615281 + ], + [ + -73.45606, + 45.615718 + ], + [ + -73.456015, + 45.616024 + ], + [ + -73.455984, + 45.616307 + ], + [ + -73.45596, + 45.616501 + ], + [ + -73.455915, + 45.616856 + ], + [ + -73.455899, + 45.61699 + ], + [ + -73.455888, + 45.617081 + ], + [ + -73.455879, + 45.617157 + ], + [ + -73.45581, + 45.617621 + ], + [ + -73.455761, + 45.617974 + ], + [ + -73.455729, + 45.618206 + ], + [ + -73.455676, + 45.618606 + ], + [ + -73.45562, + 45.619025 + ], + [ + -73.455571, + 45.619434 + ], + [ + -73.455486, + 45.620131 + ], + [ + -73.455479, + 45.620194 + ], + [ + -73.455459, + 45.620347 + ], + [ + -73.455364, + 45.621566 + ], + [ + -73.455351, + 45.621782 + ], + [ + -73.455345, + 45.621886 + ], + [ + -73.455228, + 45.623663 + ], + [ + -73.455174, + 45.624115 + ], + [ + -73.455153, + 45.624288 + ], + [ + -73.454435, + 45.626407 + ], + [ + -73.454315, + 45.626733 + ], + [ + -73.454243, + 45.626929 + ], + [ + -73.454024, + 45.62755 + ], + [ + -73.453877, + 45.627981 + ], + [ + -73.453834, + 45.628108 + ], + [ + -73.453601, + 45.628791 + ], + [ + -73.453393, + 45.629394 + ], + [ + -73.453358, + 45.629493 + ], + [ + -73.453315, + 45.629624 + ], + [ + -73.453257, + 45.629785 + ], + [ + -73.453007, + 45.630515 + ], + [ + -73.452942, + 45.630703 + ], + [ + -73.452778, + 45.631153 + ], + [ + -73.452686, + 45.631346 + ], + [ + -73.452502, + 45.631778 + ], + [ + -73.452319, + 45.632093 + ], + [ + -73.452094, + 45.632426 + ], + [ + -73.451782, + 45.632832 + ], + [ + -73.451773, + 45.632844 + ], + [ + -73.451693, + 45.632925 + ], + [ + -73.451614, + 45.633011 + ], + [ + -73.451195, + 45.633474 + ], + [ + -73.450679, + 45.634027 + ], + [ + -73.450136, + 45.634603 + ], + [ + -73.449531, + 45.635239 + ], + [ + -73.449434, + 45.63534 + ], + [ + -73.449285, + 45.635498 + ], + [ + -73.449067, + 45.635736 + ], + [ + -73.448723, + 45.636136 + ], + [ + -73.448535, + 45.636361 + ], + [ + -73.448252, + 45.636716 + ], + [ + -73.448132, + 45.636874 + ], + [ + -73.447872, + 45.637214 + ], + [ + -73.447778, + 45.637337 + ], + [ + -73.447634, + 45.637301 + ], + [ + -73.447384, + 45.637215 + ], + [ + -73.447064, + 45.637088 + ], + [ + -73.446874, + 45.637013 + ], + [ + -73.446777, + 45.636959 + ], + [ + -73.446639, + 45.63686 + ], + [ + -73.446407, + 45.636689 + ], + [ + -73.44625, + 45.636558 + ], + [ + -73.446134, + 45.636441 + ], + [ + -73.445951, + 45.636247 + ], + [ + -73.445769, + 45.636018 + ], + [ + -73.445712, + 45.635937 + ], + [ + -73.445634, + 45.635856 + ], + [ + -73.445562, + 45.635784 + ], + [ + -73.445466, + 45.635698 + ], + [ + -73.445268, + 45.635536 + ], + [ + -73.445235, + 45.635512 + ], + [ + -73.445104, + 45.635415 + ], + [ + -73.444715, + 45.635109 + ], + [ + -73.44467, + 45.635073 + ], + [ + -73.444422, + 45.63487 + ], + [ + -73.444148, + 45.634658 + ], + [ + -73.444049, + 45.634573 + ], + [ + -73.443845, + 45.634429 + ], + [ + -73.443401, + 45.634067 + ], + [ + -73.443242, + 45.633938 + ], + [ + -73.442909, + 45.633686 + ], + [ + -73.442563, + 45.633434 + ], + [ + -73.442416, + 45.633371 + ], + [ + -73.44208, + 45.633254 + ], + [ + -73.441599, + 45.633114 + ], + [ + -73.440847, + 45.632908 + ], + [ + -73.440824, + 45.632902 + ], + [ + -73.440392, + 45.632771 + ], + [ + -73.440856, + 45.631968 + ], + [ + -73.441271, + 45.631251 + ], + [ + -73.441456, + 45.630932 + ], + [ + -73.441684, + 45.63054 + ], + [ + -73.441876, + 45.630211 + ], + [ + -73.442088, + 45.629846 + ], + [ + -73.443114, + 45.62808 + ], + [ + -73.443253, + 45.627837 + ], + [ + -73.443605, + 45.627221 + ], + [ + -73.444022, + 45.626488 + ], + [ + -73.444058, + 45.626426 + ], + [ + -73.444573, + 45.625552 + ], + [ + -73.445356, + 45.624185 + ], + [ + -73.445387, + 45.624131 + ], + [ + -73.445586, + 45.623794 + ], + [ + -73.445824, + 45.623425 + ], + [ + -73.446146, + 45.622876 + ], + [ + -73.446834, + 45.62168 + ], + [ + -73.446841, + 45.621668 + ], + [ + -73.447011, + 45.621372 + ], + [ + -73.447396, + 45.620704 + ], + [ + -73.448364, + 45.619075 + ], + [ + -73.448491, + 45.618837 + ], + [ + -73.448637, + 45.61859 + ], + [ + -73.448724, + 45.618439 + ], + [ + -73.44919, + 45.617636 + ], + [ + -73.449422, + 45.617241 + ], + [ + -73.449512, + 45.617087 + ], + [ + -73.449827, + 45.616539 + ], + [ + -73.450142, + 45.615999 + ], + [ + -73.450551, + 45.61523 + ], + [ + -73.450795, + 45.61475 + ], + [ + -73.450957, + 45.614433 + ], + [ + -73.451219, + 45.613822 + ], + [ + -73.451496, + 45.613129 + ], + [ + -73.451588, + 45.612886 + ], + [ + -73.45174, + 45.612454 + ], + [ + -73.451764, + 45.612387 + ], + [ + -73.451963, + 45.611811 + ], + [ + -73.452038, + 45.611557 + ], + [ + -73.452151, + 45.611172 + ], + [ + -73.452319, + 45.610623 + ], + [ + -73.452427, + 45.610195 + ], + [ + -73.452502, + 45.609899 + ], + [ + -73.452742, + 45.608653 + ], + [ + -73.452838, + 45.608171 + ], + [ + -73.452849, + 45.608122 + ], + [ + -73.452894, + 45.607902 + ], + [ + -73.452956, + 45.607582 + ], + [ + -73.45303, + 45.607204 + ], + [ + -73.45313, + 45.606689 + ], + [ + -73.45343, + 45.605147 + ], + [ + -73.45351, + 45.604734 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453269, + 45.60401 + ], + [ + -73.453124, + 45.603897 + ], + [ + -73.452851, + 45.603687 + ], + [ + -73.452751, + 45.603609 + ], + [ + -73.452634, + 45.603524 + ], + [ + -73.45156, + 45.602679 + ], + [ + -73.45153, + 45.602655 + ], + [ + -73.451134, + 45.602344 + ], + [ + -73.450997, + 45.602236 + ], + [ + -73.450804, + 45.602087 + ], + [ + -73.450717, + 45.602019 + ], + [ + -73.450711, + 45.601962 + ], + [ + -73.450652, + 45.601878 + ], + [ + -73.450633, + 45.601851 + ], + [ + -73.45062, + 45.601823 + ], + [ + -73.450613, + 45.6018 + ], + [ + -73.450612, + 45.601775 + ], + [ + -73.450612, + 45.601745 + ], + [ + -73.450617, + 45.601719 + ], + [ + -73.450626, + 45.601694 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450683, + 45.601629 + ], + [ + -73.45076, + 45.601581 + ], + [ + -73.450865, + 45.60153 + ], + [ + -73.451136, + 45.601427 + ], + [ + -73.451322, + 45.601341 + ], + [ + -73.45143, + 45.601269 + ], + [ + -73.451545, + 45.601187 + ], + [ + -73.451753, + 45.601 + ], + [ + -73.451831, + 45.600914 + ], + [ + -73.451899, + 45.600828 + ], + [ + -73.451961, + 45.600734 + ], + [ + -73.452054, + 45.600554 + ], + [ + -73.452082, + 45.600442 + ], + [ + -73.452078, + 45.600293 + ], + [ + -73.452054, + 45.600172 + ], + [ + -73.45194, + 45.599798 + ], + [ + -73.451915, + 45.599672 + ], + [ + -73.451904, + 45.599524 + ], + [ + -73.451926, + 45.59938 + ], + [ + -73.451964, + 45.599267 + ], + [ + -73.452053, + 45.599139 + ], + [ + -73.452063, + 45.599123 + ], + [ + -73.452183, + 45.598993 + ], + [ + -73.452318, + 45.598881 + ], + [ + -73.452477, + 45.598768 + ], + [ + -73.452963, + 45.598458 + ], + [ + -73.45458, + 45.597401 + ], + [ + -73.459437, + 45.594497 + ], + [ + -73.459888, + 45.594213 + ], + [ + -73.46035, + 45.593903 + ], + [ + -73.460702, + 45.593647 + ], + [ + -73.461218, + 45.593251 + ], + [ + -73.46178, + 45.592783 + ], + [ + -73.465585, + 45.589586 + ], + [ + -73.468548, + 45.587089 + ], + [ + -73.468925, + 45.586766 + ], + [ + -73.469282, + 45.586424 + ], + [ + -73.469476, + 45.586217 + ], + [ + -73.46977, + 45.585875 + ], + [ + -73.470065, + 45.585497 + ], + [ + -73.470208, + 45.585295 + ], + [ + -73.470515, + 45.584795 + ], + [ + -73.470777, + 45.584346 + ], + [ + -73.470818, + 45.584266 + ], + [ + -73.471151, + 45.583659 + ], + [ + -73.471441, + 45.583163 + ], + [ + -73.471782, + 45.582588 + ], + [ + -73.471999, + 45.582223 + ], + [ + -73.472179, + 45.58194 + ], + [ + -73.472331, + 45.581716 + ], + [ + -73.472649, + 45.581329 + ], + [ + -73.47273, + 45.58124 + ], + [ + -73.472825, + 45.58114 + ], + [ + -73.473026, + 45.580958 + ], + [ + -73.473162, + 45.580835 + ], + [ + -73.473456, + 45.580601 + ], + [ + -73.473548, + 45.580529 + ], + [ + -73.474056, + 45.580187 + ], + [ + -73.474914, + 45.579634 + ], + [ + -73.475349, + 45.579354 + ], + [ + -73.475514, + 45.57924 + ], + [ + -73.475748, + 45.579059 + ], + [ + -73.476005, + 45.578855 + ], + [ + -73.476092, + 45.578785 + ], + [ + -73.476311, + 45.578613 + ], + [ + -73.476531, + 45.578426 + ], + [ + -73.477316, + 45.577756 + ], + [ + -73.478746, + 45.576546 + ], + [ + -73.485291, + 45.570941 + ], + [ + -73.485924, + 45.570374 + ], + [ + -73.486543, + 45.569794 + ], + [ + -73.487144, + 45.5692 + ], + [ + -73.487725, + 45.568597 + ], + [ + -73.488283, + 45.567985 + ], + [ + -73.489005, + 45.567148 + ], + [ + -73.489524, + 45.56651 + ], + [ + -73.490025, + 45.565857 + ], + [ + -73.490348, + 45.565416 + ], + [ + -73.490811, + 45.564746 + ], + [ + -73.492757, + 45.561799 + ], + [ + -73.493231, + 45.561129 + ], + [ + -73.493558, + 45.560688 + ], + [ + -73.493892, + 45.560256 + ], + [ + -73.494237, + 45.559829 + ], + [ + -73.499922, + 45.552981 + ], + [ + -73.501151, + 45.551492 + ], + [ + -73.501844, + 45.550646 + ], + [ + -73.502872, + 45.549445 + ], + [ + -73.503558, + 45.548684 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522764, + 45.530162 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.51669, + 45.526331 + ], + [ + -73.516564, + 45.52594 + ], + [ + -73.516314, + 45.525224 + ], + [ + -73.516296, + 45.525161 + ], + [ + -73.516288, + 45.525131 + ], + [ + -73.516317, + 45.525053 + ], + [ + -73.516302, + 45.524919 + ], + [ + -73.516294, + 45.524734 + ], + [ + -73.516303, + 45.524604 + ], + [ + -73.516345, + 45.52437 + ], + [ + -73.516405, + 45.524203 + ], + [ + -73.516578, + 45.523623 + ], + [ + -73.516683, + 45.523438 + ], + [ + -73.516765, + 45.523305 + ], + [ + -73.516823, + 45.523209 + ], + [ + -73.516951, + 45.523069 + ], + [ + -73.517159, + 45.522876 + ], + [ + -73.517395, + 45.522705 + ], + [ + -73.517522, + 45.522552 + ], + [ + -73.518003, + 45.522345 + ], + [ + -73.518219, + 45.522255 + ], + [ + -73.518483, + 45.522178 + ], + [ + -73.518751, + 45.522111 + ], + [ + -73.518959, + 45.52207 + ], + [ + -73.519211, + 45.522021 + ], + [ + -73.519463, + 45.521967 + ], + [ + -73.520583, + 45.521872 + ], + [ + -73.522213, + 45.521732 + ], + [ + -73.523688, + 45.521608 + ], + [ + -73.525933, + 45.521416 + ], + [ + -73.534391, + 45.520735 + ], + [ + -73.534716, + 45.520716 + ], + [ + -73.535006, + 45.520706 + ], + [ + -73.535439, + 45.520719 + ], + [ + -73.535574, + 45.520734 + ], + [ + -73.535886, + 45.520771 + ], + [ + -73.536216, + 45.520827 + ], + [ + -73.538962, + 45.521314 + ], + [ + -73.546713, + 45.522688 + ], + [ + -73.546899, + 45.522724 + ], + [ + -73.547126, + 45.522828 + ], + [ + -73.550978, + 45.524639 + ], + [ + -73.5511, + 45.524684 + ], + [ + -73.551293, + 45.524734 + ], + [ + -73.553654, + 45.525353 + ], + [ + -73.553877, + 45.52543 + ], + [ + -73.554163, + 45.525542 + ], + [ + -73.554506, + 45.525695 + ], + [ + -73.554687, + 45.525824 + ], + [ + -73.554811, + 45.525929 + ], + [ + -73.554929, + 45.526059 + ], + [ + -73.55493, + 45.526059 + ], + [ + -73.554993, + 45.526176 + ], + [ + -73.555026, + 45.52628 + ], + [ + -73.554833, + 45.526514 + ], + [ + -73.554697, + 45.526599 + ], + [ + -73.554558, + 45.526626 + ], + [ + -73.554315, + 45.526628 + ], + [ + -73.553319, + 45.526172 + ], + [ + -73.553138, + 45.526114 + ], + [ + -73.551756, + 45.525462 + ], + [ + -73.551291, + 45.52526 + ], + [ + -73.550364, + 45.524824 + ], + [ + -73.549511, + 45.524419 + ], + [ + -73.548735, + 45.524051 + ], + [ + -73.548198, + 45.52379 + ], + [ + -73.548092, + 45.523688 + ], + [ + -73.547877, + 45.523575 + ], + [ + -73.547516, + 45.523402 + ], + [ + -73.547208, + 45.52326 + ], + [ + -73.546709, + 45.522954 + ], + [ + -73.546707, + 45.522951 + ], + [ + -73.54663, + 45.522846 + ], + [ + -73.546597, + 45.522733 + ], + [ + -73.546634, + 45.522544 + ], + [ + -73.54672, + 45.522337 + ], + [ + -73.547896, + 45.520642 + ], + [ + -73.548022, + 45.520458 + ], + [ + -73.5497, + 45.518116 + ], + [ + -73.550049, + 45.517629 + ], + [ + -73.550362, + 45.51717 + ], + [ + -73.55058, + 45.516878 + ], + [ + -73.551064, + 45.516329 + ], + [ + -73.552085, + 45.515312 + ], + [ + -73.552825, + 45.51449 + ], + [ + -73.555931, + 45.510258 + ], + [ + -73.556297, + 45.509815 + ], + [ + -73.556685, + 45.509346 + ], + [ + -73.556881, + 45.509106 + ], + [ + -73.557097, + 45.508843 + ], + [ + -73.558098, + 45.507631 + ], + [ + -73.558733, + 45.506895 + ], + [ + -73.558902, + 45.506688 + ], + [ + -73.559399, + 45.506102 + ], + [ + -73.559674, + 45.505789 + ], + [ + -73.559961, + 45.505451 + ], + [ + -73.560315, + 45.505045 + ], + [ + -73.560946, + 45.504294 + ], + [ + -73.561138, + 45.504148 + ], + [ + -73.56137, + 45.5039 + ], + [ + -73.561633, + 45.503594 + ], + [ + -73.561765, + 45.503418 + ], + [ + -73.562022, + 45.503083 + ], + [ + -73.562229, + 45.50281 + ], + [ + -73.562656, + 45.502227 + ], + [ + -73.563344, + 45.501278 + ], + [ + -73.563437, + 45.501142 + ], + [ + -73.563582, + 45.500891 + ], + [ + -73.563637, + 45.500782 + ], + [ + -73.563686, + 45.500673 + ], + [ + -73.563742, + 45.500523 + ], + [ + -73.563784, + 45.50037 + ], + [ + -73.563792, + 45.500339 + ], + [ + -73.563799, + 45.500277 + ], + [ + -73.56381, + 45.500164 + ], + [ + -73.563817, + 45.499951 + ], + [ + -73.563801, + 45.499845 + ], + [ + -73.563769, + 45.499726 + ], + [ + -73.563716, + 45.499593 + ], + [ + -73.563657, + 45.499455 + ], + [ + -73.563568, + 45.499314 + ], + [ + -73.56346, + 45.499182 + ], + [ + -73.563335, + 45.499056 + ], + [ + -73.563258, + 45.498987 + ], + [ + -73.563134, + 45.498882 + ], + [ + -73.56301, + 45.498798 + ], + [ + -73.562842, + 45.498706 + ], + [ + -73.562717, + 45.498629 + ], + [ + -73.562641, + 45.498572 + ], + [ + -73.562606, + 45.498541 + ], + [ + -73.562542, + 45.498477 + ], + [ + -73.562514, + 45.498441 + ], + [ + -73.562489, + 45.498405 + ], + [ + -73.56245, + 45.498328 + ], + [ + -73.562437, + 45.498288 + ], + [ + -73.562419, + 45.498207 + ], + [ + -73.562416, + 45.498166 + ], + [ + -73.562423, + 45.498084 + ], + [ + -73.562444, + 45.498004 + ], + [ + -73.562461, + 45.497965 + ], + [ + -73.562483, + 45.497927 + ], + [ + -73.562498, + 45.497907 + ], + [ + -73.562535, + 45.497857 + ], + [ + -73.562592, + 45.497793 + ], + [ + -73.562675, + 45.497717 + ], + [ + -73.562831, + 45.497627 + ], + [ + -73.562983, + 45.497576 + ], + [ + -73.56315, + 45.497541 + ], + [ + -73.563299, + 45.497536 + ], + [ + -73.563474, + 45.497544 + ], + [ + -73.563652, + 45.497556 + ], + [ + -73.563841, + 45.497592 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.56431, + 45.497835 + ], + [ + -73.564363, + 45.497859 + ], + [ + -73.565142, + 45.498217 + ], + [ + -73.565601, + 45.498443 + ], + [ + -73.565748, + 45.49831 + ], + [ + -73.565849, + 45.498292 + ], + [ + -73.566051, + 45.498359 + ], + [ + -73.566361, + 45.498471 + ], + [ + -73.566492, + 45.498485 + ], + [ + -73.566611, + 45.498345 + ] + ] + }, + "id": 188, + "properties": { + "id": "e3a0385b-4dd7-46f7-adfa-9e53e1c0cd7a", + "data": { + "gtfs": { + "shape_id": "87_1_A" + }, + "segments": [ + { + "distanceMeters": 213, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 388, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 520, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 19001, + "travelTimeSeconds": 2040 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 312, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 27185, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 14693.615320148416, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.71, + "travelTimeWithoutDwellTimesSeconds": 3120, + "operatingTimeWithLayoverTimeSeconds": 3432, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3120, + "operatingSpeedWithLayoverMetersPerSecond": 7.92, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.71 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "ca205394-9833-4e14-b4fa-653c28b9a37d", + "dd170d68-d567-4a2d-8a93-47dec3a52cd1", + "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", + "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", + "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", + "204b558a-c106-4589-888d-4bd6528787b5", + "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", + "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", + "949c3098-32ca-4f3b-81ba-cbe506f68923", + "518135ae-62e9-44c2-bac7-e8c50c56eec9", + "148d4b0f-418e-4993-b335-f1dcd1c4df41", + "568437d9-2de5-4e5e-b111-1a7811ac5c99", + "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", + "6928ef4b-2825-4234-84d9-1c82edb211b0", + "777d67e8-62c3-46b4-a71f-e76a88b45f45", + "d04543e8-f38e-4937-b92b-1bc9ff97fd25", + "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", + "389622d0-ee1f-428b-9366-e69f134ff23e", + "02fef102-0f62-42d0-b4ed-790bc76ef1ad", + "f659a652-a61c-4199-abbc-a42f3ceef5cb", + "90b41412-0c12-4505-b7c9-b915901b1dd2", + "78a9a588-c1f0-470f-bbcc-52b6da866dad", + "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", + "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", + "253353ba-aba2-4e63-bf86-819bb7c9cecd", + "706f0077-9543-4662-8684-a321216a8a90", + "589f0f16-2c87-45fc-856c-d82dc5449f14", + "0778ac37-7369-4d81-abbc-9aa1d13b1c38", + "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", + "039c87a4-2647-4079-9a79-c7d3278ef6b2", + "e2d71c2d-a170-4ce7-a381-519755a00e36", + "a2b2c8d3-da2c-46a1-8009-597d5c6a0c19", + "ca205394-9833-4e14-b4fa-653c28b9a37d", + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" + ], + "stops": [], + "line_id": "16f122ef-4dad-4be1-80cb-c2eaec33e34b", + "segments": [ + 0, + 7, + 13, + 21, + 25, + 32, + 38, + 47, + 51, + 56, + 60, + 63, + 66, + 69, + 76, + 83, + 90, + 98, + 116, + 124, + 131, + 138, + 141, + 144, + 146, + 152, + 158, + 160, + 165, + 170, + 176, + 180, + 190 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 188, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.566611, + 45.498345 + ], + [ + -73.566738, + 45.498195 + ], + [ + -73.566628, + 45.49808 + ], + [ + -73.566306, + 45.497931 + ], + [ + -73.566253, + 45.497841 + ], + [ + -73.56638, + 45.497699 + ], + [ + -73.566016, + 45.497523 + ], + [ + -73.564691, + 45.496892 + ], + [ + -73.564645, + 45.496938 + ], + [ + -73.564308, + 45.497279 + ], + [ + -73.564223, + 45.497363 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.563751, + 45.497848 + ], + [ + -73.562654, + 45.499004 + ], + [ + -73.562195, + 45.498662 + ], + [ + -73.561924, + 45.498365 + ], + [ + -73.561721, + 45.498171 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.561033, + 45.497765 + ], + [ + -73.560456, + 45.497495 + ], + [ + -73.560139, + 45.497347 + ], + [ + -73.559235, + 45.49696 + ], + [ + -73.55917, + 45.496938 + ], + [ + -73.558356, + 45.496631 + ], + [ + -73.557604, + 45.496364 + ], + [ + -73.556782, + 45.49606 + ], + [ + -73.555745, + 45.495673 + ], + [ + -73.555351, + 45.495512 + ], + [ + -73.555133, + 45.495401 + ], + [ + -73.554916, + 45.495262 + ], + [ + -73.554768, + 45.495125 + ], + [ + -73.55465, + 45.494994 + ], + [ + -73.553944, + 45.493258 + ], + [ + -73.553818, + 45.492971 + ], + [ + -73.553465, + 45.492338 + ], + [ + -73.552977, + 45.491759 + ], + [ + -73.552502, + 45.491344 + ], + [ + -73.551956, + 45.490962 + ], + [ + -73.551651, + 45.490791 + ], + [ + -73.551074, + 45.490513 + ], + [ + -73.550682, + 45.490367 + ], + [ + -73.550312, + 45.490228 + ], + [ + -73.54956, + 45.490034 + ], + [ + -73.548355, + 45.489798 + ], + [ + -73.542648, + 45.488704 + ], + [ + -73.541878, + 45.488554 + ], + [ + -73.541086, + 45.488398 + ], + [ + -73.541083, + 45.488397 + ], + [ + -73.540636, + 45.488282 + ], + [ + -73.540145, + 45.488119 + ], + [ + -73.539582, + 45.48786 + ], + [ + -73.539239, + 45.487663 + ], + [ + -73.538946, + 45.487462 + ], + [ + -73.538619, + 45.487192 + ], + [ + -73.538304, + 45.486863 + ], + [ + -73.538089, + 45.486564 + ], + [ + -73.537862, + 45.486139 + ], + [ + -73.537796, + 45.485958 + ], + [ + -73.537731, + 45.485785 + ], + [ + -73.53767, + 45.485461 + ], + [ + -73.537646, + 45.485264 + ], + [ + -73.537653, + 45.484914 + ], + [ + -73.537707, + 45.484604 + ], + [ + -73.537881, + 45.484168 + ], + [ + -73.537968, + 45.483893 + ], + [ + -73.538058, + 45.483623 + ], + [ + -73.539557, + 45.479354 + ], + [ + -73.53982, + 45.478652 + ], + [ + -73.540179, + 45.47782 + ], + [ + -73.540481, + 45.477177 + ], + [ + -73.540578, + 45.477027 + ], + [ + -73.540928, + 45.476409 + ], + [ + -73.5413, + 45.475732 + ], + [ + -73.541747, + 45.474937 + ], + [ + -73.542136, + 45.474264 + ], + [ + -73.542539, + 45.47363 + ], + [ + -73.543159, + 45.472786 + ], + [ + -73.543162, + 45.472781 + ], + [ + -73.5432, + 45.472729 + ], + [ + -73.543381, + 45.472482 + ], + [ + -73.543908, + 45.471834 + ], + [ + -73.544604, + 45.471016 + ], + [ + -73.54479, + 45.470824 + ], + [ + -73.544929, + 45.470679 + ], + [ + -73.54509, + 45.470477 + ], + [ + -73.545159, + 45.470391 + ], + [ + -73.545162, + 45.470289 + ], + [ + -73.54518, + 45.470102 + ], + [ + -73.54513, + 45.469912 + ], + [ + -73.545032, + 45.469762 + ], + [ + -73.544829, + 45.469589 + ], + [ + -73.544396, + 45.469456 + ], + [ + -73.544223, + 45.469408 + ], + [ + -73.544, + 45.469414 + ], + [ + -73.54385, + 45.469436 + ], + [ + -73.543665, + 45.469485 + ], + [ + -73.543125, + 45.469658 + ], + [ + -73.542795, + 45.46978 + ], + [ + -73.542335, + 45.469915 + ], + [ + -73.542042, + 45.469974 + ], + [ + -73.541634, + 45.469988 + ], + [ + -73.538583, + 45.470121 + ], + [ + -73.536645, + 45.47012 + ], + [ + -73.534843, + 45.470106 + ], + [ + -73.531663, + 45.470044 + ], + [ + -73.528901, + 45.469979 + ], + [ + -73.525636, + 45.469864 + ], + [ + -73.520215, + 45.469565 + ], + [ + -73.516228, + 45.469261 + ], + [ + -73.50737, + 45.468395 + ], + [ + -73.501604, + 45.467786 + ], + [ + -73.499262, + 45.467514 + ], + [ + -73.493921, + 45.466881 + ], + [ + -73.491932, + 45.466645 + ], + [ + -73.489852, + 45.466348 + ], + [ + -73.489119, + 45.46624 + ], + [ + -73.488353, + 45.466099 + ], + [ + -73.487947, + 45.465982 + ], + [ + -73.487624, + 45.465833 + ], + [ + -73.487378, + 45.465638 + ], + [ + -73.487289, + 45.465389 + ], + [ + -73.487411, + 45.465142 + ], + [ + -73.487606, + 45.464949 + ], + [ + -73.487929, + 45.464813 + ], + [ + -73.488584, + 45.464665 + ], + [ + -73.489559, + 45.464575 + ], + [ + -73.49019, + 45.464579 + ], + [ + -73.490836, + 45.464607 + ], + [ + -73.491353, + 45.464709 + ], + [ + -73.492266, + 45.464916 + ], + [ + -73.492298, + 45.464924 + ], + [ + -73.493024, + 45.46511 + ], + [ + -73.493289, + 45.465231 + ], + [ + -73.49355, + 45.46545 + ], + [ + -73.493833, + 45.466097 + ], + [ + -73.493922, + 45.46638 + ], + [ + -73.494209, + 45.467172 + ], + [ + -73.494809, + 45.468733 + ], + [ + -73.495076, + 45.469359 + ], + [ + -73.495234, + 45.469683 + ], + [ + -73.495362, + 45.469939 + ], + [ + -73.495491, + 45.470173 + ], + [ + -73.49554, + 45.470262 + ], + [ + -73.495895, + 45.470906 + ], + [ + -73.495967, + 45.471037 + ], + [ + -73.496018, + 45.471127 + ], + [ + -73.496235, + 45.471478 + ], + [ + -73.496323, + 45.471617 + ], + [ + -73.496799, + 45.472387 + ], + [ + -73.497277, + 45.473188 + ], + [ + -73.497508, + 45.473543 + ], + [ + -73.497684, + 45.473744 + ], + [ + -73.49797, + 45.473998 + ], + [ + -73.497971, + 45.473998 + ], + [ + -73.498154, + 45.474204 + ], + [ + -73.498345, + 45.474398 + ], + [ + -73.498759, + 45.474776 + ], + [ + -73.498981, + 45.474956 + ], + [ + -73.499212, + 45.475131 + ], + [ + -73.499453, + 45.475307 + ], + [ + -73.502533, + 45.47734 + ], + [ + -73.504857, + 45.478866 + ], + [ + -73.505913, + 45.479567 + ], + [ + -73.50636, + 45.479923 + ], + [ + -73.506669, + 45.480206 + ], + [ + -73.506703, + 45.480242 + ], + [ + -73.507146, + 45.480733 + ], + [ + -73.507302, + 45.480949 + ], + [ + -73.507442, + 45.481165 + ], + [ + -73.507569, + 45.481381 + ], + [ + -73.507678, + 45.48161 + ], + [ + -73.507857, + 45.482069 + ], + [ + -73.507995, + 45.482559 + ], + [ + -73.508478, + 45.484485 + ], + [ + -73.508692, + 45.485218 + ], + [ + -73.508857, + 45.485709 + ], + [ + -73.509037, + 45.486199 + ], + [ + -73.509236, + 45.486685 + ], + [ + -73.509454, + 45.487171 + ], + [ + -73.509688, + 45.487657 + ], + [ + -73.509939, + 45.488138 + ], + [ + -73.510206, + 45.488624 + ], + [ + -73.510497, + 45.489096 + ], + [ + -73.510511, + 45.489119 + ], + [ + -73.510962, + 45.489803 + ], + [ + -73.512569, + 45.492115 + ], + [ + -73.512867, + 45.49257 + ], + [ + -73.513116, + 45.493024 + ], + [ + -73.513214, + 45.493253 + ], + [ + -73.513607, + 45.494261 + ], + [ + -73.514156, + 45.495746 + ], + [ + -73.514429, + 45.49643 + ], + [ + -73.514695, + 45.496974 + ], + [ + -73.515628, + 45.498702 + ], + [ + -73.515861, + 45.49917 + ], + [ + -73.516166, + 45.499876 + ], + [ + -73.516897, + 45.501748 + ], + [ + -73.516988, + 45.501968 + ], + [ + -73.517173, + 45.5024 + ], + [ + -73.517284, + 45.502611 + ], + [ + -73.517524, + 45.503025 + ], + [ + -73.517729, + 45.503327 + ], + [ + -73.51827, + 45.504082 + ], + [ + -73.518977, + 45.505113 + ], + [ + -73.519147, + 45.505406 + ], + [ + -73.519228, + 45.505544 + ], + [ + -73.519438, + 45.50599 + ], + [ + -73.519526, + 45.506219 + ], + [ + -73.519678, + 45.506692 + ], + [ + -73.521082, + 45.511245 + ], + [ + -73.521438, + 45.51241 + ], + [ + -73.522146, + 45.514695 + ], + [ + -73.52301, + 45.517471 + ], + [ + -73.523266, + 45.518335 + ], + [ + -73.52329, + 45.518416 + ], + [ + -73.52338, + 45.518726 + ], + [ + -73.523575, + 45.519487 + ], + [ + -73.523691, + 45.519991 + ], + [ + -73.523836, + 45.520746 + ], + [ + -73.523856, + 45.520868 + ], + [ + -73.524112, + 45.522465 + ], + [ + -73.524354, + 45.524161 + ], + [ + -73.524413, + 45.524647 + ], + [ + -73.524445, + 45.525138 + ], + [ + -73.524426, + 45.525628 + ], + [ + -73.524401, + 45.525871 + ], + [ + -73.524367, + 45.526114 + ], + [ + -73.524264, + 45.526595 + ], + [ + -73.524195, + 45.526834 + ], + [ + -73.524183, + 45.526867 + ], + [ + -73.524025, + 45.527306 + ], + [ + -73.523924, + 45.52754 + ], + [ + -73.523683, + 45.528004 + ], + [ + -73.52355, + 45.528233 + ], + [ + -73.523265, + 45.528661 + ], + [ + -73.52295, + 45.529066 + ], + [ + -73.522634, + 45.529444 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.503549, + 45.548419 + ], + [ + -73.502986, + 45.54904 + ], + [ + -73.502097, + 45.550079 + ], + [ + -73.501025, + 45.551361 + ], + [ + -73.500319, + 45.55223 + ], + [ + -73.497146, + 45.556054 + ], + [ + -73.496787, + 45.55649 + ], + [ + -73.495905, + 45.557543 + ], + [ + -73.495369, + 45.558173 + ], + [ + -73.494314, + 45.559446 + ], + [ + -73.493461, + 45.560499 + ], + [ + -73.492975, + 45.561151 + ], + [ + -73.492659, + 45.561597 + ], + [ + -73.492068, + 45.562474 + ], + [ + -73.49148, + 45.563383 + ], + [ + -73.490434, + 45.564962 + ], + [ + -73.489967, + 45.565619 + ], + [ + -73.489477, + 45.566267 + ], + [ + -73.488962, + 45.566906 + ], + [ + -73.48825, + 45.567747 + ], + [ + -73.487877, + 45.568161 + ], + [ + -73.487301, + 45.568777 + ], + [ + -73.486712, + 45.56938 + ], + [ + -73.486308, + 45.569771 + ], + [ + -73.485474, + 45.570545 + ], + [ + -73.48461, + 45.571301 + ], + [ + -73.483654, + 45.572115 + ], + [ + -73.478606, + 45.576433 + ], + [ + -73.478028, + 45.576933 + ], + [ + -73.477248, + 45.577607 + ], + [ + -73.476645, + 45.578128 + ], + [ + -73.475915, + 45.578754 + ], + [ + -73.475553, + 45.579033 + ], + [ + -73.474887, + 45.579478 + ], + [ + -73.474437, + 45.579762 + ], + [ + -73.474095, + 45.580005 + ], + [ + -73.473853, + 45.580158 + ], + [ + -73.473398, + 45.580472 + ], + [ + -73.473077, + 45.58072 + ], + [ + -73.472886, + 45.580886 + ], + [ + -73.472612, + 45.581152 + ], + [ + -73.472574, + 45.581196 + ], + [ + -73.472319, + 45.581482 + ], + [ + -73.472175, + 45.581673 + ], + [ + -73.471994, + 45.581936 + ], + [ + -73.47191, + 45.582061 + ], + [ + -73.471753, + 45.582326 + ], + [ + -73.471543, + 45.582681 + ], + [ + -73.471245, + 45.583188 + ], + [ + -73.471013, + 45.58358 + ], + [ + -73.470714, + 45.584071 + ], + [ + -73.470067, + 45.585151 + ], + [ + -73.469784, + 45.585547 + ], + [ + -73.469628, + 45.585749 + ], + [ + -73.469287, + 45.586145 + ], + [ + -73.469101, + 45.586343 + ], + [ + -73.468904, + 45.586536 + ], + [ + -73.468695, + 45.586725 + ], + [ + -73.466029, + 45.588965 + ], + [ + -73.465851, + 45.589127 + ], + [ + -73.465429, + 45.589482 + ], + [ + -73.463709, + 45.590917 + ], + [ + -73.461267, + 45.592977 + ], + [ + -73.460579, + 45.593525 + ], + [ + -73.460036, + 45.593907 + ], + [ + -73.459551, + 45.594222 + ], + [ + -73.459088, + 45.594506 + ], + [ + -73.458501, + 45.594856 + ], + [ + -73.45527, + 45.596781 + ], + [ + -73.453729, + 45.597707 + ], + [ + -73.451702, + 45.598916 + ], + [ + -73.448041, + 45.60111 + ], + [ + -73.446821, + 45.601731 + ], + [ + -73.446355, + 45.601965 + ], + [ + -73.445994, + 45.602119 + ], + [ + -73.445612, + 45.602242 + ], + [ + -73.44521, + 45.602301 + ], + [ + -73.445109, + 45.602301 + ], + [ + -73.444975, + 45.602301 + ], + [ + -73.444719, + 45.602254 + ], + [ + -73.444513, + 45.602165 + ], + [ + -73.444191, + 45.601923 + ], + [ + -73.443738, + 45.601567 + ], + [ + -73.443603, + 45.601455 + ], + [ + -73.443509, + 45.601378 + ], + [ + -73.444182, + 45.600973 + ], + [ + -73.444832, + 45.600591 + ], + [ + -73.445172, + 45.600385 + ], + [ + -73.445404, + 45.60025 + ], + [ + -73.445606, + 45.600133 + ], + [ + -73.446043, + 45.599863 + ], + [ + -73.446679, + 45.599485 + ], + [ + -73.446908, + 45.599337 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449825, + 45.601331 + ], + [ + -73.449842, + 45.601358 + ], + [ + -73.449882, + 45.601394 + ], + [ + -73.449937, + 45.601432 + ], + [ + -73.449974, + 45.601468 + ], + [ + -73.450006, + 45.601497 + ], + [ + -73.450033, + 45.601528 + ], + [ + -73.450045, + 45.601571 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450452, + 45.601873 + ], + [ + -73.45054, + 45.60193 + ], + [ + -73.450604, + 45.601966 + ], + [ + -73.450658, + 45.602007 + ], + [ + -73.450717, + 45.602019 + ], + [ + -73.450804, + 45.602087 + ], + [ + -73.450997, + 45.602236 + ], + [ + -73.451134, + 45.602344 + ], + [ + -73.45153, + 45.602655 + ], + [ + -73.45156, + 45.602679 + ], + [ + -73.452634, + 45.603524 + ], + [ + -73.452751, + 45.603609 + ], + [ + -73.453124, + 45.603897 + ], + [ + -73.453147, + 45.603915 + ], + [ + -73.453269, + 45.60401 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453904, + 45.604474 + ], + [ + -73.454133, + 45.604694 + ], + [ + -73.454539, + 45.605032 + ], + [ + -73.454968, + 45.605353 + ], + [ + -73.455171, + 45.605504 + ], + [ + -73.455782, + 45.605973 + ], + [ + -73.456001, + 45.606135 + ], + [ + -73.456106, + 45.606225 + ], + [ + -73.45638, + 45.606432 + ], + [ + -73.456464, + 45.606472 + ], + [ + -73.456517, + 45.606482 + ], + [ + -73.456606, + 45.606499 + ], + [ + -73.456615, + 45.606661 + ], + [ + -73.456615, + 45.606796 + ], + [ + -73.456613, + 45.606975 + ], + [ + -73.45661, + 45.607368 + ], + [ + -73.456599, + 45.607836 + ], + [ + -73.456595, + 45.608241 + ], + [ + -73.456594, + 45.608335 + ], + [ + -73.456582, + 45.60905 + ], + [ + -73.456558, + 45.609802 + ], + [ + -73.456539, + 45.610065 + ], + [ + -73.456534, + 45.610121 + ], + [ + -73.456537, + 45.610463 + ], + [ + -73.456508, + 45.610998 + ], + [ + -73.4565, + 45.611138 + ], + [ + -73.456491, + 45.611268 + ], + [ + -73.456473, + 45.611516 + ], + [ + -73.45645, + 45.611771 + ], + [ + -73.456449, + 45.611777 + ], + [ + -73.456429, + 45.612204 + ], + [ + -73.456403, + 45.612587 + ], + [ + -73.456367, + 45.613122 + ], + [ + -73.456346, + 45.613356 + ], + [ + -73.456315, + 45.613701 + ], + [ + -73.456315, + 45.613702 + ], + [ + -73.456295, + 45.613828 + ], + [ + -73.456125, + 45.615281 + ], + [ + -73.45606, + 45.615718 + ], + [ + -73.456015, + 45.616024 + ], + [ + -73.455984, + 45.616307 + ], + [ + -73.45596, + 45.616501 + ], + [ + -73.455915, + 45.616856 + ], + [ + -73.455893, + 45.61704 + ], + [ + -73.455888, + 45.617081 + ], + [ + -73.455879, + 45.617157 + ], + [ + -73.45581, + 45.617621 + ], + [ + -73.455754, + 45.618024 + ], + [ + -73.455729, + 45.618206 + ], + [ + -73.455676, + 45.618606 + ], + [ + -73.45562, + 45.619025 + ], + [ + -73.455571, + 45.619434 + ], + [ + -73.45548, + 45.620182 + ], + [ + -73.455479, + 45.620194 + ], + [ + -73.455459, + 45.620347 + ], + [ + -73.455364, + 45.621566 + ], + [ + -73.455348, + 45.621833 + ], + [ + -73.455345, + 45.621886 + ], + [ + -73.455228, + 45.623663 + ], + [ + -73.455168, + 45.624166 + ], + [ + -73.455153, + 45.624288 + ], + [ + -73.454435, + 45.626407 + ], + [ + -73.454297, + 45.626782 + ], + [ + -73.454243, + 45.626929 + ], + [ + -73.454024, + 45.62755 + ], + [ + -73.453861, + 45.62803 + ], + [ + -73.453834, + 45.628108 + ], + [ + -73.453601, + 45.628791 + ], + [ + -73.453393, + 45.629394 + ], + [ + -73.453358, + 45.629493 + ], + [ + -73.453315, + 45.629624 + ], + [ + -73.453257, + 45.629785 + ], + [ + -73.45299, + 45.630565 + ], + [ + -73.452942, + 45.630703 + ], + [ + -73.452778, + 45.631153 + ], + [ + -73.452686, + 45.631346 + ], + [ + -73.452502, + 45.631778 + ], + [ + -73.452319, + 45.632093 + ], + [ + -73.452094, + 45.632426 + ], + [ + -73.451773, + 45.632844 + ], + [ + -73.451751, + 45.632867 + ], + [ + -73.451693, + 45.632925 + ], + [ + -73.451614, + 45.633011 + ], + [ + -73.451195, + 45.633474 + ], + [ + -73.450679, + 45.634027 + ], + [ + -73.450136, + 45.634603 + ], + [ + -73.449498, + 45.635273 + ], + [ + -73.449434, + 45.63534 + ], + [ + -73.449285, + 45.635498 + ], + [ + -73.449067, + 45.635736 + ], + [ + -73.448723, + 45.636136 + ], + [ + -73.448535, + 45.636361 + ], + [ + -73.448252, + 45.636716 + ], + [ + -73.448132, + 45.636874 + ], + [ + -73.447838, + 45.637258 + ], + [ + -73.447778, + 45.637337 + ], + [ + -73.447634, + 45.637301 + ], + [ + -73.447384, + 45.637215 + ], + [ + -73.447064, + 45.637088 + ], + [ + -73.446874, + 45.637013 + ], + [ + -73.446777, + 45.636959 + ], + [ + -73.446639, + 45.63686 + ], + [ + -73.446407, + 45.636689 + ], + [ + -73.44625, + 45.636558 + ], + [ + -73.446134, + 45.636441 + ], + [ + -73.445951, + 45.636247 + ], + [ + -73.445769, + 45.636018 + ], + [ + -73.445712, + 45.635937 + ], + [ + -73.445634, + 45.635856 + ], + [ + -73.445562, + 45.635784 + ], + [ + -73.445466, + 45.635698 + ], + [ + -73.445268, + 45.635536 + ], + [ + -73.445186, + 45.635476 + ], + [ + -73.445104, + 45.635415 + ], + [ + -73.444715, + 45.635109 + ], + [ + -73.44467, + 45.635073 + ], + [ + -73.444422, + 45.63487 + ], + [ + -73.444148, + 45.634658 + ], + [ + -73.444049, + 45.634573 + ], + [ + -73.443845, + 45.634429 + ], + [ + -73.443363, + 45.634036 + ], + [ + -73.443242, + 45.633938 + ], + [ + -73.442909, + 45.633686 + ], + [ + -73.442563, + 45.633434 + ], + [ + -73.442416, + 45.633371 + ], + [ + -73.44208, + 45.633254 + ], + [ + -73.441599, + 45.633114 + ], + [ + -73.440824, + 45.632902 + ], + [ + -73.440781, + 45.632889 + ], + [ + -73.440392, + 45.632771 + ], + [ + -73.440856, + 45.631968 + ], + [ + -73.441271, + 45.631251 + ], + [ + -73.441456, + 45.630932 + ], + [ + -73.441684, + 45.63054 + ], + [ + -73.441903, + 45.630164 + ], + [ + -73.442088, + 45.629846 + ], + [ + -73.443114, + 45.62808 + ], + [ + -73.443279, + 45.627791 + ], + [ + -73.443605, + 45.627221 + ], + [ + -73.444022, + 45.626488 + ], + [ + -73.44408, + 45.626388 + ], + [ + -73.444573, + 45.625552 + ], + [ + -73.445382, + 45.624139 + ], + [ + -73.445387, + 45.624131 + ], + [ + -73.445586, + 45.623794 + ], + [ + -73.445824, + 45.623425 + ], + [ + -73.446146, + 45.622876 + ], + [ + -73.446834, + 45.62168 + ], + [ + -73.446868, + 45.621622 + ], + [ + -73.447011, + 45.621372 + ], + [ + -73.447396, + 45.620704 + ], + [ + -73.448364, + 45.619075 + ], + [ + -73.448491, + 45.618837 + ], + [ + -73.448637, + 45.61859 + ], + [ + -73.448751, + 45.618393 + ], + [ + -73.44919, + 45.617636 + ], + [ + -73.449449, + 45.617195 + ], + [ + -73.449512, + 45.617087 + ], + [ + -73.449827, + 45.616539 + ], + [ + -73.450142, + 45.615999 + ], + [ + -73.450551, + 45.61523 + ], + [ + -73.450819, + 45.614704 + ], + [ + -73.450957, + 45.614433 + ], + [ + -73.451219, + 45.613822 + ], + [ + -73.451496, + 45.613129 + ], + [ + -73.451588, + 45.612886 + ], + [ + -73.451757, + 45.612406 + ], + [ + -73.451764, + 45.612387 + ], + [ + -73.451963, + 45.611811 + ], + [ + -73.452038, + 45.611557 + ], + [ + -73.452151, + 45.611172 + ], + [ + -73.452319, + 45.610623 + ], + [ + -73.452437, + 45.610156 + ], + [ + -73.452502, + 45.609899 + ], + [ + -73.452742, + 45.608653 + ], + [ + -73.452838, + 45.608171 + ], + [ + -73.452859, + 45.608073 + ], + [ + -73.452894, + 45.607902 + ], + [ + -73.452956, + 45.607582 + ], + [ + -73.45303, + 45.607204 + ], + [ + -73.45313, + 45.606689 + ], + [ + -73.45351, + 45.604734 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453269, + 45.60401 + ], + [ + -73.453124, + 45.603897 + ], + [ + -73.452804, + 45.60365 + ] + ] + }, + "id": 189, + "properties": { + "id": "aeea9a94-a106-422d-bb97-dd35b70b766f", + "data": { + "gtfs": { + "shape_id": "87_2_R" + }, + "segments": [ + { + "distanceMeters": 28256, + "travelTimeSeconds": 1848 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 890, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 388, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 520, + "travelTimeSeconds": 108 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 312, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 37534, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 14693.615320148416, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 12.03, + "travelTimeWithoutDwellTimesSeconds": 3120, + "operatingTimeWithLayoverTimeSeconds": 3432, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3120, + "operatingSpeedWithLayoverMetersPerSecond": 10.94, + "averageSpeedWithoutDwellTimesMetersPerSecond": 12.03 + }, + "mode": "bus", + "name": "boul. du Fort-St-Louis", + "color": "#A32638", + "nodes": [ + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", + "494d9db6-32c6-4aa3-9c11-91eba915c58f", + "6b55fd05-7687-457e-ae9d-e87027c7100f", + "ca205394-9833-4e14-b4fa-653c28b9a37d", + "dd170d68-d567-4a2d-8a93-47dec3a52cd1", + "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", + "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", + "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", + "204b558a-c106-4589-888d-4bd6528787b5", + "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", + "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", + "949c3098-32ca-4f3b-81ba-cbe506f68923", + "518135ae-62e9-44c2-bac7-e8c50c56eec9", + "148d4b0f-418e-4993-b335-f1dcd1c4df41", + "568437d9-2de5-4e5e-b111-1a7811ac5c99", + "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", + "6928ef4b-2825-4234-84d9-1c82edb211b0", + "777d67e8-62c3-46b4-a71f-e76a88b45f45", + "d04543e8-f38e-4937-b92b-1bc9ff97fd25", + "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", + "389622d0-ee1f-428b-9366-e69f134ff23e", + "02fef102-0f62-42d0-b4ed-790bc76ef1ad", + "f659a652-a61c-4199-abbc-a42f3ceef5cb", + "90b41412-0c12-4505-b7c9-b915901b1dd2", + "78a9a588-c1f0-470f-bbcc-52b6da866dad", + "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", + "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", + "253353ba-aba2-4e63-bf86-819bb7c9cecd", + "706f0077-9543-4662-8684-a321216a8a90", + "589f0f16-2c87-45fc-856c-d82dc5449f14", + "0778ac37-7369-4d81-abbc-9aa1d13b1c38", + "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", + "039c87a4-2647-4079-9a79-c7d3278ef6b2", + "e2d71c2d-a170-4ce7-a381-519755a00e36", + "a2b2c8d3-da2c-46a1-8009-597d5c6a0c19", + "ca205394-9833-4e14-b4fa-653c28b9a37d" + ], + "stops": [], + "line_id": "16f122ef-4dad-4be1-80cb-c2eaec33e34b", + "segments": [ + 0, + 341, + 346, + 393, + 399, + 406, + 413, + 417, + 424, + 430, + 439, + 443, + 448, + 452, + 455, + 458, + 461, + 468, + 476, + 482, + 490, + 508, + 516, + 524, + 530, + 533, + 536, + 538, + 544, + 550, + 552, + 557, + 562, + 568, + 572 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 189, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.383686, + 45.463029 + ], + [ + -73.383388, + 45.462852 + ], + [ + -73.383093, + 45.462681 + ], + [ + -73.382765, + 45.462469 + ], + [ + -73.382441, + 45.462268 + ], + [ + -73.382279, + 45.462167 + ], + [ + -73.382264, + 45.462188 + ], + [ + -73.382026, + 45.462513 + ], + [ + -73.380354, + 45.464826 + ], + [ + -73.380313, + 45.464882 + ], + [ + -73.380064, + 45.465238 + ], + [ + -73.378299, + 45.46769 + ], + [ + -73.3781, + 45.467967 + ], + [ + -73.377848, + 45.468313 + ], + [ + -73.375967, + 45.470909 + ], + [ + -73.375891, + 45.471015 + ], + [ + -73.37528, + 45.471878 + ], + [ + -73.374049, + 45.473595 + ], + [ + -73.373933, + 45.473762 + ], + [ + -73.373904, + 45.4738 + ], + [ + -73.373694, + 45.474085 + ], + [ + -73.37362, + 45.474193 + ], + [ + -73.373508, + 45.474319 + ], + [ + -73.373182, + 45.474772 + ], + [ + -73.373075, + 45.474921 + ], + [ + -73.372901, + 45.475178 + ], + [ + -73.37162, + 45.476955 + ], + [ + -73.36942, + 45.48001 + ], + [ + -73.36929, + 45.48019 + ], + [ + -73.369494, + 45.480301 + ], + [ + -73.369655, + 45.480389 + ], + [ + -73.37011, + 45.480637 + ], + [ + -73.372864, + 45.48216 + ], + [ + -73.373772, + 45.482665 + ], + [ + -73.373875, + 45.482724 + ], + [ + -73.373971, + 45.482778 + ], + [ + -73.374487, + 45.483067 + ], + [ + -73.374666, + 45.483163 + ], + [ + -73.37494, + 45.48331 + ], + [ + -73.375418, + 45.483571 + ], + [ + -73.376053, + 45.483919 + ], + [ + -73.376944, + 45.48441 + ], + [ + -73.377333, + 45.484662 + ], + [ + -73.377554, + 45.484785 + ], + [ + -73.377619, + 45.48482 + ], + [ + -73.377777, + 45.484906 + ], + [ + -73.378273, + 45.485158 + ], + [ + -73.379364, + 45.485713 + ], + [ + -73.379961, + 45.486024 + ], + [ + -73.381303, + 45.486687 + ], + [ + -73.381922, + 45.486987 + ], + [ + -73.382231, + 45.487138 + ], + [ + -73.38239, + 45.487214 + ], + [ + -73.382639, + 45.48734 + ], + [ + -73.383202, + 45.487615 + ], + [ + -73.383953, + 45.487976 + ], + [ + -73.384611, + 45.488271 + ], + [ + -73.384699, + 45.48831 + ], + [ + -73.384728, + 45.48832 + ], + [ + -73.384901, + 45.488369 + ], + [ + -73.385381, + 45.488599 + ], + [ + -73.385628, + 45.488725 + ], + [ + -73.386215, + 45.488995 + ], + [ + -73.386297, + 45.489034 + ], + [ + -73.387001, + 45.489365 + ], + [ + -73.387621, + 45.489654 + ], + [ + -73.387937, + 45.489803 + ], + [ + -73.388224, + 45.489938 + ], + [ + -73.388765, + 45.490199 + ], + [ + -73.388934, + 45.490277 + ], + [ + -73.389177, + 45.490388 + ], + [ + -73.389565, + 45.490569 + ], + [ + -73.390592, + 45.491047 + ], + [ + -73.391016, + 45.491244 + ], + [ + -73.391367, + 45.491407 + ], + [ + -73.391618, + 45.49152 + ], + [ + -73.39166, + 45.491539 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.394198, + 45.492723 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.395943, + 45.493543 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.399571, + 45.495233 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.401121, + 45.49596 + ], + [ + -73.401587, + 45.496174 + ], + [ + -73.402418, + 45.496555 + ], + [ + -73.402953, + 45.49679 + ], + [ + -73.403378, + 45.496978 + ], + [ + -73.403543, + 45.497051 + ], + [ + -73.403795, + 45.49716 + ], + [ + -73.404434, + 45.497426 + ], + [ + -73.404858, + 45.497588 + ], + [ + -73.405172, + 45.497723 + ], + [ + -73.405568, + 45.497876 + ], + [ + -73.406253, + 45.498139 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.406574, + 45.498264 + ], + [ + -73.407513, + 45.498634 + ], + [ + -73.407743, + 45.498715 + ], + [ + -73.408565, + 45.499044 + ], + [ + -73.408613, + 45.499067 + ], + [ + -73.408846, + 45.499152 + ], + [ + -73.409074, + 45.499238 + ], + [ + -73.409309, + 45.49933 + ], + [ + -73.40994, + 45.499576 + ], + [ + -73.410361, + 45.499742 + ], + [ + -73.410514, + 45.499802 + ], + [ + -73.410857, + 45.499937 + ], + [ + -73.411184, + 45.500063 + ], + [ + -73.411788, + 45.500288 + ], + [ + -73.412025, + 45.500379 + ], + [ + -73.412332, + 45.500496 + ], + [ + -73.412769, + 45.500658 + ], + [ + -73.41311, + 45.500798 + ], + [ + -73.413399, + 45.500906 + ], + [ + -73.413646, + 45.500992 + ], + [ + -73.414045, + 45.501145 + ], + [ + -73.414448, + 45.501297 + ], + [ + -73.414536, + 45.50133 + ], + [ + -73.414962, + 45.501488 + ], + [ + -73.415352, + 45.501632 + ], + [ + -73.415771, + 45.501785 + ], + [ + -73.416178, + 45.501934 + ], + [ + -73.416751, + 45.502146 + ], + [ + -73.417069, + 45.502262 + ], + [ + -73.417293, + 45.502344 + ], + [ + -73.417806, + 45.502538 + ], + [ + -73.418173, + 45.502669 + ], + [ + -73.418847, + 45.502921 + ], + [ + -73.418869, + 45.50293 + ], + [ + -73.419167, + 45.503047 + ], + [ + -73.419278, + 45.503088 + ], + [ + -73.419673, + 45.503241 + ], + [ + -73.420142, + 45.503431 + ], + [ + -73.42069, + 45.503665 + ], + [ + -73.420806, + 45.503714 + ], + [ + -73.421234, + 45.503904 + ], + [ + -73.421648, + 45.504084 + ], + [ + -73.422009, + 45.504242 + ], + [ + -73.422355, + 45.50439 + ], + [ + -73.423115, + 45.504715 + ], + [ + -73.423504, + 45.504882 + ], + [ + -73.42368, + 45.504958 + ], + [ + -73.423967, + 45.505084 + ], + [ + -73.424527, + 45.505328 + ], + [ + -73.424876, + 45.505479 + ], + [ + -73.424965, + 45.505517 + ], + [ + -73.425433, + 45.505715 + ], + [ + -73.425471, + 45.505742 + ], + [ + -73.425589, + 45.505823 + ], + [ + -73.425852, + 45.505949 + ], + [ + -73.426079, + 45.506046 + ], + [ + -73.426348, + 45.506161 + ], + [ + -73.426686, + 45.506305 + ], + [ + -73.426919, + 45.506405 + ], + [ + -73.42775, + 45.506774 + ], + [ + -73.427847, + 45.506792 + ], + [ + -73.428015, + 45.506824 + ], + [ + -73.428153, + 45.506828 + ], + [ + -73.428285, + 45.506833 + ], + [ + -73.428429, + 45.506818 + ], + [ + -73.428656, + 45.506779 + ], + [ + -73.428772, + 45.506761 + ], + [ + -73.428988, + 45.506721 + ], + [ + -73.429213, + 45.50668 + ], + [ + -73.429366, + 45.506674 + ], + [ + -73.429476, + 45.506669 + ], + [ + -73.429755, + 45.506651 + ], + [ + -73.429825, + 45.506654 + ], + [ + -73.429948, + 45.50668 + ], + [ + -73.430064, + 45.506725 + ], + [ + -73.4302, + 45.506807 + ], + [ + -73.430341, + 45.507086 + ], + [ + -73.430485, + 45.507257 + ], + [ + -73.430506, + 45.507276 + ], + [ + -73.430509, + 45.507278 + ], + [ + -73.430608, + 45.507365 + ], + [ + -73.430672, + 45.507415 + ], + [ + -73.431358, + 45.507856 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431666, + 45.508054 + ], + [ + -73.432482, + 45.508559 + ], + [ + -73.433021, + 45.508883 + ], + [ + -73.433395, + 45.509082 + ], + [ + -73.433453, + 45.509113 + ], + [ + -73.433504, + 45.509138 + ], + [ + -73.43374, + 45.509257 + ], + [ + -73.434128, + 45.509428 + ], + [ + -73.43476, + 45.509703 + ], + [ + -73.435357, + 45.509957 + ], + [ + -73.435478, + 45.510009 + ], + [ + -73.435758, + 45.510131 + ], + [ + -73.435893, + 45.510189 + ], + [ + -73.43661, + 45.510502 + ], + [ + -73.437183, + 45.510752 + ], + [ + -73.437938, + 45.511081 + ], + [ + -73.438224, + 45.511212 + ], + [ + -73.438495, + 45.511335 + ], + [ + -73.439008, + 45.511568 + ], + [ + -73.439439, + 45.511751 + ], + [ + -73.439738, + 45.511879 + ], + [ + -73.43983, + 45.511919 + ], + [ + -73.439896, + 45.511951 + ], + [ + -73.440237, + 45.512095 + ], + [ + -73.441448, + 45.512613 + ], + [ + -73.441811, + 45.512775 + ], + [ + -73.442895, + 45.513213 + ], + [ + -73.443061, + 45.51328 + ], + [ + -73.445634, + 45.514379 + ], + [ + -73.445666, + 45.514393 + ], + [ + -73.446646, + 45.514811 + ], + [ + -73.448409, + 45.515536 + ], + [ + -73.448481, + 45.515566 + ], + [ + -73.44854, + 45.51559 + ], + [ + -73.449494, + 45.515978 + ], + [ + -73.449844, + 45.516127 + ], + [ + -73.450296, + 45.51632 + ], + [ + -73.451368, + 45.516759 + ], + [ + -73.451373, + 45.516761 + ], + [ + -73.451903, + 45.516982 + ], + [ + -73.452053, + 45.517054 + ], + [ + -73.45224, + 45.517153 + ], + [ + -73.452412, + 45.517228 + ], + [ + -73.452518, + 45.517275 + ], + [ + -73.453808, + 45.5178 + ], + [ + -73.453996, + 45.517877 + ], + [ + -73.454088, + 45.517914 + ], + [ + -73.454764, + 45.518193 + ], + [ + -73.455195, + 45.518372 + ], + [ + -73.455625, + 45.518549 + ], + [ + -73.45631, + 45.518837 + ], + [ + -73.457043, + 45.519136 + ], + [ + -73.457149, + 45.51918 + ], + [ + -73.457268, + 45.519234 + ], + [ + -73.458416, + 45.519718 + ], + [ + -73.458582, + 45.519788 + ], + [ + -73.460207, + 45.520469 + ], + [ + -73.460326, + 45.520518 + ], + [ + -73.460513, + 45.520597 + ], + [ + -73.462498, + 45.52143 + ], + [ + -73.462791, + 45.521553 + ], + [ + -73.463787, + 45.521961 + ], + [ + -73.463823, + 45.521976 + ], + [ + -73.464215, + 45.522138 + ], + [ + -73.464352, + 45.522188 + ], + [ + -73.464459, + 45.522246 + ], + [ + -73.464607, + 45.522332 + ], + [ + -73.465171, + 45.522557 + ], + [ + -73.465496, + 45.522687 + ], + [ + -73.466002, + 45.522899 + ], + [ + -73.466103, + 45.522924 + ], + [ + -73.466276, + 45.522967 + ], + [ + -73.467237, + 45.523363 + ], + [ + -73.467909, + 45.523646 + ], + [ + -73.468048, + 45.523705 + ], + [ + -73.468866, + 45.524038 + ], + [ + -73.469522, + 45.524322 + ], + [ + -73.469659, + 45.524378 + ], + [ + -73.469721, + 45.524403 + ], + [ + -73.470239, + 45.524623 + ], + [ + -73.470555, + 45.524749 + ], + [ + -73.471094, + 45.524979 + ], + [ + -73.471997, + 45.525357 + ], + [ + -73.472463, + 45.525555 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.474669, + 45.526471 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.475467, + 45.526811 + ], + [ + -73.475894, + 45.526982 + ], + [ + -73.476167, + 45.527095 + ], + [ + -73.476219, + 45.527117 + ], + [ + -73.476969, + 45.527428 + ], + [ + -73.477725, + 45.527748 + ], + [ + -73.478344, + 45.528009 + ], + [ + -73.478598, + 45.528117 + ], + [ + -73.479454, + 45.528472 + ], + [ + -73.480164, + 45.528774 + ], + [ + -73.480753, + 45.529011 + ], + [ + -73.48089, + 45.529066 + ], + [ + -73.481425, + 45.529299 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.484972, + 45.530779 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.488434, + 45.532218 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.490645, + 45.533128 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.492965, + 45.534085 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.494103, + 45.534554 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.495628, + 45.535241 + ], + [ + -73.495883, + 45.535371 + ], + [ + -73.496559, + 45.535687 + ], + [ + -73.496645, + 45.535727 + ], + [ + -73.49677, + 45.535781 + ], + [ + -73.49726, + 45.535988 + ], + [ + -73.498459, + 45.536487 + ], + [ + -73.498944, + 45.536691 + ], + [ + -73.499435, + 45.536897 + ], + [ + -73.501142, + 45.537612 + ], + [ + -73.502066, + 45.537998 + ], + [ + -73.50327, + 45.538501 + ], + [ + -73.503424, + 45.538566 + ], + [ + -73.503808, + 45.538728 + ], + [ + -73.503912, + 45.538786 + ], + [ + -73.504095, + 45.538926 + ], + [ + -73.504553, + 45.539317 + ], + [ + -73.504747, + 45.539452 + ], + [ + -73.504776, + 45.539468 + ], + [ + -73.504898, + 45.539533 + ], + [ + -73.506469, + 45.540185 + ], + [ + -73.507029, + 45.540406 + ], + [ + -73.507958, + 45.540788 + ], + [ + -73.508096, + 45.540847 + ], + [ + -73.508112, + 45.54082 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.50824, + 45.540633 + ], + [ + -73.508343, + 45.540482 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.509505, + 45.538861 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.51159, + 45.537131 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.513272, + 45.536035 + ], + [ + -73.513413, + 45.535879 + ], + [ + -73.513707, + 45.535583 + ], + [ + -73.513941, + 45.535349 + ], + [ + -73.513972, + 45.535319 + ], + [ + -73.514031, + 45.535263 + ], + [ + -73.514312, + 45.534967 + ], + [ + -73.514735, + 45.53454 + ], + [ + -73.514842, + 45.53442 + ], + [ + -73.514898, + 45.534357 + ], + [ + -73.515145, + 45.534084 + ], + [ + -73.515317, + 45.533897 + ], + [ + -73.515372, + 45.533842 + ], + [ + -73.515504, + 45.533699 + ], + [ + -73.515508, + 45.533694 + ], + [ + -73.515888, + 45.533287 + ], + [ + -73.515986, + 45.533193 + ], + [ + -73.516614, + 45.532649 + ], + [ + -73.516729, + 45.532549 + ], + [ + -73.517579, + 45.531802 + ], + [ + -73.517926, + 45.531464 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518212, + 45.531168 + ], + [ + -73.51845, + 45.53088 + ], + [ + -73.518608, + 45.530695 + ], + [ + -73.518713, + 45.530574 + ], + [ + -73.518834, + 45.53043 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519398, + 45.526003 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 190, + "properties": { + "id": "6f88ce8f-117b-4e27-aa90-a00f88d8be58", + "data": { + "gtfs": { + "shape_id": "88_1_A" + }, + "segments": [ + { + "distanceMeters": 129, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 402, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 360, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 557, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 420, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 87, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 636, + "travelTimeSeconds": 141 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 119 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 282, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17681, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 12648.105767291585, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.27, + "travelTimeWithoutDwellTimesSeconds": 2820, + "operatingTimeWithLayoverTimeSeconds": 3102, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2820, + "operatingSpeedWithLayoverMetersPerSecond": 5.7, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.27 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "2bfdc814-6852-43cf-a60e-ce2e7fee82b8", + "2bad9abb-726e-4e19-bd55-ea4436446fe9", + "40363de6-68fe-4797-a6b6-a7c0b8b379e0", + "24542ec6-1b63-420d-8089-98a7341dfe66", + "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", + "2cd6db83-9a4e-4640-91da-759ec9e4a386", + "c5d63249-9c53-468b-a75e-33839919bc02", + "f585bf2c-536e-4916-a0ee-20092a76ccad", + "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", + "057da5dd-23f2-431d-8955-7a7d8f0dae40", + "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", + "88a428f4-cdde-43a8-a2c3-c4652eae6722", + "d664171d-6b67-486f-b850-92d7b923ec60", + "658aec75-ba5b-4e43-b93b-5305ff3f6685", + "8d50e155-65e6-4b67-8d83-f347e12cf6d7", + "a2ac9477-abf0-4b55-8588-e045bd0373a2", + "ced239e0-91f5-4429-96fd-20bbb8fcfd11", + "70ea9063-86f0-43f5-9e7d-16ea087fc4ce", + "69b9716f-dd31-4ae3-9736-6d5edb237b8a", + "cb20b749-b55e-4251-94cd-215651864e8b", + "33ed66fe-2193-4e2a-b51d-d25140b9ad80", + "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", + "aab8672e-86c9-4a43-9806-f5135dc02b4e", + "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", + "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", + "69889f24-c076-4661-981b-6008a401d446", + "853b0202-bae1-4c20-ab0e-8b27d1350e9a", + "46ea2114-c4d6-46e8-be5d-60d028340abb", + "e460be07-05e4-49f8-a725-e63809c74139", + "235a92b0-53e1-410c-b264-d57c7814303c", + "7207a900-095a-4a6f-9e58-d5821a46e7d1", + "2d759b9b-5efb-4a57-814c-915d6b6185d7", + "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", + "eb6126b3-b137-4dad-bcdc-63a4afe577c5", + "80008949-5a0f-4c5e-b778-592c2ee8487f", + "53ead0f5-ebe4-4285-9d12-aa867ff0e782", + "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", + "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", + "7b1c691c-8a55-45c2-8401-9d619a0efb76", + "c4825963-416e-404b-a744-6ffe763e2d89", + "344c16fc-7161-4015-9999-e3e0f325dd1e", + "5636d204-312b-4d1e-bac7-614621da4bb5", + "d3991811-d92b-4ba2-9732-26a74abc49b7", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "5981cea7-b196-4e72-820c-362fb9c4e212", + "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", + "130245ae-209b-4e27-b903-ff57832b92eb", + "0d6b35f8-1b6c-4403-a7a5-53247aec7649", + "c3a2368c-bf2d-4c72-9adb-41ee799004b3", + "011d1f54-164c-4564-a051-bdacad3e287d", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "49918c5a-8414-49fd-abf9-87ae6b9f3976", + "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", + "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", + "65175945-c54c-4732-85a9-890393a0975c", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "999ed130-7d99-4115-ac3c-cabba7731288", + "d15f81ba-7519-47f7-aa07-0026f1b03e42", + "28f2fe65-961c-4550-a722-1e7790fe94ad", + "9cf81604-6d70-4ba8-a3fc-521104742058", + "4d48f36b-2274-4392-afac-b2c2c64b98f0", + "5f58acb6-be68-437f-bde7-a77d03125af9", + "4e61612c-2f48-47d6-ad42-7c0737853911", + "e46ba2d2-9f30-419f-acae-c73c3ef665c5", + "48ea0d06-7b69-4895-b55b-2a18e6e6f906", + "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", + "d00d9138-966b-4522-be1d-8c665c71246b", + "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "649e6394-9376-40eb-bc0e-4a376a0044aa", + "4fb4515b-e129-4622-b855-89143c2fd488", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "82ddf491-8480-4b4d-bd2b-3b768c0a5350", + "segments": [ + 0, + 4, + 8, + 11, + 14, + 19, + 23, + 26, + 27, + 37, + 43, + 50, + 56, + 63, + 66, + 69, + 76, + 84, + 92, + 97, + 102, + 105, + 112, + 121, + 123, + 128, + 135, + 142, + 147, + 152, + 159, + 163, + 171, + 183, + 203, + 207, + 215, + 217, + 224, + 227, + 229, + 235, + 243, + 249, + 254, + 259, + 265, + 271, + 275, + 281, + 285, + 289, + 293, + 299, + 306, + 309, + 313, + 318, + 320, + 326, + 331, + 335, + 342, + 351, + 357, + 365, + 373, + 383, + 386, + 389, + 406 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 190, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519057, + 45.525166 + ], + [ + -73.518828, + 45.525169 + ], + [ + -73.518662, + 45.525195 + ], + [ + -73.518477, + 45.525222 + ], + [ + -73.51841, + 45.525229 + ], + [ + -73.518309, + 45.525233 + ], + [ + -73.518165, + 45.525238 + ], + [ + -73.517846, + 45.525224 + ], + [ + -73.516858, + 45.525188 + ], + [ + -73.516329, + 45.525185 + ], + [ + -73.51586, + 45.52522 + ], + [ + -73.515879, + 45.525306 + ], + [ + -73.515954, + 45.525625 + ], + [ + -73.515993, + 45.52576 + ], + [ + -73.516108, + 45.52615 + ], + [ + -73.51612, + 45.526192 + ], + [ + -73.516245, + 45.52653 + ], + [ + -73.516302, + 45.526687 + ], + [ + -73.516434, + 45.526894 + ], + [ + -73.517006, + 45.527735 + ], + [ + -73.517118, + 45.52798 + ], + [ + -73.51723, + 45.528227 + ], + [ + -73.517259, + 45.52829 + ], + [ + -73.517272, + 45.52832 + ], + [ + -73.517504, + 45.528922 + ], + [ + -73.517577, + 45.529094 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.517456, + 45.531762 + ], + [ + -73.516898, + 45.532279 + ], + [ + -73.51664, + 45.532518 + ], + [ + -73.515885, + 45.533161 + ], + [ + -73.515753, + 45.533238 + ], + [ + -73.515672, + 45.533321 + ], + [ + -73.515331, + 45.533704 + ], + [ + -73.515257, + 45.533788 + ], + [ + -73.515202, + 45.533848 + ], + [ + -73.514831, + 45.534265 + ], + [ + -73.514791, + 45.534311 + ], + [ + -73.514731, + 45.534379 + ], + [ + -73.514684, + 45.534434 + ], + [ + -73.51432, + 45.534799 + ], + [ + -73.514008, + 45.535115 + ], + [ + -73.513904, + 45.53522 + ], + [ + -73.513681, + 45.535468 + ], + [ + -73.51342, + 45.535713 + ], + [ + -73.513155, + 45.535985 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.511248, + 45.53733 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.509636, + 45.538682 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.508029, + 45.540693 + ], + [ + -73.508021, + 45.540689 + ], + [ + -73.50755, + 45.540498 + ], + [ + -73.507102, + 45.540316 + ], + [ + -73.506536, + 45.540077 + ], + [ + -73.505481, + 45.539649 + ], + [ + -73.504975, + 45.539443 + ], + [ + -73.50484, + 45.539375 + ], + [ + -73.504659, + 45.53925 + ], + [ + -73.504204, + 45.538858 + ], + [ + -73.50401, + 45.538714 + ], + [ + -73.504007, + 45.538713 + ], + [ + -73.503897, + 45.538651 + ], + [ + -73.5035, + 45.538476 + ], + [ + -73.502143, + 45.537905 + ], + [ + -73.501222, + 45.537517 + ], + [ + -73.499715, + 45.536883 + ], + [ + -73.499534, + 45.536807 + ], + [ + -73.498456, + 45.536361 + ], + [ + -73.497345, + 45.53588 + ], + [ + -73.496932, + 45.535682 + ], + [ + -73.496814, + 45.535632 + ], + [ + -73.496544, + 45.535524 + ], + [ + -73.495741, + 45.5352 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.494446, + 45.534696 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.492656, + 45.533958 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.491133, + 45.533327 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.488611, + 45.532293 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.485524, + 45.531009 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.481755, + 45.52944 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.48089, + 45.529066 + ], + [ + -73.480753, + 45.529011 + ], + [ + -73.480164, + 45.528774 + ], + [ + -73.479454, + 45.528472 + ], + [ + -73.478852, + 45.528222 + ], + [ + -73.478598, + 45.528117 + ], + [ + -73.477725, + 45.527748 + ], + [ + -73.476969, + 45.527428 + ], + [ + -73.476219, + 45.527117 + ], + [ + -73.476102, + 45.527069 + ], + [ + -73.475894, + 45.526982 + ], + [ + -73.475467, + 45.526811 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.474284, + 45.526312 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.472784, + 45.525689 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.471997, + 45.525357 + ], + [ + -73.471094, + 45.524979 + ], + [ + -73.470555, + 45.524749 + ], + [ + -73.470239, + 45.524623 + ], + [ + -73.469721, + 45.524403 + ], + [ + -73.469639, + 45.524369 + ], + [ + -73.469522, + 45.524322 + ], + [ + -73.468866, + 45.524038 + ], + [ + -73.46822, + 45.523775 + ], + [ + -73.468048, + 45.523705 + ], + [ + -73.467237, + 45.523363 + ], + [ + -73.466276, + 45.522967 + ], + [ + -73.466082, + 45.522841 + ], + [ + -73.465634, + 45.52266 + ], + [ + -73.46556, + 45.522629 + ], + [ + -73.464874, + 45.522336 + ], + [ + -73.464576, + 45.522215 + ], + [ + -73.464439, + 45.522143 + ], + [ + -73.464336, + 45.522093 + ], + [ + -73.464186, + 45.522017 + ], + [ + -73.463952, + 45.52192 + ], + [ + -73.463658, + 45.521798 + ], + [ + -73.463125, + 45.521577 + ], + [ + -73.462859, + 45.521467 + ], + [ + -73.46256, + 45.521341 + ], + [ + -73.460787, + 45.520595 + ], + [ + -73.460592, + 45.520513 + ], + [ + -73.460391, + 45.520427 + ], + [ + -73.460276, + 45.520379 + ], + [ + -73.458651, + 45.519707 + ], + [ + -73.457521, + 45.519224 + ], + [ + -73.457332, + 45.519144 + ], + [ + -73.457212, + 45.51909 + ], + [ + -73.456379, + 45.518756 + ], + [ + -73.455695, + 45.518468 + ], + [ + -73.454389, + 45.517908 + ], + [ + -73.454164, + 45.517811 + ], + [ + -73.453487, + 45.51753 + ], + [ + -73.452836, + 45.51726 + ], + [ + -73.452666, + 45.517189 + ], + [ + -73.452271, + 45.517027 + ], + [ + -73.452136, + 45.516973 + ], + [ + -73.452066, + 45.516942 + ], + [ + -73.450161, + 45.516161 + ], + [ + -73.450032, + 45.516108 + ], + [ + -73.448767, + 45.515571 + ], + [ + -73.448601, + 45.5155 + ], + [ + -73.445131, + 45.514041 + ], + [ + -73.444787, + 45.513896 + ], + [ + -73.443504, + 45.513357 + ], + [ + -73.443129, + 45.513199 + ], + [ + -73.440479, + 45.512077 + ], + [ + -73.440432, + 45.512057 + ], + [ + -73.440007, + 45.511874 + ], + [ + -73.439905, + 45.511834 + ], + [ + -73.439831, + 45.511802 + ], + [ + -73.439067, + 45.511482 + ], + [ + -73.438501, + 45.511223 + ], + [ + -73.438299, + 45.511131 + ], + [ + -73.438017, + 45.511 + ], + [ + -73.437245, + 45.510635 + ], + [ + -73.436246, + 45.510195 + ], + [ + -73.435988, + 45.510081 + ], + [ + -73.435895, + 45.510041 + ], + [ + -73.435854, + 45.510023 + ], + [ + -73.435569, + 45.509897 + ], + [ + -73.435059, + 45.509678 + ], + [ + -73.434856, + 45.50959 + ], + [ + -73.434257, + 45.509343 + ], + [ + -73.433925, + 45.509203 + ], + [ + -73.433726, + 45.509117 + ], + [ + -73.433485, + 45.509005 + ], + [ + -73.433108, + 45.508806 + ], + [ + -73.432574, + 45.508487 + ], + [ + -73.432044, + 45.508167 + ], + [ + -73.431846, + 45.508041 + ], + [ + -73.43182, + 45.508023 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.431538, + 45.507856 + ], + [ + -73.430825, + 45.507356 + ], + [ + -73.430679, + 45.507221 + ], + [ + -73.430612, + 45.507149 + ], + [ + -73.43049, + 45.506978 + ], + [ + -73.43046, + 45.50692 + ], + [ + -73.430405, + 45.506816 + ], + [ + -73.430319, + 45.506587 + ], + [ + -73.430298, + 45.506497 + ], + [ + -73.430275, + 45.506389 + ], + [ + -73.430066, + 45.506425 + ], + [ + -73.429201, + 45.506567 + ], + [ + -73.428871, + 45.506622 + ], + [ + -73.428841, + 45.506627 + ], + [ + -73.428419, + 45.506698 + ], + [ + -73.428282, + 45.506718 + ], + [ + -73.428165, + 45.506711 + ], + [ + -73.427996, + 45.506684 + ], + [ + -73.427898, + 45.506666 + ], + [ + -73.427771, + 45.506635 + ], + [ + -73.427639, + 45.506594 + ], + [ + -73.427205, + 45.506406 + ], + [ + -73.426972, + 45.506306 + ], + [ + -73.426422, + 45.506071 + ], + [ + -73.42613, + 45.505956 + ], + [ + -73.425918, + 45.505873 + ], + [ + -73.425637, + 45.505778 + ], + [ + -73.425471, + 45.505742 + ], + [ + -73.425433, + 45.505715 + ], + [ + -73.425244, + 45.505635 + ], + [ + -73.424965, + 45.505517 + ], + [ + -73.424527, + 45.505328 + ], + [ + -73.423967, + 45.505084 + ], + [ + -73.42368, + 45.504958 + ], + [ + -73.423532, + 45.504895 + ], + [ + -73.423115, + 45.504715 + ], + [ + -73.422355, + 45.50439 + ], + [ + -73.422122, + 45.50429 + ], + [ + -73.422009, + 45.504242 + ], + [ + -73.421648, + 45.504084 + ], + [ + -73.421234, + 45.503904 + ], + [ + -73.420806, + 45.503714 + ], + [ + -73.420522, + 45.503593 + ], + [ + -73.420142, + 45.503431 + ], + [ + -73.419673, + 45.503241 + ], + [ + -73.419471, + 45.503163 + ], + [ + -73.419278, + 45.503088 + ], + [ + -73.419167, + 45.503047 + ], + [ + -73.418847, + 45.502921 + ], + [ + -73.418173, + 45.502669 + ], + [ + -73.417806, + 45.502538 + ], + [ + -73.417348, + 45.502365 + ], + [ + -73.417293, + 45.502344 + ], + [ + -73.416751, + 45.502146 + ], + [ + -73.416178, + 45.501934 + ], + [ + -73.415771, + 45.501785 + ], + [ + -73.415352, + 45.501632 + ], + [ + -73.414962, + 45.501488 + ], + [ + -73.414671, + 45.50138 + ], + [ + -73.414536, + 45.50133 + ], + [ + -73.414045, + 45.501145 + ], + [ + -73.413646, + 45.500992 + ], + [ + -73.413399, + 45.500906 + ], + [ + -73.41311, + 45.500798 + ], + [ + -73.412769, + 45.500658 + ], + [ + -73.41245, + 45.50054 + ], + [ + -73.412332, + 45.500496 + ], + [ + -73.411788, + 45.500288 + ], + [ + -73.411184, + 45.500063 + ], + [ + -73.410857, + 45.499937 + ], + [ + -73.410514, + 45.499802 + ], + [ + -73.410391, + 45.499753 + ], + [ + -73.40994, + 45.499576 + ], + [ + -73.409205, + 45.499289 + ], + [ + -73.409074, + 45.499238 + ], + [ + -73.408846, + 45.499152 + ], + [ + -73.408613, + 45.499067 + ], + [ + -73.408565, + 45.499044 + ], + [ + -73.407743, + 45.498715 + ], + [ + -73.407513, + 45.498634 + ], + [ + -73.406708, + 45.498317 + ], + [ + -73.406574, + 45.498264 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.405568, + 45.497876 + ], + [ + -73.405172, + 45.497723 + ], + [ + -73.404858, + 45.497588 + ], + [ + -73.404434, + 45.497426 + ], + [ + -73.403795, + 45.49716 + ], + [ + -73.40369, + 45.497114 + ], + [ + -73.403543, + 45.497051 + ], + [ + -73.402953, + 45.49679 + ], + [ + -73.402418, + 45.496555 + ], + [ + -73.401755, + 45.496251 + ], + [ + -73.401121, + 45.49596 + ], + [ + -73.400097, + 45.495485 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.396658, + 45.493872 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.395068, + 45.493132 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.391618, + 45.49152 + ], + [ + -73.391367, + 45.491407 + ], + [ + -73.391238, + 45.491347 + ], + [ + -73.391016, + 45.491244 + ], + [ + -73.390592, + 45.491047 + ], + [ + -73.389565, + 45.490569 + ], + [ + -73.389562, + 45.490568 + ], + [ + -73.389177, + 45.490388 + ], + [ + -73.388765, + 45.490199 + ], + [ + -73.388224, + 45.489938 + ], + [ + -73.387871, + 45.489772 + ], + [ + -73.387621, + 45.489654 + ], + [ + -73.387001, + 45.489365 + ], + [ + -73.386327, + 45.489048 + ], + [ + -73.386215, + 45.488995 + ], + [ + -73.385628, + 45.488725 + ], + [ + -73.385381, + 45.488599 + ], + [ + -73.385161, + 45.488493 + ], + [ + -73.384901, + 45.488369 + ], + [ + -73.384743, + 45.488246 + ], + [ + -73.384445, + 45.488089 + ], + [ + -73.384044, + 45.487891 + ], + [ + -73.383491, + 45.487611 + ], + [ + -73.382868, + 45.487294 + ], + [ + -73.382606, + 45.48716 + ], + [ + -73.3825, + 45.487106 + ], + [ + -73.382345, + 45.487025 + ], + [ + -73.382237, + 45.486971 + ], + [ + -73.381986, + 45.486854 + ], + [ + -73.381371, + 45.486556 + ], + [ + -73.380021, + 45.485902 + ], + [ + -73.379495, + 45.485632 + ], + [ + -73.378643, + 45.485213 + ], + [ + -73.377846, + 45.484834 + ], + [ + -73.377614, + 45.484722 + ], + [ + -73.377163, + 45.484505 + ], + [ + -73.376944, + 45.48441 + ], + [ + -73.376053, + 45.483919 + ], + [ + -73.375418, + 45.483571 + ], + [ + -73.375036, + 45.483363 + ], + [ + -73.37494, + 45.48331 + ], + [ + -73.374487, + 45.483067 + ], + [ + -73.373971, + 45.482778 + ], + [ + -73.373875, + 45.482724 + ], + [ + -73.373772, + 45.482665 + ], + [ + -73.372864, + 45.48216 + ], + [ + -73.37011, + 45.480637 + ], + [ + -73.369655, + 45.480389 + ], + [ + -73.369494, + 45.480301 + ], + [ + -73.36929, + 45.48019 + ], + [ + -73.369631, + 45.479717 + ], + [ + -73.371681, + 45.476871 + ], + [ + -73.372901, + 45.475178 + ], + [ + -73.373075, + 45.474921 + ], + [ + -73.37341, + 45.474455 + ], + [ + -73.373508, + 45.474319 + ], + [ + -73.37362, + 45.474193 + ], + [ + -73.373694, + 45.474085 + ], + [ + -73.373933, + 45.473762 + ], + [ + -73.374049, + 45.473595 + ], + [ + -73.374382, + 45.47313 + ], + [ + -73.37528, + 45.471878 + ], + [ + -73.375849, + 45.471074 + ], + [ + -73.375891, + 45.471015 + ], + [ + -73.377848, + 45.468313 + ], + [ + -73.378058, + 45.468023 + ], + [ + -73.3781, + 45.467967 + ], + [ + -73.380064, + 45.465238 + ], + [ + -73.380231, + 45.465 + ], + [ + -73.380313, + 45.464882 + ], + [ + -73.382026, + 45.462513 + ], + [ + -73.382117, + 45.462388 + ], + [ + -73.382264, + 45.462188 + ], + [ + -73.382279, + 45.462167 + ], + [ + -73.382765, + 45.462469 + ], + [ + -73.383093, + 45.462681 + ], + [ + -73.383388, + 45.462852 + ], + [ + -73.383787, + 45.46309 + ] + ] + }, + "id": 191, + "properties": { + "id": "048d4596-80fa-447d-8e2e-36bec4147b8b", + "data": { + "gtfs": { + "shape_id": "88_1_R" + }, + "segments": [ + { + "distanceMeters": 1051, + "travelTimeSeconds": 182 + }, + { + "distanceMeters": 483, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 392, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 331, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 654, + "travelTimeSeconds": 149 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 95, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 359, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 475, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 630, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 377, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 33 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 300, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17954, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 12648.105767291585, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.98, + "travelTimeWithoutDwellTimesSeconds": 3000, + "operatingTimeWithLayoverTimeSeconds": 3300, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3000, + "operatingSpeedWithLayoverMetersPerSecond": 5.44, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.98 + }, + "mode": "bus", + "name": "boul. Mountainview", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "b19be6c8-c333-401a-98e4-d16876257831", + "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "d00d9138-966b-4522-be1d-8c665c71246b", + "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", + "48ea0d06-7b69-4895-b55b-2a18e6e6f906", + "21e2e89a-3df0-4ff7-aa64-17a07fbd660e", + "0b419003-a369-45de-8ce5-7da6890d7f0a", + "680dba5d-14fa-4f77-98bd-f3a49fec7b48", + "f45a38ac-0f3f-41d9-9da1-be7902cc983a", + "9cf81604-6d70-4ba8-a3fc-521104742058", + "28f2fe65-961c-4550-a722-1e7790fe94ad", + "9d0a7ab6-be66-4ca9-b863-8712d8cd028c", + "999ed130-7d99-4115-ac3c-cabba7731288", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "27c5df15-201f-4855-9f49-556fd659fd8e", + "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", + "aa7795c0-dd5c-4462-b672-459c92223af2", + "49918c5a-8414-49fd-abf9-87ae6b9f3976", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "011d1f54-164c-4564-a051-bdacad3e287d", + "c3a2368c-bf2d-4c72-9adb-41ee799004b3", + "6885c351-726d-4431-84b5-d9262699183f", + "4e3112b5-abc7-4db5-a6a8-19b4193263c2", + "a5ca0f69-bb6f-4ef0-aaaa-1498b5ff9d00", + "ca3fc9fc-e2eb-41c4-a8d2-0ad2d2109db1", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "d3991811-d92b-4ba2-9732-26a74abc49b7", + "a873c2b7-5c8e-4dd4-9140-a7e8d042d038", + "b8513e69-5eee-478d-b428-8f498c145b40", + "344c16fc-7161-4015-9999-e3e0f325dd1e", + "abd431b8-dcf2-4c7a-a458-732690905187", + "dcaa1460-3c81-4616-b65b-ed7fae894032", + "a3922a48-9f26-4845-9881-2b33d59d0127", + "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", + "686bdc34-3602-4c31-b05f-c41f9ebe2543", + "48cbd834-3690-4d56-af66-277be54f9820", + "e5c099f9-8206-4175-8a7b-065df2f3b304", + "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", + "2d759b9b-5efb-4a57-814c-915d6b6185d7", + "7207a900-095a-4a6f-9e58-d5821a46e7d1", + "1dee950f-860c-49ec-9656-8fcdc6bfa744", + "235a92b0-53e1-410c-b264-d57c7814303c", + "4a4fa494-b43c-4be6-b677-70874b8f73cc", + "46ea2114-c4d6-46e8-be5d-60d028340abb", + "853b0202-bae1-4c20-ab0e-8b27d1350e9a", + "69889f24-c076-4661-981b-6008a401d446", + "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", + "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", + "50ca3159-13cc-4149-b07f-8267a31166e3", + "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", + "33ed66fe-2193-4e2a-b51d-d25140b9ad80", + "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", + "69b9716f-dd31-4ae3-9736-6d5edb237b8a", + "8354e556-947c-481c-96bd-d61737767f2d", + "ced239e0-91f5-4429-96fd-20bbb8fcfd11", + "a2ac9477-abf0-4b55-8588-e045bd0373a2", + "8d50e155-65e6-4b67-8d83-f347e12cf6d7", + "658aec75-ba5b-4e43-b93b-5305ff3f6685", + "d664171d-6b67-486f-b850-92d7b923ec60", + "88a428f4-cdde-43a8-a2c3-c4652eae6722", + "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", + "057da5dd-23f2-431d-8955-7a7d8f0dae40", + "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", + "f585bf2c-536e-4916-a0ee-20092a76ccad", + "c5d63249-9c53-468b-a75e-33839919bc02", + "00770ec2-f385-4c5e-86f3-1e107a204be7", + "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", + "24542ec6-1b63-420d-8089-98a7341dfe66", + "40363de6-68fe-4797-a6b6-a7c0b8b379e0", + "2bad9abb-726e-4e19-bd55-ea4436446fe9", + "2bfdc814-6852-43cf-a60e-ce2e7fee82b8" + ], + "stops": [], + "line_id": "82ddf491-8480-4b4d-bd2b-3b768c0a5350", + "segments": [ + 0, + 42, + 61, + 66, + 74, + 82, + 89, + 99, + 102, + 108, + 113, + 119, + 123, + 126, + 129, + 134, + 137, + 144, + 150, + 155, + 159, + 162, + 169, + 172, + 178, + 185, + 189, + 194, + 199, + 202, + 207, + 209, + 211, + 213, + 216, + 221, + 225, + 230, + 255, + 263, + 271, + 276, + 279, + 284, + 287, + 293, + 300, + 307, + 313, + 315, + 322, + 330, + 334, + 336, + 342, + 349, + 362, + 366, + 370, + 373, + 377, + 384, + 394, + 399, + 410, + 411, + 414, + 420, + 422, + 425, + 428, + 431 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 191, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519057, + 45.525166 + ], + [ + -73.518828, + 45.525169 + ], + [ + -73.518662, + 45.525195 + ], + [ + -73.518477, + 45.525222 + ], + [ + -73.51841, + 45.525229 + ], + [ + -73.518309, + 45.525233 + ], + [ + -73.518165, + 45.525238 + ], + [ + -73.517846, + 45.525224 + ], + [ + -73.516858, + 45.525188 + ], + [ + -73.516329, + 45.525185 + ], + [ + -73.51586, + 45.52522 + ], + [ + -73.515879, + 45.525306 + ], + [ + -73.515954, + 45.525625 + ], + [ + -73.515993, + 45.52576 + ], + [ + -73.516108, + 45.52615 + ], + [ + -73.51612, + 45.526192 + ], + [ + -73.516245, + 45.52653 + ], + [ + -73.516302, + 45.526687 + ], + [ + -73.516434, + 45.526894 + ], + [ + -73.517006, + 45.527735 + ], + [ + -73.517118, + 45.52798 + ], + [ + -73.51723, + 45.528227 + ], + [ + -73.517272, + 45.52832 + ], + [ + -73.517504, + 45.528922 + ], + [ + -73.517577, + 45.529094 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.517456, + 45.531762 + ], + [ + -73.51664, + 45.532518 + ], + [ + -73.515885, + 45.533161 + ], + [ + -73.515753, + 45.533238 + ], + [ + -73.515672, + 45.533321 + ], + [ + -73.515257, + 45.533788 + ], + [ + -73.515202, + 45.533848 + ], + [ + -73.514831, + 45.534265 + ], + [ + -73.514791, + 45.534311 + ], + [ + -73.514731, + 45.534379 + ], + [ + -73.514684, + 45.534434 + ], + [ + -73.51432, + 45.534799 + ], + [ + -73.513904, + 45.53522 + ], + [ + -73.513681, + 45.535468 + ], + [ + -73.51342, + 45.535713 + ], + [ + -73.513155, + 45.535985 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.508029, + 45.540693 + ], + [ + -73.508021, + 45.540689 + ], + [ + -73.507102, + 45.540316 + ], + [ + -73.506536, + 45.540077 + ], + [ + -73.504975, + 45.539443 + ], + [ + -73.50484, + 45.539375 + ], + [ + -73.504659, + 45.53925 + ], + [ + -73.504204, + 45.538858 + ], + [ + -73.50401, + 45.538714 + ], + [ + -73.503897, + 45.538651 + ], + [ + -73.5035, + 45.538476 + ], + [ + -73.502143, + 45.537905 + ], + [ + -73.501222, + 45.537517 + ], + [ + -73.499534, + 45.536807 + ], + [ + -73.498456, + 45.536361 + ], + [ + -73.497345, + 45.53588 + ], + [ + -73.496932, + 45.535682 + ], + [ + -73.496814, + 45.535632 + ], + [ + -73.495741, + 45.5352 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.48089, + 45.529066 + ], + [ + -73.480753, + 45.529011 + ], + [ + -73.480164, + 45.528774 + ], + [ + -73.479454, + 45.528472 + ], + [ + -73.478598, + 45.528117 + ], + [ + -73.477725, + 45.527748 + ], + [ + -73.476969, + 45.527428 + ], + [ + -73.476219, + 45.527117 + ], + [ + -73.475894, + 45.526982 + ], + [ + -73.475467, + 45.526811 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.471997, + 45.525357 + ], + [ + -73.471094, + 45.524979 + ], + [ + -73.470555, + 45.524749 + ], + [ + -73.470239, + 45.524623 + ], + [ + -73.469721, + 45.524403 + ], + [ + -73.469522, + 45.524322 + ], + [ + -73.468866, + 45.524038 + ], + [ + -73.468048, + 45.523705 + ], + [ + -73.467237, + 45.523363 + ], + [ + -73.466276, + 45.522967 + ], + [ + -73.466082, + 45.522841 + ], + [ + -73.465634, + 45.52266 + ], + [ + -73.464874, + 45.522336 + ], + [ + -73.464576, + 45.522215 + ], + [ + -73.464439, + 45.522143 + ], + [ + -73.464336, + 45.522093 + ], + [ + -73.464186, + 45.522017 + ], + [ + -73.463952, + 45.52192 + ], + [ + -73.463125, + 45.521577 + ], + [ + -73.462859, + 45.521467 + ], + [ + -73.46256, + 45.521341 + ], + [ + -73.460592, + 45.520513 + ], + [ + -73.460391, + 45.520427 + ], + [ + -73.460276, + 45.520379 + ], + [ + -73.458651, + 45.519707 + ], + [ + -73.457332, + 45.519144 + ], + [ + -73.457212, + 45.51909 + ], + [ + -73.456379, + 45.518756 + ], + [ + -73.455695, + 45.518468 + ], + [ + -73.454164, + 45.517811 + ], + [ + -73.453487, + 45.51753 + ], + [ + -73.452666, + 45.517189 + ], + [ + -73.452271, + 45.517027 + ], + [ + -73.452136, + 45.516973 + ], + [ + -73.452066, + 45.516942 + ], + [ + -73.450032, + 45.516108 + ], + [ + -73.448601, + 45.5155 + ], + [ + -73.444787, + 45.513896 + ], + [ + -73.443129, + 45.513199 + ], + [ + -73.440479, + 45.512077 + ], + [ + -73.440007, + 45.511874 + ], + [ + -73.439905, + 45.511834 + ], + [ + -73.439831, + 45.511802 + ], + [ + -73.439067, + 45.511482 + ], + [ + -73.438299, + 45.511131 + ], + [ + -73.438017, + 45.511 + ], + [ + -73.437245, + 45.510635 + ], + [ + -73.435988, + 45.510081 + ], + [ + -73.435895, + 45.510041 + ], + [ + -73.435854, + 45.510023 + ], + [ + -73.435569, + 45.509897 + ], + [ + -73.434856, + 45.50959 + ], + [ + -73.434257, + 45.509343 + ], + [ + -73.433925, + 45.509203 + ], + [ + -73.433726, + 45.509117 + ], + [ + -73.433485, + 45.509005 + ], + [ + -73.433108, + 45.508806 + ], + [ + -73.432574, + 45.508487 + ], + [ + -73.432044, + 45.508167 + ], + [ + -73.431846, + 45.508041 + ], + [ + -73.43182, + 45.508023 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.431538, + 45.507856 + ], + [ + -73.430825, + 45.507356 + ], + [ + -73.430679, + 45.507221 + ], + [ + -73.430612, + 45.507149 + ], + [ + -73.43049, + 45.506978 + ], + [ + -73.43046, + 45.50692 + ], + [ + -73.430405, + 45.506816 + ], + [ + -73.430319, + 45.506587 + ], + [ + -73.430298, + 45.506497 + ], + [ + -73.430275, + 45.506389 + ], + [ + -73.430066, + 45.506425 + ], + [ + -73.429201, + 45.506567 + ], + [ + -73.428871, + 45.506622 + ], + [ + -73.428419, + 45.506698 + ], + [ + -73.428282, + 45.506718 + ], + [ + -73.428165, + 45.506711 + ], + [ + -73.427996, + 45.506684 + ], + [ + -73.427898, + 45.506666 + ], + [ + -73.427771, + 45.506635 + ], + [ + -73.427639, + 45.506594 + ], + [ + -73.426972, + 45.506306 + ], + [ + -73.426422, + 45.506071 + ], + [ + -73.42613, + 45.505956 + ], + [ + -73.425918, + 45.505873 + ], + [ + -73.425637, + 45.505778 + ], + [ + -73.425471, + 45.505742 + ], + [ + -73.425433, + 45.505715 + ], + [ + -73.424965, + 45.505517 + ], + [ + -73.424527, + 45.505328 + ], + [ + -73.423967, + 45.505084 + ], + [ + -73.42368, + 45.504958 + ], + [ + -73.423115, + 45.504715 + ], + [ + -73.422355, + 45.50439 + ], + [ + -73.422009, + 45.504242 + ], + [ + -73.421648, + 45.504084 + ], + [ + -73.421234, + 45.503904 + ], + [ + -73.420806, + 45.503714 + ], + [ + -73.420142, + 45.503431 + ], + [ + -73.419673, + 45.503241 + ], + [ + -73.419278, + 45.503088 + ], + [ + -73.419167, + 45.503047 + ], + [ + -73.418847, + 45.502921 + ], + [ + -73.418173, + 45.502669 + ], + [ + -73.417806, + 45.502538 + ], + [ + -73.417293, + 45.502344 + ], + [ + -73.416751, + 45.502146 + ], + [ + -73.416178, + 45.501934 + ], + [ + -73.415771, + 45.501785 + ], + [ + -73.415352, + 45.501632 + ], + [ + -73.414962, + 45.501488 + ], + [ + -73.414536, + 45.50133 + ], + [ + -73.414045, + 45.501145 + ], + [ + -73.413646, + 45.500992 + ], + [ + -73.413399, + 45.500906 + ], + [ + -73.41311, + 45.500798 + ], + [ + -73.412769, + 45.500658 + ], + [ + -73.412332, + 45.500496 + ], + [ + -73.411788, + 45.500288 + ], + [ + -73.411184, + 45.500063 + ], + [ + -73.410857, + 45.499937 + ], + [ + -73.410514, + 45.499802 + ], + [ + -73.40994, + 45.499576 + ], + [ + -73.409074, + 45.499238 + ], + [ + -73.408846, + 45.499152 + ], + [ + -73.408613, + 45.499067 + ], + [ + -73.408565, + 45.499044 + ], + [ + -73.407743, + 45.498715 + ], + [ + -73.407513, + 45.498634 + ], + [ + -73.406574, + 45.498264 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.405568, + 45.497876 + ], + [ + -73.405172, + 45.497723 + ], + [ + -73.404858, + 45.497588 + ], + [ + -73.404434, + 45.497426 + ], + [ + -73.403795, + 45.49716 + ], + [ + -73.40369, + 45.497114 + ], + [ + -73.403543, + 45.497051 + ], + [ + -73.402953, + 45.49679 + ], + [ + -73.402418, + 45.496555 + ], + [ + -73.401755, + 45.496251 + ], + [ + -73.401121, + 45.49596 + ], + [ + -73.400097, + 45.495485 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.396658, + 45.493872 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.395068, + 45.493132 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.391618, + 45.49152 + ], + [ + -73.391367, + 45.491407 + ], + [ + -73.391238, + 45.491347 + ], + [ + -73.391016, + 45.491244 + ], + [ + -73.390592, + 45.491047 + ], + [ + -73.389565, + 45.490569 + ], + [ + -73.389562, + 45.490568 + ], + [ + -73.389177, + 45.490388 + ], + [ + -73.388765, + 45.490199 + ], + [ + -73.388224, + 45.489938 + ], + [ + -73.387871, + 45.489772 + ], + [ + -73.387621, + 45.489654 + ], + [ + -73.387001, + 45.489365 + ], + [ + -73.386327, + 45.489048 + ], + [ + -73.386215, + 45.488995 + ], + [ + -73.385628, + 45.488725 + ], + [ + -73.385381, + 45.488599 + ], + [ + -73.385161, + 45.488493 + ], + [ + -73.384901, + 45.488369 + ], + [ + -73.384743, + 45.488246 + ], + [ + -73.384445, + 45.488089 + ], + [ + -73.384044, + 45.487891 + ], + [ + -73.383491, + 45.487611 + ], + [ + -73.382868, + 45.487294 + ], + [ + -73.382606, + 45.48716 + ], + [ + -73.3825, + 45.487106 + ], + [ + -73.382345, + 45.487025 + ], + [ + -73.382237, + 45.486971 + ], + [ + -73.381986, + 45.486854 + ], + [ + -73.381371, + 45.486556 + ], + [ + -73.380021, + 45.485902 + ], + [ + -73.379495, + 45.485632 + ], + [ + -73.378643, + 45.485213 + ], + [ + -73.377846, + 45.484834 + ], + [ + -73.377614, + 45.484722 + ], + [ + -73.377163, + 45.484505 + ], + [ + -73.376944, + 45.48441 + ], + [ + -73.376053, + 45.483919 + ], + [ + -73.375418, + 45.483571 + ], + [ + -73.375036, + 45.483363 + ], + [ + -73.37494, + 45.48331 + ], + [ + -73.374487, + 45.483067 + ], + [ + -73.373971, + 45.482778 + ], + [ + -73.373875, + 45.482724 + ], + [ + -73.373772, + 45.482665 + ], + [ + -73.372864, + 45.48216 + ], + [ + -73.37011, + 45.480637 + ], + [ + -73.369655, + 45.480389 + ], + [ + -73.369494, + 45.480301 + ], + [ + -73.36929, + 45.48019 + ], + [ + -73.369631, + 45.479717 + ], + [ + -73.371681, + 45.476871 + ], + [ + -73.372901, + 45.475178 + ], + [ + -73.373075, + 45.474921 + ], + [ + -73.37341, + 45.474455 + ], + [ + -73.373508, + 45.474319 + ], + [ + -73.37362, + 45.474193 + ], + [ + -73.373694, + 45.474085 + ], + [ + -73.373933, + 45.473762 + ], + [ + -73.374049, + 45.473595 + ], + [ + -73.374382, + 45.47313 + ], + [ + -73.37528, + 45.471878 + ], + [ + -73.375849, + 45.471074 + ], + [ + -73.375891, + 45.471015 + ], + [ + -73.377848, + 45.468313 + ], + [ + -73.378058, + 45.468023 + ], + [ + -73.3781, + 45.467967 + ], + [ + -73.380064, + 45.465238 + ], + [ + -73.380231, + 45.465 + ], + [ + -73.380313, + 45.464882 + ], + [ + -73.382026, + 45.462513 + ], + [ + -73.382117, + 45.462388 + ], + [ + -73.382264, + 45.462188 + ], + [ + -73.382279, + 45.462167 + ], + [ + -73.382765, + 45.462469 + ], + [ + -73.383093, + 45.462681 + ], + [ + -73.383388, + 45.462852 + ], + [ + -73.383787, + 45.46309 + ] + ] + }, + "id": 192, + "properties": { + "id": "c2efaeac-a462-44c9-8d39-ffde953c7ae4", + "data": { + "gtfs": { + "shape_id": "88_1_R" + }, + "segments": [ + { + "distanceMeters": 12274, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 359, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 475, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 630, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 377, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 33 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17954, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4260.297650997991, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 21.37, + "travelTimeWithoutDwellTimesSeconds": 840, + "operatingTimeWithLayoverTimeSeconds": 1020, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 840, + "operatingSpeedWithLayoverMetersPerSecond": 17.6, + "averageSpeedWithoutDwellTimesMetersPerSecond": 21.37 + }, + "mode": "bus", + "name": "boul. Mountainview", + "color": "#A32638", + "nodes": [ + "50ca3159-13cc-4149-b07f-8267a31166e3", + "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", + "33ed66fe-2193-4e2a-b51d-d25140b9ad80", + "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", + "69b9716f-dd31-4ae3-9736-6d5edb237b8a", + "8354e556-947c-481c-96bd-d61737767f2d", + "ced239e0-91f5-4429-96fd-20bbb8fcfd11", + "a2ac9477-abf0-4b55-8588-e045bd0373a2", + "8d50e155-65e6-4b67-8d83-f347e12cf6d7", + "658aec75-ba5b-4e43-b93b-5305ff3f6685", + "d664171d-6b67-486f-b850-92d7b923ec60", + "88a428f4-cdde-43a8-a2c3-c4652eae6722", + "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", + "057da5dd-23f2-431d-8955-7a7d8f0dae40", + "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", + "f585bf2c-536e-4916-a0ee-20092a76ccad", + "c5d63249-9c53-468b-a75e-33839919bc02", + "00770ec2-f385-4c5e-86f3-1e107a204be7", + "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", + "24542ec6-1b63-420d-8089-98a7341dfe66", + "40363de6-68fe-4797-a6b6-a7c0b8b379e0", + "2bad9abb-726e-4e19-bd55-ea4436446fe9", + "2bfdc814-6852-43cf-a60e-ce2e7fee82b8" + ], + "stops": [], + "line_id": "82ddf491-8480-4b4d-bd2b-3b768c0a5350", + "segments": [ + 0, + 280, + 284, + 286, + 292, + 299, + 312, + 316, + 320, + 323, + 327, + 334, + 344, + 349, + 360, + 361, + 364, + 370, + 372, + 375, + 378, + 381 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 192, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519057, + 45.525166 + ], + [ + -73.518828, + 45.525169 + ], + [ + -73.518662, + 45.525195 + ], + [ + -73.518477, + 45.525222 + ], + [ + -73.51841, + 45.525229 + ], + [ + -73.518309, + 45.525233 + ], + [ + -73.518165, + 45.525238 + ], + [ + -73.517846, + 45.525224 + ], + [ + -73.516858, + 45.525188 + ], + [ + -73.516329, + 45.525185 + ], + [ + -73.51586, + 45.52522 + ], + [ + -73.515879, + 45.525306 + ], + [ + -73.515954, + 45.525625 + ], + [ + -73.515993, + 45.52576 + ], + [ + -73.516108, + 45.52615 + ], + [ + -73.51612, + 45.526192 + ], + [ + -73.516245, + 45.52653 + ], + [ + -73.516302, + 45.526687 + ], + [ + -73.516434, + 45.526894 + ], + [ + -73.517006, + 45.527735 + ], + [ + -73.517118, + 45.52798 + ], + [ + -73.51723, + 45.528227 + ], + [ + -73.517272, + 45.52832 + ], + [ + -73.517504, + 45.528922 + ], + [ + -73.517577, + 45.529094 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.517456, + 45.531762 + ], + [ + -73.51664, + 45.532518 + ], + [ + -73.515885, + 45.533161 + ], + [ + -73.515753, + 45.533238 + ], + [ + -73.515672, + 45.533321 + ], + [ + -73.515257, + 45.533788 + ], + [ + -73.515202, + 45.533848 + ], + [ + -73.514831, + 45.534265 + ], + [ + -73.514791, + 45.534311 + ], + [ + -73.514731, + 45.534379 + ], + [ + -73.514684, + 45.534434 + ], + [ + -73.51432, + 45.534799 + ], + [ + -73.513904, + 45.53522 + ], + [ + -73.513681, + 45.535468 + ], + [ + -73.51342, + 45.535713 + ], + [ + -73.513155, + 45.535985 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.508029, + 45.540693 + ], + [ + -73.508021, + 45.540689 + ], + [ + -73.507102, + 45.540316 + ], + [ + -73.506536, + 45.540077 + ], + [ + -73.504975, + 45.539443 + ], + [ + -73.50484, + 45.539375 + ], + [ + -73.504659, + 45.53925 + ], + [ + -73.504204, + 45.538858 + ], + [ + -73.50401, + 45.538714 + ], + [ + -73.503897, + 45.538651 + ], + [ + -73.5035, + 45.538476 + ], + [ + -73.502143, + 45.537905 + ], + [ + -73.501222, + 45.537517 + ], + [ + -73.499534, + 45.536807 + ], + [ + -73.498456, + 45.536361 + ], + [ + -73.497345, + 45.53588 + ], + [ + -73.496932, + 45.535682 + ], + [ + -73.496814, + 45.535632 + ], + [ + -73.495741, + 45.5352 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.48089, + 45.529066 + ], + [ + -73.480753, + 45.529011 + ], + [ + -73.480164, + 45.528774 + ], + [ + -73.479454, + 45.528472 + ], + [ + -73.478598, + 45.528117 + ], + [ + -73.477725, + 45.527748 + ], + [ + -73.476969, + 45.527428 + ], + [ + -73.476219, + 45.527117 + ], + [ + -73.475894, + 45.526982 + ], + [ + -73.475467, + 45.526811 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.471997, + 45.525357 + ], + [ + -73.471094, + 45.524979 + ], + [ + -73.470555, + 45.524749 + ], + [ + -73.470239, + 45.524623 + ], + [ + -73.469721, + 45.524403 + ], + [ + -73.469522, + 45.524322 + ], + [ + -73.468866, + 45.524038 + ], + [ + -73.468048, + 45.523705 + ], + [ + -73.467237, + 45.523363 + ], + [ + -73.466276, + 45.522967 + ], + [ + -73.466082, + 45.522841 + ], + [ + -73.465634, + 45.52266 + ], + [ + -73.464874, + 45.522336 + ], + [ + -73.464576, + 45.522215 + ], + [ + -73.464439, + 45.522143 + ], + [ + -73.464336, + 45.522093 + ], + [ + -73.464186, + 45.522017 + ], + [ + -73.463952, + 45.52192 + ], + [ + -73.463125, + 45.521577 + ], + [ + -73.462859, + 45.521467 + ], + [ + -73.46256, + 45.521341 + ], + [ + -73.460592, + 45.520513 + ], + [ + -73.460391, + 45.520427 + ], + [ + -73.460276, + 45.520379 + ], + [ + -73.458651, + 45.519707 + ], + [ + -73.457332, + 45.519144 + ], + [ + -73.457212, + 45.51909 + ], + [ + -73.456379, + 45.518756 + ], + [ + -73.455695, + 45.518468 + ], + [ + -73.454164, + 45.517811 + ], + [ + -73.453487, + 45.51753 + ], + [ + -73.452666, + 45.517189 + ], + [ + -73.452271, + 45.517027 + ], + [ + -73.452136, + 45.516973 + ], + [ + -73.452066, + 45.516942 + ], + [ + -73.450032, + 45.516108 + ], + [ + -73.448601, + 45.5155 + ], + [ + -73.444787, + 45.513896 + ], + [ + -73.443129, + 45.513199 + ], + [ + -73.440479, + 45.512077 + ], + [ + -73.440007, + 45.511874 + ], + [ + -73.439905, + 45.511834 + ], + [ + -73.439831, + 45.511802 + ], + [ + -73.439067, + 45.511482 + ], + [ + -73.438299, + 45.511131 + ], + [ + -73.438017, + 45.511 + ], + [ + -73.437245, + 45.510635 + ], + [ + -73.436246, + 45.510195 + ], + [ + -73.435988, + 45.510081 + ], + [ + -73.435895, + 45.510041 + ], + [ + -73.435854, + 45.510023 + ], + [ + -73.435569, + 45.509897 + ], + [ + -73.435059, + 45.509678 + ], + [ + -73.434856, + 45.50959 + ], + [ + -73.434257, + 45.509343 + ], + [ + -73.433925, + 45.509203 + ], + [ + -73.433726, + 45.509117 + ], + [ + -73.433485, + 45.509005 + ], + [ + -73.433108, + 45.508806 + ], + [ + -73.432574, + 45.508487 + ], + [ + -73.432044, + 45.508167 + ], + [ + -73.431846, + 45.508041 + ], + [ + -73.43182, + 45.508023 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.431538, + 45.507856 + ], + [ + -73.430825, + 45.507356 + ], + [ + -73.430679, + 45.507221 + ], + [ + -73.430612, + 45.507149 + ], + [ + -73.43049, + 45.506978 + ], + [ + -73.43046, + 45.50692 + ], + [ + -73.430405, + 45.506816 + ], + [ + -73.430319, + 45.506587 + ], + [ + -73.430298, + 45.506497 + ], + [ + -73.430275, + 45.506389 + ], + [ + -73.430066, + 45.506425 + ], + [ + -73.429201, + 45.506567 + ], + [ + -73.428871, + 45.506622 + ], + [ + -73.428841, + 45.506627 + ], + [ + -73.428419, + 45.506698 + ], + [ + -73.428282, + 45.506718 + ], + [ + -73.428165, + 45.506711 + ], + [ + -73.427996, + 45.506684 + ], + [ + -73.427898, + 45.506666 + ], + [ + -73.427771, + 45.506635 + ], + [ + -73.427639, + 45.506594 + ], + [ + -73.427205, + 45.506406 + ], + [ + -73.426972, + 45.506306 + ], + [ + -73.426422, + 45.506071 + ], + [ + -73.42613, + 45.505956 + ], + [ + -73.425918, + 45.505873 + ], + [ + -73.425637, + 45.505778 + ], + [ + -73.425471, + 45.505742 + ], + [ + -73.425433, + 45.505715 + ], + [ + -73.425244, + 45.505635 + ], + [ + -73.424965, + 45.505517 + ], + [ + -73.424527, + 45.505328 + ], + [ + -73.423967, + 45.505084 + ], + [ + -73.42368, + 45.504958 + ], + [ + -73.423532, + 45.504895 + ], + [ + -73.423115, + 45.504715 + ], + [ + -73.422355, + 45.50439 + ], + [ + -73.422122, + 45.50429 + ], + [ + -73.422009, + 45.504242 + ], + [ + -73.421648, + 45.504084 + ], + [ + -73.421234, + 45.503904 + ], + [ + -73.420806, + 45.503714 + ], + [ + -73.420522, + 45.503593 + ], + [ + -73.420142, + 45.503431 + ], + [ + -73.419673, + 45.503241 + ], + [ + -73.419471, + 45.503163 + ], + [ + -73.419278, + 45.503088 + ], + [ + -73.419167, + 45.503047 + ], + [ + -73.418847, + 45.502921 + ], + [ + -73.418173, + 45.502669 + ], + [ + -73.417806, + 45.502538 + ], + [ + -73.417348, + 45.502365 + ], + [ + -73.417293, + 45.502344 + ], + [ + -73.416751, + 45.502146 + ], + [ + -73.416178, + 45.501934 + ], + [ + -73.415771, + 45.501785 + ], + [ + -73.415352, + 45.501632 + ], + [ + -73.414962, + 45.501488 + ], + [ + -73.414671, + 45.50138 + ], + [ + -73.414536, + 45.50133 + ], + [ + -73.414045, + 45.501145 + ], + [ + -73.413646, + 45.500992 + ], + [ + -73.413399, + 45.500906 + ], + [ + -73.41311, + 45.500798 + ], + [ + -73.412769, + 45.500658 + ], + [ + -73.41245, + 45.50054 + ], + [ + -73.412332, + 45.500496 + ], + [ + -73.411788, + 45.500288 + ], + [ + -73.411184, + 45.500063 + ], + [ + -73.410857, + 45.499937 + ], + [ + -73.410514, + 45.499802 + ], + [ + -73.410391, + 45.499753 + ], + [ + -73.40994, + 45.499576 + ], + [ + -73.409205, + 45.499289 + ], + [ + -73.409074, + 45.499238 + ], + [ + -73.408846, + 45.499152 + ], + [ + -73.408613, + 45.499067 + ], + [ + -73.408565, + 45.499044 + ], + [ + -73.407743, + 45.498715 + ], + [ + -73.407513, + 45.498634 + ], + [ + -73.406708, + 45.498317 + ], + [ + -73.406574, + 45.498264 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.405568, + 45.497876 + ], + [ + -73.405172, + 45.497723 + ], + [ + -73.404858, + 45.497588 + ], + [ + -73.404434, + 45.497426 + ], + [ + -73.403795, + 45.49716 + ], + [ + -73.40369, + 45.497114 + ], + [ + -73.403543, + 45.497051 + ], + [ + -73.402953, + 45.49679 + ], + [ + -73.402418, + 45.496555 + ], + [ + -73.401755, + 45.496251 + ], + [ + -73.401121, + 45.49596 + ], + [ + -73.400097, + 45.495485 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.396658, + 45.493872 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.395068, + 45.493132 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.391618, + 45.49152 + ], + [ + -73.391367, + 45.491407 + ], + [ + -73.391238, + 45.491347 + ], + [ + -73.391016, + 45.491244 + ], + [ + -73.390592, + 45.491047 + ], + [ + -73.389565, + 45.490569 + ], + [ + -73.389562, + 45.490568 + ], + [ + -73.389177, + 45.490388 + ], + [ + -73.388765, + 45.490199 + ], + [ + -73.388224, + 45.489938 + ], + [ + -73.387871, + 45.489772 + ], + [ + -73.387621, + 45.489654 + ], + [ + -73.387001, + 45.489365 + ], + [ + -73.386327, + 45.489048 + ], + [ + -73.386215, + 45.488995 + ], + [ + -73.385628, + 45.488725 + ], + [ + -73.385381, + 45.488599 + ], + [ + -73.385161, + 45.488493 + ], + [ + -73.384901, + 45.488369 + ], + [ + -73.384743, + 45.488246 + ], + [ + -73.384445, + 45.488089 + ], + [ + -73.384044, + 45.487891 + ], + [ + -73.383491, + 45.487611 + ], + [ + -73.382868, + 45.487294 + ], + [ + -73.382606, + 45.48716 + ], + [ + -73.3825, + 45.487106 + ], + [ + -73.382345, + 45.487025 + ], + [ + -73.382237, + 45.486971 + ], + [ + -73.381986, + 45.486854 + ], + [ + -73.381371, + 45.486556 + ], + [ + -73.380021, + 45.485902 + ], + [ + -73.379495, + 45.485632 + ], + [ + -73.378643, + 45.485213 + ], + [ + -73.377846, + 45.484834 + ], + [ + -73.377614, + 45.484722 + ], + [ + -73.377163, + 45.484505 + ], + [ + -73.376944, + 45.48441 + ], + [ + -73.376053, + 45.483919 + ], + [ + -73.375418, + 45.483571 + ], + [ + -73.375036, + 45.483363 + ], + [ + -73.37494, + 45.48331 + ], + [ + -73.374487, + 45.483067 + ], + [ + -73.373971, + 45.482778 + ], + [ + -73.373875, + 45.482724 + ], + [ + -73.373772, + 45.482665 + ], + [ + -73.372864, + 45.48216 + ], + [ + -73.37011, + 45.480637 + ], + [ + -73.369655, + 45.480389 + ], + [ + -73.369494, + 45.480301 + ], + [ + -73.36929, + 45.48019 + ], + [ + -73.369631, + 45.479717 + ], + [ + -73.371681, + 45.476871 + ], + [ + -73.372901, + 45.475178 + ], + [ + -73.373075, + 45.474921 + ], + [ + -73.37341, + 45.474455 + ], + [ + -73.373508, + 45.474319 + ], + [ + -73.37362, + 45.474193 + ], + [ + -73.373694, + 45.474085 + ], + [ + -73.373933, + 45.473762 + ], + [ + -73.374049, + 45.473595 + ], + [ + -73.374382, + 45.47313 + ], + [ + -73.37528, + 45.471878 + ], + [ + -73.375849, + 45.471074 + ], + [ + -73.375891, + 45.471015 + ], + [ + -73.377848, + 45.468313 + ], + [ + -73.378058, + 45.468023 + ], + [ + -73.3781, + 45.467967 + ], + [ + -73.380064, + 45.465238 + ], + [ + -73.380231, + 45.465 + ], + [ + -73.380313, + 45.464882 + ], + [ + -73.382026, + 45.462513 + ], + [ + -73.382117, + 45.462388 + ], + [ + -73.382264, + 45.462188 + ], + [ + -73.382279, + 45.462167 + ], + [ + -73.382765, + 45.462469 + ], + [ + -73.383093, + 45.462681 + ], + [ + -73.383388, + 45.462852 + ], + [ + -73.383787, + 45.46309 + ] + ] + }, + "id": 193, + "properties": { + "id": "472e1b57-e581-4754-bb3a-3ff53925caa5", + "data": { + "gtfs": { + "shape_id": "88_1_R" + }, + "segments": [ + { + "distanceMeters": 9270, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 654, + "travelTimeSeconds": 149 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 95, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 359, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 475, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 630, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 377, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 33 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17954, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6811.392517548296, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 12.47, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 11.08, + "averageSpeedWithoutDwellTimesMetersPerSecond": 12.47 + }, + "mode": "bus", + "name": "boul. Mountainview", + "color": "#A32638", + "nodes": [ + "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", + "686bdc34-3602-4c31-b05f-c41f9ebe2543", + "48cbd834-3690-4d56-af66-277be54f9820", + "e5c099f9-8206-4175-8a7b-065df2f3b304", + "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", + "2d759b9b-5efb-4a57-814c-915d6b6185d7", + "7207a900-095a-4a6f-9e58-d5821a46e7d1", + "1dee950f-860c-49ec-9656-8fcdc6bfa744", + "235a92b0-53e1-410c-b264-d57c7814303c", + "4a4fa494-b43c-4be6-b677-70874b8f73cc", + "46ea2114-c4d6-46e8-be5d-60d028340abb", + "853b0202-bae1-4c20-ab0e-8b27d1350e9a", + "69889f24-c076-4661-981b-6008a401d446", + "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", + "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", + "50ca3159-13cc-4149-b07f-8267a31166e3", + "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", + "33ed66fe-2193-4e2a-b51d-d25140b9ad80", + "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", + "69b9716f-dd31-4ae3-9736-6d5edb237b8a", + "8354e556-947c-481c-96bd-d61737767f2d", + "ced239e0-91f5-4429-96fd-20bbb8fcfd11", + "a2ac9477-abf0-4b55-8588-e045bd0373a2", + "8d50e155-65e6-4b67-8d83-f347e12cf6d7", + "658aec75-ba5b-4e43-b93b-5305ff3f6685", + "d664171d-6b67-486f-b850-92d7b923ec60", + "88a428f4-cdde-43a8-a2c3-c4652eae6722", + "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", + "057da5dd-23f2-431d-8955-7a7d8f0dae40", + "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", + "f585bf2c-536e-4916-a0ee-20092a76ccad", + "c5d63249-9c53-468b-a75e-33839919bc02", + "00770ec2-f385-4c5e-86f3-1e107a204be7", + "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", + "24542ec6-1b63-420d-8089-98a7341dfe66", + "40363de6-68fe-4797-a6b6-a7c0b8b379e0", + "2bad9abb-726e-4e19-bd55-ea4436446fe9", + "2bfdc814-6852-43cf-a60e-ce2e7fee82b8" + ], + "stops": [], + "line_id": "82ddf491-8480-4b4d-bd2b-3b768c0a5350", + "segments": [ + 0, + 190, + 195, + 220, + 228, + 236, + 241, + 244, + 249, + 252, + 258, + 265, + 272, + 278, + 280, + 287, + 295, + 299, + 301, + 307, + 314, + 327, + 331, + 335, + 338, + 342, + 349, + 359, + 364, + 375, + 376, + 379, + 385, + 387, + 390, + 393, + 396 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 193, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.441811, + 45.45839 + ], + [ + -73.441921, + 45.458262 + ], + [ + -73.442081, + 45.458141 + ], + [ + -73.442242, + 45.458029 + ], + [ + -73.442427, + 45.457912 + ], + [ + -73.442637, + 45.457768 + ], + [ + -73.442714, + 45.457714 + ], + [ + -73.442819, + 45.457642 + ], + [ + -73.44303, + 45.457498 + ], + [ + -73.44326, + 45.457345 + ], + [ + -73.443467, + 45.457179 + ], + [ + -73.443656, + 45.456972 + ], + [ + -73.443746, + 45.456833 + ], + [ + -73.4438, + 45.456747 + ], + [ + -73.443902, + 45.456603 + ], + [ + -73.444018, + 45.456432 + ], + [ + -73.444159, + 45.456216 + ], + [ + -73.444224, + 45.456104 + ], + [ + -73.444323, + 45.455987 + ], + [ + -73.444403, + 45.45592 + ], + [ + -73.444561, + 45.455812 + ], + [ + -73.445006, + 45.456208 + ], + [ + -73.445443, + 45.456518 + ], + [ + -73.445605, + 45.456635 + ], + [ + -73.445878, + 45.456816 + ], + [ + -73.445952, + 45.456865 + ], + [ + -73.446142, + 45.456982 + ], + [ + -73.446227, + 45.457004 + ], + [ + -73.446332, + 45.457032 + ], + [ + -73.446489, + 45.457095 + ], + [ + -73.446596, + 45.457158 + ], + [ + -73.446702, + 45.457243 + ], + [ + -73.446812, + 45.457324 + ], + [ + -73.446913, + 45.457357 + ], + [ + -73.446965, + 45.457368 + ], + [ + -73.447054, + 45.457381 + ], + [ + -73.447226, + 45.457406 + ], + [ + -73.447335, + 45.457449 + ], + [ + -73.447649, + 45.45765 + ], + [ + -73.448552, + 45.458228 + ], + [ + -73.448934, + 45.458388 + ], + [ + -73.449458, + 45.458593 + ], + [ + -73.449707, + 45.458708 + ], + [ + -73.450153, + 45.459037 + ], + [ + -73.451481, + 45.460003 + ], + [ + -73.452547, + 45.46077 + ], + [ + -73.454622, + 45.462265 + ], + [ + -73.454836, + 45.462367 + ], + [ + -73.455828, + 45.463057 + ], + [ + -73.456597, + 45.463496 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456946, + 45.463686 + ], + [ + -73.457318, + 45.463852 + ], + [ + -73.457856, + 45.464048 + ], + [ + -73.458071, + 45.464127 + ], + [ + -73.458485, + 45.464247 + ], + [ + -73.458755, + 45.464326 + ], + [ + -73.459354, + 45.46448 + ], + [ + -73.459627, + 45.464535 + ], + [ + -73.460221, + 45.464638 + ], + [ + -73.460645, + 45.464693 + ], + [ + -73.461091, + 45.464738 + ], + [ + -73.461573, + 45.464769 + ], + [ + -73.462433, + 45.464814 + ], + [ + -73.463232, + 45.464838 + ], + [ + -73.464263, + 45.464869 + ], + [ + -73.465023, + 45.464897 + ], + [ + -73.465951, + 45.464935 + ], + [ + -73.468282, + 45.465021 + ], + [ + -73.471035, + 45.465127 + ], + [ + -73.474689, + 45.465256 + ], + [ + -73.476448, + 45.465339 + ], + [ + -73.478069, + 45.465419 + ], + [ + -73.47931, + 45.465481 + ], + [ + -73.480681, + 45.465584 + ], + [ + -73.481658, + 45.465665 + ], + [ + -73.483804, + 45.465854 + ], + [ + -73.485886, + 45.466123 + ], + [ + -73.488038, + 45.466444 + ], + [ + -73.489088, + 45.466602 + ], + [ + -73.491585, + 45.46694 + ], + [ + -73.494707, + 45.467307 + ], + [ + -73.494917, + 45.467332 + ], + [ + -73.494999, + 45.467342 + ], + [ + -73.497318, + 45.467635 + ], + [ + -73.501976, + 45.468162 + ], + [ + -73.50546, + 45.468524 + ], + [ + -73.508994, + 45.468874 + ], + [ + -73.510795, + 45.469064 + ], + [ + -73.516615, + 45.469606 + ], + [ + -73.520513, + 45.469901 + ], + [ + -73.524263, + 45.470138 + ], + [ + -73.526895, + 45.470234 + ], + [ + -73.536203, + 45.470502 + ], + [ + -73.537479, + 45.470611 + ], + [ + -73.540035, + 45.470737 + ], + [ + -73.540574, + 45.470754 + ], + [ + -73.541689, + 45.470806 + ], + [ + -73.54236, + 45.470938 + ], + [ + -73.542685, + 45.471019 + ], + [ + -73.543056, + 45.471172 + ], + [ + -73.543235, + 45.471297 + ], + [ + -73.543427, + 45.47153 + ], + [ + -73.543495, + 45.471781 + ], + [ + -73.543487, + 45.471977 + ], + [ + -73.543374, + 45.472246 + ], + [ + -73.543123, + 45.472648 + ], + [ + -73.543053, + 45.472745 + ], + [ + -73.543034, + 45.472772 + ], + [ + -73.543013, + 45.472801 + ], + [ + -73.542473, + 45.473549 + ], + [ + -73.542275, + 45.473832 + ], + [ + -73.542255, + 45.473861 + ], + [ + -73.542175, + 45.473976 + ], + [ + -73.542016, + 45.474229 + ], + [ + -73.541794, + 45.474618 + ], + [ + -73.541458, + 45.475221 + ], + [ + -73.541094, + 45.47588 + ], + [ + -73.540722, + 45.476557 + ], + [ + -73.540393, + 45.477154 + ], + [ + -73.540141, + 45.477612 + ], + [ + -73.539989, + 45.477937 + ], + [ + -73.539912, + 45.478117 + ], + [ + -73.53962, + 45.478792 + ], + [ + -73.539453, + 45.479242 + ], + [ + -73.539011, + 45.480452 + ], + [ + -73.538771, + 45.481137 + ], + [ + -73.538372, + 45.4823 + ], + [ + -73.537796, + 45.483909 + ], + [ + -73.537682, + 45.484235 + ], + [ + -73.537533, + 45.484742 + ], + [ + -73.537501, + 45.485252 + ], + [ + -73.537565, + 45.485765 + ], + [ + -73.537725, + 45.486206 + ], + [ + -73.537953, + 45.486613 + ], + [ + -73.538211, + 45.486968 + ], + [ + -73.538564, + 45.487319 + ], + [ + -73.538991, + 45.48766 + ], + [ + -73.539413, + 45.487933 + ], + [ + -73.540409, + 45.488352 + ], + [ + -73.540999, + 45.488508 + ], + [ + -73.545779, + 45.489431 + ], + [ + -73.547415, + 45.489732 + ], + [ + -73.548107, + 45.48986 + ], + [ + -73.549549, + 45.490154 + ], + [ + -73.549968, + 45.490239 + ], + [ + -73.550646, + 45.490459 + ], + [ + -73.551261, + 45.490742 + ], + [ + -73.55163, + 45.490924 + ], + [ + -73.551996, + 45.491154 + ], + [ + -73.552466, + 45.491495 + ], + [ + -73.552812, + 45.491812 + ], + [ + -73.553225, + 45.492293 + ], + [ + -73.553459, + 45.492647 + ], + [ + -73.553701, + 45.493121 + ], + [ + -73.553714, + 45.493155 + ], + [ + -73.554005, + 45.493935 + ], + [ + -73.554229, + 45.494495 + ], + [ + -73.55441, + 45.494962 + ], + [ + -73.554709, + 45.495574 + ], + [ + -73.554963, + 45.495825 + ], + [ + -73.555225, + 45.496022 + ], + [ + -73.555665, + 45.496222 + ], + [ + -73.557268, + 45.496821 + ], + [ + -73.557934, + 45.497074 + ], + [ + -73.558513, + 45.497292 + ], + [ + -73.558754, + 45.497382 + ], + [ + -73.559665, + 45.497799 + ], + [ + -73.56055, + 45.498258 + ], + [ + -73.561247, + 45.498577 + ], + [ + -73.561574, + 45.498701 + ], + [ + -73.561917, + 45.498838 + ], + [ + -73.562165, + 45.49894 + ], + [ + -73.562545, + 45.499119 + ], + [ + -73.562571, + 45.499093 + ], + [ + -73.562654, + 45.499004 + ], + [ + -73.563341, + 45.498281 + ], + [ + -73.563953, + 45.497636 + ], + [ + -73.56431, + 45.497835 + ], + [ + -73.565142, + 45.498217 + ], + [ + -73.565601, + 45.498443 + ], + [ + -73.565748, + 45.49831 + ], + [ + -73.565849, + 45.498292 + ], + [ + -73.566051, + 45.498359 + ], + [ + -73.566361, + 45.498471 + ], + [ + -73.566492, + 45.498485 + ], + [ + -73.566611, + 45.498345 + ] + ] + }, + "id": 194, + "properties": { + "id": "0edc95d5-a715-4f6a-a02f-f112dd7c052a", + "data": { + "gtfs": { + "shape_id": "90_1_A" + }, + "segments": [ + { + "distanceMeters": 12421, + "travelTimeSeconds": 1080 + }, + { + "distanceMeters": 830, + "travelTimeSeconds": 240 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13251, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10715.224887275423, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 10.04, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 8.83, + "averageSpeedWithoutDwellTimesMetersPerSecond": 10.04 + }, + "mode": "bus", + "name": "Terminus Centre-ville", + "color": "#A32638", + "nodes": [ + "1449efa8-6a20-4d2f-bc23-aca981e0e0f6", + "461a5d33-406e-481a-b773-6e450c48b670", + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" + ], + "stops": [], + "line_id": "537c2459-ee0a-43d3-a16f-7ea2c7591e07", + "segments": [ + 0, + 165 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 194, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.566611, + 45.498345 + ], + [ + -73.566738, + 45.498195 + ], + [ + -73.566628, + 45.49808 + ], + [ + -73.566306, + 45.497931 + ], + [ + -73.566253, + 45.497841 + ], + [ + -73.56638, + 45.497699 + ], + [ + -73.566016, + 45.497523 + ], + [ + -73.564691, + 45.496892 + ], + [ + -73.563974, + 45.496566 + ], + [ + -73.562701, + 45.495919 + ], + [ + -73.562646, + 45.496027 + ], + [ + -73.562481, + 45.496317 + ], + [ + -73.562435, + 45.496383 + ], + [ + -73.562367, + 45.496479 + ], + [ + -73.562274, + 45.496658 + ], + [ + -73.562038, + 45.497108 + ], + [ + -73.561525, + 45.498031 + ], + [ + -73.561218, + 45.497864 + ], + [ + -73.561033, + 45.497765 + ], + [ + -73.560139, + 45.497347 + ], + [ + -73.559235, + 45.49696 + ], + [ + -73.55917, + 45.496938 + ], + [ + -73.558356, + 45.496631 + ], + [ + -73.55815, + 45.496558 + ], + [ + -73.557604, + 45.496364 + ], + [ + -73.556782, + 45.49606 + ], + [ + -73.555745, + 45.495673 + ], + [ + -73.555351, + 45.495512 + ], + [ + -73.555133, + 45.495401 + ], + [ + -73.554916, + 45.495262 + ], + [ + -73.554768, + 45.495125 + ], + [ + -73.55465, + 45.494994 + ], + [ + -73.553944, + 45.493258 + ], + [ + -73.553818, + 45.492971 + ], + [ + -73.553465, + 45.492338 + ], + [ + -73.552977, + 45.491759 + ], + [ + -73.552502, + 45.491344 + ], + [ + -73.551956, + 45.490962 + ], + [ + -73.551651, + 45.490791 + ], + [ + -73.551074, + 45.490513 + ], + [ + -73.550682, + 45.490367 + ], + [ + -73.550312, + 45.490228 + ], + [ + -73.54956, + 45.490034 + ], + [ + -73.548355, + 45.489798 + ], + [ + -73.542648, + 45.488704 + ], + [ + -73.541878, + 45.488554 + ], + [ + -73.541083, + 45.488397 + ], + [ + -73.540636, + 45.488282 + ], + [ + -73.540145, + 45.488119 + ], + [ + -73.539582, + 45.48786 + ], + [ + -73.539551, + 45.487842 + ], + [ + -73.539239, + 45.487663 + ], + [ + -73.538946, + 45.487462 + ], + [ + -73.538619, + 45.487192 + ], + [ + -73.538304, + 45.486863 + ], + [ + -73.538089, + 45.486564 + ], + [ + -73.537862, + 45.486139 + ], + [ + -73.537796, + 45.485958 + ], + [ + -73.537731, + 45.485785 + ], + [ + -73.53767, + 45.485461 + ], + [ + -73.537646, + 45.485264 + ], + [ + -73.537653, + 45.484914 + ], + [ + -73.537707, + 45.484604 + ], + [ + -73.537881, + 45.484168 + ], + [ + -73.537968, + 45.483893 + ], + [ + -73.538058, + 45.483623 + ], + [ + -73.539557, + 45.479354 + ], + [ + -73.53982, + 45.478652 + ], + [ + -73.540179, + 45.47782 + ], + [ + -73.540481, + 45.477177 + ], + [ + -73.540578, + 45.477027 + ], + [ + -73.540928, + 45.476409 + ], + [ + -73.5413, + 45.475732 + ], + [ + -73.541747, + 45.474937 + ], + [ + -73.542136, + 45.474264 + ], + [ + -73.542539, + 45.47363 + ], + [ + -73.543159, + 45.472786 + ], + [ + -73.543162, + 45.472781 + ], + [ + -73.5432, + 45.472729 + ], + [ + -73.543381, + 45.472482 + ], + [ + -73.543908, + 45.471834 + ], + [ + -73.544604, + 45.471016 + ], + [ + -73.54479, + 45.470824 + ], + [ + -73.544929, + 45.470679 + ], + [ + -73.54509, + 45.470477 + ], + [ + -73.545159, + 45.470391 + ], + [ + -73.545162, + 45.470289 + ], + [ + -73.54518, + 45.470102 + ], + [ + -73.54513, + 45.469912 + ], + [ + -73.545032, + 45.469762 + ], + [ + -73.544829, + 45.469589 + ], + [ + -73.544396, + 45.469456 + ], + [ + -73.544223, + 45.469408 + ], + [ + -73.544, + 45.469414 + ], + [ + -73.54385, + 45.469436 + ], + [ + -73.543665, + 45.469485 + ], + [ + -73.543125, + 45.469658 + ], + [ + -73.542795, + 45.46978 + ], + [ + -73.542335, + 45.469915 + ], + [ + -73.542042, + 45.469974 + ], + [ + -73.541634, + 45.469988 + ], + [ + -73.538583, + 45.470121 + ], + [ + -73.536645, + 45.47012 + ], + [ + -73.534843, + 45.470106 + ], + [ + -73.531663, + 45.470044 + ], + [ + -73.528901, + 45.469979 + ], + [ + -73.525636, + 45.469864 + ], + [ + -73.520215, + 45.469565 + ], + [ + -73.516228, + 45.469261 + ], + [ + -73.50737, + 45.468395 + ], + [ + -73.501604, + 45.467786 + ], + [ + -73.499262, + 45.467514 + ], + [ + -73.493921, + 45.466881 + ], + [ + -73.491932, + 45.466645 + ], + [ + -73.489852, + 45.466348 + ], + [ + -73.489119, + 45.46624 + ], + [ + -73.489027, + 45.466226 + ], + [ + -73.486848, + 45.465931 + ], + [ + -73.485714, + 45.465782 + ], + [ + -73.482904, + 45.465439 + ], + [ + -73.482123, + 45.46537 + ], + [ + -73.479736, + 45.465191 + ], + [ + -73.47968, + 45.465187 + ], + [ + -73.478363, + 45.465119 + ], + [ + -73.478043, + 45.465102 + ], + [ + -73.477796, + 45.465089 + ], + [ + -73.475753, + 45.464994 + ], + [ + -73.474695, + 45.464942 + ], + [ + -73.474262, + 45.464921 + ], + [ + -73.474113, + 45.464916 + ], + [ + -73.473291, + 45.464882 + ], + [ + -73.472501, + 45.46485 + ], + [ + -73.472392, + 45.464846 + ], + [ + -73.471465, + 45.464834 + ], + [ + -73.470497, + 45.464799 + ], + [ + -73.468804, + 45.464739 + ], + [ + -73.467001, + 45.46467 + ], + [ + -73.466541, + 45.464652 + ], + [ + -73.465757, + 45.46458 + ], + [ + -73.464402, + 45.464429 + ], + [ + -73.463422, + 45.464395 + ], + [ + -73.462294, + 45.464357 + ], + [ + -73.461419, + 45.464323 + ], + [ + -73.460353, + 45.4642 + ], + [ + -73.459906, + 45.464144 + ], + [ + -73.459408, + 45.464052 + ], + [ + -73.458521, + 45.463796 + ], + [ + -73.458275, + 45.463724 + ], + [ + -73.457681, + 45.463496 + ], + [ + -73.457669, + 45.463491 + ], + [ + -73.456975, + 45.463149 + ], + [ + -73.456896, + 45.463092 + ], + [ + -73.456843, + 45.463043 + ], + [ + -73.456777, + 45.462977 + ], + [ + -73.456717, + 45.462912 + ], + [ + -73.456666, + 45.462833 + ], + [ + -73.456625, + 45.462758 + ], + [ + -73.456603, + 45.462667 + ], + [ + -73.456596, + 45.462586 + ], + [ + -73.456593, + 45.462539 + ], + [ + -73.4566, + 45.462399 + ], + [ + -73.456621, + 45.462264 + ], + [ + -73.456608, + 45.461964 + ], + [ + -73.457019, + 45.462007 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.457564, + 45.462346 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.454906, + 45.46511 + ], + [ + -73.45432, + 45.464702 + ], + [ + -73.453971, + 45.464449 + ], + [ + -73.453617, + 45.464193 + ], + [ + -73.453261, + 45.463932 + ], + [ + -73.452912, + 45.463662 + ], + [ + -73.452802, + 45.463536 + ], + [ + -73.452721, + 45.463379 + ], + [ + -73.452662, + 45.463158 + ], + [ + -73.45263, + 45.463001 + ], + [ + -73.452634, + 45.462879 + ], + [ + -73.452663, + 45.462722 + ], + [ + -73.452703, + 45.4626 + ], + [ + -73.452775, + 45.462447 + ], + [ + -73.452835, + 45.462344 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.453161, + 45.462302 + ], + [ + -73.453183, + 45.462311 + ], + [ + -73.453343, + 45.462373 + ], + [ + -73.453553, + 45.462428 + ], + [ + -73.453729, + 45.462455 + ], + [ + -73.453888, + 45.462462 + ], + [ + -73.454017, + 45.462437 + ], + [ + -73.454092, + 45.462406 + ], + [ + -73.454278, + 45.462276 + ], + [ + -73.454197, + 45.462218 + ], + [ + -73.453602, + 45.461785 + ], + [ + -73.453448, + 45.461674 + ], + [ + -73.453385, + 45.461629 + ], + [ + -73.45305, + 45.461381 + ], + [ + -73.45275, + 45.461169 + ], + [ + -73.452262, + 45.460814 + ], + [ + -73.449839, + 45.459072 + ], + [ + -73.449359, + 45.458774 + ], + [ + -73.448479, + 45.458383 + ], + [ + -73.448024, + 45.45813 + ], + [ + -73.447729, + 45.457941 + ], + [ + -73.447401, + 45.457716 + ], + [ + -73.447206, + 45.457532 + ], + [ + -73.447146, + 45.457473 + ], + [ + -73.447054, + 45.457381 + ], + [ + -73.446923, + 45.457262 + ], + [ + -73.446661, + 45.457072 + ], + [ + -73.44657, + 45.457027 + ], + [ + -73.446482, + 45.456996 + ], + [ + -73.446388, + 45.45696 + ], + [ + -73.446222, + 45.456915 + ], + [ + -73.445958, + 45.456735 + ], + [ + -73.445693, + 45.456555 + ], + [ + -73.445542, + 45.456451 + ], + [ + -73.445085, + 45.456131 + ], + [ + -73.444561, + 45.455812 + ], + [ + -73.444403, + 45.45592 + ], + [ + -73.444323, + 45.455987 + ], + [ + -73.444224, + 45.456104 + ], + [ + -73.444159, + 45.456216 + ], + [ + -73.444018, + 45.456432 + ], + [ + -73.443902, + 45.456603 + ], + [ + -73.4438, + 45.456747 + ], + [ + -73.443746, + 45.456833 + ], + [ + -73.443656, + 45.456972 + ], + [ + -73.443467, + 45.457179 + ], + [ + -73.44326, + 45.457345 + ], + [ + -73.44303, + 45.457498 + ], + [ + -73.442819, + 45.457642 + ], + [ + -73.442714, + 45.457714 + ], + [ + -73.442637, + 45.457768 + ], + [ + -73.442427, + 45.457912 + ], + [ + -73.442242, + 45.458029 + ], + [ + -73.442081, + 45.458141 + ], + [ + -73.441947, + 45.458242 + ] + ] + }, + "id": 195, + "properties": { + "id": "0ecc1b57-4489-40c6-8704-07b09b9b5b71", + "data": { + "gtfs": { + "shape_id": "90_3_R" + }, + "segments": [ + { + "distanceMeters": 1006, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 13578, + "travelTimeSeconds": 1260 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 14583, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10715.224887275423, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 10.13, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 9, + "averageSpeedWithoutDwellTimesMetersPerSecond": 10.13 + }, + "mode": "bus", + "name": "Stat. Chevrier", + "color": "#A32638", + "nodes": [ + "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", + "0f8ef5e7-ff7c-4097-8d8a-9727f12190ea", + "1449efa8-6a20-4d2f-bc23-aca981e0e0f6" + ], + "stops": [], + "line_id": "537c2459-ee0a-43d3-a16f-7ea2c7591e07", + "segments": [ + 0, + 23 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 195, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.356358, + 45.540824 + ], + [ + -73.352636, + 45.540909 + ], + [ + -73.352638, + 45.54104 + ], + [ + -73.352651, + 45.541254 + ], + [ + -73.352651, + 45.541266 + ], + [ + -73.352663, + 45.541454 + ], + [ + -73.352675, + 45.541634 + ], + [ + -73.352688, + 45.54167 + ], + [ + -73.3527, + 45.541715 + ], + [ + -73.352878, + 45.542192 + ], + [ + -73.352929, + 45.542336 + ], + [ + -73.352942, + 45.542426 + ], + [ + -73.352942, + 45.542465 + ], + [ + -73.352941, + 45.542552 + ], + [ + -73.352987, + 45.543596 + ], + [ + -73.35299, + 45.543668 + ], + [ + -73.352989, + 45.543812 + ], + [ + -73.353002, + 45.543947 + ], + [ + -73.353002, + 45.543974 + ], + [ + -73.353015, + 45.54401 + ], + [ + -73.353053, + 45.544064 + ], + [ + -73.353091, + 45.544109 + ], + [ + -73.353129, + 45.544145 + ], + [ + -73.353193, + 45.54419 + ], + [ + -73.353257, + 45.544235 + ], + [ + -73.353322, + 45.544281 + ], + [ + -73.353647, + 45.54451 + ], + [ + -73.353743, + 45.544578 + ], + [ + -73.35442, + 45.545064 + ], + [ + -73.35451, + 45.545136 + ], + [ + -73.354702, + 45.545272 + ], + [ + -73.354791, + 45.545326 + ], + [ + -73.354983, + 45.545425 + ], + [ + -73.355138, + 45.54549 + ], + [ + -73.355239, + 45.545533 + ], + [ + -73.355367, + 45.5454 + ], + [ + -73.35574, + 45.545012 + ], + [ + -73.355855, + 45.544895 + ], + [ + -73.355953, + 45.544789 + ], + [ + -73.356039, + 45.544697 + ], + [ + -73.356571, + 45.544149 + ], + [ + -73.356741, + 45.543942 + ], + [ + -73.356831, + 45.543826 + ], + [ + -73.356895, + 45.543736 + ], + [ + -73.356967, + 45.543641 + ], + [ + -73.357007, + 45.543556 + ], + [ + -73.357063, + 45.543466 + ], + [ + -73.357103, + 45.54338 + ], + [ + -73.357138, + 45.543286 + ], + [ + -73.357183, + 45.543183 + ], + [ + -73.357218, + 45.54307 + ], + [ + -73.357233, + 45.542994 + ], + [ + -73.357256, + 45.542917 + ], + [ + -73.357282, + 45.542827 + ], + [ + -73.357295, + 45.542728 + ], + [ + -73.357308, + 45.542647 + ], + [ + -73.357308, + 45.542557 + ], + [ + -73.357308, + 45.54244 + ], + [ + -73.357309, + 45.542348 + ], + [ + -73.357309, + 45.542332 + ], + [ + -73.357309, + 45.542233 + ], + [ + -73.357285, + 45.541622 + ], + [ + -73.357285, + 45.541541 + ], + [ + -73.357248, + 45.540956 + ], + [ + -73.357244, + 45.540879 + ], + [ + -73.357239, + 45.540776 + ], + [ + -73.357226, + 45.540389 + ], + [ + -73.357098, + 45.537903 + ], + [ + -73.35709, + 45.537752 + ], + [ + -73.356949, + 45.537752 + ], + [ + -73.356835, + 45.537752 + ], + [ + -73.356808, + 45.537752 + ], + [ + -73.35659, + 45.537733 + ], + [ + -73.356488, + 45.537706 + ], + [ + -73.356386, + 45.537688 + ], + [ + -73.356194, + 45.537616 + ], + [ + -73.356028, + 45.537517 + ], + [ + -73.35581, + 45.537381 + ], + [ + -73.355606, + 45.537228 + ], + [ + -73.354978, + 45.536786 + ], + [ + -73.354672, + 45.536579 + ], + [ + -73.35439, + 45.536363 + ], + [ + -73.354308, + 45.536305 + ], + [ + -73.354237, + 45.536255 + ], + [ + -73.354085, + 45.536133 + ], + [ + -73.353353, + 45.535601 + ], + [ + -73.352894, + 45.535275 + ], + [ + -73.352814, + 45.535218 + ], + [ + -73.352683, + 45.535132 + ], + [ + -73.352431, + 45.534966 + ], + [ + -73.352156, + 45.534794 + ], + [ + -73.351899, + 45.534632 + ], + [ + -73.351631, + 45.534461 + ], + [ + -73.351414, + 45.534325 + ], + [ + -73.351196, + 45.534181 + ], + [ + -73.350966, + 45.53401 + ], + [ + -73.350867, + 45.533941 + ], + [ + -73.350778, + 45.533879 + ], + [ + -73.350008, + 45.533298 + ], + [ + -73.348887, + 45.532482 + ], + [ + -73.348768, + 45.532396 + ], + [ + -73.34726, + 45.531272 + ], + [ + -73.346954, + 45.531044 + ], + [ + -73.345569, + 45.530044 + ], + [ + -73.345369, + 45.529899 + ], + [ + -73.345287, + 45.529841 + ], + [ + -73.344605, + 45.529334 + ], + [ + -73.343849, + 45.528772 + ], + [ + -73.343655, + 45.528635 + ], + [ + -73.343543, + 45.528556 + ], + [ + -73.343198, + 45.528321 + ], + [ + -73.342827, + 45.528033 + ], + [ + -73.342521, + 45.52779 + ], + [ + -73.342252, + 45.527555 + ], + [ + -73.342176, + 45.527484 + ], + [ + -73.342074, + 45.527389 + ], + [ + -73.341994, + 45.527303 + ], + [ + -73.34183, + 45.527172 + ], + [ + -73.341462, + 45.526915 + ], + [ + -73.341034, + 45.526636 + ], + [ + -73.340738, + 45.526442 + ], + [ + -73.340568, + 45.526316 + ], + [ + -73.340377, + 45.526198 + ], + [ + -73.340005, + 45.525968 + ], + [ + -73.339713, + 45.525764 + ], + [ + -73.339197, + 45.525405 + ], + [ + -73.338542, + 45.524956 + ], + [ + -73.338368, + 45.524837 + ], + [ + -73.338707, + 45.524638 + ], + [ + -73.338727, + 45.524626 + ], + [ + -73.339575, + 45.524088 + ], + [ + -73.340043, + 45.523791 + ], + [ + -73.340102, + 45.523754 + ], + [ + -73.340257, + 45.523692 + ], + [ + -73.340357, + 45.523652 + ], + [ + -73.340425, + 45.523602 + ], + [ + -73.341502, + 45.522865 + ], + [ + -73.341612, + 45.52279 + ], + [ + -73.342452, + 45.522224 + ], + [ + -73.343122, + 45.521777 + ], + [ + -73.343254, + 45.52169 + ], + [ + -73.343631, + 45.521425 + ], + [ + -73.343894, + 45.521227 + ], + [ + -73.344046, + 45.521061 + ], + [ + -73.344147, + 45.520913 + ], + [ + -73.344274, + 45.520719 + ], + [ + -73.344347, + 45.520476 + ], + [ + -73.344358, + 45.520296 + ], + [ + -73.344344, + 45.52004 + ], + [ + -73.344313, + 45.519763 + ], + [ + -73.344273, + 45.519406 + ], + [ + -73.344239, + 45.519032 + ], + [ + -73.344288, + 45.518834 + ], + [ + -73.344323, + 45.518735 + ], + [ + -73.344394, + 45.518668 + ], + [ + -73.344511, + 45.5186 + ], + [ + -73.344597, + 45.51856 + ], + [ + -73.344748, + 45.518511 + ], + [ + -73.344879, + 45.518512 + ], + [ + -73.345381, + 45.518517 + ], + [ + -73.346191, + 45.518524 + ], + [ + -73.34645, + 45.518527 + ], + [ + -73.346424, + 45.518967 + ], + [ + -73.346397, + 45.519174 + ], + [ + -73.346306, + 45.519804 + ], + [ + -73.346222, + 45.520303 + ], + [ + -73.346175, + 45.520518 + ], + [ + -73.346163, + 45.520569 + ], + [ + -73.346137, + 45.520677 + ], + [ + -73.346124, + 45.520785 + ], + [ + -73.346124, + 45.520857 + ], + [ + -73.346124, + 45.520929 + ], + [ + -73.346136, + 45.521001 + ], + [ + -73.346149, + 45.521073 + ], + [ + -73.346184, + 45.521289 + ], + [ + -73.346225, + 45.521478 + ], + [ + -73.346237, + 45.521631 + ], + [ + -73.346262, + 45.52182 + ], + [ + -73.346275, + 45.522009 + ], + [ + -73.346287, + 45.522153 + ], + [ + -73.346288, + 45.52231 + ], + [ + -73.346292, + 45.522585 + ], + [ + -73.346291, + 45.522845 + ], + [ + -73.346291, + 45.52285 + ], + [ + -73.346291, + 45.523053 + ], + [ + -73.346648, + 45.523103 + ], + [ + -73.346744, + 45.523116 + ], + [ + -73.347434, + 45.52321 + ], + [ + -73.347547, + 45.523225 + ], + [ + -73.347705, + 45.523243 + ], + [ + -73.347832, + 45.523257 + ], + [ + -73.348012, + 45.523289 + ], + [ + -73.348302, + 45.523361 + ], + [ + -73.348489, + 45.52342 + ], + [ + -73.348701, + 45.523497 + ], + [ + -73.348978, + 45.523614 + ], + [ + -73.349337, + 45.523831 + ], + [ + -73.349498, + 45.523938 + ], + [ + -73.349594, + 45.524002 + ], + [ + -73.349891, + 45.524214 + ], + [ + -73.350822, + 45.524876 + ], + [ + -73.351402, + 45.525286 + ], + [ + -73.351479, + 45.52535 + ], + [ + -73.3516, + 45.525453 + ], + [ + -73.351697, + 45.525557 + ], + [ + -73.351798, + 45.525714 + ], + [ + -73.351819, + 45.525754 + ], + [ + -73.351836, + 45.525786 + ], + [ + -73.351851, + 45.525827 + ], + [ + -73.351917, + 45.525931 + ], + [ + -73.352296, + 45.525836 + ], + [ + -73.352978, + 45.525664 + ], + [ + -73.353201, + 45.525608 + ], + [ + -73.353335, + 45.52555 + ], + [ + -73.354678, + 45.524634 + ], + [ + -73.355436, + 45.524122 + ], + [ + -73.355639, + 45.523981 + ], + [ + -73.355938, + 45.523772 + ], + [ + -73.356444, + 45.523445 + ], + [ + -73.356558, + 45.523372 + ], + [ + -73.358301, + 45.522285 + ], + [ + -73.358458, + 45.522186 + ], + [ + -73.359098, + 45.521773 + ], + [ + -73.359427, + 45.521571 + ], + [ + -73.359711, + 45.521432 + ], + [ + -73.359916, + 45.521342 + ], + [ + -73.360386, + 45.521186 + ], + [ + -73.360628, + 45.521128 + ], + [ + -73.360705, + 45.521109 + ], + [ + -73.360944, + 45.521085 + ], + [ + -73.361004, + 45.521078 + ], + [ + -73.361107, + 45.521068 + ], + [ + -73.361272, + 45.521052 + ], + [ + -73.36142, + 45.521039 + ], + [ + -73.361469, + 45.521035 + ], + [ + -73.362871, + 45.520914 + ], + [ + -73.365183, + 45.520725 + ], + [ + -73.36542, + 45.520706 + ], + [ + -73.366558, + 45.520607 + ], + [ + -73.366807, + 45.520586 + ], + [ + -73.367999, + 45.520506 + ], + [ + -73.368083, + 45.520501 + ], + [ + -73.368198, + 45.520488 + ], + [ + -73.368646, + 45.520466 + ], + [ + -73.369225, + 45.520454 + ], + [ + -73.370151, + 45.520446 + ], + [ + -73.371725, + 45.520433 + ], + [ + -73.373172, + 45.520409 + ], + [ + -73.373182, + 45.520409 + ], + [ + -73.37501, + 45.520379 + ], + [ + -73.375959, + 45.520362 + ], + [ + -73.377348, + 45.520341 + ], + [ + -73.377346, + 45.52022 + ], + [ + -73.37734, + 45.519909 + ], + [ + -73.377337, + 45.519729 + ], + [ + -73.377334, + 45.519653 + ], + [ + -73.377314, + 45.519063 + ], + [ + -73.377294, + 45.518433 + ], + [ + -73.377275, + 45.517673 + ], + [ + -73.377263, + 45.517007 + ], + [ + -73.377264, + 45.516616 + ], + [ + -73.377268, + 45.516238 + ], + [ + -73.377292, + 45.515896 + ], + [ + -73.377367, + 45.515599 + ], + [ + -73.377447, + 45.515419 + ], + [ + -73.377521, + 45.51528 + ], + [ + -73.377989, + 45.514709 + ], + [ + -73.378524, + 45.514309 + ], + [ + -73.379356, + 45.513825 + ], + [ + -73.379489, + 45.513748 + ], + [ + -73.379314, + 45.513594 + ], + [ + -73.379268, + 45.513559 + ], + [ + -73.379209, + 45.513513 + ], + [ + -73.379017, + 45.513356 + ], + [ + -73.378717, + 45.513117 + ], + [ + -73.378528, + 45.512964 + ], + [ + -73.378231, + 45.512729 + ], + [ + -73.378014, + 45.512549 + ], + [ + -73.377889, + 45.512446 + ], + [ + -73.377714, + 45.512315 + ], + [ + -73.377625, + 45.512257 + ], + [ + -73.377534, + 45.512198 + ], + [ + -73.377452, + 45.512144 + ], + [ + -73.377349, + 45.512085 + ], + [ + -73.377295, + 45.512063 + ], + [ + -73.377229, + 45.512053 + ], + [ + -73.375817, + 45.512144 + ], + [ + -73.375466, + 45.512202 + ], + [ + -73.37524, + 45.512313 + ], + [ + -73.375077, + 45.512319 + ], + [ + -73.374875, + 45.512316 + ], + [ + -73.374557, + 45.512323 + ], + [ + -73.374466, + 45.51242 + ], + [ + -73.374474, + 45.512564 + ], + [ + -73.374465, + 45.512782 + ] + ] + }, + "id": 196, + "properties": { + "id": "880e2073-70a4-4225-93b2-54240da66995", + "data": { + "gtfs": { + "shape_id": "93_1_A" + }, + "segments": [ + { + "distanceMeters": 330, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 389, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 368, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 113, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 806, + "travelTimeSeconds": 141 + }, + { + "distanceMeters": 708, + "travelTimeSeconds": 124 + }, + { + "distanceMeters": 540, + "travelTimeSeconds": 95 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9480, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3415.483195449818, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.52, + "travelTimeWithoutDwellTimesSeconds": 1260, + "operatingTimeWithLayoverTimeSeconds": 1440, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1260, + "operatingSpeedWithLayoverMetersPerSecond": 6.58, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.52 + }, + "mode": "bus", + "name": "Gare St-Bruno", + "color": "#A32638", + "nodes": [ + "57edc028-e6a8-4a6f-9b5c-85f95b27233f", + "25f62569-60d2-41e7-8610-c3538fe230bf", + "83499710-5b26-4bfd-b649-c008d0b7fde7", + "a09525fc-24fb-44bc-87d9-67be178e23ec", + "b46cca05-fe3c-4c2a-ae1b-28c207027915", + "cda3afce-794c-43b8-9347-1b384d64a116", + "ce2fb937-41be-4394-bf3f-6bb0d8d6413a", + "066272d0-7f9d-4ef7-82d0-25ad68986874", + "cecd1a42-805e-4b1f-971e-5486564ef354", + "ab32c22a-056a-40bc-bb99-58c049d50498", + "d4b97f89-0d15-4037-9293-a46292a3b826", + "a5fa3371-93c4-47f9-8972-32a538fcab1f", + "c144cdde-b47b-40cf-b640-e6399771f99b", + "a34242f1-b39e-4075-8b98-da7cc20aa985", + "16815d0a-9758-4c90-a572-66e1110e9895", + "0dae6aad-c792-48fd-a50b-e498ec730741", + "4451201f-23d0-4b66-a2ac-a72029810b3b", + "2c952684-5d97-4238-ae18-51cba6c9775e", + "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", + "60ea8a19-f195-4f9b-b60e-122a63bd86bd", + "9f67f31c-9015-4b9c-b5eb-210a53be617b", + "106469e3-38d2-4015-b627-c243c3d7f8cd", + "5c28c22e-79f1-4a2c-9171-d9cc96f1af7d", + "1903cbec-a898-4d1e-aa47-0930a7af3bd5", + "d6901f53-cd66-4086-8fc5-2643b6cfcce0", + "9f66e075-701a-442d-9c89-3fee641e6ceb", + "515b8790-77c6-4a3b-8347-a621b1167870", + "72167429-f4d5-4eda-870a-b71c9c47ec5e", + "57dc3582-89e5-4ef0-a1fc-ba8d7e551866", + "68d27bd7-271c-4390-8856-6b37460af70f", + "e7e2dd97-2e08-4a19-b024-ea6b319bdef6", + "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", + "8a70da04-d6f7-409c-846d-927fd9f23d96", + "36c85e4a-3286-45d4-878d-41eda74eb078", + "4087f6e1-342c-4090-94e9-c90c43ab2560", + "fc3ccf33-4026-4d4e-b0bc-03451e1ebb2d", + "d22226db-b31b-4480-a3d1-49a68d17d471", + "0bb0f4a3-6434-4d59-afee-258bc8cd81e4" + ], + "stops": [], + "line_id": "d3787513-77ed-4bb1-8e7a-a683370a562f", + "segments": [ + 0, + 4, + 12, + 26, + 33, + 38, + 58, + 63, + 67, + 82, + 86, + 96, + 99, + 101, + 103, + 114, + 122, + 126, + 133, + 136, + 139, + 149, + 160, + 166, + 182, + 187, + 197, + 206, + 211, + 218, + 220, + 229, + 236, + 238, + 240, + 255, + 268 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 196, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.374465, + 45.512782 + ], + [ + -73.374461, + 45.51287 + ], + [ + -73.374479, + 45.512971 + ], + [ + -73.374606, + 45.513029 + ], + [ + -73.374754, + 45.513071 + ], + [ + -73.374849, + 45.513101 + ], + [ + -73.374989, + 45.513126 + ], + [ + -73.375048, + 45.513031 + ], + [ + -73.37514, + 45.512883 + ], + [ + -73.375182, + 45.512794 + ], + [ + -73.375195, + 45.5127 + ], + [ + -73.375205, + 45.51259 + ], + [ + -73.375206, + 45.51251 + ], + [ + -73.375219, + 45.512423 + ], + [ + -73.37524, + 45.512313 + ], + [ + -73.375466, + 45.512202 + ], + [ + -73.375817, + 45.512144 + ], + [ + -73.377229, + 45.512053 + ], + [ + -73.377295, + 45.512063 + ], + [ + -73.377349, + 45.512085 + ], + [ + -73.377452, + 45.512144 + ], + [ + -73.377534, + 45.512198 + ], + [ + -73.377625, + 45.512257 + ], + [ + -73.377714, + 45.512315 + ], + [ + -73.377889, + 45.512446 + ], + [ + -73.378014, + 45.512549 + ], + [ + -73.378231, + 45.512729 + ], + [ + -73.378528, + 45.512964 + ], + [ + -73.378717, + 45.513117 + ], + [ + -73.379017, + 45.513356 + ], + [ + -73.379209, + 45.513513 + ], + [ + -73.379314, + 45.513594 + ], + [ + -73.379489, + 45.513748 + ], + [ + -73.379164, + 45.513936 + ], + [ + -73.379059, + 45.513998 + ], + [ + -73.378524, + 45.514309 + ], + [ + -73.377989, + 45.514709 + ], + [ + -73.377521, + 45.51528 + ], + [ + -73.377447, + 45.515419 + ], + [ + -73.377367, + 45.515599 + ], + [ + -73.377292, + 45.515896 + ], + [ + -73.377268, + 45.516238 + ], + [ + -73.377264, + 45.516616 + ], + [ + -73.377263, + 45.517007 + ], + [ + -73.377275, + 45.517673 + ], + [ + -73.377294, + 45.518433 + ], + [ + -73.377314, + 45.519063 + ], + [ + -73.377337, + 45.519729 + ], + [ + -73.377342, + 45.520004 + ], + [ + -73.377346, + 45.52022 + ], + [ + -73.37694, + 45.520228 + ], + [ + -73.375129, + 45.520264 + ], + [ + -73.375006, + 45.520267 + ], + [ + -73.371729, + 45.520317 + ], + [ + -73.370147, + 45.520338 + ], + [ + -73.36922, + 45.52035 + ], + [ + -73.368621, + 45.520354 + ], + [ + -73.368553, + 45.520357 + ], + [ + -73.368553, + 45.520357 + ], + [ + -73.368191, + 45.520371 + ], + [ + -73.367087, + 45.520466 + ], + [ + -73.366798, + 45.520491 + ], + [ + -73.365403, + 45.520602 + ], + [ + -73.362854, + 45.520815 + ], + [ + -73.361473, + 45.520938 + ], + [ + -73.361257, + 45.520957 + ], + [ + -73.360668, + 45.521019 + ], + [ + -73.360333, + 45.521091 + ], + [ + -73.359836, + 45.521252 + ], + [ + -73.359749, + 45.52129 + ], + [ + -73.359628, + 45.521342 + ], + [ + -73.359335, + 45.52149 + ], + [ + -73.358998, + 45.521697 + ], + [ + -73.35859, + 45.521962 + ], + [ + -73.358355, + 45.522114 + ], + [ + -73.356475, + 45.523309 + ], + [ + -73.356465, + 45.523315 + ], + [ + -73.35614, + 45.523515 + ], + [ + -73.355859, + 45.523708 + ], + [ + -73.355604, + 45.523861 + ], + [ + -73.355209, + 45.524131 + ], + [ + -73.354949, + 45.52431 + ], + [ + -73.35467, + 45.524494 + ], + [ + -73.354334, + 45.524723 + ], + [ + -73.354127, + 45.524863 + ], + [ + -73.353512, + 45.525289 + ], + [ + -73.353243, + 45.525465 + ], + [ + -73.353237, + 45.525469 + ], + [ + -73.353091, + 45.525518 + ], + [ + -73.351851, + 45.525827 + ], + [ + -73.351836, + 45.525786 + ], + [ + -73.351798, + 45.525714 + ], + [ + -73.351772, + 45.525675 + ], + [ + -73.351697, + 45.525557 + ], + [ + -73.3516, + 45.525453 + ], + [ + -73.351528, + 45.525392 + ], + [ + -73.351479, + 45.52535 + ], + [ + -73.351402, + 45.525286 + ], + [ + -73.350822, + 45.524876 + ], + [ + -73.349891, + 45.524214 + ], + [ + -73.349649, + 45.524041 + ], + [ + -73.349594, + 45.524002 + ], + [ + -73.349337, + 45.523831 + ], + [ + -73.348978, + 45.523614 + ], + [ + -73.348701, + 45.523497 + ], + [ + -73.348489, + 45.52342 + ], + [ + -73.348302, + 45.523361 + ], + [ + -73.348012, + 45.523289 + ], + [ + -73.347832, + 45.523257 + ], + [ + -73.347705, + 45.523243 + ], + [ + -73.34763, + 45.523235 + ], + [ + -73.347547, + 45.523225 + ], + [ + -73.346648, + 45.523103 + ], + [ + -73.346396, + 45.523067 + ], + [ + -73.346291, + 45.523053 + ], + [ + -73.346291, + 45.52285 + ], + [ + -73.346292, + 45.522585 + ], + [ + -73.346289, + 45.522407 + ], + [ + -73.346288, + 45.52231 + ], + [ + -73.346287, + 45.522153 + ], + [ + -73.346275, + 45.522009 + ], + [ + -73.346262, + 45.52182 + ], + [ + -73.346237, + 45.521631 + ], + [ + -73.346225, + 45.521478 + ], + [ + -73.346184, + 45.521289 + ], + [ + -73.346149, + 45.521073 + ], + [ + -73.346136, + 45.521001 + ], + [ + -73.346124, + 45.520929 + ], + [ + -73.346124, + 45.520857 + ], + [ + -73.346124, + 45.520785 + ], + [ + -73.346137, + 45.520677 + ], + [ + -73.346163, + 45.520569 + ], + [ + -73.346189, + 45.520451 + ], + [ + -73.346222, + 45.520303 + ], + [ + -73.346306, + 45.519804 + ], + [ + -73.346397, + 45.519174 + ], + [ + -73.346424, + 45.518967 + ], + [ + -73.346443, + 45.518655 + ], + [ + -73.34645, + 45.518527 + ], + [ + -73.346008, + 45.518523 + ], + [ + -73.345381, + 45.518517 + ], + [ + -73.344748, + 45.518511 + ], + [ + -73.344184, + 45.518506 + ], + [ + -73.344019, + 45.518505 + ], + [ + -73.344103, + 45.519059 + ], + [ + -73.344125, + 45.51925 + ], + [ + -73.344134, + 45.519324 + ], + [ + -73.34415, + 45.519419 + ], + [ + -73.344154, + 45.519453 + ], + [ + -73.344217, + 45.520058 + ], + [ + -73.344223, + 45.520328 + ], + [ + -73.344186, + 45.520584 + ], + [ + -73.344126, + 45.520715 + ], + [ + -73.344046, + 45.520881 + ], + [ + -73.343898, + 45.52107 + ], + [ + -73.343794, + 45.521169 + ], + [ + -73.343671, + 45.521281 + ], + [ + -73.343545, + 45.521362 + ], + [ + -73.343232, + 45.521573 + ], + [ + -73.34322, + 45.521581 + ], + [ + -73.34316, + 45.521627 + ], + [ + -73.342373, + 45.522165 + ], + [ + -73.341588, + 45.522687 + ], + [ + -73.341528, + 45.522727 + ], + [ + -73.340605, + 45.523357 + ], + [ + -73.340352, + 45.52353 + ], + [ + -73.340272, + 45.523584 + ], + [ + -73.340102, + 45.523754 + ], + [ + -73.340043, + 45.523791 + ], + [ + -73.339575, + 45.524088 + ], + [ + -73.338727, + 45.524626 + ], + [ + -73.338511, + 45.524753 + ], + [ + -73.338368, + 45.524837 + ], + [ + -73.338935, + 45.525225 + ], + [ + -73.339197, + 45.525405 + ], + [ + -73.339713, + 45.525764 + ], + [ + -73.339843, + 45.525855 + ], + [ + -73.340005, + 45.525968 + ], + [ + -73.340568, + 45.526316 + ], + [ + -73.340738, + 45.526442 + ], + [ + -73.341034, + 45.526636 + ], + [ + -73.341462, + 45.526915 + ], + [ + -73.34183, + 45.527172 + ], + [ + -73.341962, + 45.527278 + ], + [ + -73.341994, + 45.527303 + ], + [ + -73.342074, + 45.527389 + ], + [ + -73.342252, + 45.527555 + ], + [ + -73.342521, + 45.52779 + ], + [ + -73.342827, + 45.528033 + ], + [ + -73.343198, + 45.528321 + ], + [ + -73.343543, + 45.528556 + ], + [ + -73.343655, + 45.528635 + ], + [ + -73.343849, + 45.528772 + ], + [ + -73.344605, + 45.529334 + ], + [ + -73.345191, + 45.529769 + ], + [ + -73.345287, + 45.529841 + ], + [ + -73.345369, + 45.529899 + ], + [ + -73.346954, + 45.531044 + ], + [ + -73.347248, + 45.531263 + ], + [ + -73.348688, + 45.532336 + ], + [ + -73.348768, + 45.532396 + ], + [ + -73.350008, + 45.533298 + ], + [ + -73.350737, + 45.533848 + ], + [ + -73.350778, + 45.533879 + ], + [ + -73.350966, + 45.53401 + ], + [ + -73.351196, + 45.534181 + ], + [ + -73.351414, + 45.534325 + ], + [ + -73.351631, + 45.534461 + ], + [ + -73.351899, + 45.534632 + ], + [ + -73.352156, + 45.534794 + ], + [ + -73.352431, + 45.534966 + ], + [ + -73.352519, + 45.535024 + ], + [ + -73.352683, + 45.535132 + ], + [ + -73.352814, + 45.535218 + ], + [ + -73.353353, + 45.535601 + ], + [ + -73.353892, + 45.535993 + ], + [ + -73.354085, + 45.536133 + ], + [ + -73.354237, + 45.536255 + ], + [ + -73.35439, + 45.536363 + ], + [ + -73.354672, + 45.536579 + ], + [ + -73.354978, + 45.536786 + ], + [ + -73.355606, + 45.537228 + ], + [ + -73.35581, + 45.537381 + ], + [ + -73.356028, + 45.537517 + ], + [ + -73.356194, + 45.537616 + ], + [ + -73.356386, + 45.537688 + ], + [ + -73.356488, + 45.537706 + ], + [ + -73.35659, + 45.537733 + ], + [ + -73.356808, + 45.537752 + ], + [ + -73.356949, + 45.537752 + ], + [ + -73.356953, + 45.537752 + ], + [ + -73.35709, + 45.537752 + ], + [ + -73.357114, + 45.538216 + ], + [ + -73.357226, + 45.540389 + ], + [ + -73.357239, + 45.540776 + ], + [ + -73.357008, + 45.540789 + ], + [ + -73.356536, + 45.540819 + ], + [ + -73.356528, + 45.54082 + ], + [ + -73.35635, + 45.540824 + ], + [ + -73.352636, + 45.540909 + ], + [ + -73.352638, + 45.54104 + ], + [ + -73.352652, + 45.541271 + ], + [ + -73.352657, + 45.541362 + ], + [ + -73.352663, + 45.541454 + ], + [ + -73.352675, + 45.541634 + ], + [ + -73.352688, + 45.54167 + ], + [ + -73.3527, + 45.541715 + ], + [ + -73.352878, + 45.542192 + ], + [ + -73.352929, + 45.542336 + ], + [ + -73.352942, + 45.542426 + ], + [ + -73.352942, + 45.54247 + ], + [ + -73.352941, + 45.542552 + ], + [ + -73.352987, + 45.543596 + ], + [ + -73.35299, + 45.543668 + ], + [ + -73.352989, + 45.543812 + ], + [ + -73.353002, + 45.543947 + ], + [ + -73.353002, + 45.543974 + ], + [ + -73.353015, + 45.54401 + ], + [ + -73.353053, + 45.544064 + ], + [ + -73.353091, + 45.544109 + ], + [ + -73.353129, + 45.544145 + ], + [ + -73.353193, + 45.54419 + ], + [ + -73.353257, + 45.544235 + ], + [ + -73.353322, + 45.544281 + ], + [ + -73.353652, + 45.544514 + ], + [ + -73.353743, + 45.544578 + ], + [ + -73.35442, + 45.545064 + ], + [ + -73.35451, + 45.545136 + ], + [ + -73.354702, + 45.545272 + ], + [ + -73.354791, + 45.545326 + ], + [ + -73.354983, + 45.545425 + ], + [ + -73.355144, + 45.545493 + ], + [ + -73.355239, + 45.545533 + ], + [ + -73.355385, + 45.545381 + ], + [ + -73.35574, + 45.545012 + ], + [ + -73.355855, + 45.544895 + ], + [ + -73.355957, + 45.544785 + ], + [ + -73.356039, + 45.544697 + ], + [ + -73.356571, + 45.544149 + ], + [ + -73.356741, + 45.543942 + ], + [ + -73.356831, + 45.543826 + ], + [ + -73.356895, + 45.543736 + ], + [ + -73.356967, + 45.543641 + ], + [ + -73.357007, + 45.543556 + ], + [ + -73.357063, + 45.543466 + ], + [ + -73.357103, + 45.54338 + ], + [ + -73.357138, + 45.543286 + ], + [ + -73.357183, + 45.543183 + ], + [ + -73.357218, + 45.54307 + ], + [ + -73.357233, + 45.542994 + ], + [ + -73.357256, + 45.542917 + ], + [ + -73.357282, + 45.542827 + ], + [ + -73.357295, + 45.542728 + ], + [ + -73.357308, + 45.542647 + ], + [ + -73.357308, + 45.542557 + ], + [ + -73.357308, + 45.54244 + ], + [ + -73.357309, + 45.542343 + ], + [ + -73.357309, + 45.542332 + ], + [ + -73.357309, + 45.542233 + ], + [ + -73.357285, + 45.541622 + ], + [ + -73.357285, + 45.541541 + ], + [ + -73.357248, + 45.540943 + ] + ] + }, + "id": 197, + "properties": { + "id": "eb0a011f-3686-40a1-8d65-d7ecc19b4bfa", + "data": { + "gtfs": { + "shape_id": "93_1_R" + }, + "segments": [ + { + "distanceMeters": 622, + "travelTimeSeconds": 91 + }, + { + "distanceMeters": 717, + "travelTimeSeconds": 105 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 513, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 347, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 310, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 375, + "travelTimeSeconds": 116 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 317, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 417, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 330, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 14 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9592, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3400.643487499317, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.27, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 6.39, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.27 + }, + "mode": "bus", + "name": "Yvonne-Duckett", + "color": "#A32638", + "nodes": [ + "0bb0f4a3-6434-4d59-afee-258bc8cd81e4", + "d22226db-b31b-4480-a3d1-49a68d17d471", + "fc3ccf33-4026-4d4e-b0bc-03451e1ebb2d", + "4fd9bafc-afe7-46d0-b43c-1a1438691ab1", + "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", + "36c85e4a-3286-45d4-878d-41eda74eb078", + "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", + "e7e2dd97-2e08-4a19-b024-ea6b319bdef6", + "68d27bd7-271c-4390-8856-6b37460af70f", + "57dc3582-89e5-4ef0-a1fc-ba8d7e551866", + "72167429-f4d5-4eda-870a-b71c9c47ec5e", + "515b8790-77c6-4a3b-8347-a621b1167870", + "9f66e075-701a-442d-9c89-3fee641e6ceb", + "d6901f53-cd66-4086-8fc5-2643b6cfcce0", + "1903cbec-a898-4d1e-aa47-0930a7af3bd5", + "5c28c22e-79f1-4a2c-9171-d9cc96f1af7d", + "7ac3961a-0b0e-47c8-a264-69b6edbbd2b9", + "9f67f31c-9015-4b9c-b5eb-210a53be617b", + "60ea8a19-f195-4f9b-b60e-122a63bd86bd", + "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", + "2c952684-5d97-4238-ae18-51cba6c9775e", + "819e2afa-bfef-47b3-8a41-a55f4c2f9156", + "0dae6aad-c792-48fd-a50b-e498ec730741", + "16815d0a-9758-4c90-a572-66e1110e9895", + "a34242f1-b39e-4075-8b98-da7cc20aa985", + "c144cdde-b47b-40cf-b640-e6399771f99b", + "a5fa3371-93c4-47f9-8972-32a538fcab1f", + "d4b97f89-0d15-4037-9293-a46292a3b826", + "ab32c22a-056a-40bc-bb99-58c049d50498", + "cecd1a42-805e-4b1f-971e-5486564ef354", + "57edc028-e6a8-4a6f-9b5c-85f95b27233f", + "25f62569-60d2-41e7-8610-c3538fe230bf", + "83499710-5b26-4bfd-b649-c008d0b7fde7", + "a09525fc-24fb-44bc-87d9-67be178e23ec", + "b46cca05-fe3c-4c2a-ae1b-28c207027915", + "cda3afce-794c-43b8-9347-1b384d64a116", + "ce2fb937-41be-4394-bf3f-6bb0d8d6413a", + "066272d0-7f9d-4ef7-82d0-25ad68986874" + ], + "stops": [], + "line_id": "d3787513-77ed-4bb1-8e7a-a683370a562f", + "segments": [ + 0, + 34, + 48, + 51, + 58, + 60, + 64, + 73, + 76, + 86, + 95, + 100, + 110, + 113, + 132, + 137, + 148, + 159, + 162, + 164, + 171, + 176, + 183, + 194, + 198, + 199, + 202, + 211, + 215, + 230, + 238, + 241, + 250, + 264, + 271, + 276, + 296 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 197, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.520811, + 45.523427 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522259, + 45.521632 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519254, + 45.520728 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514996, + 45.519327 + ], + [ + -73.514793, + 45.519263 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509849, + 45.51557 + ], + [ + -73.509164, + 45.515381 + ], + [ + -73.508444, + 45.51521 + ], + [ + -73.506204, + 45.514496 + ], + [ + -73.503449, + 45.513618 + ], + [ + -73.500803, + 45.512776 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498209, + 45.511889 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.494311, + 45.510459 + ], + [ + -73.494196, + 45.510403 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488913, + 45.504255 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488355, + 45.503066 + ], + [ + -73.4883, + 45.502913 + ], + [ + -73.488219, + 45.502531 + ], + [ + -73.488223, + 45.502405 + ], + [ + -73.488245, + 45.502293 + ], + [ + -73.488296, + 45.502185 + ], + [ + -73.488375, + 45.502086 + ], + [ + -73.488484, + 45.502 + ], + [ + -73.488505, + 45.501989 + ], + [ + -73.488609, + 45.501937 + ], + [ + -73.48874, + 45.501892 + ], + [ + -73.48888, + 45.501865 + ], + [ + -73.489028, + 45.501856 + ], + [ + -73.489181, + 45.501865 + ], + [ + -73.489324, + 45.501892 + ], + [ + -73.489461, + 45.501933 + ], + [ + -73.489585, + 45.501991 + ], + [ + -73.489692, + 45.502068 + ], + [ + -73.489786, + 45.502153 + ], + [ + -73.489942, + 45.502342 + ], + [ + -73.490006, + 45.50245 + ], + [ + -73.490054, + 45.502558 + ], + [ + -73.490086, + 45.502666 + ], + [ + -73.490092, + 45.502779 + ], + [ + -73.490064, + 45.502891 + ], + [ + -73.490004, + 45.502995 + ], + [ + -73.489917, + 45.503094 + ], + [ + -73.489808, + 45.503175 + ], + [ + -73.489675, + 45.503242 + ], + [ + -73.489524, + 45.503287 + ], + [ + -73.489359, + 45.50331 + ], + [ + -73.489186, + 45.503323 + ], + [ + -73.488817, + 45.503318 + ], + [ + -73.487515, + 45.503242 + ], + [ + -73.486872, + 45.503273 + ], + [ + -73.486502, + 45.503323 + ], + [ + -73.486146, + 45.503381 + ], + [ + -73.484224, + 45.503808 + ], + [ + -73.483407, + 45.503957 + ], + [ + -73.482922, + 45.504029 + ], + [ + -73.482166, + 45.504114 + ], + [ + -73.481092, + 45.504204 + ], + [ + -73.4802, + 45.504262 + ], + [ + -73.47719, + 45.50446 + ], + [ + -73.470642, + 45.504895 + ], + [ + -73.464792, + 45.505284 + ], + [ + -73.464234, + 45.505325 + ], + [ + -73.463301, + 45.505392 + ], + [ + -73.461784, + 45.505526 + ], + [ + -73.460686, + 45.505647 + ], + [ + -73.45799, + 45.505984 + ], + [ + -73.456776, + 45.506127 + ], + [ + -73.455209, + 45.506284 + ], + [ + -73.454382, + 45.506356 + ], + [ + -73.452547, + 45.506481 + ], + [ + -73.450186, + 45.506642 + ], + [ + -73.439577, + 45.507343 + ], + [ + -73.439057, + 45.507379 + ], + [ + -73.438071, + 45.507414 + ], + [ + -73.437444, + 45.507428 + ], + [ + -73.436265, + 45.507427 + ], + [ + -73.435664, + 45.507418 + ], + [ + -73.43478, + 45.507413 + ], + [ + -73.433757, + 45.507439 + ], + [ + -73.432476, + 45.507501 + ], + [ + -73.432462, + 45.507502 + ], + [ + -73.430857, + 45.507609 + ], + [ + -73.43012, + 45.507658 + ], + [ + -73.43011, + 45.507658 + ], + [ + -73.429925, + 45.50767 + ], + [ + -73.429316, + 45.507711 + ], + [ + -73.429246, + 45.50772 + ], + [ + -73.427401, + 45.507872 + ], + [ + -73.425651, + 45.508046 + ], + [ + -73.425331, + 45.508082 + ], + [ + -73.423669, + 45.508256 + ], + [ + -73.421559, + 45.508471 + ], + [ + -73.420178, + 45.508555 + ], + [ + -73.418703, + 45.508644 + ], + [ + -73.414755, + 45.508904 + ], + [ + -73.40603, + 45.509467 + ], + [ + -73.399904, + 45.509875 + ], + [ + -73.3937, + 45.510275 + ], + [ + -73.39233, + 45.510359 + ], + [ + -73.390441, + 45.510452 + ], + [ + -73.389048, + 45.510473 + ], + [ + -73.387433, + 45.510512 + ], + [ + -73.386693, + 45.510538 + ], + [ + -73.384812, + 45.510577 + ], + [ + -73.381979, + 45.510646 + ], + [ + -73.381673, + 45.510645 + ], + [ + -73.381499, + 45.510635 + ], + [ + -73.381378, + 45.510627 + ], + [ + -73.381234, + 45.510609 + ], + [ + -73.3811, + 45.510577 + ], + [ + -73.380858, + 45.510492 + ], + [ + -73.380751, + 45.510437 + ], + [ + -73.380661, + 45.510379 + ], + [ + -73.380586, + 45.510311 + ], + [ + -73.380529, + 45.510239 + ], + [ + -73.380481, + 45.510154 + ], + [ + -73.380447, + 45.510037 + ], + [ + -73.380445, + 45.509992 + ], + [ + -73.380452, + 45.509828 + ], + [ + -73.38047, + 45.509573 + ], + [ + -73.380641, + 45.509218 + ], + [ + -73.380768, + 45.508957 + ], + [ + -73.381389, + 45.507851 + ], + [ + -73.381468, + 45.507752 + ], + [ + -73.381335, + 45.507721 + ], + [ + -73.380701, + 45.507418 + ], + [ + -73.380626, + 45.507481 + ], + [ + -73.380503, + 45.507585 + ], + [ + -73.380399, + 45.507666 + ], + [ + -73.380268, + 45.507759 + ], + [ + -73.380179, + 45.507823 + ], + [ + -73.380145, + 45.507842 + ], + [ + -73.380059, + 45.50789 + ], + [ + -73.379863, + 45.507975 + ], + [ + -73.379724, + 45.508025 + ], + [ + -73.379622, + 45.508047 + ], + [ + -73.379526, + 45.508074 + ], + [ + -73.379404, + 45.508091 + ], + [ + -73.3793, + 45.508105 + ], + [ + -73.379147, + 45.508114 + ], + [ + -73.379102, + 45.508116 + ], + [ + -73.378562, + 45.50814 + ], + [ + -73.378452, + 45.508145 + ], + [ + -73.378119, + 45.508163 + ], + [ + -73.377933, + 45.508153 + ], + [ + -73.377878, + 45.50815 + ], + [ + -73.377779, + 45.508144 + ], + [ + -73.377699, + 45.508135 + ], + [ + -73.377571, + 45.508108 + ], + [ + -73.377442, + 45.508081 + ], + [ + -73.377114, + 45.507982 + ], + [ + -73.376914, + 45.507917 + ], + [ + -73.376868, + 45.507902 + ], + [ + -73.376837, + 45.507891 + ], + [ + -73.376632, + 45.507801 + ], + [ + -73.376512, + 45.507729 + ], + [ + -73.3764, + 45.507639 + ], + [ + -73.376345, + 45.507576 + ], + [ + -73.376298, + 45.507513 + ], + [ + -73.376268, + 45.507459 + ], + [ + -73.376084, + 45.507108 + ], + [ + -73.376046, + 45.507022 + ], + [ + -73.375586, + 45.507112 + ], + [ + -73.37473, + 45.507255 + ], + [ + -73.374599, + 45.507263 + ], + [ + -73.374436, + 45.507272 + ], + [ + -73.372887, + 45.507302 + ], + [ + -73.372631, + 45.507306 + ], + [ + -73.371045, + 45.507325 + ], + [ + -73.370567, + 45.507304 + ], + [ + -73.370219, + 45.507317 + ], + [ + -73.369997, + 45.507299 + ], + [ + -73.369892, + 45.507281 + ], + [ + -73.369796, + 45.507254 + ], + [ + -73.369638, + 45.507181 + ], + [ + -73.369575, + 45.507141 + ], + [ + -73.369469, + 45.507051 + ], + [ + -73.369425, + 45.506956 + ], + [ + -73.369394, + 45.506848 + ], + [ + -73.369382, + 45.506749 + ], + [ + -73.369359, + 45.50557 + ], + [ + -73.36938, + 45.505143 + ], + [ + -73.36941, + 45.504851 + ], + [ + -73.369478, + 45.504423 + ], + [ + -73.369566, + 45.504005 + ], + [ + -73.369731, + 45.503452 + ], + [ + -73.369826, + 45.503177 + ], + [ + -73.369982, + 45.502795 + ], + [ + -73.370146, + 45.502444 + ], + [ + -73.370264, + 45.502238 + ], + [ + -73.370341, + 45.502143 + ], + [ + -73.370433, + 45.502062 + ], + [ + -73.370541, + 45.50199 + ], + [ + -73.370661, + 45.501932 + ], + [ + -73.370793, + 45.501892 + ], + [ + -73.370931, + 45.50186 + ], + [ + -73.371072, + 45.501851 + ], + [ + -73.371214, + 45.501852 + ], + [ + -73.371354, + 45.501874 + ], + [ + -73.37149, + 45.50191 + ], + [ + -73.371538, + 45.501931 + ], + [ + -73.371617, + 45.501965 + ], + [ + -73.371733, + 45.502032 + ], + [ + -73.371832, + 45.502109 + ], + [ + -73.371912, + 45.502199 + ], + [ + -73.371971, + 45.502302 + ], + [ + -73.372008, + 45.502406 + ], + [ + -73.372021, + 45.502523 + ], + [ + -73.372005, + 45.502653 + ], + [ + -73.371975, + 45.502775 + ], + [ + -73.371651, + 45.503566 + ], + [ + -73.371494, + 45.504025 + ], + [ + -73.371425, + 45.504371 + ], + [ + -73.371423, + 45.504641 + ], + [ + -73.371389, + 45.504844 + ], + [ + -73.371334, + 45.505406 + ], + [ + -73.371331, + 45.505789 + ], + [ + -73.37139, + 45.508007 + ], + [ + -73.371445, + 45.50933 + ], + [ + -73.37148, + 45.510657 + ], + [ + -73.371484, + 45.511363 + ], + [ + -73.371519, + 45.512673 + ], + [ + -73.371557, + 45.513397 + ], + [ + -73.371635, + 45.514319 + ], + [ + -73.371686, + 45.515089 + ], + [ + -73.371789, + 45.516871 + ], + [ + -73.371852, + 45.519003 + ], + [ + -73.371811, + 45.520164 + ], + [ + -73.371765, + 45.521019 + ], + [ + -73.371735, + 45.521284 + ], + [ + -73.371686, + 45.521563 + ], + [ + -73.371628, + 45.521757 + ], + [ + -73.371623, + 45.52177 + ], + [ + -73.371546, + 45.52195 + ], + [ + -73.371432, + 45.522139 + ], + [ + -73.371362, + 45.522224 + ], + [ + -73.371283, + 45.522305 + ], + [ + -73.371195, + 45.522377 + ], + [ + -73.371098, + 45.522444 + ], + [ + -73.370993, + 45.522503 + ], + [ + -73.370882, + 45.522548 + ], + [ + -73.370762, + 45.522583 + ], + [ + -73.370636, + 45.522601 + ], + [ + -73.370504, + 45.52261 + ], + [ + -73.36938, + 45.522631 + ], + [ + -73.369289, + 45.522629 + ], + [ + -73.369241, + 45.520998 + ], + [ + -73.369225, + 45.520454 + ], + [ + -73.36922, + 45.52035 + ], + [ + -73.368621, + 45.520354 + ], + [ + -73.368553, + 45.520357 + ], + [ + -73.36853, + 45.520358 + ], + [ + -73.368191, + 45.520371 + ], + [ + -73.367934, + 45.520394 + ], + [ + -73.367065, + 45.520468 + ], + [ + -73.366798, + 45.520491 + ], + [ + -73.365403, + 45.520602 + ], + [ + -73.362854, + 45.520815 + ], + [ + -73.361454, + 45.52094 + ], + [ + -73.361257, + 45.520957 + ], + [ + -73.361088, + 45.519832 + ], + [ + -73.361078, + 45.519769 + ], + [ + -73.361044, + 45.519729 + ], + [ + -73.360928, + 45.519697 + ], + [ + -73.36065, + 45.51971 + ], + [ + -73.360243, + 45.519741 + ], + [ + -73.359782, + 45.519783 + ], + [ + -73.358783, + 45.519873 + ], + [ + -73.358471, + 45.519901 + ], + [ + -73.358096, + 45.519923 + ], + [ + -73.358007, + 45.519923 + ], + [ + -73.357922, + 45.519918 + ], + [ + -73.357731, + 45.519864 + ], + [ + -73.357562, + 45.519805 + ], + [ + -73.357425, + 45.519702 + ], + [ + -73.35663, + 45.519068 + ], + [ + -73.356509, + 45.518972 + ], + [ + -73.356103, + 45.518661 + ], + [ + -73.355851, + 45.518453 + ], + [ + -73.3557, + 45.518336 + ], + [ + -73.35554, + 45.51821 + ], + [ + -73.355464, + 45.518151 + ], + [ + -73.355224, + 45.517998 + ], + [ + -73.355058, + 45.517908 + ], + [ + -73.354896, + 45.517822 + ], + [ + -73.354639, + 45.5177 + ], + [ + -73.354634, + 45.517699 + ], + [ + -73.354374, + 45.517597 + ], + [ + -73.35413, + 45.51752 + ], + [ + -73.353985, + 45.517488 + ], + [ + -73.353964, + 45.517484 + ], + [ + -73.353847, + 45.517452 + ], + [ + -73.353913, + 45.517241 + ], + [ + -73.353961, + 45.517124 + ], + [ + -73.354012, + 45.517002 + ], + [ + -73.354038, + 45.516939 + ], + [ + -73.354065, + 45.516876 + ], + [ + -73.354098, + 45.516813 + ], + [ + -73.354129, + 45.516755 + ], + [ + -73.35418, + 45.516665 + ], + [ + -73.354282, + 45.516521 + ], + [ + -73.354404, + 45.516368 + ], + [ + -73.354562, + 45.51622 + ], + [ + -73.354639, + 45.516144 + ], + [ + -73.354763, + 45.516045 + ], + [ + -73.354876, + 45.515964 + ], + [ + -73.355155, + 45.515784 + ], + [ + -73.355267, + 45.515713 + ], + [ + -73.355353, + 45.515673 + ], + [ + -73.355435, + 45.515636 + ], + [ + -73.355691, + 45.515529 + ], + [ + -73.355723, + 45.515515 + ], + [ + -73.35603, + 45.515426 + ], + [ + -73.356223, + 45.515381 + ], + [ + -73.356733, + 45.515323 + ], + [ + -73.357346, + 45.515261 + ], + [ + -73.35791, + 45.515226 + ], + [ + -73.358068, + 45.515215 + ], + [ + -73.358796, + 45.515168 + ], + [ + -73.358869, + 45.515164 + ], + [ + -73.361292, + 45.515014 + ], + [ + -73.362203, + 45.514954 + ], + [ + -73.364936, + 45.514775 + ], + [ + -73.365804, + 45.514718 + ], + [ + -73.366158, + 45.514696 + ], + [ + -73.366978, + 45.514647 + ], + [ + -73.367121, + 45.514638 + ], + [ + -73.36718, + 45.514638 + ], + [ + -73.367413, + 45.514639 + ], + [ + -73.36767, + 45.514675 + ], + [ + -73.367705, + 45.514684 + ], + [ + -73.367986, + 45.514774 + ], + [ + -73.368285, + 45.514919 + ], + [ + -73.368381, + 45.514986 + ], + [ + -73.368487, + 45.515058 + ], + [ + -73.368593, + 45.51513 + ], + [ + -73.368707, + 45.515243 + ], + [ + -73.368826, + 45.515365 + ], + [ + -73.368961, + 45.515549 + ], + [ + -73.369002, + 45.515653 + ], + [ + -73.36905, + 45.515765 + ], + [ + -73.369062, + 45.515873 + ], + [ + -73.369087, + 45.516022 + ], + [ + -73.369094, + 45.516179 + ], + [ + -73.369101, + 45.51639 + ], + [ + -73.369101, + 45.5164 + ], + [ + -73.36911, + 45.516625 + ], + [ + -73.36912, + 45.516899 + ], + [ + -73.369128, + 45.517111 + ], + [ + -73.369131, + 45.517363 + ], + [ + -73.369131, + 45.51741 + ], + [ + -73.369133, + 45.51752 + ], + [ + -73.369139, + 45.517651 + ], + [ + -73.369147, + 45.517839 + ], + [ + -73.369153, + 45.518145 + ], + [ + -73.369156, + 45.518379 + ], + [ + -73.369164, + 45.518717 + ], + [ + -73.369173, + 45.519041 + ], + [ + -73.369183, + 45.519383 + ], + [ + -73.369188, + 45.51961 + ], + [ + -73.369192, + 45.519761 + ], + [ + -73.369205, + 45.519905 + ], + [ + -73.369207, + 45.520049 + ], + [ + -73.36922, + 45.52035 + ], + [ + -73.369225, + 45.520454 + ], + [ + -73.369241, + 45.520998 + ], + [ + -73.369289, + 45.522629 + ], + [ + -73.369285, + 45.522762 + ], + [ + -73.369286, + 45.52303 + ], + [ + -73.369289, + 45.523693 + ], + [ + -73.36923, + 45.523923 + ], + [ + -73.36921, + 45.523999 + ], + [ + -73.369028, + 45.5243 + ], + [ + -73.368834, + 45.524507 + ], + [ + -73.368444, + 45.524772 + ], + [ + -73.367696, + 45.525244 + ], + [ + -73.367366, + 45.52545 + ], + [ + -73.36762, + 45.525662 + ], + [ + -73.368663, + 45.526469 + ], + [ + -73.369386, + 45.527027 + ], + [ + -73.369582, + 45.527324 + ], + [ + -73.369684, + 45.527581 + ], + [ + -73.369695, + 45.527688 + ], + [ + -73.369719, + 45.527905 + ], + [ + -73.369744, + 45.529772 + ], + [ + -73.369745, + 45.529797 + ], + [ + -73.369749, + 45.529908 + ], + [ + -73.369792, + 45.531176 + ], + [ + -73.369792, + 45.531189 + ] + ] + }, + "id": 198, + "properties": { + "id": "aca68be2-43a7-4bcb-b1fb-8e005d468e12", + "data": { + "gtfs": { + "shape_id": "98_1_R" + }, + "segments": [ + { + "distanceMeters": 631, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 1600, + "travelTimeSeconds": 163 + }, + { + "distanceMeters": 344, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 6034, + "travelTimeSeconds": 360 + }, + { + "distanceMeters": 4398, + "travelTimeSeconds": 240 + }, + { + "distanceMeters": 4257, + "travelTimeSeconds": 360 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 390, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 391, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 97 + }, + { + "distanceMeters": 480, + "travelTimeSeconds": 122 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 40 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 192, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 22225, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11807.260076001989, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 11.58, + "travelTimeWithoutDwellTimesSeconds": 1920, + "operatingTimeWithLayoverTimeSeconds": 2112, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1920, + "operatingSpeedWithLayoverMetersPerSecond": 10.52, + "averageSpeedWithoutDwellTimesMetersPerSecond": 11.58 + }, + "mode": "bus", + "name": "Parent", + "color": "#A32638", + "nodes": [ + "acabc807-b0f5-4579-b183-cef0484a7cc2", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "688a3f67-a176-441e-a399-c92a55de9c74", + "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", + "4aea3348-4995-4fc9-b06f-6698460c1f1d", + "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", + "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", + "36c85e4a-3286-45d4-878d-41eda74eb078", + "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", + "9b7439c4-a8e6-4ce8-8c94-dcac4e29b500", + "d58c68b9-bb4a-45d1-90ea-403c9b830625", + "15f81e09-81b0-4df0-aa79-d4603e691ccd", + "6cc3ca76-cd11-4240-ac37-33142410aacb", + "f9418d0c-9ee7-44b5-a2f0-bb6a76a0df3e", + "4f54f52f-b62c-4341-a4d5-24c02344f25b", + "d3614ff1-08ff-435f-b8f7-1a76f68a0071", + "b3d09d08-d2e3-4276-8b7a-d3d07d979e6c", + "635ebffd-b274-4e79-9618-a0203ceaa811", + "dca87cea-ccf9-454c-a18b-6489a3e1ab68", + "24a322e0-f890-4138-9c97-136b5a2cdd60", + "7d066d0e-6085-4155-a554-6e1116a797c6", + "4d10c33d-a086-4248-8e97-1236a7069436", + "1cb5ae0c-b01a-4888-87b4-f35cbbb956cf" + ], + "stops": [], + "line_id": "c735086b-1ce5-43d2-9786-14a2f474d602", + "segments": [ + 0, + 39, + 46, + 71, + 82, + 173, + 229, + 340, + 343, + 347, + 356, + 364, + 378, + 399, + 406, + 410, + 416, + 439, + 448, + 457, + 467, + 471, + 474 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 198, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.369792, + 45.531176 + ], + [ + -73.369749, + 45.529908 + ], + [ + -73.369744, + 45.529772 + ], + [ + -73.369744, + 45.529758 + ], + [ + -73.369719, + 45.527905 + ], + [ + -73.369697, + 45.527702 + ], + [ + -73.369684, + 45.527581 + ], + [ + -73.369582, + 45.527324 + ], + [ + -73.369386, + 45.527027 + ], + [ + -73.368626, + 45.526439 + ], + [ + -73.36762, + 45.525662 + ], + [ + -73.367366, + 45.52545 + ], + [ + -73.367696, + 45.525244 + ], + [ + -73.368444, + 45.524772 + ], + [ + -73.368834, + 45.524507 + ], + [ + -73.369028, + 45.5243 + ], + [ + -73.36921, + 45.523999 + ], + [ + -73.369289, + 45.523693 + ], + [ + -73.369286, + 45.52299 + ], + [ + -73.369285, + 45.522762 + ], + [ + -73.369289, + 45.522629 + ], + [ + -73.369241, + 45.520998 + ], + [ + -73.369225, + 45.520454 + ], + [ + -73.36922, + 45.52035 + ], + [ + -73.368621, + 45.520354 + ], + [ + -73.36858, + 45.520356 + ], + [ + -73.368553, + 45.520357 + ], + [ + -73.368191, + 45.520371 + ], + [ + -73.367115, + 45.520464 + ], + [ + -73.366798, + 45.520491 + ], + [ + -73.365403, + 45.520602 + ], + [ + -73.362854, + 45.520815 + ], + [ + -73.361517, + 45.520934 + ], + [ + -73.361257, + 45.520957 + ], + [ + -73.361088, + 45.519832 + ], + [ + -73.361078, + 45.519769 + ], + [ + -73.361044, + 45.519729 + ], + [ + -73.360928, + 45.519697 + ], + [ + -73.36065, + 45.51971 + ], + [ + -73.360243, + 45.519741 + ], + [ + -73.359782, + 45.519783 + ], + [ + -73.358833, + 45.519868 + ], + [ + -73.358471, + 45.519901 + ], + [ + -73.358096, + 45.519923 + ], + [ + -73.358007, + 45.519923 + ], + [ + -73.357922, + 45.519918 + ], + [ + -73.357731, + 45.519864 + ], + [ + -73.357562, + 45.519805 + ], + [ + -73.357425, + 45.519702 + ], + [ + -73.356663, + 45.519095 + ], + [ + -73.356509, + 45.518972 + ], + [ + -73.356103, + 45.518661 + ], + [ + -73.355851, + 45.518453 + ], + [ + -73.3557, + 45.518336 + ], + [ + -73.35554, + 45.51821 + ], + [ + -73.355464, + 45.518151 + ], + [ + -73.355224, + 45.517998 + ], + [ + -73.355058, + 45.517908 + ], + [ + -73.354896, + 45.517822 + ], + [ + -73.354639, + 45.5177 + ], + [ + -73.354374, + 45.517597 + ], + [ + -73.35413, + 45.51752 + ], + [ + -73.354033, + 45.517499 + ], + [ + -73.353964, + 45.517484 + ], + [ + -73.353847, + 45.517452 + ], + [ + -73.353913, + 45.517241 + ], + [ + -73.353961, + 45.517124 + ], + [ + -73.354012, + 45.517002 + ], + [ + -73.354038, + 45.516939 + ], + [ + -73.354065, + 45.516876 + ], + [ + -73.354098, + 45.516813 + ], + [ + -73.354129, + 45.516755 + ], + [ + -73.35418, + 45.516665 + ], + [ + -73.354282, + 45.516521 + ], + [ + -73.354404, + 45.516368 + ], + [ + -73.354562, + 45.51622 + ], + [ + -73.354639, + 45.516144 + ], + [ + -73.354763, + 45.516045 + ], + [ + -73.354876, + 45.515964 + ], + [ + -73.355155, + 45.515784 + ], + [ + -73.355267, + 45.515713 + ], + [ + -73.355353, + 45.515673 + ], + [ + -73.355435, + 45.515636 + ], + [ + -73.355637, + 45.515552 + ], + [ + -73.355723, + 45.515515 + ], + [ + -73.35603, + 45.515426 + ], + [ + -73.356223, + 45.515381 + ], + [ + -73.356733, + 45.515323 + ], + [ + -73.357346, + 45.515261 + ], + [ + -73.35791, + 45.515226 + ], + [ + -73.358018, + 45.515219 + ], + [ + -73.358869, + 45.515164 + ], + [ + -73.361292, + 45.515014 + ], + [ + -73.36156, + 45.514996 + ], + [ + -73.362153, + 45.514957 + ], + [ + -73.364936, + 45.514775 + ], + [ + -73.365804, + 45.514718 + ], + [ + -73.366158, + 45.514696 + ], + [ + -73.366978, + 45.514647 + ], + [ + -73.367117, + 45.514638 + ], + [ + -73.367121, + 45.514638 + ], + [ + -73.367413, + 45.514639 + ], + [ + -73.36767, + 45.514675 + ], + [ + -73.367705, + 45.514684 + ], + [ + -73.367986, + 45.514774 + ], + [ + -73.368285, + 45.514919 + ], + [ + -73.368381, + 45.514986 + ], + [ + -73.368487, + 45.515058 + ], + [ + -73.368593, + 45.51513 + ], + [ + -73.368707, + 45.515243 + ], + [ + -73.368826, + 45.515365 + ], + [ + -73.368961, + 45.515549 + ], + [ + -73.369002, + 45.515653 + ], + [ + -73.36905, + 45.515765 + ], + [ + -73.369062, + 45.515873 + ], + [ + -73.369087, + 45.516022 + ], + [ + -73.369094, + 45.516179 + ], + [ + -73.369101, + 45.5164 + ], + [ + -73.36911, + 45.516625 + ], + [ + -73.36912, + 45.516899 + ], + [ + -73.369128, + 45.517111 + ], + [ + -73.369131, + 45.517363 + ], + [ + -73.369131, + 45.517366 + ], + [ + -73.369133, + 45.51752 + ], + [ + -73.369139, + 45.517651 + ], + [ + -73.369147, + 45.517839 + ], + [ + -73.369153, + 45.518145 + ], + [ + -73.369156, + 45.518379 + ], + [ + -73.369164, + 45.518717 + ], + [ + -73.369173, + 45.519041 + ], + [ + -73.369183, + 45.519383 + ], + [ + -73.369187, + 45.519574 + ], + [ + -73.369192, + 45.519761 + ], + [ + -73.369205, + 45.519905 + ], + [ + -73.369207, + 45.520049 + ], + [ + -73.36922, + 45.52035 + ], + [ + -73.369225, + 45.520454 + ], + [ + -73.370151, + 45.520446 + ], + [ + -73.371725, + 45.520433 + ], + [ + -73.373172, + 45.520409 + ], + [ + -73.373182, + 45.520409 + ], + [ + -73.374498, + 45.520455 + ], + [ + -73.374645, + 45.520482 + ], + [ + -73.37474, + 45.520527 + ], + [ + -73.374813, + 45.520577 + ], + [ + -73.374873, + 45.52064 + ], + [ + -73.375034, + 45.520996 + ], + [ + -73.375039, + 45.521108 + ], + [ + -73.375076, + 45.522539 + ], + [ + -73.374949, + 45.522539 + ], + [ + -73.373886, + 45.522555 + ], + [ + -73.37374, + 45.522542 + ], + [ + -73.373586, + 45.522519 + ], + [ + -73.373444, + 45.522483 + ], + [ + -73.373311, + 45.522429 + ], + [ + -73.373188, + 45.522357 + ], + [ + -73.373072, + 45.522271 + ], + [ + -73.372969, + 45.522172 + ], + [ + -73.372875, + 45.522059 + ], + [ + -73.372796, + 45.521942 + ], + [ + -73.372726, + 45.521812 + ], + [ + -73.372669, + 45.521677 + ], + [ + -73.372586, + 45.521398 + ], + [ + -73.372564, + 45.521254 + ], + [ + -73.372403, + 45.519427 + ], + [ + -73.372315, + 45.518235 + ], + [ + -73.372258, + 45.516327 + ], + [ + -73.372237, + 45.516003 + ], + [ + -73.372279, + 45.515674 + ], + [ + -73.372302, + 45.515252 + ], + [ + -73.372346, + 45.51419 + ], + [ + -73.372352, + 45.513843 + ], + [ + -73.372333, + 45.513069 + ], + [ + -73.372273, + 45.511072 + ], + [ + -73.372238, + 45.510005 + ], + [ + -73.372123, + 45.505807 + ], + [ + -73.372124, + 45.50556 + ], + [ + -73.372243, + 45.505043 + ], + [ + -73.372302, + 45.504692 + ], + [ + -73.372354, + 45.504449 + ], + [ + -73.372503, + 45.503954 + ], + [ + -73.372655, + 45.503576 + ], + [ + -73.373011, + 45.502875 + ], + [ + -73.373173, + 45.502587 + ], + [ + -73.37323, + 45.502511 + ], + [ + -73.373299, + 45.502439 + ], + [ + -73.373386, + 45.502385 + ], + [ + -73.373485, + 45.50234 + ], + [ + -73.37359, + 45.502313 + ], + [ + -73.373645, + 45.502304 + ], + [ + -73.37369, + 45.5023 + ], + [ + -73.37385, + 45.502305 + ], + [ + -73.373969, + 45.502327 + ], + [ + -73.374235, + 45.502395 + ], + [ + -73.374326, + 45.502409 + ], + [ + -73.374466, + 45.502454 + ], + [ + -73.374786, + 45.50253 + ], + [ + -73.375092, + 45.502612 + ], + [ + -73.375264, + 45.502648 + ], + [ + -73.375427, + 45.502684 + ], + [ + -73.375574, + 45.502747 + ], + [ + -73.376319, + 45.503059 + ], + [ + -73.376016, + 45.503247 + ], + [ + -73.375972, + 45.503274 + ], + [ + -73.37579, + 45.503415 + ], + [ + -73.375709, + 45.503477 + ], + [ + -73.375698, + 45.503485 + ], + [ + -73.375447, + 45.503715 + ], + [ + -73.375293, + 45.503854 + ], + [ + -73.37517, + 45.50398 + ], + [ + -73.374998, + 45.504213 + ], + [ + -73.374854, + 45.504429 + ], + [ + -73.374722, + 45.5046 + ], + [ + -73.374697, + 45.504635 + ], + [ + -73.374625, + 45.504735 + ], + [ + -73.374598, + 45.504793 + ], + [ + -73.374583, + 45.504843 + ], + [ + -73.374565, + 45.504919 + ], + [ + -73.374581, + 45.50514 + ], + [ + -73.37462, + 45.505338 + ], + [ + -73.374746, + 45.505563 + ], + [ + -73.374844, + 45.505788 + ], + [ + -73.374845, + 45.50579 + ], + [ + -73.37485, + 45.505798 + ], + [ + -73.374951, + 45.505973 + ], + [ + -73.375061, + 45.506067 + ], + [ + -73.375295, + 45.506238 + ], + [ + -73.375424, + 45.506333 + ], + [ + -73.375748, + 45.506597 + ], + [ + -73.375784, + 45.506626 + ], + [ + -73.375859, + 45.506698 + ], + [ + -73.375911, + 45.506761 + ], + [ + -73.375985, + 45.506896 + ], + [ + -73.376046, + 45.507022 + ], + [ + -73.376084, + 45.507108 + ], + [ + -73.376268, + 45.507459 + ], + [ + -73.376298, + 45.507513 + ], + [ + -73.376345, + 45.507576 + ], + [ + -73.3764, + 45.507639 + ], + [ + -73.376512, + 45.507729 + ], + [ + -73.376632, + 45.507801 + ], + [ + -73.376837, + 45.507891 + ], + [ + -73.376868, + 45.507902 + ], + [ + -73.376914, + 45.507917 + ], + [ + -73.377114, + 45.507982 + ], + [ + -73.377442, + 45.508081 + ], + [ + -73.377571, + 45.508108 + ], + [ + -73.377699, + 45.508135 + ], + [ + -73.377779, + 45.508144 + ], + [ + -73.377878, + 45.50815 + ], + [ + -73.377933, + 45.508153 + ], + [ + -73.378119, + 45.508163 + ], + [ + -73.378452, + 45.508145 + ], + [ + -73.378562, + 45.50814 + ], + [ + -73.378912, + 45.508125 + ], + [ + -73.379147, + 45.508114 + ], + [ + -73.3793, + 45.508105 + ], + [ + -73.379404, + 45.508091 + ], + [ + -73.379526, + 45.508074 + ], + [ + -73.379622, + 45.508047 + ], + [ + -73.379724, + 45.508025 + ], + [ + -73.379863, + 45.507975 + ], + [ + -73.380059, + 45.50789 + ], + [ + -73.380145, + 45.507842 + ], + [ + -73.380179, + 45.507823 + ], + [ + -73.380268, + 45.507759 + ], + [ + -73.380399, + 45.507666 + ], + [ + -73.380421, + 45.507648 + ], + [ + -73.380503, + 45.507585 + ], + [ + -73.380626, + 45.507481 + ], + [ + -73.38128, + 45.507806 + ], + [ + -73.380619, + 45.508917 + ], + [ + -73.380471, + 45.509177 + ], + [ + -73.380338, + 45.509474 + ], + [ + -73.380312, + 45.5096 + ], + [ + -73.380265, + 45.50983 + ], + [ + -73.380243, + 45.510001 + ], + [ + -73.380243, + 45.510041 + ], + [ + -73.380292, + 45.510284 + ], + [ + -73.380332, + 45.510388 + ], + [ + -73.380377, + 45.510478 + ], + [ + -73.380512, + 45.51068 + ], + [ + -73.3806, + 45.510779 + ], + [ + -73.380706, + 45.510874 + ], + [ + -73.380825, + 45.510964 + ], + [ + -73.380962, + 45.511045 + ], + [ + -73.381113, + 45.511117 + ], + [ + -73.381279, + 45.511176 + ], + [ + -73.381458, + 45.511217 + ], + [ + -73.381649, + 45.511244 + ], + [ + -73.38181, + 45.511255 + ], + [ + -73.38185, + 45.511257 + ], + [ + -73.382059, + 45.511258 + ], + [ + -73.382278, + 45.511249 + ], + [ + -73.383255, + 45.51116 + ], + [ + -73.386918, + 45.510876 + ], + [ + -73.388705, + 45.510769 + ], + [ + -73.390511, + 45.510672 + ], + [ + -73.391744, + 45.51057 + ], + [ + -73.392277, + 45.510503 + ], + [ + -73.393587, + 45.510437 + ], + [ + -73.396575, + 45.510246 + ], + [ + -73.399702, + 45.510041 + ], + [ + -73.416479, + 45.508939 + ], + [ + -73.418591, + 45.508796 + ], + [ + -73.422517, + 45.50853 + ], + [ + -73.424264, + 45.508396 + ], + [ + -73.424552, + 45.508369 + ], + [ + -73.425839, + 45.508343 + ], + [ + -73.427203, + 45.508276 + ], + [ + -73.430462, + 45.508094 + ], + [ + -73.431367, + 45.508031 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431709, + 45.508009 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.432209, + 45.507974 + ], + [ + -73.432744, + 45.507937 + ], + [ + -73.435178, + 45.507773 + ], + [ + -73.437575, + 45.507662 + ], + [ + -73.438988, + 45.507572 + ], + [ + -73.440344, + 45.507425 + ], + [ + -73.445881, + 45.507063 + ], + [ + -73.452257, + 45.506638 + ], + [ + -73.452565, + 45.506616 + ], + [ + -73.453776, + 45.50654 + ], + [ + -73.455247, + 45.506419 + ], + [ + -73.456957, + 45.50624 + ], + [ + -73.460279, + 45.505832 + ], + [ + -73.460374, + 45.505823 + ], + [ + -73.461182, + 45.505728 + ], + [ + -73.462162, + 45.505642 + ], + [ + -73.463671, + 45.505509 + ], + [ + -73.465111, + 45.505401 + ], + [ + -73.467755, + 45.505222 + ], + [ + -73.468692, + 45.505168 + ], + [ + -73.47019, + 45.505064 + ], + [ + -73.470746, + 45.505025 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.482932, + 45.504143 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492934, + 45.510116 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494204, + 45.510801 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497942, + 45.512059 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.500628, + 45.512866 + ], + [ + -73.500836, + 45.512931 + ], + [ + -73.502033, + 45.513303 + ], + [ + -73.505335, + 45.514355 + ], + [ + -73.506642, + 45.51477 + ], + [ + -73.507293, + 45.514976 + ], + [ + -73.50757, + 45.515057 + ], + [ + -73.508383, + 45.515323 + ], + [ + -73.509009, + 45.515606 + ], + [ + -73.509231, + 45.515687 + ], + [ + -73.509741, + 45.515862 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513711, + 45.518781 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518894, + 45.520629 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520267, + 45.521193 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520363, + 45.524395 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520729, + 45.524095 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.520811, + 45.523427 + ] + ] + }, + "id": 199, + "properties": { + "id": "1a58c239-081a-4f9c-91ab-94af30f92a7a", + "data": { + "gtfs": { + "shape_id": "98_1_A" + }, + "segments": [ + { + "distanceMeters": 158, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 480, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 344, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 440, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 389, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 391, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 3470, + "travelTimeSeconds": 364 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 454, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 4430, + "travelTimeSeconds": 371 + }, + { + "distanceMeters": 5274, + "travelTimeSeconds": 300 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 1940, + "travelTimeSeconds": 323 + }, + { + "distanceMeters": 845, + "travelTimeSeconds": 142 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 216, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 21851, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11778.417279524518, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 10.12, + "travelTimeWithoutDwellTimesSeconds": 2160, + "operatingTimeWithLayoverTimeSeconds": 2376, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2160, + "operatingSpeedWithLayoverMetersPerSecond": 9.2, + "averageSpeedWithoutDwellTimesMetersPerSecond": 10.12 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "525aaea9-a48f-4335-b4bb-4f671d4d9a31", + "4d10c33d-a086-4248-8e97-1236a7069436", + "7d066d0e-6085-4155-a554-6e1116a797c6", + "24a322e0-f890-4138-9c97-136b5a2cdd60", + "dca87cea-ccf9-454c-a18b-6489a3e1ab68", + "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", + "36c85e4a-3286-45d4-878d-41eda74eb078", + "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", + "9b7439c4-a8e6-4ce8-8c94-dcac4e29b500", + "d58c68b9-bb4a-45d1-90ea-403c9b830625", + "15f81e09-81b0-4df0-aa79-d4603e691ccd", + "6cc3ca76-cd11-4240-ac37-33142410aacb", + "f9418d0c-9ee7-44b5-a2f0-bb6a76a0df3e", + "4f54f52f-b62c-4341-a4d5-24c02344f25b", + "d3614ff1-08ff-435f-b8f7-1a76f68a0071", + "b3d09d08-d2e3-4276-8b7a-d3d07d979e6c", + "635ebffd-b274-4e79-9618-a0203ceaa811", + "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", + "01e0bcb2-ac63-4c88-b110-c273905a1d5c", + "2c8a6d09-2eb8-47e3-86bb-ac6501351f3b", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "acabc807-b0f5-4579-b183-cef0484a7cc2" + ], + "stops": [], + "line_id": "c735086b-1ce5-43d2-9786-14a2f474d602", + "segments": [ + 0, + 3, + 5, + 9, + 18, + 25, + 28, + 32, + 41, + 49, + 62, + 83, + 90, + 94, + 99, + 122, + 131, + 204, + 223, + 254, + 267, + 311, + 371, + 384, + 425 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 199, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.520811, + 45.523427 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522259, + 45.521632 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519255, + 45.520728 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514998, + 45.519328 + ], + [ + -73.514793, + 45.519263 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509849, + 45.51557 + ], + [ + -73.509164, + 45.515381 + ], + [ + -73.508444, + 45.51521 + ], + [ + -73.506204, + 45.514496 + ], + [ + -73.503449, + 45.513618 + ], + [ + -73.500803, + 45.512776 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498214, + 45.511891 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.494315, + 45.510461 + ], + [ + -73.494196, + 45.510403 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488913, + 45.504255 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488355, + 45.503066 + ], + [ + -73.4883, + 45.502913 + ], + [ + -73.488219, + 45.502531 + ], + [ + -73.488223, + 45.502405 + ], + [ + -73.488245, + 45.502293 + ], + [ + -73.488296, + 45.502185 + ], + [ + -73.488375, + 45.502086 + ], + [ + -73.488484, + 45.502 + ], + [ + -73.488505, + 45.501989 + ], + [ + -73.488609, + 45.501937 + ], + [ + -73.48874, + 45.501892 + ], + [ + -73.48888, + 45.501865 + ], + [ + -73.489028, + 45.501856 + ], + [ + -73.489181, + 45.501865 + ], + [ + -73.489324, + 45.501892 + ], + [ + -73.489461, + 45.501933 + ], + [ + -73.489585, + 45.501991 + ], + [ + -73.489692, + 45.502068 + ], + [ + -73.489786, + 45.502153 + ], + [ + -73.489942, + 45.502342 + ], + [ + -73.490006, + 45.50245 + ], + [ + -73.490054, + 45.502558 + ], + [ + -73.490086, + 45.502666 + ], + [ + -73.490092, + 45.502779 + ], + [ + -73.490064, + 45.502891 + ], + [ + -73.490004, + 45.502995 + ], + [ + -73.489917, + 45.503094 + ], + [ + -73.489808, + 45.503175 + ], + [ + -73.489675, + 45.503242 + ], + [ + -73.489524, + 45.503287 + ], + [ + -73.489359, + 45.50331 + ], + [ + -73.489186, + 45.503323 + ], + [ + -73.488817, + 45.503318 + ], + [ + -73.487515, + 45.503242 + ], + [ + -73.486872, + 45.503273 + ], + [ + -73.486502, + 45.503323 + ], + [ + -73.486146, + 45.503381 + ], + [ + -73.484224, + 45.503808 + ], + [ + -73.483407, + 45.503957 + ], + [ + -73.482922, + 45.504029 + ], + [ + -73.482166, + 45.504114 + ], + [ + -73.481092, + 45.504204 + ], + [ + -73.4802, + 45.504262 + ], + [ + -73.47719, + 45.50446 + ], + [ + -73.470642, + 45.504895 + ], + [ + -73.464792, + 45.505284 + ], + [ + -73.464234, + 45.505325 + ], + [ + -73.463301, + 45.505392 + ], + [ + -73.461784, + 45.505526 + ], + [ + -73.460686, + 45.505647 + ], + [ + -73.45799, + 45.505984 + ], + [ + -73.456776, + 45.506127 + ], + [ + -73.455209, + 45.506284 + ], + [ + -73.454382, + 45.506356 + ], + [ + -73.452547, + 45.506481 + ], + [ + -73.450186, + 45.506642 + ], + [ + -73.439577, + 45.507343 + ], + [ + -73.439057, + 45.507379 + ], + [ + -73.438071, + 45.507414 + ], + [ + -73.437444, + 45.507428 + ], + [ + -73.436265, + 45.507427 + ], + [ + -73.435664, + 45.507418 + ], + [ + -73.43478, + 45.507413 + ], + [ + -73.433757, + 45.507439 + ], + [ + -73.432476, + 45.507501 + ], + [ + -73.432462, + 45.507502 + ], + [ + -73.430857, + 45.507609 + ], + [ + -73.43012, + 45.507658 + ], + [ + -73.43011, + 45.507658 + ], + [ + -73.429942, + 45.507669 + ], + [ + -73.429316, + 45.507711 + ], + [ + -73.429246, + 45.50772 + ], + [ + -73.427401, + 45.507872 + ], + [ + -73.425651, + 45.508046 + ], + [ + -73.425331, + 45.508082 + ], + [ + -73.423669, + 45.508256 + ], + [ + -73.421559, + 45.508471 + ], + [ + -73.420178, + 45.508555 + ], + [ + -73.418703, + 45.508644 + ], + [ + -73.414755, + 45.508904 + ], + [ + -73.40603, + 45.509467 + ], + [ + -73.399904, + 45.509875 + ], + [ + -73.3937, + 45.510275 + ], + [ + -73.39233, + 45.510359 + ], + [ + -73.390441, + 45.510452 + ], + [ + -73.389445, + 45.510505 + ], + [ + -73.387299, + 45.510633 + ], + [ + -73.381768, + 45.510924 + ], + [ + -73.37903, + 45.511061 + ], + [ + -73.378353, + 45.511087 + ], + [ + -73.377677, + 45.511105 + ], + [ + -73.376999, + 45.511104 + ], + [ + -73.375985, + 45.511071 + ], + [ + -73.375316, + 45.51103 + ], + [ + -73.373596, + 45.510947 + ], + [ + -73.372769, + 45.510937 + ], + [ + -73.371909, + 45.510936 + ], + [ + -73.370442, + 45.510912 + ], + [ + -73.370325, + 45.510908 + ], + [ + -73.370204, + 45.510894 + ], + [ + -73.369964, + 45.51084 + ], + [ + -73.369712, + 45.510763 + ], + [ + -73.369593, + 45.510709 + ], + [ + -73.369485, + 45.510641 + ], + [ + -73.369395, + 45.510569 + ], + [ + -73.36932, + 45.510488 + ], + [ + -73.369264, + 45.510398 + ], + [ + -73.369225, + 45.510303 + ], + [ + -73.369205, + 45.510204 + ], + [ + -73.369204, + 45.510101 + ], + [ + -73.369227, + 45.509997 + ], + [ + -73.369273, + 45.509894 + ], + [ + -73.36934, + 45.5098 + ], + [ + -73.369426, + 45.50971 + ], + [ + -73.369529, + 45.509633 + ], + [ + -73.369647, + 45.509566 + ], + [ + -73.369765, + 45.509521 + ], + [ + -73.369925, + 45.509481 + ], + [ + -73.370073, + 45.509463 + ], + [ + -73.37023, + 45.509459 + ], + [ + -73.370386, + 45.509468 + ], + [ + -73.370537, + 45.509491 + ], + [ + -73.370683, + 45.509531 + ], + [ + -73.370819, + 45.50959 + ], + [ + -73.370941, + 45.509662 + ], + [ + -73.371049, + 45.509748 + ], + [ + -73.371141, + 45.509842 + ], + [ + -73.371221, + 45.50995 + ], + [ + -73.371287, + 45.510058 + ], + [ + -73.371339, + 45.510175 + ], + [ + -73.371397, + 45.510418 + ], + [ + -73.371484, + 45.511363 + ], + [ + -73.371519, + 45.512673 + ], + [ + -73.371557, + 45.513397 + ], + [ + -73.371604, + 45.513956 + ], + [ + -73.371635, + 45.514319 + ], + [ + -73.371686, + 45.515089 + ], + [ + -73.371789, + 45.516871 + ], + [ + -73.371852, + 45.519003 + ], + [ + -73.371811, + 45.520164 + ], + [ + -73.371765, + 45.521019 + ], + [ + -73.371735, + 45.521284 + ], + [ + -73.371686, + 45.521563 + ], + [ + -73.371628, + 45.521757 + ], + [ + -73.371623, + 45.52177 + ], + [ + -73.371546, + 45.52195 + ], + [ + -73.371432, + 45.522139 + ], + [ + -73.371362, + 45.522224 + ], + [ + -73.371283, + 45.522305 + ], + [ + -73.371195, + 45.522377 + ], + [ + -73.371098, + 45.522444 + ], + [ + -73.370993, + 45.522503 + ], + [ + -73.370882, + 45.522548 + ], + [ + -73.370762, + 45.522583 + ], + [ + -73.370636, + 45.522601 + ], + [ + -73.370504, + 45.52261 + ], + [ + -73.36938, + 45.522631 + ], + [ + -73.369289, + 45.522629 + ], + [ + -73.369241, + 45.520998 + ], + [ + -73.369225, + 45.520454 + ], + [ + -73.36922, + 45.52035 + ], + [ + -73.368621, + 45.520354 + ], + [ + -73.368553, + 45.520357 + ], + [ + -73.368509, + 45.520359 + ], + [ + -73.368191, + 45.520371 + ], + [ + -73.367934, + 45.520394 + ], + [ + -73.367044, + 45.52047 + ], + [ + -73.366798, + 45.520491 + ], + [ + -73.365403, + 45.520602 + ], + [ + -73.362854, + 45.520815 + ], + [ + -73.361446, + 45.52094 + ], + [ + -73.361257, + 45.520957 + ], + [ + -73.361088, + 45.519832 + ], + [ + -73.361078, + 45.519769 + ], + [ + -73.361044, + 45.519729 + ], + [ + -73.360928, + 45.519697 + ], + [ + -73.36065, + 45.51971 + ], + [ + -73.360243, + 45.519741 + ], + [ + -73.359782, + 45.519783 + ], + [ + -73.358764, + 45.519875 + ], + [ + -73.358471, + 45.519901 + ], + [ + -73.358096, + 45.519923 + ], + [ + -73.358007, + 45.519923 + ], + [ + -73.357922, + 45.519918 + ], + [ + -73.357731, + 45.519864 + ], + [ + -73.357562, + 45.519805 + ], + [ + -73.357425, + 45.519702 + ], + [ + -73.356617, + 45.519058 + ], + [ + -73.356509, + 45.518972 + ], + [ + -73.356103, + 45.518661 + ], + [ + -73.355851, + 45.518453 + ], + [ + -73.3557, + 45.518336 + ], + [ + -73.35554, + 45.51821 + ], + [ + -73.355464, + 45.518151 + ], + [ + -73.355224, + 45.517998 + ], + [ + -73.355058, + 45.517908 + ], + [ + -73.354896, + 45.517822 + ], + [ + -73.354639, + 45.5177 + ], + [ + -73.354634, + 45.517699 + ], + [ + -73.354374, + 45.517597 + ], + [ + -73.35413, + 45.51752 + ], + [ + -73.353966, + 45.517484 + ], + [ + -73.353964, + 45.517484 + ], + [ + -73.353847, + 45.517452 + ], + [ + -73.353913, + 45.517241 + ], + [ + -73.353961, + 45.517124 + ], + [ + -73.354012, + 45.517002 + ], + [ + -73.354038, + 45.516939 + ], + [ + -73.354065, + 45.516876 + ], + [ + -73.354098, + 45.516813 + ], + [ + -73.354129, + 45.516755 + ], + [ + -73.35418, + 45.516665 + ], + [ + -73.354282, + 45.516521 + ], + [ + -73.354404, + 45.516368 + ], + [ + -73.354562, + 45.51622 + ], + [ + -73.354639, + 45.516144 + ], + [ + -73.354763, + 45.516045 + ], + [ + -73.354876, + 45.515964 + ], + [ + -73.355155, + 45.515784 + ], + [ + -73.355267, + 45.515713 + ], + [ + -73.355353, + 45.515673 + ], + [ + -73.355435, + 45.515636 + ], + [ + -73.355696, + 45.515527 + ], + [ + -73.355723, + 45.515515 + ], + [ + -73.35603, + 45.515426 + ], + [ + -73.356223, + 45.515381 + ], + [ + -73.356733, + 45.515323 + ], + [ + -73.357346, + 45.515261 + ], + [ + -73.35791, + 45.515226 + ], + [ + -73.358086, + 45.515214 + ], + [ + -73.358796, + 45.515168 + ], + [ + -73.358869, + 45.515164 + ], + [ + -73.361292, + 45.515014 + ], + [ + -73.362221, + 45.514953 + ], + [ + -73.364936, + 45.514775 + ], + [ + -73.365804, + 45.514718 + ], + [ + -73.366158, + 45.514696 + ], + [ + -73.366978, + 45.514647 + ], + [ + -73.367121, + 45.514638 + ], + [ + -73.367184, + 45.514638 + ], + [ + -73.367413, + 45.514639 + ], + [ + -73.36767, + 45.514675 + ], + [ + -73.367705, + 45.514684 + ], + [ + -73.367986, + 45.514774 + ], + [ + -73.368285, + 45.514919 + ], + [ + -73.368381, + 45.514986 + ], + [ + -73.368487, + 45.515058 + ], + [ + -73.368593, + 45.51513 + ], + [ + -73.368707, + 45.515243 + ], + [ + -73.368826, + 45.515365 + ], + [ + -73.368961, + 45.515549 + ], + [ + -73.369002, + 45.515653 + ], + [ + -73.36905, + 45.515765 + ], + [ + -73.369062, + 45.515873 + ], + [ + -73.369087, + 45.516022 + ], + [ + -73.369094, + 45.516179 + ], + [ + -73.369101, + 45.51639 + ], + [ + -73.369101, + 45.5164 + ], + [ + -73.36911, + 45.516625 + ], + [ + -73.36912, + 45.516899 + ], + [ + -73.369128, + 45.517111 + ], + [ + -73.369131, + 45.517363 + ], + [ + -73.369131, + 45.517412 + ], + [ + -73.369133, + 45.51752 + ], + [ + -73.369139, + 45.517651 + ], + [ + -73.369147, + 45.517839 + ], + [ + -73.369153, + 45.518145 + ], + [ + -73.369156, + 45.518379 + ], + [ + -73.369164, + 45.518717 + ], + [ + -73.369173, + 45.519041 + ], + [ + -73.369183, + 45.519383 + ], + [ + -73.369188, + 45.51962 + ], + [ + -73.369192, + 45.519761 + ], + [ + -73.369205, + 45.519905 + ], + [ + -73.369207, + 45.520049 + ], + [ + -73.36922, + 45.52035 + ], + [ + -73.369225, + 45.520454 + ], + [ + -73.369241, + 45.520998 + ], + [ + -73.369289, + 45.522629 + ], + [ + -73.369285, + 45.522762 + ], + [ + -73.369286, + 45.52304 + ], + [ + -73.369289, + 45.523693 + ], + [ + -73.36923, + 45.523923 + ], + [ + -73.36921, + 45.523999 + ], + [ + -73.369028, + 45.5243 + ], + [ + -73.368834, + 45.524507 + ], + [ + -73.368444, + 45.524772 + ], + [ + -73.367696, + 45.525244 + ], + [ + -73.367366, + 45.52545 + ], + [ + -73.36762, + 45.525662 + ], + [ + -73.368673, + 45.526476 + ], + [ + -73.369386, + 45.527027 + ], + [ + -73.369582, + 45.527324 + ], + [ + -73.369684, + 45.527581 + ], + [ + -73.369695, + 45.527688 + ], + [ + -73.369719, + 45.527905 + ], + [ + -73.369744, + 45.529772 + ], + [ + -73.369745, + 45.529806 + ], + [ + -73.369749, + 45.529908 + ], + [ + -73.369792, + 45.531176 + ], + [ + -73.369792, + 45.531189 + ] + ] + }, + "id": 200, + "properties": { + "id": "b83de441-cf58-42ea-896c-903a035aac77", + "data": { + "gtfs": { + "shape_id": "98_2_R" + }, + "segments": [ + { + "distanceMeters": 630, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 1600, + "travelTimeSeconds": 163 + }, + { + "distanceMeters": 344, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 6033, + "travelTimeSeconds": 300 + }, + { + "distanceMeters": 6883, + "travelTimeSeconds": 360 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 440, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 389, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 391, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 97 + }, + { + "distanceMeters": 480, + "travelTimeSeconds": 122 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 40 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 20450, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11807.260076001989, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 13.11, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 11.75, + "averageSpeedWithoutDwellTimesMetersPerSecond": 13.11 + }, + "mode": "bus", + "name": "Parent", + "color": "#A32638", + "nodes": [ + "acabc807-b0f5-4579-b183-cef0484a7cc2", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "688a3f67-a176-441e-a399-c92a55de9c74", + "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", + "4aea3348-4995-4fc9-b06f-6698460c1f1d", + "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", + "36c85e4a-3286-45d4-878d-41eda74eb078", + "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", + "9b7439c4-a8e6-4ce8-8c94-dcac4e29b500", + "d58c68b9-bb4a-45d1-90ea-403c9b830625", + "15f81e09-81b0-4df0-aa79-d4603e691ccd", + "6cc3ca76-cd11-4240-ac37-33142410aacb", + "f9418d0c-9ee7-44b5-a2f0-bb6a76a0df3e", + "4f54f52f-b62c-4341-a4d5-24c02344f25b", + "d3614ff1-08ff-435f-b8f7-1a76f68a0071", + "b3d09d08-d2e3-4276-8b7a-d3d07d979e6c", + "635ebffd-b274-4e79-9618-a0203ceaa811", + "dca87cea-ccf9-454c-a18b-6489a3e1ab68", + "24a322e0-f890-4138-9c97-136b5a2cdd60", + "7d066d0e-6085-4155-a554-6e1116a797c6", + "4d10c33d-a086-4248-8e97-1236a7069436", + "1cb5ae0c-b01a-4888-87b4-f35cbbb956cf" + ], + "stops": [], + "line_id": "c735086b-1ce5-43d2-9786-14a2f474d602", + "segments": [ + 0, + 39, + 46, + 71, + 82, + 173, + 267, + 270, + 274, + 283, + 291, + 305, + 326, + 333, + 337, + 343, + 366, + 375, + 384, + 394, + 398, + 401 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 200, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.369792, + 45.531176 + ], + [ + -73.369749, + 45.529908 + ], + [ + -73.369744, + 45.529772 + ], + [ + -73.369744, + 45.529758 + ], + [ + -73.369719, + 45.527905 + ], + [ + -73.369697, + 45.527703 + ], + [ + -73.369684, + 45.527581 + ], + [ + -73.369582, + 45.527324 + ], + [ + -73.369386, + 45.527027 + ], + [ + -73.368627, + 45.52644 + ], + [ + -73.36762, + 45.525662 + ], + [ + -73.367366, + 45.52545 + ], + [ + -73.367696, + 45.525244 + ], + [ + -73.368444, + 45.524772 + ], + [ + -73.368834, + 45.524507 + ], + [ + -73.369028, + 45.5243 + ], + [ + -73.36921, + 45.523999 + ], + [ + -73.369289, + 45.523693 + ], + [ + -73.369286, + 45.522992 + ], + [ + -73.369285, + 45.522762 + ], + [ + -73.369289, + 45.522629 + ], + [ + -73.369241, + 45.520998 + ], + [ + -73.369225, + 45.520454 + ], + [ + -73.36922, + 45.52035 + ], + [ + -73.368621, + 45.520354 + ], + [ + -73.368584, + 45.520355 + ], + [ + -73.368553, + 45.520357 + ], + [ + -73.368191, + 45.520371 + ], + [ + -73.367119, + 45.520464 + ], + [ + -73.366798, + 45.520491 + ], + [ + -73.365403, + 45.520602 + ], + [ + -73.362854, + 45.520815 + ], + [ + -73.361522, + 45.520934 + ], + [ + -73.361257, + 45.520957 + ], + [ + -73.361088, + 45.519832 + ], + [ + -73.361078, + 45.519769 + ], + [ + -73.361044, + 45.519729 + ], + [ + -73.360928, + 45.519697 + ], + [ + -73.36065, + 45.51971 + ], + [ + -73.360243, + 45.519741 + ], + [ + -73.359782, + 45.519783 + ], + [ + -73.35884, + 45.519868 + ], + [ + -73.358471, + 45.519901 + ], + [ + -73.358096, + 45.519923 + ], + [ + -73.358007, + 45.519923 + ], + [ + -73.357922, + 45.519918 + ], + [ + -73.357731, + 45.519864 + ], + [ + -73.357562, + 45.519805 + ], + [ + -73.357425, + 45.519702 + ], + [ + -73.356668, + 45.519098 + ], + [ + -73.356509, + 45.518972 + ], + [ + -73.356103, + 45.518661 + ], + [ + -73.355851, + 45.518453 + ], + [ + -73.3557, + 45.518336 + ], + [ + -73.35554, + 45.51821 + ], + [ + -73.355464, + 45.518151 + ], + [ + -73.355224, + 45.517998 + ], + [ + -73.355058, + 45.517908 + ], + [ + -73.354896, + 45.517822 + ], + [ + -73.354639, + 45.5177 + ], + [ + -73.354374, + 45.517597 + ], + [ + -73.35413, + 45.51752 + ], + [ + -73.35404, + 45.5175 + ], + [ + -73.353964, + 45.517484 + ], + [ + -73.353847, + 45.517452 + ], + [ + -73.353913, + 45.517241 + ], + [ + -73.353961, + 45.517124 + ], + [ + -73.354012, + 45.517002 + ], + [ + -73.354038, + 45.516939 + ], + [ + -73.354065, + 45.516876 + ], + [ + -73.354098, + 45.516813 + ], + [ + -73.354129, + 45.516755 + ], + [ + -73.35418, + 45.516665 + ], + [ + -73.354282, + 45.516521 + ], + [ + -73.354404, + 45.516368 + ], + [ + -73.354562, + 45.51622 + ], + [ + -73.354639, + 45.516144 + ], + [ + -73.354763, + 45.516045 + ], + [ + -73.354876, + 45.515964 + ], + [ + -73.355155, + 45.515784 + ], + [ + -73.355267, + 45.515713 + ], + [ + -73.355353, + 45.515673 + ], + [ + -73.355435, + 45.515636 + ], + [ + -73.355629, + 45.515555 + ], + [ + -73.355723, + 45.515515 + ], + [ + -73.35603, + 45.515426 + ], + [ + -73.356223, + 45.515381 + ], + [ + -73.356733, + 45.515323 + ], + [ + -73.357346, + 45.515261 + ], + [ + -73.35791, + 45.515226 + ], + [ + -73.358009, + 45.515219 + ], + [ + -73.358869, + 45.515164 + ], + [ + -73.361292, + 45.515014 + ], + [ + -73.36156, + 45.514996 + ], + [ + -73.362143, + 45.514958 + ], + [ + -73.364936, + 45.514775 + ], + [ + -73.365804, + 45.514718 + ], + [ + -73.366158, + 45.514696 + ], + [ + -73.366978, + 45.514647 + ], + [ + -73.367106, + 45.514639 + ], + [ + -73.367121, + 45.514638 + ], + [ + -73.367413, + 45.514639 + ], + [ + -73.36767, + 45.514675 + ], + [ + -73.367705, + 45.514684 + ], + [ + -73.367986, + 45.514774 + ], + [ + -73.368285, + 45.514919 + ], + [ + -73.368381, + 45.514986 + ], + [ + -73.368487, + 45.515058 + ], + [ + -73.368593, + 45.51513 + ], + [ + -73.368707, + 45.515243 + ], + [ + -73.368826, + 45.515365 + ], + [ + -73.368961, + 45.515549 + ], + [ + -73.369002, + 45.515653 + ], + [ + -73.36905, + 45.515765 + ], + [ + -73.369062, + 45.515873 + ], + [ + -73.369087, + 45.516022 + ], + [ + -73.369094, + 45.516179 + ], + [ + -73.369101, + 45.5164 + ], + [ + -73.36911, + 45.516625 + ], + [ + -73.36912, + 45.516899 + ], + [ + -73.369128, + 45.517111 + ], + [ + -73.369131, + 45.517357 + ], + [ + -73.369131, + 45.517363 + ], + [ + -73.369133, + 45.51752 + ], + [ + -73.369139, + 45.517651 + ], + [ + -73.369147, + 45.517839 + ], + [ + -73.369153, + 45.518145 + ], + [ + -73.369156, + 45.518379 + ], + [ + -73.369164, + 45.518717 + ], + [ + -73.369173, + 45.519041 + ], + [ + -73.369183, + 45.519383 + ], + [ + -73.369187, + 45.519565 + ], + [ + -73.369192, + 45.519761 + ], + [ + -73.369205, + 45.519905 + ], + [ + -73.369207, + 45.520049 + ], + [ + -73.36922, + 45.52035 + ], + [ + -73.369225, + 45.520454 + ], + [ + -73.370151, + 45.520446 + ], + [ + -73.371725, + 45.520433 + ], + [ + -73.373172, + 45.520409 + ], + [ + -73.373182, + 45.520409 + ], + [ + -73.374498, + 45.520455 + ], + [ + -73.374645, + 45.520482 + ], + [ + -73.37474, + 45.520527 + ], + [ + -73.374813, + 45.520577 + ], + [ + -73.374873, + 45.52064 + ], + [ + -73.375034, + 45.520996 + ], + [ + -73.375039, + 45.521108 + ], + [ + -73.375076, + 45.522539 + ], + [ + -73.374949, + 45.522539 + ], + [ + -73.373886, + 45.522555 + ], + [ + -73.37374, + 45.522542 + ], + [ + -73.373586, + 45.522519 + ], + [ + -73.373444, + 45.522483 + ], + [ + -73.373311, + 45.522429 + ], + [ + -73.373188, + 45.522357 + ], + [ + -73.373072, + 45.522271 + ], + [ + -73.372969, + 45.522172 + ], + [ + -73.372875, + 45.522059 + ], + [ + -73.372796, + 45.521942 + ], + [ + -73.372726, + 45.521812 + ], + [ + -73.372669, + 45.521677 + ], + [ + -73.372586, + 45.521398 + ], + [ + -73.372564, + 45.521254 + ], + [ + -73.372403, + 45.519427 + ], + [ + -73.372315, + 45.518235 + ], + [ + -73.372258, + 45.516327 + ], + [ + -73.372237, + 45.516003 + ], + [ + -73.372279, + 45.515674 + ], + [ + -73.372302, + 45.515252 + ], + [ + -73.372346, + 45.51419 + ], + [ + -73.372352, + 45.513843 + ], + [ + -73.372333, + 45.513069 + ], + [ + -73.372367, + 45.512701 + ], + [ + -73.372379, + 45.512584 + ], + [ + -73.37241, + 45.512467 + ], + [ + -73.37248, + 45.512318 + ], + [ + -73.372584, + 45.512152 + ], + [ + -73.372728, + 45.512026 + ], + [ + -73.372841, + 45.511954 + ], + [ + -73.372963, + 45.511905 + ], + [ + -73.373166, + 45.511851 + ], + [ + -73.373291, + 45.511833 + ], + [ + -73.37374, + 45.511789 + ], + [ + -73.376336, + 45.511549 + ], + [ + -73.378654, + 45.511371 + ], + [ + -73.380532, + 45.511225 + ], + [ + -73.382346, + 45.511105 + ], + [ + -73.384597, + 45.510914 + ], + [ + -73.392277, + 45.510503 + ], + [ + -73.393587, + 45.510437 + ], + [ + -73.396204, + 45.51027 + ], + [ + -73.396575, + 45.510246 + ], + [ + -73.399702, + 45.510041 + ], + [ + -73.416479, + 45.508939 + ], + [ + -73.418591, + 45.508796 + ], + [ + -73.422517, + 45.50853 + ], + [ + -73.424264, + 45.508396 + ], + [ + -73.424552, + 45.508369 + ], + [ + -73.425839, + 45.508343 + ], + [ + -73.427203, + 45.508276 + ], + [ + -73.430462, + 45.508094 + ], + [ + -73.431379, + 45.50803 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431709, + 45.508009 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.432209, + 45.507974 + ], + [ + -73.432744, + 45.507937 + ], + [ + -73.435178, + 45.507773 + ], + [ + -73.437575, + 45.507662 + ], + [ + -73.438988, + 45.507572 + ], + [ + -73.440344, + 45.507425 + ], + [ + -73.445881, + 45.507063 + ], + [ + -73.452257, + 45.506638 + ], + [ + -73.452565, + 45.506616 + ], + [ + -73.453776, + 45.50654 + ], + [ + -73.455247, + 45.506419 + ], + [ + -73.456957, + 45.50624 + ], + [ + -73.460279, + 45.505832 + ], + [ + -73.460374, + 45.505823 + ], + [ + -73.461182, + 45.505728 + ], + [ + -73.462162, + 45.505642 + ], + [ + -73.463671, + 45.505509 + ], + [ + -73.465111, + 45.505401 + ], + [ + -73.467755, + 45.505222 + ], + [ + -73.468692, + 45.505168 + ], + [ + -73.47019, + 45.505064 + ], + [ + -73.470746, + 45.505025 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.482932, + 45.504143 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492932, + 45.510114 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494204, + 45.510801 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497937, + 45.512057 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.500628, + 45.512866 + ], + [ + -73.500836, + 45.512931 + ], + [ + -73.502033, + 45.513303 + ], + [ + -73.505335, + 45.514355 + ], + [ + -73.506642, + 45.51477 + ], + [ + -73.507293, + 45.514976 + ], + [ + -73.50757, + 45.515057 + ], + [ + -73.508383, + 45.515323 + ], + [ + -73.509009, + 45.515606 + ], + [ + -73.509231, + 45.515687 + ], + [ + -73.509741, + 45.515862 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513711, + 45.518781 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518897, + 45.52063 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520267, + 45.521193 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520363, + 45.524395 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520729, + 45.524095 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.520811, + 45.523427 + ] + ] + }, + "id": 201, + "properties": { + "id": "35fdcc70-f31d-44be-8a89-005ecc221068", + "data": { + "gtfs": { + "shape_id": "98_2_A" + }, + "segments": [ + { + "distanceMeters": 158, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 480, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 344, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 440, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 389, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 391, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 6678, + "travelTimeSeconds": 348 + }, + { + "distanceMeters": 5273, + "travelTimeSeconds": 300 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 1941, + "travelTimeSeconds": 360 + }, + { + "distanceMeters": 845, + "travelTimeSeconds": 157 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 186, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 19746, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11778.417279524518, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 10.62, + "travelTimeWithoutDwellTimesSeconds": 1860, + "operatingTimeWithLayoverTimeSeconds": 2046, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1860, + "operatingSpeedWithLayoverMetersPerSecond": 9.65, + "averageSpeedWithoutDwellTimesMetersPerSecond": 10.62 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "525aaea9-a48f-4335-b4bb-4f671d4d9a31", + "4d10c33d-a086-4248-8e97-1236a7069436", + "7d066d0e-6085-4155-a554-6e1116a797c6", + "24a322e0-f890-4138-9c97-136b5a2cdd60", + "dca87cea-ccf9-454c-a18b-6489a3e1ab68", + "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", + "36c85e4a-3286-45d4-878d-41eda74eb078", + "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", + "9b7439c4-a8e6-4ce8-8c94-dcac4e29b500", + "d58c68b9-bb4a-45d1-90ea-403c9b830625", + "15f81e09-81b0-4df0-aa79-d4603e691ccd", + "6cc3ca76-cd11-4240-ac37-33142410aacb", + "f9418d0c-9ee7-44b5-a2f0-bb6a76a0df3e", + "4f54f52f-b62c-4341-a4d5-24c02344f25b", + "d3614ff1-08ff-435f-b8f7-1a76f68a0071", + "b3d09d08-d2e3-4276-8b7a-d3d07d979e6c", + "635ebffd-b274-4e79-9618-a0203ceaa811", + "2c8a6d09-2eb8-47e3-86bb-ac6501351f3b", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "acabc807-b0f5-4579-b183-cef0484a7cc2" + ], + "stops": [], + "line_id": "c735086b-1ce5-43d2-9786-14a2f474d602", + "segments": [ + 0, + 3, + 5, + 9, + 18, + 25, + 28, + 32, + 41, + 49, + 62, + 83, + 90, + 94, + 99, + 121, + 131, + 202, + 262, + 275, + 316 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 201, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.343677, + 45.513165 + ], + [ + -73.34367, + 45.513061 + ], + [ + -73.343642, + 45.512791 + ], + [ + -73.343612, + 45.512647 + ], + [ + -73.343567, + 45.512534 + ], + [ + -73.343389, + 45.512141 + ], + [ + -73.343354, + 45.512062 + ], + [ + -73.343097, + 45.5121 + ], + [ + -73.343038, + 45.512092 + ], + [ + -73.342894, + 45.512074 + ], + [ + -73.342741, + 45.512043 + ], + [ + -73.342629, + 45.512011 + ], + [ + -73.342349, + 45.511934 + ], + [ + -73.341938, + 45.511803 + ], + [ + -73.341736, + 45.511731 + ], + [ + -73.341412, + 45.51159 + ], + [ + -73.341146, + 45.511475 + ], + [ + -73.341122, + 45.511465 + ], + [ + -73.340633, + 45.511225 + ], + [ + -73.340296, + 45.511027 + ], + [ + -73.340118, + 45.510905 + ], + [ + -73.340029, + 45.510841 + ], + [ + -73.33993, + 45.51077 + ], + [ + -73.339787, + 45.510662 + ], + [ + -73.33958, + 45.5105 + ], + [ + -73.339426, + 45.510378 + ], + [ + -73.33923, + 45.510225 + ], + [ + -73.339011, + 45.510053 + ], + [ + -73.338812, + 45.5099 + ], + [ + -73.338649, + 45.509765 + ], + [ + -73.338438, + 45.509603 + ], + [ + -73.338251, + 45.509472 + ], + [ + -73.338077, + 45.509382 + ], + [ + -73.337875, + 45.5093 + ], + [ + -73.337654, + 45.509233 + ], + [ + -73.337473, + 45.509192 + ], + [ + -73.337253, + 45.509165 + ], + [ + -73.337049, + 45.509155 + ], + [ + -73.336952, + 45.509157 + ], + [ + -73.336939, + 45.509159 + ], + [ + -73.336547, + 45.509188 + ], + [ + -73.336515, + 45.509192 + ], + [ + -73.336225, + 45.509224 + ], + [ + -73.33614, + 45.509238 + ], + [ + -73.336059, + 45.509261 + ], + [ + -73.335984, + 45.509292 + ], + [ + -73.335916, + 45.509331 + ], + [ + -73.335544, + 45.509572 + ], + [ + -73.335336, + 45.509723 + ], + [ + -73.335253, + 45.509783 + ], + [ + -73.33485, + 45.510077 + ], + [ + -73.334454, + 45.510366 + ], + [ + -73.334013, + 45.510683 + ], + [ + -73.333664, + 45.510909 + ], + [ + -73.333081, + 45.511289 + ], + [ + -73.332968, + 45.511363 + ], + [ + -73.332471, + 45.511692 + ], + [ + -73.332065, + 45.51196 + ], + [ + -73.331778, + 45.512149 + ], + [ + -73.331385, + 45.512407 + ], + [ + -73.33106, + 45.512615 + ], + [ + -73.330794, + 45.512786 + ], + [ + -73.330507, + 45.512975 + ], + [ + -73.32972, + 45.513518 + ], + [ + -73.32948, + 45.513693 + ], + [ + -73.329221, + 45.51389 + ], + [ + -73.32877, + 45.514101 + ], + [ + -73.328632, + 45.514161 + ], + [ + -73.328456, + 45.514236 + ], + [ + -73.328284, + 45.514321 + ], + [ + -73.327945, + 45.514388 + ], + [ + -73.32769, + 45.514424 + ], + [ + -73.326299, + 45.514534 + ], + [ + -73.325842, + 45.514565 + ], + [ + -73.325331, + 45.514602 + ], + [ + -73.324882, + 45.514635 + ], + [ + -73.324037, + 45.514697 + ], + [ + -73.323935, + 45.514703 + ], + [ + -73.323824, + 45.514709 + ], + [ + -73.32364, + 45.514723 + ], + [ + -73.322784, + 45.514785 + ], + [ + -73.320491, + 45.514943 + ], + [ + -73.320313, + 45.514954 + ], + [ + -73.320068, + 45.51497 + ], + [ + -73.319813, + 45.514987 + ], + [ + -73.319504, + 45.515014 + ], + [ + -73.31929, + 45.515022 + ], + [ + -73.319076, + 45.51504 + ], + [ + -73.318751, + 45.515062 + ], + [ + -73.318468, + 45.515075 + ], + [ + -73.318303, + 45.515085 + ], + [ + -73.318161, + 45.515093 + ], + [ + -73.317967, + 45.515098 + ], + [ + -73.317909, + 45.5151 + ], + [ + -73.317815, + 45.515109 + ], + [ + -73.317711, + 45.515131 + ], + [ + -73.317676, + 45.515131 + ], + [ + -73.317558, + 45.515133 + ], + [ + -73.317556, + 45.51535 + ], + [ + -73.317556, + 45.515379 + ], + [ + -73.317555, + 45.515401 + ], + [ + -73.317518, + 45.516504 + ], + [ + -73.317461, + 45.516823 + ], + [ + -73.317399, + 45.517358 + ], + [ + -73.31739, + 45.517605 + ], + [ + -73.317378, + 45.517798 + ], + [ + -73.31736, + 45.518111 + ], + [ + -73.317348, + 45.518295 + ], + [ + -73.317339, + 45.518442 + ], + [ + -73.31733, + 45.518584 + ], + [ + -73.317374, + 45.51884 + ], + [ + -73.317442, + 45.519063 + ], + [ + -73.317668, + 45.519485 + ], + [ + -73.317719, + 45.519565 + ], + [ + -73.317762, + 45.519631 + ], + [ + -73.318032, + 45.519996 + ], + [ + -73.318144, + 45.52016 + ], + [ + -73.318342, + 45.520362 + ], + [ + -73.318461, + 45.520393 + ], + [ + -73.318552, + 45.520474 + ], + [ + -73.31864, + 45.520551 + ], + [ + -73.318732, + 45.520632 + ], + [ + -73.318986, + 45.520847 + ], + [ + -73.319781, + 45.521516 + ], + [ + -73.32099, + 45.522525 + ], + [ + -73.321254, + 45.522753 + ], + [ + -73.321325, + 45.522814 + ], + [ + -73.322064, + 45.52344 + ], + [ + -73.322913, + 45.524157 + ], + [ + -73.323443, + 45.524603 + ], + [ + -73.324419, + 45.525429 + ], + [ + -73.324477, + 45.525478 + ], + [ + -73.324515, + 45.525523 + ], + [ + -73.325411, + 45.526298 + ], + [ + -73.325817, + 45.526587 + ], + [ + -73.32645, + 45.527068 + ], + [ + -73.326635, + 45.527209 + ], + [ + -73.327746, + 45.528029 + ], + [ + -73.328049, + 45.528245 + ], + [ + -73.328159, + 45.528322 + ], + [ + -73.328691, + 45.528715 + ], + [ + -73.330009, + 45.529693 + ], + [ + -73.330637, + 45.530164 + ], + [ + -73.330761, + 45.530256 + ], + [ + -73.330825, + 45.530292 + ], + [ + -73.331492, + 45.529797 + ], + [ + -73.331877, + 45.529511 + ], + [ + -73.331967, + 45.529457 + ], + [ + -73.332637, + 45.528977 + ], + [ + -73.332867, + 45.528823 + ], + [ + -73.333063, + 45.528692 + ], + [ + -73.333275, + 45.52855 + ], + [ + -73.333439, + 45.528436 + ], + [ + -73.333788, + 45.528191 + ], + [ + -73.334536, + 45.527695 + ], + [ + -73.334545, + 45.527688 + ], + [ + -73.334622, + 45.527643 + ], + [ + -73.334776, + 45.527545 + ], + [ + -73.335456, + 45.527046 + ], + [ + -73.336098, + 45.526556 + ], + [ + -73.336249, + 45.52644 + ], + [ + -73.336573, + 45.52618 + ], + [ + -73.337228, + 45.52569 + ], + [ + -73.337669, + 45.525344 + ], + [ + -73.338067, + 45.525056 + ], + [ + -73.338368, + 45.524837 + ], + [ + -73.339197, + 45.525405 + ], + [ + -73.339713, + 45.525764 + ], + [ + -73.339812, + 45.525833 + ], + [ + -73.340005, + 45.525968 + ], + [ + -73.340357, + 45.526185 + ], + [ + -73.340568, + 45.526316 + ], + [ + -73.340738, + 45.526442 + ], + [ + -73.341034, + 45.526636 + ], + [ + -73.341462, + 45.526915 + ], + [ + -73.34183, + 45.527172 + ], + [ + -73.341932, + 45.527254 + ], + [ + -73.341994, + 45.527303 + ], + [ + -73.342074, + 45.527389 + ], + [ + -73.341972, + 45.527469 + ], + [ + -73.341594, + 45.527797 + ], + [ + -73.341101, + 45.528233 + ], + [ + -73.341005, + 45.528323 + ], + [ + -73.340913, + 45.528409 + ], + [ + -73.340784, + 45.52853 + ], + [ + -73.340213, + 45.529055 + ], + [ + -73.339969, + 45.529289 + ], + [ + -73.339868, + 45.529375 + ], + [ + -73.339738, + 45.529486 + ], + [ + -73.340316, + 45.529904 + ], + [ + -73.340388, + 45.529956 + ], + [ + -73.340412, + 45.529974 + ], + [ + -73.341348, + 45.530649 + ], + [ + -73.341671, + 45.530886 + ], + [ + -73.34171, + 45.530915 + ], + [ + -73.342548, + 45.531528 + ], + [ + -73.34266, + 45.53161 + ], + [ + -73.342742, + 45.531673 + ], + [ + -73.34576, + 45.533862 + ], + [ + -73.34588, + 45.533949 + ], + [ + -73.346177, + 45.534156 + ], + [ + -73.346943, + 45.534715 + ], + [ + -73.347187, + 45.5349 + ], + [ + -73.347431, + 45.535038 + ], + [ + -73.347547, + 45.535103 + ], + [ + -73.347857, + 45.535261 + ], + [ + -73.348456, + 45.53559 + ], + [ + -73.348803, + 45.535802 + ], + [ + -73.349, + 45.535934 + ], + [ + -73.349066, + 45.535978 + ], + [ + -73.349411, + 45.536275 + ], + [ + -73.349756, + 45.536582 + ], + [ + -73.350274, + 45.537136 + ], + [ + -73.350577, + 45.537487 + ], + [ + -73.350671, + 45.537597 + ], + [ + -73.350743, + 45.537681 + ], + [ + -73.350799, + 45.537748 + ], + [ + -73.351092, + 45.537645 + ], + [ + -73.351237, + 45.53761 + ], + [ + -73.351597, + 45.537552 + ], + [ + -73.351624, + 45.538143 + ], + [ + -73.351634, + 45.538348 + ], + [ + -73.351725, + 45.540234 + ], + [ + -73.351731, + 45.540355 + ], + [ + -73.352072, + 45.540349 + ], + [ + -73.352742, + 45.540338 + ], + [ + -73.3537, + 45.540317 + ], + [ + -73.354369, + 45.540304 + ], + [ + -73.354373, + 45.5403 + ], + [ + -73.354728, + 45.540161 + ], + [ + -73.354784, + 45.540132 + ], + [ + -73.354958, + 45.540044 + ], + [ + -73.355561, + 45.539685 + ], + [ + -73.355856, + 45.539514 + ], + [ + -73.35601, + 45.539397 + ], + [ + -73.356049, + 45.53937 + ], + [ + -73.356087, + 45.539334 + ], + [ + -73.356151, + 45.539281 + ], + [ + -73.35618, + 45.539252 + ], + [ + -73.356215, + 45.539218 + ], + [ + -73.356254, + 45.539173 + ], + [ + -73.356267, + 45.539146 + ], + [ + -73.356318, + 45.539011 + ], + [ + -73.35637, + 45.538876 + ], + [ + -73.356333, + 45.538462 + ], + [ + -73.35632, + 45.5383 + ], + [ + -73.356334, + 45.538084 + ], + [ + -73.356384, + 45.537909 + ], + [ + -73.356385, + 45.537904 + ], + [ + -73.356488, + 45.537706 + ], + [ + -73.356386, + 45.537688 + ], + [ + -73.356194, + 45.537616 + ], + [ + -73.356138, + 45.537582 + ], + [ + -73.356028, + 45.537517 + ], + [ + -73.35581, + 45.537381 + ], + [ + -73.355606, + 45.537228 + ], + [ + -73.354978, + 45.536786 + ], + [ + -73.354672, + 45.536579 + ], + [ + -73.35439, + 45.536363 + ], + [ + -73.354342, + 45.536328 + ], + [ + -73.354237, + 45.536255 + ], + [ + -73.354085, + 45.536133 + ], + [ + -73.353353, + 45.535601 + ], + [ + -73.35292, + 45.535293 + ], + [ + -73.352814, + 45.535218 + ], + [ + -73.352683, + 45.535132 + ], + [ + -73.352431, + 45.534966 + ], + [ + -73.352156, + 45.534794 + ], + [ + -73.351899, + 45.534632 + ], + [ + -73.351631, + 45.534461 + ], + [ + -73.351414, + 45.534325 + ], + [ + -73.351196, + 45.534181 + ], + [ + -73.350966, + 45.53401 + ], + [ + -73.350903, + 45.533966 + ], + [ + -73.350778, + 45.533879 + ], + [ + -73.350008, + 45.533298 + ], + [ + -73.348915, + 45.532502 + ], + [ + -73.348768, + 45.532396 + ], + [ + -73.347297, + 45.5313 + ], + [ + -73.346954, + 45.531044 + ], + [ + -73.345599, + 45.530065 + ], + [ + -73.345369, + 45.529899 + ], + [ + -73.345813, + 45.52961 + ], + [ + -73.346177, + 45.529374 + ], + [ + -73.347158, + 45.528674 + ], + [ + -73.347279, + 45.528588 + ], + [ + -73.348094, + 45.52806 + ], + [ + -73.348499, + 45.527798 + ], + [ + -73.349319, + 45.52725 + ], + [ + -73.350087, + 45.526724 + ], + [ + -73.350285, + 45.52659 + ], + [ + -73.350534, + 45.526433 + ], + [ + -73.350958, + 45.526271 + ], + [ + -73.350985, + 45.526261 + ], + [ + -73.351151, + 45.526199 + ], + [ + -73.351917, + 45.525931 + ], + [ + -73.351851, + 45.525827 + ], + [ + -73.351836, + 45.525786 + ], + [ + -73.351798, + 45.525714 + ], + [ + -73.351721, + 45.525594 + ], + [ + -73.351697, + 45.525557 + ], + [ + -73.3516, + 45.525453 + ], + [ + -73.351587, + 45.525442 + ], + [ + -73.351479, + 45.52535 + ], + [ + -73.351402, + 45.525286 + ], + [ + -73.350822, + 45.524876 + ], + [ + -73.349891, + 45.524214 + ], + [ + -73.349706, + 45.524081 + ], + [ + -73.349594, + 45.524002 + ], + [ + -73.349337, + 45.523831 + ], + [ + -73.348978, + 45.523614 + ], + [ + -73.348701, + 45.523497 + ], + [ + -73.348489, + 45.52342 + ], + [ + -73.348302, + 45.523361 + ], + [ + -73.348012, + 45.523289 + ], + [ + -73.347832, + 45.523257 + ], + [ + -73.347724, + 45.523245 + ], + [ + -73.347705, + 45.523243 + ], + [ + -73.347547, + 45.523225 + ], + [ + -73.346648, + 45.523103 + ], + [ + -73.34649, + 45.52308 + ], + [ + -73.346291, + 45.523053 + ], + [ + -73.346291, + 45.52285 + ], + [ + -73.346292, + 45.522634 + ], + [ + -73.346292, + 45.522585 + ], + [ + -73.346288, + 45.52231 + ], + [ + -73.346287, + 45.522153 + ], + [ + -73.346275, + 45.522009 + ], + [ + -73.346262, + 45.52182 + ], + [ + -73.346237, + 45.521631 + ], + [ + -73.346225, + 45.521478 + ], + [ + -73.346184, + 45.521289 + ], + [ + -73.346149, + 45.521073 + ], + [ + -73.346136, + 45.521001 + ], + [ + -73.346124, + 45.520929 + ], + [ + -73.346124, + 45.520857 + ], + [ + -73.346124, + 45.520785 + ], + [ + -73.346137, + 45.520677 + ], + [ + -73.346163, + 45.520569 + ], + [ + -73.346174, + 45.520519 + ], + [ + -73.346222, + 45.520303 + ], + [ + -73.346306, + 45.519804 + ], + [ + -73.346397, + 45.519174 + ], + [ + -73.346424, + 45.518967 + ], + [ + -73.346438, + 45.518725 + ], + [ + -73.34645, + 45.518527 + ], + [ + -73.345381, + 45.518517 + ], + [ + -73.344748, + 45.518511 + ], + [ + -73.344537, + 45.51843 + ], + [ + -73.34438, + 45.518344 + ], + [ + -73.344264, + 45.518227 + ], + [ + -73.344137, + 45.518006 + ], + [ + -73.344045, + 45.516998 + ], + [ + -73.344008, + 45.516632 + ], + [ + -73.343805, + 45.514586 + ], + [ + -73.343782, + 45.514392 + ], + [ + -73.343763, + 45.514238 + ], + [ + -73.343701, + 45.513718 + ], + [ + -73.343799, + 45.513709 + ], + [ + -73.357647, + 45.512814 + ], + [ + -73.358491, + 45.512756 + ], + [ + -73.359423, + 45.512694 + ], + [ + -73.359555, + 45.512681 + ], + [ + -73.360882, + 45.512602 + ], + [ + -73.36168, + 45.512531 + ], + [ + -73.362369, + 45.512441 + ], + [ + -73.363202, + 45.512325 + ], + [ + -73.364624, + 45.512098 + ], + [ + -73.366158, + 45.511879 + ], + [ + -73.367686, + 45.511615 + ], + [ + -73.367934, + 45.51158 + ], + [ + -73.368481, + 45.511535 + ], + [ + -73.368699, + 45.511527 + ], + [ + -73.369078, + 45.51155 + ], + [ + -73.370401, + 45.511691 + ], + [ + -73.370685, + 45.511713 + ], + [ + -73.370961, + 45.511723 + ], + [ + -73.371234, + 45.511723 + ], + [ + -73.371918, + 45.511719 + ], + [ + -73.373195, + 45.511581 + ], + [ + -73.373585, + 45.511546 + ], + [ + -73.373778, + 45.511519 + ], + [ + -73.374154, + 45.511452 + ], + [ + -73.374325, + 45.511398 + ], + [ + -73.374487, + 45.51134 + ], + [ + -73.374637, + 45.511272 + ], + [ + -73.374771, + 45.511191 + ], + [ + -73.374884, + 45.511102 + ], + [ + -73.374978, + 45.511003 + ], + [ + -73.375051, + 45.510895 + ], + [ + -73.375109, + 45.510782 + ], + [ + -73.375141, + 45.51067 + ], + [ + -73.375153, + 45.510548 + ], + [ + -73.375148, + 45.510427 + ], + [ + -73.375124, + 45.510301 + ], + [ + -73.375099, + 45.510225 + ], + [ + -73.375083, + 45.510175 + ], + [ + -73.375023, + 45.510049 + ], + [ + -73.374952, + 45.509923 + ], + [ + -73.374866, + 45.509797 + ], + [ + -73.374765, + 45.509675 + ], + [ + -73.374649, + 45.509554 + ], + [ + -73.374517, + 45.509441 + ], + [ + -73.374091, + 45.50913 + ], + [ + -73.373634, + 45.508918 + ], + [ + -73.373366, + 45.508787 + ], + [ + -73.373092, + 45.508616 + ], + [ + -73.372808, + 45.508386 + ], + [ + -73.372681, + 45.508256 + ], + [ + -73.37257, + 45.508112 + ], + [ + -73.372476, + 45.507967 + ], + [ + -73.3724, + 45.507819 + ], + [ + -73.372343, + 45.507679 + ], + [ + -73.372306, + 45.507517 + ], + [ + -73.372287, + 45.507369 + ], + [ + -73.372226, + 45.506676 + ], + [ + -73.372198, + 45.50623 + ], + [ + -73.372124, + 45.50556 + ], + [ + -73.372243, + 45.505043 + ], + [ + -73.372302, + 45.504692 + ], + [ + -73.372354, + 45.504449 + ], + [ + -73.372503, + 45.503954 + ], + [ + -73.372655, + 45.503576 + ], + [ + -73.373011, + 45.502875 + ], + [ + -73.373173, + 45.502587 + ], + [ + -73.37323, + 45.502511 + ], + [ + -73.373299, + 45.502439 + ], + [ + -73.373386, + 45.502385 + ], + [ + -73.373485, + 45.50234 + ], + [ + -73.37359, + 45.502313 + ], + [ + -73.373645, + 45.502304 + ], + [ + -73.37369, + 45.5023 + ], + [ + -73.37385, + 45.502305 + ], + [ + -73.373969, + 45.502327 + ], + [ + -73.374235, + 45.502395 + ], + [ + -73.374326, + 45.502409 + ], + [ + -73.374466, + 45.502454 + ], + [ + -73.374786, + 45.50253 + ], + [ + -73.375092, + 45.502612 + ], + [ + -73.375264, + 45.502648 + ], + [ + -73.375427, + 45.502684 + ], + [ + -73.375574, + 45.502747 + ], + [ + -73.376319, + 45.503059 + ], + [ + -73.376016, + 45.503247 + ], + [ + -73.375972, + 45.503274 + ], + [ + -73.375788, + 45.503416 + ], + [ + -73.375698, + 45.503485 + ], + [ + -73.375447, + 45.503715 + ], + [ + -73.375293, + 45.503854 + ], + [ + -73.37517, + 45.50398 + ], + [ + -73.374998, + 45.504213 + ], + [ + -73.374854, + 45.504429 + ], + [ + -73.374722, + 45.5046 + ], + [ + -73.374697, + 45.504635 + ], + [ + -73.374625, + 45.504735 + ], + [ + -73.374598, + 45.504793 + ], + [ + -73.374583, + 45.504843 + ], + [ + -73.374565, + 45.504919 + ], + [ + -73.374581, + 45.50514 + ], + [ + -73.37462, + 45.505338 + ], + [ + -73.374746, + 45.505563 + ], + [ + -73.374844, + 45.505788 + ], + [ + -73.374851, + 45.5058 + ], + [ + -73.374873, + 45.505837 + ], + [ + -73.374919, + 45.505916 + ], + [ + -73.374951, + 45.505973 + ], + [ + -73.375061, + 45.506067 + ], + [ + -73.375295, + 45.506238 + ], + [ + -73.375424, + 45.506333 + ], + [ + -73.375748, + 45.506597 + ], + [ + -73.375784, + 45.506626 + ], + [ + -73.375859, + 45.506698 + ], + [ + -73.375911, + 45.506761 + ], + [ + -73.375985, + 45.506896 + ], + [ + -73.376046, + 45.507022 + ], + [ + -73.376084, + 45.507108 + ], + [ + -73.376268, + 45.507459 + ], + [ + -73.376298, + 45.507513 + ], + [ + -73.376345, + 45.507576 + ], + [ + -73.3764, + 45.507639 + ], + [ + -73.376512, + 45.507729 + ], + [ + -73.376632, + 45.507801 + ], + [ + -73.376837, + 45.507891 + ], + [ + -73.376868, + 45.507902 + ], + [ + -73.376914, + 45.507917 + ], + [ + -73.377114, + 45.507982 + ], + [ + -73.377442, + 45.508081 + ], + [ + -73.377571, + 45.508108 + ], + [ + -73.377699, + 45.508135 + ], + [ + -73.377779, + 45.508144 + ], + [ + -73.377878, + 45.50815 + ], + [ + -73.377933, + 45.508153 + ], + [ + -73.378119, + 45.508163 + ], + [ + -73.378452, + 45.508145 + ], + [ + -73.378562, + 45.50814 + ], + [ + -73.378928, + 45.508124 + ], + [ + -73.379147, + 45.508114 + ], + [ + -73.3793, + 45.508105 + ], + [ + -73.379404, + 45.508091 + ], + [ + -73.379526, + 45.508074 + ], + [ + -73.379622, + 45.508047 + ], + [ + -73.379724, + 45.508025 + ], + [ + -73.379863, + 45.507975 + ], + [ + -73.380059, + 45.50789 + ], + [ + -73.380179, + 45.507823 + ], + [ + -73.380268, + 45.507759 + ], + [ + -73.380399, + 45.507666 + ], + [ + -73.380423, + 45.507647 + ], + [ + -73.380503, + 45.507585 + ], + [ + -73.380626, + 45.507481 + ], + [ + -73.380959, + 45.507647 + ], + [ + -73.38128, + 45.507806 + ], + [ + -73.380619, + 45.508917 + ], + [ + -73.380471, + 45.509177 + ], + [ + -73.380338, + 45.509474 + ], + [ + -73.380312, + 45.5096 + ], + [ + -73.380265, + 45.50983 + ], + [ + -73.380243, + 45.510001 + ], + [ + -73.380243, + 45.510041 + ], + [ + -73.380292, + 45.510284 + ], + [ + -73.380332, + 45.510388 + ], + [ + -73.380377, + 45.510478 + ], + [ + -73.380512, + 45.51068 + ], + [ + -73.3806, + 45.510779 + ], + [ + -73.380706, + 45.510874 + ], + [ + -73.380825, + 45.510964 + ], + [ + -73.380962, + 45.511045 + ], + [ + -73.381113, + 45.511117 + ], + [ + -73.381279, + 45.511176 + ], + [ + -73.381458, + 45.511217 + ], + [ + -73.381649, + 45.511244 + ], + [ + -73.38185, + 45.511257 + ], + [ + -73.382059, + 45.511258 + ], + [ + -73.382278, + 45.511249 + ], + [ + -73.383255, + 45.51116 + ], + [ + -73.386918, + 45.510876 + ], + [ + -73.388705, + 45.510769 + ], + [ + -73.390511, + 45.510672 + ], + [ + -73.391744, + 45.51057 + ], + [ + -73.392277, + 45.510503 + ], + [ + -73.393587, + 45.510437 + ], + [ + -73.396575, + 45.510246 + ], + [ + -73.416479, + 45.508939 + ], + [ + -73.422517, + 45.50853 + ], + [ + -73.424264, + 45.508396 + ], + [ + -73.424552, + 45.508369 + ], + [ + -73.427299, + 45.508128 + ], + [ + -73.428057, + 45.508066 + ], + [ + -73.428658, + 45.508016 + ], + [ + -73.429661, + 45.507941 + ], + [ + -73.431208, + 45.507842 + ], + [ + -73.432577, + 45.507753 + ], + [ + -73.43342, + 45.507709 + ], + [ + -73.434603, + 45.507674 + ], + [ + -73.436686, + 45.507634 + ], + [ + -73.43758, + 45.507603 + ], + [ + -73.438175, + 45.507572 + ], + [ + -73.440344, + 45.507425 + ], + [ + -73.445881, + 45.507063 + ], + [ + -73.452257, + 45.506638 + ], + [ + -73.452565, + 45.506616 + ], + [ + -73.453776, + 45.50654 + ], + [ + -73.455247, + 45.506419 + ], + [ + -73.456957, + 45.50624 + ], + [ + -73.460279, + 45.505832 + ], + [ + -73.460374, + 45.505823 + ], + [ + -73.461182, + 45.505728 + ], + [ + -73.463671, + 45.505509 + ], + [ + -73.465111, + 45.505401 + ], + [ + -73.467755, + 45.505222 + ], + [ + -73.468692, + 45.505168 + ], + [ + -73.470746, + 45.505025 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492934, + 45.510116 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497942, + 45.512059 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.500628, + 45.512866 + ], + [ + -73.500836, + 45.512931 + ], + [ + -73.502033, + 45.513303 + ], + [ + -73.505335, + 45.514355 + ], + [ + -73.505365, + 45.514365 + ], + [ + -73.507293, + 45.514976 + ], + [ + -73.50757, + 45.515057 + ], + [ + -73.508383, + 45.515323 + ], + [ + -73.509009, + 45.515606 + ], + [ + -73.509231, + 45.515687 + ], + [ + -73.509741, + 45.515862 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515013, + 45.519426 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518906, + 45.520633 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520267, + 45.521193 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.52068, + 45.524093 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.520811, + 45.523427 + ] + ] + }, + "id": 202, + "properties": { + "id": "94a82da1-35b8-4b5a-8242-65f41deed062", + "data": { + "gtfs": { + "shape_id": "99_1_A" + }, + "segments": [ + { + "distanceMeters": 117, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 660, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 375, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 100, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 385, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 3921, + "travelTimeSeconds": 334 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 14, + "travelTimeSeconds": 1 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 7 + }, + { + "distanceMeters": 9703, + "travelTimeSeconds": 533 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 1609, + "travelTimeSeconds": 268 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 844, + "travelTimeSeconds": 141 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 318, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 29646, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 13816.863629181675, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.32, + "travelTimeWithoutDwellTimesSeconds": 3180, + "operatingTimeWithLayoverTimeSeconds": 3498, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3180, + "operatingSpeedWithLayoverMetersPerSecond": 8.47, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.32 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d", + "784a98f8-f964-4b51-9a84-d7aa241d6aab", + "a1087eae-a20b-4cd0-b8e7-26440d382937", + "1d0cf396-f4ae-4977-a367-c4cf2be5bc83", + "2b4013fd-f01f-46a6-a43b-07ee39c8fae1", + "23cec068-5e76-484b-b2ab-203e4ea55358", + "57a91181-2fc4-4e39-a5bf-0ff47bbe6e9b", + "b1b9e3d8-602d-45b4-ae3c-162955cba188", + "e39d2286-4090-4933-a88a-16d850b1afef", + "44828ff3-a75f-403d-9e17-7e902c4620b9", + "5f32a25e-7895-498c-b5cd-182adcfb40dd", + "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", + "0893f164-19ee-46d7-888c-b2f0ceb4c706", + "4f0816d5-67e0-4d4d-9413-6e045052da5f", + "e3c142cf-278c-41ec-b9f5-dff43803109b", + "6b369192-79e8-4382-aaa0-abddf0da08d7", + "93fcd4a5-ee80-4c79-b0bc-547231801133", + "3bbcea32-d474-49cc-8cd8-d77d2bac6158", + "b476282d-aa8d-4826-8ad2-39123a162025", + "39a7153a-bac3-4ac2-84e3-79ec24465317", + "2c952684-5d97-4238-ae18-51cba6c9775e", + "819e2afa-bfef-47b3-8a41-a55f4c2f9156", + "0dae6aad-c792-48fd-a50b-e498ec730741", + "664c0430-a4fa-4f7d-aa9b-f0bfd0ecd1e4", + "87b33360-b2b6-4448-85dd-00bcc2d6204c", + "6a18cdcb-7d78-46ad-a358-7895b3877421", + "bc16cbaa-5a30-48f3-9330-5ee7ec0441a1", + "33779f20-bdd2-4c97-8c57-e7f88093dfb0", + "5ee81343-27a6-4a75-a9d6-cfd2443e5ca4", + "202ead47-deaa-405e-b65f-b1c0ac914072", + "a559ed96-e206-444a-b3b1-e1eedefb1ccd", + "b8cfafe3-b6a4-49f2-a7bb-9ae8933f001e", + "ea96e923-e899-4f40-b55b-0ec5bd72c618", + "4511e120-86db-4b9f-bbc5-ef3d3a1627fd", + "57420416-a1c5-4dd0-bce2-fccdbb41630a", + "ab32c22a-056a-40bc-bb99-58c049d50498", + "d4b97f89-0d15-4037-9293-a46292a3b826", + "a5fa3371-93c4-47f9-8972-32a538fcab1f", + "c144cdde-b47b-40cf-b640-e6399771f99b", + "a34242f1-b39e-4075-8b98-da7cc20aa985", + "16815d0a-9758-4c90-a572-66e1110e9895", + "bb60f9d1-ae1a-4b44-81e5-f918c5a03052", + "a4342529-2476-4d58-89df-3af5cc46b2ed", + "847391f5-cdd6-49af-ac72-f7b987f65b7f", + "72167429-f4d5-4eda-870a-b71c9c47ec5e", + "515b8790-77c6-4a3b-8347-a621b1167870", + "9f66e075-701a-442d-9c89-3fee641e6ceb", + "d6901f53-cd66-4086-8fc5-2643b6cfcce0", + "1903cbec-a898-4d1e-aa47-0930a7af3bd5", + "5c28c22e-79f1-4a2c-9171-d9cc96f1af7d", + "0910a11d-1b83-4a5b-9c01-30b9a6d926ef", + "4c4fb532-1ed3-4dc8-ab02-b2a6e87e7b90", + "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", + "01e0bcb2-ac63-4c88-b110-c273905a1d5c", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "acabc807-b0f5-4579-b183-cef0484a7cc2" + ], + "stops": [], + "line_id": "c2ab17fa-7d98-4a1d-9fed-26a95aea0b7e", + "segments": [ + 0, + 5, + 41, + 54, + 60, + 67, + 77, + 82, + 96, + 107, + 120, + 125, + 128, + 130, + 135, + 138, + 142, + 149, + 154, + 159, + 164, + 168, + 176, + 183, + 187, + 195, + 198, + 203, + 208, + 214, + 220, + 222, + 230, + 238, + 247, + 259, + 263, + 273, + 276, + 278, + 280, + 284, + 286, + 293, + 302, + 307, + 316, + 320, + 339, + 344, + 353, + 355, + 445, + 462, + 464, + 495, + 507, + 605, + 618, + 653, + 660 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 202, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.520811, + 45.523427 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522185, + 45.522436 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519256, + 45.520728 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514999, + 45.519329 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509849, + 45.51557 + ], + [ + -73.509164, + 45.515381 + ], + [ + -73.508444, + 45.51521 + ], + [ + -73.505306, + 45.51421 + ], + [ + -73.503449, + 45.513618 + ], + [ + -73.500803, + 45.512776 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498218, + 45.511892 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.49432, + 45.510463 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488355, + 45.503066 + ], + [ + -73.4883, + 45.502913 + ], + [ + -73.488219, + 45.502531 + ], + [ + -73.488223, + 45.502405 + ], + [ + -73.488245, + 45.502293 + ], + [ + -73.488296, + 45.502185 + ], + [ + -73.488375, + 45.502086 + ], + [ + -73.488484, + 45.502 + ], + [ + -73.488609, + 45.501937 + ], + [ + -73.48874, + 45.501892 + ], + [ + -73.48888, + 45.501865 + ], + [ + -73.489028, + 45.501856 + ], + [ + -73.489181, + 45.501865 + ], + [ + -73.489324, + 45.501892 + ], + [ + -73.489461, + 45.501933 + ], + [ + -73.489585, + 45.501991 + ], + [ + -73.489692, + 45.502068 + ], + [ + -73.489786, + 45.502153 + ], + [ + -73.489893, + 45.502284 + ], + [ + -73.489942, + 45.502342 + ], + [ + -73.490006, + 45.50245 + ], + [ + -73.490054, + 45.502558 + ], + [ + -73.490086, + 45.502666 + ], + [ + -73.490092, + 45.502779 + ], + [ + -73.490064, + 45.502891 + ], + [ + -73.490004, + 45.502995 + ], + [ + -73.489917, + 45.503094 + ], + [ + -73.489808, + 45.503175 + ], + [ + -73.489675, + 45.503242 + ], + [ + -73.489524, + 45.503287 + ], + [ + -73.489359, + 45.50331 + ], + [ + -73.489186, + 45.503323 + ], + [ + -73.488817, + 45.503318 + ], + [ + -73.487515, + 45.503242 + ], + [ + -73.486872, + 45.503273 + ], + [ + -73.486502, + 45.503323 + ], + [ + -73.486146, + 45.503381 + ], + [ + -73.484224, + 45.503808 + ], + [ + -73.483407, + 45.503957 + ], + [ + -73.482922, + 45.504029 + ], + [ + -73.482166, + 45.504114 + ], + [ + -73.481092, + 45.504204 + ], + [ + -73.4802, + 45.504262 + ], + [ + -73.47719, + 45.50446 + ], + [ + -73.464792, + 45.505284 + ], + [ + -73.464234, + 45.505325 + ], + [ + -73.463301, + 45.505392 + ], + [ + -73.461784, + 45.505526 + ], + [ + -73.460686, + 45.505647 + ], + [ + -73.45799, + 45.505984 + ], + [ + -73.456776, + 45.506127 + ], + [ + -73.455209, + 45.506284 + ], + [ + -73.454382, + 45.506356 + ], + [ + -73.450186, + 45.506642 + ], + [ + -73.439577, + 45.507343 + ], + [ + -73.439057, + 45.507379 + ], + [ + -73.438071, + 45.507414 + ], + [ + -73.437444, + 45.507428 + ], + [ + -73.436265, + 45.507427 + ], + [ + -73.435664, + 45.507418 + ], + [ + -73.43478, + 45.507413 + ], + [ + -73.433757, + 45.507439 + ], + [ + -73.432476, + 45.507501 + ], + [ + -73.430857, + 45.507609 + ], + [ + -73.43012, + 45.507658 + ], + [ + -73.43011, + 45.507658 + ], + [ + -73.429984, + 45.507667 + ], + [ + -73.42996, + 45.507668 + ], + [ + -73.429316, + 45.507711 + ], + [ + -73.429246, + 45.50772 + ], + [ + -73.427401, + 45.507872 + ], + [ + -73.425651, + 45.508046 + ], + [ + -73.425331, + 45.508082 + ], + [ + -73.423669, + 45.508256 + ], + [ + -73.421559, + 45.508471 + ], + [ + -73.418703, + 45.508644 + ], + [ + -73.414755, + 45.508904 + ], + [ + -73.40603, + 45.509467 + ], + [ + -73.399904, + 45.509875 + ], + [ + -73.3937, + 45.510275 + ], + [ + -73.39233, + 45.510359 + ], + [ + -73.390441, + 45.510452 + ], + [ + -73.389048, + 45.510473 + ], + [ + -73.387433, + 45.510512 + ], + [ + -73.386693, + 45.510538 + ], + [ + -73.384812, + 45.510577 + ], + [ + -73.381979, + 45.510646 + ], + [ + -73.381673, + 45.510645 + ], + [ + -73.381378, + 45.510627 + ], + [ + -73.381234, + 45.510609 + ], + [ + -73.3811, + 45.510577 + ], + [ + -73.380858, + 45.510492 + ], + [ + -73.380751, + 45.510437 + ], + [ + -73.380661, + 45.510379 + ], + [ + -73.380586, + 45.510311 + ], + [ + -73.380529, + 45.510239 + ], + [ + -73.380481, + 45.510154 + ], + [ + -73.380447, + 45.510037 + ], + [ + -73.380445, + 45.509992 + ], + [ + -73.380452, + 45.509828 + ], + [ + -73.38047, + 45.509573 + ], + [ + -73.380641, + 45.509218 + ], + [ + -73.380768, + 45.508957 + ], + [ + -73.381367, + 45.507892 + ], + [ + -73.381389, + 45.507851 + ], + [ + -73.381468, + 45.507752 + ], + [ + -73.381562, + 45.507572 + ], + [ + -73.381667, + 45.507356 + ], + [ + -73.381733, + 45.507226 + ], + [ + -73.381816, + 45.507051 + ], + [ + -73.381935, + 45.506785 + ], + [ + -73.382054, + 45.506552 + ], + [ + -73.382181, + 45.506291 + ], + [ + -73.382218, + 45.506219 + ], + [ + -73.382294, + 45.50607 + ], + [ + -73.382297, + 45.506061 + ], + [ + -73.382363, + 45.505931 + ], + [ + -73.382444, + 45.505769 + ], + [ + -73.382566, + 45.505517 + ], + [ + -73.382593, + 45.505454 + ], + [ + -73.382731, + 45.505162 + ], + [ + -73.382892, + 45.504865 + ], + [ + -73.382933, + 45.504757 + ], + [ + -73.382959, + 45.504685 + ], + [ + -73.383272, + 45.504038 + ], + [ + -73.383312, + 45.503943 + ], + [ + -73.383175, + 45.503912 + ], + [ + -73.382957, + 45.503857 + ], + [ + -73.382592, + 45.503772 + ], + [ + -73.382532, + 45.503757 + ], + [ + -73.382365, + 45.503717 + ], + [ + -73.382247, + 45.50369 + ], + [ + -73.382017, + 45.503632 + ], + [ + -73.381788, + 45.503586 + ], + [ + -73.381702, + 45.503586 + ], + [ + -73.381614, + 45.503595 + ], + [ + -73.381525, + 45.503613 + ], + [ + -73.381438, + 45.503649 + ], + [ + -73.381271, + 45.503748 + ], + [ + -73.381063, + 45.5039 + ], + [ + -73.380649, + 45.503653 + ], + [ + -73.379998, + 45.503229 + ], + [ + -73.379576, + 45.50295 + ], + [ + -73.379384, + 45.502828 + ], + [ + -73.37932, + 45.502783 + ], + [ + -73.37913, + 45.502648 + ], + [ + -73.379006, + 45.50258 + ], + [ + -73.37878, + 45.502481 + ], + [ + -73.378631, + 45.502438 + ], + [ + -73.37856, + 45.502418 + ], + [ + -73.378407, + 45.502386 + ], + [ + -73.378319, + 45.502372 + ], + [ + -73.37822, + 45.502368 + ], + [ + -73.378037, + 45.502359 + ], + [ + -73.377961, + 45.502365 + ], + [ + -73.377873, + 45.502372 + ], + [ + -73.37772, + 45.50239 + ], + [ + -73.377578, + 45.502421 + ], + [ + -73.377427, + 45.502461 + ], + [ + -73.37726, + 45.502529 + ], + [ + -73.3771, + 45.502609 + ], + [ + -73.376904, + 45.502699 + ], + [ + -73.376645, + 45.502847 + ], + [ + -73.376535, + 45.502915 + ], + [ + -73.376411, + 45.502996 + ], + [ + -73.376319, + 45.503059 + ], + [ + -73.376016, + 45.503247 + ], + [ + -73.375972, + 45.503274 + ], + [ + -73.375716, + 45.503472 + ], + [ + -73.375698, + 45.503485 + ], + [ + -73.375447, + 45.503715 + ], + [ + -73.375293, + 45.503854 + ], + [ + -73.37517, + 45.50398 + ], + [ + -73.374998, + 45.504213 + ], + [ + -73.374854, + 45.504429 + ], + [ + -73.374722, + 45.5046 + ], + [ + -73.374697, + 45.504635 + ], + [ + -73.374625, + 45.504735 + ], + [ + -73.374598, + 45.504793 + ], + [ + -73.374583, + 45.504843 + ], + [ + -73.374565, + 45.504919 + ], + [ + -73.374581, + 45.50514 + ], + [ + -73.37462, + 45.505338 + ], + [ + -73.374746, + 45.505563 + ], + [ + -73.374844, + 45.505788 + ], + [ + -73.374849, + 45.505796 + ], + [ + -73.374891, + 45.505868 + ], + [ + -73.374951, + 45.505973 + ], + [ + -73.374971, + 45.50599 + ], + [ + -73.375061, + 45.506067 + ], + [ + -73.375295, + 45.506238 + ], + [ + -73.375424, + 45.506333 + ], + [ + -73.375748, + 45.506597 + ], + [ + -73.375784, + 45.506626 + ], + [ + -73.375859, + 45.506698 + ], + [ + -73.375911, + 45.506761 + ], + [ + -73.375985, + 45.506896 + ], + [ + -73.376046, + 45.507022 + ], + [ + -73.375586, + 45.507112 + ], + [ + -73.37473, + 45.507255 + ], + [ + -73.374599, + 45.507263 + ], + [ + -73.374436, + 45.507272 + ], + [ + -73.372887, + 45.507302 + ], + [ + -73.372631, + 45.507306 + ], + [ + -73.371045, + 45.507325 + ], + [ + -73.370567, + 45.507304 + ], + [ + -73.370219, + 45.507317 + ], + [ + -73.369997, + 45.507299 + ], + [ + -73.369892, + 45.507281 + ], + [ + -73.369796, + 45.507254 + ], + [ + -73.369638, + 45.507181 + ], + [ + -73.369575, + 45.507141 + ], + [ + -73.369469, + 45.507051 + ], + [ + -73.369425, + 45.506956 + ], + [ + -73.369394, + 45.506848 + ], + [ + -73.369382, + 45.506749 + ], + [ + -73.369359, + 45.50557 + ], + [ + -73.36938, + 45.505143 + ], + [ + -73.36941, + 45.504851 + ], + [ + -73.369478, + 45.504423 + ], + [ + -73.369566, + 45.504005 + ], + [ + -73.369731, + 45.503452 + ], + [ + -73.369826, + 45.503177 + ], + [ + -73.369982, + 45.502795 + ], + [ + -73.370146, + 45.502444 + ], + [ + -73.370264, + 45.502238 + ], + [ + -73.370341, + 45.502143 + ], + [ + -73.370433, + 45.502062 + ], + [ + -73.370541, + 45.50199 + ], + [ + -73.370661, + 45.501932 + ], + [ + -73.370793, + 45.501892 + ], + [ + -73.370931, + 45.50186 + ], + [ + -73.371072, + 45.501851 + ], + [ + -73.371214, + 45.501852 + ], + [ + -73.371354, + 45.501874 + ], + [ + -73.37149, + 45.50191 + ], + [ + -73.371538, + 45.501931 + ], + [ + -73.371617, + 45.501965 + ], + [ + -73.371733, + 45.502032 + ], + [ + -73.371832, + 45.502109 + ], + [ + -73.371912, + 45.502199 + ], + [ + -73.371971, + 45.502302 + ], + [ + -73.372008, + 45.502406 + ], + [ + -73.372021, + 45.502523 + ], + [ + -73.372005, + 45.502653 + ], + [ + -73.371975, + 45.502775 + ], + [ + -73.371651, + 45.503566 + ], + [ + -73.371494, + 45.504025 + ], + [ + -73.371425, + 45.504371 + ], + [ + -73.371423, + 45.504641 + ], + [ + -73.371335, + 45.504916 + ], + [ + -73.371277, + 45.50524 + ], + [ + -73.371265, + 45.505514 + ], + [ + -73.371277, + 45.506783 + ], + [ + -73.371269, + 45.506999 + ], + [ + -73.371245, + 45.507197 + ], + [ + -73.371137, + 45.507575 + ], + [ + -73.371013, + 45.507799 + ], + [ + -73.370954, + 45.50788 + ], + [ + -73.370878, + 45.507961 + ], + [ + -73.370789, + 45.508056 + ], + [ + -73.370682, + 45.50815 + ], + [ + -73.36969, + 45.508891 + ], + [ + -73.36704, + 45.510863 + ], + [ + -73.366756, + 45.511056 + ], + [ + -73.36661, + 45.511142 + ], + [ + -73.366459, + 45.511227 + ], + [ + -73.366155, + 45.51138 + ], + [ + -73.365972, + 45.51146 + ], + [ + -73.365657, + 45.511573 + ], + [ + -73.365337, + 45.511667 + ], + [ + -73.36321, + 45.512069 + ], + [ + -73.362045, + 45.512288 + ], + [ + -73.361529, + 45.512355 + ], + [ + -73.360893, + 45.512422 + ], + [ + -73.358459, + 45.512576 + ], + [ + -73.356757, + 45.512682 + ], + [ + -73.347571, + 45.513278 + ], + [ + -73.343703, + 45.513529 + ], + [ + -73.343677, + 45.513165 + ] + ] + }, + "id": 203, + "properties": { + "id": "a6f88111-99c9-45ee-92a4-7f97b564c464", + "data": { + "gtfs": { + "shape_id": "99_2_R" + }, + "segments": [ + { + "distanceMeters": 630, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 1600, + "travelTimeSeconds": 195 + }, + { + "distanceMeters": 344, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 6032, + "travelTimeSeconds": 360 + }, + { + "distanceMeters": 4160, + "travelTimeSeconds": 286 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 985, + "travelTimeSeconds": 182 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 15, + "travelTimeSeconds": 3 + }, + { + "distanceMeters": 4373, + "travelTimeSeconds": 360 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 18997, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 13816.863629181675, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 11.73, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 10.55, + "averageSpeedWithoutDwellTimesMetersPerSecond": 11.73 + }, + "mode": "bus", + "name": "St-Bruno", + "color": "#A32638", + "nodes": [ + "acabc807-b0f5-4579-b183-cef0484a7cc2", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "688a3f67-a176-441e-a399-c92a55de9c74", + "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", + "4aea3348-4995-4fc9-b06f-6698460c1f1d", + "a6d38dbd-ef0c-4533-9d2c-7149d1941078", + "c4c03f6a-b2dc-4fb8-87cd-df1a4417beae", + "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d" + ], + "stops": [], + "line_id": "c2ab17fa-7d98-4a1d-9fed-26a95aea0b7e", + "segments": [ + 0, + 39, + 46, + 70, + 81, + 168, + 204, + 214, + 269, + 287, + 289 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 203, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.343677, + 45.513165 + ], + [ + -73.34367, + 45.513061 + ], + [ + -73.343642, + 45.512791 + ], + [ + -73.343612, + 45.512647 + ], + [ + -73.343567, + 45.512534 + ], + [ + -73.343389, + 45.512141 + ], + [ + -73.343354, + 45.512062 + ], + [ + -73.343097, + 45.5121 + ], + [ + -73.343038, + 45.512092 + ], + [ + -73.342894, + 45.512074 + ], + [ + -73.342741, + 45.512043 + ], + [ + -73.342629, + 45.512011 + ], + [ + -73.342349, + 45.511934 + ], + [ + -73.341938, + 45.511803 + ], + [ + -73.341736, + 45.511731 + ], + [ + -73.341412, + 45.51159 + ], + [ + -73.341146, + 45.511475 + ], + [ + -73.341122, + 45.511465 + ], + [ + -73.340633, + 45.511225 + ], + [ + -73.340296, + 45.511027 + ], + [ + -73.340118, + 45.510905 + ], + [ + -73.340029, + 45.510841 + ], + [ + -73.33993, + 45.51077 + ], + [ + -73.339787, + 45.510662 + ], + [ + -73.33958, + 45.5105 + ], + [ + -73.339426, + 45.510378 + ], + [ + -73.33923, + 45.510225 + ], + [ + -73.339011, + 45.510053 + ], + [ + -73.338812, + 45.5099 + ], + [ + -73.338649, + 45.509765 + ], + [ + -73.338438, + 45.509603 + ], + [ + -73.338251, + 45.509472 + ], + [ + -73.338077, + 45.509382 + ], + [ + -73.337875, + 45.5093 + ], + [ + -73.337654, + 45.509233 + ], + [ + -73.337473, + 45.509192 + ], + [ + -73.337253, + 45.509165 + ], + [ + -73.337049, + 45.509155 + ], + [ + -73.336952, + 45.509157 + ], + [ + -73.336939, + 45.509159 + ], + [ + -73.336547, + 45.509188 + ], + [ + -73.336515, + 45.509192 + ], + [ + -73.336225, + 45.509224 + ], + [ + -73.33614, + 45.509238 + ], + [ + -73.336059, + 45.509261 + ], + [ + -73.335984, + 45.509292 + ], + [ + -73.335916, + 45.509331 + ], + [ + -73.335544, + 45.509572 + ], + [ + -73.335336, + 45.509723 + ], + [ + -73.335253, + 45.509783 + ], + [ + -73.33485, + 45.510077 + ], + [ + -73.334454, + 45.510366 + ], + [ + -73.334013, + 45.510683 + ], + [ + -73.333664, + 45.510909 + ], + [ + -73.333081, + 45.511289 + ], + [ + -73.332968, + 45.511363 + ], + [ + -73.332471, + 45.511692 + ], + [ + -73.332065, + 45.51196 + ], + [ + -73.331778, + 45.512149 + ], + [ + -73.331385, + 45.512407 + ], + [ + -73.33106, + 45.512615 + ], + [ + -73.330794, + 45.512786 + ], + [ + -73.330507, + 45.512975 + ], + [ + -73.32972, + 45.513518 + ], + [ + -73.32948, + 45.513693 + ], + [ + -73.329221, + 45.51389 + ], + [ + -73.32877, + 45.514101 + ], + [ + -73.328632, + 45.514161 + ], + [ + -73.328456, + 45.514236 + ], + [ + -73.328284, + 45.514321 + ], + [ + -73.327945, + 45.514388 + ], + [ + -73.32769, + 45.514424 + ], + [ + -73.326299, + 45.514534 + ], + [ + -73.325842, + 45.514565 + ], + [ + -73.325331, + 45.514602 + ], + [ + -73.324882, + 45.514635 + ], + [ + -73.324037, + 45.514697 + ], + [ + -73.323935, + 45.514703 + ], + [ + -73.323824, + 45.514709 + ], + [ + -73.32364, + 45.514723 + ], + [ + -73.322784, + 45.514785 + ], + [ + -73.320491, + 45.514943 + ], + [ + -73.320313, + 45.514954 + ], + [ + -73.320068, + 45.51497 + ], + [ + -73.319813, + 45.514987 + ], + [ + -73.319504, + 45.515014 + ], + [ + -73.31929, + 45.515022 + ], + [ + -73.319076, + 45.51504 + ], + [ + -73.318751, + 45.515062 + ], + [ + -73.318468, + 45.515075 + ], + [ + -73.318303, + 45.515085 + ], + [ + -73.318161, + 45.515093 + ], + [ + -73.317967, + 45.515098 + ], + [ + -73.317909, + 45.5151 + ], + [ + -73.317815, + 45.515109 + ], + [ + -73.317711, + 45.515131 + ], + [ + -73.317676, + 45.515131 + ], + [ + -73.317558, + 45.515133 + ], + [ + -73.317556, + 45.51535 + ], + [ + -73.317556, + 45.515379 + ], + [ + -73.317555, + 45.515401 + ], + [ + -73.317518, + 45.516504 + ], + [ + -73.317461, + 45.516823 + ], + [ + -73.317399, + 45.517358 + ], + [ + -73.31739, + 45.517605 + ], + [ + -73.317378, + 45.517798 + ], + [ + -73.31736, + 45.518111 + ], + [ + -73.317348, + 45.518295 + ], + [ + -73.317339, + 45.518442 + ], + [ + -73.31733, + 45.518584 + ], + [ + -73.317374, + 45.51884 + ], + [ + -73.317442, + 45.519063 + ], + [ + -73.317668, + 45.519485 + ], + [ + -73.317719, + 45.519565 + ], + [ + -73.317762, + 45.519631 + ], + [ + -73.318032, + 45.519996 + ], + [ + -73.318144, + 45.52016 + ], + [ + -73.318342, + 45.520362 + ], + [ + -73.318461, + 45.520393 + ], + [ + -73.318552, + 45.520474 + ], + [ + -73.318639, + 45.520551 + ], + [ + -73.318732, + 45.520632 + ], + [ + -73.318986, + 45.520847 + ], + [ + -73.319781, + 45.521516 + ], + [ + -73.32099, + 45.522525 + ], + [ + -73.321254, + 45.522753 + ], + [ + -73.321325, + 45.522814 + ], + [ + -73.322064, + 45.52344 + ], + [ + -73.322913, + 45.524157 + ], + [ + -73.323443, + 45.524603 + ], + [ + -73.324419, + 45.525429 + ], + [ + -73.324477, + 45.525478 + ], + [ + -73.324515, + 45.525523 + ], + [ + -73.325411, + 45.526298 + ], + [ + -73.325817, + 45.526587 + ], + [ + -73.326449, + 45.527068 + ], + [ + -73.326635, + 45.527209 + ], + [ + -73.327746, + 45.528029 + ], + [ + -73.328049, + 45.528244 + ], + [ + -73.328159, + 45.528322 + ], + [ + -73.328691, + 45.528715 + ], + [ + -73.330009, + 45.529693 + ], + [ + -73.330637, + 45.530163 + ], + [ + -73.330761, + 45.530256 + ], + [ + -73.330825, + 45.530292 + ], + [ + -73.331492, + 45.529797 + ], + [ + -73.331877, + 45.529511 + ], + [ + -73.331967, + 45.529457 + ], + [ + -73.332637, + 45.528977 + ], + [ + -73.332866, + 45.528823 + ], + [ + -73.333063, + 45.528692 + ], + [ + -73.333275, + 45.52855 + ], + [ + -73.333439, + 45.528436 + ], + [ + -73.333788, + 45.528191 + ], + [ + -73.334535, + 45.527695 + ], + [ + -73.334545, + 45.527688 + ], + [ + -73.334622, + 45.527643 + ], + [ + -73.334776, + 45.527545 + ], + [ + -73.335456, + 45.527046 + ], + [ + -73.336098, + 45.526556 + ], + [ + -73.336249, + 45.52644 + ], + [ + -73.336573, + 45.52618 + ], + [ + -73.337228, + 45.52569 + ], + [ + -73.337669, + 45.525344 + ], + [ + -73.338066, + 45.525056 + ], + [ + -73.338368, + 45.524837 + ], + [ + -73.339197, + 45.525405 + ], + [ + -73.339713, + 45.525764 + ], + [ + -73.339811, + 45.525833 + ], + [ + -73.340005, + 45.525968 + ], + [ + -73.340357, + 45.526185 + ], + [ + -73.340568, + 45.526316 + ], + [ + -73.340738, + 45.526442 + ], + [ + -73.341034, + 45.526636 + ], + [ + -73.341462, + 45.526915 + ], + [ + -73.34183, + 45.527172 + ], + [ + -73.341931, + 45.527253 + ], + [ + -73.341994, + 45.527303 + ], + [ + -73.342074, + 45.527389 + ], + [ + -73.341972, + 45.527469 + ], + [ + -73.341594, + 45.527797 + ], + [ + -73.341101, + 45.528233 + ], + [ + -73.341005, + 45.528323 + ], + [ + -73.340914, + 45.528408 + ], + [ + -73.340784, + 45.52853 + ], + [ + -73.340213, + 45.529055 + ], + [ + -73.339969, + 45.529289 + ], + [ + -73.339869, + 45.529374 + ], + [ + -73.339738, + 45.529486 + ], + [ + -73.340316, + 45.529904 + ], + [ + -73.340388, + 45.529956 + ], + [ + -73.340412, + 45.529974 + ], + [ + -73.341348, + 45.530649 + ], + [ + -73.341671, + 45.530886 + ], + [ + -73.34171, + 45.530915 + ], + [ + -73.342548, + 45.531528 + ], + [ + -73.34266, + 45.53161 + ], + [ + -73.342742, + 45.531673 + ], + [ + -73.345759, + 45.533862 + ], + [ + -73.34588, + 45.533949 + ], + [ + -73.346177, + 45.534156 + ], + [ + -73.346943, + 45.534715 + ], + [ + -73.347187, + 45.5349 + ], + [ + -73.347431, + 45.535038 + ], + [ + -73.347547, + 45.535103 + ], + [ + -73.347857, + 45.535261 + ], + [ + -73.348456, + 45.53559 + ], + [ + -73.348803, + 45.535802 + ], + [ + -73.348999, + 45.535933 + ], + [ + -73.349066, + 45.535978 + ], + [ + -73.349411, + 45.536275 + ], + [ + -73.349756, + 45.536582 + ], + [ + -73.350274, + 45.537136 + ], + [ + -73.350577, + 45.537487 + ], + [ + -73.350671, + 45.537596 + ], + [ + -73.350743, + 45.537681 + ], + [ + -73.350799, + 45.537748 + ], + [ + -73.351092, + 45.537645 + ], + [ + -73.351237, + 45.53761 + ], + [ + -73.351597, + 45.537552 + ], + [ + -73.351624, + 45.538143 + ], + [ + -73.351634, + 45.538348 + ], + [ + -73.351725, + 45.540234 + ], + [ + -73.351731, + 45.540355 + ], + [ + -73.352072, + 45.540349 + ], + [ + -73.352742, + 45.540338 + ], + [ + -73.3537, + 45.540317 + ], + [ + -73.354369, + 45.540304 + ], + [ + -73.354373, + 45.5403 + ], + [ + -73.354728, + 45.540161 + ], + [ + -73.354784, + 45.540132 + ], + [ + -73.354958, + 45.540044 + ], + [ + -73.355561, + 45.539685 + ], + [ + -73.355856, + 45.539514 + ], + [ + -73.35601, + 45.539397 + ], + [ + -73.356049, + 45.53937 + ], + [ + -73.356087, + 45.539334 + ], + [ + -73.356151, + 45.539281 + ], + [ + -73.35618, + 45.539252 + ], + [ + -73.356215, + 45.539218 + ], + [ + -73.356254, + 45.539173 + ], + [ + -73.356267, + 45.539146 + ], + [ + -73.356318, + 45.539011 + ], + [ + -73.35637, + 45.538876 + ], + [ + -73.356333, + 45.538462 + ], + [ + -73.35632, + 45.5383 + ], + [ + -73.356334, + 45.538084 + ], + [ + -73.356384, + 45.53791 + ], + [ + -73.356385, + 45.537904 + ], + [ + -73.356488, + 45.537706 + ], + [ + -73.356386, + 45.537688 + ], + [ + -73.356194, + 45.537616 + ], + [ + -73.356138, + 45.537582 + ], + [ + -73.356028, + 45.537517 + ], + [ + -73.35581, + 45.537381 + ], + [ + -73.355606, + 45.537228 + ], + [ + -73.354978, + 45.536786 + ], + [ + -73.354672, + 45.536579 + ], + [ + -73.35439, + 45.536363 + ], + [ + -73.354342, + 45.536329 + ], + [ + -73.354237, + 45.536255 + ], + [ + -73.354085, + 45.536133 + ], + [ + -73.353353, + 45.535601 + ], + [ + -73.35292, + 45.535293 + ], + [ + -73.352814, + 45.535218 + ], + [ + -73.352683, + 45.535132 + ], + [ + -73.352431, + 45.534966 + ], + [ + -73.352156, + 45.534794 + ], + [ + -73.351899, + 45.534632 + ], + [ + -73.351631, + 45.534461 + ], + [ + -73.351414, + 45.534325 + ], + [ + -73.351196, + 45.534181 + ], + [ + -73.350966, + 45.53401 + ], + [ + -73.350903, + 45.533966 + ], + [ + -73.350778, + 45.533879 + ], + [ + -73.350008, + 45.533298 + ], + [ + -73.348915, + 45.532503 + ], + [ + -73.348768, + 45.532396 + ], + [ + -73.347298, + 45.5313 + ], + [ + -73.346954, + 45.531044 + ], + [ + -73.345599, + 45.530065 + ], + [ + -73.345369, + 45.529899 + ], + [ + -73.345813, + 45.52961 + ], + [ + -73.346177, + 45.529374 + ], + [ + -73.347158, + 45.528674 + ], + [ + -73.347279, + 45.528588 + ], + [ + -73.348093, + 45.528061 + ], + [ + -73.348499, + 45.527798 + ], + [ + -73.349319, + 45.52725 + ], + [ + -73.350087, + 45.526724 + ], + [ + -73.350285, + 45.52659 + ], + [ + -73.350534, + 45.526433 + ], + [ + -73.350958, + 45.526271 + ], + [ + -73.350985, + 45.526261 + ], + [ + -73.351151, + 45.526199 + ], + [ + -73.351917, + 45.525931 + ], + [ + -73.351851, + 45.525827 + ], + [ + -73.351836, + 45.525786 + ], + [ + -73.351798, + 45.525714 + ], + [ + -73.351721, + 45.525594 + ], + [ + -73.351697, + 45.525557 + ], + [ + -73.3516, + 45.525453 + ], + [ + -73.351587, + 45.525442 + ], + [ + -73.351479, + 45.52535 + ], + [ + -73.351402, + 45.525286 + ], + [ + -73.350822, + 45.524876 + ], + [ + -73.349891, + 45.524214 + ], + [ + -73.349706, + 45.524082 + ], + [ + -73.349594, + 45.524002 + ], + [ + -73.349337, + 45.523831 + ], + [ + -73.348978, + 45.523614 + ], + [ + -73.348701, + 45.523497 + ], + [ + -73.348489, + 45.52342 + ], + [ + -73.348302, + 45.523361 + ], + [ + -73.348012, + 45.523289 + ], + [ + -73.347832, + 45.523257 + ], + [ + -73.347724, + 45.523246 + ], + [ + -73.347705, + 45.523243 + ], + [ + -73.347547, + 45.523225 + ], + [ + -73.346648, + 45.523103 + ], + [ + -73.346491, + 45.523081 + ], + [ + -73.346291, + 45.523053 + ], + [ + -73.346291, + 45.52285 + ], + [ + -73.346292, + 45.522634 + ], + [ + -73.346292, + 45.522585 + ], + [ + -73.346288, + 45.52231 + ], + [ + -73.346287, + 45.522153 + ], + [ + -73.346275, + 45.522009 + ], + [ + -73.346262, + 45.52182 + ], + [ + -73.346237, + 45.521631 + ], + [ + -73.346225, + 45.521478 + ], + [ + -73.346184, + 45.521289 + ], + [ + -73.346149, + 45.521073 + ], + [ + -73.346136, + 45.521001 + ], + [ + -73.346124, + 45.520929 + ], + [ + -73.346124, + 45.520857 + ], + [ + -73.346124, + 45.520785 + ], + [ + -73.346137, + 45.520677 + ], + [ + -73.346163, + 45.520569 + ], + [ + -73.346174, + 45.52052 + ], + [ + -73.346222, + 45.520303 + ], + [ + -73.346306, + 45.519804 + ], + [ + -73.346397, + 45.519174 + ], + [ + -73.346424, + 45.518967 + ], + [ + -73.346438, + 45.518725 + ], + [ + -73.34645, + 45.518527 + ], + [ + -73.345381, + 45.518517 + ], + [ + -73.344748, + 45.518511 + ], + [ + -73.344537, + 45.51843 + ], + [ + -73.34438, + 45.518344 + ], + [ + -73.344264, + 45.518227 + ], + [ + -73.344137, + 45.518006 + ], + [ + -73.344045, + 45.516998 + ], + [ + -73.344008, + 45.516632 + ], + [ + -73.343805, + 45.514586 + ], + [ + -73.343782, + 45.514393 + ], + [ + -73.343763, + 45.514238 + ], + [ + -73.343701, + 45.513718 + ], + [ + -73.343799, + 45.513709 + ], + [ + -73.357647, + 45.512814 + ], + [ + -73.358491, + 45.512756 + ], + [ + -73.359423, + 45.512694 + ], + [ + -73.359555, + 45.512681 + ], + [ + -73.360882, + 45.512602 + ], + [ + -73.36168, + 45.512531 + ], + [ + -73.362369, + 45.512441 + ], + [ + -73.363202, + 45.512325 + ], + [ + -73.364624, + 45.512098 + ], + [ + -73.366158, + 45.511879 + ], + [ + -73.367686, + 45.511615 + ], + [ + -73.367934, + 45.51158 + ], + [ + -73.368481, + 45.511535 + ], + [ + -73.368699, + 45.511527 + ], + [ + -73.369078, + 45.51155 + ], + [ + -73.370401, + 45.511691 + ], + [ + -73.370685, + 45.511713 + ], + [ + -73.370961, + 45.511723 + ], + [ + -73.371234, + 45.511723 + ], + [ + -73.371918, + 45.511719 + ], + [ + -73.373195, + 45.511581 + ], + [ + -73.373585, + 45.511546 + ], + [ + -73.373778, + 45.511519 + ], + [ + -73.374154, + 45.511452 + ], + [ + -73.374325, + 45.511398 + ], + [ + -73.374487, + 45.51134 + ], + [ + -73.374637, + 45.511272 + ], + [ + -73.374771, + 45.511191 + ], + [ + -73.374884, + 45.511102 + ], + [ + -73.374978, + 45.511003 + ], + [ + -73.375051, + 45.510895 + ], + [ + -73.375109, + 45.510782 + ], + [ + -73.375141, + 45.51067 + ], + [ + -73.375153, + 45.510548 + ], + [ + -73.375148, + 45.510427 + ], + [ + -73.375124, + 45.510301 + ], + [ + -73.375099, + 45.510225 + ], + [ + -73.375083, + 45.510175 + ], + [ + -73.375023, + 45.510049 + ], + [ + -73.374952, + 45.509923 + ], + [ + -73.374866, + 45.509797 + ], + [ + -73.374765, + 45.509675 + ], + [ + -73.374649, + 45.509554 + ], + [ + -73.374517, + 45.509441 + ], + [ + -73.374091, + 45.50913 + ], + [ + -73.373634, + 45.508918 + ], + [ + -73.373366, + 45.508787 + ], + [ + -73.373092, + 45.508616 + ], + [ + -73.372808, + 45.508386 + ], + [ + -73.372681, + 45.508256 + ], + [ + -73.37257, + 45.508112 + ], + [ + -73.372476, + 45.507967 + ], + [ + -73.3724, + 45.507819 + ], + [ + -73.372343, + 45.507679 + ], + [ + -73.372306, + 45.507517 + ], + [ + -73.372287, + 45.507369 + ], + [ + -73.372226, + 45.506676 + ], + [ + -73.372198, + 45.50623 + ], + [ + -73.372124, + 45.50556 + ], + [ + -73.372243, + 45.505043 + ], + [ + -73.372302, + 45.504692 + ], + [ + -73.372354, + 45.504449 + ], + [ + -73.372503, + 45.503954 + ], + [ + -73.372655, + 45.503576 + ], + [ + -73.373011, + 45.502875 + ], + [ + -73.373173, + 45.502587 + ], + [ + -73.37323, + 45.502511 + ], + [ + -73.373299, + 45.502439 + ], + [ + -73.373386, + 45.502385 + ], + [ + -73.373485, + 45.50234 + ], + [ + -73.37359, + 45.502313 + ], + [ + -73.373645, + 45.502304 + ], + [ + -73.37369, + 45.5023 + ], + [ + -73.37385, + 45.502305 + ], + [ + -73.373969, + 45.502327 + ], + [ + -73.374235, + 45.502395 + ], + [ + -73.374326, + 45.502409 + ], + [ + -73.374466, + 45.502454 + ], + [ + -73.374786, + 45.50253 + ], + [ + -73.375092, + 45.502612 + ], + [ + -73.375264, + 45.502648 + ], + [ + -73.375427, + 45.502684 + ], + [ + -73.375574, + 45.502747 + ], + [ + -73.376319, + 45.503059 + ], + [ + -73.376016, + 45.503247 + ], + [ + -73.375972, + 45.503274 + ], + [ + -73.375789, + 45.503416 + ], + [ + -73.375698, + 45.503485 + ], + [ + -73.375447, + 45.503715 + ], + [ + -73.375293, + 45.503854 + ], + [ + -73.37517, + 45.50398 + ], + [ + -73.374998, + 45.504213 + ], + [ + -73.374854, + 45.504429 + ], + [ + -73.374722, + 45.5046 + ], + [ + -73.374697, + 45.504635 + ], + [ + -73.374625, + 45.504735 + ], + [ + -73.374598, + 45.504793 + ], + [ + -73.374583, + 45.504843 + ], + [ + -73.374565, + 45.504919 + ], + [ + -73.374581, + 45.50514 + ], + [ + -73.37462, + 45.505338 + ], + [ + -73.374746, + 45.505563 + ], + [ + -73.374844, + 45.505788 + ], + [ + -73.374851, + 45.505799 + ], + [ + -73.374873, + 45.505837 + ], + [ + -73.374918, + 45.505916 + ], + [ + -73.374951, + 45.505973 + ], + [ + -73.375061, + 45.506067 + ], + [ + -73.375295, + 45.506238 + ], + [ + -73.375424, + 45.506333 + ], + [ + -73.375748, + 45.506597 + ], + [ + -73.375784, + 45.506626 + ], + [ + -73.375859, + 45.506698 + ], + [ + -73.375911, + 45.506761 + ], + [ + -73.375985, + 45.506896 + ], + [ + -73.376046, + 45.507022 + ], + [ + -73.376084, + 45.507108 + ], + [ + -73.376268, + 45.507459 + ], + [ + -73.376298, + 45.507513 + ], + [ + -73.376345, + 45.507576 + ], + [ + -73.3764, + 45.507639 + ], + [ + -73.376512, + 45.507729 + ], + [ + -73.376632, + 45.507801 + ], + [ + -73.376837, + 45.507891 + ], + [ + -73.376868, + 45.507902 + ], + [ + -73.376914, + 45.507917 + ], + [ + -73.377114, + 45.507982 + ], + [ + -73.377442, + 45.508081 + ], + [ + -73.377571, + 45.508108 + ], + [ + -73.377699, + 45.508135 + ], + [ + -73.377779, + 45.508144 + ], + [ + -73.377878, + 45.50815 + ], + [ + -73.377933, + 45.508153 + ], + [ + -73.378119, + 45.508163 + ], + [ + -73.378452, + 45.508145 + ], + [ + -73.378562, + 45.50814 + ], + [ + -73.378926, + 45.508124 + ], + [ + -73.379147, + 45.508114 + ], + [ + -73.3793, + 45.508105 + ], + [ + -73.379404, + 45.508091 + ], + [ + -73.379526, + 45.508074 + ], + [ + -73.379622, + 45.508047 + ], + [ + -73.379724, + 45.508025 + ], + [ + -73.379863, + 45.507975 + ], + [ + -73.380059, + 45.50789 + ], + [ + -73.380179, + 45.507823 + ], + [ + -73.380268, + 45.507759 + ], + [ + -73.380399, + 45.507666 + ], + [ + -73.380422, + 45.507648 + ], + [ + -73.380503, + 45.507585 + ], + [ + -73.380626, + 45.507481 + ], + [ + -73.380959, + 45.507647 + ], + [ + -73.38128, + 45.507806 + ], + [ + -73.380619, + 45.508917 + ], + [ + -73.380471, + 45.509177 + ], + [ + -73.380338, + 45.509474 + ], + [ + -73.380312, + 45.5096 + ], + [ + -73.380265, + 45.50983 + ], + [ + -73.380243, + 45.510001 + ], + [ + -73.380243, + 45.510041 + ], + [ + -73.380292, + 45.510284 + ], + [ + -73.380332, + 45.510388 + ], + [ + -73.380377, + 45.510478 + ], + [ + -73.380512, + 45.51068 + ], + [ + -73.3806, + 45.510779 + ], + [ + -73.380706, + 45.510874 + ], + [ + -73.380825, + 45.510964 + ], + [ + -73.380962, + 45.511045 + ], + [ + -73.381113, + 45.511117 + ], + [ + -73.381279, + 45.511176 + ], + [ + -73.381458, + 45.511217 + ], + [ + -73.381649, + 45.511244 + ], + [ + -73.38185, + 45.511257 + ], + [ + -73.382059, + 45.511258 + ], + [ + -73.382278, + 45.511249 + ], + [ + -73.383255, + 45.51116 + ], + [ + -73.386918, + 45.510876 + ], + [ + -73.388705, + 45.510769 + ], + [ + -73.390511, + 45.510672 + ], + [ + -73.391744, + 45.51057 + ], + [ + -73.392277, + 45.510503 + ], + [ + -73.393587, + 45.510437 + ], + [ + -73.396575, + 45.510246 + ], + [ + -73.416479, + 45.508939 + ], + [ + -73.422517, + 45.50853 + ], + [ + -73.424264, + 45.508396 + ], + [ + -73.424552, + 45.508369 + ], + [ + -73.425839, + 45.508343 + ], + [ + -73.427203, + 45.508276 + ], + [ + -73.430462, + 45.508094 + ], + [ + -73.430498, + 45.508091 + ], + [ + -73.431368, + 45.508031 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431709, + 45.508009 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.432209, + 45.507974 + ], + [ + -73.435178, + 45.507773 + ], + [ + -73.437575, + 45.507662 + ], + [ + -73.438988, + 45.507572 + ], + [ + -73.440344, + 45.507425 + ], + [ + -73.445881, + 45.507063 + ], + [ + -73.452257, + 45.506638 + ], + [ + -73.452565, + 45.506616 + ], + [ + -73.453776, + 45.50654 + ], + [ + -73.455247, + 45.506419 + ], + [ + -73.456957, + 45.50624 + ], + [ + -73.460279, + 45.505832 + ], + [ + -73.460374, + 45.505823 + ], + [ + -73.461182, + 45.505728 + ], + [ + -73.463671, + 45.505509 + ], + [ + -73.465111, + 45.505401 + ], + [ + -73.467755, + 45.505222 + ], + [ + -73.468692, + 45.505168 + ], + [ + -73.470746, + 45.505025 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492935, + 45.510116 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497942, + 45.512059 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.500628, + 45.512866 + ], + [ + -73.500836, + 45.512931 + ], + [ + -73.502033, + 45.513303 + ], + [ + -73.505335, + 45.514355 + ], + [ + -73.505365, + 45.514365 + ], + [ + -73.507293, + 45.514976 + ], + [ + -73.50757, + 45.515057 + ], + [ + -73.508383, + 45.515323 + ], + [ + -73.509009, + 45.515606 + ], + [ + -73.509231, + 45.515687 + ], + [ + -73.509741, + 45.515862 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515014, + 45.519426 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518906, + 45.520633 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520267, + 45.521193 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.52068, + 45.524093 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.520811, + 45.523427 + ] + ] + }, + "id": 204, + "properties": { + "id": "cbed69e7-e718-4fb6-8b5e-2e2a6798b723", + "data": { + "gtfs": { + "shape_id": "99_2_A" + }, + "segments": [ + { + "distanceMeters": 117, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 660, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 375, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 100, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 385, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 3921, + "travelTimeSeconds": 334 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 14, + "travelTimeSeconds": 1 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 4429, + "travelTimeSeconds": 292 + }, + { + "distanceMeters": 5274, + "travelTimeSeconds": 240 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 1609, + "travelTimeSeconds": 239 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 844, + "travelTimeSeconds": 126 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 318, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 29646, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 13816.863629181675, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.32, + "travelTimeWithoutDwellTimesSeconds": 3180, + "operatingTimeWithLayoverTimeSeconds": 3498, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3180, + "operatingSpeedWithLayoverMetersPerSecond": 8.47, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.32 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d", + "784a98f8-f964-4b51-9a84-d7aa241d6aab", + "a1087eae-a20b-4cd0-b8e7-26440d382937", + "1d0cf396-f4ae-4977-a367-c4cf2be5bc83", + "2b4013fd-f01f-46a6-a43b-07ee39c8fae1", + "23cec068-5e76-484b-b2ab-203e4ea55358", + "57a91181-2fc4-4e39-a5bf-0ff47bbe6e9b", + "b1b9e3d8-602d-45b4-ae3c-162955cba188", + "e39d2286-4090-4933-a88a-16d850b1afef", + "44828ff3-a75f-403d-9e17-7e902c4620b9", + "5f32a25e-7895-498c-b5cd-182adcfb40dd", + "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", + "0893f164-19ee-46d7-888c-b2f0ceb4c706", + "4f0816d5-67e0-4d4d-9413-6e045052da5f", + "e3c142cf-278c-41ec-b9f5-dff43803109b", + "6b369192-79e8-4382-aaa0-abddf0da08d7", + "93fcd4a5-ee80-4c79-b0bc-547231801133", + "3bbcea32-d474-49cc-8cd8-d77d2bac6158", + "b476282d-aa8d-4826-8ad2-39123a162025", + "39a7153a-bac3-4ac2-84e3-79ec24465317", + "2c952684-5d97-4238-ae18-51cba6c9775e", + "819e2afa-bfef-47b3-8a41-a55f4c2f9156", + "0dae6aad-c792-48fd-a50b-e498ec730741", + "664c0430-a4fa-4f7d-aa9b-f0bfd0ecd1e4", + "87b33360-b2b6-4448-85dd-00bcc2d6204c", + "6a18cdcb-7d78-46ad-a358-7895b3877421", + "bc16cbaa-5a30-48f3-9330-5ee7ec0441a1", + "33779f20-bdd2-4c97-8c57-e7f88093dfb0", + "5ee81343-27a6-4a75-a9d6-cfd2443e5ca4", + "202ead47-deaa-405e-b65f-b1c0ac914072", + "a559ed96-e206-444a-b3b1-e1eedefb1ccd", + "b8cfafe3-b6a4-49f2-a7bb-9ae8933f001e", + "ea96e923-e899-4f40-b55b-0ec5bd72c618", + "4511e120-86db-4b9f-bbc5-ef3d3a1627fd", + "57420416-a1c5-4dd0-bce2-fccdbb41630a", + "ab32c22a-056a-40bc-bb99-58c049d50498", + "d4b97f89-0d15-4037-9293-a46292a3b826", + "a5fa3371-93c4-47f9-8972-32a538fcab1f", + "c144cdde-b47b-40cf-b640-e6399771f99b", + "a34242f1-b39e-4075-8b98-da7cc20aa985", + "16815d0a-9758-4c90-a572-66e1110e9895", + "bb60f9d1-ae1a-4b44-81e5-f918c5a03052", + "a4342529-2476-4d58-89df-3af5cc46b2ed", + "847391f5-cdd6-49af-ac72-f7b987f65b7f", + "72167429-f4d5-4eda-870a-b71c9c47ec5e", + "515b8790-77c6-4a3b-8347-a621b1167870", + "9f66e075-701a-442d-9c89-3fee641e6ceb", + "d6901f53-cd66-4086-8fc5-2643b6cfcce0", + "1903cbec-a898-4d1e-aa47-0930a7af3bd5", + "5c28c22e-79f1-4a2c-9171-d9cc96f1af7d", + "0910a11d-1b83-4a5b-9c01-30b9a6d926ef", + "4c4fb532-1ed3-4dc8-ab02-b2a6e87e7b90", + "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", + "01e0bcb2-ac63-4c88-b110-c273905a1d5c", + "2c8a6d09-2eb8-47e3-86bb-ac6501351f3b", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "acabc807-b0f5-4579-b183-cef0484a7cc2" + ], + "stops": [], + "line_id": "c2ab17fa-7d98-4a1d-9fed-26a95aea0b7e", + "segments": [ + 0, + 5, + 41, + 54, + 60, + 67, + 77, + 82, + 96, + 107, + 120, + 125, + 128, + 130, + 135, + 138, + 142, + 149, + 154, + 159, + 164, + 168, + 176, + 183, + 187, + 195, + 198, + 203, + 208, + 214, + 220, + 222, + 230, + 238, + 247, + 259, + 263, + 273, + 276, + 278, + 280, + 284, + 286, + 293, + 302, + 307, + 316, + 320, + 339, + 344, + 353, + 355, + 445, + 462, + 464, + 495, + 507, + 550, + 606, + 619, + 654, + 661 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 204, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.343677, + 45.513165 + ], + [ + -73.34367, + 45.513061 + ], + [ + -73.343642, + 45.512791 + ], + [ + -73.343612, + 45.512647 + ], + [ + -73.343567, + 45.512534 + ], + [ + -73.343389, + 45.512141 + ], + [ + -73.343354, + 45.512062 + ], + [ + -73.343097, + 45.5121 + ], + [ + -73.343038, + 45.512092 + ], + [ + -73.342894, + 45.512074 + ], + [ + -73.342741, + 45.512043 + ], + [ + -73.342629, + 45.512011 + ], + [ + -73.342349, + 45.511934 + ], + [ + -73.341938, + 45.511803 + ], + [ + -73.341736, + 45.511731 + ], + [ + -73.341412, + 45.51159 + ], + [ + -73.341146, + 45.511475 + ], + [ + -73.341122, + 45.511465 + ], + [ + -73.340633, + 45.511225 + ], + [ + -73.340296, + 45.511027 + ], + [ + -73.340118, + 45.510905 + ], + [ + -73.340029, + 45.510841 + ], + [ + -73.33993, + 45.51077 + ], + [ + -73.339787, + 45.510662 + ], + [ + -73.33958, + 45.5105 + ], + [ + -73.339426, + 45.510378 + ], + [ + -73.33923, + 45.510225 + ], + [ + -73.339011, + 45.510053 + ], + [ + -73.338812, + 45.5099 + ], + [ + -73.338649, + 45.509765 + ], + [ + -73.338438, + 45.509603 + ], + [ + -73.338251, + 45.509472 + ], + [ + -73.338077, + 45.509382 + ], + [ + -73.337875, + 45.5093 + ], + [ + -73.337654, + 45.509233 + ], + [ + -73.337473, + 45.509192 + ], + [ + -73.337253, + 45.509165 + ], + [ + -73.337049, + 45.509155 + ], + [ + -73.336952, + 45.509157 + ], + [ + -73.336939, + 45.509159 + ], + [ + -73.336547, + 45.509188 + ], + [ + -73.336515, + 45.509192 + ], + [ + -73.336225, + 45.509224 + ], + [ + -73.33614, + 45.509238 + ], + [ + -73.336059, + 45.509261 + ], + [ + -73.335984, + 45.509292 + ], + [ + -73.335916, + 45.509331 + ], + [ + -73.335544, + 45.509572 + ], + [ + -73.335336, + 45.509723 + ], + [ + -73.335253, + 45.509783 + ], + [ + -73.33485, + 45.510077 + ], + [ + -73.334454, + 45.510366 + ], + [ + -73.334013, + 45.510683 + ], + [ + -73.333664, + 45.510909 + ], + [ + -73.333081, + 45.511289 + ], + [ + -73.332968, + 45.511363 + ], + [ + -73.332471, + 45.511692 + ], + [ + -73.332065, + 45.51196 + ], + [ + -73.331778, + 45.512149 + ], + [ + -73.331385, + 45.512407 + ], + [ + -73.33106, + 45.512615 + ], + [ + -73.330794, + 45.512786 + ], + [ + -73.330507, + 45.512975 + ], + [ + -73.32972, + 45.513518 + ], + [ + -73.32948, + 45.513693 + ], + [ + -73.329221, + 45.51389 + ], + [ + -73.32877, + 45.514101 + ], + [ + -73.328632, + 45.514161 + ], + [ + -73.328456, + 45.514236 + ], + [ + -73.328284, + 45.514321 + ], + [ + -73.327945, + 45.514388 + ], + [ + -73.32769, + 45.514424 + ], + [ + -73.326299, + 45.514534 + ], + [ + -73.325842, + 45.514565 + ], + [ + -73.325331, + 45.514602 + ], + [ + -73.324882, + 45.514635 + ], + [ + -73.324037, + 45.514697 + ], + [ + -73.323935, + 45.514703 + ], + [ + -73.323824, + 45.514709 + ], + [ + -73.32364, + 45.514723 + ], + [ + -73.322784, + 45.514785 + ], + [ + -73.320491, + 45.514943 + ], + [ + -73.320313, + 45.514954 + ], + [ + -73.320068, + 45.51497 + ], + [ + -73.319813, + 45.514987 + ], + [ + -73.319504, + 45.515014 + ], + [ + -73.31929, + 45.515022 + ], + [ + -73.319076, + 45.51504 + ], + [ + -73.318751, + 45.515062 + ], + [ + -73.318468, + 45.515075 + ], + [ + -73.318303, + 45.515085 + ], + [ + -73.318161, + 45.515093 + ], + [ + -73.317967, + 45.515098 + ], + [ + -73.317909, + 45.5151 + ], + [ + -73.317815, + 45.515109 + ], + [ + -73.317711, + 45.515131 + ], + [ + -73.317676, + 45.515131 + ], + [ + -73.317558, + 45.515133 + ], + [ + -73.317556, + 45.51535 + ], + [ + -73.317556, + 45.515379 + ], + [ + -73.317555, + 45.515401 + ], + [ + -73.317518, + 45.516504 + ], + [ + -73.317461, + 45.516823 + ], + [ + -73.317399, + 45.517358 + ], + [ + -73.31739, + 45.517605 + ], + [ + -73.317378, + 45.517798 + ], + [ + -73.31736, + 45.518111 + ], + [ + -73.317348, + 45.518295 + ], + [ + -73.317339, + 45.518442 + ], + [ + -73.31733, + 45.518584 + ], + [ + -73.317374, + 45.51884 + ], + [ + -73.317442, + 45.519063 + ], + [ + -73.317668, + 45.519485 + ], + [ + -73.317719, + 45.519565 + ], + [ + -73.317762, + 45.519631 + ], + [ + -73.318032, + 45.519996 + ], + [ + -73.318144, + 45.52016 + ], + [ + -73.318342, + 45.520362 + ], + [ + -73.318461, + 45.520393 + ], + [ + -73.318552, + 45.520474 + ], + [ + -73.318639, + 45.520551 + ], + [ + -73.318732, + 45.520632 + ], + [ + -73.318986, + 45.520847 + ], + [ + -73.319781, + 45.521516 + ], + [ + -73.32099, + 45.522525 + ], + [ + -73.321254, + 45.522753 + ], + [ + -73.321325, + 45.522814 + ], + [ + -73.322064, + 45.52344 + ], + [ + -73.322913, + 45.524157 + ], + [ + -73.323443, + 45.524603 + ], + [ + -73.324419, + 45.525429 + ], + [ + -73.324477, + 45.525478 + ], + [ + -73.324515, + 45.525523 + ], + [ + -73.325411, + 45.526298 + ], + [ + -73.325817, + 45.526587 + ], + [ + -73.326449, + 45.527068 + ], + [ + -73.326635, + 45.527209 + ], + [ + -73.327746, + 45.528029 + ], + [ + -73.328049, + 45.528244 + ], + [ + -73.328159, + 45.528322 + ], + [ + -73.328691, + 45.528715 + ], + [ + -73.330009, + 45.529693 + ], + [ + -73.330637, + 45.530163 + ], + [ + -73.330761, + 45.530256 + ], + [ + -73.330825, + 45.530292 + ], + [ + -73.331492, + 45.529797 + ], + [ + -73.331877, + 45.529511 + ], + [ + -73.331967, + 45.529457 + ], + [ + -73.332637, + 45.528977 + ], + [ + -73.332866, + 45.528823 + ], + [ + -73.333063, + 45.528692 + ], + [ + -73.333275, + 45.52855 + ], + [ + -73.333439, + 45.528436 + ], + [ + -73.333788, + 45.528191 + ], + [ + -73.334535, + 45.527695 + ], + [ + -73.334545, + 45.527688 + ], + [ + -73.334622, + 45.527643 + ], + [ + -73.334776, + 45.527545 + ], + [ + -73.335456, + 45.527046 + ], + [ + -73.336098, + 45.526556 + ], + [ + -73.336249, + 45.52644 + ], + [ + -73.336573, + 45.52618 + ], + [ + -73.337228, + 45.52569 + ], + [ + -73.337669, + 45.525344 + ], + [ + -73.338066, + 45.525056 + ], + [ + -73.338368, + 45.524837 + ], + [ + -73.339197, + 45.525405 + ], + [ + -73.339713, + 45.525764 + ], + [ + -73.339811, + 45.525833 + ], + [ + -73.340005, + 45.525968 + ], + [ + -73.340357, + 45.526185 + ], + [ + -73.340568, + 45.526316 + ], + [ + -73.340738, + 45.526442 + ], + [ + -73.341034, + 45.526636 + ], + [ + -73.341462, + 45.526915 + ], + [ + -73.34183, + 45.527172 + ], + [ + -73.341931, + 45.527253 + ], + [ + -73.341994, + 45.527303 + ], + [ + -73.342074, + 45.527389 + ], + [ + -73.341972, + 45.527469 + ], + [ + -73.341594, + 45.527797 + ], + [ + -73.341101, + 45.528233 + ], + [ + -73.341005, + 45.528323 + ], + [ + -73.340914, + 45.528408 + ], + [ + -73.340784, + 45.52853 + ], + [ + -73.340213, + 45.529055 + ], + [ + -73.339969, + 45.529289 + ], + [ + -73.339869, + 45.529374 + ], + [ + -73.339738, + 45.529486 + ], + [ + -73.340316, + 45.529904 + ], + [ + -73.340388, + 45.529956 + ], + [ + -73.340412, + 45.529974 + ], + [ + -73.341348, + 45.530649 + ], + [ + -73.341671, + 45.530886 + ], + [ + -73.34171, + 45.530915 + ], + [ + -73.342548, + 45.531528 + ], + [ + -73.34266, + 45.53161 + ], + [ + -73.342742, + 45.531673 + ], + [ + -73.345759, + 45.533862 + ], + [ + -73.34588, + 45.533949 + ], + [ + -73.346177, + 45.534156 + ], + [ + -73.346943, + 45.534715 + ], + [ + -73.347187, + 45.5349 + ], + [ + -73.347431, + 45.535038 + ], + [ + -73.347547, + 45.535103 + ], + [ + -73.347857, + 45.535261 + ], + [ + -73.348456, + 45.53559 + ], + [ + -73.348803, + 45.535802 + ], + [ + -73.348999, + 45.535933 + ], + [ + -73.349066, + 45.535978 + ], + [ + -73.349411, + 45.536275 + ], + [ + -73.349756, + 45.536582 + ], + [ + -73.350274, + 45.537136 + ], + [ + -73.350577, + 45.537487 + ], + [ + -73.350671, + 45.537596 + ], + [ + -73.350743, + 45.537681 + ], + [ + -73.350799, + 45.537748 + ], + [ + -73.351092, + 45.537645 + ], + [ + -73.351237, + 45.53761 + ], + [ + -73.351597, + 45.537552 + ], + [ + -73.351624, + 45.538143 + ], + [ + -73.351634, + 45.538348 + ], + [ + -73.351725, + 45.540234 + ], + [ + -73.351731, + 45.540355 + ], + [ + -73.352072, + 45.540349 + ], + [ + -73.352742, + 45.540338 + ], + [ + -73.3537, + 45.540317 + ], + [ + -73.354369, + 45.540304 + ], + [ + -73.354373, + 45.5403 + ], + [ + -73.354728, + 45.540161 + ], + [ + -73.354784, + 45.540132 + ], + [ + -73.354958, + 45.540044 + ], + [ + -73.355561, + 45.539685 + ], + [ + -73.355856, + 45.539514 + ], + [ + -73.35601, + 45.539397 + ], + [ + -73.356049, + 45.53937 + ], + [ + -73.356087, + 45.539334 + ], + [ + -73.356151, + 45.539281 + ], + [ + -73.35618, + 45.539252 + ], + [ + -73.356215, + 45.539218 + ], + [ + -73.356254, + 45.539173 + ], + [ + -73.356267, + 45.539146 + ], + [ + -73.356318, + 45.539011 + ], + [ + -73.35637, + 45.538876 + ], + [ + -73.356333, + 45.538462 + ], + [ + -73.35632, + 45.5383 + ], + [ + -73.356334, + 45.538084 + ], + [ + -73.356384, + 45.53791 + ], + [ + -73.356385, + 45.537904 + ], + [ + -73.356488, + 45.537706 + ], + [ + -73.356386, + 45.537688 + ], + [ + -73.356194, + 45.537616 + ], + [ + -73.356138, + 45.537582 + ], + [ + -73.356028, + 45.537517 + ], + [ + -73.35581, + 45.537381 + ], + [ + -73.355606, + 45.537228 + ], + [ + -73.354978, + 45.536786 + ], + [ + -73.354672, + 45.536579 + ], + [ + -73.35439, + 45.536363 + ], + [ + -73.354342, + 45.536329 + ], + [ + -73.354237, + 45.536255 + ], + [ + -73.354085, + 45.536133 + ], + [ + -73.353353, + 45.535601 + ], + [ + -73.35292, + 45.535293 + ], + [ + -73.352814, + 45.535218 + ], + [ + -73.352683, + 45.535132 + ], + [ + -73.352431, + 45.534966 + ], + [ + -73.352156, + 45.534794 + ], + [ + -73.351899, + 45.534632 + ], + [ + -73.351631, + 45.534461 + ], + [ + -73.351414, + 45.534325 + ], + [ + -73.351196, + 45.534181 + ], + [ + -73.350966, + 45.53401 + ], + [ + -73.350903, + 45.533966 + ], + [ + -73.350778, + 45.533879 + ], + [ + -73.350008, + 45.533298 + ], + [ + -73.348915, + 45.532503 + ], + [ + -73.348768, + 45.532396 + ], + [ + -73.347298, + 45.5313 + ], + [ + -73.346954, + 45.531044 + ], + [ + -73.345599, + 45.530065 + ], + [ + -73.345369, + 45.529899 + ], + [ + -73.345813, + 45.52961 + ], + [ + -73.346177, + 45.529374 + ], + [ + -73.347158, + 45.528674 + ], + [ + -73.347279, + 45.528588 + ], + [ + -73.348093, + 45.528061 + ], + [ + -73.348499, + 45.527798 + ], + [ + -73.349319, + 45.52725 + ], + [ + -73.350087, + 45.526724 + ], + [ + -73.350285, + 45.52659 + ], + [ + -73.350534, + 45.526433 + ], + [ + -73.350958, + 45.526271 + ], + [ + -73.350985, + 45.526261 + ], + [ + -73.351151, + 45.526199 + ], + [ + -73.351917, + 45.525931 + ], + [ + -73.351851, + 45.525827 + ], + [ + -73.351836, + 45.525786 + ], + [ + -73.351798, + 45.525714 + ], + [ + -73.351721, + 45.525594 + ], + [ + -73.351697, + 45.525557 + ], + [ + -73.3516, + 45.525453 + ], + [ + -73.351587, + 45.525442 + ], + [ + -73.351479, + 45.52535 + ], + [ + -73.351402, + 45.525286 + ], + [ + -73.350822, + 45.524876 + ], + [ + -73.349891, + 45.524214 + ], + [ + -73.349706, + 45.524082 + ], + [ + -73.349594, + 45.524002 + ], + [ + -73.349337, + 45.523831 + ], + [ + -73.348978, + 45.523614 + ], + [ + -73.348701, + 45.523497 + ], + [ + -73.348489, + 45.52342 + ], + [ + -73.348302, + 45.523361 + ], + [ + -73.348012, + 45.523289 + ], + [ + -73.347832, + 45.523257 + ], + [ + -73.347724, + 45.523246 + ], + [ + -73.347705, + 45.523243 + ], + [ + -73.347547, + 45.523225 + ], + [ + -73.346648, + 45.523103 + ], + [ + -73.346491, + 45.523081 + ], + [ + -73.346291, + 45.523053 + ], + [ + -73.346291, + 45.52285 + ], + [ + -73.346292, + 45.522634 + ], + [ + -73.346292, + 45.522585 + ], + [ + -73.346288, + 45.52231 + ], + [ + -73.346287, + 45.522153 + ], + [ + -73.346275, + 45.522009 + ], + [ + -73.346262, + 45.52182 + ], + [ + -73.346237, + 45.521631 + ], + [ + -73.346225, + 45.521478 + ], + [ + -73.346184, + 45.521289 + ], + [ + -73.346149, + 45.521073 + ], + [ + -73.346136, + 45.521001 + ], + [ + -73.346124, + 45.520929 + ], + [ + -73.346124, + 45.520857 + ], + [ + -73.346124, + 45.520785 + ], + [ + -73.346137, + 45.520677 + ], + [ + -73.346163, + 45.520569 + ], + [ + -73.346174, + 45.52052 + ], + [ + -73.346222, + 45.520303 + ], + [ + -73.346306, + 45.519804 + ], + [ + -73.346397, + 45.519174 + ], + [ + -73.346424, + 45.518967 + ], + [ + -73.346438, + 45.518725 + ], + [ + -73.34645, + 45.518527 + ], + [ + -73.345381, + 45.518517 + ], + [ + -73.344748, + 45.518511 + ], + [ + -73.344537, + 45.51843 + ], + [ + -73.34438, + 45.518344 + ], + [ + -73.344264, + 45.518227 + ], + [ + -73.344137, + 45.518006 + ], + [ + -73.344045, + 45.516998 + ], + [ + -73.344008, + 45.516632 + ], + [ + -73.343805, + 45.514586 + ], + [ + -73.343782, + 45.514393 + ], + [ + -73.343763, + 45.514238 + ], + [ + -73.343701, + 45.513718 + ], + [ + -73.343799, + 45.513709 + ], + [ + -73.357647, + 45.512814 + ], + [ + -73.358491, + 45.512756 + ], + [ + -73.359423, + 45.512694 + ], + [ + -73.359555, + 45.512681 + ], + [ + -73.360882, + 45.512602 + ], + [ + -73.36168, + 45.512531 + ], + [ + -73.362369, + 45.512441 + ], + [ + -73.363202, + 45.512325 + ], + [ + -73.364624, + 45.512098 + ], + [ + -73.366158, + 45.511879 + ], + [ + -73.367686, + 45.511615 + ], + [ + -73.367934, + 45.51158 + ], + [ + -73.368481, + 45.511535 + ], + [ + -73.368699, + 45.511527 + ], + [ + -73.369078, + 45.51155 + ], + [ + -73.370401, + 45.511691 + ], + [ + -73.370685, + 45.511713 + ], + [ + -73.370961, + 45.511723 + ], + [ + -73.371234, + 45.511723 + ], + [ + -73.371918, + 45.511719 + ], + [ + -73.373195, + 45.511581 + ], + [ + -73.373585, + 45.511546 + ], + [ + -73.373778, + 45.511519 + ], + [ + -73.374154, + 45.511452 + ], + [ + -73.374325, + 45.511398 + ], + [ + -73.374487, + 45.51134 + ], + [ + -73.374637, + 45.511272 + ], + [ + -73.374771, + 45.511191 + ], + [ + -73.374884, + 45.511102 + ], + [ + -73.374978, + 45.511003 + ], + [ + -73.375051, + 45.510895 + ], + [ + -73.375109, + 45.510782 + ], + [ + -73.375141, + 45.51067 + ], + [ + -73.375153, + 45.510548 + ], + [ + -73.375148, + 45.510427 + ], + [ + -73.375124, + 45.510301 + ], + [ + -73.375099, + 45.510225 + ], + [ + -73.375083, + 45.510175 + ], + [ + -73.375023, + 45.510049 + ], + [ + -73.374952, + 45.509923 + ], + [ + -73.374866, + 45.509797 + ], + [ + -73.374765, + 45.509675 + ], + [ + -73.374649, + 45.509554 + ], + [ + -73.374517, + 45.509441 + ], + [ + -73.374091, + 45.50913 + ], + [ + -73.373634, + 45.508918 + ], + [ + -73.373366, + 45.508787 + ], + [ + -73.373092, + 45.508616 + ], + [ + -73.372808, + 45.508386 + ], + [ + -73.372681, + 45.508256 + ], + [ + -73.37257, + 45.508112 + ], + [ + -73.372476, + 45.507967 + ], + [ + -73.3724, + 45.507819 + ], + [ + -73.372343, + 45.507679 + ], + [ + -73.372306, + 45.507517 + ], + [ + -73.372287, + 45.507369 + ], + [ + -73.372226, + 45.506676 + ], + [ + -73.372198, + 45.50623 + ], + [ + -73.372124, + 45.50556 + ], + [ + -73.372243, + 45.505043 + ], + [ + -73.372302, + 45.504692 + ], + [ + -73.372354, + 45.504449 + ], + [ + -73.372503, + 45.503954 + ], + [ + -73.372655, + 45.503576 + ], + [ + -73.373011, + 45.502875 + ], + [ + -73.373173, + 45.502587 + ], + [ + -73.37323, + 45.502511 + ], + [ + -73.373299, + 45.502439 + ], + [ + -73.373386, + 45.502385 + ], + [ + -73.373485, + 45.50234 + ], + [ + -73.37359, + 45.502313 + ], + [ + -73.373645, + 45.502304 + ], + [ + -73.37369, + 45.5023 + ], + [ + -73.37385, + 45.502305 + ], + [ + -73.373969, + 45.502327 + ], + [ + -73.374235, + 45.502395 + ], + [ + -73.374326, + 45.502409 + ], + [ + -73.374466, + 45.502454 + ], + [ + -73.374786, + 45.50253 + ], + [ + -73.375092, + 45.502612 + ], + [ + -73.375264, + 45.502648 + ], + [ + -73.375427, + 45.502684 + ], + [ + -73.375574, + 45.502747 + ], + [ + -73.376319, + 45.503059 + ], + [ + -73.376016, + 45.503247 + ], + [ + -73.375972, + 45.503274 + ], + [ + -73.375789, + 45.503416 + ], + [ + -73.375698, + 45.503485 + ], + [ + -73.375447, + 45.503715 + ], + [ + -73.375293, + 45.503854 + ], + [ + -73.37517, + 45.50398 + ], + [ + -73.374998, + 45.504213 + ], + [ + -73.374854, + 45.504429 + ], + [ + -73.374722, + 45.5046 + ], + [ + -73.374697, + 45.504635 + ], + [ + -73.374625, + 45.504735 + ], + [ + -73.374598, + 45.504793 + ], + [ + -73.374583, + 45.504843 + ], + [ + -73.374565, + 45.504919 + ], + [ + -73.374581, + 45.50514 + ], + [ + -73.37462, + 45.505338 + ], + [ + -73.374746, + 45.505563 + ], + [ + -73.374844, + 45.505788 + ], + [ + -73.374851, + 45.505799 + ], + [ + -73.374873, + 45.505837 + ], + [ + -73.374918, + 45.505916 + ], + [ + -73.374951, + 45.505973 + ], + [ + -73.375061, + 45.506067 + ], + [ + -73.375295, + 45.506238 + ], + [ + -73.375424, + 45.506333 + ], + [ + -73.375748, + 45.506597 + ], + [ + -73.375784, + 45.506626 + ], + [ + -73.375859, + 45.506698 + ], + [ + -73.375911, + 45.506761 + ], + [ + -73.375985, + 45.506896 + ], + [ + -73.376046, + 45.507022 + ], + [ + -73.376084, + 45.507108 + ], + [ + -73.376268, + 45.507459 + ], + [ + -73.376298, + 45.507513 + ], + [ + -73.376345, + 45.507576 + ], + [ + -73.3764, + 45.507639 + ], + [ + -73.376512, + 45.507729 + ], + [ + -73.376632, + 45.507801 + ], + [ + -73.376837, + 45.507891 + ], + [ + -73.376868, + 45.507902 + ], + [ + -73.376914, + 45.507917 + ], + [ + -73.377114, + 45.507982 + ], + [ + -73.377442, + 45.508081 + ], + [ + -73.377571, + 45.508108 + ], + [ + -73.377699, + 45.508135 + ], + [ + -73.377779, + 45.508144 + ], + [ + -73.377878, + 45.50815 + ], + [ + -73.377933, + 45.508153 + ], + [ + -73.378119, + 45.508163 + ], + [ + -73.378452, + 45.508145 + ], + [ + -73.378562, + 45.50814 + ], + [ + -73.378926, + 45.508124 + ], + [ + -73.379147, + 45.508114 + ], + [ + -73.3793, + 45.508105 + ], + [ + -73.379404, + 45.508091 + ], + [ + -73.379526, + 45.508074 + ], + [ + -73.379622, + 45.508047 + ], + [ + -73.379724, + 45.508025 + ], + [ + -73.379863, + 45.507975 + ], + [ + -73.380059, + 45.50789 + ], + [ + -73.380179, + 45.507823 + ], + [ + -73.380268, + 45.507759 + ], + [ + -73.380399, + 45.507666 + ], + [ + -73.380422, + 45.507648 + ], + [ + -73.380503, + 45.507585 + ], + [ + -73.380626, + 45.507481 + ], + [ + -73.380959, + 45.507647 + ], + [ + -73.38128, + 45.507806 + ], + [ + -73.380619, + 45.508917 + ], + [ + -73.380471, + 45.509177 + ], + [ + -73.380338, + 45.509474 + ], + [ + -73.380312, + 45.5096 + ], + [ + -73.380265, + 45.50983 + ], + [ + -73.380243, + 45.510001 + ], + [ + -73.380243, + 45.510041 + ], + [ + -73.380292, + 45.510284 + ], + [ + -73.380332, + 45.510388 + ], + [ + -73.380377, + 45.510478 + ], + [ + -73.380512, + 45.51068 + ], + [ + -73.3806, + 45.510779 + ], + [ + -73.380706, + 45.510874 + ], + [ + -73.380825, + 45.510964 + ], + [ + -73.380962, + 45.511045 + ], + [ + -73.381113, + 45.511117 + ], + [ + -73.381279, + 45.511176 + ], + [ + -73.381458, + 45.511217 + ], + [ + -73.381649, + 45.511244 + ], + [ + -73.38185, + 45.511257 + ], + [ + -73.382059, + 45.511258 + ], + [ + -73.382278, + 45.511249 + ], + [ + -73.383255, + 45.51116 + ], + [ + -73.386918, + 45.510876 + ], + [ + -73.388705, + 45.510769 + ], + [ + -73.390511, + 45.510672 + ], + [ + -73.391744, + 45.51057 + ], + [ + -73.392277, + 45.510503 + ], + [ + -73.393587, + 45.510437 + ], + [ + -73.396575, + 45.510246 + ], + [ + -73.416479, + 45.508939 + ], + [ + -73.422517, + 45.50853 + ], + [ + -73.424264, + 45.508396 + ], + [ + -73.424552, + 45.508369 + ], + [ + -73.425839, + 45.508343 + ], + [ + -73.427203, + 45.508276 + ], + [ + -73.430462, + 45.508094 + ], + [ + -73.430498, + 45.508091 + ], + [ + -73.431368, + 45.508031 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431709, + 45.508009 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.432209, + 45.507974 + ], + [ + -73.435178, + 45.507773 + ], + [ + -73.437575, + 45.507662 + ], + [ + -73.438988, + 45.507572 + ], + [ + -73.440344, + 45.507425 + ], + [ + -73.445881, + 45.507063 + ], + [ + -73.452257, + 45.506638 + ], + [ + -73.452565, + 45.506616 + ], + [ + -73.453776, + 45.50654 + ], + [ + -73.455247, + 45.506419 + ], + [ + -73.456957, + 45.50624 + ], + [ + -73.460279, + 45.505832 + ], + [ + -73.460374, + 45.505823 + ], + [ + -73.461182, + 45.505728 + ], + [ + -73.463671, + 45.505509 + ], + [ + -73.465111, + 45.505401 + ], + [ + -73.467755, + 45.505222 + ], + [ + -73.468692, + 45.505168 + ], + [ + -73.470746, + 45.505025 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492935, + 45.510116 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497942, + 45.512059 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.500628, + 45.512866 + ], + [ + -73.500836, + 45.512931 + ], + [ + -73.502033, + 45.513303 + ], + [ + -73.505335, + 45.514355 + ], + [ + -73.505365, + 45.514365 + ], + [ + -73.507293, + 45.514976 + ], + [ + -73.50757, + 45.515057 + ], + [ + -73.508383, + 45.515323 + ], + [ + -73.509009, + 45.515606 + ], + [ + -73.509231, + 45.515687 + ], + [ + -73.509741, + 45.515862 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515014, + 45.519426 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518906, + 45.520633 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520267, + 45.521193 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.52068, + 45.524093 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.520811, + 45.523427 + ] + ] + }, + "id": 205, + "properties": { + "id": "d2c82927-de0f-4420-9fb0-04f0a456a610", + "data": { + "gtfs": { + "shape_id": "99_3_A" + }, + "segments": [ + { + "distanceMeters": 117, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 660, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 375, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 100, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 385, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 3921, + "travelTimeSeconds": 334 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 14, + "travelTimeSeconds": 1 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 4429, + "travelTimeSeconds": 292 + }, + { + "distanceMeters": 5274, + "travelTimeSeconds": 240 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 1609, + "travelTimeSeconds": 209 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 844, + "travelTimeSeconds": 110 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 312, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 29646, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 13816.863629181675, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.5, + "travelTimeWithoutDwellTimesSeconds": 3120, + "operatingTimeWithLayoverTimeSeconds": 3432, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3120, + "operatingSpeedWithLayoverMetersPerSecond": 8.64, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.5 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d", + "784a98f8-f964-4b51-9a84-d7aa241d6aab", + "a1087eae-a20b-4cd0-b8e7-26440d382937", + "1d0cf396-f4ae-4977-a367-c4cf2be5bc83", + "2b4013fd-f01f-46a6-a43b-07ee39c8fae1", + "23cec068-5e76-484b-b2ab-203e4ea55358", + "57a91181-2fc4-4e39-a5bf-0ff47bbe6e9b", + "b1b9e3d8-602d-45b4-ae3c-162955cba188", + "e39d2286-4090-4933-a88a-16d850b1afef", + "44828ff3-a75f-403d-9e17-7e902c4620b9", + "5f32a25e-7895-498c-b5cd-182adcfb40dd", + "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", + "0893f164-19ee-46d7-888c-b2f0ceb4c706", + "4f0816d5-67e0-4d4d-9413-6e045052da5f", + "e3c142cf-278c-41ec-b9f5-dff43803109b", + "6b369192-79e8-4382-aaa0-abddf0da08d7", + "93fcd4a5-ee80-4c79-b0bc-547231801133", + "3bbcea32-d474-49cc-8cd8-d77d2bac6158", + "b476282d-aa8d-4826-8ad2-39123a162025", + "39a7153a-bac3-4ac2-84e3-79ec24465317", + "2c952684-5d97-4238-ae18-51cba6c9775e", + "819e2afa-bfef-47b3-8a41-a55f4c2f9156", + "0dae6aad-c792-48fd-a50b-e498ec730741", + "664c0430-a4fa-4f7d-aa9b-f0bfd0ecd1e4", + "87b33360-b2b6-4448-85dd-00bcc2d6204c", + "6a18cdcb-7d78-46ad-a358-7895b3877421", + "bc16cbaa-5a30-48f3-9330-5ee7ec0441a1", + "33779f20-bdd2-4c97-8c57-e7f88093dfb0", + "5ee81343-27a6-4a75-a9d6-cfd2443e5ca4", + "202ead47-deaa-405e-b65f-b1c0ac914072", + "a559ed96-e206-444a-b3b1-e1eedefb1ccd", + "b8cfafe3-b6a4-49f2-a7bb-9ae8933f001e", + "ea96e923-e899-4f40-b55b-0ec5bd72c618", + "4511e120-86db-4b9f-bbc5-ef3d3a1627fd", + "57420416-a1c5-4dd0-bce2-fccdbb41630a", + "ab32c22a-056a-40bc-bb99-58c049d50498", + "d4b97f89-0d15-4037-9293-a46292a3b826", + "a5fa3371-93c4-47f9-8972-32a538fcab1f", + "c144cdde-b47b-40cf-b640-e6399771f99b", + "a34242f1-b39e-4075-8b98-da7cc20aa985", + "16815d0a-9758-4c90-a572-66e1110e9895", + "bb60f9d1-ae1a-4b44-81e5-f918c5a03052", + "a4342529-2476-4d58-89df-3af5cc46b2ed", + "847391f5-cdd6-49af-ac72-f7b987f65b7f", + "72167429-f4d5-4eda-870a-b71c9c47ec5e", + "515b8790-77c6-4a3b-8347-a621b1167870", + "9f66e075-701a-442d-9c89-3fee641e6ceb", + "d6901f53-cd66-4086-8fc5-2643b6cfcce0", + "1903cbec-a898-4d1e-aa47-0930a7af3bd5", + "5c28c22e-79f1-4a2c-9171-d9cc96f1af7d", + "0910a11d-1b83-4a5b-9c01-30b9a6d926ef", + "4c4fb532-1ed3-4dc8-ab02-b2a6e87e7b90", + "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", + "01e0bcb2-ac63-4c88-b110-c273905a1d5c", + "2c8a6d09-2eb8-47e3-86bb-ac6501351f3b", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "acabc807-b0f5-4579-b183-cef0484a7cc2" + ], + "stops": [], + "line_id": "c2ab17fa-7d98-4a1d-9fed-26a95aea0b7e", + "segments": [ + 0, + 5, + 41, + 54, + 60, + 67, + 77, + 82, + 96, + 107, + 120, + 125, + 128, + 130, + 135, + 138, + 142, + 149, + 154, + 159, + 164, + 168, + 176, + 183, + 187, + 195, + 198, + 203, + 208, + 214, + 220, + 222, + 230, + 238, + 247, + 259, + 263, + 273, + 276, + 278, + 280, + 284, + 286, + 293, + 302, + 307, + 316, + 320, + 339, + 344, + 353, + 355, + 445, + 462, + 464, + 495, + 507, + 550, + 606, + 619, + 654, + 661 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 205, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.343677, + 45.513165 + ], + [ + -73.34367, + 45.513061 + ], + [ + -73.343642, + 45.512791 + ], + [ + -73.343612, + 45.512647 + ], + [ + -73.343567, + 45.512534 + ], + [ + -73.343354, + 45.512062 + ], + [ + -73.343097, + 45.5121 + ], + [ + -73.343038, + 45.512092 + ], + [ + -73.342894, + 45.512074 + ], + [ + -73.342741, + 45.512043 + ], + [ + -73.342629, + 45.512011 + ], + [ + -73.342349, + 45.511934 + ], + [ + -73.341938, + 45.511803 + ], + [ + -73.341736, + 45.511731 + ], + [ + -73.341412, + 45.51159 + ], + [ + -73.341407, + 45.511588 + ], + [ + -73.341146, + 45.511475 + ], + [ + -73.341122, + 45.511465 + ], + [ + -73.340633, + 45.511225 + ], + [ + -73.340296, + 45.511027 + ], + [ + -73.340118, + 45.510905 + ], + [ + -73.340029, + 45.510841 + ], + [ + -73.33993, + 45.51077 + ], + [ + -73.339787, + 45.510662 + ], + [ + -73.33958, + 45.5105 + ], + [ + -73.339426, + 45.510378 + ], + [ + -73.33923, + 45.510225 + ], + [ + -73.339011, + 45.510053 + ], + [ + -73.338812, + 45.5099 + ], + [ + -73.338649, + 45.509765 + ], + [ + -73.338438, + 45.509603 + ], + [ + -73.338251, + 45.509472 + ], + [ + -73.338077, + 45.509382 + ], + [ + -73.337875, + 45.5093 + ], + [ + -73.337654, + 45.509233 + ], + [ + -73.337473, + 45.509192 + ], + [ + -73.337253, + 45.509165 + ], + [ + -73.337049, + 45.509155 + ], + [ + -73.336952, + 45.509157 + ], + [ + -73.336939, + 45.509159 + ], + [ + -73.336547, + 45.509188 + ], + [ + -73.336225, + 45.509224 + ], + [ + -73.33614, + 45.509238 + ], + [ + -73.336059, + 45.509261 + ], + [ + -73.335984, + 45.509292 + ], + [ + -73.335916, + 45.509331 + ], + [ + -73.335544, + 45.509572 + ], + [ + -73.335336, + 45.509723 + ], + [ + -73.335253, + 45.509783 + ], + [ + -73.33485, + 45.510077 + ], + [ + -73.334454, + 45.510366 + ], + [ + -73.334013, + 45.510683 + ], + [ + -73.333664, + 45.510909 + ], + [ + -73.332968, + 45.511363 + ], + [ + -73.332471, + 45.511692 + ], + [ + -73.332065, + 45.51196 + ], + [ + -73.331778, + 45.512149 + ], + [ + -73.331385, + 45.512407 + ], + [ + -73.330794, + 45.512786 + ], + [ + -73.330507, + 45.512975 + ], + [ + -73.32972, + 45.513518 + ], + [ + -73.32948, + 45.513693 + ], + [ + -73.329221, + 45.51389 + ], + [ + -73.32877, + 45.514101 + ], + [ + -73.328456, + 45.514236 + ], + [ + -73.328284, + 45.514321 + ], + [ + -73.327945, + 45.514388 + ], + [ + -73.32769, + 45.514424 + ], + [ + -73.326299, + 45.514534 + ], + [ + -73.325842, + 45.514565 + ], + [ + -73.325331, + 45.514602 + ], + [ + -73.324882, + 45.514635 + ], + [ + -73.324568, + 45.514658 + ], + [ + -73.324037, + 45.514697 + ], + [ + -73.323824, + 45.514709 + ], + [ + -73.32364, + 45.514723 + ], + [ + -73.322784, + 45.514785 + ], + [ + -73.320491, + 45.514943 + ], + [ + -73.320068, + 45.51497 + ], + [ + -73.319813, + 45.514987 + ], + [ + -73.319504, + 45.515014 + ], + [ + -73.31929, + 45.515022 + ], + [ + -73.319076, + 45.51504 + ], + [ + -73.318751, + 45.515062 + ], + [ + -73.318468, + 45.515075 + ], + [ + -73.318303, + 45.515085 + ], + [ + -73.318161, + 45.515093 + ], + [ + -73.317967, + 45.515098 + ], + [ + -73.317909, + 45.5151 + ], + [ + -73.317815, + 45.515109 + ], + [ + -73.317711, + 45.515131 + ], + [ + -73.317558, + 45.515133 + ], + [ + -73.317556, + 45.51535 + ], + [ + -73.317556, + 45.515379 + ], + [ + -73.317555, + 45.515401 + ], + [ + -73.317518, + 45.516504 + ], + [ + -73.317461, + 45.516823 + ], + [ + -73.317399, + 45.517358 + ], + [ + -73.31739, + 45.517605 + ], + [ + -73.317378, + 45.517798 + ], + [ + -73.31736, + 45.518111 + ], + [ + -73.317351, + 45.518261 + ], + [ + -73.317339, + 45.518442 + ], + [ + -73.31733, + 45.518584 + ], + [ + -73.317374, + 45.51884 + ], + [ + -73.317442, + 45.519063 + ], + [ + -73.317668, + 45.519485 + ], + [ + -73.317719, + 45.519565 + ], + [ + -73.317762, + 45.519631 + ], + [ + -73.318032, + 45.519996 + ], + [ + -73.318144, + 45.52016 + ], + [ + -73.318342, + 45.520362 + ], + [ + -73.318461, + 45.520393 + ], + [ + -73.318552, + 45.520474 + ], + [ + -73.318732, + 45.520632 + ], + [ + -73.318986, + 45.520847 + ], + [ + -73.319781, + 45.521516 + ], + [ + -73.320724, + 45.522303 + ], + [ + -73.32099, + 45.522525 + ], + [ + -73.321325, + 45.522814 + ], + [ + -73.322064, + 45.52344 + ], + [ + -73.323443, + 45.524603 + ], + [ + -73.324477, + 45.525478 + ], + [ + -73.324515, + 45.525523 + ], + [ + -73.325411, + 45.526298 + ], + [ + -73.325817, + 45.526587 + ], + [ + -73.325981, + 45.526711 + ], + [ + -73.326635, + 45.527209 + ], + [ + -73.327746, + 45.528029 + ], + [ + -73.328159, + 45.528322 + ], + [ + -73.328691, + 45.528715 + ], + [ + -73.330009, + 45.529693 + ], + [ + -73.330761, + 45.530256 + ], + [ + -73.330825, + 45.530292 + ], + [ + -73.331492, + 45.529797 + ], + [ + -73.331877, + 45.529511 + ], + [ + -73.331967, + 45.529457 + ], + [ + -73.332637, + 45.528977 + ], + [ + -73.333063, + 45.528692 + ], + [ + -73.333275, + 45.52855 + ], + [ + -73.333439, + 45.528436 + ], + [ + -73.333788, + 45.528191 + ], + [ + -73.334301, + 45.52785 + ], + [ + -73.334545, + 45.527688 + ], + [ + -73.334622, + 45.527643 + ], + [ + -73.334776, + 45.527545 + ], + [ + -73.335456, + 45.527046 + ], + [ + -73.336249, + 45.52644 + ], + [ + -73.336573, + 45.52618 + ], + [ + -73.337228, + 45.52569 + ], + [ + -73.337669, + 45.525344 + ], + [ + -73.338368, + 45.524837 + ], + [ + -73.339197, + 45.525405 + ], + [ + -73.339713, + 45.525764 + ], + [ + -73.340005, + 45.525968 + ], + [ + -73.340357, + 45.526185 + ], + [ + -73.340568, + 45.526316 + ], + [ + -73.340631, + 45.526362 + ], + [ + -73.340738, + 45.526442 + ], + [ + -73.341034, + 45.526636 + ], + [ + -73.341462, + 45.526915 + ], + [ + -73.34183, + 45.527172 + ], + [ + -73.341994, + 45.527303 + ], + [ + -73.342074, + 45.527389 + ], + [ + -73.341972, + 45.527469 + ], + [ + -73.341594, + 45.527797 + ], + [ + -73.341101, + 45.528233 + ], + [ + -73.341005, + 45.528323 + ], + [ + -73.340784, + 45.52853 + ], + [ + -73.340213, + 45.529055 + ], + [ + -73.339969, + 45.529289 + ], + [ + -73.339738, + 45.529486 + ], + [ + -73.340258, + 45.529863 + ], + [ + -73.340316, + 45.529904 + ], + [ + -73.340388, + 45.529956 + ], + [ + -73.340412, + 45.529974 + ], + [ + -73.341348, + 45.530649 + ], + [ + -73.341671, + 45.530886 + ], + [ + -73.34171, + 45.530915 + ], + [ + -73.34266, + 45.53161 + ], + [ + -73.342742, + 45.531673 + ], + [ + -73.34588, + 45.533949 + ], + [ + -73.346177, + 45.534156 + ], + [ + -73.346943, + 45.534715 + ], + [ + -73.347187, + 45.5349 + ], + [ + -73.347547, + 45.535103 + ], + [ + -73.347857, + 45.535261 + ], + [ + -73.348425, + 45.535573 + ], + [ + -73.348456, + 45.53559 + ], + [ + -73.348803, + 45.535802 + ], + [ + -73.349066, + 45.535978 + ], + [ + -73.349411, + 45.536275 + ], + [ + -73.349756, + 45.536582 + ], + [ + -73.350274, + 45.537136 + ], + [ + -73.350577, + 45.537487 + ], + [ + -73.350743, + 45.537681 + ], + [ + -73.350799, + 45.537748 + ], + [ + -73.351092, + 45.537645 + ], + [ + -73.351237, + 45.53761 + ], + [ + -73.351597, + 45.537552 + ], + [ + -73.351634, + 45.538348 + ], + [ + -73.351731, + 45.540355 + ], + [ + -73.35188, + 45.540352 + ], + [ + -73.352072, + 45.540349 + ], + [ + -73.352742, + 45.540338 + ], + [ + -73.3537, + 45.540317 + ], + [ + -73.354369, + 45.540304 + ], + [ + -73.354373, + 45.5403 + ], + [ + -73.354728, + 45.540161 + ], + [ + -73.354958, + 45.540044 + ], + [ + -73.355561, + 45.539685 + ], + [ + -73.355856, + 45.539514 + ], + [ + -73.35601, + 45.539397 + ], + [ + -73.356049, + 45.53937 + ], + [ + -73.356087, + 45.539334 + ], + [ + -73.356151, + 45.539281 + ], + [ + -73.356215, + 45.539218 + ], + [ + -73.356254, + 45.539173 + ], + [ + -73.356267, + 45.539146 + ], + [ + -73.356318, + 45.539011 + ], + [ + -73.35637, + 45.538876 + ], + [ + -73.356333, + 45.538462 + ], + [ + -73.35632, + 45.5383 + ], + [ + -73.356334, + 45.538084 + ], + [ + -73.356385, + 45.537904 + ], + [ + -73.356488, + 45.537706 + ], + [ + -73.356386, + 45.537688 + ], + [ + -73.356194, + 45.537616 + ], + [ + -73.356138, + 45.537582 + ], + [ + -73.356028, + 45.537517 + ], + [ + -73.35581, + 45.537381 + ], + [ + -73.355606, + 45.537228 + ], + [ + -73.354978, + 45.536786 + ], + [ + -73.354672, + 45.536579 + ], + [ + -73.35439, + 45.536363 + ], + [ + -73.354257, + 45.536268 + ], + [ + -73.354237, + 45.536255 + ], + [ + -73.354085, + 45.536133 + ], + [ + -73.353353, + 45.535601 + ], + [ + -73.352814, + 45.535218 + ], + [ + -73.352683, + 45.535132 + ], + [ + -73.352431, + 45.534966 + ], + [ + -73.352156, + 45.534794 + ], + [ + -73.351899, + 45.534632 + ], + [ + -73.351631, + 45.534461 + ], + [ + -73.351414, + 45.534325 + ], + [ + -73.351196, + 45.534181 + ], + [ + -73.350966, + 45.53401 + ], + [ + -73.350778, + 45.533879 + ], + [ + -73.350008, + 45.533298 + ], + [ + -73.34968, + 45.533059 + ], + [ + -73.348768, + 45.532396 + ], + [ + -73.346954, + 45.531044 + ], + [ + -73.345625, + 45.530084 + ], + [ + -73.345369, + 45.529899 + ], + [ + -73.345813, + 45.52961 + ], + [ + -73.346177, + 45.529374 + ], + [ + -73.347279, + 45.528588 + ], + [ + -73.348499, + 45.527798 + ], + [ + -73.349319, + 45.52725 + ], + [ + -73.350087, + 45.526724 + ], + [ + -73.350285, + 45.52659 + ], + [ + -73.350534, + 45.526433 + ], + [ + -73.350711, + 45.526365 + ], + [ + -73.350958, + 45.526271 + ], + [ + -73.351151, + 45.526199 + ], + [ + -73.351917, + 45.525931 + ], + [ + -73.351851, + 45.525827 + ], + [ + -73.351836, + 45.525786 + ], + [ + -73.351798, + 45.525714 + ], + [ + -73.351721, + 45.525594 + ], + [ + -73.351697, + 45.525557 + ], + [ + -73.3516, + 45.525453 + ], + [ + -73.351479, + 45.52535 + ], + [ + -73.351402, + 45.525286 + ], + [ + -73.350822, + 45.524876 + ], + [ + -73.349891, + 45.524214 + ], + [ + -73.349594, + 45.524002 + ], + [ + -73.349337, + 45.523831 + ], + [ + -73.349014, + 45.523636 + ], + [ + -73.348978, + 45.523614 + ], + [ + -73.348701, + 45.523497 + ], + [ + -73.348489, + 45.52342 + ], + [ + -73.348302, + 45.523361 + ], + [ + -73.348012, + 45.523289 + ], + [ + -73.347832, + 45.523257 + ], + [ + -73.347705, + 45.523243 + ], + [ + -73.347547, + 45.523225 + ], + [ + -73.346648, + 45.523103 + ], + [ + -73.346291, + 45.523053 + ], + [ + -73.346291, + 45.52285 + ], + [ + -73.346292, + 45.522634 + ], + [ + -73.346292, + 45.522585 + ], + [ + -73.346288, + 45.52231 + ], + [ + -73.346287, + 45.522153 + ], + [ + -73.346275, + 45.522009 + ], + [ + -73.346262, + 45.52182 + ], + [ + -73.346237, + 45.521631 + ], + [ + -73.346225, + 45.521478 + ], + [ + -73.346184, + 45.521289 + ], + [ + -73.346149, + 45.521073 + ], + [ + -73.346136, + 45.521001 + ], + [ + -73.346124, + 45.520929 + ], + [ + -73.346124, + 45.520857 + ], + [ + -73.346124, + 45.520785 + ], + [ + -73.346137, + 45.520677 + ], + [ + -73.346163, + 45.520569 + ], + [ + -73.346222, + 45.520303 + ], + [ + -73.346306, + 45.519804 + ], + [ + -73.346397, + 45.519174 + ], + [ + -73.346424, + 45.518967 + ], + [ + -73.34645, + 45.518527 + ], + [ + -73.346432, + 45.518526 + ], + [ + -73.345381, + 45.518517 + ], + [ + -73.344748, + 45.518511 + ], + [ + -73.344537, + 45.51843 + ], + [ + -73.34438, + 45.518344 + ], + [ + -73.344264, + 45.518227 + ], + [ + -73.344137, + 45.518006 + ], + [ + -73.344045, + 45.516998 + ], + [ + -73.343805, + 45.514586 + ], + [ + -73.343773, + 45.514316 + ], + [ + -73.343763, + 45.514238 + ], + [ + -73.343701, + 45.513718 + ], + [ + -73.343799, + 45.513709 + ], + [ + -73.348598, + 45.513399 + ], + [ + -73.35419, + 45.513037 + ], + [ + -73.357647, + 45.512814 + ], + [ + -73.358491, + 45.512756 + ], + [ + -73.359423, + 45.512694 + ], + [ + -73.359555, + 45.512681 + ], + [ + -73.360882, + 45.512602 + ], + [ + -73.361399, + 45.512556 + ], + [ + -73.36168, + 45.512531 + ], + [ + -73.362369, + 45.512441 + ], + [ + -73.363202, + 45.512325 + ], + [ + -73.364624, + 45.512098 + ], + [ + -73.366158, + 45.511879 + ], + [ + -73.36739, + 45.511666 + ], + [ + -73.367686, + 45.511615 + ], + [ + -73.367934, + 45.51158 + ], + [ + -73.368481, + 45.511535 + ], + [ + -73.368699, + 45.511527 + ], + [ + -73.369078, + 45.51155 + ], + [ + -73.370401, + 45.511691 + ], + [ + -73.370685, + 45.511713 + ], + [ + -73.370961, + 45.511723 + ], + [ + -73.371234, + 45.511723 + ], + [ + -73.371918, + 45.511719 + ], + [ + -73.373195, + 45.511581 + ], + [ + -73.373585, + 45.511546 + ], + [ + -73.373778, + 45.511519 + ], + [ + -73.374154, + 45.511452 + ], + [ + -73.374325, + 45.511398 + ], + [ + -73.374487, + 45.51134 + ], + [ + -73.374573, + 45.511301 + ], + [ + -73.374637, + 45.511272 + ], + [ + -73.374771, + 45.511191 + ], + [ + -73.374884, + 45.511102 + ], + [ + -73.374978, + 45.511003 + ], + [ + -73.375051, + 45.510895 + ], + [ + -73.375109, + 45.510782 + ], + [ + -73.375141, + 45.51067 + ], + [ + -73.375153, + 45.510548 + ], + [ + -73.375148, + 45.510427 + ], + [ + -73.375124, + 45.510301 + ], + [ + -73.375099, + 45.510225 + ], + [ + -73.375083, + 45.510175 + ], + [ + -73.375023, + 45.510049 + ], + [ + -73.374952, + 45.509923 + ], + [ + -73.374866, + 45.509797 + ], + [ + -73.374765, + 45.509675 + ], + [ + -73.374649, + 45.509554 + ], + [ + -73.374517, + 45.509441 + ], + [ + -73.374091, + 45.50913 + ], + [ + -73.373634, + 45.508918 + ], + [ + -73.373366, + 45.508787 + ], + [ + -73.373092, + 45.508616 + ], + [ + -73.372853, + 45.508423 + ], + [ + -73.372808, + 45.508386 + ], + [ + -73.372681, + 45.508256 + ], + [ + -73.37257, + 45.508112 + ], + [ + -73.372476, + 45.507967 + ], + [ + -73.3724, + 45.507819 + ], + [ + -73.372343, + 45.507679 + ], + [ + -73.372306, + 45.507517 + ], + [ + -73.372287, + 45.507369 + ], + [ + -73.372226, + 45.506676 + ], + [ + -73.372198, + 45.50623 + ], + [ + -73.372124, + 45.50556 + ], + [ + -73.372138, + 45.5055 + ], + [ + -73.372243, + 45.505043 + ], + [ + -73.372302, + 45.504692 + ], + [ + -73.372354, + 45.504449 + ], + [ + -73.372503, + 45.503954 + ], + [ + -73.372655, + 45.503576 + ], + [ + -73.373011, + 45.502875 + ], + [ + -73.373173, + 45.502587 + ], + [ + -73.37323, + 45.502511 + ], + [ + -73.373299, + 45.502439 + ], + [ + -73.373386, + 45.502385 + ], + [ + -73.373485, + 45.50234 + ], + [ + -73.37359, + 45.502313 + ], + [ + -73.373645, + 45.502304 + ], + [ + -73.37369, + 45.5023 + ], + [ + -73.37385, + 45.502305 + ], + [ + -73.373969, + 45.502327 + ], + [ + -73.374235, + 45.502395 + ], + [ + -73.374326, + 45.502409 + ], + [ + -73.374466, + 45.502454 + ], + [ + -73.374786, + 45.50253 + ], + [ + -73.375092, + 45.502612 + ], + [ + -73.375264, + 45.502648 + ], + [ + -73.375427, + 45.502684 + ], + [ + -73.375574, + 45.502747 + ], + [ + -73.376319, + 45.503059 + ], + [ + -73.376016, + 45.503247 + ], + [ + -73.375972, + 45.503274 + ], + [ + -73.375698, + 45.503485 + ], + [ + -73.375447, + 45.503715 + ], + [ + -73.375293, + 45.503854 + ], + [ + -73.37517, + 45.50398 + ], + [ + -73.374998, + 45.504213 + ], + [ + -73.374854, + 45.504429 + ], + [ + -73.37473, + 45.504589 + ], + [ + -73.374722, + 45.5046 + ], + [ + -73.374697, + 45.504635 + ], + [ + -73.374625, + 45.504735 + ], + [ + -73.374598, + 45.504793 + ], + [ + -73.374583, + 45.504843 + ], + [ + -73.374565, + 45.504919 + ], + [ + -73.374581, + 45.50514 + ], + [ + -73.37462, + 45.505338 + ], + [ + -73.374746, + 45.505563 + ], + [ + -73.374844, + 45.505788 + ], + [ + -73.374873, + 45.505837 + ], + [ + -73.374951, + 45.505973 + ], + [ + -73.375061, + 45.506067 + ], + [ + -73.375295, + 45.506238 + ], + [ + -73.375424, + 45.506333 + ], + [ + -73.375748, + 45.506597 + ], + [ + -73.375784, + 45.506626 + ], + [ + -73.375859, + 45.506698 + ], + [ + -73.375911, + 45.506761 + ], + [ + -73.375985, + 45.506896 + ], + [ + -73.376046, + 45.507022 + ], + [ + -73.376084, + 45.507108 + ], + [ + -73.376268, + 45.507459 + ], + [ + -73.376298, + 45.507513 + ], + [ + -73.376345, + 45.507576 + ], + [ + -73.3764, + 45.507639 + ], + [ + -73.376512, + 45.507729 + ], + [ + -73.376632, + 45.507801 + ], + [ + -73.376837, + 45.507891 + ], + [ + -73.376868, + 45.507902 + ], + [ + -73.376914, + 45.507917 + ], + [ + -73.377114, + 45.507982 + ], + [ + -73.377442, + 45.508081 + ], + [ + -73.377571, + 45.508108 + ], + [ + -73.377699, + 45.508135 + ], + [ + -73.377779, + 45.508144 + ], + [ + -73.377878, + 45.50815 + ], + [ + -73.377933, + 45.508153 + ], + [ + -73.378119, + 45.508163 + ], + [ + -73.378452, + 45.508145 + ], + [ + -73.378562, + 45.50814 + ], + [ + -73.379147, + 45.508114 + ], + [ + -73.3793, + 45.508105 + ], + [ + -73.379404, + 45.508091 + ], + [ + -73.379526, + 45.508074 + ], + [ + -73.379622, + 45.508047 + ], + [ + -73.379724, + 45.508025 + ], + [ + -73.379863, + 45.507975 + ], + [ + -73.380059, + 45.50789 + ], + [ + -73.380179, + 45.507823 + ], + [ + -73.380268, + 45.507759 + ], + [ + -73.380399, + 45.507666 + ], + [ + -73.380503, + 45.507585 + ], + [ + -73.380626, + 45.507481 + ], + [ + -73.380959, + 45.507647 + ], + [ + -73.38128, + 45.507806 + ], + [ + -73.380869, + 45.508496 + ], + [ + -73.380619, + 45.508917 + ], + [ + -73.380471, + 45.509177 + ], + [ + -73.380338, + 45.509474 + ], + [ + -73.380312, + 45.5096 + ], + [ + -73.380265, + 45.50983 + ], + [ + -73.380243, + 45.510001 + ], + [ + -73.380243, + 45.510041 + ], + [ + -73.380292, + 45.510284 + ], + [ + -73.380332, + 45.510388 + ], + [ + -73.380377, + 45.510478 + ], + [ + -73.380512, + 45.51068 + ], + [ + -73.3806, + 45.510779 + ], + [ + -73.380706, + 45.510874 + ], + [ + -73.380825, + 45.510964 + ], + [ + -73.380962, + 45.511045 + ], + [ + -73.381113, + 45.511117 + ], + [ + -73.381279, + 45.511176 + ], + [ + -73.381458, + 45.511217 + ], + [ + -73.381649, + 45.511244 + ], + [ + -73.38185, + 45.511257 + ], + [ + -73.382059, + 45.511258 + ], + [ + -73.382278, + 45.511249 + ], + [ + -73.382833, + 45.511198 + ], + [ + -73.383255, + 45.51116 + ], + [ + -73.386918, + 45.510876 + ], + [ + -73.387845, + 45.510821 + ], + [ + -73.388705, + 45.510769 + ], + [ + -73.390511, + 45.510672 + ], + [ + -73.391744, + 45.51057 + ], + [ + -73.392277, + 45.510503 + ], + [ + -73.393587, + 45.510437 + ], + [ + -73.395053, + 45.510343 + ], + [ + -73.396575, + 45.510246 + ], + [ + -73.399882, + 45.510029 + ], + [ + -73.407283, + 45.509544 + ], + [ + -73.415447, + 45.509007 + ], + [ + -73.416479, + 45.508939 + ], + [ + -73.420115, + 45.508693 + ], + [ + -73.422517, + 45.50853 + ], + [ + -73.424264, + 45.508396 + ], + [ + -73.424552, + 45.508369 + ], + [ + -73.424972, + 45.508361 + ], + [ + -73.425839, + 45.508343 + ], + [ + -73.427203, + 45.508276 + ], + [ + -73.430462, + 45.508094 + ], + [ + -73.430498, + 45.508091 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431709, + 45.508009 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.432209, + 45.507974 + ], + [ + -73.433018, + 45.507919 + ], + [ + -73.435178, + 45.507773 + ], + [ + -73.437575, + 45.507662 + ], + [ + -73.438105, + 45.507628 + ], + [ + -73.438988, + 45.507572 + ], + [ + -73.440344, + 45.507425 + ], + [ + -73.444956, + 45.507123 + ], + [ + -73.445881, + 45.507063 + ], + [ + -73.452102, + 45.506649 + ], + [ + -73.452257, + 45.506638 + ], + [ + -73.452565, + 45.506616 + ], + [ + -73.453776, + 45.50654 + ], + [ + -73.455247, + 45.506419 + ], + [ + -73.456957, + 45.50624 + ], + [ + -73.457921, + 45.506121 + ], + [ + -73.460279, + 45.505832 + ], + [ + -73.460374, + 45.505823 + ], + [ + -73.461182, + 45.505728 + ], + [ + -73.463671, + 45.505509 + ], + [ + -73.463946, + 45.505488 + ], + [ + -73.465111, + 45.505401 + ], + [ + -73.467755, + 45.505222 + ], + [ + -73.468692, + 45.505168 + ], + [ + -73.470746, + 45.505025 + ], + [ + -73.470963, + 45.505012 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.474139, + 45.504804 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483738, + 45.50403 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488116, + 45.503682 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.490956, + 45.507944 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494664, + 45.511015 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497497, + 45.511938 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.500628, + 45.512866 + ], + [ + -73.500836, + 45.512931 + ], + [ + -73.502033, + 45.513303 + ], + [ + -73.505335, + 45.514355 + ], + [ + -73.505365, + 45.514365 + ], + [ + -73.506222, + 45.514637 + ], + [ + -73.507293, + 45.514976 + ], + [ + -73.50757, + 45.515057 + ], + [ + -73.508383, + 45.515323 + ], + [ + -73.509009, + 45.515606 + ], + [ + -73.509231, + 45.515687 + ], + [ + -73.509741, + 45.515862 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511809, + 45.516803 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520267, + 45.521193 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520165, + 45.521928 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.52068, + 45.524093 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.520811, + 45.523427 + ] + ] + }, + "id": 206, + "properties": { + "id": "0acb9215-8330-4e94-994f-5081c07130da", + "data": { + "gtfs": { + "shape_id": "99_2_A" + }, + "segments": [ + { + "distanceMeters": 291, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 1644, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 898, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 538, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 639, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 933, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 707, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 515, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 900, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 697, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 794, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 505, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 458, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 602, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 731, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 620, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 438, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 565, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 478, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 570, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 826, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 898, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 460, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 565, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 378, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 580, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 639, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 366, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 629, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 538, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 560, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 458, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 475, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 550, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 754, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 525, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 458, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 744, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 500, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 958, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 622, + "travelTimeSeconds": 38 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 29646, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 95.23448200525412, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 17.04, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 15.44, + "averageSpeedWithoutDwellTimesMetersPerSecond": 17.04 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d", + "784a98f8-f964-4b51-9a84-d7aa241d6aab", + "a1087eae-a20b-4cd0-b8e7-26440d382937", + "1d0cf396-f4ae-4977-a367-c4cf2be5bc83", + "2b4013fd-f01f-46a6-a43b-07ee39c8fae1", + "23cec068-5e76-484b-b2ab-203e4ea55358", + "57a91181-2fc4-4e39-a5bf-0ff47bbe6e9b", + "b1b9e3d8-602d-45b4-ae3c-162955cba188", + "e39d2286-4090-4933-a88a-16d850b1afef", + "44828ff3-a75f-403d-9e17-7e902c4620b9", + "5f32a25e-7895-498c-b5cd-182adcfb40dd", + "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", + "0893f164-19ee-46d7-888c-b2f0ceb4c706", + "4f0816d5-67e0-4d4d-9413-6e045052da5f", + "e3c142cf-278c-41ec-b9f5-dff43803109b", + "6b369192-79e8-4382-aaa0-abddf0da08d7", + "93fcd4a5-ee80-4c79-b0bc-547231801133", + "3bbcea32-d474-49cc-8cd8-d77d2bac6158", + "b476282d-aa8d-4826-8ad2-39123a162025", + "39a7153a-bac3-4ac2-84e3-79ec24465317", + "2c952684-5d97-4238-ae18-51cba6c9775e", + "819e2afa-bfef-47b3-8a41-a55f4c2f9156", + "0dae6aad-c792-48fd-a50b-e498ec730741", + "664c0430-a4fa-4f7d-aa9b-f0bfd0ecd1e4", + "87b33360-b2b6-4448-85dd-00bcc2d6204c", + "6a18cdcb-7d78-46ad-a358-7895b3877421", + "bc16cbaa-5a30-48f3-9330-5ee7ec0441a1", + "33779f20-bdd2-4c97-8c57-e7f88093dfb0", + "5ee81343-27a6-4a75-a9d6-cfd2443e5ca4", + "202ead47-deaa-405e-b65f-b1c0ac914072", + "a559ed96-e206-444a-b3b1-e1eedefb1ccd", + "b8cfafe3-b6a4-49f2-a7bb-9ae8933f001e", + "ea96e923-e899-4f40-b55b-0ec5bd72c618", + "4511e120-86db-4b9f-bbc5-ef3d3a1627fd", + "57420416-a1c5-4dd0-bce2-fccdbb41630a", + "ab32c22a-056a-40bc-bb99-58c049d50498", + "d4b97f89-0d15-4037-9293-a46292a3b826", + "a5fa3371-93c4-47f9-8972-32a538fcab1f", + "c144cdde-b47b-40cf-b640-e6399771f99b", + "a34242f1-b39e-4075-8b98-da7cc20aa985", + "16815d0a-9758-4c90-a572-66e1110e9895", + "bb60f9d1-ae1a-4b44-81e5-f918c5a03052", + "a4342529-2476-4d58-89df-3af5cc46b2ed", + "847391f5-cdd6-49af-ac72-f7b987f65b7f", + "72167429-f4d5-4eda-870a-b71c9c47ec5e", + "515b8790-77c6-4a3b-8347-a621b1167870", + "9f66e075-701a-442d-9c89-3fee641e6ceb", + "d6901f53-cd66-4086-8fc5-2643b6cfcce0", + "1903cbec-a898-4d1e-aa47-0930a7af3bd5", + "5c28c22e-79f1-4a2c-9171-d9cc96f1af7d", + "0910a11d-1b83-4a5b-9c01-30b9a6d926ef", + "4c4fb532-1ed3-4dc8-ab02-b2a6e87e7b90" + ], + "stops": [], + "line_id": "c2ab17fa-7d98-4a1d-9fed-26a95aea0b7e", + "segments": [ + 0, + 15, + 72, + 101, + 117, + 126, + 142, + 157, + 172, + 187, + 202, + 235, + 250, + 253, + 263, + 279, + 312, + 321, + 325, + 326, + 332, + 338, + 355, + 378, + 390, + 424, + 481, + 504, + 507, + 513, + 515, + 516, + 517, + 519, + 523, + 532, + 535, + 538, + 540, + 546, + 551, + 556, + 558, + 562, + 574, + 585, + 599, + 607, + 614, + 626, + 662 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 206, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521447, + 45.524278 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519379, + 45.523634 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519186, + 45.526809 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517663, + 45.527363 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517465, + 45.528168 + ], + [ + -73.517458, + 45.528249 + ], + [ + -73.517471, + 45.528385 + ], + [ + -73.517504, + 45.528565 + ], + [ + -73.517516, + 45.528652 + ], + [ + -73.517553, + 45.52877 + ], + [ + -73.517635, + 45.529002 + ], + [ + -73.517693, + 45.529249 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.51956, + 45.531975 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500328, + 45.550074 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.499756, + 45.550039 + ], + [ + -73.499583, + 45.550043 + ], + [ + -73.499254, + 45.550048 + ], + [ + -73.49904, + 45.550039 + ], + [ + -73.498716, + 45.549998 + ], + [ + -73.49829, + 45.549868 + ], + [ + -73.497924, + 45.54971 + ], + [ + -73.497576, + 45.54953 + ], + [ + -73.497529, + 45.549503 + ], + [ + -73.497225, + 45.549332 + ], + [ + -73.497041, + 45.549211 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494902, + 45.54755 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.491911, + 45.546057 + ], + [ + -73.491829, + 45.546111 + ], + [ + -73.491647, + 45.546228 + ], + [ + -73.491431, + 45.546368 + ], + [ + -73.491216, + 45.546506 + ], + [ + -73.491073, + 45.546649 + ], + [ + -73.490714, + 45.547006 + ], + [ + -73.48951, + 45.547751 + ], + [ + -73.489407, + 45.547816 + ], + [ + -73.485955, + 45.549961 + ], + [ + -73.485528, + 45.550218 + ], + [ + -73.485059, + 45.550458 + ], + [ + -73.484195, + 45.5509 + ], + [ + -73.483956, + 45.551023 + ], + [ + -73.483045, + 45.55149 + ], + [ + -73.482159, + 45.551945 + ], + [ + -73.482067, + 45.551991 + ], + [ + -73.482032, + 45.552008 + ], + [ + -73.480528, + 45.552777 + ], + [ + -73.480484, + 45.552799 + ], + [ + -73.480374, + 45.552853 + ], + [ + -73.479586, + 45.553272 + ], + [ + -73.478403, + 45.55387 + ], + [ + -73.47721, + 45.554495 + ], + [ + -73.47658, + 45.554819 + ], + [ + -73.47589, + 45.555179 + ], + [ + -73.475627, + 45.555342 + ], + [ + -73.475549, + 45.55539 + ], + [ + -73.475452, + 45.555449 + ], + [ + -73.473844, + 45.556506 + ], + [ + -73.473763, + 45.556559 + ], + [ + -73.473662, + 45.556622 + ], + [ + -73.472632, + 45.557275 + ], + [ + -73.472629, + 45.557279 + ], + [ + -73.472372, + 45.557373 + ], + [ + -73.472222, + 45.557423 + ], + [ + -73.472064, + 45.557495 + ], + [ + -73.471877, + 45.557607 + ], + [ + -73.471648, + 45.55776 + ], + [ + -73.471558, + 45.557832 + ], + [ + -73.471339, + 45.557976 + ], + [ + -73.470903, + 45.558228 + ], + [ + -73.470793, + 45.5583 + ], + [ + -73.469991, + 45.558844 + ], + [ + -73.469731, + 45.558997 + ], + [ + -73.469486, + 45.559163 + ], + [ + -73.46926, + 45.559316 + ], + [ + -73.468792, + 45.559631 + ], + [ + -73.468729, + 45.559676 + ], + [ + -73.468547, + 45.559798 + ], + [ + -73.467979, + 45.560279 + ], + [ + -73.467816, + 45.560373 + ], + [ + -73.467525, + 45.560508 + ], + [ + -73.467261, + 45.560621 + ], + [ + -73.46697, + 45.560742 + ], + [ + -73.466692, + 45.560841 + ], + [ + -73.466384, + 45.560949 + ], + [ + -73.466129, + 45.561025 + ], + [ + -73.465993, + 45.561066 + ], + [ + -73.465606, + 45.561173 + ], + [ + -73.465298, + 45.56125 + ], + [ + -73.464943, + 45.561331 + ], + [ + -73.464635, + 45.561385 + ], + [ + -73.464383, + 45.56143 + ], + [ + -73.464342, + 45.561416 + ], + [ + -73.46391, + 45.56142 + ], + [ + -73.463676, + 45.561411 + ], + [ + -73.463469, + 45.561416 + ], + [ + -73.463235, + 45.561434 + ], + [ + -73.463014, + 45.561456 + ], + [ + -73.462671, + 45.561478 + ], + [ + -73.462488, + 45.561483 + ], + [ + -73.462171, + 45.561492 + ], + [ + -73.461975, + 45.561496 + ], + [ + -73.460725, + 45.561527 + ], + [ + -73.460731, + 45.561644 + ], + [ + -73.460735, + 45.561923 + ], + [ + -73.460736, + 45.561977 + ], + [ + -73.460721, + 45.562027 + ], + [ + -73.460677, + 45.562085 + ], + [ + -73.460365, + 45.562319 + ], + [ + -73.459937, + 45.562638 + ], + [ + -73.459828, + 45.562728 + ], + [ + -73.459614, + 45.562904 + ], + [ + -73.459333, + 45.563151 + ], + [ + -73.459032, + 45.56341 + ], + [ + -73.458351, + 45.563996 + ], + [ + -73.457933, + 45.564352 + ], + [ + -73.457152, + 45.564936 + ], + [ + -73.457074, + 45.56499 + ], + [ + -73.456935, + 45.565085 + ], + [ + -73.456659, + 45.565283 + ], + [ + -73.45622, + 45.565633 + ], + [ + -73.455798, + 45.56598 + ], + [ + -73.455578, + 45.566174 + ], + [ + -73.455401, + 45.56633 + ], + [ + -73.45414, + 45.56753 + ], + [ + -73.453627, + 45.568017 + ], + [ + -73.453572, + 45.568062 + ], + [ + -73.453474, + 45.568093 + ], + [ + -73.453357, + 45.56812 + ], + [ + -73.453217, + 45.568102 + ], + [ + -73.451687, + 45.567778 + ], + [ + -73.450706, + 45.56757 + ], + [ + -73.450558, + 45.567561 + ], + [ + -73.45036, + 45.567548 + ], + [ + -73.450115, + 45.567548 + ], + [ + -73.450114, + 45.567557 + ], + [ + -73.450113, + 45.567561 + ], + [ + -73.450112, + 45.56757 + ], + [ + -73.450111, + 45.567575 + ], + [ + -73.45011, + 45.567584 + ], + [ + -73.450109, + 45.567593 + ], + [ + -73.450108, + 45.567597 + ], + [ + -73.450107, + 45.567606 + ], + [ + -73.450106, + 45.567611 + ], + [ + -73.450105, + 45.56762 + ], + [ + -73.450104, + 45.567629 + ], + [ + -73.450103, + 45.567633 + ], + [ + -73.450102, + 45.567642 + ], + [ + -73.450101, + 45.567647 + ], + [ + -73.4501, + 45.567656 + ], + [ + -73.450099, + 45.56766 + ], + [ + -73.450098, + 45.567669 + ], + [ + -73.450097, + 45.567678 + ], + [ + -73.450096, + 45.567683 + ], + [ + -73.450095, + 45.567691 + ], + [ + -73.450093, + 45.567696 + ], + [ + -73.450092, + 45.567705 + ], + [ + -73.450091, + 45.567714 + ], + [ + -73.45009, + 45.567718 + ], + [ + -73.450089, + 45.567727 + ], + [ + -73.450088, + 45.567732 + ], + [ + -73.450087, + 45.567741 + ], + [ + -73.450085, + 45.56775 + ], + [ + -73.450084, + 45.567754 + ], + [ + -73.450083, + 45.567763 + ], + [ + -73.450082, + 45.567768 + ], + [ + -73.450081, + 45.567777 + ], + [ + -73.450079, + 45.567781 + ], + [ + -73.450078, + 45.56779 + ], + [ + -73.450077, + 45.567799 + ], + [ + -73.450075, + 45.567804 + ], + [ + -73.450074, + 45.567813 + ], + [ + -73.450073, + 45.567817 + ], + [ + -73.450071, + 45.567826 + ], + [ + -73.45007, + 45.567835 + ], + [ + -73.450069, + 45.56784 + ], + [ + -73.450067, + 45.567849 + ], + [ + -73.450066, + 45.567853 + ], + [ + -73.450065, + 45.567862 + ], + [ + -73.450063, + 45.567871 + ], + [ + -73.450062, + 45.567876 + ], + [ + -73.45006, + 45.567885 + ], + [ + -73.450059, + 45.567889 + ], + [ + -73.450058, + 45.567898 + ], + [ + -73.450056, + 45.567903 + ], + [ + -73.450055, + 45.567912 + ], + [ + -73.450054, + 45.567921 + ], + [ + -73.450052, + 45.567925 + ], + [ + -73.450051, + 45.567934 + ], + [ + -73.450049, + 45.567939 + ], + [ + -73.450048, + 45.567948 + ], + [ + -73.450046, + 45.567957 + ], + [ + -73.450045, + 45.567961 + ], + [ + -73.450043, + 45.56797 + ], + [ + -73.450042, + 45.567975 + ], + [ + -73.45004, + 45.567984 + ], + [ + -73.450039, + 45.567988 + ], + [ + -73.450037, + 45.567997 + ], + [ + -73.450036, + 45.568006 + ], + [ + -73.450034, + 45.568011 + ], + [ + -73.450032, + 45.56802 + ], + [ + -73.450031, + 45.568024 + ], + [ + -73.450029, + 45.568033 + ], + [ + -73.450028, + 45.568042 + ], + [ + -73.450026, + 45.568047 + ], + [ + -73.450024, + 45.568056 + ], + [ + -73.450023, + 45.56806 + ], + [ + -73.450021, + 45.568069 + ], + [ + -73.450019, + 45.568074 + ], + [ + -73.450017, + 45.568083 + ], + [ + -73.450016, + 45.568092 + ], + [ + -73.450014, + 45.568096 + ], + [ + -73.450013, + 45.568105 + ], + [ + -73.450011, + 45.56811 + ], + [ + -73.450009, + 45.568119 + ], + [ + -73.450007, + 45.568123 + ], + [ + -73.450006, + 45.568132 + ], + [ + -73.450004, + 45.568141 + ], + [ + -73.450002, + 45.568146 + ], + [ + -73.45, + 45.568155 + ], + [ + -73.449999, + 45.568159 + ], + [ + -73.449997, + 45.568168 + ], + [ + -73.449995, + 45.568173 + ], + [ + -73.449993, + 45.568182 + ], + [ + -73.449991, + 45.568191 + ], + [ + -73.449989, + 45.568195 + ], + [ + -73.449988, + 45.568204 + ], + [ + -73.449986, + 45.568209 + ], + [ + -73.449984, + 45.568218 + ], + [ + -73.449982, + 45.568227 + ], + [ + -73.44998, + 45.568231 + ], + [ + -73.449978, + 45.56824 + ], + [ + -73.449976, + 45.568245 + ], + [ + -73.449974, + 45.568254 + ], + [ + -73.449972, + 45.568258 + ], + [ + -73.44997, + 45.568267 + ], + [ + -73.449968, + 45.568276 + ], + [ + -73.449967, + 45.568281 + ], + [ + -73.449965, + 45.56829 + ], + [ + -73.449963, + 45.568294 + ], + [ + -73.449961, + 45.568303 + ], + [ + -73.449959, + 45.568308 + ], + [ + -73.449957, + 45.568317 + ], + [ + -73.449955, + 45.568326 + ], + [ + -73.449953, + 45.56833 + ], + [ + -73.449951, + 45.568339 + ], + [ + -73.449949, + 45.568344 + ], + [ + -73.449946, + 45.568353 + ], + [ + -73.449944, + 45.568357 + ], + [ + -73.449942, + 45.568366 + ], + [ + -73.44994, + 45.568371 + ], + [ + -73.449938, + 45.56838 + ], + [ + -73.449936, + 45.568389 + ], + [ + -73.449934, + 45.568393 + ], + [ + -73.449932, + 45.568402 + ], + [ + -73.44993, + 45.568407 + ], + [ + -73.449927, + 45.568416 + ], + [ + -73.449925, + 45.56842 + ], + [ + -73.449923, + 45.568429 + ], + [ + -73.449921, + 45.568438 + ], + [ + -73.449919, + 45.568443 + ], + [ + -73.449917, + 45.568452 + ], + [ + -73.449915, + 45.568456 + ], + [ + -73.449912, + 45.568465 + ], + [ + -73.44991, + 45.56847 + ], + [ + -73.449908, + 45.568479 + ], + [ + -73.449905, + 45.568488 + ], + [ + -73.449903, + 45.568492 + ], + [ + -73.449901, + 45.568501 + ], + [ + -73.449899, + 45.568506 + ], + [ + -73.449897, + 45.568515 + ], + [ + -73.449894, + 45.568519 + ], + [ + -73.449892, + 45.568528 + ], + [ + -73.449889, + 45.568533 + ], + [ + -73.449887, + 45.568542 + ], + [ + -73.449885, + 45.568551 + ], + [ + -73.449883, + 45.568555 + ], + [ + -73.44988, + 45.568564 + ], + [ + -73.449878, + 45.568569 + ], + [ + -73.449875, + 45.568578 + ], + [ + -73.449873, + 45.568582 + ], + [ + -73.44987, + 45.568591 + ], + [ + -73.449868, + 45.568596 + ], + [ + -73.449866, + 45.568605 + ], + [ + -73.449863, + 45.568614 + ], + [ + -73.449861, + 45.568618 + ], + [ + -73.449856, + 45.568632 + ], + [ + -73.449825, + 45.568708 + ], + [ + -73.449762, + 45.568861 + ], + [ + -73.449744, + 45.568903 + ], + [ + -73.449625, + 45.569181 + ], + [ + -73.449277, + 45.569995 + ], + [ + -73.449093, + 45.570413 + ], + [ + -73.449089, + 45.570422 + ], + [ + -73.44907, + 45.570467 + ], + [ + -73.449049, + 45.570517 + ], + [ + -73.448873, + 45.570917 + ], + [ + -73.448823, + 45.571034 + ], + [ + -73.448769, + 45.571168 + ], + [ + -73.44818, + 45.572625 + ], + [ + -73.447654, + 45.573778 + ], + [ + -73.447519, + 45.574084 + ], + [ + -73.447518, + 45.574088 + ], + [ + -73.447455, + 45.574133 + ], + [ + -73.447308, + 45.574407 + ], + [ + -73.447267, + 45.574466 + ], + [ + -73.447241, + 45.574497 + ], + [ + -73.447197, + 45.574529 + ], + [ + -73.447149, + 45.574547 + ], + [ + -73.447112, + 45.574556 + ], + [ + -73.447049, + 45.574565 + ], + [ + -73.446965, + 45.574569 + ], + [ + -73.446884, + 45.574565 + ], + [ + -73.446792, + 45.574547 + ], + [ + -73.446652, + 45.574511 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.443147, + 45.572802 + ], + [ + -73.443228, + 45.572879 + ], + [ + -73.443273, + 45.572955 + ], + [ + -73.443271, + 45.573 + ], + [ + -73.443276, + 45.573125 + ], + [ + -73.443281, + 45.573166 + ], + [ + -73.443386, + 45.57326 + ], + [ + -73.443502, + 45.573319 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.44468, + 45.573697 + ], + [ + -73.444697, + 45.573706 + ], + [ + -73.444729, + 45.573713 + ], + [ + -73.444769, + 45.573716 + ], + [ + -73.444831, + 45.573715 + ], + [ + -73.444873, + 45.57371 + ], + [ + -73.444884, + 45.573708 + ], + [ + -73.44491, + 45.573694 + ], + [ + -73.444953, + 45.573633 + ], + [ + -73.44492, + 45.573618 + ], + [ + -73.444872, + 45.573601 + ], + [ + -73.444829, + 45.573598 + ], + [ + -73.444749, + 45.573615 + ], + [ + -73.44471, + 45.573635 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.443539, + 45.573203 + ], + [ + -73.443522, + 45.573154 + ] + ] + }, + "id": 207, + "properties": { + "id": "5817a3fa-0451-4569-ad11-5e63d52d53c9", + "data": { + "gtfs": { + "shape_id": "120_1_R" + }, + "segments": [ + { + "distanceMeters": 4167, + "travelTimeSeconds": 492 + }, + { + "distanceMeters": 534, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 782, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 477, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 452, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 1184, + "travelTimeSeconds": 348 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10900, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8130.481607090507, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.49, + "travelTimeWithoutDwellTimesSeconds": 1680, + "operatingTimeWithLayoverTimeSeconds": 1860, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1680, + "operatingSpeedWithLayoverMetersPerSecond": 5.86, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.49 + }, + "mode": "bus", + "name": "Stat. de Mortagne", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "09bf17cd-9db1-41e3-b993-62146cb91158", + "8a3f1208-7ffb-452e-8ebb-c436acba82d6", + "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", + "cd788179-2c9b-4e1e-9ba3-10b35bfde3fa", + "a388aa98-4c24-4671-8a33-a0e95f9d5ada", + "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", + "f5001112-5d1e-4489-87be-a34e9ded0d46", + "b070e296-b686-4ba3-bf68-049018a7af21", + "83389414-0049-46f6-a04b-557250511611", + "2b894d51-a427-4850-8fae-89ed3f29388d", + "bd99fd0e-cbdd-4d16-af5c-609bbef87ee4", + "adc9bcc9-8f6d-49e9-b7de-68b4f56033f4", + "bd467e22-a975-40b8-9a7a-9801529c3237", + "6150abd1-c8f6-4045-8e3e-f50bbef79a53", + "aff34f6b-5801-4e1a-bc66-3990844e0b4e", + "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", + "6672cb43-3241-42d7-b5c0-fdaed10338b9", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287" + ], + "stops": [], + "line_id": "2a610ac8-c7f7-4ff9-955a-e1d854beced8", + "segments": [ + 0, + 114, + 132, + 139, + 149, + 155, + 163, + 166, + 182, + 194, + 208, + 219, + 222, + 226, + 231, + 233, + 241, + 399, + 407 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 207, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.443522, + 45.573154 + ], + [ + -73.44348, + 45.573034 + ], + [ + -73.443427, + 45.572912 + ], + [ + -73.44336, + 45.572841 + ], + [ + -73.443253, + 45.572772 + ], + [ + -73.443199, + 45.572746 + ], + [ + -73.443114, + 45.572731 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.446746, + 45.574587 + ], + [ + -73.447238, + 45.574749 + ], + [ + -73.447388, + 45.574789 + ], + [ + -73.447436, + 45.574664 + ], + [ + -73.447623, + 45.574219 + ], + [ + -73.44779, + 45.573737 + ], + [ + -73.447926, + 45.573404 + ], + [ + -73.448288, + 45.57264 + ], + [ + -73.448668, + 45.571794 + ], + [ + -73.449152, + 45.570638 + ], + [ + -73.449223, + 45.570544 + ], + [ + -73.449264, + 45.570454 + ], + [ + -73.449543, + 45.569814 + ], + [ + -73.449722, + 45.56941 + ], + [ + -73.449947, + 45.568902 + ], + [ + -73.449982, + 45.56883 + ], + [ + -73.450051, + 45.568681 + ], + [ + -73.450055, + 45.568672 + ], + [ + -73.450057, + 45.568668 + ], + [ + -73.450059, + 45.568663 + ], + [ + -73.450061, + 45.568659 + ], + [ + -73.450063, + 45.568654 + ], + [ + -73.450065, + 45.56865 + ], + [ + -73.450067, + 45.568645 + ], + [ + -73.450069, + 45.568641 + ], + [ + -73.450071, + 45.568636 + ], + [ + -73.450072, + 45.568632 + ], + [ + -73.450074, + 45.568627 + ], + [ + -73.450076, + 45.568623 + ], + [ + -73.450078, + 45.568618 + ], + [ + -73.45008, + 45.568618 + ], + [ + -73.450082, + 45.568614 + ], + [ + -73.450084, + 45.568609 + ], + [ + -73.450086, + 45.568605 + ], + [ + -73.450087, + 45.5686 + ], + [ + -73.450089, + 45.568596 + ], + [ + -73.450091, + 45.568591 + ], + [ + -73.450093, + 45.568587 + ], + [ + -73.450095, + 45.568582 + ], + [ + -73.450097, + 45.568578 + ], + [ + -73.450099, + 45.568573 + ], + [ + -73.450101, + 45.568569 + ], + [ + -73.450102, + 45.568564 + ], + [ + -73.450104, + 45.56856 + ], + [ + -73.450106, + 45.568555 + ], + [ + -73.450108, + 45.568551 + ], + [ + -73.45011, + 45.568546 + ], + [ + -73.450112, + 45.568542 + ], + [ + -73.450114, + 45.568537 + ], + [ + -73.450115, + 45.568533 + ], + [ + -73.450117, + 45.568528 + ], + [ + -73.450119, + 45.568524 + ], + [ + -73.45012, + 45.568519 + ], + [ + -73.450122, + 45.568519 + ], + [ + -73.450124, + 45.568515 + ], + [ + -73.450126, + 45.56851 + ], + [ + -73.450128, + 45.568506 + ], + [ + -73.450129, + 45.568501 + ], + [ + -73.45013, + 45.5685 + ], + [ + -73.450131, + 45.568497 + ], + [ + -73.450133, + 45.568492 + ], + [ + -73.450134, + 45.568488 + ], + [ + -73.450136, + 45.568483 + ], + [ + -73.450138, + 45.568479 + ], + [ + -73.45014, + 45.568474 + ], + [ + -73.450141, + 45.56847 + ], + [ + -73.450143, + 45.568465 + ], + [ + -73.450145, + 45.568461 + ], + [ + -73.450146, + 45.568456 + ], + [ + -73.450148, + 45.568452 + ], + [ + -73.45015, + 45.568447 + ], + [ + -73.450151, + 45.568443 + ], + [ + -73.450153, + 45.568438 + ], + [ + -73.450154, + 45.568434 + ], + [ + -73.450156, + 45.568429 + ], + [ + -73.450158, + 45.568425 + ], + [ + -73.45016, + 45.56842 + ], + [ + -73.450161, + 45.568416 + ], + [ + -73.450163, + 45.568411 + ], + [ + -73.450164, + 45.568407 + ], + [ + -73.450166, + 45.568402 + ], + [ + -73.450168, + 45.568398 + ], + [ + -73.450169, + 45.568393 + ], + [ + -73.450171, + 45.568393 + ], + [ + -73.450173, + 45.568389 + ], + [ + -73.450174, + 45.568384 + ], + [ + -73.450175, + 45.56838 + ], + [ + -73.450177, + 45.568375 + ], + [ + -73.450179, + 45.568371 + ], + [ + -73.45018, + 45.568366 + ], + [ + -73.450182, + 45.568362 + ], + [ + -73.450183, + 45.568357 + ], + [ + -73.450185, + 45.568353 + ], + [ + -73.450186, + 45.568348 + ], + [ + -73.450188, + 45.568344 + ], + [ + -73.450189, + 45.568339 + ], + [ + -73.450191, + 45.568335 + ], + [ + -73.450192, + 45.56833 + ], + [ + -73.450194, + 45.568326 + ], + [ + -73.450195, + 45.568321 + ], + [ + -73.450197, + 45.568317 + ], + [ + -73.450198, + 45.568312 + ], + [ + -73.4502, + 45.568308 + ], + [ + -73.450201, + 45.568303 + ], + [ + -73.450203, + 45.568299 + ], + [ + -73.450204, + 45.568294 + ], + [ + -73.450205, + 45.56829 + ], + [ + -73.450207, + 45.568285 + ], + [ + -73.450208, + 45.568281 + ], + [ + -73.45021, + 45.568276 + ], + [ + -73.450211, + 45.568272 + ], + [ + -73.450213, + 45.568267 + ], + [ + -73.450214, + 45.568263 + ], + [ + -73.450215, + 45.568258 + ], + [ + -73.450217, + 45.568254 + ], + [ + -73.450218, + 45.568249 + ], + [ + -73.450219, + 45.568245 + ], + [ + -73.450221, + 45.56824 + ], + [ + -73.450222, + 45.568236 + ], + [ + -73.450224, + 45.568231 + ], + [ + -73.450225, + 45.568227 + ], + [ + -73.450226, + 45.568227 + ], + [ + -73.450228, + 45.568222 + ], + [ + -73.450229, + 45.568218 + ], + [ + -73.45023, + 45.568213 + ], + [ + -73.450232, + 45.568209 + ], + [ + -73.450233, + 45.568204 + ], + [ + -73.450234, + 45.5682 + ], + [ + -73.450236, + 45.568195 + ], + [ + -73.450237, + 45.568191 + ], + [ + -73.450238, + 45.568186 + ], + [ + -73.45024, + 45.568182 + ], + [ + -73.450241, + 45.568177 + ], + [ + -73.450242, + 45.568173 + ], + [ + -73.450244, + 45.568168 + ], + [ + -73.450245, + 45.568164 + ], + [ + -73.450246, + 45.568159 + ], + [ + -73.450247, + 45.568155 + ], + [ + -73.450248, + 45.56815 + ], + [ + -73.45025, + 45.568146 + ], + [ + -73.450251, + 45.568141 + ], + [ + -73.450252, + 45.568137 + ], + [ + -73.450253, + 45.568132 + ], + [ + -73.450254, + 45.568128 + ], + [ + -73.450256, + 45.568123 + ], + [ + -73.450257, + 45.568119 + ], + [ + -73.450258, + 45.568114 + ], + [ + -73.450259, + 45.56811 + ], + [ + -73.45026, + 45.568105 + ], + [ + -73.450262, + 45.568101 + ], + [ + -73.450263, + 45.568096 + ], + [ + -73.450264, + 45.568092 + ], + [ + -73.450265, + 45.568088 + ], + [ + -73.450266, + 45.568083 + ], + [ + -73.450267, + 45.568079 + ], + [ + -73.450268, + 45.568074 + ], + [ + -73.45027, + 45.56807 + ], + [ + -73.450271, + 45.568065 + ], + [ + -73.450272, + 45.568061 + ], + [ + -73.450273, + 45.568056 + ], + [ + -73.450274, + 45.568052 + ], + [ + -73.450275, + 45.568047 + ], + [ + -73.450277, + 45.568043 + ], + [ + -73.450277, + 45.568038 + ], + [ + -73.450279, + 45.568034 + ], + [ + -73.45028, + 45.568029 + ], + [ + -73.450281, + 45.568025 + ], + [ + -73.450282, + 45.56802 + ], + [ + -73.450283, + 45.568016 + ], + [ + -73.450284, + 45.568011 + ], + [ + -73.450285, + 45.568007 + ], + [ + -73.450286, + 45.568002 + ], + [ + -73.450287, + 45.567998 + ], + [ + -73.450288, + 45.567993 + ], + [ + -73.450289, + 45.567989 + ], + [ + -73.45029, + 45.567984 + ], + [ + -73.450291, + 45.56798 + ], + [ + -73.450292, + 45.567975 + ], + [ + -73.450293, + 45.567971 + ], + [ + -73.450294, + 45.567966 + ], + [ + -73.450295, + 45.567962 + ], + [ + -73.450296, + 45.567957 + ], + [ + -73.450297, + 45.567957 + ], + [ + -73.450298, + 45.567953 + ], + [ + -73.450299, + 45.567948 + ], + [ + -73.4503, + 45.567944 + ], + [ + -73.450301, + 45.567939 + ], + [ + -73.450301, + 45.567935 + ], + [ + -73.450302, + 45.56793 + ], + [ + -73.450303, + 45.567926 + ], + [ + -73.450304, + 45.567921 + ], + [ + -73.450305, + 45.567917 + ], + [ + -73.450306, + 45.567912 + ], + [ + -73.450307, + 45.567908 + ], + [ + -73.450308, + 45.567903 + ], + [ + -73.450309, + 45.567899 + ], + [ + -73.450309, + 45.567894 + ], + [ + -73.45031, + 45.56789 + ], + [ + -73.450311, + 45.567885 + ], + [ + -73.450312, + 45.567881 + ], + [ + -73.450313, + 45.567876 + ], + [ + -73.450314, + 45.567872 + ], + [ + -73.450315, + 45.567867 + ], + [ + -73.450316, + 45.567863 + ], + [ + -73.450316, + 45.567858 + ], + [ + -73.450317, + 45.567854 + ], + [ + -73.450318, + 45.567849 + ], + [ + -73.450319, + 45.567845 + ], + [ + -73.45032, + 45.56784 + ], + [ + -73.45032, + 45.567836 + ], + [ + -73.450321, + 45.567831 + ], + [ + -73.450322, + 45.567827 + ], + [ + -73.450323, + 45.567822 + ], + [ + -73.450324, + 45.567818 + ], + [ + -73.450324, + 45.567813 + ], + [ + -73.450325, + 45.567809 + ], + [ + -73.450326, + 45.567804 + ], + [ + -73.450326, + 45.5678 + ], + [ + -73.450327, + 45.567795 + ], + [ + -73.450328, + 45.567791 + ], + [ + -73.450329, + 45.567786 + ], + [ + -73.450329, + 45.567782 + ], + [ + -73.45033, + 45.567777 + ], + [ + -73.450331, + 45.567773 + ], + [ + -73.450332, + 45.567768 + ], + [ + -73.450332, + 45.567764 + ], + [ + -73.450333, + 45.567759 + ], + [ + -73.450334, + 45.567755 + ], + [ + -73.450334, + 45.56775 + ], + [ + -73.450335, + 45.567746 + ], + [ + -73.450336, + 45.567741 + ], + [ + -73.450336, + 45.567737 + ], + [ + -73.450337, + 45.567732 + ], + [ + -73.450337, + 45.567728 + ], + [ + -73.450338, + 45.567723 + ], + [ + -73.450339, + 45.567719 + ], + [ + -73.450339, + 45.567714 + ], + [ + -73.45034, + 45.56771 + ], + [ + -73.45034, + 45.567705 + ], + [ + -73.450341, + 45.567701 + ], + [ + -73.450341, + 45.567699 + ], + [ + -73.450342, + 45.567696 + ], + [ + -73.450342, + 45.567692 + ], + [ + -73.450343, + 45.567687 + ], + [ + -73.450343, + 45.567683 + ], + [ + -73.450344, + 45.567678 + ], + [ + -73.450345, + 45.567674 + ], + [ + -73.450345, + 45.567669 + ], + [ + -73.450346, + 45.567665 + ], + [ + -73.450346, + 45.56766 + ], + [ + -73.450347, + 45.567656 + ], + [ + -73.450347, + 45.567651 + ], + [ + -73.450348, + 45.567647 + ], + [ + -73.450348, + 45.567642 + ], + [ + -73.450349, + 45.567638 + ], + [ + -73.450349, + 45.567633 + ], + [ + -73.45035, + 45.567629 + ], + [ + -73.45035, + 45.567624 + ], + [ + -73.450351, + 45.56762 + ], + [ + -73.450351, + 45.567615 + ], + [ + -73.450352, + 45.567611 + ], + [ + -73.450352, + 45.567606 + ], + [ + -73.450353, + 45.567602 + ], + [ + -73.450353, + 45.567597 + ], + [ + -73.450353, + 45.567593 + ], + [ + -73.450354, + 45.567588 + ], + [ + -73.450355, + 45.567584 + ], + [ + -73.450355, + 45.567579 + ], + [ + -73.450355, + 45.567575 + ], + [ + -73.450356, + 45.56757 + ], + [ + -73.450356, + 45.567566 + ], + [ + -73.450357, + 45.567561 + ], + [ + -73.450357, + 45.567557 + ], + [ + -73.450357, + 45.567552 + ], + [ + -73.45036, + 45.567548 + ], + [ + -73.450706, + 45.56757 + ], + [ + -73.451687, + 45.567778 + ], + [ + -73.453217, + 45.568102 + ], + [ + -73.453357, + 45.56812 + ], + [ + -73.453474, + 45.568093 + ], + [ + -73.453572, + 45.568062 + ], + [ + -73.453627, + 45.568017 + ], + [ + -73.45428, + 45.567396 + ], + [ + -73.455401, + 45.56633 + ], + [ + -73.455798, + 45.56598 + ], + [ + -73.45622, + 45.565633 + ], + [ + -73.456569, + 45.565355 + ], + [ + -73.456659, + 45.565283 + ], + [ + -73.456935, + 45.565085 + ], + [ + -73.457152, + 45.564936 + ], + [ + -73.457922, + 45.56436 + ], + [ + -73.457933, + 45.564352 + ], + [ + -73.458351, + 45.563996 + ], + [ + -73.458906, + 45.563519 + ], + [ + -73.459333, + 45.563151 + ], + [ + -73.459614, + 45.562904 + ], + [ + -73.459937, + 45.562638 + ], + [ + -73.460365, + 45.562319 + ], + [ + -73.460677, + 45.562085 + ], + [ + -73.460721, + 45.562027 + ], + [ + -73.460736, + 45.561977 + ], + [ + -73.460735, + 45.561923 + ], + [ + -73.460731, + 45.561644 + ], + [ + -73.461384, + 45.561626 + ], + [ + -73.461679, + 45.561618 + ], + [ + -73.461978, + 45.561613 + ], + [ + -73.46207, + 45.561609 + ], + [ + -73.462165, + 45.561609 + ], + [ + -73.46239, + 45.561604 + ], + [ + -73.462462, + 45.561604 + ], + [ + -73.463036, + 45.561587 + ], + [ + -73.463459, + 45.561555 + ], + [ + -73.463851, + 45.561519 + ], + [ + -73.464159, + 45.561474 + ], + [ + -73.464383, + 45.56143 + ], + [ + -73.464635, + 45.561385 + ], + [ + -73.464943, + 45.561331 + ], + [ + -73.465298, + 45.56125 + ], + [ + -73.465606, + 45.561173 + ], + [ + -73.465725, + 45.56114 + ], + [ + -73.465993, + 45.561066 + ], + [ + -73.466384, + 45.560949 + ], + [ + -73.466692, + 45.560841 + ], + [ + -73.46697, + 45.560742 + ], + [ + -73.467261, + 45.560621 + ], + [ + -73.467525, + 45.560508 + ], + [ + -73.467816, + 45.560373 + ], + [ + -73.467979, + 45.560279 + ], + [ + -73.468117, + 45.560229 + ], + [ + -73.468235, + 45.560175 + ], + [ + -73.468563, + 45.559978 + ], + [ + -73.468878, + 45.559766 + ], + [ + -73.468988, + 45.55969 + ], + [ + -73.469562, + 45.559302 + ], + [ + -73.469567, + 45.559298 + ], + [ + -73.469855, + 45.559096 + ], + [ + -73.470074, + 45.558948 + ], + [ + -73.470224, + 45.55884 + ], + [ + -73.470906, + 45.55839 + ], + [ + -73.471028, + 45.558322 + ], + [ + -73.471824, + 45.557823 + ], + [ + -73.472324, + 45.557504 + ], + [ + -73.472479, + 45.557405 + ], + [ + -73.472629, + 45.557279 + ], + [ + -73.472632, + 45.557275 + ], + [ + -73.473535, + 45.556703 + ], + [ + -73.473662, + 45.556622 + ], + [ + -73.473763, + 45.556559 + ], + [ + -73.475297, + 45.55555 + ], + [ + -73.475452, + 45.555449 + ], + [ + -73.475549, + 45.55539 + ], + [ + -73.47589, + 45.555179 + ], + [ + -73.47658, + 45.554819 + ], + [ + -73.47721, + 45.554495 + ], + [ + -73.478403, + 45.55387 + ], + [ + -73.479586, + 45.553272 + ], + [ + -73.480211, + 45.55294 + ], + [ + -73.480374, + 45.552853 + ], + [ + -73.480484, + 45.552799 + ], + [ + -73.482032, + 45.552008 + ], + [ + -73.482067, + 45.551991 + ], + [ + -73.482159, + 45.551945 + ], + [ + -73.483045, + 45.55149 + ], + [ + -73.483557, + 45.551228 + ], + [ + -73.483956, + 45.551023 + ], + [ + -73.485059, + 45.550458 + ], + [ + -73.485528, + 45.550218 + ], + [ + -73.485955, + 45.549961 + ], + [ + -73.489407, + 45.547816 + ], + [ + -73.48951, + 45.547751 + ], + [ + -73.490714, + 45.547006 + ], + [ + -73.491216, + 45.546506 + ], + [ + -73.491431, + 45.546368 + ], + [ + -73.491829, + 45.546111 + ], + [ + -73.491911, + 45.546057 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.49279, + 45.546129 + ], + [ + -73.492868, + 45.546192 + ], + [ + -73.493835, + 45.546966 + ], + [ + -73.494604, + 45.547573 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.495738, + 45.548489 + ], + [ + -73.495811, + 45.548549 + ], + [ + -73.49673, + 45.549278 + ], + [ + -73.497087, + 45.549548 + ], + [ + -73.49736, + 45.549719 + ], + [ + -73.497501, + 45.549805 + ], + [ + -73.497722, + 45.549908 + ], + [ + -73.497944, + 45.549998 + ], + [ + -73.498136, + 45.55007 + ], + [ + -73.498405, + 45.550151 + ], + [ + -73.498716, + 45.550237 + ], + [ + -73.499009, + 45.550295 + ], + [ + -73.499514, + 45.550349 + ], + [ + -73.499763, + 45.550363 + ], + [ + -73.501515, + 45.550448 + ], + [ + -73.502446, + 45.550493 + ], + [ + -73.502797, + 45.550502 + ], + [ + -73.502913, + 45.550498 + ], + [ + -73.503017, + 45.550484 + ], + [ + -73.503194, + 45.550453 + ], + [ + -73.503355, + 45.550399 + ], + [ + -73.503504, + 45.550327 + ], + [ + -73.503636, + 45.550237 + ], + [ + -73.503751, + 45.550133 + ], + [ + -73.503955, + 45.549904 + ], + [ + -73.504046, + 45.549787 + ], + [ + -73.504119, + 45.549647 + ], + [ + -73.50416, + 45.549508 + ], + [ + -73.504212, + 45.548909 + ], + [ + -73.504289, + 45.548585 + ], + [ + -73.504342, + 45.548423 + ], + [ + -73.504477, + 45.548095 + ], + [ + -73.504558, + 45.547933 + ], + [ + -73.504654, + 45.547771 + ], + [ + -73.504887, + 45.547461 + ], + [ + -73.505281, + 45.546997 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522319, + 45.530355 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518451, + 45.525396 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 208, + "properties": { + "id": "b3392b4d-d6a9-4d2c-84d3-e89d3c69cc2a", + "data": { + "gtfs": { + "shape_id": "120_1_A" + }, + "segments": [ + { + "distanceMeters": 1264, + "travelTimeSeconds": 279 + }, + { + "distanceMeters": 91, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 121, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 312, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 345, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 366, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 424, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 481, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 970, + "travelTimeSeconds": 98 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 5298, + "travelTimeSeconds": 620 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11339, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8130.481607090507, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.27, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 6.52, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.27 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "ae6e0f03-aee3-4f3b-9a79-98bb90a35a7a", + "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "aff34f6b-5801-4e1a-bc66-3990844e0b4e", + "bd467e22-a975-40b8-9a7a-9801529c3237", + "9ff5cf2b-10c7-49b1-8a66-4ecc0e2b17d7", + "adc9bcc9-8f6d-49e9-b7de-68b4f56033f4", + "28b7e465-7627-4587-950e-0fe104f1bac7", + "83389414-0049-46f6-a04b-557250511611", + "5ed15359-4097-46e8-93c0-1b63029d1081", + "f5001112-5d1e-4489-87be-a34e9ded0d46", + "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", + "a388aa98-4c24-4671-8a33-a0e95f9d5ada", + "fc1c0989-eb4e-4e77-b261-f952dd40601e", + "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", + "64648218-6b63-436c-9a46-4770987ba432", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "2a610ac8-c7f7-4ff9-955a-e1d854beced8", + "segments": [ + 0, + 80, + 262, + 304, + 308, + 312, + 315, + 325, + 341, + 355, + 367, + 370, + 378, + 385, + 398, + 403 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 208, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521447, + 45.524278 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523531, + 45.52794 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.502818, + 45.54899 + ], + [ + -73.502212, + 45.54962 + ], + [ + -73.501984, + 45.549836 + ], + [ + -73.50186, + 45.549926 + ], + [ + -73.501728, + 45.550007 + ], + [ + -73.501592, + 45.550079 + ], + [ + -73.501452, + 45.550133 + ], + [ + -73.501309, + 45.550183 + ], + [ + -73.50116, + 45.550219 + ], + [ + -73.501011, + 45.55025 + ], + [ + -73.500705, + 45.550282 + ], + [ + -73.500547, + 45.550286 + ], + [ + -73.49991, + 45.550295 + ], + [ + -73.499238, + 45.550226 + ], + [ + -73.498778, + 45.550153 + ], + [ + -73.498464, + 45.550065 + ], + [ + -73.498138, + 45.54995 + ], + [ + -73.497746, + 45.549767 + ], + [ + -73.497494, + 45.54961 + ], + [ + -73.497234, + 45.549428 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494903, + 45.54755 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.491911, + 45.546057 + ], + [ + -73.491829, + 45.546111 + ], + [ + -73.491648, + 45.546227 + ], + [ + -73.491431, + 45.546368 + ], + [ + -73.491216, + 45.546506 + ], + [ + -73.490714, + 45.547006 + ], + [ + -73.490353, + 45.547229 + ], + [ + -73.48951, + 45.547751 + ], + [ + -73.489407, + 45.547816 + ], + [ + -73.485955, + 45.549961 + ], + [ + -73.485528, + 45.550218 + ], + [ + -73.485059, + 45.550458 + ], + [ + -73.484196, + 45.5509 + ], + [ + -73.483956, + 45.551023 + ], + [ + -73.483045, + 45.55149 + ], + [ + -73.482159, + 45.551945 + ], + [ + -73.482067, + 45.551991 + ], + [ + -73.482032, + 45.552008 + ], + [ + -73.480529, + 45.552777 + ], + [ + -73.480484, + 45.552799 + ], + [ + -73.480374, + 45.552853 + ], + [ + -73.479586, + 45.553272 + ], + [ + -73.478403, + 45.55387 + ], + [ + -73.47721, + 45.554495 + ], + [ + -73.47658, + 45.554819 + ], + [ + -73.47589, + 45.555179 + ], + [ + -73.475637, + 45.555335 + ], + [ + -73.475549, + 45.55539 + ], + [ + -73.475452, + 45.555449 + ], + [ + -73.473844, + 45.556506 + ], + [ + -73.473763, + 45.556559 + ], + [ + -73.473662, + 45.556622 + ], + [ + -73.472632, + 45.557275 + ], + [ + -73.472629, + 45.557279 + ], + [ + -73.472372, + 45.557373 + ], + [ + -73.472222, + 45.557423 + ], + [ + -73.472064, + 45.557495 + ], + [ + -73.471877, + 45.557607 + ], + [ + -73.471648, + 45.55776 + ], + [ + -73.471558, + 45.557832 + ], + [ + -73.471339, + 45.557976 + ], + [ + -73.470903, + 45.558228 + ], + [ + -73.470793, + 45.5583 + ], + [ + -73.469991, + 45.558844 + ], + [ + -73.469731, + 45.558997 + ], + [ + -73.469495, + 45.559157 + ], + [ + -73.46926, + 45.559316 + ], + [ + -73.468792, + 45.559631 + ], + [ + -73.468729, + 45.559676 + ], + [ + -73.468547, + 45.559798 + ], + [ + -73.467979, + 45.560279 + ], + [ + -73.467816, + 45.560373 + ], + [ + -73.467525, + 45.560508 + ], + [ + -73.467261, + 45.560621 + ], + [ + -73.46697, + 45.560742 + ], + [ + -73.466692, + 45.560841 + ], + [ + -73.466384, + 45.560949 + ], + [ + -73.466142, + 45.561021 + ], + [ + -73.465993, + 45.561066 + ], + [ + -73.465606, + 45.561173 + ], + [ + -73.465298, + 45.56125 + ], + [ + -73.464943, + 45.561331 + ], + [ + -73.464635, + 45.561385 + ], + [ + -73.464383, + 45.56143 + ], + [ + -73.464342, + 45.561416 + ], + [ + -73.46391, + 45.56142 + ], + [ + -73.463676, + 45.561411 + ], + [ + -73.463469, + 45.561416 + ], + [ + -73.463235, + 45.561434 + ], + [ + -73.463014, + 45.561456 + ], + [ + -73.462671, + 45.561478 + ], + [ + -73.462489, + 45.561483 + ], + [ + -73.462171, + 45.561492 + ], + [ + -73.461975, + 45.561496 + ], + [ + -73.460725, + 45.561527 + ], + [ + -73.460731, + 45.561644 + ], + [ + -73.460735, + 45.561923 + ], + [ + -73.460736, + 45.561977 + ], + [ + -73.460721, + 45.562027 + ], + [ + -73.460677, + 45.562085 + ], + [ + -73.460365, + 45.562319 + ], + [ + -73.459937, + 45.562638 + ], + [ + -73.459828, + 45.562728 + ], + [ + -73.459614, + 45.562904 + ], + [ + -73.459333, + 45.563151 + ], + [ + -73.459033, + 45.56341 + ], + [ + -73.458351, + 45.563996 + ], + [ + -73.457933, + 45.564352 + ], + [ + -73.457152, + 45.564936 + ], + [ + -73.457074, + 45.56499 + ], + [ + -73.456935, + 45.565085 + ], + [ + -73.456659, + 45.565283 + ], + [ + -73.45622, + 45.565633 + ], + [ + -73.455798, + 45.56598 + ], + [ + -73.455579, + 45.566173 + ], + [ + -73.455401, + 45.56633 + ], + [ + -73.45414, + 45.567529 + ], + [ + -73.453627, + 45.568017 + ], + [ + -73.453572, + 45.568062 + ], + [ + -73.453474, + 45.568093 + ], + [ + -73.453357, + 45.56812 + ], + [ + -73.453217, + 45.568102 + ], + [ + -73.451687, + 45.567778 + ], + [ + -73.450706, + 45.56757 + ], + [ + -73.450572, + 45.567561 + ], + [ + -73.45036, + 45.567548 + ], + [ + -73.450115, + 45.567548 + ], + [ + -73.450114, + 45.567557 + ], + [ + -73.450113, + 45.567561 + ], + [ + -73.450112, + 45.56757 + ], + [ + -73.450111, + 45.567575 + ], + [ + -73.45011, + 45.567584 + ], + [ + -73.450109, + 45.567593 + ], + [ + -73.450108, + 45.567597 + ], + [ + -73.450107, + 45.567606 + ], + [ + -73.450106, + 45.567611 + ], + [ + -73.450105, + 45.56762 + ], + [ + -73.450104, + 45.567629 + ], + [ + -73.450103, + 45.567633 + ], + [ + -73.450102, + 45.567642 + ], + [ + -73.450101, + 45.567647 + ], + [ + -73.4501, + 45.567656 + ], + [ + -73.450099, + 45.56766 + ], + [ + -73.450098, + 45.567669 + ], + [ + -73.450097, + 45.567678 + ], + [ + -73.450096, + 45.567683 + ], + [ + -73.450095, + 45.567691 + ], + [ + -73.450093, + 45.567696 + ], + [ + -73.450092, + 45.567705 + ], + [ + -73.450091, + 45.567714 + ], + [ + -73.45009, + 45.567718 + ], + [ + -73.450089, + 45.567727 + ], + [ + -73.450088, + 45.567732 + ], + [ + -73.450087, + 45.567741 + ], + [ + -73.450085, + 45.56775 + ], + [ + -73.450084, + 45.567754 + ], + [ + -73.450083, + 45.567763 + ], + [ + -73.450082, + 45.567768 + ], + [ + -73.450081, + 45.567777 + ], + [ + -73.450079, + 45.567781 + ], + [ + -73.450078, + 45.56779 + ], + [ + -73.450077, + 45.567799 + ], + [ + -73.450075, + 45.567804 + ], + [ + -73.450074, + 45.567813 + ], + [ + -73.450073, + 45.567817 + ], + [ + -73.450071, + 45.567826 + ], + [ + -73.45007, + 45.567835 + ], + [ + -73.450069, + 45.56784 + ], + [ + -73.450067, + 45.567849 + ], + [ + -73.450066, + 45.567853 + ], + [ + -73.450065, + 45.567862 + ], + [ + -73.450063, + 45.567871 + ], + [ + -73.450062, + 45.567876 + ], + [ + -73.45006, + 45.567885 + ], + [ + -73.450059, + 45.567889 + ], + [ + -73.450058, + 45.567898 + ], + [ + -73.450056, + 45.567903 + ], + [ + -73.450055, + 45.567912 + ], + [ + -73.450054, + 45.567921 + ], + [ + -73.450052, + 45.567925 + ], + [ + -73.450051, + 45.567934 + ], + [ + -73.450049, + 45.567939 + ], + [ + -73.450048, + 45.567948 + ], + [ + -73.450046, + 45.567957 + ], + [ + -73.450045, + 45.567961 + ], + [ + -73.450043, + 45.56797 + ], + [ + -73.450042, + 45.567975 + ], + [ + -73.45004, + 45.567984 + ], + [ + -73.450039, + 45.567988 + ], + [ + -73.450037, + 45.567997 + ], + [ + -73.450036, + 45.568006 + ], + [ + -73.450034, + 45.568011 + ], + [ + -73.450032, + 45.56802 + ], + [ + -73.450031, + 45.568024 + ], + [ + -73.450029, + 45.568033 + ], + [ + -73.450028, + 45.568042 + ], + [ + -73.450026, + 45.568047 + ], + [ + -73.450024, + 45.568056 + ], + [ + -73.450023, + 45.56806 + ], + [ + -73.450021, + 45.568069 + ], + [ + -73.450019, + 45.568074 + ], + [ + -73.450017, + 45.568083 + ], + [ + -73.450016, + 45.568092 + ], + [ + -73.450014, + 45.568096 + ], + [ + -73.450013, + 45.568105 + ], + [ + -73.450011, + 45.56811 + ], + [ + -73.450009, + 45.568119 + ], + [ + -73.450007, + 45.568123 + ], + [ + -73.450006, + 45.568132 + ], + [ + -73.450004, + 45.568141 + ], + [ + -73.450002, + 45.568146 + ], + [ + -73.45, + 45.568155 + ], + [ + -73.449999, + 45.568159 + ], + [ + -73.449997, + 45.568168 + ], + [ + -73.449995, + 45.568173 + ], + [ + -73.449993, + 45.568182 + ], + [ + -73.449991, + 45.568191 + ], + [ + -73.449989, + 45.568195 + ], + [ + -73.449988, + 45.568204 + ], + [ + -73.449986, + 45.568209 + ], + [ + -73.449984, + 45.568218 + ], + [ + -73.449982, + 45.568227 + ], + [ + -73.44998, + 45.568231 + ], + [ + -73.449978, + 45.56824 + ], + [ + -73.449976, + 45.568245 + ], + [ + -73.449974, + 45.568254 + ], + [ + -73.449972, + 45.568258 + ], + [ + -73.44997, + 45.568267 + ], + [ + -73.449968, + 45.568276 + ], + [ + -73.449967, + 45.568281 + ], + [ + -73.449965, + 45.56829 + ], + [ + -73.449963, + 45.568294 + ], + [ + -73.449961, + 45.568303 + ], + [ + -73.449959, + 45.568308 + ], + [ + -73.449957, + 45.568317 + ], + [ + -73.449955, + 45.568326 + ], + [ + -73.449953, + 45.56833 + ], + [ + -73.449951, + 45.568339 + ], + [ + -73.449949, + 45.568344 + ], + [ + -73.449946, + 45.568353 + ], + [ + -73.449944, + 45.568357 + ], + [ + -73.449942, + 45.568366 + ], + [ + -73.44994, + 45.568371 + ], + [ + -73.449938, + 45.56838 + ], + [ + -73.449936, + 45.568389 + ], + [ + -73.449934, + 45.568393 + ], + [ + -73.449932, + 45.568402 + ], + [ + -73.44993, + 45.568407 + ], + [ + -73.449927, + 45.568416 + ], + [ + -73.449925, + 45.56842 + ], + [ + -73.449923, + 45.568429 + ], + [ + -73.449921, + 45.568438 + ], + [ + -73.449919, + 45.568443 + ], + [ + -73.449917, + 45.568452 + ], + [ + -73.449915, + 45.568456 + ], + [ + -73.449912, + 45.568465 + ], + [ + -73.44991, + 45.56847 + ], + [ + -73.449908, + 45.568479 + ], + [ + -73.449905, + 45.568488 + ], + [ + -73.449903, + 45.568492 + ], + [ + -73.449901, + 45.568501 + ], + [ + -73.449899, + 45.568506 + ], + [ + -73.449897, + 45.568515 + ], + [ + -73.449894, + 45.568519 + ], + [ + -73.449892, + 45.568528 + ], + [ + -73.449889, + 45.568533 + ], + [ + -73.449887, + 45.568542 + ], + [ + -73.449885, + 45.568551 + ], + [ + -73.449883, + 45.568555 + ], + [ + -73.44988, + 45.568564 + ], + [ + -73.449878, + 45.568569 + ], + [ + -73.449875, + 45.568578 + ], + [ + -73.449873, + 45.568582 + ], + [ + -73.44987, + 45.568591 + ], + [ + -73.449868, + 45.568596 + ], + [ + -73.449866, + 45.568605 + ], + [ + -73.449863, + 45.568614 + ], + [ + -73.449861, + 45.568618 + ], + [ + -73.449856, + 45.568632 + ], + [ + -73.449825, + 45.568708 + ], + [ + -73.449762, + 45.568861 + ], + [ + -73.449744, + 45.568903 + ], + [ + -73.449625, + 45.569181 + ], + [ + -73.449277, + 45.569995 + ], + [ + -73.449093, + 45.570413 + ], + [ + -73.449089, + 45.570422 + ], + [ + -73.44907, + 45.570467 + ], + [ + -73.449049, + 45.570517 + ], + [ + -73.448873, + 45.570917 + ], + [ + -73.448823, + 45.571034 + ], + [ + -73.448769, + 45.571168 + ], + [ + -73.44818, + 45.572625 + ], + [ + -73.447654, + 45.573778 + ], + [ + -73.447519, + 45.574084 + ], + [ + -73.447518, + 45.574088 + ], + [ + -73.447455, + 45.574133 + ], + [ + -73.447308, + 45.574407 + ], + [ + -73.447267, + 45.574466 + ], + [ + -73.447241, + 45.574497 + ], + [ + -73.447197, + 45.574529 + ], + [ + -73.447149, + 45.574547 + ], + [ + -73.447112, + 45.574556 + ], + [ + -73.447049, + 45.574565 + ], + [ + -73.446965, + 45.574569 + ], + [ + -73.446884, + 45.574565 + ], + [ + -73.446792, + 45.574547 + ], + [ + -73.446652, + 45.574511 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.443147, + 45.572802 + ], + [ + -73.443228, + 45.572879 + ], + [ + -73.443273, + 45.572955 + ], + [ + -73.443271, + 45.573 + ], + [ + -73.443276, + 45.573125 + ], + [ + -73.443281, + 45.573166 + ], + [ + -73.443386, + 45.57326 + ], + [ + -73.443502, + 45.573319 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.44468, + 45.573697 + ], + [ + -73.444697, + 45.573706 + ], + [ + -73.444729, + 45.573713 + ], + [ + -73.444769, + 45.573716 + ], + [ + -73.444831, + 45.573715 + ], + [ + -73.444884, + 45.573708 + ], + [ + -73.444896, + 45.573701 + ], + [ + -73.44491, + 45.573694 + ], + [ + -73.444953, + 45.573633 + ], + [ + -73.44492, + 45.573618 + ], + [ + -73.444872, + 45.573601 + ], + [ + -73.444829, + 45.573598 + ], + [ + -73.444749, + 45.573615 + ], + [ + -73.44471, + 45.573635 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.443539, + 45.573203 + ], + [ + -73.443522, + 45.573154 + ] + ] + }, + "id": 209, + "properties": { + "id": "d86c0312-aea5-4bc8-83f2-e6faa1dfca62", + "data": { + "gtfs": { + "shape_id": "120_2_R" + }, + "segments": [ + { + "distanceMeters": 4458, + "travelTimeSeconds": 332 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 782, + "travelTimeSeconds": 124 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 476, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 451, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 1184, + "travelTimeSeconds": 391 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10659, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8130.481607090507, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.34, + "travelTimeWithoutDwellTimesSeconds": 1680, + "operatingTimeWithLayoverTimeSeconds": 1860, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1680, + "operatingSpeedWithLayoverMetersPerSecond": 5.73, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.34 + }, + "mode": "bus", + "name": "Stat. de Mortagne", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "8a3f1208-7ffb-452e-8ebb-c436acba82d6", + "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", + "cd788179-2c9b-4e1e-9ba3-10b35bfde3fa", + "a388aa98-4c24-4671-8a33-a0e95f9d5ada", + "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", + "f5001112-5d1e-4489-87be-a34e9ded0d46", + "b070e296-b686-4ba3-bf68-049018a7af21", + "83389414-0049-46f6-a04b-557250511611", + "2b894d51-a427-4850-8fae-89ed3f29388d", + "bd99fd0e-cbdd-4d16-af5c-609bbef87ee4", + "adc9bcc9-8f6d-49e9-b7de-68b4f56033f4", + "bd467e22-a975-40b8-9a7a-9801529c3237", + "6150abd1-c8f6-4045-8e3e-f50bbef79a53", + "aff34f6b-5801-4e1a-bc66-3990844e0b4e", + "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", + "6672cb43-3241-42d7-b5c0-fdaed10338b9", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287" + ], + "stops": [], + "line_id": "2a610ac8-c7f7-4ff9-955a-e1d854beced8", + "segments": [ + 0, + 73, + 80, + 90, + 96, + 104, + 107, + 123, + 135, + 149, + 160, + 163, + 167, + 172, + 174, + 182, + 340, + 348 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 209, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521486, + 45.523819 + ], + [ + -73.521481, + 45.523874 + ], + [ + -73.52149, + 45.523892 + ], + [ + -73.521509, + 45.523906 + ], + [ + -73.521542, + 45.523919 + ], + [ + -73.521581, + 45.523923 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509952, + 45.515502 + ], + [ + -73.509485, + 45.515357 + ], + [ + -73.509376, + 45.515323 + ], + [ + -73.508692, + 45.515143 + ], + [ + -73.508296, + 45.51503 + ], + [ + -73.507817, + 45.514868 + ], + [ + -73.507704, + 45.514841 + ], + [ + -73.507464, + 45.514765 + ], + [ + -73.506516, + 45.514432 + ], + [ + -73.505464, + 45.514054 + ], + [ + -73.505166, + 45.51396 + ], + [ + -73.504861, + 45.513863 + ], + [ + -73.504451, + 45.513734 + ], + [ + -73.50434, + 45.513699 + ], + [ + -73.504259, + 45.513672 + ], + [ + -73.503369, + 45.513397 + ], + [ + -73.502433, + 45.51315 + ], + [ + -73.502048, + 45.513078 + ], + [ + -73.501411, + 45.512898 + ], + [ + -73.50108, + 45.512799 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.494088, + 45.51035 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488541, + 45.503629 + ], + [ + -73.48831, + 45.50321 + ], + [ + -73.48823, + 45.503039 + ], + [ + -73.488092, + 45.502693 + ], + [ + -73.487989, + 45.502369 + ], + [ + -73.487959, + 45.502275 + ], + [ + -73.487746, + 45.501478 + ], + [ + -73.487613, + 45.501033 + ], + [ + -73.487509, + 45.500686 + ], + [ + -73.487464, + 45.50056 + ], + [ + -73.487346, + 45.500232 + ], + [ + -73.487139, + 45.499795 + ], + [ + -73.486985, + 45.499512 + ], + [ + -73.486818, + 45.499233 + ], + [ + -73.48673, + 45.4991 + ], + [ + -73.486631, + 45.498949 + ], + [ + -73.486428, + 45.498675 + ], + [ + -73.486216, + 45.498401 + ], + [ + -73.486166, + 45.498342 + ], + [ + -73.486, + 45.498149 + ], + [ + -73.485576, + 45.497708 + ], + [ + -73.485299, + 45.497456 + ], + [ + -73.485251, + 45.497415 + ], + [ + -73.484899, + 45.497123 + ], + [ + -73.484387, + 45.49674 + ], + [ + -73.484357, + 45.496722 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.483872, + 45.497077 + ], + [ + -73.483869, + 45.49708 + ], + [ + -73.483504, + 45.497347 + ], + [ + -73.483382, + 45.497433 + ], + [ + -73.483338, + 45.497469 + ], + [ + -73.483277, + 45.497509 + ], + [ + -73.482985, + 45.497707 + ], + [ + -73.482636, + 45.497941 + ], + [ + -73.482124, + 45.49831 + ], + [ + -73.481899, + 45.498472 + ], + [ + -73.481589, + 45.498697 + ], + [ + -73.481169, + 45.498994 + ], + [ + -73.480847, + 45.499223 + ], + [ + -73.480477, + 45.499488 + ], + [ + -73.480326, + 45.499398 + ], + [ + -73.47971, + 45.498993 + ], + [ + -73.479492, + 45.498848 + ], + [ + -73.479271, + 45.498701 + ], + [ + -73.478967, + 45.498498 + ], + [ + -73.4786, + 45.498251 + ], + [ + -73.478257, + 45.498026 + ], + [ + -73.478178, + 45.497976 + ], + [ + -73.477789, + 45.49772 + ], + [ + -73.477439, + 45.49749 + ], + [ + -73.477062, + 45.497238 + ], + [ + -73.476713, + 45.497004 + ], + [ + -73.47632, + 45.496748 + ], + [ + -73.475974, + 45.496523 + ], + [ + -73.475747, + 45.496374 + ], + [ + -73.475492, + 45.496208 + ], + [ + -73.475346, + 45.496118 + ], + [ + -73.475245, + 45.49605 + ], + [ + -73.474879, + 45.495798 + ], + [ + -73.474517, + 45.49556 + ], + [ + -73.474138, + 45.495312 + ], + [ + -73.473858, + 45.495132 + ], + [ + -73.473385, + 45.494817 + ], + [ + -73.473259, + 45.49474 + ], + [ + -73.473016, + 45.494578 + ], + [ + -73.472769, + 45.494416 + ], + [ + -73.472367, + 45.494146 + ], + [ + -73.471949, + 45.493867 + ], + [ + -73.471614, + 45.493642 + ], + [ + -73.471224, + 45.49339 + ], + [ + -73.470867, + 45.493152 + ], + [ + -73.470545, + 45.492931 + ], + [ + -73.470296, + 45.492769 + ], + [ + -73.469959, + 45.492553 + ], + [ + -73.469723, + 45.492395 + ], + [ + -73.469303, + 45.492121 + ], + [ + -73.469006, + 45.491923 + ], + [ + -73.468656, + 45.491698 + ], + [ + -73.468573, + 45.49163 + ], + [ + -73.468166, + 45.49136 + ], + [ + -73.468094, + 45.49132 + ], + [ + -73.468029, + 45.491284 + ], + [ + -73.467697, + 45.491059 + ], + [ + -73.467397, + 45.490865 + ], + [ + -73.466889, + 45.490518 + ], + [ + -73.466277, + 45.490113 + ], + [ + -73.466175, + 45.490041 + ], + [ + -73.466087, + 45.489983 + ], + [ + -73.465434, + 45.48956 + ], + [ + -73.46482, + 45.489155 + ], + [ + -73.464595, + 45.489001 + ], + [ + -73.464379, + 45.488857 + ], + [ + -73.46422, + 45.488754 + ], + [ + -73.464097, + 45.488673 + ], + [ + -73.463537, + 45.488299 + ], + [ + -73.463291, + 45.488146 + ], + [ + -73.463053, + 45.487989 + ], + [ + -73.462983, + 45.487944 + ], + [ + -73.46278, + 45.487809 + ], + [ + -73.462116, + 45.487367 + ], + [ + -73.461292, + 45.486823 + ], + [ + -73.461219, + 45.486774 + ], + [ + -73.460376, + 45.486211 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.45937, + 45.485544 + ], + [ + -73.458995, + 45.485292 + ], + [ + -73.458472, + 45.484946 + ], + [ + -73.45799, + 45.484621 + ], + [ + -73.457564, + 45.484333 + ], + [ + -73.457447, + 45.484256 + ], + [ + -73.456334, + 45.483523 + ], + [ + -73.456426, + 45.48346 + ], + [ + -73.45662, + 45.483329 + ], + [ + -73.456963, + 45.483096 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45645, + 45.482799 + ], + [ + -73.455886, + 45.482623 + ], + [ + -73.455654, + 45.482542 + ], + [ + -73.455462, + 45.482465 + ], + [ + -73.455276, + 45.482384 + ], + [ + -73.455009, + 45.482272 + ], + [ + -73.454605, + 45.482087 + ], + [ + -73.454381, + 45.481984 + ], + [ + -73.454145, + 45.481862 + ], + [ + -73.453796, + 45.481673 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452296, + 45.480719 + ], + [ + -73.452295, + 45.480718 + ], + [ + -73.451837, + 45.480421 + ], + [ + -73.451565, + 45.480238 + ], + [ + -73.450994, + 45.479853 + ], + [ + -73.450929, + 45.479809 + ], + [ + -73.450257, + 45.479368 + ], + [ + -73.449693, + 45.479 + ], + [ + -73.449587, + 45.478931 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448305, + 45.478058 + ], + [ + -73.447778, + 45.477701 + ], + [ + -73.4477, + 45.477648 + ], + [ + -73.446992, + 45.477175 + ], + [ + -73.446393, + 45.476765 + ], + [ + -73.445743, + 45.476329 + ], + [ + -73.445364, + 45.476066 + ], + [ + -73.445205, + 45.475955 + ], + [ + -73.444867, + 45.475726 + ], + [ + -73.444508, + 45.475482 + ], + [ + -73.443707, + 45.474941 + ], + [ + -73.443609, + 45.474874 + ], + [ + -73.44285, + 45.474357 + ], + [ + -73.441165, + 45.473204 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.439193, + 45.471877 + ], + [ + -73.438153, + 45.471176 + ], + [ + -73.438035, + 45.471097 + ], + [ + -73.43559, + 45.469482 + ], + [ + -73.435506, + 45.469426 + ], + [ + -73.434528, + 45.468778 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.433058, + 45.467863 + ], + [ + -73.430632, + 45.466255 + ], + [ + -73.430214, + 45.465978 + ], + [ + -73.426686, + 45.463639 + ], + [ + -73.426608, + 45.463587 + ], + [ + -73.425566, + 45.462896 + ], + [ + -73.425014, + 45.46253 + ], + [ + -73.424853, + 45.462423 + ], + [ + -73.4247, + 45.462321 + ], + [ + -73.42397, + 45.461837 + ], + [ + -73.423448, + 45.461491 + ], + [ + -73.423345, + 45.461423 + ], + [ + -73.422579, + 45.460915 + ], + [ + -73.419921, + 45.459152 + ], + [ + -73.419828, + 45.45909 + ], + [ + -73.419683, + 45.458994 + ], + [ + -73.417292, + 45.457408 + ], + [ + -73.417173, + 45.457494 + ], + [ + -73.41683, + 45.457739 + ], + [ + -73.416622, + 45.457887 + ], + [ + -73.416344, + 45.458017 + ], + [ + -73.416165, + 45.458062 + ], + [ + -73.415997, + 45.458084 + ], + [ + -73.415882, + 45.458093 + ], + [ + -73.415729, + 45.458102 + ], + [ + -73.415567, + 45.45812 + ], + [ + -73.415388, + 45.458142 + ], + [ + -73.415204, + 45.458183 + ], + [ + -73.415063, + 45.458237 + ], + [ + -73.414927, + 45.458313 + ], + [ + -73.414819, + 45.458381 + ], + [ + -73.414651, + 45.458488 + ], + [ + -73.41246, + 45.460117 + ], + [ + -73.411084, + 45.46114 + ], + [ + -73.410025, + 45.461927 + ], + [ + -73.410017, + 45.461933 + ], + [ + -73.40945, + 45.462354 + ], + [ + -73.407779, + 45.463577 + ], + [ + -73.40765, + 45.463671 + ], + [ + -73.404482, + 45.461543 + ], + [ + -73.404296, + 45.461418 + ], + [ + -73.406253, + 45.46006 + ] + ] + }, + "id": 210, + "properties": { + "id": "68708237-db2c-48f4-b541-3b13df282dc3", + "data": { + "gtfs": { + "shape_id": "121_1_R" + }, + "segments": [ + { + "distanceMeters": 8464, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 459, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 93 + }, + { + "distanceMeters": 334, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 89 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 58 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13706, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4276.526753760299, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 13.44, + "travelTimeWithoutDwellTimesSeconds": 1020, + "operatingTimeWithLayoverTimeSeconds": 1200, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1020, + "operatingSpeedWithLayoverMetersPerSecond": 11.42, + "averageSpeedWithoutDwellTimesMetersPerSecond": 13.44 + }, + "mode": "bus", + "name": "Armand-Frappier", + "color": "#A32638", + "nodes": [ + "5f21960f-8919-4407-8a49-57c39947c4fe", + "cc43f372-04e8-4c4c-b711-2e4159e3855d", + "9b7055a8-adca-44c6-9935-6026756d4460", + "76ff8292-f41f-4d17-998d-6dd3d2c32288", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "e80498a8-505d-4215-ba07-7582f8783d8e", + "014d61e3-acfc-41f6-b78a-5c2178c073b1", + "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", + "14e293a6-352a-4156-8578-66d0b5bdcc1f", + "62558b4d-75af-4b04-8040-a30de5a89658", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "988183db-88f1-47cb-87bf-b2a03dd4a38d", + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "bfb03303-2ee6-40dd-8e8f-859a06b338a6", + "2b6f210c-4f28-43d1-b096-b48c582f5274", + "cdda3c7c-b577-49de-afc0-aa4c4e60c34b", + "dc623539-3b98-4807-a5d5-f66507b8bc4c", + "84fd1601-f65a-4eb9-beba-06ee8c2970d2", + "fee943f3-e127-46e6-bc62-d6c4c320bd7a", + "22c42fca-2f2b-42d3-9449-3b9e7c474f2e", + "28acd503-64ba-4c57-925c-1acd27dd7dde", + "abd6e1bb-b826-4462-87f2-3bae5c6594ea" + ], + "stops": [], + "line_id": "4e1f2cfb-db00-499a-afdd-d36dcea45986", + "segments": [ + 0, + 250, + 253, + 257, + 262, + 266, + 269, + 273, + 275, + 277, + 281, + 282, + 286, + 289, + 292, + 297, + 309, + 311, + 313, + 316, + 318 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 210, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.406253, + 45.46006 + ], + [ + -73.406952, + 45.459576 + ], + [ + -73.408732, + 45.458422 + ], + [ + -73.409865, + 45.457688 + ], + [ + -73.410149, + 45.457553 + ], + [ + -73.410462, + 45.457446 + ], + [ + -73.410807, + 45.457387 + ], + [ + -73.411159, + 45.457347 + ], + [ + -73.411393, + 45.457343 + ], + [ + -73.411627, + 45.457361 + ], + [ + -73.412457, + 45.457447 + ], + [ + -73.412673, + 45.457474 + ], + [ + -73.412926, + 45.457502 + ], + [ + -73.413147, + 45.457542 + ], + [ + -73.413262, + 45.457587 + ], + [ + -73.413399, + 45.457668 + ], + [ + -73.414313, + 45.458267 + ], + [ + -73.414651, + 45.458488 + ], + [ + -73.414927, + 45.458313 + ], + [ + -73.415063, + 45.458237 + ], + [ + -73.415204, + 45.458183 + ], + [ + -73.415388, + 45.458142 + ], + [ + -73.415567, + 45.45812 + ], + [ + -73.415729, + 45.458102 + ], + [ + -73.415882, + 45.458093 + ], + [ + -73.415997, + 45.458084 + ], + [ + -73.416165, + 45.458062 + ], + [ + -73.416344, + 45.458017 + ], + [ + -73.416622, + 45.457887 + ], + [ + -73.416858, + 45.457719 + ], + [ + -73.417173, + 45.457494 + ], + [ + -73.419493, + 45.459028 + ], + [ + -73.419564, + 45.459076 + ], + [ + -73.419713, + 45.459174 + ], + [ + -73.422288, + 45.460877 + ], + [ + -73.422478, + 45.461003 + ], + [ + -73.423149, + 45.461446 + ], + [ + -73.42386, + 45.461916 + ], + [ + -73.424593, + 45.462401 + ], + [ + -73.424972, + 45.462652 + ], + [ + -73.425478, + 45.462986 + ], + [ + -73.426203, + 45.463465 + ], + [ + -73.426502, + 45.463663 + ], + [ + -73.43053, + 45.466326 + ], + [ + -73.430807, + 45.466509 + ], + [ + -73.432747, + 45.467791 + ], + [ + -73.434092, + 45.468675 + ], + [ + -73.434186, + 45.468737 + ], + [ + -73.435226, + 45.469429 + ], + [ + -73.435371, + 45.469525 + ], + [ + -73.437733, + 45.471086 + ], + [ + -73.437899, + 45.471196 + ], + [ + -73.440423, + 45.472896 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.441938, + 45.473928 + ], + [ + -73.442708, + 45.474456 + ], + [ + -73.44337, + 45.474907 + ], + [ + -73.443474, + 45.474978 + ], + [ + -73.44437, + 45.475586 + ], + [ + -73.445009, + 45.476019 + ], + [ + -73.445067, + 45.476058 + ], + [ + -73.445608, + 45.476432 + ], + [ + -73.446237, + 45.47686 + ], + [ + -73.446869, + 45.477292 + ], + [ + -73.447192, + 45.477511 + ], + [ + -73.44754, + 45.477747 + ], + [ + -73.448146, + 45.478157 + ], + [ + -73.44865, + 45.478496 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.450119, + 45.479471 + ], + [ + -73.450869, + 45.479962 + ], + [ + -73.451, + 45.480048 + ], + [ + -73.451438, + 45.480342 + ], + [ + -73.451689, + 45.480511 + ], + [ + -73.452165, + 45.480813 + ], + [ + -73.452541, + 45.481075 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452851, + 45.48129 + ], + [ + -73.453668, + 45.481781 + ], + [ + -73.454023, + 45.481974 + ], + [ + -73.454266, + 45.482101 + ], + [ + -73.454494, + 45.482204 + ], + [ + -73.454624, + 45.482357 + ], + [ + -73.455203, + 45.482812 + ], + [ + -73.455441, + 45.482965 + ], + [ + -73.456005, + 45.483321 + ], + [ + -73.456089, + 45.483375 + ], + [ + -73.456112, + 45.483393 + ], + [ + -73.456334, + 45.483523 + ], + [ + -73.457447, + 45.484256 + ], + [ + -73.457564, + 45.484333 + ], + [ + -73.45799, + 45.484621 + ], + [ + -73.458472, + 45.484946 + ], + [ + -73.458995, + 45.485292 + ], + [ + -73.459352, + 45.485532 + ], + [ + -73.45937, + 45.485544 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.460376, + 45.486211 + ], + [ + -73.461026, + 45.486645 + ], + [ + -73.461219, + 45.486774 + ], + [ + -73.461292, + 45.486823 + ], + [ + -73.462116, + 45.487367 + ], + [ + -73.462664, + 45.487731 + ], + [ + -73.46278, + 45.487809 + ], + [ + -73.462983, + 45.487944 + ], + [ + -73.463053, + 45.487989 + ], + [ + -73.463291, + 45.488146 + ], + [ + -73.463537, + 45.488299 + ], + [ + -73.464097, + 45.488673 + ], + [ + -73.46422, + 45.488754 + ], + [ + -73.464379, + 45.488857 + ], + [ + -73.464595, + 45.489001 + ], + [ + -73.464745, + 45.489104 + ], + [ + -73.46482, + 45.489155 + ], + [ + -73.465434, + 45.48956 + ], + [ + -73.466009, + 45.489932 + ], + [ + -73.466087, + 45.489983 + ], + [ + -73.466175, + 45.490041 + ], + [ + -73.466277, + 45.490113 + ], + [ + -73.466889, + 45.490518 + ], + [ + -73.467397, + 45.490865 + ], + [ + -73.467697, + 45.491059 + ], + [ + -73.467799, + 45.491128 + ], + [ + -73.468029, + 45.491284 + ], + [ + -73.468094, + 45.49132 + ], + [ + -73.468166, + 45.49136 + ], + [ + -73.468573, + 45.49163 + ], + [ + -73.468656, + 45.491698 + ], + [ + -73.469006, + 45.491923 + ], + [ + -73.469068, + 45.491964 + ], + [ + -73.469303, + 45.492121 + ], + [ + -73.469723, + 45.492395 + ], + [ + -73.469959, + 45.492553 + ], + [ + -73.470296, + 45.492769 + ], + [ + -73.470313, + 45.49278 + ], + [ + -73.470545, + 45.492931 + ], + [ + -73.470867, + 45.493152 + ], + [ + -73.471224, + 45.49339 + ], + [ + -73.471614, + 45.493642 + ], + [ + -73.471949, + 45.493867 + ], + [ + -73.472367, + 45.494146 + ], + [ + -73.472663, + 45.494345 + ], + [ + -73.472769, + 45.494416 + ], + [ + -73.473016, + 45.494578 + ], + [ + -73.473259, + 45.49474 + ], + [ + -73.473385, + 45.494817 + ], + [ + -73.473747, + 45.495058 + ], + [ + -73.473858, + 45.495132 + ], + [ + -73.474138, + 45.495312 + ], + [ + -73.474517, + 45.49556 + ], + [ + -73.474879, + 45.495798 + ], + [ + -73.475137, + 45.495976 + ], + [ + -73.475245, + 45.49605 + ], + [ + -73.475346, + 45.496118 + ], + [ + -73.475492, + 45.496208 + ], + [ + -73.475747, + 45.496374 + ], + [ + -73.475974, + 45.496523 + ], + [ + -73.47632, + 45.496748 + ], + [ + -73.476628, + 45.496949 + ], + [ + -73.476713, + 45.497004 + ], + [ + -73.477062, + 45.497238 + ], + [ + -73.477439, + 45.49749 + ], + [ + -73.477789, + 45.49772 + ], + [ + -73.478034, + 45.497881 + ], + [ + -73.478178, + 45.497976 + ], + [ + -73.478257, + 45.498026 + ], + [ + -73.4786, + 45.498251 + ], + [ + -73.478967, + 45.498498 + ], + [ + -73.479271, + 45.498701 + ], + [ + -73.47971, + 45.498993 + ], + [ + -73.480326, + 45.499398 + ], + [ + -73.480365, + 45.499422 + ], + [ + -73.480477, + 45.499488 + ], + [ + -73.480835, + 45.499231 + ], + [ + -73.480847, + 45.499223 + ], + [ + -73.481169, + 45.498994 + ], + [ + -73.481589, + 45.498697 + ], + [ + -73.481899, + 45.498472 + ], + [ + -73.482124, + 45.49831 + ], + [ + -73.482543, + 45.498008 + ], + [ + -73.482636, + 45.497941 + ], + [ + -73.482985, + 45.497707 + ], + [ + -73.483277, + 45.497509 + ], + [ + -73.483338, + 45.497469 + ], + [ + -73.483382, + 45.497433 + ], + [ + -73.483504, + 45.497347 + ], + [ + -73.483872, + 45.497077 + ], + [ + -73.484052, + 45.496945 + ], + [ + -73.484056, + 45.496942 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.48442, + 45.496983 + ], + [ + -73.484708, + 45.497199 + ], + [ + -73.484931, + 45.497378 + ], + [ + -73.485095, + 45.49751 + ], + [ + -73.485397, + 45.497784 + ], + [ + -73.485739, + 45.498135 + ], + [ + -73.485877, + 45.498284 + ], + [ + -73.486105, + 45.498553 + ], + [ + -73.486286, + 45.498787 + ], + [ + -73.486368, + 45.498907 + ], + [ + -73.486538, + 45.499154 + ], + [ + -73.486685, + 45.499381 + ], + [ + -73.486823, + 45.499615 + ], + [ + -73.486951, + 45.499858 + ], + [ + -73.487138, + 45.500263 + ], + [ + -73.487159, + 45.500317 + ], + [ + -73.487268, + 45.500609 + ], + [ + -73.487306, + 45.500713 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487417, + 45.501077 + ], + [ + -73.487455, + 45.501208 + ], + [ + -73.487464, + 45.50124 + ], + [ + -73.48765, + 45.50191 + ], + [ + -73.487855, + 45.502589 + ], + [ + -73.488032, + 45.50303 + ], + [ + -73.488178, + 45.503309 + ], + [ + -73.488409, + 45.50371 + ], + [ + -73.489159, + 45.504974 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492923, + 45.510108 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497918, + 45.512052 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.500882, + 45.513009 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505113, + 45.514482 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506107, + 45.514749 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511916, + 45.516872 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513432, + 45.5183 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.514994, + 45.51942 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518889, + 45.520627 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.521609, + 45.523676 + ], + [ + -73.521556, + 45.52368 + ], + [ + -73.521506, + 45.523698 + ], + [ + -73.521494, + 45.523725 + ], + [ + -73.521489, + 45.523788 + ], + [ + -73.521486, + 45.523819 + ] + ] + }, + "id": 211, + "properties": { + "id": "846aca2e-3a4b-4297-b529-e6410bd69601", + "data": { + "gtfs": { + "shape_id": "121_2_A" + }, + "segments": [ + { + "distanceMeters": 266, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 509, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 494, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 359, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 507, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 1156, + "travelTimeSeconds": 168 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 598, + "travelTimeSeconds": 116 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 694, + "travelTimeSeconds": 135 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 210, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12985, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11435.721751506964, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.18, + "travelTimeWithoutDwellTimesSeconds": 2100, + "operatingTimeWithLayoverTimeSeconds": 2310, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2100, + "operatingSpeedWithLayoverMetersPerSecond": 5.62, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.18 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "abd6e1bb-b826-4462-87f2-3bae5c6594ea", + "fcd51ec2-f1b1-4630-8f4f-bbfd7b67c91f", + "dc623539-3b98-4807-a5d5-f66507b8bc4c", + "cdda3c7c-b577-49de-afc0-aa4c4e60c34b", + "0b9048bd-dd82-42d8-ba47-b3d93d735fe8", + "d8582feb-8d83-457a-8a52-dc395b1f7390", + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "2f104875-795a-4778-a419-276272abfb07", + "ba86f45f-9fb5-4525-a50b-a876919fd012", + "988c86da-04eb-4067-b650-f13c447b17e7", + "14e293a6-352a-4156-8578-66d0b5bdcc1f", + "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", + "2881ced2-6a46-4738-a470-6ff64097e482", + "e80498a8-505d-4215-ba07-7582f8783d8e", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "c4061c94-e615-4bca-b219-1ff6ea9657d0", + "89553e99-6867-4296-935e-718bb768cb73", + "72a48bdf-3a35-4f3b-8d05-e465faf044cf", + "70af9f63-28e4-474e-896b-5462b7252980", + "1f1b5a64-7c8d-49de-8df3-369e30f799ef", + "c24b91da-a4a3-4b28-b987-5726c6a01fdb", + "720107c1-f0c2-4f37-8e59-ce7f32cd9461", + "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", + "e49dac95-6777-4527-88d9-43533c4c81ab", + "3690607e-a520-4b5c-bb6d-5e6ec4c83aec", + "cee5ccf3-ece1-4350-8264-3c360d07d279", + "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", + "9e73f7cd-aad7-4512-9984-973fdc775485", + "d8e1fde2-a0b2-4339-9d55-49a5f3be258b", + "dae79222-5b12-4269-8d31-6271170c1f54", + "4969c5f0-e6b6-4445-8d46-f637f2b3b640", + "b33d27b7-d555-4c52-b225-a20c1767dd3b", + "de8aa4d4-205c-4786-8a75-8902d51d8a41", + "47ef73cf-7799-46e3-b2f1-76a6533f7746", + "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", + "fd062866-a8eb-4466-b53a-6adf8fc3f09a", + "6c42a8f6-a98f-4058-9992-d00706a03dff", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "a5b9648a-83c0-4eab-a54b-68c23aecae43", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", + "be19484c-af95-45b2-bfe5-24342dd1b710", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "4e1f2cfb-db00-499a-afdd-d36dcea45986", + "segments": [ + 0, + 2, + 16, + 29, + 31, + 34, + 39, + 41, + 44, + 46, + 48, + 50, + 52, + 57, + 60, + 65, + 68, + 72, + 77, + 87, + 96, + 100, + 104, + 114, + 117, + 124, + 131, + 136, + 143, + 148, + 153, + 160, + 165, + 173, + 181, + 189, + 208, + 230, + 243, + 246, + 253, + 272, + 278, + 291, + 298 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 211, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521486, + 45.523819 + ], + [ + -73.521481, + 45.523874 + ], + [ + -73.52149, + 45.523892 + ], + [ + -73.521509, + 45.523906 + ], + [ + -73.521542, + 45.523919 + ], + [ + -73.521581, + 45.523923 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519258, + 45.520728 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514997, + 45.519328 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513223, + 45.517458 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509952, + 45.515502 + ], + [ + -73.509485, + 45.515357 + ], + [ + -73.509464, + 45.51535 + ], + [ + -73.509376, + 45.515323 + ], + [ + -73.508692, + 45.515143 + ], + [ + -73.508296, + 45.51503 + ], + [ + -73.507817, + 45.514868 + ], + [ + -73.507704, + 45.514841 + ], + [ + -73.507464, + 45.514765 + ], + [ + -73.506516, + 45.514432 + ], + [ + -73.505464, + 45.514054 + ], + [ + -73.505166, + 45.51396 + ], + [ + -73.504861, + 45.513863 + ], + [ + -73.504776, + 45.513836 + ], + [ + -73.504451, + 45.513734 + ], + [ + -73.50434, + 45.513699 + ], + [ + -73.504259, + 45.513672 + ], + [ + -73.503369, + 45.513397 + ], + [ + -73.502433, + 45.51315 + ], + [ + -73.502048, + 45.513078 + ], + [ + -73.50154, + 45.512934 + ], + [ + -73.501411, + 45.512898 + ], + [ + -73.50108, + 45.512799 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499658, + 45.512341 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.494295, + 45.510451 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.494088, + 45.51035 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491843, + 45.508694 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488541, + 45.503629 + ], + [ + -73.48831, + 45.50321 + ], + [ + -73.48823, + 45.503039 + ], + [ + -73.488092, + 45.502693 + ], + [ + -73.487989, + 45.502369 + ], + [ + -73.487959, + 45.502275 + ], + [ + -73.487746, + 45.501478 + ], + [ + -73.487613, + 45.501033 + ], + [ + -73.487524, + 45.500736 + ], + [ + -73.487509, + 45.500686 + ], + [ + -73.487464, + 45.50056 + ], + [ + -73.487346, + 45.500232 + ], + [ + -73.487139, + 45.499795 + ], + [ + -73.486985, + 45.499512 + ], + [ + -73.486818, + 45.499233 + ], + [ + -73.48673, + 45.4991 + ], + [ + -73.486631, + 45.498949 + ], + [ + -73.486428, + 45.498675 + ], + [ + -73.486216, + 45.498401 + ], + [ + -73.486166, + 45.498342 + ], + [ + -73.486, + 45.498149 + ], + [ + -73.485576, + 45.497708 + ], + [ + -73.485299, + 45.497456 + ], + [ + -73.485251, + 45.497415 + ], + [ + -73.484899, + 45.497123 + ], + [ + -73.484387, + 45.49674 + ], + [ + -73.484357, + 45.496722 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.483872, + 45.497077 + ], + [ + -73.483869, + 45.49708 + ], + [ + -73.483831, + 45.497108 + ], + [ + -73.483504, + 45.497347 + ], + [ + -73.483382, + 45.497433 + ], + [ + -73.483338, + 45.497469 + ], + [ + -73.483277, + 45.497509 + ], + [ + -73.482985, + 45.497707 + ], + [ + -73.482743, + 45.497869 + ], + [ + -73.482636, + 45.497941 + ], + [ + -73.482124, + 45.49831 + ], + [ + -73.481899, + 45.498472 + ], + [ + -73.481589, + 45.498697 + ], + [ + -73.481169, + 45.498994 + ], + [ + -73.480847, + 45.499223 + ], + [ + -73.480616, + 45.499389 + ], + [ + -73.480477, + 45.499488 + ], + [ + -73.480326, + 45.499398 + ], + [ + -73.47971, + 45.498993 + ], + [ + -73.479492, + 45.498848 + ], + [ + -73.479271, + 45.498701 + ], + [ + -73.478967, + 45.498498 + ], + [ + -73.4786, + 45.498251 + ], + [ + -73.478381, + 45.498107 + ], + [ + -73.478257, + 45.498026 + ], + [ + -73.478178, + 45.497976 + ], + [ + -73.477789, + 45.49772 + ], + [ + -73.477439, + 45.49749 + ], + [ + -73.477062, + 45.497238 + ], + [ + -73.476833, + 45.497084 + ], + [ + -73.476713, + 45.497004 + ], + [ + -73.47632, + 45.496748 + ], + [ + -73.475974, + 45.496523 + ], + [ + -73.475747, + 45.496374 + ], + [ + -73.475736, + 45.496367 + ], + [ + -73.475492, + 45.496208 + ], + [ + -73.475346, + 45.496118 + ], + [ + -73.475245, + 45.49605 + ], + [ + -73.474879, + 45.495798 + ], + [ + -73.474517, + 45.49556 + ], + [ + -73.474138, + 45.495312 + ], + [ + -73.473934, + 45.49518 + ], + [ + -73.473858, + 45.495132 + ], + [ + -73.473385, + 45.494817 + ], + [ + -73.473259, + 45.49474 + ], + [ + -73.473016, + 45.494578 + ], + [ + -73.472904, + 45.494505 + ], + [ + -73.472769, + 45.494416 + ], + [ + -73.472367, + 45.494146 + ], + [ + -73.471949, + 45.493867 + ], + [ + -73.471614, + 45.493642 + ], + [ + -73.471224, + 45.49339 + ], + [ + -73.470867, + 45.493152 + ], + [ + -73.470611, + 45.492976 + ], + [ + -73.470545, + 45.492931 + ], + [ + -73.470296, + 45.492769 + ], + [ + -73.469959, + 45.492553 + ], + [ + -73.469723, + 45.492395 + ], + [ + -73.469421, + 45.492198 + ], + [ + -73.469303, + 45.492121 + ], + [ + -73.469006, + 45.491923 + ], + [ + -73.468656, + 45.491698 + ], + [ + -73.468573, + 45.49163 + ], + [ + -73.468364, + 45.491492 + ], + [ + -73.468166, + 45.49136 + ], + [ + -73.468094, + 45.49132 + ], + [ + -73.468029, + 45.491284 + ], + [ + -73.467697, + 45.491059 + ], + [ + -73.467397, + 45.490865 + ], + [ + -73.466889, + 45.490518 + ], + [ + -73.466378, + 45.49018 + ], + [ + -73.466277, + 45.490113 + ], + [ + -73.466175, + 45.490041 + ], + [ + -73.466087, + 45.489983 + ], + [ + -73.465434, + 45.48956 + ], + [ + -73.464883, + 45.489196 + ], + [ + -73.46482, + 45.489155 + ], + [ + -73.464595, + 45.489001 + ], + [ + -73.464379, + 45.488857 + ], + [ + -73.46422, + 45.488754 + ], + [ + -73.464097, + 45.488673 + ], + [ + -73.463537, + 45.488299 + ], + [ + -73.463291, + 45.488146 + ], + [ + -73.463053, + 45.487989 + ], + [ + -73.462988, + 45.487947 + ], + [ + -73.462983, + 45.487944 + ], + [ + -73.46278, + 45.487809 + ], + [ + -73.462116, + 45.487367 + ], + [ + -73.461424, + 45.48691 + ], + [ + -73.461292, + 45.486823 + ], + [ + -73.461219, + 45.486774 + ], + [ + -73.460376, + 45.486211 + ], + [ + -73.459526, + 45.48565 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.45937, + 45.485544 + ], + [ + -73.458995, + 45.485292 + ], + [ + -73.458472, + 45.484946 + ], + [ + -73.45799, + 45.484621 + ], + [ + -73.457564, + 45.484333 + ], + [ + -73.457447, + 45.484256 + ], + [ + -73.457022, + 45.483976 + ], + [ + -73.456334, + 45.483523 + ], + [ + -73.456426, + 45.48346 + ], + [ + -73.45662, + 45.483329 + ], + [ + -73.456963, + 45.483096 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45645, + 45.482799 + ], + [ + -73.455886, + 45.482623 + ], + [ + -73.455654, + 45.482542 + ], + [ + -73.455462, + 45.482465 + ], + [ + -73.455276, + 45.482384 + ], + [ + -73.455272, + 45.482383 + ], + [ + -73.455009, + 45.482272 + ], + [ + -73.454605, + 45.482087 + ], + [ + -73.454381, + 45.481984 + ], + [ + -73.454145, + 45.481862 + ], + [ + -73.453796, + 45.481673 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452506, + 45.48085 + ], + [ + -73.452296, + 45.480719 + ], + [ + -73.452295, + 45.480718 + ], + [ + -73.451837, + 45.480421 + ], + [ + -73.451565, + 45.480238 + ], + [ + -73.450994, + 45.479853 + ], + [ + -73.450929, + 45.479809 + ], + [ + -73.450257, + 45.479368 + ], + [ + -73.449693, + 45.479 + ], + [ + -73.449587, + 45.478931 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448305, + 45.478058 + ], + [ + -73.447778, + 45.477701 + ], + [ + -73.4477, + 45.477648 + ], + [ + -73.446992, + 45.477175 + ], + [ + -73.446393, + 45.476765 + ], + [ + -73.445743, + 45.476329 + ], + [ + -73.445364, + 45.476066 + ], + [ + -73.445205, + 45.475955 + ], + [ + -73.444867, + 45.475726 + ], + [ + -73.444508, + 45.475482 + ], + [ + -73.443707, + 45.474941 + ], + [ + -73.443609, + 45.474874 + ], + [ + -73.44285, + 45.474357 + ], + [ + -73.441165, + 45.473204 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.439193, + 45.471877 + ], + [ + -73.438153, + 45.471176 + ], + [ + -73.438035, + 45.471097 + ], + [ + -73.43559, + 45.469482 + ], + [ + -73.435506, + 45.469426 + ], + [ + -73.434528, + 45.468778 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.433058, + 45.467863 + ], + [ + -73.430632, + 45.466255 + ], + [ + -73.430214, + 45.465978 + ], + [ + -73.426686, + 45.463639 + ], + [ + -73.426608, + 45.463587 + ], + [ + -73.425566, + 45.462896 + ], + [ + -73.425014, + 45.46253 + ], + [ + -73.424853, + 45.462423 + ], + [ + -73.4247, + 45.462321 + ], + [ + -73.42397, + 45.461837 + ], + [ + -73.423448, + 45.461491 + ], + [ + -73.423345, + 45.461423 + ], + [ + -73.422579, + 45.460915 + ], + [ + -73.419921, + 45.459152 + ], + [ + -73.419828, + 45.45909 + ], + [ + -73.419683, + 45.458994 + ], + [ + -73.417292, + 45.457408 + ], + [ + -73.417173, + 45.457494 + ], + [ + -73.41683, + 45.457739 + ], + [ + -73.416622, + 45.457887 + ], + [ + -73.416344, + 45.458017 + ], + [ + -73.416165, + 45.458062 + ], + [ + -73.415997, + 45.458084 + ], + [ + -73.415882, + 45.458093 + ], + [ + -73.415729, + 45.458102 + ], + [ + -73.415567, + 45.45812 + ], + [ + -73.415388, + 45.458142 + ], + [ + -73.415204, + 45.458183 + ], + [ + -73.415063, + 45.458237 + ], + [ + -73.414927, + 45.458313 + ], + [ + -73.414819, + 45.458381 + ], + [ + -73.414651, + 45.458488 + ], + [ + -73.41246, + 45.460117 + ], + [ + -73.411084, + 45.46114 + ], + [ + -73.410025, + 45.461927 + ], + [ + -73.410017, + 45.461933 + ], + [ + -73.40945, + 45.462354 + ], + [ + -73.407779, + 45.463577 + ], + [ + -73.40765, + 45.463671 + ], + [ + -73.404482, + 45.461543 + ], + [ + -73.404296, + 45.461418 + ], + [ + -73.406253, + 45.46006 + ] + ] + }, + "id": 212, + "properties": { + "id": "c2afdc1f-ea35-47d8-a3a8-18018e28bc4a", + "data": { + "gtfs": { + "shape_id": "121_1_R" + }, + "segments": [ + { + "distanceMeters": 706, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 384, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 403, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 345, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 953, + "travelTimeSeconds": 159 + }, + { + "distanceMeters": 577, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 459, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 93 + }, + { + "distanceMeters": 334, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 89 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 58 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 234, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13706, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11435.721751506964, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.86, + "travelTimeWithoutDwellTimesSeconds": 2340, + "operatingTimeWithLayoverTimeSeconds": 2574, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2340, + "operatingSpeedWithLayoverMetersPerSecond": 5.32, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.86 + }, + "mode": "bus", + "name": "Armand-Frappier", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "d3215c60-bb9e-40ac-89e4-1f922b39e266", + "f9358f54-8643-47f5-b0df-4a20b46cc22d", + "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", + "f4f29738-df3f-4d69-8632-9088ded0dc5a", + "741876fc-030a-42f6-a33a-8f1f9c2aba12", + "688a3f67-a176-441e-a399-c92a55de9c74", + "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", + "37199bb2-9740-4484-b68f-12d3c82f8bf9", + "bcd0a901-5384-443e-9be4-1f0faa123ccb", + "b2075e72-f3b5-420a-b22b-99e7608c7c0a", + "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", + "47ef73cf-7799-46e3-b2f1-76a6533f7746", + "de8aa4d4-205c-4786-8a75-8902d51d8a41", + "b33d27b7-d555-4c52-b225-a20c1767dd3b", + "4969c5f0-e6b6-4445-8d46-f637f2b3b640", + "dae79222-5b12-4269-8d31-6271170c1f54", + "d8e1fde2-a0b2-4339-9d55-49a5f3be258b", + "9e73f7cd-aad7-4512-9984-973fdc775485", + "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", + "cee5ccf3-ece1-4350-8264-3c360d07d279", + "3690607e-a520-4b5c-bb6d-5e6ec4c83aec", + "e49dac95-6777-4527-88d9-43533c4c81ab", + "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", + "720107c1-f0c2-4f37-8e59-ce7f32cd9461", + "a90c4da7-455c-41d3-9961-c7a64d627572", + "3fb067af-1fec-457b-80c2-3e3f8b141afb", + "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", + "5f21960f-8919-4407-8a49-57c39947c4fe", + "cc43f372-04e8-4c4c-b711-2e4159e3855d", + "9b7055a8-adca-44c6-9935-6026756d4460", + "76ff8292-f41f-4d17-998d-6dd3d2c32288", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "e80498a8-505d-4215-ba07-7582f8783d8e", + "014d61e3-acfc-41f6-b78a-5c2178c073b1", + "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", + "14e293a6-352a-4156-8578-66d0b5bdcc1f", + "62558b4d-75af-4b04-8040-a30de5a89658", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "988183db-88f1-47cb-87bf-b2a03dd4a38d", + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "bfb03303-2ee6-40dd-8e8f-859a06b338a6", + "2b6f210c-4f28-43d1-b096-b48c582f5274", + "cdda3c7c-b577-49de-afc0-aa4c4e60c34b", + "dc623539-3b98-4807-a5d5-f66507b8bc4c", + "84fd1601-f65a-4eb9-beba-06ee8c2970d2", + "fee943f3-e127-46e6-bc62-d6c4c320bd7a", + "22c42fca-2f2b-42d3-9449-3b9e7c474f2e", + "28acd503-64ba-4c57-925c-1acd27dd7dde", + "abd6e1bb-b826-4462-87f2-3bae5c6594ea" + ], + "stops": [], + "line_id": "4e1f2cfb-db00-499a-afdd-d36dcea45986", + "segments": [ + 0, + 45, + 52, + 59, + 69, + 80, + 87, + 91, + 96, + 106, + 118, + 136, + 158, + 164, + 171, + 179, + 185, + 190, + 197, + 202, + 209, + 214, + 219, + 226, + 231, + 240, + 244, + 248, + 256, + 267, + 275, + 280, + 283, + 287, + 292, + 296, + 299, + 303, + 305, + 307, + 311, + 312, + 316, + 319, + 322, + 327, + 339, + 341, + 343, + 346, + 348 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 212, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.406253, + 45.46006 + ], + [ + -73.406952, + 45.459576 + ], + [ + -73.409865, + 45.457688 + ], + [ + -73.410149, + 45.457553 + ], + [ + -73.410462, + 45.457446 + ], + [ + -73.410807, + 45.457387 + ], + [ + -73.411159, + 45.457347 + ], + [ + -73.411393, + 45.457343 + ], + [ + -73.411627, + 45.457361 + ], + [ + -73.412457, + 45.457447 + ], + [ + -73.412673, + 45.457474 + ], + [ + -73.412926, + 45.457502 + ], + [ + -73.413147, + 45.457542 + ], + [ + -73.413262, + 45.457587 + ], + [ + -73.413399, + 45.457668 + ], + [ + -73.414651, + 45.458488 + ], + [ + -73.414927, + 45.458313 + ], + [ + -73.415063, + 45.458237 + ], + [ + -73.415204, + 45.458183 + ], + [ + -73.415388, + 45.458142 + ], + [ + -73.415567, + 45.45812 + ], + [ + -73.415729, + 45.458102 + ], + [ + -73.415882, + 45.458093 + ], + [ + -73.415997, + 45.458084 + ], + [ + -73.416165, + 45.458062 + ], + [ + -73.416344, + 45.458017 + ], + [ + -73.416622, + 45.457887 + ], + [ + -73.417173, + 45.457494 + ], + [ + -73.419564, + 45.459076 + ], + [ + -73.419713, + 45.459174 + ], + [ + -73.422478, + 45.461003 + ], + [ + -73.423149, + 45.461446 + ], + [ + -73.42386, + 45.461916 + ], + [ + -73.424593, + 45.462401 + ], + [ + -73.425478, + 45.462986 + ], + [ + -73.426502, + 45.463663 + ], + [ + -73.43053, + 45.466326 + ], + [ + -73.432747, + 45.467791 + ], + [ + -73.434186, + 45.468737 + ], + [ + -73.435371, + 45.469525 + ], + [ + -73.437899, + 45.471196 + ], + [ + -73.439329, + 45.472159 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.441938, + 45.473928 + ], + [ + -73.442708, + 45.474456 + ], + [ + -73.443474, + 45.474978 + ], + [ + -73.44437, + 45.475586 + ], + [ + -73.445067, + 45.476058 + ], + [ + -73.445608, + 45.476432 + ], + [ + -73.446237, + 45.47686 + ], + [ + -73.446869, + 45.477292 + ], + [ + -73.44754, + 45.477747 + ], + [ + -73.448146, + 45.478157 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.450119, + 45.479471 + ], + [ + -73.451, + 45.480048 + ], + [ + -73.451438, + 45.480342 + ], + [ + -73.451689, + 45.480511 + ], + [ + -73.452165, + 45.480813 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452851, + 45.48129 + ], + [ + -73.453668, + 45.481781 + ], + [ + -73.454023, + 45.481974 + ], + [ + -73.454266, + 45.482101 + ], + [ + -73.454494, + 45.482204 + ], + [ + -73.454624, + 45.482357 + ], + [ + -73.455203, + 45.482812 + ], + [ + -73.455441, + 45.482965 + ], + [ + -73.456089, + 45.483375 + ], + [ + -73.456112, + 45.483393 + ], + [ + -73.456334, + 45.483523 + ], + [ + -73.457447, + 45.484256 + ], + [ + -73.457564, + 45.484333 + ], + [ + -73.45799, + 45.484621 + ], + [ + -73.458472, + 45.484946 + ], + [ + -73.458995, + 45.485292 + ], + [ + -73.45937, + 45.485544 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.460376, + 45.486211 + ], + [ + -73.461219, + 45.486774 + ], + [ + -73.461292, + 45.486823 + ], + [ + -73.462116, + 45.487367 + ], + [ + -73.46278, + 45.487809 + ], + [ + -73.462983, + 45.487944 + ], + [ + -73.463053, + 45.487989 + ], + [ + -73.463291, + 45.488146 + ], + [ + -73.463537, + 45.488299 + ], + [ + -73.464097, + 45.488673 + ], + [ + -73.46422, + 45.488754 + ], + [ + -73.464379, + 45.488857 + ], + [ + -73.464595, + 45.489001 + ], + [ + -73.46482, + 45.489155 + ], + [ + -73.465434, + 45.48956 + ], + [ + -73.466087, + 45.489983 + ], + [ + -73.466175, + 45.490041 + ], + [ + -73.466277, + 45.490113 + ], + [ + -73.466889, + 45.490518 + ], + [ + -73.467397, + 45.490865 + ], + [ + -73.467697, + 45.491059 + ], + [ + -73.468029, + 45.491284 + ], + [ + -73.468094, + 45.49132 + ], + [ + -73.468166, + 45.49136 + ], + [ + -73.468573, + 45.49163 + ], + [ + -73.468656, + 45.491698 + ], + [ + -73.469006, + 45.491923 + ], + [ + -73.469303, + 45.492121 + ], + [ + -73.469723, + 45.492395 + ], + [ + -73.469959, + 45.492553 + ], + [ + -73.470296, + 45.492769 + ], + [ + -73.470545, + 45.492931 + ], + [ + -73.470867, + 45.493152 + ], + [ + -73.471224, + 45.49339 + ], + [ + -73.471614, + 45.493642 + ], + [ + -73.471949, + 45.493867 + ], + [ + -73.472367, + 45.494146 + ], + [ + -73.472769, + 45.494416 + ], + [ + -73.473016, + 45.494578 + ], + [ + -73.473259, + 45.49474 + ], + [ + -73.473385, + 45.494817 + ], + [ + -73.473858, + 45.495132 + ], + [ + -73.474138, + 45.495312 + ], + [ + -73.474517, + 45.49556 + ], + [ + -73.474879, + 45.495798 + ], + [ + -73.475245, + 45.49605 + ], + [ + -73.475346, + 45.496118 + ], + [ + -73.475492, + 45.496208 + ], + [ + -73.475747, + 45.496374 + ], + [ + -73.475974, + 45.496523 + ], + [ + -73.47632, + 45.496748 + ], + [ + -73.476713, + 45.497004 + ], + [ + -73.477062, + 45.497238 + ], + [ + -73.477439, + 45.49749 + ], + [ + -73.477789, + 45.49772 + ], + [ + -73.478178, + 45.497976 + ], + [ + -73.478257, + 45.498026 + ], + [ + -73.4786, + 45.498251 + ], + [ + -73.478967, + 45.498498 + ], + [ + -73.479271, + 45.498701 + ], + [ + -73.47971, + 45.498993 + ], + [ + -73.480326, + 45.499398 + ], + [ + -73.480477, + 45.499488 + ], + [ + -73.480835, + 45.499231 + ], + [ + -73.480847, + 45.499223 + ], + [ + -73.481169, + 45.498994 + ], + [ + -73.481589, + 45.498697 + ], + [ + -73.481899, + 45.498472 + ], + [ + -73.482124, + 45.49831 + ], + [ + -73.482636, + 45.497941 + ], + [ + -73.482985, + 45.497707 + ], + [ + -73.483277, + 45.497509 + ], + [ + -73.483338, + 45.497469 + ], + [ + -73.483382, + 45.497433 + ], + [ + -73.483504, + 45.497347 + ], + [ + -73.483872, + 45.497077 + ], + [ + -73.484056, + 45.496942 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.48442, + 45.496983 + ], + [ + -73.484708, + 45.497199 + ], + [ + -73.484931, + 45.497378 + ], + [ + -73.485095, + 45.49751 + ], + [ + -73.485397, + 45.497784 + ], + [ + -73.485739, + 45.498135 + ], + [ + -73.485877, + 45.498284 + ], + [ + -73.486105, + 45.498553 + ], + [ + -73.486286, + 45.498787 + ], + [ + -73.486368, + 45.498907 + ], + [ + -73.486538, + 45.499154 + ], + [ + -73.486685, + 45.499381 + ], + [ + -73.486823, + 45.499615 + ], + [ + -73.486951, + 45.499858 + ], + [ + -73.487138, + 45.500263 + ], + [ + -73.487159, + 45.500317 + ], + [ + -73.487306, + 45.500713 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487417, + 45.501077 + ], + [ + -73.487455, + 45.501208 + ], + [ + -73.487464, + 45.50124 + ], + [ + -73.48765, + 45.50191 + ], + [ + -73.487855, + 45.502589 + ], + [ + -73.488032, + 45.50303 + ], + [ + -73.488178, + 45.503309 + ], + [ + -73.488409, + 45.50371 + ], + [ + -73.489159, + 45.504974 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493519, + 45.510497 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506107, + 45.514749 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.521609, + 45.523676 + ], + [ + -73.521556, + 45.52368 + ], + [ + -73.521506, + 45.523698 + ], + [ + -73.521494, + 45.523725 + ], + [ + -73.521489, + 45.523788 + ], + [ + -73.521486, + 45.523819 + ] + ] + }, + "id": 213, + "properties": { + "id": "69d746bb-2eae-46de-b01b-0a3b90ea9c63", + "data": { + "gtfs": { + "shape_id": "121_2_A" + }, + "segments": [ + { + "distanceMeters": 3420, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 6544, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 3022, + "travelTimeSeconds": 28 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12985, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 861.4686477443101, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 108.2, + "travelTimeWithoutDwellTimesSeconds": 120, + "operatingTimeWithLayoverTimeSeconds": 300, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 120, + "operatingSpeedWithLayoverMetersPerSecond": 43.28, + "averageSpeedWithoutDwellTimesMetersPerSecond": 108.2 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "abd6e1bb-b826-4462-87f2-3bae5c6594ea", + "fcd51ec2-f1b1-4630-8f4f-bbfd7b67c91f", + "dc623539-3b98-4807-a5d5-f66507b8bc4c", + "cdda3c7c-b577-49de-afc0-aa4c4e60c34b" + ], + "stops": [], + "line_id": "4e1f2cfb-db00-499a-afdd-d36dcea45986", + "segments": [ + 0, + 41, + 198 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 213, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.406253, + 45.46006 + ], + [ + -73.406952, + 45.459576 + ], + [ + -73.408732, + 45.458422 + ], + [ + -73.409865, + 45.457688 + ], + [ + -73.410149, + 45.457553 + ], + [ + -73.410462, + 45.457446 + ], + [ + -73.410807, + 45.457387 + ], + [ + -73.411159, + 45.457347 + ], + [ + -73.411393, + 45.457343 + ], + [ + -73.411627, + 45.457361 + ], + [ + -73.412457, + 45.457447 + ], + [ + -73.412673, + 45.457474 + ], + [ + -73.412926, + 45.457502 + ], + [ + -73.413147, + 45.457542 + ], + [ + -73.413262, + 45.457587 + ], + [ + -73.413399, + 45.457668 + ], + [ + -73.414313, + 45.458267 + ], + [ + -73.414651, + 45.458488 + ], + [ + -73.414927, + 45.458313 + ], + [ + -73.415063, + 45.458237 + ], + [ + -73.415204, + 45.458183 + ], + [ + -73.415388, + 45.458142 + ], + [ + -73.415567, + 45.45812 + ], + [ + -73.415729, + 45.458102 + ], + [ + -73.415882, + 45.458093 + ], + [ + -73.415997, + 45.458084 + ], + [ + -73.416165, + 45.458062 + ], + [ + -73.416344, + 45.458017 + ], + [ + -73.416622, + 45.457887 + ], + [ + -73.416858, + 45.457719 + ], + [ + -73.417173, + 45.457494 + ], + [ + -73.419493, + 45.459028 + ], + [ + -73.419564, + 45.459076 + ], + [ + -73.419713, + 45.459174 + ], + [ + -73.422288, + 45.460877 + ], + [ + -73.422478, + 45.461003 + ], + [ + -73.423149, + 45.461446 + ], + [ + -73.42386, + 45.461916 + ], + [ + -73.424593, + 45.462401 + ], + [ + -73.424972, + 45.462652 + ], + [ + -73.425478, + 45.462986 + ], + [ + -73.426203, + 45.463465 + ], + [ + -73.426502, + 45.463663 + ], + [ + -73.43053, + 45.466326 + ], + [ + -73.430807, + 45.466509 + ], + [ + -73.432747, + 45.467791 + ], + [ + -73.434092, + 45.468675 + ], + [ + -73.434186, + 45.468737 + ], + [ + -73.435226, + 45.469429 + ], + [ + -73.435371, + 45.469525 + ], + [ + -73.437733, + 45.471086 + ], + [ + -73.437899, + 45.471196 + ], + [ + -73.440423, + 45.472896 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.441938, + 45.473928 + ], + [ + -73.442708, + 45.474456 + ], + [ + -73.44337, + 45.474907 + ], + [ + -73.443474, + 45.474978 + ], + [ + -73.44437, + 45.475586 + ], + [ + -73.445009, + 45.476019 + ], + [ + -73.445067, + 45.476058 + ], + [ + -73.445608, + 45.476432 + ], + [ + -73.446237, + 45.47686 + ], + [ + -73.446869, + 45.477292 + ], + [ + -73.447192, + 45.477511 + ], + [ + -73.44754, + 45.477747 + ], + [ + -73.448146, + 45.478157 + ], + [ + -73.44865, + 45.478496 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.450119, + 45.479471 + ], + [ + -73.450869, + 45.479962 + ], + [ + -73.451, + 45.480048 + ], + [ + -73.451438, + 45.480342 + ], + [ + -73.451689, + 45.480511 + ], + [ + -73.452165, + 45.480813 + ], + [ + -73.452541, + 45.481075 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452851, + 45.48129 + ], + [ + -73.453668, + 45.481781 + ], + [ + -73.454023, + 45.481974 + ], + [ + -73.454266, + 45.482101 + ], + [ + -73.454494, + 45.482204 + ], + [ + -73.454624, + 45.482357 + ], + [ + -73.455203, + 45.482812 + ], + [ + -73.455441, + 45.482965 + ], + [ + -73.456005, + 45.483321 + ], + [ + -73.456089, + 45.483375 + ], + [ + -73.456112, + 45.483393 + ], + [ + -73.456334, + 45.483523 + ], + [ + -73.457447, + 45.484256 + ], + [ + -73.457564, + 45.484333 + ], + [ + -73.45799, + 45.484621 + ], + [ + -73.458472, + 45.484946 + ], + [ + -73.458995, + 45.485292 + ], + [ + -73.459352, + 45.485532 + ], + [ + -73.45937, + 45.485544 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.460376, + 45.486211 + ], + [ + -73.461026, + 45.486645 + ], + [ + -73.461219, + 45.486774 + ], + [ + -73.461292, + 45.486823 + ], + [ + -73.462116, + 45.487367 + ], + [ + -73.462664, + 45.487731 + ], + [ + -73.46278, + 45.487809 + ], + [ + -73.462983, + 45.487944 + ], + [ + -73.463053, + 45.487989 + ], + [ + -73.463291, + 45.488146 + ], + [ + -73.463537, + 45.488299 + ], + [ + -73.464097, + 45.488673 + ], + [ + -73.46422, + 45.488754 + ], + [ + -73.464379, + 45.488857 + ], + [ + -73.464595, + 45.489001 + ], + [ + -73.464745, + 45.489104 + ], + [ + -73.46482, + 45.489155 + ], + [ + -73.465434, + 45.48956 + ], + [ + -73.466009, + 45.489932 + ], + [ + -73.466087, + 45.489983 + ], + [ + -73.466175, + 45.490041 + ], + [ + -73.466277, + 45.490113 + ], + [ + -73.466889, + 45.490518 + ], + [ + -73.467397, + 45.490865 + ], + [ + -73.467697, + 45.491059 + ], + [ + -73.467799, + 45.491128 + ], + [ + -73.468029, + 45.491284 + ], + [ + -73.468094, + 45.49132 + ], + [ + -73.468166, + 45.49136 + ], + [ + -73.468573, + 45.49163 + ], + [ + -73.468656, + 45.491698 + ], + [ + -73.469006, + 45.491923 + ], + [ + -73.469068, + 45.491964 + ], + [ + -73.469303, + 45.492121 + ], + [ + -73.469723, + 45.492395 + ], + [ + -73.469959, + 45.492553 + ], + [ + -73.470296, + 45.492769 + ], + [ + -73.470313, + 45.49278 + ], + [ + -73.470545, + 45.492931 + ], + [ + -73.470867, + 45.493152 + ], + [ + -73.471224, + 45.49339 + ], + [ + -73.471614, + 45.493642 + ], + [ + -73.471949, + 45.493867 + ], + [ + -73.472367, + 45.494146 + ], + [ + -73.472663, + 45.494345 + ], + [ + -73.472769, + 45.494416 + ], + [ + -73.473016, + 45.494578 + ], + [ + -73.473259, + 45.49474 + ], + [ + -73.473385, + 45.494817 + ], + [ + -73.473747, + 45.495058 + ], + [ + -73.473858, + 45.495132 + ], + [ + -73.474138, + 45.495312 + ], + [ + -73.474517, + 45.49556 + ], + [ + -73.474879, + 45.495798 + ], + [ + -73.475137, + 45.495976 + ], + [ + -73.475245, + 45.49605 + ], + [ + -73.475346, + 45.496118 + ], + [ + -73.475492, + 45.496208 + ], + [ + -73.475747, + 45.496374 + ], + [ + -73.475974, + 45.496523 + ], + [ + -73.47632, + 45.496748 + ], + [ + -73.476628, + 45.496949 + ], + [ + -73.476713, + 45.497004 + ], + [ + -73.477062, + 45.497238 + ], + [ + -73.477439, + 45.49749 + ], + [ + -73.477789, + 45.49772 + ], + [ + -73.478034, + 45.497881 + ], + [ + -73.478178, + 45.497976 + ], + [ + -73.478257, + 45.498026 + ], + [ + -73.4786, + 45.498251 + ], + [ + -73.478967, + 45.498498 + ], + [ + -73.479271, + 45.498701 + ], + [ + -73.47971, + 45.498993 + ], + [ + -73.480326, + 45.499398 + ], + [ + -73.480365, + 45.499422 + ], + [ + -73.480477, + 45.499488 + ], + [ + -73.480835, + 45.499231 + ], + [ + -73.480847, + 45.499223 + ], + [ + -73.481169, + 45.498994 + ], + [ + -73.481589, + 45.498697 + ], + [ + -73.481899, + 45.498472 + ], + [ + -73.482124, + 45.49831 + ], + [ + -73.482543, + 45.498008 + ], + [ + -73.482636, + 45.497941 + ], + [ + -73.482985, + 45.497707 + ], + [ + -73.483277, + 45.497509 + ], + [ + -73.483338, + 45.497469 + ], + [ + -73.483382, + 45.497433 + ], + [ + -73.483504, + 45.497347 + ], + [ + -73.483872, + 45.497077 + ], + [ + -73.484052, + 45.496945 + ], + [ + -73.484056, + 45.496942 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.48442, + 45.496983 + ], + [ + -73.484708, + 45.497199 + ], + [ + -73.484931, + 45.497378 + ], + [ + -73.485095, + 45.49751 + ], + [ + -73.485397, + 45.497784 + ], + [ + -73.485739, + 45.498135 + ], + [ + -73.485877, + 45.498284 + ], + [ + -73.486105, + 45.498553 + ], + [ + -73.486286, + 45.498787 + ], + [ + -73.486368, + 45.498907 + ], + [ + -73.486538, + 45.499154 + ], + [ + -73.486685, + 45.499381 + ], + [ + -73.486823, + 45.499615 + ], + [ + -73.486951, + 45.499858 + ], + [ + -73.487138, + 45.500263 + ], + [ + -73.487159, + 45.500317 + ], + [ + -73.487268, + 45.500609 + ], + [ + -73.487306, + 45.500713 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487417, + 45.501077 + ], + [ + -73.487455, + 45.501208 + ], + [ + -73.487464, + 45.50124 + ], + [ + -73.48765, + 45.50191 + ], + [ + -73.487855, + 45.502589 + ], + [ + -73.488032, + 45.50303 + ], + [ + -73.488178, + 45.503309 + ], + [ + -73.488409, + 45.50371 + ], + [ + -73.489159, + 45.504974 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492923, + 45.510108 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497918, + 45.512052 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.500882, + 45.513009 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505113, + 45.514482 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506107, + 45.514749 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511916, + 45.516872 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513432, + 45.5183 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.514994, + 45.51942 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518889, + 45.520627 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.521609, + 45.523676 + ], + [ + -73.521556, + 45.52368 + ], + [ + -73.521506, + 45.523698 + ], + [ + -73.521494, + 45.523725 + ], + [ + -73.521489, + 45.523788 + ], + [ + -73.521486, + 45.523819 + ] + ] + }, + "id": 214, + "properties": { + "id": "ec35f8fa-77f0-4e34-88bf-61b7419fc8f2", + "data": { + "gtfs": { + "shape_id": "121_1_A" + }, + "segments": [ + { + "distanceMeters": 266, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 509, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 494, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 359, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 507, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 1156, + "travelTimeSeconds": 134 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 598, + "travelTimeSeconds": 116 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 694, + "travelTimeSeconds": 135 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 186, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12985, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11435.721751506964, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.98, + "travelTimeWithoutDwellTimesSeconds": 1860, + "operatingTimeWithLayoverTimeSeconds": 2046, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1860, + "operatingSpeedWithLayoverMetersPerSecond": 6.35, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.98 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "abd6e1bb-b826-4462-87f2-3bae5c6594ea", + "fcd51ec2-f1b1-4630-8f4f-bbfd7b67c91f", + "dc623539-3b98-4807-a5d5-f66507b8bc4c", + "cdda3c7c-b577-49de-afc0-aa4c4e60c34b", + "0b9048bd-dd82-42d8-ba47-b3d93d735fe8", + "d8582feb-8d83-457a-8a52-dc395b1f7390", + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "2f104875-795a-4778-a419-276272abfb07", + "ba86f45f-9fb5-4525-a50b-a876919fd012", + "988c86da-04eb-4067-b650-f13c447b17e7", + "14e293a6-352a-4156-8578-66d0b5bdcc1f", + "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", + "2881ced2-6a46-4738-a470-6ff64097e482", + "e80498a8-505d-4215-ba07-7582f8783d8e", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "c4061c94-e615-4bca-b219-1ff6ea9657d0", + "89553e99-6867-4296-935e-718bb768cb73", + "72a48bdf-3a35-4f3b-8d05-e465faf044cf", + "70af9f63-28e4-474e-896b-5462b7252980", + "1f1b5a64-7c8d-49de-8df3-369e30f799ef", + "c24b91da-a4a3-4b28-b987-5726c6a01fdb", + "720107c1-f0c2-4f37-8e59-ce7f32cd9461", + "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", + "e49dac95-6777-4527-88d9-43533c4c81ab", + "3690607e-a520-4b5c-bb6d-5e6ec4c83aec", + "cee5ccf3-ece1-4350-8264-3c360d07d279", + "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", + "9e73f7cd-aad7-4512-9984-973fdc775485", + "d8e1fde2-a0b2-4339-9d55-49a5f3be258b", + "dae79222-5b12-4269-8d31-6271170c1f54", + "4969c5f0-e6b6-4445-8d46-f637f2b3b640", + "b33d27b7-d555-4c52-b225-a20c1767dd3b", + "de8aa4d4-205c-4786-8a75-8902d51d8a41", + "47ef73cf-7799-46e3-b2f1-76a6533f7746", + "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", + "fd062866-a8eb-4466-b53a-6adf8fc3f09a", + "6c42a8f6-a98f-4058-9992-d00706a03dff", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "a5b9648a-83c0-4eab-a54b-68c23aecae43", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", + "be19484c-af95-45b2-bfe5-24342dd1b710", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "4e1f2cfb-db00-499a-afdd-d36dcea45986", + "segments": [ + 0, + 2, + 16, + 29, + 31, + 34, + 39, + 41, + 44, + 46, + 48, + 50, + 52, + 57, + 60, + 65, + 68, + 72, + 77, + 87, + 96, + 100, + 104, + 114, + 117, + 124, + 131, + 136, + 143, + 148, + 153, + 160, + 165, + 173, + 181, + 189, + 208, + 230, + 243, + 246, + 253, + 272, + 278, + 291, + 298 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 214, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.481862, + 45.570157 + ], + [ + -73.481822, + 45.570126 + ], + [ + -73.481332, + 45.569766 + ], + [ + -73.481257, + 45.569712 + ], + [ + -73.480428, + 45.569077 + ], + [ + -73.479866, + 45.568647 + ], + [ + -73.479009, + 45.567991 + ], + [ + -73.47867, + 45.567732 + ], + [ + -73.47894, + 45.567404 + ], + [ + -73.479087, + 45.567238 + ], + [ + -73.479946, + 45.566274 + ], + [ + -73.480076, + 45.566265 + ], + [ + -73.480517, + 45.566553 + ], + [ + -73.48115, + 45.567044 + ], + [ + -73.481186, + 45.567156 + ], + [ + -73.481181, + 45.5673 + ], + [ + -73.481322, + 45.567426 + ], + [ + -73.481439, + 45.567515 + ], + [ + -73.481715, + 45.567724 + ], + [ + -73.481834, + 45.567813 + ], + [ + -73.4825, + 45.567399 + ], + [ + -73.482644, + 45.56731 + ], + [ + -73.482793, + 45.567251 + ], + [ + -73.4815, + 45.566273 + ], + [ + -73.480444, + 45.565474 + ], + [ + -73.480073, + 45.565193 + ], + [ + -73.479021, + 45.564398 + ], + [ + -73.47891, + 45.564479 + ], + [ + -73.478585, + 45.56483 + ], + [ + -73.478566, + 45.564851 + ], + [ + -73.47812, + 45.565345 + ], + [ + -73.47668, + 45.56694 + ], + [ + -73.476555, + 45.567079 + ], + [ + -73.474702, + 45.569114 + ], + [ + -73.474569, + 45.569261 + ], + [ + -73.473259, + 45.570718 + ], + [ + -73.473129, + 45.570862 + ], + [ + -73.471786, + 45.572369 + ], + [ + -73.471784, + 45.572371 + ], + [ + -73.471017, + 45.573237 + ], + [ + -73.468662, + 45.575879 + ], + [ + -73.468543, + 45.576013 + ], + [ + -73.465403, + 45.575332 + ], + [ + -73.464208, + 45.575077 + ], + [ + -73.463036, + 45.574827 + ], + [ + -73.462109, + 45.574629 + ], + [ + -73.462297, + 45.574179 + ], + [ + -73.462304, + 45.574164 + ], + [ + -73.462399, + 45.573946 + ], + [ + -73.462548, + 45.573595 + ], + [ + -73.462729, + 45.573185 + ], + [ + -73.462953, + 45.572672 + ], + [ + -73.463215, + 45.57207 + ], + [ + -73.463283, + 45.571903 + ], + [ + -73.463344, + 45.571738 + ], + [ + -73.463385, + 45.571624 + ], + [ + -73.463591, + 45.571183 + ], + [ + -73.463906, + 45.570478 + ], + [ + -73.463994, + 45.570279 + ], + [ + -73.464296, + 45.569568 + ], + [ + -73.464344, + 45.569488 + ], + [ + -73.464421, + 45.56942 + ], + [ + -73.464662, + 45.56924 + ], + [ + -73.465336, + 45.568813 + ], + [ + -73.466185, + 45.56827 + ], + [ + -73.467929, + 45.567155 + ], + [ + -73.468142, + 45.567019 + ], + [ + -73.469933, + 45.565881 + ], + [ + -73.470076, + 45.565791 + ], + [ + -73.47094, + 45.565233 + ], + [ + -73.472551, + 45.564198 + ], + [ + -73.472712, + 45.564095 + ], + [ + -73.47553, + 45.562312 + ], + [ + -73.475818, + 45.56213 + ], + [ + -73.475938, + 45.562049 + ], + [ + -73.47554, + 45.561748 + ], + [ + -73.475231, + 45.561513 + ], + [ + -73.474585, + 45.561026 + ], + [ + -73.47445, + 45.560923 + ], + [ + -73.474349, + 45.560847 + ], + [ + -73.474262, + 45.560781 + ], + [ + -73.473051, + 45.559853 + ], + [ + -73.472951, + 45.559778 + ], + [ + -73.472285, + 45.559277 + ], + [ + -73.471768, + 45.558881 + ], + [ + -73.471028, + 45.558322 + ], + [ + -73.470903, + 45.558228 + ], + [ + -73.470793, + 45.5583 + ], + [ + -73.469991, + 45.558844 + ], + [ + -73.469731, + 45.558997 + ], + [ + -73.469503, + 45.559152 + ], + [ + -73.46926, + 45.559316 + ], + [ + -73.468792, + 45.559631 + ], + [ + -73.468729, + 45.559676 + ], + [ + -73.468547, + 45.559798 + ], + [ + -73.467979, + 45.560279 + ], + [ + -73.467816, + 45.560373 + ], + [ + -73.467525, + 45.560508 + ], + [ + -73.467261, + 45.560621 + ], + [ + -73.46697, + 45.560742 + ], + [ + -73.466692, + 45.560841 + ], + [ + -73.466384, + 45.560949 + ], + [ + -73.466152, + 45.561018 + ], + [ + -73.465993, + 45.561066 + ], + [ + -73.465606, + 45.561173 + ], + [ + -73.465298, + 45.56125 + ], + [ + -73.464943, + 45.561331 + ], + [ + -73.464635, + 45.561385 + ], + [ + -73.464383, + 45.56143 + ], + [ + -73.464342, + 45.561416 + ], + [ + -73.46391, + 45.56142 + ], + [ + -73.463676, + 45.561411 + ], + [ + -73.463469, + 45.561416 + ], + [ + -73.463235, + 45.561434 + ], + [ + -73.463014, + 45.561456 + ], + [ + -73.462671, + 45.561478 + ], + [ + -73.462514, + 45.561483 + ], + [ + -73.462171, + 45.561492 + ], + [ + -73.461975, + 45.561496 + ], + [ + -73.460725, + 45.561527 + ], + [ + -73.460731, + 45.561644 + ], + [ + -73.460735, + 45.561923 + ], + [ + -73.460736, + 45.561977 + ], + [ + -73.460721, + 45.562027 + ], + [ + -73.460677, + 45.562085 + ], + [ + -73.460365, + 45.562319 + ], + [ + -73.459937, + 45.562638 + ], + [ + -73.459845, + 45.562714 + ], + [ + -73.459614, + 45.562904 + ], + [ + -73.459333, + 45.563151 + ], + [ + -73.459049, + 45.563396 + ], + [ + -73.458351, + 45.563996 + ], + [ + -73.457933, + 45.564352 + ], + [ + -73.457152, + 45.564936 + ], + [ + -73.457093, + 45.564977 + ], + [ + -73.456935, + 45.565085 + ], + [ + -73.456659, + 45.565283 + ], + [ + -73.45622, + 45.565633 + ], + [ + -73.455798, + 45.56598 + ], + [ + -73.455595, + 45.566159 + ], + [ + -73.455401, + 45.56633 + ], + [ + -73.454148, + 45.567521 + ], + [ + -73.453627, + 45.568017 + ], + [ + -73.453572, + 45.568062 + ], + [ + -73.453474, + 45.568093 + ], + [ + -73.453357, + 45.56812 + ], + [ + -73.453217, + 45.568102 + ], + [ + -73.451687, + 45.567778 + ], + [ + -73.451488, + 45.567736 + ], + [ + -73.450706, + 45.56757 + ], + [ + -73.450587, + 45.567562 + ], + [ + -73.45036, + 45.567548 + ], + [ + -73.450115, + 45.567548 + ], + [ + -73.450114, + 45.567557 + ], + [ + -73.450113, + 45.567561 + ], + [ + -73.450112, + 45.56757 + ], + [ + -73.450111, + 45.567575 + ], + [ + -73.45011, + 45.567584 + ], + [ + -73.450109, + 45.567593 + ], + [ + -73.450108, + 45.567597 + ], + [ + -73.450107, + 45.567606 + ], + [ + -73.450106, + 45.567611 + ], + [ + -73.450105, + 45.56762 + ], + [ + -73.450104, + 45.567629 + ], + [ + -73.450103, + 45.567633 + ], + [ + -73.450102, + 45.567642 + ], + [ + -73.450101, + 45.567647 + ], + [ + -73.4501, + 45.567656 + ], + [ + -73.450099, + 45.56766 + ], + [ + -73.450098, + 45.567669 + ], + [ + -73.450097, + 45.567678 + ], + [ + -73.450096, + 45.567683 + ], + [ + -73.450095, + 45.567691 + ], + [ + -73.450093, + 45.567696 + ], + [ + -73.450092, + 45.567705 + ], + [ + -73.450091, + 45.567714 + ], + [ + -73.45009, + 45.567718 + ], + [ + -73.450089, + 45.567727 + ], + [ + -73.450088, + 45.567732 + ], + [ + -73.450087, + 45.567741 + ], + [ + -73.450085, + 45.56775 + ], + [ + -73.450084, + 45.567754 + ], + [ + -73.450083, + 45.567763 + ], + [ + -73.450082, + 45.567768 + ], + [ + -73.450081, + 45.567777 + ], + [ + -73.450079, + 45.567781 + ], + [ + -73.450078, + 45.56779 + ], + [ + -73.450077, + 45.567799 + ], + [ + -73.450075, + 45.567804 + ], + [ + -73.450074, + 45.567813 + ], + [ + -73.450073, + 45.567817 + ], + [ + -73.450071, + 45.567826 + ], + [ + -73.45007, + 45.567835 + ], + [ + -73.450069, + 45.56784 + ], + [ + -73.450067, + 45.567849 + ], + [ + -73.450066, + 45.567853 + ], + [ + -73.450065, + 45.567862 + ], + [ + -73.450063, + 45.567871 + ], + [ + -73.450062, + 45.567876 + ], + [ + -73.45006, + 45.567885 + ], + [ + -73.450059, + 45.567889 + ], + [ + -73.450058, + 45.567898 + ], + [ + -73.450056, + 45.567903 + ], + [ + -73.450055, + 45.567912 + ], + [ + -73.450054, + 45.567921 + ], + [ + -73.450052, + 45.567925 + ], + [ + -73.450051, + 45.567934 + ], + [ + -73.450049, + 45.567939 + ], + [ + -73.450048, + 45.567948 + ], + [ + -73.450046, + 45.567957 + ], + [ + -73.450045, + 45.567961 + ], + [ + -73.450043, + 45.56797 + ], + [ + -73.450042, + 45.567975 + ], + [ + -73.45004, + 45.567984 + ], + [ + -73.450039, + 45.567988 + ], + [ + -73.450037, + 45.567997 + ], + [ + -73.450036, + 45.568006 + ], + [ + -73.450034, + 45.568011 + ], + [ + -73.450032, + 45.56802 + ], + [ + -73.450031, + 45.568024 + ], + [ + -73.450029, + 45.568033 + ], + [ + -73.450028, + 45.568042 + ], + [ + -73.450026, + 45.568047 + ], + [ + -73.450024, + 45.568056 + ], + [ + -73.450023, + 45.56806 + ], + [ + -73.450021, + 45.568069 + ], + [ + -73.450019, + 45.568074 + ], + [ + -73.450017, + 45.568083 + ], + [ + -73.450016, + 45.568092 + ], + [ + -73.450014, + 45.568096 + ], + [ + -73.450013, + 45.568105 + ], + [ + -73.450011, + 45.56811 + ], + [ + -73.450009, + 45.568119 + ], + [ + -73.450007, + 45.568123 + ], + [ + -73.450006, + 45.568132 + ], + [ + -73.450004, + 45.568141 + ], + [ + -73.450002, + 45.568146 + ], + [ + -73.45, + 45.568155 + ], + [ + -73.449999, + 45.568159 + ], + [ + -73.449997, + 45.568168 + ], + [ + -73.449995, + 45.568173 + ], + [ + -73.449993, + 45.568182 + ], + [ + -73.449991, + 45.568191 + ], + [ + -73.449989, + 45.568195 + ], + [ + -73.449988, + 45.568204 + ], + [ + -73.449986, + 45.568209 + ], + [ + -73.449984, + 45.568218 + ], + [ + -73.449982, + 45.568227 + ], + [ + -73.44998, + 45.568231 + ], + [ + -73.449978, + 45.56824 + ], + [ + -73.449976, + 45.568245 + ], + [ + -73.449974, + 45.568254 + ], + [ + -73.449972, + 45.568258 + ], + [ + -73.44997, + 45.568267 + ], + [ + -73.449968, + 45.568276 + ], + [ + -73.449967, + 45.568281 + ], + [ + -73.449965, + 45.56829 + ], + [ + -73.449963, + 45.568294 + ], + [ + -73.449961, + 45.568303 + ], + [ + -73.449959, + 45.568308 + ], + [ + -73.449957, + 45.568317 + ], + [ + -73.449955, + 45.568326 + ], + [ + -73.449953, + 45.56833 + ], + [ + -73.449951, + 45.568339 + ], + [ + -73.449949, + 45.568344 + ], + [ + -73.449946, + 45.568353 + ], + [ + -73.449944, + 45.568357 + ], + [ + -73.449942, + 45.568366 + ], + [ + -73.44994, + 45.568371 + ], + [ + -73.449938, + 45.56838 + ], + [ + -73.449936, + 45.568389 + ], + [ + -73.449934, + 45.568393 + ], + [ + -73.449932, + 45.568402 + ], + [ + -73.44993, + 45.568407 + ], + [ + -73.449927, + 45.568416 + ], + [ + -73.449925, + 45.56842 + ], + [ + -73.449923, + 45.568429 + ], + [ + -73.449921, + 45.568438 + ], + [ + -73.449919, + 45.568443 + ], + [ + -73.449917, + 45.568452 + ], + [ + -73.449915, + 45.568456 + ], + [ + -73.449912, + 45.568465 + ], + [ + -73.44991, + 45.56847 + ], + [ + -73.449908, + 45.568479 + ], + [ + -73.449905, + 45.568488 + ], + [ + -73.449903, + 45.568492 + ], + [ + -73.449901, + 45.568501 + ], + [ + -73.449899, + 45.568506 + ], + [ + -73.449897, + 45.568515 + ], + [ + -73.449894, + 45.568519 + ], + [ + -73.449892, + 45.568528 + ], + [ + -73.449889, + 45.568533 + ], + [ + -73.449887, + 45.568542 + ], + [ + -73.449885, + 45.568551 + ], + [ + -73.449883, + 45.568555 + ], + [ + -73.44988, + 45.568564 + ], + [ + -73.449878, + 45.568569 + ], + [ + -73.449875, + 45.568578 + ], + [ + -73.449873, + 45.568582 + ], + [ + -73.44987, + 45.568591 + ], + [ + -73.449868, + 45.568596 + ], + [ + -73.449866, + 45.568605 + ], + [ + -73.449863, + 45.568614 + ], + [ + -73.449861, + 45.568618 + ], + [ + -73.449856, + 45.568632 + ], + [ + -73.449825, + 45.568708 + ], + [ + -73.449762, + 45.568861 + ], + [ + -73.449744, + 45.568903 + ], + [ + -73.449629, + 45.56917 + ], + [ + -73.449277, + 45.569995 + ], + [ + -73.449112, + 45.570242 + ], + [ + -73.449055, + 45.570278 + ], + [ + -73.448989, + 45.570323 + ], + [ + -73.448955, + 45.570337 + ], + [ + -73.448919, + 45.57035 + ], + [ + -73.448874, + 45.570359 + ], + [ + -73.44882, + 45.570368 + ], + [ + -73.448494, + 45.570395 + ], + [ + -73.448177, + 45.570336 + ], + [ + -73.447945, + 45.570309 + ], + [ + -73.447265, + 45.570176 + ], + [ + -73.4464, + 45.570007 + ], + [ + -73.446311, + 45.569989 + ], + [ + -73.446194, + 45.569957 + ], + [ + -73.446079, + 45.569912 + ], + [ + -73.44598, + 45.569845 + ], + [ + -73.445832, + 45.569723 + ], + [ + -73.445349, + 45.569349 + ], + [ + -73.445158, + 45.569201 + ], + [ + -73.444719, + 45.568877 + ], + [ + -73.444688, + 45.568854 + ], + [ + -73.444286, + 45.568557 + ], + [ + -73.443979, + 45.568764 + ], + [ + -73.443832, + 45.568863 + ], + [ + -73.443702, + 45.568949 + ], + [ + -73.443677, + 45.568966 + ], + [ + -73.443538, + 45.569043 + ], + [ + -73.443322, + 45.569133 + ], + [ + -73.443045, + 45.5692 + ], + [ + -73.442527, + 45.569294 + ], + [ + -73.442212, + 45.569352 + ], + [ + -73.441998, + 45.569399 + ], + [ + -73.441923, + 45.569415 + ], + [ + -73.441739, + 45.569478 + ], + [ + -73.441592, + 45.56955 + ], + [ + -73.441481, + 45.569618 + ], + [ + -73.441372, + 45.56968 + ], + [ + -73.441093, + 45.56986 + ], + [ + -73.440888, + 45.569991 + ], + [ + -73.440655, + 45.570126 + ], + [ + -73.440467, + 45.570242 + ], + [ + -73.440242, + 45.570319 + ], + [ + -73.440086, + 45.57035 + ], + [ + -73.439895, + 45.570355 + ], + [ + -73.439704, + 45.570327 + ], + [ + -73.439504, + 45.570287 + ], + [ + -73.439161, + 45.57021 + ], + [ + -73.438655, + 45.570102 + ], + [ + -73.435121, + 45.569346 + ], + [ + -73.434565, + 45.569227 + ], + [ + -73.43204, + 45.568685 + ], + [ + -73.431098, + 45.568523 + ], + [ + -73.430715, + 45.56846 + ], + [ + -73.429654, + 45.568351 + ], + [ + -73.429296, + 45.568325 + ], + [ + -73.429087, + 45.56831 + ], + [ + -73.428869, + 45.568301 + ], + [ + -73.42857, + 45.568283 + ], + [ + -73.428157, + 45.568269 + ], + [ + -73.42731, + 45.568269 + ], + [ + -73.42722, + 45.56827 + ], + [ + -73.427035, + 45.568273 + ], + [ + -73.426718, + 45.568291 + ], + [ + -73.426353, + 45.568309 + ], + [ + -73.426077, + 45.568322 + ], + [ + -73.425785, + 45.56834 + ], + [ + -73.425418, + 45.568357 + ], + [ + -73.424113, + 45.568433 + ], + [ + -73.42319, + 45.568485 + ], + [ + -73.421233, + 45.568594 + ], + [ + -73.420049, + 45.56866 + ], + [ + -73.418871, + 45.568717 + ], + [ + -73.418371, + 45.56874 + ], + [ + -73.418289, + 45.568738 + ], + [ + -73.418086, + 45.568735 + ], + [ + -73.417818, + 45.568703 + ], + [ + -73.417552, + 45.568658 + ], + [ + -73.417323, + 45.56859 + ], + [ + -73.417173, + 45.568543 + ], + [ + -73.417083, + 45.568514 + ], + [ + -73.416867, + 45.568415 + ], + [ + -73.416624, + 45.568288 + ], + [ + -73.416469, + 45.568185 + ], + [ + -73.416326, + 45.568081 + ], + [ + -73.416163, + 45.567924 + ], + [ + -73.415768, + 45.567551 + ], + [ + -73.415619, + 45.56741 + ], + [ + -73.415452, + 45.567253 + ], + [ + -73.417441, + 45.566152 + ], + [ + -73.419551, + 45.564984 + ], + [ + -73.420287, + 45.564573 + ], + [ + -73.420525, + 45.56444 + ], + [ + -73.420894, + 45.564251 + ], + [ + -73.42122, + 45.564089 + ], + [ + -73.421549, + 45.563919 + ], + [ + -73.422142, + 45.563568 + ], + [ + -73.423897, + 45.562597 + ], + [ + -73.424088, + 45.562481 + ], + [ + -73.424434, + 45.562242 + ], + [ + -73.424926, + 45.561873 + ], + [ + -73.425154, + 45.561703 + ], + [ + -73.425956, + 45.561002 + ], + [ + -73.427337, + 45.559796 + ], + [ + -73.427837, + 45.559361 + ], + [ + -73.42839, + 45.558857 + ], + [ + -73.42887, + 45.558435 + ], + [ + -73.429028, + 45.558295 + ], + [ + -73.429313, + 45.558012 + ], + [ + -73.430708, + 45.556663 + ], + [ + -73.43088, + 45.556493 + ], + [ + -73.431306, + 45.556069 + ], + [ + -73.43172, + 45.555722 + ], + [ + -73.431789, + 45.555665 + ], + [ + -73.432223, + 45.555346 + ], + [ + -73.43246, + 45.555188 + ], + [ + -73.432543, + 45.555134 + ], + [ + -73.432999, + 45.554887 + ], + [ + -73.434256, + 45.554213 + ], + [ + -73.434483, + 45.554083 + ], + [ + -73.434649, + 45.553975 + ], + [ + -73.434849, + 45.553835 + ], + [ + -73.435021, + 45.553701 + ], + [ + -73.435159, + 45.553588 + ], + [ + -73.435328, + 45.55344 + ], + [ + -73.435547, + 45.553237 + ], + [ + -73.435849, + 45.552943 + ], + [ + -73.436155, + 45.552644 + ], + [ + -73.437097, + 45.551709 + ], + [ + -73.437356, + 45.551461 + ], + [ + -73.437497, + 45.551339 + ], + [ + -73.437695, + 45.551168 + ], + [ + -73.438055, + 45.550908 + ], + [ + -73.438308, + 45.55075 + ], + [ + -73.438588, + 45.550594 + ], + [ + -73.4388, + 45.550495 + ], + [ + -73.438978, + 45.550409 + ], + [ + -73.439152, + 45.550343 + ], + [ + -73.43928, + 45.550298 + ], + [ + -73.439643, + 45.550168 + ], + [ + -73.440159, + 45.550002 + ], + [ + -73.440332, + 45.549946 + ], + [ + -73.441022, + 45.549723 + ], + [ + -73.441088, + 45.549701 + ], + [ + -73.441826, + 45.549464 + ], + [ + -73.441912, + 45.549436 + ], + [ + -73.441912, + 45.549436 + ], + [ + -73.442568, + 45.549225 + ], + [ + -73.442788, + 45.549153 + ], + [ + -73.443304, + 45.548985 + ], + [ + -73.44402, + 45.548753 + ], + [ + -73.444381, + 45.548637 + ], + [ + -73.444762, + 45.548514 + ], + [ + -73.445417, + 45.548304 + ], + [ + -73.446657, + 45.547903 + ], + [ + -73.447022, + 45.547781 + ], + [ + -73.447429, + 45.547646 + ], + [ + -73.447629, + 45.547579 + ], + [ + -73.447947, + 45.54746 + ], + [ + -73.448002, + 45.54744 + ], + [ + -73.448339, + 45.547305 + ], + [ + -73.448543, + 45.547215 + ], + [ + -73.448831, + 45.547062 + ], + [ + -73.449103, + 45.546914 + ], + [ + -73.449271, + 45.546806 + ], + [ + -73.449736, + 45.546505 + ], + [ + -73.449968, + 45.546338 + ], + [ + -73.45054, + 45.545943 + ], + [ + -73.4506, + 45.545902 + ], + [ + -73.451253, + 45.545453 + ], + [ + -73.452351, + 45.544683 + ], + [ + -73.452491, + 45.544585 + ], + [ + -73.453737, + 45.543736 + ], + [ + -73.453772, + 45.543712 + ], + [ + -73.454376, + 45.543288 + ], + [ + -73.454769, + 45.543011 + ], + [ + -73.455166, + 45.542732 + ], + [ + -73.455282, + 45.54266 + ], + [ + -73.455702, + 45.542678 + ], + [ + -73.455971, + 45.542683 + ], + [ + -73.456034, + 45.542341 + ], + [ + -73.456078, + 45.542099 + ], + [ + -73.456127, + 45.541828 + ], + [ + -73.45622, + 45.541171 + ], + [ + -73.456335, + 45.540449 + ], + [ + -73.456345, + 45.540384 + ], + [ + -73.456347, + 45.540366 + ], + [ + -73.456509, + 45.539394 + ], + [ + -73.456509, + 45.539219 + ], + [ + -73.456656, + 45.5384 + ], + [ + -73.456667, + 45.538348 + ], + [ + -73.456669, + 45.538334 + ], + [ + -73.456674, + 45.53831 + ], + [ + -73.456716, + 45.53818 + ], + [ + -73.456753, + 45.538063 + ], + [ + -73.456906, + 45.537595 + ], + [ + -73.457034, + 45.537289 + ], + [ + -73.457312, + 45.536745 + ], + [ + -73.457525, + 45.536412 + ], + [ + -73.457671, + 45.53619 + ], + [ + -73.457717, + 45.536119 + ], + [ + -73.457866, + 45.535926 + ], + [ + -73.458063, + 45.535706 + ], + [ + -73.458203, + 45.535555 + ], + [ + -73.45852, + 45.535215 + ], + [ + -73.45895, + 45.534833 + ], + [ + -73.459023, + 45.534775 + ], + [ + -73.459195, + 45.53464 + ], + [ + -73.460968, + 45.533133 + ], + [ + -73.461521, + 45.532588 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.462106, + 45.531887 + ], + [ + -73.462411, + 45.531442 + ], + [ + -73.462843, + 45.530639 + ], + [ + -73.462938, + 45.530461 + ], + [ + -73.463971, + 45.528556 + ], + [ + -73.465095, + 45.526482 + ], + [ + -73.465154, + 45.526372 + ], + [ + -73.465286, + 45.525972 + ], + [ + -73.46533, + 45.525747 + ], + [ + -73.465344, + 45.525549 + ], + [ + -73.465322, + 45.525364 + ], + [ + -73.465131, + 45.524519 + ], + [ + -73.465111, + 45.524431 + ], + [ + -73.464907, + 45.523532 + ], + [ + -73.464877, + 45.523398 + ], + [ + -73.464763, + 45.522917 + ], + [ + -73.464682, + 45.522613 + ], + [ + -73.464607, + 45.522332 + ], + [ + -73.464576, + 45.522215 + ], + [ + -73.464435, + 45.521608 + ], + [ + -73.464421, + 45.521551 + ], + [ + -73.4643, + 45.521015 + ], + [ + -73.464225, + 45.52069 + ], + [ + -73.464092, + 45.520078 + ], + [ + -73.464063, + 45.519947 + ], + [ + -73.463992, + 45.519645 + ], + [ + -73.463946, + 45.519416 + ], + [ + -73.463946, + 45.519259 + ], + [ + -73.463946, + 45.519088 + ], + [ + -73.463972, + 45.518953 + ], + [ + -73.464012, + 45.51884 + ], + [ + -73.46406, + 45.518732 + ], + [ + -73.464166, + 45.518557 + ], + [ + -73.464483, + 45.518161 + ], + [ + -73.464821, + 45.517672 + ], + [ + -73.464941, + 45.517498 + ], + [ + -73.465811, + 45.516258 + ], + [ + -73.466125, + 45.515839 + ], + [ + -73.466232, + 45.515695 + ], + [ + -73.466795, + 45.514943 + ], + [ + -73.467735, + 45.513672 + ], + [ + -73.467821, + 45.513555 + ], + [ + -73.468294, + 45.512911 + ], + [ + -73.46871, + 45.512346 + ], + [ + -73.468744, + 45.5123 + ], + [ + -73.469443, + 45.511193 + ], + [ + -73.469555, + 45.511034 + ], + [ + -73.469846, + 45.510622 + ], + [ + -73.470521, + 45.509701 + ], + [ + -73.471066, + 45.508957 + ], + [ + -73.471144, + 45.508849 + ], + [ + -73.471396, + 45.508934 + ], + [ + -73.472138, + 45.509183 + ], + [ + -73.473956, + 45.509779 + ], + [ + -73.475247, + 45.510202 + ], + [ + -73.475433, + 45.510263 + ], + [ + -73.478292, + 45.511196 + ], + [ + -73.478511, + 45.511267 + ], + [ + -73.481442, + 45.512222 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.484525, + 45.513221 + ], + [ + -73.484663, + 45.513266 + ], + [ + -73.487618, + 45.514228 + ], + [ + -73.48773, + 45.514265 + ], + [ + -73.490698, + 45.515232 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.493766, + 45.516234 + ], + [ + -73.493881, + 45.516272 + ], + [ + -73.497606, + 45.517477 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.49882, + 45.517869 + ], + [ + -73.49989, + 45.518233 + ], + [ + -73.499972, + 45.518261 + ], + [ + -73.502102, + 45.518947 + ], + [ + -73.502235, + 45.51899 + ], + [ + -73.505426, + 45.520032 + ], + [ + -73.505525, + 45.520065 + ], + [ + -73.507545, + 45.520716 + ], + [ + -73.507813, + 45.520803 + ], + [ + -73.507881, + 45.520866 + ], + [ + -73.508099, + 45.520938 + ], + [ + -73.508258, + 45.520974 + ], + [ + -73.50837, + 45.520987 + ], + [ + -73.508461, + 45.520983 + ], + [ + -73.508562, + 45.520983 + ], + [ + -73.50866, + 45.520978 + ], + [ + -73.50877, + 45.520987 + ], + [ + -73.508969, + 45.521037 + ], + [ + -73.509108, + 45.521064 + ], + [ + -73.509167, + 45.521059 + ], + [ + -73.510032, + 45.521352 + ], + [ + -73.510243, + 45.521423 + ], + [ + -73.511276, + 45.521761 + ], + [ + -73.512491, + 45.522162 + ], + [ + -73.513225, + 45.522404 + ], + [ + -73.513329, + 45.522453 + ], + [ + -73.51347, + 45.522512 + ], + [ + -73.513466, + 45.522197 + ], + [ + -73.513465, + 45.522079 + ], + [ + -73.513454, + 45.521135 + ], + [ + -73.513455, + 45.520586 + ], + [ + -73.513456, + 45.520393 + ], + [ + -73.51347, + 45.52019 + ], + [ + -73.513487, + 45.520033 + ], + [ + -73.513501, + 45.519929 + ], + [ + -73.513525, + 45.519803 + ], + [ + -73.51356, + 45.519673 + ], + [ + -73.513601, + 45.519583 + ], + [ + -73.51367, + 45.519425 + ], + [ + -73.513724, + 45.519336 + ], + [ + -73.513785, + 45.519236 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515007, + 45.519424 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518902, + 45.520632 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520267, + 45.521193 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520861, + 45.524416 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.520811, + 45.523427 + ] + ] + }, + "id": 215, + "properties": { + "id": "74256c19-1105-445a-80ed-a6e3ae81077e", + "data": { + "gtfs": { + "shape_id": "123_2_A" + }, + "segments": [ + { + "distanceMeters": 60, + "travelTimeSeconds": 6 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 83, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 523, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 460, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 371, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 558, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 444, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 469, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 471, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 310, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 360, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 312, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 455, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 330, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 845, + "travelTimeSeconds": 189 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 318, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 24700, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5993.066645974276, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.77, + "travelTimeWithoutDwellTimesSeconds": 3180, + "operatingTimeWithLayoverTimeSeconds": 3498, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3180, + "operatingSpeedWithLayoverMetersPerSecond": 7.06, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.77 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "ef393841-8a29-4383-a7b9-545addf087f6", + "ef393841-8a29-4383-a7b9-545addf087f6", + "281f350b-faae-4302-bcde-cc7831951682", + "59b13438-eb20-4204-b1fd-fe2ed2a80258", + "bc413ffa-dc65-4fc7-93f0-58dddebb3024", + "ce65fcd5-5449-4ede-b81b-9d2cd21731a7", + "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", + "3e6f6ee6-af44-48b8-9b96-431c0dfdb40c", + "cbdc89b0-549e-41a3-becc-56a1e8c831ce", + "3fa535d7-2c06-4fc3-ac22-347da96e9a38", + "a0c45e7b-af06-4ea8-a82a-a658b829e198", + "ffb5020e-4dcf-4cee-9d46-621fd641098b", + "3be8bc80-2551-4dbe-a3e5-58d302899fd6", + "1532a7e6-19bb-482a-881b-1cf8dd8416ed", + "b5bdde0b-f4ea-4dda-8556-5a9c093cee1e", + "b00ce62b-a3af-454b-8eb4-951ab271a0e2", + "ddf509a6-0c36-4863-8c49-8e568d69fa14", + "e72de034-4bad-4c42-9f05-b66c808b840c", + "7330c47a-92ea-4650-a95f-c6010983e0e2", + "5f1f8694-7622-42a2-a482-eb0612df0756", + "e01682ec-7470-4db5-8b9e-ac8823b81e39", + "31d31773-be59-456e-bce3-a8671d3f0ded", + "b15716e4-5653-476c-ba57-960f89ea42d5", + "b070e296-b686-4ba3-bf68-049018a7af21", + "83389414-0049-46f6-a04b-557250511611", + "2b894d51-a427-4850-8fae-89ed3f29388d", + "bd99fd0e-cbdd-4d16-af5c-609bbef87ee4", + "adc9bcc9-8f6d-49e9-b7de-68b4f56033f4", + "bd467e22-a975-40b8-9a7a-9801529c3237", + "6150abd1-c8f6-4045-8e3e-f50bbef79a53", + "aff34f6b-5801-4e1a-bc66-3990844e0b4e", + "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", + "33622e57-d444-4916-a7fb-d1fa4643eb90", + "e979db3f-26cd-41d5-8708-f07b7090bef0", + "5573e81d-639b-42bb-a768-ad52df79de56", + "2017e3ec-fe66-4e73-9fb7-567ac5f8a472", + "bd1fa046-c7cd-4878-bf5b-177b8bb772d6", + "26e46bda-74e3-4f09-b95f-139d0b7fb0af", + "8663e9fe-e135-44e5-ac98-e3cb896c6c45", + "ab684dee-c058-4d37-851f-c3b6a26b599d", + "ff4a3e03-c804-4002-b3d4-f9bc873fc550", + "b9a0be89-8d55-4f3c-ae5f-e8c732f903dc", + "1af3fbef-32b4-454e-9289-b300f3b4ddb1", + "0041d8ec-3bef-4a62-90da-3711f5d509d2", + "0d73df1c-f948-4c1f-ba36-487a91089d51", + "b734f683-dc9f-47d6-a659-53e6bf9d2915", + "fafd80b0-6ccf-4eb9-acda-4d93a4bf6736", + "3babd96f-413d-4615-8f50-ca3cd1b6b052", + "52b4b9f4-5da9-4e8b-83a9-0be3d15c1d16", + "c6e39e27-f6a2-4102-b237-b49f8c28ddda", + "317463e6-5f58-49bb-9db5-183bfb37f7c6", + "b1e0c9f3-01ed-4b74-ab1d-f413050d3022", + "b567475e-2b46-4378-9adc-08b4cc99ad7e", + "e525780c-4598-49cd-b6ff-8b911e2c9385", + "92a52522-0981-490b-a541-e3514efa3ed8", + "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", + "946a029d-014a-45ca-adcd-e5b8e3927d52", + "43f18805-a4b1-4fc6-a1c9-787eb883bcde", + "e4670d3f-1aa4-4e69-ac7c-0f6fbe1ebddb", + "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", + "c77b3ec3-667e-4b8e-a8ba-613daafce3d4", + "8a5c9ba1-a597-4c12-90c9-b58f8d4f8d95", + "ead7d270-6dcb-4161-af5c-95bec6715688", + "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "8746746f-daed-4d54-a90f-724d51454ae1", + "47143cf4-4cce-4e8f-bfed-223c71fcc466", + "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", + "74d09865-876b-4428-9441-1504fb3f52bd", + "334bd241-267c-4081-968b-fd0340fabe8f", + "146e7d43-1e02-4f93-ac9a-e66dd29d3576", + "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", + "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", + "f9f88325-b670-4d47-91fa-edb372992bbc", + "e1a9e623-935b-47b9-a038-bcbd5a33f95e", + "ba348c95-9f07-48ca-a139-5d5c2dd83350", + "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", + "6c122298-4ea6-41ee-91e8-bb29cb41a320", + "e1825eb4-cef2-4f98-872f-0d169be63859", + "5a82a520-52b6-417e-972a-f9bf56fb4f33", + "64ba3e91-9bea-4655-ac42-4f3f1a14955c", + "315b8823-6c3a-493b-9af5-7325cbc48096", + "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "05287baf-76e5-4533-8eef-0902c45b01ae", + "54cba115-6a75-4b65-8019-b2b5de7a3947", + "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", + "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", + "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", + "52b1586a-11ae-4a36-8706-2e4367c6d3c8", + "234e805d-82ab-4d93-bec5-6c8c331d4f7b", + "b412dc8e-18d6-40de-b77b-38439256c33f", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "acabc807-b0f5-4579-b183-cef0484a7cc2" + ], + "stops": [], + "line_id": "5d0af399-f114-40f4-b24c-1e73275b3a37", + "segments": [ + 0, + 2, + 5, + 6, + 9, + 18, + 20, + 29, + 31, + 33, + 35, + 38, + 40, + 43, + 47, + 54, + 57, + 64, + 65, + 67, + 70, + 72, + 78, + 90, + 102, + 116, + 127, + 130, + 134, + 139, + 141, + 150, + 308, + 320, + 327, + 334, + 357, + 358, + 364, + 370, + 378, + 379, + 383, + 395, + 398, + 400, + 409, + 412, + 415, + 419, + 421, + 435, + 439, + 454, + 460, + 465, + 476, + 479, + 481, + 484, + 493, + 500, + 508, + 515, + 518, + 523, + 525, + 526, + 532, + 537, + 544, + 555, + 558, + 561, + 564, + 572, + 575, + 577, + 579, + 581, + 583, + 585, + 587, + 589, + 592, + 594, + 596, + 598, + 611, + 614, + 619, + 630, + 635, + 642 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 215, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.520811, + 45.523427 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522227, + 45.521976 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519251, + 45.520728 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.516333, + 45.519806 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514253, + 45.51909 + ], + [ + -73.513885, + 45.518962 + ], + [ + -73.51387, + 45.518957 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.51366, + 45.519196 + ], + [ + -73.513541, + 45.519389 + ], + [ + -73.513476, + 45.519506 + ], + [ + -73.513414, + 45.519673 + ], + [ + -73.513367, + 45.519825 + ], + [ + -73.513342, + 45.519907 + ], + [ + -73.513328, + 45.519997 + ], + [ + -73.513311, + 45.520181 + ], + [ + -73.513297, + 45.520388 + ], + [ + -73.513304, + 45.520586 + ], + [ + -73.51331, + 45.521135 + ], + [ + -73.513324, + 45.522113 + ], + [ + -73.513329, + 45.522453 + ], + [ + -73.513225, + 45.522404 + ], + [ + -73.512969, + 45.52232 + ], + [ + -73.511276, + 45.521761 + ], + [ + -73.510472, + 45.521498 + ], + [ + -73.510243, + 45.521423 + ], + [ + -73.509167, + 45.521059 + ], + [ + -73.50913, + 45.52101 + ], + [ + -73.509054, + 45.520983 + ], + [ + -73.508914, + 45.520938 + ], + [ + -73.50875, + 45.520908 + ], + [ + -73.50874, + 45.520906 + ], + [ + -73.508615, + 45.520897 + ], + [ + -73.508519, + 45.520893 + ], + [ + -73.508513, + 45.520893 + ], + [ + -73.508412, + 45.520888 + ], + [ + -73.508316, + 45.520888 + ], + [ + -73.508225, + 45.520879 + ], + [ + -73.508096, + 45.520852 + ], + [ + -73.507904, + 45.520798 + ], + [ + -73.507813, + 45.520803 + ], + [ + -73.505692, + 45.520119 + ], + [ + -73.505525, + 45.520065 + ], + [ + -73.502345, + 45.519026 + ], + [ + -73.502235, + 45.51899 + ], + [ + -73.500086, + 45.518297 + ], + [ + -73.499972, + 45.518261 + ], + [ + -73.49882, + 45.517869 + ], + [ + -73.497861, + 45.51756 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.494008, + 45.516313 + ], + [ + -73.493881, + 45.516272 + ], + [ + -73.490999, + 45.51533 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.487849, + 45.514304 + ], + [ + -73.48773, + 45.514265 + ], + [ + -73.484792, + 45.513308 + ], + [ + -73.484663, + 45.513266 + ], + [ + -73.481697, + 45.512304 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.47864, + 45.511309 + ], + [ + -73.478511, + 45.511267 + ], + [ + -73.475537, + 45.510297 + ], + [ + -73.475433, + 45.510263 + ], + [ + -73.472367, + 45.509258 + ], + [ + -73.472138, + 45.509183 + ], + [ + -73.471144, + 45.508849 + ], + [ + -73.470997, + 45.508809 + ], + [ + -73.470932, + 45.508894 + ], + [ + -73.470694, + 45.509214 + ], + [ + -73.470366, + 45.509655 + ], + [ + -73.470032, + 45.510114 + ], + [ + -73.46959, + 45.510721 + ], + [ + -73.469434, + 45.510905 + ], + [ + -73.469378, + 45.510967 + ], + [ + -73.469091, + 45.511282 + ], + [ + -73.468985, + 45.5114 + ], + [ + -73.468427, + 45.512162 + ], + [ + -73.468415, + 45.512178 + ], + [ + -73.466445, + 45.514919 + ], + [ + -73.466162, + 45.515346 + ], + [ + -73.466151, + 45.515363 + ], + [ + -73.465949, + 45.515589 + ], + [ + -73.463889, + 45.518354 + ], + [ + -73.463717, + 45.51862 + ], + [ + -73.463631, + 45.518853 + ], + [ + -73.463583, + 45.519083 + ], + [ + -73.463564, + 45.519245 + ], + [ + -73.463583, + 45.519488 + ], + [ + -73.463685, + 45.519919 + ], + [ + -73.463702, + 45.519992 + ], + [ + -73.463752, + 45.520203 + ], + [ + -73.463794, + 45.520379 + ], + [ + -73.463924, + 45.520923 + ], + [ + -73.464036, + 45.521392 + ], + [ + -73.464091, + 45.52162 + ], + [ + -73.464111, + 45.521706 + ], + [ + -73.464186, + 45.522017 + ], + [ + -73.464215, + 45.522138 + ], + [ + -73.464331, + 45.522602 + ], + [ + -73.464351, + 45.522682 + ], + [ + -73.464423, + 45.522975 + ], + [ + -73.464736, + 45.524295 + ], + [ + -73.464777, + 45.524466 + ], + [ + -73.46493, + 45.525112 + ], + [ + -73.464976, + 45.525355 + ], + [ + -73.465003, + 45.525643 + ], + [ + -73.464991, + 45.525805 + ], + [ + -73.464965, + 45.525922 + ], + [ + -73.464886, + 45.526134 + ], + [ + -73.464818, + 45.526267 + ], + [ + -73.464731, + 45.526435 + ], + [ + -73.463641, + 45.528471 + ], + [ + -73.462718, + 45.530195 + ], + [ + -73.462624, + 45.530371 + ], + [ + -73.462437, + 45.530708 + ], + [ + -73.462358, + 45.530861 + ], + [ + -73.46217, + 45.531262 + ], + [ + -73.461938, + 45.531653 + ], + [ + -73.461712, + 45.531982 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.46089, + 45.532868 + ], + [ + -73.460757, + 45.533003 + ], + [ + -73.459629, + 45.533974 + ], + [ + -73.45906, + 45.534431 + ], + [ + -73.458963, + 45.534509 + ], + [ + -73.458731, + 45.534693 + ], + [ + -73.458241, + 45.535152 + ], + [ + -73.457986, + 45.535404 + ], + [ + -73.457781, + 45.535638 + ], + [ + -73.457342, + 45.536214 + ], + [ + -73.457313, + 45.536261 + ], + [ + -73.45713, + 45.536556 + ], + [ + -73.456948, + 45.536857 + ], + [ + -73.456811, + 45.537145 + ], + [ + -73.456744, + 45.5373 + ], + [ + -73.456664, + 45.537487 + ], + [ + -73.456523, + 45.537909 + ], + [ + -73.456485, + 45.538022 + ], + [ + -73.456445, + 45.538144 + ], + [ + -73.456357, + 45.53853 + ], + [ + -73.456221, + 45.539372 + ], + [ + -73.456144, + 45.539984 + ], + [ + -73.456095, + 45.54026 + ], + [ + -73.456076, + 45.540361 + ], + [ + -73.455916, + 45.541266 + ], + [ + -73.455834, + 45.54181 + ], + [ + -73.455736, + 45.542455 + ], + [ + -73.455702, + 45.542678 + ], + [ + -73.455282, + 45.54266 + ], + [ + -73.455166, + 45.542732 + ], + [ + -73.454785, + 45.543 + ], + [ + -73.454376, + 45.543288 + ], + [ + -73.453916, + 45.543612 + ], + [ + -73.453772, + 45.543712 + ], + [ + -73.45275, + 45.544408 + ], + [ + -73.452491, + 45.544585 + ], + [ + -73.451253, + 45.545453 + ], + [ + -73.450702, + 45.545832 + ], + [ + -73.4506, + 45.545902 + ], + [ + -73.449968, + 45.546338 + ], + [ + -73.449736, + 45.546505 + ], + [ + -73.449271, + 45.546806 + ], + [ + -73.449103, + 45.546914 + ], + [ + -73.448831, + 45.547062 + ], + [ + -73.448543, + 45.547215 + ], + [ + -73.448339, + 45.547305 + ], + [ + -73.448002, + 45.54744 + ], + [ + -73.447947, + 45.54746 + ], + [ + -73.447803, + 45.547514 + ], + [ + -73.447629, + 45.547579 + ], + [ + -73.447022, + 45.547781 + ], + [ + -73.446657, + 45.547903 + ], + [ + -73.445417, + 45.548304 + ], + [ + -73.444762, + 45.548514 + ], + [ + -73.444365, + 45.548642 + ], + [ + -73.44402, + 45.548753 + ], + [ + -73.443304, + 45.548985 + ], + [ + -73.442788, + 45.549153 + ], + [ + -73.442568, + 45.549225 + ], + [ + -73.441912, + 45.549436 + ], + [ + -73.441826, + 45.549464 + ], + [ + -73.441769, + 45.549482 + ], + [ + -73.441088, + 45.549701 + ], + [ + -73.441022, + 45.549723 + ], + [ + -73.440332, + 45.549946 + ], + [ + -73.440159, + 45.550002 + ], + [ + -73.439643, + 45.550168 + ], + [ + -73.43928, + 45.550298 + ], + [ + -73.439152, + 45.550343 + ], + [ + -73.438978, + 45.550409 + ], + [ + -73.4388, + 45.550495 + ], + [ + -73.438588, + 45.550594 + ], + [ + -73.438308, + 45.55075 + ], + [ + -73.438055, + 45.550908 + ], + [ + -73.437695, + 45.551168 + ], + [ + -73.437551, + 45.551292 + ], + [ + -73.437356, + 45.551461 + ], + [ + -73.437097, + 45.551709 + ], + [ + -73.436155, + 45.552644 + ], + [ + -73.435891, + 45.552901 + ], + [ + -73.435547, + 45.553237 + ], + [ + -73.435328, + 45.55344 + ], + [ + -73.435159, + 45.553588 + ], + [ + -73.435021, + 45.553701 + ], + [ + -73.434849, + 45.553835 + ], + [ + -73.434649, + 45.553975 + ], + [ + -73.434483, + 45.554083 + ], + [ + -73.434256, + 45.554213 + ], + [ + -73.432999, + 45.554887 + ], + [ + -73.432543, + 45.555134 + ], + [ + -73.43246, + 45.555188 + ], + [ + -73.432223, + 45.555346 + ], + [ + -73.43188, + 45.555597 + ], + [ + -73.431789, + 45.555665 + ], + [ + -73.431306, + 45.556069 + ], + [ + -73.430907, + 45.556465 + ], + [ + -73.430708, + 45.556663 + ], + [ + -73.429313, + 45.558012 + ], + [ + -73.429197, + 45.558127 + ], + [ + -73.429028, + 45.558295 + ], + [ + -73.42839, + 45.558857 + ], + [ + -73.427837, + 45.559361 + ], + [ + -73.427383, + 45.559756 + ], + [ + -73.425956, + 45.561002 + ], + [ + -73.425208, + 45.561655 + ], + [ + -73.425154, + 45.561703 + ], + [ + -73.424434, + 45.562242 + ], + [ + -73.424088, + 45.562481 + ], + [ + -73.423897, + 45.562597 + ], + [ + -73.422142, + 45.563568 + ], + [ + -73.421549, + 45.563919 + ], + [ + -73.42122, + 45.564089 + ], + [ + -73.421171, + 45.564114 + ], + [ + -73.420894, + 45.564251 + ], + [ + -73.420525, + 45.56444 + ], + [ + -73.419551, + 45.564984 + ], + [ + -73.417459, + 45.566142 + ], + [ + -73.415452, + 45.567253 + ], + [ + -73.415619, + 45.56741 + ], + [ + -73.416076, + 45.567841 + ], + [ + -73.416163, + 45.567924 + ], + [ + -73.416326, + 45.568081 + ], + [ + -73.416469, + 45.568185 + ], + [ + -73.416624, + 45.568288 + ], + [ + -73.416867, + 45.568415 + ], + [ + -73.417006, + 45.568478 + ], + [ + -73.417083, + 45.568514 + ], + [ + -73.417323, + 45.56859 + ], + [ + -73.417552, + 45.568658 + ], + [ + -73.417818, + 45.568703 + ], + [ + -73.41796, + 45.56872 + ], + [ + -73.418086, + 45.568735 + ], + [ + -73.418371, + 45.56874 + ], + [ + -73.418871, + 45.568717 + ], + [ + -73.420049, + 45.56866 + ], + [ + -73.420865, + 45.568614 + ], + [ + -73.423193, + 45.568484 + ], + [ + -73.424113, + 45.568433 + ], + [ + -73.425418, + 45.568357 + ], + [ + -73.425785, + 45.56834 + ], + [ + -73.426077, + 45.568322 + ], + [ + -73.426353, + 45.568309 + ], + [ + -73.426718, + 45.568291 + ], + [ + -73.426723, + 45.56829 + ], + [ + -73.427035, + 45.568273 + ], + [ + -73.42731, + 45.568269 + ], + [ + -73.428157, + 45.568269 + ], + [ + -73.42857, + 45.568283 + ], + [ + -73.428869, + 45.568301 + ], + [ + -73.429055, + 45.568309 + ], + [ + -73.429087, + 45.56831 + ], + [ + -73.429654, + 45.568351 + ], + [ + -73.430715, + 45.56846 + ], + [ + -73.431098, + 45.568523 + ], + [ + -73.43204, + 45.568685 + ], + [ + -73.434178, + 45.569144 + ], + [ + -73.434565, + 45.569227 + ], + [ + -73.438719, + 45.570116 + ], + [ + -73.439161, + 45.57021 + ], + [ + -73.439504, + 45.570287 + ], + [ + -73.439704, + 45.570327 + ], + [ + -73.439895, + 45.570355 + ], + [ + -73.440086, + 45.57035 + ], + [ + -73.440242, + 45.570319 + ], + [ + -73.440467, + 45.570242 + ], + [ + -73.440655, + 45.570126 + ], + [ + -73.440888, + 45.569991 + ], + [ + -73.441093, + 45.56986 + ], + [ + -73.441372, + 45.56968 + ], + [ + -73.441481, + 45.569618 + ], + [ + -73.441592, + 45.56955 + ], + [ + -73.441739, + 45.569478 + ], + [ + -73.441923, + 45.569415 + ], + [ + -73.441998, + 45.569399 + ], + [ + -73.442212, + 45.569352 + ], + [ + -73.442527, + 45.569294 + ], + [ + -73.443045, + 45.5692 + ], + [ + -73.443322, + 45.569133 + ], + [ + -73.443347, + 45.569122 + ], + [ + -73.443538, + 45.569043 + ], + [ + -73.443677, + 45.568966 + ], + [ + -73.443832, + 45.568863 + ], + [ + -73.443977, + 45.568827 + ], + [ + -73.444045, + 45.568809 + ], + [ + -73.444096, + 45.568796 + ], + [ + -73.444173, + 45.568782 + ], + [ + -73.444256, + 45.568778 + ], + [ + -73.444346, + 45.568778 + ], + [ + -73.444435, + 45.568791 + ], + [ + -73.444507, + 45.568809 + ], + [ + -73.444608, + 45.568854 + ], + [ + -73.444719, + 45.568877 + ], + [ + -73.445065, + 45.569132 + ], + [ + -73.445158, + 45.569201 + ], + [ + -73.445832, + 45.569723 + ], + [ + -73.44598, + 45.569845 + ], + [ + -73.446079, + 45.569912 + ], + [ + -73.446194, + 45.569957 + ], + [ + -73.446311, + 45.569989 + ], + [ + -73.4464, + 45.570007 + ], + [ + -73.446552, + 45.570037 + ], + [ + -73.447945, + 45.570309 + ], + [ + -73.448177, + 45.570336 + ], + [ + -73.448494, + 45.570395 + ], + [ + -73.449049, + 45.570517 + ], + [ + -73.449223, + 45.570544 + ], + [ + -73.449264, + 45.570454 + ], + [ + -73.449543, + 45.569814 + ], + [ + -73.449722, + 45.56941 + ], + [ + -73.449947, + 45.568902 + ], + [ + -73.449982, + 45.56883 + ], + [ + -73.450051, + 45.568681 + ], + [ + -73.450055, + 45.568672 + ], + [ + -73.450057, + 45.568668 + ], + [ + -73.450059, + 45.568663 + ], + [ + -73.450061, + 45.568659 + ], + [ + -73.450063, + 45.568654 + ], + [ + -73.450065, + 45.56865 + ], + [ + -73.450067, + 45.568645 + ], + [ + -73.450069, + 45.568641 + ], + [ + -73.450071, + 45.568636 + ], + [ + -73.450072, + 45.568632 + ], + [ + -73.450074, + 45.568627 + ], + [ + -73.450076, + 45.568623 + ], + [ + -73.450078, + 45.568618 + ], + [ + -73.45008, + 45.568618 + ], + [ + -73.450082, + 45.568614 + ], + [ + -73.450084, + 45.568609 + ], + [ + -73.450086, + 45.568605 + ], + [ + -73.450087, + 45.5686 + ], + [ + -73.450089, + 45.568596 + ], + [ + -73.450091, + 45.568591 + ], + [ + -73.450093, + 45.568587 + ], + [ + -73.450095, + 45.568582 + ], + [ + -73.450097, + 45.568578 + ], + [ + -73.450099, + 45.568573 + ], + [ + -73.450101, + 45.568569 + ], + [ + -73.450102, + 45.568564 + ], + [ + -73.450104, + 45.56856 + ], + [ + -73.450106, + 45.568555 + ], + [ + -73.450108, + 45.568551 + ], + [ + -73.45011, + 45.568546 + ], + [ + -73.450112, + 45.568542 + ], + [ + -73.450114, + 45.568537 + ], + [ + -73.450115, + 45.568533 + ], + [ + -73.450117, + 45.568528 + ], + [ + -73.450119, + 45.568524 + ], + [ + -73.45012, + 45.568519 + ], + [ + -73.450122, + 45.568519 + ], + [ + -73.450124, + 45.568515 + ], + [ + -73.450126, + 45.56851 + ], + [ + -73.450128, + 45.568506 + ], + [ + -73.450129, + 45.568501 + ], + [ + -73.450131, + 45.568497 + ], + [ + -73.450133, + 45.568492 + ], + [ + -73.450134, + 45.568488 + ], + [ + -73.450136, + 45.568483 + ], + [ + -73.450138, + 45.568479 + ], + [ + -73.450139, + 45.568476 + ], + [ + -73.45014, + 45.568474 + ], + [ + -73.450141, + 45.56847 + ], + [ + -73.450143, + 45.568465 + ], + [ + -73.450145, + 45.568461 + ], + [ + -73.450146, + 45.568456 + ], + [ + -73.450148, + 45.568452 + ], + [ + -73.45015, + 45.568447 + ], + [ + -73.450151, + 45.568443 + ], + [ + -73.450153, + 45.568438 + ], + [ + -73.450154, + 45.568434 + ], + [ + -73.450156, + 45.568429 + ], + [ + -73.450158, + 45.568425 + ], + [ + -73.45016, + 45.56842 + ], + [ + -73.450161, + 45.568416 + ], + [ + -73.450163, + 45.568411 + ], + [ + -73.450164, + 45.568407 + ], + [ + -73.450166, + 45.568402 + ], + [ + -73.450168, + 45.568398 + ], + [ + -73.450169, + 45.568393 + ], + [ + -73.450171, + 45.568393 + ], + [ + -73.450173, + 45.568389 + ], + [ + -73.450174, + 45.568384 + ], + [ + -73.450175, + 45.56838 + ], + [ + -73.450177, + 45.568375 + ], + [ + -73.450179, + 45.568371 + ], + [ + -73.45018, + 45.568366 + ], + [ + -73.450182, + 45.568362 + ], + [ + -73.450183, + 45.568357 + ], + [ + -73.450185, + 45.568353 + ], + [ + -73.450186, + 45.568348 + ], + [ + -73.450188, + 45.568344 + ], + [ + -73.450189, + 45.568339 + ], + [ + -73.450191, + 45.568335 + ], + [ + -73.450192, + 45.56833 + ], + [ + -73.450194, + 45.568326 + ], + [ + -73.450195, + 45.568321 + ], + [ + -73.450197, + 45.568317 + ], + [ + -73.450198, + 45.568312 + ], + [ + -73.4502, + 45.568308 + ], + [ + -73.450201, + 45.568303 + ], + [ + -73.450203, + 45.568299 + ], + [ + -73.450204, + 45.568294 + ], + [ + -73.450205, + 45.56829 + ], + [ + -73.450207, + 45.568285 + ], + [ + -73.450208, + 45.568281 + ], + [ + -73.45021, + 45.568276 + ], + [ + -73.450211, + 45.568272 + ], + [ + -73.450213, + 45.568267 + ], + [ + -73.450214, + 45.568263 + ], + [ + -73.450215, + 45.568258 + ], + [ + -73.450217, + 45.568254 + ], + [ + -73.450218, + 45.568249 + ], + [ + -73.450219, + 45.568245 + ], + [ + -73.450221, + 45.56824 + ], + [ + -73.450222, + 45.568236 + ], + [ + -73.450224, + 45.568231 + ], + [ + -73.450225, + 45.568227 + ], + [ + -73.450226, + 45.568227 + ], + [ + -73.450228, + 45.568222 + ], + [ + -73.450229, + 45.568218 + ], + [ + -73.45023, + 45.568213 + ], + [ + -73.450232, + 45.568209 + ], + [ + -73.450233, + 45.568204 + ], + [ + -73.450234, + 45.5682 + ], + [ + -73.450236, + 45.568195 + ], + [ + -73.450237, + 45.568191 + ], + [ + -73.450238, + 45.568186 + ], + [ + -73.45024, + 45.568182 + ], + [ + -73.450241, + 45.568177 + ], + [ + -73.450242, + 45.568173 + ], + [ + -73.450244, + 45.568168 + ], + [ + -73.450245, + 45.568164 + ], + [ + -73.450246, + 45.568159 + ], + [ + -73.450247, + 45.568155 + ], + [ + -73.450248, + 45.56815 + ], + [ + -73.45025, + 45.568146 + ], + [ + -73.450251, + 45.568141 + ], + [ + -73.450252, + 45.568137 + ], + [ + -73.450253, + 45.568132 + ], + [ + -73.450254, + 45.568128 + ], + [ + -73.450256, + 45.568123 + ], + [ + -73.450257, + 45.568119 + ], + [ + -73.450258, + 45.568114 + ], + [ + -73.450259, + 45.56811 + ], + [ + -73.45026, + 45.568105 + ], + [ + -73.450262, + 45.568101 + ], + [ + -73.450263, + 45.568096 + ], + [ + -73.450264, + 45.568092 + ], + [ + -73.450265, + 45.568088 + ], + [ + -73.450266, + 45.568083 + ], + [ + -73.450267, + 45.568079 + ], + [ + -73.450268, + 45.568074 + ], + [ + -73.45027, + 45.56807 + ], + [ + -73.450271, + 45.568065 + ], + [ + -73.450272, + 45.568061 + ], + [ + -73.450273, + 45.568056 + ], + [ + -73.450274, + 45.568052 + ], + [ + -73.450275, + 45.568047 + ], + [ + -73.450277, + 45.568043 + ], + [ + -73.450277, + 45.568038 + ], + [ + -73.450279, + 45.568034 + ], + [ + -73.45028, + 45.568029 + ], + [ + -73.450281, + 45.568025 + ], + [ + -73.450282, + 45.56802 + ], + [ + -73.450283, + 45.568016 + ], + [ + -73.450284, + 45.568011 + ], + [ + -73.450285, + 45.568007 + ], + [ + -73.450286, + 45.568002 + ], + [ + -73.450287, + 45.567998 + ], + [ + -73.450288, + 45.567993 + ], + [ + -73.450289, + 45.567989 + ], + [ + -73.45029, + 45.567984 + ], + [ + -73.450291, + 45.56798 + ], + [ + -73.450292, + 45.567975 + ], + [ + -73.450293, + 45.567971 + ], + [ + -73.450294, + 45.567966 + ], + [ + -73.450295, + 45.567962 + ], + [ + -73.450296, + 45.567957 + ], + [ + -73.450297, + 45.567957 + ], + [ + -73.450298, + 45.567953 + ], + [ + -73.450299, + 45.567948 + ], + [ + -73.4503, + 45.567944 + ], + [ + -73.450301, + 45.567939 + ], + [ + -73.450301, + 45.567935 + ], + [ + -73.450302, + 45.56793 + ], + [ + -73.450303, + 45.567926 + ], + [ + -73.450304, + 45.567921 + ], + [ + -73.450305, + 45.567917 + ], + [ + -73.450306, + 45.567912 + ], + [ + -73.450307, + 45.567908 + ], + [ + -73.450308, + 45.567903 + ], + [ + -73.450309, + 45.567899 + ], + [ + -73.450309, + 45.567894 + ], + [ + -73.45031, + 45.56789 + ], + [ + -73.450311, + 45.567885 + ], + [ + -73.450312, + 45.567881 + ], + [ + -73.450313, + 45.567876 + ], + [ + -73.450314, + 45.567872 + ], + [ + -73.450315, + 45.567867 + ], + [ + -73.450316, + 45.567863 + ], + [ + -73.450316, + 45.567858 + ], + [ + -73.450317, + 45.567854 + ], + [ + -73.450318, + 45.567849 + ], + [ + -73.450319, + 45.567845 + ], + [ + -73.45032, + 45.56784 + ], + [ + -73.45032, + 45.567836 + ], + [ + -73.450321, + 45.567831 + ], + [ + -73.450322, + 45.567827 + ], + [ + -73.450323, + 45.567822 + ], + [ + -73.450324, + 45.567818 + ], + [ + -73.450324, + 45.567813 + ], + [ + -73.450325, + 45.567809 + ], + [ + -73.450326, + 45.567804 + ], + [ + -73.450326, + 45.5678 + ], + [ + -73.450327, + 45.567795 + ], + [ + -73.450328, + 45.567791 + ], + [ + -73.450329, + 45.567786 + ], + [ + -73.450329, + 45.567782 + ], + [ + -73.45033, + 45.567777 + ], + [ + -73.450331, + 45.567773 + ], + [ + -73.450332, + 45.567768 + ], + [ + -73.450332, + 45.567764 + ], + [ + -73.450333, + 45.567759 + ], + [ + -73.450334, + 45.567755 + ], + [ + -73.450334, + 45.56775 + ], + [ + -73.450335, + 45.567746 + ], + [ + -73.450336, + 45.567741 + ], + [ + -73.450336, + 45.567737 + ], + [ + -73.450337, + 45.567732 + ], + [ + -73.450337, + 45.567728 + ], + [ + -73.450338, + 45.567723 + ], + [ + -73.450339, + 45.567719 + ], + [ + -73.450339, + 45.567714 + ], + [ + -73.45034, + 45.56771 + ], + [ + -73.45034, + 45.567705 + ], + [ + -73.450341, + 45.567701 + ], + [ + -73.450342, + 45.567696 + ], + [ + -73.450342, + 45.567692 + ], + [ + -73.450343, + 45.567687 + ], + [ + -73.450343, + 45.567684 + ], + [ + -73.450343, + 45.567683 + ], + [ + -73.450344, + 45.567678 + ], + [ + -73.450345, + 45.567674 + ], + [ + -73.450345, + 45.567669 + ], + [ + -73.450346, + 45.567665 + ], + [ + -73.450346, + 45.56766 + ], + [ + -73.450347, + 45.567656 + ], + [ + -73.450347, + 45.567651 + ], + [ + -73.450348, + 45.567647 + ], + [ + -73.450348, + 45.567642 + ], + [ + -73.450349, + 45.567638 + ], + [ + -73.450349, + 45.567633 + ], + [ + -73.45035, + 45.567629 + ], + [ + -73.45035, + 45.567624 + ], + [ + -73.450351, + 45.56762 + ], + [ + -73.450351, + 45.567615 + ], + [ + -73.450352, + 45.567611 + ], + [ + -73.450352, + 45.567606 + ], + [ + -73.450353, + 45.567602 + ], + [ + -73.450353, + 45.567597 + ], + [ + -73.450353, + 45.567593 + ], + [ + -73.450354, + 45.567588 + ], + [ + -73.450355, + 45.567584 + ], + [ + -73.450355, + 45.567579 + ], + [ + -73.450355, + 45.567575 + ], + [ + -73.450356, + 45.56757 + ], + [ + -73.450356, + 45.567566 + ], + [ + -73.450357, + 45.567561 + ], + [ + -73.450357, + 45.567557 + ], + [ + -73.450357, + 45.567552 + ], + [ + -73.45036, + 45.567548 + ], + [ + -73.450706, + 45.56757 + ], + [ + -73.451488, + 45.567736 + ], + [ + -73.451687, + 45.567778 + ], + [ + -73.453217, + 45.568102 + ], + [ + -73.453357, + 45.56812 + ], + [ + -73.453474, + 45.568093 + ], + [ + -73.453572, + 45.568062 + ], + [ + -73.453627, + 45.568017 + ], + [ + -73.4543, + 45.567377 + ], + [ + -73.455401, + 45.56633 + ], + [ + -73.455798, + 45.56598 + ], + [ + -73.45622, + 45.565633 + ], + [ + -73.456591, + 45.565337 + ], + [ + -73.456659, + 45.565283 + ], + [ + -73.456935, + 45.565085 + ], + [ + -73.457152, + 45.564936 + ], + [ + -73.457933, + 45.564352 + ], + [ + -73.457944, + 45.564342 + ], + [ + -73.458351, + 45.563996 + ], + [ + -73.458919, + 45.563508 + ], + [ + -73.459333, + 45.563151 + ], + [ + -73.459614, + 45.562904 + ], + [ + -73.459937, + 45.562638 + ], + [ + -73.460365, + 45.562319 + ], + [ + -73.460677, + 45.562085 + ], + [ + -73.460721, + 45.562027 + ], + [ + -73.460736, + 45.561977 + ], + [ + -73.460735, + 45.561923 + ], + [ + -73.460731, + 45.561644 + ], + [ + -73.461416, + 45.561625 + ], + [ + -73.461679, + 45.561618 + ], + [ + -73.461978, + 45.561613 + ], + [ + -73.46207, + 45.561609 + ], + [ + -73.462165, + 45.561609 + ], + [ + -73.46239, + 45.561604 + ], + [ + -73.462462, + 45.561604 + ], + [ + -73.463036, + 45.561587 + ], + [ + -73.463459, + 45.561555 + ], + [ + -73.463851, + 45.561519 + ], + [ + -73.464159, + 45.561474 + ], + [ + -73.464383, + 45.56143 + ], + [ + -73.464635, + 45.561385 + ], + [ + -73.464943, + 45.561331 + ], + [ + -73.465298, + 45.56125 + ], + [ + -73.465606, + 45.561173 + ], + [ + -73.465754, + 45.561132 + ], + [ + -73.465993, + 45.561066 + ], + [ + -73.466384, + 45.560949 + ], + [ + -73.466692, + 45.560841 + ], + [ + -73.46697, + 45.560742 + ], + [ + -73.467261, + 45.560621 + ], + [ + -73.467525, + 45.560508 + ], + [ + -73.467816, + 45.560373 + ], + [ + -73.467979, + 45.560279 + ], + [ + -73.468117, + 45.560229 + ], + [ + -73.468235, + 45.560175 + ], + [ + -73.468563, + 45.559978 + ], + [ + -73.468878, + 45.559766 + ], + [ + -73.468988, + 45.55969 + ], + [ + -73.469567, + 45.559298 + ], + [ + -73.469584, + 45.559286 + ], + [ + -73.469855, + 45.559096 + ], + [ + -73.470074, + 45.558948 + ], + [ + -73.470271, + 45.558867 + ], + [ + -73.470377, + 45.558826 + ], + [ + -73.470556, + 45.558786 + ], + [ + -73.470677, + 45.558768 + ], + [ + -73.47078, + 45.558763 + ], + [ + -73.470896, + 45.558763 + ], + [ + -73.471076, + 45.558777 + ], + [ + -73.471256, + 45.558813 + ], + [ + -73.471446, + 45.558885 + ], + [ + -73.471642, + 45.558966 + ], + [ + -73.472161, + 45.559358 + ], + [ + -73.472928, + 45.559934 + ], + [ + -73.473173, + 45.560121 + ], + [ + -73.474135, + 45.560856 + ], + [ + -73.474224, + 45.560924 + ], + [ + -73.475111, + 45.561594 + ], + [ + -73.475608, + 45.561971 + ], + [ + -73.475818, + 45.56213 + ], + [ + -73.472935, + 45.563954 + ], + [ + -73.472712, + 45.564095 + ], + [ + -73.47094, + 45.565233 + ], + [ + -73.470335, + 45.565624 + ], + [ + -73.470076, + 45.565791 + ], + [ + -73.468341, + 45.566893 + ], + [ + -73.468142, + 45.567019 + ], + [ + -73.466549, + 45.568037 + ], + [ + -73.465336, + 45.568813 + ], + [ + -73.464662, + 45.56924 + ], + [ + -73.464421, + 45.56942 + ], + [ + -73.464344, + 45.569488 + ], + [ + -73.464296, + 45.569568 + ], + [ + -73.463994, + 45.570279 + ], + [ + -73.463957, + 45.570362 + ], + [ + -73.463591, + 45.571183 + ], + [ + -73.463385, + 45.571624 + ], + [ + -73.46338, + 45.571638 + ], + [ + -73.463283, + 45.571903 + ], + [ + -73.463215, + 45.57207 + ], + [ + -73.462953, + 45.572672 + ], + [ + -73.46281, + 45.573 + ], + [ + -73.462729, + 45.573185 + ], + [ + -73.462548, + 45.573595 + ], + [ + -73.462399, + 45.573946 + ], + [ + -73.462373, + 45.574006 + ], + [ + -73.462297, + 45.574179 + ], + [ + -73.462109, + 45.574629 + ], + [ + -73.463036, + 45.574827 + ], + [ + -73.46435, + 45.575107 + ], + [ + -73.465403, + 45.575332 + ], + [ + -73.468543, + 45.576013 + ], + [ + -73.468815, + 45.575707 + ], + [ + -73.471017, + 45.573237 + ], + [ + -73.47172, + 45.572444 + ], + [ + -73.471786, + 45.572369 + ], + [ + -73.473003, + 45.571003 + ], + [ + -73.473129, + 45.570862 + ], + [ + -73.474328, + 45.569528 + ], + [ + -73.474569, + 45.569261 + ], + [ + -73.47645, + 45.567194 + ], + [ + -73.476555, + 45.567079 + ], + [ + -73.478585, + 45.56483 + ], + [ + -73.478778, + 45.564622 + ], + [ + -73.47891, + 45.564479 + ], + [ + -73.479552, + 45.564964 + ], + [ + -73.480326, + 45.56555 + ], + [ + -73.4804, + 45.565606 + ], + [ + -73.480497, + 45.56568 + ], + [ + -73.482497, + 45.567199 + ], + [ + -73.482644, + 45.56731 + ], + [ + -73.483848, + 45.568221 + ], + [ + -73.484053, + 45.568376 + ], + [ + -73.484489, + 45.568691 + ], + [ + -73.484675, + 45.568831 + ], + [ + -73.484833, + 45.568931 + ], + [ + -73.48493, + 45.568993 + ], + [ + -73.485344, + 45.569308 + ], + [ + -73.48556, + 45.569529 + ], + [ + -73.485603, + 45.569573 + ], + [ + -73.485637, + 45.569627 + ], + [ + -73.485662, + 45.569681 + ], + [ + -73.485673, + 45.569726 + ], + [ + -73.485673, + 45.569767 + ], + [ + -73.48567, + 45.569825 + ], + [ + -73.485662, + 45.569906 + ], + [ + -73.485627, + 45.569986 + ], + [ + -73.485317, + 45.570269 + ], + [ + -73.485248, + 45.570333 + ], + [ + -73.484918, + 45.570637 + ], + [ + -73.484877, + 45.570674 + ], + [ + -73.484851, + 45.570698 + ], + [ + -73.484572, + 45.570948 + ], + [ + -73.484207, + 45.571258 + ], + [ + -73.484112, + 45.571335 + ], + [ + -73.483938, + 45.571475 + ], + [ + -73.483827, + 45.571565 + ], + [ + -73.483769, + 45.571618 + ], + [ + -73.483704, + 45.571572 + ], + [ + -73.482973, + 45.571016 + ], + [ + -73.482377, + 45.570563 + ], + [ + -73.481862, + 45.570157 + ] + ] + }, + "id": 216, + "properties": { + "id": "f28bda49-9958-49ae-8036-4cfe19e4cbf8", + "data": { + "gtfs": { + "shape_id": "123_2_R" + }, + "segments": [ + { + "distanceMeters": 631, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 571, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 331, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 542, + "travelTimeSeconds": 101 + }, + { + "distanceMeters": 396, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 558, + "travelTimeSeconds": 104 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 343, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 390, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 436, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 418, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 411, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 405, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 457, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 90, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 371, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 345, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 366, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 472, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 327, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 382, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 428, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 339, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 62 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 354, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 24360, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5993.066645974276, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.88, + "travelTimeWithoutDwellTimesSeconds": 3540, + "operatingTimeWithLayoverTimeSeconds": 3894, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3540, + "operatingSpeedWithLayoverMetersPerSecond": 6.26, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.88 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "acabc807-b0f5-4579-b183-cef0484a7cc2", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "a4d70496-3fc5-40c1-865f-08991bdf0a19", + "3e3330f1-b4ce-44de-ae6a-efb45bab99e2", + "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", + "54cba115-6a75-4b65-8019-b2b5de7a3947", + "05287baf-76e5-4533-8eef-0902c45b01ae", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", + "315b8823-6c3a-493b-9af5-7325cbc48096", + "64ba3e91-9bea-4655-ac42-4f3f1a14955c", + "5a82a520-52b6-417e-972a-f9bf56fb4f33", + "e1825eb4-cef2-4f98-872f-0d169be63859", + "6c122298-4ea6-41ee-91e8-bb29cb41a320", + "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", + "777c347b-29df-4aab-9968-5fdfd62ed61a", + "e1a9e623-935b-47b9-a038-bcbd5a33f95e", + "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", + "146e7d43-1e02-4f93-ac9a-e66dd29d3576", + "a5ca0f69-bb6f-4ef0-aaaa-1498b5ff9d00", + "cc82fbc3-882e-47d6-b5d3-94ced115eefc", + "74d09865-876b-4428-9441-1504fb3f52bd", + "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", + "6beffd5a-a5e7-4808-863a-90505f6172be", + "8746746f-daed-4d54-a90f-724d51454ae1", + "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "ead7d270-6dcb-4161-af5c-95bec6715688", + "c24ac61d-1b21-4358-b45f-8dd4921fc769", + "f1d63efc-c02d-4bb9-828b-ddc2e062546b", + "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", + "1254d090-1d68-478c-a4fc-972cd246c948", + "43f18805-a4b1-4fc6-a1c9-787eb883bcde", + "946a029d-014a-45ca-adcd-e5b8e3927d52", + "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", + "92a52522-0981-490b-a541-e3514efa3ed8", + "e525780c-4598-49cd-b6ff-8b911e2c9385", + "b567475e-2b46-4378-9adc-08b4cc99ad7e", + "b1e0c9f3-01ed-4b74-ab1d-f413050d3022", + "317463e6-5f58-49bb-9db5-183bfb37f7c6", + "c6e39e27-f6a2-4102-b237-b49f8c28ddda", + "52b4b9f4-5da9-4e8b-83a9-0be3d15c1d16", + "3babd96f-413d-4615-8f50-ca3cd1b6b052", + "fafd80b0-6ccf-4eb9-acda-4d93a4bf6736", + "b734f683-dc9f-47d6-a659-53e6bf9d2915", + "072328a7-3894-4360-8b61-c1e252d6cd3a", + "0041d8ec-3bef-4a62-90da-3711f5d509d2", + "1af3fbef-32b4-454e-9289-b300f3b4ddb1", + "b9a0be89-8d55-4f3c-ae5f-e8c732f903dc", + "ff4a3e03-c804-4002-b3d4-f9bc873fc550", + "ab684dee-c058-4d37-851f-c3b6a26b599d", + "8663e9fe-e135-44e5-ac98-e3cb896c6c45", + "26e46bda-74e3-4f09-b95f-139d0b7fb0af", + "bd1fa046-c7cd-4878-bf5b-177b8bb772d6", + "2017e3ec-fe66-4e73-9fb7-567ac5f8a472", + "5573e81d-639b-42bb-a768-ad52df79de56", + "e979db3f-26cd-41d5-8708-f07b7090bef0", + "33622e57-d444-4916-a7fb-d1fa4643eb90", + "ae6e0f03-aee3-4f3b-9a79-98bb90a35a7a", + "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "aff34f6b-5801-4e1a-bc66-3990844e0b4e", + "bd467e22-a975-40b8-9a7a-9801529c3237", + "9ff5cf2b-10c7-49b1-8a66-4ecc0e2b17d7", + "adc9bcc9-8f6d-49e9-b7de-68b4f56033f4", + "28b7e465-7627-4587-950e-0fe104f1bac7", + "83389414-0049-46f6-a04b-557250511611", + "5ed15359-4097-46e8-93c0-1b63029d1081", + "b15716e4-5653-476c-ba57-960f89ea42d5", + "3b263b94-6ffe-4e7f-87fe-8aae005ee725", + "e01682ec-7470-4db5-8b9e-ac8823b81e39", + "5f1f8694-7622-42a2-a482-eb0612df0756", + "7330c47a-92ea-4650-a95f-c6010983e0e2", + "e72de034-4bad-4c42-9f05-b66c808b840c", + "ddf509a6-0c36-4863-8c49-8e568d69fa14", + "b00ce62b-a3af-454b-8eb4-951ab271a0e2", + "6d171932-b1c9-4deb-8ccf-3f09a5ce25f5", + "b5bdde0b-f4ea-4dda-8556-5a9c093cee1e", + "1532a7e6-19bb-482a-881b-1cf8dd8416ed", + "3be8bc80-2551-4dbe-a3e5-58d302899fd6", + "ffb5020e-4dcf-4cee-9d46-621fd641098b", + "a0c45e7b-af06-4ea8-a82a-a658b829e198", + "3fa535d7-2c06-4fc3-ac22-347da96e9a38", + "cbdc89b0-549e-41a3-becc-56a1e8c831ce", + "3e6f6ee6-af44-48b8-9b96-431c0dfdb40c", + "84f7a7c0-b176-49cc-89e3-6756a3c3e4cc", + "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", + "0e909db9-b45c-44fa-bfff-a89f751e1acf", + "1c1d06bf-7e76-429d-9eb4-4a4d4d2842d4", + "24527bed-7ea6-44d6-b6db-18ac609f4938", + "ef393841-8a29-4383-a7b9-545addf087f6" + ], + "stops": [], + "line_id": "5d0af399-f114-40f4-b24c-1e73275b3a37", + "segments": [ + 0, + 39, + 56, + 63, + 68, + 74, + 85, + 87, + 89, + 92, + 94, + 96, + 98, + 100, + 102, + 104, + 106, + 108, + 121, + 124, + 133, + 139, + 144, + 146, + 154, + 156, + 157, + 163, + 169, + 176, + 182, + 188, + 192, + 198, + 200, + 203, + 214, + 220, + 227, + 241, + 245, + 258, + 261, + 264, + 268, + 270, + 278, + 282, + 285, + 296, + 301, + 302, + 309, + 315, + 321, + 323, + 344, + 358, + 366, + 424, + 604, + 644, + 648, + 653, + 655, + 665, + 681, + 696, + 712, + 715, + 717, + 720, + 722, + 724, + 731, + 734, + 738, + 742, + 746, + 749, + 751, + 753, + 755, + 757, + 760, + 765, + 766, + 768, + 775, + 792 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 216, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.481862, + 45.570157 + ], + [ + -73.481822, + 45.570126 + ], + [ + -73.481332, + 45.569766 + ], + [ + -73.481257, + 45.569712 + ], + [ + -73.480428, + 45.569077 + ], + [ + -73.479866, + 45.568647 + ], + [ + -73.479009, + 45.567991 + ], + [ + -73.47867, + 45.567732 + ], + [ + -73.47894, + 45.567404 + ], + [ + -73.479087, + 45.567238 + ], + [ + -73.479946, + 45.566274 + ], + [ + -73.480076, + 45.566265 + ], + [ + -73.480517, + 45.566553 + ], + [ + -73.48115, + 45.567044 + ], + [ + -73.481186, + 45.567156 + ], + [ + -73.481181, + 45.5673 + ], + [ + -73.481322, + 45.567426 + ], + [ + -73.481439, + 45.567515 + ], + [ + -73.481715, + 45.567724 + ], + [ + -73.481834, + 45.567813 + ], + [ + -73.482499, + 45.567399 + ], + [ + -73.482644, + 45.56731 + ], + [ + -73.482793, + 45.567251 + ], + [ + -73.4815, + 45.566273 + ], + [ + -73.480444, + 45.565474 + ], + [ + -73.480073, + 45.565193 + ], + [ + -73.479021, + 45.564398 + ], + [ + -73.47891, + 45.564479 + ], + [ + -73.478585, + 45.56483 + ], + [ + -73.478566, + 45.564851 + ], + [ + -73.47812, + 45.565345 + ], + [ + -73.476681, + 45.566939 + ], + [ + -73.476555, + 45.567079 + ], + [ + -73.474702, + 45.569114 + ], + [ + -73.474569, + 45.569261 + ], + [ + -73.473259, + 45.570718 + ], + [ + -73.473129, + 45.570862 + ], + [ + -73.471786, + 45.572369 + ], + [ + -73.471784, + 45.572371 + ], + [ + -73.471017, + 45.573237 + ], + [ + -73.468663, + 45.575878 + ], + [ + -73.468543, + 45.576013 + ], + [ + -73.465403, + 45.575332 + ], + [ + -73.464209, + 45.575078 + ], + [ + -73.463036, + 45.574827 + ], + [ + -73.462109, + 45.574629 + ], + [ + -73.462297, + 45.574179 + ], + [ + -73.462304, + 45.574165 + ], + [ + -73.462399, + 45.573946 + ], + [ + -73.462548, + 45.573595 + ], + [ + -73.462729, + 45.573185 + ], + [ + -73.462953, + 45.572672 + ], + [ + -73.463215, + 45.57207 + ], + [ + -73.463283, + 45.571903 + ], + [ + -73.463343, + 45.571739 + ], + [ + -73.463385, + 45.571624 + ], + [ + -73.463591, + 45.571183 + ], + [ + -73.463905, + 45.570479 + ], + [ + -73.463994, + 45.570279 + ], + [ + -73.464296, + 45.569568 + ], + [ + -73.464344, + 45.569488 + ], + [ + -73.464421, + 45.56942 + ], + [ + -73.464662, + 45.56924 + ], + [ + -73.465336, + 45.568813 + ], + [ + -73.466184, + 45.568271 + ], + [ + -73.467927, + 45.567156 + ], + [ + -73.468142, + 45.567019 + ], + [ + -73.469932, + 45.565882 + ], + [ + -73.470076, + 45.565791 + ], + [ + -73.47094, + 45.565233 + ], + [ + -73.47255, + 45.564199 + ], + [ + -73.472712, + 45.564095 + ], + [ + -73.475528, + 45.562313 + ], + [ + -73.475818, + 45.56213 + ], + [ + -73.475938, + 45.562049 + ], + [ + -73.47554, + 45.561748 + ], + [ + -73.475231, + 45.561513 + ], + [ + -73.474585, + 45.561026 + ], + [ + -73.474451, + 45.560924 + ], + [ + -73.474349, + 45.560847 + ], + [ + -73.474262, + 45.560781 + ], + [ + -73.473051, + 45.559853 + ], + [ + -73.472951, + 45.559778 + ], + [ + -73.472285, + 45.559277 + ], + [ + -73.471768, + 45.558881 + ], + [ + -73.471028, + 45.558322 + ], + [ + -73.470903, + 45.558228 + ], + [ + -73.470793, + 45.5583 + ], + [ + -73.469991, + 45.558844 + ], + [ + -73.469731, + 45.558997 + ], + [ + -73.469504, + 45.559151 + ], + [ + -73.46926, + 45.559316 + ], + [ + -73.468792, + 45.559631 + ], + [ + -73.468729, + 45.559676 + ], + [ + -73.468547, + 45.559798 + ], + [ + -73.467979, + 45.560279 + ], + [ + -73.467816, + 45.560373 + ], + [ + -73.467525, + 45.560508 + ], + [ + -73.467261, + 45.560621 + ], + [ + -73.46697, + 45.560742 + ], + [ + -73.466692, + 45.560841 + ], + [ + -73.466384, + 45.560949 + ], + [ + -73.466154, + 45.561017 + ], + [ + -73.465993, + 45.561066 + ], + [ + -73.465606, + 45.561173 + ], + [ + -73.465298, + 45.56125 + ], + [ + -73.464943, + 45.561331 + ], + [ + -73.464635, + 45.561385 + ], + [ + -73.464383, + 45.56143 + ], + [ + -73.464342, + 45.561416 + ], + [ + -73.46391, + 45.56142 + ], + [ + -73.463676, + 45.561411 + ], + [ + -73.463469, + 45.561416 + ], + [ + -73.463235, + 45.561434 + ], + [ + -73.463014, + 45.561456 + ], + [ + -73.462671, + 45.561478 + ], + [ + -73.462516, + 45.561483 + ], + [ + -73.462171, + 45.561492 + ], + [ + -73.461975, + 45.561496 + ], + [ + -73.460725, + 45.561527 + ], + [ + -73.460731, + 45.561644 + ], + [ + -73.460735, + 45.561923 + ], + [ + -73.460736, + 45.561977 + ], + [ + -73.460721, + 45.562027 + ], + [ + -73.460677, + 45.562085 + ], + [ + -73.460365, + 45.562319 + ], + [ + -73.459937, + 45.562638 + ], + [ + -73.459846, + 45.562713 + ], + [ + -73.459614, + 45.562904 + ], + [ + -73.459333, + 45.563151 + ], + [ + -73.459051, + 45.563394 + ], + [ + -73.458351, + 45.563996 + ], + [ + -73.457933, + 45.564352 + ], + [ + -73.457152, + 45.564936 + ], + [ + -73.457095, + 45.564976 + ], + [ + -73.456935, + 45.565085 + ], + [ + -73.456659, + 45.565283 + ], + [ + -73.45622, + 45.565633 + ], + [ + -73.455798, + 45.56598 + ], + [ + -73.455597, + 45.566157 + ], + [ + -73.455401, + 45.56633 + ], + [ + -73.45415, + 45.56752 + ], + [ + -73.453627, + 45.568017 + ], + [ + -73.453572, + 45.568062 + ], + [ + -73.453474, + 45.568093 + ], + [ + -73.453357, + 45.56812 + ], + [ + -73.453217, + 45.568102 + ], + [ + -73.451687, + 45.567778 + ], + [ + -73.451488, + 45.567736 + ], + [ + -73.450706, + 45.56757 + ], + [ + -73.45059, + 45.567563 + ], + [ + -73.45036, + 45.567548 + ], + [ + -73.450115, + 45.567548 + ], + [ + -73.450114, + 45.567557 + ], + [ + -73.450113, + 45.567561 + ], + [ + -73.450112, + 45.56757 + ], + [ + -73.450111, + 45.567575 + ], + [ + -73.45011, + 45.567584 + ], + [ + -73.450109, + 45.567593 + ], + [ + -73.450108, + 45.567597 + ], + [ + -73.450107, + 45.567606 + ], + [ + -73.450106, + 45.567611 + ], + [ + -73.450105, + 45.56762 + ], + [ + -73.450104, + 45.567629 + ], + [ + -73.450103, + 45.567633 + ], + [ + -73.450102, + 45.567642 + ], + [ + -73.450101, + 45.567647 + ], + [ + -73.4501, + 45.567656 + ], + [ + -73.450099, + 45.56766 + ], + [ + -73.450098, + 45.567669 + ], + [ + -73.450097, + 45.567678 + ], + [ + -73.450096, + 45.567683 + ], + [ + -73.450095, + 45.567691 + ], + [ + -73.450093, + 45.567696 + ], + [ + -73.450092, + 45.567705 + ], + [ + -73.450091, + 45.567714 + ], + [ + -73.45009, + 45.567718 + ], + [ + -73.450089, + 45.567727 + ], + [ + -73.450088, + 45.567732 + ], + [ + -73.450087, + 45.567741 + ], + [ + -73.450085, + 45.56775 + ], + [ + -73.450084, + 45.567754 + ], + [ + -73.450083, + 45.567763 + ], + [ + -73.450082, + 45.567768 + ], + [ + -73.450081, + 45.567777 + ], + [ + -73.450079, + 45.567781 + ], + [ + -73.450078, + 45.56779 + ], + [ + -73.450077, + 45.567799 + ], + [ + -73.450075, + 45.567804 + ], + [ + -73.450074, + 45.567813 + ], + [ + -73.450073, + 45.567817 + ], + [ + -73.450071, + 45.567826 + ], + [ + -73.45007, + 45.567835 + ], + [ + -73.450069, + 45.56784 + ], + [ + -73.450067, + 45.567849 + ], + [ + -73.450066, + 45.567853 + ], + [ + -73.450065, + 45.567862 + ], + [ + -73.450063, + 45.567871 + ], + [ + -73.450062, + 45.567876 + ], + [ + -73.45006, + 45.567885 + ], + [ + -73.450059, + 45.567889 + ], + [ + -73.450058, + 45.567898 + ], + [ + -73.450056, + 45.567903 + ], + [ + -73.450055, + 45.567912 + ], + [ + -73.450054, + 45.567921 + ], + [ + -73.450052, + 45.567925 + ], + [ + -73.450051, + 45.567934 + ], + [ + -73.450049, + 45.567939 + ], + [ + -73.450048, + 45.567948 + ], + [ + -73.450046, + 45.567957 + ], + [ + -73.450045, + 45.567961 + ], + [ + -73.450043, + 45.56797 + ], + [ + -73.450042, + 45.567975 + ], + [ + -73.45004, + 45.567984 + ], + [ + -73.450039, + 45.567988 + ], + [ + -73.450037, + 45.567997 + ], + [ + -73.450036, + 45.568006 + ], + [ + -73.450034, + 45.568011 + ], + [ + -73.450032, + 45.56802 + ], + [ + -73.450031, + 45.568024 + ], + [ + -73.450029, + 45.568033 + ], + [ + -73.450028, + 45.568042 + ], + [ + -73.450026, + 45.568047 + ], + [ + -73.450024, + 45.568056 + ], + [ + -73.450023, + 45.56806 + ], + [ + -73.450021, + 45.568069 + ], + [ + -73.450019, + 45.568074 + ], + [ + -73.450017, + 45.568083 + ], + [ + -73.450016, + 45.568092 + ], + [ + -73.450014, + 45.568096 + ], + [ + -73.450013, + 45.568105 + ], + [ + -73.450011, + 45.56811 + ], + [ + -73.450009, + 45.568119 + ], + [ + -73.450007, + 45.568123 + ], + [ + -73.450006, + 45.568132 + ], + [ + -73.450004, + 45.568141 + ], + [ + -73.450002, + 45.568146 + ], + [ + -73.45, + 45.568155 + ], + [ + -73.449999, + 45.568159 + ], + [ + -73.449997, + 45.568168 + ], + [ + -73.449995, + 45.568173 + ], + [ + -73.449993, + 45.568182 + ], + [ + -73.449991, + 45.568191 + ], + [ + -73.449989, + 45.568195 + ], + [ + -73.449988, + 45.568204 + ], + [ + -73.449986, + 45.568209 + ], + [ + -73.449984, + 45.568218 + ], + [ + -73.449982, + 45.568227 + ], + [ + -73.44998, + 45.568231 + ], + [ + -73.449978, + 45.56824 + ], + [ + -73.449976, + 45.568245 + ], + [ + -73.449974, + 45.568254 + ], + [ + -73.449972, + 45.568258 + ], + [ + -73.44997, + 45.568267 + ], + [ + -73.449968, + 45.568276 + ], + [ + -73.449967, + 45.568281 + ], + [ + -73.449965, + 45.56829 + ], + [ + -73.449963, + 45.568294 + ], + [ + -73.449961, + 45.568303 + ], + [ + -73.449959, + 45.568308 + ], + [ + -73.449957, + 45.568317 + ], + [ + -73.449955, + 45.568326 + ], + [ + -73.449953, + 45.56833 + ], + [ + -73.449951, + 45.568339 + ], + [ + -73.449949, + 45.568344 + ], + [ + -73.449946, + 45.568353 + ], + [ + -73.449944, + 45.568357 + ], + [ + -73.449942, + 45.568366 + ], + [ + -73.44994, + 45.568371 + ], + [ + -73.449938, + 45.56838 + ], + [ + -73.449936, + 45.568389 + ], + [ + -73.449934, + 45.568393 + ], + [ + -73.449932, + 45.568402 + ], + [ + -73.44993, + 45.568407 + ], + [ + -73.449927, + 45.568416 + ], + [ + -73.449925, + 45.56842 + ], + [ + -73.449923, + 45.568429 + ], + [ + -73.449921, + 45.568438 + ], + [ + -73.449919, + 45.568443 + ], + [ + -73.449917, + 45.568452 + ], + [ + -73.449915, + 45.568456 + ], + [ + -73.449912, + 45.568465 + ], + [ + -73.44991, + 45.56847 + ], + [ + -73.449908, + 45.568479 + ], + [ + -73.449905, + 45.568488 + ], + [ + -73.449903, + 45.568492 + ], + [ + -73.449901, + 45.568501 + ], + [ + -73.449899, + 45.568506 + ], + [ + -73.449897, + 45.568515 + ], + [ + -73.449894, + 45.568519 + ], + [ + -73.449892, + 45.568528 + ], + [ + -73.449889, + 45.568533 + ], + [ + -73.449887, + 45.568542 + ], + [ + -73.449885, + 45.568551 + ], + [ + -73.449883, + 45.568555 + ], + [ + -73.44988, + 45.568564 + ], + [ + -73.449878, + 45.568569 + ], + [ + -73.449875, + 45.568578 + ], + [ + -73.449873, + 45.568582 + ], + [ + -73.44987, + 45.568591 + ], + [ + -73.449868, + 45.568596 + ], + [ + -73.449866, + 45.568605 + ], + [ + -73.449863, + 45.568614 + ], + [ + -73.449861, + 45.568618 + ], + [ + -73.449856, + 45.568632 + ], + [ + -73.449825, + 45.568708 + ], + [ + -73.449762, + 45.568861 + ], + [ + -73.449744, + 45.568903 + ], + [ + -73.44963, + 45.569168 + ], + [ + -73.449277, + 45.569995 + ], + [ + -73.449112, + 45.570242 + ], + [ + -73.449055, + 45.570278 + ], + [ + -73.448989, + 45.570323 + ], + [ + -73.448955, + 45.570337 + ], + [ + -73.448919, + 45.57035 + ], + [ + -73.448874, + 45.570359 + ], + [ + -73.44882, + 45.570368 + ], + [ + -73.448494, + 45.570395 + ], + [ + -73.448177, + 45.570336 + ], + [ + -73.447945, + 45.570309 + ], + [ + -73.447268, + 45.570177 + ], + [ + -73.4464, + 45.570007 + ], + [ + -73.446311, + 45.569989 + ], + [ + -73.446194, + 45.569957 + ], + [ + -73.446079, + 45.569912 + ], + [ + -73.44598, + 45.569845 + ], + [ + -73.445832, + 45.569723 + ], + [ + -73.445351, + 45.56935 + ], + [ + -73.445158, + 45.569201 + ], + [ + -73.444719, + 45.568877 + ], + [ + -73.444688, + 45.568854 + ], + [ + -73.444286, + 45.568557 + ], + [ + -73.443979, + 45.568764 + ], + [ + -73.443832, + 45.568863 + ], + [ + -73.443704, + 45.568948 + ], + [ + -73.443677, + 45.568966 + ], + [ + -73.443538, + 45.569043 + ], + [ + -73.443322, + 45.569133 + ], + [ + -73.443045, + 45.5692 + ], + [ + -73.442527, + 45.569294 + ], + [ + -73.442212, + 45.569352 + ], + [ + -73.441998, + 45.569399 + ], + [ + -73.441923, + 45.569415 + ], + [ + -73.441739, + 45.569478 + ], + [ + -73.441592, + 45.56955 + ], + [ + -73.441481, + 45.569618 + ], + [ + -73.441372, + 45.56968 + ], + [ + -73.441093, + 45.56986 + ], + [ + -73.440888, + 45.569991 + ], + [ + -73.440655, + 45.570126 + ], + [ + -73.440467, + 45.570242 + ], + [ + -73.440242, + 45.570319 + ], + [ + -73.440086, + 45.57035 + ], + [ + -73.439895, + 45.570355 + ], + [ + -73.439704, + 45.570327 + ], + [ + -73.439504, + 45.570287 + ], + [ + -73.439161, + 45.57021 + ], + [ + -73.438658, + 45.570103 + ], + [ + -73.435124, + 45.569346 + ], + [ + -73.434565, + 45.569227 + ], + [ + -73.43204, + 45.568685 + ], + [ + -73.431098, + 45.568523 + ], + [ + -73.430715, + 45.56846 + ], + [ + -73.429654, + 45.568351 + ], + [ + -73.429299, + 45.568326 + ], + [ + -73.429087, + 45.56831 + ], + [ + -73.428869, + 45.568301 + ], + [ + -73.42857, + 45.568283 + ], + [ + -73.428157, + 45.568269 + ], + [ + -73.42731, + 45.568269 + ], + [ + -73.427224, + 45.56827 + ], + [ + -73.427035, + 45.568273 + ], + [ + -73.426718, + 45.568291 + ], + [ + -73.426353, + 45.568309 + ], + [ + -73.426077, + 45.568322 + ], + [ + -73.425785, + 45.56834 + ], + [ + -73.425418, + 45.568357 + ], + [ + -73.424113, + 45.568433 + ], + [ + -73.423194, + 45.568484 + ], + [ + -73.421237, + 45.568594 + ], + [ + -73.420049, + 45.56866 + ], + [ + -73.418871, + 45.568717 + ], + [ + -73.418371, + 45.56874 + ], + [ + -73.418293, + 45.568738 + ], + [ + -73.418086, + 45.568735 + ], + [ + -73.417818, + 45.568703 + ], + [ + -73.417552, + 45.568658 + ], + [ + -73.417323, + 45.56859 + ], + [ + -73.417173, + 45.568543 + ], + [ + -73.417083, + 45.568514 + ], + [ + -73.416867, + 45.568415 + ], + [ + -73.416624, + 45.568288 + ], + [ + -73.416469, + 45.568185 + ], + [ + -73.416326, + 45.568081 + ], + [ + -73.416163, + 45.567924 + ], + [ + -73.415771, + 45.567553 + ], + [ + -73.415619, + 45.56741 + ], + [ + -73.415452, + 45.567253 + ], + [ + -73.417438, + 45.566153 + ], + [ + -73.419551, + 45.564984 + ], + [ + -73.420284, + 45.564575 + ], + [ + -73.420525, + 45.56444 + ], + [ + -73.420894, + 45.564251 + ], + [ + -73.42122, + 45.564089 + ], + [ + -73.421549, + 45.563919 + ], + [ + -73.422142, + 45.563568 + ], + [ + -73.423897, + 45.562597 + ], + [ + -73.424088, + 45.562481 + ], + [ + -73.424434, + 45.562242 + ], + [ + -73.424923, + 45.561876 + ], + [ + -73.425154, + 45.561703 + ], + [ + -73.425956, + 45.561002 + ], + [ + -73.427334, + 45.559799 + ], + [ + -73.427837, + 45.559361 + ], + [ + -73.42839, + 45.558857 + ], + [ + -73.428867, + 45.558437 + ], + [ + -73.429028, + 45.558295 + ], + [ + -73.429313, + 45.558012 + ], + [ + -73.430708, + 45.556663 + ], + [ + -73.430877, + 45.556495 + ], + [ + -73.431306, + 45.556069 + ], + [ + -73.431717, + 45.555725 + ], + [ + -73.431789, + 45.555665 + ], + [ + -73.432223, + 45.555346 + ], + [ + -73.43246, + 45.555188 + ], + [ + -73.432543, + 45.555134 + ], + [ + -73.432999, + 45.554887 + ], + [ + -73.434256, + 45.554213 + ], + [ + -73.434483, + 45.554083 + ], + [ + -73.434649, + 45.553975 + ], + [ + -73.434849, + 45.553835 + ], + [ + -73.435021, + 45.553701 + ], + [ + -73.435159, + 45.553588 + ], + [ + -73.435328, + 45.55344 + ], + [ + -73.435547, + 45.553237 + ], + [ + -73.435846, + 45.552946 + ], + [ + -73.436155, + 45.552644 + ], + [ + -73.437097, + 45.551709 + ], + [ + -73.437356, + 45.551461 + ], + [ + -73.437494, + 45.551342 + ], + [ + -73.437695, + 45.551168 + ], + [ + -73.438055, + 45.550908 + ], + [ + -73.438308, + 45.55075 + ], + [ + -73.438588, + 45.550594 + ], + [ + -73.4388, + 45.550495 + ], + [ + -73.438978, + 45.550409 + ], + [ + -73.439152, + 45.550343 + ], + [ + -73.43928, + 45.550298 + ], + [ + -73.439643, + 45.550168 + ], + [ + -73.440159, + 45.550002 + ], + [ + -73.440332, + 45.549946 + ], + [ + -73.441022, + 45.549723 + ], + [ + -73.441088, + 45.549701 + ], + [ + -73.441826, + 45.549464 + ], + [ + -73.441907, + 45.549437 + ], + [ + -73.441912, + 45.549436 + ], + [ + -73.442568, + 45.549225 + ], + [ + -73.442788, + 45.549153 + ], + [ + -73.443304, + 45.548985 + ], + [ + -73.44402, + 45.548753 + ], + [ + -73.444376, + 45.548638 + ], + [ + -73.444762, + 45.548514 + ], + [ + -73.445417, + 45.548304 + ], + [ + -73.446657, + 45.547903 + ], + [ + -73.447022, + 45.547781 + ], + [ + -73.447424, + 45.547647 + ], + [ + -73.447629, + 45.547579 + ], + [ + -73.447947, + 45.54746 + ], + [ + -73.448002, + 45.54744 + ], + [ + -73.448339, + 45.547305 + ], + [ + -73.448543, + 45.547215 + ], + [ + -73.448831, + 45.547062 + ], + [ + -73.449103, + 45.546914 + ], + [ + -73.449271, + 45.546806 + ], + [ + -73.449736, + 45.546505 + ], + [ + -73.449968, + 45.546338 + ], + [ + -73.450536, + 45.545946 + ], + [ + -73.4506, + 45.545902 + ], + [ + -73.451253, + 45.545453 + ], + [ + -73.452347, + 45.544686 + ], + [ + -73.452491, + 45.544585 + ], + [ + -73.453733, + 45.543739 + ], + [ + -73.453772, + 45.543712 + ], + [ + -73.454376, + 45.543288 + ], + [ + -73.454766, + 45.543014 + ], + [ + -73.455166, + 45.542732 + ], + [ + -73.455282, + 45.54266 + ], + [ + -73.455702, + 45.542678 + ], + [ + -73.455971, + 45.542683 + ], + [ + -73.456034, + 45.542341 + ], + [ + -73.456078, + 45.542099 + ], + [ + -73.456127, + 45.541828 + ], + [ + -73.45622, + 45.541171 + ], + [ + -73.456334, + 45.540453 + ], + [ + -73.456345, + 45.540384 + ], + [ + -73.456347, + 45.540366 + ], + [ + -73.456509, + 45.539394 + ], + [ + -73.456509, + 45.539219 + ], + [ + -73.456656, + 45.5384 + ], + [ + -73.456667, + 45.538348 + ], + [ + -73.456669, + 45.538338 + ], + [ + -73.456674, + 45.53831 + ], + [ + -73.456716, + 45.53818 + ], + [ + -73.456753, + 45.538063 + ], + [ + -73.456906, + 45.537595 + ], + [ + -73.457034, + 45.537289 + ], + [ + -73.457312, + 45.536745 + ], + [ + -73.457525, + 45.536412 + ], + [ + -73.457668, + 45.536194 + ], + [ + -73.457717, + 45.536119 + ], + [ + -73.457866, + 45.535926 + ], + [ + -73.458063, + 45.535706 + ], + [ + -73.458203, + 45.535555 + ], + [ + -73.45852, + 45.535215 + ], + [ + -73.45895, + 45.534833 + ], + [ + -73.459019, + 45.534778 + ], + [ + -73.459195, + 45.53464 + ], + [ + -73.460968, + 45.533133 + ], + [ + -73.461517, + 45.532591 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.462106, + 45.531887 + ], + [ + -73.462411, + 45.531442 + ], + [ + -73.462841, + 45.530643 + ], + [ + -73.462938, + 45.530461 + ], + [ + -73.463969, + 45.52856 + ], + [ + -73.465093, + 45.526486 + ], + [ + -73.465154, + 45.526372 + ], + [ + -73.465286, + 45.525972 + ], + [ + -73.46533, + 45.525747 + ], + [ + -73.465344, + 45.525549 + ], + [ + -73.465322, + 45.525364 + ], + [ + -73.465132, + 45.524523 + ], + [ + -73.465111, + 45.524431 + ], + [ + -73.464907, + 45.523532 + ], + [ + -73.464877, + 45.523398 + ], + [ + -73.464763, + 45.522917 + ], + [ + -73.464683, + 45.522618 + ], + [ + -73.464607, + 45.522332 + ], + [ + -73.464576, + 45.522215 + ], + [ + -73.464435, + 45.521608 + ], + [ + -73.464421, + 45.521551 + ], + [ + -73.4643, + 45.521015 + ], + [ + -73.464225, + 45.52069 + ], + [ + -73.464093, + 45.520082 + ], + [ + -73.464063, + 45.519947 + ], + [ + -73.463992, + 45.519645 + ], + [ + -73.463946, + 45.519416 + ], + [ + -73.463946, + 45.519259 + ], + [ + -73.463946, + 45.519088 + ], + [ + -73.463972, + 45.518953 + ], + [ + -73.464012, + 45.51884 + ], + [ + -73.46406, + 45.518732 + ], + [ + -73.464166, + 45.518557 + ], + [ + -73.464483, + 45.518161 + ], + [ + -73.464818, + 45.517676 + ], + [ + -73.464941, + 45.517498 + ], + [ + -73.465811, + 45.516258 + ], + [ + -73.466122, + 45.515843 + ], + [ + -73.466232, + 45.515695 + ], + [ + -73.466795, + 45.514943 + ], + [ + -73.467732, + 45.513676 + ], + [ + -73.467821, + 45.513555 + ], + [ + -73.468294, + 45.512911 + ], + [ + -73.468707, + 45.51235 + ], + [ + -73.468744, + 45.5123 + ], + [ + -73.469443, + 45.511193 + ], + [ + -73.469555, + 45.511034 + ], + [ + -73.469846, + 45.510622 + ], + [ + -73.470521, + 45.509701 + ], + [ + -73.471066, + 45.508957 + ], + [ + -73.471144, + 45.508849 + ], + [ + -73.471389, + 45.508932 + ], + [ + -73.472138, + 45.509183 + ], + [ + -73.473956, + 45.509779 + ], + [ + -73.475241, + 45.5102 + ], + [ + -73.475433, + 45.510263 + ], + [ + -73.478285, + 45.511194 + ], + [ + -73.478511, + 45.511267 + ], + [ + -73.481436, + 45.512219 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.484519, + 45.513219 + ], + [ + -73.484663, + 45.513266 + ], + [ + -73.487611, + 45.514226 + ], + [ + -73.48773, + 45.514265 + ], + [ + -73.490691, + 45.51523 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.493759, + 45.516232 + ], + [ + -73.493881, + 45.516272 + ], + [ + -73.497599, + 45.517475 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.49882, + 45.517869 + ], + [ + -73.499883, + 45.51823 + ], + [ + -73.499972, + 45.518261 + ], + [ + -73.502095, + 45.518945 + ], + [ + -73.502235, + 45.51899 + ], + [ + -73.505419, + 45.52003 + ], + [ + -73.505525, + 45.520065 + ], + [ + -73.507538, + 45.520714 + ], + [ + -73.507813, + 45.520803 + ], + [ + -73.507881, + 45.520866 + ], + [ + -73.508099, + 45.520938 + ], + [ + -73.508258, + 45.520974 + ], + [ + -73.50837, + 45.520987 + ], + [ + -73.508461, + 45.520983 + ], + [ + -73.508562, + 45.520983 + ], + [ + -73.50866, + 45.520978 + ], + [ + -73.508615, + 45.520897 + ], + [ + -73.508346, + 45.520377 + ], + [ + -73.508346, + 45.520375 + ], + [ + -73.507805, + 45.519327 + ], + [ + -73.507767, + 45.519257 + ], + [ + -73.507088, + 45.517986 + ], + [ + -73.50664, + 45.517136 + ], + [ + -73.506515, + 45.516915 + ], + [ + -73.506521, + 45.516821 + ], + [ + -73.506537, + 45.516798 + ], + [ + -73.506565, + 45.51678 + ], + [ + -73.506617, + 45.516753 + ], + [ + -73.506766, + 45.516758 + ], + [ + -73.507252, + 45.516915 + ], + [ + -73.509783, + 45.517734 + ], + [ + -73.512173, + 45.518508 + ], + [ + -73.513539, + 45.518952 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.514996, + 45.51942 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.51889, + 45.520628 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520267, + 45.521193 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520861, + 45.524416 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.520811, + 45.523427 + ] + ] + }, + "id": 217, + "properties": { + "id": "0b29bfa4-1636-4228-9a74-23349a7ee70c", + "data": { + "gtfs": { + "shape_id": "123_1_A" + }, + "segments": [ + { + "distanceMeters": 60, + "travelTimeSeconds": 6 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 83, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 523, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 460, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 371, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 558, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 444, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 469, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 471, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 310, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 360, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 312, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 455, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 330, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 1025, + "travelTimeSeconds": 203 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 846, + "travelTimeSeconds": 168 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 348, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 25027, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5993.066645974276, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.19, + "travelTimeWithoutDwellTimesSeconds": 3480, + "operatingTimeWithLayoverTimeSeconds": 3828, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3480, + "operatingSpeedWithLayoverMetersPerSecond": 6.54, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.19 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "ef393841-8a29-4383-a7b9-545addf087f6", + "ef393841-8a29-4383-a7b9-545addf087f6", + "281f350b-faae-4302-bcde-cc7831951682", + "59b13438-eb20-4204-b1fd-fe2ed2a80258", + "bc413ffa-dc65-4fc7-93f0-58dddebb3024", + "ce65fcd5-5449-4ede-b81b-9d2cd21731a7", + "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", + "3e6f6ee6-af44-48b8-9b96-431c0dfdb40c", + "cbdc89b0-549e-41a3-becc-56a1e8c831ce", + "3fa535d7-2c06-4fc3-ac22-347da96e9a38", + "a0c45e7b-af06-4ea8-a82a-a658b829e198", + "ffb5020e-4dcf-4cee-9d46-621fd641098b", + "3be8bc80-2551-4dbe-a3e5-58d302899fd6", + "1532a7e6-19bb-482a-881b-1cf8dd8416ed", + "b5bdde0b-f4ea-4dda-8556-5a9c093cee1e", + "b00ce62b-a3af-454b-8eb4-951ab271a0e2", + "ddf509a6-0c36-4863-8c49-8e568d69fa14", + "e72de034-4bad-4c42-9f05-b66c808b840c", + "7330c47a-92ea-4650-a95f-c6010983e0e2", + "5f1f8694-7622-42a2-a482-eb0612df0756", + "e01682ec-7470-4db5-8b9e-ac8823b81e39", + "31d31773-be59-456e-bce3-a8671d3f0ded", + "b15716e4-5653-476c-ba57-960f89ea42d5", + "b070e296-b686-4ba3-bf68-049018a7af21", + "83389414-0049-46f6-a04b-557250511611", + "2b894d51-a427-4850-8fae-89ed3f29388d", + "bd99fd0e-cbdd-4d16-af5c-609bbef87ee4", + "adc9bcc9-8f6d-49e9-b7de-68b4f56033f4", + "bd467e22-a975-40b8-9a7a-9801529c3237", + "6150abd1-c8f6-4045-8e3e-f50bbef79a53", + "aff34f6b-5801-4e1a-bc66-3990844e0b4e", + "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", + "33622e57-d444-4916-a7fb-d1fa4643eb90", + "e979db3f-26cd-41d5-8708-f07b7090bef0", + "5573e81d-639b-42bb-a768-ad52df79de56", + "2017e3ec-fe66-4e73-9fb7-567ac5f8a472", + "bd1fa046-c7cd-4878-bf5b-177b8bb772d6", + "26e46bda-74e3-4f09-b95f-139d0b7fb0af", + "8663e9fe-e135-44e5-ac98-e3cb896c6c45", + "ab684dee-c058-4d37-851f-c3b6a26b599d", + "ff4a3e03-c804-4002-b3d4-f9bc873fc550", + "b9a0be89-8d55-4f3c-ae5f-e8c732f903dc", + "1af3fbef-32b4-454e-9289-b300f3b4ddb1", + "0041d8ec-3bef-4a62-90da-3711f5d509d2", + "0d73df1c-f948-4c1f-ba36-487a91089d51", + "b734f683-dc9f-47d6-a659-53e6bf9d2915", + "fafd80b0-6ccf-4eb9-acda-4d93a4bf6736", + "3babd96f-413d-4615-8f50-ca3cd1b6b052", + "52b4b9f4-5da9-4e8b-83a9-0be3d15c1d16", + "c6e39e27-f6a2-4102-b237-b49f8c28ddda", + "317463e6-5f58-49bb-9db5-183bfb37f7c6", + "b1e0c9f3-01ed-4b74-ab1d-f413050d3022", + "b567475e-2b46-4378-9adc-08b4cc99ad7e", + "e525780c-4598-49cd-b6ff-8b911e2c9385", + "92a52522-0981-490b-a541-e3514efa3ed8", + "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", + "946a029d-014a-45ca-adcd-e5b8e3927d52", + "43f18805-a4b1-4fc6-a1c9-787eb883bcde", + "e4670d3f-1aa4-4e69-ac7c-0f6fbe1ebddb", + "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", + "c77b3ec3-667e-4b8e-a8ba-613daafce3d4", + "8a5c9ba1-a597-4c12-90c9-b58f8d4f8d95", + "ead7d270-6dcb-4161-af5c-95bec6715688", + "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "8746746f-daed-4d54-a90f-724d51454ae1", + "47143cf4-4cce-4e8f-bfed-223c71fcc466", + "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", + "74d09865-876b-4428-9441-1504fb3f52bd", + "334bd241-267c-4081-968b-fd0340fabe8f", + "146e7d43-1e02-4f93-ac9a-e66dd29d3576", + "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", + "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", + "f9f88325-b670-4d47-91fa-edb372992bbc", + "e1a9e623-935b-47b9-a038-bcbd5a33f95e", + "ba348c95-9f07-48ca-a139-5d5c2dd83350", + "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", + "6c122298-4ea6-41ee-91e8-bb29cb41a320", + "e1825eb4-cef2-4f98-872f-0d169be63859", + "5a82a520-52b6-417e-972a-f9bf56fb4f33", + "64ba3e91-9bea-4655-ac42-4f3f1a14955c", + "315b8823-6c3a-493b-9af5-7325cbc48096", + "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "05287baf-76e5-4533-8eef-0902c45b01ae", + "54cba115-6a75-4b65-8019-b2b5de7a3947", + "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", + "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "9da92501-0f80-4a3e-b324-83bbfa32d05c", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "acabc807-b0f5-4579-b183-cef0484a7cc2" + ], + "stops": [], + "line_id": "5d0af399-f114-40f4-b24c-1e73275b3a37", + "segments": [ + 0, + 2, + 5, + 6, + 9, + 18, + 20, + 29, + 31, + 33, + 35, + 38, + 40, + 43, + 47, + 54, + 57, + 64, + 65, + 67, + 70, + 72, + 78, + 90, + 102, + 116, + 127, + 130, + 134, + 139, + 141, + 150, + 308, + 320, + 327, + 334, + 357, + 358, + 364, + 370, + 378, + 379, + 383, + 395, + 398, + 400, + 409, + 412, + 415, + 419, + 421, + 435, + 439, + 454, + 460, + 465, + 476, + 479, + 481, + 484, + 493, + 500, + 508, + 515, + 518, + 523, + 525, + 526, + 532, + 537, + 544, + 555, + 558, + 561, + 564, + 572, + 575, + 577, + 579, + 581, + 583, + 585, + 587, + 589, + 592, + 594, + 596, + 598, + 608, + 623, + 628, + 635 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 217, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521447, + 45.524278 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522496, + 45.524328 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519435, + 45.523458 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517465, + 45.528168 + ], + [ + -73.517458, + 45.528249 + ], + [ + -73.517471, + 45.528385 + ], + [ + -73.517504, + 45.528565 + ], + [ + -73.517516, + 45.528652 + ], + [ + -73.517553, + 45.52877 + ], + [ + -73.517635, + 45.529002 + ], + [ + -73.517693, + 45.529249 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518464, + 45.531394 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518435, + 45.533882 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.51038, + 45.541043 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.502898, + 45.548658 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.499756, + 45.550039 + ], + [ + -73.499636, + 45.550208 + ], + [ + -73.499564, + 45.550308 + ], + [ + -73.499518, + 45.550373 + ], + [ + -73.499348, + 45.550589 + ], + [ + -73.499249, + 45.550718 + ], + [ + -73.499149, + 45.550849 + ], + [ + -73.49909, + 45.551 + ], + [ + -73.499052, + 45.551292 + ], + [ + -73.498947, + 45.552086 + ], + [ + -73.49893, + 45.552473 + ], + [ + -73.498889, + 45.552801 + ], + [ + -73.498863, + 45.552968 + ], + [ + -73.498848, + 45.553058 + ], + [ + -73.498813, + 45.553251 + ], + [ + -73.498782, + 45.553386 + ], + [ + -73.498737, + 45.553535 + ], + [ + -73.498669, + 45.55371 + ], + [ + -73.498603, + 45.553836 + ], + [ + -73.498557, + 45.553912 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498164, + 45.554478 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.496101, + 45.55685 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.494564, + 45.558541 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.493666, + 45.5596 + ] + ] + }, + "id": 218, + "properties": { + "id": "ecd7b19b-ea80-4f91-803a-da3f0d5d8427", + "data": { + "gtfs": { + "shape_id": "125_1_R" + }, + "segments": [ + { + "distanceMeters": 4729, + "travelTimeSeconds": 788 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 23 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5398, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4498.942074032365, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6, + "travelTimeWithoutDwellTimesSeconds": 900, + "operatingTimeWithLayoverTimeSeconds": 1080, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 900, + "operatingSpeedWithLayoverMetersPerSecond": 5, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6 + }, + "mode": "bus", + "name": "RTL", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "c879a803-d58b-4487-8291-391e9b516d3c", + "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", + "261a087b-9323-4696-9046-146a299af43d", + "0bcb0e97-db40-44bb-afe9-f6212a5b6387" + ], + "stops": [], + "line_id": "e6d6eda7-d30b-4e0a-9442-c43a8742a7c4", + "segments": [ + 0, + 140, + 142, + 145 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 218, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.493016, + 45.560504 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.492045, + 45.561182 + ], + [ + -73.489863, + 45.559482 + ], + [ + -73.489762, + 45.55941 + ], + [ + -73.489659, + 45.55945 + ], + [ + -73.489132, + 45.559774 + ], + [ + -73.488626, + 45.560076 + ], + [ + -73.488514, + 45.560143 + ], + [ + -73.488663, + 45.560261 + ], + [ + -73.489224, + 45.560705 + ], + [ + -73.489259, + 45.560732 + ], + [ + -73.491489, + 45.562495 + ], + [ + -73.491509, + 45.562511 + ], + [ + -73.491545, + 45.562543 + ], + [ + -73.491585, + 45.562559 + ], + [ + -73.4917, + 45.562606 + ], + [ + -73.491799, + 45.56246 + ], + [ + -73.491908, + 45.562298 + ], + [ + -73.49207, + 45.56203 + ], + [ + -73.492185, + 45.561871 + ], + [ + -73.492369, + 45.561588 + ], + [ + -73.492372, + 45.561584 + ], + [ + -73.492391, + 45.561555 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.494695, + 45.558392 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498677, + 45.553944 + ], + [ + -73.498726, + 45.553872 + ], + [ + -73.498813, + 45.553714 + ], + [ + -73.498895, + 45.553562 + ], + [ + -73.49895, + 45.553404 + ], + [ + -73.498964, + 45.55335 + ], + [ + -73.498988, + 45.55326 + ], + [ + -73.499026, + 45.553035 + ], + [ + -73.499051, + 45.55281 + ], + [ + -73.49911, + 45.552261 + ], + [ + -73.499127, + 45.552095 + ], + [ + -73.499158, + 45.551791 + ], + [ + -73.499199, + 45.551371 + ], + [ + -73.49924, + 45.551092 + ], + [ + -73.499284, + 45.550946 + ], + [ + -73.499366, + 45.550811 + ], + [ + -73.499487, + 45.550651 + ], + [ + -73.499747, + 45.550322 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.500446, + 45.550071 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.505913, + 45.545577 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.512612, + 45.539397 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.518817, + 45.531415 + ], + [ + -73.518763, + 45.531374 + ], + [ + -73.518709, + 45.531325 + ], + [ + -73.518655, + 45.531271 + ], + [ + -73.518619, + 45.531213 + ], + [ + -73.518601, + 45.531154 + ], + [ + -73.518588, + 45.531096 + ], + [ + -73.518588, + 45.531055 + ], + [ + -73.518597, + 45.531006 + ], + [ + -73.518619, + 45.530952 + ], + [ + -73.518659, + 45.530884 + ], + [ + -73.518691, + 45.530826 + ], + [ + -73.518718, + 45.530785 + ], + [ + -73.518753, + 45.530731 + ], + [ + -73.518803, + 45.530646 + ], + [ + -73.518839, + 45.530596 + ], + [ + -73.518875, + 45.530547 + ], + [ + -73.518897, + 45.530497 + ], + [ + -73.518915, + 45.530448 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519422, + 45.528602 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519399, + 45.526019 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519866, + 45.523385 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523597 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 219, + "properties": { + "id": "5598954a-ccd4-4462-9c8c-8ec6f3003245", + "data": { + "gtfs": { + "shape_id": "125_2_A" + }, + "segments": [ + { + "distanceMeters": 535, + "travelTimeSeconds": 111 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 829, + "travelTimeSeconds": 109 + }, + { + "distanceMeters": 3492, + "travelTimeSeconds": 459 + }, + { + "distanceMeters": 692, + "travelTimeSeconds": 92 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6454, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4611.960631400493, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.72, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 5.66, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.72 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "b16a31c8-203c-44e6-a193-88731a47056e", + "acd343da-a23f-40aa-9f8e-9e9ed5b60bd1", + "eace6dbd-217a-421f-9a0e-ee6e7890671f", + "84a0424b-0f35-4bd8-8109-5ac9219d5869", + "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", + "261a087b-9323-4696-9046-146a299af43d", + "66456437-f154-4a2f-a12f-2f54cf668687", + "4fb4515b-e129-4622-b855-89143c2fd488", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "e6d6eda7-d30b-4e0a-9442-c43a8742a7c4", + "segments": [ + 0, + 7, + 11, + 12, + 22, + 28, + 44, + 136 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 219, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522241, + 45.521831 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.514217, + 45.518647 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509952, + 45.515502 + ], + [ + -73.509485, + 45.515357 + ], + [ + -73.509376, + 45.515323 + ], + [ + -73.508692, + 45.515143 + ], + [ + -73.508296, + 45.51503 + ], + [ + -73.507817, + 45.514868 + ], + [ + -73.507704, + 45.514841 + ], + [ + -73.507464, + 45.514765 + ], + [ + -73.506516, + 45.514432 + ], + [ + -73.505464, + 45.514054 + ], + [ + -73.505166, + 45.51396 + ], + [ + -73.505023, + 45.513914 + ], + [ + -73.504793, + 45.513842 + ], + [ + -73.504451, + 45.513734 + ], + [ + -73.50434, + 45.513699 + ], + [ + -73.504259, + 45.513672 + ], + [ + -73.503369, + 45.513397 + ], + [ + -73.502433, + 45.51315 + ], + [ + -73.502048, + 45.513078 + ], + [ + -73.501411, + 45.512898 + ], + [ + -73.50108, + 45.512799 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.494607, + 45.510602 + ], + [ + -73.494316, + 45.510461 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488355, + 45.503066 + ], + [ + -73.4883, + 45.502913 + ], + [ + -73.488219, + 45.502531 + ], + [ + -73.488223, + 45.502405 + ], + [ + -73.488244, + 45.502298 + ], + [ + -73.488245, + 45.502293 + ], + [ + -73.488296, + 45.502185 + ], + [ + -73.488375, + 45.502086 + ], + [ + -73.488484, + 45.502 + ], + [ + -73.488609, + 45.501937 + ], + [ + -73.48874, + 45.501892 + ], + [ + -73.48888, + 45.501865 + ], + [ + -73.489028, + 45.501856 + ], + [ + -73.489181, + 45.501865 + ], + [ + -73.489324, + 45.501892 + ], + [ + -73.489461, + 45.501933 + ], + [ + -73.489585, + 45.501991 + ], + [ + -73.489692, + 45.502068 + ], + [ + -73.489786, + 45.502153 + ], + [ + -73.489942, + 45.502342 + ], + [ + -73.490006, + 45.50245 + ], + [ + -73.490054, + 45.502558 + ], + [ + -73.490086, + 45.502666 + ], + [ + -73.490092, + 45.502779 + ], + [ + -73.490064, + 45.502891 + ], + [ + -73.490004, + 45.502995 + ], + [ + -73.489917, + 45.503094 + ], + [ + -73.489808, + 45.503175 + ], + [ + -73.489675, + 45.503242 + ], + [ + -73.489524, + 45.503287 + ], + [ + -73.489359, + 45.50331 + ], + [ + -73.489186, + 45.503323 + ], + [ + -73.488817, + 45.503318 + ], + [ + -73.487515, + 45.503242 + ], + [ + -73.486872, + 45.503273 + ], + [ + -73.486502, + 45.503323 + ], + [ + -73.486146, + 45.503381 + ], + [ + -73.484224, + 45.503808 + ], + [ + -73.483407, + 45.503957 + ], + [ + -73.482922, + 45.504029 + ], + [ + -73.482166, + 45.504114 + ], + [ + -73.481092, + 45.504204 + ], + [ + -73.4802, + 45.504262 + ], + [ + -73.47719, + 45.50446 + ], + [ + -73.470465, + 45.504907 + ], + [ + -73.464792, + 45.505284 + ], + [ + -73.464234, + 45.505325 + ], + [ + -73.463301, + 45.505392 + ], + [ + -73.461784, + 45.505526 + ], + [ + -73.460686, + 45.505647 + ], + [ + -73.45799, + 45.505984 + ], + [ + -73.456776, + 45.506127 + ], + [ + -73.455209, + 45.506284 + ], + [ + -73.454382, + 45.506356 + ], + [ + -73.450186, + 45.506642 + ], + [ + -73.439577, + 45.507343 + ], + [ + -73.439057, + 45.507379 + ], + [ + -73.438071, + 45.507414 + ], + [ + -73.437444, + 45.507428 + ], + [ + -73.436265, + 45.507427 + ], + [ + -73.435664, + 45.507418 + ], + [ + -73.43478, + 45.507413 + ], + [ + -73.433757, + 45.507439 + ], + [ + -73.432476, + 45.507501 + ], + [ + -73.430857, + 45.507609 + ], + [ + -73.430359, + 45.507642 + ], + [ + -73.43012, + 45.507658 + ], + [ + -73.43011, + 45.507658 + ], + [ + -73.429316, + 45.507711 + ], + [ + -73.429014, + 45.507706 + ], + [ + -73.42887, + 45.507697 + ], + [ + -73.428732, + 45.50767 + ], + [ + -73.428609, + 45.507629 + ], + [ + -73.4285, + 45.507571 + ], + [ + -73.428413, + 45.507413 + ], + [ + -73.428416, + 45.507089 + ], + [ + -73.428566, + 45.506946 + ], + [ + -73.428604, + 45.506915 + ], + [ + -73.428632, + 45.506893 + ], + [ + -73.428753, + 45.506835 + ], + [ + -73.42903, + 45.50674 + ], + [ + -73.429213, + 45.50668 + ], + [ + -73.429476, + 45.506669 + ], + [ + -73.429755, + 45.506651 + ], + [ + -73.429825, + 45.506654 + ], + [ + -73.429948, + 45.50668 + ], + [ + -73.430064, + 45.506725 + ], + [ + -73.4302, + 45.506807 + ], + [ + -73.430341, + 45.507086 + ], + [ + -73.430485, + 45.507257 + ], + [ + -73.430506, + 45.507276 + ], + [ + -73.430509, + 45.507278 + ], + [ + -73.430608, + 45.507365 + ], + [ + -73.430672, + 45.507415 + ], + [ + -73.431358, + 45.507856 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431666, + 45.508054 + ], + [ + -73.431986, + 45.508252 + ], + [ + -73.432482, + 45.508559 + ], + [ + -73.433021, + 45.508883 + ], + [ + -73.433395, + 45.509082 + ], + [ + -73.433453, + 45.509113 + ], + [ + -73.433535, + 45.509154 + ], + [ + -73.43374, + 45.509257 + ], + [ + -73.434128, + 45.509428 + ], + [ + -73.43476, + 45.509703 + ], + [ + -73.435478, + 45.510009 + ], + [ + -73.435758, + 45.510131 + ], + [ + -73.435507, + 45.510414 + ], + [ + -73.4355, + 45.510423 + ], + [ + -73.435493, + 45.510432 + ], + [ + -73.435487, + 45.510437 + ], + [ + -73.435479, + 45.510446 + ], + [ + -73.435472, + 45.510455 + ], + [ + -73.435465, + 45.510459 + ], + [ + -73.435457, + 45.510468 + ], + [ + -73.43545, + 45.510477 + ], + [ + -73.435444, + 45.510481 + ], + [ + -73.435442, + 45.510481 + ], + [ + -73.435434, + 45.51049 + ], + [ + -73.435426, + 45.510495 + ], + [ + -73.435418, + 45.510504 + ], + [ + -73.43541, + 45.510513 + ], + [ + -73.435402, + 45.510517 + ], + [ + -73.435394, + 45.510526 + ], + [ + -73.435386, + 45.510531 + ], + [ + -73.435377, + 45.51054 + ], + [ + -73.435369, + 45.510544 + ], + [ + -73.43536, + 45.510553 + ], + [ + -73.435352, + 45.510558 + ], + [ + -73.435343, + 45.510567 + ], + [ + -73.435334, + 45.510571 + ], + [ + -73.435325, + 45.510576 + ], + [ + -73.435316, + 45.510585 + ], + [ + -73.435306, + 45.510589 + ], + [ + -73.435297, + 45.510598 + ], + [ + -73.435288, + 45.510603 + ], + [ + -73.435278, + 45.510607 + ], + [ + -73.435269, + 45.510616 + ], + [ + -73.43526, + 45.510621 + ], + [ + -73.43525, + 45.510625 + ], + [ + -73.43524, + 45.510634 + ], + [ + -73.43523, + 45.510639 + ], + [ + -73.43522, + 45.510643 + ], + [ + -73.43521, + 45.510648 + ], + [ + -73.435201, + 45.510657 + ], + [ + -73.43518, + 45.510666 + ], + [ + -73.43517, + 45.51067 + ], + [ + -73.435159, + 45.510679 + ], + [ + -73.435149, + 45.510684 + ], + [ + -73.435139, + 45.510688 + ], + [ + -73.435128, + 45.510693 + ], + [ + -73.435118, + 45.510697 + ], + [ + -73.435107, + 45.510706 + ], + [ + -73.435097, + 45.510711 + ], + [ + -73.435086, + 45.510715 + ], + [ + -73.435075, + 45.51072 + ], + [ + -73.435065, + 45.510724 + ], + [ + -73.435053, + 45.510729 + ], + [ + -73.435043, + 45.510733 + ], + [ + -73.435032, + 45.510738 + ], + [ + -73.435021, + 45.510742 + ], + [ + -73.435009, + 45.510747 + ], + [ + -73.434998, + 45.510751 + ], + [ + -73.434987, + 45.510756 + ], + [ + -73.434976, + 45.51076 + ], + [ + -73.434964, + 45.510765 + ], + [ + -73.434953, + 45.510769 + ], + [ + -73.434941, + 45.510774 + ], + [ + -73.43493, + 45.510778 + ], + [ + -73.434918, + 45.510778 + ], + [ + -73.434907, + 45.510783 + ], + [ + -73.434895, + 45.510787 + ], + [ + -73.434883, + 45.510792 + ], + [ + -73.434871, + 45.510796 + ], + [ + -73.43486, + 45.510796 + ], + [ + -73.434848, + 45.510801 + ], + [ + -73.434836, + 45.510805 + ], + [ + -73.434824, + 45.51081 + ], + [ + -73.434812, + 45.51081 + ], + [ + -73.4348, + 45.510814 + ], + [ + -73.434788, + 45.510819 + ], + [ + -73.434775, + 45.510819 + ], + [ + -73.434763, + 45.510823 + ], + [ + -73.434751, + 45.510823 + ], + [ + -73.434739, + 45.510828 + ], + [ + -73.434727, + 45.510828 + ], + [ + -73.434714, + 45.510832 + ], + [ + -73.434702, + 45.510837 + ], + [ + -73.434689, + 45.510837 + ], + [ + -73.434677, + 45.510841 + ], + [ + -73.434665, + 45.510841 + ], + [ + -73.434652, + 45.510841 + ], + [ + -73.434639, + 45.510845 + ], + [ + -73.434627, + 45.510845 + ], + [ + -73.434615, + 45.51085 + ], + [ + -73.434602, + 45.51085 + ], + [ + -73.434589, + 45.51085 + ], + [ + -73.434577, + 45.510854 + ], + [ + -73.434564, + 45.510854 + ], + [ + -73.434551, + 45.510854 + ], + [ + -73.434539, + 45.510859 + ], + [ + -73.434526, + 45.510859 + ], + [ + -73.434513, + 45.510859 + ], + [ + -73.434501, + 45.510859 + ], + [ + -73.434488, + 45.510859 + ], + [ + -73.434475, + 45.510863 + ], + [ + -73.434462, + 45.510863 + ], + [ + -73.434449, + 45.510863 + ], + [ + -73.434437, + 45.510863 + ], + [ + -73.434424, + 45.510863 + ], + [ + -73.434411, + 45.510863 + ], + [ + -73.433233, + 45.510854 + ], + [ + -73.433213, + 45.510854 + ], + [ + -73.4332, + 45.510854 + ], + [ + -73.433188, + 45.510854 + ], + [ + -73.433175, + 45.510858 + ], + [ + -73.433162, + 45.510858 + ], + [ + -73.433155, + 45.510858 + ], + [ + -73.43315, + 45.510858 + ], + [ + -73.433137, + 45.510858 + ], + [ + -73.433124, + 45.510858 + ], + [ + -73.433111, + 45.510858 + ], + [ + -73.433098, + 45.510863 + ], + [ + -73.433086, + 45.510863 + ], + [ + -73.433073, + 45.510863 + ], + [ + -73.43306, + 45.510863 + ], + [ + -73.433048, + 45.510867 + ], + [ + -73.433035, + 45.510867 + ], + [ + -73.433022, + 45.510867 + ], + [ + -73.43301, + 45.510872 + ], + [ + -73.432997, + 45.510872 + ], + [ + -73.432985, + 45.510872 + ], + [ + -73.432971, + 45.510876 + ], + [ + -73.43282, + 45.510417 + ], + [ + -73.432816, + 45.510408 + ], + [ + -73.432813, + 45.510399 + ], + [ + -73.432809, + 45.51039 + ], + [ + -73.432806, + 45.510381 + ], + [ + -73.432802, + 45.510372 + ], + [ + -73.432799, + 45.510363 + ], + [ + -73.432795, + 45.510354 + ], + [ + -73.432792, + 45.510345 + ], + [ + -73.432788, + 45.510336 + ], + [ + -73.432785, + 45.510331 + ], + [ + -73.432781, + 45.510322 + ], + [ + -73.432777, + 45.510313 + ], + [ + -73.432774, + 45.510304 + ], + [ + -73.43277, + 45.510295 + ], + [ + -73.432767, + 45.510286 + ], + [ + -73.432763, + 45.510277 + ], + [ + -73.43276, + 45.510268 + ], + [ + -73.432756, + 45.510259 + ], + [ + -73.432752, + 45.51025 + ], + [ + -73.432749, + 45.510241 + ], + [ + -73.432745, + 45.510232 + ], + [ + -73.432742, + 45.510228 + ], + [ + -73.432738, + 45.510219 + ], + [ + -73.432734, + 45.51021 + ], + [ + -73.432731, + 45.510201 + ], + [ + -73.432727, + 45.510192 + ], + [ + -73.432724, + 45.510183 + ], + [ + -73.43272, + 45.510174 + ], + [ + -73.432716, + 45.510165 + ], + [ + -73.432712, + 45.510156 + ], + [ + -73.432709, + 45.510147 + ], + [ + -73.432705, + 45.510138 + ], + [ + -73.432702, + 45.510129 + ], + [ + -73.432698, + 45.510124 + ], + [ + -73.432694, + 45.510115 + ], + [ + -73.432691, + 45.510106 + ], + [ + -73.432687, + 45.510097 + ], + [ + -73.432683, + 45.510088 + ], + [ + -73.432679, + 45.510079 + ], + [ + -73.432676, + 45.51007 + ], + [ + -73.432672, + 45.510061 + ], + [ + -73.432669, + 45.510052 + ], + [ + -73.43266, + 45.510034 + ], + [ + -73.432659, + 45.510021 + ], + [ + -73.432658, + 45.510012 + ], + [ + -73.432658, + 45.510003 + ], + [ + -73.432657, + 45.509994 + ], + [ + -73.432657, + 45.509985 + ], + [ + -73.432656, + 45.509976 + ], + [ + -73.432656, + 45.509967 + ], + [ + -73.432656, + 45.509958 + ], + [ + -73.432655, + 45.509949 + ], + [ + -73.432656, + 45.50994 + ], + [ + -73.432656, + 45.509931 + ], + [ + -73.432656, + 45.509922 + ], + [ + -73.432656, + 45.509913 + ], + [ + -73.432656, + 45.509904 + ], + [ + -73.432657, + 45.509895 + ], + [ + -73.432658, + 45.509886 + ], + [ + -73.432658, + 45.509877 + ], + [ + -73.432659, + 45.509868 + ], + [ + -73.43266, + 45.509859 + ], + [ + -73.432662, + 45.50985 + ], + [ + -73.432663, + 45.509841 + ], + [ + -73.432664, + 45.509832 + ], + [ + -73.432666, + 45.509823 + ], + [ + -73.432668, + 45.509814 + ], + [ + -73.432759, + 45.509634 + ], + [ + -73.432835, + 45.509463 + ], + [ + -73.432855, + 45.50936 + ], + [ + -73.432845, + 45.509284 + ], + [ + -73.432841, + 45.509247 + ], + [ + -73.432807, + 45.509153 + ], + [ + -73.432763, + 45.509081 + ], + [ + -73.432693, + 45.508986 + ], + [ + -73.432596, + 45.508892 + ], + [ + -73.432466, + 45.508784 + ], + [ + -73.432357, + 45.508721 + ], + [ + -73.432229, + 45.508657 + ], + [ + -73.43205, + 45.508576 + ], + [ + -73.431849, + 45.508509 + ], + [ + -73.431641, + 45.508477 + ], + [ + -73.430377, + 45.508566 + ], + [ + -73.42989, + 45.508625 + ], + [ + -73.429611, + 45.508674 + ], + [ + -73.429174, + 45.50875 + ], + [ + -73.428721, + 45.508799 + ], + [ + -73.425795, + 45.508991 + ], + [ + -73.422797, + 45.509187 + ], + [ + -73.420365, + 45.509349 + ], + [ + -73.414394, + 45.509748 + ], + [ + -73.414099, + 45.509779 + ], + [ + -73.413851, + 45.50986 + ], + [ + -73.413789, + 45.509879 + ], + [ + -73.413748, + 45.509891 + ], + [ + -73.413659, + 45.509927 + ], + [ + -73.413544, + 45.510004 + ], + [ + -73.413248, + 45.510197 + ], + [ + -73.412177, + 45.510899 + ], + [ + -73.41095, + 45.511702 + ], + [ + -73.409407, + 45.512716 + ], + [ + -73.408595, + 45.513262 + ], + [ + -73.408576, + 45.513275 + ], + [ + -73.408317, + 45.513441 + ], + [ + -73.408069, + 45.513608 + ], + [ + -73.406621, + 45.514557 + ], + [ + -73.405458, + 45.515319 + ], + [ + -73.405217, + 45.515477 + ], + [ + -73.403934, + 45.516317 + ], + [ + -73.403084, + 45.516888 + ], + [ + -73.402988, + 45.516952 + ], + [ + -73.401985, + 45.517616 + ], + [ + -73.400748, + 45.518411 + ], + [ + -73.400681, + 45.518454 + ], + [ + -73.400643, + 45.518479 + ], + [ + -73.397089, + 45.515781 + ], + [ + -73.393828, + 45.513384 + ], + [ + -73.393656, + 45.513568 + ], + [ + -73.389522, + 45.518002 + ], + [ + -73.388708, + 45.518687 + ], + [ + -73.388657, + 45.518721 + ], + [ + -73.388159, + 45.519058 + ], + [ + -73.387731, + 45.519343 + ], + [ + -73.387568, + 45.519571 + ], + [ + -73.38752, + 45.520133 + ], + [ + -73.3871, + 45.520108 + ], + [ + -73.386774, + 45.520108 + ], + [ + -73.386308, + 45.520107 + ], + [ + -73.384269, + 45.520137 + ], + [ + -73.384181, + 45.520141 + ], + [ + -73.384095, + 45.520141 + ], + [ + -73.384065, + 45.520142 + ], + [ + -73.383105, + 45.520158 + ], + [ + -73.382615, + 45.520162 + ], + [ + -73.382566, + 45.520163 + ], + [ + -73.382282, + 45.520171 + ], + [ + -73.381193, + 45.520174 + ], + [ + -73.380245, + 45.520187 + ], + [ + -73.379902, + 45.520193 + ], + [ + -73.379803, + 45.520195 + ], + [ + -73.379356, + 45.520199 + ], + [ + -73.377346, + 45.52022 + ], + [ + -73.375085, + 45.520265 + ], + [ + -73.375006, + 45.520267 + ], + [ + -73.371729, + 45.520317 + ], + [ + -73.370147, + 45.520338 + ], + [ + -73.36922, + 45.52035 + ], + [ + -73.368621, + 45.520354 + ], + [ + -73.368553, + 45.520357 + ], + [ + -73.368512, + 45.520358 + ], + [ + -73.368191, + 45.520371 + ], + [ + -73.367048, + 45.52047 + ], + [ + -73.366798, + 45.520491 + ], + [ + -73.365403, + 45.520602 + ], + [ + -73.362854, + 45.520815 + ], + [ + -73.36145, + 45.52094 + ], + [ + -73.361257, + 45.520957 + ], + [ + -73.361188, + 45.520498 + ], + [ + -73.361088, + 45.519832 + ], + [ + -73.361078, + 45.519769 + ], + [ + -73.361044, + 45.519729 + ], + [ + -73.360928, + 45.519697 + ], + [ + -73.36065, + 45.51971 + ], + [ + -73.360243, + 45.519741 + ], + [ + -73.359782, + 45.519783 + ], + [ + -73.358767, + 45.519874 + ], + [ + -73.358471, + 45.519901 + ], + [ + -73.358096, + 45.519923 + ], + [ + -73.358007, + 45.519923 + ], + [ + -73.357922, + 45.519918 + ], + [ + -73.357731, + 45.519864 + ], + [ + -73.357562, + 45.519805 + ], + [ + -73.357425, + 45.519702 + ], + [ + -73.356619, + 45.519059 + ], + [ + -73.356509, + 45.518972 + ], + [ + -73.356103, + 45.518661 + ], + [ + -73.355924, + 45.518514 + ], + [ + -73.355851, + 45.518453 + ], + [ + -73.3557, + 45.518336 + ], + [ + -73.35554, + 45.51821 + ], + [ + -73.355464, + 45.518151 + ], + [ + -73.355224, + 45.517998 + ], + [ + -73.355058, + 45.517908 + ], + [ + -73.354896, + 45.517822 + ], + [ + -73.354639, + 45.5177 + ], + [ + -73.354374, + 45.517597 + ], + [ + -73.35413, + 45.51752 + ], + [ + -73.353969, + 45.517485 + ], + [ + -73.353964, + 45.517484 + ], + [ + -73.353847, + 45.517452 + ], + [ + -73.353913, + 45.517241 + ], + [ + -73.353961, + 45.517124 + ], + [ + -73.354012, + 45.517002 + ], + [ + -73.354038, + 45.516939 + ], + [ + -73.354065, + 45.516876 + ], + [ + -73.354098, + 45.516813 + ], + [ + -73.354129, + 45.516755 + ], + [ + -73.35418, + 45.516665 + ], + [ + -73.354282, + 45.516521 + ], + [ + -73.354404, + 45.516368 + ], + [ + -73.354562, + 45.51622 + ], + [ + -73.354639, + 45.516144 + ], + [ + -73.354763, + 45.516045 + ], + [ + -73.354876, + 45.515964 + ], + [ + -73.355155, + 45.515784 + ], + [ + -73.355267, + 45.515713 + ], + [ + -73.355353, + 45.515673 + ], + [ + -73.355435, + 45.515636 + ], + [ + -73.355694, + 45.515528 + ], + [ + -73.355723, + 45.515515 + ], + [ + -73.35603, + 45.515426 + ], + [ + -73.356223, + 45.515381 + ], + [ + -73.356733, + 45.515323 + ], + [ + -73.357346, + 45.515261 + ], + [ + -73.35791, + 45.515226 + ], + [ + -73.358084, + 45.515214 + ], + [ + -73.358869, + 45.515164 + ], + [ + -73.360777, + 45.515046 + ], + [ + -73.361292, + 45.515014 + ], + [ + -73.362219, + 45.514953 + ], + [ + -73.364936, + 45.514775 + ], + [ + -73.365804, + 45.514718 + ], + [ + -73.366158, + 45.514696 + ], + [ + -73.366978, + 45.514647 + ], + [ + -73.367121, + 45.514638 + ], + [ + -73.367183, + 45.514638 + ], + [ + -73.367413, + 45.514639 + ], + [ + -73.36767, + 45.514675 + ], + [ + -73.367705, + 45.514684 + ], + [ + -73.367986, + 45.514774 + ], + [ + -73.368285, + 45.514919 + ], + [ + -73.368381, + 45.514986 + ], + [ + -73.368487, + 45.515058 + ], + [ + -73.368593, + 45.51513 + ], + [ + -73.368707, + 45.515243 + ], + [ + -73.368826, + 45.515365 + ], + [ + -73.368961, + 45.515549 + ], + [ + -73.369002, + 45.515653 + ], + [ + -73.36905, + 45.515765 + ], + [ + -73.369062, + 45.515873 + ], + [ + -73.369087, + 45.516022 + ], + [ + -73.369094, + 45.516179 + ], + [ + -73.369101, + 45.5164 + ], + [ + -73.36911, + 45.516625 + ], + [ + -73.36912, + 45.516899 + ], + [ + -73.369128, + 45.517111 + ], + [ + -73.369131, + 45.517363 + ], + [ + -73.369131, + 45.517411 + ], + [ + -73.369133, + 45.51752 + ], + [ + -73.369139, + 45.517651 + ], + [ + -73.369147, + 45.517839 + ], + [ + -73.369153, + 45.518145 + ], + [ + -73.369156, + 45.518379 + ], + [ + -73.369164, + 45.518717 + ], + [ + -73.369173, + 45.519041 + ], + [ + -73.369181, + 45.519333 + ], + [ + -73.369183, + 45.519383 + ], + [ + -73.369188, + 45.51962 + ], + [ + -73.369192, + 45.519761 + ], + [ + -73.369205, + 45.519905 + ], + [ + -73.369207, + 45.520049 + ], + [ + -73.36922, + 45.52035 + ], + [ + -73.369225, + 45.520454 + ], + [ + -73.369241, + 45.520998 + ], + [ + -73.369289, + 45.522629 + ], + [ + -73.369285, + 45.522762 + ], + [ + -73.369286, + 45.523039 + ], + [ + -73.369289, + 45.523693 + ], + [ + -73.36921, + 45.523999 + ], + [ + -73.369028, + 45.5243 + ], + [ + -73.368834, + 45.524507 + ], + [ + -73.368444, + 45.524772 + ], + [ + -73.367696, + 45.525244 + ], + [ + -73.367366, + 45.52545 + ], + [ + -73.36762, + 45.525662 + ], + [ + -73.367783, + 45.525788 + ], + [ + -73.368672, + 45.526476 + ], + [ + -73.369386, + 45.527027 + ], + [ + -73.369582, + 45.527324 + ], + [ + -73.369684, + 45.527581 + ], + [ + -73.369695, + 45.527688 + ], + [ + -73.369719, + 45.527905 + ], + [ + -73.369744, + 45.529772 + ], + [ + -73.369745, + 45.529806 + ], + [ + -73.369749, + 45.529908 + ], + [ + -73.369792, + 45.531176 + ], + [ + -73.369792, + 45.531189 + ] + ] + }, + "id": 220, + "properties": { + "id": "58ed6c43-b2ca-41b9-800d-67b355b898d6", + "data": { + "gtfs": { + "shape_id": "128_1_R" + }, + "segments": [ + { + "distanceMeters": 2244, + "travelTimeSeconds": 225 + }, + { + "distanceMeters": 901, + "travelTimeSeconds": 91 + }, + { + "distanceMeters": 6738, + "travelTimeSeconds": 678 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 1220, + "travelTimeSeconds": 118 + }, + { + "distanceMeters": 687, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 384, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 1506, + "travelTimeSeconds": 135 + }, + { + "distanceMeters": 578, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 376, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 513, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 440, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 389, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 391, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 97 + }, + { + "distanceMeters": 480, + "travelTimeSeconds": 122 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 40 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 234, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 21226, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11837.902801110917, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.07, + "travelTimeWithoutDwellTimesSeconds": 2340, + "operatingTimeWithLayoverTimeSeconds": 2574, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2340, + "operatingSpeedWithLayoverMetersPerSecond": 8.25, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.07 + }, + "mode": "bus", + "name": "Parent", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", + "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", + "80008949-5a0f-4c5e-b778-592c2ee8487f", + "0f06220e-c086-4a85-9d80-5c4d5410f93e", + "789f4442-496b-49a8-9269-68c86839ee71", + "083eddb0-b4a8-4368-8265-1cf0ef37b9f6", + "eb8bc90f-a856-480f-ac1f-7bb1795b4dab", + "90f9f389-96b4-444b-8d1b-774cf89df3c1", + "6d909e49-9727-42dc-95db-42259425acbd", + "4ee012e8-fd5c-471a-bb0b-87721da74cf6", + "02c6c49d-886b-440d-919e-7dc5515da70b", + "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", + "59f3ce33-037e-4929-8dad-491a01b3dda7", + "889d971d-ea3a-412a-a3be-b3ac0f562d0a", + "71285487-65b1-4a9b-965b-e8b969ec642e", + "4fd9bafc-afe7-46d0-b43c-1a1438691ab1", + "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", + "36c85e4a-3286-45d4-878d-41eda74eb078", + "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", + "9b7439c4-a8e6-4ce8-8c94-dcac4e29b500", + "d58c68b9-bb4a-45d1-90ea-403c9b830625", + "15f81e09-81b0-4df0-aa79-d4603e691ccd", + "6cc3ca76-cd11-4240-ac37-33142410aacb", + "f9418d0c-9ee7-44b5-a2f0-bb6a76a0df3e", + "4f54f52f-b62c-4341-a4d5-24c02344f25b", + "d3614ff1-08ff-435f-b8f7-1a76f68a0071", + "b3d09d08-d2e3-4276-8b7a-d3d07d979e6c", + "635ebffd-b274-4e79-9618-a0203ceaa811", + "dca87cea-ccf9-454c-a18b-6489a3e1ab68", + "24a322e0-f890-4138-9c97-136b5a2cdd60", + "7d066d0e-6085-4155-a554-6e1116a797c6", + "4d10c33d-a086-4248-8e97-1236a7069436", + "1cb5ae0c-b01a-4888-87b4-f35cbbb956cf" + ], + "stops": [], + "line_id": "46d7fd54-120a-42ab-b351-59b3e0fdaf40", + "segments": [ + 0, + 82, + 106, + 228, + 243, + 344, + 450, + 459, + 462, + 466, + 468, + 470, + 473, + 481, + 495, + 499, + 503, + 510, + 512, + 516, + 526, + 534, + 548, + 569, + 576, + 580, + 586, + 608, + 618, + 627, + 637, + 641, + 644 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 220, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.369792, + 45.531176 + ], + [ + -73.369749, + 45.529908 + ], + [ + -73.369744, + 45.529772 + ], + [ + -73.369744, + 45.529758 + ], + [ + -73.369719, + 45.527905 + ], + [ + -73.369697, + 45.527702 + ], + [ + -73.369684, + 45.527581 + ], + [ + -73.369582, + 45.527324 + ], + [ + -73.369386, + 45.527027 + ], + [ + -73.368626, + 45.52644 + ], + [ + -73.36762, + 45.525662 + ], + [ + -73.367366, + 45.52545 + ], + [ + -73.367696, + 45.525244 + ], + [ + -73.368444, + 45.524772 + ], + [ + -73.368834, + 45.524507 + ], + [ + -73.369028, + 45.5243 + ], + [ + -73.36921, + 45.523999 + ], + [ + -73.369289, + 45.523693 + ], + [ + -73.369286, + 45.522991 + ], + [ + -73.369285, + 45.522762 + ], + [ + -73.369289, + 45.522629 + ], + [ + -73.369241, + 45.520998 + ], + [ + -73.369225, + 45.520454 + ], + [ + -73.36922, + 45.52035 + ], + [ + -73.368621, + 45.520354 + ], + [ + -73.368582, + 45.520355 + ], + [ + -73.368553, + 45.520357 + ], + [ + -73.368191, + 45.520371 + ], + [ + -73.367118, + 45.520464 + ], + [ + -73.366798, + 45.520491 + ], + [ + -73.365403, + 45.520602 + ], + [ + -73.362854, + 45.520815 + ], + [ + -73.36152, + 45.520934 + ], + [ + -73.361257, + 45.520957 + ], + [ + -73.361203, + 45.520598 + ], + [ + -73.361088, + 45.519832 + ], + [ + -73.361078, + 45.519769 + ], + [ + -73.361044, + 45.519729 + ], + [ + -73.360928, + 45.519697 + ], + [ + -73.36065, + 45.51971 + ], + [ + -73.360243, + 45.519741 + ], + [ + -73.359782, + 45.519783 + ], + [ + -73.358837, + 45.519868 + ], + [ + -73.358471, + 45.519901 + ], + [ + -73.358096, + 45.519923 + ], + [ + -73.358007, + 45.519923 + ], + [ + -73.357922, + 45.519918 + ], + [ + -73.357731, + 45.519864 + ], + [ + -73.357562, + 45.519805 + ], + [ + -73.357425, + 45.519702 + ], + [ + -73.356666, + 45.519097 + ], + [ + -73.356509, + 45.518972 + ], + [ + -73.356103, + 45.518661 + ], + [ + -73.355851, + 45.518453 + ], + [ + -73.3557, + 45.518336 + ], + [ + -73.35554, + 45.51821 + ], + [ + -73.355464, + 45.518151 + ], + [ + -73.355224, + 45.517998 + ], + [ + -73.355058, + 45.517908 + ], + [ + -73.354896, + 45.517822 + ], + [ + -73.354639, + 45.5177 + ], + [ + -73.354374, + 45.517597 + ], + [ + -73.35413, + 45.51752 + ], + [ + -73.354037, + 45.5175 + ], + [ + -73.353964, + 45.517484 + ], + [ + -73.353847, + 45.517452 + ], + [ + -73.353913, + 45.517241 + ], + [ + -73.353961, + 45.517124 + ], + [ + -73.354012, + 45.517002 + ], + [ + -73.354038, + 45.516939 + ], + [ + -73.354065, + 45.516876 + ], + [ + -73.354098, + 45.516813 + ], + [ + -73.354129, + 45.516755 + ], + [ + -73.35418, + 45.516665 + ], + [ + -73.354211, + 45.516621 + ], + [ + -73.354282, + 45.516521 + ], + [ + -73.354404, + 45.516368 + ], + [ + -73.354562, + 45.51622 + ], + [ + -73.354639, + 45.516144 + ], + [ + -73.354763, + 45.516045 + ], + [ + -73.354876, + 45.515964 + ], + [ + -73.355155, + 45.515784 + ], + [ + -73.355267, + 45.515713 + ], + [ + -73.355353, + 45.515673 + ], + [ + -73.355435, + 45.515636 + ], + [ + -73.355632, + 45.515553 + ], + [ + -73.355723, + 45.515515 + ], + [ + -73.35603, + 45.515426 + ], + [ + -73.356223, + 45.515381 + ], + [ + -73.356733, + 45.515323 + ], + [ + -73.357346, + 45.515261 + ], + [ + -73.35791, + 45.515226 + ], + [ + -73.358013, + 45.515219 + ], + [ + -73.358869, + 45.515164 + ], + [ + -73.361292, + 45.515014 + ], + [ + -73.362147, + 45.514958 + ], + [ + -73.364936, + 45.514775 + ], + [ + -73.365804, + 45.514718 + ], + [ + -73.366158, + 45.514696 + ], + [ + -73.366978, + 45.514647 + ], + [ + -73.36711, + 45.514639 + ], + [ + -73.367121, + 45.514638 + ], + [ + -73.367413, + 45.514639 + ], + [ + -73.36767, + 45.514675 + ], + [ + -73.367705, + 45.514684 + ], + [ + -73.367986, + 45.514774 + ], + [ + -73.368285, + 45.514919 + ], + [ + -73.368381, + 45.514986 + ], + [ + -73.368487, + 45.515058 + ], + [ + -73.368593, + 45.51513 + ], + [ + -73.368707, + 45.515243 + ], + [ + -73.368826, + 45.515365 + ], + [ + -73.368961, + 45.515549 + ], + [ + -73.369002, + 45.515653 + ], + [ + -73.36905, + 45.515765 + ], + [ + -73.369062, + 45.515873 + ], + [ + -73.369087, + 45.516022 + ], + [ + -73.369094, + 45.516179 + ], + [ + -73.369101, + 45.5164 + ], + [ + -73.36911, + 45.516625 + ], + [ + -73.36912, + 45.516899 + ], + [ + -73.369128, + 45.517111 + ], + [ + -73.369131, + 45.517361 + ], + [ + -73.369131, + 45.517363 + ], + [ + -73.369133, + 45.51752 + ], + [ + -73.369139, + 45.517651 + ], + [ + -73.369147, + 45.517839 + ], + [ + -73.369153, + 45.518145 + ], + [ + -73.369156, + 45.518379 + ], + [ + -73.369164, + 45.518717 + ], + [ + -73.369173, + 45.519041 + ], + [ + -73.369183, + 45.519383 + ], + [ + -73.369187, + 45.519569 + ], + [ + -73.369192, + 45.519761 + ], + [ + -73.369205, + 45.519905 + ], + [ + -73.369207, + 45.520049 + ], + [ + -73.36922, + 45.52035 + ], + [ + -73.369225, + 45.520454 + ], + [ + -73.370151, + 45.520446 + ], + [ + -73.370374, + 45.520444 + ], + [ + -73.371725, + 45.520433 + ], + [ + -73.373172, + 45.520409 + ], + [ + -73.373182, + 45.520409 + ], + [ + -73.37501, + 45.520379 + ], + [ + -73.375959, + 45.520362 + ], + [ + -73.376327, + 45.520357 + ], + [ + -73.377348, + 45.520341 + ], + [ + -73.379658, + 45.520318 + ], + [ + -73.379807, + 45.520317 + ], + [ + -73.38118, + 45.520291 + ], + [ + -73.38311, + 45.520275 + ], + [ + -73.383803, + 45.52028 + ], + [ + -73.383938, + 45.520277 + ], + [ + -73.3863, + 45.520242 + ], + [ + -73.387093, + 45.52023 + ], + [ + -73.3875, + 45.520254 + ], + [ + -73.38752, + 45.520133 + ], + [ + -73.387568, + 45.519571 + ], + [ + -73.387731, + 45.519343 + ], + [ + -73.388159, + 45.519058 + ], + [ + -73.388684, + 45.518703 + ], + [ + -73.388708, + 45.518687 + ], + [ + -73.389522, + 45.518002 + ], + [ + -73.392916, + 45.514363 + ], + [ + -73.393828, + 45.513384 + ], + [ + -73.397089, + 45.515781 + ], + [ + -73.400486, + 45.51836 + ], + [ + -73.400643, + 45.518479 + ], + [ + -73.400681, + 45.518454 + ], + [ + -73.401985, + 45.517616 + ], + [ + -73.402682, + 45.517155 + ], + [ + -73.402988, + 45.516952 + ], + [ + -73.403934, + 45.516317 + ], + [ + -73.405075, + 45.51557 + ], + [ + -73.405458, + 45.515319 + ], + [ + -73.406629, + 45.514552 + ], + [ + -73.408069, + 45.513608 + ], + [ + -73.408317, + 45.513441 + ], + [ + -73.408395, + 45.513391 + ], + [ + -73.408576, + 45.513275 + ], + [ + -73.409407, + 45.512716 + ], + [ + -73.41095, + 45.511702 + ], + [ + -73.412184, + 45.510894 + ], + [ + -73.413248, + 45.510197 + ], + [ + -73.413544, + 45.510004 + ], + [ + -73.413659, + 45.509927 + ], + [ + -73.413748, + 45.509891 + ], + [ + -73.413851, + 45.50986 + ], + [ + -73.414099, + 45.509779 + ], + [ + -73.414394, + 45.509748 + ], + [ + -73.420362, + 45.509349 + ], + [ + -73.422797, + 45.509187 + ], + [ + -73.425795, + 45.508991 + ], + [ + -73.428721, + 45.508799 + ], + [ + -73.429174, + 45.50875 + ], + [ + -73.429611, + 45.508674 + ], + [ + -73.42989, + 45.508625 + ], + [ + -73.430377, + 45.508566 + ], + [ + -73.430526, + 45.508556 + ], + [ + -73.430743, + 45.508541 + ], + [ + -73.431641, + 45.508477 + ], + [ + -73.431849, + 45.508509 + ], + [ + -73.43205, + 45.508576 + ], + [ + -73.432229, + 45.508657 + ], + [ + -73.432357, + 45.508721 + ], + [ + -73.432466, + 45.508784 + ], + [ + -73.432596, + 45.508892 + ], + [ + -73.432693, + 45.508986 + ], + [ + -73.432763, + 45.509081 + ], + [ + -73.432807, + 45.509153 + ], + [ + -73.432841, + 45.509247 + ], + [ + -73.432845, + 45.509284 + ], + [ + -73.432855, + 45.50936 + ], + [ + -73.432835, + 45.509463 + ], + [ + -73.432759, + 45.509634 + ], + [ + -73.432668, + 45.509814 + ], + [ + -73.432666, + 45.509823 + ], + [ + -73.432664, + 45.509832 + ], + [ + -73.432663, + 45.509841 + ], + [ + -73.432662, + 45.50985 + ], + [ + -73.43266, + 45.509859 + ], + [ + -73.432659, + 45.509868 + ], + [ + -73.432658, + 45.509877 + ], + [ + -73.432658, + 45.509886 + ], + [ + -73.432657, + 45.509895 + ], + [ + -73.432656, + 45.509904 + ], + [ + -73.432656, + 45.509913 + ], + [ + -73.432656, + 45.509922 + ], + [ + -73.432656, + 45.509931 + ], + [ + -73.432656, + 45.50994 + ], + [ + -73.432655, + 45.509949 + ], + [ + -73.432656, + 45.509958 + ], + [ + -73.432656, + 45.509967 + ], + [ + -73.432656, + 45.509976 + ], + [ + -73.432657, + 45.509985 + ], + [ + -73.432657, + 45.509994 + ], + [ + -73.432658, + 45.510003 + ], + [ + -73.432658, + 45.510012 + ], + [ + -73.432659, + 45.510021 + ], + [ + -73.43266, + 45.510034 + ], + [ + -73.432661, + 45.510043 + ], + [ + -73.432661, + 45.510052 + ], + [ + -73.432661, + 45.510061 + ], + [ + -73.432662, + 45.51007 + ], + [ + -73.432663, + 45.510079 + ], + [ + -73.432663, + 45.510088 + ], + [ + -73.432664, + 45.510097 + ], + [ + -73.432665, + 45.510106 + ], + [ + -73.432666, + 45.510115 + ], + [ + -73.432667, + 45.510124 + ], + [ + -73.432668, + 45.510133 + ], + [ + -73.432669, + 45.510142 + ], + [ + -73.43267, + 45.510151 + ], + [ + -73.432671, + 45.51016 + ], + [ + -73.432672, + 45.510169 + ], + [ + -73.432673, + 45.510178 + ], + [ + -73.432674, + 45.510187 + ], + [ + -73.432676, + 45.510196 + ], + [ + -73.432677, + 45.510205 + ], + [ + -73.432679, + 45.510214 + ], + [ + -73.43268, + 45.510223 + ], + [ + -73.432682, + 45.510232 + ], + [ + -73.432684, + 45.510241 + ], + [ + -73.432685, + 45.51025 + ], + [ + -73.432687, + 45.510259 + ], + [ + -73.432689, + 45.510268 + ], + [ + -73.43269, + 45.510277 + ], + [ + -73.432692, + 45.510286 + ], + [ + -73.432694, + 45.510295 + ], + [ + -73.432696, + 45.510304 + ], + [ + -73.432698, + 45.510313 + ], + [ + -73.4327, + 45.510322 + ], + [ + -73.432702, + 45.510331 + ], + [ + -73.432705, + 45.51034 + ], + [ + -73.432707, + 45.510349 + ], + [ + -73.432709, + 45.510358 + ], + [ + -73.432711, + 45.510367 + ], + [ + -73.432714, + 45.510376 + ], + [ + -73.432716, + 45.510385 + ], + [ + -73.432719, + 45.510394 + ], + [ + -73.432721, + 45.510403 + ], + [ + -73.432724, + 45.510412 + ], + [ + -73.432727, + 45.510421 + ], + [ + -73.432729, + 45.510426 + ], + [ + -73.432732, + 45.510435 + ], + [ + -73.432736, + 45.510453 + ], + [ + -73.432878, + 45.510894 + ], + [ + -73.432913, + 45.511002 + ], + [ + -73.433005, + 45.510989 + ], + [ + -73.433027, + 45.510984 + ], + [ + -73.43304, + 45.51098 + ], + [ + -73.433052, + 45.51098 + ], + [ + -73.433065, + 45.51098 + ], + [ + -73.433077, + 45.510975 + ], + [ + -73.43309, + 45.510975 + ], + [ + -73.433103, + 45.510975 + ], + [ + -73.433115, + 45.510971 + ], + [ + -73.433128, + 45.510971 + ], + [ + -73.433141, + 45.510971 + ], + [ + -73.433153, + 45.510971 + ], + [ + -73.433166, + 45.510971 + ], + [ + -73.433179, + 45.510971 + ], + [ + -73.433192, + 45.510971 + ], + [ + -73.433205, + 45.510971 + ], + [ + -73.433653, + 45.510973 + ], + [ + -73.433981, + 45.510974 + ], + [ + -73.434422, + 45.510976 + ], + [ + -73.434437, + 45.510976 + ], + [ + -73.43445, + 45.510976 + ], + [ + -73.434463, + 45.510976 + ], + [ + -73.434476, + 45.510971 + ], + [ + -73.434488, + 45.510971 + ], + [ + -73.434501, + 45.510971 + ], + [ + -73.434514, + 45.510971 + ], + [ + -73.434527, + 45.510971 + ], + [ + -73.434539, + 45.510967 + ], + [ + -73.434552, + 45.510967 + ], + [ + -73.434565, + 45.510967 + ], + [ + -73.434578, + 45.510967 + ], + [ + -73.43459, + 45.510962 + ], + [ + -73.434603, + 45.510962 + ], + [ + -73.434615, + 45.510962 + ], + [ + -73.434628, + 45.510958 + ], + [ + -73.43464, + 45.510958 + ], + [ + -73.434653, + 45.510958 + ], + [ + -73.434666, + 45.510953 + ], + [ + -73.434678, + 45.510953 + ], + [ + -73.43469, + 45.510949 + ], + [ + -73.434703, + 45.510949 + ], + [ + -73.434716, + 45.510945 + ], + [ + -73.434728, + 45.510945 + ], + [ + -73.43474, + 45.51094 + ], + [ + -73.434752, + 45.51094 + ], + [ + -73.434765, + 45.510936 + ], + [ + -73.434777, + 45.510936 + ], + [ + -73.43479, + 45.510931 + ], + [ + -73.434802, + 45.510931 + ], + [ + -73.434814, + 45.510927 + ], + [ + -73.434826, + 45.510922 + ], + [ + -73.434838, + 45.510922 + ], + [ + -73.43485, + 45.510918 + ], + [ + -73.434862, + 45.510913 + ], + [ + -73.434874, + 45.510913 + ], + [ + -73.434886, + 45.510909 + ], + [ + -73.434898, + 45.510904 + ], + [ + -73.43491, + 45.5109 + ], + [ + -73.434922, + 45.5109 + ], + [ + -73.434934, + 45.510895 + ], + [ + -73.434946, + 45.510891 + ], + [ + -73.434957, + 45.510886 + ], + [ + -73.434969, + 45.510886 + ], + [ + -73.43498, + 45.510882 + ], + [ + -73.434992, + 45.510877 + ], + [ + -73.435004, + 45.510873 + ], + [ + -73.435015, + 45.510868 + ], + [ + -73.435027, + 45.510864 + ], + [ + -73.435038, + 45.510859 + ], + [ + -73.435049, + 45.510855 + ], + [ + -73.435061, + 45.51085 + ], + [ + -73.435072, + 45.510846 + ], + [ + -73.435083, + 45.510846 + ], + [ + -73.435095, + 45.510841 + ], + [ + -73.435105, + 45.510837 + ], + [ + -73.435117, + 45.510832 + ], + [ + -73.435127, + 45.510823 + ], + [ + -73.435139, + 45.510819 + ], + [ + -73.435149, + 45.510814 + ], + [ + -73.43516, + 45.51081 + ], + [ + -73.435171, + 45.510805 + ], + [ + -73.435181, + 45.510801 + ], + [ + -73.435192, + 45.510796 + ], + [ + -73.435203, + 45.510792 + ], + [ + -73.435213, + 45.510787 + ], + [ + -73.435223, + 45.510783 + ], + [ + -73.435234, + 45.510774 + ], + [ + -73.435244, + 45.510769 + ], + [ + -73.435255, + 45.510765 + ], + [ + -73.435265, + 45.51076 + ], + [ + -73.435275, + 45.510756 + ], + [ + -73.435285, + 45.510747 + ], + [ + -73.435296, + 45.510742 + ], + [ + -73.435308, + 45.510733 + ], + [ + -73.435318, + 45.510729 + ], + [ + -73.435328, + 45.510724 + ], + [ + -73.435338, + 45.51072 + ], + [ + -73.435347, + 45.510711 + ], + [ + -73.435357, + 45.510706 + ], + [ + -73.435367, + 45.510702 + ], + [ + -73.435377, + 45.510697 + ], + [ + -73.435387, + 45.510688 + ], + [ + -73.435396, + 45.510684 + ], + [ + -73.435405, + 45.510679 + ], + [ + -73.435415, + 45.51067 + ], + [ + -73.435424, + 45.510666 + ], + [ + -73.435433, + 45.510657 + ], + [ + -73.435443, + 45.510652 + ], + [ + -73.435451, + 45.510648 + ], + [ + -73.435461, + 45.510639 + ], + [ + -73.43547, + 45.510634 + ], + [ + -73.435478, + 45.510625 + ], + [ + -73.435487, + 45.510621 + ], + [ + -73.435496, + 45.510612 + ], + [ + -73.435504, + 45.510608 + ], + [ + -73.435513, + 45.510599 + ], + [ + -73.435521, + 45.510594 + ], + [ + -73.43553, + 45.510585 + ], + [ + -73.435538, + 45.510581 + ], + [ + -73.435546, + 45.510572 + ], + [ + -73.435554, + 45.510567 + ], + [ + -73.435562, + 45.510558 + ], + [ + -73.43557, + 45.510554 + ], + [ + -73.435578, + 45.510545 + ], + [ + -73.435586, + 45.510536 + ], + [ + -73.435593, + 45.510531 + ], + [ + -73.435601, + 45.510522 + ], + [ + -73.435608, + 45.510518 + ], + [ + -73.435616, + 45.510509 + ], + [ + -73.435623, + 45.5105 + ], + [ + -73.43563, + 45.510495 + ], + [ + -73.435637, + 45.510486 + ], + [ + -73.435783, + 45.510318 + ], + [ + -73.435893, + 45.510189 + ], + [ + -73.435988, + 45.510081 + ], + [ + -73.435895, + 45.510041 + ], + [ + -73.435854, + 45.510023 + ], + [ + -73.435569, + 45.509897 + ], + [ + -73.435104, + 45.509697 + ], + [ + -73.434856, + 45.50959 + ], + [ + -73.434287, + 45.509355 + ], + [ + -73.434257, + 45.509343 + ], + [ + -73.433925, + 45.509203 + ], + [ + -73.433726, + 45.509117 + ], + [ + -73.433485, + 45.509005 + ], + [ + -73.433108, + 45.508806 + ], + [ + -73.432574, + 45.508487 + ], + [ + -73.432044, + 45.508167 + ], + [ + -73.432083, + 45.508041 + ], + [ + -73.432114, + 45.508014 + ], + [ + -73.432209, + 45.507974 + ], + [ + -73.435178, + 45.507773 + ], + [ + -73.437575, + 45.507662 + ], + [ + -73.438988, + 45.507572 + ], + [ + -73.440344, + 45.507425 + ], + [ + -73.442164, + 45.507306 + ], + [ + -73.445881, + 45.507063 + ], + [ + -73.452257, + 45.506638 + ], + [ + -73.452565, + 45.506616 + ], + [ + -73.453776, + 45.50654 + ], + [ + -73.455247, + 45.506419 + ], + [ + -73.456957, + 45.50624 + ], + [ + -73.460279, + 45.505832 + ], + [ + -73.460374, + 45.505823 + ], + [ + -73.461182, + 45.505728 + ], + [ + -73.463671, + 45.505509 + ], + [ + -73.465111, + 45.505401 + ], + [ + -73.467755, + 45.505222 + ], + [ + -73.468692, + 45.505168 + ], + [ + -73.470746, + 45.505025 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488612, + 45.504213 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492926, + 45.510111 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.494937, + 45.511118 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.504854, + 45.514415 + ], + [ + -73.505122, + 45.514484 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.514667, + 45.519318 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521463, + 45.52089 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 221, + "properties": { + "id": "9d64f1d3-97ac-4249-b2bd-a3caac87c4f8", + "data": { + "gtfs": { + "shape_id": "128_1_A" + }, + "segments": [ + { + "distanceMeters": 158, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 480, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 344, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 440, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 389, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 391, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 652, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 819, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 1474, + "travelTimeSeconds": 131 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 406, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 686, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 798, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 17, + "travelTimeSeconds": 2 + }, + { + "distanceMeters": 659, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 112, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 5528, + "travelTimeSeconds": 745 + }, + { + "distanceMeters": 1073, + "travelTimeSeconds": 144 + }, + { + "distanceMeters": 2189, + "travelTimeSeconds": 296 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 234, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 20075, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11809.056690870391, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.58, + "travelTimeWithoutDwellTimesSeconds": 2340, + "operatingTimeWithLayoverTimeSeconds": 2574, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2340, + "operatingSpeedWithLayoverMetersPerSecond": 7.8, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.58 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "525aaea9-a48f-4335-b4bb-4f671d4d9a31", + "4d10c33d-a086-4248-8e97-1236a7069436", + "7d066d0e-6085-4155-a554-6e1116a797c6", + "24a322e0-f890-4138-9c97-136b5a2cdd60", + "dca87cea-ccf9-454c-a18b-6489a3e1ab68", + "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", + "36c85e4a-3286-45d4-878d-41eda74eb078", + "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", + "9b7439c4-a8e6-4ce8-8c94-dcac4e29b500", + "d58c68b9-bb4a-45d1-90ea-403c9b830625", + "15f81e09-81b0-4df0-aa79-d4603e691ccd", + "6cc3ca76-cd11-4240-ac37-33142410aacb", + "f9418d0c-9ee7-44b5-a2f0-bb6a76a0df3e", + "4f54f52f-b62c-4341-a4d5-24c02344f25b", + "d3614ff1-08ff-435f-b8f7-1a76f68a0071", + "b3d09d08-d2e3-4276-8b7a-d3d07d979e6c", + "635ebffd-b274-4e79-9618-a0203ceaa811", + "79d0e96e-c3af-4a6c-9c91-73d01e93e557", + "71285487-65b1-4a9b-965b-e8b969ec642e", + "59f3ce33-037e-4929-8dad-491a01b3dda7", + "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", + "4012bfc4-334d-4b7d-9898-4cfd802d0479", + "784dd9cc-281a-47d9-8014-a2e6add384f6", + "3ce1139e-888c-4783-a57f-da50952eee26", + "90f9f389-96b4-444b-8d1b-774cf89df3c1", + "eb8bc90f-a856-480f-ac1f-7bb1795b4dab", + "0af40567-79a9-4b30-b572-639f90fb42b3", + "d0283e5b-f03b-432a-aa08-aa7137cbe6e7", + "d0283e5b-f03b-432a-aa08-aa7137cbe6e7", + "0c9c2b52-ead4-4bb7-9085-39aca76f0358", + "48cbd834-3690-4d56-af66-277be54f9820", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "46d7fd54-120a-42ab-b351-59b3e0fdaf40", + "segments": [ + 0, + 3, + 5, + 9, + 18, + 25, + 28, + 32, + 42, + 50, + 63, + 85, + 92, + 95, + 100, + 122, + 132, + 145, + 147, + 160, + 166, + 170, + 173, + 175, + 178, + 182, + 190, + 198, + 199, + 420, + 426, + 492, + 514 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 221, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.400131, + 45.4861 + ], + [ + -73.400474, + 45.48563 + ], + [ + -73.401257, + 45.484566 + ], + [ + -73.401315, + 45.484488 + ], + [ + -73.4013, + 45.484402 + ], + [ + -73.401353, + 45.482238 + ], + [ + -73.401357, + 45.48181 + ], + [ + -73.401359, + 45.48155 + ], + [ + -73.403227, + 45.48156 + ], + [ + -73.403345, + 45.481556 + ], + [ + -73.403402, + 45.481556 + ], + [ + -73.40343, + 45.481524 + ], + [ + -73.403466, + 45.481488 + ], + [ + -73.403495, + 45.481444 + ], + [ + -73.40361, + 45.481236 + ], + [ + -73.403683, + 45.481106 + ], + [ + -73.404054, + 45.480606 + ], + [ + -73.40413, + 45.480504 + ], + [ + -73.404218, + 45.480391 + ], + [ + -73.404603, + 45.47987 + ], + [ + -73.405053, + 45.479272 + ], + [ + -73.405386, + 45.478804 + ], + [ + -73.405459, + 45.478701 + ], + [ + -73.404979, + 45.478523 + ], + [ + -73.404641, + 45.478398 + ], + [ + -73.403831, + 45.47811 + ], + [ + -73.403041, + 45.477817 + ], + [ + -73.402331, + 45.477561 + ], + [ + -73.402127, + 45.477488 + ], + [ + -73.401223, + 45.477154 + ], + [ + -73.400364, + 45.476838 + ], + [ + -73.400163, + 45.47677 + ], + [ + -73.400151, + 45.476766 + ], + [ + -73.400139, + 45.476766 + ], + [ + -73.400127, + 45.476761 + ], + [ + -73.400116, + 45.476757 + ], + [ + -73.400105, + 45.476752 + ], + [ + -73.400094, + 45.476748 + ], + [ + -73.400083, + 45.476743 + ], + [ + -73.400072, + 45.476739 + ], + [ + -73.400061, + 45.476734 + ], + [ + -73.400051, + 45.476725 + ], + [ + -73.400041, + 45.476721 + ], + [ + -73.400031, + 45.476716 + ], + [ + -73.400021, + 45.476712 + ], + [ + -73.400012, + 45.476703 + ], + [ + -73.400002, + 45.476698 + ], + [ + -73.399993, + 45.476694 + ], + [ + -73.399984, + 45.476685 + ], + [ + -73.399975, + 45.47668 + ], + [ + -73.399966, + 45.476671 + ], + [ + -73.399958, + 45.476667 + ], + [ + -73.39995, + 45.476658 + ], + [ + -73.399942, + 45.476653 + ], + [ + -73.399934, + 45.476644 + ], + [ + -73.399927, + 45.476635 + ], + [ + -73.39992, + 45.476631 + ], + [ + -73.399913, + 45.476622 + ], + [ + -73.399906, + 45.476613 + ], + [ + -73.3999, + 45.476608 + ], + [ + -73.399891, + 45.476595 + ], + [ + -73.399786, + 45.476489 + ], + [ + -73.39968, + 45.476383 + ], + [ + -73.401013, + 45.475736 + ], + [ + -73.40103, + 45.475568 + ], + [ + -73.401127, + 45.475466 + ], + [ + -73.40138, + 45.475237 + ], + [ + -73.401528, + 45.475044 + ], + [ + -73.40166, + 45.474855 + ], + [ + -73.401661, + 45.474853 + ], + [ + -73.402001, + 45.474387 + ], + [ + -73.402299, + 45.473998 + ], + [ + -73.402424, + 45.473834 + ], + [ + -73.402526, + 45.473758 + ], + [ + -73.402598, + 45.473682 + ], + [ + -73.402716, + 45.473664 + ], + [ + -73.402827, + 45.473511 + ], + [ + -73.403012, + 45.473281 + ], + [ + -73.403898, + 45.473773 + ], + [ + -73.404545, + 45.474118 + ], + [ + -73.404642, + 45.474169 + ], + [ + -73.404723, + 45.474214 + ], + [ + -73.404728, + 45.474217 + ], + [ + -73.405388, + 45.474584 + ], + [ + -73.406182, + 45.475012 + ], + [ + -73.406595, + 45.47524 + ], + [ + -73.406966, + 45.475444 + ], + [ + -73.407908, + 45.474749 + ], + [ + -73.409543, + 45.473542 + ], + [ + -73.411466, + 45.472122 + ], + [ + -73.411574, + 45.472042 + ], + [ + -73.41391, + 45.470305 + ], + [ + -73.414113, + 45.470154 + ], + [ + -73.415603, + 45.469054 + ], + [ + -73.415792, + 45.468914 + ], + [ + -73.415843, + 45.468873 + ], + [ + -73.415903, + 45.468828 + ], + [ + -73.417637, + 45.467547 + ], + [ + -73.417764, + 45.467453 + ], + [ + -73.421216, + 45.464901 + ], + [ + -73.421345, + 45.464806 + ], + [ + -73.424228, + 45.46267 + ], + [ + -73.424593, + 45.462401 + ], + [ + -73.4247, + 45.462321 + ], + [ + -73.42461, + 45.462262 + ], + [ + -73.42397, + 45.461837 + ], + [ + -73.423467, + 45.461504 + ], + [ + -73.423345, + 45.461423 + ], + [ + -73.422579, + 45.460915 + ], + [ + -73.41994, + 45.459165 + ], + [ + -73.419828, + 45.45909 + ], + [ + -73.419877, + 45.459055 + ], + [ + -73.419985, + 45.458974 + ], + [ + -73.420398, + 45.458665 + ], + [ + -73.420587, + 45.458524 + ], + [ + -73.42063, + 45.458492 + ], + [ + -73.420736, + 45.458359 + ], + [ + -73.420842, + 45.458218 + ], + [ + -73.420969, + 45.457966 + ], + [ + -73.421005, + 45.457768 + ], + [ + -73.420994, + 45.457608 + ], + [ + -73.420984, + 45.457466 + ], + [ + -73.420984, + 45.457462 + ], + [ + -73.420768, + 45.456709 + ], + [ + -73.420731, + 45.456406 + ], + [ + -73.420728, + 45.456281 + ], + [ + -73.420766, + 45.456105 + ], + [ + -73.420872, + 45.455877 + ], + [ + -73.421054, + 45.45561 + ], + [ + -73.421295, + 45.455422 + ], + [ + -73.422321, + 45.454723 + ], + [ + -73.422712, + 45.454457 + ], + [ + -73.42282, + 45.454384 + ], + [ + -73.425, + 45.452904 + ], + [ + -73.425231, + 45.452748 + ], + [ + -73.42721, + 45.451405 + ], + [ + -73.427291, + 45.45135 + ], + [ + -73.42733, + 45.451323 + ], + [ + -73.427666, + 45.451103 + ], + [ + -73.427666, + 45.451103 + ], + [ + -73.428037, + 45.450878 + ], + [ + -73.430464, + 45.449449 + ], + [ + -73.430991, + 45.449139 + ], + [ + -73.431146, + 45.449051 + ], + [ + -73.431275, + 45.448979 + ], + [ + -73.432931, + 45.450108 + ], + [ + -73.433653, + 45.450548 + ], + [ + -73.433852, + 45.450611 + ], + [ + -73.433938, + 45.450638 + ], + [ + -73.434086, + 45.450685 + ], + [ + -73.434372, + 45.450754 + ], + [ + -73.434532, + 45.45078 + ], + [ + -73.434811, + 45.450806 + ], + [ + -73.435216, + 45.450834 + ], + [ + -73.43546, + 45.450862 + ], + [ + -73.435648, + 45.450893 + ], + [ + -73.435818, + 45.450928 + ], + [ + -73.435935, + 45.450963 + ], + [ + -73.436195, + 45.451061 + ], + [ + -73.436419, + 45.451155 + ], + [ + -73.436602, + 45.451264 + ], + [ + -73.436662, + 45.451304 + ], + [ + -73.436758, + 45.451367 + ], + [ + -73.436938, + 45.4515 + ], + [ + -73.437141, + 45.451649 + ], + [ + -73.43763, + 45.452001 + ], + [ + -73.438278, + 45.452469 + ], + [ + -73.438425, + 45.452575 + ], + [ + -73.438899, + 45.452918 + ], + [ + -73.439474, + 45.45333 + ], + [ + -73.439588, + 45.453411 + ], + [ + -73.4398, + 45.453561 + ], + [ + -73.439861, + 45.453603 + ], + [ + -73.439909, + 45.45364 + ], + [ + -73.439987, + 45.4537 + ], + [ + -73.440478, + 45.454051 + ], + [ + -73.44074, + 45.454241 + ], + [ + -73.44099, + 45.454406 + ], + [ + -73.441259, + 45.45456 + ], + [ + -73.441361, + 45.454611 + ], + [ + -73.441496, + 45.454678 + ], + [ + -73.441752, + 45.454794 + ], + [ + -73.441911, + 45.454854 + ], + [ + -73.442069, + 45.454915 + ], + [ + -73.442434, + 45.455032 + ], + [ + -73.442619, + 45.455085 + ], + [ + -73.442851, + 45.45514 + ], + [ + -73.443004, + 45.455181 + ], + [ + -73.443312, + 45.455218 + ], + [ + -73.443443, + 45.455253 + ], + [ + -73.443793, + 45.455352 + ], + [ + -73.443977, + 45.455424 + ], + [ + -73.444277, + 45.455609 + ], + [ + -73.444561, + 45.455812 + ], + [ + -73.445006, + 45.456208 + ], + [ + -73.445443, + 45.456518 + ], + [ + -73.445605, + 45.456635 + ], + [ + -73.445878, + 45.456816 + ], + [ + -73.445952, + 45.456865 + ], + [ + -73.446142, + 45.456982 + ], + [ + -73.446227, + 45.457004 + ], + [ + -73.446332, + 45.457032 + ], + [ + -73.446489, + 45.457095 + ], + [ + -73.446596, + 45.457158 + ], + [ + -73.446702, + 45.457243 + ], + [ + -73.446812, + 45.457324 + ], + [ + -73.446913, + 45.457357 + ], + [ + -73.446965, + 45.457368 + ], + [ + -73.447054, + 45.457381 + ], + [ + -73.447226, + 45.457406 + ], + [ + -73.447335, + 45.457449 + ], + [ + -73.448552, + 45.458228 + ], + [ + -73.448934, + 45.458388 + ], + [ + -73.449458, + 45.458593 + ], + [ + -73.449707, + 45.458708 + ], + [ + -73.450153, + 45.459037 + ], + [ + -73.450441, + 45.459247 + ], + [ + -73.451481, + 45.460003 + ], + [ + -73.452547, + 45.46077 + ], + [ + -73.454622, + 45.462265 + ], + [ + -73.454692, + 45.462368 + ], + [ + -73.454988, + 45.462608 + ], + [ + -73.455597, + 45.463097 + ], + [ + -73.456345, + 45.463585 + ], + [ + -73.45668, + 45.463751 + ], + [ + -73.457165, + 45.463986 + ], + [ + -73.45779, + 45.464251 + ], + [ + -73.457936, + 45.464285 + ], + [ + -73.458332, + 45.464415 + ], + [ + -73.458709, + 45.464519 + ], + [ + -73.459184, + 45.464658 + ], + [ + -73.459848, + 45.464797 + ], + [ + -73.460341, + 45.46487 + ], + [ + -73.460876, + 45.464928 + ], + [ + -73.461292, + 45.464968 + ], + [ + -73.461888, + 45.465033 + ], + [ + -73.462599, + 45.465146 + ], + [ + -73.463202, + 45.465285 + ], + [ + -73.463734, + 45.465422 + ], + [ + -73.464137, + 45.465531 + ], + [ + -73.464519, + 45.465639 + ], + [ + -73.464829, + 45.465721 + ], + [ + -73.465021, + 45.465762 + ], + [ + -73.465202, + 45.465781 + ], + [ + -73.465352, + 45.4658 + ], + [ + -73.465498, + 45.465796 + ], + [ + -73.465647, + 45.465796 + ], + [ + -73.465791, + 45.465789 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.469032, + 45.46639 + ], + [ + -73.469043, + 45.46624 + ] + ] + }, + "id": 222, + "properties": { + "id": "16e9a239-258f-4e62-9d70-1fc150638dfa", + "data": { + "gtfs": { + "shape_id": "132_2_A" + }, + "segments": [ + { + "distanceMeters": 192, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 329, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 406, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 77, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 423, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 2654, + "travelTimeSeconds": 540 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10183, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5813.842791168849, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.79, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 6.06, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.79 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6", + "2d9ef136-ec60-4019-bd4d-d2df55cc0477", + "df277747-60c8-4b3b-bafb-24f50e6b7964", + "d15a4dea-557a-47a7-943e-d1e1a44d1a5a", + "9a8dc92f-8883-4536-8459-08c71c110b3b", + "15f5258e-a1ce-4027-8766-29bb39d270b4", + "5b05f00d-fd81-4604-b07f-a519f2a652e9", + "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", + "55ca5f95-fab1-46cf-be83-81db90d348a5", + "bd054361-ba99-4c5e-bde0-47f325682b88", + "cf532e47-3506-49e5-a1ed-43182c89aa79", + "cbe5dd37-dce1-464a-9725-6d31d37c48ab", + "8dc191fb-71db-4873-9019-c9cedd32b2f0", + "176a1328-a08b-40f7-9010-c279f0b6cf5d", + "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", + "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", + "d739fe08-5298-4356-bd9e-c48a7fee16a1", + "bfb03303-2ee6-40dd-8e8f-859a06b338a6", + "2b6f210c-4f28-43d1-b096-b48c582f5274", + "57b5655a-03f7-4fb9-a3a9-26c2523cb5bf", + "3947066a-3681-4f55-8693-0a5fac46c728", + "006d28ae-a3cc-4f45-8689-daa6cf9386f5", + "94721b0b-0bae-4300-ab61-58dc9d3fe85b", + "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", + "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", + "27e1da8c-287d-4c6b-9905-9c8c3d07097d", + "9fe6df14-62d0-4a44-8e19-85300b42de89", + "c46f92e7-e692-49ea-b12f-0df7099ee6d5", + "06cee1c3-abcc-4982-b889-e73356b844e0", + "9e4bc046-2878-4cee-af77-934e179aa77f", + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" + ], + "stops": [], + "line_id": "4584a75f-0086-4c65-a733-b04855c55230", + "segments": [ + 0, + 2, + 6, + 16, + 21, + 27, + 61, + 71, + 79, + 85, + 88, + 89, + 91, + 93, + 97, + 99, + 101, + 106, + 109, + 113, + 120, + 132, + 134, + 138, + 143, + 147, + 161, + 166, + 171, + 182 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 222, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469043, + 45.46624 + ], + [ + -73.469051, + 45.466111 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466832, + 45.466672 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.46363, + 45.4683 + ], + [ + -73.463472, + 45.468395 + ], + [ + -73.463397, + 45.468431 + ], + [ + -73.463306, + 45.468449 + ], + [ + -73.463219, + 45.468458 + ], + [ + -73.463124, + 45.468449 + ], + [ + -73.463037, + 45.468413 + ], + [ + -73.462702, + 45.468201 + ], + [ + -73.462482, + 45.468064 + ], + [ + -73.462471, + 45.468057 + ], + [ + -73.462195, + 45.467872 + ], + [ + -73.461894, + 45.467656 + ], + [ + -73.461788, + 45.46758 + ], + [ + -73.46133, + 45.467251 + ], + [ + -73.461109, + 45.467094 + ], + [ + -73.460905, + 45.466945 + ], + [ + -73.460722, + 45.466814 + ], + [ + -73.460629, + 45.466751 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457079, + 45.464307 + ], + [ + -73.45655, + 45.463924 + ], + [ + -73.455675, + 45.463282 + ], + [ + -73.454797, + 45.462637 + ], + [ + -73.454278, + 45.462276 + ], + [ + -73.453602, + 45.461785 + ], + [ + -73.453448, + 45.461674 + ], + [ + -73.453385, + 45.461629 + ], + [ + -73.45305, + 45.461381 + ], + [ + -73.45275, + 45.461169 + ], + [ + -73.452262, + 45.460814 + ], + [ + -73.449839, + 45.459072 + ], + [ + -73.449359, + 45.458774 + ], + [ + -73.448479, + 45.458383 + ], + [ + -73.448024, + 45.45813 + ], + [ + -73.447729, + 45.457941 + ], + [ + -73.447401, + 45.457716 + ], + [ + -73.447206, + 45.457532 + ], + [ + -73.447146, + 45.457473 + ], + [ + -73.447054, + 45.457381 + ], + [ + -73.446923, + 45.457262 + ], + [ + -73.446661, + 45.457072 + ], + [ + -73.44657, + 45.457027 + ], + [ + -73.446482, + 45.456996 + ], + [ + -73.446388, + 45.45696 + ], + [ + -73.446222, + 45.456915 + ], + [ + -73.445958, + 45.456735 + ], + [ + -73.445693, + 45.456555 + ], + [ + -73.445542, + 45.456451 + ], + [ + -73.445085, + 45.456131 + ], + [ + -73.444561, + 45.455812 + ], + [ + -73.444277, + 45.455609 + ], + [ + -73.443977, + 45.455424 + ], + [ + -73.443793, + 45.455352 + ], + [ + -73.443443, + 45.455253 + ], + [ + -73.443312, + 45.455218 + ], + [ + -73.443048, + 45.455091 + ], + [ + -73.442897, + 45.455046 + ], + [ + -73.442461, + 45.454915 + ], + [ + -73.442149, + 45.454821 + ], + [ + -73.441781, + 45.454681 + ], + [ + -73.441446, + 45.454519 + ], + [ + -73.44141, + 45.454501 + ], + [ + -73.440931, + 45.454231 + ], + [ + -73.440207, + 45.453716 + ], + [ + -73.440081, + 45.453626 + ], + [ + -73.440001, + 45.453569 + ], + [ + -73.43991, + 45.453501 + ], + [ + -73.439666, + 45.453317 + ], + [ + -73.439573, + 45.453251 + ], + [ + -73.439082, + 45.452902 + ], + [ + -73.43863, + 45.452573 + ], + [ + -73.438531, + 45.452502 + ], + [ + -73.437308, + 45.451615 + ], + [ + -73.43718, + 45.45152 + ], + [ + -73.437043, + 45.451417 + ], + [ + -73.436765, + 45.45122 + ], + [ + -73.436538, + 45.451086 + ], + [ + -73.436237, + 45.450946 + ], + [ + -73.435932, + 45.450844 + ], + [ + -73.435722, + 45.450794 + ], + [ + -73.4355, + 45.450753 + ], + [ + -73.435275, + 45.450728 + ], + [ + -73.434955, + 45.450707 + ], + [ + -73.434723, + 45.450689 + ], + [ + -73.434511, + 45.450663 + ], + [ + -73.434387, + 45.45064 + ], + [ + -73.434163, + 45.450586 + ], + [ + -73.434125, + 45.45058 + ], + [ + -73.433988, + 45.45056 + ], + [ + -73.433599, + 45.45039 + ], + [ + -73.432691, + 45.449779 + ], + [ + -73.431398, + 45.448909 + ], + [ + -73.431292, + 45.448821 + ], + [ + -73.431167, + 45.448894 + ], + [ + -73.430945, + 45.449024 + ], + [ + -73.430882, + 45.449061 + ], + [ + -73.430442, + 45.449318 + ], + [ + -73.427598, + 45.450978 + ], + [ + -73.427523, + 45.451027 + ], + [ + -73.427205, + 45.451234 + ], + [ + -73.427162, + 45.451264 + ], + [ + -73.427086, + 45.451315 + ], + [ + -73.424876, + 45.452814 + ], + [ + -73.424544, + 45.45304 + ], + [ + -73.422189, + 45.454637 + ], + [ + -73.421755, + 45.454932 + ], + [ + -73.421127, + 45.455358 + ], + [ + -73.420979, + 45.455496 + ], + [ + -73.420845, + 45.455619 + ], + [ + -73.420639, + 45.455911 + ], + [ + -73.420583, + 45.456092 + ], + [ + -73.420566, + 45.456243 + ], + [ + -73.420553, + 45.45636 + ], + [ + -73.420583, + 45.456538 + ], + [ + -73.420669, + 45.456926 + ], + [ + -73.420782, + 45.457385 + ], + [ + -73.420794, + 45.457434 + ], + [ + -73.420797, + 45.457471 + ], + [ + -73.420827, + 45.457764 + ], + [ + -73.420746, + 45.45806 + ], + [ + -73.420602, + 45.458262 + ], + [ + -73.420434, + 45.458418 + ], + [ + -73.420428, + 45.458422 + ], + [ + -73.419732, + 45.458956 + ], + [ + -73.419683, + 45.458994 + ], + [ + -73.419564, + 45.459076 + ], + [ + -73.419647, + 45.45913 + ], + [ + -73.419713, + 45.459174 + ], + [ + -73.422289, + 45.460877 + ], + [ + -73.422478, + 45.461003 + ], + [ + -73.423149, + 45.461446 + ], + [ + -73.42386, + 45.461916 + ], + [ + -73.424488, + 45.462332 + ], + [ + -73.424593, + 45.462401 + ], + [ + -73.424266, + 45.462642 + ], + [ + -73.421432, + 45.464741 + ], + [ + -73.421345, + 45.464806 + ], + [ + -73.417826, + 45.467407 + ], + [ + -73.417764, + 45.467453 + ], + [ + -73.41601, + 45.468749 + ], + [ + -73.415903, + 45.468828 + ], + [ + -73.415843, + 45.468873 + ], + [ + -73.415792, + 45.468914 + ], + [ + -73.414205, + 45.470087 + ], + [ + -73.414113, + 45.470154 + ], + [ + -73.411708, + 45.471942 + ], + [ + -73.411574, + 45.472042 + ], + [ + -73.409689, + 45.473434 + ], + [ + -73.407183, + 45.475284 + ], + [ + -73.406966, + 45.475444 + ], + [ + -73.406608, + 45.475247 + ], + [ + -73.406182, + 45.475012 + ], + [ + -73.405527, + 45.474658 + ], + [ + -73.405388, + 45.474584 + ], + [ + -73.404728, + 45.474217 + ], + [ + -73.404723, + 45.474214 + ], + [ + -73.404642, + 45.474169 + ], + [ + -73.403898, + 45.473773 + ], + [ + -73.403012, + 45.473281 + ], + [ + -73.402925, + 45.473236 + ], + [ + -73.402861, + 45.4732 + ], + [ + -73.402694, + 45.473434 + ], + [ + -73.402652, + 45.473497 + ], + [ + -73.402582, + 45.473596 + ], + [ + -73.402575, + 45.473605 + ], + [ + -73.402598, + 45.473682 + ], + [ + -73.402526, + 45.473758 + ], + [ + -73.402424, + 45.473834 + ], + [ + -73.402001, + 45.474387 + ], + [ + -73.40166, + 45.474855 + ], + [ + -73.401528, + 45.475044 + ], + [ + -73.40138, + 45.475237 + ], + [ + -73.401127, + 45.475466 + ], + [ + -73.40103, + 45.475568 + ], + [ + -73.400906, + 45.47563 + ], + [ + -73.400159, + 45.475999 + ], + [ + -73.399566, + 45.476293 + ], + [ + -73.39968, + 45.476383 + ], + [ + -73.399891, + 45.476595 + ], + [ + -73.3999, + 45.476608 + ], + [ + -73.399906, + 45.476613 + ], + [ + -73.399913, + 45.476622 + ], + [ + -73.39992, + 45.476631 + ], + [ + -73.399927, + 45.476635 + ], + [ + -73.399934, + 45.476644 + ], + [ + -73.399942, + 45.476653 + ], + [ + -73.399946, + 45.476656 + ], + [ + -73.39995, + 45.476658 + ], + [ + -73.399958, + 45.476667 + ], + [ + -73.399966, + 45.476671 + ], + [ + -73.399975, + 45.47668 + ], + [ + -73.399984, + 45.476685 + ], + [ + -73.399993, + 45.476694 + ], + [ + -73.400002, + 45.476698 + ], + [ + -73.400012, + 45.476703 + ], + [ + -73.400021, + 45.476712 + ], + [ + -73.400031, + 45.476716 + ], + [ + -73.400041, + 45.476721 + ], + [ + -73.400051, + 45.476725 + ], + [ + -73.400061, + 45.476734 + ], + [ + -73.400072, + 45.476739 + ], + [ + -73.400083, + 45.476743 + ], + [ + -73.400094, + 45.476748 + ], + [ + -73.400105, + 45.476752 + ], + [ + -73.400116, + 45.476757 + ], + [ + -73.400127, + 45.476761 + ], + [ + -73.400139, + 45.476766 + ], + [ + -73.400151, + 45.476766 + ], + [ + -73.400163, + 45.47677 + ], + [ + -73.400247, + 45.476799 + ], + [ + -73.400364, + 45.476838 + ], + [ + -73.401223, + 45.477154 + ], + [ + -73.401928, + 45.477414 + ], + [ + -73.402127, + 45.477488 + ], + [ + -73.403041, + 45.477817 + ], + [ + -73.403831, + 45.47811 + ], + [ + -73.404641, + 45.478398 + ], + [ + -73.405305, + 45.478644 + ], + [ + -73.405459, + 45.478701 + ], + [ + -73.405053, + 45.479272 + ], + [ + -73.404603, + 45.47987 + ], + [ + -73.404218, + 45.480391 + ], + [ + -73.404201, + 45.480413 + ], + [ + -73.40413, + 45.480504 + ], + [ + -73.403683, + 45.481106 + ], + [ + -73.40361, + 45.481236 + ], + [ + -73.403495, + 45.481444 + ], + [ + -73.403466, + 45.481488 + ], + [ + -73.40343, + 45.481524 + ], + [ + -73.403402, + 45.481556 + ], + [ + -73.403345, + 45.481556 + ], + [ + -73.403227, + 45.48156 + ], + [ + -73.401583, + 45.481551 + ], + [ + -73.401359, + 45.48155 + ], + [ + -73.401353, + 45.482238 + ], + [ + -73.4013, + 45.484402 + ], + [ + -73.4013, + 45.484402 + ], + [ + -73.401315, + 45.484488 + ], + [ + -73.400474, + 45.48563 + ], + [ + -73.400321, + 45.48584 + ] + ] + }, + "id": 223, + "properties": { + "id": "c3e8934a-41b3-457b-bcab-f96a24e42d77", + "data": { + "gtfs": { + "shape_id": "132_2_R" + }, + "segments": [ + { + "distanceMeters": 3114, + "travelTimeSeconds": 420 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 348, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 307, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 515, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 337, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 335, + "travelTimeSeconds": 98 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 53 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10714, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5813.842791168849, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.61, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 5.95, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.61 + }, + "mode": "bus", + "name": "Parc de la Cité", + "color": "#A32638", + "nodes": [ + "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "9159ff88-d9d5-4cda-a7ee-41b416c49163", + "06cee1c3-abcc-4982-b889-e73356b844e0", + "c46f92e7-e692-49ea-b12f-0df7099ee6d5", + "fdc86629-6768-46ce-9ee0-1d935d00516c", + "27e1da8c-287d-4c6b-9905-9c8c3d07097d", + "0b421cac-8896-468a-9252-ce5f1fee4e84", + "1f1619c9-3302-430c-9ade-aab4bf9e1e55", + "c74e0c90-a5ea-4788-9b1d-7bf05f50a1c4", + "657fc71f-da59-4e3a-8872-f83480cde10d", + "812fffe8-cc71-4dbc-93c9-b4301abed6c9", + "2091533d-ae73-45a6-ae28-00a869c29f04", + "d8582feb-8d83-457a-8a52-dc395b1f7390", + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", + "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", + "176a1328-a08b-40f7-9010-c279f0b6cf5d", + "8dc191fb-71db-4873-9019-c9cedd32b2f0", + "cbe5dd37-dce1-464a-9725-6d31d37c48ab", + "fb30643a-60d9-443e-8b22-29ad762aebdb", + "bd054361-ba99-4c5e-bde0-47f325682b88", + "931c7650-b24c-4431-a556-56243637e8a2", + "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", + "5b05f00d-fd81-4604-b07f-a519f2a652e9", + "69493295-4b3e-4f92-babc-7684f8cd988a", + "15f5258e-a1ce-4027-8766-29bb39d270b4", + "9a8dc92f-8883-4536-8459-08c71c110b3b", + "d15a4dea-557a-47a7-943e-d1e1a44d1a5a", + "df277747-60c8-4b3b-bafb-24f50e6b7964", + "2d9ef136-ec60-4019-bd4d-d2df55cc0477", + "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6" + ], + "stops": [], + "line_id": "4584a75f-0086-4c65-a733-b04855c55230", + "segments": [ + 0, + 98, + 104, + 111, + 114, + 128, + 131, + 135, + 139, + 144, + 146, + 156, + 169, + 173, + 176, + 178, + 180, + 184, + 186, + 188, + 189, + 193, + 204, + 216, + 250, + 253, + 258, + 263, + 273, + 277 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 223, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.45031, + 45.600786 + ], + [ + -73.45028, + 45.600747 + ], + [ + -73.45017, + 45.600666 + ], + [ + -73.450081, + 45.60062 + ], + [ + -73.449968, + 45.600603 + ], + [ + -73.449925, + 45.600607 + ], + [ + -73.449868, + 45.600621 + ], + [ + -73.449802, + 45.600661 + ], + [ + -73.449715, + 45.600713 + ], + [ + -73.449674, + 45.600743 + ], + [ + -73.449661, + 45.600772 + ], + [ + -73.449666, + 45.600812 + ], + [ + -73.449924, + 45.601045 + ], + [ + -73.449978, + 45.601072 + ], + [ + -73.450055, + 45.601083 + ], + [ + -73.45017, + 45.60109 + ], + [ + -73.450263, + 45.601099 + ], + [ + -73.450328, + 45.601118 + ], + [ + -73.450379, + 45.601155 + ], + [ + -73.450393, + 45.601201 + ], + [ + -73.450376, + 45.60125 + ], + [ + -73.450362, + 45.601293 + ], + [ + -73.450349, + 45.601366 + ], + [ + -73.450328, + 45.601396 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450247, + 45.601412 + ], + [ + -73.450159, + 45.601408 + ], + [ + -73.450117, + 45.6014 + ], + [ + -73.450076, + 45.601382 + ], + [ + -73.450018, + 45.601356 + ], + [ + -73.449945, + 45.60132 + ], + [ + -73.449881, + 45.6013 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.447887, + 45.599794 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.446902, + 45.599 + ], + [ + -73.446713, + 45.59886 + ], + [ + -73.446259, + 45.598527 + ], + [ + -73.445375, + 45.597909 + ], + [ + -73.445261, + 45.597829 + ], + [ + -73.444803, + 45.597518 + ], + [ + -73.443553, + 45.596668 + ], + [ + -73.443394, + 45.596559 + ], + [ + -73.442992, + 45.59628 + ], + [ + -73.44284, + 45.596175 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.439894, + 45.593981 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438239, + 45.592763 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.437022, + 45.591849 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.43726, + 45.590957 + ], + [ + -73.437547, + 45.590791 + ], + [ + -73.438173, + 45.590429 + ], + [ + -73.438715, + 45.590114 + ], + [ + -73.438952, + 45.589961 + ], + [ + -73.439421, + 45.589651 + ], + [ + -73.439514, + 45.589595 + ], + [ + -73.439556, + 45.58957 + ], + [ + -73.43977, + 45.589417 + ], + [ + -73.43999, + 45.589251 + ], + [ + -73.440248, + 45.589054 + ], + [ + -73.440356, + 45.588972 + ], + [ + -73.440499, + 45.588855 + ], + [ + -73.440849, + 45.588559 + ], + [ + -73.441414, + 45.588033 + ], + [ + -73.441626, + 45.587839 + ], + [ + -73.442055, + 45.587448 + ], + [ + -73.442542, + 45.586998 + ], + [ + -73.443377, + 45.586239 + ], + [ + -73.4435, + 45.586126 + ], + [ + -73.444477, + 45.585232 + ], + [ + -73.444685, + 45.585042 + ], + [ + -73.445389, + 45.584396 + ], + [ + -73.445533, + 45.584264 + ], + [ + -73.445863, + 45.583995 + ], + [ + -73.446073, + 45.583824 + ], + [ + -73.446281, + 45.583662 + ], + [ + -73.446365, + 45.583594 + ], + [ + -73.446509, + 45.583477 + ], + [ + -73.446663, + 45.583334 + ], + [ + -73.446759, + 45.583239 + ], + [ + -73.446885, + 45.583095 + ], + [ + -73.447026, + 45.582915 + ], + [ + -73.44712, + 45.582776 + ], + [ + -73.44719, + 45.582652 + ], + [ + -73.447216, + 45.582605 + ], + [ + -73.447288, + 45.582456 + ], + [ + -73.447348, + 45.582322 + ], + [ + -73.447422, + 45.58211 + ], + [ + -73.447475, + 45.581885 + ], + [ + -73.447497, + 45.581732 + ], + [ + -73.447521, + 45.581602 + ], + [ + -73.447516, + 45.581462 + ], + [ + -73.447513, + 45.581287 + ], + [ + -73.447477, + 45.581057 + ], + [ + -73.447325, + 45.580308 + ], + [ + -73.447286, + 45.580117 + ], + [ + -73.447144, + 45.579424 + ], + [ + -73.447089, + 45.579152 + ], + [ + -73.447056, + 45.578992 + ], + [ + -73.447038, + 45.578907 + ], + [ + -73.446989, + 45.578673 + ], + [ + -73.446923, + 45.578342 + ], + [ + -73.446764, + 45.577557 + ], + [ + -73.446738, + 45.577422 + ], + [ + -73.446692, + 45.57717 + ], + [ + -73.446671, + 45.576945 + ], + [ + -73.446671, + 45.57667 + ], + [ + -73.446671, + 45.576571 + ], + [ + -73.44669, + 45.57644 + ], + [ + -73.44669, + 45.576436 + ], + [ + -73.446707, + 45.576333 + ], + [ + -73.446734, + 45.576243 + ], + [ + -73.446807, + 45.576018 + ], + [ + -73.446886, + 45.575843 + ], + [ + -73.446894, + 45.575825 + ], + [ + -73.44709, + 45.575409 + ], + [ + -73.447166, + 45.575249 + ], + [ + -73.447388, + 45.574789 + ], + [ + -73.447238, + 45.574749 + ], + [ + -73.446746, + 45.574587 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.443147, + 45.572802 + ], + [ + -73.443228, + 45.572879 + ], + [ + -73.443273, + 45.572955 + ], + [ + -73.443271, + 45.573 + ], + [ + -73.443276, + 45.573125 + ], + [ + -73.443281, + 45.573166 + ], + [ + -73.443386, + 45.57326 + ], + [ + -73.443502, + 45.573319 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.44468, + 45.573697 + ], + [ + -73.444697, + 45.573706 + ], + [ + -73.444729, + 45.573713 + ], + [ + -73.444769, + 45.573716 + ], + [ + -73.444831, + 45.573715 + ], + [ + -73.444884, + 45.573708 + ], + [ + -73.44491, + 45.573694 + ], + [ + -73.444915, + 45.573687 + ], + [ + -73.444953, + 45.573633 + ], + [ + -73.44492, + 45.573618 + ], + [ + -73.444872, + 45.573601 + ], + [ + -73.444829, + 45.573598 + ], + [ + -73.444766, + 45.573611 + ], + [ + -73.444749, + 45.573615 + ], + [ + -73.44471, + 45.573635 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.444095, + 45.5735 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.443539, + 45.573203 + ], + [ + -73.443523, + 45.573155 + ], + [ + -73.44348, + 45.573034 + ], + [ + -73.443427, + 45.572912 + ], + [ + -73.44336, + 45.572841 + ], + [ + -73.443253, + 45.572772 + ], + [ + -73.443199, + 45.572746 + ], + [ + -73.443114, + 45.572731 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.446746, + 45.574587 + ], + [ + -73.447238, + 45.574749 + ], + [ + -73.447388, + 45.574789 + ], + [ + -73.447436, + 45.574664 + ], + [ + -73.447623, + 45.574219 + ], + [ + -73.44779, + 45.573737 + ], + [ + -73.447926, + 45.573404 + ], + [ + -73.448288, + 45.57264 + ], + [ + -73.448668, + 45.571794 + ], + [ + -73.449152, + 45.570638 + ], + [ + -73.449223, + 45.570544 + ], + [ + -73.449264, + 45.570454 + ], + [ + -73.449543, + 45.569814 + ], + [ + -73.449722, + 45.56941 + ], + [ + -73.449947, + 45.568902 + ], + [ + -73.449982, + 45.56883 + ], + [ + -73.450051, + 45.568681 + ], + [ + -73.450055, + 45.568672 + ], + [ + -73.450057, + 45.568668 + ], + [ + -73.450059, + 45.568663 + ], + [ + -73.450061, + 45.568659 + ], + [ + -73.450063, + 45.568654 + ], + [ + -73.450065, + 45.56865 + ], + [ + -73.450067, + 45.568645 + ], + [ + -73.450069, + 45.568641 + ], + [ + -73.450071, + 45.568636 + ], + [ + -73.450072, + 45.568632 + ], + [ + -73.450074, + 45.568627 + ], + [ + -73.450076, + 45.568623 + ], + [ + -73.450078, + 45.568618 + ], + [ + -73.45008, + 45.568618 + ], + [ + -73.450082, + 45.568614 + ], + [ + -73.450084, + 45.568609 + ], + [ + -73.450086, + 45.568605 + ], + [ + -73.450087, + 45.5686 + ], + [ + -73.450089, + 45.568596 + ], + [ + -73.450091, + 45.568591 + ], + [ + -73.450093, + 45.568587 + ], + [ + -73.450095, + 45.568582 + ], + [ + -73.450097, + 45.568578 + ], + [ + -73.450099, + 45.568573 + ], + [ + -73.450101, + 45.568569 + ], + [ + -73.450102, + 45.568564 + ], + [ + -73.450104, + 45.56856 + ], + [ + -73.450106, + 45.568555 + ], + [ + -73.450108, + 45.568551 + ], + [ + -73.45011, + 45.568546 + ], + [ + -73.450112, + 45.568542 + ], + [ + -73.450114, + 45.568537 + ], + [ + -73.450115, + 45.568533 + ], + [ + -73.450117, + 45.568528 + ], + [ + -73.450119, + 45.568524 + ], + [ + -73.45012, + 45.568519 + ], + [ + -73.450122, + 45.568519 + ], + [ + -73.450124, + 45.568515 + ], + [ + -73.450126, + 45.56851 + ], + [ + -73.450128, + 45.568506 + ], + [ + -73.450129, + 45.568501 + ], + [ + -73.450131, + 45.568497 + ], + [ + -73.450133, + 45.568492 + ], + [ + -73.450134, + 45.568489 + ], + [ + -73.450134, + 45.568488 + ], + [ + -73.450136, + 45.568483 + ], + [ + -73.450138, + 45.568479 + ], + [ + -73.45014, + 45.568474 + ], + [ + -73.450141, + 45.56847 + ], + [ + -73.450143, + 45.568465 + ], + [ + -73.450145, + 45.568461 + ], + [ + -73.450146, + 45.568456 + ], + [ + -73.450148, + 45.568452 + ], + [ + -73.45015, + 45.568447 + ], + [ + -73.450151, + 45.568443 + ], + [ + -73.450153, + 45.568438 + ], + [ + -73.450154, + 45.568434 + ], + [ + -73.450156, + 45.568429 + ], + [ + -73.450158, + 45.568425 + ], + [ + -73.45016, + 45.56842 + ], + [ + -73.450161, + 45.568416 + ], + [ + -73.450163, + 45.568411 + ], + [ + -73.450164, + 45.568407 + ], + [ + -73.450166, + 45.568402 + ], + [ + -73.450168, + 45.568398 + ], + [ + -73.450169, + 45.568393 + ], + [ + -73.450171, + 45.568393 + ], + [ + -73.450173, + 45.568389 + ], + [ + -73.450174, + 45.568384 + ], + [ + -73.450175, + 45.56838 + ], + [ + -73.450177, + 45.568375 + ], + [ + -73.450179, + 45.568371 + ], + [ + -73.45018, + 45.568366 + ], + [ + -73.450182, + 45.568362 + ], + [ + -73.450183, + 45.568357 + ], + [ + -73.450185, + 45.568353 + ], + [ + -73.450186, + 45.568348 + ], + [ + -73.450188, + 45.568344 + ], + [ + -73.450189, + 45.568339 + ], + [ + -73.450191, + 45.568335 + ], + [ + -73.450192, + 45.56833 + ], + [ + -73.450194, + 45.568326 + ], + [ + -73.450195, + 45.568321 + ], + [ + -73.450197, + 45.568317 + ], + [ + -73.450198, + 45.568312 + ], + [ + -73.4502, + 45.568308 + ], + [ + -73.450201, + 45.568303 + ], + [ + -73.450203, + 45.568299 + ], + [ + -73.450204, + 45.568294 + ], + [ + -73.450205, + 45.56829 + ], + [ + -73.450207, + 45.568285 + ], + [ + -73.450208, + 45.568281 + ], + [ + -73.45021, + 45.568276 + ], + [ + -73.450211, + 45.568272 + ], + [ + -73.450213, + 45.568267 + ], + [ + -73.450214, + 45.568263 + ], + [ + -73.450215, + 45.568258 + ], + [ + -73.450217, + 45.568254 + ], + [ + -73.450218, + 45.568249 + ], + [ + -73.450219, + 45.568245 + ], + [ + -73.450221, + 45.56824 + ], + [ + -73.450222, + 45.568236 + ], + [ + -73.450224, + 45.568231 + ], + [ + -73.450225, + 45.568227 + ], + [ + -73.450226, + 45.568227 + ], + [ + -73.450228, + 45.568222 + ], + [ + -73.450229, + 45.568218 + ], + [ + -73.45023, + 45.568213 + ], + [ + -73.450232, + 45.568209 + ], + [ + -73.450233, + 45.568204 + ], + [ + -73.450234, + 45.5682 + ], + [ + -73.450236, + 45.568195 + ], + [ + -73.450237, + 45.568191 + ], + [ + -73.450238, + 45.568186 + ], + [ + -73.45024, + 45.568182 + ], + [ + -73.450241, + 45.568177 + ], + [ + -73.450242, + 45.568173 + ], + [ + -73.450244, + 45.568168 + ], + [ + -73.450245, + 45.568164 + ], + [ + -73.450246, + 45.568159 + ], + [ + -73.450247, + 45.568155 + ], + [ + -73.450248, + 45.56815 + ], + [ + -73.45025, + 45.568146 + ], + [ + -73.450251, + 45.568141 + ], + [ + -73.450252, + 45.568137 + ], + [ + -73.450253, + 45.568132 + ], + [ + -73.450254, + 45.568128 + ], + [ + -73.450256, + 45.568123 + ], + [ + -73.450257, + 45.568119 + ], + [ + -73.450258, + 45.568114 + ], + [ + -73.450259, + 45.56811 + ], + [ + -73.45026, + 45.568105 + ], + [ + -73.450262, + 45.568101 + ], + [ + -73.450263, + 45.568096 + ], + [ + -73.450264, + 45.568092 + ], + [ + -73.450265, + 45.568088 + ], + [ + -73.450266, + 45.568083 + ], + [ + -73.450267, + 45.568079 + ], + [ + -73.450268, + 45.568074 + ], + [ + -73.45027, + 45.56807 + ], + [ + -73.450271, + 45.568065 + ], + [ + -73.450272, + 45.568061 + ], + [ + -73.450273, + 45.568056 + ], + [ + -73.450274, + 45.568052 + ], + [ + -73.450275, + 45.568047 + ], + [ + -73.450277, + 45.568043 + ], + [ + -73.450277, + 45.568038 + ], + [ + -73.450279, + 45.568034 + ], + [ + -73.45028, + 45.568029 + ], + [ + -73.450281, + 45.568025 + ], + [ + -73.450282, + 45.56802 + ], + [ + -73.450283, + 45.568016 + ], + [ + -73.450284, + 45.568011 + ], + [ + -73.450285, + 45.568007 + ], + [ + -73.450286, + 45.568002 + ], + [ + -73.450287, + 45.567998 + ], + [ + -73.450288, + 45.567993 + ], + [ + -73.450289, + 45.567989 + ], + [ + -73.45029, + 45.567984 + ], + [ + -73.450291, + 45.56798 + ], + [ + -73.450292, + 45.567975 + ], + [ + -73.450293, + 45.567971 + ], + [ + -73.450294, + 45.567966 + ], + [ + -73.450295, + 45.567962 + ], + [ + -73.450296, + 45.567957 + ], + [ + -73.450297, + 45.567957 + ], + [ + -73.450298, + 45.567953 + ], + [ + -73.450299, + 45.567948 + ], + [ + -73.4503, + 45.567944 + ], + [ + -73.450301, + 45.567939 + ], + [ + -73.450301, + 45.567935 + ], + [ + -73.450302, + 45.56793 + ], + [ + -73.450303, + 45.567926 + ], + [ + -73.450304, + 45.567921 + ], + [ + -73.450305, + 45.567917 + ], + [ + -73.450306, + 45.567912 + ], + [ + -73.450307, + 45.567908 + ], + [ + -73.450308, + 45.567903 + ], + [ + -73.450309, + 45.567899 + ], + [ + -73.450309, + 45.567894 + ], + [ + -73.45031, + 45.56789 + ], + [ + -73.450311, + 45.567885 + ], + [ + -73.450312, + 45.567881 + ], + [ + -73.450313, + 45.567876 + ], + [ + -73.450314, + 45.567872 + ], + [ + -73.450315, + 45.567867 + ], + [ + -73.450316, + 45.567863 + ], + [ + -73.450316, + 45.567858 + ], + [ + -73.450317, + 45.567854 + ], + [ + -73.450318, + 45.567849 + ], + [ + -73.450319, + 45.567845 + ], + [ + -73.45032, + 45.56784 + ], + [ + -73.45032, + 45.567836 + ], + [ + -73.450321, + 45.567831 + ], + [ + -73.450322, + 45.567827 + ], + [ + -73.450323, + 45.567822 + ], + [ + -73.450324, + 45.567818 + ], + [ + -73.450324, + 45.567813 + ], + [ + -73.450325, + 45.567809 + ], + [ + -73.450326, + 45.567804 + ], + [ + -73.450326, + 45.5678 + ], + [ + -73.450327, + 45.567795 + ], + [ + -73.450328, + 45.567791 + ], + [ + -73.450329, + 45.567786 + ], + [ + -73.450329, + 45.567782 + ], + [ + -73.45033, + 45.567777 + ], + [ + -73.450331, + 45.567773 + ], + [ + -73.450332, + 45.567768 + ], + [ + -73.450332, + 45.567764 + ], + [ + -73.450333, + 45.567759 + ], + [ + -73.450334, + 45.567755 + ], + [ + -73.450334, + 45.56775 + ], + [ + -73.450335, + 45.567746 + ], + [ + -73.450336, + 45.567741 + ], + [ + -73.450336, + 45.567737 + ], + [ + -73.450337, + 45.567732 + ], + [ + -73.450337, + 45.567728 + ], + [ + -73.450338, + 45.567723 + ], + [ + -73.450339, + 45.567719 + ], + [ + -73.450339, + 45.567714 + ], + [ + -73.45034, + 45.56771 + ], + [ + -73.45034, + 45.567705 + ], + [ + -73.450341, + 45.567701 + ], + [ + -73.450342, + 45.567696 + ], + [ + -73.450342, + 45.567692 + ], + [ + -73.450343, + 45.567687 + ], + [ + -73.450343, + 45.567683 + ], + [ + -73.450344, + 45.567678 + ], + [ + -73.450345, + 45.567674 + ], + [ + -73.450345, + 45.567669 + ], + [ + -73.450346, + 45.567665 + ], + [ + -73.450346, + 45.56766 + ], + [ + -73.450347, + 45.567656 + ], + [ + -73.450347, + 45.567651 + ], + [ + -73.450348, + 45.567647 + ], + [ + -73.450348, + 45.567642 + ], + [ + -73.450349, + 45.567638 + ], + [ + -73.450349, + 45.567633 + ], + [ + -73.45035, + 45.567629 + ], + [ + -73.45035, + 45.567624 + ], + [ + -73.450351, + 45.56762 + ], + [ + -73.450351, + 45.567615 + ], + [ + -73.450352, + 45.567611 + ], + [ + -73.450352, + 45.567606 + ], + [ + -73.450353, + 45.567602 + ], + [ + -73.450353, + 45.567597 + ], + [ + -73.450353, + 45.567593 + ], + [ + -73.450354, + 45.567588 + ], + [ + -73.450355, + 45.567584 + ], + [ + -73.450355, + 45.567579 + ], + [ + -73.450355, + 45.567575 + ], + [ + -73.450356, + 45.56757 + ], + [ + -73.450356, + 45.567566 + ], + [ + -73.450357, + 45.567561 + ], + [ + -73.450357, + 45.567557 + ], + [ + -73.450357, + 45.567552 + ], + [ + -73.45036, + 45.567548 + ], + [ + -73.450378, + 45.56705 + ], + [ + -73.450434, + 45.565568 + ], + [ + -73.450469, + 45.564632 + ], + [ + -73.450501, + 45.563818 + ], + [ + -73.450514, + 45.563467 + ], + [ + -73.450527, + 45.563071 + ], + [ + -73.450546, + 45.562441 + ], + [ + -73.450541, + 45.561888 + ], + [ + -73.450523, + 45.561676 + ], + [ + -73.450494, + 45.561271 + ], + [ + -73.450448, + 45.560915 + ], + [ + -73.4504, + 45.560547 + ], + [ + -73.450322, + 45.559971 + ], + [ + -73.450252, + 45.559679 + ], + [ + -73.44974, + 45.555873 + ], + [ + -73.449726, + 45.555769 + ], + [ + -73.449715, + 45.555674 + ], + [ + -73.4497, + 45.555533 + ], + [ + -73.449606, + 45.554861 + ], + [ + -73.449515, + 45.554197 + ], + [ + -73.44943, + 45.553558 + ], + [ + -73.449359, + 45.55301 + ], + [ + -73.449348, + 45.552926 + ], + [ + -73.449275, + 45.55238 + ], + [ + -73.449202, + 45.551882 + ], + [ + -73.449191, + 45.551808 + ], + [ + -73.449191, + 45.551792 + ], + [ + -73.44919, + 45.551706 + ], + [ + -73.44919, + 45.551642 + ], + [ + -73.449198, + 45.551397 + ], + [ + -73.449202, + 45.551292 + ], + [ + -73.449207, + 45.551245 + ], + [ + -73.449234, + 45.550967 + ], + [ + -73.449323, + 45.550515 + ], + [ + -73.449468, + 45.550071 + ], + [ + -73.449599, + 45.549777 + ], + [ + -73.449826, + 45.549339 + ], + [ + -73.449967, + 45.549124 + ], + [ + -73.450285, + 45.548711 + ], + [ + -73.450533, + 45.54844 + ], + [ + -73.450894, + 45.548098 + ], + [ + -73.451191, + 45.547866 + ], + [ + -73.45159, + 45.547572 + ], + [ + -73.451911, + 45.547356 + ], + [ + -73.452115, + 45.547229 + ], + [ + -73.452185, + 45.547185 + ], + [ + -73.452243, + 45.547149 + ], + [ + -73.452859, + 45.546749 + ], + [ + -73.452912, + 45.546715 + ], + [ + -73.453255, + 45.546529 + ], + [ + -73.453306, + 45.546494 + ], + [ + -73.45375, + 45.546193 + ], + [ + -73.454098, + 45.545958 + ], + [ + -73.454398, + 45.545757 + ], + [ + -73.454536, + 45.545665 + ], + [ + -73.454687, + 45.545566 + ], + [ + -73.454901, + 45.545427 + ], + [ + -73.455048, + 45.545333 + ], + [ + -73.455094, + 45.545301 + ], + [ + -73.455158, + 45.545252 + ], + [ + -73.455247, + 45.545184 + ], + [ + -73.455332, + 45.545094 + ], + [ + -73.455461, + 45.54495 + ], + [ + -73.455559, + 45.544829 + ], + [ + -73.455739, + 45.544361 + ], + [ + -73.455815, + 45.543632 + ], + [ + -73.455926, + 45.54295 + ], + [ + -73.455948, + 45.542813 + ], + [ + -73.455971, + 45.542683 + ], + [ + -73.456034, + 45.542341 + ], + [ + -73.456127, + 45.541828 + ], + [ + -73.45622, + 45.541171 + ], + [ + -73.456327, + 45.540495 + ], + [ + -73.456345, + 45.540384 + ], + [ + -73.456347, + 45.540366 + ], + [ + -73.456509, + 45.539394 + ], + [ + -73.456509, + 45.539219 + ], + [ + -73.456656, + 45.5384 + ], + [ + -73.456662, + 45.53837 + ], + [ + -73.456667, + 45.538348 + ], + [ + -73.456674, + 45.53831 + ], + [ + -73.456716, + 45.53818 + ], + [ + -73.456753, + 45.538063 + ], + [ + -73.456906, + 45.537595 + ], + [ + -73.457034, + 45.537289 + ], + [ + -73.457312, + 45.536745 + ], + [ + -73.457525, + 45.536412 + ], + [ + -73.457645, + 45.53623 + ], + [ + -73.457717, + 45.536119 + ], + [ + -73.457866, + 45.535926 + ], + [ + -73.458063, + 45.535706 + ], + [ + -73.458203, + 45.535555 + ], + [ + -73.45852, + 45.535215 + ], + [ + -73.45895, + 45.534833 + ], + [ + -73.459195, + 45.53464 + ], + [ + -73.460968, + 45.533133 + ], + [ + -73.461486, + 45.532622 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.46241, + 45.532826 + ], + [ + -73.462751, + 45.533003 + ], + [ + -73.463873, + 45.533665 + ], + [ + -73.464875, + 45.534543 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.46877, + 45.537039 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469941, + 45.537318 + ], + [ + -73.470305, + 45.537406 + ], + [ + -73.470749, + 45.537487 + ], + [ + -73.471335, + 45.537563 + ], + [ + -73.471845, + 45.53759 + ], + [ + -73.472146, + 45.537591 + ], + [ + -73.472355, + 45.537591 + ], + [ + -73.473126, + 45.537555 + ], + [ + -73.473826, + 45.537492 + ], + [ + -73.474517, + 45.537429 + ], + [ + -73.474599, + 45.537423 + ], + [ + -73.475173, + 45.53738 + ], + [ + -73.47563, + 45.537344 + ], + [ + -73.476192, + 45.537353 + ], + [ + -73.476662, + 45.537394 + ], + [ + -73.477026, + 45.537434 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.477848, + 45.537591 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491035, + 45.541427 + ], + [ + -73.491084, + 45.541584 + ], + [ + -73.491099, + 45.541724 + ], + [ + -73.491103, + 45.541798 + ], + [ + -73.491106, + 45.541854 + ], + [ + -73.491092, + 45.542156 + ], + [ + -73.491081, + 45.542381 + ], + [ + -73.49104, + 45.543146 + ], + [ + -73.490998, + 45.543726 + ], + [ + -73.491037, + 45.544117 + ], + [ + -73.491071, + 45.544252 + ], + [ + -73.491113, + 45.544396 + ], + [ + -73.491272, + 45.544698 + ], + [ + -73.491367, + 45.544855 + ], + [ + -73.491449, + 45.544981 + ], + [ + -73.491608, + 45.545148 + ], + [ + -73.491886, + 45.545409 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.492779, + 45.546119 + ], + [ + -73.492868, + 45.546192 + ], + [ + -73.493835, + 45.546966 + ], + [ + -73.494604, + 45.547573 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.495727, + 45.54848 + ], + [ + -73.495811, + 45.548549 + ], + [ + -73.496313, + 45.548947 + ], + [ + -73.49673, + 45.549278 + ], + [ + -73.497087, + 45.549548 + ], + [ + -73.49736, + 45.549719 + ], + [ + -73.497501, + 45.549805 + ], + [ + -73.497722, + 45.549908 + ], + [ + -73.497944, + 45.549998 + ], + [ + -73.498136, + 45.55007 + ], + [ + -73.498405, + 45.550151 + ], + [ + -73.498716, + 45.550237 + ], + [ + -73.499009, + 45.550295 + ], + [ + -73.499514, + 45.550349 + ], + [ + -73.499763, + 45.550363 + ], + [ + -73.501515, + 45.550448 + ], + [ + -73.502446, + 45.550493 + ], + [ + -73.502797, + 45.550502 + ], + [ + -73.502913, + 45.550498 + ], + [ + -73.503017, + 45.550484 + ], + [ + -73.503194, + 45.550453 + ], + [ + -73.503355, + 45.550399 + ], + [ + -73.503504, + 45.550327 + ], + [ + -73.503636, + 45.550237 + ], + [ + -73.503751, + 45.550133 + ], + [ + -73.503955, + 45.549904 + ], + [ + -73.504046, + 45.549787 + ], + [ + -73.504119, + 45.549647 + ], + [ + -73.50416, + 45.549508 + ], + [ + -73.504212, + 45.548909 + ], + [ + -73.504289, + 45.548585 + ], + [ + -73.504342, + 45.548423 + ], + [ + -73.504444, + 45.548176 + ], + [ + -73.504477, + 45.548095 + ], + [ + -73.504558, + 45.547933 + ], + [ + -73.504654, + 45.547771 + ], + [ + -73.504887, + 45.547461 + ], + [ + -73.505281, + 45.546997 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.522159, + 45.530465 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 224, + "properties": { + "id": "364c94c0-e0b3-4a4a-8f0f-d10d92825944", + "data": { + "gtfs": { + "shape_id": "161_1_A" + }, + "segments": [ + { + "distanceMeters": 439, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 78, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 335, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 83, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 397, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 91, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 1001, + "travelTimeSeconds": 166 + }, + { + "distanceMeters": 1266, + "travelTimeSeconds": 151 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 443, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 804, + "travelTimeSeconds": 98 + }, + { + "distanceMeters": 446, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 587, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 502, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 792, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 721, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 1184, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 524, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 5141, + "travelTimeSeconds": 600 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 246, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 18987, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10160.529949416274, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.72, + "travelTimeWithoutDwellTimesSeconds": 2460, + "operatingTimeWithLayoverTimeSeconds": 2706, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2460, + "operatingSpeedWithLayoverMetersPerSecond": 7.02, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.72 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "bbe875bc-cb85-4a61-923d-53ee4746a213", + "96c08dfd-d2e7-4584-a6b3-36c3a2e1abcc", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "4c25cc73-ac26-4e31-9812-bc4ad7f583b5", + "49262d07-72b2-466f-bf49-88656466e4a4", + "0872c388-8faf-4852-b4ce-cf3f6312e0ef", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "e177b755-3bcf-4a35-afd7-a49fb240f250", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", + "2cdb15ef-cdbd-4b50-8947-cb9baee33626", + "7b512bac-ad2d-4d5a-87d8-173290a7b311", + "44ce6da8-ee79-4e09-9c16-f31566643c0c", + "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", + "6c99422e-05cb-48dc-811f-162fee50cf80", + "7c5ab4a9-cc9e-4b88-bc68-d214d8c04000", + "a83efd44-0d7a-49ef-b344-ef523d875f87", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "ae6e0f03-aee3-4f3b-9a79-98bb90a35a7a", + "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "50e25e6e-b3a0-49ca-b0a6-22261b688cbf", + "b66a9525-9dd9-49fa-b088-bde983b8c260", + "95cc31bb-b82e-4ab9-921f-e5a8cd8454c3", + "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", + "19d70945-d3db-430f-90e2-ad67901fda8d", + "f8690123-add8-4e85-bbf6-f84c4b712589", + "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", + "c77b3ec3-667e-4b8e-a8ba-613daafce3d4", + "8a5c9ba1-a597-4c12-90c9-b58f8d4f8d95", + "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "06d26eca-08e9-467e-9ff0-9595778162a0", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "038a22ba-4928-42fc-aaed-50fbd831df37", + "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", + "64648218-6b63-436c-9a46-4770987ba432", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "082003fb-77eb-4f62-9ca9-1070628f1832", + "segments": [ + 0, + 37, + 43, + 46, + 49, + 52, + 58, + 65, + 70, + 76, + 80, + 88, + 90, + 94, + 104, + 115, + 118, + 122, + 129, + 185, + 267, + 481, + 486, + 495, + 505, + 525, + 534, + 547, + 553, + 559, + 568, + 577, + 592, + 613, + 645, + 660, + 665 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 224, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.519854, + 45.532716 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.502818, + 45.54899 + ], + [ + -73.502212, + 45.54962 + ], + [ + -73.501984, + 45.549836 + ], + [ + -73.50186, + 45.549926 + ], + [ + -73.501728, + 45.550007 + ], + [ + -73.501592, + 45.550079 + ], + [ + -73.501452, + 45.550133 + ], + [ + -73.501309, + 45.550183 + ], + [ + -73.50116, + 45.550219 + ], + [ + -73.501011, + 45.55025 + ], + [ + -73.500705, + 45.550282 + ], + [ + -73.500547, + 45.550286 + ], + [ + -73.49991, + 45.550295 + ], + [ + -73.499238, + 45.550226 + ], + [ + -73.498778, + 45.550153 + ], + [ + -73.498464, + 45.550065 + ], + [ + -73.498138, + 45.54995 + ], + [ + -73.497746, + 45.549767 + ], + [ + -73.497494, + 45.54961 + ], + [ + -73.497234, + 45.549428 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494896, + 45.547544 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492662, + 45.545771 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.491985, + 45.545197 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.490598, + 45.540698 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476944, + 45.537232 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.469351, + 45.536988 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.461201, + 45.532558 + ], + [ + -73.46089, + 45.532868 + ], + [ + -73.460866, + 45.532892 + ], + [ + -73.460757, + 45.533003 + ], + [ + -73.459629, + 45.533974 + ], + [ + -73.458963, + 45.534509 + ], + [ + -73.458731, + 45.534693 + ], + [ + -73.458241, + 45.535152 + ], + [ + -73.457986, + 45.535404 + ], + [ + -73.457781, + 45.535638 + ], + [ + -73.457342, + 45.536214 + ], + [ + -73.457291, + 45.536297 + ], + [ + -73.45713, + 45.536556 + ], + [ + -73.456948, + 45.536857 + ], + [ + -73.456811, + 45.537145 + ], + [ + -73.456744, + 45.5373 + ], + [ + -73.456664, + 45.537487 + ], + [ + -73.45651, + 45.537948 + ], + [ + -73.456485, + 45.538022 + ], + [ + -73.456445, + 45.538144 + ], + [ + -73.456357, + 45.53853 + ], + [ + -73.456221, + 45.539372 + ], + [ + -73.456144, + 45.539984 + ], + [ + -73.456087, + 45.540301 + ], + [ + -73.456076, + 45.540361 + ], + [ + -73.455916, + 45.541266 + ], + [ + -73.455834, + 45.54181 + ], + [ + -73.455729, + 45.542497 + ], + [ + -73.455702, + 45.542678 + ], + [ + -73.455523, + 45.543849 + ], + [ + -73.455509, + 45.543938 + ], + [ + -73.455433, + 45.54441 + ], + [ + -73.455289, + 45.544748 + ], + [ + -73.455178, + 45.54491 + ], + [ + -73.455067, + 45.545031 + ], + [ + -73.454985, + 45.545117 + ], + [ + -73.45488, + 45.545202 + ], + [ + -73.454712, + 45.545301 + ], + [ + -73.454644, + 45.545349 + ], + [ + -73.454517, + 45.54544 + ], + [ + -73.454362, + 45.54553 + ], + [ + -73.454039, + 45.545719 + ], + [ + -73.453554, + 45.546052 + ], + [ + -73.453387, + 45.546196 + ], + [ + -73.453186, + 45.546448 + ], + [ + -73.45304, + 45.546592 + ], + [ + -73.452912, + 45.546715 + ], + [ + -73.452859, + 45.546749 + ], + [ + -73.452375, + 45.547064 + ], + [ + -73.452243, + 45.547149 + ], + [ + -73.452185, + 45.547185 + ], + [ + -73.451911, + 45.547356 + ], + [ + -73.45159, + 45.547572 + ], + [ + -73.451191, + 45.547866 + ], + [ + -73.450894, + 45.548098 + ], + [ + -73.450533, + 45.54844 + ], + [ + -73.450285, + 45.548711 + ], + [ + -73.449967, + 45.549124 + ], + [ + -73.449826, + 45.549339 + ], + [ + -73.449599, + 45.549777 + ], + [ + -73.449468, + 45.550071 + ], + [ + -73.449323, + 45.550515 + ], + [ + -73.449234, + 45.550967 + ], + [ + -73.449207, + 45.551245 + ], + [ + -73.449202, + 45.551292 + ], + [ + -73.449198, + 45.551397 + ], + [ + -73.44919, + 45.551619 + ], + [ + -73.44919, + 45.551642 + ], + [ + -73.44919, + 45.551706 + ], + [ + -73.449191, + 45.551792 + ], + [ + -73.449191, + 45.551808 + ], + [ + -73.449275, + 45.55238 + ], + [ + -73.449348, + 45.552926 + ], + [ + -73.449359, + 45.55301 + ], + [ + -73.44943, + 45.553558 + ], + [ + -73.449515, + 45.554197 + ], + [ + -73.449606, + 45.554861 + ], + [ + -73.4497, + 45.555533 + ], + [ + -73.449702, + 45.555547 + ], + [ + -73.449715, + 45.555674 + ], + [ + -73.449726, + 45.555769 + ], + [ + -73.450252, + 45.559679 + ], + [ + -73.450243, + 45.559863 + ], + [ + -73.450225, + 45.560074 + ], + [ + -73.450265, + 45.560646 + ], + [ + -73.450329, + 45.561684 + ], + [ + -73.450329, + 45.561694 + ], + [ + -73.450326, + 45.561892 + ], + [ + -73.450315, + 45.562486 + ], + [ + -73.450301, + 45.562913 + ], + [ + -73.45028, + 45.563354 + ], + [ + -73.450265, + 45.563858 + ], + [ + -73.450253, + 45.564101 + ], + [ + -73.45024, + 45.564574 + ], + [ + -73.450199, + 45.565428 + ], + [ + -73.4502, + 45.565559 + ], + [ + -73.450143, + 45.566931 + ], + [ + -73.450122, + 45.567397 + ], + [ + -73.450115, + 45.567548 + ], + [ + -73.450114, + 45.567557 + ], + [ + -73.450113, + 45.567561 + ], + [ + -73.450112, + 45.56757 + ], + [ + -73.450111, + 45.567575 + ], + [ + -73.45011, + 45.567584 + ], + [ + -73.450109, + 45.567593 + ], + [ + -73.450108, + 45.567597 + ], + [ + -73.450107, + 45.567606 + ], + [ + -73.450106, + 45.567611 + ], + [ + -73.450105, + 45.56762 + ], + [ + -73.450104, + 45.567629 + ], + [ + -73.450103, + 45.567633 + ], + [ + -73.450102, + 45.567642 + ], + [ + -73.450101, + 45.567647 + ], + [ + -73.4501, + 45.567656 + ], + [ + -73.450099, + 45.56766 + ], + [ + -73.450098, + 45.567669 + ], + [ + -73.450097, + 45.567678 + ], + [ + -73.450096, + 45.567683 + ], + [ + -73.450095, + 45.567691 + ], + [ + -73.450093, + 45.567696 + ], + [ + -73.450092, + 45.567705 + ], + [ + -73.450091, + 45.567714 + ], + [ + -73.45009, + 45.567718 + ], + [ + -73.450089, + 45.567727 + ], + [ + -73.450088, + 45.567732 + ], + [ + -73.450087, + 45.567741 + ], + [ + -73.450085, + 45.56775 + ], + [ + -73.450084, + 45.567754 + ], + [ + -73.450083, + 45.567763 + ], + [ + -73.450082, + 45.567768 + ], + [ + -73.450081, + 45.567777 + ], + [ + -73.450079, + 45.567781 + ], + [ + -73.450078, + 45.56779 + ], + [ + -73.450077, + 45.567799 + ], + [ + -73.450075, + 45.567804 + ], + [ + -73.450074, + 45.567813 + ], + [ + -73.450073, + 45.567817 + ], + [ + -73.450071, + 45.567826 + ], + [ + -73.45007, + 45.567835 + ], + [ + -73.450069, + 45.56784 + ], + [ + -73.450067, + 45.567849 + ], + [ + -73.450066, + 45.567853 + ], + [ + -73.450065, + 45.567862 + ], + [ + -73.450063, + 45.567871 + ], + [ + -73.450062, + 45.567876 + ], + [ + -73.45006, + 45.567885 + ], + [ + -73.450059, + 45.567889 + ], + [ + -73.450058, + 45.567898 + ], + [ + -73.450056, + 45.567903 + ], + [ + -73.450055, + 45.567912 + ], + [ + -73.450054, + 45.567921 + ], + [ + -73.450052, + 45.567925 + ], + [ + -73.450051, + 45.567934 + ], + [ + -73.450049, + 45.567939 + ], + [ + -73.450048, + 45.567948 + ], + [ + -73.450046, + 45.567957 + ], + [ + -73.450045, + 45.567961 + ], + [ + -73.450043, + 45.56797 + ], + [ + -73.450042, + 45.567975 + ], + [ + -73.45004, + 45.567984 + ], + [ + -73.450039, + 45.567988 + ], + [ + -73.450037, + 45.567997 + ], + [ + -73.450036, + 45.568006 + ], + [ + -73.450034, + 45.568011 + ], + [ + -73.450032, + 45.56802 + ], + [ + -73.450031, + 45.568024 + ], + [ + -73.450029, + 45.568033 + ], + [ + -73.450028, + 45.568042 + ], + [ + -73.450026, + 45.568047 + ], + [ + -73.450024, + 45.568056 + ], + [ + -73.450023, + 45.56806 + ], + [ + -73.450021, + 45.568069 + ], + [ + -73.450019, + 45.568074 + ], + [ + -73.450017, + 45.568083 + ], + [ + -73.450016, + 45.568092 + ], + [ + -73.450014, + 45.568096 + ], + [ + -73.450013, + 45.568105 + ], + [ + -73.450011, + 45.56811 + ], + [ + -73.450009, + 45.568119 + ], + [ + -73.450007, + 45.568123 + ], + [ + -73.450006, + 45.568132 + ], + [ + -73.450004, + 45.568141 + ], + [ + -73.450002, + 45.568146 + ], + [ + -73.45, + 45.568155 + ], + [ + -73.449999, + 45.568159 + ], + [ + -73.449997, + 45.568168 + ], + [ + -73.449995, + 45.568173 + ], + [ + -73.449993, + 45.568182 + ], + [ + -73.449991, + 45.568191 + ], + [ + -73.449989, + 45.568195 + ], + [ + -73.449988, + 45.568204 + ], + [ + -73.449986, + 45.568209 + ], + [ + -73.449984, + 45.568218 + ], + [ + -73.449982, + 45.568227 + ], + [ + -73.44998, + 45.568231 + ], + [ + -73.449978, + 45.56824 + ], + [ + -73.449976, + 45.568245 + ], + [ + -73.449974, + 45.568254 + ], + [ + -73.449972, + 45.568258 + ], + [ + -73.44997, + 45.568267 + ], + [ + -73.449968, + 45.568276 + ], + [ + -73.449967, + 45.568281 + ], + [ + -73.449965, + 45.56829 + ], + [ + -73.449963, + 45.568294 + ], + [ + -73.449961, + 45.568303 + ], + [ + -73.449959, + 45.568308 + ], + [ + -73.449957, + 45.568317 + ], + [ + -73.449955, + 45.568326 + ], + [ + -73.449953, + 45.56833 + ], + [ + -73.449951, + 45.568339 + ], + [ + -73.449949, + 45.568344 + ], + [ + -73.449946, + 45.568353 + ], + [ + -73.449944, + 45.568357 + ], + [ + -73.449942, + 45.568366 + ], + [ + -73.44994, + 45.568371 + ], + [ + -73.449938, + 45.56838 + ], + [ + -73.449936, + 45.568389 + ], + [ + -73.449934, + 45.568393 + ], + [ + -73.449932, + 45.568402 + ], + [ + -73.44993, + 45.568407 + ], + [ + -73.449927, + 45.568416 + ], + [ + -73.449925, + 45.56842 + ], + [ + -73.449923, + 45.568429 + ], + [ + -73.449921, + 45.568438 + ], + [ + -73.449919, + 45.568443 + ], + [ + -73.449917, + 45.568452 + ], + [ + -73.449915, + 45.568456 + ], + [ + -73.449912, + 45.568465 + ], + [ + -73.44991, + 45.56847 + ], + [ + -73.449908, + 45.568479 + ], + [ + -73.449905, + 45.568488 + ], + [ + -73.449903, + 45.568492 + ], + [ + -73.449901, + 45.568501 + ], + [ + -73.449899, + 45.568506 + ], + [ + -73.449897, + 45.568515 + ], + [ + -73.449894, + 45.568519 + ], + [ + -73.449892, + 45.568528 + ], + [ + -73.449889, + 45.568533 + ], + [ + -73.449887, + 45.568542 + ], + [ + -73.449885, + 45.568551 + ], + [ + -73.449883, + 45.568555 + ], + [ + -73.44988, + 45.568564 + ], + [ + -73.449878, + 45.568569 + ], + [ + -73.449875, + 45.568578 + ], + [ + -73.449873, + 45.568582 + ], + [ + -73.44987, + 45.568591 + ], + [ + -73.449868, + 45.568596 + ], + [ + -73.449866, + 45.568605 + ], + [ + -73.449863, + 45.568614 + ], + [ + -73.449861, + 45.568618 + ], + [ + -73.449856, + 45.568632 + ], + [ + -73.449825, + 45.568708 + ], + [ + -73.449762, + 45.568861 + ], + [ + -73.449744, + 45.568903 + ], + [ + -73.449629, + 45.569172 + ], + [ + -73.449277, + 45.569995 + ], + [ + -73.449093, + 45.570413 + ], + [ + -73.449089, + 45.570422 + ], + [ + -73.44907, + 45.570467 + ], + [ + -73.449049, + 45.570517 + ], + [ + -73.448873, + 45.570917 + ], + [ + -73.448823, + 45.571034 + ], + [ + -73.448772, + 45.57116 + ], + [ + -73.44818, + 45.572625 + ], + [ + -73.447654, + 45.573778 + ], + [ + -73.447519, + 45.574084 + ], + [ + -73.447518, + 45.574088 + ], + [ + -73.447455, + 45.574133 + ], + [ + -73.447308, + 45.574407 + ], + [ + -73.447267, + 45.574466 + ], + [ + -73.447241, + 45.574497 + ], + [ + -73.447197, + 45.574529 + ], + [ + -73.447149, + 45.574547 + ], + [ + -73.447112, + 45.574556 + ], + [ + -73.447049, + 45.574565 + ], + [ + -73.446965, + 45.574569 + ], + [ + -73.446884, + 45.574565 + ], + [ + -73.446792, + 45.574547 + ], + [ + -73.446652, + 45.574511 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.443147, + 45.572802 + ], + [ + -73.443228, + 45.572879 + ], + [ + -73.443273, + 45.572955 + ], + [ + -73.443271, + 45.573 + ], + [ + -73.443276, + 45.573125 + ], + [ + -73.443281, + 45.573166 + ], + [ + -73.443386, + 45.57326 + ], + [ + -73.443502, + 45.573319 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.44468, + 45.573697 + ], + [ + -73.444697, + 45.573706 + ], + [ + -73.444729, + 45.573713 + ], + [ + -73.444769, + 45.573716 + ], + [ + -73.444831, + 45.573715 + ], + [ + -73.444868, + 45.57371 + ], + [ + -73.444884, + 45.573708 + ], + [ + -73.44491, + 45.573694 + ], + [ + -73.444953, + 45.573633 + ], + [ + -73.44492, + 45.573618 + ], + [ + -73.444872, + 45.573601 + ], + [ + -73.444829, + 45.573598 + ], + [ + -73.444765, + 45.573611 + ], + [ + -73.444749, + 45.573615 + ], + [ + -73.44471, + 45.573635 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.444112, + 45.573505 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.443539, + 45.573203 + ], + [ + -73.443524, + 45.57316 + ], + [ + -73.44348, + 45.573034 + ], + [ + -73.443427, + 45.572912 + ], + [ + -73.44336, + 45.572841 + ], + [ + -73.443253, + 45.572772 + ], + [ + -73.443199, + 45.572746 + ], + [ + -73.443114, + 45.572731 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.446698, + 45.574646 + ], + [ + -73.446963, + 45.574749 + ], + [ + -73.446986, + 45.574767 + ], + [ + -73.447005, + 45.574781 + ], + [ + -73.447026, + 45.574808 + ], + [ + -73.447042, + 45.57483 + ], + [ + -73.447056, + 45.574857 + ], + [ + -73.44707, + 45.574889 + ], + [ + -73.447082, + 45.57492 + ], + [ + -73.447099, + 45.575037 + ], + [ + -73.447058, + 45.575131 + ], + [ + -73.446759, + 45.575802 + ], + [ + -73.446721, + 45.575887 + ], + [ + -73.446618, + 45.576202 + ], + [ + -73.446585, + 45.576297 + ], + [ + -73.446578, + 45.576319 + ], + [ + -73.446558, + 45.576387 + ], + [ + -73.44653, + 45.57654 + ], + [ + -73.446519, + 45.57667 + ], + [ + -73.446516, + 45.576796 + ], + [ + -73.446516, + 45.576958 + ], + [ + -73.446539, + 45.577179 + ], + [ + -73.446583, + 45.577433 + ], + [ + -73.446584, + 45.57744 + ], + [ + -73.446615, + 45.57757 + ], + [ + -73.446861, + 45.578794 + ], + [ + -73.446887, + 45.57892 + ], + [ + -73.446904, + 45.579005 + ], + [ + -73.447123, + 45.580066 + ], + [ + -73.447136, + 45.58013 + ], + [ + -73.447307, + 45.58099 + ], + [ + -73.447337, + 45.581174 + ], + [ + -73.447364, + 45.581462 + ], + [ + -73.447358, + 45.581597 + ], + [ + -73.447346, + 45.581723 + ], + [ + -73.447325, + 45.581872 + ], + [ + -73.447274, + 45.582088 + ], + [ + -73.447195, + 45.582299 + ], + [ + -73.447195, + 45.5823 + ], + [ + -73.447144, + 45.582429 + ], + [ + -73.447053, + 45.582609 + ], + [ + -73.44699, + 45.582721 + ], + [ + -73.44698, + 45.58274 + ], + [ + -73.446895, + 45.58287 + ], + [ + -73.446759, + 45.583041 + ], + [ + -73.446638, + 45.583181 + ], + [ + -73.446546, + 45.58327 + ], + [ + -73.446413, + 45.583392 + ], + [ + -73.446149, + 45.583603 + ], + [ + -73.446125, + 45.583622 + ], + [ + -73.446013, + 45.583711 + ], + [ + -73.445968, + 45.583747 + ], + [ + -73.44592, + 45.583788 + ], + [ + -73.445774, + 45.583904 + ], + [ + -73.445416, + 45.584201 + ], + [ + -73.444576, + 45.584964 + ], + [ + -73.44456, + 45.584979 + ], + [ + -73.444401, + 45.585119 + ], + [ + -73.44349, + 45.585955 + ], + [ + -73.443398, + 45.58604 + ], + [ + -73.44263, + 45.586742 + ], + [ + -73.442422, + 45.586935 + ], + [ + -73.442064, + 45.587259 + ], + [ + -73.44183, + 45.58747 + ], + [ + -73.441505, + 45.587776 + ], + [ + -73.441295, + 45.58797 + ], + [ + -73.440324, + 45.588831 + ], + [ + -73.440242, + 45.588905 + ], + [ + -73.439836, + 45.589215 + ], + [ + -73.439603, + 45.58938 + ], + [ + -73.439545, + 45.589422 + ], + [ + -73.43944, + 45.589489 + ], + [ + -73.439298, + 45.589588 + ], + [ + -73.438772, + 45.589939 + ], + [ + -73.438073, + 45.590343 + ], + [ + -73.43787, + 45.590462 + ], + [ + -73.436355, + 45.59135 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.436835, + 45.591708 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.43832, + 45.592822 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.440069, + 45.594114 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.442149, + 45.595669 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442992, + 45.59628 + ], + [ + -73.443297, + 45.596492 + ], + [ + -73.443394, + 45.596559 + ], + [ + -73.444803, + 45.597518 + ], + [ + -73.445261, + 45.597829 + ], + [ + -73.44534, + 45.597884 + ], + [ + -73.446259, + 45.598527 + ], + [ + -73.446713, + 45.59886 + ], + [ + -73.447, + 45.599073 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.448101, + 45.599963 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449825, + 45.601331 + ], + [ + -73.449842, + 45.601358 + ], + [ + -73.449882, + 45.601394 + ], + [ + -73.449937, + 45.601432 + ], + [ + -73.449974, + 45.601468 + ], + [ + -73.450006, + 45.601497 + ], + [ + -73.450033, + 45.601528 + ], + [ + -73.450045, + 45.601571 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.45031, + 45.600786 + ] + ] + }, + "id": 225, + "properties": { + "id": "3af8be56-5d5e-418f-9cb7-2e93aaaa3eaf", + "data": { + "gtfs": { + "shape_id": "161_2_R" + }, + "segments": [ + { + "distanceMeters": 4597, + "travelTimeSeconds": 240 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 1147, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 600, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 926, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 472, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 585, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 439, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 685, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 636, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 1185, + "travelTimeSeconds": 127 + }, + { + "distanceMeters": 548, + "travelTimeSeconds": 104 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 404, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 83, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 378, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 415, + "travelTimeSeconds": 79 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 234, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 18299, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10160.529949416274, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.82, + "travelTimeWithoutDwellTimesSeconds": 2340, + "operatingTimeWithLayoverTimeSeconds": 2574, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2340, + "operatingSpeedWithLayoverMetersPerSecond": 7.11, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.82 + }, + "mode": "bus", + "name": "Terminus De Montarville", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "8a3f1208-7ffb-452e-8ebb-c436acba82d6", + "2d7687a5-f458-4ce1-a3df-9639d89c0154", + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "81b3573e-d948-478d-a011-db20e21b0c62", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "85594754-b583-4735-aac6-bc45902705ca", + "c24ac61d-1b21-4358-b45f-8dd4921fc769", + "f1d63efc-c02d-4bb9-828b-ddc2e062546b", + "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", + "1254d090-1d68-478c-a4fc-972cd246c948", + "86d2a168-d8d6-4528-80ff-833432ddaf2d", + "c7d234f2-22e5-4459-8628-1d01e7ca4dc0", + "95cc31bb-b82e-4ab9-921f-e5a8cd8454c3", + "b66a9525-9dd9-49fa-b088-bde983b8c260", + "6d4dc817-4368-4ece-aeda-37df1213d699", + "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", + "6672cb43-3241-42d7-b5c0-fdaed10338b9", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "c520acc8-980c-45c0-9195-152ad50ee471", + "18aabfcd-f4e1-4782-a757-80cdf1597763", + "6c99422e-05cb-48dc-811f-162fee50cf80", + "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", + "44ce6da8-ee79-4e09-9c16-f31566643c0c", + "7b512bac-ad2d-4d5a-87d8-173290a7b311", + "2cdb15ef-cdbd-4b50-8947-cb9baee33626", + "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "617c5711-4aaa-4c7f-bebe-63268ac405bb", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "4fcc129f-8015-4b36-a21f-2437aa91a265", + "49262d07-72b2-466f-bf49-88656466e4a4", + "9e857d67-44b9-48aa-aa36-d1284504d820", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", + "bbe875bc-cb85-4a61-923d-53ee4746a213" + ], + "stops": [], + "line_id": "082003fb-77eb-4f62-9ca9-1070628f1832", + "segments": [ + 0, + 77, + 84, + 107, + 137, + 158, + 186, + 195, + 201, + 207, + 211, + 222, + 232, + 250, + 262, + 269, + 281, + 438, + 446, + 507, + 539, + 551, + 554, + 557, + 567, + 578, + 584, + 587, + 595, + 598, + 604, + 610, + 617, + 621, + 625, + 629, + 632, + 638 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 225, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519431, + 45.523472 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517465, + 45.528168 + ], + [ + -73.517458, + 45.528249 + ], + [ + -73.517471, + 45.528385 + ], + [ + -73.517504, + 45.528565 + ], + [ + -73.517516, + 45.528652 + ], + [ + -73.517553, + 45.52877 + ], + [ + -73.517635, + 45.529002 + ], + [ + -73.517693, + 45.529249 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518413, + 45.531377 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.519088, + 45.53309 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.499756, + 45.550039 + ], + [ + -73.499583, + 45.550043 + ], + [ + -73.499254, + 45.550048 + ], + [ + -73.49904, + 45.550039 + ], + [ + -73.498716, + 45.549998 + ], + [ + -73.49829, + 45.549868 + ], + [ + -73.497924, + 45.54971 + ], + [ + -73.497576, + 45.54953 + ], + [ + -73.497225, + 45.549332 + ], + [ + -73.497041, + 45.549211 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494898, + 45.547546 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492662, + 45.545771 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.491987, + 45.545199 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.4906, + 45.540699 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476947, + 45.537232 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.469353, + 45.536988 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.461201, + 45.532558 + ], + [ + -73.46089, + 45.532868 + ], + [ + -73.460868, + 45.532891 + ], + [ + -73.460757, + 45.533003 + ], + [ + -73.459629, + 45.533974 + ], + [ + -73.458963, + 45.534509 + ], + [ + -73.458731, + 45.534693 + ], + [ + -73.458241, + 45.535152 + ], + [ + -73.457986, + 45.535404 + ], + [ + -73.457781, + 45.535638 + ], + [ + -73.457342, + 45.536214 + ], + [ + -73.457292, + 45.536296 + ], + [ + -73.45713, + 45.536556 + ], + [ + -73.456948, + 45.536857 + ], + [ + -73.456811, + 45.537145 + ], + [ + -73.456744, + 45.5373 + ], + [ + -73.456664, + 45.537487 + ], + [ + -73.45651, + 45.537947 + ], + [ + -73.456485, + 45.538022 + ], + [ + -73.456445, + 45.538144 + ], + [ + -73.456357, + 45.53853 + ], + [ + -73.456221, + 45.539372 + ], + [ + -73.456144, + 45.539984 + ], + [ + -73.456088, + 45.540299 + ], + [ + -73.456076, + 45.540361 + ], + [ + -73.455916, + 45.541266 + ], + [ + -73.455834, + 45.54181 + ], + [ + -73.45573, + 45.542496 + ], + [ + -73.455702, + 45.542678 + ], + [ + -73.455523, + 45.543849 + ], + [ + -73.455509, + 45.543938 + ], + [ + -73.455433, + 45.54441 + ], + [ + -73.455289, + 45.544748 + ], + [ + -73.455178, + 45.54491 + ], + [ + -73.455067, + 45.545031 + ], + [ + -73.454985, + 45.545117 + ], + [ + -73.45488, + 45.545202 + ], + [ + -73.454712, + 45.545301 + ], + [ + -73.454646, + 45.545348 + ], + [ + -73.454517, + 45.54544 + ], + [ + -73.454362, + 45.54553 + ], + [ + -73.454039, + 45.545719 + ], + [ + -73.453554, + 45.546052 + ], + [ + -73.453387, + 45.546196 + ], + [ + -73.453186, + 45.546448 + ], + [ + -73.45304, + 45.546592 + ], + [ + -73.452912, + 45.546715 + ], + [ + -73.452859, + 45.546749 + ], + [ + -73.452376, + 45.547063 + ], + [ + -73.452243, + 45.547149 + ], + [ + -73.452185, + 45.547185 + ], + [ + -73.451911, + 45.547356 + ], + [ + -73.45159, + 45.547572 + ], + [ + -73.451191, + 45.547866 + ], + [ + -73.450894, + 45.548098 + ], + [ + -73.450533, + 45.54844 + ], + [ + -73.450285, + 45.548711 + ], + [ + -73.449967, + 45.549124 + ], + [ + -73.449826, + 45.549339 + ], + [ + -73.449599, + 45.549777 + ], + [ + -73.449468, + 45.550071 + ], + [ + -73.449323, + 45.550515 + ], + [ + -73.449234, + 45.550967 + ], + [ + -73.449207, + 45.551245 + ], + [ + -73.449202, + 45.551292 + ], + [ + -73.449198, + 45.551397 + ], + [ + -73.449191, + 45.551618 + ], + [ + -73.44919, + 45.551642 + ], + [ + -73.44919, + 45.551706 + ], + [ + -73.449191, + 45.551792 + ], + [ + -73.449191, + 45.551808 + ], + [ + -73.449275, + 45.55238 + ], + [ + -73.449348, + 45.552926 + ], + [ + -73.449359, + 45.55301 + ], + [ + -73.44943, + 45.553558 + ], + [ + -73.449515, + 45.554197 + ], + [ + -73.449606, + 45.554861 + ], + [ + -73.4497, + 45.555533 + ], + [ + -73.449701, + 45.555546 + ], + [ + -73.449715, + 45.555674 + ], + [ + -73.449726, + 45.555769 + ], + [ + -73.450252, + 45.559679 + ], + [ + -73.450243, + 45.559863 + ], + [ + -73.450225, + 45.560074 + ], + [ + -73.450265, + 45.560646 + ], + [ + -73.450329, + 45.561682 + ], + [ + -73.450329, + 45.561694 + ], + [ + -73.450326, + 45.561892 + ], + [ + -73.450315, + 45.562486 + ], + [ + -73.450301, + 45.562913 + ], + [ + -73.45028, + 45.563354 + ], + [ + -73.450265, + 45.563858 + ], + [ + -73.450253, + 45.564101 + ], + [ + -73.45024, + 45.564574 + ], + [ + -73.450199, + 45.565428 + ], + [ + -73.4502, + 45.565559 + ], + [ + -73.450143, + 45.566931 + ], + [ + -73.450122, + 45.567396 + ], + [ + -73.450115, + 45.567548 + ], + [ + -73.450114, + 45.567557 + ], + [ + -73.450113, + 45.567561 + ], + [ + -73.450112, + 45.56757 + ], + [ + -73.450111, + 45.567575 + ], + [ + -73.45011, + 45.567584 + ], + [ + -73.450109, + 45.567593 + ], + [ + -73.450108, + 45.567597 + ], + [ + -73.450107, + 45.567606 + ], + [ + -73.450106, + 45.567611 + ], + [ + -73.450105, + 45.56762 + ], + [ + -73.450104, + 45.567629 + ], + [ + -73.450103, + 45.567633 + ], + [ + -73.450102, + 45.567642 + ], + [ + -73.450101, + 45.567647 + ], + [ + -73.4501, + 45.567656 + ], + [ + -73.450099, + 45.56766 + ], + [ + -73.450098, + 45.567669 + ], + [ + -73.450097, + 45.567678 + ], + [ + -73.450096, + 45.567683 + ], + [ + -73.450095, + 45.567691 + ], + [ + -73.450093, + 45.567696 + ], + [ + -73.450092, + 45.567705 + ], + [ + -73.450091, + 45.567714 + ], + [ + -73.45009, + 45.567718 + ], + [ + -73.450089, + 45.567727 + ], + [ + -73.450088, + 45.567732 + ], + [ + -73.450087, + 45.567741 + ], + [ + -73.450085, + 45.56775 + ], + [ + -73.450084, + 45.567754 + ], + [ + -73.450083, + 45.567763 + ], + [ + -73.450082, + 45.567768 + ], + [ + -73.450081, + 45.567777 + ], + [ + -73.450079, + 45.567781 + ], + [ + -73.450078, + 45.56779 + ], + [ + -73.450077, + 45.567799 + ], + [ + -73.450075, + 45.567804 + ], + [ + -73.450074, + 45.567813 + ], + [ + -73.450073, + 45.567817 + ], + [ + -73.450071, + 45.567826 + ], + [ + -73.45007, + 45.567835 + ], + [ + -73.450069, + 45.56784 + ], + [ + -73.450067, + 45.567849 + ], + [ + -73.450066, + 45.567853 + ], + [ + -73.450065, + 45.567862 + ], + [ + -73.450063, + 45.567871 + ], + [ + -73.450062, + 45.567876 + ], + [ + -73.45006, + 45.567885 + ], + [ + -73.450059, + 45.567889 + ], + [ + -73.450058, + 45.567898 + ], + [ + -73.450056, + 45.567903 + ], + [ + -73.450055, + 45.567912 + ], + [ + -73.450054, + 45.567921 + ], + [ + -73.450052, + 45.567925 + ], + [ + -73.450051, + 45.567934 + ], + [ + -73.450049, + 45.567939 + ], + [ + -73.450048, + 45.567948 + ], + [ + -73.450046, + 45.567957 + ], + [ + -73.450045, + 45.567961 + ], + [ + -73.450043, + 45.56797 + ], + [ + -73.450042, + 45.567975 + ], + [ + -73.45004, + 45.567984 + ], + [ + -73.450039, + 45.567988 + ], + [ + -73.450037, + 45.567997 + ], + [ + -73.450036, + 45.568006 + ], + [ + -73.450034, + 45.568011 + ], + [ + -73.450032, + 45.56802 + ], + [ + -73.450031, + 45.568024 + ], + [ + -73.450029, + 45.568033 + ], + [ + -73.450028, + 45.568042 + ], + [ + -73.450026, + 45.568047 + ], + [ + -73.450024, + 45.568056 + ], + [ + -73.450023, + 45.56806 + ], + [ + -73.450021, + 45.568069 + ], + [ + -73.450019, + 45.568074 + ], + [ + -73.450017, + 45.568083 + ], + [ + -73.450016, + 45.568092 + ], + [ + -73.450014, + 45.568096 + ], + [ + -73.450013, + 45.568105 + ], + [ + -73.450011, + 45.56811 + ], + [ + -73.450009, + 45.568119 + ], + [ + -73.450007, + 45.568123 + ], + [ + -73.450006, + 45.568132 + ], + [ + -73.450004, + 45.568141 + ], + [ + -73.450002, + 45.568146 + ], + [ + -73.45, + 45.568155 + ], + [ + -73.449999, + 45.568159 + ], + [ + -73.449997, + 45.568168 + ], + [ + -73.449995, + 45.568173 + ], + [ + -73.449993, + 45.568182 + ], + [ + -73.449991, + 45.568191 + ], + [ + -73.449989, + 45.568195 + ], + [ + -73.449988, + 45.568204 + ], + [ + -73.449986, + 45.568209 + ], + [ + -73.449984, + 45.568218 + ], + [ + -73.449982, + 45.568227 + ], + [ + -73.44998, + 45.568231 + ], + [ + -73.449978, + 45.56824 + ], + [ + -73.449976, + 45.568245 + ], + [ + -73.449974, + 45.568254 + ], + [ + -73.449972, + 45.568258 + ], + [ + -73.44997, + 45.568267 + ], + [ + -73.449968, + 45.568276 + ], + [ + -73.449967, + 45.568281 + ], + [ + -73.449965, + 45.56829 + ], + [ + -73.449963, + 45.568294 + ], + [ + -73.449961, + 45.568303 + ], + [ + -73.449959, + 45.568308 + ], + [ + -73.449957, + 45.568317 + ], + [ + -73.449955, + 45.568326 + ], + [ + -73.449953, + 45.56833 + ], + [ + -73.449951, + 45.568339 + ], + [ + -73.449949, + 45.568344 + ], + [ + -73.449946, + 45.568353 + ], + [ + -73.449944, + 45.568357 + ], + [ + -73.449942, + 45.568366 + ], + [ + -73.44994, + 45.568371 + ], + [ + -73.449938, + 45.56838 + ], + [ + -73.449936, + 45.568389 + ], + [ + -73.449934, + 45.568393 + ], + [ + -73.449932, + 45.568402 + ], + [ + -73.44993, + 45.568407 + ], + [ + -73.449927, + 45.568416 + ], + [ + -73.449925, + 45.56842 + ], + [ + -73.449923, + 45.568429 + ], + [ + -73.449921, + 45.568438 + ], + [ + -73.449919, + 45.568443 + ], + [ + -73.449917, + 45.568452 + ], + [ + -73.449915, + 45.568456 + ], + [ + -73.449912, + 45.568465 + ], + [ + -73.44991, + 45.56847 + ], + [ + -73.449908, + 45.568479 + ], + [ + -73.449905, + 45.568488 + ], + [ + -73.449903, + 45.568492 + ], + [ + -73.449901, + 45.568501 + ], + [ + -73.449899, + 45.568506 + ], + [ + -73.449897, + 45.568515 + ], + [ + -73.449894, + 45.568519 + ], + [ + -73.449892, + 45.568528 + ], + [ + -73.449889, + 45.568533 + ], + [ + -73.449887, + 45.568542 + ], + [ + -73.449885, + 45.568551 + ], + [ + -73.449883, + 45.568555 + ], + [ + -73.44988, + 45.568564 + ], + [ + -73.449878, + 45.568569 + ], + [ + -73.449875, + 45.568578 + ], + [ + -73.449873, + 45.568582 + ], + [ + -73.44987, + 45.568591 + ], + [ + -73.449868, + 45.568596 + ], + [ + -73.449866, + 45.568605 + ], + [ + -73.449863, + 45.568614 + ], + [ + -73.449861, + 45.568618 + ], + [ + -73.449856, + 45.568632 + ], + [ + -73.449825, + 45.568708 + ], + [ + -73.449762, + 45.568861 + ], + [ + -73.449744, + 45.568903 + ], + [ + -73.449629, + 45.569171 + ], + [ + -73.449277, + 45.569995 + ], + [ + -73.449093, + 45.570413 + ], + [ + -73.449089, + 45.570422 + ], + [ + -73.44907, + 45.570467 + ], + [ + -73.449049, + 45.570517 + ], + [ + -73.448873, + 45.570917 + ], + [ + -73.448823, + 45.571034 + ], + [ + -73.448773, + 45.571159 + ], + [ + -73.44818, + 45.572625 + ], + [ + -73.447654, + 45.573778 + ], + [ + -73.447519, + 45.574084 + ], + [ + -73.447518, + 45.574088 + ], + [ + -73.447455, + 45.574133 + ], + [ + -73.447308, + 45.574407 + ], + [ + -73.447267, + 45.574466 + ], + [ + -73.447241, + 45.574497 + ], + [ + -73.447197, + 45.574529 + ], + [ + -73.447149, + 45.574547 + ], + [ + -73.447112, + 45.574556 + ], + [ + -73.447049, + 45.574565 + ], + [ + -73.446965, + 45.574569 + ], + [ + -73.446884, + 45.574565 + ], + [ + -73.446792, + 45.574547 + ], + [ + -73.446652, + 45.574511 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.443147, + 45.572802 + ], + [ + -73.443228, + 45.572879 + ], + [ + -73.443273, + 45.572955 + ], + [ + -73.443271, + 45.573 + ], + [ + -73.443276, + 45.573125 + ], + [ + -73.443281, + 45.573166 + ], + [ + -73.443386, + 45.57326 + ], + [ + -73.443502, + 45.573319 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.44468, + 45.573697 + ], + [ + -73.444697, + 45.573706 + ], + [ + -73.444729, + 45.573713 + ], + [ + -73.444769, + 45.573716 + ], + [ + -73.444831, + 45.573715 + ], + [ + -73.444868, + 45.57371 + ], + [ + -73.444884, + 45.573708 + ], + [ + -73.44491, + 45.573694 + ], + [ + -73.444953, + 45.573633 + ], + [ + -73.44492, + 45.573618 + ], + [ + -73.444872, + 45.573601 + ], + [ + -73.444829, + 45.573598 + ], + [ + -73.444779, + 45.573608 + ], + [ + -73.444749, + 45.573615 + ], + [ + -73.44471, + 45.573635 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.444112, + 45.573505 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.443539, + 45.573203 + ], + [ + -73.443525, + 45.573161 + ], + [ + -73.44348, + 45.573034 + ], + [ + -73.443427, + 45.572912 + ], + [ + -73.44336, + 45.572841 + ], + [ + -73.443253, + 45.572772 + ], + [ + -73.443199, + 45.572746 + ], + [ + -73.443114, + 45.572731 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.446698, + 45.574646 + ], + [ + -73.446963, + 45.574749 + ], + [ + -73.446986, + 45.574767 + ], + [ + -73.447005, + 45.574781 + ], + [ + -73.447026, + 45.574808 + ], + [ + -73.447042, + 45.57483 + ], + [ + -73.447056, + 45.574857 + ], + [ + -73.44707, + 45.574889 + ], + [ + -73.447082, + 45.57492 + ], + [ + -73.447099, + 45.575037 + ], + [ + -73.447058, + 45.57513 + ], + [ + -73.446759, + 45.575802 + ], + [ + -73.446721, + 45.575887 + ], + [ + -73.446618, + 45.576202 + ], + [ + -73.446585, + 45.576297 + ], + [ + -73.446578, + 45.576319 + ], + [ + -73.446558, + 45.576387 + ], + [ + -73.44653, + 45.57654 + ], + [ + -73.446519, + 45.57667 + ], + [ + -73.446516, + 45.576796 + ], + [ + -73.446516, + 45.576958 + ], + [ + -73.446539, + 45.577179 + ], + [ + -73.446583, + 45.577432 + ], + [ + -73.446584, + 45.57744 + ], + [ + -73.446615, + 45.57757 + ], + [ + -73.446861, + 45.578793 + ], + [ + -73.446887, + 45.57892 + ], + [ + -73.446904, + 45.579005 + ], + [ + -73.447123, + 45.580065 + ], + [ + -73.447136, + 45.58013 + ], + [ + -73.447307, + 45.58099 + ], + [ + -73.447337, + 45.581174 + ], + [ + -73.447364, + 45.581462 + ], + [ + -73.447358, + 45.581597 + ], + [ + -73.447346, + 45.581723 + ], + [ + -73.447325, + 45.581872 + ], + [ + -73.447274, + 45.582088 + ], + [ + -73.447195, + 45.582299 + ], + [ + -73.447195, + 45.582299 + ], + [ + -73.447144, + 45.582429 + ], + [ + -73.447053, + 45.582609 + ], + [ + -73.44698, + 45.58274 + ], + [ + -73.446895, + 45.58287 + ], + [ + -73.446784, + 45.583009 + ], + [ + -73.446759, + 45.583041 + ], + [ + -73.446638, + 45.583181 + ], + [ + -73.446546, + 45.58327 + ], + [ + -73.446413, + 45.583392 + ], + [ + -73.446149, + 45.583603 + ], + [ + -73.446126, + 45.583622 + ], + [ + -73.446013, + 45.583711 + ], + [ + -73.445968, + 45.583747 + ], + [ + -73.44592, + 45.583788 + ], + [ + -73.445774, + 45.583904 + ], + [ + -73.445416, + 45.584201 + ], + [ + -73.444577, + 45.584964 + ], + [ + -73.44456, + 45.584979 + ], + [ + -73.444401, + 45.585119 + ], + [ + -73.443491, + 45.585955 + ], + [ + -73.443398, + 45.58604 + ], + [ + -73.44263, + 45.586742 + ], + [ + -73.442422, + 45.586935 + ], + [ + -73.442064, + 45.587259 + ], + [ + -73.44183, + 45.58747 + ], + [ + -73.441505, + 45.587776 + ], + [ + -73.441295, + 45.58797 + ], + [ + -73.440316, + 45.588838 + ], + [ + -73.440242, + 45.588905 + ], + [ + -73.439836, + 45.589215 + ], + [ + -73.439604, + 45.58938 + ], + [ + -73.439545, + 45.589422 + ], + [ + -73.43944, + 45.589489 + ], + [ + -73.439298, + 45.589588 + ], + [ + -73.438772, + 45.589939 + ], + [ + -73.438073, + 45.590343 + ], + [ + -73.43787, + 45.590462 + ], + [ + -73.436355, + 45.59135 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.437038, + 45.591861 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.43832, + 45.592822 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.440069, + 45.594114 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.442149, + 45.595669 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442992, + 45.59628 + ], + [ + -73.443297, + 45.596492 + ], + [ + -73.443394, + 45.596559 + ], + [ + -73.444803, + 45.597518 + ], + [ + -73.445261, + 45.597829 + ], + [ + -73.44534, + 45.597884 + ], + [ + -73.446259, + 45.598527 + ], + [ + -73.446713, + 45.59886 + ], + [ + -73.447, + 45.599073 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.448101, + 45.599963 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449825, + 45.601331 + ], + [ + -73.449842, + 45.601358 + ], + [ + -73.449882, + 45.601394 + ], + [ + -73.449937, + 45.601432 + ], + [ + -73.449974, + 45.601468 + ], + [ + -73.450006, + 45.601497 + ], + [ + -73.450033, + 45.601528 + ], + [ + -73.450045, + 45.601571 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.45031, + 45.600786 + ] + ] + }, + "id": 226, + "properties": { + "id": "59a53bd7-46b4-4a84-a284-6e3b8e356940", + "data": { + "gtfs": { + "shape_id": "161_1_R" + }, + "segments": [ + { + "distanceMeters": 4487, + "travelTimeSeconds": 480 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 1147, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 600, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 926, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 472, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 585, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 439, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 685, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 636, + "travelTimeSeconds": 101 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 1185, + "travelTimeSeconds": 190 + }, + { + "distanceMeters": 548, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 405, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 82, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 378, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 415, + "travelTimeSeconds": 93 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 252, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 18189, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10160.529949416274, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.22, + "travelTimeWithoutDwellTimesSeconds": 2520, + "operatingTimeWithLayoverTimeSeconds": 2772, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2520, + "operatingSpeedWithLayoverMetersPerSecond": 6.56, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.22 + }, + "mode": "bus", + "name": "Terminus De Montarville", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "8a3f1208-7ffb-452e-8ebb-c436acba82d6", + "2d7687a5-f458-4ce1-a3df-9639d89c0154", + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "81b3573e-d948-478d-a011-db20e21b0c62", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "85594754-b583-4735-aac6-bc45902705ca", + "c24ac61d-1b21-4358-b45f-8dd4921fc769", + "f1d63efc-c02d-4bb9-828b-ddc2e062546b", + "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", + "1254d090-1d68-478c-a4fc-972cd246c948", + "86d2a168-d8d6-4528-80ff-833432ddaf2d", + "c7d234f2-22e5-4459-8628-1d01e7ca4dc0", + "95cc31bb-b82e-4ab9-921f-e5a8cd8454c3", + "b66a9525-9dd9-49fa-b088-bde983b8c260", + "6d4dc817-4368-4ece-aeda-37df1213d699", + "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", + "6672cb43-3241-42d7-b5c0-fdaed10338b9", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "c520acc8-980c-45c0-9195-152ad50ee471", + "18aabfcd-f4e1-4782-a757-80cdf1597763", + "6c99422e-05cb-48dc-811f-162fee50cf80", + "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", + "44ce6da8-ee79-4e09-9c16-f31566643c0c", + "7b512bac-ad2d-4d5a-87d8-173290a7b311", + "2cdb15ef-cdbd-4b50-8947-cb9baee33626", + "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "617c5711-4aaa-4c7f-bebe-63268ac405bb", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "4fcc129f-8015-4b36-a21f-2437aa91a265", + "49262d07-72b2-466f-bf49-88656466e4a4", + "9e857d67-44b9-48aa-aa36-d1284504d820", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", + "bbe875bc-cb85-4a61-923d-53ee4746a213" + ], + "stops": [], + "line_id": "082003fb-77eb-4f62-9ca9-1070628f1832", + "segments": [ + 0, + 127, + 134, + 157, + 187, + 208, + 236, + 245, + 251, + 257, + 261, + 272, + 282, + 300, + 312, + 319, + 331, + 488, + 496, + 557, + 589, + 601, + 604, + 607, + 617, + 628, + 634, + 637, + 645, + 648, + 654, + 660, + 667, + 671, + 675, + 679, + 682, + 688 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 226, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.468109, + 45.516382 + ], + [ + -73.467981, + 45.516556 + ], + [ + -73.467555, + 45.517154 + ], + [ + -73.467158, + 45.517689 + ], + [ + -73.466811, + 45.518176 + ], + [ + -73.466776, + 45.518225 + ], + [ + -73.466413, + 45.518737 + ], + [ + -73.465429, + 45.520073 + ], + [ + -73.465207, + 45.520429 + ], + [ + -73.46486, + 45.520895 + ], + [ + -73.46436, + 45.520733 + ], + [ + -73.464225, + 45.52069 + ], + [ + -73.464163, + 45.520404 + ], + [ + -73.464093, + 45.520082 + ], + [ + -73.464063, + 45.519947 + ], + [ + -73.463992, + 45.519645 + ], + [ + -73.463946, + 45.519416 + ], + [ + -73.463946, + 45.519259 + ], + [ + -73.463946, + 45.519088 + ], + [ + -73.463972, + 45.518953 + ], + [ + -73.464012, + 45.51884 + ], + [ + -73.46406, + 45.518732 + ], + [ + -73.464166, + 45.518557 + ], + [ + -73.464483, + 45.518161 + ], + [ + -73.464817, + 45.517677 + ], + [ + -73.464941, + 45.517498 + ], + [ + -73.465811, + 45.516258 + ], + [ + -73.466126, + 45.515837 + ], + [ + -73.466232, + 45.515695 + ], + [ + -73.466795, + 45.514943 + ], + [ + -73.46773, + 45.513678 + ], + [ + -73.467821, + 45.513555 + ], + [ + -73.468294, + 45.512911 + ], + [ + -73.468704, + 45.512354 + ], + [ + -73.468744, + 45.5123 + ], + [ + -73.469443, + 45.511193 + ], + [ + -73.469555, + 45.511034 + ], + [ + -73.469846, + 45.510622 + ], + [ + -73.470521, + 45.509701 + ], + [ + -73.471066, + 45.508957 + ], + [ + -73.471144, + 45.508849 + ], + [ + -73.471383, + 45.508929 + ], + [ + -73.471787, + 45.509065 + ], + [ + -73.472138, + 45.509183 + ], + [ + -73.475244, + 45.510201 + ], + [ + -73.475433, + 45.510263 + ], + [ + -73.478287, + 45.511194 + ], + [ + -73.478511, + 45.511267 + ], + [ + -73.481436, + 45.51222 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.484518, + 45.513219 + ], + [ + -73.484663, + 45.513266 + ], + [ + -73.487609, + 45.514226 + ], + [ + -73.48773, + 45.514265 + ], + [ + -73.490677, + 45.515225 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.493754, + 45.51623 + ], + [ + -73.493881, + 45.516272 + ], + [ + -73.497582, + 45.517469 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.49882, + 45.517869 + ], + [ + -73.499876, + 45.518228 + ], + [ + -73.499972, + 45.518261 + ], + [ + -73.502076, + 45.518938 + ], + [ + -73.502235, + 45.51899 + ], + [ + -73.505398, + 45.520023 + ], + [ + -73.505525, + 45.520065 + ], + [ + -73.507516, + 45.520707 + ], + [ + -73.507813, + 45.520803 + ], + [ + -73.507881, + 45.520866 + ], + [ + -73.508099, + 45.520938 + ], + [ + -73.508258, + 45.520974 + ], + [ + -73.50837, + 45.520987 + ], + [ + -73.508461, + 45.520983 + ], + [ + -73.508562, + 45.520983 + ], + [ + -73.50866, + 45.520978 + ], + [ + -73.50877, + 45.520987 + ], + [ + -73.508969, + 45.521037 + ], + [ + -73.509108, + 45.521064 + ], + [ + -73.509167, + 45.521059 + ], + [ + -73.510001, + 45.521342 + ], + [ + -73.510243, + 45.521423 + ], + [ + -73.511276, + 45.521761 + ], + [ + -73.512472, + 45.522155 + ], + [ + -73.513225, + 45.522404 + ], + [ + -73.513329, + 45.522453 + ], + [ + -73.51347, + 45.522512 + ], + [ + -73.513848, + 45.522669 + ], + [ + -73.513975, + 45.522746 + ], + [ + -73.51419, + 45.522845 + ], + [ + -73.514604, + 45.52298 + ], + [ + -73.515018, + 45.52307 + ], + [ + -73.515337, + 45.52311 + ], + [ + -73.515636, + 45.523119 + ], + [ + -73.51578, + 45.523087 + ], + [ + -73.515992, + 45.523069 + ], + [ + -73.516183, + 45.523047 + ], + [ + -73.516331, + 45.52302 + ], + [ + -73.516535, + 45.522966 + ], + [ + -73.517023, + 45.522772 + ], + [ + -73.517522, + 45.522552 + ], + [ + -73.518003, + 45.522345 + ], + [ + -73.518219, + 45.522255 + ], + [ + -73.518483, + 45.522178 + ], + [ + -73.518751, + 45.522111 + ], + [ + -73.518959, + 45.52207 + ], + [ + -73.519211, + 45.522021 + ], + [ + -73.519463, + 45.521967 + ], + [ + -73.520583, + 45.521872 + ], + [ + -73.522213, + 45.521732 + ], + [ + -73.523688, + 45.521608 + ], + [ + -73.525628, + 45.521442 + ], + [ + -73.525933, + 45.521416 + ], + [ + -73.534391, + 45.520735 + ], + [ + -73.534716, + 45.520716 + ], + [ + -73.535006, + 45.520706 + ], + [ + -73.535439, + 45.520719 + ], + [ + -73.535574, + 45.520734 + ], + [ + -73.535886, + 45.520771 + ], + [ + -73.536216, + 45.520827 + ], + [ + -73.538962, + 45.521314 + ], + [ + -73.546713, + 45.522688 + ], + [ + -73.546899, + 45.522724 + ], + [ + -73.547126, + 45.522828 + ], + [ + -73.550978, + 45.524639 + ], + [ + -73.5511, + 45.524684 + ], + [ + -73.551293, + 45.524734 + ], + [ + -73.553654, + 45.525353 + ], + [ + -73.553877, + 45.52543 + ], + [ + -73.554163, + 45.525542 + ], + [ + -73.554506, + 45.525695 + ], + [ + -73.554687, + 45.525824 + ], + [ + -73.554811, + 45.525929 + ], + [ + -73.554929, + 45.526059 + ], + [ + -73.55493, + 45.526059 + ], + [ + -73.554993, + 45.526176 + ], + [ + -73.555026, + 45.52628 + ], + [ + -73.554833, + 45.526514 + ], + [ + -73.554697, + 45.526599 + ], + [ + -73.554558, + 45.526626 + ], + [ + -73.554315, + 45.526628 + ], + [ + -73.553319, + 45.526172 + ], + [ + -73.553138, + 45.526114 + ], + [ + -73.551756, + 45.525462 + ], + [ + -73.552803, + 45.524296 + ], + [ + -73.552521, + 45.524164 + ], + [ + -73.552505, + 45.524157 + ], + [ + -73.55141, + 45.523643 + ], + [ + -73.550364, + 45.524824 + ], + [ + -73.550043, + 45.524672 + ], + [ + -73.549511, + 45.524419 + ], + [ + -73.548735, + 45.524051 + ], + [ + -73.548198, + 45.52379 + ], + [ + -73.548092, + 45.523688 + ], + [ + -73.547877, + 45.523575 + ], + [ + -73.547516, + 45.523402 + ], + [ + -73.547208, + 45.52326 + ], + [ + -73.546709, + 45.522954 + ], + [ + -73.54663, + 45.522846 + ], + [ + -73.546597, + 45.522733 + ], + [ + -73.546634, + 45.522544 + ], + [ + -73.54672, + 45.522337 + ], + [ + -73.547896, + 45.520642 + ], + [ + -73.548138, + 45.520782 + ], + [ + -73.548447, + 45.520961 + ], + [ + -73.548509, + 45.520997 + ], + [ + -73.548897, + 45.521198 + ], + [ + -73.549685, + 45.521399 + ], + [ + -73.549878, + 45.521441 + ], + [ + -73.551169, + 45.522041 + ], + [ + -73.55189, + 45.522385 + ], + [ + -73.552357, + 45.5226 + ], + [ + -73.552183, + 45.522794 + ], + [ + -73.551746, + 45.523283 + ], + [ + -73.552137, + 45.523459 + ], + [ + -73.552783, + 45.523749 + ], + [ + -73.552798, + 45.523756 + ] + ] + }, + "id": 227, + "properties": { + "id": "1cd629e8-d0ed-48b3-94a0-80b005600439", + "data": { + "gtfs": { + "shape_id": "170_3_A" + }, + "segments": [ + { + "distanceMeters": 224, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 382, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 80, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 455, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 329, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 4028, + "travelTimeSeconds": 360 + }, + { + "distanceMeters": 948, + "travelTimeSeconds": 304 + }, + { + "distanceMeters": 545, + "travelTimeSeconds": 176 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11136, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6647.389058783231, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.87, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 6.19, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.87 + }, + "mode": "bus", + "name": "boul. Jacques-Cartier", + "color": "#A32638", + "nodes": [ + "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9", + "dcd7d0e4-fcf8-4c5b-b660-50e4efaf9e01", + "39c3eab5-6995-4187-aaec-6f0b6badd5cf", + "146e7d43-1e02-4f93-ac9a-e66dd29d3576", + "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", + "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", + "f9f88325-b670-4d47-91fa-edb372992bbc", + "e1a9e623-935b-47b9-a038-bcbd5a33f95e", + "ba348c95-9f07-48ca-a139-5d5c2dd83350", + "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", + "6c122298-4ea6-41ee-91e8-bb29cb41a320", + "e1825eb4-cef2-4f98-872f-0d169be63859", + "5a82a520-52b6-417e-972a-f9bf56fb4f33", + "64ba3e91-9bea-4655-ac42-4f3f1a14955c", + "315b8823-6c3a-493b-9af5-7325cbc48096", + "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "05287baf-76e5-4533-8eef-0902c45b01ae", + "54cba115-6a75-4b65-8019-b2b5de7a3947", + "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", + "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", + "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", + "52b1586a-11ae-4a36-8706-2e4367c6d3c8", + "75f9df26-8a28-4cb0-870b-f121f95b87ff", + "40dfecad-5647-485d-a27b-e190661c773f", + "75f9df26-8a28-4cb0-870b-f121f95b87ff" + ], + "stops": [], + "line_id": "7c21482a-939f-4cf2-b5cd-72eafd09295b", + "segments": [ + 0, + 4, + 10, + 13, + 24, + 27, + 30, + 33, + 41, + 44, + 46, + 48, + 50, + 52, + 54, + 56, + 58, + 61, + 63, + 65, + 67, + 80, + 83, + 146, + 164 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 227, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.552798, + 45.523756 + ], + [ + -73.553169, + 45.523923 + ], + [ + -73.553767, + 45.523257 + ], + [ + -73.555188, + 45.523908 + ], + [ + -73.555627, + 45.524117 + ], + [ + -73.55624, + 45.524407 + ], + [ + -73.55626, + 45.524493 + ], + [ + -73.556323, + 45.524604 + ], + [ + -73.556382, + 45.524741 + ], + [ + -73.556395, + 45.524862 + ], + [ + -73.556366, + 45.525013 + ], + [ + -73.556312, + 45.525159 + ], + [ + -73.555993, + 45.52551 + ], + [ + -73.555851, + 45.525631 + ], + [ + -73.5557, + 45.525694 + ], + [ + -73.555468, + 45.525745 + ], + [ + -73.55523, + 45.525754 + ], + [ + -73.555119, + 45.525758 + ], + [ + -73.554898, + 45.525744 + ], + [ + -73.554738, + 45.525727 + ], + [ + -73.554506, + 45.525695 + ], + [ + -73.554163, + 45.525542 + ], + [ + -73.553877, + 45.52543 + ], + [ + -73.553654, + 45.525353 + ], + [ + -73.551293, + 45.524734 + ], + [ + -73.5511, + 45.524684 + ], + [ + -73.550978, + 45.524639 + ], + [ + -73.547126, + 45.522828 + ], + [ + -73.546899, + 45.522724 + ], + [ + -73.546713, + 45.522688 + ], + [ + -73.538962, + 45.521314 + ], + [ + -73.536216, + 45.520827 + ], + [ + -73.535886, + 45.520771 + ], + [ + -73.535574, + 45.520734 + ], + [ + -73.535439, + 45.520719 + ], + [ + -73.535006, + 45.520706 + ], + [ + -73.534716, + 45.520716 + ], + [ + -73.534391, + 45.520735 + ], + [ + -73.525933, + 45.521416 + ], + [ + -73.523688, + 45.521608 + ], + [ + -73.522213, + 45.521732 + ], + [ + -73.520583, + 45.521872 + ], + [ + -73.519463, + 45.521967 + ], + [ + -73.518971, + 45.521953 + ], + [ + -73.518699, + 45.52194 + ], + [ + -73.518544, + 45.521913 + ], + [ + -73.518139, + 45.521836 + ], + [ + -73.517435, + 45.521638 + ], + [ + -73.516819, + 45.52145 + ], + [ + -73.516415, + 45.521301 + ], + [ + -73.516231, + 45.521265 + ], + [ + -73.516072, + 45.521198 + ], + [ + -73.515909, + 45.521135 + ], + [ + -73.515651, + 45.521058 + ], + [ + -73.515492, + 45.52104 + ], + [ + -73.515294, + 45.521036 + ], + [ + -73.515041, + 45.52104 + ], + [ + -73.514771, + 45.521054 + ], + [ + -73.514481, + 45.521095 + ], + [ + -73.514156, + 45.521121 + ], + [ + -73.513922, + 45.521144 + ], + [ + -73.513685, + 45.52114 + ], + [ + -73.513454, + 45.521135 + ], + [ + -73.51331, + 45.521135 + ], + [ + -73.513325, + 45.522121 + ], + [ + -73.513329, + 45.522453 + ], + [ + -73.513225, + 45.522404 + ], + [ + -73.51322, + 45.522402 + ], + [ + -73.511276, + 45.521761 + ], + [ + -73.510463, + 45.521495 + ], + [ + -73.510243, + 45.521423 + ], + [ + -73.509167, + 45.521059 + ], + [ + -73.50913, + 45.52101 + ], + [ + -73.509054, + 45.520983 + ], + [ + -73.508914, + 45.520938 + ], + [ + -73.508742, + 45.520907 + ], + [ + -73.50874, + 45.520906 + ], + [ + -73.508615, + 45.520897 + ], + [ + -73.508519, + 45.520893 + ], + [ + -73.508513, + 45.520893 + ], + [ + -73.508412, + 45.520888 + ], + [ + -73.508316, + 45.520888 + ], + [ + -73.508225, + 45.520879 + ], + [ + -73.508096, + 45.520852 + ], + [ + -73.507904, + 45.520798 + ], + [ + -73.507813, + 45.520803 + ], + [ + -73.505675, + 45.520113 + ], + [ + -73.505525, + 45.520065 + ], + [ + -73.502343, + 45.519025 + ], + [ + -73.502235, + 45.51899 + ], + [ + -73.500085, + 45.518297 + ], + [ + -73.499972, + 45.518261 + ], + [ + -73.49882, + 45.517869 + ], + [ + -73.497863, + 45.51756 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.494013, + 45.516315 + ], + [ + -73.493881, + 45.516272 + ], + [ + -73.491006, + 45.515332 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.487859, + 45.514307 + ], + [ + -73.48773, + 45.514265 + ], + [ + -73.484804, + 45.513312 + ], + [ + -73.484663, + 45.513266 + ], + [ + -73.481712, + 45.512309 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.478657, + 45.511315 + ], + [ + -73.478511, + 45.511267 + ], + [ + -73.475556, + 45.510303 + ], + [ + -73.475433, + 45.510263 + ], + [ + -73.472378, + 45.509261 + ], + [ + -73.472138, + 45.509183 + ], + [ + -73.471144, + 45.508849 + ], + [ + -73.470997, + 45.508809 + ], + [ + -73.470932, + 45.508894 + ], + [ + -73.470751, + 45.509138 + ], + [ + -73.470366, + 45.509655 + ], + [ + -73.470032, + 45.510114 + ], + [ + -73.46959, + 45.510721 + ], + [ + -73.469434, + 45.510905 + ], + [ + -73.469378, + 45.510967 + ], + [ + -73.469091, + 45.511282 + ], + [ + -73.468985, + 45.5114 + ], + [ + -73.46844, + 45.512143 + ], + [ + -73.468415, + 45.512178 + ], + [ + -73.46651, + 45.514829 + ], + [ + -73.466445, + 45.514919 + ], + [ + -73.466151, + 45.515363 + ], + [ + -73.465949, + 45.515589 + ], + [ + -73.466056, + 45.515628 + ], + [ + -73.466138, + 45.51566 + ], + [ + -73.466232, + 45.515695 + ], + [ + -73.466474, + 45.515795 + ], + [ + -73.466702, + 45.515853 + ], + [ + -73.46681, + 45.515868 + ], + [ + -73.466838, + 45.515871 + ], + [ + -73.466992, + 45.515894 + ], + [ + -73.467576, + 45.515962 + ], + [ + -73.467711, + 45.515993 + ], + [ + -73.467803, + 45.516016 + ], + [ + -73.467947, + 45.51607 + ], + [ + -73.468254, + 45.516187 + ], + [ + -73.468109, + 45.516382 + ] + ] + }, + "id": 228, + "properties": { + "id": "1ada84a9-338d-447e-a687-ddf1913ccdd0", + "data": { + "gtfs": { + "shape_id": "170_2_R" + }, + "segments": [ + { + "distanceMeters": 296, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 3782, + "travelTimeSeconds": 279 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 331, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 540, + "travelTimeSeconds": 104 + }, + { + "distanceMeters": 335, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 28 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8819, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6647.389058783231, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.17, + "travelTimeWithoutDwellTimesSeconds": 1080, + "operatingTimeWithLayoverTimeSeconds": 1260, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1080, + "operatingSpeedWithLayoverMetersPerSecond": 7, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.17 + }, + "mode": "bus", + "name": "Métro Papineau", + "color": "#A32638", + "nodes": [ + "75f9df26-8a28-4cb0-870b-f121f95b87ff", + "966adf78-011a-4f07-b40a-1523cd7ecae5", + "3e3330f1-b4ce-44de-ae6a-efb45bab99e2", + "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", + "54cba115-6a75-4b65-8019-b2b5de7a3947", + "05287baf-76e5-4533-8eef-0902c45b01ae", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", + "315b8823-6c3a-493b-9af5-7325cbc48096", + "64ba3e91-9bea-4655-ac42-4f3f1a14955c", + "5a82a520-52b6-417e-972a-f9bf56fb4f33", + "e1825eb4-cef2-4f98-872f-0d169be63859", + "6c122298-4ea6-41ee-91e8-bb29cb41a320", + "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", + "777c347b-29df-4aab-9968-5fdfd62ed61a", + "e1a9e623-935b-47b9-a038-bcbd5a33f95e", + "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", + "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", + "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9" + ], + "stops": [], + "line_id": "7c21482a-939f-4cf2-b5cd-72eafd09295b", + "segments": [ + 0, + 4, + 64, + 69, + 75, + 86, + 88, + 90, + 93, + 95, + 97, + 99, + 101, + 103, + 105, + 107, + 109, + 122, + 124, + 133 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 228, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.468109, + 45.516382 + ], + [ + -73.467981, + 45.516556 + ], + [ + -73.467555, + 45.517154 + ], + [ + -73.467158, + 45.517689 + ], + [ + -73.466811, + 45.518176 + ], + [ + -73.466776, + 45.518225 + ], + [ + -73.466413, + 45.518737 + ], + [ + -73.465429, + 45.520073 + ], + [ + -73.465207, + 45.520429 + ], + [ + -73.46486, + 45.520895 + ], + [ + -73.46436, + 45.520733 + ], + [ + -73.464225, + 45.52069 + ], + [ + -73.464163, + 45.520404 + ], + [ + -73.464093, + 45.520082 + ], + [ + -73.464063, + 45.519947 + ], + [ + -73.463992, + 45.519645 + ], + [ + -73.463946, + 45.519416 + ], + [ + -73.463946, + 45.519259 + ], + [ + -73.463946, + 45.519088 + ], + [ + -73.463972, + 45.518953 + ], + [ + -73.464012, + 45.51884 + ], + [ + -73.46406, + 45.518732 + ], + [ + -73.464166, + 45.518557 + ], + [ + -73.464483, + 45.518161 + ], + [ + -73.464817, + 45.517677 + ], + [ + -73.464941, + 45.517498 + ], + [ + -73.465811, + 45.516258 + ], + [ + -73.466127, + 45.515837 + ], + [ + -73.466232, + 45.515695 + ], + [ + -73.466795, + 45.514943 + ], + [ + -73.46773, + 45.513678 + ], + [ + -73.467821, + 45.513555 + ], + [ + -73.468294, + 45.512911 + ], + [ + -73.468705, + 45.512353 + ], + [ + -73.468744, + 45.5123 + ], + [ + -73.469443, + 45.511193 + ], + [ + -73.469555, + 45.511034 + ], + [ + -73.469846, + 45.510622 + ], + [ + -73.470521, + 45.509701 + ], + [ + -73.471066, + 45.508957 + ], + [ + -73.471144, + 45.508849 + ], + [ + -73.471383, + 45.508929 + ], + [ + -73.471787, + 45.509065 + ], + [ + -73.472138, + 45.509183 + ], + [ + -73.475244, + 45.510201 + ], + [ + -73.475433, + 45.510263 + ], + [ + -73.478288, + 45.511194 + ], + [ + -73.478511, + 45.511267 + ], + [ + -73.481437, + 45.51222 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.484519, + 45.513219 + ], + [ + -73.484663, + 45.513266 + ], + [ + -73.48761, + 45.514226 + ], + [ + -73.48773, + 45.514265 + ], + [ + -73.490677, + 45.515225 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.493755, + 45.516231 + ], + [ + -73.493881, + 45.516272 + ], + [ + -73.497582, + 45.51747 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.49882, + 45.517869 + ], + [ + -73.499877, + 45.518228 + ], + [ + -73.499972, + 45.518261 + ], + [ + -73.502076, + 45.518939 + ], + [ + -73.502235, + 45.51899 + ], + [ + -73.505399, + 45.520023 + ], + [ + -73.505525, + 45.520065 + ], + [ + -73.507517, + 45.520707 + ], + [ + -73.507813, + 45.520803 + ], + [ + -73.507881, + 45.520866 + ], + [ + -73.508099, + 45.520938 + ], + [ + -73.508258, + 45.520974 + ], + [ + -73.50837, + 45.520987 + ], + [ + -73.508613, + 45.521464 + ], + [ + -73.508816, + 45.52186 + ], + [ + -73.508893, + 45.522004 + ], + [ + -73.509178, + 45.522539 + ], + [ + -73.50928, + 45.522728 + ], + [ + -73.509633, + 45.523397 + ], + [ + -73.509691, + 45.523507 + ], + [ + -73.509731, + 45.523583 + ], + [ + -73.509969, + 45.524042 + ], + [ + -73.510188, + 45.524465 + ], + [ + -73.510559, + 45.524591 + ], + [ + -73.510756, + 45.524655 + ], + [ + -73.511489, + 45.524897 + ], + [ + -73.512842, + 45.525324 + ], + [ + -73.513242, + 45.525453 + ], + [ + -73.513379, + 45.525517 + ], + [ + -73.513526, + 45.525517 + ], + [ + -73.513651, + 45.525506 + ], + [ + -73.514307, + 45.52545 + ], + [ + -73.515089, + 45.525378 + ], + [ + -73.515879, + 45.525306 + ], + [ + -73.516357, + 45.525284 + ], + [ + -73.516855, + 45.525274 + ], + [ + -73.517839, + 45.525305 + ], + [ + -73.51796, + 45.52531 + ], + [ + -73.518079, + 45.525332 + ], + [ + -73.518183, + 45.525347 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.52547 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519162, + 45.525158 + ], + [ + -73.519057, + 45.525166 + ], + [ + -73.518828, + 45.525169 + ], + [ + -73.518662, + 45.525195 + ], + [ + -73.518477, + 45.525222 + ], + [ + -73.51841, + 45.525229 + ], + [ + -73.518323, + 45.525204 + ], + [ + -73.518104, + 45.525116 + ], + [ + -73.517976, + 45.525089 + ], + [ + -73.517896, + 45.525071 + ], + [ + -73.517676, + 45.525049 + ], + [ + -73.517288, + 45.525026 + ], + [ + -73.517148, + 45.524995 + ], + [ + -73.517084, + 45.524972 + ], + [ + -73.51695, + 45.524896 + ], + [ + -73.516847, + 45.524842 + ], + [ + -73.516699, + 45.52473 + ], + [ + -73.516595, + 45.524662 + ], + [ + -73.516519, + 45.524577 + ], + [ + -73.516463, + 45.524496 + ], + [ + -73.516423, + 45.524379 + ], + [ + -73.516405, + 45.524203 + ], + [ + -73.516578, + 45.523623 + ], + [ + -73.516683, + 45.523438 + ], + [ + -73.516823, + 45.523209 + ], + [ + -73.516951, + 45.523069 + ], + [ + -73.517159, + 45.522876 + ], + [ + -73.517395, + 45.522705 + ], + [ + -73.517522, + 45.522552 + ], + [ + -73.518003, + 45.522345 + ], + [ + -73.518219, + 45.522255 + ], + [ + -73.518483, + 45.522178 + ], + [ + -73.518751, + 45.522111 + ], + [ + -73.518959, + 45.52207 + ], + [ + -73.519211, + 45.522021 + ], + [ + -73.519463, + 45.521967 + ], + [ + -73.520583, + 45.521872 + ], + [ + -73.522213, + 45.521732 + ], + [ + -73.523688, + 45.521608 + ], + [ + -73.525933, + 45.521416 + ], + [ + -73.534391, + 45.520735 + ], + [ + -73.534716, + 45.520716 + ], + [ + -73.535006, + 45.520706 + ], + [ + -73.535439, + 45.520719 + ], + [ + -73.535574, + 45.520734 + ], + [ + -73.535886, + 45.520771 + ], + [ + -73.536216, + 45.520827 + ], + [ + -73.538962, + 45.521314 + ], + [ + -73.546713, + 45.522688 + ], + [ + -73.546899, + 45.522724 + ], + [ + -73.547126, + 45.522828 + ], + [ + -73.550978, + 45.524639 + ], + [ + -73.5511, + 45.524684 + ], + [ + -73.551293, + 45.524734 + ], + [ + -73.553654, + 45.525353 + ], + [ + -73.553877, + 45.52543 + ], + [ + -73.554163, + 45.525542 + ], + [ + -73.554506, + 45.525695 + ], + [ + -73.554687, + 45.525824 + ], + [ + -73.554811, + 45.525929 + ], + [ + -73.554929, + 45.526059 + ], + [ + -73.55493, + 45.526059 + ], + [ + -73.554993, + 45.526176 + ], + [ + -73.555026, + 45.52628 + ], + [ + -73.554833, + 45.526514 + ], + [ + -73.554697, + 45.526599 + ], + [ + -73.554558, + 45.526626 + ], + [ + -73.554315, + 45.526628 + ], + [ + -73.553319, + 45.526172 + ], + [ + -73.553138, + 45.526114 + ], + [ + -73.551756, + 45.525462 + ], + [ + -73.552803, + 45.524296 + ], + [ + -73.552521, + 45.524164 + ], + [ + -73.552515, + 45.524162 + ], + [ + -73.55141, + 45.523643 + ], + [ + -73.550364, + 45.524824 + ], + [ + -73.550043, + 45.524672 + ], + [ + -73.549511, + 45.524419 + ], + [ + -73.548735, + 45.524051 + ], + [ + -73.548198, + 45.52379 + ], + [ + -73.548092, + 45.523688 + ], + [ + -73.547877, + 45.523575 + ], + [ + -73.547516, + 45.523402 + ], + [ + -73.547208, + 45.52326 + ], + [ + -73.546709, + 45.522954 + ], + [ + -73.54663, + 45.522846 + ], + [ + -73.546597, + 45.522733 + ], + [ + -73.546634, + 45.522544 + ], + [ + -73.54672, + 45.522337 + ], + [ + -73.547896, + 45.520642 + ], + [ + -73.548138, + 45.520782 + ], + [ + -73.548437, + 45.520955 + ], + [ + -73.548509, + 45.520997 + ], + [ + -73.548897, + 45.521198 + ], + [ + -73.549685, + 45.521399 + ], + [ + -73.549878, + 45.521441 + ], + [ + -73.551169, + 45.522041 + ], + [ + -73.55189, + 45.522385 + ], + [ + -73.552357, + 45.5226 + ], + [ + -73.552183, + 45.522794 + ], + [ + -73.551746, + 45.523283 + ], + [ + -73.552137, + 45.523459 + ], + [ + -73.552783, + 45.523749 + ], + [ + -73.552798, + 45.523756 + ] + ] + }, + "id": 229, + "properties": { + "id": "b0ac35dc-537c-497e-a7f1-3b2487cc42c1", + "data": { + "gtfs": { + "shape_id": "170_1_A" + }, + "segments": [ + { + "distanceMeters": 224, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 382, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 80, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 455, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 329, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 5369, + "travelTimeSeconds": 900 + }, + { + "distanceMeters": 948, + "travelTimeSeconds": 342 + }, + { + "distanceMeters": 546, + "travelTimeSeconds": 198 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 222, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12055, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6647.389058783231, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.43, + "travelTimeWithoutDwellTimesSeconds": 2220, + "operatingTimeWithLayoverTimeSeconds": 2442, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2220, + "operatingSpeedWithLayoverMetersPerSecond": 4.94, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.43 + }, + "mode": "bus", + "name": "boul. Jacques-Cartier", + "color": "#A32638", + "nodes": [ + "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9", + "dcd7d0e4-fcf8-4c5b-b660-50e4efaf9e01", + "39c3eab5-6995-4187-aaec-6f0b6badd5cf", + "146e7d43-1e02-4f93-ac9a-e66dd29d3576", + "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", + "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", + "f9f88325-b670-4d47-91fa-edb372992bbc", + "e1a9e623-935b-47b9-a038-bcbd5a33f95e", + "ba348c95-9f07-48ca-a139-5d5c2dd83350", + "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", + "6c122298-4ea6-41ee-91e8-bb29cb41a320", + "e1825eb4-cef2-4f98-872f-0d169be63859", + "5a82a520-52b6-417e-972a-f9bf56fb4f33", + "64ba3e91-9bea-4655-ac42-4f3f1a14955c", + "315b8823-6c3a-493b-9af5-7325cbc48096", + "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "05287baf-76e5-4533-8eef-0902c45b01ae", + "54cba115-6a75-4b65-8019-b2b5de7a3947", + "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", + "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", + "75f9df26-8a28-4cb0-870b-f121f95b87ff", + "40dfecad-5647-485d-a27b-e190661c773f", + "75f9df26-8a28-4cb0-870b-f121f95b87ff" + ], + "stops": [], + "line_id": "7c21482a-939f-4cf2-b5cd-72eafd09295b", + "segments": [ + 0, + 4, + 10, + 13, + 24, + 27, + 30, + 33, + 41, + 44, + 46, + 48, + 50, + 52, + 54, + 56, + 58, + 61, + 63, + 65, + 67, + 183, + 201 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 229, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.468109, + 45.516382 + ], + [ + -73.467981, + 45.516556 + ], + [ + -73.467555, + 45.517154 + ], + [ + -73.467158, + 45.517689 + ], + [ + -73.466776, + 45.518225 + ], + [ + -73.466413, + 45.518737 + ], + [ + -73.465429, + 45.520073 + ], + [ + -73.465207, + 45.520429 + ], + [ + -73.46486, + 45.520895 + ], + [ + -73.464225, + 45.52069 + ], + [ + -73.464163, + 45.520404 + ], + [ + -73.464063, + 45.519947 + ], + [ + -73.463992, + 45.519645 + ], + [ + -73.463946, + 45.519416 + ], + [ + -73.463946, + 45.519259 + ], + [ + -73.463946, + 45.519088 + ], + [ + -73.463972, + 45.518953 + ], + [ + -73.464012, + 45.51884 + ], + [ + -73.46406, + 45.518732 + ], + [ + -73.464166, + 45.518557 + ], + [ + -73.464483, + 45.518161 + ], + [ + -73.464941, + 45.517498 + ], + [ + -73.465811, + 45.516258 + ], + [ + -73.466232, + 45.515695 + ], + [ + -73.466795, + 45.514943 + ], + [ + -73.467821, + 45.513555 + ], + [ + -73.468294, + 45.512911 + ], + [ + -73.468744, + 45.5123 + ], + [ + -73.469443, + 45.511193 + ], + [ + -73.469555, + 45.511034 + ], + [ + -73.469846, + 45.510622 + ], + [ + -73.470521, + 45.509701 + ], + [ + -73.471066, + 45.508957 + ], + [ + -73.471144, + 45.508849 + ], + [ + -73.471787, + 45.509065 + ], + [ + -73.472138, + 45.509183 + ], + [ + -73.475433, + 45.510263 + ], + [ + -73.478511, + 45.511267 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.484663, + 45.513266 + ], + [ + -73.48773, + 45.514265 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.493881, + 45.516272 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.49882, + 45.517869 + ], + [ + -73.499972, + 45.518261 + ], + [ + -73.502235, + 45.51899 + ], + [ + -73.505525, + 45.520065 + ], + [ + -73.507813, + 45.520803 + ], + [ + -73.507881, + 45.520866 + ], + [ + -73.508099, + 45.520938 + ], + [ + -73.508258, + 45.520974 + ], + [ + -73.50837, + 45.520987 + ], + [ + -73.508461, + 45.520983 + ], + [ + -73.508562, + 45.520983 + ], + [ + -73.50866, + 45.520978 + ], + [ + -73.50877, + 45.520987 + ], + [ + -73.508969, + 45.521037 + ], + [ + -73.509108, + 45.521064 + ], + [ + -73.509167, + 45.521059 + ], + [ + -73.510243, + 45.521423 + ], + [ + -73.511276, + 45.521761 + ], + [ + -73.513225, + 45.522404 + ], + [ + -73.513329, + 45.522453 + ], + [ + -73.51347, + 45.522512 + ], + [ + -73.513848, + 45.522669 + ], + [ + -73.513975, + 45.522746 + ], + [ + -73.51419, + 45.522845 + ], + [ + -73.514604, + 45.52298 + ], + [ + -73.515018, + 45.52307 + ], + [ + -73.515337, + 45.52311 + ], + [ + -73.515636, + 45.523119 + ], + [ + -73.51578, + 45.523087 + ], + [ + -73.515992, + 45.523069 + ], + [ + -73.516183, + 45.523047 + ], + [ + -73.516331, + 45.52302 + ], + [ + -73.516535, + 45.522966 + ], + [ + -73.517023, + 45.522772 + ], + [ + -73.517522, + 45.522552 + ], + [ + -73.518003, + 45.522345 + ], + [ + -73.518219, + 45.522255 + ], + [ + -73.518483, + 45.522178 + ], + [ + -73.518751, + 45.522111 + ], + [ + -73.518959, + 45.52207 + ], + [ + -73.519211, + 45.522021 + ], + [ + -73.519463, + 45.521967 + ], + [ + -73.520583, + 45.521872 + ], + [ + -73.522213, + 45.521732 + ], + [ + -73.523688, + 45.521608 + ], + [ + -73.525628, + 45.521442 + ], + [ + -73.525933, + 45.521416 + ], + [ + -73.534391, + 45.520735 + ], + [ + -73.534716, + 45.520716 + ], + [ + -73.535006, + 45.520706 + ], + [ + -73.535439, + 45.520719 + ], + [ + -73.535574, + 45.520734 + ], + [ + -73.535886, + 45.520771 + ], + [ + -73.536216, + 45.520827 + ], + [ + -73.538962, + 45.521314 + ], + [ + -73.546713, + 45.522688 + ], + [ + -73.546899, + 45.522724 + ], + [ + -73.547126, + 45.522828 + ], + [ + -73.550978, + 45.524639 + ], + [ + -73.5511, + 45.524684 + ], + [ + -73.551293, + 45.524734 + ], + [ + -73.553654, + 45.525353 + ], + [ + -73.553877, + 45.52543 + ], + [ + -73.554163, + 45.525542 + ], + [ + -73.554506, + 45.525695 + ], + [ + -73.554687, + 45.525824 + ], + [ + -73.554811, + 45.525929 + ], + [ + -73.554929, + 45.526059 + ], + [ + -73.55493, + 45.526059 + ], + [ + -73.554993, + 45.526176 + ], + [ + -73.555026, + 45.52628 + ], + [ + -73.554833, + 45.526514 + ], + [ + -73.554697, + 45.526599 + ], + [ + -73.554558, + 45.526626 + ], + [ + -73.554315, + 45.526628 + ], + [ + -73.553319, + 45.526172 + ], + [ + -73.553138, + 45.526114 + ], + [ + -73.551756, + 45.525462 + ], + [ + -73.551291, + 45.52526 + ], + [ + -73.550364, + 45.524824 + ], + [ + -73.550043, + 45.524672 + ], + [ + -73.549511, + 45.524419 + ], + [ + -73.548735, + 45.524051 + ], + [ + -73.548198, + 45.52379 + ], + [ + -73.548092, + 45.523688 + ], + [ + -73.547877, + 45.523575 + ], + [ + -73.547516, + 45.523402 + ], + [ + -73.547208, + 45.52326 + ], + [ + -73.546709, + 45.522954 + ], + [ + -73.54663, + 45.522846 + ], + [ + -73.546597, + 45.522733 + ], + [ + -73.546634, + 45.522544 + ], + [ + -73.54672, + 45.522337 + ], + [ + -73.547896, + 45.520642 + ], + [ + -73.548138, + 45.520782 + ], + [ + -73.548438, + 45.520956 + ], + [ + -73.548509, + 45.520997 + ], + [ + -73.548897, + 45.521198 + ], + [ + -73.549685, + 45.521399 + ], + [ + -73.549878, + 45.521441 + ], + [ + -73.551169, + 45.522041 + ], + [ + -73.55189, + 45.522385 + ], + [ + -73.552357, + 45.5226 + ], + [ + -73.552183, + 45.522794 + ], + [ + -73.551746, + 45.523283 + ], + [ + -73.552137, + 45.523459 + ], + [ + -73.552783, + 45.523749 + ], + [ + -73.552798, + 45.523756 + ] + ] + }, + "id": 230, + "properties": { + "id": "53a560f8-dfee-4111-a629-f3cdfd15745e", + "data": { + "gtfs": { + "shape_id": "170_2_A" + }, + "segments": [ + { + "distanceMeters": 10282, + "travelTimeSeconds": 306 + }, + { + "distanceMeters": 546, + "travelTimeSeconds": 234 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10827, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 180.0543518070401, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 20.05, + "travelTimeWithoutDwellTimesSeconds": 540, + "operatingTimeWithLayoverTimeSeconds": 720, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 540, + "operatingSpeedWithLayoverMetersPerSecond": 15.04, + "averageSpeedWithoutDwellTimesMetersPerSecond": 20.05 + }, + "mode": "bus", + "name": "boul. Jacques-Cartier", + "color": "#A32638", + "nodes": [ + "c621a0b4-590c-49e4-a56e-dbf728939757", + "40dfecad-5647-485d-a27b-e190661c773f", + "75f9df26-8a28-4cb0-870b-f121f95b87ff" + ], + "stops": [], + "line_id": "7c21482a-939f-4cf2-b5cd-72eafd09295b", + "segments": [ + 0, + 139 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 230, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.468109, + 45.516382 + ], + [ + -73.467981, + 45.516556 + ], + [ + -73.467555, + 45.517154 + ], + [ + -73.467158, + 45.517689 + ], + [ + -73.466811, + 45.518176 + ], + [ + -73.466776, + 45.518225 + ], + [ + -73.466413, + 45.518737 + ], + [ + -73.465429, + 45.520073 + ], + [ + -73.465207, + 45.520429 + ], + [ + -73.46486, + 45.520895 + ], + [ + -73.464361, + 45.520733 + ], + [ + -73.464225, + 45.52069 + ], + [ + -73.464163, + 45.520404 + ], + [ + -73.464093, + 45.520083 + ], + [ + -73.464063, + 45.519947 + ], + [ + -73.463992, + 45.519645 + ], + [ + -73.463946, + 45.519416 + ], + [ + -73.463946, + 45.519259 + ], + [ + -73.463946, + 45.519088 + ], + [ + -73.463972, + 45.518953 + ], + [ + -73.464012, + 45.51884 + ], + [ + -73.46406, + 45.518732 + ], + [ + -73.464166, + 45.518557 + ], + [ + -73.464483, + 45.518161 + ], + [ + -73.464817, + 45.517678 + ], + [ + -73.464941, + 45.517498 + ], + [ + -73.465811, + 45.516258 + ], + [ + -73.466126, + 45.515838 + ], + [ + -73.466232, + 45.515695 + ], + [ + -73.466795, + 45.514943 + ], + [ + -73.467729, + 45.51368 + ], + [ + -73.467821, + 45.513555 + ], + [ + -73.468294, + 45.512911 + ], + [ + -73.468703, + 45.512355 + ], + [ + -73.468744, + 45.5123 + ], + [ + -73.469443, + 45.511193 + ], + [ + -73.469555, + 45.511034 + ], + [ + -73.469846, + 45.510622 + ], + [ + -73.470521, + 45.509701 + ], + [ + -73.471066, + 45.508957 + ], + [ + -73.471144, + 45.508849 + ], + [ + -73.47138, + 45.508928 + ], + [ + -73.471787, + 45.509065 + ], + [ + -73.472138, + 45.509183 + ], + [ + -73.475241, + 45.5102 + ], + [ + -73.475433, + 45.510263 + ], + [ + -73.478284, + 45.511193 + ], + [ + -73.478511, + 45.511267 + ], + [ + -73.481433, + 45.512218 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.484514, + 45.513217 + ], + [ + -73.484663, + 45.513266 + ], + [ + -73.487605, + 45.514224 + ], + [ + -73.48773, + 45.514265 + ], + [ + -73.490672, + 45.515223 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.493749, + 45.516229 + ], + [ + -73.493881, + 45.516272 + ], + [ + -73.497576, + 45.517468 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.49882, + 45.517869 + ], + [ + -73.49987, + 45.518226 + ], + [ + -73.499972, + 45.518261 + ], + [ + -73.50207, + 45.518937 + ], + [ + -73.502235, + 45.51899 + ], + [ + -73.505391, + 45.520021 + ], + [ + -73.505525, + 45.520065 + ], + [ + -73.50751, + 45.520705 + ], + [ + -73.507813, + 45.520803 + ], + [ + -73.507881, + 45.520866 + ], + [ + -73.508099, + 45.520938 + ], + [ + -73.508258, + 45.520974 + ], + [ + -73.50837, + 45.520987 + ], + [ + -73.508461, + 45.520983 + ], + [ + -73.508562, + 45.520983 + ], + [ + -73.50866, + 45.520978 + ], + [ + -73.50877, + 45.520987 + ], + [ + -73.508969, + 45.521037 + ], + [ + -73.509108, + 45.521064 + ], + [ + -73.509167, + 45.521059 + ], + [ + -73.509995, + 45.521339 + ], + [ + -73.510243, + 45.521423 + ], + [ + -73.511276, + 45.521761 + ], + [ + -73.512465, + 45.522153 + ], + [ + -73.513225, + 45.522404 + ], + [ + -73.513329, + 45.522453 + ], + [ + -73.51347, + 45.522512 + ], + [ + -73.513848, + 45.522669 + ], + [ + -73.513975, + 45.522746 + ], + [ + -73.51419, + 45.522845 + ], + [ + -73.514604, + 45.52298 + ], + [ + -73.515018, + 45.52307 + ], + [ + -73.515337, + 45.52311 + ], + [ + -73.515636, + 45.523119 + ], + [ + -73.51578, + 45.523087 + ], + [ + -73.515992, + 45.523069 + ], + [ + -73.516183, + 45.523047 + ], + [ + -73.516331, + 45.52302 + ], + [ + -73.516535, + 45.522966 + ], + [ + -73.517023, + 45.522772 + ], + [ + -73.517522, + 45.522552 + ], + [ + -73.518003, + 45.522345 + ], + [ + -73.518219, + 45.522255 + ], + [ + -73.518483, + 45.522178 + ], + [ + -73.518751, + 45.522111 + ], + [ + -73.518959, + 45.52207 + ], + [ + -73.519211, + 45.522021 + ], + [ + -73.519463, + 45.521967 + ], + [ + -73.520583, + 45.521872 + ], + [ + -73.522213, + 45.521732 + ], + [ + -73.523688, + 45.521608 + ], + [ + -73.525628, + 45.521442 + ], + [ + -73.525933, + 45.521416 + ], + [ + -73.534391, + 45.520735 + ], + [ + -73.534716, + 45.520716 + ], + [ + -73.535006, + 45.520706 + ], + [ + -73.535439, + 45.520719 + ], + [ + -73.535574, + 45.520734 + ], + [ + -73.535886, + 45.520771 + ], + [ + -73.536216, + 45.520827 + ], + [ + -73.538962, + 45.521314 + ], + [ + -73.546713, + 45.522688 + ], + [ + -73.546899, + 45.522724 + ], + [ + -73.547126, + 45.522828 + ], + [ + -73.550978, + 45.524639 + ], + [ + -73.5511, + 45.524684 + ], + [ + -73.551293, + 45.524734 + ], + [ + -73.553654, + 45.525353 + ], + [ + -73.553877, + 45.52543 + ], + [ + -73.554163, + 45.525542 + ], + [ + -73.554506, + 45.525695 + ], + [ + -73.554687, + 45.525824 + ], + [ + -73.554811, + 45.525929 + ], + [ + -73.554929, + 45.526059 + ], + [ + -73.55493, + 45.526059 + ], + [ + -73.554993, + 45.526176 + ], + [ + -73.555026, + 45.52628 + ], + [ + -73.554833, + 45.526514 + ], + [ + -73.554697, + 45.526599 + ], + [ + -73.554558, + 45.526626 + ], + [ + -73.554315, + 45.526628 + ], + [ + -73.553319, + 45.526172 + ], + [ + -73.553138, + 45.526114 + ], + [ + -73.551756, + 45.525462 + ], + [ + -73.551291, + 45.52526 + ], + [ + -73.550634, + 45.524951 + ], + [ + -73.550364, + 45.524824 + ], + [ + -73.550043, + 45.524672 + ], + [ + -73.549511, + 45.524419 + ], + [ + -73.548735, + 45.524051 + ], + [ + -73.548198, + 45.52379 + ], + [ + -73.548092, + 45.523688 + ], + [ + -73.547877, + 45.523575 + ], + [ + -73.547516, + 45.523402 + ], + [ + -73.547208, + 45.52326 + ], + [ + -73.546709, + 45.522954 + ], + [ + -73.54663, + 45.522846 + ], + [ + -73.546597, + 45.522733 + ], + [ + -73.546634, + 45.522544 + ], + [ + -73.54672, + 45.522337 + ], + [ + -73.547896, + 45.520642 + ], + [ + -73.548138, + 45.520782 + ], + [ + -73.548438, + 45.520956 + ], + [ + -73.548509, + 45.520997 + ], + [ + -73.548897, + 45.521198 + ], + [ + -73.549685, + 45.521399 + ], + [ + -73.549878, + 45.521441 + ], + [ + -73.551169, + 45.522041 + ], + [ + -73.55189, + 45.522385 + ], + [ + -73.552357, + 45.5226 + ], + [ + -73.552183, + 45.522794 + ], + [ + -73.551746, + 45.523283 + ], + [ + -73.552137, + 45.523459 + ], + [ + -73.552783, + 45.523749 + ], + [ + -73.552798, + 45.523756 + ] + ] + }, + "id": 231, + "properties": { + "id": "6afed557-ea95-4306-b63a-c5328c9af2c0", + "data": { + "gtfs": { + "shape_id": "170_2_A" + }, + "segments": [ + { + "distanceMeters": 224, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 382, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 80, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 455, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 329, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 3952, + "travelTimeSeconds": 480 + }, + { + "distanceMeters": 715, + "travelTimeSeconds": 306 + }, + { + "distanceMeters": 546, + "travelTimeSeconds": 234 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10827, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6647.389058783231, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.01, + "travelTimeWithoutDwellTimesSeconds": 1800, + "operatingTimeWithLayoverTimeSeconds": 1980, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1800, + "operatingSpeedWithLayoverMetersPerSecond": 5.47, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.01 + }, + "mode": "bus", + "name": "boul. Jacques-Cartier", + "color": "#A32638", + "nodes": [ + "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9", + "dcd7d0e4-fcf8-4c5b-b660-50e4efaf9e01", + "39c3eab5-6995-4187-aaec-6f0b6badd5cf", + "146e7d43-1e02-4f93-ac9a-e66dd29d3576", + "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", + "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", + "f9f88325-b670-4d47-91fa-edb372992bbc", + "e1a9e623-935b-47b9-a038-bcbd5a33f95e", + "ba348c95-9f07-48ca-a139-5d5c2dd83350", + "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", + "6c122298-4ea6-41ee-91e8-bb29cb41a320", + "e1825eb4-cef2-4f98-872f-0d169be63859", + "5a82a520-52b6-417e-972a-f9bf56fb4f33", + "64ba3e91-9bea-4655-ac42-4f3f1a14955c", + "315b8823-6c3a-493b-9af5-7325cbc48096", + "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "05287baf-76e5-4533-8eef-0902c45b01ae", + "54cba115-6a75-4b65-8019-b2b5de7a3947", + "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", + "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", + "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", + "52b1586a-11ae-4a36-8706-2e4367c6d3c8", + "c621a0b4-590c-49e4-a56e-dbf728939757", + "40dfecad-5647-485d-a27b-e190661c773f", + "75f9df26-8a28-4cb0-870b-f121f95b87ff" + ], + "stops": [], + "line_id": "7c21482a-939f-4cf2-b5cd-72eafd09295b", + "segments": [ + 0, + 4, + 10, + 13, + 24, + 27, + 30, + 33, + 41, + 44, + 46, + 48, + 50, + 52, + 54, + 56, + 58, + 61, + 63, + 65, + 67, + 80, + 83, + 145, + 162 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 231, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.468109, + 45.516382 + ], + [ + -73.467981, + 45.516556 + ], + [ + -73.467555, + 45.517154 + ], + [ + -73.467158, + 45.517689 + ], + [ + -73.466776, + 45.518225 + ], + [ + -73.466413, + 45.518737 + ], + [ + -73.465602, + 45.519839 + ], + [ + -73.465429, + 45.520073 + ], + [ + -73.465207, + 45.520429 + ], + [ + -73.46486, + 45.520895 + ], + [ + -73.464225, + 45.52069 + ], + [ + -73.464163, + 45.520404 + ], + [ + -73.464063, + 45.519947 + ], + [ + -73.463992, + 45.519645 + ], + [ + -73.463946, + 45.519416 + ], + [ + -73.463946, + 45.519259 + ], + [ + -73.463946, + 45.519088 + ], + [ + -73.463972, + 45.518953 + ], + [ + -73.464012, + 45.51884 + ], + [ + -73.46406, + 45.518732 + ], + [ + -73.464166, + 45.518557 + ], + [ + -73.464483, + 45.518161 + ], + [ + -73.464941, + 45.517498 + ], + [ + -73.465811, + 45.516258 + ], + [ + -73.465943, + 45.516081 + ], + [ + -73.466232, + 45.515695 + ], + [ + -73.466795, + 45.514943 + ], + [ + -73.46686, + 45.514855 + ], + [ + -73.467821, + 45.513555 + ], + [ + -73.468294, + 45.512911 + ], + [ + -73.468744, + 45.5123 + ], + [ + -73.469443, + 45.511193 + ], + [ + -73.469555, + 45.511034 + ], + [ + -73.469846, + 45.510622 + ], + [ + -73.469971, + 45.51045 + ], + [ + -73.470521, + 45.509701 + ], + [ + -73.471066, + 45.508957 + ], + [ + -73.471144, + 45.508849 + ], + [ + -73.471787, + 45.509065 + ], + [ + -73.472138, + 45.509183 + ], + [ + -73.473938, + 45.509773 + ], + [ + -73.475433, + 45.510263 + ], + [ + -73.478511, + 45.511267 + ], + [ + -73.480006, + 45.511754 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.483726, + 45.512962 + ], + [ + -73.484663, + 45.513266 + ], + [ + -73.48773, + 45.514265 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.493881, + 45.516272 + ], + [ + -73.493917, + 45.516284 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.49882, + 45.517869 + ], + [ + -73.499972, + 45.518261 + ], + [ + -73.501377, + 45.518713 + ], + [ + -73.502235, + 45.51899 + ], + [ + -73.505525, + 45.520065 + ], + [ + -73.507249, + 45.520621 + ], + [ + -73.507813, + 45.520803 + ], + [ + -73.507881, + 45.520866 + ], + [ + -73.508099, + 45.520938 + ], + [ + -73.508258, + 45.520974 + ], + [ + -73.50837, + 45.520987 + ], + [ + -73.508461, + 45.520983 + ], + [ + -73.508562, + 45.520983 + ], + [ + -73.50866, + 45.520978 + ], + [ + -73.50877, + 45.520987 + ], + [ + -73.508969, + 45.521037 + ], + [ + -73.509108, + 45.521064 + ], + [ + -73.509167, + 45.521059 + ], + [ + -73.510243, + 45.521423 + ], + [ + -73.511276, + 45.521761 + ], + [ + -73.513225, + 45.522404 + ], + [ + -73.513329, + 45.522453 + ], + [ + -73.513337, + 45.522457 + ], + [ + -73.51347, + 45.522512 + ], + [ + -73.513848, + 45.522669 + ], + [ + -73.513975, + 45.522746 + ], + [ + -73.51419, + 45.522845 + ], + [ + -73.514604, + 45.52298 + ], + [ + -73.515018, + 45.52307 + ], + [ + -73.515337, + 45.52311 + ], + [ + -73.515636, + 45.523119 + ], + [ + -73.51578, + 45.523087 + ], + [ + -73.515992, + 45.523069 + ], + [ + -73.516183, + 45.523047 + ], + [ + -73.516331, + 45.52302 + ], + [ + -73.516535, + 45.522966 + ], + [ + -73.517023, + 45.522772 + ], + [ + -73.517522, + 45.522552 + ], + [ + -73.518003, + 45.522345 + ], + [ + -73.518219, + 45.522255 + ], + [ + -73.518483, + 45.522178 + ], + [ + -73.518751, + 45.522111 + ], + [ + -73.518959, + 45.52207 + ], + [ + -73.519211, + 45.522021 + ], + [ + -73.519279, + 45.522006 + ], + [ + -73.519463, + 45.521967 + ], + [ + -73.520583, + 45.521872 + ], + [ + -73.522213, + 45.521732 + ], + [ + -73.523688, + 45.521608 + ], + [ + -73.525628, + 45.521442 + ], + [ + -73.525795, + 45.521428 + ], + [ + -73.525933, + 45.521416 + ], + [ + -73.532275, + 45.520905 + ], + [ + -73.534391, + 45.520735 + ], + [ + -73.534716, + 45.520716 + ], + [ + -73.535006, + 45.520706 + ], + [ + -73.535439, + 45.520719 + ], + [ + -73.535574, + 45.520734 + ], + [ + -73.535886, + 45.520771 + ], + [ + -73.536216, + 45.520827 + ], + [ + -73.538712, + 45.521269 + ], + [ + -73.538962, + 45.521314 + ], + [ + -73.546591, + 45.522667 + ], + [ + -73.546713, + 45.522688 + ], + [ + -73.546899, + 45.522724 + ], + [ + -73.547126, + 45.522828 + ], + [ + -73.550698, + 45.524508 + ], + [ + -73.550978, + 45.524639 + ], + [ + -73.5511, + 45.524684 + ], + [ + -73.551293, + 45.524734 + ], + [ + -73.553654, + 45.525353 + ], + [ + -73.553877, + 45.52543 + ], + [ + -73.554163, + 45.525542 + ], + [ + -73.554506, + 45.525695 + ], + [ + -73.554687, + 45.525824 + ], + [ + -73.554811, + 45.525929 + ], + [ + -73.554829, + 45.525948 + ], + [ + -73.554929, + 45.526059 + ], + [ + -73.55493, + 45.526059 + ], + [ + -73.554993, + 45.526176 + ], + [ + -73.555026, + 45.52628 + ], + [ + -73.554833, + 45.526514 + ], + [ + -73.554697, + 45.526599 + ], + [ + -73.554558, + 45.526626 + ], + [ + -73.554315, + 45.526628 + ], + [ + -73.553319, + 45.526172 + ], + [ + -73.553138, + 45.526114 + ], + [ + -73.551756, + 45.525462 + ], + [ + -73.551291, + 45.52526 + ], + [ + -73.550364, + 45.524824 + ], + [ + -73.550043, + 45.524672 + ], + [ + -73.54964, + 45.524481 + ], + [ + -73.549511, + 45.524419 + ], + [ + -73.548735, + 45.524051 + ], + [ + -73.548198, + 45.52379 + ], + [ + -73.548092, + 45.523688 + ], + [ + -73.547877, + 45.523575 + ], + [ + -73.547516, + 45.523402 + ], + [ + -73.547208, + 45.52326 + ], + [ + -73.546709, + 45.522954 + ], + [ + -73.54663, + 45.522846 + ], + [ + -73.546597, + 45.522733 + ], + [ + -73.546634, + 45.522544 + ], + [ + -73.546696, + 45.522395 + ], + [ + -73.54672, + 45.522337 + ], + [ + -73.547896, + 45.520642 + ], + [ + -73.548138, + 45.520782 + ], + [ + -73.548509, + 45.520997 + ], + [ + -73.548897, + 45.521198 + ], + [ + -73.549685, + 45.521399 + ], + [ + -73.549878, + 45.521441 + ], + [ + -73.549977, + 45.521487 + ], + [ + -73.551169, + 45.522041 + ], + [ + -73.55189, + 45.522385 + ], + [ + -73.552357, + 45.5226 + ], + [ + -73.552183, + 45.522794 + ], + [ + -73.551746, + 45.523283 + ], + [ + -73.552137, + 45.523459 + ], + [ + -73.552783, + 45.523749 + ], + [ + -73.552798, + 45.523756 + ] + ] + }, + "id": 232, + "properties": { + "id": "bb56fe28-cfc3-47dd-87f3-c152ea8d2e72", + "data": { + "gtfs": { + "shape_id": "170_2_A" + }, + "segments": [ + { + "distanceMeters": 432, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 736, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 547, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 522, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 876, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 641, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 505, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 522, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 511, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 512, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 509, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 511, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 634, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 382, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 364, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 551, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 407, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 31 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10827, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3520.82665481789, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 13.88, + "travelTimeWithoutDwellTimesSeconds": 780, + "operatingTimeWithLayoverTimeSeconds": 960, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 780, + "operatingSpeedWithLayoverMetersPerSecond": 11.28, + "averageSpeedWithoutDwellTimesMetersPerSecond": 13.88 + }, + "mode": "bus", + "name": "boul. Jacques-Cartier", + "color": "#A32638", + "nodes": [ + "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9", + "dcd7d0e4-fcf8-4c5b-b660-50e4efaf9e01", + "39c3eab5-6995-4187-aaec-6f0b6badd5cf", + "146e7d43-1e02-4f93-ac9a-e66dd29d3576", + "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", + "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", + "f9f88325-b670-4d47-91fa-edb372992bbc", + "e1a9e623-935b-47b9-a038-bcbd5a33f95e", + "ba348c95-9f07-48ca-a139-5d5c2dd83350", + "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", + "6c122298-4ea6-41ee-91e8-bb29cb41a320", + "e1825eb4-cef2-4f98-872f-0d169be63859", + "5a82a520-52b6-417e-972a-f9bf56fb4f33", + "64ba3e91-9bea-4655-ac42-4f3f1a14955c", + "315b8823-6c3a-493b-9af5-7325cbc48096", + "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "05287baf-76e5-4533-8eef-0902c45b01ae", + "54cba115-6a75-4b65-8019-b2b5de7a3947", + "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", + "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", + "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", + "52b1586a-11ae-4a36-8706-2e4367c6d3c8" + ], + "stops": [], + "line_id": "7c21482a-939f-4cf2-b5cd-72eafd09295b", + "segments": [ + 0, + 6, + 24, + 27, + 34, + 40, + 43, + 45, + 50, + 54, + 57, + 74, + 96, + 102, + 104, + 112, + 114, + 118, + 128, + 143, + 155, + 163 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 232, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.485782, + 45.531115 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.488538, + 45.532145 + ], + [ + -73.488569, + 45.532091 + ], + [ + -73.488692, + 45.531915 + ], + [ + -73.48872, + 45.531877 + ], + [ + -73.488835, + 45.531718 + ], + [ + -73.488919, + 45.5316 + ], + [ + -73.489294, + 45.531043 + ], + [ + -73.489582, + 45.530624 + ], + [ + -73.489681, + 45.53048 + ], + [ + -73.490074, + 45.529927 + ], + [ + -73.490523, + 45.529279 + ], + [ + -73.490857, + 45.528779 + ], + [ + -73.491012, + 45.528546 + ], + [ + -73.490563, + 45.5284 + ], + [ + -73.489761, + 45.52814 + ], + [ + -73.489528, + 45.528064 + ], + [ + -73.490298, + 45.527569 + ], + [ + -73.490653, + 45.527304 + ], + [ + -73.491326, + 45.52676 + ], + [ + -73.4914, + 45.526701 + ], + [ + -73.492088, + 45.526179 + ], + [ + -73.492707, + 45.525635 + ], + [ + -73.492898, + 45.525424 + ], + [ + -73.49318, + 45.525113 + ], + [ + -73.493408, + 45.524902 + ], + [ + -73.493799, + 45.524641 + ], + [ + -73.494186, + 45.524488 + ], + [ + -73.4947, + 45.524306 + ], + [ + -73.494785, + 45.524276 + ], + [ + -73.495166, + 45.524155 + ], + [ + -73.495493, + 45.524047 + ], + [ + -73.495888, + 45.523925 + ], + [ + -73.496536, + 45.523723 + ], + [ + -73.49671, + 45.523592 + ], + [ + -73.496788, + 45.523534 + ], + [ + -73.497235, + 45.523003 + ], + [ + -73.497422, + 45.522652 + ], + [ + -73.497435, + 45.5224 + ], + [ + -73.497302, + 45.521807 + ], + [ + -73.497269, + 45.521658 + ], + [ + -73.497101, + 45.520911 + ], + [ + -73.497017, + 45.520339 + ], + [ + -73.497012, + 45.520222 + ], + [ + -73.49702, + 45.520083 + ], + [ + -73.497044, + 45.519908 + ], + [ + -73.497064, + 45.519764 + ], + [ + -73.497081, + 45.519684 + ], + [ + -73.497108, + 45.519561 + ], + [ + -73.497278, + 45.518832 + ], + [ + -73.497354, + 45.518522 + ], + [ + -73.497411, + 45.518364 + ], + [ + -73.497477, + 45.518175 + ], + [ + -73.497613, + 45.517826 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.498036, + 45.516808 + ], + [ + -73.498296, + 45.516252 + ], + [ + -73.498388, + 45.516056 + ], + [ + -73.498727, + 45.51526 + ], + [ + -73.499247, + 45.514482 + ], + [ + -73.499299, + 45.514405 + ], + [ + -73.498872, + 45.51427 + ], + [ + -73.498574, + 45.514176 + ], + [ + -73.495995, + 45.513361 + ], + [ + -73.495825, + 45.513307 + ], + [ + -73.494505, + 45.512884 + ], + [ + -73.493805, + 45.512659 + ], + [ + -73.493619, + 45.512695 + ], + [ + -73.493364, + 45.512745 + ], + [ + -73.493005, + 45.512633 + ], + [ + -73.492639, + 45.51252 + ], + [ + -73.492769, + 45.512327 + ], + [ + -73.493081, + 45.511867 + ], + [ + -73.493369, + 45.51144 + ], + [ + -73.493501, + 45.511236 + ], + [ + -73.493538, + 45.511179 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494003, + 45.510501 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.49184, + 45.50869 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488541, + 45.503629 + ], + [ + -73.48831, + 45.50321 + ], + [ + -73.48823, + 45.503039 + ], + [ + -73.488092, + 45.502693 + ], + [ + -73.487989, + 45.502369 + ], + [ + -73.487959, + 45.502275 + ], + [ + -73.487746, + 45.501478 + ], + [ + -73.487613, + 45.501033 + ], + [ + -73.487523, + 45.500735 + ], + [ + -73.487509, + 45.500686 + ], + [ + -73.487464, + 45.50056 + ], + [ + -73.487346, + 45.500232 + ], + [ + -73.487139, + 45.499795 + ], + [ + -73.486985, + 45.499512 + ], + [ + -73.486839, + 45.499268 + ], + [ + -73.486818, + 45.499233 + ], + [ + -73.48673, + 45.4991 + ], + [ + -73.486631, + 45.498949 + ], + [ + -73.486428, + 45.498675 + ], + [ + -73.486216, + 45.498401 + ], + [ + -73.486166, + 45.498342 + ], + [ + -73.486, + 45.498149 + ], + [ + -73.485576, + 45.497708 + ], + [ + -73.485299, + 45.497456 + ], + [ + -73.485253, + 45.497416 + ], + [ + -73.485251, + 45.497415 + ], + [ + -73.484899, + 45.497123 + ], + [ + -73.48444, + 45.49678 + ], + [ + -73.484387, + 45.49674 + ], + [ + -73.484357, + 45.496722 + ], + [ + -73.482231, + 45.495317 + ], + [ + -73.482144, + 45.49526 + ], + [ + -73.482055, + 45.495201 + ], + [ + -73.479537, + 45.493533 + ], + [ + -73.479372, + 45.493423 + ], + [ + -73.474527, + 45.490222 + ], + [ + -73.474366, + 45.490115 + ], + [ + -73.473909, + 45.489814 + ], + [ + -73.472101, + 45.488618 + ], + [ + -73.471942, + 45.488513 + ], + [ + -73.46708, + 45.485304 + ], + [ + -73.466642, + 45.484984 + ], + [ + -73.466511, + 45.484875 + ], + [ + -73.466473, + 45.484845 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466302, + 45.484687 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466188, + 45.484448 + ], + [ + -73.466149, + 45.484395 + ], + [ + -73.465905, + 45.484113 + ], + [ + -73.465719, + 45.4839 + ], + [ + -73.46546, + 45.483541 + ], + [ + -73.465236, + 45.483174 + ], + [ + -73.465161, + 45.483037 + ], + [ + -73.465057, + 45.482799 + ], + [ + -73.464968, + 45.48254 + ], + [ + -73.46489, + 45.482284 + ], + [ + -73.464833, + 45.481906 + ], + [ + -73.464816, + 45.481524 + ], + [ + -73.464841, + 45.481189 + ], + [ + -73.464843, + 45.481165 + ], + [ + -73.464847, + 45.481114 + ], + [ + -73.464866, + 45.480979 + ], + [ + -73.46492, + 45.48071 + ], + [ + -73.465032, + 45.480327 + ], + [ + -73.465198, + 45.479819 + ], + [ + -73.46547, + 45.479009 + ], + [ + -73.465547, + 45.478779 + ], + [ + -73.465652, + 45.478467 + ], + [ + -73.465874, + 45.477808 + ], + [ + -73.466474, + 45.475995 + ], + [ + -73.466484, + 45.475966 + ], + [ + -73.466637, + 45.475504 + ], + [ + -73.467366, + 45.473305 + ], + [ + -73.467616, + 45.472553 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467869, + 45.471793 + ], + [ + -73.467954, + 45.471482 + ], + [ + -73.467979, + 45.471365 + ], + [ + -73.468005, + 45.471249 + ], + [ + -73.468064, + 45.470898 + ], + [ + -73.468088, + 45.470653 + ], + [ + -73.468112, + 45.470407 + ], + [ + -73.468119, + 45.470155 + ], + [ + -73.468115, + 45.470044 + ], + [ + -73.468111, + 45.469894 + ], + [ + -73.468108, + 45.469818 + ], + [ + -73.468107, + 45.469773 + ], + [ + -73.46805, + 45.4693 + ], + [ + -73.467953, + 45.468836 + ], + [ + -73.467932, + 45.468733 + ], + [ + -73.467793, + 45.468274 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466768 + ] + ] + }, + "id": 233, + "properties": { + "id": "e064c179-f16a-4e36-ab11-3eb63d526e99", + "data": { + "gtfs": { + "shape_id": "177_1_R" + }, + "segments": [ + { + "distanceMeters": 317, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 953, + "travelTimeSeconds": 111 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 95, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 537, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 603, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 95 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 608, + "travelTimeSeconds": 133 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 79 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9347, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7261.505185340884, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.23, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 5.56, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.23 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "27c5df15-201f-4855-9f49-556fd659fd8e", + "a484746b-f716-4eab-ae1c-c7c08714d651", + "17183bd2-c06f-4999-9774-43fb48004315", + "37861c82-a45a-4026-bde0-eec4ce121a64", + "ec8a892d-b1ec-472d-a26a-5b38c3ac6966", + "dc7a6dd7-6fde-40ea-9f37-85aaefe35169", + "16c6c90b-9ef2-4203-a4a2-74a27e23dc94", + "afda06bb-9f3e-43a6-883f-96226fa884c5", + "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "6c8872a8-685f-49ed-9246-92743dd113de", + "161f72ac-926f-49be-80a4-a3cb10884d02", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "d32c5a5b-6e6f-48c3-9f4e-37b94ed6e20d", + "09272548-09d5-4afa-a45f-80ba6dd656dd", + "4a0c512f-2ce4-41cc-a200-cf81d75487c1", + "7095ff94-e6bf-4956-8b59-9e66be631584", + "5d573c90-ed41-4ac1-9f58-abc862e00f93", + "37199bb2-9740-4484-b68f-12d3c82f8bf9", + "bcd0a901-5384-443e-9be4-1f0faa123ccb", + "fdd9bfef-c8dc-4f65-9008-847050729854", + "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", + "7ad37664-fa6b-478f-8d31-2d3ae7009709", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "94cd69e7-ebc9-452b-a357-367107db73b4", + "03b1ef77-b509-4f21-97d5-d511eeb821cb", + "351136d8-2c40-4c3f-8032-a52e48738c07", + "159a0fe9-bedb-40f2-9806-32ab49594978", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "579043e1-54f7-411f-9a36-e7ee3324290f", + "1758013c-4193-42f0-a495-c36930003f5b", + "51e1600d-418e-4477-9b26-9e5507d72a03", + "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "131616ed-8c78-458b-a65e-78f1aeac1fc7" + ], + "stops": [], + "line_id": "c3c576d5-01e4-4c99-a14e-5360f902e029", + "segments": [ + 0, + 7, + 10, + 14, + 17, + 21, + 25, + 30, + 36, + 41, + 49, + 55, + 58, + 63, + 65, + 71, + 76, + 90, + 108, + 114, + 124, + 127, + 130, + 133, + 135, + 138, + 142, + 159, + 167, + 170, + 182, + 190 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 233, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469004, + 45.466768 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466444, + 45.465889 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467476, + 45.467991 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467548, + 45.468225 + ], + [ + -73.467698, + 45.468792 + ], + [ + -73.467776, + 45.469183 + ], + [ + -73.46782, + 45.469453 + ], + [ + -73.46784, + 45.469698 + ], + [ + -73.467865, + 45.469989 + ], + [ + -73.467864, + 45.470057 + ], + [ + -73.467862, + 45.470168 + ], + [ + -73.46786, + 45.470362 + ], + [ + -73.467821, + 45.470781 + ], + [ + -73.467786, + 45.471019 + ], + [ + -73.467768, + 45.4711 + ], + [ + -73.467742, + 45.471226 + ], + [ + -73.467655, + 45.471563 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467508, + 45.472063 + ], + [ + -73.467493, + 45.472108 + ], + [ + -73.467344, + 45.472559 + ], + [ + -73.467254, + 45.472832 + ], + [ + -73.467075, + 45.473412 + ], + [ + -73.467018, + 45.473612 + ], + [ + -73.46686, + 45.474168 + ], + [ + -73.466715, + 45.474632 + ], + [ + -73.466501, + 45.475269 + ], + [ + -73.466278, + 45.475935 + ], + [ + -73.466234, + 45.476067 + ], + [ + -73.466127, + 45.476384 + ], + [ + -73.465592, + 45.477979 + ], + [ + -73.465357, + 45.478703 + ], + [ + -73.46534, + 45.478747 + ], + [ + -73.465269, + 45.478932 + ], + [ + -73.465247, + 45.479 + ], + [ + -73.464879, + 45.480107 + ], + [ + -73.464823, + 45.480273 + ], + [ + -73.464733, + 45.480574 + ], + [ + -73.464664, + 45.480885 + ], + [ + -73.464647, + 45.481013 + ], + [ + -73.464634, + 45.481108 + ], + [ + -73.464622, + 45.481195 + ], + [ + -73.464619, + 45.481245 + ], + [ + -73.464603, + 45.481524 + ], + [ + -73.464619, + 45.481956 + ], + [ + -73.464693, + 45.482383 + ], + [ + -73.464736, + 45.482559 + ], + [ + -73.46485, + 45.482905 + ], + [ + -73.46499, + 45.483243 + ], + [ + -73.465069, + 45.483405 + ], + [ + -73.465231, + 45.483688 + ], + [ + -73.465328, + 45.483837 + ], + [ + -73.465383, + 45.483922 + ], + [ + -73.465513, + 45.484102 + ], + [ + -73.465839, + 45.48448 + ], + [ + -73.466022, + 45.484682 + ], + [ + -73.46613, + 45.484773 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.46623, + 45.484867 + ], + [ + -73.466294, + 45.484926 + ], + [ + -73.466458, + 45.485056 + ], + [ + -73.466566, + 45.485142 + ], + [ + -73.466759, + 45.48529 + ], + [ + -73.466948, + 45.485421 + ], + [ + -73.467024, + 45.48547 + ], + [ + -73.468004, + 45.486118 + ], + [ + -73.469888, + 45.487365 + ], + [ + -73.470621, + 45.487851 + ], + [ + -73.471594, + 45.488496 + ], + [ + -73.471789, + 45.488626 + ], + [ + -73.473768, + 45.489935 + ], + [ + -73.474009, + 45.490094 + ], + [ + -73.474218, + 45.490232 + ], + [ + -73.476501, + 45.49174 + ], + [ + -73.4777, + 45.49253 + ], + [ + -73.479088, + 45.493446 + ], + [ + -73.479217, + 45.493531 + ], + [ + -73.480275, + 45.494231 + ], + [ + -73.481907, + 45.495309 + ], + [ + -73.482, + 45.495372 + ], + [ + -73.482363, + 45.495611 + ], + [ + -73.483276, + 45.496213 + ], + [ + -73.483953, + 45.496659 + ], + [ + -73.484042, + 45.496722 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.48442, + 45.496983 + ], + [ + -73.484708, + 45.497199 + ], + [ + -73.484931, + 45.497378 + ], + [ + -73.485095, + 45.49751 + ], + [ + -73.485397, + 45.497784 + ], + [ + -73.485739, + 45.498135 + ], + [ + -73.485877, + 45.498284 + ], + [ + -73.486105, + 45.498553 + ], + [ + -73.486286, + 45.498787 + ], + [ + -73.486368, + 45.498907 + ], + [ + -73.486538, + 45.499154 + ], + [ + -73.486685, + 45.499381 + ], + [ + -73.486823, + 45.499615 + ], + [ + -73.486951, + 45.499858 + ], + [ + -73.487138, + 45.500263 + ], + [ + -73.487159, + 45.500317 + ], + [ + -73.487266, + 45.500606 + ], + [ + -73.487306, + 45.500713 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487417, + 45.501077 + ], + [ + -73.487455, + 45.501208 + ], + [ + -73.487464, + 45.50124 + ], + [ + -73.48765, + 45.50191 + ], + [ + -73.487855, + 45.502589 + ], + [ + -73.488032, + 45.50303 + ], + [ + -73.488178, + 45.503309 + ], + [ + -73.488409, + 45.50371 + ], + [ + -73.489159, + 45.504974 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492927, + 45.510111 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497927, + 45.512055 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.4998, + 45.513609 + ], + [ + -73.499664, + 45.513825 + ], + [ + -73.499364, + 45.514302 + ], + [ + -73.499299, + 45.514405 + ], + [ + -73.499247, + 45.514482 + ], + [ + -73.498727, + 45.51526 + ], + [ + -73.498428, + 45.515961 + ], + [ + -73.498388, + 45.516056 + ], + [ + -73.498036, + 45.516808 + ], + [ + -73.497772, + 45.517428 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.497477, + 45.518175 + ], + [ + -73.497411, + 45.518364 + ], + [ + -73.497354, + 45.518522 + ], + [ + -73.497278, + 45.518832 + ], + [ + -73.497139, + 45.519427 + ], + [ + -73.497108, + 45.519561 + ], + [ + -73.497064, + 45.519764 + ], + [ + -73.497044, + 45.519908 + ], + [ + -73.49702, + 45.520083 + ], + [ + -73.497012, + 45.520222 + ], + [ + -73.497017, + 45.520339 + ], + [ + -73.497101, + 45.520911 + ], + [ + -73.497233, + 45.521496 + ], + [ + -73.497269, + 45.521658 + ], + [ + -73.497435, + 45.5224 + ], + [ + -73.497422, + 45.522652 + ], + [ + -73.497235, + 45.523003 + ], + [ + -73.496893, + 45.52341 + ], + [ + -73.496788, + 45.523534 + ], + [ + -73.496536, + 45.523723 + ], + [ + -73.495888, + 45.523925 + ], + [ + -73.495493, + 45.524047 + ], + [ + -73.495166, + 45.524155 + ], + [ + -73.494785, + 45.524276 + ], + [ + -73.494275, + 45.524456 + ], + [ + -73.494186, + 45.524488 + ], + [ + -73.493799, + 45.524641 + ], + [ + -73.493408, + 45.524902 + ], + [ + -73.49318, + 45.525113 + ], + [ + -73.492788, + 45.525546 + ], + [ + -73.492707, + 45.525635 + ], + [ + -73.492088, + 45.526179 + ], + [ + -73.491454, + 45.52666 + ], + [ + -73.4914, + 45.526701 + ], + [ + -73.490653, + 45.527304 + ], + [ + -73.490298, + 45.527569 + ], + [ + -73.489528, + 45.528064 + ], + [ + -73.488678, + 45.5286 + ], + [ + -73.488593, + 45.528653 + ], + [ + -73.487775, + 45.529162 + ], + [ + -73.487089, + 45.529621 + ], + [ + -73.486752, + 45.529854 + ], + [ + -73.486628, + 45.52994 + ], + [ + -73.485959, + 45.530394 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.485782, + 45.531115 + ] + ] + }, + "id": 234, + "properties": { + "id": "d4f5f6ab-eb3b-4771-b1d2-80a8867e79fd", + "data": { + "gtfs": { + "shape_id": "177_1_A" + }, + "segments": [ + { + "distanceMeters": 805, + "travelTimeSeconds": 131 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 436, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 485, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 554, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 544, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 507, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 1157, + "travelTimeSeconds": 113 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 93 + }, + { + "distanceMeters": 384, + "travelTimeSeconds": 79 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 45 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9311, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7261.505185340884, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.47, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 5.75, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.47 + }, + "mode": "bus", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "acb7092d-3b2a-4d79-a4e3-09e7e52af475", + "47d29e21-b442-4f1e-bc41-0d7871af14e8", + "7eaffbff-c86c-4810-b174-bda8780c04b4", + "e76a6766-6730-419b-bd29-f65b80bb6721", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "4996264a-c3f0-4fe8-be81-9ca3d8659c61", + "e089008c-4123-4897-95b5-a61e5e049f48", + "03b1ef77-b509-4f21-97d5-d511eeb821cb", + "56af9248-f973-4335-84c1-2e5e744a3910", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "fd062866-a8eb-4466-b53a-6adf8fc3f09a", + "6c42a8f6-a98f-4058-9992-d00706a03dff", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "09272548-09d5-4afa-a45f-80ba6dd656dd", + "d32c5a5b-6e6f-48c3-9f4e-37b94ed6e20d", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "161f72ac-926f-49be-80a4-a3cb10884d02", + "6c8872a8-685f-49ed-9246-92743dd113de", + "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "afda06bb-9f3e-43a6-883f-96226fa884c5", + "16c6c90b-9ef2-4203-a4a2-74a27e23dc94", + "dc7a6dd7-6fde-40ea-9f37-85aaefe35169", + "280d705c-e41e-4a8f-8450-ac212bf84d99", + "79974834-930d-4e4d-921b-dafd49580553", + "27c5df15-201f-4855-9f49-556fd659fd8e" + ], + "stops": [], + "line_id": "c3c576d5-01e4-4c99-a14e-5360f902e029", + "segments": [ + 0, + 31, + 45, + 54, + 57, + 64, + 85, + 93, + 96, + 100, + 105, + 108, + 126, + 148, + 161, + 166, + 170, + 173, + 179, + 187, + 192, + 199, + 204, + 207, + 212, + 216 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 234, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.40209, + 45.582184 + ], + [ + -73.402436, + 45.58188 + ], + [ + -73.402759, + 45.581597 + ], + [ + -73.402997, + 45.581387 + ], + [ + -73.40365, + 45.580813 + ], + [ + -73.403738, + 45.580736 + ], + [ + -73.404732, + 45.579874 + ], + [ + -73.404903, + 45.57975 + ], + [ + -73.4054, + 45.579445 + ], + [ + -73.405449, + 45.579418 + ], + [ + -73.405562, + 45.579347 + ], + [ + -73.405566, + 45.579345 + ], + [ + -73.4057, + 45.579264 + ], + [ + -73.40548, + 45.579069 + ], + [ + -73.405449, + 45.579042 + ], + [ + -73.405272, + 45.578897 + ], + [ + -73.40517, + 45.578813 + ], + [ + -73.404428, + 45.578224 + ], + [ + -73.40436, + 45.578171 + ], + [ + -73.404045, + 45.577927 + ], + [ + -73.403788, + 45.577749 + ], + [ + -73.403207, + 45.577445 + ], + [ + -73.403621, + 45.577033 + ], + [ + -73.40366, + 45.576998 + ], + [ + -73.404511, + 45.576201 + ], + [ + -73.40454, + 45.576175 + ], + [ + -73.404582, + 45.576139 + ], + [ + -73.404806, + 45.575896 + ], + [ + -73.404941, + 45.57582 + ], + [ + -73.405504, + 45.575339 + ], + [ + -73.405913, + 45.574988 + ], + [ + -73.406353, + 45.574602 + ], + [ + -73.407377, + 45.573703 + ], + [ + -73.407648, + 45.573464 + ], + [ + -73.407787, + 45.573353 + ], + [ + -73.407902, + 45.573272 + ], + [ + -73.408156, + 45.573119 + ], + [ + -73.408432, + 45.572987 + ], + [ + -73.40901, + 45.572865 + ], + [ + -73.410733, + 45.572762 + ], + [ + -73.410922, + 45.572751 + ], + [ + -73.411036, + 45.572745 + ], + [ + -73.412381, + 45.572673 + ], + [ + -73.412661, + 45.572692 + ], + [ + -73.412713, + 45.572696 + ], + [ + -73.413219, + 45.572818 + ], + [ + -73.413504, + 45.572924 + ], + [ + -73.413615, + 45.572947 + ], + [ + -73.413719, + 45.573015 + ], + [ + -73.413779, + 45.573055 + ], + [ + -73.413835, + 45.573103 + ], + [ + -73.413911, + 45.573168 + ], + [ + -73.414077, + 45.573294 + ], + [ + -73.414647, + 45.573758 + ], + [ + -73.414791, + 45.57387 + ], + [ + -73.415452, + 45.574393 + ], + [ + -73.415714, + 45.5746 + ], + [ + -73.416156, + 45.574947 + ], + [ + -73.417067, + 45.575663 + ], + [ + -73.418497, + 45.576798 + ], + [ + -73.418642, + 45.576911 + ], + [ + -73.418667, + 45.576931 + ], + [ + -73.418861, + 45.577082 + ], + [ + -73.418953, + 45.577153 + ], + [ + -73.419, + 45.577192 + ], + [ + -73.419047, + 45.57723 + ], + [ + -73.419313, + 45.577437 + ], + [ + -73.41953, + 45.577608 + ], + [ + -73.420061, + 45.578025 + ], + [ + -73.420081, + 45.578041 + ], + [ + -73.420386, + 45.578284 + ], + [ + -73.420532, + 45.578396 + ], + [ + -73.421072, + 45.578819 + ], + [ + -73.4211, + 45.578841 + ], + [ + -73.421663, + 45.579282 + ], + [ + -73.421745, + 45.579346 + ], + [ + -73.421793, + 45.579382 + ], + [ + -73.421846, + 45.579423 + ], + [ + -73.42208, + 45.579603 + ], + [ + -73.422546, + 45.579959 + ], + [ + -73.422663, + 45.580049 + ], + [ + -73.422806, + 45.580158 + ], + [ + -73.423009, + 45.580315 + ], + [ + -73.423236, + 45.580486 + ], + [ + -73.423455, + 45.580651 + ], + [ + -73.423789, + 45.580905 + ], + [ + -73.424014, + 45.581078 + ], + [ + -73.424062, + 45.581115 + ], + [ + -73.424788, + 45.581676 + ], + [ + -73.425169, + 45.58197 + ], + [ + -73.425206, + 45.581999 + ], + [ + -73.425286, + 45.58206 + ], + [ + -73.425816, + 45.582464 + ], + [ + -73.426256, + 45.5828 + ], + [ + -73.426385, + 45.582897 + ], + [ + -73.426528, + 45.583004 + ], + [ + -73.429814, + 45.585537 + ], + [ + -73.429849, + 45.585563 + ], + [ + -73.429958, + 45.585646 + ], + [ + -73.430085, + 45.585745 + ], + [ + -73.430467, + 45.586051 + ], + [ + -73.430716, + 45.586245 + ], + [ + -73.430893, + 45.586393 + ], + [ + -73.431289, + 45.586718 + ], + [ + -73.431333, + 45.586756 + ], + [ + -73.431717, + 45.587092 + ], + [ + -73.431818, + 45.587179 + ], + [ + -73.431883, + 45.587238 + ], + [ + -73.432034, + 45.587385 + ], + [ + -73.432226, + 45.587579 + ], + [ + -73.433253, + 45.588702 + ], + [ + -73.433543, + 45.589016 + ], + [ + -73.433674, + 45.589158 + ], + [ + -73.433885, + 45.58936 + ], + [ + -73.4342, + 45.589657 + ], + [ + -73.434715, + 45.590103 + ], + [ + -73.434884, + 45.590234 + ], + [ + -73.434944, + 45.590279 + ], + [ + -73.434983, + 45.59031 + ], + [ + -73.434993, + 45.590319 + ], + [ + -73.435014, + 45.590337 + ], + [ + -73.435057, + 45.590373 + ], + [ + -73.435107, + 45.590414 + ], + [ + -73.435254, + 45.590517 + ], + [ + -73.435815, + 45.590941 + ], + [ + -73.436193, + 45.591219 + ], + [ + -73.43623, + 45.591247 + ], + [ + -73.436355, + 45.59135 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.438334, + 45.592832 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.440083, + 45.594124 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.442163, + 45.595679 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442992, + 45.59628 + ], + [ + -73.443311, + 45.596502 + ], + [ + -73.443394, + 45.596559 + ], + [ + -73.444803, + 45.597518 + ], + [ + -73.445261, + 45.597829 + ], + [ + -73.445354, + 45.597894 + ], + [ + -73.446259, + 45.598527 + ], + [ + -73.446713, + 45.59886 + ], + [ + -73.447013, + 45.599083 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.448114, + 45.599973 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449825, + 45.601331 + ], + [ + -73.449842, + 45.601358 + ], + [ + -73.449882, + 45.601394 + ], + [ + -73.449937, + 45.601432 + ], + [ + -73.449974, + 45.601468 + ], + [ + -73.450006, + 45.601497 + ], + [ + -73.450033, + 45.601528 + ], + [ + -73.450045, + 45.601571 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.450329, + 45.600811 + ], + [ + -73.450301, + 45.600774 + ], + [ + -73.45028, + 45.600747 + ], + [ + -73.45017, + 45.600666 + ], + [ + -73.450081, + 45.60062 + ], + [ + -73.449968, + 45.600603 + ], + [ + -73.449925, + 45.600607 + ], + [ + -73.449868, + 45.600621 + ], + [ + -73.449802, + 45.600661 + ], + [ + -73.449715, + 45.600713 + ], + [ + -73.449674, + 45.600743 + ], + [ + -73.449661, + 45.600772 + ], + [ + -73.449666, + 45.600812 + ], + [ + -73.449924, + 45.601045 + ], + [ + -73.449978, + 45.601072 + ], + [ + -73.450055, + 45.601083 + ], + [ + -73.45017, + 45.60109 + ], + [ + -73.450263, + 45.601099 + ], + [ + -73.450328, + 45.601118 + ], + [ + -73.450379, + 45.601155 + ], + [ + -73.450393, + 45.601201 + ], + [ + -73.450376, + 45.60125 + ], + [ + -73.450362, + 45.601293 + ], + [ + -73.450349, + 45.601366 + ], + [ + -73.450328, + 45.601396 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450295, + 45.60142 + ], + [ + -73.450274, + 45.60143 + ], + [ + -73.450229, + 45.60144 + ], + [ + -73.450195, + 45.601446 + ], + [ + -73.450161, + 45.601455 + ], + [ + -73.450131, + 45.601466 + ], + [ + -73.450095, + 45.601482 + ], + [ + -73.450073, + 45.601501 + ], + [ + -73.450052, + 45.601522 + ], + [ + -73.450048, + 45.601541 + ], + [ + -73.450048, + 45.601565 + ], + [ + -73.450051, + 45.601586 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450683, + 45.601629 + ], + [ + -73.45076, + 45.601581 + ], + [ + -73.450865, + 45.60153 + ], + [ + -73.451136, + 45.601427 + ], + [ + -73.451322, + 45.601341 + ], + [ + -73.45143, + 45.601269 + ], + [ + -73.451545, + 45.601187 + ], + [ + -73.451753, + 45.601 + ], + [ + -73.451831, + 45.600914 + ], + [ + -73.451899, + 45.600828 + ], + [ + -73.451961, + 45.600734 + ], + [ + -73.452054, + 45.600554 + ], + [ + -73.452082, + 45.600442 + ], + [ + -73.452078, + 45.600293 + ], + [ + -73.452054, + 45.600172 + ], + [ + -73.45194, + 45.599798 + ], + [ + -73.451915, + 45.599672 + ], + [ + -73.451904, + 45.599524 + ], + [ + -73.451926, + 45.59938 + ], + [ + -73.451964, + 45.599267 + ], + [ + -73.452063, + 45.599123 + ], + [ + -73.452183, + 45.598993 + ], + [ + -73.452318, + 45.598881 + ], + [ + -73.452477, + 45.598768 + ], + [ + -73.452963, + 45.598458 + ], + [ + -73.45458, + 45.597401 + ], + [ + -73.459437, + 45.594497 + ], + [ + -73.459888, + 45.594213 + ], + [ + -73.46035, + 45.593903 + ], + [ + -73.460702, + 45.593647 + ], + [ + -73.461218, + 45.593251 + ], + [ + -73.46178, + 45.592783 + ], + [ + -73.465585, + 45.589586 + ], + [ + -73.468548, + 45.587089 + ], + [ + -73.468925, + 45.586766 + ], + [ + -73.469282, + 45.586424 + ], + [ + -73.469476, + 45.586217 + ], + [ + -73.46977, + 45.585875 + ], + [ + -73.470065, + 45.585497 + ], + [ + -73.470208, + 45.585295 + ], + [ + -73.470515, + 45.584795 + ], + [ + -73.470777, + 45.584346 + ], + [ + -73.470818, + 45.584266 + ], + [ + -73.471151, + 45.583659 + ], + [ + -73.471441, + 45.583163 + ], + [ + -73.471782, + 45.582588 + ], + [ + -73.471999, + 45.582223 + ], + [ + -73.472179, + 45.58194 + ], + [ + -73.472331, + 45.581716 + ], + [ + -73.472649, + 45.581329 + ], + [ + -73.47273, + 45.58124 + ], + [ + -73.472825, + 45.58114 + ], + [ + -73.473026, + 45.580958 + ], + [ + -73.473162, + 45.580835 + ], + [ + -73.473456, + 45.580601 + ], + [ + -73.473548, + 45.580529 + ], + [ + -73.474056, + 45.580187 + ], + [ + -73.474914, + 45.579634 + ], + [ + -73.475349, + 45.579354 + ], + [ + -73.475514, + 45.57924 + ], + [ + -73.475748, + 45.579059 + ], + [ + -73.476005, + 45.578855 + ], + [ + -73.476092, + 45.578785 + ], + [ + -73.476311, + 45.578613 + ], + [ + -73.476531, + 45.578426 + ], + [ + -73.477316, + 45.577756 + ], + [ + -73.478746, + 45.576546 + ], + [ + -73.485291, + 45.570941 + ], + [ + -73.485924, + 45.570374 + ], + [ + -73.486543, + 45.569794 + ], + [ + -73.487144, + 45.5692 + ], + [ + -73.487725, + 45.568597 + ], + [ + -73.488283, + 45.567985 + ], + [ + -73.489005, + 45.567148 + ], + [ + -73.489524, + 45.56651 + ], + [ + -73.490025, + 45.565857 + ], + [ + -73.490348, + 45.565416 + ], + [ + -73.490811, + 45.564746 + ], + [ + -73.492757, + 45.561799 + ], + [ + -73.493231, + 45.561129 + ], + [ + -73.493558, + 45.560688 + ], + [ + -73.493892, + 45.560256 + ], + [ + -73.494237, + 45.559829 + ], + [ + -73.499922, + 45.552981 + ], + [ + -73.501151, + 45.551492 + ], + [ + -73.501844, + 45.550646 + ], + [ + -73.502872, + 45.549445 + ], + [ + -73.503558, + 45.548684 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.522965, + 45.530118 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.517551, + 45.525432 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519846, + 45.523384 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522394, + 45.524142 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 235, + "properties": { + "id": "832acc61-ff42-45df-85fb-9140c9c0cd3b", + "data": { + "gtfs": { + "shape_id": "180_1_A" + }, + "segments": [ + { + "distanceMeters": 195, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 552, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 400, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 328, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 415, + "travelTimeSeconds": 85 + }, + { + "distanceMeters": 12140, + "travelTimeSeconds": 840 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 186, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 18356, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11423.752148378519, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.87, + "travelTimeWithoutDwellTimesSeconds": 1860, + "operatingTimeWithLayoverTimeSeconds": 2046, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1860, + "operatingSpeedWithLayoverMetersPerSecond": 8.97, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.87 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "758aaf15-550c-4ca9-b023-6270ea96c95b", + "ac37fcc5-ab7a-4274-84f7-80a37a395c91", + "1a872bc7-948e-475a-8527-ec3c2b61fd79", + "7b448eb1-37a4-4d74-be5a-f8938cae8304", + "d3a6dc19-15b0-45f0-a45a-d0eca5d46fd7", + "0f2d673a-8365-425e-adb1-c97927e1fe04", + "33427dde-b7ac-44e3-ba8b-3d835422c2dc", + "c6549833-3800-4d1f-a789-747fc95c595a", + "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", + "88dc439b-1c69-4b99-b3d0-d19592029cc1", + "ed651d5d-88ba-4ece-bfe1-02e5832cfee7", + "31ed7f59-0c7b-45ae-b437-8270ad7f8e62", + "cc142acd-cd00-4b27-8c30-0fb03b101fb8", + "8602485c-23c0-44fe-9b32-fa177f723a3a", + "3dedf179-3478-4b4d-b706-36e0a8981094", + "c4a07fb5-3745-472e-8e03-a61e6908d906", + "3e60c63a-1f50-42ff-98f0-f081a7dc4017", + "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", + "ebf7fd24-b756-481f-9a88-33b6362fcbda", + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "4fcc129f-8015-4b36-a21f-2437aa91a265", + "49262d07-72b2-466f-bf49-88656466e4a4", + "9e857d67-44b9-48aa-aa36-d1284504d820", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", + "bbe875bc-cb85-4a61-923d-53ee4746a213", + "4c755ece-2475-4915-941e-37859f0f391f" + ], + "stops": [], + "line_id": "2c29e5f9-c7ee-48c8-b580-d100e79bb119", + "segments": [ + 0, + 4, + 11, + 18, + 24, + 31, + 32, + 50, + 55, + 62, + 74, + 81, + 86, + 89, + 94, + 97, + 104, + 111, + 119, + 125, + 131, + 138, + 142, + 146, + 150, + 153, + 159, + 208 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 235, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.52252, + 45.524045 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.503549, + 45.548419 + ], + [ + -73.502986, + 45.54904 + ], + [ + -73.502097, + 45.550079 + ], + [ + -73.501025, + 45.551361 + ], + [ + -73.500319, + 45.55223 + ], + [ + -73.497146, + 45.556054 + ], + [ + -73.496787, + 45.55649 + ], + [ + -73.495905, + 45.557543 + ], + [ + -73.495369, + 45.558173 + ], + [ + -73.494314, + 45.559446 + ], + [ + -73.493461, + 45.560499 + ], + [ + -73.492975, + 45.561151 + ], + [ + -73.492659, + 45.561597 + ], + [ + -73.492068, + 45.562474 + ], + [ + -73.49148, + 45.563383 + ], + [ + -73.490434, + 45.564962 + ], + [ + -73.489967, + 45.565619 + ], + [ + -73.489477, + 45.566267 + ], + [ + -73.488962, + 45.566906 + ], + [ + -73.48825, + 45.567747 + ], + [ + -73.487877, + 45.568161 + ], + [ + -73.487301, + 45.568777 + ], + [ + -73.486712, + 45.56938 + ], + [ + -73.486308, + 45.569771 + ], + [ + -73.485474, + 45.570545 + ], + [ + -73.48461, + 45.571301 + ], + [ + -73.483654, + 45.572115 + ], + [ + -73.478606, + 45.576433 + ], + [ + -73.478028, + 45.576933 + ], + [ + -73.477248, + 45.577607 + ], + [ + -73.476645, + 45.578128 + ], + [ + -73.475915, + 45.578754 + ], + [ + -73.475553, + 45.579033 + ], + [ + -73.474887, + 45.579478 + ], + [ + -73.474437, + 45.579762 + ], + [ + -73.474095, + 45.580005 + ], + [ + -73.473853, + 45.580158 + ], + [ + -73.473398, + 45.580472 + ], + [ + -73.473077, + 45.58072 + ], + [ + -73.472886, + 45.580886 + ], + [ + -73.472612, + 45.581152 + ], + [ + -73.472574, + 45.581196 + ], + [ + -73.472319, + 45.581482 + ], + [ + -73.472175, + 45.581673 + ], + [ + -73.471994, + 45.581936 + ], + [ + -73.47191, + 45.582061 + ], + [ + -73.471753, + 45.582326 + ], + [ + -73.471543, + 45.582681 + ], + [ + -73.471245, + 45.583188 + ], + [ + -73.471013, + 45.58358 + ], + [ + -73.470714, + 45.584071 + ], + [ + -73.470067, + 45.585151 + ], + [ + -73.469784, + 45.585547 + ], + [ + -73.469628, + 45.585749 + ], + [ + -73.469287, + 45.586145 + ], + [ + -73.469101, + 45.586343 + ], + [ + -73.468904, + 45.586536 + ], + [ + -73.468695, + 45.586725 + ], + [ + -73.466029, + 45.588965 + ], + [ + -73.465851, + 45.589127 + ], + [ + -73.465429, + 45.589482 + ], + [ + -73.463709, + 45.590917 + ], + [ + -73.461267, + 45.592977 + ], + [ + -73.460579, + 45.593525 + ], + [ + -73.460036, + 45.593907 + ], + [ + -73.459551, + 45.594222 + ], + [ + -73.459088, + 45.594506 + ], + [ + -73.458501, + 45.594856 + ], + [ + -73.45527, + 45.596781 + ], + [ + -73.453729, + 45.597707 + ], + [ + -73.452183, + 45.598512 + ], + [ + -73.45172, + 45.598745 + ], + [ + -73.451404, + 45.598885 + ], + [ + -73.451234, + 45.598934 + ], + [ + -73.451048, + 45.598979 + ], + [ + -73.450747, + 45.59901 + ], + [ + -73.450606, + 45.59901 + ], + [ + -73.450404, + 45.598988 + ], + [ + -73.449896, + 45.598898 + ], + [ + -73.449552, + 45.598852 + ], + [ + -73.44936, + 45.598848 + ], + [ + -73.449191, + 45.598861 + ], + [ + -73.449046, + 45.598888 + ], + [ + -73.448769, + 45.598987 + ], + [ + -73.448631, + 45.599054 + ], + [ + -73.448365, + 45.599212 + ], + [ + -73.447787, + 45.599567 + ], + [ + -73.447737, + 45.599598 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.44809, + 45.599954 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449825, + 45.601331 + ], + [ + -73.449842, + 45.601358 + ], + [ + -73.449882, + 45.601394 + ], + [ + -73.449937, + 45.601432 + ], + [ + -73.449974, + 45.601468 + ], + [ + -73.450006, + 45.601497 + ], + [ + -73.450033, + 45.601528 + ], + [ + -73.450045, + 45.601571 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450437, + 45.601825 + ], + [ + -73.450476, + 45.601818 + ], + [ + -73.450508, + 45.601804 + ], + [ + -73.450537, + 45.601788 + ], + [ + -73.450564, + 45.601765 + ], + [ + -73.450599, + 45.601721 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450487, + 45.601347 + ], + [ + -73.450492, + 45.601216 + ], + [ + -73.450462, + 45.601126 + ], + [ + -73.450446, + 45.601074 + ], + [ + -73.450423, + 45.601001 + ], + [ + -73.450385, + 45.600905 + ], + [ + -73.450334, + 45.600817 + ], + [ + -73.450329, + 45.600811 + ], + [ + -73.450324, + 45.600804 + ], + [ + -73.45028, + 45.600747 + ], + [ + -73.45017, + 45.600666 + ], + [ + -73.450081, + 45.60062 + ], + [ + -73.449968, + 45.600603 + ], + [ + -73.449925, + 45.600607 + ], + [ + -73.449868, + 45.600621 + ], + [ + -73.449802, + 45.600661 + ], + [ + -73.449715, + 45.600713 + ], + [ + -73.449674, + 45.600743 + ], + [ + -73.449661, + 45.600772 + ], + [ + -73.449666, + 45.600812 + ], + [ + -73.449924, + 45.601045 + ], + [ + -73.449978, + 45.601072 + ], + [ + -73.450055, + 45.601083 + ], + [ + -73.45017, + 45.60109 + ], + [ + -73.450263, + 45.601099 + ], + [ + -73.450328, + 45.601118 + ], + [ + -73.450379, + 45.601155 + ], + [ + -73.450393, + 45.601201 + ], + [ + -73.450376, + 45.60125 + ], + [ + -73.450362, + 45.601293 + ], + [ + -73.450349, + 45.601366 + ], + [ + -73.450328, + 45.601396 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450247, + 45.601412 + ], + [ + -73.450159, + 45.601408 + ], + [ + -73.450117, + 45.6014 + ], + [ + -73.450076, + 45.601382 + ], + [ + -73.450018, + 45.601356 + ], + [ + -73.449945, + 45.60132 + ], + [ + -73.449881, + 45.6013 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.447907, + 45.599809 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.446914, + 45.599009 + ], + [ + -73.446713, + 45.59886 + ], + [ + -73.446259, + 45.598527 + ], + [ + -73.445387, + 45.597917 + ], + [ + -73.445261, + 45.597829 + ], + [ + -73.444803, + 45.597518 + ], + [ + -73.443574, + 45.596682 + ], + [ + -73.443394, + 45.596559 + ], + [ + -73.442992, + 45.59628 + ], + [ + -73.442852, + 45.596183 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.439914, + 45.593996 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438251, + 45.592772 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.436615, + 45.591542 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.436355, + 45.59135 + ], + [ + -73.43623, + 45.591247 + ], + [ + -73.435815, + 45.590941 + ], + [ + -73.435254, + 45.590517 + ], + [ + -73.435107, + 45.590414 + ], + [ + -73.435057, + 45.590373 + ], + [ + -73.435056, + 45.590372 + ], + [ + -73.435014, + 45.590337 + ], + [ + -73.434983, + 45.59031 + ], + [ + -73.434944, + 45.590279 + ], + [ + -73.434884, + 45.590234 + ], + [ + -73.434715, + 45.590103 + ], + [ + -73.4342, + 45.589657 + ], + [ + -73.4339, + 45.589374 + ], + [ + -73.433885, + 45.58936 + ], + [ + -73.433674, + 45.589158 + ], + [ + -73.433253, + 45.588702 + ], + [ + -73.432226, + 45.587579 + ], + [ + -73.432034, + 45.587385 + ], + [ + -73.43189, + 45.587245 + ], + [ + -73.431883, + 45.587238 + ], + [ + -73.431818, + 45.587179 + ], + [ + -73.431717, + 45.587092 + ], + [ + -73.431289, + 45.586718 + ], + [ + -73.430893, + 45.586393 + ], + [ + -73.430716, + 45.586245 + ], + [ + -73.430467, + 45.586051 + ], + [ + -73.430113, + 45.585767 + ], + [ + -73.430085, + 45.585745 + ], + [ + -73.429958, + 45.585646 + ], + [ + -73.429814, + 45.585537 + ], + [ + -73.42849, + 45.584517 + ], + [ + -73.426695, + 45.583133 + ], + [ + -73.426528, + 45.583004 + ], + [ + -73.426256, + 45.5828 + ], + [ + -73.425816, + 45.582464 + ], + [ + -73.425305, + 45.582074 + ], + [ + -73.425286, + 45.58206 + ], + [ + -73.425206, + 45.581999 + ], + [ + -73.424788, + 45.581676 + ], + [ + -73.424166, + 45.581195 + ], + [ + -73.424062, + 45.581115 + ], + [ + -73.423789, + 45.580905 + ], + [ + -73.423455, + 45.580651 + ], + [ + -73.423236, + 45.580486 + ], + [ + -73.423009, + 45.580315 + ], + [ + -73.422846, + 45.580189 + ], + [ + -73.422663, + 45.580049 + ], + [ + -73.422546, + 45.579959 + ], + [ + -73.42208, + 45.579603 + ], + [ + -73.421971, + 45.579519 + ], + [ + -73.421846, + 45.579423 + ], + [ + -73.421793, + 45.579382 + ], + [ + -73.421745, + 45.579346 + ], + [ + -73.4211, + 45.578841 + ], + [ + -73.421072, + 45.578819 + ], + [ + -73.420532, + 45.578396 + ], + [ + -73.420386, + 45.578284 + ], + [ + -73.420081, + 45.578041 + ], + [ + -73.420061, + 45.578025 + ], + [ + -73.41953, + 45.577608 + ], + [ + -73.419313, + 45.577437 + ], + [ + -73.419216, + 45.577362 + ], + [ + -73.419047, + 45.57723 + ], + [ + -73.419, + 45.577192 + ], + [ + -73.418953, + 45.577153 + ], + [ + -73.418667, + 45.576931 + ], + [ + -73.418642, + 45.576911 + ], + [ + -73.418497, + 45.576798 + ], + [ + -73.417067, + 45.575663 + ], + [ + -73.416156, + 45.574947 + ], + [ + -73.415824, + 45.574686 + ], + [ + -73.415714, + 45.5746 + ], + [ + -73.414791, + 45.57387 + ], + [ + -73.414647, + 45.573758 + ], + [ + -73.414077, + 45.573294 + ], + [ + -73.41407, + 45.573289 + ], + [ + -73.413911, + 45.573168 + ], + [ + -73.413779, + 45.573055 + ], + [ + -73.413719, + 45.573015 + ], + [ + -73.413615, + 45.572947 + ], + [ + -73.413498, + 45.572835 + ], + [ + -73.413315, + 45.572731 + ], + [ + -73.413116, + 45.572645 + ], + [ + -73.412923, + 45.572596 + ], + [ + -73.412759, + 45.572574 + ], + [ + -73.412619, + 45.572555 + ], + [ + -73.412388, + 45.572541 + ], + [ + -73.412156, + 45.572541 + ], + [ + -73.411544, + 45.572577 + ], + [ + -73.411304, + 45.572588 + ], + [ + -73.41125, + 45.57259 + ], + [ + -73.411126, + 45.572594 + ], + [ + -73.410903, + 45.572608 + ], + [ + -73.410714, + 45.572617 + ], + [ + -73.410503, + 45.57263 + ], + [ + -73.410213, + 45.572647 + ], + [ + -73.409062, + 45.572719 + ], + [ + -73.409057, + 45.572719 + ], + [ + -73.409052, + 45.572719 + ], + [ + -73.409047, + 45.572719 + ], + [ + -73.409041, + 45.57272 + ], + [ + -73.409036, + 45.57272 + ], + [ + -73.409031, + 45.57272 + ], + [ + -73.409026, + 45.57272 + ], + [ + -73.409021, + 45.57272 + ], + [ + -73.409016, + 45.572721 + ], + [ + -73.409011, + 45.572721 + ], + [ + -73.409006, + 45.572721 + ], + [ + -73.409, + 45.572722 + ], + [ + -73.408995, + 45.572722 + ], + [ + -73.40899, + 45.572722 + ], + [ + -73.408985, + 45.572722 + ], + [ + -73.40898, + 45.572723 + ], + [ + -73.408975, + 45.572723 + ], + [ + -73.40897, + 45.572723 + ], + [ + -73.408965, + 45.572724 + ], + [ + -73.40896, + 45.572724 + ], + [ + -73.408955, + 45.572725 + ], + [ + -73.408949, + 45.572725 + ], + [ + -73.408944, + 45.572725 + ], + [ + -73.408939, + 45.572726 + ], + [ + -73.408934, + 45.572726 + ], + [ + -73.408929, + 45.572727 + ], + [ + -73.408924, + 45.572727 + ], + [ + -73.408919, + 45.572728 + ], + [ + -73.408914, + 45.572728 + ], + [ + -73.408909, + 45.572729 + ], + [ + -73.408904, + 45.572729 + ], + [ + -73.408899, + 45.572729 + ], + [ + -73.408894, + 45.57273 + ], + [ + -73.408889, + 45.572731 + ], + [ + -73.408883, + 45.572731 + ], + [ + -73.408878, + 45.572732 + ], + [ + -73.408873, + 45.572732 + ], + [ + -73.408868, + 45.572733 + ], + [ + -73.408863, + 45.572733 + ], + [ + -73.408858, + 45.572734 + ], + [ + -73.408853, + 45.572734 + ], + [ + -73.408848, + 45.572735 + ], + [ + -73.408843, + 45.572736 + ], + [ + -73.408838, + 45.572736 + ], + [ + -73.408833, + 45.572737 + ], + [ + -73.408828, + 45.572737 + ], + [ + -73.408823, + 45.572738 + ], + [ + -73.408818, + 45.572739 + ], + [ + -73.408813, + 45.572739 + ], + [ + -73.408808, + 45.57274 + ], + [ + -73.408803, + 45.572741 + ], + [ + -73.408798, + 45.572742 + ], + [ + -73.408793, + 45.572742 + ], + [ + -73.408788, + 45.572743 + ], + [ + -73.408783, + 45.572744 + ], + [ + -73.408778, + 45.572744 + ], + [ + -73.408773, + 45.572745 + ], + [ + -73.408768, + 45.572746 + ], + [ + -73.408762, + 45.572747 + ], + [ + -73.408757, + 45.572747 + ], + [ + -73.408752, + 45.572748 + ], + [ + -73.408747, + 45.572749 + ], + [ + -73.408742, + 45.57275 + ], + [ + -73.408738, + 45.572751 + ], + [ + -73.408733, + 45.572752 + ], + [ + -73.408728, + 45.572752 + ], + [ + -73.408723, + 45.572753 + ], + [ + -73.408718, + 45.572754 + ], + [ + -73.408713, + 45.572755 + ], + [ + -73.408708, + 45.572756 + ], + [ + -73.408703, + 45.572757 + ], + [ + -73.408698, + 45.572758 + ], + [ + -73.408693, + 45.572759 + ], + [ + -73.408688, + 45.572759 + ], + [ + -73.408683, + 45.57276 + ], + [ + -73.408678, + 45.572761 + ], + [ + -73.408673, + 45.572762 + ], + [ + -73.408668, + 45.572763 + ], + [ + -73.408663, + 45.572764 + ], + [ + -73.408658, + 45.572765 + ], + [ + -73.408653, + 45.572766 + ], + [ + -73.408648, + 45.572767 + ], + [ + -73.408643, + 45.572768 + ], + [ + -73.408638, + 45.572769 + ], + [ + -73.408634, + 45.57277 + ], + [ + -73.408629, + 45.572771 + ], + [ + -73.408624, + 45.572772 + ], + [ + -73.408619, + 45.572773 + ], + [ + -73.408614, + 45.572774 + ], + [ + -73.408609, + 45.572775 + ], + [ + -73.408604, + 45.572777 + ], + [ + -73.408599, + 45.572778 + ], + [ + -73.408594, + 45.572779 + ], + [ + -73.40859, + 45.57278 + ], + [ + -73.408585, + 45.572781 + ], + [ + -73.40858, + 45.572782 + ], + [ + -73.408575, + 45.572783 + ], + [ + -73.40857, + 45.572784 + ], + [ + -73.408565, + 45.572786 + ], + [ + -73.40856, + 45.572787 + ], + [ + -73.408556, + 45.572788 + ], + [ + -73.408551, + 45.572789 + ], + [ + -73.408546, + 45.57279 + ], + [ + -73.408541, + 45.572792 + ], + [ + -73.408536, + 45.572793 + ], + [ + -73.408531, + 45.572794 + ], + [ + -73.408527, + 45.572795 + ], + [ + -73.408522, + 45.572797 + ], + [ + -73.408517, + 45.572798 + ], + [ + -73.408512, + 45.572799 + ], + [ + -73.408507, + 45.5728 + ], + [ + -73.408503, + 45.572802 + ], + [ + -73.408498, + 45.572803 + ], + [ + -73.408493, + 45.572804 + ], + [ + -73.408488, + 45.572806 + ], + [ + -73.408484, + 45.572807 + ], + [ + -73.408479, + 45.572808 + ], + [ + -73.408474, + 45.57281 + ], + [ + -73.408469, + 45.572811 + ], + [ + -73.408465, + 45.572812 + ], + [ + -73.40846, + 45.572814 + ], + [ + -73.408455, + 45.572815 + ], + [ + -73.40845, + 45.572817 + ], + [ + -73.408446, + 45.572818 + ], + [ + -73.408441, + 45.572819 + ], + [ + -73.408436, + 45.572821 + ], + [ + -73.408432, + 45.572822 + ], + [ + -73.408427, + 45.572824 + ], + [ + -73.408422, + 45.572825 + ], + [ + -73.408418, + 45.572827 + ], + [ + -73.408413, + 45.572828 + ], + [ + -73.408408, + 45.57283 + ], + [ + -73.408404, + 45.572831 + ], + [ + -73.408399, + 45.572833 + ], + [ + -73.408394, + 45.572834 + ], + [ + -73.40839, + 45.572836 + ], + [ + -73.408385, + 45.572837 + ], + [ + -73.40838, + 45.572839 + ], + [ + -73.408376, + 45.57284 + ], + [ + -73.408371, + 45.572842 + ], + [ + -73.408367, + 45.572843 + ], + [ + -73.408362, + 45.572845 + ], + [ + -73.408357, + 45.572847 + ], + [ + -73.408353, + 45.572848 + ], + [ + -73.408348, + 45.57285 + ], + [ + -73.408344, + 45.572851 + ], + [ + -73.408339, + 45.572853 + ], + [ + -73.408334, + 45.572855 + ], + [ + -73.40833, + 45.572856 + ], + [ + -73.408325, + 45.572858 + ], + [ + -73.408321, + 45.57286 + ], + [ + -73.408316, + 45.572861 + ], + [ + -73.408312, + 45.572863 + ], + [ + -73.408307, + 45.572865 + ], + [ + -73.408303, + 45.572867 + ], + [ + -73.408298, + 45.572868 + ], + [ + -73.408294, + 45.57287 + ], + [ + -73.408289, + 45.572872 + ], + [ + -73.408285, + 45.572874 + ], + [ + -73.40828, + 45.572875 + ], + [ + -73.408276, + 45.572877 + ], + [ + -73.408271, + 45.572879 + ], + [ + -73.408267, + 45.572881 + ], + [ + -73.408263, + 45.572883 + ], + [ + -73.408258, + 45.572884 + ], + [ + -73.408254, + 45.572886 + ], + [ + -73.408249, + 45.572888 + ], + [ + -73.408245, + 45.57289 + ], + [ + -73.408241, + 45.572892 + ], + [ + -73.408236, + 45.572894 + ], + [ + -73.408232, + 45.572895 + ], + [ + -73.408227, + 45.572897 + ], + [ + -73.408223, + 45.572899 + ], + [ + -73.408219, + 45.572901 + ], + [ + -73.408214, + 45.572903 + ], + [ + -73.40821, + 45.572905 + ], + [ + -73.408206, + 45.572907 + ], + [ + -73.408201, + 45.572909 + ], + [ + -73.408197, + 45.572911 + ], + [ + -73.408193, + 45.572913 + ], + [ + -73.408188, + 45.572915 + ], + [ + -73.408184, + 45.572917 + ], + [ + -73.40818, + 45.572919 + ], + [ + -73.408176, + 45.572921 + ], + [ + -73.408171, + 45.572923 + ], + [ + -73.408167, + 45.572925 + ], + [ + -73.408163, + 45.572927 + ], + [ + -73.408159, + 45.572929 + ], + [ + -73.408154, + 45.572931 + ], + [ + -73.40815, + 45.572933 + ], + [ + -73.408146, + 45.572935 + ], + [ + -73.408142, + 45.572937 + ], + [ + -73.408138, + 45.572939 + ], + [ + -73.408133, + 45.572941 + ], + [ + -73.408129, + 45.572943 + ], + [ + -73.408125, + 45.572945 + ], + [ + -73.408121, + 45.572947 + ], + [ + -73.408117, + 45.572949 + ], + [ + -73.408112, + 45.572951 + ], + [ + -73.408108, + 45.572953 + ], + [ + -73.408104, + 45.572955 + ], + [ + -73.4081, + 45.572958 + ], + [ + -73.408096, + 45.57296 + ], + [ + -73.408092, + 45.572962 + ], + [ + -73.408087, + 45.572964 + ], + [ + -73.408083, + 45.572966 + ], + [ + -73.408079, + 45.572968 + ], + [ + -73.408075, + 45.57297 + ], + [ + -73.408071, + 45.572972 + ], + [ + -73.408067, + 45.572975 + ], + [ + -73.408063, + 45.572977 + ], + [ + -73.408059, + 45.572979 + ], + [ + -73.408055, + 45.572981 + ], + [ + -73.408051, + 45.572983 + ], + [ + -73.408046, + 45.572985 + ], + [ + -73.408042, + 45.572988 + ], + [ + -73.408038, + 45.57299 + ], + [ + -73.408034, + 45.572992 + ], + [ + -73.40803, + 45.572994 + ], + [ + -73.408026, + 45.572996 + ], + [ + -73.408022, + 45.572999 + ], + [ + -73.408018, + 45.573001 + ], + [ + -73.408014, + 45.573003 + ], + [ + -73.40801, + 45.573005 + ], + [ + -73.408006, + 45.573008 + ], + [ + -73.408002, + 45.57301 + ], + [ + -73.407998, + 45.573012 + ], + [ + -73.407994, + 45.573014 + ], + [ + -73.40799, + 45.573017 + ], + [ + -73.407986, + 45.573019 + ], + [ + -73.407982, + 45.573021 + ], + [ + -73.407978, + 45.573024 + ], + [ + -73.407974, + 45.573026 + ], + [ + -73.40797, + 45.573028 + ], + [ + -73.407966, + 45.57303 + ], + [ + -73.407962, + 45.573033 + ], + [ + -73.407959, + 45.573035 + ], + [ + -73.407955, + 45.573037 + ], + [ + -73.407951, + 45.57304 + ], + [ + -73.407947, + 45.573042 + ], + [ + -73.407943, + 45.573044 + ], + [ + -73.407939, + 45.573047 + ], + [ + -73.407935, + 45.573049 + ], + [ + -73.407931, + 45.573052 + ], + [ + -73.407928, + 45.573054 + ], + [ + -73.407924, + 45.573056 + ], + [ + -73.40792, + 45.573059 + ], + [ + -73.407916, + 45.573061 + ], + [ + -73.407913, + 45.573064 + ], + [ + -73.407909, + 45.573066 + ], + [ + -73.407905, + 45.573069 + ], + [ + -73.407901, + 45.573071 + ], + [ + -73.407898, + 45.573074 + ], + [ + -73.407894, + 45.573076 + ], + [ + -73.40789, + 45.573079 + ], + [ + -73.407887, + 45.573081 + ], + [ + -73.407883, + 45.573084 + ], + [ + -73.40788, + 45.573086 + ], + [ + -73.407876, + 45.573089 + ], + [ + -73.407872, + 45.573091 + ], + [ + -73.407869, + 45.573094 + ], + [ + -73.407865, + 45.573097 + ], + [ + -73.407862, + 45.573099 + ], + [ + -73.407858, + 45.573102 + ], + [ + -73.407855, + 45.573105 + ], + [ + -73.407851, + 45.573107 + ], + [ + -73.407848, + 45.57311 + ], + [ + -73.407844, + 45.573112 + ], + [ + -73.407841, + 45.573115 + ], + [ + -73.407837, + 45.573118 + ], + [ + -73.407834, + 45.573121 + ], + [ + -73.407831, + 45.573123 + ], + [ + -73.407827, + 45.573126 + ], + [ + -73.407824, + 45.573129 + ], + [ + -73.407821, + 45.573131 + ], + [ + -73.407817, + 45.573134 + ], + [ + -73.407812, + 45.57314 + ], + [ + -73.407546, + 45.573392 + ], + [ + -73.406195, + 45.574595 + ], + [ + -73.40583, + 45.574917 + ], + [ + -73.40547, + 45.575248 + ], + [ + -73.404873, + 45.575797 + ], + [ + -73.404869, + 45.575804 + ], + [ + -73.404806, + 45.575896 + ], + [ + -73.404582, + 45.576139 + ], + [ + -73.40454, + 45.576175 + ], + [ + -73.403621, + 45.577033 + ], + [ + -73.403207, + 45.577445 + ], + [ + -73.403555, + 45.577627 + ], + [ + -73.403788, + 45.577749 + ], + [ + -73.404045, + 45.577927 + ], + [ + -73.404194, + 45.578042 + ], + [ + -73.404428, + 45.578224 + ], + [ + -73.40517, + 45.578813 + ], + [ + -73.405272, + 45.578897 + ], + [ + -73.405449, + 45.579042 + ], + [ + -73.405472, + 45.579062 + ], + [ + -73.4057, + 45.579264 + ], + [ + -73.405562, + 45.579347 + ], + [ + -73.405449, + 45.579418 + ], + [ + -73.4054, + 45.579445 + ], + [ + -73.40511, + 45.579623 + ], + [ + -73.404903, + 45.57975 + ], + [ + -73.404732, + 45.579874 + ], + [ + -73.403738, + 45.580736 + ], + [ + -73.403557, + 45.580895 + ], + [ + -73.402997, + 45.581387 + ], + [ + -73.402759, + 45.581597 + ], + [ + -73.402436, + 45.58188 + ], + [ + -73.401613, + 45.582603 + ] + ] + }, + "id": 236, + "properties": { + "id": "c3a3910e-27d7-43ca-be04-9bc5a769d118", + "data": { + "gtfs": { + "shape_id": "180_2_R" + }, + "segments": [ + { + "distanceMeters": 10799, + "travelTimeSeconds": 577 + }, + { + "distanceMeters": 414, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 439, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 79, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 334, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 908, + "travelTimeSeconds": 206 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 56 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17512, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 11423.752148378519, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 10.42, + "travelTimeWithoutDwellTimesSeconds": 1680, + "operatingTimeWithLayoverTimeSeconds": 1860, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1680, + "operatingSpeedWithLayoverMetersPerSecond": 9.41, + "averageSpeedWithoutDwellTimesMetersPerSecond": 10.42 + }, + "mode": "bus", + "name": "des Sureaux", + "color": "#A32638", + "nodes": [ + "4c755ece-2475-4915-941e-37859f0f391f", + "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", + "bbe875bc-cb85-4a61-923d-53ee4746a213", + "96c08dfd-d2e7-4584-a6b3-36c3a2e1abcc", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "4c25cc73-ac26-4e31-9812-bc4ad7f583b5", + "49262d07-72b2-466f-bf49-88656466e4a4", + "0872c388-8faf-4852-b4ce-cf3f6312e0ef", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "ebf7fd24-b756-481f-9a88-33b6362fcbda", + "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", + "3613b472-6055-4b55-9c89-01a451d82804", + "4cd6eb13-aeec-4716-a3d3-8e1a38389723", + "9ad04c6c-abc1-49fe-8f36-db6146dd5c5c", + "3dedf179-3478-4b4d-b706-36e0a8981094", + "91fae16f-d2f7-4af8-a4e7-3156976c0aae", + "cc142acd-cd00-4b27-8c30-0fb03b101fb8", + "38f108ec-7ce2-4f60-84c9-81ee447773a8", + "ed651d5d-88ba-4ece-bfe1-02e5832cfee7", + "88dc439b-1c69-4b99-b3d0-d19592029cc1", + "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", + "c6549833-3800-4d1f-a789-747fc95c595a", + "d3a6dc19-15b0-45f0-a45a-d0eca5d46fd7", + "7b448eb1-37a4-4d74-be5a-f8938cae8304", + "1a872bc7-948e-475a-8527-ec3c2b61fd79", + "44406260-256d-49c7-a91f-d8d2be15f526", + "758aaf15-550c-4ca9-b023-6270ea96c95b" + ], + "stops": [], + "line_id": "2c29e5f9-c7ee-48c8-b580-d100e79bb119", + "segments": [ + 0, + 132, + 181, + 218, + 224, + 227, + 230, + 233, + 239, + 246, + 249, + 257, + 264, + 270, + 278, + 282, + 283, + 287, + 291, + 297, + 301, + 313, + 322, + 327, + 631, + 640, + 645, + 654 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 236, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.52252, + 45.524045 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.503549, + 45.548419 + ], + [ + -73.502986, + 45.54904 + ], + [ + -73.502097, + 45.550079 + ], + [ + -73.501025, + 45.551361 + ], + [ + -73.500319, + 45.55223 + ], + [ + -73.497146, + 45.556054 + ], + [ + -73.496787, + 45.55649 + ], + [ + -73.495905, + 45.557543 + ], + [ + -73.495369, + 45.558173 + ], + [ + -73.494314, + 45.559446 + ], + [ + -73.493461, + 45.560499 + ], + [ + -73.492975, + 45.561151 + ], + [ + -73.492659, + 45.561597 + ], + [ + -73.492068, + 45.562474 + ], + [ + -73.49148, + 45.563383 + ], + [ + -73.490434, + 45.564962 + ], + [ + -73.489967, + 45.565619 + ], + [ + -73.489477, + 45.566267 + ], + [ + -73.488962, + 45.566906 + ], + [ + -73.48825, + 45.567747 + ], + [ + -73.487877, + 45.568161 + ], + [ + -73.487301, + 45.568777 + ], + [ + -73.486712, + 45.56938 + ], + [ + -73.486308, + 45.569771 + ], + [ + -73.485474, + 45.570545 + ], + [ + -73.48461, + 45.571301 + ], + [ + -73.483654, + 45.572115 + ], + [ + -73.482314, + 45.573163 + ], + [ + -73.481698, + 45.573689 + ], + [ + -73.481072, + 45.574229 + ], + [ + -73.480537, + 45.574683 + ], + [ + -73.479977, + 45.575165 + ], + [ + -73.479393, + 45.575664 + ], + [ + -73.478728, + 45.576231 + ], + [ + -73.478262, + 45.576631 + ], + [ + -73.477773, + 45.577049 + ], + [ + -73.477468, + 45.577288 + ], + [ + -73.477262, + 45.577441 + ], + [ + -73.477012, + 45.577607 + ], + [ + -73.476816, + 45.577738 + ], + [ + -73.476627, + 45.577855 + ], + [ + -73.476464, + 45.577936 + ], + [ + -73.476265, + 45.578017 + ], + [ + -73.476121, + 45.578061 + ], + [ + -73.476088, + 45.578066 + ], + [ + -73.475917, + 45.578093 + ], + [ + -73.475766, + 45.578102 + ], + [ + -73.475542, + 45.578084 + ], + [ + -73.475331, + 45.578034 + ], + [ + -73.475218, + 45.578007 + ], + [ + -73.473875, + 45.577593 + ], + [ + -73.472663, + 45.57721 + ], + [ + -73.47247, + 45.577156 + ], + [ + -73.472267, + 45.577116 + ], + [ + -73.472123, + 45.577102 + ], + [ + -73.471964, + 45.577102 + ], + [ + -73.471617, + 45.577132 + ], + [ + -73.471062, + 45.57721 + ], + [ + -73.470797, + 45.577215 + ], + [ + -73.470253, + 45.577185 + ], + [ + -73.470227, + 45.577179 + ], + [ + -73.470082, + 45.577148 + ], + [ + -73.469737, + 45.577073 + ], + [ + -73.469494, + 45.57702 + ], + [ + -73.468711, + 45.57685 + ], + [ + -73.465956, + 45.57631 + ], + [ + -73.462443, + 45.575565 + ], + [ + -73.457218, + 45.5744 + ], + [ + -73.456588, + 45.574263 + ], + [ + -73.454467, + 45.573722 + ], + [ + -73.453947, + 45.573587 + ], + [ + -73.453448, + 45.573447 + ], + [ + -73.452981, + 45.573299 + ], + [ + -73.452764, + 45.573218 + ], + [ + -73.452558, + 45.573128 + ], + [ + -73.452363, + 45.573028 + ], + [ + -73.452177, + 45.572916 + ], + [ + -73.452006, + 45.572794 + ], + [ + -73.45185, + 45.572659 + ], + [ + -73.451709, + 45.572515 + ], + [ + -73.451584, + 45.572362 + ], + [ + -73.451481, + 45.5722 + ], + [ + -73.451391, + 45.572034 + ], + [ + -73.451086, + 45.571422 + ], + [ + -73.451003, + 45.571291 + ], + [ + -73.450904, + 45.571179 + ], + [ + -73.450791, + 45.571075 + ], + [ + -73.450667, + 45.570994 + ], + [ + -73.450535, + 45.570922 + ], + [ + -73.450463, + 45.570891 + ], + [ + -73.450402, + 45.570864 + ], + [ + -73.449347, + 45.570476 + ], + [ + -73.449264, + 45.570454 + ], + [ + -73.449093, + 45.570413 + ], + [ + -73.449089, + 45.570422 + ], + [ + -73.44907, + 45.570467 + ], + [ + -73.449049, + 45.570517 + ], + [ + -73.448873, + 45.570917 + ], + [ + -73.448823, + 45.571034 + ], + [ + -73.448775, + 45.571153 + ], + [ + -73.448772, + 45.571159 + ], + [ + -73.44818, + 45.572625 + ], + [ + -73.447654, + 45.573778 + ], + [ + -73.447519, + 45.574084 + ], + [ + -73.447518, + 45.574088 + ], + [ + -73.447455, + 45.574133 + ], + [ + -73.447308, + 45.574407 + ], + [ + -73.447267, + 45.574466 + ], + [ + -73.447241, + 45.574497 + ], + [ + -73.447197, + 45.574529 + ], + [ + -73.447149, + 45.574547 + ], + [ + -73.447112, + 45.574556 + ], + [ + -73.447049, + 45.574565 + ], + [ + -73.446965, + 45.574569 + ], + [ + -73.446884, + 45.574565 + ], + [ + -73.446792, + 45.574547 + ], + [ + -73.446652, + 45.574511 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442399, + 45.572504 + ], + [ + -73.442327, + 45.572407 + ], + [ + -73.442172, + 45.572214 + ], + [ + -73.442103, + 45.572145 + ], + [ + -73.442041, + 45.572083 + ], + [ + -73.441925, + 45.571984 + ], + [ + -73.441785, + 45.571885 + ], + [ + -73.44164, + 45.571795 + ], + [ + -73.441501, + 45.571723 + ], + [ + -73.4413, + 45.571651 + ], + [ + -73.441159, + 45.571606 + ], + [ + -73.440756, + 45.571507 + ], + [ + -73.440331, + 45.571417 + ], + [ + -73.43982, + 45.571308 + ], + [ + -73.439233, + 45.571191 + ], + [ + -73.43873, + 45.571092 + ], + [ + -73.438292, + 45.571002 + ], + [ + -73.438071, + 45.571298 + ], + [ + -73.437915, + 45.571494 + ], + [ + -73.43791, + 45.571502 + ], + [ + -73.437639, + 45.571843 + ], + [ + -73.437365, + 45.572207 + ], + [ + -73.437277, + 45.572369 + ], + [ + -73.437141, + 45.572652 + ], + [ + -73.43714, + 45.572654 + ], + [ + -73.437002, + 45.572954 + ], + [ + -73.433673, + 45.572249 + ], + [ + -73.432763, + 45.572056 + ], + [ + -73.431535, + 45.571796 + ], + [ + -73.430609, + 45.5716 + ], + [ + -73.430291, + 45.571546 + ], + [ + -73.42993, + 45.571492 + ], + [ + -73.429449, + 45.571428 + ], + [ + -73.42894, + 45.571383 + ], + [ + -73.428617, + 45.57136 + ], + [ + -73.428503, + 45.571355 + ], + [ + -73.428324, + 45.571347 + ], + [ + -73.428023, + 45.571342 + ], + [ + -73.427626, + 45.571342 + ], + [ + -73.42732, + 45.571342 + ], + [ + -73.426592, + 45.571376 + ], + [ + -73.426472, + 45.571382 + ], + [ + -73.426067, + 45.571399 + ], + [ + -73.425864, + 45.571408 + ], + [ + -73.425716, + 45.571377 + ], + [ + -73.425614, + 45.571336 + ], + [ + -73.424894, + 45.570778 + ], + [ + -73.424803, + 45.570692 + ], + [ + -73.424729, + 45.57062 + ], + [ + -73.424693, + 45.570539 + ], + [ + -73.424653, + 45.570373 + ], + [ + -73.424628, + 45.570152 + ], + [ + -73.424566, + 45.569546 + ], + [ + -73.424562, + 45.569513 + ], + [ + -73.424538, + 45.569347 + ], + [ + -73.422873, + 45.56944 + ], + [ + -73.422329, + 45.56947 + ], + [ + -73.421741, + 45.569502 + ], + [ + -73.420778, + 45.569551 + ], + [ + -73.419829, + 45.569604 + ], + [ + -73.418953, + 45.569669 + ], + [ + -73.417529, + 45.569774 + ], + [ + -73.416713, + 45.569818 + ], + [ + -73.416564, + 45.56983 + ], + [ + -73.416545, + 45.569832 + ], + [ + -73.41628, + 45.569881 + ], + [ + -73.416182, + 45.569915 + ], + [ + -73.416084, + 45.569948 + ], + [ + -73.415904, + 45.570025 + ], + [ + -73.415778, + 45.570101 + ], + [ + -73.415627, + 45.57024 + ], + [ + -73.415527, + 45.570353 + ], + [ + -73.415436, + 45.570537 + ], + [ + -73.41537, + 45.570699 + ], + [ + -73.415227, + 45.571104 + ], + [ + -73.414975, + 45.571807 + ], + [ + -73.414932, + 45.571927 + ], + [ + -73.414726, + 45.572503 + ], + [ + -73.414683, + 45.572615 + ], + [ + -73.414619, + 45.572695 + ], + [ + -73.414603, + 45.572714 + ], + [ + -73.414438, + 45.57284 + ], + [ + -73.414244, + 45.572963 + ], + [ + -73.413911, + 45.573168 + ], + [ + -73.414077, + 45.573294 + ], + [ + -73.414647, + 45.573758 + ], + [ + -73.414791, + 45.57387 + ], + [ + -73.415714, + 45.5746 + ], + [ + -73.415986, + 45.57442 + ], + [ + -73.416162, + 45.574303 + ], + [ + -73.41659, + 45.574029 + ], + [ + -73.416949, + 45.573818 + ], + [ + -73.417166, + 45.573686 + ] + ] + }, + "id": 237, + "properties": { + "id": "f54b8833-83d4-431e-ac87-a8376588de98", + "data": { + "gtfs": { + "shape_id": "185_1_R" + }, + "segments": [ + { + "distanceMeters": 9824, + "travelTimeSeconds": 575 + }, + { + "distanceMeters": 857, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 439, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 195, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 20 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13894, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 9879.2506362516, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 12.86, + "travelTimeWithoutDwellTimesSeconds": 1080, + "operatingTimeWithLayoverTimeSeconds": 1260, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1080, + "operatingSpeedWithLayoverMetersPerSecond": 11.03, + "averageSpeedWithoutDwellTimesMetersPerSecond": 12.86 + }, + "mode": "bus", + "name": "Ampère", + "color": "#A32638", + "nodes": [ + "4c755ece-2475-4915-941e-37859f0f391f", + "6672cb43-3241-42d7-b5c0-fdaed10338b9", + "c75630d1-5494-4596-bc82-707a62fa5988", + "c9b7f8d6-62a3-444a-bbd0-591def556854", + "7f184ebf-41da-496f-9ed8-536b6fff9c3f", + "64d79080-f253-4cae-bbde-03e1a26a3f9e", + "26830ba4-9f15-4574-ae58-812d3a6fc6d5", + "ab35419e-5bd1-4da1-bfdf-b33c65916d63", + "08debed2-a767-4e18-9342-678b9ff106e2", + "9cf65cb9-0319-47f1-8406-ca3211a7ff12", + "8b4e9db5-5481-4624-b5ab-e40bba2a2897", + "834b9411-0d78-496d-8fb2-7131e0c1ec41", + "fb50e5b2-5326-4cb9-9888-65bcbf9b9592", + "ab419e3e-c877-4589-88de-b6df60ac6dd1", + "ee85cfb1-201c-47a0-9d37-a01d18d76e92", + "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", + "80eb2b2c-3d80-431d-851d-8665038b93b7" + ], + "stops": [], + "line_id": "7ee07035-6c9c-4fe6-8fcc-24a0c9300b39", + "segments": [ + 0, + 140, + 171, + 190, + 195, + 197, + 199, + 206, + 213, + 223, + 227, + 231, + 234, + 246, + 250, + 259 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 237, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.41744, + 45.573518 + ], + [ + -73.417361, + 45.573566 + ], + [ + -73.416949, + 45.573818 + ], + [ + -73.41659, + 45.574029 + ], + [ + -73.416162, + 45.574303 + ], + [ + -73.415841, + 45.574516 + ], + [ + -73.415714, + 45.5746 + ], + [ + -73.414791, + 45.57387 + ], + [ + -73.414647, + 45.573758 + ], + [ + -73.414077, + 45.573294 + ], + [ + -73.414068, + 45.573287 + ], + [ + -73.413911, + 45.573168 + ], + [ + -73.414244, + 45.572963 + ], + [ + -73.414438, + 45.57284 + ], + [ + -73.414603, + 45.572714 + ], + [ + -73.414683, + 45.572615 + ], + [ + -73.414726, + 45.572503 + ], + [ + -73.414932, + 45.571927 + ], + [ + -73.414964, + 45.571837 + ], + [ + -73.415227, + 45.571104 + ], + [ + -73.41537, + 45.570699 + ], + [ + -73.415436, + 45.570537 + ], + [ + -73.415527, + 45.570353 + ], + [ + -73.415627, + 45.57024 + ], + [ + -73.415778, + 45.570101 + ], + [ + -73.415904, + 45.570025 + ], + [ + -73.415924, + 45.570016 + ], + [ + -73.416084, + 45.569948 + ], + [ + -73.416182, + 45.569915 + ], + [ + -73.41628, + 45.569881 + ], + [ + -73.416545, + 45.569832 + ], + [ + -73.416713, + 45.569818 + ], + [ + -73.417529, + 45.569774 + ], + [ + -73.418984, + 45.569667 + ], + [ + -73.419829, + 45.569604 + ], + [ + -73.420778, + 45.569551 + ], + [ + -73.421741, + 45.569502 + ], + [ + -73.422411, + 45.569465 + ], + [ + -73.422873, + 45.56944 + ], + [ + -73.424356, + 45.569357 + ], + [ + -73.424538, + 45.569347 + ], + [ + -73.424562, + 45.569513 + ], + [ + -73.424628, + 45.570152 + ], + [ + -73.424653, + 45.570373 + ], + [ + -73.424693, + 45.570539 + ], + [ + -73.424729, + 45.57062 + ], + [ + -73.424803, + 45.570692 + ], + [ + -73.424894, + 45.570778 + ], + [ + -73.425584, + 45.571312 + ], + [ + -73.425614, + 45.571336 + ], + [ + -73.425716, + 45.571377 + ], + [ + -73.425864, + 45.571408 + ], + [ + -73.426472, + 45.571382 + ], + [ + -73.426592, + 45.571376 + ], + [ + -73.42732, + 45.571342 + ], + [ + -73.427626, + 45.571342 + ], + [ + -73.428023, + 45.571342 + ], + [ + -73.428324, + 45.571347 + ], + [ + -73.428379, + 45.571349 + ], + [ + -73.428617, + 45.57136 + ], + [ + -73.42894, + 45.571383 + ], + [ + -73.429449, + 45.571428 + ], + [ + -73.42993, + 45.571492 + ], + [ + -73.430291, + 45.571546 + ], + [ + -73.430609, + 45.5716 + ], + [ + -73.431318, + 45.57175 + ], + [ + -73.432763, + 45.572056 + ], + [ + -73.434033, + 45.572325 + ], + [ + -73.435493, + 45.572634 + ], + [ + -73.436834, + 45.572918 + ], + [ + -73.437002, + 45.572954 + ], + [ + -73.437141, + 45.572652 + ], + [ + -73.437277, + 45.572369 + ], + [ + -73.437365, + 45.572207 + ], + [ + -73.437639, + 45.571843 + ], + [ + -73.437915, + 45.571494 + ], + [ + -73.438071, + 45.571298 + ], + [ + -73.438115, + 45.571239 + ], + [ + -73.438292, + 45.571002 + ], + [ + -73.43873, + 45.571092 + ], + [ + -73.439233, + 45.571191 + ], + [ + -73.43982, + 45.571308 + ], + [ + -73.440331, + 45.571417 + ], + [ + -73.440756, + 45.571507 + ], + [ + -73.441159, + 45.571606 + ], + [ + -73.4413, + 45.571651 + ], + [ + -73.441501, + 45.571723 + ], + [ + -73.44164, + 45.571795 + ], + [ + -73.441785, + 45.571885 + ], + [ + -73.441925, + 45.571984 + ], + [ + -73.442041, + 45.572083 + ], + [ + -73.442103, + 45.572145 + ], + [ + -73.442172, + 45.572214 + ], + [ + -73.442327, + 45.572407 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442767, + 45.572989 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443481, + 45.573532 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.446746, + 45.574587 + ], + [ + -73.447238, + 45.574749 + ], + [ + -73.447388, + 45.574789 + ], + [ + -73.447436, + 45.574664 + ], + [ + -73.447747, + 45.574246 + ], + [ + -73.447911, + 45.574048 + ], + [ + -73.448003, + 45.573949 + ], + [ + -73.448105, + 45.573859 + ], + [ + -73.448217, + 45.573769 + ], + [ + -73.448342, + 45.573688 + ], + [ + -73.448424, + 45.573645 + ], + [ + -73.448479, + 45.573616 + ], + [ + -73.448612, + 45.573562 + ], + [ + -73.448944, + 45.573459 + ], + [ + -73.449123, + 45.573428 + ], + [ + -73.449305, + 45.573405 + ], + [ + -73.4495, + 45.573396 + ], + [ + -73.449708, + 45.573401 + ], + [ + -73.450131, + 45.573437 + ], + [ + -73.45057, + 45.573487 + ], + [ + -73.452027, + 45.573685 + ], + [ + -73.45367, + 45.573951 + ], + [ + -73.455009, + 45.57424 + ], + [ + -73.456205, + 45.574501 + ], + [ + -73.457846, + 45.574844 + ], + [ + -73.459196, + 45.575101 + ], + [ + -73.460081, + 45.575263 + ], + [ + -73.460408, + 45.575326 + ], + [ + -73.462346, + 45.575705 + ], + [ + -73.463166, + 45.575871 + ], + [ + -73.466047, + 45.576484 + ], + [ + -73.467519, + 45.576809 + ], + [ + -73.469081, + 45.577137 + ], + [ + -73.469847, + 45.5773 + ], + [ + -73.469918, + 45.577331 + ], + [ + -73.47001, + 45.577371 + ], + [ + -73.470161, + 45.577438 + ], + [ + -73.470275, + 45.577491 + ], + [ + -73.470332, + 45.577516 + ], + [ + -73.470459, + 45.577603 + ], + [ + -73.470521, + 45.577644 + ], + [ + -73.470639, + 45.577765 + ], + [ + -73.470676, + 45.577802 + ], + [ + -73.470716, + 45.577878 + ], + [ + -73.470734, + 45.577912 + ], + [ + -73.470772, + 45.577984 + ], + [ + -73.470794, + 45.578178 + ], + [ + -73.470718, + 45.578574 + ], + [ + -73.470669, + 45.578834 + ], + [ + -73.470643, + 45.578987 + ], + [ + -73.470662, + 45.579117 + ], + [ + -73.47067, + 45.579175 + ], + [ + -73.470704, + 45.579255 + ], + [ + -73.470736, + 45.579331 + ], + [ + -73.470747, + 45.579357 + ], + [ + -73.470766, + 45.579382 + ], + [ + -73.470862, + 45.579503 + ], + [ + -73.470889, + 45.579537 + ], + [ + -73.470991, + 45.579617 + ], + [ + -73.471054, + 45.579666 + ], + [ + -73.471293, + 45.579788 + ], + [ + -73.472192, + 45.580001 + ], + [ + -73.472611, + 45.580062 + ], + [ + -73.47368, + 45.580182 + ], + [ + -73.473945, + 45.580181 + ], + [ + -73.474181, + 45.580155 + ], + [ + -73.474454, + 45.580098 + ], + [ + -73.474706, + 45.580011 + ], + [ + -73.474955, + 45.579888 + ], + [ + -73.47519, + 45.579723 + ], + [ + -73.47535, + 45.579574 + ], + [ + -73.475643, + 45.579294 + ], + [ + -73.476124, + 45.578808 + ], + [ + -73.476311, + 45.578613 + ], + [ + -73.476531, + 45.578426 + ], + [ + -73.477316, + 45.577756 + ], + [ + -73.478746, + 45.576546 + ], + [ + -73.485291, + 45.570941 + ], + [ + -73.485924, + 45.570374 + ], + [ + -73.486543, + 45.569794 + ], + [ + -73.487144, + 45.5692 + ], + [ + -73.487725, + 45.568597 + ], + [ + -73.488283, + 45.567985 + ], + [ + -73.489005, + 45.567148 + ], + [ + -73.489524, + 45.56651 + ], + [ + -73.490025, + 45.565857 + ], + [ + -73.490348, + 45.565416 + ], + [ + -73.490811, + 45.564746 + ], + [ + -73.492757, + 45.561799 + ], + [ + -73.493231, + 45.561129 + ], + [ + -73.493558, + 45.560688 + ], + [ + -73.493892, + 45.560256 + ], + [ + -73.494237, + 45.559829 + ], + [ + -73.499922, + 45.552981 + ], + [ + -73.501151, + 45.551492 + ], + [ + -73.501844, + 45.550646 + ], + [ + -73.502872, + 45.549445 + ], + [ + -73.503558, + 45.548684 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523837, + 45.530517 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521985, + 45.524134 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.52252, + 45.524045 + ] + ] + }, + "id": 238, + "properties": { + "id": "e6b677a7-f2ea-467f-82c8-474b67612f01", + "data": { + "gtfs": { + "shape_id": "185_2_A" + }, + "segments": [ + { + "distanceMeters": 167, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 467, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 83, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 11562, + "travelTimeSeconds": 1069 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 14948, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 9879.2506362516, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 10.38, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 9.23, + "averageSpeedWithoutDwellTimesMetersPerSecond": 10.38 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "80eb2b2c-3d80-431d-851d-8665038b93b7", + "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", + "c6549833-3800-4d1f-a789-747fc95c595a", + "ab419e3e-c877-4589-88de-b6df60ac6dd1", + "fb50e5b2-5326-4cb9-9888-65bcbf9b9592", + "834b9411-0d78-496d-8fb2-7131e0c1ec41", + "8b4e9db5-5481-4624-b5ab-e40bba2a2897", + "9cf65cb9-0319-47f1-8406-ca3211a7ff12", + "08debed2-a767-4e18-9342-678b9ff106e2", + "ab35419e-5bd1-4da1-bfdf-b33c65916d63", + "26830ba4-9f15-4574-ae58-812d3a6fc6d5", + "64d79080-f253-4cae-bbde-03e1a26a3f9e", + "7f184ebf-41da-496f-9ed8-536b6fff9c3f", + "7cc0727e-e69b-4711-8bea-f955d406f0ed", + "36054208-e9c6-4e5a-99d2-bfca0679b681", + "f983c876-3e85-4820-8de6-e993255f2434", + "4c755ece-2475-4915-941e-37859f0f391f" + ], + "stops": [], + "line_id": "7ee07035-6c9c-4fe6-8fcc-24a0c9300b39", + "segments": [ + 0, + 5, + 10, + 18, + 26, + 33, + 37, + 39, + 48, + 58, + 65, + 67, + 69, + 77, + 96, + 101 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 238, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.343603, + 45.514366 + ], + [ + -73.343662, + 45.514928 + ], + [ + -73.343818, + 45.516263 + ], + [ + -73.343839, + 45.51644 + ], + [ + -73.343864, + 45.516935 + ], + [ + -73.343868, + 45.517007 + ], + [ + -73.34388, + 45.517106 + ], + [ + -73.343907, + 45.517382 + ], + [ + -73.34397, + 45.51801 + ], + [ + -73.344007, + 45.518377 + ], + [ + -73.344019, + 45.518505 + ], + [ + -73.344103, + 45.519059 + ], + [ + -73.344134, + 45.519324 + ], + [ + -73.34415, + 45.519419 + ], + [ + -73.344151, + 45.519422 + ], + [ + -73.344217, + 45.520058 + ], + [ + -73.344223, + 45.520328 + ], + [ + -73.344186, + 45.520584 + ], + [ + -73.344126, + 45.520715 + ], + [ + -73.344046, + 45.520881 + ], + [ + -73.343898, + 45.52107 + ], + [ + -73.343841, + 45.521124 + ], + [ + -73.343794, + 45.521169 + ], + [ + -73.343671, + 45.521281 + ], + [ + -73.343545, + 45.521362 + ], + [ + -73.343253, + 45.521558 + ], + [ + -73.343232, + 45.521573 + ], + [ + -73.34316, + 45.521627 + ], + [ + -73.342373, + 45.522165 + ], + [ + -73.341614, + 45.522669 + ], + [ + -73.341528, + 45.522727 + ], + [ + -73.340632, + 45.523339 + ], + [ + -73.340352, + 45.52353 + ], + [ + -73.340272, + 45.523584 + ], + [ + -73.340102, + 45.523754 + ], + [ + -73.340043, + 45.523791 + ], + [ + -73.339575, + 45.524088 + ], + [ + -73.338727, + 45.524626 + ], + [ + -73.338541, + 45.524735 + ], + [ + -73.338368, + 45.524837 + ], + [ + -73.337669, + 45.525344 + ], + [ + -73.337228, + 45.52569 + ], + [ + -73.336573, + 45.52618 + ], + [ + -73.336359, + 45.526352 + ], + [ + -73.336249, + 45.52644 + ], + [ + -73.335456, + 45.527046 + ], + [ + -73.334776, + 45.527545 + ], + [ + -73.334752, + 45.52756 + ], + [ + -73.334622, + 45.527643 + ], + [ + -73.334545, + 45.527688 + ], + [ + -73.333788, + 45.528191 + ], + [ + -73.333439, + 45.528436 + ], + [ + -73.333275, + 45.52855 + ], + [ + -73.333272, + 45.528553 + ], + [ + -73.333063, + 45.528692 + ], + [ + -73.332637, + 45.528977 + ], + [ + -73.331967, + 45.529457 + ], + [ + -73.331877, + 45.529511 + ], + [ + -73.331399, + 45.529866 + ], + [ + -73.331117, + 45.530076 + ], + [ + -73.330825, + 45.530292 + ], + [ + -73.330761, + 45.530256 + ], + [ + -73.330009, + 45.529693 + ], + [ + -73.328691, + 45.528715 + ], + [ + -73.328279, + 45.528411 + ], + [ + -73.328159, + 45.528322 + ], + [ + -73.327746, + 45.528029 + ], + [ + -73.326635, + 45.527209 + ], + [ + -73.326501, + 45.527107 + ], + [ + -73.325817, + 45.526587 + ], + [ + -73.325411, + 45.526298 + ], + [ + -73.324596, + 45.525593 + ], + [ + -73.324515, + 45.525523 + ], + [ + -73.324477, + 45.525478 + ], + [ + -73.323443, + 45.524603 + ], + [ + -73.322938, + 45.524178 + ], + [ + -73.322064, + 45.52344 + ], + [ + -73.321325, + 45.522814 + ], + [ + -73.321102, + 45.522621 + ], + [ + -73.32099, + 45.522525 + ], + [ + -73.319781, + 45.521516 + ], + [ + -73.319139, + 45.520975 + ], + [ + -73.318732, + 45.520632 + ], + [ + -73.318552, + 45.520474 + ], + [ + -73.318461, + 45.520393 + ], + [ + -73.318456, + 45.520312 + ], + [ + -73.318426, + 45.520276 + ], + [ + -73.318299, + 45.520113 + ], + [ + -73.318178, + 45.51995 + ], + [ + -73.317965, + 45.519666 + ], + [ + -73.317953, + 45.519648 + ], + [ + -73.317869, + 45.519519 + ], + [ + -73.317741, + 45.519325 + ], + [ + -73.317582, + 45.519001 + ], + [ + -73.317525, + 45.518761 + ], + [ + -73.31752, + 45.518638 + ], + [ + -73.317513, + 45.518441 + ], + [ + -73.317522, + 45.518134 + ], + [ + -73.317532, + 45.517797 + ], + [ + -73.317536, + 45.517692 + ], + [ + -73.317549, + 45.517361 + ], + [ + -73.317571, + 45.516825 + ], + [ + -73.317518, + 45.516504 + ], + [ + -73.317555, + 45.515401 + ], + [ + -73.317556, + 45.515379 + ], + [ + -73.317556, + 45.51535 + ], + [ + -73.317557, + 45.515284 + ], + [ + -73.317558, + 45.515133 + ], + [ + -73.317711, + 45.515131 + ], + [ + -73.31781, + 45.515137 + ], + [ + -73.317862, + 45.51514 + ], + [ + -73.317874, + 45.51514 + ], + [ + -73.317955, + 45.515142 + ], + [ + -73.31803, + 45.515143 + ], + [ + -73.318089, + 45.515154 + ], + [ + -73.31812, + 45.515161 + ], + [ + -73.31825, + 45.515194 + ], + [ + -73.318377, + 45.515215 + ], + [ + -73.318466, + 45.515215 + ], + [ + -73.318584, + 45.515209 + ], + [ + -73.318668, + 45.515185 + ], + [ + -73.318888, + 45.515122 + ], + [ + -73.319039, + 45.515086 + ], + [ + -73.319183, + 45.515063 + ], + [ + -73.319504, + 45.515014 + ], + [ + -73.319813, + 45.514987 + ], + [ + -73.320068, + 45.51497 + ], + [ + -73.320287, + 45.514956 + ], + [ + -73.320491, + 45.514943 + ], + [ + -73.322784, + 45.514785 + ], + [ + -73.323576, + 45.514728 + ], + [ + -73.32364, + 45.514723 + ], + [ + -73.323824, + 45.514709 + ], + [ + -73.324037, + 45.514697 + ], + [ + -73.324882, + 45.514635 + ], + [ + -73.325331, + 45.514602 + ], + [ + -73.325842, + 45.514565 + ], + [ + -73.326299, + 45.514534 + ], + [ + -73.32769, + 45.514424 + ], + [ + -73.327945, + 45.514388 + ], + [ + -73.328275, + 45.514323 + ], + [ + -73.328284, + 45.514321 + ], + [ + -73.328456, + 45.514236 + ], + [ + -73.32877, + 45.514101 + ], + [ + -73.329221, + 45.51389 + ], + [ + -73.32948, + 45.513693 + ], + [ + -73.32972, + 45.513518 + ], + [ + -73.329962, + 45.513351 + ], + [ + -73.330507, + 45.512975 + ], + [ + -73.330794, + 45.512786 + ], + [ + -73.330944, + 45.51269 + ], + [ + -73.331385, + 45.512407 + ], + [ + -73.331778, + 45.512149 + ], + [ + -73.332065, + 45.51196 + ], + [ + -73.332471, + 45.511692 + ], + [ + -73.332834, + 45.511452 + ], + [ + -73.332968, + 45.511363 + ], + [ + -73.333664, + 45.510909 + ], + [ + -73.334013, + 45.510683 + ], + [ + -73.334454, + 45.510366 + ], + [ + -73.33485, + 45.510077 + ], + [ + -73.335253, + 45.509783 + ], + [ + -73.335544, + 45.509572 + ], + [ + -73.335916, + 45.509331 + ], + [ + -73.335984, + 45.509292 + ], + [ + -73.336048, + 45.509266 + ], + [ + -73.336059, + 45.509261 + ], + [ + -73.33614, + 45.509238 + ], + [ + -73.336225, + 45.509224 + ], + [ + -73.336547, + 45.509188 + ], + [ + -73.336939, + 45.509159 + ], + [ + -73.336952, + 45.509157 + ], + [ + -73.337049, + 45.509155 + ], + [ + -73.337253, + 45.509165 + ], + [ + -73.337473, + 45.509192 + ], + [ + -73.337654, + 45.509233 + ], + [ + -73.337875, + 45.5093 + ], + [ + -73.338077, + 45.509382 + ], + [ + -73.338251, + 45.509472 + ], + [ + -73.338438, + 45.509603 + ], + [ + -73.338649, + 45.509765 + ], + [ + -73.338812, + 45.5099 + ], + [ + -73.339011, + 45.510053 + ], + [ + -73.33923, + 45.510225 + ], + [ + -73.339426, + 45.510378 + ], + [ + -73.33958, + 45.5105 + ], + [ + -73.339787, + 45.510662 + ], + [ + -73.33993, + 45.51077 + ], + [ + -73.340029, + 45.510841 + ], + [ + -73.340118, + 45.510905 + ], + [ + -73.340296, + 45.511027 + ], + [ + -73.340633, + 45.511225 + ], + [ + -73.341122, + 45.511465 + ], + [ + -73.341412, + 45.51159 + ], + [ + -73.341736, + 45.511731 + ], + [ + -73.341938, + 45.511803 + ], + [ + -73.342349, + 45.511934 + ], + [ + -73.342629, + 45.512011 + ], + [ + -73.342741, + 45.512043 + ], + [ + -73.342894, + 45.512074 + ], + [ + -73.342984, + 45.512085 + ], + [ + -73.343038, + 45.512092 + ], + [ + -73.343097, + 45.5121 + ], + [ + -73.343396, + 45.51257 + ], + [ + -73.343437, + 45.512674 + ], + [ + -73.343463, + 45.512804 + ], + [ + -73.343492, + 45.513074 + ], + [ + -73.343522, + 45.513542 + ], + [ + -73.343521, + 45.513731 + ], + [ + -73.343701, + 45.513718 + ], + [ + -73.343799, + 45.513709 + ], + [ + -73.344204, + 45.513683 + ], + [ + -73.357647, + 45.512814 + ], + [ + -73.358491, + 45.512756 + ], + [ + -73.359423, + 45.512694 + ], + [ + -73.359555, + 45.512681 + ], + [ + -73.36081, + 45.512584 + ], + [ + -73.361813, + 45.512472 + ], + [ + -73.362822, + 45.512334 + ], + [ + -73.363276, + 45.512258 + ], + [ + -73.363561, + 45.512213 + ], + [ + -73.365307, + 45.511892 + ], + [ + -73.367381, + 45.511525 + ], + [ + -73.368785, + 45.511324 + ], + [ + -73.369875, + 45.511208 + ], + [ + -73.370223, + 45.511177 + ], + [ + -73.370922, + 45.511129 + ], + [ + -73.371649, + 45.511098 + ], + [ + -73.371854, + 45.511094 + ], + [ + -73.372619, + 45.511081 + ], + [ + -73.37324, + 45.511086 + ], + [ + -73.374187, + 45.511119 + ], + [ + -73.376015, + 45.51122 + ], + [ + -73.376407, + 45.511234 + ], + [ + -73.377357, + 45.511248 + ], + [ + -73.378321, + 45.51124 + ], + [ + -73.378967, + 45.511214 + ], + [ + -73.379618, + 45.511183 + ], + [ + -73.382611, + 45.511015 + ], + [ + -73.384597, + 45.510914 + ], + [ + -73.392277, + 45.510503 + ], + [ + -73.393587, + 45.510437 + ], + [ + -73.396575, + 45.510246 + ], + [ + -73.416479, + 45.508939 + ], + [ + -73.422517, + 45.50853 + ], + [ + -73.424264, + 45.508396 + ], + [ + -73.424552, + 45.508369 + ], + [ + -73.427299, + 45.508128 + ], + [ + -73.428658, + 45.508016 + ], + [ + -73.429661, + 45.507941 + ], + [ + -73.430957, + 45.507858 + ], + [ + -73.431208, + 45.507842 + ], + [ + -73.432577, + 45.507753 + ], + [ + -73.43342, + 45.507709 + ], + [ + -73.434603, + 45.507674 + ], + [ + -73.436686, + 45.507634 + ], + [ + -73.43758, + 45.507603 + ], + [ + -73.438175, + 45.507572 + ], + [ + -73.440344, + 45.507425 + ], + [ + -73.445881, + 45.507063 + ], + [ + -73.452257, + 45.506638 + ], + [ + -73.452565, + 45.506616 + ], + [ + -73.453776, + 45.50654 + ], + [ + -73.455247, + 45.506419 + ], + [ + -73.456957, + 45.50624 + ], + [ + -73.460279, + 45.505832 + ], + [ + -73.460374, + 45.505823 + ], + [ + -73.461182, + 45.505728 + ], + [ + -73.463671, + 45.505509 + ], + [ + -73.465111, + 45.505401 + ], + [ + -73.467755, + 45.505222 + ], + [ + -73.468692, + 45.505168 + ], + [ + -73.470746, + 45.505025 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492938, + 45.510118 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494425, + 45.510904 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497945, + 45.512059 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.503773, + 45.51407 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518225, + 45.520414 + ], + [ + -73.518898, + 45.52063 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520267, + 45.521193 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.52068, + 45.524093 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.520811, + 45.523427 + ] + ] + }, + "id": 239, + "properties": { + "id": "48d3fbb3-0fee-4563-9aae-32c5e92175ce", + "data": { + "gtfs": { + "shape_id": "199_1_A" + }, + "segments": [ + { + "distanceMeters": 287, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 374, + "travelTimeSeconds": 88 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 659, + "travelTimeSeconds": 113 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 12106, + "travelTimeSeconds": 600 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 1942, + "travelTimeSeconds": 325 + }, + { + "distanceMeters": 845, + "travelTimeSeconds": 141 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 234, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 22186, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 13853.560974237116, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.48, + "travelTimeWithoutDwellTimesSeconds": 2340, + "operatingTimeWithLayoverTimeSeconds": 2574, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2340, + "operatingSpeedWithLayoverMetersPerSecond": 8.62, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.48 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "4d3db5af-874a-4a4c-8a87-68ecc590af13", + "f20c1a67-6c7e-41a3-a85d-9c7b49ac0386", + "652ad35d-f3c9-49c6-b2de-8d15cab5cafb", + "7ac3961a-0b0e-47c8-a264-69b6edbbd2b9", + "9f67f31c-9015-4b9c-b5eb-210a53be617b", + "60ea8a19-f195-4f9b-b60e-122a63bd86bd", + "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", + "2c952684-5d97-4238-ae18-51cba6c9775e", + "39a7153a-bac3-4ac2-84e3-79ec24465317", + "b476282d-aa8d-4826-8ad2-39123a162025", + "3bbcea32-d474-49cc-8cd8-d77d2bac6158", + "93fcd4a5-ee80-4c79-b0bc-547231801133", + "6b369192-79e8-4382-aaa0-abddf0da08d7", + "02c05e36-6f59-42fd-b6c5-b158e3d119a0", + "4f0816d5-67e0-4d4d-9413-6e045052da5f", + "7464372f-e710-4dc5-a76c-a68144e67289", + "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", + "5f32a25e-7895-498c-b5cd-182adcfb40dd", + "44828ff3-a75f-403d-9e17-7e902c4620b9", + "e39d2286-4090-4933-a88a-16d850b1afef", + "a701238b-1e29-4dd9-946e-0536ece5b28c", + "57a91181-2fc4-4e39-a5bf-0ff47bbe6e9b", + "23cec068-5e76-484b-b2ab-203e4ea55358", + "826d09a9-1b78-4dbe-b959-454ea9c14e84", + "1d0cf396-f4ae-4977-a367-c4cf2be5bc83", + "a1087eae-a20b-4cd0-b8e7-26440d382937", + "784a98f8-f964-4b51-9a84-d7aa241d6aab", + "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "acabc807-b0f5-4579-b183-cef0484a7cc2" + ], + "stops": [], + "line_id": "8e981633-8115-4bab-ab74-64789b6eed90", + "segments": [ + 0, + 4, + 9, + 14, + 25, + 29, + 31, + 38, + 43, + 47, + 53, + 59, + 64, + 68, + 71, + 75, + 78, + 81, + 95, + 106, + 127, + 130, + 140, + 150, + 155, + 165, + 200, + 211, + 306, + 319, + 369 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 239, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.520811, + 45.523427 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522185, + 45.522436 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519256, + 45.520728 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514999, + 45.519328 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509849, + 45.51557 + ], + [ + -73.509164, + 45.515381 + ], + [ + -73.508444, + 45.51521 + ], + [ + -73.50806, + 45.515088 + ], + [ + -73.503449, + 45.513618 + ], + [ + -73.500803, + 45.512776 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498217, + 45.511892 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.494319, + 45.510462 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488355, + 45.503066 + ], + [ + -73.4883, + 45.502913 + ], + [ + -73.488219, + 45.502531 + ], + [ + -73.488223, + 45.502405 + ], + [ + -73.488245, + 45.502293 + ], + [ + -73.488296, + 45.502185 + ], + [ + -73.488375, + 45.502086 + ], + [ + -73.488484, + 45.502 + ], + [ + -73.488609, + 45.501937 + ], + [ + -73.48874, + 45.501892 + ], + [ + -73.48888, + 45.501865 + ], + [ + -73.489028, + 45.501856 + ], + [ + -73.489181, + 45.501865 + ], + [ + -73.489324, + 45.501892 + ], + [ + -73.489461, + 45.501933 + ], + [ + -73.489585, + 45.501991 + ], + [ + -73.489692, + 45.502068 + ], + [ + -73.489744, + 45.502115 + ], + [ + -73.489786, + 45.502153 + ], + [ + -73.489942, + 45.502342 + ], + [ + -73.490006, + 45.50245 + ], + [ + -73.490054, + 45.502558 + ], + [ + -73.490086, + 45.502666 + ], + [ + -73.490092, + 45.502779 + ], + [ + -73.490064, + 45.502891 + ], + [ + -73.490004, + 45.502995 + ], + [ + -73.489917, + 45.503094 + ], + [ + -73.489808, + 45.503175 + ], + [ + -73.489675, + 45.503242 + ], + [ + -73.489524, + 45.503287 + ], + [ + -73.489359, + 45.50331 + ], + [ + -73.489186, + 45.503323 + ], + [ + -73.488817, + 45.503318 + ], + [ + -73.487515, + 45.503242 + ], + [ + -73.486872, + 45.503273 + ], + [ + -73.486502, + 45.503323 + ], + [ + -73.486146, + 45.503381 + ], + [ + -73.484224, + 45.503808 + ], + [ + -73.483407, + 45.503957 + ], + [ + -73.482922, + 45.504029 + ], + [ + -73.482166, + 45.504114 + ], + [ + -73.481092, + 45.504204 + ], + [ + -73.4802, + 45.504262 + ], + [ + -73.47719, + 45.50446 + ], + [ + -73.464792, + 45.505284 + ], + [ + -73.464234, + 45.505325 + ], + [ + -73.463301, + 45.505392 + ], + [ + -73.461784, + 45.505526 + ], + [ + -73.460686, + 45.505647 + ], + [ + -73.45799, + 45.505984 + ], + [ + -73.456776, + 45.506127 + ], + [ + -73.455209, + 45.506284 + ], + [ + -73.454382, + 45.506356 + ], + [ + -73.450186, + 45.506642 + ], + [ + -73.439577, + 45.507343 + ], + [ + -73.439057, + 45.507379 + ], + [ + -73.438071, + 45.507414 + ], + [ + -73.437444, + 45.507428 + ], + [ + -73.436265, + 45.507427 + ], + [ + -73.435664, + 45.507418 + ], + [ + -73.43478, + 45.507413 + ], + [ + -73.433757, + 45.507439 + ], + [ + -73.432476, + 45.507501 + ], + [ + -73.430857, + 45.507609 + ], + [ + -73.43012, + 45.507658 + ], + [ + -73.43011, + 45.507658 + ], + [ + -73.429984, + 45.507667 + ], + [ + -73.429954, + 45.507669 + ], + [ + -73.429316, + 45.507711 + ], + [ + -73.429246, + 45.50772 + ], + [ + -73.427401, + 45.507872 + ], + [ + -73.425651, + 45.508046 + ], + [ + -73.425331, + 45.508082 + ], + [ + -73.423669, + 45.508256 + ], + [ + -73.421559, + 45.508471 + ], + [ + -73.418703, + 45.508644 + ], + [ + -73.414755, + 45.508904 + ], + [ + -73.40603, + 45.509467 + ], + [ + -73.399904, + 45.509875 + ], + [ + -73.3937, + 45.510275 + ], + [ + -73.39233, + 45.510359 + ], + [ + -73.390441, + 45.510452 + ], + [ + -73.389445, + 45.510505 + ], + [ + -73.387299, + 45.510633 + ], + [ + -73.381768, + 45.510924 + ], + [ + -73.37903, + 45.511061 + ], + [ + -73.378353, + 45.511087 + ], + [ + -73.377677, + 45.511105 + ], + [ + -73.376999, + 45.511104 + ], + [ + -73.375985, + 45.511071 + ], + [ + -73.375316, + 45.51103 + ], + [ + -73.373596, + 45.510947 + ], + [ + -73.372769, + 45.510937 + ], + [ + -73.371909, + 45.510936 + ], + [ + -73.371148, + 45.510962 + ], + [ + -73.37043, + 45.511007 + ], + [ + -73.36933, + 45.511113 + ], + [ + -73.368592, + 45.511203 + ], + [ + -73.367673, + 45.511332 + ], + [ + -73.366892, + 45.511466 + ], + [ + -73.363466, + 45.512074 + ], + [ + -73.362782, + 45.512186 + ], + [ + -73.36245, + 45.512235 + ], + [ + -73.362045, + 45.512288 + ], + [ + -73.361529, + 45.512355 + ], + [ + -73.360893, + 45.512422 + ], + [ + -73.358459, + 45.512576 + ], + [ + -73.356757, + 45.512682 + ], + [ + -73.347571, + 45.513278 + ], + [ + -73.343703, + 45.513529 + ], + [ + -73.34367, + 45.513061 + ], + [ + -73.343642, + 45.512791 + ], + [ + -73.343612, + 45.512647 + ], + [ + -73.343567, + 45.512534 + ], + [ + -73.343564, + 45.512526 + ], + [ + -73.34336, + 45.512075 + ], + [ + -73.343354, + 45.512062 + ], + [ + -73.343353, + 45.511994 + ], + [ + -73.343338, + 45.511968 + ], + [ + -73.343317, + 45.511931 + ], + [ + -73.343273, + 45.511881 + ], + [ + -73.343208, + 45.51185 + ], + [ + -73.343153, + 45.511841 + ], + [ + -73.343055, + 45.511863 + ], + [ + -73.343022, + 45.511899 + ], + [ + -73.343008, + 45.511931 + ], + [ + -73.343011, + 45.511985 + ], + [ + -73.343038, + 45.512034 + ], + [ + -73.343097, + 45.5121 + ], + [ + -73.343396, + 45.51257 + ], + [ + -73.343437, + 45.512674 + ], + [ + -73.343463, + 45.512804 + ], + [ + -73.343492, + 45.513074 + ], + [ + -73.343522, + 45.513542 + ], + [ + -73.343521, + 45.513731 + ], + [ + -73.343597, + 45.514311 + ], + [ + -73.343608, + 45.514418 + ], + [ + -73.343662, + 45.514928 + ], + [ + -73.343818, + 45.516263 + ], + [ + -73.343839, + 45.51644 + ], + [ + -73.343867, + 45.516997 + ], + [ + -73.343868, + 45.517007 + ], + [ + -73.34388, + 45.517106 + ], + [ + -73.343907, + 45.517382 + ], + [ + -73.34397, + 45.51801 + ], + [ + -73.344013, + 45.518438 + ], + [ + -73.344019, + 45.518505 + ], + [ + -73.344103, + 45.519059 + ], + [ + -73.344134, + 45.519324 + ], + [ + -73.34415, + 45.519419 + ], + [ + -73.344157, + 45.519483 + ], + [ + -73.344217, + 45.520058 + ], + [ + -73.344223, + 45.520328 + ], + [ + -73.344186, + 45.520584 + ], + [ + -73.344126, + 45.520715 + ], + [ + -73.344046, + 45.520881 + ], + [ + -73.343898, + 45.52107 + ], + [ + -73.343794, + 45.521169 + ], + [ + -73.343671, + 45.521281 + ], + [ + -73.343545, + 45.521362 + ], + [ + -73.343232, + 45.521573 + ], + [ + -73.343192, + 45.521602 + ], + [ + -73.34316, + 45.521627 + ], + [ + -73.342373, + 45.522165 + ], + [ + -73.34155, + 45.522712 + ], + [ + -73.341528, + 45.522727 + ], + [ + -73.340578, + 45.523376 + ], + [ + -73.340352, + 45.52353 + ], + [ + -73.340272, + 45.523584 + ], + [ + -73.340102, + 45.523754 + ], + [ + -73.340043, + 45.523791 + ], + [ + -73.339575, + 45.524088 + ], + [ + -73.338727, + 45.524626 + ], + [ + -73.338473, + 45.524775 + ], + [ + -73.338368, + 45.524837 + ], + [ + -73.337669, + 45.525344 + ], + [ + -73.337228, + 45.52569 + ], + [ + -73.336573, + 45.52618 + ], + [ + -73.336309, + 45.526392 + ], + [ + -73.336249, + 45.52644 + ], + [ + -73.335456, + 45.527046 + ], + [ + -73.334776, + 45.527545 + ], + [ + -73.334687, + 45.527602 + ], + [ + -73.334622, + 45.527643 + ], + [ + -73.334545, + 45.527688 + ], + [ + -73.333788, + 45.528191 + ], + [ + -73.333439, + 45.528436 + ], + [ + -73.333275, + 45.52855 + ], + [ + -73.333216, + 45.52859 + ], + [ + -73.333063, + 45.528692 + ], + [ + -73.332637, + 45.528977 + ], + [ + -73.331967, + 45.529457 + ], + [ + -73.331877, + 45.529511 + ], + [ + -73.331546, + 45.529757 + ], + [ + -73.331055, + 45.530121 + ], + [ + -73.330825, + 45.530292 + ], + [ + -73.330761, + 45.530256 + ], + [ + -73.330009, + 45.529693 + ], + [ + -73.328691, + 45.528715 + ], + [ + -73.328227, + 45.528372 + ], + [ + -73.328159, + 45.528322 + ], + [ + -73.327746, + 45.528029 + ], + [ + -73.326635, + 45.527209 + ], + [ + -73.326449, + 45.527067 + ], + [ + -73.325817, + 45.526587 + ], + [ + -73.325411, + 45.526298 + ], + [ + -73.324539, + 45.525544 + ], + [ + -73.324515, + 45.525523 + ], + [ + -73.324477, + 45.525478 + ], + [ + -73.323443, + 45.524603 + ], + [ + -73.322881, + 45.524129 + ], + [ + -73.322064, + 45.52344 + ], + [ + -73.321325, + 45.522814 + ], + [ + -73.321044, + 45.522572 + ], + [ + -73.32099, + 45.522525 + ], + [ + -73.319781, + 45.521516 + ], + [ + -73.319089, + 45.520933 + ], + [ + -73.318732, + 45.520632 + ], + [ + -73.318552, + 45.520474 + ], + [ + -73.318461, + 45.520393 + ], + [ + -73.318456, + 45.520312 + ], + [ + -73.318426, + 45.520276 + ], + [ + -73.318299, + 45.520113 + ], + [ + -73.318178, + 45.51995 + ], + [ + -73.317965, + 45.519666 + ], + [ + -73.317953, + 45.519648 + ], + [ + -73.317869, + 45.519519 + ], + [ + -73.317741, + 45.519325 + ], + [ + -73.317582, + 45.519001 + ], + [ + -73.317525, + 45.518761 + ], + [ + -73.317518, + 45.518583 + ], + [ + -73.317513, + 45.518441 + ], + [ + -73.317522, + 45.518134 + ], + [ + -73.317532, + 45.517797 + ], + [ + -73.317536, + 45.517692 + ], + [ + -73.317549, + 45.517361 + ], + [ + -73.317571, + 45.516825 + ], + [ + -73.317518, + 45.516504 + ], + [ + -73.317555, + 45.515401 + ], + [ + -73.317556, + 45.515379 + ], + [ + -73.317556, + 45.51535 + ], + [ + -73.317557, + 45.51522 + ], + [ + -73.317558, + 45.515133 + ], + [ + -73.317711, + 45.515131 + ], + [ + -73.31781, + 45.515137 + ], + [ + -73.317862, + 45.51514 + ], + [ + -73.317874, + 45.51514 + ], + [ + -73.317955, + 45.515142 + ], + [ + -73.31803, + 45.515143 + ], + [ + -73.318089, + 45.515154 + ], + [ + -73.31812, + 45.515161 + ], + [ + -73.31825, + 45.515194 + ], + [ + -73.318377, + 45.515215 + ], + [ + -73.318466, + 45.515215 + ], + [ + -73.318584, + 45.515209 + ], + [ + -73.318668, + 45.515185 + ], + [ + -73.318888, + 45.515122 + ], + [ + -73.319039, + 45.515086 + ], + [ + -73.319183, + 45.515063 + ], + [ + -73.319504, + 45.515014 + ], + [ + -73.319813, + 45.514987 + ], + [ + -73.320068, + 45.51497 + ], + [ + -73.320366, + 45.514951 + ], + [ + -73.320491, + 45.514943 + ], + [ + -73.322784, + 45.514785 + ], + [ + -73.32364, + 45.514723 + ], + [ + -73.323667, + 45.514721 + ], + [ + -73.323824, + 45.514709 + ], + [ + -73.324037, + 45.514697 + ], + [ + -73.324882, + 45.514635 + ], + [ + -73.325331, + 45.514602 + ], + [ + -73.325842, + 45.514565 + ], + [ + -73.326299, + 45.514534 + ], + [ + -73.32769, + 45.514424 + ], + [ + -73.327945, + 45.514388 + ], + [ + -73.328284, + 45.514321 + ], + [ + -73.328351, + 45.514288 + ], + [ + -73.328456, + 45.514236 + ], + [ + -73.32877, + 45.514101 + ], + [ + -73.329221, + 45.51389 + ], + [ + -73.32948, + 45.513693 + ], + [ + -73.32972, + 45.513518 + ], + [ + -73.330507, + 45.512975 + ], + [ + -73.330794, + 45.512786 + ], + [ + -73.331012, + 45.512646 + ], + [ + -73.331385, + 45.512407 + ], + [ + -73.331778, + 45.512149 + ], + [ + -73.332065, + 45.51196 + ], + [ + -73.332471, + 45.511692 + ], + [ + -73.332892, + 45.511413 + ], + [ + -73.332968, + 45.511363 + ], + [ + -73.333664, + 45.510909 + ], + [ + -73.334013, + 45.510683 + ], + [ + -73.334454, + 45.510366 + ], + [ + -73.33485, + 45.510077 + ], + [ + -73.334962, + 45.509995 + ], + [ + -73.335253, + 45.509783 + ], + [ + -73.335544, + 45.509572 + ], + [ + -73.335916, + 45.509331 + ], + [ + -73.335984, + 45.509292 + ], + [ + -73.336059, + 45.509261 + ], + [ + -73.336134, + 45.50924 + ], + [ + -73.33614, + 45.509238 + ], + [ + -73.336225, + 45.509224 + ], + [ + -73.336547, + 45.509188 + ], + [ + -73.336939, + 45.509159 + ], + [ + -73.336952, + 45.509157 + ], + [ + -73.337049, + 45.509155 + ], + [ + -73.337253, + 45.509165 + ], + [ + -73.337473, + 45.509192 + ], + [ + -73.337654, + 45.509233 + ], + [ + -73.337875, + 45.5093 + ], + [ + -73.338077, + 45.509382 + ], + [ + -73.338251, + 45.509472 + ], + [ + -73.338438, + 45.509603 + ], + [ + -73.338649, + 45.509765 + ], + [ + -73.338812, + 45.5099 + ], + [ + -73.339011, + 45.510053 + ], + [ + -73.33923, + 45.510225 + ], + [ + -73.339426, + 45.510378 + ], + [ + -73.33958, + 45.5105 + ], + [ + -73.339787, + 45.510662 + ], + [ + -73.33993, + 45.51077 + ], + [ + -73.340029, + 45.510841 + ], + [ + -73.340118, + 45.510905 + ], + [ + -73.340296, + 45.511027 + ], + [ + -73.340633, + 45.511225 + ], + [ + -73.341122, + 45.511465 + ], + [ + -73.341412, + 45.51159 + ], + [ + -73.341736, + 45.511731 + ], + [ + -73.341938, + 45.511803 + ], + [ + -73.342349, + 45.511934 + ], + [ + -73.342629, + 45.512011 + ], + [ + -73.342741, + 45.512043 + ], + [ + -73.342894, + 45.512074 + ], + [ + -73.343038, + 45.512092 + ], + [ + -73.343059, + 45.512094 + ], + [ + -73.343063, + 45.512095 + ], + [ + -73.343097, + 45.5121 + ], + [ + -73.343396, + 45.51257 + ], + [ + -73.343437, + 45.512674 + ], + [ + -73.343463, + 45.512804 + ], + [ + -73.343492, + 45.513074 + ], + [ + -73.343522, + 45.513542 + ], + [ + -73.343521, + 45.513731 + ], + [ + -73.343701, + 45.513718 + ], + [ + -73.343799, + 45.513709 + ], + [ + -73.344298, + 45.513677 + ] + ] + }, + "id": 240, + "properties": { + "id": "b3c3df85-d2ff-46c4-9735-a5e9c4c376b9", + "data": { + "gtfs": { + "shape_id": "199_2_R" + }, + "segments": [ + { + "distanceMeters": 630, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 1600, + "travelTimeSeconds": 195 + }, + { + "distanceMeters": 344, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 6033, + "travelTimeSeconds": 360 + }, + { + "distanceMeters": 6929, + "travelTimeSeconds": 457 + }, + { + "distanceMeters": 335, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 375, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 658, + "travelTimeSeconds": 182 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 70 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 246, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 23082, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 13816.863629181675, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.38, + "travelTimeWithoutDwellTimesSeconds": 2460, + "operatingTimeWithLayoverTimeSeconds": 2706, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2460, + "operatingSpeedWithLayoverMetersPerSecond": 8.53, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.38 + }, + "mode": "bus", + "name": "St-Bruno", + "color": "#A32638", + "nodes": [ + "acabc807-b0f5-4579-b183-cef0484a7cc2", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "688a3f67-a176-441e-a399-c92a55de9c74", + "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", + "4aea3348-4995-4fc9-b06f-6698460c1f1d", + "784a98f8-f964-4b51-9a84-d7aa241d6aab", + "4d3db5af-874a-4a4c-8a87-68ecc590af13", + "f20c1a67-6c7e-41a3-a85d-9c7b49ac0386", + "652ad35d-f3c9-49c6-b2de-8d15cab5cafb", + "7ac3961a-0b0e-47c8-a264-69b6edbbd2b9", + "9f67f31c-9015-4b9c-b5eb-210a53be617b", + "60ea8a19-f195-4f9b-b60e-122a63bd86bd", + "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", + "2c952684-5d97-4238-ae18-51cba6c9775e", + "39a7153a-bac3-4ac2-84e3-79ec24465317", + "b476282d-aa8d-4826-8ad2-39123a162025", + "3bbcea32-d474-49cc-8cd8-d77d2bac6158", + "93fcd4a5-ee80-4c79-b0bc-547231801133", + "6b369192-79e8-4382-aaa0-abddf0da08d7", + "02c05e36-6f59-42fd-b6c5-b158e3d119a0", + "4f0816d5-67e0-4d4d-9413-6e045052da5f", + "7464372f-e710-4dc5-a76c-a68144e67289", + "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", + "5f32a25e-7895-498c-b5cd-182adcfb40dd", + "44828ff3-a75f-403d-9e17-7e902c4620b9", + "e39d2286-4090-4933-a88a-16d850b1afef", + "a701238b-1e29-4dd9-946e-0536ece5b28c", + "57a91181-2fc4-4e39-a5bf-0ff47bbe6e9b", + "23cec068-5e76-484b-b2ab-203e4ea55358", + "826d09a9-1b78-4dbe-b959-454ea9c14e84", + "1d0cf396-f4ae-4977-a367-c4cf2be5bc83", + "a1087eae-a20b-4cd0-b8e7-26440d382937", + "784a98f8-f964-4b51-9a84-d7aa241d6aab", + "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d" + ], + "stops": [], + "line_id": "8e981633-8115-4bab-ab74-64789b6eed90", + "segments": [ + 0, + 39, + 46, + 70, + 81, + 168, + 216, + 237, + 241, + 246, + 251, + 262, + 265, + 267, + 274, + 279, + 283, + 289, + 295, + 300, + 304, + 307, + 311, + 314, + 317, + 331, + 342, + 363, + 367, + 377, + 385, + 390, + 402, + 438 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 240, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.435856, + 45.591737 + ], + [ + -73.435771, + 45.591809 + ], + [ + -73.435656, + 45.59193 + ], + [ + -73.435482, + 45.592133 + ], + [ + -73.435328, + 45.592303 + ], + [ + -73.435201, + 45.592416 + ], + [ + -73.435194, + 45.59242 + ], + [ + -73.434937, + 45.592614 + ], + [ + -73.434583, + 45.592879 + ], + [ + -73.434575, + 45.592883 + ], + [ + -73.434342, + 45.593054 + ], + [ + -73.434176, + 45.59318 + ], + [ + -73.433984, + 45.593306 + ], + [ + -73.433723, + 45.593472 + ], + [ + -73.433623, + 45.593526 + ], + [ + -73.433582, + 45.593589 + ], + [ + -73.433524, + 45.593619 + ], + [ + -73.433267, + 45.593751 + ], + [ + -73.432501, + 45.593098 + ], + [ + -73.432411, + 45.593022 + ], + [ + -73.431736, + 45.592481 + ], + [ + -73.431426, + 45.592216 + ], + [ + -73.430999, + 45.591887 + ], + [ + -73.430869, + 45.591805 + ], + [ + -73.430742, + 45.591724 + ], + [ + -73.430249, + 45.591315 + ], + [ + -73.430052, + 45.591144 + ], + [ + -73.430035, + 45.591102 + ], + [ + -73.429965, + 45.590937 + ], + [ + -73.429799, + 45.590246 + ], + [ + -73.429621, + 45.589502 + ], + [ + -73.429601, + 45.589438 + ], + [ + -73.429567, + 45.589376 + ], + [ + -73.429522, + 45.589319 + ], + [ + -73.429464, + 45.589267 + ], + [ + -73.429127, + 45.589004 + ], + [ + -73.429125, + 45.589003 + ], + [ + -73.429011, + 45.588919 + ], + [ + -73.429137, + 45.588834 + ], + [ + -73.429438, + 45.588643 + ], + [ + -73.429681, + 45.58849 + ], + [ + -73.430455, + 45.587999 + ], + [ + -73.43085, + 45.58775 + ], + [ + -73.431256, + 45.587493 + ], + [ + -73.431644, + 45.587248 + ], + [ + -73.431818, + 45.587179 + ], + [ + -73.431883, + 45.587238 + ], + [ + -73.432034, + 45.587385 + ], + [ + -73.432226, + 45.587579 + ], + [ + -73.433253, + 45.588702 + ], + [ + -73.433529, + 45.589001 + ], + [ + -73.433543, + 45.589016 + ], + [ + -73.433674, + 45.589158 + ], + [ + -73.433885, + 45.58936 + ], + [ + -73.4342, + 45.589657 + ], + [ + -73.434715, + 45.590103 + ], + [ + -73.434884, + 45.590234 + ], + [ + -73.434944, + 45.590279 + ], + [ + -73.434983, + 45.59031 + ], + [ + -73.434985, + 45.590312 + ], + [ + -73.435014, + 45.590337 + ], + [ + -73.435057, + 45.590373 + ], + [ + -73.435107, + 45.590414 + ], + [ + -73.435254, + 45.590517 + ], + [ + -73.435815, + 45.590941 + ], + [ + -73.436184, + 45.591213 + ], + [ + -73.43623, + 45.591247 + ], + [ + -73.436355, + 45.59135 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.438325, + 45.592826 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.440073, + 45.594117 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.442154, + 45.595672 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442992, + 45.59628 + ], + [ + -73.443394, + 45.596559 + ], + [ + -73.443528, + 45.596515 + ], + [ + -73.443621, + 45.596455 + ], + [ + -73.443786, + 45.596349 + ], + [ + -73.444437, + 45.59593 + ], + [ + -73.444718, + 45.595759 + ], + [ + -73.444826, + 45.595693 + ], + [ + -73.444968, + 45.595606 + ], + [ + -73.445426, + 45.595953 + ], + [ + -73.44617, + 45.596549 + ], + [ + -73.446321, + 45.596669 + ], + [ + -73.44661, + 45.596885 + ], + [ + -73.446897, + 45.597101 + ], + [ + -73.446918, + 45.597118 + ], + [ + -73.447238, + 45.597376 + ], + [ + -73.44744, + 45.597535 + ], + [ + -73.447569, + 45.597637 + ], + [ + -73.447718, + 45.597745 + ], + [ + -73.447878, + 45.597857 + ], + [ + -73.448177, + 45.5981 + ], + [ + -73.448549, + 45.598398 + ], + [ + -73.448171, + 45.59861 + ], + [ + -73.44776, + 45.59884 + ], + [ + -73.447731, + 45.598856 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.448104, + 45.599965 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449825, + 45.601331 + ], + [ + -73.449842, + 45.601358 + ], + [ + -73.449882, + 45.601394 + ], + [ + -73.449937, + 45.601432 + ], + [ + -73.449974, + 45.601468 + ], + [ + -73.450006, + 45.601497 + ], + [ + -73.450033, + 45.601528 + ], + [ + -73.450045, + 45.601571 + ], + [ + -73.450052, + 45.601604 + ], + [ + -73.450056, + 45.601623 + ], + [ + -73.450064, + 45.601673 + ], + [ + -73.450084, + 45.601711 + ], + [ + -73.450103, + 45.601741 + ], + [ + -73.450135, + 45.601765 + ], + [ + -73.450172, + 45.601786 + ], + [ + -73.450215, + 45.601801 + ], + [ + -73.450269, + 45.601815 + ], + [ + -73.450318, + 45.601822 + ], + [ + -73.450366, + 45.601839 + ], + [ + -73.450452, + 45.601873 + ], + [ + -73.45054, + 45.60193 + ], + [ + -73.450604, + 45.601966 + ], + [ + -73.450658, + 45.602007 + ], + [ + -73.450717, + 45.602019 + ], + [ + -73.450804, + 45.602087 + ], + [ + -73.450997, + 45.602236 + ], + [ + -73.451134, + 45.602344 + ], + [ + -73.45153, + 45.602655 + ], + [ + -73.45156, + 45.602679 + ], + [ + -73.452634, + 45.603524 + ], + [ + -73.452751, + 45.603609 + ], + [ + -73.453107, + 45.603884 + ], + [ + -73.453124, + 45.603897 + ], + [ + -73.453269, + 45.60401 + ], + [ + -73.453604, + 45.604271 + ], + [ + -73.453904, + 45.604474 + ], + [ + -73.454133, + 45.604694 + ], + [ + -73.454539, + 45.605032 + ], + [ + -73.454918, + 45.605315 + ], + [ + -73.455171, + 45.605504 + ], + [ + -73.455782, + 45.605973 + ], + [ + -73.456001, + 45.606135 + ], + [ + -73.456106, + 45.606225 + ], + [ + -73.45638, + 45.606432 + ], + [ + -73.456449, + 45.606465 + ], + [ + -73.456464, + 45.606472 + ], + [ + -73.456606, + 45.606499 + ], + [ + -73.456615, + 45.606661 + ], + [ + -73.456615, + 45.606676 + ], + [ + -73.456615, + 45.606796 + ], + [ + -73.45661, + 45.607368 + ], + [ + -73.456599, + 45.607836 + ], + [ + -73.456595, + 45.60819 + ], + [ + -73.456594, + 45.608335 + ], + [ + -73.456582, + 45.60905 + ], + [ + -73.456558, + 45.609802 + ], + [ + -73.456542, + 45.610013 + ], + [ + -73.456534, + 45.610121 + ], + [ + -73.456537, + 45.610463 + ], + [ + -73.456508, + 45.610998 + ], + [ + -73.4565, + 45.611138 + ], + [ + -73.456491, + 45.611268 + ], + [ + -73.456473, + 45.611516 + ], + [ + -73.456454, + 45.611728 + ], + [ + -73.456449, + 45.611777 + ], + [ + -73.456429, + 45.612204 + ], + [ + -73.456403, + 45.612587 + ], + [ + -73.456367, + 45.613122 + ], + [ + -73.456346, + 45.613356 + ], + [ + -73.45632, + 45.613649 + ], + [ + -73.456315, + 45.613702 + ], + [ + -73.456295, + 45.613828 + ], + [ + -73.456125, + 45.615281 + ], + [ + -73.45606, + 45.615718 + ], + [ + -73.456015, + 45.616024 + ], + [ + -73.455984, + 45.616307 + ], + [ + -73.45596, + 45.616501 + ], + [ + -73.455915, + 45.616856 + ], + [ + -73.455899, + 45.616987 + ], + [ + -73.455888, + 45.617081 + ], + [ + -73.455738, + 45.617067 + ], + [ + -73.455553, + 45.616995 + ], + [ + -73.455432, + 45.616899 + ], + [ + -73.453917, + 45.6157 + ], + [ + -73.453825, + 45.615627 + ], + [ + -73.453136, + 45.6151 + ], + [ + -73.452836, + 45.614871 + ], + [ + -73.452146, + 45.614414 + ], + [ + -73.452143, + 45.614412 + ], + [ + -73.452074, + 45.614389 + ], + [ + -73.451751, + 45.614407 + ], + [ + -73.451305, + 45.614429 + ], + [ + -73.451226, + 45.614429 + ], + [ + -73.451179, + 45.61443 + ], + [ + -73.450957, + 45.614433 + ], + [ + -73.450376, + 45.614442 + ], + [ + -73.450026, + 45.614462 + ], + [ + -73.449835, + 45.614474 + ], + [ + -73.448937, + 45.614572 + ], + [ + -73.44832, + 45.614671 + ], + [ + -73.44797, + 45.614738 + ], + [ + -73.447875, + 45.614756 + ], + [ + -73.447035, + 45.614913 + ], + [ + -73.446927, + 45.614918 + ], + [ + -73.446821, + 45.614913 + ], + [ + -73.446421, + 45.61489 + ], + [ + -73.445975, + 45.614868 + ], + [ + -73.445104, + 45.614818 + ], + [ + -73.444693, + 45.614764 + ], + [ + -73.444257, + 45.614678 + ], + [ + -73.443992, + 45.614601 + ], + [ + -73.443768, + 45.614525 + ], + [ + -73.443665, + 45.614493 + ], + [ + -73.443533, + 45.614435 + ], + [ + -73.443388, + 45.614349 + ], + [ + -73.443279, + 45.614286 + ], + [ + -73.442818, + 45.614018 + ], + [ + -73.441365, + 45.613174 + ], + [ + -73.441077, + 45.613016 + ], + [ + -73.441359, + 45.612773 + ], + [ + -73.44142, + 45.612719 + ], + [ + -73.441495, + 45.612638 + ], + [ + -73.441677, + 45.612274 + ], + [ + -73.441845, + 45.61195 + ], + [ + -73.441971, + 45.611698 + ], + [ + -73.442036, + 45.611568 + ], + [ + -73.442171, + 45.611329 + ], + [ + -73.442245, + 45.611186 + ], + [ + -73.443088, + 45.609922 + ], + [ + -73.443222, + 45.609809 + ], + [ + -73.44345, + 45.609665 + ], + [ + -73.443478, + 45.609647 + ], + [ + -73.443613, + 45.609585 + ], + [ + -73.444617, + 45.608933 + ], + [ + -73.444789, + 45.608816 + ], + [ + -73.444866, + 45.608753 + ], + [ + -73.444945, + 45.608658 + ], + [ + -73.444969, + 45.608595 + ], + [ + -73.444996, + 45.608528 + ], + [ + -73.445018, + 45.608433 + ], + [ + -73.445012, + 45.608361 + ], + [ + -73.445012, + 45.608289 + ], + [ + -73.444909, + 45.608073 + ], + [ + -73.444858, + 45.607983 + ], + [ + -73.444795, + 45.607857 + ], + [ + -73.444752, + 45.607772 + ], + [ + -73.444734, + 45.607713 + ], + [ + -73.444722, + 45.60765 + ], + [ + -73.444737, + 45.607529 + ], + [ + -73.444853, + 45.607286 + ], + [ + -73.44494, + 45.607147 + ], + [ + -73.445103, + 45.60689 + ], + [ + -73.445487, + 45.606265 + ], + [ + -73.445611, + 45.606055 + ], + [ + -73.445654, + 45.605982 + ], + [ + -73.44604, + 45.605357 + ], + [ + -73.446102, + 45.605271 + ], + [ + -73.446172, + 45.605191 + ], + [ + -73.446188, + 45.605172 + ], + [ + -73.44629, + 45.605064 + ], + [ + -73.446313, + 45.605044 + ], + [ + -73.446403, + 45.604961 + ], + [ + -73.44657, + 45.604835 + ], + [ + -73.446822, + 45.604687 + ], + [ + -73.447061, + 45.60457 + ], + [ + -73.447631, + 45.604291 + ], + [ + -73.447829, + 45.604197 + ], + [ + -73.447989, + 45.604152 + ], + [ + -73.448133, + 45.604125 + ], + [ + -73.448192, + 45.604119 + ], + [ + -73.448969, + 45.604041 + ], + [ + -73.450151, + 45.603923 + ], + [ + -73.450386, + 45.603941 + ], + [ + -73.450565, + 45.603973 + ], + [ + -73.450661, + 45.603995 + ], + [ + -73.450754, + 45.604036 + ], + [ + -73.450866, + 45.604103 + ], + [ + -73.451006, + 45.604212 + ], + [ + -73.451057, + 45.604252 + ], + [ + -73.451264, + 45.604401 + ], + [ + -73.451345, + 45.604468 + ], + [ + -73.452043, + 45.604042 + ], + [ + -73.452751, + 45.603609 + ], + [ + -73.452634, + 45.603524 + ], + [ + -73.452189, + 45.603174 + ], + [ + -73.45156, + 45.602679 + ], + [ + -73.45153, + 45.602655 + ], + [ + -73.451134, + 45.602344 + ], + [ + -73.450997, + 45.602236 + ], + [ + -73.450804, + 45.602087 + ], + [ + -73.450717, + 45.602019 + ], + [ + -73.450711, + 45.601962 + ], + [ + -73.450652, + 45.601878 + ], + [ + -73.450633, + 45.601851 + ], + [ + -73.45062, + 45.601823 + ], + [ + -73.450613, + 45.6018 + ], + [ + -73.450612, + 45.601775 + ], + [ + -73.450612, + 45.601745 + ], + [ + -73.450617, + 45.601719 + ], + [ + -73.450626, + 45.601694 + ], + [ + -73.450634, + 45.601674 + ], + [ + -73.450638, + 45.601617 + ], + [ + -73.450641, + 45.601578 + ], + [ + -73.450634, + 45.601544 + ], + [ + -73.450604, + 45.601499 + ], + [ + -73.450587, + 45.601474 + ], + [ + -73.450566, + 45.601457 + ], + [ + -73.45055, + 45.601447 + ], + [ + -73.450531, + 45.601438 + ], + [ + -73.45049, + 45.601429 + ], + [ + -73.450455, + 45.601424 + ], + [ + -73.450415, + 45.60142 + ], + [ + -73.450377, + 45.601418 + ], + [ + -73.450324, + 45.601415 + ], + [ + -73.450303, + 45.601414 + ], + [ + -73.450247, + 45.601412 + ], + [ + -73.450159, + 45.601408 + ], + [ + -73.450117, + 45.6014 + ], + [ + -73.450076, + 45.601382 + ], + [ + -73.450018, + 45.601356 + ], + [ + -73.449945, + 45.60132 + ], + [ + -73.449881, + 45.6013 + ], + [ + -73.449815, + 45.601292 + ], + [ + -73.449726, + 45.601225 + ], + [ + -73.448974, + 45.600659 + ], + [ + -73.448638, + 45.600391 + ], + [ + -73.448221, + 45.600058 + ], + [ + -73.447886, + 45.599792 + ], + [ + -73.447803, + 45.599727 + ], + [ + -73.447743, + 45.599679 + ], + [ + -73.447691, + 45.59963 + ], + [ + -73.447606, + 45.599549 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447539, + 45.59897 + ], + [ + -73.447609, + 45.598929 + ], + [ + -73.447731, + 45.598856 + ], + [ + -73.448171, + 45.59861 + ], + [ + -73.448549, + 45.598398 + ], + [ + -73.448177, + 45.5981 + ], + [ + -73.447878, + 45.597857 + ], + [ + -73.447718, + 45.597745 + ], + [ + -73.447713, + 45.597741 + ], + [ + -73.447569, + 45.597637 + ], + [ + -73.447238, + 45.597376 + ], + [ + -73.446918, + 45.597118 + ], + [ + -73.446897, + 45.597101 + ], + [ + -73.44661, + 45.596885 + ], + [ + -73.446321, + 45.596669 + ], + [ + -73.446173, + 45.59655 + ], + [ + -73.445426, + 45.595953 + ], + [ + -73.445121, + 45.595722 + ], + [ + -73.444968, + 45.595606 + ], + [ + -73.444718, + 45.595759 + ], + [ + -73.444437, + 45.59593 + ], + [ + -73.443618, + 45.596457 + ], + [ + -73.443528, + 45.596515 + ], + [ + -73.443394, + 45.596559 + ], + [ + -73.443106, + 45.596359 + ], + [ + -73.442992, + 45.59628 + ], + [ + -73.442839, + 45.596174 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.439893, + 45.59398 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.43823, + 45.592756 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.436355, + 45.59135 + ], + [ + -73.43623, + 45.591445 + ], + [ + -73.436139, + 45.591515 + ], + [ + -73.435937, + 45.591669 + ], + [ + -73.435856, + 45.591737 + ], + [ + -73.435771, + 45.591809 + ], + [ + -73.435656, + 45.59193 + ], + [ + -73.435482, + 45.592133 + ], + [ + -73.435328, + 45.592303 + ], + [ + -73.435201, + 45.592416 + ], + [ + -73.435194, + 45.59242 + ], + [ + -73.434937, + 45.592614 + ], + [ + -73.434583, + 45.592879 + ], + [ + -73.434575, + 45.592883 + ], + [ + -73.434342, + 45.593054 + ], + [ + -73.434176, + 45.59318 + ], + [ + -73.433984, + 45.593306 + ], + [ + -73.433723, + 45.593472 + ], + [ + -73.433623, + 45.593526 + ], + [ + -73.433582, + 45.593589 + ], + [ + -73.433514, + 45.593624 + ], + [ + -73.433267, + 45.593751 + ], + [ + -73.432532, + 45.593125 + ], + [ + -73.432411, + 45.593022 + ], + [ + -73.431736, + 45.592481 + ], + [ + -73.431426, + 45.592216 + ], + [ + -73.430999, + 45.591887 + ], + [ + -73.43086, + 45.591799 + ], + [ + -73.430742, + 45.591724 + ], + [ + -73.430249, + 45.591315 + ], + [ + -73.430052, + 45.591144 + ], + [ + -73.430035, + 45.591102 + ], + [ + -73.429965, + 45.590937 + ], + [ + -73.429799, + 45.590246 + ], + [ + -73.429621, + 45.589502 + ], + [ + -73.429601, + 45.589438 + ], + [ + -73.429567, + 45.589376 + ], + [ + -73.429522, + 45.589319 + ], + [ + -73.429464, + 45.589267 + ], + [ + -73.429127, + 45.589004 + ], + [ + -73.429126, + 45.589003 + ], + [ + -73.429011, + 45.588919 + ], + [ + -73.429137, + 45.588834 + ], + [ + -73.429356, + 45.588696 + ], + [ + -73.429681, + 45.58849 + ], + [ + -73.430455, + 45.587999 + ], + [ + -73.43085, + 45.58775 + ], + [ + -73.431265, + 45.587488 + ], + [ + -73.431644, + 45.587248 + ], + [ + -73.431818, + 45.587179 + ], + [ + -73.431883, + 45.587238 + ], + [ + -73.432034, + 45.587385 + ], + [ + -73.432226, + 45.587579 + ], + [ + -73.433253, + 45.588702 + ], + [ + -73.433536, + 45.589008 + ] + ] + }, + "id": 241, + "properties": { + "id": "f4c401fa-54fe-43f1-97f7-48682412b062", + "data": { + "gtfs": { + "shape_id": "284_1_A" + }, + "segments": [ + { + "distanceMeters": 279, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 311, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 382, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 592, + "travelTimeSeconds": 98 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 429, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 596, + "travelTimeSeconds": 109 + }, + { + "distanceMeters": 470, + "travelTimeSeconds": 94 + }, + { + "distanceMeters": 307, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 664, + "travelTimeSeconds": 104 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 82, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 335, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 311, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 60 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 228, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12337, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 322.1657642203999, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.41, + "travelTimeWithoutDwellTimesSeconds": 2280, + "operatingTimeWithLayoverTimeSeconds": 2508, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2280, + "operatingSpeedWithLayoverMetersPerSecond": 4.92, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.41 + }, + "mode": "bus", + "name": "Promenades Montarville", + "color": "#A32638", + "nodes": [ + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "ed16ff8f-f2f4-4914-b93b-f48229e580b7", + "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", + "de3d06d6-88af-49e3-b183-9464b2f111c8", + "3613b472-6055-4b55-9c89-01a451d82804", + "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", + "ebf7fd24-b756-481f-9a88-33b6362fcbda", + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "4fcc129f-8015-4b36-a21f-2437aa91a265", + "49262d07-72b2-466f-bf49-88656466e4a4", + "cbb95297-898f-493c-b22a-5755d4356a5c", + "e25e89c1-c193-4379-979a-303ee641d87e", + "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", + "ca205394-9833-4e14-b4fa-653c28b9a37d", + "dd170d68-d567-4a2d-8a93-47dec3a52cd1", + "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", + "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", + "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", + "204b558a-c106-4589-888d-4bd6528787b5", + "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", + "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", + "4bdfb37a-ee1d-4a02-9192-c3692c2485ed", + "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", + "b4102d0e-df60-40ed-b546-4997ce08cc57", + "d69b600d-72ec-426a-9838-289c3d328f0c", + "f9a06f2c-0cbe-4c5b-b4ae-045860bd63ac", + "a3ecc5af-4217-4c29-8096-6f8e97684bf2", + "7bb8c836-af43-4b8c-bf40-7cf79ce04ef2", + "15a24cda-ef8f-47ad-bb52-21eaf857234b", + "be43b4d2-5b5a-47b0-86d2-d58ce9d9b1eb", + "96c08dfd-d2e7-4584-a6b3-36c3a2e1abcc", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "e25e89c1-c193-4379-979a-303ee641d87e", + "cbb95297-898f-493c-b22a-5755d4356a5c", + "49262d07-72b2-466f-bf49-88656466e4a4", + "0872c388-8faf-4852-b4ce-cf3f6312e0ef", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "ed16ff8f-f2f4-4914-b93b-f48229e580b7", + "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", + "de3d06d6-88af-49e3-b183-9464b2f111c8", + "3613b472-6055-4b55-9c89-01a451d82804", + "c7d5859e-ffe2-4a64-aa6d-7040b6eed867" + ], + "stops": [], + "line_id": "f8dfd8f4-6f1d-4a0e-aa01-b4c15c48fac7", + "segments": [ + 0, + 16, + 23, + 36, + 43, + 50, + 59, + 65, + 71, + 78, + 82, + 89, + 92, + 101, + 115, + 152, + 159, + 165, + 173, + 177, + 184, + 190, + 199, + 204, + 214, + 221, + 237, + 251, + 274, + 290, + 298, + 302, + 348, + 355, + 362, + 371, + 375, + 380, + 386, + 393, + 401, + 417, + 424, + 437, + 444 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 241, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519711, + 45.523377 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519706, + 45.52323 + ], + [ + -73.519869, + 45.522907 + ], + [ + -73.520158, + 45.522337 + ], + [ + -73.520306, + 45.521899 + ], + [ + -73.520306, + 45.521896 + ], + [ + -73.520354, + 45.521696 + ], + [ + -73.520401, + 45.521498 + ], + [ + -73.520405, + 45.521373 + ], + [ + -73.520409, + 45.52119 + ], + [ + -73.520398, + 45.521025 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519102, + 45.520696 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514476, + 45.519088 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509952, + 45.515502 + ], + [ + -73.509485, + 45.515357 + ], + [ + -73.509376, + 45.515323 + ], + [ + -73.508692, + 45.515143 + ], + [ + -73.508296, + 45.51503 + ], + [ + -73.507817, + 45.514868 + ], + [ + -73.507704, + 45.514841 + ], + [ + -73.507464, + 45.514765 + ], + [ + -73.506712, + 45.514501 + ], + [ + -73.506516, + 45.514432 + ], + [ + -73.505464, + 45.514054 + ], + [ + -73.505166, + 45.51396 + ], + [ + -73.504787, + 45.51384 + ], + [ + -73.504451, + 45.513734 + ], + [ + -73.50434, + 45.513699 + ], + [ + -73.504259, + 45.513672 + ], + [ + -73.503369, + 45.513397 + ], + [ + -73.502433, + 45.51315 + ], + [ + -73.502048, + 45.513078 + ], + [ + -73.501411, + 45.512898 + ], + [ + -73.50108, + 45.512799 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494739, + 45.510664 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.49431, + 45.510458 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488355, + 45.503066 + ], + [ + -73.4883, + 45.502913 + ], + [ + -73.488219, + 45.502531 + ], + [ + -73.488223, + 45.502417 + ], + [ + -73.488223, + 45.502405 + ], + [ + -73.488245, + 45.502293 + ], + [ + -73.488296, + 45.502185 + ], + [ + -73.488375, + 45.502086 + ], + [ + -73.488484, + 45.502 + ], + [ + -73.488609, + 45.501937 + ], + [ + -73.48874, + 45.501892 + ], + [ + -73.48888, + 45.501865 + ], + [ + -73.489028, + 45.501856 + ], + [ + -73.489181, + 45.501865 + ], + [ + -73.489324, + 45.501892 + ], + [ + -73.489461, + 45.501933 + ], + [ + -73.489585, + 45.501991 + ], + [ + -73.489692, + 45.502068 + ], + [ + -73.489786, + 45.502153 + ], + [ + -73.489942, + 45.502342 + ], + [ + -73.490006, + 45.50245 + ], + [ + -73.490054, + 45.502558 + ], + [ + -73.490086, + 45.502666 + ], + [ + -73.490092, + 45.502779 + ], + [ + -73.490064, + 45.502891 + ], + [ + -73.490004, + 45.502995 + ], + [ + -73.489917, + 45.503094 + ], + [ + -73.489808, + 45.503175 + ], + [ + -73.489675, + 45.503242 + ], + [ + -73.489524, + 45.503287 + ], + [ + -73.489359, + 45.50331 + ], + [ + -73.489186, + 45.503323 + ], + [ + -73.488817, + 45.503318 + ], + [ + -73.487515, + 45.503242 + ], + [ + -73.486872, + 45.503273 + ], + [ + -73.486502, + 45.503323 + ], + [ + -73.486146, + 45.503381 + ], + [ + -73.484224, + 45.503808 + ], + [ + -73.483407, + 45.503957 + ], + [ + -73.482922, + 45.504029 + ], + [ + -73.482166, + 45.504114 + ], + [ + -73.481092, + 45.504204 + ], + [ + -73.4802, + 45.504262 + ], + [ + -73.47719, + 45.50446 + ], + [ + -73.464792, + 45.505284 + ], + [ + -73.464234, + 45.505325 + ], + [ + -73.463301, + 45.505392 + ], + [ + -73.462846, + 45.505432 + ], + [ + -73.461784, + 45.505526 + ], + [ + -73.460686, + 45.505647 + ], + [ + -73.45799, + 45.505984 + ], + [ + -73.456776, + 45.506127 + ], + [ + -73.455209, + 45.506284 + ], + [ + -73.454382, + 45.506356 + ], + [ + -73.450186, + 45.506642 + ], + [ + -73.439577, + 45.507343 + ], + [ + -73.439057, + 45.507379 + ], + [ + -73.438071, + 45.507414 + ], + [ + -73.437444, + 45.507428 + ], + [ + -73.436265, + 45.507427 + ], + [ + -73.435664, + 45.507418 + ], + [ + -73.43478, + 45.507413 + ], + [ + -73.433757, + 45.507439 + ], + [ + -73.432476, + 45.507501 + ], + [ + -73.430857, + 45.507609 + ], + [ + -73.430222, + 45.507651 + ], + [ + -73.43012, + 45.507658 + ], + [ + -73.43011, + 45.507658 + ], + [ + -73.429926, + 45.50767 + ], + [ + -73.429316, + 45.507711 + ], + [ + -73.429246, + 45.50772 + ], + [ + -73.427401, + 45.507872 + ], + [ + -73.425651, + 45.508046 + ], + [ + -73.425331, + 45.508082 + ], + [ + -73.423669, + 45.508256 + ], + [ + -73.421559, + 45.508471 + ], + [ + -73.418703, + 45.508644 + ], + [ + -73.414755, + 45.508904 + ], + [ + -73.40603, + 45.509467 + ], + [ + -73.399904, + 45.509875 + ], + [ + -73.3937, + 45.510275 + ], + [ + -73.39233, + 45.510359 + ], + [ + -73.390441, + 45.510452 + ], + [ + -73.389445, + 45.510505 + ], + [ + -73.387299, + 45.510633 + ], + [ + -73.381768, + 45.510924 + ], + [ + -73.37903, + 45.511061 + ], + [ + -73.378353, + 45.511087 + ], + [ + -73.377677, + 45.511105 + ], + [ + -73.376999, + 45.511104 + ], + [ + -73.375985, + 45.511071 + ], + [ + -73.375316, + 45.51103 + ], + [ + -73.373596, + 45.510947 + ], + [ + -73.372769, + 45.510937 + ], + [ + -73.371909, + 45.510936 + ], + [ + -73.371148, + 45.510962 + ], + [ + -73.37043, + 45.511007 + ], + [ + -73.36933, + 45.511113 + ], + [ + -73.368592, + 45.511203 + ], + [ + -73.367673, + 45.511332 + ], + [ + -73.366892, + 45.511466 + ], + [ + -73.363466, + 45.512074 + ], + [ + -73.362782, + 45.512186 + ], + [ + -73.36245, + 45.512235 + ], + [ + -73.362045, + 45.512288 + ], + [ + -73.361529, + 45.512355 + ], + [ + -73.360893, + 45.512422 + ], + [ + -73.358459, + 45.512576 + ], + [ + -73.356757, + 45.512682 + ], + [ + -73.347571, + 45.513278 + ], + [ + -73.343703, + 45.513529 + ], + [ + -73.34367, + 45.513061 + ], + [ + -73.343642, + 45.512791 + ], + [ + -73.343612, + 45.512647 + ], + [ + -73.343567, + 45.512534 + ], + [ + -73.343354, + 45.512062 + ], + [ + -73.343353, + 45.511994 + ], + [ + -73.343317, + 45.511931 + ], + [ + -73.343289, + 45.5119 + ], + [ + -73.343273, + 45.511881 + ], + [ + -73.343208, + 45.51185 + ], + [ + -73.343153, + 45.511841 + ], + [ + -73.343055, + 45.511863 + ], + [ + -73.343022, + 45.511899 + ], + [ + -73.343008, + 45.511931 + ], + [ + -73.343011, + 45.511985 + ], + [ + -73.343038, + 45.512034 + ], + [ + -73.343097, + 45.5121 + ], + [ + -73.343396, + 45.51257 + ], + [ + -73.343437, + 45.512674 + ], + [ + -73.343463, + 45.512804 + ], + [ + -73.343492, + 45.513074 + ], + [ + -73.343522, + 45.513542 + ], + [ + -73.343521, + 45.513731 + ], + [ + -73.343567, + 45.514081 + ], + [ + -73.343597, + 45.514311 + ], + [ + -73.343612, + 45.514452 + ], + [ + -73.343662, + 45.514928 + ], + [ + -73.343818, + 45.516263 + ], + [ + -73.343839, + 45.51644 + ], + [ + -73.343868, + 45.517007 + ], + [ + -73.343871, + 45.517031 + ], + [ + -73.34388, + 45.517106 + ], + [ + -73.343907, + 45.517382 + ], + [ + -73.34397, + 45.51801 + ], + [ + -73.344015, + 45.518464 + ], + [ + -73.344019, + 45.518505 + ], + [ + -73.344103, + 45.519059 + ], + [ + -73.344134, + 45.519324 + ], + [ + -73.34415, + 45.519419 + ], + [ + -73.344161, + 45.519518 + ], + [ + -73.344217, + 45.520058 + ], + [ + -73.344223, + 45.520328 + ], + [ + -73.344186, + 45.520584 + ], + [ + -73.344126, + 45.520715 + ], + [ + -73.344046, + 45.520881 + ], + [ + -73.343898, + 45.52107 + ], + [ + -73.343794, + 45.521169 + ], + [ + -73.343671, + 45.521281 + ], + [ + -73.343545, + 45.521362 + ], + [ + -73.343232, + 45.521573 + ], + [ + -73.34316, + 45.521627 + ], + [ + -73.343157, + 45.521628 + ], + [ + -73.342373, + 45.522165 + ], + [ + -73.341528, + 45.522727 + ], + [ + -73.341523, + 45.52273 + ], + [ + -73.340541, + 45.523401 + ], + [ + -73.340352, + 45.52353 + ], + [ + -73.340272, + 45.523584 + ], + [ + -73.340102, + 45.523754 + ], + [ + -73.340043, + 45.523791 + ], + [ + -73.339575, + 45.524088 + ], + [ + -73.338727, + 45.524626 + ], + [ + -73.338443, + 45.524793 + ], + [ + -73.338368, + 45.524837 + ], + [ + -73.338799, + 45.525132 + ], + [ + -73.339197, + 45.525405 + ], + [ + -73.339713, + 45.525764 + ], + [ + -73.339905, + 45.525898 + ], + [ + -73.340005, + 45.525968 + ], + [ + -73.340568, + 45.526316 + ], + [ + -73.340738, + 45.526442 + ], + [ + -73.341034, + 45.526636 + ], + [ + -73.341462, + 45.526915 + ], + [ + -73.34183, + 45.527172 + ], + [ + -73.341994, + 45.527303 + ], + [ + -73.342014, + 45.527325 + ], + [ + -73.342074, + 45.527389 + ], + [ + -73.342252, + 45.527555 + ], + [ + -73.342521, + 45.52779 + ], + [ + -73.342827, + 45.528033 + ], + [ + -73.343198, + 45.528321 + ], + [ + -73.343543, + 45.528556 + ], + [ + -73.343655, + 45.528635 + ], + [ + -73.343849, + 45.528772 + ], + [ + -73.344605, + 45.529334 + ], + [ + -73.345248, + 45.529811 + ], + [ + -73.345287, + 45.529841 + ], + [ + -73.345369, + 45.529899 + ], + [ + -73.346954, + 45.531044 + ], + [ + -73.347303, + 45.531304 + ], + [ + -73.348743, + 45.532377 + ], + [ + -73.348768, + 45.532396 + ], + [ + -73.350008, + 45.533298 + ], + [ + -73.350778, + 45.533879 + ], + [ + -73.35079, + 45.533887 + ], + [ + -73.350966, + 45.53401 + ], + [ + -73.351196, + 45.534181 + ], + [ + -73.351414, + 45.534325 + ], + [ + -73.351631, + 45.534461 + ], + [ + -73.351899, + 45.534632 + ], + [ + -73.352156, + 45.534794 + ], + [ + -73.352431, + 45.534966 + ], + [ + -73.352575, + 45.535061 + ], + [ + -73.352683, + 45.535132 + ], + [ + -73.352814, + 45.535218 + ], + [ + -73.353353, + 45.535601 + ], + [ + -73.353944, + 45.536031 + ], + [ + -73.354085, + 45.536133 + ], + [ + -73.354237, + 45.536255 + ], + [ + -73.35439, + 45.536363 + ], + [ + -73.354672, + 45.536579 + ], + [ + -73.354978, + 45.536786 + ], + [ + -73.355606, + 45.537228 + ], + [ + -73.35581, + 45.537381 + ], + [ + -73.356028, + 45.537517 + ], + [ + -73.356194, + 45.537616 + ], + [ + -73.356386, + 45.537688 + ], + [ + -73.356488, + 45.537706 + ], + [ + -73.35659, + 45.537733 + ], + [ + -73.356808, + 45.537752 + ], + [ + -73.356949, + 45.537752 + ], + [ + -73.357026, + 45.537752 + ], + [ + -73.35709, + 45.537752 + ], + [ + -73.357226, + 45.540389 + ], + [ + -73.357239, + 45.540776 + ], + [ + -73.357244, + 45.540879 + ], + [ + -73.357285, + 45.541541 + ], + [ + -73.357285, + 45.541622 + ], + [ + -73.3573, + 45.542006 + ], + [ + -73.357309, + 45.542233 + ], + [ + -73.357309, + 45.542332 + ], + [ + -73.357308, + 45.54244 + ], + [ + -73.357308, + 45.542557 + ], + [ + -73.357308, + 45.542647 + ], + [ + -73.357295, + 45.542728 + ], + [ + -73.357282, + 45.542827 + ], + [ + -73.357256, + 45.542917 + ], + [ + -73.357233, + 45.542994 + ], + [ + -73.357218, + 45.54307 + ], + [ + -73.357183, + 45.543183 + ], + [ + -73.357138, + 45.543286 + ], + [ + -73.357103, + 45.54338 + ], + [ + -73.357063, + 45.543466 + ], + [ + -73.357007, + 45.543556 + ], + [ + -73.356967, + 45.543641 + ], + [ + -73.356895, + 45.543736 + ], + [ + -73.356831, + 45.543826 + ], + [ + -73.356741, + 45.543942 + ], + [ + -73.356571, + 45.544149 + ], + [ + -73.356039, + 45.544697 + ], + [ + -73.355855, + 45.544895 + ], + [ + -73.35574, + 45.545012 + ], + [ + -73.355312, + 45.545458 + ], + [ + -73.355239, + 45.545533 + ], + [ + -73.354173, + 45.546648 + ], + [ + -73.354019, + 45.546809 + ], + [ + -73.352966, + 45.547879 + ], + [ + -73.352773, + 45.548077 + ], + [ + -73.352717, + 45.548144 + ], + [ + -73.352174, + 45.548787 + ], + [ + -73.351753, + 45.549331 + ], + [ + -73.351077, + 45.550338 + ], + [ + -73.34999, + 45.552082 + ], + [ + -73.349543, + 45.552787 + ], + [ + -73.349406, + 45.552734 + ], + [ + -73.345617, + 45.549986 + ], + [ + -73.344947, + 45.549443 + ], + [ + -73.344181, + 45.548974 + ], + [ + -73.343577, + 45.54858 + ], + [ + -73.343542, + 45.54843 + ], + [ + -73.343583, + 45.548284 + ], + [ + -73.343895, + 45.547841 + ], + [ + -73.344201, + 45.547438 + ], + [ + -73.344313, + 45.547242 + ], + [ + -73.344334, + 45.547081 + ], + [ + -73.344304, + 45.546963 + ], + [ + -73.344289, + 45.546838 + ], + [ + -73.344055, + 45.546624 + ], + [ + -73.343685, + 45.546513 + ], + [ + -73.342943, + 45.546411 + ], + [ + -73.342801, + 45.546343 + ], + [ + -73.34272, + 45.546261 + ], + [ + -73.342761, + 45.546101 + ], + [ + -73.342964, + 45.546044 + ], + [ + -73.34303, + 45.545767 + ], + [ + -73.343093, + 45.545501 + ], + [ + -73.342915, + 45.545479 + ], + [ + -73.34287, + 45.545662 + ], + [ + -73.34279, + 45.545982 + ], + [ + -73.342766, + 45.54608 + ], + [ + -73.342761, + 45.546101 + ], + [ + -73.34272, + 45.546261 + ], + [ + -73.342801, + 45.546343 + ], + [ + -73.342943, + 45.546411 + ], + [ + -73.343685, + 45.546513 + ], + [ + -73.344055, + 45.546624 + ], + [ + -73.344289, + 45.546838 + ], + [ + -73.344304, + 45.546963 + ], + [ + -73.344334, + 45.547081 + ], + [ + -73.344313, + 45.547242 + ], + [ + -73.344201, + 45.547438 + ], + [ + -73.343895, + 45.547841 + ], + [ + -73.343583, + 45.548284 + ], + [ + -73.343542, + 45.54843 + ], + [ + -73.343577, + 45.54858 + ], + [ + -73.344181, + 45.548974 + ], + [ + -73.344947, + 45.549443 + ], + [ + -73.345617, + 45.549986 + ], + [ + -73.349406, + 45.552734 + ], + [ + -73.349543, + 45.552787 + ], + [ + -73.349542, + 45.552788 + ], + [ + -73.348228, + 45.55486 + ], + [ + -73.34728, + 45.556361 + ], + [ + -73.346583, + 45.557463 + ], + [ + -73.34632, + 45.557858 + ], + [ + -73.346031, + 45.558227 + ], + [ + -73.345597, + 45.558667 + ], + [ + -73.344626, + 45.559377 + ], + [ + -73.343366, + 45.56023 + ], + [ + -73.342106, + 45.561092 + ], + [ + -73.340712, + 45.56203 + ], + [ + -73.339917, + 45.56257 + ], + [ + -73.339381, + 45.562188 + ], + [ + -73.3392, + 45.562103 + ], + [ + -73.338822, + 45.561945 + ], + [ + -73.338819, + 45.561945 + ], + [ + -73.337079, + 45.5607 + ], + [ + -73.336928, + 45.560595 + ] + ] + }, + "id": 242, + "properties": { + "id": "07ed83a7-7078-4dfe-9f23-bcc4bff46ef6", + "data": { + "gtfs": { + "shape_id": "299_1_R" + }, + "segments": [ + { + "distanceMeters": 2001, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 901, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 6034, + "travelTimeSeconds": 420 + }, + { + "distanceMeters": 7265, + "travelTimeSeconds": 540 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 375, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 317, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 479, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 426, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 2114, + "travelTimeSeconds": 250 + }, + { + "distanceMeters": 11, + "travelTimeSeconds": 2 + }, + { + "distanceMeters": 2698, + "travelTimeSeconds": 598 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 270, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 25326, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 14916.493937491066, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.38, + "travelTimeWithoutDwellTimesSeconds": 2700, + "operatingTimeWithLayoverTimeSeconds": 2970, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2700, + "operatingSpeedWithLayoverMetersPerSecond": 8.53, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.38 + }, + "mode": "bus", + "name": "Ski St-Bruno", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", + "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", + "4aea3348-4995-4fc9-b06f-6698460c1f1d", + "4d3db5af-874a-4a4c-8a87-68ecc590af13", + "f20c1a67-6c7e-41a3-a85d-9c7b49ac0386", + "652ad35d-f3c9-49c6-b2de-8d15cab5cafb", + "7ac3961a-0b0e-47c8-a264-69b6edbbd2b9", + "9f67f31c-9015-4b9c-b5eb-210a53be617b", + "60ea8a19-f195-4f9b-b60e-122a63bd86bd", + "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", + "2c952684-5d97-4238-ae18-51cba6c9775e", + "819e2afa-bfef-47b3-8a41-a55f4c2f9156", + "0dae6aad-c792-48fd-a50b-e498ec730741", + "16815d0a-9758-4c90-a572-66e1110e9895", + "a34242f1-b39e-4075-8b98-da7cc20aa985", + "c144cdde-b47b-40cf-b640-e6399771f99b", + "a5fa3371-93c4-47f9-8972-32a538fcab1f", + "d4b97f89-0d15-4037-9293-a46292a3b826", + "ab32c22a-056a-40bc-bb99-58c049d50498", + "cecd1a42-805e-4b1f-971e-5486564ef354", + "d966dcb1-f630-4c07-ab42-a7b1e296ff4f", + "b46cca05-fe3c-4c2a-ae1b-28c207027915", + "b1e10293-5bab-4099-bc2f-f533b141b0c5", + "b1e10293-5bab-4099-bc2f-f533b141b0c5", + "0016b55f-c207-48df-a47e-555a19e3c2d7" + ], + "stops": [], + "line_id": "7d071167-2026-48a5-a120-12a40ba5b3e6", + "segments": [ + 0, + 65, + 89, + 177, + 245, + 250, + 254, + 259, + 271, + 274, + 275, + 282, + 287, + 295, + 305, + 309, + 310, + 314, + 322, + 326, + 341, + 348, + 372, + 408, + 409 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 242, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.336928, + 45.560595 + ], + [ + -73.336753, + 45.560473 + ], + [ + -73.3366, + 45.560565 + ], + [ + -73.3366, + 45.560619 + ], + [ + -73.3366, + 45.560678 + ], + [ + -73.336786, + 45.560795 + ], + [ + -73.336956, + 45.56078 + ], + [ + -73.337079, + 45.5607 + ], + [ + -73.338819, + 45.561945 + ], + [ + -73.339227, + 45.562235 + ], + [ + -73.339806, + 45.562645 + ], + [ + -73.339917, + 45.56257 + ], + [ + -73.33992, + 45.562567 + ], + [ + -73.340712, + 45.56203 + ], + [ + -73.342106, + 45.561092 + ], + [ + -73.343366, + 45.56023 + ], + [ + -73.344626, + 45.559377 + ], + [ + -73.345597, + 45.558667 + ], + [ + -73.346031, + 45.558227 + ], + [ + -73.34632, + 45.557858 + ], + [ + -73.346583, + 45.557463 + ], + [ + -73.34728, + 45.556361 + ], + [ + -73.348228, + 45.55486 + ], + [ + -73.349542, + 45.552788 + ], + [ + -73.349543, + 45.552787 + ], + [ + -73.349406, + 45.552734 + ], + [ + -73.345617, + 45.549986 + ], + [ + -73.344947, + 45.549443 + ], + [ + -73.344181, + 45.548974 + ], + [ + -73.343577, + 45.54858 + ], + [ + -73.343542, + 45.54843 + ], + [ + -73.343583, + 45.548284 + ], + [ + -73.343895, + 45.547841 + ], + [ + -73.344201, + 45.547438 + ], + [ + -73.344313, + 45.547242 + ], + [ + -73.344334, + 45.547081 + ], + [ + -73.344304, + 45.546963 + ], + [ + -73.344289, + 45.546838 + ], + [ + -73.344055, + 45.546624 + ], + [ + -73.343685, + 45.546513 + ], + [ + -73.342943, + 45.546411 + ], + [ + -73.342801, + 45.546343 + ], + [ + -73.34272, + 45.546261 + ], + [ + -73.342761, + 45.546101 + ], + [ + -73.342964, + 45.546044 + ], + [ + -73.343048, + 45.545691 + ], + [ + -73.343093, + 45.545501 + ], + [ + -73.342915, + 45.545479 + ], + [ + -73.342883, + 45.545609 + ], + [ + -73.342802, + 45.545935 + ], + [ + -73.342778, + 45.546033 + ], + [ + -73.342761, + 45.546101 + ], + [ + -73.34272, + 45.546261 + ], + [ + -73.342801, + 45.546343 + ], + [ + -73.342943, + 45.546411 + ], + [ + -73.343685, + 45.546513 + ], + [ + -73.344055, + 45.546624 + ], + [ + -73.344289, + 45.546838 + ], + [ + -73.344304, + 45.546963 + ], + [ + -73.344334, + 45.547081 + ], + [ + -73.344313, + 45.547242 + ], + [ + -73.344201, + 45.547438 + ], + [ + -73.343895, + 45.547841 + ], + [ + -73.343583, + 45.548284 + ], + [ + -73.343542, + 45.54843 + ], + [ + -73.343577, + 45.54858 + ], + [ + -73.344181, + 45.548974 + ], + [ + -73.344947, + 45.549443 + ], + [ + -73.345617, + 45.549986 + ], + [ + -73.349406, + 45.552734 + ], + [ + -73.349543, + 45.552787 + ], + [ + -73.34999, + 45.552082 + ], + [ + -73.351077, + 45.550338 + ], + [ + -73.351753, + 45.549331 + ], + [ + -73.352174, + 45.548787 + ], + [ + -73.352717, + 45.548144 + ], + [ + -73.352773, + 45.548077 + ], + [ + -73.352966, + 45.547879 + ], + [ + -73.354019, + 45.546809 + ], + [ + -73.354173, + 45.546648 + ], + [ + -73.355239, + 45.545533 + ], + [ + -73.35574, + 45.545012 + ], + [ + -73.355855, + 45.544895 + ], + [ + -73.355917, + 45.544828 + ], + [ + -73.356039, + 45.544697 + ], + [ + -73.356571, + 45.544149 + ], + [ + -73.356741, + 45.543942 + ], + [ + -73.356831, + 45.543826 + ], + [ + -73.356895, + 45.543736 + ], + [ + -73.356967, + 45.543641 + ], + [ + -73.357007, + 45.543556 + ], + [ + -73.357063, + 45.543466 + ], + [ + -73.357103, + 45.54338 + ], + [ + -73.357138, + 45.543286 + ], + [ + -73.357183, + 45.543183 + ], + [ + -73.357218, + 45.54307 + ], + [ + -73.357233, + 45.542994 + ], + [ + -73.357256, + 45.542917 + ], + [ + -73.357282, + 45.542827 + ], + [ + -73.357295, + 45.542728 + ], + [ + -73.357308, + 45.542647 + ], + [ + -73.357308, + 45.542557 + ], + [ + -73.357308, + 45.54244 + ], + [ + -73.357309, + 45.542387 + ], + [ + -73.357309, + 45.542332 + ], + [ + -73.357309, + 45.542233 + ], + [ + -73.357285, + 45.541622 + ], + [ + -73.357285, + 45.541541 + ], + [ + -73.357244, + 45.540879 + ], + [ + -73.357239, + 45.540776 + ], + [ + -73.357226, + 45.540389 + ], + [ + -73.3571, + 45.537946 + ], + [ + -73.35709, + 45.537752 + ], + [ + -73.356949, + 45.537752 + ], + [ + -73.356808, + 45.537752 + ], + [ + -73.35659, + 45.537733 + ], + [ + -73.356488, + 45.537706 + ], + [ + -73.356386, + 45.537688 + ], + [ + -73.356194, + 45.537616 + ], + [ + -73.356028, + 45.537517 + ], + [ + -73.35581, + 45.537381 + ], + [ + -73.355606, + 45.537228 + ], + [ + -73.354978, + 45.536786 + ], + [ + -73.354672, + 45.536579 + ], + [ + -73.35439, + 45.536363 + ], + [ + -73.354361, + 45.536342 + ], + [ + -73.354237, + 45.536255 + ], + [ + -73.354085, + 45.536133 + ], + [ + -73.353353, + 45.535601 + ], + [ + -73.352939, + 45.535307 + ], + [ + -73.352814, + 45.535218 + ], + [ + -73.352683, + 45.535132 + ], + [ + -73.352431, + 45.534966 + ], + [ + -73.352156, + 45.534794 + ], + [ + -73.351899, + 45.534632 + ], + [ + -73.351631, + 45.534461 + ], + [ + -73.351414, + 45.534325 + ], + [ + -73.351196, + 45.534181 + ], + [ + -73.350966, + 45.53401 + ], + [ + -73.350923, + 45.533979 + ], + [ + -73.350778, + 45.533879 + ], + [ + -73.350008, + 45.533298 + ], + [ + -73.348934, + 45.532517 + ], + [ + -73.348768, + 45.532396 + ], + [ + -73.347317, + 45.531314 + ], + [ + -73.346954, + 45.531044 + ], + [ + -73.345627, + 45.530086 + ], + [ + -73.345369, + 45.529899 + ], + [ + -73.345287, + 45.529841 + ], + [ + -73.344605, + 45.529334 + ], + [ + -73.343849, + 45.528772 + ], + [ + -73.343655, + 45.528635 + ], + [ + -73.343543, + 45.528556 + ], + [ + -73.343198, + 45.528321 + ], + [ + -73.342827, + 45.528033 + ], + [ + -73.342521, + 45.52779 + ], + [ + -73.342252, + 45.527555 + ], + [ + -73.342229, + 45.527533 + ], + [ + -73.342074, + 45.527389 + ], + [ + -73.341994, + 45.527303 + ], + [ + -73.34183, + 45.527172 + ], + [ + -73.341462, + 45.526915 + ], + [ + -73.341034, + 45.526636 + ], + [ + -73.340738, + 45.526442 + ], + [ + -73.340568, + 45.526316 + ], + [ + -73.340443, + 45.526239 + ], + [ + -73.340005, + 45.525968 + ], + [ + -73.339713, + 45.525764 + ], + [ + -73.339197, + 45.525405 + ], + [ + -73.338597, + 45.524994 + ], + [ + -73.338368, + 45.524837 + ], + [ + -73.33868, + 45.524654 + ], + [ + -73.338727, + 45.524626 + ], + [ + -73.339575, + 45.524088 + ], + [ + -73.340043, + 45.523791 + ], + [ + -73.340102, + 45.523754 + ], + [ + -73.340177, + 45.523724 + ], + [ + -73.340357, + 45.523652 + ], + [ + -73.340425, + 45.523602 + ], + [ + -73.341435, + 45.522911 + ], + [ + -73.341612, + 45.52279 + ], + [ + -73.342452, + 45.522224 + ], + [ + -73.343053, + 45.521823 + ], + [ + -73.343254, + 45.52169 + ], + [ + -73.343631, + 45.521425 + ], + [ + -73.343894, + 45.521227 + ], + [ + -73.344046, + 45.521061 + ], + [ + -73.344147, + 45.520913 + ], + [ + -73.344274, + 45.520719 + ], + [ + -73.344347, + 45.520476 + ], + [ + -73.344358, + 45.520296 + ], + [ + -73.344344, + 45.52004 + ], + [ + -73.34432, + 45.519822 + ], + [ + -73.344273, + 45.519406 + ], + [ + -73.344239, + 45.519032 + ], + [ + -73.344184, + 45.518506 + ], + [ + -73.344137, + 45.518006 + ], + [ + -73.344045, + 45.516998 + ], + [ + -73.34401, + 45.516651 + ], + [ + -73.343805, + 45.514586 + ], + [ + -73.343784, + 45.514412 + ], + [ + -73.343763, + 45.514238 + ], + [ + -73.343701, + 45.513718 + ], + [ + -73.343799, + 45.513709 + ], + [ + -73.344787, + 45.513645 + ], + [ + -73.357647, + 45.512814 + ], + [ + -73.358491, + 45.512756 + ], + [ + -73.359423, + 45.512694 + ], + [ + -73.359555, + 45.512681 + ], + [ + -73.36081, + 45.512584 + ], + [ + -73.361813, + 45.512472 + ], + [ + -73.362822, + 45.512334 + ], + [ + -73.363276, + 45.512258 + ], + [ + -73.363561, + 45.512213 + ], + [ + -73.365307, + 45.511892 + ], + [ + -73.367381, + 45.511525 + ], + [ + -73.368785, + 45.511324 + ], + [ + -73.369875, + 45.511208 + ], + [ + -73.370223, + 45.511177 + ], + [ + -73.370922, + 45.511129 + ], + [ + -73.371015, + 45.511125 + ], + [ + -73.371649, + 45.511098 + ], + [ + -73.372619, + 45.511081 + ], + [ + -73.37324, + 45.511086 + ], + [ + -73.374187, + 45.511119 + ], + [ + -73.376015, + 45.51122 + ], + [ + -73.376407, + 45.511234 + ], + [ + -73.377357, + 45.511248 + ], + [ + -73.378321, + 45.51124 + ], + [ + -73.378967, + 45.511214 + ], + [ + -73.379618, + 45.511183 + ], + [ + -73.382611, + 45.511015 + ], + [ + -73.384597, + 45.510914 + ], + [ + -73.392277, + 45.510503 + ], + [ + -73.393587, + 45.510437 + ], + [ + -73.396575, + 45.510246 + ], + [ + -73.416479, + 45.508939 + ], + [ + -73.422517, + 45.50853 + ], + [ + -73.424264, + 45.508396 + ], + [ + -73.424552, + 45.508369 + ], + [ + -73.425839, + 45.508343 + ], + [ + -73.427203, + 45.508276 + ], + [ + -73.430462, + 45.508094 + ], + [ + -73.430945, + 45.50806 + ], + [ + -73.431367, + 45.508031 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431709, + 45.508009 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.432209, + 45.507974 + ], + [ + -73.435178, + 45.507773 + ], + [ + -73.437575, + 45.507662 + ], + [ + -73.438988, + 45.507572 + ], + [ + -73.440344, + 45.507425 + ], + [ + -73.445881, + 45.507063 + ], + [ + -73.452257, + 45.506638 + ], + [ + -73.452565, + 45.506616 + ], + [ + -73.453776, + 45.50654 + ], + [ + -73.455247, + 45.506419 + ], + [ + -73.456957, + 45.50624 + ], + [ + -73.460279, + 45.505832 + ], + [ + -73.460374, + 45.505823 + ], + [ + -73.461182, + 45.505728 + ], + [ + -73.463671, + 45.505509 + ], + [ + -73.465111, + 45.505401 + ], + [ + -73.467755, + 45.505222 + ], + [ + -73.468692, + 45.505168 + ], + [ + -73.470746, + 45.505025 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492473, + 45.509785 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492941, + 45.51012 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.503986, + 45.514143 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505129, + 45.514486 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519889, + 45.523386 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.52024, + 45.52439 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 243, + "properties": { + "id": "2a83b312-3711-43cd-83a8-5454c8ee4f4f", + "data": { + "gtfs": { + "shape_id": "299_1_A" + }, + "segments": [ + { + "distanceMeters": 2927, + "travelTimeSeconds": 600 + }, + { + "distanceMeters": 11, + "travelTimeSeconds": 1 + }, + { + "distanceMeters": 2057, + "travelTimeSeconds": 251 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 495, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 389, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 92 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 6949, + "travelTimeSeconds": 540 + }, + { + "distanceMeters": 5275, + "travelTimeSeconds": 420 + }, + { + "distanceMeters": 1072, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 1961, + "travelTimeSeconds": 360 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 294, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 24481, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 14916.493937491066, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.33, + "travelTimeWithoutDwellTimesSeconds": 2940, + "operatingTimeWithLayoverTimeSeconds": 3234, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2940, + "operatingSpeedWithLayoverMetersPerSecond": 7.57, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.33 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "0016b55f-c207-48df-a47e-555a19e3c2d7", + "b1e10293-5bab-4099-bc2f-f533b141b0c5", + "b1e10293-5bab-4099-bc2f-f533b141b0c5", + "cda3afce-794c-43b8-9347-1b384d64a116", + "ce2fb937-41be-4394-bf3f-6bb0d8d6413a", + "cecd1a42-805e-4b1f-971e-5486564ef354", + "ab32c22a-056a-40bc-bb99-58c049d50498", + "d4b97f89-0d15-4037-9293-a46292a3b826", + "a5fa3371-93c4-47f9-8972-32a538fcab1f", + "c144cdde-b47b-40cf-b640-e6399771f99b", + "a34242f1-b39e-4075-8b98-da7cc20aa985", + "16815d0a-9758-4c90-a572-66e1110e9895", + "0dae6aad-c792-48fd-a50b-e498ec730741", + "4451201f-23d0-4b66-a2ac-a72029810b3b", + "2c952684-5d97-4238-ae18-51cba6c9775e", + "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", + "60ea8a19-f195-4f9b-b60e-122a63bd86bd", + "9f67f31c-9015-4b9c-b5eb-210a53be617b", + "106469e3-38d2-4015-b627-c243c3d7f8cd", + "0910a11d-1b83-4a5b-9c01-30b9a6d926ef", + "4c4fb532-1ed3-4dc8-ab02-b2a6e87e7b90", + "2c8a6d09-2eb8-47e3-86bb-ac6501351f3b", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "7d071167-2026-48a5-a120-12a40ba5b3e6", + "segments": [ + 0, + 49, + 50, + 83, + 103, + 111, + 125, + 129, + 139, + 142, + 144, + 146, + 157, + 165, + 169, + 176, + 179, + 182, + 192, + 198, + 200, + 244, + 301, + 322 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 243, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519446, + 45.523424 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519332, + 45.526816 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517858, + 45.526792 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517465, + 45.528168 + ], + [ + -73.517458, + 45.528249 + ], + [ + -73.517471, + 45.528385 + ], + [ + -73.517504, + 45.528565 + ], + [ + -73.517516, + 45.528652 + ], + [ + -73.517553, + 45.52877 + ], + [ + -73.517635, + 45.529002 + ], + [ + -73.517693, + 45.529249 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.51956, + 45.531975 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501341, + 45.549928 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.499756, + 45.550039 + ], + [ + -73.499583, + 45.550043 + ], + [ + -73.499254, + 45.550048 + ], + [ + -73.49904, + 45.550039 + ], + [ + -73.498716, + 45.549998 + ], + [ + -73.49829, + 45.549868 + ], + [ + -73.497924, + 45.54971 + ], + [ + -73.497576, + 45.54953 + ], + [ + -73.497225, + 45.549332 + ], + [ + -73.497041, + 45.549211 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491296, + 45.54289 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.460868, + 45.531797 + ], + [ + -73.460137, + 45.531468 + ], + [ + -73.459095, + 45.531013 + ], + [ + -73.457591, + 45.530387 + ], + [ + -73.456631, + 45.529983 + ], + [ + -73.45522, + 45.529388 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.453608, + 45.528719 + ], + [ + -73.45247, + 45.528245 + ], + [ + -73.452419, + 45.528224 + ], + [ + -73.452095, + 45.528089 + ], + [ + -73.451849, + 45.527987 + ], + [ + -73.449586, + 45.5271 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.449239, + 45.527747 + ], + [ + -73.4491, + 45.528013 + ], + [ + -73.448776, + 45.528634 + ], + [ + -73.448476, + 45.529249 + ], + [ + -73.448445, + 45.529313 + ], + [ + -73.448085, + 45.530001 + ], + [ + -73.448024, + 45.530118 + ], + [ + -73.447862, + 45.53032 + ], + [ + -73.44764, + 45.530474 + ] + ] + }, + "id": 244, + "properties": { + "id": "d988941f-e79e-4196-a3c9-3a1dea0e71ec", + "data": { + "gtfs": { + "shape_id": "410_1_R" + }, + "segments": [ + { + "distanceMeters": 8769, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 102 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 43 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9434, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 588.7327924596806, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 39.31, + "travelTimeWithoutDwellTimesSeconds": 240, + "operatingTimeWithLayoverTimeSeconds": 420, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 240, + "operatingSpeedWithLayoverMetersPerSecond": 22.46, + "averageSpeedWithoutDwellTimesMetersPerSecond": 39.31 + }, + "mode": "bus", + "name": "Sect. B Vieux-Longueuil", + "color": "#A32638", + "nodes": [ + "6e83e147-802a-4695-95f3-96585bd15c4a", + "51878141-1194-4666-977c-0597ee638ffb", + "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "da0ea2a1-8305-4096-84b5-3da6997f0293", + "69483ac1-331d-4f0e-93b5-d8134f380763" + ], + "stops": [], + "line_id": "81f60ceb-ee5b-49b7-95c0-fc9668d02cbd", + "segments": [ + 0, + 238, + 245, + 247 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 244, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.44764, + 45.530474 + ], + [ + -73.447543, + 45.530541 + ], + [ + -73.448141, + 45.53172 + ], + [ + -73.448349, + 45.532116 + ], + [ + -73.448438, + 45.5323 + ], + [ + -73.448478, + 45.532371 + ], + [ + -73.448512, + 45.532432 + ], + [ + -73.448557, + 45.532512 + ], + [ + -73.44871, + 45.532719 + ], + [ + -73.448896, + 45.532926 + ], + [ + -73.449063, + 45.533088 + ], + [ + -73.44929, + 45.533254 + ], + [ + -73.449502, + 45.533408 + ], + [ + -73.449736, + 45.533561 + ], + [ + -73.449982, + 45.533682 + ], + [ + -73.450155, + 45.533757 + ], + [ + -73.450209, + 45.533781 + ], + [ + -73.450391, + 45.533867 + ], + [ + -73.450743, + 45.534002 + ], + [ + -73.450985, + 45.534056 + ], + [ + -73.451317, + 45.534124 + ], + [ + -73.45172, + 45.534205 + ], + [ + -73.451896, + 45.534218 + ], + [ + -73.45205, + 45.534214 + ], + [ + -73.452169, + 45.534206 + ], + [ + -73.452182, + 45.534205 + ], + [ + -73.452341, + 45.534169 + ], + [ + -73.452481, + 45.534133 + ], + [ + -73.452644, + 45.534061 + ], + [ + -73.45275, + 45.533989 + ], + [ + -73.453619, + 45.533409 + ], + [ + -73.453895, + 45.533306 + ], + [ + -73.454221, + 45.533257 + ], + [ + -73.454729, + 45.533284 + ], + [ + -73.454807, + 45.533288 + ], + [ + -73.45503, + 45.53332 + ], + [ + -73.455242, + 45.53336 + ], + [ + -73.455391, + 45.533387 + ], + [ + -73.455523, + 45.533433 + ], + [ + -73.455674, + 45.5335 + ], + [ + -73.455774, + 45.533559 + ], + [ + -73.455836, + 45.533604 + ], + [ + -73.455934, + 45.53369 + ], + [ + -73.455959, + 45.533712 + ], + [ + -73.456036, + 45.533788 + ], + [ + -73.456095, + 45.533878 + ], + [ + -73.456189, + 45.534099 + ], + [ + -73.456214, + 45.534256 + ], + [ + -73.456189, + 45.534414 + ], + [ + -73.456134, + 45.534589 + ], + [ + -73.456071, + 45.534695 + ], + [ + -73.456046, + 45.534737 + ], + [ + -73.455923, + 45.53489 + ], + [ + -73.455755, + 45.535043 + ], + [ + -73.45561, + 45.535133 + ], + [ + -73.455504, + 45.535196 + ], + [ + -73.455381, + 45.535259 + ], + [ + -73.455279, + 45.535296 + ], + [ + -73.455196, + 45.535327 + ], + [ + -73.454943, + 45.535416 + ], + [ + -73.454703, + 45.535484 + ], + [ + -73.45458, + 45.535533 + ], + [ + -73.454434, + 45.535583 + ], + [ + -73.454232, + 45.535664 + ], + [ + -73.454095, + 45.53574 + ], + [ + -73.453985, + 45.535794 + ], + [ + -73.453834, + 45.535911 + ], + [ + -73.453678, + 45.536032 + ], + [ + -73.453562, + 45.536158 + ], + [ + -73.45347, + 45.536284 + ], + [ + -73.453395, + 45.536388 + ], + [ + -73.453302, + 45.53664 + ], + [ + -73.453087, + 45.537457 + ], + [ + -73.453056, + 45.537575 + ], + [ + -73.45293, + 45.537571 + ], + [ + -73.452702, + 45.537575 + ], + [ + -73.452033, + 45.537615 + ], + [ + -73.45161, + 45.537656 + ], + [ + -73.451409, + 45.537665 + ], + [ + -73.451204, + 45.537642 + ], + [ + -73.451019, + 45.537606 + ], + [ + -73.450864, + 45.537552 + ], + [ + -73.450788, + 45.537518 + ], + [ + -73.450674, + 45.537466 + ], + [ + -73.449848, + 45.536971 + ], + [ + -73.449118, + 45.536538 + ], + [ + -73.449006, + 45.536471 + ], + [ + -73.448626, + 45.536264 + ], + [ + -73.448357, + 45.536192 + ], + [ + -73.447442, + 45.535976 + ], + [ + -73.447213, + 45.535913 + ], + [ + -73.447099, + 45.535867 + ], + [ + -73.446936, + 45.5358 + ], + [ + -73.446746, + 45.535696 + ], + [ + -73.446503, + 45.53552 + ], + [ + -73.446498, + 45.535516 + ], + [ + -73.446412, + 45.535444 + ], + [ + -73.446305, + 45.535359 + ], + [ + -73.446216, + 45.535273 + ], + [ + -73.445977, + 45.535035 + ], + [ + -73.44579, + 45.534868 + ], + [ + -73.445666, + 45.534784 + ], + [ + -73.445571, + 45.534719 + ], + [ + -73.445347, + 45.534582 + ], + [ + -73.445234, + 45.534512 + ], + [ + -73.445013, + 45.5344 + ], + [ + -73.444564, + 45.534238 + ], + [ + -73.444063, + 45.534075 + ], + [ + -73.444212, + 45.533801 + ], + [ + -73.444232, + 45.533764 + ], + [ + -73.444441, + 45.533378 + ], + [ + -73.44472, + 45.532816 + ], + [ + -73.445133, + 45.532069 + ], + [ + -73.445159, + 45.532011 + ], + [ + -73.445217, + 45.531876 + ], + [ + -73.445225, + 45.531848 + ], + [ + -73.445262, + 45.531714 + ], + [ + -73.445416, + 45.531246 + ], + [ + -73.445655, + 45.53081 + ], + [ + -73.445839, + 45.530633 + ], + [ + -73.44588, + 45.530594 + ], + [ + -73.445934, + 45.530553 + ], + [ + -73.445986, + 45.530495 + ], + [ + -73.446078, + 45.530436 + ], + [ + -73.446188, + 45.530392 + ], + [ + -73.446303, + 45.53036 + ], + [ + -73.446426, + 45.53032 + ], + [ + -73.446558, + 45.530297 + ], + [ + -73.446722, + 45.530284 + ], + [ + -73.446778, + 45.530284 + ], + [ + -73.446897, + 45.530293 + ], + [ + -73.44702, + 45.530311 + ], + [ + -73.44713, + 45.530342 + ], + [ + -73.447236, + 45.530379 + ], + [ + -73.447385, + 45.530442 + ], + [ + -73.44747, + 45.530495 + ], + [ + -73.447543, + 45.530541 + ], + [ + -73.447862, + 45.53032 + ], + [ + -73.448024, + 45.530118 + ], + [ + -73.448085, + 45.530001 + ], + [ + -73.448297, + 45.529596 + ], + [ + -73.448362, + 45.529472 + ], + [ + -73.448445, + 45.529313 + ], + [ + -73.448776, + 45.528634 + ], + [ + -73.449239, + 45.527747 + ], + [ + -73.449413, + 45.527436 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.45067, + 45.527735 + ], + [ + -73.450838, + 45.527798 + ], + [ + -73.451123, + 45.527906 + ], + [ + -73.451519, + 45.528063 + ], + [ + -73.452162, + 45.528357 + ], + [ + -73.452276, + 45.528409 + ], + [ + -73.452337, + 45.528437 + ], + [ + -73.45321, + 45.528797 + ], + [ + -73.454095, + 45.529149 + ], + [ + -73.454898, + 45.529493 + ], + [ + -73.454978, + 45.529527 + ], + [ + -73.45507, + 45.529563 + ], + [ + -73.457292, + 45.530467 + ], + [ + -73.457482, + 45.530545 + ], + [ + -73.458332, + 45.530905 + ], + [ + -73.460581, + 45.531882 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.462028, + 45.532627 + ], + [ + -73.462751, + 45.533003 + ], + [ + -73.463873, + 45.533665 + ], + [ + -73.464875, + 45.534543 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.46881, + 45.537048 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469941, + 45.537318 + ], + [ + -73.470305, + 45.537406 + ], + [ + -73.470749, + 45.537487 + ], + [ + -73.471335, + 45.537563 + ], + [ + -73.471845, + 45.53759 + ], + [ + -73.472146, + 45.537591 + ], + [ + -73.472355, + 45.537591 + ], + [ + -73.473126, + 45.537555 + ], + [ + -73.473826, + 45.537492 + ], + [ + -73.474517, + 45.537429 + ], + [ + -73.474599, + 45.537423 + ], + [ + -73.475173, + 45.53738 + ], + [ + -73.47563, + 45.537344 + ], + [ + -73.476192, + 45.537353 + ], + [ + -73.476662, + 45.537394 + ], + [ + -73.477026, + 45.537434 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.477884, + 45.5376 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491035, + 45.541427 + ], + [ + -73.491084, + 45.541584 + ], + [ + -73.491099, + 45.541724 + ], + [ + -73.491104, + 45.54182 + ], + [ + -73.491106, + 45.541854 + ], + [ + -73.491092, + 45.542156 + ], + [ + -73.491081, + 45.542381 + ], + [ + -73.49104, + 45.543146 + ], + [ + -73.490998, + 45.543726 + ], + [ + -73.491037, + 45.544117 + ], + [ + -73.491071, + 45.544252 + ], + [ + -73.491113, + 45.544396 + ], + [ + -73.491272, + 45.544698 + ], + [ + -73.491367, + 45.544855 + ], + [ + -73.491449, + 45.544981 + ], + [ + -73.491608, + 45.545148 + ], + [ + -73.491886, + 45.545409 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.492798, + 45.546135 + ], + [ + -73.492868, + 45.546192 + ], + [ + -73.492976, + 45.546278 + ], + [ + -73.493835, + 45.546966 + ], + [ + -73.494604, + 45.547573 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.495745, + 45.548495 + ], + [ + -73.495811, + 45.548549 + ], + [ + -73.49673, + 45.549278 + ], + [ + -73.497087, + 45.549548 + ], + [ + -73.49736, + 45.549719 + ], + [ + -73.497501, + 45.549805 + ], + [ + -73.497722, + 45.549908 + ], + [ + -73.497944, + 45.549998 + ], + [ + -73.498136, + 45.55007 + ], + [ + -73.498405, + 45.550151 + ], + [ + -73.498716, + 45.550237 + ], + [ + -73.499009, + 45.550295 + ], + [ + -73.499514, + 45.550349 + ], + [ + -73.499763, + 45.550363 + ], + [ + -73.501515, + 45.550448 + ], + [ + -73.502446, + 45.550493 + ], + [ + -73.502797, + 45.550502 + ], + [ + -73.502913, + 45.550498 + ], + [ + -73.503017, + 45.550484 + ], + [ + -73.503194, + 45.550453 + ], + [ + -73.503355, + 45.550399 + ], + [ + -73.503504, + 45.550327 + ], + [ + -73.503636, + 45.550237 + ], + [ + -73.503751, + 45.550133 + ], + [ + -73.503955, + 45.549904 + ], + [ + -73.504046, + 45.549787 + ], + [ + -73.504119, + 45.549647 + ], + [ + -73.50416, + 45.549508 + ], + [ + -73.504212, + 45.548909 + ], + [ + -73.504289, + 45.548585 + ], + [ + -73.504342, + 45.548423 + ], + [ + -73.504477, + 45.548095 + ], + [ + -73.504558, + 45.547933 + ], + [ + -73.504654, + 45.547771 + ], + [ + -73.504887, + 45.547461 + ], + [ + -73.505281, + 45.546997 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522568, + 45.530233 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.51794, + 45.525389 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 245, + "properties": { + "id": "09afc387-5943-43aa-a7b4-b6220e25ea90", + "data": { + "gtfs": { + "shape_id": "410_1_A" + }, + "segments": [ + { + "distanceMeters": 227, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 736, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 721, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 1183, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 524, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 5139, + "travelTimeSeconds": 600 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13078, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5791.343632894528, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.78, + "travelTimeWithoutDwellTimesSeconds": 1680, + "operatingTimeWithLayoverTimeSeconds": 1860, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1680, + "operatingSpeedWithLayoverMetersPerSecond": 7.03, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.78 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "69483ac1-331d-4f0e-93b5-d8134f380763", + "66f007ae-d813-40cb-ab41-e87b10da3a72", + "6685b5fc-0f35-439d-9c20-c96b665d5201", + "c896d257-2942-4aba-aded-59e49480d892", + "62590a84-0f1e-43e0-8046-574d7d23d2e9", + "48a4676d-1da3-4489-8f80-1edfb1b61b1b", + "83c203fe-4b10-42fd-aafb-d9bc99f756b0", + "e5c2d9f4-1be6-458f-854f-8103a3048b8c", + "231dda72-d4b5-48ae-b714-5ce9d3802c45", + "25a5f82a-36a7-4a52-af2b-32a681f87765", + "8b3a553d-dad5-41ff-b228-80f338c4b0e0", + "210e532b-2acc-4a3e-b173-3471add098b1", + "51637772-6b85-4c49-a14a-4de104a8f1f5", + "23ef9461-bbd0-492e-8678-c51238629a13", + "69483ac1-331d-4f0e-93b5-d8134f380763", + "da0ea2a1-8305-4096-84b5-3da6997f0293", + "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "51878141-1194-4666-977c-0597ee638ffb", + "0a078431-12d6-4e73-9908-076c3a27e8ed", + "211cb268-dcfa-4d7b-810c-681bfa65d4c8", + "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "06d26eca-08e9-467e-9ff0-9595778162a0", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "038a22ba-4928-42fc-aaed-50fbd831df37", + "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", + "64648218-6b63-436c-9a46-4770987ba432", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "81f60ceb-ee5b-49b7-95c0-fc9668d02cbd", + "segments": [ + 0, + 5, + 15, + 24, + 33, + 50, + 66, + 72, + 82, + 85, + 94, + 109, + 115, + 119, + 135, + 141, + 145, + 151, + 156, + 159, + 165, + 178, + 199, + 231, + 246, + 252 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 245, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519446, + 45.523424 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519332, + 45.526816 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517858, + 45.526792 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517465, + 45.528168 + ], + [ + -73.517458, + 45.528249 + ], + [ + -73.517471, + 45.528385 + ], + [ + -73.517504, + 45.528565 + ], + [ + -73.517516, + 45.528652 + ], + [ + -73.517553, + 45.52877 + ], + [ + -73.517635, + 45.529002 + ], + [ + -73.517693, + 45.529249 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.51956, + 45.531975 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501341, + 45.549928 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.499756, + 45.550039 + ], + [ + -73.499583, + 45.550043 + ], + [ + -73.499254, + 45.550048 + ], + [ + -73.49904, + 45.550039 + ], + [ + -73.498716, + 45.549998 + ], + [ + -73.49829, + 45.549868 + ], + [ + -73.497924, + 45.54971 + ], + [ + -73.497576, + 45.54953 + ], + [ + -73.497225, + 45.549332 + ], + [ + -73.497041, + 45.549211 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494911, + 45.547557 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.492, + 45.545211 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491296, + 45.54289 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.49062, + 45.540708 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476976, + 45.537234 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.469383, + 45.536996 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461215, + 45.531967 + ], + [ + -73.460868, + 45.531797 + ], + [ + -73.460137, + 45.531468 + ], + [ + -73.459095, + 45.531013 + ], + [ + -73.457811, + 45.530479 + ], + [ + -73.457591, + 45.530387 + ], + [ + -73.456631, + 45.529983 + ], + [ + -73.45522, + 45.529388 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.454675, + 45.529163 + ], + [ + -73.453608, + 45.528719 + ], + [ + -73.45247, + 45.528245 + ], + [ + -73.452419, + 45.528224 + ], + [ + -73.452095, + 45.528089 + ], + [ + -73.451849, + 45.527987 + ], + [ + -73.449586, + 45.5271 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.449239, + 45.527747 + ], + [ + -73.4491, + 45.528013 + ], + [ + -73.448776, + 45.528634 + ], + [ + -73.448476, + 45.529249 + ], + [ + -73.448445, + 45.529313 + ], + [ + -73.448085, + 45.530001 + ], + [ + -73.448024, + 45.530118 + ], + [ + -73.447862, + 45.53032 + ], + [ + -73.44764, + 45.530474 + ] + ] + }, + "id": 246, + "properties": { + "id": "4ddd7e92-0567-4b0c-9b47-1b473dfa7c40", + "data": { + "gtfs": { + "shape_id": "410_1_R" + }, + "segments": [ + { + "distanceMeters": 4485, + "travelTimeSeconds": 480 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 1146, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 600, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 865, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 102 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 43 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9434, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5791.343632894528, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.15, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 6.29, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.15 + }, + "mode": "bus", + "name": "Sect. B Vieux-Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "8a3f1208-7ffb-452e-8ebb-c436acba82d6", + "2d7687a5-f458-4ce1-a3df-9639d89c0154", + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "81b3573e-d948-478d-a011-db20e21b0c62", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "53aec761-3dae-44a6-bc58-9d5003bfa1bb", + "6e83e147-802a-4695-95f3-96585bd15c4a", + "51878141-1194-4666-977c-0597ee638ffb", + "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "da0ea2a1-8305-4096-84b5-3da6997f0293", + "69483ac1-331d-4f0e-93b5-d8134f380763" + ], + "stops": [], + "line_id": "81f60ceb-ee5b-49b7-95c0-fc9668d02cbd", + "segments": [ + 0, + 129, + 135, + 159, + 189, + 210, + 235, + 239, + 244, + 246, + 253, + 255 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 246, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523209, + 45.523528 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523531, + 45.52794 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.502818, + 45.54899 + ], + [ + -73.502212, + 45.54962 + ], + [ + -73.501984, + 45.549836 + ], + [ + -73.50186, + 45.549926 + ], + [ + -73.501728, + 45.550007 + ], + [ + -73.501592, + 45.550079 + ], + [ + -73.501452, + 45.550133 + ], + [ + -73.501309, + 45.550183 + ], + [ + -73.50116, + 45.550219 + ], + [ + -73.501011, + 45.55025 + ], + [ + -73.500921, + 45.550259 + ], + [ + -73.500705, + 45.550282 + ], + [ + -73.500547, + 45.550286 + ], + [ + -73.49991, + 45.550295 + ], + [ + -73.499238, + 45.550226 + ], + [ + -73.498778, + 45.550153 + ], + [ + -73.498464, + 45.550065 + ], + [ + -73.498138, + 45.54995 + ], + [ + -73.497746, + 45.549767 + ], + [ + -73.497494, + 45.54961 + ], + [ + -73.497234, + 45.549428 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494909, + 45.547555 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.491999, + 45.54521 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491296, + 45.54289 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.490619, + 45.540707 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476974, + 45.537234 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.469382, + 45.536996 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461215, + 45.531967 + ], + [ + -73.460868, + 45.531797 + ], + [ + -73.460137, + 45.531468 + ], + [ + -73.459095, + 45.531013 + ], + [ + -73.45781, + 45.530479 + ], + [ + -73.457591, + 45.530387 + ], + [ + -73.456631, + 45.529983 + ], + [ + -73.45522, + 45.529388 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.454675, + 45.529163 + ], + [ + -73.453608, + 45.528719 + ], + [ + -73.45247, + 45.528245 + ], + [ + -73.452419, + 45.528224 + ], + [ + -73.452095, + 45.528089 + ], + [ + -73.451849, + 45.527987 + ], + [ + -73.449586, + 45.5271 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.449239, + 45.527747 + ], + [ + -73.4491, + 45.528013 + ], + [ + -73.448776, + 45.528634 + ], + [ + -73.448476, + 45.529249 + ], + [ + -73.448445, + 45.529313 + ], + [ + -73.448085, + 45.530001 + ], + [ + -73.448024, + 45.530118 + ], + [ + -73.447862, + 45.53032 + ], + [ + -73.44764, + 45.530474 + ] + ] + }, + "id": 247, + "properties": { + "id": "9dfa0db3-72d7-4958-9847-225b6d870a5d", + "data": { + "gtfs": { + "shape_id": "410_2_R" + }, + "segments": [ + { + "distanceMeters": 4596, + "travelTimeSeconds": 240 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 1146, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 600, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 865, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 127 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 54 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9545, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5791.343632894528, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.95, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 6.92, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.95 + }, + "mode": "bus", + "name": "Sect. B Vieux-Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "8a3f1208-7ffb-452e-8ebb-c436acba82d6", + "2d7687a5-f458-4ce1-a3df-9639d89c0154", + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "81b3573e-d948-478d-a011-db20e21b0c62", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "53aec761-3dae-44a6-bc58-9d5003bfa1bb", + "6e83e147-802a-4695-95f3-96585bd15c4a", + "51878141-1194-4666-977c-0597ee638ffb", + "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "da0ea2a1-8305-4096-84b5-3da6997f0293", + "69483ac1-331d-4f0e-93b5-d8134f380763" + ], + "stops": [], + "line_id": "81f60ceb-ee5b-49b7-95c0-fc9668d02cbd", + "segments": [ + 0, + 79, + 85, + 109, + 139, + 160, + 185, + 189, + 194, + 196, + 203, + 205 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 247, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523209, + 45.523528 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523531, + 45.52794 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.502818, + 45.54899 + ], + [ + -73.502212, + 45.54962 + ], + [ + -73.501984, + 45.549836 + ], + [ + -73.50186, + 45.549926 + ], + [ + -73.501728, + 45.550007 + ], + [ + -73.501592, + 45.550079 + ], + [ + -73.501452, + 45.550133 + ], + [ + -73.501309, + 45.550183 + ], + [ + -73.50116, + 45.550219 + ], + [ + -73.501011, + 45.55025 + ], + [ + -73.500921, + 45.550259 + ], + [ + -73.500705, + 45.550282 + ], + [ + -73.500547, + 45.550286 + ], + [ + -73.49991, + 45.550295 + ], + [ + -73.499238, + 45.550226 + ], + [ + -73.498778, + 45.550153 + ], + [ + -73.498464, + 45.550065 + ], + [ + -73.498138, + 45.54995 + ], + [ + -73.497746, + 45.549767 + ], + [ + -73.497494, + 45.54961 + ], + [ + -73.497234, + 45.549428 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491296, + 45.54289 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476974, + 45.537234 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.469382, + 45.536996 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461215, + 45.531967 + ], + [ + -73.460868, + 45.531797 + ], + [ + -73.460137, + 45.531468 + ], + [ + -73.459095, + 45.531013 + ], + [ + -73.45781, + 45.530479 + ], + [ + -73.457591, + 45.530387 + ], + [ + -73.456631, + 45.529983 + ], + [ + -73.45522, + 45.529388 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.454675, + 45.529163 + ], + [ + -73.453608, + 45.528719 + ], + [ + -73.45247, + 45.528245 + ], + [ + -73.452419, + 45.528224 + ], + [ + -73.452095, + 45.528089 + ], + [ + -73.451849, + 45.527987 + ], + [ + -73.449586, + 45.5271 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.449239, + 45.527747 + ], + [ + -73.4491, + 45.528013 + ], + [ + -73.448776, + 45.528634 + ], + [ + -73.448476, + 45.529249 + ], + [ + -73.448445, + 45.529313 + ], + [ + -73.448085, + 45.530001 + ], + [ + -73.448024, + 45.530118 + ], + [ + -73.447862, + 45.53032 + ], + [ + -73.44764, + 45.530474 + ] + ] + }, + "id": 248, + "properties": { + "id": "cc1e0b9f-be39-470b-88b1-726a22ce99cf", + "data": { + "gtfs": { + "shape_id": "410_2_R" + }, + "segments": [ + { + "distanceMeters": 6619, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 600, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 865, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 127 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 54 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9545, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3545.9829182265617, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 12.24, + "travelTimeWithoutDwellTimesSeconds": 780, + "operatingTimeWithLayoverTimeSeconds": 960, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 780, + "operatingSpeedWithLayoverMetersPerSecond": 9.94, + "averageSpeedWithoutDwellTimesMetersPerSecond": 12.24 + }, + "mode": "bus", + "name": "Sect. B Vieux-Longueuil", + "color": "#A32638", + "nodes": [ + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "81b3573e-d948-478d-a011-db20e21b0c62", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "53aec761-3dae-44a6-bc58-9d5003bfa1bb", + "6e83e147-802a-4695-95f3-96585bd15c4a", + "51878141-1194-4666-977c-0597ee638ffb", + "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "da0ea2a1-8305-4096-84b5-3da6997f0293", + "69483ac1-331d-4f0e-93b5-d8134f380763" + ], + "stops": [], + "line_id": "81f60ceb-ee5b-49b7-95c0-fc9668d02cbd", + "segments": [ + 0, + 136, + 157, + 182, + 186, + 191, + 193, + 200, + 202 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 248, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.44764, + 45.530474 + ], + [ + -73.447543, + 45.530541 + ], + [ + -73.448141, + 45.53172 + ], + [ + -73.448349, + 45.532116 + ], + [ + -73.448438, + 45.5323 + ], + [ + -73.448512, + 45.532432 + ], + [ + -73.448557, + 45.532512 + ], + [ + -73.44871, + 45.532719 + ], + [ + -73.448896, + 45.532926 + ], + [ + -73.449063, + 45.533088 + ], + [ + -73.44929, + 45.533254 + ], + [ + -73.449502, + 45.533408 + ], + [ + -73.449736, + 45.533561 + ], + [ + -73.449982, + 45.533682 + ], + [ + -73.450209, + 45.533781 + ], + [ + -73.450391, + 45.533867 + ], + [ + -73.450743, + 45.534002 + ], + [ + -73.450985, + 45.534056 + ], + [ + -73.451317, + 45.534124 + ], + [ + -73.45172, + 45.534205 + ], + [ + -73.451896, + 45.534218 + ], + [ + -73.45205, + 45.534214 + ], + [ + -73.452182, + 45.534205 + ], + [ + -73.452341, + 45.534169 + ], + [ + -73.452481, + 45.534133 + ], + [ + -73.452644, + 45.534061 + ], + [ + -73.45275, + 45.533989 + ], + [ + -73.453619, + 45.533409 + ], + [ + -73.453895, + 45.533306 + ], + [ + -73.454221, + 45.533257 + ], + [ + -73.454807, + 45.533288 + ], + [ + -73.45503, + 45.53332 + ], + [ + -73.455242, + 45.53336 + ], + [ + -73.455391, + 45.533387 + ], + [ + -73.455523, + 45.533433 + ], + [ + -73.455674, + 45.5335 + ], + [ + -73.455774, + 45.533559 + ], + [ + -73.455836, + 45.533604 + ], + [ + -73.455934, + 45.53369 + ], + [ + -73.455959, + 45.533712 + ], + [ + -73.456036, + 45.533788 + ], + [ + -73.456095, + 45.533878 + ], + [ + -73.456189, + 45.534099 + ], + [ + -73.456214, + 45.534256 + ], + [ + -73.456189, + 45.534413 + ], + [ + -73.456189, + 45.534414 + ], + [ + -73.456134, + 45.534589 + ], + [ + -73.456046, + 45.534737 + ], + [ + -73.455923, + 45.53489 + ], + [ + -73.455755, + 45.535043 + ], + [ + -73.45561, + 45.535133 + ], + [ + -73.455504, + 45.535196 + ], + [ + -73.455381, + 45.535259 + ], + [ + -73.455279, + 45.535296 + ], + [ + -73.455196, + 45.535327 + ], + [ + -73.454943, + 45.535416 + ], + [ + -73.454703, + 45.535484 + ], + [ + -73.45458, + 45.535533 + ], + [ + -73.454434, + 45.535583 + ], + [ + -73.454232, + 45.535664 + ], + [ + -73.454095, + 45.53574 + ], + [ + -73.453985, + 45.535794 + ], + [ + -73.453678, + 45.536032 + ], + [ + -73.453562, + 45.536158 + ], + [ + -73.45347, + 45.536284 + ], + [ + -73.453395, + 45.536388 + ], + [ + -73.453302, + 45.53664 + ], + [ + -73.453056, + 45.537575 + ], + [ + -73.45293, + 45.537571 + ], + [ + -73.452702, + 45.537575 + ], + [ + -73.452033, + 45.537615 + ], + [ + -73.45161, + 45.537656 + ], + [ + -73.451409, + 45.537665 + ], + [ + -73.451204, + 45.537642 + ], + [ + -73.451019, + 45.537606 + ], + [ + -73.450864, + 45.537552 + ], + [ + -73.450674, + 45.537466 + ], + [ + -73.449848, + 45.536971 + ], + [ + -73.449006, + 45.536471 + ], + [ + -73.448626, + 45.536264 + ], + [ + -73.448357, + 45.536192 + ], + [ + -73.447683, + 45.536033 + ], + [ + -73.447442, + 45.535976 + ], + [ + -73.447213, + 45.535913 + ], + [ + -73.447099, + 45.535867 + ], + [ + -73.446936, + 45.5358 + ], + [ + -73.446746, + 45.535696 + ], + [ + -73.446498, + 45.535516 + ], + [ + -73.446412, + 45.535444 + ], + [ + -73.446305, + 45.535359 + ], + [ + -73.446216, + 45.535273 + ], + [ + -73.445977, + 45.535035 + ], + [ + -73.44579, + 45.534868 + ], + [ + -73.445666, + 45.534784 + ], + [ + -73.445571, + 45.534719 + ], + [ + -73.445347, + 45.534582 + ], + [ + -73.445234, + 45.534512 + ], + [ + -73.445013, + 45.5344 + ], + [ + -73.444564, + 45.534238 + ], + [ + -73.444063, + 45.534075 + ], + [ + -73.444212, + 45.533801 + ], + [ + -73.444441, + 45.533378 + ], + [ + -73.44472, + 45.532816 + ], + [ + -73.445133, + 45.532069 + ], + [ + -73.445159, + 45.532011 + ], + [ + -73.445217, + 45.531876 + ], + [ + -73.445262, + 45.531714 + ], + [ + -73.445416, + 45.531246 + ], + [ + -73.445655, + 45.53081 + ], + [ + -73.445758, + 45.530711 + ], + [ + -73.44588, + 45.530594 + ], + [ + -73.445934, + 45.530553 + ], + [ + -73.445986, + 45.530495 + ], + [ + -73.446078, + 45.530436 + ], + [ + -73.446188, + 45.530392 + ], + [ + -73.446303, + 45.53036 + ], + [ + -73.446426, + 45.53032 + ], + [ + -73.446558, + 45.530297 + ], + [ + -73.446722, + 45.530284 + ], + [ + -73.446778, + 45.530284 + ], + [ + -73.446897, + 45.530293 + ], + [ + -73.44702, + 45.530311 + ], + [ + -73.44713, + 45.530342 + ], + [ + -73.447236, + 45.530379 + ], + [ + -73.447385, + 45.530442 + ], + [ + -73.447543, + 45.530541 + ], + [ + -73.447862, + 45.53032 + ], + [ + -73.448024, + 45.530118 + ], + [ + -73.448085, + 45.530001 + ], + [ + -73.448297, + 45.529596 + ], + [ + -73.448445, + 45.529313 + ], + [ + -73.448776, + 45.528634 + ], + [ + -73.449239, + 45.527747 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.45067, + 45.527735 + ], + [ + -73.450838, + 45.527798 + ], + [ + -73.451123, + 45.527906 + ], + [ + -73.451519, + 45.528063 + ], + [ + -73.452276, + 45.528409 + ], + [ + -73.452337, + 45.528437 + ], + [ + -73.45321, + 45.528797 + ], + [ + -73.454095, + 45.529149 + ], + [ + -73.454978, + 45.529527 + ], + [ + -73.45507, + 45.529563 + ], + [ + -73.455133, + 45.529589 + ], + [ + -73.457482, + 45.530545 + ], + [ + -73.458332, + 45.530905 + ], + [ + -73.460581, + 45.531882 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.462751, + 45.533003 + ], + [ + -73.463873, + 45.533665 + ], + [ + -73.464875, + 45.534543 + ], + [ + -73.465497, + 45.535116 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469941, + 45.537318 + ], + [ + -73.470305, + 45.537406 + ], + [ + -73.470749, + 45.537487 + ], + [ + -73.471335, + 45.537563 + ], + [ + -73.471845, + 45.53759 + ], + [ + -73.472146, + 45.537591 + ], + [ + -73.472355, + 45.537591 + ], + [ + -73.473126, + 45.537555 + ], + [ + -73.473826, + 45.537492 + ], + [ + -73.474517, + 45.537429 + ], + [ + -73.474599, + 45.537423 + ], + [ + -73.475173, + 45.53738 + ], + [ + -73.47563, + 45.537344 + ], + [ + -73.476192, + 45.537353 + ], + [ + -73.476662, + 45.537394 + ], + [ + -73.477026, + 45.537434 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.477375, + 45.53749 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487193, + 45.54054 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491035, + 45.541427 + ], + [ + -73.491084, + 45.541584 + ], + [ + -73.491099, + 45.541724 + ], + [ + -73.491106, + 45.541854 + ], + [ + -73.491092, + 45.542156 + ], + [ + -73.491081, + 45.542381 + ], + [ + -73.49104, + 45.543146 + ], + [ + -73.490998, + 45.543726 + ], + [ + -73.491037, + 45.544117 + ], + [ + -73.491071, + 45.544252 + ], + [ + -73.491113, + 45.544396 + ], + [ + -73.491272, + 45.544698 + ], + [ + -73.491367, + 45.544855 + ], + [ + -73.491449, + 45.544981 + ], + [ + -73.491608, + 45.545148 + ], + [ + -73.491886, + 45.545409 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.492548, + 45.545933 + ], + [ + -73.492868, + 45.546192 + ], + [ + -73.492976, + 45.546278 + ], + [ + -73.493835, + 45.546966 + ], + [ + -73.494604, + 45.547573 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.495811, + 45.548549 + ], + [ + -73.49673, + 45.549278 + ], + [ + -73.497087, + 45.549548 + ], + [ + -73.49736, + 45.549719 + ], + [ + -73.497501, + 45.549805 + ], + [ + -73.497722, + 45.549908 + ], + [ + -73.497944, + 45.549998 + ], + [ + -73.498136, + 45.55007 + ], + [ + -73.498405, + 45.550151 + ], + [ + -73.498716, + 45.550237 + ], + [ + -73.499009, + 45.550295 + ], + [ + -73.499514, + 45.550349 + ], + [ + -73.499763, + 45.550363 + ], + [ + -73.4998, + 45.550364 + ], + [ + -73.501515, + 45.550448 + ], + [ + -73.502446, + 45.550493 + ], + [ + -73.502797, + 45.550502 + ], + [ + -73.502913, + 45.550498 + ], + [ + -73.503017, + 45.550484 + ], + [ + -73.503194, + 45.550453 + ], + [ + -73.503355, + 45.550399 + ], + [ + -73.503504, + 45.550327 + ], + [ + -73.503636, + 45.550237 + ], + [ + -73.503751, + 45.550133 + ], + [ + -73.503955, + 45.549904 + ], + [ + -73.504046, + 45.549787 + ], + [ + -73.504119, + 45.549647 + ], + [ + -73.50416, + 45.549508 + ], + [ + -73.504212, + 45.548909 + ], + [ + -73.504289, + 45.548585 + ], + [ + -73.504342, + 45.548423 + ], + [ + -73.504477, + 45.548095 + ], + [ + -73.504558, + 45.547933 + ], + [ + -73.504654, + 45.547771 + ], + [ + -73.504887, + 45.547461 + ], + [ + -73.505281, + 45.546997 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.507852, + 45.544119 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.518302, + 45.534844 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522568, + 45.530233 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.521182, + 45.53024 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517032, + 45.525567 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.51794, + 45.525389 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 249, + "properties": { + "id": "ce4b326e-49f1-40d0-bd3a-13c56705984a", + "data": { + "gtfs": { + "shape_id": "410_1_A" + }, + "segments": [ + { + "distanceMeters": 1029, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 934, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 762, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 1070, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 1025, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 1025, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 839, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 880, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 771, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 1075, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 1320, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 1029, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 658, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 667, + "travelTimeSeconds": 26 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13078, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 0, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 31.14, + "travelTimeWithoutDwellTimesSeconds": 420, + "operatingTimeWithLayoverTimeSeconds": 600, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 420, + "operatingSpeedWithLayoverMetersPerSecond": 21.8, + "averageSpeedWithoutDwellTimesMetersPerSecond": 31.14 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "69483ac1-331d-4f0e-93b5-d8134f380763", + "66f007ae-d813-40cb-ab41-e87b10da3a72", + "6685b5fc-0f35-439d-9c20-c96b665d5201", + "c896d257-2942-4aba-aded-59e49480d892", + "62590a84-0f1e-43e0-8046-574d7d23d2e9", + "48a4676d-1da3-4489-8f80-1edfb1b61b1b", + "83c203fe-4b10-42fd-aafb-d9bc99f756b0", + "e5c2d9f4-1be6-458f-854f-8103a3048b8c", + "231dda72-d4b5-48ae-b714-5ce9d3802c45", + "25a5f82a-36a7-4a52-af2b-32a681f87765", + "8b3a553d-dad5-41ff-b228-80f338c4b0e0", + "210e532b-2acc-4a3e-b173-3471add098b1", + "51637772-6b85-4c49-a14a-4de104a8f1f5", + "23ef9461-bbd0-492e-8678-c51238629a13", + "69483ac1-331d-4f0e-93b5-d8134f380763" + ], + "stops": [], + "line_id": "81f60ceb-ee5b-49b7-95c0-fc9668d02cbd", + "segments": [ + 0, + 44, + 81, + 109, + 144, + 153, + 181, + 200, + 230, + 249, + 273, + 288, + 323, + 345 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 249, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.454682, + 45.529166 + ], + [ + -73.453608, + 45.528719 + ], + [ + -73.452477, + 45.528249 + ], + [ + -73.452419, + 45.528224 + ], + [ + -73.452095, + 45.528089 + ], + [ + -73.451849, + 45.527987 + ], + [ + -73.449902, + 45.527223 + ], + [ + -73.449586, + 45.5271 + ], + [ + -73.447563, + 45.526329 + ], + [ + -73.447243, + 45.526199 + ], + [ + -73.446596, + 45.52596 + ], + [ + -73.446438, + 45.5259 + ], + [ + -73.446255, + 45.525829 + ], + [ + -73.445479, + 45.525532 + ], + [ + -73.44525, + 45.525455 + ], + [ + -73.445048, + 45.525397 + ], + [ + -73.444823, + 45.525347 + ], + [ + -73.444707, + 45.525314 + ], + [ + -73.444476, + 45.525248 + ], + [ + -73.44392, + 45.525126 + ], + [ + -73.443091, + 45.524907 + ], + [ + -73.442951, + 45.524869 + ], + [ + -73.443148, + 45.524487 + ], + [ + -73.443474, + 45.523856 + ], + [ + -73.443491, + 45.523821 + ], + [ + -73.444105, + 45.52258 + ], + [ + -73.444165, + 45.522458 + ], + [ + -73.444264, + 45.522301 + ], + [ + -73.444322, + 45.522225 + ], + [ + -73.445357, + 45.520227 + ], + [ + -73.445616, + 45.519728 + ], + [ + -73.445708, + 45.519575 + ], + [ + -73.445857, + 45.519382 + ], + [ + -73.446092, + 45.519112 + ], + [ + -73.446093, + 45.519111 + ], + [ + -73.446119, + 45.519088 + ], + [ + -73.446373, + 45.518869 + ], + [ + -73.446684, + 45.518635 + ], + [ + -73.446958, + 45.518469 + ], + [ + -73.447199, + 45.518348 + ], + [ + -73.447381, + 45.518267 + ], + [ + -73.447419, + 45.51825 + ], + [ + -73.447546, + 45.518195 + ], + [ + -73.448019, + 45.518033 + ], + [ + -73.448706, + 45.517817 + ], + [ + -73.449343, + 45.51762 + ], + [ + -73.449751, + 45.517483 + ], + [ + -73.449921, + 45.517427 + ], + [ + -73.450143, + 45.517364 + ], + [ + -73.450409, + 45.517292 + ], + [ + -73.45071, + 45.517229 + ], + [ + -73.450716, + 45.517224 + ], + [ + -73.451295, + 45.517148 + ], + [ + -73.451523, + 45.517121 + ], + [ + -73.45169, + 45.517099 + ], + [ + -73.451894, + 45.517072 + ], + [ + -73.452053, + 45.517054 + ], + [ + -73.45224, + 45.517153 + ], + [ + -73.452412, + 45.517228 + ], + [ + -73.452518, + 45.517275 + ], + [ + -73.453808, + 45.5178 + ], + [ + -73.453997, + 45.517877 + ], + [ + -73.454088, + 45.517914 + ], + [ + -73.454547, + 45.518104 + ], + [ + -73.455195, + 45.518372 + ], + [ + -73.455625, + 45.518549 + ], + [ + -73.45631, + 45.518837 + ], + [ + -73.457044, + 45.519137 + ], + [ + -73.457149, + 45.51918 + ], + [ + -73.456893, + 45.519549 + ], + [ + -73.456808, + 45.519697 + ], + [ + -73.456763, + 45.519809 + ], + [ + -73.456747, + 45.519998 + ], + [ + -73.456743, + 45.520169 + ], + [ + -73.456866, + 45.520955 + ], + [ + -73.456881, + 45.521051 + ], + [ + -73.456916, + 45.521245 + ], + [ + -73.457007, + 45.521798 + ], + [ + -73.457018, + 45.521965 + ], + [ + -73.457007, + 45.522131 + ], + [ + -73.456977, + 45.522289 + ], + [ + -73.456948, + 45.522368 + ], + [ + -73.456942, + 45.522383 + ], + [ + -73.456878, + 45.522527 + ], + [ + -73.456684, + 45.5229 + ], + [ + -73.456575, + 45.5231 + ], + [ + -73.456502, + 45.523233 + ], + [ + -73.455972, + 45.524237 + ], + [ + -73.455885, + 45.524403 + ], + [ + -73.455699, + 45.524754 + ], + [ + -73.45556, + 45.52506 + ], + [ + -73.455515, + 45.525217 + ], + [ + -73.455492, + 45.525379 + ], + [ + -73.455505, + 45.525617 + ], + [ + -73.455556, + 45.52586 + ], + [ + -73.455725, + 45.526441 + ], + [ + -73.455731, + 45.52646 + ], + [ + -73.455785, + 45.526648 + ], + [ + -73.456034, + 45.52748 + ], + [ + -73.456081, + 45.527705 + ], + [ + -73.456084, + 45.527948 + ], + [ + -73.45603, + 45.528196 + ], + [ + -73.455955, + 45.528344 + ], + [ + -73.455795, + 45.528551 + ], + [ + -73.455588, + 45.528799 + ], + [ + -73.455542, + 45.528856 + ], + [ + -73.455189, + 45.52928 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.454978, + 45.529527 + ], + [ + -73.45507, + 45.529563 + ], + [ + -73.456261, + 45.530048 + ], + [ + -73.457286, + 45.530465 + ], + [ + -73.457482, + 45.530545 + ], + [ + -73.458332, + 45.530905 + ], + [ + -73.460581, + 45.531882 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.462023, + 45.532624 + ], + [ + -73.462751, + 45.533003 + ], + [ + -73.463873, + 45.533665 + ], + [ + -73.464875, + 45.534543 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.468804, + 45.537047 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469941, + 45.537318 + ], + [ + -73.470305, + 45.537406 + ], + [ + -73.470749, + 45.537487 + ], + [ + -73.471335, + 45.537563 + ], + [ + -73.471845, + 45.53759 + ], + [ + -73.472146, + 45.537591 + ], + [ + -73.472355, + 45.537591 + ], + [ + -73.473126, + 45.537555 + ], + [ + -73.473826, + 45.537492 + ], + [ + -73.474517, + 45.537429 + ], + [ + -73.474599, + 45.537423 + ], + [ + -73.475173, + 45.53738 + ], + [ + -73.47563, + 45.537344 + ], + [ + -73.476192, + 45.537353 + ], + [ + -73.476662, + 45.537394 + ], + [ + -73.477026, + 45.537434 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.477879, + 45.537599 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491035, + 45.541427 + ], + [ + -73.491084, + 45.541584 + ], + [ + -73.491099, + 45.541724 + ], + [ + -73.491104, + 45.541817 + ], + [ + -73.491106, + 45.541854 + ], + [ + -73.491092, + 45.542156 + ], + [ + -73.491081, + 45.542381 + ], + [ + -73.49104, + 45.543146 + ], + [ + -73.490998, + 45.543726 + ], + [ + -73.491037, + 45.544117 + ], + [ + -73.491071, + 45.544252 + ], + [ + -73.491113, + 45.544396 + ], + [ + -73.491272, + 45.544698 + ], + [ + -73.491367, + 45.544855 + ], + [ + -73.491449, + 45.544981 + ], + [ + -73.491608, + 45.545148 + ], + [ + -73.491886, + 45.545409 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.492795, + 45.546132 + ], + [ + -73.492868, + 45.546192 + ], + [ + -73.492976, + 45.546278 + ], + [ + -73.493835, + 45.546966 + ], + [ + -73.494604, + 45.547573 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.49575, + 45.548499 + ], + [ + -73.495811, + 45.548549 + ], + [ + -73.49673, + 45.549278 + ], + [ + -73.497087, + 45.549548 + ], + [ + -73.49736, + 45.549719 + ], + [ + -73.497501, + 45.549805 + ], + [ + -73.497722, + 45.549908 + ], + [ + -73.497944, + 45.549998 + ], + [ + -73.498136, + 45.55007 + ], + [ + -73.498405, + 45.550151 + ], + [ + -73.498716, + 45.550237 + ], + [ + -73.499009, + 45.550295 + ], + [ + -73.499514, + 45.550349 + ], + [ + -73.499763, + 45.550363 + ], + [ + -73.501515, + 45.550448 + ], + [ + -73.502446, + 45.550493 + ], + [ + -73.502797, + 45.550502 + ], + [ + -73.502913, + 45.550498 + ], + [ + -73.503017, + 45.550484 + ], + [ + -73.503194, + 45.550453 + ], + [ + -73.503355, + 45.550399 + ], + [ + -73.503504, + 45.550327 + ], + [ + -73.503636, + 45.550237 + ], + [ + -73.503751, + 45.550133 + ], + [ + -73.503955, + 45.549904 + ], + [ + -73.504046, + 45.549787 + ], + [ + -73.504119, + 45.549647 + ], + [ + -73.50416, + 45.549508 + ], + [ + -73.504212, + 45.548909 + ], + [ + -73.504289, + 45.548585 + ], + [ + -73.504342, + 45.548423 + ], + [ + -73.504477, + 45.548095 + ], + [ + -73.504558, + 45.547933 + ], + [ + -73.504654, + 45.547771 + ], + [ + -73.504887, + 45.547461 + ], + [ + -73.505281, + 45.546997 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522841, + 45.530139 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.517788, + 45.525406 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 250, + "properties": { + "id": "02872c66-1ffc-4fc6-acc0-919a67ef16be", + "data": { + "gtfs": { + "shape_id": "417_1_A" + }, + "segments": [ + { + "distanceMeters": 200, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 417, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 736, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 721, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 1183, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 524, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 5138, + "travelTimeSeconds": 600 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13214, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5209.757988136507, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.59, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 6.88, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.59 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "6e83e147-802a-4695-95f3-96585bd15c4a", + "51878141-1194-4666-977c-0597ee638ffb", + "83cbcc26-a35c-4db6-a784-03a152cb9d6f", + "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", + "2800446d-aebc-4882-a018-9ab217599d73", + "02782fd4-ecd8-4615-9b7e-14ae16ac51bd", + "59ce5dad-a6de-46b9-a19c-e11dc5bfb727", + "aa6137b4-b674-460f-91f8-a129c1cf46bc", + "96eb89e4-98b8-49ac-b938-d7bcff69fc98", + "9d7bed04-91bf-4977-b8f5-ead58bfa3d28", + "0039f884-0610-402a-b23b-498abb207283", + "d3991811-d92b-4ba2-9732-26a74abc49b7", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "98268bc3-9f24-452e-8107-226a930051bc", + "b9c0c47c-b605-460e-9360-3718e001061b", + "c33924bc-c890-4a49-b330-6134b056dd6d", + "290dd81a-faeb-49a8-be84-7d76ab6dd7ef", + "cdd96034-dead-4f68-a8ed-c24b98b781eb", + "211cb268-dcfa-4d7b-810c-681bfa65d4c8", + "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "06d26eca-08e9-467e-9ff0-9595778162a0", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "038a22ba-4928-42fc-aaed-50fbd831df37", + "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", + "64648218-6b63-436c-9a46-4770987ba432", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "7961c0ed-c615-4ee9-84be-455b01f990f4", + "segments": [ + 0, + 2, + 6, + 12, + 17, + 22, + 25, + 34, + 41, + 46, + 54, + 61, + 67, + 74, + 85, + 87, + 96, + 104, + 111, + 117, + 130, + 151, + 183, + 198, + 204 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 250, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519446, + 45.523424 + ], + [ + -73.519356, + 45.523706 + ], + [ + -73.519307, + 45.523913 + ], + [ + -73.51926, + 45.524247 + ], + [ + -73.519249, + 45.524511 + ], + [ + -73.519247, + 45.52489 + ], + [ + -73.519252, + 45.525151 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519332, + 45.526816 + ], + [ + -73.517875, + 45.526743 + ], + [ + -73.517858, + 45.526792 + ], + [ + -73.517687, + 45.527294 + ], + [ + -73.517622, + 45.527483 + ], + [ + -73.517558, + 45.52771 + ], + [ + -73.517558, + 45.527712 + ], + [ + -73.517554, + 45.527724 + ], + [ + -73.517519, + 45.527835 + ], + [ + -73.517498, + 45.527937 + ], + [ + -73.517492, + 45.528031 + ], + [ + -73.517494, + 45.528104 + ], + [ + -73.517465, + 45.528168 + ], + [ + -73.517458, + 45.528249 + ], + [ + -73.517471, + 45.528385 + ], + [ + -73.517504, + 45.528565 + ], + [ + -73.517516, + 45.528652 + ], + [ + -73.517553, + 45.52877 + ], + [ + -73.517635, + 45.529002 + ], + [ + -73.517693, + 45.529249 + ], + [ + -73.517758, + 45.529516 + ], + [ + -73.517876, + 45.529885 + ], + [ + -73.517956, + 45.530236 + ], + [ + -73.51798, + 45.530335 + ], + [ + -73.518076, + 45.53052 + ], + [ + -73.518128, + 45.530691 + ], + [ + -73.518132, + 45.530763 + ], + [ + -73.518132, + 45.530866 + ], + [ + -73.518124, + 45.530947 + ], + [ + -73.518107, + 45.531037 + ], + [ + -73.518079, + 45.531114 + ], + [ + -73.518054, + 45.531154 + ], + [ + -73.518031, + 45.531195 + ], + [ + -73.517983, + 45.53124 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.519043, + 45.531581 + ], + [ + -73.519301, + 45.531703 + ], + [ + -73.519421, + 45.531788 + ], + [ + -73.519474, + 45.531838 + ], + [ + -73.519503, + 45.531887 + ], + [ + -73.519544, + 45.531946 + ], + [ + -73.519595, + 45.53204 + ], + [ + -73.519626, + 45.532175 + ], + [ + -73.519618, + 45.532265 + ], + [ + -73.519593, + 45.532387 + ], + [ + -73.51944, + 45.532634 + ], + [ + -73.518936, + 45.533287 + ], + [ + -73.518617, + 45.533665 + ], + [ + -73.518337, + 45.533998 + ], + [ + -73.51774, + 45.534698 + ], + [ + -73.517156, + 45.535384 + ], + [ + -73.51654, + 45.536112 + ], + [ + -73.515903, + 45.53685 + ], + [ + -73.515364, + 45.537345 + ], + [ + -73.515106, + 45.53757 + ], + [ + -73.514745, + 45.537858 + ], + [ + -73.514431, + 45.538101 + ], + [ + -73.51369, + 45.538637 + ], + [ + -73.512897, + 45.539195 + ], + [ + -73.512095, + 45.539762 + ], + [ + -73.511192, + 45.540414 + ], + [ + -73.510982, + 45.540567 + ], + [ + -73.510964, + 45.540582 + ], + [ + -73.510564, + 45.540891 + ], + [ + -73.510241, + 45.541157 + ], + [ + -73.509839, + 45.541553 + ], + [ + -73.50909, + 45.542237 + ], + [ + -73.508587, + 45.542741 + ], + [ + -73.508296, + 45.543033 + ], + [ + -73.50776, + 45.543609 + ], + [ + -73.507048, + 45.544368 + ], + [ + -73.505479, + 45.546039 + ], + [ + -73.504188, + 45.547393 + ], + [ + -73.503831, + 45.547731 + ], + [ + -73.503387, + 45.548158 + ], + [ + -73.502222, + 45.54935 + ], + [ + -73.502026, + 45.549535 + ], + [ + -73.501887, + 45.549652 + ], + [ + -73.501727, + 45.549755 + ], + [ + -73.501561, + 45.549845 + ], + [ + -73.501383, + 45.549913 + ], + [ + -73.501341, + 45.549928 + ], + [ + -73.501231, + 45.549967 + ], + [ + -73.501132, + 45.549989 + ], + [ + -73.501047, + 45.550007 + ], + [ + -73.500839, + 45.550048 + ], + [ + -73.50061, + 45.550066 + ], + [ + -73.500154, + 45.550079 + ], + [ + -73.499958, + 45.550057 + ], + [ + -73.499756, + 45.550039 + ], + [ + -73.499583, + 45.550043 + ], + [ + -73.499254, + 45.550048 + ], + [ + -73.49904, + 45.550039 + ], + [ + -73.498716, + 45.549998 + ], + [ + -73.49829, + 45.549868 + ], + [ + -73.497924, + 45.54971 + ], + [ + -73.497576, + 45.54953 + ], + [ + -73.497225, + 45.549332 + ], + [ + -73.497041, + 45.549211 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494914, + 45.547559 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.492003, + 45.545214 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491296, + 45.54289 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.490625, + 45.54071 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476982, + 45.537235 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.46939, + 45.536998 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461222, + 45.53197 + ], + [ + -73.460868, + 45.531797 + ], + [ + -73.460137, + 45.531468 + ], + [ + -73.459095, + 45.531013 + ], + [ + -73.457818, + 45.530482 + ], + [ + -73.457591, + 45.530387 + ], + [ + -73.456631, + 45.529983 + ], + [ + -73.45522, + 45.529388 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.454682, + 45.529166 + ] + ] + }, + "id": 251, + "properties": { + "id": "e3eb41c3-2471-41ab-a73a-442de60abc43", + "data": { + "gtfs": { + "shape_id": "417_1_R" + }, + "segments": [ + { + "distanceMeters": 4485, + "travelTimeSeconds": 480 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 1146, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 600, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 865, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 94 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 86 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8568, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5209.757988136507, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.14, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 6.21, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.14 + }, + "mode": "bus", + "name": "Sect. M Vieux-Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "8a3f1208-7ffb-452e-8ebb-c436acba82d6", + "2d7687a5-f458-4ce1-a3df-9639d89c0154", + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "81b3573e-d948-478d-a011-db20e21b0c62", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "53aec761-3dae-44a6-bc58-9d5003bfa1bb", + "6e83e147-802a-4695-95f3-96585bd15c4a" + ], + "stops": [], + "line_id": "7961c0ed-c615-4ee9-84be-455b01f990f4", + "segments": [ + 0, + 129, + 135, + 159, + 189, + 210, + 235, + 239 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 251, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.52391, + 45.52376 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.518682, + 45.534094 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.502818, + 45.54899 + ], + [ + -73.502212, + 45.54962 + ], + [ + -73.501984, + 45.549836 + ], + [ + -73.50186, + 45.549926 + ], + [ + -73.501728, + 45.550007 + ], + [ + -73.501701, + 45.550021 + ], + [ + -73.501592, + 45.550079 + ], + [ + -73.501452, + 45.550133 + ], + [ + -73.501309, + 45.550183 + ], + [ + -73.50116, + 45.550219 + ], + [ + -73.501011, + 45.55025 + ], + [ + -73.500705, + 45.550282 + ], + [ + -73.500547, + 45.550286 + ], + [ + -73.49991, + 45.550295 + ], + [ + -73.499238, + 45.550226 + ], + [ + -73.498778, + 45.550153 + ], + [ + -73.498464, + 45.550065 + ], + [ + -73.498138, + 45.54995 + ], + [ + -73.497746, + 45.549767 + ], + [ + -73.497494, + 45.54961 + ], + [ + -73.497234, + 45.549428 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494913, + 45.547558 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.492002, + 45.545213 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491296, + 45.54289 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.490624, + 45.54071 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476981, + 45.537234 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.469389, + 45.536997 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461222, + 45.53197 + ], + [ + -73.460868, + 45.531797 + ], + [ + -73.460137, + 45.531468 + ], + [ + -73.459095, + 45.531013 + ], + [ + -73.457818, + 45.530482 + ], + [ + -73.457591, + 45.530387 + ], + [ + -73.456631, + 45.529983 + ], + [ + -73.45522, + 45.529388 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.454682, + 45.529166 + ] + ] + }, + "id": 252, + "properties": { + "id": "28dc0517-cacb-4e51-a862-aad1bca43b3a", + "data": { + "gtfs": { + "shape_id": "417_2_R" + }, + "segments": [ + { + "distanceMeters": 4595, + "travelTimeSeconds": 240 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 532, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 1146, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 600, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 865, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 94 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 86 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8679, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5209.757988136507, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.51, + "travelTimeWithoutDwellTimesSeconds": 1020, + "operatingTimeWithLayoverTimeSeconds": 1200, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1020, + "operatingSpeedWithLayoverMetersPerSecond": 7.23, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.51 + }, + "mode": "bus", + "name": "Sect. M Vieux-Longueuil", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "8a3f1208-7ffb-452e-8ebb-c436acba82d6", + "2d7687a5-f458-4ce1-a3df-9639d89c0154", + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "81b3573e-d948-478d-a011-db20e21b0c62", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "53aec761-3dae-44a6-bc58-9d5003bfa1bb", + "6e83e147-802a-4695-95f3-96585bd15c4a" + ], + "stops": [], + "line_id": "7961c0ed-c615-4ee9-84be-455b01f990f4", + "segments": [ + 0, + 79, + 85, + 109, + 139, + 160, + 185, + 189 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 252, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522893, + 45.523523 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.52391, + 45.52376 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.518682, + 45.534094 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.502818, + 45.54899 + ], + [ + -73.502212, + 45.54962 + ], + [ + -73.501984, + 45.549836 + ], + [ + -73.50186, + 45.549926 + ], + [ + -73.501728, + 45.550007 + ], + [ + -73.501701, + 45.550021 + ], + [ + -73.501592, + 45.550079 + ], + [ + -73.501452, + 45.550133 + ], + [ + -73.501309, + 45.550183 + ], + [ + -73.50116, + 45.550219 + ], + [ + -73.501011, + 45.55025 + ], + [ + -73.500705, + 45.550282 + ], + [ + -73.500547, + 45.550286 + ], + [ + -73.49991, + 45.550295 + ], + [ + -73.499238, + 45.550226 + ], + [ + -73.498778, + 45.550153 + ], + [ + -73.498464, + 45.550065 + ], + [ + -73.498138, + 45.54995 + ], + [ + -73.497746, + 45.549767 + ], + [ + -73.497494, + 45.54961 + ], + [ + -73.497234, + 45.549428 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491296, + 45.54289 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476981, + 45.537234 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.469389, + 45.536997 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461222, + 45.53197 + ], + [ + -73.460868, + 45.531797 + ], + [ + -73.460137, + 45.531468 + ], + [ + -73.459095, + 45.531013 + ], + [ + -73.457818, + 45.530482 + ], + [ + -73.457591, + 45.530387 + ], + [ + -73.456631, + 45.529983 + ], + [ + -73.45522, + 45.529388 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.454682, + 45.529166 + ] + ] + }, + "id": 253, + "properties": { + "id": "c6423d7b-f76d-4c99-950d-701596e02632", + "data": { + "gtfs": { + "shape_id": "417_2_R" + }, + "segments": [ + { + "distanceMeters": 6618, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 600, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 865, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 94 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 86 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8679, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3076.214315971928, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 14.46, + "travelTimeWithoutDwellTimesSeconds": 600, + "operatingTimeWithLayoverTimeSeconds": 780, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 600, + "operatingSpeedWithLayoverMetersPerSecond": 11.13, + "averageSpeedWithoutDwellTimesMetersPerSecond": 14.46 + }, + "mode": "bus", + "name": "Sect. M Vieux-Longueuil", + "color": "#A32638", + "nodes": [ + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "81b3573e-d948-478d-a011-db20e21b0c62", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "53aec761-3dae-44a6-bc58-9d5003bfa1bb", + "6e83e147-802a-4695-95f3-96585bd15c4a" + ], + "stops": [], + "line_id": "7961c0ed-c615-4ee9-84be-455b01f990f4", + "segments": [ + 0, + 136, + 157, + 182, + 186 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 253, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.454682, + 45.529166 + ], + [ + -73.453608, + 45.528719 + ], + [ + -73.452419, + 45.528224 + ], + [ + -73.452095, + 45.528089 + ], + [ + -73.451849, + 45.527987 + ], + [ + -73.449586, + 45.5271 + ], + [ + -73.447563, + 45.526329 + ], + [ + -73.447243, + 45.526199 + ], + [ + -73.446973, + 45.526099 + ], + [ + -73.446596, + 45.52596 + ], + [ + -73.446438, + 45.5259 + ], + [ + -73.445479, + 45.525532 + ], + [ + -73.44525, + 45.525455 + ], + [ + -73.445048, + 45.525397 + ], + [ + -73.444823, + 45.525347 + ], + [ + -73.444476, + 45.525248 + ], + [ + -73.44392, + 45.525126 + ], + [ + -73.443091, + 45.524907 + ], + [ + -73.442951, + 45.524869 + ], + [ + -73.443474, + 45.523856 + ], + [ + -73.443491, + 45.523821 + ], + [ + -73.444165, + 45.522458 + ], + [ + -73.444264, + 45.522301 + ], + [ + -73.444322, + 45.522225 + ], + [ + -73.444943, + 45.521026 + ], + [ + -73.445357, + 45.520227 + ], + [ + -73.445616, + 45.519728 + ], + [ + -73.445708, + 45.519575 + ], + [ + -73.445857, + 45.519382 + ], + [ + -73.446092, + 45.519112 + ], + [ + -73.446119, + 45.519088 + ], + [ + -73.446373, + 45.518869 + ], + [ + -73.446684, + 45.518635 + ], + [ + -73.446958, + 45.518469 + ], + [ + -73.447199, + 45.518348 + ], + [ + -73.447381, + 45.518267 + ], + [ + -73.447546, + 45.518195 + ], + [ + -73.448019, + 45.518033 + ], + [ + -73.448706, + 45.517817 + ], + [ + -73.449343, + 45.51762 + ], + [ + -73.449921, + 45.517427 + ], + [ + -73.450143, + 45.517364 + ], + [ + -73.450409, + 45.517292 + ], + [ + -73.45071, + 45.517229 + ], + [ + -73.450716, + 45.517224 + ], + [ + -73.451295, + 45.517148 + ], + [ + -73.451523, + 45.517121 + ], + [ + -73.451894, + 45.517072 + ], + [ + -73.452053, + 45.517054 + ], + [ + -73.45224, + 45.517153 + ], + [ + -73.452412, + 45.517228 + ], + [ + -73.452518, + 45.517275 + ], + [ + -73.453808, + 45.5178 + ], + [ + -73.454088, + 45.517914 + ], + [ + -73.454547, + 45.518104 + ], + [ + -73.455195, + 45.518372 + ], + [ + -73.455625, + 45.518549 + ], + [ + -73.455996, + 45.518705 + ], + [ + -73.45631, + 45.518837 + ], + [ + -73.457149, + 45.51918 + ], + [ + -73.456893, + 45.519549 + ], + [ + -73.456808, + 45.519697 + ], + [ + -73.456763, + 45.519809 + ], + [ + -73.456747, + 45.519998 + ], + [ + -73.456743, + 45.520169 + ], + [ + -73.456881, + 45.521051 + ], + [ + -73.456916, + 45.521245 + ], + [ + -73.457007, + 45.521798 + ], + [ + -73.457018, + 45.521965 + ], + [ + -73.457007, + 45.522131 + ], + [ + -73.456977, + 45.522289 + ], + [ + -73.45696, + 45.522333 + ], + [ + -73.456948, + 45.522368 + ], + [ + -73.456942, + 45.522383 + ], + [ + -73.456878, + 45.522527 + ], + [ + -73.456684, + 45.5229 + ], + [ + -73.456502, + 45.523233 + ], + [ + -73.455885, + 45.524403 + ], + [ + -73.455699, + 45.524754 + ], + [ + -73.45556, + 45.52506 + ], + [ + -73.455515, + 45.525217 + ], + [ + -73.455492, + 45.525379 + ], + [ + -73.455505, + 45.525617 + ], + [ + -73.455556, + 45.52586 + ], + [ + -73.455725, + 45.526441 + ], + [ + -73.455785, + 45.526648 + ], + [ + -73.456034, + 45.52748 + ], + [ + -73.456081, + 45.527705 + ], + [ + -73.456084, + 45.527948 + ], + [ + -73.456062, + 45.528049 + ], + [ + -73.45603, + 45.528196 + ], + [ + -73.455955, + 45.528344 + ], + [ + -73.455795, + 45.528551 + ], + [ + -73.455542, + 45.528856 + ], + [ + -73.455189, + 45.52928 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.454978, + 45.529527 + ], + [ + -73.45507, + 45.529563 + ], + [ + -73.456261, + 45.530048 + ], + [ + -73.457482, + 45.530545 + ], + [ + -73.458332, + 45.530905 + ], + [ + -73.460581, + 45.531882 + ], + [ + -73.461424, + 45.532323 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.462751, + 45.533003 + ], + [ + -73.463873, + 45.533665 + ], + [ + -73.464875, + 45.534543 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469941, + 45.537318 + ], + [ + -73.470305, + 45.537406 + ], + [ + -73.470749, + 45.537487 + ], + [ + -73.471335, + 45.537563 + ], + [ + -73.471845, + 45.53759 + ], + [ + -73.472146, + 45.537591 + ], + [ + -73.472355, + 45.537591 + ], + [ + -73.473126, + 45.537555 + ], + [ + -73.473826, + 45.537492 + ], + [ + -73.474517, + 45.537429 + ], + [ + -73.474599, + 45.537423 + ], + [ + -73.475173, + 45.53738 + ], + [ + -73.47563, + 45.537344 + ], + [ + -73.476192, + 45.537353 + ], + [ + -73.476662, + 45.537394 + ], + [ + -73.476979, + 45.537429 + ], + [ + -73.477026, + 45.537434 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.482821, + 45.539045 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.490915, + 45.541199 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491035, + 45.541427 + ], + [ + -73.491084, + 45.541584 + ], + [ + -73.491099, + 45.541724 + ], + [ + -73.491106, + 45.541854 + ], + [ + -73.491092, + 45.542156 + ], + [ + -73.491081, + 45.542381 + ], + [ + -73.49104, + 45.543146 + ], + [ + -73.490998, + 45.543726 + ], + [ + -73.491037, + 45.544117 + ], + [ + -73.491071, + 45.544252 + ], + [ + -73.491113, + 45.544396 + ], + [ + -73.491272, + 45.544698 + ], + [ + -73.491367, + 45.544855 + ], + [ + -73.491449, + 45.544981 + ], + [ + -73.491608, + 45.545148 + ], + [ + -73.491886, + 45.545409 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.492385, + 45.545801 + ], + [ + -73.492868, + 45.546192 + ], + [ + -73.492976, + 45.546278 + ], + [ + -73.493835, + 45.546966 + ], + [ + -73.494604, + 45.547573 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.495811, + 45.548549 + ], + [ + -73.49673, + 45.549278 + ], + [ + -73.497087, + 45.549548 + ], + [ + -73.49736, + 45.549719 + ], + [ + -73.497501, + 45.549805 + ], + [ + -73.497722, + 45.549908 + ], + [ + -73.497944, + 45.549998 + ], + [ + -73.498136, + 45.55007 + ], + [ + -73.498405, + 45.550151 + ], + [ + -73.498716, + 45.550237 + ], + [ + -73.498805, + 45.550254 + ], + [ + -73.499009, + 45.550295 + ], + [ + -73.499514, + 45.550349 + ], + [ + -73.499763, + 45.550363 + ], + [ + -73.501515, + 45.550448 + ], + [ + -73.502446, + 45.550493 + ], + [ + -73.502797, + 45.550502 + ], + [ + -73.502913, + 45.550498 + ], + [ + -73.503017, + 45.550484 + ], + [ + -73.503194, + 45.550453 + ], + [ + -73.503355, + 45.550399 + ], + [ + -73.503504, + 45.550327 + ], + [ + -73.503636, + 45.550237 + ], + [ + -73.503751, + 45.550133 + ], + [ + -73.503955, + 45.549904 + ], + [ + -73.504046, + 45.549787 + ], + [ + -73.504119, + 45.549647 + ], + [ + -73.50416, + 45.549508 + ], + [ + -73.504212, + 45.548909 + ], + [ + -73.504289, + 45.548585 + ], + [ + -73.504342, + 45.548423 + ], + [ + -73.504477, + 45.548095 + ], + [ + -73.504558, + 45.547933 + ], + [ + -73.504654, + 45.547771 + ], + [ + -73.504887, + 45.547461 + ], + [ + -73.505281, + 45.546997 + ], + [ + -73.506483, + 45.545638 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.512141, + 45.540324 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.518737, + 45.534331 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.521815, + 45.530737 + ], + [ + -73.52222, + 45.530416 + ], + [ + -73.522368, + 45.530326 + ], + [ + -73.522518, + 45.530254 + ], + [ + -73.522681, + 45.530186 + ], + [ + -73.522841, + 45.530139 + ], + [ + -73.522867, + 45.530132 + ], + [ + -73.523028, + 45.530109 + ], + [ + -73.523164, + 45.530105 + ], + [ + -73.523333, + 45.530123 + ], + [ + -73.523467, + 45.530159 + ], + [ + -73.523603, + 45.530222 + ], + [ + -73.523681, + 45.53028 + ], + [ + -73.523765, + 45.530366 + ], + [ + -73.523822, + 45.530465 + ], + [ + -73.523853, + 45.530573 + ], + [ + -73.523851, + 45.530681 + ], + [ + -73.523825, + 45.530775 + ], + [ + -73.52377, + 45.530865 + ], + [ + -73.52369, + 45.530946 + ], + [ + -73.523579, + 45.531023 + ], + [ + -73.523457, + 45.531072 + ], + [ + -73.523329, + 45.531113 + ], + [ + -73.523178, + 45.531135 + ], + [ + -73.52302, + 45.531144 + ], + [ + -73.522859, + 45.53114 + ], + [ + -73.522696, + 45.531122 + ], + [ + -73.522538, + 45.531086 + ], + [ + -73.522387, + 45.531036 + ], + [ + -73.522243, + 45.530969 + ], + [ + -73.522111, + 45.530892 + ], + [ + -73.521754, + 45.530677 + ], + [ + -73.521691, + 45.530627 + ], + [ + -73.520846, + 45.529984 + ], + [ + -73.520551, + 45.529777 + ], + [ + -73.519943, + 45.529354 + ], + [ + -73.519627, + 45.529111 + ], + [ + -73.518655, + 45.528374 + ], + [ + -73.518213, + 45.52805 + ], + [ + -73.517782, + 45.527738 + ], + [ + -73.517672, + 45.527658 + ], + [ + -73.517405, + 45.527442 + ], + [ + -73.517218, + 45.527262 + ], + [ + -73.517072, + 45.527092 + ], + [ + -73.516988, + 45.52697 + ], + [ + -73.516817, + 45.52666 + ], + [ + -73.516757, + 45.526511 + ], + [ + -73.516721, + 45.52612 + ], + [ + -73.516713, + 45.526025 + ], + [ + -73.516719, + 45.525931 + ], + [ + -73.516747, + 45.525845 + ], + [ + -73.516794, + 45.525769 + ], + [ + -73.516854, + 45.525701 + ], + [ + -73.516925, + 45.525643 + ], + [ + -73.516977, + 45.525611 + ], + [ + -73.517044, + 45.525557 + ], + [ + -73.517154, + 45.525508 + ], + [ + -73.517269, + 45.525472 + ], + [ + -73.517518, + 45.525436 + ], + [ + -73.517788, + 45.525406 + ], + [ + -73.518171, + 45.525364 + ], + [ + -73.51826, + 45.525362 + ], + [ + -73.51843, + 45.525394 + ], + [ + -73.518529, + 45.525403 + ], + [ + -73.518609, + 45.525413 + ], + [ + -73.518785, + 45.525423 + ], + [ + -73.519257, + 45.525454 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 254, + "properties": { + "id": "e90e6473-b39a-4d31-869f-819fd8b91413", + "data": { + "gtfs": { + "shape_id": "417_1_A" + }, + "segments": [ + { + "distanceMeters": 691, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 798, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 1119, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 463, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 660, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 778, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 1441, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 491, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 695, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 546, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 712, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 954, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 740, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 847, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 467, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 881, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 940, + "travelTimeSeconds": 51 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13214, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 65.75797913289725, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 22.02, + "travelTimeWithoutDwellTimesSeconds": 600, + "operatingTimeWithLayoverTimeSeconds": 780, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 600, + "operatingSpeedWithLayoverMetersPerSecond": 16.94, + "averageSpeedWithoutDwellTimesMetersPerSecond": 22.02 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "6e83e147-802a-4695-95f3-96585bd15c4a", + "51878141-1194-4666-977c-0597ee638ffb", + "83cbcc26-a35c-4db6-a784-03a152cb9d6f", + "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", + "2800446d-aebc-4882-a018-9ab217599d73", + "02782fd4-ecd8-4615-9b7e-14ae16ac51bd", + "59ce5dad-a6de-46b9-a19c-e11dc5bfb727", + "aa6137b4-b674-460f-91f8-a129c1cf46bc", + "96eb89e4-98b8-49ac-b938-d7bcff69fc98", + "9d7bed04-91bf-4977-b8f5-ead58bfa3d28", + "0039f884-0610-402a-b23b-498abb207283", + "d3991811-d92b-4ba2-9732-26a74abc49b7", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "98268bc3-9f24-452e-8107-226a930051bc", + "b9c0c47c-b605-460e-9360-3718e001061b", + "c33924bc-c890-4a49-b330-6134b056dd6d", + "290dd81a-faeb-49a8-be84-7d76ab6dd7ef", + "cdd96034-dead-4f68-a8ed-c24b98b781eb" + ], + "stops": [], + "line_id": "7961c0ed-c615-4ee9-84be-455b01f990f4", + "segments": [ + 0, + 8, + 24, + 57, + 71, + 89, + 102, + 133, + 148, + 164, + 185, + 201, + 227, + 235, + 244, + 247, + 286 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 254, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522241, + 45.521831 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.514217, + 45.518647 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509952, + 45.515502 + ], + [ + -73.509485, + 45.515357 + ], + [ + -73.509376, + 45.515323 + ], + [ + -73.508692, + 45.515143 + ], + [ + -73.508296, + 45.51503 + ], + [ + -73.507817, + 45.514868 + ], + [ + -73.507704, + 45.514841 + ], + [ + -73.507464, + 45.514765 + ], + [ + -73.506516, + 45.514432 + ], + [ + -73.505464, + 45.514054 + ], + [ + -73.505166, + 45.51396 + ], + [ + -73.505023, + 45.513914 + ], + [ + -73.504794, + 45.513842 + ], + [ + -73.504451, + 45.513734 + ], + [ + -73.50434, + 45.513699 + ], + [ + -73.504259, + 45.513672 + ], + [ + -73.503369, + 45.513397 + ], + [ + -73.502433, + 45.51315 + ], + [ + -73.502048, + 45.513078 + ], + [ + -73.501411, + 45.512898 + ], + [ + -73.50108, + 45.512799 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.494607, + 45.510602 + ], + [ + -73.494318, + 45.510462 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488355, + 45.503066 + ], + [ + -73.4883, + 45.502913 + ], + [ + -73.488219, + 45.502531 + ], + [ + -73.488223, + 45.502405 + ], + [ + -73.488244, + 45.502298 + ], + [ + -73.488245, + 45.502293 + ], + [ + -73.488296, + 45.502185 + ], + [ + -73.488375, + 45.502086 + ], + [ + -73.488484, + 45.502 + ], + [ + -73.488609, + 45.501937 + ], + [ + -73.48874, + 45.501892 + ], + [ + -73.48888, + 45.501865 + ], + [ + -73.489028, + 45.501856 + ], + [ + -73.489181, + 45.501865 + ], + [ + -73.489324, + 45.501892 + ], + [ + -73.489461, + 45.501933 + ], + [ + -73.489585, + 45.501991 + ], + [ + -73.489692, + 45.502068 + ], + [ + -73.489786, + 45.502153 + ], + [ + -73.489942, + 45.502342 + ], + [ + -73.490006, + 45.50245 + ], + [ + -73.490054, + 45.502558 + ], + [ + -73.490086, + 45.502666 + ], + [ + -73.490092, + 45.502779 + ], + [ + -73.490064, + 45.502891 + ], + [ + -73.490004, + 45.502995 + ], + [ + -73.489917, + 45.503094 + ], + [ + -73.489808, + 45.503175 + ], + [ + -73.489675, + 45.503242 + ], + [ + -73.489524, + 45.503287 + ], + [ + -73.489359, + 45.50331 + ], + [ + -73.489186, + 45.503323 + ], + [ + -73.488817, + 45.503318 + ], + [ + -73.487515, + 45.503242 + ], + [ + -73.486872, + 45.503273 + ], + [ + -73.486502, + 45.503323 + ], + [ + -73.486146, + 45.503381 + ], + [ + -73.484224, + 45.503808 + ], + [ + -73.483407, + 45.503957 + ], + [ + -73.482922, + 45.504029 + ], + [ + -73.482166, + 45.504114 + ], + [ + -73.481092, + 45.504204 + ], + [ + -73.4802, + 45.504262 + ], + [ + -73.47719, + 45.50446 + ], + [ + -73.470465, + 45.504907 + ], + [ + -73.464792, + 45.505284 + ], + [ + -73.464234, + 45.505325 + ], + [ + -73.463301, + 45.505392 + ], + [ + -73.461784, + 45.505526 + ], + [ + -73.460686, + 45.505647 + ], + [ + -73.45799, + 45.505984 + ], + [ + -73.456776, + 45.506127 + ], + [ + -73.455209, + 45.506284 + ], + [ + -73.454382, + 45.506356 + ], + [ + -73.450186, + 45.506642 + ], + [ + -73.439577, + 45.507343 + ], + [ + -73.439057, + 45.507379 + ], + [ + -73.438071, + 45.507414 + ], + [ + -73.437444, + 45.507428 + ], + [ + -73.436265, + 45.507427 + ], + [ + -73.435664, + 45.507418 + ], + [ + -73.43478, + 45.507413 + ], + [ + -73.433757, + 45.507439 + ], + [ + -73.432476, + 45.507501 + ], + [ + -73.430857, + 45.507609 + ], + [ + -73.430359, + 45.507642 + ], + [ + -73.43012, + 45.507658 + ], + [ + -73.43011, + 45.507658 + ], + [ + -73.429316, + 45.507711 + ], + [ + -73.429014, + 45.507706 + ], + [ + -73.42887, + 45.507697 + ], + [ + -73.428732, + 45.50767 + ], + [ + -73.428609, + 45.507629 + ], + [ + -73.4285, + 45.507571 + ], + [ + -73.428413, + 45.507413 + ], + [ + -73.428416, + 45.507089 + ], + [ + -73.428566, + 45.506946 + ], + [ + -73.428604, + 45.506915 + ], + [ + -73.428632, + 45.506893 + ], + [ + -73.428753, + 45.506835 + ], + [ + -73.42903, + 45.50674 + ], + [ + -73.429213, + 45.50668 + ], + [ + -73.429476, + 45.506669 + ], + [ + -73.429755, + 45.506651 + ], + [ + -73.429825, + 45.506654 + ], + [ + -73.429948, + 45.50668 + ], + [ + -73.430064, + 45.506725 + ], + [ + -73.4302, + 45.506807 + ], + [ + -73.430341, + 45.507086 + ], + [ + -73.430485, + 45.507257 + ], + [ + -73.430506, + 45.507276 + ], + [ + -73.430509, + 45.507278 + ], + [ + -73.430608, + 45.507365 + ], + [ + -73.430672, + 45.507415 + ], + [ + -73.431358, + 45.507856 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431666, + 45.508054 + ], + [ + -73.431986, + 45.508252 + ], + [ + -73.432482, + 45.508559 + ], + [ + -73.433021, + 45.508883 + ], + [ + -73.433395, + 45.509082 + ], + [ + -73.433453, + 45.509113 + ], + [ + -73.433529, + 45.509151 + ], + [ + -73.43374, + 45.509257 + ], + [ + -73.434128, + 45.509428 + ], + [ + -73.43476, + 45.509703 + ], + [ + -73.435478, + 45.510009 + ], + [ + -73.435758, + 45.510131 + ], + [ + -73.435507, + 45.510414 + ], + [ + -73.4355, + 45.510423 + ], + [ + -73.435493, + 45.510432 + ], + [ + -73.435487, + 45.510437 + ], + [ + -73.435479, + 45.510446 + ], + [ + -73.435472, + 45.510455 + ], + [ + -73.435465, + 45.510459 + ], + [ + -73.435457, + 45.510468 + ], + [ + -73.43545, + 45.510477 + ], + [ + -73.43545, + 45.510477 + ], + [ + -73.435442, + 45.510481 + ], + [ + -73.435434, + 45.51049 + ], + [ + -73.435426, + 45.510495 + ], + [ + -73.435418, + 45.510504 + ], + [ + -73.43541, + 45.510513 + ], + [ + -73.435402, + 45.510517 + ], + [ + -73.435394, + 45.510526 + ], + [ + -73.435386, + 45.510531 + ], + [ + -73.435377, + 45.51054 + ], + [ + -73.435369, + 45.510544 + ], + [ + -73.43536, + 45.510553 + ], + [ + -73.435352, + 45.510558 + ], + [ + -73.435343, + 45.510567 + ], + [ + -73.435334, + 45.510571 + ], + [ + -73.435325, + 45.510576 + ], + [ + -73.435316, + 45.510585 + ], + [ + -73.435306, + 45.510589 + ], + [ + -73.435297, + 45.510598 + ], + [ + -73.435288, + 45.510603 + ], + [ + -73.435278, + 45.510607 + ], + [ + -73.435269, + 45.510616 + ], + [ + -73.43526, + 45.510621 + ], + [ + -73.43525, + 45.510625 + ], + [ + -73.43524, + 45.510634 + ], + [ + -73.43523, + 45.510639 + ], + [ + -73.43522, + 45.510643 + ], + [ + -73.43521, + 45.510648 + ], + [ + -73.435201, + 45.510657 + ], + [ + -73.43518, + 45.510666 + ], + [ + -73.43517, + 45.51067 + ], + [ + -73.435159, + 45.510679 + ], + [ + -73.435149, + 45.510684 + ], + [ + -73.435139, + 45.510688 + ], + [ + -73.435128, + 45.510693 + ], + [ + -73.435118, + 45.510697 + ], + [ + -73.435107, + 45.510706 + ], + [ + -73.435097, + 45.510711 + ], + [ + -73.435086, + 45.510715 + ], + [ + -73.435075, + 45.51072 + ], + [ + -73.435065, + 45.510724 + ], + [ + -73.435053, + 45.510729 + ], + [ + -73.435043, + 45.510733 + ], + [ + -73.435032, + 45.510738 + ], + [ + -73.435021, + 45.510742 + ], + [ + -73.435009, + 45.510747 + ], + [ + -73.434998, + 45.510751 + ], + [ + -73.434987, + 45.510756 + ], + [ + -73.434976, + 45.51076 + ], + [ + -73.434964, + 45.510765 + ], + [ + -73.434953, + 45.510769 + ], + [ + -73.434941, + 45.510774 + ], + [ + -73.43493, + 45.510778 + ], + [ + -73.434918, + 45.510778 + ], + [ + -73.434907, + 45.510783 + ], + [ + -73.434895, + 45.510787 + ], + [ + -73.434883, + 45.510792 + ], + [ + -73.434871, + 45.510796 + ], + [ + -73.43486, + 45.510796 + ], + [ + -73.434848, + 45.510801 + ], + [ + -73.434836, + 45.510805 + ], + [ + -73.434824, + 45.51081 + ], + [ + -73.434812, + 45.51081 + ], + [ + -73.4348, + 45.510814 + ], + [ + -73.434788, + 45.510819 + ], + [ + -73.434775, + 45.510819 + ], + [ + -73.434763, + 45.510823 + ], + [ + -73.434751, + 45.510823 + ], + [ + -73.434739, + 45.510828 + ], + [ + -73.434727, + 45.510828 + ], + [ + -73.434714, + 45.510832 + ], + [ + -73.434702, + 45.510837 + ], + [ + -73.434689, + 45.510837 + ], + [ + -73.434677, + 45.510841 + ], + [ + -73.434665, + 45.510841 + ], + [ + -73.434652, + 45.510841 + ], + [ + -73.434639, + 45.510845 + ], + [ + -73.434627, + 45.510845 + ], + [ + -73.434615, + 45.51085 + ], + [ + -73.434602, + 45.51085 + ], + [ + -73.434589, + 45.51085 + ], + [ + -73.434577, + 45.510854 + ], + [ + -73.434564, + 45.510854 + ], + [ + -73.434551, + 45.510854 + ], + [ + -73.434539, + 45.510859 + ], + [ + -73.434526, + 45.510859 + ], + [ + -73.434513, + 45.510859 + ], + [ + -73.434501, + 45.510859 + ], + [ + -73.434488, + 45.510859 + ], + [ + -73.434475, + 45.510863 + ], + [ + -73.434462, + 45.510863 + ], + [ + -73.434449, + 45.510863 + ], + [ + -73.434437, + 45.510863 + ], + [ + -73.434424, + 45.510863 + ], + [ + -73.434411, + 45.510863 + ], + [ + -73.433233, + 45.510854 + ], + [ + -73.433213, + 45.510854 + ], + [ + -73.4332, + 45.510854 + ], + [ + -73.433188, + 45.510854 + ], + [ + -73.433175, + 45.510858 + ], + [ + -73.433163, + 45.510858 + ], + [ + -73.433162, + 45.510858 + ], + [ + -73.43315, + 45.510858 + ], + [ + -73.433137, + 45.510858 + ], + [ + -73.433124, + 45.510858 + ], + [ + -73.433111, + 45.510858 + ], + [ + -73.433098, + 45.510863 + ], + [ + -73.433086, + 45.510863 + ], + [ + -73.433073, + 45.510863 + ], + [ + -73.43306, + 45.510863 + ], + [ + -73.433048, + 45.510867 + ], + [ + -73.433035, + 45.510867 + ], + [ + -73.433022, + 45.510867 + ], + [ + -73.43301, + 45.510872 + ], + [ + -73.432997, + 45.510872 + ], + [ + -73.432985, + 45.510872 + ], + [ + -73.432971, + 45.510876 + ], + [ + -73.43282, + 45.510417 + ], + [ + -73.432816, + 45.510408 + ], + [ + -73.432813, + 45.510399 + ], + [ + -73.432809, + 45.51039 + ], + [ + -73.432806, + 45.510381 + ], + [ + -73.432802, + 45.510372 + ], + [ + -73.432799, + 45.510363 + ], + [ + -73.432795, + 45.510354 + ], + [ + -73.432792, + 45.510345 + ], + [ + -73.432788, + 45.510336 + ], + [ + -73.432785, + 45.510331 + ], + [ + -73.432781, + 45.510322 + ], + [ + -73.432777, + 45.510313 + ], + [ + -73.432774, + 45.510304 + ], + [ + -73.43277, + 45.510295 + ], + [ + -73.432767, + 45.510286 + ], + [ + -73.432763, + 45.510277 + ], + [ + -73.43276, + 45.510268 + ], + [ + -73.432756, + 45.510259 + ], + [ + -73.432752, + 45.51025 + ], + [ + -73.432749, + 45.510241 + ], + [ + -73.432745, + 45.510232 + ], + [ + -73.432742, + 45.510228 + ], + [ + -73.432738, + 45.510219 + ], + [ + -73.432734, + 45.51021 + ], + [ + -73.432731, + 45.510201 + ], + [ + -73.432727, + 45.510192 + ], + [ + -73.432724, + 45.510183 + ], + [ + -73.43272, + 45.510174 + ], + [ + -73.432716, + 45.510165 + ], + [ + -73.432712, + 45.510156 + ], + [ + -73.432709, + 45.510147 + ], + [ + -73.432705, + 45.510138 + ], + [ + -73.432702, + 45.510129 + ], + [ + -73.432698, + 45.510124 + ], + [ + -73.432694, + 45.510115 + ], + [ + -73.432691, + 45.510106 + ], + [ + -73.432687, + 45.510097 + ], + [ + -73.432683, + 45.510088 + ], + [ + -73.432679, + 45.510079 + ], + [ + -73.432676, + 45.51007 + ], + [ + -73.432672, + 45.510061 + ], + [ + -73.432669, + 45.510052 + ], + [ + -73.43266, + 45.510034 + ], + [ + -73.432659, + 45.510021 + ], + [ + -73.432658, + 45.510012 + ], + [ + -73.432658, + 45.510003 + ], + [ + -73.432657, + 45.509994 + ], + [ + -73.432657, + 45.509985 + ], + [ + -73.432656, + 45.509976 + ], + [ + -73.432656, + 45.509967 + ], + [ + -73.432656, + 45.509958 + ], + [ + -73.432655, + 45.509949 + ], + [ + -73.432656, + 45.50994 + ], + [ + -73.432656, + 45.509931 + ], + [ + -73.432656, + 45.509922 + ], + [ + -73.432656, + 45.509913 + ], + [ + -73.432656, + 45.509904 + ], + [ + -73.432657, + 45.509895 + ], + [ + -73.432658, + 45.509886 + ], + [ + -73.432658, + 45.509877 + ], + [ + -73.432659, + 45.509868 + ], + [ + -73.43266, + 45.509859 + ], + [ + -73.432662, + 45.50985 + ], + [ + -73.432663, + 45.509841 + ], + [ + -73.432664, + 45.509832 + ], + [ + -73.432666, + 45.509823 + ], + [ + -73.432668, + 45.509814 + ], + [ + -73.432759, + 45.509634 + ], + [ + -73.432835, + 45.509463 + ], + [ + -73.432855, + 45.50936 + ], + [ + -73.432845, + 45.509284 + ], + [ + -73.432841, + 45.509247 + ], + [ + -73.432807, + 45.509153 + ], + [ + -73.432763, + 45.509081 + ], + [ + -73.432693, + 45.508986 + ], + [ + -73.432596, + 45.508892 + ], + [ + -73.432466, + 45.508784 + ], + [ + -73.432357, + 45.508721 + ], + [ + -73.432229, + 45.508657 + ], + [ + -73.43205, + 45.508576 + ], + [ + -73.431849, + 45.508509 + ], + [ + -73.431641, + 45.508477 + ], + [ + -73.430377, + 45.508566 + ], + [ + -73.42989, + 45.508625 + ], + [ + -73.429611, + 45.508674 + ], + [ + -73.429174, + 45.50875 + ], + [ + -73.428721, + 45.508799 + ], + [ + -73.425795, + 45.508991 + ], + [ + -73.422797, + 45.509187 + ], + [ + -73.420374, + 45.509349 + ], + [ + -73.414394, + 45.509748 + ], + [ + -73.414099, + 45.509779 + ], + [ + -73.413851, + 45.50986 + ], + [ + -73.413789, + 45.509879 + ], + [ + -73.413748, + 45.509891 + ], + [ + -73.413659, + 45.509927 + ], + [ + -73.413544, + 45.510004 + ], + [ + -73.413248, + 45.510197 + ], + [ + -73.412184, + 45.510894 + ], + [ + -73.41095, + 45.511702 + ], + [ + -73.409407, + 45.512716 + ], + [ + -73.408602, + 45.513258 + ], + [ + -73.408576, + 45.513275 + ], + [ + -73.408317, + 45.513441 + ], + [ + -73.408069, + 45.513608 + ], + [ + -73.406628, + 45.514552 + ], + [ + -73.405458, + 45.515319 + ], + [ + -73.405225, + 45.515472 + ], + [ + -73.403934, + 45.516317 + ], + [ + -73.403091, + 45.516883 + ], + [ + -73.402988, + 45.516952 + ], + [ + -73.401985, + 45.517616 + ], + [ + -73.400756, + 45.518406 + ], + [ + -73.400681, + 45.518454 + ], + [ + -73.400643, + 45.518479 + ], + [ + -73.397089, + 45.515781 + ], + [ + -73.393828, + 45.513384 + ], + [ + -73.393516, + 45.513719 + ], + [ + -73.389522, + 45.518002 + ], + [ + -73.388708, + 45.518687 + ], + [ + -73.388666, + 45.518715 + ], + [ + -73.388159, + 45.519058 + ], + [ + -73.387731, + 45.519343 + ], + [ + -73.387568, + 45.519571 + ], + [ + -73.38752, + 45.520133 + ], + [ + -73.3875, + 45.520254 + ], + [ + -73.387695, + 45.520266 + ], + [ + -73.388473, + 45.520371 + ], + [ + -73.389024, + 45.520488 + ], + [ + -73.389662, + 45.520669 + ], + [ + -73.390366, + 45.520948 + ], + [ + -73.391126, + 45.521354 + ], + [ + -73.3917, + 45.52175 + ], + [ + -73.391955, + 45.52194 + ], + [ + -73.392403, + 45.522268 + ], + [ + -73.392526, + 45.522188 + ], + [ + -73.392528, + 45.522188 + ], + [ + -73.392608, + 45.522129 + ], + [ + -73.392765, + 45.522062 + ], + [ + -73.392947, + 45.521977 + ], + [ + -73.393247, + 45.521891 + ], + [ + -73.393516, + 45.521869 + ], + [ + -73.393695, + 45.521869 + ] + ] + }, + "id": 255, + "properties": { + "id": "12c4b822-614e-4551-9708-974bb0fb2721", + "data": { + "gtfs": { + "shape_id": "428_1_R" + }, + "segments": [ + { + "distanceMeters": 2244, + "travelTimeSeconds": 256 + }, + { + "distanceMeters": 901, + "travelTimeSeconds": 104 + }, + { + "distanceMeters": 6738, + "travelTimeSeconds": 636 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 1220, + "travelTimeSeconds": 118 + }, + { + "distanceMeters": 687, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 384, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 1506, + "travelTimeSeconds": 232 + }, + { + "distanceMeters": 775, + "travelTimeSeconds": 120 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 15734, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 9940.111341084536, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.04, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 8.19, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.04 + }, + "mode": "bus", + "name": "Ag. spatiale Canadienne", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", + "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", + "80008949-5a0f-4c5e-b778-592c2ee8487f", + "0f06220e-c086-4a85-9d80-5c4d5410f93e", + "789f4442-496b-49a8-9269-68c86839ee71", + "083eddb0-b4a8-4368-8265-1cf0ef37b9f6", + "eb8bc90f-a856-480f-ac1f-7bb1795b4dab", + "90f9f389-96b4-444b-8d1b-774cf89df3c1", + "6d909e49-9727-42dc-95db-42259425acbd", + "4ee012e8-fd5c-471a-bb0b-87721da74cf6", + "02c6c49d-886b-440d-919e-7dc5515da70b", + "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", + "59f3ce33-037e-4929-8dad-491a01b3dda7", + "7b3cddda-c6ba-4d35-a936-01ff21d1501b" + ], + "stops": [], + "line_id": "93c23fdb-a643-4cd8-b412-82efdc167623", + "segments": [ + 0, + 82, + 106, + 228, + 242, + 343, + 450, + 459, + 462, + 466, + 468, + 470, + 473, + 481 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 255, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.393695, + 45.521869 + ], + [ + -73.393778, + 45.521869 + ], + [ + -73.394218, + 45.521942 + ], + [ + -73.394476, + 45.522045 + ], + [ + -73.394652, + 45.522154 + ], + [ + -73.394747, + 45.522217 + ], + [ + -73.394826, + 45.522289 + ], + [ + -73.39444, + 45.522546 + ], + [ + -73.394198, + 45.522707 + ], + [ + -73.393689, + 45.523044 + ], + [ + -73.392528, + 45.522188 + ], + [ + -73.391716, + 45.521593 + ], + [ + -73.391241, + 45.52126 + ], + [ + -73.390462, + 45.520845 + ], + [ + -73.389738, + 45.520556 + ], + [ + -73.389082, + 45.520371 + ], + [ + -73.388515, + 45.520254 + ], + [ + -73.387719, + 45.520145 + ], + [ + -73.38752, + 45.520133 + ], + [ + -73.387568, + 45.519571 + ], + [ + -73.387731, + 45.519343 + ], + [ + -73.388159, + 45.519058 + ], + [ + -73.388691, + 45.518698 + ], + [ + -73.388708, + 45.518687 + ], + [ + -73.389522, + 45.518002 + ], + [ + -73.391092, + 45.516318 + ], + [ + -73.393828, + 45.513384 + ], + [ + -73.397089, + 45.515781 + ], + [ + -73.400492, + 45.518364 + ], + [ + -73.400643, + 45.518479 + ], + [ + -73.400681, + 45.518454 + ], + [ + -73.401985, + 45.517616 + ], + [ + -73.402688, + 45.517151 + ], + [ + -73.402988, + 45.516952 + ], + [ + -73.403934, + 45.516317 + ], + [ + -73.405081, + 45.515566 + ], + [ + -73.405458, + 45.515319 + ], + [ + -73.406634, + 45.514548 + ], + [ + -73.408069, + 45.513608 + ], + [ + -73.408317, + 45.513441 + ], + [ + -73.40841, + 45.513382 + ], + [ + -73.408576, + 45.513275 + ], + [ + -73.409407, + 45.512716 + ], + [ + -73.41095, + 45.511702 + ], + [ + -73.412189, + 45.51089 + ], + [ + -73.413248, + 45.510197 + ], + [ + -73.413544, + 45.510004 + ], + [ + -73.413659, + 45.509927 + ], + [ + -73.413748, + 45.509891 + ], + [ + -73.413851, + 45.50986 + ], + [ + -73.414099, + 45.509779 + ], + [ + -73.414394, + 45.509748 + ], + [ + -73.420381, + 45.509348 + ], + [ + -73.422797, + 45.509187 + ], + [ + -73.425795, + 45.508991 + ], + [ + -73.428721, + 45.508799 + ], + [ + -73.429174, + 45.50875 + ], + [ + -73.429611, + 45.508674 + ], + [ + -73.42989, + 45.508625 + ], + [ + -73.430377, + 45.508566 + ], + [ + -73.430545, + 45.508554 + ], + [ + -73.430749, + 45.50854 + ], + [ + -73.431641, + 45.508477 + ], + [ + -73.431849, + 45.508509 + ], + [ + -73.43205, + 45.508576 + ], + [ + -73.432229, + 45.508657 + ], + [ + -73.432357, + 45.508721 + ], + [ + -73.432466, + 45.508784 + ], + [ + -73.432596, + 45.508892 + ], + [ + -73.432693, + 45.508986 + ], + [ + -73.432763, + 45.509081 + ], + [ + -73.432807, + 45.509153 + ], + [ + -73.432841, + 45.509247 + ], + [ + -73.432845, + 45.509284 + ], + [ + -73.432855, + 45.50936 + ], + [ + -73.432835, + 45.509463 + ], + [ + -73.432759, + 45.509634 + ], + [ + -73.432668, + 45.509814 + ], + [ + -73.432666, + 45.509823 + ], + [ + -73.432664, + 45.509832 + ], + [ + -73.432663, + 45.509841 + ], + [ + -73.432662, + 45.50985 + ], + [ + -73.43266, + 45.509859 + ], + [ + -73.432659, + 45.509868 + ], + [ + -73.432658, + 45.509877 + ], + [ + -73.432658, + 45.509886 + ], + [ + -73.432657, + 45.509895 + ], + [ + -73.432656, + 45.509904 + ], + [ + -73.432656, + 45.509913 + ], + [ + -73.432656, + 45.509922 + ], + [ + -73.432656, + 45.509931 + ], + [ + -73.432656, + 45.50994 + ], + [ + -73.432655, + 45.509949 + ], + [ + -73.432656, + 45.509958 + ], + [ + -73.432656, + 45.509967 + ], + [ + -73.432656, + 45.509976 + ], + [ + -73.432657, + 45.509985 + ], + [ + -73.432657, + 45.509994 + ], + [ + -73.432658, + 45.510003 + ], + [ + -73.432658, + 45.510012 + ], + [ + -73.432659, + 45.510021 + ], + [ + -73.43266, + 45.510034 + ], + [ + -73.432661, + 45.510043 + ], + [ + -73.432661, + 45.510052 + ], + [ + -73.432661, + 45.510061 + ], + [ + -73.432662, + 45.51007 + ], + [ + -73.432663, + 45.510079 + ], + [ + -73.432663, + 45.510088 + ], + [ + -73.432664, + 45.510097 + ], + [ + -73.432665, + 45.510106 + ], + [ + -73.432666, + 45.510115 + ], + [ + -73.432667, + 45.510124 + ], + [ + -73.432668, + 45.510133 + ], + [ + -73.432669, + 45.510142 + ], + [ + -73.43267, + 45.510151 + ], + [ + -73.432671, + 45.51016 + ], + [ + -73.432672, + 45.510169 + ], + [ + -73.432673, + 45.510178 + ], + [ + -73.432674, + 45.510187 + ], + [ + -73.432676, + 45.510196 + ], + [ + -73.432677, + 45.510205 + ], + [ + -73.432679, + 45.510214 + ], + [ + -73.43268, + 45.510223 + ], + [ + -73.432682, + 45.510232 + ], + [ + -73.432684, + 45.510241 + ], + [ + -73.432685, + 45.51025 + ], + [ + -73.432687, + 45.510259 + ], + [ + -73.432689, + 45.510268 + ], + [ + -73.43269, + 45.510277 + ], + [ + -73.432692, + 45.510286 + ], + [ + -73.432694, + 45.510295 + ], + [ + -73.432696, + 45.510304 + ], + [ + -73.432698, + 45.510313 + ], + [ + -73.4327, + 45.510322 + ], + [ + -73.432702, + 45.510331 + ], + [ + -73.432705, + 45.51034 + ], + [ + -73.432707, + 45.510349 + ], + [ + -73.432709, + 45.510358 + ], + [ + -73.432711, + 45.510367 + ], + [ + -73.432714, + 45.510376 + ], + [ + -73.432716, + 45.510385 + ], + [ + -73.432719, + 45.510394 + ], + [ + -73.432721, + 45.510403 + ], + [ + -73.432724, + 45.510412 + ], + [ + -73.432727, + 45.510421 + ], + [ + -73.432729, + 45.510426 + ], + [ + -73.432732, + 45.510435 + ], + [ + -73.432736, + 45.510453 + ], + [ + -73.432878, + 45.510894 + ], + [ + -73.432913, + 45.511002 + ], + [ + -73.433005, + 45.510989 + ], + [ + -73.433027, + 45.510984 + ], + [ + -73.43304, + 45.51098 + ], + [ + -73.433052, + 45.51098 + ], + [ + -73.433065, + 45.51098 + ], + [ + -73.433077, + 45.510975 + ], + [ + -73.43309, + 45.510975 + ], + [ + -73.433103, + 45.510975 + ], + [ + -73.433115, + 45.510971 + ], + [ + -73.433128, + 45.510971 + ], + [ + -73.433141, + 45.510971 + ], + [ + -73.433153, + 45.510971 + ], + [ + -73.433166, + 45.510971 + ], + [ + -73.433179, + 45.510971 + ], + [ + -73.433192, + 45.510971 + ], + [ + -73.433205, + 45.510971 + ], + [ + -73.433653, + 45.510973 + ], + [ + -73.433981, + 45.510974 + ], + [ + -73.434422, + 45.510976 + ], + [ + -73.434437, + 45.510976 + ], + [ + -73.43445, + 45.510976 + ], + [ + -73.434463, + 45.510976 + ], + [ + -73.434476, + 45.510971 + ], + [ + -73.434488, + 45.510971 + ], + [ + -73.434501, + 45.510971 + ], + [ + -73.434514, + 45.510971 + ], + [ + -73.434527, + 45.510971 + ], + [ + -73.434539, + 45.510967 + ], + [ + -73.434552, + 45.510967 + ], + [ + -73.434565, + 45.510967 + ], + [ + -73.434578, + 45.510967 + ], + [ + -73.43459, + 45.510962 + ], + [ + -73.434603, + 45.510962 + ], + [ + -73.434615, + 45.510962 + ], + [ + -73.434628, + 45.510958 + ], + [ + -73.43464, + 45.510958 + ], + [ + -73.434653, + 45.510958 + ], + [ + -73.434666, + 45.510953 + ], + [ + -73.434678, + 45.510953 + ], + [ + -73.43469, + 45.510949 + ], + [ + -73.434703, + 45.510949 + ], + [ + -73.434716, + 45.510945 + ], + [ + -73.434728, + 45.510945 + ], + [ + -73.43474, + 45.51094 + ], + [ + -73.434752, + 45.51094 + ], + [ + -73.434765, + 45.510936 + ], + [ + -73.434777, + 45.510936 + ], + [ + -73.43479, + 45.510931 + ], + [ + -73.434802, + 45.510931 + ], + [ + -73.434814, + 45.510927 + ], + [ + -73.434826, + 45.510922 + ], + [ + -73.434838, + 45.510922 + ], + [ + -73.43485, + 45.510918 + ], + [ + -73.434862, + 45.510913 + ], + [ + -73.434874, + 45.510913 + ], + [ + -73.434886, + 45.510909 + ], + [ + -73.434898, + 45.510904 + ], + [ + -73.43491, + 45.5109 + ], + [ + -73.434922, + 45.5109 + ], + [ + -73.434934, + 45.510895 + ], + [ + -73.434946, + 45.510891 + ], + [ + -73.434957, + 45.510886 + ], + [ + -73.434969, + 45.510886 + ], + [ + -73.43498, + 45.510882 + ], + [ + -73.434992, + 45.510877 + ], + [ + -73.435004, + 45.510873 + ], + [ + -73.435015, + 45.510868 + ], + [ + -73.435027, + 45.510864 + ], + [ + -73.435038, + 45.510859 + ], + [ + -73.435049, + 45.510855 + ], + [ + -73.435061, + 45.51085 + ], + [ + -73.435072, + 45.510846 + ], + [ + -73.435083, + 45.510846 + ], + [ + -73.435095, + 45.510841 + ], + [ + -73.435105, + 45.510837 + ], + [ + -73.435117, + 45.510832 + ], + [ + -73.435127, + 45.510823 + ], + [ + -73.435139, + 45.510819 + ], + [ + -73.435149, + 45.510814 + ], + [ + -73.43516, + 45.51081 + ], + [ + -73.435171, + 45.510805 + ], + [ + -73.435181, + 45.510801 + ], + [ + -73.435192, + 45.510796 + ], + [ + -73.435203, + 45.510792 + ], + [ + -73.435213, + 45.510787 + ], + [ + -73.435223, + 45.510783 + ], + [ + -73.435234, + 45.510774 + ], + [ + -73.435244, + 45.510769 + ], + [ + -73.435255, + 45.510765 + ], + [ + -73.435265, + 45.51076 + ], + [ + -73.435275, + 45.510756 + ], + [ + -73.435285, + 45.510747 + ], + [ + -73.435296, + 45.510742 + ], + [ + -73.435308, + 45.510733 + ], + [ + -73.435318, + 45.510729 + ], + [ + -73.435328, + 45.510724 + ], + [ + -73.435338, + 45.51072 + ], + [ + -73.435347, + 45.510711 + ], + [ + -73.435357, + 45.510706 + ], + [ + -73.435367, + 45.510702 + ], + [ + -73.435377, + 45.510697 + ], + [ + -73.435387, + 45.510688 + ], + [ + -73.435396, + 45.510684 + ], + [ + -73.435405, + 45.510679 + ], + [ + -73.435415, + 45.51067 + ], + [ + -73.435424, + 45.510666 + ], + [ + -73.435433, + 45.510657 + ], + [ + -73.435443, + 45.510652 + ], + [ + -73.435451, + 45.510648 + ], + [ + -73.435461, + 45.510639 + ], + [ + -73.43547, + 45.510634 + ], + [ + -73.435478, + 45.510625 + ], + [ + -73.435487, + 45.510621 + ], + [ + -73.435496, + 45.510612 + ], + [ + -73.435504, + 45.510608 + ], + [ + -73.435513, + 45.510599 + ], + [ + -73.435521, + 45.510594 + ], + [ + -73.43553, + 45.510585 + ], + [ + -73.435538, + 45.510581 + ], + [ + -73.435546, + 45.510572 + ], + [ + -73.435554, + 45.510567 + ], + [ + -73.435562, + 45.510558 + ], + [ + -73.43557, + 45.510554 + ], + [ + -73.435578, + 45.510545 + ], + [ + -73.435586, + 45.510536 + ], + [ + -73.435593, + 45.510531 + ], + [ + -73.435601, + 45.510522 + ], + [ + -73.435608, + 45.510518 + ], + [ + -73.435616, + 45.510509 + ], + [ + -73.435623, + 45.5105 + ], + [ + -73.43563, + 45.510495 + ], + [ + -73.435637, + 45.510486 + ], + [ + -73.435786, + 45.510314 + ], + [ + -73.435893, + 45.510189 + ], + [ + -73.435988, + 45.510081 + ], + [ + -73.435895, + 45.510041 + ], + [ + -73.435854, + 45.510023 + ], + [ + -73.435569, + 45.509897 + ], + [ + -73.435099, + 45.509695 + ], + [ + -73.434856, + 45.50959 + ], + [ + -73.434287, + 45.509355 + ], + [ + -73.434257, + 45.509343 + ], + [ + -73.433925, + 45.509203 + ], + [ + -73.433726, + 45.509117 + ], + [ + -73.433485, + 45.509005 + ], + [ + -73.433108, + 45.508806 + ], + [ + -73.432574, + 45.508487 + ], + [ + -73.432044, + 45.508167 + ], + [ + -73.432083, + 45.508041 + ], + [ + -73.432114, + 45.508014 + ], + [ + -73.432209, + 45.507974 + ], + [ + -73.435178, + 45.507773 + ], + [ + -73.437575, + 45.507662 + ], + [ + -73.438988, + 45.507572 + ], + [ + -73.440344, + 45.507425 + ], + [ + -73.442164, + 45.507306 + ], + [ + -73.445881, + 45.507063 + ], + [ + -73.452257, + 45.506638 + ], + [ + -73.452565, + 45.506616 + ], + [ + -73.453776, + 45.50654 + ], + [ + -73.455247, + 45.506419 + ], + [ + -73.456957, + 45.50624 + ], + [ + -73.460279, + 45.505832 + ], + [ + -73.460374, + 45.505823 + ], + [ + -73.461182, + 45.505728 + ], + [ + -73.463671, + 45.505509 + ], + [ + -73.465111, + 45.505401 + ], + [ + -73.467755, + 45.505222 + ], + [ + -73.468692, + 45.505168 + ], + [ + -73.470746, + 45.505025 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488612, + 45.504213 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492937, + 45.510118 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.494937, + 45.511118 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.504854, + 45.514415 + ], + [ + -73.505124, + 45.514484 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505795, + 45.514661 + ], + [ + -73.506452, + 45.514846 + ], + [ + -73.507164, + 45.515048 + ], + [ + -73.507456, + 45.515138 + ], + [ + -73.507602, + 45.515179 + ], + [ + -73.508624, + 45.515521 + ], + [ + -73.509081, + 45.515723 + ], + [ + -73.509444, + 45.515844 + ], + [ + -73.5095, + 45.51586 + ], + [ + -73.509792, + 45.515939 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.514667, + 45.519318 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521463, + 45.52089 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.521312, + 45.523446 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 256, + "properties": { + "id": "e65be9d9-e2e2-4365-8673-02fa4a5c2cf6", + "data": { + "gtfs": { + "shape_id": "428_1_A" + }, + "segments": [ + { + "distanceMeters": 1017, + "travelTimeSeconds": 91 + }, + { + "distanceMeters": 1474, + "travelTimeSeconds": 132 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 405, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 687, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 798, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 16, + "travelTimeSeconds": 2 + }, + { + "distanceMeters": 659, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 112, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 5529, + "travelTimeSeconds": 706 + }, + { + "distanceMeters": 1072, + "travelTimeSeconds": 157 + }, + { + "distanceMeters": 2189, + "travelTimeSeconds": 323 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 14799, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 9940.111341084536, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.51, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 7.71, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.51 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "7b3cddda-c6ba-4d35-a936-01ff21d1501b", + "59f3ce33-037e-4929-8dad-491a01b3dda7", + "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", + "4012bfc4-334d-4b7d-9898-4cfd802d0479", + "784dd9cc-281a-47d9-8014-a2e6add384f6", + "3ce1139e-888c-4783-a57f-da50952eee26", + "90f9f389-96b4-444b-8d1b-774cf89df3c1", + "eb8bc90f-a856-480f-ac1f-7bb1795b4dab", + "0af40567-79a9-4b30-b572-639f90fb42b3", + "d0283e5b-f03b-432a-aa08-aa7137cbe6e7", + "d0283e5b-f03b-432a-aa08-aa7137cbe6e7", + "0c9c2b52-ead4-4bb7-9085-39aca76f0358", + "48cbd834-3690-4d56-af66-277be54f9820", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "93c23fdb-a643-4cd8-b412-82efdc167623", + "segments": [ + 0, + 22, + 28, + 32, + 35, + 37, + 40, + 44, + 52, + 60, + 61, + 282, + 288, + 354, + 376 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 256, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.362247, + 45.450781 + ], + [ + -73.362089, + 45.45068 + ], + [ + -73.361154, + 45.450101 + ], + [ + -73.360532, + 45.449715 + ], + [ + -73.360474, + 45.44968 + ], + [ + -73.360435, + 45.449657 + ], + [ + -73.360398, + 45.449646 + ], + [ + -73.360356, + 45.44964 + ], + [ + -73.360313, + 45.449642 + ], + [ + -73.360274, + 45.449652 + ], + [ + -73.360247, + 45.449663 + ], + [ + -73.360219, + 45.44968 + ], + [ + -73.360198, + 45.449699 + ], + [ + -73.360057, + 45.449891 + ], + [ + -73.35979, + 45.450256 + ], + [ + -73.35882, + 45.451554 + ], + [ + -73.358327, + 45.452213 + ], + [ + -73.357938, + 45.452733 + ], + [ + -73.357928, + 45.45275 + ], + [ + -73.357921, + 45.452769 + ], + [ + -73.357919, + 45.452788 + ], + [ + -73.357921, + 45.452807 + ], + [ + -73.357927, + 45.452825 + ], + [ + -73.357937, + 45.452843 + ], + [ + -73.35795, + 45.45286 + ], + [ + -73.357968, + 45.452874 + ], + [ + -73.357988, + 45.452887 + ], + [ + -73.358011, + 45.452897 + ], + [ + -73.358192, + 45.452963 + ], + [ + -73.358583, + 45.453108 + ], + [ + -73.35859, + 45.45311 + ], + [ + -73.358937, + 45.453238 + ], + [ + -73.359397, + 45.453408 + ], + [ + -73.359918, + 45.4536 + ], + [ + -73.36037, + 45.453772 + ], + [ + -73.360234, + 45.453956 + ], + [ + -73.360192, + 45.454011 + ], + [ + -73.358218, + 45.456659 + ], + [ + -73.357928, + 45.457051 + ], + [ + -73.356938, + 45.45839 + ], + [ + -73.355713, + 45.460008 + ], + [ + -73.3556, + 45.460159 + ], + [ + -73.35416, + 45.462083 + ], + [ + -73.3541, + 45.462163 + ], + [ + -73.352901, + 45.46379 + ], + [ + -73.35259, + 45.464211 + ], + [ + -73.352126, + 45.464849 + ], + [ + -73.351672, + 45.465456 + ], + [ + -73.351443, + 45.465762 + ], + [ + -73.351359, + 45.46587 + ], + [ + -73.351837, + 45.465977 + ], + [ + -73.351922, + 45.465996 + ], + [ + -73.352686, + 45.466204 + ], + [ + -73.353192, + 45.466362 + ], + [ + -73.35394, + 45.466629 + ], + [ + -73.354945, + 45.467022 + ], + [ + -73.358732, + 45.468538 + ], + [ + -73.359966, + 45.469035 + ], + [ + -73.364425, + 45.470817 + ], + [ + -73.365193, + 45.471119 + ], + [ + -73.366237, + 45.47153 + ], + [ + -73.367803, + 45.472117 + ], + [ + -73.373493, + 45.474148 + ], + [ + -73.37362, + 45.474193 + ], + [ + -73.374589, + 45.474539 + ], + [ + -73.376526, + 45.475231 + ], + [ + -73.377036, + 45.475416 + ], + [ + -73.377771, + 45.475696 + ], + [ + -73.378232, + 45.475885 + ], + [ + -73.378528, + 45.476015 + ], + [ + -73.378654, + 45.47607 + ], + [ + -73.378768, + 45.47612 + ], + [ + -73.378901, + 45.476178 + ], + [ + -73.379339, + 45.476381 + ], + [ + -73.379772, + 45.476598 + ], + [ + -73.381287, + 45.47738 + ], + [ + -73.384241, + 45.478906 + ], + [ + -73.385044, + 45.479321 + ], + [ + -73.385847, + 45.479736 + ], + [ + -73.388432, + 45.481069 + ], + [ + -73.389334, + 45.481534 + ], + [ + -73.389467, + 45.481602 + ], + [ + -73.38959, + 45.481669 + ], + [ + -73.390071, + 45.481927 + ], + [ + -73.390313, + 45.482057 + ], + [ + -73.390427, + 45.482115 + ], + [ + -73.393166, + 45.483526 + ], + [ + -73.393715, + 45.483828 + ], + [ + -73.393921, + 45.48395 + ], + [ + -73.394117, + 45.484078 + ], + [ + -73.394183, + 45.484121 + ], + [ + -73.394326, + 45.48422 + ], + [ + -73.394526, + 45.48436 + ], + [ + -73.394852, + 45.484608 + ], + [ + -73.395097, + 45.484806 + ], + [ + -73.395347, + 45.485022 + ], + [ + -73.395593, + 45.485252 + ], + [ + -73.396213, + 45.485884 + ], + [ + -73.396316, + 45.48599 + ], + [ + -73.396877, + 45.486562 + ], + [ + -73.397253, + 45.486945 + ], + [ + -73.397988, + 45.487693 + ], + [ + -73.398409, + 45.488127 + ], + [ + -73.398503, + 45.488224 + ], + [ + -73.400292, + 45.490061 + ], + [ + -73.40033, + 45.4901 + ], + [ + -73.400631, + 45.490403 + ], + [ + -73.40073, + 45.490503 + ], + [ + -73.40103, + 45.490791 + ], + [ + -73.401471, + 45.491169 + ], + [ + -73.401956, + 45.491543 + ], + [ + -73.402249, + 45.491741 + ], + [ + -73.402251, + 45.491742 + ], + [ + -73.402357, + 45.491809 + ], + [ + -73.40251, + 45.491908 + ], + [ + -73.402561, + 45.491939 + ], + [ + -73.403076, + 45.492241 + ], + [ + -73.403455, + 45.492444 + ], + [ + -73.403515, + 45.492473 + ], + [ + -73.403928, + 45.492669 + ], + [ + -73.40395, + 45.492679 + ], + [ + -73.405646, + 45.493445 + ], + [ + -73.406276, + 45.493729 + ], + [ + -73.406465, + 45.493815 + ], + [ + -73.407044, + 45.494076 + ], + [ + -73.407318, + 45.494207 + ], + [ + -73.407449, + 45.49427 + ], + [ + -73.408138, + 45.494635 + ], + [ + -73.40856, + 45.494868 + ], + [ + -73.408708, + 45.49495 + ], + [ + -73.408748, + 45.494972 + ], + [ + -73.408851, + 45.495036 + ], + [ + -73.4093, + 45.495297 + ], + [ + -73.410398, + 45.49591 + ], + [ + -73.410587, + 45.49601 + ], + [ + -73.410729, + 45.496085 + ], + [ + -73.411068, + 45.496248 + ], + [ + -73.41156, + 45.496461 + ], + [ + -73.411587, + 45.496473 + ], + [ + -73.412271, + 45.49673 + ], + [ + -73.412864, + 45.496955 + ], + [ + -73.413661, + 45.497245 + ], + [ + -73.414507, + 45.497553 + ], + [ + -73.415733, + 45.497998 + ], + [ + -73.416459, + 45.498262 + ], + [ + -73.416635, + 45.498326 + ], + [ + -73.416723, + 45.498362 + ], + [ + -73.417312, + 45.498592 + ], + [ + -73.417435, + 45.498648 + ], + [ + -73.417607, + 45.498727 + ], + [ + -73.418042, + 45.498952 + ], + [ + -73.418335, + 45.499128 + ], + [ + -73.418479, + 45.499214 + ], + [ + -73.418764, + 45.499407 + ], + [ + -73.419209, + 45.499737 + ], + [ + -73.419305, + 45.499808 + ], + [ + -73.419729, + 45.500092 + ], + [ + -73.419878, + 45.500182 + ], + [ + -73.420342, + 45.50043 + ], + [ + -73.420683, + 45.500593 + ], + [ + -73.420784, + 45.500641 + ], + [ + -73.420878, + 45.500678 + ], + [ + -73.421089, + 45.500763 + ], + [ + -73.421557, + 45.500934 + ], + [ + -73.421727, + 45.500998 + ], + [ + -73.422541, + 45.501286 + ], + [ + -73.423018, + 45.501457 + ], + [ + -73.423256, + 45.501542 + ], + [ + -73.423423, + 45.501602 + ], + [ + -73.424204, + 45.50188 + ], + [ + -73.425906, + 45.502485 + ], + [ + -73.426184, + 45.502584 + ], + [ + -73.427788, + 45.503152 + ], + [ + -73.428083, + 45.503265 + ], + [ + -73.428273, + 45.50335 + ], + [ + -73.428512, + 45.503472 + ], + [ + -73.428643, + 45.503549 + ], + [ + -73.428884, + 45.503715 + ], + [ + -73.428992, + 45.503801 + ], + [ + -73.429012, + 45.50382 + ], + [ + -73.429175, + 45.503967 + ], + [ + -73.429253, + 45.504057 + ], + [ + -73.429303, + 45.504111 + ], + [ + -73.429332, + 45.504143 + ], + [ + -73.429383, + 45.504202 + ], + [ + -73.429473, + 45.50434 + ], + [ + -73.429494, + 45.504373 + ], + [ + -73.429599, + 45.504566 + ], + [ + -73.429648, + 45.504679 + ], + [ + -73.429656, + 45.504708 + ], + [ + -73.429758, + 45.505057 + ], + [ + -73.429929, + 45.505827 + ], + [ + -73.430026, + 45.506263 + ], + [ + -73.430066, + 45.506425 + ], + [ + -73.430099, + 45.506555 + ], + [ + -73.430103, + 45.506573 + ], + [ + -73.4302, + 45.506807 + ], + [ + -73.430341, + 45.507086 + ], + [ + -73.430485, + 45.507257 + ], + [ + -73.430506, + 45.507276 + ], + [ + -73.430509, + 45.507278 + ], + [ + -73.430608, + 45.507365 + ], + [ + -73.430672, + 45.507415 + ], + [ + -73.431358, + 45.507856 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431709, + 45.508009 + ], + [ + -73.431787, + 45.508005 + ], + [ + -73.432209, + 45.507974 + ], + [ + -73.433133, + 45.507911 + ], + [ + -73.435178, + 45.507773 + ], + [ + -73.437575, + 45.507662 + ], + [ + -73.438988, + 45.507572 + ], + [ + -73.440344, + 45.507425 + ], + [ + -73.445881, + 45.507063 + ], + [ + -73.452257, + 45.506638 + ], + [ + -73.452565, + 45.506616 + ], + [ + -73.453776, + 45.50654 + ], + [ + -73.455247, + 45.506419 + ], + [ + -73.456957, + 45.50624 + ], + [ + -73.460279, + 45.505832 + ], + [ + -73.460374, + 45.505823 + ], + [ + -73.461182, + 45.505728 + ], + [ + -73.463671, + 45.505509 + ], + [ + -73.465111, + 45.505401 + ], + [ + -73.467755, + 45.505222 + ], + [ + -73.468692, + 45.505168 + ], + [ + -73.470746, + 45.505025 + ], + [ + -73.472121, + 45.50494 + ], + [ + -73.479386, + 45.504451 + ], + [ + -73.482646, + 45.504173 + ], + [ + -73.483259, + 45.50411 + ], + [ + -73.483854, + 45.504011 + ], + [ + -73.484273, + 45.503934 + ], + [ + -73.485135, + 45.503799 + ], + [ + -73.486648, + 45.503552 + ], + [ + -73.487047, + 45.503503 + ], + [ + -73.487239, + 45.503494 + ], + [ + -73.48743, + 45.503494 + ], + [ + -73.487616, + 45.503512 + ], + [ + -73.487795, + 45.503543 + ], + [ + -73.48796, + 45.503597 + ], + [ + -73.48811, + 45.503678 + ], + [ + -73.488242, + 45.503768 + ], + [ + -73.488356, + 45.503876 + ], + [ + -73.48854, + 45.504115 + ], + [ + -73.488726, + 45.504371 + ], + [ + -73.488813, + 45.504511 + ], + [ + -73.489184, + 45.505132 + ], + [ + -73.489777, + 45.506126 + ], + [ + -73.490112, + 45.506666 + ], + [ + -73.490463, + 45.507201 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491318, + 45.508448 + ], + [ + -73.491611, + 45.508785 + ], + [ + -73.491934, + 45.509114 + ], + [ + -73.492109, + 45.509276 + ], + [ + -73.492486, + 45.5096 + ], + [ + -73.492892, + 45.509906 + ], + [ + -73.493105, + 45.51005 + ], + [ + -73.493324, + 45.510189 + ], + [ + -73.493692, + 45.51041 + ], + [ + -73.494018, + 45.510585 + ], + [ + -73.494514, + 45.510828 + ], + [ + -73.495039, + 45.511049 + ], + [ + -73.495599, + 45.511256 + ], + [ + -73.496194, + 45.511454 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505454, + 45.514325 + ], + [ + -73.505464, + 45.514054 + ], + [ + -73.505469, + 45.513811 + ], + [ + -73.505477, + 45.513748 + ], + [ + -73.50548, + 45.513717 + ], + [ + -73.505507, + 45.513609 + ], + [ + -73.505553, + 45.513433 + ], + [ + -73.505595, + 45.513348 + ], + [ + -73.506073, + 45.512792 + ], + [ + -73.506238, + 45.512601 + ], + [ + -73.506521, + 45.512711 + ], + [ + -73.508131, + 45.513338 + ], + [ + -73.508577, + 45.513516 + ], + [ + -73.508741, + 45.513581 + ], + [ + -73.509393, + 45.513802 + ], + [ + -73.50981, + 45.513942 + ], + [ + -73.510118, + 45.514045 + ], + [ + -73.511388, + 45.514467 + ], + [ + -73.511507, + 45.514508 + ], + [ + -73.512165, + 45.514728 + ], + [ + -73.512742, + 45.514926 + ], + [ + -73.512796, + 45.514944 + ], + [ + -73.514447, + 45.515507 + ], + [ + -73.514563, + 45.515547 + ], + [ + -73.515414, + 45.515844 + ], + [ + -73.516876, + 45.516355 + ], + [ + -73.51692, + 45.51637 + ], + [ + -73.51723, + 45.516486 + ], + [ + -73.517318, + 45.516518 + ], + [ + -73.517741, + 45.516671 + ], + [ + -73.517978, + 45.516757 + ], + [ + -73.518077, + 45.516793 + ], + [ + -73.518456, + 45.516887 + ], + [ + -73.519037, + 45.517035 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.51928, + 45.51725 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 257, + "properties": { + "id": "1f575636-0a21-4e11-9e80-b512219639d2", + "data": { + "gtfs": { + "shape_id": "442_1_A" + }, + "segments": [ + { + "distanceMeters": 179, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 382, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 391, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 2010, + "travelTimeSeconds": 350 + }, + { + "distanceMeters": 445, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 1511, + "travelTimeSeconds": 327 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 422, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 6840, + "travelTimeSeconds": 703 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 112 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 986, + "travelTimeSeconds": 307 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 300, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 19010, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 14806.765317530806, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.34, + "travelTimeWithoutDwellTimesSeconds": 3000, + "operatingTimeWithLayoverTimeSeconds": 3300, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3000, + "operatingSpeedWithLayoverMetersPerSecond": 5.76, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.34 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "79ae40e4-ac61-4b2e-a0be-b4970ad0e618", + "21eee29a-2e1c-4976-998c-3e4733f522e7", + "35bbf632-18f8-44dd-ab04-b98a1c0d6a9e", + "391ee800-682d-4882-8762-f7283ff37556", + "ffb2037a-ed82-4fd2-9ba4-9740ffc9fc74", + "9fdbce5a-94e4-48ab-912d-f3a78f30abc3", + "13b8a3e4-2729-40dc-9d31-6c29415c10b5", + "88e03d45-747f-4e6b-aeb6-97810526c65b", + "13ce318e-8a74-454a-940f-02135b69457c", + "e9563d31-b4cc-432d-bbf1-a6ee47aee4e9", + "2cd6db83-9a4e-4640-91da-759ec9e4a386", + "0d06d238-233e-42a1-9804-43854d3b5184", + "9f7ffafe-2aab-4507-b571-cce792adfb7d", + "819870cc-ffb6-4a2a-add6-5b056cc3e4c0", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", + "7c34d8fb-52d2-4cf7-8954-ff69847540ac", + "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", + "76b4c3d5-f580-480d-bfec-c2639dd60d13", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", + "e654777c-6941-47f5-a273-d73ab074f10e", + "bb148567-d18f-49e1-a388-f782610c5390", + "e8e5c7df-2edf-4749-98c2-97962c7eff9c", + "a0b2e96c-f14a-4143-9ef3-8bb0e0e8a984", + "1b175835-d1cc-4713-943f-5472ffaa8fea", + "b4fcda7a-779e-4762-b2e5-038988d405be", + "2227a38f-9c32-4890-9719-eef7445fa1fc", + "969092dd-fcfd-493a-be55-d0467c757fb1", + "2a197d72-1b4b-4077-a350-4c8656ad7bb1", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "f250cba5-329e-4403-912d-778f924ce25e", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "22be7e88-a8c8-415f-a757-b989b6589ae2", + "segments": [ + 0, + 3, + 15, + 29, + 36, + 38, + 41, + 42, + 44, + 47, + 62, + 69, + 89, + 97, + 102, + 105, + 112, + 118, + 122, + 128, + 134, + 141, + 144, + 159, + 167, + 170, + 185, + 191, + 287, + 291, + 299, + 301, + 306, + 312 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 257, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521033, + 45.524294 + ], + [ + -73.521034, + 45.524292 + ], + [ + -73.521052, + 45.524153 + ], + [ + -73.521052, + 45.524139 + ], + [ + -73.521046, + 45.524117 + ], + [ + -73.520997, + 45.524108 + ], + [ + -73.520954, + 45.524103 + ], + [ + -73.520233, + 45.524077 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519706, + 45.52323 + ], + [ + -73.519869, + 45.522907 + ], + [ + -73.520158, + 45.522337 + ], + [ + -73.520306, + 45.521899 + ], + [ + -73.520306, + 45.521896 + ], + [ + -73.520354, + 45.521696 + ], + [ + -73.520401, + 45.521498 + ], + [ + -73.520405, + 45.521373 + ], + [ + -73.520409, + 45.52119 + ], + [ + -73.520398, + 45.521025 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.518849, + 45.516987 + ], + [ + -73.518456, + 45.516887 + ], + [ + -73.518077, + 45.516793 + ], + [ + -73.517978, + 45.516757 + ], + [ + -73.517741, + 45.516671 + ], + [ + -73.517506, + 45.516587 + ], + [ + -73.517318, + 45.516518 + ], + [ + -73.51692, + 45.51637 + ], + [ + -73.516876, + 45.516355 + ], + [ + -73.515414, + 45.515844 + ], + [ + -73.514738, + 45.515608 + ], + [ + -73.514563, + 45.515547 + ], + [ + -73.512796, + 45.514944 + ], + [ + -73.512165, + 45.514728 + ], + [ + -73.511603, + 45.51454 + ], + [ + -73.511507, + 45.514508 + ], + [ + -73.511388, + 45.514467 + ], + [ + -73.510118, + 45.514045 + ], + [ + -73.50981, + 45.513942 + ], + [ + -73.509393, + 45.513802 + ], + [ + -73.508886, + 45.51363 + ], + [ + -73.508741, + 45.513581 + ], + [ + -73.508131, + 45.513338 + ], + [ + -73.506746, + 45.512799 + ], + [ + -73.506238, + 45.512601 + ], + [ + -73.506149, + 45.512565 + ], + [ + -73.505965, + 45.512765 + ], + [ + -73.505455, + 45.513321 + ], + [ + -73.505293, + 45.513586 + ], + [ + -73.505209, + 45.513825 + ], + [ + -73.505166, + 45.51396 + ], + [ + -73.505075, + 45.513931 + ], + [ + -73.504451, + 45.513734 + ], + [ + -73.50434, + 45.513699 + ], + [ + -73.504259, + 45.513672 + ], + [ + -73.503369, + 45.513397 + ], + [ + -73.502433, + 45.51315 + ], + [ + -73.502048, + 45.513078 + ], + [ + -73.501411, + 45.512898 + ], + [ + -73.50108, + 45.512799 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496939, + 45.511467 + ], + [ + -73.496617, + 45.51135 + ], + [ + -73.496018, + 45.511148 + ], + [ + -73.495656, + 45.511031 + ], + [ + -73.495265, + 45.510887 + ], + [ + -73.494937, + 45.510756 + ], + [ + -73.494619, + 45.510608 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488355, + 45.503066 + ], + [ + -73.4883, + 45.502913 + ], + [ + -73.488266, + 45.502751 + ], + [ + -73.488219, + 45.502531 + ], + [ + -73.488223, + 45.502405 + ], + [ + -73.488245, + 45.502293 + ], + [ + -73.488296, + 45.502185 + ], + [ + -73.488375, + 45.502086 + ], + [ + -73.488484, + 45.502 + ], + [ + -73.488609, + 45.501937 + ], + [ + -73.48874, + 45.501892 + ], + [ + -73.48888, + 45.501865 + ], + [ + -73.489028, + 45.501856 + ], + [ + -73.489181, + 45.501865 + ], + [ + -73.489324, + 45.501892 + ], + [ + -73.489461, + 45.501933 + ], + [ + -73.489585, + 45.501991 + ], + [ + -73.489692, + 45.502068 + ], + [ + -73.489786, + 45.502153 + ], + [ + -73.489942, + 45.502342 + ], + [ + -73.490006, + 45.50245 + ], + [ + -73.490054, + 45.502558 + ], + [ + -73.490086, + 45.502666 + ], + [ + -73.490092, + 45.502779 + ], + [ + -73.490064, + 45.502891 + ], + [ + -73.490004, + 45.502995 + ], + [ + -73.489917, + 45.503094 + ], + [ + -73.489808, + 45.503175 + ], + [ + -73.489675, + 45.503242 + ], + [ + -73.489524, + 45.503287 + ], + [ + -73.489359, + 45.50331 + ], + [ + -73.489186, + 45.503323 + ], + [ + -73.488817, + 45.503318 + ], + [ + -73.487515, + 45.503242 + ], + [ + -73.486872, + 45.503273 + ], + [ + -73.486502, + 45.503323 + ], + [ + -73.486146, + 45.503381 + ], + [ + -73.484224, + 45.503808 + ], + [ + -73.483407, + 45.503957 + ], + [ + -73.482922, + 45.504029 + ], + [ + -73.482166, + 45.504114 + ], + [ + -73.481092, + 45.504204 + ], + [ + -73.4802, + 45.504262 + ], + [ + -73.47719, + 45.50446 + ], + [ + -73.47149, + 45.504839 + ], + [ + -73.464792, + 45.505284 + ], + [ + -73.464234, + 45.505325 + ], + [ + -73.463301, + 45.505392 + ], + [ + -73.461784, + 45.505526 + ], + [ + -73.460686, + 45.505647 + ], + [ + -73.45799, + 45.505984 + ], + [ + -73.456776, + 45.506127 + ], + [ + -73.455209, + 45.506284 + ], + [ + -73.454382, + 45.506356 + ], + [ + -73.450186, + 45.506642 + ], + [ + -73.439577, + 45.507343 + ], + [ + -73.439057, + 45.507379 + ], + [ + -73.438071, + 45.507414 + ], + [ + -73.437444, + 45.507428 + ], + [ + -73.436265, + 45.507427 + ], + [ + -73.435664, + 45.507418 + ], + [ + -73.434127, + 45.507354 + ], + [ + -73.432178, + 45.507299 + ], + [ + -73.431539, + 45.507276 + ], + [ + -73.431249, + 45.507253 + ], + [ + -73.430998, + 45.507221 + ], + [ + -73.430892, + 45.507194 + ], + [ + -73.430804, + 45.507163 + ], + [ + -73.430726, + 45.507118 + ], + [ + -73.430664, + 45.507073 + ], + [ + -73.43046, + 45.50692 + ], + [ + -73.430405, + 45.506816 + ], + [ + -73.430319, + 45.506587 + ], + [ + -73.430298, + 45.506497 + ], + [ + -73.430275, + 45.506389 + ], + [ + -73.430272, + 45.506375 + ], + [ + -73.430221, + 45.506056 + ], + [ + -73.430115, + 45.505571 + ], + [ + -73.430024, + 45.505153 + ], + [ + -73.430022, + 45.505142 + ], + [ + -73.429926, + 45.504769 + ], + [ + -73.429899, + 45.5047 + ], + [ + -73.429809, + 45.504476 + ], + [ + -73.429754, + 45.504373 + ], + [ + -73.4297, + 45.504274 + ], + [ + -73.429598, + 45.504134 + ], + [ + -73.429585, + 45.504116 + ], + [ + -73.429534, + 45.504058 + ], + [ + -73.429455, + 45.503968 + ], + [ + -73.429429, + 45.503936 + ], + [ + -73.429234, + 45.503747 + ], + [ + -73.429121, + 45.503648 + ], + [ + -73.429007, + 45.503562 + ], + [ + -73.428781, + 45.503414 + ], + [ + -73.428662, + 45.503344 + ], + [ + -73.428528, + 45.503265 + ], + [ + -73.428383, + 45.503193 + ], + [ + -73.428061, + 45.503062 + ], + [ + -73.427348, + 45.502808 + ], + [ + -73.426607, + 45.502544 + ], + [ + -73.426292, + 45.502431 + ], + [ + -73.424346, + 45.501738 + ], + [ + -73.423912, + 45.501584 + ], + [ + -73.423518, + 45.501444 + ], + [ + -73.423081, + 45.501291 + ], + [ + -73.422609, + 45.501122 + ], + [ + -73.422513, + 45.501088 + ], + [ + -73.421932, + 45.500878 + ], + [ + -73.421552, + 45.500741 + ], + [ + -73.421135, + 45.500578 + ], + [ + -73.420988, + 45.50052 + ], + [ + -73.420974, + 45.500516 + ], + [ + -73.420915, + 45.500489 + ], + [ + -73.420674, + 45.50038 + ], + [ + -73.420367, + 45.500227 + ], + [ + -73.41991, + 45.499962 + ], + [ + -73.419471, + 45.499673 + ], + [ + -73.419335, + 45.49957 + ], + [ + -73.419049, + 45.499354 + ], + [ + -73.418625, + 45.499061 + ], + [ + -73.418366, + 45.498904 + ], + [ + -73.418232, + 45.498822 + ], + [ + -73.417884, + 45.498642 + ], + [ + -73.417509, + 45.498478 + ], + [ + -73.417338, + 45.498403 + ], + [ + -73.416887, + 45.498227 + ], + [ + -73.416873, + 45.498222 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.415848, + 45.497845 + ], + [ + -73.415069, + 45.497555 + ], + [ + -73.414637, + 45.497397 + ], + [ + -73.413391, + 45.496942 + ], + [ + -73.413106, + 45.496838 + ], + [ + -73.41213, + 45.496482 + ], + [ + -73.411766, + 45.496343 + ], + [ + -73.411419, + 45.496194 + ], + [ + -73.411024, + 45.49601 + ], + [ + -73.410951, + 45.495977 + ], + [ + -73.410895, + 45.495951 + ], + [ + -73.410789, + 45.495896 + ], + [ + -73.409735, + 45.495323 + ], + [ + -73.409349, + 45.495112 + ], + [ + -73.409109, + 45.494973 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.408825, + 45.494811 + ], + [ + -73.408434, + 45.49459 + ], + [ + -73.408369, + 45.494555 + ], + [ + -73.408119, + 45.494419 + ], + [ + -73.407735, + 45.494211 + ], + [ + -73.407122, + 45.493914 + ], + [ + -73.406637, + 45.493695 + ], + [ + -73.406594, + 45.493675 + ], + [ + -73.404056, + 45.49253 + ], + [ + -73.40355, + 45.492282 + ], + [ + -73.403081, + 45.492034 + ], + [ + -73.402782, + 45.491854 + ], + [ + -73.402767, + 45.491845 + ], + [ + -73.402626, + 45.491759 + ], + [ + -73.402493, + 45.491674 + ], + [ + -73.402463, + 45.491651 + ], + [ + -73.402075, + 45.491386 + ], + [ + -73.401668, + 45.491075 + ], + [ + -73.401599, + 45.491016 + ], + [ + -73.401167, + 45.490642 + ], + [ + -73.400821, + 45.490307 + ], + [ + -73.40081, + 45.490296 + ], + [ + -73.398806, + 45.488243 + ], + [ + -73.398629, + 45.488062 + ], + [ + -73.398311, + 45.487738 + ], + [ + -73.397543, + 45.486952 + ], + [ + -73.397073, + 45.486473 + ], + [ + -73.396669, + 45.486059 + ], + [ + -73.396515, + 45.485901 + ], + [ + -73.395797, + 45.485167 + ], + [ + -73.395424, + 45.48482 + ], + [ + -73.39519, + 45.484626 + ], + [ + -73.394903, + 45.484401 + ], + [ + -73.394655, + 45.484216 + ], + [ + -73.39454, + 45.484131 + ], + [ + -73.394481, + 45.484095 + ], + [ + -73.394291, + 45.483964 + ], + [ + -73.393942, + 45.483748 + ], + [ + -73.393737, + 45.48363 + ], + [ + -73.393666, + 45.48359 + ], + [ + -73.393194, + 45.483333 + ], + [ + -73.389927, + 45.481655 + ], + [ + -73.389604, + 45.481489 + ], + [ + -73.389467, + 45.481417 + ], + [ + -73.38933, + 45.481345 + ], + [ + -73.389073, + 45.481214 + ], + [ + -73.388666, + 45.481007 + ], + [ + -73.388028, + 45.480701 + ], + [ + -73.387051, + 45.480205 + ], + [ + -73.385931, + 45.479623 + ], + [ + -73.385914, + 45.479614 + ], + [ + -73.385138, + 45.479213 + ], + [ + -73.38433, + 45.478794 + ], + [ + -73.37988, + 45.476499 + ], + [ + -73.379478, + 45.476301 + ], + [ + -73.37895, + 45.476057 + ], + [ + -73.378863, + 45.476016 + ], + [ + -73.378865, + 45.476016 + ], + [ + -73.378727, + 45.475958 + ], + [ + -73.378232, + 45.475746 + ], + [ + -73.377593, + 45.475489 + ], + [ + -73.37695, + 45.47525 + ], + [ + -73.376248, + 45.474999 + ], + [ + -73.373728, + 45.474097 + ], + [ + -73.373694, + 45.474085 + ], + [ + -73.368355, + 45.47218 + ], + [ + -73.366776, + 45.471598 + ], + [ + -73.365525, + 45.471115 + ], + [ + -73.365275, + 45.471016 + ], + [ + -73.364278, + 45.470619 + ], + [ + -73.360061, + 45.468936 + ], + [ + -73.358811, + 45.468435 + ], + [ + -73.354674, + 45.466783 + ], + [ + -73.353925, + 45.466489 + ], + [ + -73.353417, + 45.466309 + ], + [ + -73.352648, + 45.466065 + ], + [ + -73.351871, + 45.465857 + ], + [ + -73.351443, + 45.465762 + ], + [ + -73.351763, + 45.465334 + ], + [ + -73.352126, + 45.464849 + ], + [ + -73.352221, + 45.464719 + ], + [ + -73.35259, + 45.464211 + ], + [ + -73.352891, + 45.463802 + ], + [ + -73.35408, + 45.462191 + ], + [ + -73.3541, + 45.462163 + ], + [ + -73.355121, + 45.4608 + ], + [ + -73.355713, + 45.460008 + ], + [ + -73.356938, + 45.45839 + ], + [ + -73.357619, + 45.45747 + ], + [ + -73.358218, + 45.456659 + ], + [ + -73.360284, + 45.453888 + ], + [ + -73.36037, + 45.453772 + ], + [ + -73.360735, + 45.453904 + ], + [ + -73.360808, + 45.45392 + ], + [ + -73.36085, + 45.453914 + ], + [ + -73.36089, + 45.453881 + ], + [ + -73.360947, + 45.453822 + ], + [ + -73.361614, + 45.452902 + ], + [ + -73.362345, + 45.451917 + ], + [ + -73.362884, + 45.45119 + ], + [ + -73.362862, + 45.451175 + ], + [ + -73.362247, + 45.450781 + ], + [ + -73.362089, + 45.45068 + ], + [ + -73.361154, + 45.450101 + ], + [ + -73.360523, + 45.44971 + ], + [ + -73.360474, + 45.44968 + ], + [ + -73.360435, + 45.449657 + ], + [ + -73.360398, + 45.449646 + ], + [ + -73.360356, + 45.44964 + ], + [ + -73.360313, + 45.449642 + ], + [ + -73.360274, + 45.449652 + ], + [ + -73.360247, + 45.449663 + ], + [ + -73.360219, + 45.44968 + ], + [ + -73.360198, + 45.449699 + ], + [ + -73.360099, + 45.449834 + ], + [ + -73.35979, + 45.450256 + ], + [ + -73.358814, + 45.451561 + ], + [ + -73.358327, + 45.452213 + ], + [ + -73.357938, + 45.452733 + ], + [ + -73.357928, + 45.45275 + ], + [ + -73.357921, + 45.452769 + ], + [ + -73.357919, + 45.452788 + ], + [ + -73.357921, + 45.452807 + ], + [ + -73.357927, + 45.452825 + ], + [ + -73.357937, + 45.452843 + ], + [ + -73.35795, + 45.45286 + ], + [ + -73.357968, + 45.452874 + ], + [ + -73.357988, + 45.452887 + ], + [ + -73.358011, + 45.452897 + ], + [ + -73.358125, + 45.452939 + ], + [ + -73.358583, + 45.453108 + ], + [ + -73.35859, + 45.45311 + ], + [ + -73.358937, + 45.453238 + ], + [ + -73.359397, + 45.453408 + ], + [ + -73.359918, + 45.4536 + ], + [ + -73.36037, + 45.453772 + ], + [ + -73.360187, + 45.454019 + ] + ] + }, + "id": 258, + "properties": { + "id": "a3b57247-f724-438c-82d8-5256dba724b6", + "data": { + "gtfs": { + "shape_id": "442_1_R" + }, + "segments": [ + { + "distanceMeters": 1078, + "travelTimeSeconds": 192 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 7318, + "travelTimeSeconds": 660 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 426, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 366, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 508, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 467, + "travelTimeSeconds": 112 + }, + { + "distanceMeters": 1059, + "travelTimeSeconds": 254 + }, + { + "distanceMeters": 463, + "travelTimeSeconds": 112 + }, + { + "distanceMeters": 2025, + "travelTimeSeconds": 371 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 419, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 82 + }, + { + "distanceMeters": 466, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 93 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 67 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 300, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 19839, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 14775.303039053631, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.61, + "travelTimeWithoutDwellTimesSeconds": 3000, + "operatingTimeWithLayoverTimeSeconds": 3300, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 3000, + "operatingSpeedWithLayoverMetersPerSecond": 6.01, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.61 + }, + "mode": "bus", + "name": "Pacific", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "f250cba5-329e-4403-912d-778f924ce25e", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "f1be4054-f28c-45a4-bc0b-58b82e1e6e83", + "969092dd-fcfd-493a-be55-d0467c757fb1", + "2227a38f-9c32-4890-9719-eef7445fa1fc", + "648a2d3d-42dd-4ea9-875b-0eb410b8b1e8", + "74cb2351-ff1a-4938-8179-802bb3572f42", + "b904303e-de8b-4c71-8b48-48af0de2a9a1", + "61fd8171-4497-441f-b32a-7917186d6014", + "7de9ea25-e152-4431-8cc3-23b5e1427ab3", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "5dd96d41-c4eb-4453-9e97-752999b1688d", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "df4c6e14-8093-4f02-87d3-4b3d84466b04", + "7c34d8fb-52d2-4cf7-8954-ff69847540ac", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "7b30134c-a936-4c6b-8038-780d1041baea", + "9f7ffafe-2aab-4507-b571-cce792adfb7d", + "f7cea010-bc23-4b23-9787-ee1c97385691", + "021fa80e-da9f-408b-be90-bb5e978d84f8", + "2cd6db83-9a4e-4640-91da-759ec9e4a386", + "e9563d31-b4cc-432d-bbf1-a6ee47aee4e9", + "67c19007-add6-4dc0-8788-d8052cdf5468", + "88e03d45-747f-4e6b-aeb6-97810526c65b", + "6879e62e-b2af-404b-9ac0-810ced89b9c5", + "584e7592-5868-423c-a0f3-f7047fcc0c94", + "ffb2037a-ed82-4fd2-9ba4-9740ffc9fc74", + "79ae40e4-ac61-4b2e-a0be-b4970ad0e618", + "21eee29a-2e1c-4976-998c-3e4733f522e7", + "35bbf632-18f8-44dd-ab04-b98a1c0d6a9e", + "391ee800-682d-4882-8762-f7283ff37556", + "ffb2037a-ed82-4fd2-9ba4-9740ffc9fc74" + ], + "stops": [], + "line_id": "22be7e88-a8c8-415f-a757-b989b6589ae2", + "segments": [ + 0, + 42, + 47, + 51, + 57, + 60, + 187, + 195, + 209, + 211, + 219, + 236, + 242, + 246, + 252, + 260, + 266, + 276, + 281, + 287, + 295, + 309, + 317, + 332, + 336, + 337, + 339, + 342, + 344, + 355, + 358, + 370, + 384 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 258, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.411928, + 45.570873 + ], + [ + -73.411891, + 45.570502 + ], + [ + -73.411065, + 45.570571 + ], + [ + -73.411129, + 45.571102 + ], + [ + -73.410994, + 45.571255 + ], + [ + -73.410936, + 45.571321 + ], + [ + -73.410765, + 45.571334 + ], + [ + -73.410748, + 45.571184 + ], + [ + -73.410704, + 45.570776 + ], + [ + -73.410746, + 45.570577 + ], + [ + -73.410818, + 45.570477 + ], + [ + -73.410908, + 45.570418 + ], + [ + -73.410929, + 45.570405 + ], + [ + -73.411046, + 45.570363 + ], + [ + -73.41119, + 45.570304 + ], + [ + -73.411249, + 45.570286 + ], + [ + -73.411367, + 45.570251 + ], + [ + -73.411813, + 45.570182 + ], + [ + -73.413694, + 45.569892 + ], + [ + -73.415055, + 45.5697 + ], + [ + -73.415864, + 45.569597 + ], + [ + -73.41641, + 45.569548 + ], + [ + -73.418229, + 45.569432 + ], + [ + -73.41904, + 45.56937 + ], + [ + -73.419878, + 45.569294 + ], + [ + -73.426759, + 45.568912 + ], + [ + -73.427489, + 45.568885 + ], + [ + -73.427815, + 45.568881 + ], + [ + -73.428531, + 45.568895 + ], + [ + -73.428876, + 45.568913 + ], + [ + -73.429847, + 45.568986 + ], + [ + -73.430756, + 45.569103 + ], + [ + -73.431676, + 45.569266 + ], + [ + -73.435387, + 45.570051 + ], + [ + -73.442647, + 45.571598 + ], + [ + -73.444001, + 45.571954 + ], + [ + -73.444216, + 45.572008 + ], + [ + -73.444233, + 45.572012 + ], + [ + -73.44467, + 45.572157 + ], + [ + -73.445015, + 45.572283 + ], + [ + -73.445181, + 45.57235 + ], + [ + -73.445342, + 45.572427 + ], + [ + -73.445468, + 45.572499 + ], + [ + -73.445561, + 45.572589 + ], + [ + -73.445628, + 45.57267 + ], + [ + -73.445681, + 45.572765 + ], + [ + -73.44571, + 45.572873 + ], + [ + -73.445721, + 45.572972 + ], + [ + -73.445714, + 45.573066 + ], + [ + -73.445681, + 45.573174 + ], + [ + -73.44564, + 45.57325 + ], + [ + -73.445407, + 45.573621 + ], + [ + -73.444953, + 45.573633 + ], + [ + -73.44492, + 45.573618 + ], + [ + -73.444872, + 45.573601 + ], + [ + -73.444829, + 45.573598 + ], + [ + -73.444749, + 45.573615 + ], + [ + -73.44471, + 45.573635 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.44419, + 45.573529 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.443615, + 45.573315 + ], + [ + -73.443539, + 45.573203 + ], + [ + -73.44348, + 45.573034 + ], + [ + -73.443427, + 45.572912 + ], + [ + -73.44336, + 45.572841 + ], + [ + -73.443253, + 45.572772 + ], + [ + -73.443199, + 45.572746 + ], + [ + -73.443114, + 45.572731 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442722, + 45.572934 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.446746, + 45.574587 + ], + [ + -73.447238, + 45.574749 + ], + [ + -73.447388, + 45.574789 + ], + [ + -73.447436, + 45.574664 + ], + [ + -73.447747, + 45.574246 + ], + [ + -73.447911, + 45.574048 + ], + [ + -73.448003, + 45.573949 + ], + [ + -73.448105, + 45.573859 + ], + [ + -73.448208, + 45.573776 + ], + [ + -73.448217, + 45.573769 + ], + [ + -73.448342, + 45.573688 + ], + [ + -73.448479, + 45.573616 + ], + [ + -73.448612, + 45.573562 + ], + [ + -73.448944, + 45.573459 + ], + [ + -73.449123, + 45.573428 + ], + [ + -73.449305, + 45.573405 + ], + [ + -73.4495, + 45.573396 + ], + [ + -73.449708, + 45.573401 + ], + [ + -73.450131, + 45.573437 + ], + [ + -73.45057, + 45.573487 + ], + [ + -73.452027, + 45.573685 + ], + [ + -73.45367, + 45.573951 + ], + [ + -73.455009, + 45.57424 + ], + [ + -73.456205, + 45.574501 + ], + [ + -73.457846, + 45.574844 + ], + [ + -73.459196, + 45.575101 + ], + [ + -73.460081, + 45.575263 + ], + [ + -73.460408, + 45.575326 + ], + [ + -73.462346, + 45.575705 + ], + [ + -73.463166, + 45.575871 + ], + [ + -73.466047, + 45.576484 + ], + [ + -73.467519, + 45.576809 + ], + [ + -73.469081, + 45.577137 + ], + [ + -73.469847, + 45.5773 + ], + [ + -73.46993, + 45.577318 + ], + [ + -73.470459, + 45.57743 + ], + [ + -73.474313, + 45.578254 + ], + [ + -73.475326, + 45.578471 + ], + [ + -73.475636, + 45.578538 + ], + [ + -73.475932, + 45.578601 + ], + [ + -73.476433, + 45.578707 + ], + [ + -73.481329, + 45.579745 + ], + [ + -73.48155, + 45.579795 + ], + [ + -73.484545, + 45.580447 + ], + [ + -73.485965, + 45.580767 + ], + [ + -73.497124, + 45.583147 + ], + [ + -73.508904, + 45.585656 + ], + [ + -73.509302, + 45.58574 + ], + [ + -73.509739, + 45.585835 + ], + [ + -73.510248, + 45.585943 + ], + [ + -73.510753, + 45.58605 + ], + [ + -73.511089, + 45.586122 + ], + [ + -73.512652, + 45.586456 + ], + [ + -73.513072, + 45.586547 + ], + [ + -73.513383, + 45.586622 + ], + [ + -73.513615, + 45.586679 + ], + [ + -73.513896, + 45.586752 + ], + [ + -73.51435, + 45.586877 + ], + [ + -73.514692, + 45.586978 + ], + [ + -73.514943, + 45.587051 + ], + [ + -73.515214, + 45.587137 + ], + [ + -73.515381, + 45.587189 + ], + [ + -73.515499, + 45.58723 + ], + [ + -73.515615, + 45.587265 + ], + [ + -73.515863, + 45.587347 + ], + [ + -73.516018, + 45.587396 + ], + [ + -73.516093, + 45.587421 + ], + [ + -73.516263, + 45.587478 + ], + [ + -73.516374, + 45.587512 + ], + [ + -73.517412, + 45.587855 + ], + [ + -73.517647, + 45.587929 + ], + [ + -73.517898, + 45.588012 + ], + [ + -73.518165, + 45.5881 + ], + [ + -73.518383, + 45.588169 + ], + [ + -73.51862, + 45.588243 + ], + [ + -73.518873, + 45.588329 + ], + [ + -73.519146, + 45.588421 + ], + [ + -73.519592, + 45.588583 + ], + [ + -73.519868, + 45.588673 + ], + [ + -73.520234, + 45.588791 + ], + [ + -73.520667, + 45.588925 + ], + [ + -73.520851, + 45.588978 + ], + [ + -73.521073, + 45.589039 + ], + [ + -73.521333, + 45.589108 + ], + [ + -73.521497, + 45.589152 + ], + [ + -73.521544, + 45.589163 + ], + [ + -73.521823, + 45.58923 + ], + [ + -73.522033, + 45.589281 + ], + [ + -73.522524, + 45.589399 + ], + [ + -73.522914, + 45.589494 + ], + [ + -73.52345, + 45.589622 + ], + [ + -73.523991, + 45.589764 + ], + [ + -73.52438, + 45.58988 + ], + [ + -73.524584, + 45.589945 + ], + [ + -73.524734, + 45.589998 + ], + [ + -73.52493, + 45.590067 + ], + [ + -73.525178, + 45.590158 + ], + [ + -73.525533, + 45.5903 + ], + [ + -73.526168, + 45.590581 + ], + [ + -73.526515, + 45.590738 + ], + [ + -73.526839, + 45.590884 + ], + [ + -73.527065, + 45.590977 + ], + [ + -73.527417, + 45.591124 + ], + [ + -73.527746, + 45.591255 + ], + [ + -73.527969, + 45.591342 + ], + [ + -73.528175, + 45.59142 + ], + [ + -73.52845, + 45.591517 + ], + [ + -73.528558, + 45.591559 + ], + [ + -73.528686, + 45.591601 + ], + [ + -73.528843, + 45.591657 + ], + [ + -73.528989, + 45.591705 + ], + [ + -73.529147, + 45.591753 + ], + [ + -73.529298, + 45.591799 + ], + [ + -73.529667, + 45.591896 + ], + [ + -73.530088, + 45.591993 + ], + [ + -73.530428, + 45.592062 + ], + [ + -73.530573, + 45.592092 + ], + [ + -73.530708, + 45.592118 + ], + [ + -73.530821, + 45.59214 + ], + [ + -73.531509, + 45.592269 + ], + [ + -73.531903, + 45.592341 + ], + [ + -73.532263, + 45.592438 + ], + [ + -73.532659, + 45.592533 + ], + [ + -73.532915, + 45.592591 + ], + [ + -73.533081, + 45.592632 + ], + [ + -73.533228, + 45.592666 + ], + [ + -73.534254, + 45.592895 + ], + [ + -73.53476, + 45.593005 + ], + [ + -73.535125, + 45.593079 + ], + [ + -73.53543, + 45.59314 + ], + [ + -73.535913, + 45.593237 + ], + [ + -73.536223, + 45.593308 + ], + [ + -73.536422, + 45.593363 + ], + [ + -73.536757, + 45.593427 + ], + [ + -73.536928, + 45.593461 + ], + [ + -73.537323, + 45.593537 + ], + [ + -73.53774, + 45.59364 + ], + [ + -73.538073, + 45.593797 + ], + [ + -73.538329, + 45.593961 + ], + [ + -73.538376, + 45.594194 + ], + [ + -73.538248, + 45.594374 + ], + [ + -73.538003, + 45.594472 + ], + [ + -73.537828, + 45.594497 + ], + [ + -73.537529, + 45.594425 + ], + [ + -73.536539, + 45.594133 + ], + [ + -73.536896, + 45.593513 + ], + [ + -73.536928, + 45.593461 + ], + [ + -73.537021, + 45.593311 + ], + [ + -73.537094, + 45.593191 + ], + [ + -73.537199, + 45.593022 + ], + [ + -73.537249, + 45.59294 + ], + [ + -73.537595, + 45.592349 + ], + [ + -73.538187, + 45.591323 + ], + [ + -73.538445, + 45.590876 + ], + [ + -73.539019, + 45.589891 + ], + [ + -73.538858, + 45.589857 + ], + [ + -73.538782, + 45.58985 + ], + [ + -73.538619, + 45.589794 + ], + [ + -73.537871, + 45.589536 + ], + [ + -73.537763, + 45.589685 + ], + [ + -73.537641, + 45.589854 + ], + [ + -73.53791, + 45.589946 + ], + [ + -73.538217, + 45.59005 + ], + [ + -73.538311, + 45.590083 + ], + [ + -73.538428, + 45.589913 + ], + [ + -73.538041, + 45.58978 + ] + ] + }, + "id": 259, + "properties": { + "id": "d89ca1ad-b258-46cd-b647-9c3b06333f48", + "data": { + "gtfs": { + "shape_id": "461_1_A" + }, + "segments": [ + { + "distanceMeters": 3373, + "travelTimeSeconds": 420 + }, + { + "distanceMeters": 9049, + "travelTimeSeconds": 660 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12422, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10045.180015778305, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 11.5, + "travelTimeWithoutDwellTimesSeconds": 1080, + "operatingTimeWithLayoverTimeSeconds": 1260, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1080, + "operatingSpeedWithLayoverMetersPerSecond": 9.86, + "averageSpeedWithoutDwellTimesMetersPerSecond": 11.5 + }, + "mode": "bus", + "name": "Métro Radisson", + "color": "#A32638", + "nodes": [ + "9c784932-945b-47d8-afa8-e5b73889acfb", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "b49806f2-28c3-484e-bd5a-b46e80d9eb6f" + ], + "stops": [], + "line_id": "8b5a744d-961c-4467-a3ed-a80c77d981a9", + "segments": [ + 0, + 61 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 259, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.538041, + 45.58978 + ], + [ + -73.537763, + 45.589685 + ], + [ + -73.537412, + 45.589569 + ], + [ + -73.537244, + 45.589514 + ], + [ + -73.537175, + 45.589492 + ], + [ + -73.537061, + 45.589663 + ], + [ + -73.537147, + 45.589691 + ], + [ + -73.537641, + 45.589854 + ], + [ + -73.537763, + 45.589685 + ], + [ + -73.537871, + 45.589536 + ], + [ + -73.538619, + 45.589794 + ], + [ + -73.538782, + 45.58985 + ], + [ + -73.538858, + 45.589857 + ], + [ + -73.538292, + 45.590834 + ], + [ + -73.53801, + 45.591289 + ], + [ + -73.53724, + 45.592229 + ], + [ + -73.536919, + 45.592462 + ], + [ + -73.536427, + 45.592632 + ], + [ + -73.536128, + 45.592668 + ], + [ + -73.535634, + 45.592691 + ], + [ + -73.535039, + 45.592586 + ], + [ + -73.534281, + 45.592453 + ], + [ + -73.534162, + 45.592432 + ], + [ + -73.533328, + 45.592284 + ], + [ + -73.532072, + 45.592016 + ], + [ + -73.529941, + 45.591524 + ], + [ + -73.527811, + 45.590825 + ], + [ + -73.527241, + 45.590441 + ], + [ + -73.52689, + 45.590006 + ], + [ + -73.526662, + 45.589263 + ], + [ + -73.526448, + 45.58921 + ], + [ + -73.526375, + 45.58935 + ], + [ + -73.526233, + 45.589625 + ], + [ + -73.526099, + 45.589887 + ], + [ + -73.525936, + 45.590207 + ], + [ + -73.525676, + 45.590715 + ], + [ + -73.525536, + 45.590657 + ], + [ + -73.525437, + 45.590615 + ], + [ + -73.524684, + 45.590291 + ], + [ + -73.523747, + 45.589931 + ], + [ + -73.522883, + 45.5897 + ], + [ + -73.520235, + 45.589073 + ], + [ + -73.520459, + 45.5886 + ], + [ + -73.520755, + 45.588049 + ], + [ + -73.52084, + 45.587831 + ], + [ + -73.521, + 45.587477 + ], + [ + -73.52129, + 45.586836 + ], + [ + -73.521502, + 45.586128 + ], + [ + -73.521883, + 45.584855 + ], + [ + -73.521921, + 45.584808 + ], + [ + -73.521957, + 45.584763 + ], + [ + -73.522003, + 45.584698 + ], + [ + -73.522045, + 45.584645 + ], + [ + -73.522061, + 45.584629 + ], + [ + -73.522081, + 45.58461 + ], + [ + -73.522109, + 45.58459 + ], + [ + -73.522134, + 45.584576 + ], + [ + -73.522163, + 45.584561 + ], + [ + -73.522192, + 45.584549 + ], + [ + -73.522235, + 45.584534 + ], + [ + -73.522274, + 45.584523 + ], + [ + -73.522325, + 45.584515 + ], + [ + -73.522374, + 45.584509 + ], + [ + -73.522429, + 45.58451 + ], + [ + -73.522571, + 45.584531 + ], + [ + -73.52343, + 45.584815 + ], + [ + -73.52376, + 45.584927 + ], + [ + -73.523841, + 45.584954 + ], + [ + -73.523945, + 45.584989 + ], + [ + -73.524016, + 45.585015 + ], + [ + -73.524096, + 45.585047 + ], + [ + -73.524151, + 45.585073 + ], + [ + -73.524197, + 45.585098 + ], + [ + -73.524236, + 45.585122 + ], + [ + -73.524278, + 45.585148 + ], + [ + -73.524324, + 45.585178 + ], + [ + -73.524369, + 45.585214 + ], + [ + -73.524406, + 45.585247 + ], + [ + -73.524463, + 45.585303 + ], + [ + -73.524503, + 45.585349 + ], + [ + -73.524542, + 45.58539 + ], + [ + -73.524569, + 45.58543 + ], + [ + -73.524593, + 45.58547 + ], + [ + -73.52462, + 45.585521 + ], + [ + -73.52464, + 45.58557 + ], + [ + -73.52466, + 45.585624 + ], + [ + -73.524672, + 45.58567 + ], + [ + -73.524685, + 45.585725 + ], + [ + -73.524689, + 45.585768 + ], + [ + -73.524691, + 45.585817 + ], + [ + -73.524689, + 45.585864 + ], + [ + -73.524689, + 45.585869 + ], + [ + -73.524682, + 45.585915 + ], + [ + -73.524667, + 45.585966 + ], + [ + -73.524655, + 45.586011 + ], + [ + -73.524638, + 45.586057 + ], + [ + -73.524579, + 45.586185 + ], + [ + -73.5243, + 45.586752 + ], + [ + -73.524239, + 45.586876 + ], + [ + -73.524205, + 45.586942 + ], + [ + -73.524179, + 45.586987 + ], + [ + -73.524164, + 45.587015 + ], + [ + -73.524145, + 45.587045 + ], + [ + -73.524103, + 45.587109 + ], + [ + -73.524067, + 45.587159 + ], + [ + -73.524034, + 45.587198 + ], + [ + -73.523996, + 45.587242 + ], + [ + -73.523958, + 45.587276 + ], + [ + -73.523927, + 45.587306 + ], + [ + -73.523898, + 45.587332 + ], + [ + -73.523863, + 45.587361 + ], + [ + -73.523831, + 45.587386 + ], + [ + -73.523767, + 45.587435 + ], + [ + -73.5237, + 45.58748 + ], + [ + -73.523647, + 45.587515 + ], + [ + -73.523625, + 45.587528 + ], + [ + -73.523564, + 45.587565 + ], + [ + -73.523503, + 45.587597 + ], + [ + -73.523435, + 45.587631 + ], + [ + -73.523361, + 45.587666 + ], + [ + -73.522995, + 45.587814 + ], + [ + -73.522789, + 45.587888 + ], + [ + -73.522534, + 45.587959 + ], + [ + -73.522332, + 45.588012 + ], + [ + -73.522084, + 45.58807 + ], + [ + -73.521851, + 45.588105 + ], + [ + -73.521643, + 45.588133 + ], + [ + -73.521312, + 45.588151 + ], + [ + -73.521043, + 45.588156 + ], + [ + -73.520917, + 45.588158 + ], + [ + -73.52081, + 45.588158 + ], + [ + -73.520688, + 45.588159 + ], + [ + -73.520523, + 45.588154 + ], + [ + -73.520408, + 45.588148 + ], + [ + -73.520268, + 45.588141 + ], + [ + -73.520163, + 45.588135 + ], + [ + -73.520068, + 45.588129 + ], + [ + -73.51998, + 45.588122 + ], + [ + -73.519887, + 45.588116 + ], + [ + -73.51979, + 45.588107 + ], + [ + -73.519696, + 45.588097 + ], + [ + -73.519541, + 45.588083 + ], + [ + -73.519413, + 45.588068 + ], + [ + -73.519239, + 45.588046 + ], + [ + -73.519068, + 45.588023 + ], + [ + -73.518923, + 45.588002 + ], + [ + -73.518749, + 45.587973 + ], + [ + -73.518537, + 45.587936 + ], + [ + -73.518361, + 45.587901 + ], + [ + -73.518208, + 45.587865 + ], + [ + -73.518073, + 45.587834 + ], + [ + -73.517947, + 45.587803 + ], + [ + -73.517919, + 45.587796 + ], + [ + -73.517669, + 45.587733 + ], + [ + -73.517466, + 45.587675 + ], + [ + -73.517114, + 45.587597 + ], + [ + -73.516945, + 45.587542 + ], + [ + -73.516325, + 45.587341 + ], + [ + -73.515858, + 45.587189 + ], + [ + -73.515252, + 45.586992 + ], + [ + -73.514772, + 45.586839 + ], + [ + -73.514455, + 45.586742 + ], + [ + -73.51397, + 45.586605 + ], + [ + -73.513711, + 45.586533 + ], + [ + -73.51342, + 45.586456 + ], + [ + -73.513232, + 45.586405 + ], + [ + -73.513046, + 45.586357 + ], + [ + -73.512839, + 45.586307 + ], + [ + -73.512478, + 45.586224 + ], + [ + -73.511402, + 45.585995 + ], + [ + -73.508969, + 45.585479 + ], + [ + -73.497184, + 45.582969 + ], + [ + -73.48603, + 45.580596 + ], + [ + -73.484605, + 45.580304 + ], + [ + -73.481594, + 45.579682 + ], + [ + -73.481299, + 45.579619 + ], + [ + -73.476527, + 45.578597 + ], + [ + -73.475793, + 45.57844 + ], + [ + -73.471564, + 45.577476 + ], + [ + -73.470253, + 45.577185 + ], + [ + -73.470227, + 45.577179 + ], + [ + -73.470082, + 45.577148 + ], + [ + -73.469737, + 45.577073 + ], + [ + -73.469494, + 45.57702 + ], + [ + -73.468711, + 45.57685 + ], + [ + -73.465956, + 45.57631 + ], + [ + -73.462443, + 45.575565 + ], + [ + -73.457218, + 45.5744 + ], + [ + -73.456588, + 45.574263 + ], + [ + -73.454467, + 45.573722 + ], + [ + -73.453947, + 45.573587 + ], + [ + -73.453448, + 45.573447 + ], + [ + -73.452981, + 45.573299 + ], + [ + -73.452764, + 45.573218 + ], + [ + -73.452558, + 45.573128 + ], + [ + -73.452363, + 45.573028 + ], + [ + -73.452177, + 45.572916 + ], + [ + -73.452006, + 45.572794 + ], + [ + -73.45185, + 45.572659 + ], + [ + -73.451709, + 45.572515 + ], + [ + -73.451584, + 45.572362 + ], + [ + -73.451481, + 45.5722 + ], + [ + -73.451391, + 45.572034 + ], + [ + -73.451086, + 45.571422 + ], + [ + -73.451003, + 45.571291 + ], + [ + -73.450904, + 45.571179 + ], + [ + -73.450791, + 45.571075 + ], + [ + -73.450667, + 45.570994 + ], + [ + -73.450535, + 45.570922 + ], + [ + -73.450463, + 45.570891 + ], + [ + -73.450402, + 45.570864 + ], + [ + -73.449347, + 45.570476 + ], + [ + -73.449264, + 45.570454 + ], + [ + -73.449093, + 45.570413 + ], + [ + -73.449089, + 45.570422 + ], + [ + -73.44907, + 45.570467 + ], + [ + -73.449049, + 45.570517 + ], + [ + -73.448873, + 45.570917 + ], + [ + -73.448826, + 45.571028 + ], + [ + -73.448823, + 45.571034 + ], + [ + -73.448771, + 45.571164 + ], + [ + -73.44818, + 45.572625 + ], + [ + -73.447654, + 45.573778 + ], + [ + -73.447519, + 45.574084 + ], + [ + -73.447518, + 45.574088 + ], + [ + -73.447455, + 45.574133 + ], + [ + -73.447308, + 45.574407 + ], + [ + -73.447267, + 45.574466 + ], + [ + -73.447241, + 45.574497 + ], + [ + -73.447197, + 45.574529 + ], + [ + -73.447149, + 45.574547 + ], + [ + -73.447112, + 45.574556 + ], + [ + -73.447049, + 45.574565 + ], + [ + -73.446965, + 45.574569 + ], + [ + -73.446884, + 45.574565 + ], + [ + -73.446792, + 45.574547 + ], + [ + -73.446652, + 45.574511 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442789, + 45.572822 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.443147, + 45.572802 + ], + [ + -73.443228, + 45.572879 + ], + [ + -73.443273, + 45.572955 + ], + [ + -73.443271, + 45.573 + ], + [ + -73.443276, + 45.573125 + ], + [ + -73.443281, + 45.573166 + ], + [ + -73.443386, + 45.57326 + ], + [ + -73.443502, + 45.573319 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.44468, + 45.573697 + ], + [ + -73.444697, + 45.573706 + ], + [ + -73.444729, + 45.573713 + ], + [ + -73.444769, + 45.573716 + ], + [ + -73.444831, + 45.573715 + ], + [ + -73.444884, + 45.573708 + ], + [ + -73.44491, + 45.573694 + ], + [ + -73.444953, + 45.573633 + ], + [ + -73.444922, + 45.573619 + ], + [ + -73.44492, + 45.573618 + ], + [ + -73.444872, + 45.573601 + ], + [ + -73.444829, + 45.573598 + ], + [ + -73.444749, + 45.573615 + ], + [ + -73.44471, + 45.573635 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.443539, + 45.573203 + ], + [ + -73.443527, + 45.573169 + ], + [ + -73.44348, + 45.573034 + ], + [ + -73.443427, + 45.572912 + ], + [ + -73.443422, + 45.572907 + ], + [ + -73.44336, + 45.572841 + ], + [ + -73.443253, + 45.572772 + ], + [ + -73.443199, + 45.572746 + ], + [ + -73.443114, + 45.572731 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442327, + 45.572407 + ], + [ + -73.442172, + 45.572214 + ], + [ + -73.442103, + 45.572145 + ], + [ + -73.442041, + 45.572083 + ], + [ + -73.441925, + 45.571984 + ], + [ + -73.441785, + 45.571885 + ], + [ + -73.44164, + 45.571795 + ], + [ + -73.441501, + 45.571723 + ], + [ + -73.4413, + 45.571651 + ], + [ + -73.441159, + 45.571606 + ], + [ + -73.440756, + 45.571507 + ], + [ + -73.440331, + 45.571417 + ], + [ + -73.43982, + 45.571308 + ], + [ + -73.439233, + 45.571191 + ], + [ + -73.43873, + 45.571092 + ], + [ + -73.438292, + 45.571002 + ], + [ + -73.437633, + 45.570857 + ], + [ + -73.43669, + 45.570659 + ], + [ + -73.436314, + 45.570582 + ], + [ + -73.435177, + 45.570334 + ], + [ + -73.434821, + 45.570257 + ], + [ + -73.433907, + 45.570063 + ], + [ + -73.432847, + 45.569838 + ], + [ + -73.431904, + 45.569639 + ], + [ + -73.431328, + 45.569526 + ], + [ + -73.430487, + 45.569386 + ], + [ + -73.430017, + 45.569328 + ], + [ + -73.429624, + 45.569282 + ], + [ + -73.428846, + 45.569228 + ], + [ + -73.428276, + 45.569205 + ], + [ + -73.427493, + 45.5692 + ], + [ + -73.426957, + 45.569213 + ], + [ + -73.426073, + 45.569262 + ], + [ + -73.424538, + 45.569347 + ], + [ + -73.422873, + 45.56944 + ], + [ + -73.421741, + 45.569502 + ], + [ + -73.420778, + 45.569551 + ], + [ + -73.419829, + 45.569604 + ], + [ + -73.417529, + 45.569774 + ], + [ + -73.416713, + 45.569818 + ], + [ + -73.416545, + 45.569832 + ], + [ + -73.41628, + 45.569881 + ], + [ + -73.416182, + 45.569915 + ], + [ + -73.416084, + 45.569948 + ], + [ + -73.415904, + 45.570025 + ], + [ + -73.415778, + 45.570101 + ], + [ + -73.415561, + 45.569988 + ], + [ + -73.415428, + 45.56991 + ], + [ + -73.415319, + 45.569883 + ], + [ + -73.415221, + 45.569874 + ], + [ + -73.413267, + 45.570173 + ], + [ + -73.411891, + 45.570502 + ], + [ + -73.411065, + 45.570571 + ], + [ + -73.411129, + 45.571102 + ], + [ + -73.411942, + 45.571019 + ], + [ + -73.411928, + 45.570873 + ] + ] + }, + "id": 260, + "properties": { + "id": "6c3370dd-0b26-44c5-a53a-a0feff83b46b", + "data": { + "gtfs": { + "shape_id": "461_1_R" + }, + "segments": [ + { + "distanceMeters": 2552, + "travelTimeSeconds": 199 + }, + { + "distanceMeters": 6984, + "travelTimeSeconds": 548 + }, + { + "distanceMeters": 1183, + "travelTimeSeconds": 93 + }, + { + "distanceMeters": 2838, + "travelTimeSeconds": 420 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13556, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10045.180015778305, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 10.76, + "travelTimeWithoutDwellTimesSeconds": 1260, + "operatingTimeWithLayoverTimeSeconds": 1440, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1260, + "operatingSpeedWithLayoverMetersPerSecond": 9.41, + "averageSpeedWithoutDwellTimesMetersPerSecond": 10.76 + }, + "mode": "bus", + "name": "Stat. de Touraine", + "color": "#A32638", + "nodes": [ + "b49806f2-28c3-484e-bd5a-b46e80d9eb6f", + "e3b3b7c9-8cf4-450f-95eb-c8f9836e391d", + "6672cb43-3241-42d7-b5c0-fdaed10338b9", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "9c784932-945b-47d8-afa8-e5b73889acfb" + ], + "stops": [], + "line_id": "8b5a744d-961c-4467-a3ed-a80c77d981a9", + "segments": [ + 0, + 47, + 220, + 280 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 260, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.411928, + 45.570873 + ], + [ + -73.411891, + 45.570502 + ], + [ + -73.411395, + 45.570543 + ], + [ + -73.411065, + 45.570571 + ], + [ + -73.411103, + 45.570891 + ], + [ + -73.411129, + 45.571102 + ], + [ + -73.410936, + 45.571321 + ], + [ + -73.410765, + 45.571334 + ], + [ + -73.410752, + 45.571221 + ], + [ + -73.410748, + 45.571184 + ], + [ + -73.410734, + 45.571049 + ], + [ + -73.410704, + 45.570776 + ], + [ + -73.410746, + 45.570577 + ], + [ + -73.410818, + 45.570477 + ], + [ + -73.410929, + 45.570405 + ], + [ + -73.410955, + 45.570396 + ], + [ + -73.411046, + 45.570363 + ], + [ + -73.41119, + 45.570304 + ], + [ + -73.411249, + 45.570286 + ], + [ + -73.411367, + 45.570251 + ], + [ + -73.411813, + 45.570182 + ], + [ + -73.413694, + 45.569892 + ], + [ + -73.415055, + 45.5697 + ], + [ + -73.415864, + 45.569597 + ], + [ + -73.41641, + 45.569548 + ], + [ + -73.418229, + 45.569432 + ], + [ + -73.41904, + 45.56937 + ], + [ + -73.419878, + 45.569294 + ], + [ + -73.426759, + 45.568912 + ], + [ + -73.427489, + 45.568885 + ], + [ + -73.427815, + 45.568881 + ], + [ + -73.428531, + 45.568895 + ], + [ + -73.428876, + 45.568913 + ], + [ + -73.429847, + 45.568986 + ], + [ + -73.430756, + 45.569103 + ], + [ + -73.431676, + 45.569266 + ], + [ + -73.435387, + 45.570051 + ], + [ + -73.442647, + 45.571598 + ], + [ + -73.444001, + 45.571954 + ], + [ + -73.444215, + 45.572008 + ], + [ + -73.444233, + 45.572012 + ], + [ + -73.44467, + 45.572157 + ], + [ + -73.445015, + 45.572283 + ], + [ + -73.445181, + 45.57235 + ], + [ + -73.445342, + 45.572427 + ], + [ + -73.445468, + 45.572499 + ], + [ + -73.445561, + 45.572589 + ], + [ + -73.445628, + 45.57267 + ], + [ + -73.445681, + 45.572765 + ], + [ + -73.44571, + 45.572873 + ], + [ + -73.445721, + 45.572972 + ], + [ + -73.445714, + 45.573066 + ], + [ + -73.445681, + 45.573174 + ], + [ + -73.44564, + 45.57325 + ], + [ + -73.445407, + 45.573621 + ], + [ + -73.444953, + 45.573633 + ], + [ + -73.44492, + 45.573618 + ], + [ + -73.444872, + 45.573601 + ], + [ + -73.444829, + 45.573598 + ], + [ + -73.444791, + 45.573606 + ], + [ + -73.444749, + 45.573615 + ], + [ + -73.44471, + 45.573635 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.443619, + 45.573322 + ], + [ + -73.443539, + 45.573203 + ], + [ + -73.443522, + 45.573154 + ], + [ + -73.44348, + 45.573034 + ], + [ + -73.443427, + 45.572912 + ], + [ + -73.44336, + 45.572841 + ], + [ + -73.443253, + 45.572772 + ], + [ + -73.443199, + 45.572746 + ], + [ + -73.443114, + 45.572731 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.442812, + 45.572813 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.44273, + 45.572944 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.446746, + 45.574587 + ], + [ + -73.447238, + 45.574749 + ], + [ + -73.447388, + 45.574789 + ], + [ + -73.447436, + 45.574664 + ], + [ + -73.447588, + 45.574459 + ], + [ + -73.447747, + 45.574246 + ], + [ + -73.447911, + 45.574048 + ], + [ + -73.448003, + 45.573949 + ], + [ + -73.448105, + 45.573859 + ], + [ + -73.448217, + 45.573769 + ], + [ + -73.448342, + 45.573688 + ], + [ + -73.448479, + 45.573616 + ], + [ + -73.448612, + 45.573562 + ], + [ + -73.448944, + 45.573459 + ], + [ + -73.449123, + 45.573428 + ], + [ + -73.449305, + 45.573405 + ], + [ + -73.4495, + 45.573396 + ], + [ + -73.449708, + 45.573401 + ], + [ + -73.450131, + 45.573437 + ], + [ + -73.45057, + 45.573487 + ], + [ + -73.452027, + 45.573685 + ], + [ + -73.45367, + 45.573951 + ], + [ + -73.455009, + 45.57424 + ], + [ + -73.456205, + 45.574501 + ], + [ + -73.457846, + 45.574844 + ], + [ + -73.459196, + 45.575101 + ], + [ + -73.460081, + 45.575263 + ], + [ + -73.460408, + 45.575326 + ], + [ + -73.462346, + 45.575705 + ], + [ + -73.463166, + 45.575871 + ], + [ + -73.466047, + 45.576484 + ], + [ + -73.467519, + 45.576809 + ], + [ + -73.469081, + 45.577137 + ], + [ + -73.469847, + 45.5773 + ], + [ + -73.46993, + 45.577318 + ], + [ + -73.470459, + 45.57743 + ], + [ + -73.474313, + 45.578254 + ], + [ + -73.475326, + 45.578471 + ], + [ + -73.475636, + 45.578538 + ], + [ + -73.475932, + 45.578601 + ], + [ + -73.476433, + 45.578707 + ], + [ + -73.481329, + 45.579745 + ], + [ + -73.48155, + 45.579795 + ], + [ + -73.484545, + 45.580447 + ], + [ + -73.485965, + 45.580767 + ], + [ + -73.497124, + 45.583147 + ], + [ + -73.508904, + 45.585656 + ], + [ + -73.509302, + 45.58574 + ], + [ + -73.509739, + 45.585835 + ], + [ + -73.510248, + 45.585943 + ], + [ + -73.510753, + 45.58605 + ], + [ + -73.511089, + 45.586122 + ], + [ + -73.512652, + 45.586456 + ], + [ + -73.513072, + 45.586547 + ], + [ + -73.513383, + 45.586622 + ], + [ + -73.513615, + 45.586679 + ], + [ + -73.513896, + 45.586752 + ], + [ + -73.51435, + 45.586877 + ], + [ + -73.514692, + 45.586978 + ], + [ + -73.514943, + 45.587051 + ], + [ + -73.515214, + 45.587137 + ], + [ + -73.515381, + 45.587189 + ], + [ + -73.515499, + 45.58723 + ], + [ + -73.515615, + 45.587265 + ], + [ + -73.515863, + 45.587347 + ], + [ + -73.516018, + 45.587396 + ], + [ + -73.516093, + 45.587421 + ], + [ + -73.516263, + 45.587478 + ], + [ + -73.516374, + 45.587512 + ], + [ + -73.517412, + 45.587855 + ], + [ + -73.517647, + 45.587929 + ], + [ + -73.517898, + 45.588012 + ], + [ + -73.518165, + 45.5881 + ], + [ + -73.518383, + 45.588169 + ], + [ + -73.51862, + 45.588243 + ], + [ + -73.518873, + 45.588329 + ], + [ + -73.519146, + 45.588421 + ], + [ + -73.519592, + 45.588583 + ], + [ + -73.519868, + 45.588673 + ], + [ + -73.520234, + 45.588791 + ], + [ + -73.520667, + 45.588925 + ], + [ + -73.520851, + 45.588978 + ], + [ + -73.521073, + 45.589039 + ], + [ + -73.521333, + 45.589108 + ], + [ + -73.521497, + 45.589152 + ], + [ + -73.521544, + 45.589163 + ], + [ + -73.521823, + 45.58923 + ], + [ + -73.522033, + 45.589281 + ], + [ + -73.522524, + 45.589399 + ], + [ + -73.522914, + 45.589494 + ], + [ + -73.52345, + 45.589622 + ], + [ + -73.523991, + 45.589764 + ], + [ + -73.52438, + 45.58988 + ], + [ + -73.524584, + 45.589945 + ], + [ + -73.524734, + 45.589998 + ], + [ + -73.52493, + 45.590067 + ], + [ + -73.525178, + 45.590158 + ], + [ + -73.525533, + 45.5903 + ], + [ + -73.526168, + 45.590581 + ], + [ + -73.526515, + 45.590738 + ], + [ + -73.526839, + 45.590884 + ], + [ + -73.527065, + 45.590977 + ], + [ + -73.527417, + 45.591124 + ], + [ + -73.527746, + 45.591255 + ], + [ + -73.527969, + 45.591342 + ], + [ + -73.528175, + 45.59142 + ], + [ + -73.52845, + 45.591517 + ], + [ + -73.528558, + 45.591559 + ], + [ + -73.528686, + 45.591601 + ], + [ + -73.528843, + 45.591657 + ], + [ + -73.528989, + 45.591705 + ], + [ + -73.529147, + 45.591753 + ], + [ + -73.529298, + 45.591799 + ], + [ + -73.529667, + 45.591896 + ], + [ + -73.530088, + 45.591993 + ], + [ + -73.530428, + 45.592062 + ], + [ + -73.530573, + 45.592092 + ], + [ + -73.530708, + 45.592118 + ], + [ + -73.530821, + 45.59214 + ], + [ + -73.531509, + 45.592269 + ], + [ + -73.531903, + 45.592341 + ], + [ + -73.532263, + 45.592438 + ], + [ + -73.532659, + 45.592533 + ], + [ + -73.532915, + 45.592591 + ], + [ + -73.533081, + 45.592632 + ], + [ + -73.533228, + 45.592666 + ], + [ + -73.534254, + 45.592895 + ], + [ + -73.53476, + 45.593005 + ], + [ + -73.535125, + 45.593079 + ], + [ + -73.53543, + 45.59314 + ], + [ + -73.535913, + 45.593237 + ], + [ + -73.536223, + 45.593308 + ], + [ + -73.536422, + 45.593363 + ], + [ + -73.536757, + 45.593427 + ], + [ + -73.536928, + 45.593461 + ], + [ + -73.537323, + 45.593537 + ], + [ + -73.53774, + 45.59364 + ], + [ + -73.538073, + 45.593797 + ], + [ + -73.538123, + 45.593829 + ], + [ + -73.538329, + 45.593961 + ], + [ + -73.538376, + 45.594194 + ], + [ + -73.538248, + 45.594374 + ], + [ + -73.538003, + 45.594472 + ], + [ + -73.537828, + 45.594497 + ], + [ + -73.537529, + 45.594425 + ], + [ + -73.536539, + 45.594133 + ], + [ + -73.536677, + 45.593894 + ], + [ + -73.536896, + 45.593513 + ], + [ + -73.536928, + 45.593461 + ], + [ + -73.537021, + 45.593311 + ], + [ + -73.537094, + 45.593191 + ], + [ + -73.537199, + 45.593022 + ], + [ + -73.537249, + 45.59294 + ], + [ + -73.537595, + 45.592349 + ], + [ + -73.538187, + 45.591323 + ], + [ + -73.538445, + 45.590876 + ], + [ + -73.539019, + 45.589891 + ], + [ + -73.538947, + 45.589876 + ], + [ + -73.538858, + 45.589857 + ], + [ + -73.538782, + 45.58985 + ], + [ + -73.538619, + 45.589794 + ], + [ + -73.537871, + 45.589536 + ], + [ + -73.537817, + 45.58961 + ], + [ + -73.537763, + 45.589685 + ], + [ + -73.537641, + 45.589854 + ], + [ + -73.537821, + 45.589916 + ], + [ + -73.53791, + 45.589946 + ], + [ + -73.538217, + 45.59005 + ], + [ + -73.538311, + 45.590083 + ], + [ + -73.538428, + 45.589913 + ], + [ + -73.538076, + 45.589792 + ], + [ + -73.537763, + 45.589685 + ], + [ + -73.537578, + 45.589624 + ], + [ + -73.537412, + 45.589569 + ], + [ + -73.537175, + 45.589492 + ], + [ + -73.537061, + 45.589663 + ], + [ + -73.537641, + 45.589854 + ], + [ + -73.537763, + 45.589685 + ], + [ + -73.537871, + 45.589536 + ], + [ + -73.537938, + 45.58956 + ], + [ + -73.538619, + 45.589794 + ], + [ + -73.538782, + 45.58985 + ], + [ + -73.538858, + 45.589857 + ], + [ + -73.539019, + 45.589891 + ], + [ + -73.53908, + 45.589786 + ], + [ + -73.539603, + 45.588892 + ], + [ + -73.539698, + 45.588738 + ], + [ + -73.540181, + 45.587898 + ], + [ + -73.540558, + 45.587265 + ], + [ + -73.540923, + 45.586624 + ], + [ + -73.541297, + 45.585989 + ], + [ + -73.541668, + 45.585348 + ], + [ + -73.542014, + 45.584771 + ], + [ + -73.542262, + 45.584368 + ], + [ + -73.543175, + 45.582804 + ], + [ + -73.543234, + 45.582705 + ], + [ + -73.544095, + 45.581261 + ], + [ + -73.54449, + 45.5806 + ], + [ + -73.544835, + 45.580022 + ], + [ + -73.545619, + 45.578708 + ], + [ + -73.54593, + 45.578171 + ], + [ + -73.546352, + 45.577477 + ], + [ + -73.546757, + 45.57688 + ], + [ + -73.547152, + 45.576294 + ], + [ + -73.547786, + 45.575353 + ], + [ + -73.548196, + 45.574752 + ], + [ + -73.548611, + 45.574145 + ], + [ + -73.548962, + 45.573626 + ], + [ + -73.549018, + 45.573542 + ], + [ + -73.549085, + 45.573442 + ], + [ + -73.549142, + 45.573357 + ], + [ + -73.550328, + 45.571603 + ], + [ + -73.55104, + 45.570571 + ], + [ + -73.551291, + 45.570653 + ], + [ + -73.551645, + 45.570769 + ], + [ + -73.553372, + 45.57133 + ], + [ + -73.555543, + 45.572029 + ], + [ + -73.557413, + 45.572623 + ], + [ + -73.55744, + 45.572632 + ], + [ + -73.557564, + 45.572671 + ], + [ + -73.559908, + 45.573468 + ], + [ + -73.561997, + 45.574181 + ], + [ + -73.562174, + 45.574267 + ], + [ + -73.562347, + 45.574357 + ], + [ + -73.562588, + 45.574437 + ], + [ + -73.562709, + 45.57449 + ], + [ + -73.562817, + 45.574026 + ], + [ + -73.562891, + 45.573712 + ], + [ + -73.562915, + 45.573627 + ], + [ + -73.562992, + 45.573375 + ], + [ + -73.563015, + 45.573302 + ], + [ + -73.563047, + 45.573221 + ], + [ + -73.563128, + 45.573 + ], + [ + -73.563167, + 45.57291 + ], + [ + -73.563211, + 45.572839 + ], + [ + -73.563284, + 45.572732 + ], + [ + -73.56337, + 45.572598 + ], + [ + -73.563414, + 45.572536 + ], + [ + -73.563461, + 45.572474 + ], + [ + -73.563582, + 45.57233 + ], + [ + -73.564111, + 45.571732 + ], + [ + -73.564321, + 45.571496 + ], + [ + -73.564645, + 45.571138 + ], + [ + -73.564966, + 45.570784 + ], + [ + -73.565181, + 45.570542 + ], + [ + -73.56555, + 45.57012 + ], + [ + -73.565728, + 45.569926 + ], + [ + -73.566285, + 45.569299 + ], + [ + -73.566601, + 45.569397 + ], + [ + -73.567019, + 45.56952 + ], + [ + -73.567302, + 45.569607 + ], + [ + -73.568503, + 45.569977 + ], + [ + -73.572272, + 45.571139 + ], + [ + -73.575524, + 45.572154 + ], + [ + -73.575587, + 45.572173 + ], + [ + -73.57604, + 45.572312 + ], + [ + -73.579533, + 45.573393 + ], + [ + -73.579899, + 45.573506 + ], + [ + -73.579472, + 45.574001 + ], + [ + -73.578303, + 45.575356 + ], + [ + -73.578116, + 45.575567 + ], + [ + -73.577241, + 45.576554 + ], + [ + -73.576488, + 45.577423 + ], + [ + -73.575894, + 45.578107 + ], + [ + -73.575304, + 45.578812 + ], + [ + -73.574928, + 45.579367 + ], + [ + -73.574561, + 45.579948 + ], + [ + -73.573383, + 45.581645 + ] + ] + }, + "id": 261, + "properties": { + "id": "a5f35350-ebd7-4bce-b846-e58625e3ae13", + "data": { + "gtfs": { + "shape_id": "462_1_A" + }, + "segments": [ + { + "distanceMeters": 3372, + "travelTimeSeconds": 420 + }, + { + "distanceMeters": 9047, + "travelTimeSeconds": 660 + }, + { + "distanceMeters": 3177, + "travelTimeSeconds": 600 + }, + { + "distanceMeters": 2538, + "travelTimeSeconds": 540 + }, + { + "distanceMeters": 771, + "travelTimeSeconds": 240 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 246, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 18903, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 12625.01647241902, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.68, + "travelTimeWithoutDwellTimesSeconds": 2460, + "operatingTimeWithLayoverTimeSeconds": 2706, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2460, + "operatingSpeedWithLayoverMetersPerSecond": 6.99, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.68 + }, + "mode": "bus", + "name": "Santa Cabrini", + "color": "#A32638", + "nodes": [ + "9c784932-945b-47d8-afa8-e5b73889acfb", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "b49806f2-28c3-484e-bd5a-b46e80d9eb6f", + "171b05ae-a95b-4adb-882d-8ac87dc4790f", + "b92809dc-fe83-4c8b-86e3-0a17f3b710ba", + "30a1fc98-889c-4ed9-b389-c33a3f70398a" + ], + "stops": [], + "line_id": "bbb03fa8-a01f-4a3f-b3d7-9fb1d25cc1fe", + "segments": [ + 0, + 64, + 260, + 307, + 350 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 261, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.573383, + 45.581645 + ], + [ + -73.57334, + 45.581708 + ], + [ + -73.572621, + 45.582745 + ], + [ + -73.572392, + 45.58267 + ], + [ + -73.571541, + 45.582395 + ], + [ + -73.570728, + 45.58212 + ], + [ + -73.569927, + 45.581855 + ], + [ + -73.569447, + 45.581692 + ], + [ + -73.569124, + 45.581582 + ], + [ + -73.568452, + 45.581351 + ], + [ + -73.567709, + 45.581118 + ], + [ + -73.565286, + 45.580304 + ], + [ + -73.561662, + 45.579092 + ], + [ + -73.560085, + 45.578573 + ], + [ + -73.560361, + 45.578146 + ], + [ + -73.56059, + 45.577791 + ], + [ + -73.560778, + 45.577504 + ], + [ + -73.561077, + 45.577042 + ], + [ + -73.561413, + 45.576528 + ], + [ + -73.561801, + 45.575928 + ], + [ + -73.561977, + 45.575656 + ], + [ + -73.562344, + 45.575077 + ], + [ + -73.562612, + 45.574664 + ], + [ + -73.562709, + 45.57449 + ], + [ + -73.562588, + 45.574437 + ], + [ + -73.562448, + 45.574275 + ], + [ + -73.562198, + 45.57417 + ], + [ + -73.561897, + 45.574042 + ], + [ + -73.561521, + 45.573908 + ], + [ + -73.561288, + 45.573833 + ], + [ + -73.559964, + 45.573383 + ], + [ + -73.557817, + 45.57265 + ], + [ + -73.557626, + 45.572585 + ], + [ + -73.557073, + 45.57241 + ], + [ + -73.555593, + 45.571941 + ], + [ + -73.553427, + 45.571237 + ], + [ + -73.551701, + 45.570682 + ], + [ + -73.551112, + 45.570477 + ], + [ + -73.550939, + 45.570423 + ], + [ + -73.550883, + 45.570518 + ], + [ + -73.550486, + 45.571101 + ], + [ + -73.55018, + 45.571551 + ], + [ + -73.548995, + 45.573313 + ], + [ + -73.548927, + 45.573405 + ], + [ + -73.548871, + 45.573497 + ], + [ + -73.548815, + 45.573576 + ], + [ + -73.548762, + 45.573654 + ], + [ + -73.548463, + 45.574096 + ], + [ + -73.548058, + 45.574705 + ], + [ + -73.547656, + 45.575309 + ], + [ + -73.547015, + 45.57625 + ], + [ + -73.546622, + 45.576836 + ], + [ + -73.546215, + 45.577434 + ], + [ + -73.545474, + 45.578656 + ], + [ + -73.5447, + 45.579977 + ], + [ + -73.544352, + 45.580556 + ], + [ + -73.543956, + 45.581218 + ], + [ + -73.543098, + 45.58267 + ], + [ + -73.543033, + 45.582768 + ], + [ + -73.542129, + 45.584328 + ], + [ + -73.541883, + 45.58473 + ], + [ + -73.541539, + 45.585303 + ], + [ + -73.541166, + 45.585944 + ], + [ + -73.540781, + 45.586577 + ], + [ + -73.540419, + 45.587221 + ], + [ + -73.540035, + 45.587853 + ], + [ + -73.539545, + 45.588689 + ], + [ + -73.53945, + 45.58884 + ], + [ + -73.538858, + 45.589857 + ], + [ + -73.538782, + 45.58985 + ], + [ + -73.538771, + 45.589846 + ], + [ + -73.538619, + 45.589794 + ], + [ + -73.537871, + 45.589536 + ], + [ + -73.537825, + 45.589599 + ], + [ + -73.537763, + 45.589685 + ], + [ + -73.537641, + 45.589854 + ], + [ + -73.537737, + 45.589887 + ], + [ + -73.53791, + 45.589946 + ], + [ + -73.538217, + 45.59005 + ], + [ + -73.538311, + 45.590083 + ], + [ + -73.538428, + 45.589913 + ], + [ + -73.53809, + 45.589797 + ], + [ + -73.537763, + 45.589685 + ], + [ + -73.537649, + 45.589647 + ], + [ + -73.537412, + 45.589569 + ], + [ + -73.537175, + 45.589492 + ], + [ + -73.537061, + 45.589663 + ], + [ + -73.537641, + 45.589854 + ], + [ + -73.53769, + 45.589787 + ], + [ + -73.537763, + 45.589685 + ], + [ + -73.537871, + 45.589536 + ], + [ + -73.537994, + 45.589579 + ], + [ + -73.538619, + 45.589794 + ], + [ + -73.538782, + 45.58985 + ], + [ + -73.538858, + 45.589857 + ], + [ + -73.538675, + 45.590172 + ], + [ + -73.538292, + 45.590834 + ], + [ + -73.53801, + 45.591289 + ], + [ + -73.53724, + 45.592229 + ], + [ + -73.536919, + 45.592462 + ], + [ + -73.536427, + 45.592632 + ], + [ + -73.536128, + 45.592668 + ], + [ + -73.535634, + 45.592691 + ], + [ + -73.535039, + 45.592586 + ], + [ + -73.534363, + 45.592467 + ], + [ + -73.534162, + 45.592432 + ], + [ + -73.533328, + 45.592284 + ], + [ + -73.532072, + 45.592016 + ], + [ + -73.529941, + 45.591524 + ], + [ + -73.527811, + 45.590825 + ], + [ + -73.527241, + 45.590441 + ], + [ + -73.52689, + 45.590006 + ], + [ + -73.526662, + 45.589263 + ], + [ + -73.526448, + 45.58921 + ], + [ + -73.526365, + 45.589371 + ], + [ + -73.526233, + 45.589625 + ], + [ + -73.526099, + 45.589887 + ], + [ + -73.525936, + 45.590207 + ], + [ + -73.525676, + 45.590715 + ], + [ + -73.525536, + 45.590657 + ], + [ + -73.525464, + 45.590626 + ], + [ + -73.524684, + 45.590291 + ], + [ + -73.523747, + 45.589931 + ], + [ + -73.522883, + 45.5897 + ], + [ + -73.520235, + 45.589073 + ], + [ + -73.520459, + 45.5886 + ], + [ + -73.520755, + 45.588049 + ], + [ + -73.52084, + 45.587831 + ], + [ + -73.521009, + 45.587456 + ], + [ + -73.52129, + 45.586836 + ], + [ + -73.521496, + 45.58615 + ], + [ + -73.521883, + 45.584855 + ], + [ + -73.521921, + 45.584808 + ], + [ + -73.521957, + 45.584763 + ], + [ + -73.522003, + 45.584698 + ], + [ + -73.522045, + 45.584645 + ], + [ + -73.522061, + 45.584629 + ], + [ + -73.522081, + 45.58461 + ], + [ + -73.522109, + 45.58459 + ], + [ + -73.522134, + 45.584576 + ], + [ + -73.522163, + 45.584561 + ], + [ + -73.522192, + 45.584549 + ], + [ + -73.522235, + 45.584534 + ], + [ + -73.522274, + 45.584523 + ], + [ + -73.522325, + 45.584515 + ], + [ + -73.522374, + 45.584509 + ], + [ + -73.522429, + 45.58451 + ], + [ + -73.522571, + 45.584531 + ], + [ + -73.52343, + 45.584815 + ], + [ + -73.52376, + 45.584927 + ], + [ + -73.523841, + 45.584954 + ], + [ + -73.523945, + 45.584989 + ], + [ + -73.524016, + 45.585015 + ], + [ + -73.524096, + 45.585047 + ], + [ + -73.524151, + 45.585073 + ], + [ + -73.524197, + 45.585098 + ], + [ + -73.524236, + 45.585122 + ], + [ + -73.524278, + 45.585148 + ], + [ + -73.524324, + 45.585178 + ], + [ + -73.524369, + 45.585214 + ], + [ + -73.524406, + 45.585247 + ], + [ + -73.524463, + 45.585303 + ], + [ + -73.524503, + 45.585349 + ], + [ + -73.524542, + 45.58539 + ], + [ + -73.524569, + 45.58543 + ], + [ + -73.524593, + 45.58547 + ], + [ + -73.52462, + 45.585521 + ], + [ + -73.52464, + 45.58557 + ], + [ + -73.52466, + 45.585624 + ], + [ + -73.524672, + 45.58567 + ], + [ + -73.524685, + 45.585725 + ], + [ + -73.524689, + 45.585768 + ], + [ + -73.524691, + 45.585817 + ], + [ + -73.524689, + 45.58586 + ], + [ + -73.524689, + 45.585864 + ], + [ + -73.524682, + 45.585915 + ], + [ + -73.524667, + 45.585966 + ], + [ + -73.524655, + 45.586011 + ], + [ + -73.524638, + 45.586057 + ], + [ + -73.524579, + 45.586185 + ], + [ + -73.5243, + 45.586752 + ], + [ + -73.524239, + 45.586876 + ], + [ + -73.524205, + 45.586942 + ], + [ + -73.524179, + 45.586987 + ], + [ + -73.524164, + 45.587015 + ], + [ + -73.524145, + 45.587045 + ], + [ + -73.524103, + 45.587109 + ], + [ + -73.524067, + 45.587159 + ], + [ + -73.524034, + 45.587198 + ], + [ + -73.523996, + 45.587242 + ], + [ + -73.523958, + 45.587276 + ], + [ + -73.523927, + 45.587306 + ], + [ + -73.523898, + 45.587332 + ], + [ + -73.523863, + 45.587361 + ], + [ + -73.523831, + 45.587386 + ], + [ + -73.523767, + 45.587435 + ], + [ + -73.5237, + 45.58748 + ], + [ + -73.523647, + 45.587515 + ], + [ + -73.523625, + 45.587528 + ], + [ + -73.523564, + 45.587565 + ], + [ + -73.523503, + 45.587597 + ], + [ + -73.523435, + 45.587631 + ], + [ + -73.523361, + 45.587666 + ], + [ + -73.522995, + 45.587814 + ], + [ + -73.522789, + 45.587888 + ], + [ + -73.522534, + 45.587959 + ], + [ + -73.522332, + 45.588012 + ], + [ + -73.522084, + 45.58807 + ], + [ + -73.521851, + 45.588105 + ], + [ + -73.521643, + 45.588133 + ], + [ + -73.521312, + 45.588151 + ], + [ + -73.521043, + 45.588156 + ], + [ + -73.520917, + 45.588158 + ], + [ + -73.52081, + 45.588158 + ], + [ + -73.520688, + 45.588159 + ], + [ + -73.520523, + 45.588154 + ], + [ + -73.520408, + 45.588148 + ], + [ + -73.520268, + 45.588141 + ], + [ + -73.520163, + 45.588135 + ], + [ + -73.520068, + 45.588129 + ], + [ + -73.51998, + 45.588122 + ], + [ + -73.519887, + 45.588116 + ], + [ + -73.51979, + 45.588107 + ], + [ + -73.519696, + 45.588097 + ], + [ + -73.519541, + 45.588083 + ], + [ + -73.519413, + 45.588068 + ], + [ + -73.519239, + 45.588046 + ], + [ + -73.519068, + 45.588023 + ], + [ + -73.518923, + 45.588002 + ], + [ + -73.518749, + 45.587973 + ], + [ + -73.518537, + 45.587936 + ], + [ + -73.518361, + 45.587901 + ], + [ + -73.518208, + 45.587865 + ], + [ + -73.518073, + 45.587834 + ], + [ + -73.517947, + 45.587803 + ], + [ + -73.517919, + 45.587796 + ], + [ + -73.517669, + 45.587733 + ], + [ + -73.517466, + 45.587675 + ], + [ + -73.517114, + 45.587597 + ], + [ + -73.516945, + 45.587542 + ], + [ + -73.516325, + 45.587341 + ], + [ + -73.515858, + 45.587189 + ], + [ + -73.515252, + 45.586992 + ], + [ + -73.514772, + 45.586839 + ], + [ + -73.514455, + 45.586742 + ], + [ + -73.51397, + 45.586605 + ], + [ + -73.513711, + 45.586533 + ], + [ + -73.51342, + 45.586456 + ], + [ + -73.513232, + 45.586405 + ], + [ + -73.513046, + 45.586357 + ], + [ + -73.512839, + 45.586307 + ], + [ + -73.512478, + 45.586224 + ], + [ + -73.511402, + 45.585995 + ], + [ + -73.508969, + 45.585479 + ], + [ + -73.497184, + 45.582969 + ], + [ + -73.48603, + 45.580596 + ], + [ + -73.484605, + 45.580304 + ], + [ + -73.481594, + 45.579682 + ], + [ + -73.481299, + 45.579619 + ], + [ + -73.476527, + 45.578597 + ], + [ + -73.475793, + 45.57844 + ], + [ + -73.471564, + 45.577476 + ], + [ + -73.470253, + 45.577185 + ], + [ + -73.470227, + 45.577179 + ], + [ + -73.470082, + 45.577148 + ], + [ + -73.469737, + 45.577073 + ], + [ + -73.469494, + 45.57702 + ], + [ + -73.468711, + 45.57685 + ], + [ + -73.465956, + 45.57631 + ], + [ + -73.462443, + 45.575565 + ], + [ + -73.457218, + 45.5744 + ], + [ + -73.456588, + 45.574263 + ], + [ + -73.454467, + 45.573722 + ], + [ + -73.453947, + 45.573587 + ], + [ + -73.453448, + 45.573447 + ], + [ + -73.452981, + 45.573299 + ], + [ + -73.452764, + 45.573218 + ], + [ + -73.452558, + 45.573128 + ], + [ + -73.452363, + 45.573028 + ], + [ + -73.452212, + 45.572937 + ], + [ + -73.452177, + 45.572916 + ], + [ + -73.452006, + 45.572794 + ], + [ + -73.45185, + 45.572659 + ], + [ + -73.451709, + 45.572515 + ], + [ + -73.451584, + 45.572362 + ], + [ + -73.451481, + 45.5722 + ], + [ + -73.451391, + 45.572034 + ], + [ + -73.451086, + 45.571422 + ], + [ + -73.451003, + 45.571291 + ], + [ + -73.450904, + 45.571179 + ], + [ + -73.450791, + 45.571075 + ], + [ + -73.450667, + 45.570994 + ], + [ + -73.450535, + 45.570922 + ], + [ + -73.450463, + 45.570891 + ], + [ + -73.450402, + 45.570864 + ], + [ + -73.449347, + 45.570476 + ], + [ + -73.449264, + 45.570454 + ], + [ + -73.449093, + 45.570413 + ], + [ + -73.449089, + 45.570422 + ], + [ + -73.44907, + 45.570467 + ], + [ + -73.449049, + 45.570517 + ], + [ + -73.448873, + 45.570917 + ], + [ + -73.448823, + 45.571034 + ], + [ + -73.44879, + 45.571115 + ], + [ + -73.44818, + 45.572625 + ], + [ + -73.447654, + 45.573778 + ], + [ + -73.447519, + 45.574084 + ], + [ + -73.447518, + 45.574088 + ], + [ + -73.447455, + 45.574133 + ], + [ + -73.447308, + 45.574407 + ], + [ + -73.447295, + 45.574426 + ], + [ + -73.447267, + 45.574466 + ], + [ + -73.447241, + 45.574497 + ], + [ + -73.447197, + 45.574529 + ], + [ + -73.447149, + 45.574547 + ], + [ + -73.447112, + 45.574556 + ], + [ + -73.447049, + 45.574565 + ], + [ + -73.446965, + 45.574569 + ], + [ + -73.446884, + 45.574565 + ], + [ + -73.446792, + 45.574547 + ], + [ + -73.446652, + 45.574511 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442781, + 45.572826 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.443147, + 45.572802 + ], + [ + -73.443228, + 45.572879 + ], + [ + -73.443273, + 45.572955 + ], + [ + -73.443271, + 45.573 + ], + [ + -73.443276, + 45.573125 + ], + [ + -73.443281, + 45.573166 + ], + [ + -73.443386, + 45.57326 + ], + [ + -73.443502, + 45.573319 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.44468, + 45.573697 + ], + [ + -73.444697, + 45.573706 + ], + [ + -73.444729, + 45.573713 + ], + [ + -73.444769, + 45.573716 + ], + [ + -73.444831, + 45.573715 + ], + [ + -73.444879, + 45.573709 + ], + [ + -73.444884, + 45.573708 + ], + [ + -73.44491, + 45.573694 + ], + [ + -73.444953, + 45.573633 + ], + [ + -73.44492, + 45.573618 + ], + [ + -73.444872, + 45.573601 + ], + [ + -73.444829, + 45.573598 + ], + [ + -73.444805, + 45.573603 + ], + [ + -73.444749, + 45.573615 + ], + [ + -73.44471, + 45.573635 + ], + [ + -73.444648, + 45.57367 + ], + [ + -73.443646, + 45.573362 + ], + [ + -73.443539, + 45.573203 + ], + [ + -73.443527, + 45.573168 + ], + [ + -73.443519, + 45.573145 + ], + [ + -73.44348, + 45.573034 + ], + [ + -73.443427, + 45.572912 + ], + [ + -73.44336, + 45.572841 + ], + [ + -73.443253, + 45.572772 + ], + [ + -73.443199, + 45.572746 + ], + [ + -73.443114, + 45.572731 + ], + [ + -73.443049, + 45.572747 + ], + [ + -73.442959, + 45.572752 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442614, + 45.572792 + ], + [ + -73.442327, + 45.572407 + ], + [ + -73.442172, + 45.572214 + ], + [ + -73.442103, + 45.572145 + ], + [ + -73.442041, + 45.572083 + ], + [ + -73.441925, + 45.571984 + ], + [ + -73.441785, + 45.571885 + ], + [ + -73.44164, + 45.571795 + ], + [ + -73.441501, + 45.571723 + ], + [ + -73.4413, + 45.571651 + ], + [ + -73.441159, + 45.571606 + ], + [ + -73.440756, + 45.571507 + ], + [ + -73.440331, + 45.571417 + ], + [ + -73.43982, + 45.571308 + ], + [ + -73.439233, + 45.571191 + ], + [ + -73.43873, + 45.571092 + ], + [ + -73.438292, + 45.571002 + ], + [ + -73.437633, + 45.570857 + ], + [ + -73.43669, + 45.570659 + ], + [ + -73.436314, + 45.570582 + ], + [ + -73.435177, + 45.570334 + ], + [ + -73.434821, + 45.570257 + ], + [ + -73.433907, + 45.570063 + ], + [ + -73.432847, + 45.569838 + ], + [ + -73.431904, + 45.569639 + ], + [ + -73.431328, + 45.569526 + ], + [ + -73.430487, + 45.569386 + ], + [ + -73.430017, + 45.569328 + ], + [ + -73.429624, + 45.569282 + ], + [ + -73.428846, + 45.569228 + ], + [ + -73.428276, + 45.569205 + ], + [ + -73.427493, + 45.5692 + ], + [ + -73.426957, + 45.569213 + ], + [ + -73.426073, + 45.569262 + ], + [ + -73.424538, + 45.569347 + ], + [ + -73.422873, + 45.56944 + ], + [ + -73.421741, + 45.569502 + ], + [ + -73.420778, + 45.569551 + ], + [ + -73.419829, + 45.569604 + ], + [ + -73.417529, + 45.569774 + ], + [ + -73.416713, + 45.569818 + ], + [ + -73.416545, + 45.569832 + ], + [ + -73.41628, + 45.569881 + ], + [ + -73.416182, + 45.569915 + ], + [ + -73.416084, + 45.569948 + ], + [ + -73.415904, + 45.570025 + ], + [ + -73.415778, + 45.570101 + ], + [ + -73.415655, + 45.570037 + ], + [ + -73.415561, + 45.569988 + ], + [ + -73.415428, + 45.56991 + ], + [ + -73.415319, + 45.569883 + ], + [ + -73.415221, + 45.569874 + ], + [ + -73.413267, + 45.570173 + ], + [ + -73.411891, + 45.570502 + ], + [ + -73.411065, + 45.570571 + ], + [ + -73.411095, + 45.570824 + ], + [ + -73.411129, + 45.571102 + ], + [ + -73.411942, + 45.571019 + ], + [ + -73.411928, + 45.570873 + ] + ] + }, + "id": 262, + "properties": { + "id": "2d0bc97b-e2cc-43d8-887f-85b18b3201ec", + "data": { + "gtfs": { + "shape_id": "462_1_R" + }, + "segments": [ + { + "distanceMeters": 2150, + "travelTimeSeconds": 540 + }, + { + "distanceMeters": 3180, + "travelTimeSeconds": 660 + }, + { + "distanceMeters": 2553, + "travelTimeSeconds": 200 + }, + { + "distanceMeters": 8170, + "travelTimeSeconds": 640 + }, + { + "distanceMeters": 2838, + "travelTimeSeconds": 420 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 246, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 18890, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 12625.01647241902, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.68, + "travelTimeWithoutDwellTimesSeconds": 2460, + "operatingTimeWithLayoverTimeSeconds": 2706, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2460, + "operatingSpeedWithLayoverMetersPerSecond": 6.98, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.68 + }, + "mode": "bus", + "name": "Stat. de Touraine", + "color": "#A32638", + "nodes": [ + "30a1fc98-889c-4ed9-b389-c33a3f70398a", + "171b05ae-a95b-4adb-882d-8ac87dc4790f", + "b49806f2-28c3-484e-bd5a-b46e80d9eb6f", + "e3b3b7c9-8cf4-450f-95eb-c8f9836e391d", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "9c784932-945b-47d8-afa8-e5b73889acfb" + ], + "stops": [], + "line_id": "bbb03fa8-a01f-4a3f-b3d7-9fb1d25cc1fe", + "segments": [ + 0, + 31, + 81, + 130, + 365 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 262, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.475718, + 45.477643 + ], + [ + -73.476119, + 45.477927 + ], + [ + -73.476929, + 45.478485 + ], + [ + -73.477462, + 45.478904 + ], + [ + -73.477556, + 45.47897 + ], + [ + -73.477667, + 45.479048 + ], + [ + -73.477713, + 45.479021 + ], + [ + -73.477757, + 45.479003 + ], + [ + -73.477866, + 45.478954 + ], + [ + -73.477979, + 45.478918 + ], + [ + -73.478075, + 45.478904 + ], + [ + -73.478146, + 45.478904 + ], + [ + -73.478298, + 45.478904 + ], + [ + -73.478426, + 45.478904 + ], + [ + -73.478915, + 45.478914 + ], + [ + -73.479078, + 45.478918 + ], + [ + -73.479175, + 45.478922 + ], + [ + -73.479295, + 45.478922 + ], + [ + -73.479623, + 45.478936 + ], + [ + -73.480089, + 45.478949 + ], + [ + -73.481631, + 45.478977 + ], + [ + -73.482205, + 45.478986 + ], + [ + -73.482359, + 45.478989 + ], + [ + -73.482631, + 45.478995 + ], + [ + -73.482756, + 45.478997 + ], + [ + -73.484917, + 45.479027 + ], + [ + -73.485227, + 45.479031 + ], + [ + -73.485584, + 45.479045 + ], + [ + -73.485771, + 45.479058 + ], + [ + -73.486122, + 45.479058 + ], + [ + -73.486149, + 45.479058 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486329, + 45.479263 + ], + [ + -73.486318, + 45.479855 + ], + [ + -73.486298, + 45.480129 + ], + [ + -73.486286, + 45.480386 + ], + [ + -73.486285, + 45.480387 + ], + [ + -73.486282, + 45.480458 + ], + [ + -73.48629, + 45.480791 + ], + [ + -73.486352, + 45.480984 + ], + [ + -73.486506, + 45.481151 + ], + [ + -73.486595, + 45.481214 + ], + [ + -73.486702, + 45.481259 + ], + [ + -73.486845, + 45.481313 + ], + [ + -73.486991, + 45.481335 + ], + [ + -73.487396, + 45.481353 + ], + [ + -73.487751, + 45.481349 + ], + [ + -73.48795, + 45.481331 + ], + [ + -73.488145, + 45.481295 + ], + [ + -73.488358, + 45.481254 + ], + [ + -73.488455, + 45.481236 + ], + [ + -73.488596, + 45.481209 + ], + [ + -73.489299, + 45.481083 + ], + [ + -73.489517, + 45.481047 + ], + [ + -73.489679, + 45.481016 + ], + [ + -73.489826, + 45.480989 + ], + [ + -73.490511, + 45.480858 + ], + [ + -73.490668, + 45.480817 + ], + [ + -73.490751, + 45.480796 + ], + [ + -73.49089, + 45.480751 + ], + [ + -73.491016, + 45.480715 + ], + [ + -73.491326, + 45.481039 + ], + [ + -73.491478, + 45.481178 + ], + [ + -73.492063, + 45.481628 + ], + [ + -73.492197, + 45.481727 + ], + [ + -73.492355, + 45.481839 + ], + [ + -73.49246, + 45.481904 + ], + [ + -73.492546, + 45.481956 + ], + [ + -73.492741, + 45.482042 + ], + [ + -73.492853, + 45.482078 + ], + [ + -73.493, + 45.482114 + ], + [ + -73.493158, + 45.482132 + ], + [ + -73.494604, + 45.482145 + ], + [ + -73.494698, + 45.482146 + ], + [ + -73.49497, + 45.482155 + ], + [ + -73.495418, + 45.482168 + ], + [ + -73.495536, + 45.482132 + ], + [ + -73.495646, + 45.482096 + ], + [ + -73.495781, + 45.482065 + ], + [ + -73.495949, + 45.482002 + ], + [ + -73.496051, + 45.481961 + ], + [ + -73.496212, + 45.481898 + ], + [ + -73.496271, + 45.481874 + ], + [ + -73.496343, + 45.481844 + ], + [ + -73.496494, + 45.481781 + ], + [ + -73.497004, + 45.48157 + ], + [ + -73.497219, + 45.481561 + ], + [ + -73.498134, + 45.481565 + ], + [ + -73.498266, + 45.481568 + ], + [ + -73.498761, + 45.481579 + ], + [ + -73.499712, + 45.481597 + ], + [ + -73.499752, + 45.481598 + ], + [ + -73.501621, + 45.481633 + ], + [ + -73.50182, + 45.481637 + ], + [ + -73.501807, + 45.481903 + ], + [ + -73.501801, + 45.482039 + ], + [ + -73.501794, + 45.482164 + ], + [ + -73.501797, + 45.482254 + ], + [ + -73.501796, + 45.482353 + ], + [ + -73.501789, + 45.482654 + ], + [ + -73.501786, + 45.482827 + ], + [ + -73.501782, + 45.483036 + ], + [ + -73.502207, + 45.483054 + ], + [ + -73.502327, + 45.483041 + ], + [ + -73.502869, + 45.482816 + ], + [ + -73.503016, + 45.482753 + ], + [ + -73.50324, + 45.482654 + ], + [ + -73.503463, + 45.482556 + ], + [ + -73.503598, + 45.482497 + ], + [ + -73.503771, + 45.482694 + ], + [ + -73.504141, + 45.483117 + ], + [ + -73.504614, + 45.483657 + ], + [ + -73.504846, + 45.483915 + ], + [ + -73.504857, + 45.483927 + ], + [ + -73.504911, + 45.483982 + ], + [ + -73.504924, + 45.483995 + ], + [ + -73.505108, + 45.484152 + ], + [ + -73.505242, + 45.484242 + ], + [ + -73.505364, + 45.484314 + ], + [ + -73.505521, + 45.484395 + ], + [ + -73.505663, + 45.484463 + ], + [ + -73.505851, + 45.484535 + ], + [ + -73.505993, + 45.484584 + ], + [ + -73.506624, + 45.484814 + ], + [ + -73.506746, + 45.484863 + ], + [ + -73.506951, + 45.484962 + ], + [ + -73.507115, + 45.485056 + ], + [ + -73.507185, + 45.485097 + ], + [ + -73.507329, + 45.4852 + ], + [ + -73.507431, + 45.485295 + ], + [ + -73.507518, + 45.485367 + ], + [ + -73.50762, + 45.485484 + ], + [ + -73.507754, + 45.485677 + ], + [ + -73.508077, + 45.486145 + ], + [ + -73.508225, + 45.48637 + ], + [ + -73.508339, + 45.48655 + ], + [ + -73.508385, + 45.486622 + ], + [ + -73.508489, + 45.486784 + ], + [ + -73.508543, + 45.486852 + ], + [ + -73.509576, + 45.488345 + ], + [ + -73.509675, + 45.488489 + ], + [ + -73.509764, + 45.488615 + ], + [ + -73.509971, + 45.488912 + ], + [ + -73.510809, + 45.490112 + ], + [ + -73.510813, + 45.490118 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.510222, + 45.490248 + ], + [ + -73.510213, + 45.490248 + ], + [ + -73.509674, + 45.490238 + ], + [ + -73.509541, + 45.490235 + ], + [ + -73.508965, + 45.49023 + ], + [ + -73.507035, + 45.490202 + ], + [ + -73.505337, + 45.490177 + ], + [ + -73.505151, + 45.490177 + ], + [ + -73.505021, + 45.490186 + ], + [ + -73.504891, + 45.490195 + ], + [ + -73.504792, + 45.490226 + ], + [ + -73.504263, + 45.490408 + ], + [ + -73.504178, + 45.490438 + ], + [ + -73.504078, + 45.490474 + ], + [ + -73.503868, + 45.49055 + ], + [ + -73.503637, + 45.490636 + ], + [ + -73.503314, + 45.490753 + ], + [ + -73.502923, + 45.490879 + ], + [ + -73.502759, + 45.49091 + ], + [ + -73.502611, + 45.490928 + ], + [ + -73.501389, + 45.49091 + ], + [ + -73.50101, + 45.490903 + ], + [ + -73.500934, + 45.490901 + ], + [ + -73.500399, + 45.490897 + ], + [ + -73.500019, + 45.490892 + ], + [ + -73.499523, + 45.490883 + ], + [ + -73.499099, + 45.490883 + ], + [ + -73.498703, + 45.49087 + ], + [ + -73.498487, + 45.490867 + ], + [ + -73.49837, + 45.490865 + ], + [ + -73.49822, + 45.490861 + ], + [ + -73.497636, + 45.490865 + ], + [ + -73.497071, + 45.49087 + ], + [ + -73.496542, + 45.490861 + ], + [ + -73.496002, + 45.490853 + ], + [ + -73.495938, + 45.490852 + ], + [ + -73.495827, + 45.490838 + ], + [ + -73.495685, + 45.490802 + ], + [ + -73.495457, + 45.490703 + ], + [ + -73.495224, + 45.490582 + ], + [ + -73.495016, + 45.490456 + ], + [ + -73.494593, + 45.490163 + ], + [ + -73.494463, + 45.490073 + ], + [ + -73.494432, + 45.490141 + ], + [ + -73.494158, + 45.490222 + ], + [ + -73.494025, + 45.490275 + ], + [ + -73.49392, + 45.490316 + ], + [ + -73.493794, + 45.490397 + ], + [ + -73.493701, + 45.490456 + ], + [ + -73.493838, + 45.49055 + ], + [ + -73.494242, + 45.490838 + ], + [ + -73.494272, + 45.490858 + ], + [ + -73.49433, + 45.490897 + ], + [ + -73.494917, + 45.491315 + ], + [ + -73.495204, + 45.491517 + ], + [ + -73.495442, + 45.491684 + ], + [ + -73.49562, + 45.491814 + ], + [ + -73.495851, + 45.491976 + ], + [ + -73.496235, + 45.492242 + ], + [ + -73.496321, + 45.492305 + ], + [ + -73.496384, + 45.492349 + ], + [ + -73.496416, + 45.492372 + ], + [ + -73.496772, + 45.492629 + ], + [ + -73.497128, + 45.492885 + ], + [ + -73.497339, + 45.493038 + ], + [ + -73.497557, + 45.493191 + ], + [ + -73.497644, + 45.493257 + ], + [ + -73.497771, + 45.493353 + ], + [ + -73.497866, + 45.493425 + ], + [ + -73.497927, + 45.49347 + ], + [ + -73.497995, + 45.493515 + ], + [ + -73.49804, + 45.493547 + ], + [ + -73.498238, + 45.493691 + ], + [ + -73.49848, + 45.493866 + ], + [ + -73.498616, + 45.49397 + ], + [ + -73.498797, + 45.494096 + ], + [ + -73.498924, + 45.49419 + ], + [ + -73.499159, + 45.494361 + ], + [ + -73.499315, + 45.494474 + ], + [ + -73.499359, + 45.494506 + ], + [ + -73.49959, + 45.494676 + ], + [ + -73.499637, + 45.49471 + ], + [ + -73.499763, + 45.494802 + ], + [ + -73.499778, + 45.494815 + ], + [ + -73.499828, + 45.494849 + ], + [ + -73.500025, + 45.494979 + ], + [ + -73.500064, + 45.495 + ], + [ + -73.499991, + 45.495072 + ], + [ + -73.499868, + 45.495198 + ], + [ + -73.497945, + 45.496984 + ], + [ + -73.497124, + 45.497767 + ], + [ + -73.497073, + 45.497816 + ], + [ + -73.496931, + 45.497744 + ], + [ + -73.496641, + 45.497596 + ], + [ + -73.496207, + 45.497362 + ], + [ + -73.495841, + 45.497159 + ], + [ + -73.495426, + 45.496935 + ], + [ + -73.495021, + 45.496723 + ], + [ + -73.494815, + 45.496617 + ], + [ + -73.494644, + 45.49653 + ], + [ + -73.494255, + 45.496323 + ], + [ + -73.493858, + 45.496105 + ], + [ + -73.493736, + 45.496039 + ], + [ + -73.493955, + 45.495836 + ], + [ + -73.496458, + 45.493511 + ], + [ + -73.497128, + 45.492885 + ], + [ + -73.497339, + 45.493038 + ], + [ + -73.497557, + 45.493191 + ], + [ + -73.49764, + 45.493254 + ], + [ + -73.497771, + 45.493353 + ], + [ + -73.497866, + 45.493425 + ], + [ + -73.497927, + 45.49347 + ], + [ + -73.497995, + 45.493515 + ], + [ + -73.49804, + 45.493547 + ], + [ + -73.498238, + 45.493691 + ], + [ + -73.49848, + 45.493866 + ], + [ + -73.498616, + 45.49397 + ], + [ + -73.498797, + 45.494096 + ], + [ + -73.498924, + 45.49419 + ], + [ + -73.499159, + 45.494361 + ], + [ + -73.499315, + 45.494474 + ], + [ + -73.499359, + 45.494506 + ], + [ + -73.49959, + 45.494676 + ], + [ + -73.499763, + 45.494802 + ], + [ + -73.499778, + 45.494815 + ], + [ + -73.499824, + 45.494846 + ], + [ + -73.500025, + 45.494979 + ], + [ + -73.500064, + 45.495 + ], + [ + -73.500106, + 45.495026 + ], + [ + -73.500592, + 45.495409 + ], + [ + -73.50081, + 45.495567 + ], + [ + -73.501059, + 45.495724 + ], + [ + -73.501182, + 45.495805 + ], + [ + -73.501279, + 45.495868 + ], + [ + -73.501297, + 45.495881 + ], + [ + -73.501808, + 45.496251 + ], + [ + -73.50226, + 45.496565 + ], + [ + -73.502293, + 45.496588 + ], + [ + -73.502336, + 45.49662 + ], + [ + -73.50284, + 45.49698 + ], + [ + -73.50327, + 45.49729 + ], + [ + -73.503408, + 45.497389 + ], + [ + -73.503475, + 45.497438 + ], + [ + -73.504131, + 45.497897 + ], + [ + -73.504473, + 45.49814 + ], + [ + -73.504683, + 45.498293 + ], + [ + -73.504764, + 45.498354 + ], + [ + -73.504839, + 45.49841 + ], + [ + -73.505105, + 45.498595 + ], + [ + -73.505329, + 45.498757 + ], + [ + -73.505704, + 45.498928 + ], + [ + -73.506001, + 45.499076 + ], + [ + -73.506259, + 45.499211 + ], + [ + -73.506709, + 45.499427 + ], + [ + -73.506801, + 45.499467 + ], + [ + -73.507256, + 45.499661 + ], + [ + -73.50735, + 45.499701 + ], + [ + -73.507712, + 45.499859 + ], + [ + -73.508861, + 45.50034 + ], + [ + -73.508958, + 45.500376 + ], + [ + -73.509608, + 45.500651 + ], + [ + -73.509762, + 45.500713 + ], + [ + -73.50993, + 45.500781 + ], + [ + -73.510444, + 45.501016 + ], + [ + -73.511327, + 45.50142 + ], + [ + -73.510963, + 45.501908 + ], + [ + -73.510844, + 45.502068 + ], + [ + -73.510789, + 45.502144 + ], + [ + -73.510762, + 45.50218 + ], + [ + -73.510622, + 45.502369 + ], + [ + -73.510291, + 45.502818 + ], + [ + -73.510247, + 45.502878 + ], + [ + -73.510078, + 45.503098 + ], + [ + -73.509793, + 45.503472 + ], + [ + -73.509552, + 45.503778 + ], + [ + -73.509317, + 45.504074 + ], + [ + -73.509079, + 45.504407 + ], + [ + -73.508881, + 45.504682 + ], + [ + -73.508662, + 45.504968 + ], + [ + -73.508627, + 45.505015 + ], + [ + -73.508426, + 45.505289 + ], + [ + -73.508201, + 45.505577 + ], + [ + -73.507955, + 45.505892 + ], + [ + -73.507704, + 45.506225 + ], + [ + -73.50747, + 45.506531 + ], + [ + -73.50725, + 45.506833 + ], + [ + -73.507093, + 45.507041 + ], + [ + -73.507023, + 45.507134 + ], + [ + -73.506779, + 45.507449 + ], + [ + -73.506569, + 45.507728 + ], + [ + -73.506355, + 45.508016 + ], + [ + -73.506088, + 45.508371 + ], + [ + -73.50509, + 45.508 + ], + [ + -73.503983, + 45.507589 + ], + [ + -73.50278, + 45.507139 + ], + [ + -73.502418, + 45.507008 + ], + [ + -73.502098, + 45.506896 + ], + [ + -73.502109, + 45.507332 + ], + [ + -73.502112, + 45.507356 + ], + [ + -73.502155, + 45.507742 + ], + [ + -73.503376, + 45.508201 + ], + [ + -73.50436, + 45.508565 + ] + ] + }, + "id": 263, + "properties": { + "id": "dc712ca3-4cc5-433a-b2d8-ed5309bc3dc2", + "data": { + "gtfs": { + "shape_id": "500_1_A" + }, + "segments": [ + { + "distanceMeters": 206, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 405, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 637, + "travelTimeSeconds": 103 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 509, + "travelTimeSeconds": 82 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 789, + "travelTimeSeconds": 127 + }, + { + "distanceMeters": 808, + "travelTimeSeconds": 131 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10051, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4072.8414414949543, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.2, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 5.58, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.2 + }, + "mode": "bus", + "name": "École St-Lambert Inter.", + "color": "#A32638", + "nodes": [ + "c04702f7-b2cf-440e-a6da-0a84aefc3963", + "f32e29fd-d271-4ae6-8083-6d24349dccdf", + "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", + "528dcb9e-5a83-46d3-8e03-42692ca57a5a", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "a9e9d254-0411-40ff-8540-2c41b97aa285", + "b4a272ff-ad07-49f4-b3bf-37e38018a4d0", + "8b87176c-4d30-4e5f-8750-8f2e6ea9737c", + "c97bf2a0-4e35-4343-a821-fd37344059ce", + "d0834662-f361-47c8-897d-090ca396cc80", + "197613c4-818a-45ed-a120-7c785862199b", + "2f1abb54-e47c-4c4c-bf29-58794c82c9d7", + "ab2d66e0-27d7-4818-8e33-267927ea3fe2", + "4f2dd8ac-70e9-487b-b0af-329673c88b03", + "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "9f22d75f-cc66-4020-8804-7912f49950d8", + "41d7b6d4-1fe4-44ed-a774-b005607fc59d", + "bc9b9243-e0ec-461a-9898-6eb69ecd511a", + "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "5224c05b-57d6-4d5c-87fd-b9e78147c66e", + "602dc8fb-62ff-45ed-888f-4b4172318b5d", + "51191948-9067-4256-853f-d80a1333a164", + "d67aee3e-be1e-429b-b464-c7a6549e761a", + "1fa03421-8026-43d9-b21a-b3e57dfa43c2", + "1fc11ea4-4e32-4f30-8519-34208d0f8931", + "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", + "88d8365e-2528-4422-a483-bb2efd9de617", + "0b6032e7-414a-429f-9df2-796599b947c2", + "1cedf968-65c8-4c0f-b92c-c06da7b8fe69", + "16f75d06-f538-4735-a99f-9bc7eaa6eaab", + "b3c7372b-3c0a-4cb2-bef2-6f11825f858a", + "7e2aa9ad-30a3-4e26-acfb-1e284e4a4e01", + "1cedf968-65c8-4c0f-b92c-c06da7b8fe69", + "16f75d06-f538-4735-a99f-9bc7eaa6eaab", + "1cea6199-481e-43b0-8d4a-8c7593ff485f", + "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", + "6557d1fe-6975-49e2-871c-ab07d42ea35b", + "0ac44bed-6f37-406e-8654-f8d5f36c840e", + "443288e2-2ae9-4c97-a015-0e176d8f71b2", + "bca5df0b-3970-4f0e-8644-3802bdd029df", + "3f77d417-9b8e-4514-8337-8fa9008d2cc7" + ], + "stops": [], + "line_id": "e1684b65-95ce-44fa-a91e-8b4564d087d4", + "segments": [ + 0, + 4, + 14, + 22, + 29, + 36, + 50, + 57, + 66, + 72, + 82, + 88, + 92, + 100, + 107, + 114, + 135, + 139, + 143, + 148, + 151, + 157, + 167, + 174, + 180, + 187, + 197, + 206, + 212, + 230, + 244, + 247, + 254, + 271, + 280, + 282, + 292, + 301, + 309, + 332 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 263, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.50436, + 45.508565 + ], + [ + -73.505595, + 45.509024 + ], + [ + -73.505856, + 45.508673 + ], + [ + -73.506088, + 45.508371 + ], + [ + -73.506355, + 45.508016 + ], + [ + -73.506569, + 45.507728 + ], + [ + -73.506779, + 45.507449 + ], + [ + -73.507023, + 45.507134 + ], + [ + -73.50725, + 45.506833 + ], + [ + -73.50747, + 45.506531 + ], + [ + -73.507704, + 45.506225 + ], + [ + -73.507955, + 45.505892 + ], + [ + -73.508201, + 45.505577 + ], + [ + -73.508426, + 45.505289 + ], + [ + -73.508627, + 45.505015 + ], + [ + -73.508881, + 45.504682 + ], + [ + -73.509079, + 45.504407 + ], + [ + -73.509317, + 45.504074 + ], + [ + -73.509552, + 45.503778 + ], + [ + -73.509793, + 45.503472 + ], + [ + -73.510078, + 45.503098 + ], + [ + -73.510247, + 45.502878 + ], + [ + -73.510291, + 45.502818 + ], + [ + -73.510622, + 45.502369 + ], + [ + -73.510762, + 45.50218 + ], + [ + -73.510789, + 45.502144 + ], + [ + -73.510844, + 45.502068 + ], + [ + -73.511327, + 45.50142 + ], + [ + -73.511193, + 45.501358 + ], + [ + -73.50993, + 45.500781 + ], + [ + -73.509907, + 45.500772 + ], + [ + -73.509762, + 45.500713 + ], + [ + -73.509608, + 45.500651 + ], + [ + -73.508958, + 45.500376 + ], + [ + -73.508861, + 45.50034 + ], + [ + -73.507712, + 45.499859 + ], + [ + -73.50735, + 45.499701 + ], + [ + -73.50707, + 45.499582 + ], + [ + -73.506801, + 45.499467 + ], + [ + -73.506709, + 45.499427 + ], + [ + -73.506259, + 45.499211 + ], + [ + -73.506001, + 45.499076 + ], + [ + -73.505704, + 45.498928 + ], + [ + -73.505329, + 45.498757 + ], + [ + -73.505105, + 45.498595 + ], + [ + -73.504952, + 45.498489 + ], + [ + -73.504839, + 45.49841 + ], + [ + -73.504683, + 45.498293 + ], + [ + -73.504473, + 45.49814 + ], + [ + -73.504131, + 45.497897 + ], + [ + -73.503475, + 45.497438 + ], + [ + -73.503408, + 45.497389 + ], + [ + -73.50327, + 45.49729 + ], + [ + -73.50284, + 45.49698 + ], + [ + -73.502637, + 45.496835 + ], + [ + -73.502336, + 45.49662 + ], + [ + -73.502293, + 45.496588 + ], + [ + -73.501808, + 45.496251 + ], + [ + -73.501458, + 45.495997 + ], + [ + -73.501279, + 45.495868 + ], + [ + -73.501182, + 45.495805 + ], + [ + -73.501059, + 45.495724 + ], + [ + -73.50081, + 45.495567 + ], + [ + -73.500592, + 45.495409 + ], + [ + -73.500508, + 45.495343 + ], + [ + -73.500106, + 45.495026 + ], + [ + -73.500064, + 45.495 + ], + [ + -73.499991, + 45.495072 + ], + [ + -73.499868, + 45.495198 + ], + [ + -73.499641, + 45.495408 + ], + [ + -73.497945, + 45.496984 + ], + [ + -73.497124, + 45.497767 + ], + [ + -73.497073, + 45.497816 + ], + [ + -73.496741, + 45.497647 + ], + [ + -73.496641, + 45.497596 + ], + [ + -73.496207, + 45.497362 + ], + [ + -73.495841, + 45.497159 + ], + [ + -73.495426, + 45.496935 + ], + [ + -73.495021, + 45.496723 + ], + [ + -73.494853, + 45.496637 + ], + [ + -73.494644, + 45.49653 + ], + [ + -73.494255, + 45.496323 + ], + [ + -73.494198, + 45.496291 + ], + [ + -73.493885, + 45.49612 + ], + [ + -73.493736, + 45.496039 + ], + [ + -73.496458, + 45.493511 + ], + [ + -73.497128, + 45.492885 + ], + [ + -73.496772, + 45.492629 + ], + [ + -73.496471, + 45.492412 + ], + [ + -73.496416, + 45.492372 + ], + [ + -73.496321, + 45.492305 + ], + [ + -73.496235, + 45.492242 + ], + [ + -73.495851, + 45.491976 + ], + [ + -73.49562, + 45.491814 + ], + [ + -73.495442, + 45.491684 + ], + [ + -73.495204, + 45.491517 + ], + [ + -73.494917, + 45.491315 + ], + [ + -73.49433, + 45.490897 + ], + [ + -73.494242, + 45.490838 + ], + [ + -73.494233, + 45.490831 + ], + [ + -73.493838, + 45.49055 + ], + [ + -73.493701, + 45.490456 + ], + [ + -73.493573, + 45.490366 + ], + [ + -73.492976, + 45.489943 + ], + [ + -73.492778, + 45.489803 + ], + [ + -73.492465, + 45.489583 + ], + [ + -73.492419, + 45.48955 + ], + [ + -73.492275, + 45.489448 + ], + [ + -73.492218, + 45.489407 + ], + [ + -73.492042, + 45.489281 + ], + [ + -73.491721, + 45.489052 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.491862, + 45.48884 + ], + [ + -73.492138, + 45.488647 + ], + [ + -73.492246, + 45.488512 + ], + [ + -73.492413, + 45.48862 + ], + [ + -73.492658, + 45.488782 + ], + [ + -73.492831, + 45.488903 + ], + [ + -73.492963, + 45.488997 + ], + [ + -73.493685, + 45.489511 + ], + [ + -73.494044, + 45.489767 + ], + [ + -73.494263, + 45.489927 + ], + [ + -73.494463, + 45.490073 + ], + [ + -73.495016, + 45.490456 + ], + [ + -73.495224, + 45.490582 + ], + [ + -73.495457, + 45.490703 + ], + [ + -73.495685, + 45.490802 + ], + [ + -73.495803, + 45.490832 + ], + [ + -73.495827, + 45.490838 + ], + [ + -73.495938, + 45.490852 + ], + [ + -73.496542, + 45.490861 + ], + [ + -73.497071, + 45.49087 + ], + [ + -73.497636, + 45.490865 + ], + [ + -73.49822, + 45.490861 + ], + [ + -73.49837, + 45.490865 + ], + [ + -73.498703, + 45.49087 + ], + [ + -73.498951, + 45.490878 + ], + [ + -73.499099, + 45.490883 + ], + [ + -73.499523, + 45.490883 + ], + [ + -73.500019, + 45.490892 + ], + [ + -73.500399, + 45.490897 + ], + [ + -73.500744, + 45.4909 + ], + [ + -73.500934, + 45.490901 + ], + [ + -73.501389, + 45.49091 + ], + [ + -73.502611, + 45.490928 + ], + [ + -73.502759, + 45.49091 + ], + [ + -73.502923, + 45.490879 + ], + [ + -73.503314, + 45.490753 + ], + [ + -73.503637, + 45.490636 + ], + [ + -73.503868, + 45.49055 + ], + [ + -73.504078, + 45.490474 + ], + [ + -73.504178, + 45.490438 + ], + [ + -73.504792, + 45.490226 + ], + [ + -73.504891, + 45.490195 + ], + [ + -73.505021, + 45.490186 + ], + [ + -73.505105, + 45.49018 + ], + [ + -73.505151, + 45.490177 + ], + [ + -73.505337, + 45.490177 + ], + [ + -73.507013, + 45.490201 + ], + [ + -73.508965, + 45.49023 + ], + [ + -73.509485, + 45.490234 + ], + [ + -73.509541, + 45.490235 + ], + [ + -73.510213, + 45.490248 + ], + [ + -73.510753, + 45.490255 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.510813, + 45.490118 + ], + [ + -73.51075, + 45.490027 + ], + [ + -73.509971, + 45.488912 + ], + [ + -73.509799, + 45.488666 + ], + [ + -73.509764, + 45.488615 + ], + [ + -73.509675, + 45.488489 + ], + [ + -73.508563, + 45.486881 + ], + [ + -73.508543, + 45.486852 + ], + [ + -73.508489, + 45.486784 + ], + [ + -73.508385, + 45.486622 + ], + [ + -73.508225, + 45.48637 + ], + [ + -73.508077, + 45.486145 + ], + [ + -73.507754, + 45.485677 + ], + [ + -73.50762, + 45.485484 + ], + [ + -73.507518, + 45.485367 + ], + [ + -73.507431, + 45.485295 + ], + [ + -73.507329, + 45.4852 + ], + [ + -73.507185, + 45.485097 + ], + [ + -73.507115, + 45.485056 + ], + [ + -73.506951, + 45.484962 + ], + [ + -73.506746, + 45.484863 + ], + [ + -73.506624, + 45.484814 + ], + [ + -73.505993, + 45.484584 + ], + [ + -73.505851, + 45.484535 + ], + [ + -73.505663, + 45.484463 + ], + [ + -73.505521, + 45.484395 + ], + [ + -73.505364, + 45.484314 + ], + [ + -73.505242, + 45.484242 + ], + [ + -73.505108, + 45.484152 + ], + [ + -73.504924, + 45.483995 + ], + [ + -73.504902, + 45.483973 + ], + [ + -73.504857, + 45.483927 + ], + [ + -73.504846, + 45.483915 + ], + [ + -73.504614, + 45.483657 + ], + [ + -73.504141, + 45.483117 + ], + [ + -73.503654, + 45.482561 + ], + [ + -73.503598, + 45.482497 + ], + [ + -73.503323, + 45.482617 + ], + [ + -73.50324, + 45.482654 + ], + [ + -73.503157, + 45.48269 + ], + [ + -73.503016, + 45.482753 + ], + [ + -73.502869, + 45.482816 + ], + [ + -73.502327, + 45.483041 + ], + [ + -73.502207, + 45.483054 + ], + [ + -73.501902, + 45.483042 + ], + [ + -73.501782, + 45.483036 + ], + [ + -73.501789, + 45.482654 + ], + [ + -73.501796, + 45.482353 + ], + [ + -73.501797, + 45.482254 + ], + [ + -73.501794, + 45.482164 + ], + [ + -73.5018, + 45.482043 + ], + [ + -73.501807, + 45.481903 + ], + [ + -73.50182, + 45.481637 + ], + [ + -73.501589, + 45.481633 + ], + [ + -73.499752, + 45.481598 + ], + [ + -73.499712, + 45.481597 + ], + [ + -73.498761, + 45.481579 + ], + [ + -73.498134, + 45.481565 + ], + [ + -73.497969, + 45.481564 + ], + [ + -73.497219, + 45.481561 + ], + [ + -73.497004, + 45.48157 + ], + [ + -73.496494, + 45.481781 + ], + [ + -73.496479, + 45.481788 + ], + [ + -73.496343, + 45.481844 + ], + [ + -73.496212, + 45.481898 + ], + [ + -73.496051, + 45.481961 + ], + [ + -73.495949, + 45.482002 + ], + [ + -73.495781, + 45.482065 + ], + [ + -73.495646, + 45.482096 + ], + [ + -73.495536, + 45.482132 + ], + [ + -73.495418, + 45.482168 + ], + [ + -73.49497, + 45.482155 + ], + [ + -73.494858, + 45.482151 + ], + [ + -73.494698, + 45.482146 + ], + [ + -73.493158, + 45.482132 + ], + [ + -73.493, + 45.482114 + ], + [ + -73.492853, + 45.482078 + ], + [ + -73.492741, + 45.482042 + ], + [ + -73.492546, + 45.481956 + ], + [ + -73.492468, + 45.481909 + ], + [ + -73.492355, + 45.481839 + ], + [ + -73.492197, + 45.481727 + ], + [ + -73.492063, + 45.481628 + ], + [ + -73.491478, + 45.481178 + ], + [ + -73.491326, + 45.481039 + ], + [ + -73.491083, + 45.480784 + ], + [ + -73.491016, + 45.480715 + ], + [ + -73.49089, + 45.480751 + ], + [ + -73.490751, + 45.480796 + ], + [ + -73.490511, + 45.480858 + ], + [ + -73.489826, + 45.480989 + ], + [ + -73.489679, + 45.481016 + ], + [ + -73.489517, + 45.481047 + ], + [ + -73.489299, + 45.481083 + ], + [ + -73.48875, + 45.481182 + ], + [ + -73.488596, + 45.481209 + ], + [ + -73.488358, + 45.481254 + ], + [ + -73.488145, + 45.481295 + ], + [ + -73.48795, + 45.481331 + ], + [ + -73.487751, + 45.481349 + ], + [ + -73.487396, + 45.481353 + ], + [ + -73.486991, + 45.481335 + ], + [ + -73.486953, + 45.481329 + ], + [ + -73.486845, + 45.481313 + ], + [ + -73.486702, + 45.481259 + ], + [ + -73.486595, + 45.481214 + ], + [ + -73.486506, + 45.481151 + ], + [ + -73.486352, + 45.480984 + ], + [ + -73.48629, + 45.480791 + ], + [ + -73.486283, + 45.480502 + ], + [ + -73.486282, + 45.480458 + ], + [ + -73.486298, + 45.480129 + ], + [ + -73.486318, + 45.479855 + ], + [ + -73.486329, + 45.479263 + ], + [ + -73.486359, + 45.479194 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486149, + 45.479058 + ], + [ + -73.485771, + 45.479058 + ], + [ + -73.485584, + 45.479045 + ], + [ + -73.485227, + 45.479031 + ], + [ + -73.484917, + 45.479027 + ], + [ + -73.482807, + 45.478997 + ], + [ + -73.482756, + 45.478997 + ], + [ + -73.482631, + 45.478995 + ], + [ + -73.482205, + 45.478986 + ], + [ + -73.481631, + 45.478977 + ], + [ + -73.480089, + 45.478949 + ], + [ + -73.479623, + 45.478936 + ], + [ + -73.479295, + 45.478922 + ], + [ + -73.479286, + 45.478922 + ], + [ + -73.479175, + 45.478922 + ], + [ + -73.479078, + 45.478918 + ], + [ + -73.478426, + 45.478904 + ], + [ + -73.478115, + 45.478841 + ], + [ + -73.477983, + 45.47885 + ], + [ + -73.477828, + 45.478837 + ], + [ + -73.477715, + 45.478814 + ], + [ + -73.477616, + 45.478774 + ], + [ + -73.477564, + 45.478751 + ], + [ + -73.477508, + 45.478715 + ], + [ + -73.477033, + 45.478413 + ], + [ + -73.476669, + 45.478147 + ] + ] + }, + "id": 264, + "properties": { + "id": "8a0ba28d-bb60-4a94-bbbc-93dc40620b14", + "data": { + "gtfs": { + "shape_id": "500_2_R" + }, + "segments": [ + { + "distanceMeters": 1198, + "travelTimeSeconds": 223 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 104, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 660, + "travelTimeSeconds": 123 + }, + { + "distanceMeters": 95, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 528, + "travelTimeSeconds": 99 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 26, + "travelTimeSeconds": 5 + }, + { + "distanceMeters": 195, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 359, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 447, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 49, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 44 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9317, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4017.1148003997937, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.35, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 4.85, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.35 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "3f77d417-9b8e-4514-8337-8fa9008d2cc7", + "df5b9592-81e3-4b2c-8a30-7f3a9144671b", + "d24bea6e-da8d-4183-8a5f-0e99be199484", + "6557d1fe-6975-49e2-871c-ab07d42ea35b", + "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", + "1cea6199-481e-43b0-8d4a-8c7593ff485f", + "467e03f3-2556-4d22-ae48-618a76e6b0b4", + "b3c7372b-3c0a-4cb2-bef2-6f11825f858a", + "7e2aa9ad-30a3-4e26-acfb-1e284e4a4e01", + "0b6032e7-414a-429f-9df2-796599b947c2", + "88d8365e-2528-4422-a483-bb2efd9de617", + "fa220212-b6b2-4456-934f-7248f9884444", + "196681e4-c9e5-4a79-a3b1-ce225227e0aa", + "fa220212-b6b2-4456-934f-7248f9884444", + "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", + "1fc11ea4-4e32-4f30-8519-34208d0f8931", + "1fa03421-8026-43d9-b21a-b3e57dfa43c2", + "d67aee3e-be1e-429b-b464-c7a6549e761a", + "51191948-9067-4256-853f-d80a1333a164", + "602dc8fb-62ff-45ed-888f-4b4172318b5d", + "5224c05b-57d6-4d5c-87fd-b9e78147c66e", + "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "bc9b9243-e0ec-461a-9898-6eb69ecd511a", + "41d7b6d4-1fe4-44ed-a774-b005607fc59d", + "9f22d75f-cc66-4020-8804-7912f49950d8", + "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "4f2dd8ac-70e9-487b-b0af-329673c88b03", + "ab2d66e0-27d7-4818-8e33-267927ea3fe2", + "2f1abb54-e47c-4c4c-bf29-58794c82c9d7", + "197613c4-818a-45ed-a120-7c785862199b", + "d0834662-f361-47c8-897d-090ca396cc80", + "c97bf2a0-4e35-4343-a821-fd37344059ce", + "8b87176c-4d30-4e5f-8750-8f2e6ea9737c", + "b4a272ff-ad07-49f4-b3bf-37e38018a4d0", + "a9e9d254-0411-40ff-8540-2c41b97aa285", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "528dcb9e-5a83-46d3-8e03-42692ca57a5a", + "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", + "fe84c986-2907-4842-bde4-72fbe08a0576" + ], + "stops": [], + "line_id": "e1684b65-95ce-44fa-a91e-8b4564d087d4", + "segments": [ + 0, + 30, + 37, + 45, + 54, + 58, + 64, + 79, + 83, + 88, + 99, + 107, + 109, + 118, + 121, + 127, + 136, + 141, + 155, + 158, + 160, + 163, + 168, + 171, + 195, + 200, + 204, + 209, + 215, + 223, + 227, + 237, + 244, + 250, + 259, + 274, + 279, + 287, + 295 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 264, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.480608, + 45.499395 + ], + [ + -73.480477, + 45.499488 + ], + [ + -73.480384, + 45.499556 + ], + [ + -73.479345, + 45.500187 + ], + [ + -73.476917, + 45.501662 + ], + [ + -73.476748, + 45.501764 + ], + [ + -73.476424, + 45.501489 + ], + [ + -73.476389, + 45.501459 + ], + [ + -73.476388, + 45.501458 + ], + [ + -73.476098, + 45.50122 + ], + [ + -73.475716, + 45.500905 + ], + [ + -73.475435, + 45.500666 + ], + [ + -73.475106, + 45.500405 + ], + [ + -73.474855, + 45.500197 + ], + [ + -73.474786, + 45.50014 + ], + [ + -73.474718, + 45.500086 + ], + [ + -73.473772, + 45.500647 + ], + [ + -73.473574, + 45.500765 + ], + [ + -73.472027, + 45.501705 + ], + [ + -73.47121, + 45.502197 + ], + [ + -73.471117, + 45.502254 + ], + [ + -73.469768, + 45.503075 + ], + [ + -73.469716, + 45.503106 + ], + [ + -73.469614, + 45.503168 + ], + [ + -73.469532, + 45.503086 + ], + [ + -73.469411, + 45.503036 + ], + [ + -73.469131, + 45.502809 + ], + [ + -73.468295, + 45.502132 + ], + [ + -73.468227, + 45.502077 + ], + [ + -73.467922, + 45.501812 + ], + [ + -73.467598, + 45.501537 + ], + [ + -73.467259, + 45.501258 + ], + [ + -73.467147, + 45.501165 + ], + [ + -73.466934, + 45.500988 + ], + [ + -73.464886, + 45.50221 + ], + [ + -73.464212, + 45.502612 + ], + [ + -73.463363, + 45.503124 + ], + [ + -73.463263, + 45.503039 + ], + [ + -73.463028, + 45.50284 + ], + [ + -73.462726, + 45.502584 + ], + [ + -73.462443, + 45.502336 + ], + [ + -73.46216, + 45.502089 + ], + [ + -73.461886, + 45.501859 + ], + [ + -73.461708, + 45.501716 + ], + [ + -73.461628, + 45.501652 + ], + [ + -73.461281, + 45.501859 + ], + [ + -73.460922, + 45.502075 + ], + [ + -73.460681, + 45.501872 + ], + [ + -73.460633, + 45.501834 + ], + [ + -73.460629, + 45.50183 + ], + [ + -73.460537, + 45.501755 + ], + [ + -73.460303, + 45.501557 + ], + [ + -73.459797, + 45.501134 + ], + [ + -73.459304, + 45.500727 + ], + [ + -73.459247, + 45.50068 + ], + [ + -73.45911, + 45.500567 + ], + [ + -73.458792, + 45.500752 + ], + [ + -73.458619, + 45.50085 + ], + [ + -73.458392, + 45.500985 + ], + [ + -73.458179, + 45.50112 + ], + [ + -73.457745, + 45.501379 + ], + [ + -73.457629, + 45.501448 + ], + [ + -73.457366, + 45.501237 + ], + [ + -73.457312, + 45.501192 + ], + [ + -73.457135, + 45.501093 + ], + [ + -73.45648, + 45.500755 + ], + [ + -73.456099, + 45.500539 + ], + [ + -73.456075, + 45.50052 + ], + [ + -73.455929, + 45.500405 + ], + [ + -73.455803, + 45.500305 + ], + [ + -73.455726, + 45.500228 + ], + [ + -73.455806, + 45.50017 + ], + [ + -73.456009, + 45.500058 + ], + [ + -73.458118, + 45.498806 + ], + [ + -73.45823, + 45.49874 + ], + [ + -73.45866, + 45.498475 + ], + [ + -73.459486, + 45.49798 + ], + [ + -73.459985, + 45.497682 + ], + [ + -73.460119, + 45.497603 + ], + [ + -73.460224, + 45.497535 + ], + [ + -73.460165, + 45.497427 + ], + [ + -73.460063, + 45.497324 + ], + [ + -73.460021, + 45.497265 + ], + [ + -73.459954, + 45.497171 + ], + [ + -73.459892, + 45.497045 + ], + [ + -73.45984, + 45.496946 + ], + [ + -73.459805, + 45.496797 + ], + [ + -73.45979, + 45.496635 + ], + [ + -73.459786, + 45.496572 + ], + [ + -73.45979, + 45.496433 + ], + [ + -73.459822, + 45.496293 + ], + [ + -73.46018, + 45.495429 + ], + [ + -73.460269, + 45.495227 + ], + [ + -73.460321, + 45.495098 + ], + [ + -73.460354, + 45.495016 + ], + [ + -73.460277, + 45.4948 + ], + [ + -73.460132, + 45.49444 + ], + [ + -73.459999, + 45.494098 + ], + [ + -73.459882, + 45.493807 + ], + [ + -73.459784, + 45.493562 + ], + [ + -73.45974, + 45.493441 + ], + [ + -73.459717, + 45.493391 + ], + [ + -73.459678, + 45.493328 + ], + [ + -73.45962, + 45.493243 + ], + [ + -73.459564, + 45.493189 + ], + [ + -73.45943, + 45.493074 + ], + [ + -73.459049, + 45.492749 + ], + [ + -73.458942, + 45.492657 + ], + [ + -73.459245, + 45.492482 + ], + [ + -73.459615, + 45.492262 + ], + [ + -73.459321, + 45.492023 + ], + [ + -73.459028, + 45.491783 + ], + [ + -73.458975, + 45.49174 + ], + [ + -73.458224, + 45.492187 + ], + [ + -73.458138, + 45.492239 + ], + [ + -73.45601, + 45.493507 + ], + [ + -73.455921, + 45.493561 + ], + [ + -73.453925, + 45.494757 + ], + [ + -73.452944, + 45.495341 + ], + [ + -73.452636, + 45.495089 + ], + [ + -73.4526, + 45.49506 + ], + [ + -73.452352, + 45.49486 + ], + [ + -73.452082, + 45.49463 + ], + [ + -73.451788, + 45.494378 + ], + [ + -73.452178, + 45.494145 + ], + [ + -73.454215, + 45.492926 + ], + [ + -73.45464, + 45.492673 + ], + [ + -73.454766, + 45.492597 + ], + [ + -73.456382, + 45.491631 + ], + [ + -73.457738, + 45.49083 + ], + [ + -73.457963, + 45.490686 + ], + [ + -73.459285, + 45.489895 + ], + [ + -73.46072, + 45.489032 + ], + [ + -73.461945, + 45.488303 + ], + [ + -73.462148, + 45.488183 + ], + [ + -73.46278, + 45.487809 + ], + [ + -73.462116, + 45.487367 + ], + [ + -73.461416, + 45.486905 + ], + [ + -73.461292, + 45.486823 + ], + [ + -73.461219, + 45.486774 + ], + [ + -73.460376, + 45.486211 + ], + [ + -73.459528, + 45.485651 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.459027, + 45.485855 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.45787, + 45.486545 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.456937, + 45.48785 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456835, + 45.488612 + ], + [ + -73.456724, + 45.489525 + ], + [ + -73.456709, + 45.489602 + ], + [ + -73.456688, + 45.489687 + ], + [ + -73.456589, + 45.489894 + ], + [ + -73.456546, + 45.489981 + ], + [ + -73.45652, + 45.490034 + ], + [ + -73.456382, + 45.490186 + ], + [ + -73.456177, + 45.490348 + ], + [ + -73.455033, + 45.491035 + ], + [ + -73.454792, + 45.49118 + ], + [ + -73.454498, + 45.490948 + ], + [ + -73.454376, + 45.490852 + ], + [ + -73.454028, + 45.490572 + ], + [ + -73.453816, + 45.490388 + ], + [ + -73.453554, + 45.490154 + ], + [ + -73.453301, + 45.489897 + ], + [ + -73.453059, + 45.489641 + ], + [ + -73.452853, + 45.489389 + ], + [ + -73.452596, + 45.489092 + ], + [ + -73.452482, + 45.488993 + ], + [ + -73.452428, + 45.488961 + ], + [ + -73.452398, + 45.488943 + ], + [ + -73.452316, + 45.488894 + ], + [ + -73.45223, + 45.488835 + ], + [ + -73.452111, + 45.48878 + ], + [ + -73.452059, + 45.488756 + ], + [ + -73.452026, + 45.48874 + ], + [ + -73.451864, + 45.488677 + ], + [ + -73.451663, + 45.488618 + ], + [ + -73.451471, + 45.48856 + ], + [ + -73.451142, + 45.48852 + ], + [ + -73.450755, + 45.488507 + ], + [ + -73.450564, + 45.488501 + ], + [ + -73.450562, + 45.488591 + ], + [ + -73.450522, + 45.488807 + ], + [ + -73.450385, + 45.489131 + ], + [ + -73.450226, + 45.489293 + ], + [ + -73.450048, + 45.489455 + ], + [ + -73.449936, + 45.489523 + ], + [ + -73.449635, + 45.489705 + ], + [ + -73.449476, + 45.489801 + ], + [ + -73.44919, + 45.489963 + ], + [ + -73.448793, + 45.490206 + ], + [ + -73.44848, + 45.49039 + ], + [ + -73.448136, + 45.490592 + ], + [ + -73.447665, + 45.490889 + ], + [ + -73.447458, + 45.491003 + ], + [ + -73.447337, + 45.491069 + ], + [ + -73.44688, + 45.490686 + ], + [ + -73.446822, + 45.490639 + ], + [ + -73.446251, + 45.490171 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.44587, + 45.490786 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 265, + "properties": { + "id": "0da56a1e-ecb1-4f3c-8753-ab5934a3c6d2", + "data": { + "gtfs": { + "shape_id": "503_1_A" + }, + "segments": [ + { + "distanceMeters": 383, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 113, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 433, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 59, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 310, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 747, + "travelTimeSeconds": 106 + }, + { + "distanceMeters": 770, + "travelTimeSeconds": 109 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 334, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 32, + "travelTimeSeconds": 5 + }, + { + "distanceMeters": 112, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 20 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8035, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2830.4056478864695, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.05, + "travelTimeWithoutDwellTimesSeconds": 1140, + "operatingTimeWithLayoverTimeSeconds": 1320, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1140, + "operatingSpeedWithLayoverMetersPerSecond": 6.09, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.05 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "47ef73cf-7799-46e3-b2f1-76a6533f7746", + "9da3ecd5-fea1-433e-9a38-142aeff3882d", + "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", + "300a7442-8453-4aa4-89f9-beacdcc75174", + "dbae3900-2b78-4309-9fa5-5503ae30ad22", + "5b1f9db8-9fc7-4028-9f92-fd33d2f419e7", + "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", + "ef559a5c-0885-4ac5-a0dc-bdf67aea0546", + "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", + "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", + "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", + "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", + "bb534923-0939-4ebc-88f8-39847999c548", + "800a1d6c-4d5b-4560-b691-99e1b0db1343", + "e827aa2c-577c-4249-9fc7-9a6572084b69", + "12181a0a-32eb-4333-b444-1760ecaa417c", + "12181a0a-32eb-4333-b444-1760ecaa417c", + "0689eff9-8438-4b1c-9e3a-78c672f6ef82", + "3c0294df-b0e7-4be1-af27-4b755f5639ad", + "912a81e5-66f7-4af9-8125-ae16515fe284", + "1c6a64fd-3d5b-472f-bfe4-11a7479ddb48", + "31cd9a31-1ee8-4458-8681-91c1c006b9aa", + "923afb03-b5b7-44ed-a97d-4785d2468e97", + "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", + "720107c1-f0c2-4f37-8e59-ce7f32cd9461", + "a90c4da7-455c-41d3-9961-c7a64d627572", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", + "da4ca96f-4db9-4287-b307-afc6221c923f", + "517a8299-e807-4040-8ccd-f417dda7338c", + "517a8299-e807-4040-8ccd-f417dda7338c", + "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", + "4262a22a-885d-4877-ad99-0a8406e2adaa", + "0f232130-277e-4d7b-b106-b6821c45f0a9", + "35f25056-4f99-4b6e-babc-10c53194c70e", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "1d69d1ad-92a7-40eb-b2ae-ba14da32cb43", + "segments": [ + 0, + 4, + 13, + 16, + 19, + 21, + 27, + 32, + 38, + 43, + 48, + 53, + 60, + 68, + 73, + 77, + 82, + 93, + 98, + 106, + 111, + 115, + 126, + 134, + 137, + 141, + 148, + 157, + 164, + 168, + 180, + 184, + 191, + 199, + 206, + 210 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 265, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446648, + 45.490497 + ], + [ + -73.446822, + 45.490639 + ], + [ + -73.44688, + 45.490686 + ], + [ + -73.44726, + 45.491004 + ], + [ + -73.447337, + 45.491069 + ], + [ + -73.447665, + 45.490889 + ], + [ + -73.448136, + 45.490592 + ], + [ + -73.44848, + 45.49039 + ], + [ + -73.448793, + 45.490206 + ], + [ + -73.44919, + 45.489963 + ], + [ + -73.449327, + 45.489886 + ], + [ + -73.449476, + 45.489801 + ], + [ + -73.450048, + 45.489455 + ], + [ + -73.450226, + 45.489293 + ], + [ + -73.450385, + 45.489131 + ], + [ + -73.450522, + 45.488807 + ], + [ + -73.450553, + 45.488639 + ], + [ + -73.450562, + 45.488591 + ], + [ + -73.450564, + 45.488501 + ], + [ + -73.451142, + 45.48852 + ], + [ + -73.451218, + 45.488529 + ], + [ + -73.451471, + 45.48856 + ], + [ + -73.451663, + 45.488618 + ], + [ + -73.451864, + 45.488677 + ], + [ + -73.452026, + 45.48874 + ], + [ + -73.452059, + 45.488756 + ], + [ + -73.45223, + 45.488835 + ], + [ + -73.452272, + 45.488863 + ], + [ + -73.452316, + 45.488894 + ], + [ + -73.452398, + 45.488943 + ], + [ + -73.452482, + 45.488993 + ], + [ + -73.452596, + 45.489092 + ], + [ + -73.452853, + 45.489389 + ], + [ + -73.453059, + 45.489641 + ], + [ + -73.453301, + 45.489897 + ], + [ + -73.453554, + 45.490154 + ], + [ + -73.453816, + 45.490388 + ], + [ + -73.454028, + 45.490572 + ], + [ + -73.454376, + 45.490852 + ], + [ + -73.454694, + 45.491103 + ], + [ + -73.454792, + 45.49118 + ], + [ + -73.456177, + 45.490348 + ], + [ + -73.456311, + 45.490242 + ], + [ + -73.456382, + 45.490186 + ], + [ + -73.45652, + 45.490034 + ], + [ + -73.456589, + 45.489894 + ], + [ + -73.456688, + 45.489687 + ], + [ + -73.456691, + 45.489677 + ], + [ + -73.456709, + 45.489602 + ], + [ + -73.456724, + 45.489525 + ], + [ + -73.456835, + 45.488612 + ], + [ + -73.456897, + 45.488084 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.45772, + 45.486658 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.459245, + 45.485727 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459916, + 45.485907 + ], + [ + -73.460376, + 45.486211 + ], + [ + -73.461024, + 45.486643 + ], + [ + -73.461219, + 45.486774 + ], + [ + -73.461292, + 45.486823 + ], + [ + -73.462116, + 45.487367 + ], + [ + -73.462653, + 45.487724 + ], + [ + -73.46278, + 45.487809 + ], + [ + -73.461945, + 45.488303 + ], + [ + -73.46072, + 45.489032 + ], + [ + -73.459285, + 45.489895 + ], + [ + -73.457963, + 45.490686 + ], + [ + -73.457738, + 45.49083 + ], + [ + -73.456382, + 45.491631 + ], + [ + -73.454847, + 45.492549 + ], + [ + -73.454766, + 45.492597 + ], + [ + -73.454215, + 45.492926 + ], + [ + -73.451862, + 45.494333 + ], + [ + -73.451788, + 45.494378 + ], + [ + -73.452064, + 45.494615 + ], + [ + -73.452082, + 45.49463 + ], + [ + -73.452262, + 45.494783 + ], + [ + -73.452352, + 45.49486 + ], + [ + -73.452636, + 45.495089 + ], + [ + -73.452944, + 45.495341 + ], + [ + -73.453343, + 45.495104 + ], + [ + -73.453925, + 45.494757 + ], + [ + -73.455833, + 45.493613 + ], + [ + -73.455921, + 45.493561 + ], + [ + -73.458138, + 45.492239 + ], + [ + -73.458975, + 45.49174 + ], + [ + -73.459273, + 45.491984 + ], + [ + -73.459321, + 45.492023 + ], + [ + -73.459544, + 45.492204 + ], + [ + -73.459615, + 45.492262 + ], + [ + -73.459245, + 45.492482 + ], + [ + -73.458942, + 45.492657 + ], + [ + -73.459564, + 45.493189 + ], + [ + -73.45962, + 45.493243 + ], + [ + -73.459678, + 45.493328 + ], + [ + -73.459717, + 45.493391 + ], + [ + -73.45974, + 45.493441 + ], + [ + -73.45975, + 45.493467 + ], + [ + -73.459784, + 45.493562 + ], + [ + -73.459999, + 45.494098 + ], + [ + -73.460132, + 45.49444 + ], + [ + -73.460277, + 45.4948 + ], + [ + -73.460302, + 45.49487 + ], + [ + -73.460354, + 45.495016 + ], + [ + -73.460269, + 45.495227 + ], + [ + -73.46018, + 45.495429 + ], + [ + -73.459822, + 45.496293 + ], + [ + -73.45979, + 45.496433 + ], + [ + -73.459786, + 45.496572 + ], + [ + -73.45979, + 45.496635 + ], + [ + -73.459805, + 45.496797 + ], + [ + -73.45984, + 45.496946 + ], + [ + -73.459892, + 45.497045 + ], + [ + -73.459954, + 45.497171 + ], + [ + -73.460063, + 45.497324 + ], + [ + -73.460165, + 45.497427 + ], + [ + -73.460172, + 45.49744 + ], + [ + -73.460224, + 45.497535 + ], + [ + -73.460119, + 45.497603 + ], + [ + -73.459486, + 45.49798 + ], + [ + -73.45866, + 45.498475 + ], + [ + -73.458429, + 45.498617 + ], + [ + -73.45823, + 45.49874 + ], + [ + -73.456009, + 45.500058 + ], + [ + -73.455806, + 45.50017 + ], + [ + -73.455796, + 45.500177 + ], + [ + -73.455726, + 45.500228 + ], + [ + -73.455803, + 45.500305 + ], + [ + -73.455995, + 45.500457 + ], + [ + -73.456099, + 45.500539 + ], + [ + -73.45648, + 45.500755 + ], + [ + -73.457135, + 45.501093 + ], + [ + -73.457312, + 45.501192 + ], + [ + -73.457366, + 45.501237 + ], + [ + -73.457543, + 45.501379 + ], + [ + -73.457629, + 45.501448 + ], + [ + -73.458179, + 45.50112 + ], + [ + -73.458392, + 45.500985 + ], + [ + -73.458619, + 45.50085 + ], + [ + -73.458792, + 45.500752 + ], + [ + -73.458925, + 45.500675 + ], + [ + -73.45911, + 45.500567 + ], + [ + -73.459247, + 45.50068 + ], + [ + -73.459797, + 45.501134 + ], + [ + -73.460303, + 45.501557 + ], + [ + -73.460537, + 45.501755 + ], + [ + -73.460681, + 45.501872 + ], + [ + -73.460822, + 45.501991 + ], + [ + -73.460922, + 45.502075 + ], + [ + -73.461281, + 45.501859 + ], + [ + -73.461417, + 45.501778 + ], + [ + -73.461628, + 45.501652 + ], + [ + -73.461886, + 45.501859 + ], + [ + -73.46216, + 45.502089 + ], + [ + -73.462443, + 45.502336 + ], + [ + -73.462726, + 45.502584 + ], + [ + -73.463263, + 45.503039 + ], + [ + -73.463281, + 45.503054 + ], + [ + -73.463363, + 45.503124 + ], + [ + -73.463739, + 45.502897 + ], + [ + -73.464212, + 45.502612 + ], + [ + -73.466589, + 45.501194 + ], + [ + -73.466934, + 45.500988 + ], + [ + -73.467259, + 45.501258 + ], + [ + -73.467598, + 45.501537 + ], + [ + -73.467922, + 45.501812 + ], + [ + -73.468163, + 45.502021 + ], + [ + -73.468227, + 45.502077 + ], + [ + -73.469091, + 45.502777 + ], + [ + -73.469411, + 45.503036 + ], + [ + -73.469419, + 45.503065 + ], + [ + -73.469426, + 45.503089 + ], + [ + -73.46944, + 45.503136 + ], + [ + -73.469513, + 45.50323 + ], + [ + -73.469572, + 45.50329 + ], + [ + -73.469677, + 45.503226 + ], + [ + -73.469755, + 45.503179 + ], + [ + -73.470054, + 45.502998 + ], + [ + -73.471053, + 45.502396 + ], + [ + -73.471184, + 45.502317 + ], + [ + -73.472092, + 45.501763 + ], + [ + -73.473523, + 45.500895 + ], + [ + -73.47358, + 45.50086 + ], + [ + -73.473641, + 45.500823 + ], + [ + -73.474037, + 45.500587 + ], + [ + -73.474644, + 45.500224 + ], + [ + -73.474786, + 45.50014 + ], + [ + -73.475106, + 45.500405 + ], + [ + -73.475435, + 45.500666 + ], + [ + -73.475716, + 45.500905 + ], + [ + -73.476098, + 45.50122 + ], + [ + -73.476388, + 45.501458 + ], + [ + -73.476424, + 45.501489 + ], + [ + -73.476448, + 45.501509 + ], + [ + -73.476459, + 45.501519 + ], + [ + -73.476748, + 45.501764 + ], + [ + -73.479345, + 45.500187 + ], + [ + -73.480377, + 45.49956 + ] + ] + }, + "id": 266, + "properties": { + "id": "c9550bff-687d-4831-91ac-11b0157f730d", + "data": { + "gtfs": { + "shape_id": "503_2_R" + }, + "segments": [ + { + "distanceMeters": 173, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 74, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 827, + "travelTimeSeconds": 136 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 66, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 378, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 390, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 63, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 68 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8010, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2830.4056478864695, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.07, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 5.34, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.07 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "35f25056-4f99-4b6e-babc-10c53194c70e", + "0f232130-277e-4d7b-b106-b6821c45f0a9", + "4262a22a-885d-4877-ad99-0a8406e2adaa", + "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", + "517a8299-e807-4040-8ccd-f417dda7338c", + "da4ca96f-4db9-4287-b307-afc6221c923f", + "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "a90c4da7-455c-41d3-9961-c7a64d627572", + "720107c1-f0c2-4f37-8e59-ce7f32cd9461", + "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", + "923afb03-b5b7-44ed-a97d-4785d2468e97", + "43297c29-6e25-4fbe-a1b6-70a1ce96533d", + "43297c29-6e25-4fbe-a1b6-70a1ce96533d", + "31cd9a31-1ee8-4458-8681-91c1c006b9aa", + "1c6a64fd-3d5b-472f-bfe4-11a7479ddb48", + "3c0294df-b0e7-4be1-af27-4b755f5639ad", + "0689eff9-8438-4b1c-9e3a-78c672f6ef82", + "12181a0a-32eb-4333-b444-1760ecaa417c", + "e827aa2c-577c-4249-9fc7-9a6572084b69", + "800a1d6c-4d5b-4560-b691-99e1b0db1343", + "bb534923-0939-4ebc-88f8-39847999c548", + "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", + "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", + "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", + "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", + "a3062aba-92b8-419f-9d8e-4f21713f9dcc", + "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", + "c17cc951-65ff-4617-a096-ccd1fe6cc26f", + "dbae3900-2b78-4309-9fa5-5503ae30ad22", + "300a7442-8453-4aa4-89f9-beacdcc75174", + "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", + "9da3ecd5-fea1-433e-9a38-142aeff3882d", + "47ef73cf-7799-46e3-b2f1-76a6533f7746" + ], + "stops": [], + "line_id": "1d69d1ad-92a7-40eb-b2ae-ba14da32cb43", + "segments": [ + 0, + 10, + 13, + 20, + 26, + 37, + 49, + 57, + 61, + 70, + 75, + 80, + 84, + 92, + 95, + 99, + 105, + 111, + 120, + 125, + 139, + 144, + 148, + 157, + 163, + 170, + 173, + 180, + 184, + 189, + 191, + 201, + 204, + 208, + 217 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 266, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.380348, + 45.464835 + ], + [ + -73.380313, + 45.464882 + ], + [ + -73.380064, + 45.465238 + ], + [ + -73.378297, + 45.467692 + ], + [ + -73.3781, + 45.467967 + ], + [ + -73.377848, + 45.468313 + ], + [ + -73.375959, + 45.47092 + ], + [ + -73.375891, + 45.471015 + ], + [ + -73.37528, + 45.471878 + ], + [ + -73.374049, + 45.473595 + ], + [ + -73.373933, + 45.473762 + ], + [ + -73.373895, + 45.473813 + ], + [ + -73.373694, + 45.474085 + ], + [ + -73.37362, + 45.474193 + ], + [ + -73.373508, + 45.474319 + ], + [ + -73.373179, + 45.474777 + ], + [ + -73.373075, + 45.474921 + ], + [ + -73.372901, + 45.475178 + ], + [ + -73.371616, + 45.476961 + ], + [ + -73.369415, + 45.480017 + ], + [ + -73.36929, + 45.48019 + ], + [ + -73.369655, + 45.480389 + ], + [ + -73.37011, + 45.480637 + ], + [ + -73.370651, + 45.480936 + ], + [ + -73.372864, + 45.48216 + ], + [ + -73.373772, + 45.482665 + ], + [ + -73.373875, + 45.482724 + ], + [ + -73.373971, + 45.482778 + ], + [ + -73.374487, + 45.483067 + ], + [ + -73.374678, + 45.483169 + ], + [ + -73.37494, + 45.48331 + ], + [ + -73.375418, + 45.483571 + ], + [ + -73.376053, + 45.483919 + ], + [ + -73.376944, + 45.48441 + ], + [ + -73.377333, + 45.484662 + ], + [ + -73.377567, + 45.484792 + ], + [ + -73.377619, + 45.48482 + ], + [ + -73.377777, + 45.484906 + ], + [ + -73.378273, + 45.485158 + ], + [ + -73.379364, + 45.485713 + ], + [ + -73.379961, + 45.486024 + ], + [ + -73.381303, + 45.486687 + ], + [ + -73.381947, + 45.487 + ], + [ + -73.382231, + 45.487138 + ], + [ + -73.38239, + 45.487214 + ], + [ + -73.382639, + 45.48734 + ], + [ + -73.383202, + 45.487615 + ], + [ + -73.383953, + 45.487976 + ], + [ + -73.384639, + 45.488283 + ], + [ + -73.384699, + 45.48831 + ], + [ + -73.384728, + 45.48832 + ], + [ + -73.384901, + 45.488369 + ], + [ + -73.385381, + 45.488599 + ], + [ + -73.385628, + 45.488725 + ], + [ + -73.386215, + 45.488995 + ], + [ + -73.386314, + 45.489042 + ], + [ + -73.387001, + 45.489365 + ], + [ + -73.387621, + 45.489654 + ], + [ + -73.387955, + 45.489811 + ], + [ + -73.388224, + 45.489938 + ], + [ + -73.388765, + 45.490199 + ], + [ + -73.388952, + 45.490285 + ], + [ + -73.389177, + 45.490388 + ], + [ + -73.389565, + 45.490569 + ], + [ + -73.390592, + 45.491047 + ], + [ + -73.391016, + 45.491244 + ], + [ + -73.391367, + 45.491407 + ], + [ + -73.391618, + 45.49152 + ], + [ + -73.391679, + 45.491548 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.394218, + 45.492733 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.395964, + 45.493553 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.399594, + 45.495244 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.401121, + 45.49596 + ], + [ + -73.40161, + 45.496185 + ], + [ + -73.402418, + 45.496555 + ], + [ + -73.402953, + 45.49679 + ], + [ + -73.403403, + 45.496989 + ], + [ + -73.403543, + 45.497051 + ], + [ + -73.403795, + 45.49716 + ], + [ + -73.404434, + 45.497426 + ], + [ + -73.404858, + 45.497588 + ], + [ + -73.405172, + 45.497723 + ], + [ + -73.405568, + 45.497876 + ], + [ + -73.40628, + 45.498149 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.406574, + 45.498264 + ], + [ + -73.407513, + 45.498634 + ], + [ + -73.407743, + 45.498715 + ], + [ + -73.408565, + 45.499044 + ], + [ + -73.408613, + 45.499067 + ], + [ + -73.408846, + 45.499152 + ], + [ + -73.409074, + 45.499238 + ], + [ + -73.409338, + 45.499341 + ], + [ + -73.40994, + 45.499576 + ], + [ + -73.41039, + 45.499753 + ], + [ + -73.410514, + 45.499802 + ], + [ + -73.410857, + 45.499937 + ], + [ + -73.411184, + 45.500063 + ], + [ + -73.411788, + 45.500288 + ], + [ + -73.412066, + 45.500394 + ], + [ + -73.412332, + 45.500496 + ], + [ + -73.412769, + 45.500658 + ], + [ + -73.41311, + 45.500798 + ], + [ + -73.413399, + 45.500906 + ], + [ + -73.413646, + 45.500992 + ], + [ + -73.414045, + 45.501145 + ], + [ + -73.414479, + 45.501309 + ], + [ + -73.414536, + 45.50133 + ], + [ + -73.414535, + 45.501249 + ], + [ + -73.41472, + 45.500993 + ], + [ + -73.414847, + 45.500817 + ], + [ + -73.415148, + 45.5004 + ], + [ + -73.416523, + 45.498497 + ], + [ + -73.416635, + 45.498326 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.416874, + 45.498016 + ], + [ + -73.417076, + 45.49773 + ], + [ + -73.418831, + 45.495251 + ], + [ + -73.418892, + 45.495165 + ], + [ + -73.421028, + 45.492184 + ], + [ + -73.421099, + 45.492084 + ], + [ + -73.421183, + 45.491976 + ], + [ + -73.423219, + 45.489124 + ], + [ + -73.423292, + 45.489022 + ], + [ + -73.425247, + 45.486309 + ], + [ + -73.425509, + 45.485946 + ], + [ + -73.42584, + 45.486121 + ], + [ + -73.425916, + 45.486164 + ], + [ + -73.426288, + 45.486369 + ], + [ + -73.426623, + 45.486554 + ], + [ + -73.427029, + 45.48677 + ], + [ + -73.427476, + 45.487013 + ], + [ + -73.428043, + 45.487324 + ], + [ + -73.428381, + 45.487508 + ], + [ + -73.428432, + 45.487536 + ], + [ + -73.428849, + 45.487761 + ], + [ + -73.429341, + 45.488027 + ], + [ + -73.429759, + 45.488261 + ], + [ + -73.430152, + 45.488482 + ], + [ + -73.430558, + 45.48872 + ], + [ + -73.430899, + 45.488901 + ], + [ + -73.431242, + 45.489086 + ], + [ + -73.431275, + 45.489103 + ], + [ + -73.431961, + 45.489473 + ], + [ + -73.432063, + 45.489531 + ], + [ + -73.43217, + 45.489383 + ], + [ + -73.43219, + 45.48936 + ], + [ + -73.432305, + 45.489239 + ], + [ + -73.432556, + 45.489041 + ], + [ + -73.432684, + 45.488933 + ], + [ + -73.432859, + 45.488821 + ], + [ + -73.432921, + 45.48878 + ], + [ + -73.433484, + 45.488439 + ], + [ + -73.435092, + 45.487504 + ], + [ + -73.435153, + 45.487468 + ], + [ + -73.437094, + 45.486331 + ], + [ + -73.437465, + 45.486115 + ], + [ + -73.43775, + 45.485944 + ], + [ + -73.43786, + 45.485875 + ], + [ + -73.438008, + 45.485782 + ], + [ + -73.439264, + 45.485036 + ], + [ + -73.439959, + 45.484631 + ], + [ + -73.440593, + 45.484287 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.44102, + 45.484399 + ], + [ + -73.441191, + 45.484533 + ], + [ + -73.441638, + 45.484884 + ], + [ + -73.442268, + 45.485401 + ], + [ + -73.44238, + 45.485492 + ], + [ + -73.442979, + 45.48598 + ], + [ + -73.443236, + 45.48619 + ], + [ + -73.443584, + 45.486491 + ], + [ + -73.443685, + 45.486573 + ], + [ + -73.443944, + 45.486784 + ], + [ + -73.444066, + 45.486883 + ], + [ + -73.444405, + 45.487149 + ], + [ + -73.44464, + 45.487266 + ], + [ + -73.444883, + 45.487369 + ], + [ + -73.445062, + 45.487428 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 267, + "properties": { + "id": "00d4878f-2549-4c34-b9f3-20aefce15e49", + "data": { + "gtfs": { + "shape_id": "505_1_A" + }, + "segments": [ + { + "distanceMeters": 356, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 403, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 360, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 121, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 557, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 421, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 46, + "travelTimeSeconds": 6 + }, + { + "distanceMeters": 407, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 382, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 329, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 67, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 605, + "travelTimeSeconds": 83 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10609, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5896.650744527099, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.37, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 6.55, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.37 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "40363de6-68fe-4797-a6b6-a7c0b8b379e0", + "24542ec6-1b63-420d-8089-98a7341dfe66", + "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", + "2cd6db83-9a4e-4640-91da-759ec9e4a386", + "c5d63249-9c53-468b-a75e-33839919bc02", + "f585bf2c-536e-4916-a0ee-20092a76ccad", + "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", + "057da5dd-23f2-431d-8955-7a7d8f0dae40", + "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", + "88a428f4-cdde-43a8-a2c3-c4652eae6722", + "d664171d-6b67-486f-b850-92d7b923ec60", + "658aec75-ba5b-4e43-b93b-5305ff3f6685", + "8d50e155-65e6-4b67-8d83-f347e12cf6d7", + "a2ac9477-abf0-4b55-8588-e045bd0373a2", + "ced239e0-91f5-4429-96fd-20bbb8fcfd11", + "70ea9063-86f0-43f5-9e7d-16ea087fc4ce", + "69b9716f-dd31-4ae3-9736-6d5edb237b8a", + "cb20b749-b55e-4251-94cd-215651864e8b", + "33ed66fe-2193-4e2a-b51d-d25140b9ad80", + "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", + "aab8672e-86c9-4a43-9806-f5135dc02b4e", + "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", + "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", + "69889f24-c076-4661-981b-6008a401d446", + "853b0202-bae1-4c20-ab0e-8b27d1350e9a", + "853b0202-bae1-4c20-ab0e-8b27d1350e9a", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "bf4259d8-23ae-478a-8a93-ec28083b908d", + "30c08115-a1b6-45b8-9122-c5fe99723d2e", + "0e836f4e-0231-42bf-9c3d-37ea2aef8934", + "037aae6d-413d-4b3d-8987-50e8714ef6c5", + "a788cfe3-2037-44e7-ae51-cd0388e8e41f", + "9346e734-c85a-4d09-88f4-23e94e4bdb4c", + "40ff3e02-8b3f-498b-908e-b391cc70a163", + "68549053-a194-4fc4-9393-09f9a34040bb", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "e72d0d41-60dd-429c-9fc0-986190945d76", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "9e239ddb-5dce-4679-82bc-fa1d6e200324", + "segments": [ + 0, + 3, + 6, + 11, + 15, + 18, + 19, + 29, + 35, + 42, + 48, + 55, + 58, + 61, + 68, + 77, + 84, + 89, + 94, + 97, + 104, + 113, + 115, + 120, + 127, + 130, + 137, + 138, + 140, + 143, + 145, + 154, + 162, + 174, + 179, + 183, + 186, + 188, + 194 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 267, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445508, + 45.489489 + ], + [ + -73.4453, + 45.489165 + ], + [ + -73.445238, + 45.489052 + ], + [ + -73.445212, + 45.488985 + ], + [ + -73.445181, + 45.488904 + ], + [ + -73.445074, + 45.488728 + ], + [ + -73.445053, + 45.488544 + ], + [ + -73.445044, + 45.488377 + ], + [ + -73.445046, + 45.488242 + ], + [ + -73.445073, + 45.488085 + ], + [ + -73.445118, + 45.487932 + ], + [ + -73.445182, + 45.487779 + ], + [ + -73.445261, + 45.48759 + ], + [ + -73.445319, + 45.487496 + ], + [ + -73.445386, + 45.487388 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445129, + 45.48732 + ], + [ + -73.444962, + 45.487262 + ], + [ + -73.444731, + 45.487167 + ], + [ + -73.444565, + 45.487086 + ], + [ + -73.444194, + 45.486807 + ], + [ + -73.443808, + 45.486496 + ], + [ + -73.443706, + 45.486415 + ], + [ + -73.44336, + 45.486118 + ], + [ + -73.442629, + 45.485517 + ], + [ + -73.442528, + 45.485434 + ], + [ + -73.441754, + 45.484812 + ], + [ + -73.440974, + 45.484193 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.440497, + 45.484339 + ], + [ + -73.440355, + 45.484416 + ], + [ + -73.439959, + 45.484631 + ], + [ + -73.439264, + 45.485036 + ], + [ + -73.438126, + 45.485712 + ], + [ + -73.438008, + 45.485782 + ], + [ + -73.43775, + 45.485944 + ], + [ + -73.437465, + 45.486115 + ], + [ + -73.437094, + 45.486331 + ], + [ + -73.435294, + 45.487385 + ], + [ + -73.435153, + 45.487468 + ], + [ + -73.433484, + 45.488439 + ], + [ + -73.432921, + 45.48878 + ], + [ + -73.432748, + 45.488892 + ], + [ + -73.432684, + 45.488933 + ], + [ + -73.432556, + 45.489041 + ], + [ + -73.432305, + 45.489239 + ], + [ + -73.43219, + 45.48936 + ], + [ + -73.43217, + 45.489383 + ], + [ + -73.432063, + 45.489531 + ], + [ + -73.431961, + 45.489473 + ], + [ + -73.431275, + 45.489103 + ], + [ + -73.431227, + 45.489078 + ], + [ + -73.430899, + 45.488901 + ], + [ + -73.430558, + 45.48872 + ], + [ + -73.430152, + 45.488482 + ], + [ + -73.429759, + 45.488261 + ], + [ + -73.429341, + 45.488027 + ], + [ + -73.428849, + 45.487761 + ], + [ + -73.428458, + 45.48755 + ], + [ + -73.428432, + 45.487536 + ], + [ + -73.428043, + 45.487324 + ], + [ + -73.427476, + 45.487013 + ], + [ + -73.427029, + 45.48677 + ], + [ + -73.426623, + 45.486554 + ], + [ + -73.426288, + 45.486369 + ], + [ + -73.42584, + 45.486121 + ], + [ + -73.425562, + 45.485974 + ], + [ + -73.425509, + 45.485946 + ], + [ + -73.425239, + 45.486321 + ], + [ + -73.423337, + 45.488959 + ], + [ + -73.423292, + 45.489022 + ], + [ + -73.421243, + 45.491892 + ], + [ + -73.421183, + 45.491976 + ], + [ + -73.421099, + 45.492084 + ], + [ + -73.420887, + 45.49238 + ], + [ + -73.418966, + 45.495062 + ], + [ + -73.418892, + 45.495165 + ], + [ + -73.416874, + 45.498016 + ], + [ + -73.416837, + 45.498063 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.416635, + 45.498326 + ], + [ + -73.416523, + 45.498497 + ], + [ + -73.414847, + 45.500817 + ], + [ + -73.414624, + 45.501125 + ], + [ + -73.414535, + 45.501249 + ], + [ + -73.414536, + 45.50133 + ], + [ + -73.414045, + 45.501145 + ], + [ + -73.414009, + 45.501131 + ], + [ + -73.413646, + 45.500992 + ], + [ + -73.413399, + 45.500906 + ], + [ + -73.41311, + 45.500798 + ], + [ + -73.412769, + 45.500658 + ], + [ + -73.412478, + 45.50055 + ], + [ + -73.412332, + 45.500496 + ], + [ + -73.411788, + 45.500288 + ], + [ + -73.411184, + 45.500063 + ], + [ + -73.410857, + 45.499937 + ], + [ + -73.410514, + 45.499802 + ], + [ + -73.410418, + 45.499764 + ], + [ + -73.40994, + 45.499576 + ], + [ + -73.409232, + 45.4993 + ], + [ + -73.409074, + 45.499238 + ], + [ + -73.408846, + 45.499152 + ], + [ + -73.408613, + 45.499067 + ], + [ + -73.408565, + 45.499044 + ], + [ + -73.407743, + 45.498715 + ], + [ + -73.407513, + 45.498634 + ], + [ + -73.406733, + 45.498327 + ], + [ + -73.406574, + 45.498264 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.405568, + 45.497876 + ], + [ + -73.405172, + 45.497723 + ], + [ + -73.404858, + 45.497588 + ], + [ + -73.404434, + 45.497426 + ], + [ + -73.403795, + 45.49716 + ], + [ + -73.403713, + 45.497124 + ], + [ + -73.403543, + 45.497051 + ], + [ + -73.402953, + 45.49679 + ], + [ + -73.402418, + 45.496555 + ], + [ + -73.401777, + 45.496261 + ], + [ + -73.401121, + 45.49596 + ], + [ + -73.400118, + 45.495495 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.396677, + 45.493881 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.395087, + 45.49314 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.391618, + 45.49152 + ], + [ + -73.391367, + 45.491407 + ], + [ + -73.391255, + 45.491355 + ], + [ + -73.391016, + 45.491244 + ], + [ + -73.390592, + 45.491047 + ], + [ + -73.389578, + 45.490575 + ], + [ + -73.389565, + 45.490569 + ], + [ + -73.389177, + 45.490388 + ], + [ + -73.388765, + 45.490199 + ], + [ + -73.388224, + 45.489938 + ], + [ + -73.387887, + 45.489779 + ], + [ + -73.387621, + 45.489654 + ], + [ + -73.387001, + 45.489365 + ], + [ + -73.386341, + 45.489055 + ], + [ + -73.386215, + 45.488995 + ], + [ + -73.385628, + 45.488725 + ], + [ + -73.385381, + 45.488599 + ], + [ + -73.385175, + 45.4885 + ], + [ + -73.384901, + 45.488369 + ], + [ + -73.384743, + 45.488246 + ], + [ + -73.384445, + 45.488089 + ], + [ + -73.384044, + 45.487891 + ], + [ + -73.383491, + 45.487611 + ], + [ + -73.382868, + 45.487294 + ], + [ + -73.382618, + 45.487167 + ], + [ + -73.3825, + 45.487106 + ], + [ + -73.382345, + 45.487025 + ], + [ + -73.382237, + 45.486971 + ], + [ + -73.381986, + 45.486854 + ], + [ + -73.381371, + 45.486556 + ], + [ + -73.380021, + 45.485902 + ], + [ + -73.379495, + 45.485632 + ], + [ + -73.378643, + 45.485213 + ], + [ + -73.377846, + 45.484834 + ], + [ + -73.377624, + 45.484727 + ], + [ + -73.377163, + 45.484505 + ], + [ + -73.376944, + 45.48441 + ], + [ + -73.376053, + 45.483919 + ], + [ + -73.375418, + 45.483571 + ], + [ + -73.375044, + 45.483367 + ], + [ + -73.37494, + 45.48331 + ], + [ + -73.374487, + 45.483067 + ], + [ + -73.373971, + 45.482778 + ], + [ + -73.373875, + 45.482724 + ], + [ + -73.373772, + 45.482665 + ], + [ + -73.372864, + 45.48216 + ], + [ + -73.37011, + 45.480637 + ], + [ + -73.369655, + 45.480389 + ], + [ + -73.36929, + 45.48019 + ], + [ + -73.369609, + 45.479748 + ], + [ + -73.369628, + 45.479721 + ], + [ + -73.371679, + 45.476874 + ], + [ + -73.372901, + 45.475178 + ], + [ + -73.373075, + 45.474921 + ], + [ + -73.373409, + 45.474457 + ], + [ + -73.373508, + 45.474319 + ], + [ + -73.37362, + 45.474193 + ], + [ + -73.373694, + 45.474085 + ], + [ + -73.373933, + 45.473762 + ], + [ + -73.374049, + 45.473595 + ], + [ + -73.374382, + 45.473131 + ], + [ + -73.37528, + 45.471878 + ], + [ + -73.375849, + 45.471074 + ], + [ + -73.375891, + 45.471015 + ], + [ + -73.377848, + 45.468313 + ], + [ + -73.37806, + 45.468022 + ], + [ + -73.3781, + 45.467967 + ], + [ + -73.380064, + 45.465238 + ], + [ + -73.380233, + 45.464997 + ] + ] + }, + "id": 268, + "properties": { + "id": "e827135a-73d3-4945-83f2-49c9ceca8847", + "data": { + "gtfs": { + "shape_id": "505_2_R" + }, + "segments": [ + { + "distanceMeters": 757, + "travelTimeSeconds": 115 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 49, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 61, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 334, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 382, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 359, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 475, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 630, + "travelTimeSeconds": 97 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 381, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 377, + "travelTimeSeconds": 58 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10579, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5896.650744527099, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.53, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 5.88, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.53 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "68549053-a194-4fc4-9393-09f9a34040bb", + "40ff3e02-8b3f-498b-908e-b391cc70a163", + "b535e273-90c1-49b6-b38e-2087d5bbebed", + "9346e734-c85a-4d09-88f4-23e94e4bdb4c", + "a788cfe3-2037-44e7-ae51-cd0388e8e41f", + "5665bcec-62a1-4d01-9550-6900a57f083d", + "0e836f4e-0231-42bf-9c3d-37ea2aef8934", + "30c08115-a1b6-45b8-9122-c5fe99723d2e", + "30c08115-a1b6-45b8-9122-c5fe99723d2e", + "bf4259d8-23ae-478a-8a93-ec28083b908d", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "853b0202-bae1-4c20-ab0e-8b27d1350e9a", + "69889f24-c076-4661-981b-6008a401d446", + "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", + "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", + "50ca3159-13cc-4149-b07f-8267a31166e3", + "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", + "33ed66fe-2193-4e2a-b51d-d25140b9ad80", + "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", + "69b9716f-dd31-4ae3-9736-6d5edb237b8a", + "8354e556-947c-481c-96bd-d61737767f2d", + "ced239e0-91f5-4429-96fd-20bbb8fcfd11", + "a2ac9477-abf0-4b55-8588-e045bd0373a2", + "8d50e155-65e6-4b67-8d83-f347e12cf6d7", + "658aec75-ba5b-4e43-b93b-5305ff3f6685", + "d664171d-6b67-486f-b850-92d7b923ec60", + "88a428f4-cdde-43a8-a2c3-c4652eae6722", + "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", + "057da5dd-23f2-431d-8955-7a7d8f0dae40", + "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", + "f585bf2c-536e-4916-a0ee-20092a76ccad", + "c5d63249-9c53-468b-a75e-33839919bc02", + "00770ec2-f385-4c5e-86f3-1e107a204be7", + "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", + "24542ec6-1b63-420d-8089-98a7341dfe66", + "40363de6-68fe-4797-a6b6-a7c0b8b379e0" + ], + "stops": [], + "line_id": "9e239ddb-5dce-4679-82bc-fa1d6e200324", + "segments": [ + 0, + 38, + 41, + 44, + 48, + 53, + 57, + 66, + 73, + 81, + 84, + 86, + 89, + 90, + 93, + 98, + 107, + 113, + 115, + 122, + 130, + 134, + 136, + 142, + 149, + 162, + 165, + 170, + 173, + 177, + 184, + 194, + 199, + 210, + 211, + 214, + 220, + 222, + 225 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 268, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.411475, + 45.472115 + ], + [ + -73.411574, + 45.472042 + ], + [ + -73.413919, + 45.470298 + ], + [ + -73.414113, + 45.470154 + ], + [ + -73.415612, + 45.469047 + ], + [ + -73.415792, + 45.468914 + ], + [ + -73.415843, + 45.468873 + ], + [ + -73.415903, + 45.468828 + ], + [ + -73.417646, + 45.46754 + ], + [ + -73.417764, + 45.467453 + ], + [ + -73.421226, + 45.464893 + ], + [ + -73.421345, + 45.464806 + ], + [ + -73.424239, + 45.462663 + ], + [ + -73.424593, + 45.462401 + ], + [ + -73.424964, + 45.462646 + ], + [ + -73.425069, + 45.462716 + ], + [ + -73.425478, + 45.462986 + ], + [ + -73.426204, + 45.463466 + ], + [ + -73.426502, + 45.463663 + ], + [ + -73.43053, + 45.466326 + ], + [ + -73.430808, + 45.46651 + ], + [ + -73.432747, + 45.467791 + ], + [ + -73.434084, + 45.46867 + ], + [ + -73.434186, + 45.468737 + ], + [ + -73.434223, + 45.46871 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.434426, + 45.468557 + ], + [ + -73.434574, + 45.46844 + ], + [ + -73.434595, + 45.468426 + ], + [ + -73.434654, + 45.468386 + ], + [ + -73.434706, + 45.46835 + ], + [ + -73.43479, + 45.468319 + ], + [ + -73.434953, + 45.468251 + ], + [ + -73.435895, + 45.468018 + ], + [ + -73.437601, + 45.467581 + ], + [ + -73.437909, + 45.467502 + ], + [ + -73.438637, + 45.467322 + ], + [ + -73.438692, + 45.467309 + ], + [ + -73.439001, + 45.46721 + ], + [ + -73.439742, + 45.466711 + ], + [ + -73.439775, + 45.466686 + ], + [ + -73.440051, + 45.466472 + ], + [ + -73.440337, + 45.466252 + ], + [ + -73.440976, + 45.46578 + ], + [ + -73.441167, + 45.465915 + ], + [ + -73.441375, + 45.466041 + ], + [ + -73.441736, + 45.466257 + ], + [ + -73.442013, + 45.466357 + ], + [ + -73.442168, + 45.466409 + ], + [ + -73.442317, + 45.46646 + ], + [ + -73.442367, + 45.466471 + ], + [ + -73.442596, + 45.466523 + ], + [ + -73.442918, + 45.466614 + ], + [ + -73.44316, + 45.466708 + ], + [ + -73.4434, + 45.466798 + ], + [ + -73.443571, + 45.466875 + ], + [ + -73.443775, + 45.466978 + ], + [ + -73.44395, + 45.467091 + ], + [ + -73.44423, + 45.467276 + ], + [ + -73.44435, + 45.46737 + ], + [ + -73.44443, + 45.467451 + ], + [ + -73.444454, + 45.467474 + ], + [ + -73.444535, + 45.46755 + ], + [ + -73.445104, + 45.468072 + ], + [ + -73.445679, + 45.468635 + ], + [ + -73.44617, + 45.469098 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445905, + 45.469485 + ], + [ + -73.445671, + 45.469643 + ], + [ + -73.445475, + 45.469778 + ], + [ + -73.445396, + 45.469832 + ], + [ + -73.445298, + 45.469899 + ], + [ + -73.444328, + 45.470583 + ], + [ + -73.444068, + 45.470766 + ], + [ + -73.44265, + 45.471767 + ], + [ + -73.442644, + 45.471771 + ], + [ + -73.442519, + 45.471859 + ], + [ + -73.441942, + 45.47227 + ], + [ + -73.441014, + 45.472931 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.440777, + 45.473082 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.441391, + 45.473553 + ], + [ + -73.441938, + 45.473928 + ], + [ + -73.442708, + 45.474456 + ], + [ + -73.443374, + 45.47491 + ], + [ + -73.443474, + 45.474978 + ], + [ + -73.44437, + 45.475586 + ], + [ + -73.445013, + 45.476022 + ], + [ + -73.445067, + 45.476058 + ], + [ + -73.445608, + 45.476432 + ], + [ + -73.446237, + 45.47686 + ], + [ + -73.44681, + 45.477252 + ], + [ + -73.446869, + 45.477292 + ], + [ + -73.447197, + 45.477514 + ], + [ + -73.44754, + 45.477747 + ], + [ + -73.448146, + 45.478157 + ], + [ + -73.448654, + 45.478499 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.450119, + 45.479471 + ], + [ + -73.450864, + 45.479959 + ], + [ + -73.451, + 45.480048 + ], + [ + -73.451438, + 45.480342 + ], + [ + -73.451689, + 45.480511 + ], + [ + -73.452165, + 45.480813 + ], + [ + -73.452546, + 45.481079 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452379, + 45.481446 + ], + [ + -73.452062, + 45.481636 + ], + [ + -73.45135, + 45.482063 + ], + [ + -73.451248, + 45.482124 + ], + [ + -73.450095, + 45.482809 + ], + [ + -73.449882, + 45.482936 + ], + [ + -73.449245, + 45.483336 + ], + [ + -73.449101, + 45.483471 + ], + [ + -73.448914, + 45.483713 + ], + [ + -73.448817, + 45.483898 + ], + [ + -73.448629, + 45.484109 + ], + [ + -73.44844, + 45.484271 + ], + [ + -73.448213, + 45.48449 + ], + [ + -73.44775, + 45.484937 + ], + [ + -73.447415, + 45.485256 + ], + [ + -73.447237, + 45.485427 + ], + [ + -73.447005, + 45.485643 + ], + [ + -73.446786, + 45.485851 + ], + [ + -73.446708, + 45.485926 + ], + [ + -73.445795, + 45.486794 + ], + [ + -73.445654, + 45.486915 + ], + [ + -73.445524, + 45.487041 + ], + [ + -73.445408, + 45.487167 + ], + [ + -73.445358, + 45.487232 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.44587, + 45.490786 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 269, + "properties": { + "id": "7be5a65e-e969-4fc2-a290-7a8ca74fdb0f", + "data": { + "gtfs": { + "shape_id": "521_1_A" + }, + "segments": [ + { + "distanceMeters": 278, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 406, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 80, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 494, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 58, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 317, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 42, + "travelTimeSeconds": 6 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 509, + "travelTimeSeconds": 74 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7046, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3418.2886933466457, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.91, + "travelTimeWithoutDwellTimesSeconds": 1020, + "operatingTimeWithLayoverTimeSeconds": 1200, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1020, + "operatingSpeedWithLayoverMetersPerSecond": 5.87, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.91 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "cbe5dd37-dce1-464a-9725-6d31d37c48ab", + "8dc191fb-71db-4873-9019-c9cedd32b2f0", + "176a1328-a08b-40f7-9010-c279f0b6cf5d", + "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", + "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", + "d739fe08-5298-4356-bd9e-c48a7fee16a1", + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "2f104875-795a-4778-a419-276272abfb07", + "ba86f45f-9fb5-4525-a50b-a876919fd012", + "988c86da-04eb-4067-b650-f13c447b17e7", + "988c86da-04eb-4067-b650-f13c447b17e7", + "4827a17d-8dc9-4cbd-8430-3334ebece64a", + "504cb53f-f1f4-46f2-81f5-f99fef8227fd", + "966472c1-4384-4d94-92f7-48afa023de51", + "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", + "c8919560-2bb2-4063-8184-8e6c296badbe", + "e80498a8-505d-4215-ba07-7582f8783d8e", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "c4061c94-e615-4bca-b219-1ff6ea9657d0", + "c4061c94-e615-4bca-b219-1ff6ea9657d0", + "89553e99-6867-4296-935e-718bb768cb73", + "72a48bdf-3a35-4f3b-8d05-e465faf044cf", + "70af9f63-28e4-474e-896b-5462b7252980", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "d9b94443-0b59-40db-aecb-0acb5ea7976c", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "dcd0b658-eb7c-42e6-9b3d-e7f55babd3a5", + "segments": [ + 0, + 2, + 4, + 8, + 10, + 12, + 14, + 17, + 20, + 22, + 28, + 34, + 41, + 48, + 61, + 65, + 73, + 74, + 78, + 86, + 89, + 93, + 95, + 98, + 102, + 107, + 112, + 113, + 121, + 126, + 132 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 269, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445508, + 45.489489 + ], + [ + -73.4453, + 45.489165 + ], + [ + -73.445238, + 45.489052 + ], + [ + -73.445212, + 45.488985 + ], + [ + -73.445181, + 45.488904 + ], + [ + -73.445074, + 45.488728 + ], + [ + -73.445053, + 45.488544 + ], + [ + -73.445044, + 45.488377 + ], + [ + -73.445046, + 45.488242 + ], + [ + -73.445073, + 45.488085 + ], + [ + -73.445118, + 45.487932 + ], + [ + -73.445182, + 45.487779 + ], + [ + -73.445261, + 45.48759 + ], + [ + -73.445319, + 45.487496 + ], + [ + -73.445386, + 45.487388 + ], + [ + -73.445526, + 45.487217 + ], + [ + -73.445638, + 45.487095 + ], + [ + -73.445642, + 45.487092 + ], + [ + -73.445764, + 45.486978 + ], + [ + -73.445905, + 45.486857 + ], + [ + -73.446708, + 45.486092 + ], + [ + -73.44682, + 45.485985 + ], + [ + -73.447123, + 45.485706 + ], + [ + -73.447356, + 45.48549 + ], + [ + -73.447536, + 45.485315 + ], + [ + -73.447867, + 45.484995 + ], + [ + -73.448282, + 45.484595 + ], + [ + -73.448552, + 45.484334 + ], + [ + -73.448747, + 45.484168 + ], + [ + -73.448891, + 45.484006 + ], + [ + -73.448947, + 45.483943 + ], + [ + -73.449046, + 45.483754 + ], + [ + -73.449223, + 45.483529 + ], + [ + -73.449352, + 45.483408 + ], + [ + -73.449867, + 45.483086 + ], + [ + -73.449978, + 45.483017 + ], + [ + -73.451449, + 45.482131 + ], + [ + -73.45177, + 45.481937 + ], + [ + -73.45215, + 45.481708 + ], + [ + -73.452851, + 45.48129 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452516, + 45.480856 + ], + [ + -73.452296, + 45.480719 + ], + [ + -73.452295, + 45.480718 + ], + [ + -73.451913, + 45.480471 + ], + [ + -73.451837, + 45.480421 + ], + [ + -73.451565, + 45.480238 + ], + [ + -73.451004, + 45.47986 + ], + [ + -73.450929, + 45.479809 + ], + [ + -73.450257, + 45.479368 + ], + [ + -73.449703, + 45.479007 + ], + [ + -73.449587, + 45.478931 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448305, + 45.478058 + ], + [ + -73.447778, + 45.477701 + ], + [ + -73.4477, + 45.477648 + ], + [ + -73.446992, + 45.477175 + ], + [ + -73.446393, + 45.476765 + ], + [ + -73.445743, + 45.476329 + ], + [ + -73.445373, + 45.476072 + ], + [ + -73.445205, + 45.475955 + ], + [ + -73.444867, + 45.475726 + ], + [ + -73.444508, + 45.475482 + ], + [ + -73.443707, + 45.474941 + ], + [ + -73.443609, + 45.474874 + ], + [ + -73.44285, + 45.474357 + ], + [ + -73.441174, + 45.473211 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.442521, + 45.472047 + ], + [ + -73.442653, + 45.471954 + ], + [ + -73.444466, + 45.470668 + ], + [ + -73.444558, + 45.470603 + ], + [ + -73.444693, + 45.470507 + ], + [ + -73.445328, + 45.470057 + ], + [ + -73.445338, + 45.470052 + ], + [ + -73.445622, + 45.469854 + ], + [ + -73.446091, + 45.469543 + ], + [ + -73.446378, + 45.469352 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445679, + 45.468635 + ], + [ + -73.445104, + 45.468072 + ], + [ + -73.444622, + 45.467631 + ], + [ + -73.444535, + 45.46755 + ], + [ + -73.44443, + 45.467451 + ], + [ + -73.44435, + 45.46737 + ], + [ + -73.44423, + 45.467276 + ], + [ + -73.44395, + 45.467091 + ], + [ + -73.443775, + 45.466978 + ], + [ + -73.443571, + 45.466875 + ], + [ + -73.4434, + 45.466798 + ], + [ + -73.44316, + 45.466708 + ], + [ + -73.442918, + 45.466614 + ], + [ + -73.442763, + 45.46657 + ], + [ + -73.442596, + 45.466523 + ], + [ + -73.442367, + 45.466471 + ], + [ + -73.442317, + 45.46646 + ], + [ + -73.442026, + 45.466361 + ], + [ + -73.442013, + 45.466357 + ], + [ + -73.441736, + 45.466257 + ], + [ + -73.441411, + 45.466062 + ], + [ + -73.441167, + 45.465915 + ], + [ + -73.440976, + 45.46578 + ], + [ + -73.440466, + 45.466156 + ], + [ + -73.440337, + 45.466252 + ], + [ + -73.439775, + 45.466686 + ], + [ + -73.439742, + 45.466711 + ], + [ + -73.439001, + 45.46721 + ], + [ + -73.438692, + 45.467309 + ], + [ + -73.438637, + 45.467322 + ], + [ + -73.438044, + 45.467468 + ], + [ + -73.437909, + 45.467502 + ], + [ + -73.435895, + 45.468018 + ], + [ + -73.434953, + 45.468251 + ], + [ + -73.43479, + 45.468319 + ], + [ + -73.434706, + 45.46835 + ], + [ + -73.434654, + 45.468386 + ], + [ + -73.434574, + 45.46844 + ], + [ + -73.434426, + 45.468557 + ], + [ + -73.434422, + 45.46856 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.433058, + 45.467863 + ], + [ + -73.430737, + 45.466325 + ], + [ + -73.430632, + 45.466255 + ], + [ + -73.430216, + 45.465979 + ], + [ + -73.426688, + 45.46364 + ], + [ + -73.426608, + 45.463587 + ], + [ + -73.425566, + 45.462896 + ], + [ + -73.425014, + 45.46253 + ], + [ + -73.424854, + 45.462424 + ], + [ + -73.4247, + 45.462321 + ], + [ + -73.424593, + 45.462401 + ], + [ + -73.424266, + 45.462642 + ], + [ + -73.423965, + 45.462865 + ], + [ + -73.421428, + 45.464744 + ], + [ + -73.421345, + 45.464806 + ], + [ + -73.417822, + 45.46741 + ], + [ + -73.417764, + 45.467453 + ], + [ + -73.416005, + 45.468753 + ], + [ + -73.415903, + 45.468828 + ], + [ + -73.415843, + 45.468873 + ], + [ + -73.415792, + 45.468914 + ], + [ + -73.4142, + 45.47009 + ], + [ + -73.414113, + 45.470154 + ], + [ + -73.411712, + 45.47194 + ] + ] + }, + "id": 270, + "properties": { + "id": "fe266d43-127c-46c4-a65e-96b42bee339f", + "data": { + "gtfs": { + "shape_id": "521_2_R" + }, + "segments": [ + { + "distanceMeters": 492, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 121, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 104, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 311, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 392, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 56, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 100, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 49 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6983, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3418.2886933466457, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.82, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 5.06, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.82 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "5f21960f-8919-4407-8a49-57c39947c4fe", + "cc43f372-04e8-4c4c-b711-2e4159e3855d", + "9b7055a8-adca-44c6-9935-6026756d4460", + "76ff8292-f41f-4d17-998d-6dd3d2c32288", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "e80498a8-505d-4215-ba07-7582f8783d8e", + "014d61e3-acfc-41f6-b78a-5c2178c073b1", + "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", + "966472c1-4384-4d94-92f7-48afa023de51", + "43d1b9da-374a-4022-9200-6e68a13388db", + "504cb53f-f1f4-46f2-81f5-f99fef8227fd", + "4827a17d-8dc9-4cbd-8430-3334ebece64a", + "988c86da-04eb-4067-b650-f13c447b17e7", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "988183db-88f1-47cb-87bf-b2a03dd4a38d", + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "d739fe08-5298-4356-bd9e-c48a7fee16a1", + "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", + "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", + "176a1328-a08b-40f7-9010-c279f0b6cf5d", + "8dc191fb-71db-4873-9019-c9cedd32b2f0", + "cbe5dd37-dce1-464a-9725-6d31d37c48ab" + ], + "stops": [], + "line_id": "dcd0b658-eb7c-42e6-9b3d-e7f55babd3a5", + "segments": [ + 0, + 31, + 34, + 40, + 48, + 51, + 56, + 62, + 65, + 69, + 74, + 78, + 81, + 83, + 87, + 92, + 97, + 108, + 115, + 118, + 125, + 134, + 137, + 139, + 140, + 144, + 148, + 149, + 151, + 153, + 157 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 270, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.478751, + 45.473401 + ], + [ + -73.478906, + 45.473406 + ], + [ + -73.482473, + 45.473519 + ], + [ + -73.482622, + 45.473524 + ], + [ + -73.483288, + 45.473542 + ], + [ + -73.483471, + 45.473542 + ], + [ + -73.483606, + 45.473542 + ], + [ + -73.484062, + 45.473524 + ], + [ + -73.484567, + 45.473475 + ], + [ + -73.484784, + 45.473448 + ], + [ + -73.485243, + 45.473362 + ], + [ + -73.485556, + 45.473295 + ], + [ + -73.485874, + 45.4732 + ], + [ + -73.485899, + 45.473193 + ], + [ + -73.485995, + 45.473164 + ], + [ + -73.486151, + 45.473119 + ], + [ + -73.48667, + 45.47295 + ], + [ + -73.486787, + 45.472912 + ], + [ + -73.488142, + 45.472472 + ], + [ + -73.488555, + 45.472341 + ], + [ + -73.488966, + 45.472197 + ], + [ + -73.489081, + 45.472161 + ], + [ + -73.489198, + 45.472121 + ], + [ + -73.489607, + 45.471977 + ], + [ + -73.489849, + 45.471871 + ], + [ + -73.490057, + 45.471779 + ], + [ + -73.490953, + 45.471352 + ], + [ + -73.49113, + 45.471275 + ], + [ + -73.491309, + 45.471203 + ], + [ + -73.49144, + 45.471158 + ], + [ + -73.491671, + 45.471086 + ], + [ + -73.492077, + 45.471005 + ], + [ + -73.49239, + 45.47096 + ], + [ + -73.492603, + 45.470947 + ], + [ + -73.492828, + 45.470933 + ], + [ + -73.493058, + 45.470938 + ], + [ + -73.494082, + 45.470974 + ], + [ + -73.49484, + 45.471001 + ], + [ + -73.494847, + 45.470884 + ], + [ + -73.494862, + 45.47056 + ], + [ + -73.494801, + 45.470439 + ], + [ + -73.494791, + 45.470417 + ], + [ + -73.494611, + 45.470061 + ], + [ + -73.494154, + 45.469237 + ], + [ + -73.494075, + 45.469188 + ], + [ + -73.49395, + 45.46917 + ], + [ + -73.492822, + 45.469117 + ], + [ + -73.4927, + 45.469111 + ], + [ + -73.492434, + 45.469107 + ], + [ + -73.489024, + 45.468993 + ], + [ + -73.488788, + 45.468985 + ], + [ + -73.487892, + 45.468935 + ], + [ + -73.486913, + 45.468899 + ], + [ + -73.486742, + 45.468895 + ], + [ + -73.486598, + 45.468913 + ], + [ + -73.486363, + 45.468976 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.485272, + 45.468957 + ], + [ + -73.485183, + 45.468899 + ], + [ + -73.485068, + 45.468858 + ], + [ + -73.484983, + 45.468836 + ], + [ + -73.484852, + 45.468827 + ], + [ + -73.484135, + 45.468799 + ], + [ + -73.484035, + 45.468795 + ], + [ + -73.482517, + 45.468777 + ], + [ + -73.481592, + 45.468898 + ], + [ + -73.4808, + 45.468947 + ], + [ + -73.480705, + 45.468952 + ], + [ + -73.479733, + 45.468916 + ], + [ + -73.478795, + 45.46888 + ], + [ + -73.477949, + 45.468846 + ], + [ + -73.477791, + 45.468839 + ], + [ + -73.475537, + 45.468744 + ], + [ + -73.475149, + 45.468731 + ], + [ + -73.474822, + 45.468708 + ], + [ + -73.474819, + 45.468708 + ], + [ + -73.47474, + 45.468663 + ], + [ + -73.474714, + 45.46866 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.47318, + 45.468285 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.4714, + 45.468097 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469319, + 45.467991 + ], + [ + -73.468598, + 45.467969 + ], + [ + -73.468434, + 45.467978 + ], + [ + -73.467926, + 45.468045 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465547, + 45.468207 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.463779, + 45.468251 + ], + [ + -73.463257, + 45.46862 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463016, + 45.468741 + ], + [ + -73.462763, + 45.468943 + ], + [ + -73.462689, + 45.46902 + ], + [ + -73.46267, + 45.46904 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.461012, + 45.470189 + ], + [ + -73.460776, + 45.470351 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.458419, + 45.471961 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.456036, + 45.473591 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.453663, + 45.475216 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.451318, + 45.476821 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.449381, + 45.478147 + ], + [ + -73.449265, + 45.478226 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448868, + 45.478494 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.449044, + 45.479268 + ], + [ + -73.448771, + 45.479431 + ], + [ + -73.448748, + 45.479445 + ], + [ + -73.44714, + 45.480405 + ], + [ + -73.446622, + 45.480714 + ], + [ + -73.446581, + 45.480738 + ], + [ + -73.445624, + 45.481309 + ], + [ + -73.443796, + 45.482389 + ], + [ + -73.443745, + 45.48242 + ], + [ + -73.443018, + 45.482865 + ], + [ + -73.440987, + 45.484065 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.441197, + 45.484538 + ], + [ + -73.441346, + 45.484655 + ], + [ + -73.441638, + 45.484884 + ], + [ + -73.442273, + 45.485405 + ], + [ + -73.44238, + 45.485492 + ], + [ + -73.442979, + 45.48598 + ], + [ + -73.443236, + 45.48619 + ], + [ + -73.443584, + 45.486491 + ], + [ + -73.443685, + 45.486573 + ], + [ + -73.443948, + 45.486787 + ], + [ + -73.444066, + 45.486883 + ], + [ + -73.444405, + 45.487149 + ], + [ + -73.44464, + 45.487266 + ], + [ + -73.444883, + 45.487369 + ], + [ + -73.445062, + 45.487428 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.44587, + 45.490786 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 271, + "properties": { + "id": "fbb178f1-f799-44bb-9296-639b8bfe4567", + "data": { + "gtfs": { + "shape_id": "524_1_A" + }, + "segments": [ + { + "distanceMeters": 291, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 66, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 729, + "travelTimeSeconds": 104 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 421, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 462, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 74, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 605, + "travelTimeSeconds": 87 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7547, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3215.4172119417626, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.99, + "travelTimeWithoutDwellTimesSeconds": 1080, + "operatingTimeWithLayoverTimeSeconds": 1260, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1080, + "operatingSpeedWithLayoverMetersPerSecond": 5.99, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.99 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "2ef5dac7-c226-43bb-8534-6642e7a8ab89", + "a9b02686-8465-48b9-89ba-773a03aed1e8", + "17fd1ec9-db8e-4d18-a174-72ce7cb4c434", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "66a0749c-2a5b-458d-b059-307f555cb93a", + "d83daa69-bf92-4b93-8173-1c0fd22cbec0", + "3acbe4f4-b4c0-469f-af21-f4af3c6e2b53", + "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "79c669a1-9060-4e5d-b272-f107884dee00", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "907f8610-452b-440d-849b-c803b07dedc1", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "42f94a5d-c370-4fd6-9c9f-6767ef259624", + "e0286f28-f802-47e9-8fd2-0338e2927a2f", + "46d1170e-039a-4a64-a065-b60146bf9006", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "e72d0d41-60dd-429c-9fc0-986190945d76", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "e9fc89c5-946e-4534-8335-80b67259d6a3", + "segments": [ + 0, + 2, + 13, + 16, + 24, + 46, + 49, + 62, + 66, + 70, + 77, + 85, + 92, + 108, + 124, + 128, + 130, + 132, + 134, + 136, + 139, + 146, + 148, + 151, + 154, + 157, + 160, + 166 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 271, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445508, + 45.489489 + ], + [ + -73.4453, + 45.489165 + ], + [ + -73.445238, + 45.489052 + ], + [ + -73.445212, + 45.488985 + ], + [ + -73.445181, + 45.488904 + ], + [ + -73.445074, + 45.488728 + ], + [ + -73.445053, + 45.488544 + ], + [ + -73.445044, + 45.488377 + ], + [ + -73.445046, + 45.488242 + ], + [ + -73.445073, + 45.488085 + ], + [ + -73.445118, + 45.487932 + ], + [ + -73.445182, + 45.487779 + ], + [ + -73.445261, + 45.48759 + ], + [ + -73.445319, + 45.487496 + ], + [ + -73.445386, + 45.487388 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445129, + 45.48732 + ], + [ + -73.444962, + 45.487262 + ], + [ + -73.444731, + 45.487167 + ], + [ + -73.444565, + 45.487086 + ], + [ + -73.444194, + 45.486807 + ], + [ + -73.443808, + 45.486496 + ], + [ + -73.443706, + 45.486415 + ], + [ + -73.44336, + 45.486118 + ], + [ + -73.442635, + 45.485521 + ], + [ + -73.442528, + 45.485434 + ], + [ + -73.441754, + 45.484812 + ], + [ + -73.440981, + 45.484198 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.441366, + 45.483841 + ], + [ + -73.443018, + 45.482865 + ], + [ + -73.443648, + 45.482479 + ], + [ + -73.443745, + 45.48242 + ], + [ + -73.445624, + 45.481309 + ], + [ + -73.446434, + 45.480826 + ], + [ + -73.446581, + 45.480738 + ], + [ + -73.448472, + 45.47961 + ], + [ + -73.448771, + 45.479431 + ], + [ + -73.449044, + 45.479268 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.44954, + 45.478958 + ], + [ + -73.449587, + 45.478931 + ], + [ + -73.449459, + 45.478843 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.44937, + 45.478154 + ], + [ + -73.451102, + 45.476969 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.45342, + 45.475382 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.455838, + 45.473726 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.458212, + 45.472102 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.460496, + 45.470543 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.462589, + 45.469104 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.465192, + 45.468284 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.468438, + 45.468072 + ], + [ + -73.468566, + 45.468063 + ], + [ + -73.469327, + 45.468092 + ], + [ + -73.469492, + 45.4681 + ], + [ + -73.470299, + 45.468145 + ], + [ + -73.471039, + 45.46818 + ], + [ + -73.471238, + 45.46819 + ], + [ + -73.471526, + 45.468208 + ], + [ + -73.472194, + 45.468244 + ], + [ + -73.472404, + 45.468254 + ], + [ + -73.472597, + 45.468262 + ], + [ + -73.472728, + 45.468276 + ], + [ + -73.472834, + 45.468294 + ], + [ + -73.472877, + 45.468307 + ], + [ + -73.473025, + 45.468348 + ], + [ + -73.473214, + 45.468424 + ], + [ + -73.473649, + 45.468595 + ], + [ + -73.473673, + 45.468604 + ], + [ + -73.473905, + 45.468649 + ], + [ + -73.474077, + 45.468676 + ], + [ + -73.474259, + 45.46869 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474718, + 45.468735 + ], + [ + -73.474819, + 45.468708 + ], + [ + -73.474822, + 45.468708 + ], + [ + -73.475149, + 45.468731 + ], + [ + -73.475359, + 45.468738 + ], + [ + -73.475537, + 45.468744 + ], + [ + -73.477736, + 45.468837 + ], + [ + -73.477791, + 45.468839 + ], + [ + -73.478795, + 45.46888 + ], + [ + -73.479733, + 45.468916 + ], + [ + -73.480561, + 45.468947 + ], + [ + -73.480705, + 45.468952 + ], + [ + -73.481592, + 45.468898 + ], + [ + -73.482517, + 45.468777 + ], + [ + -73.483882, + 45.468793 + ], + [ + -73.484035, + 45.468795 + ], + [ + -73.484852, + 45.468827 + ], + [ + -73.484983, + 45.468836 + ], + [ + -73.485068, + 45.468858 + ], + [ + -73.485183, + 45.468899 + ], + [ + -73.485272, + 45.468957 + ], + [ + -73.485483, + 45.469205 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.486078, + 45.469097 + ], + [ + -73.486363, + 45.468976 + ], + [ + -73.486598, + 45.468913 + ], + [ + -73.486742, + 45.468895 + ], + [ + -73.486913, + 45.468899 + ], + [ + -73.487892, + 45.468935 + ], + [ + -73.488644, + 45.468977 + ], + [ + -73.488788, + 45.468985 + ], + [ + -73.492275, + 45.469101 + ], + [ + -73.492434, + 45.469107 + ], + [ + -73.4927, + 45.469111 + ], + [ + -73.49395, + 45.46917 + ], + [ + -73.494075, + 45.469188 + ], + [ + -73.494154, + 45.469237 + ], + [ + -73.494552, + 45.469954 + ], + [ + -73.494611, + 45.470061 + ], + [ + -73.494791, + 45.470417 + ], + [ + -73.494857, + 45.47055 + ], + [ + -73.494862, + 45.47056 + ], + [ + -73.494851, + 45.470805 + ], + [ + -73.494847, + 45.470884 + ], + [ + -73.494088, + 45.470857 + ], + [ + -73.493065, + 45.470821 + ], + [ + -73.492825, + 45.470816 + ], + [ + -73.492588, + 45.470825 + ], + [ + -73.492364, + 45.470843 + ], + [ + -73.492038, + 45.470888 + ], + [ + -73.491625, + 45.470969 + ], + [ + -73.491149, + 45.471131 + ], + [ + -73.491044, + 45.471167 + ], + [ + -73.490858, + 45.471248 + ], + [ + -73.490204, + 45.471562 + ], + [ + -73.490099, + 45.471613 + ], + [ + -73.489969, + 45.471675 + ], + [ + -73.489522, + 45.471873 + ], + [ + -73.489116, + 45.472013 + ], + [ + -73.48901, + 45.472049 + ], + [ + -73.488898, + 45.472089 + ], + [ + -73.488483, + 45.472229 + ], + [ + -73.48807, + 45.472359 + ], + [ + -73.487065, + 45.47269 + ], + [ + -73.486715, + 45.472804 + ], + [ + -73.48607, + 45.47302 + ], + [ + -73.485914, + 45.473065 + ], + [ + -73.485421, + 45.473196 + ], + [ + -73.485194, + 45.47325 + ], + [ + -73.484873, + 45.473304 + ], + [ + -73.484747, + 45.473331 + ], + [ + -73.484539, + 45.473353 + ], + [ + -73.484309, + 45.47338 + ], + [ + -73.484047, + 45.473403 + ], + [ + -73.483835, + 45.473413 + ], + [ + -73.483761, + 45.473416 + ], + [ + -73.483613, + 45.473425 + ], + [ + -73.48263, + 45.473402 + ], + [ + -73.479102, + 45.473291 + ] + ] + }, + "id": 272, + "properties": { + "id": "f928d45f-c4f4-400f-993e-9a58cbfa7fa4", + "data": { + "gtfs": { + "shape_id": "524_2_R" + }, + "segments": [ + { + "distanceMeters": 756, + "travelTimeSeconds": 133 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 462, + "travelTimeSeconds": 82 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 60, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 402, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 66 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7462, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3215.4172119417626, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.65, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 4.97, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.65 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "46d1170e-039a-4a64-a065-b60146bf9006", + "e0286f28-f802-47e9-8fd2-0338e2927a2f", + "42f94a5d-c370-4fd6-9c9f-6767ef259624", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "907f8610-452b-440d-849b-c803b07dedc1", + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "0296a406-079c-41f9-8c5b-0723a0b5f294", + "79c669a1-9060-4e5d-b272-f107884dee00", + "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "3e9388da-8f48-48c6-b6c0-5461e27eb26a", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "d83daa69-bf92-4b93-8173-1c0fd22cbec0", + "66a0749c-2a5b-458d-b059-307f555cb93a", + "c5effd0a-a9b0-4cfe-8176-06c99313f58b", + "e7a825d7-e677-4fe7-b1ef-b6db556d3c70", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", + "2ef5dac7-c226-43bb-8534-6642e7a8ab89" + ], + "stops": [], + "line_id": "e9fc89c5-946e-4534-8335-80b67259d6a3", + "segments": [ + 0, + 38, + 41, + 45, + 48, + 50, + 58, + 59, + 61, + 63, + 65, + 67, + 69, + 82, + 96, + 100, + 107, + 118, + 120, + 124, + 128, + 135, + 137, + 143, + 145, + 151, + 156, + 169, + 177, + 188 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 272, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.492023, + 45.489267 + ], + [ + -73.491721, + 45.489052 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.491557, + 45.488939 + ], + [ + -73.490801, + 45.488399 + ], + [ + -73.489411, + 45.487405 + ], + [ + -73.489373, + 45.487377 + ], + [ + -73.489048, + 45.487135 + ], + [ + -73.488568, + 45.486806 + ], + [ + -73.487831, + 45.486284 + ], + [ + -73.487157, + 45.485806 + ], + [ + -73.487051, + 45.485731 + ], + [ + -73.486783, + 45.485533 + ], + [ + -73.486446, + 45.485294 + ], + [ + -73.485807, + 45.484835 + ], + [ + -73.485416, + 45.484552 + ], + [ + -73.48502, + 45.484269 + ], + [ + -73.484263, + 45.483728 + ], + [ + -73.483637, + 45.483278 + ], + [ + -73.483483, + 45.483175 + ], + [ + -73.483337, + 45.483067 + ], + [ + -73.482999, + 45.482824 + ], + [ + -73.482644, + 45.48257 + ], + [ + -73.482188, + 45.482243 + ], + [ + -73.482091, + 45.482176 + ], + [ + -73.481995, + 45.482108 + ], + [ + -73.481822, + 45.481987 + ], + [ + -73.481718, + 45.48191 + ], + [ + -73.48159, + 45.481816 + ], + [ + -73.481483, + 45.481744 + ], + [ + -73.481141, + 45.481496 + ], + [ + -73.480755, + 45.481226 + ], + [ + -73.480428, + 45.480974 + ], + [ + -73.479961, + 45.480655 + ], + [ + -73.479511, + 45.480326 + ], + [ + -73.479422, + 45.480272 + ], + [ + -73.47933, + 45.4802 + ], + [ + -73.479253, + 45.480145 + ], + [ + -73.478515, + 45.47962 + ], + [ + -73.478125, + 45.479336 + ], + [ + -73.477833, + 45.479125 + ], + [ + -73.477798, + 45.479064 + ], + [ + -73.477757, + 45.479003 + ], + [ + -73.477575, + 45.47885 + ], + [ + -73.477033, + 45.478413 + ], + [ + -73.476671, + 45.478149 + ], + [ + -73.47654, + 45.478053 + ], + [ + -73.476251, + 45.477842 + ], + [ + -73.476119, + 45.477927 + ], + [ + -73.475478, + 45.478344 + ], + [ + -73.475475, + 45.478346 + ], + [ + -73.475372, + 45.478413 + ], + [ + -73.474541, + 45.478922 + ], + [ + -73.474461, + 45.478971 + ], + [ + -73.474157, + 45.479169 + ], + [ + -73.47284, + 45.480068 + ], + [ + -73.472485, + 45.480311 + ], + [ + -73.472254, + 45.480468 + ], + [ + -73.472135, + 45.48055 + ], + [ + -73.472029, + 45.480487 + ], + [ + -73.471904, + 45.480419 + ], + [ + -73.471804, + 45.480383 + ], + [ + -73.471671, + 45.48036 + ], + [ + -73.471568, + 45.480347 + ], + [ + -73.47151, + 45.480342 + ], + [ + -73.471409, + 45.480342 + ], + [ + -73.471292, + 45.480347 + ], + [ + -73.470657, + 45.480464 + ], + [ + -73.470383, + 45.480513 + ], + [ + -73.470287, + 45.480532 + ], + [ + -73.470068, + 45.480576 + ], + [ + -73.46991, + 45.480604 + ], + [ + -73.469791, + 45.480625 + ], + [ + -73.470057, + 45.481186 + ], + [ + -73.470101, + 45.481279 + ], + [ + -73.470149, + 45.481381 + ], + [ + -73.470239, + 45.481512 + ], + [ + -73.470508, + 45.481748 + ], + [ + -73.470609, + 45.481836 + ], + [ + -73.470436, + 45.481957 + ], + [ + -73.470271, + 45.48207 + ], + [ + -73.469956, + 45.482272 + ], + [ + -73.469608, + 45.48252 + ], + [ + -73.469293, + 45.482731 + ], + [ + -73.469261, + 45.482752 + ], + [ + -73.468943, + 45.48296 + ], + [ + -73.468655, + 45.483149 + ], + [ + -73.468621, + 45.483172 + ], + [ + -73.468282, + 45.483401 + ], + [ + -73.467378, + 45.484028 + ], + [ + -73.466985, + 45.484267 + ], + [ + -73.466778, + 45.484384 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466022, + 45.484682 + ], + [ + -73.465888, + 45.484747 + ], + [ + -73.465767, + 45.484792 + ], + [ + -73.465702, + 45.484807 + ], + [ + -73.465661, + 45.484807 + ], + [ + -73.465627, + 45.484802 + ], + [ + -73.4655, + 45.484766 + ], + [ + -73.464965, + 45.484574 + ], + [ + -73.464559, + 45.484417 + ], + [ + -73.464508, + 45.484399 + ], + [ + -73.464185, + 45.484291 + ], + [ + -73.463703, + 45.484155 + ], + [ + -73.463657, + 45.484142 + ], + [ + -73.46319, + 45.484029 + ], + [ + -73.462672, + 45.483908 + ], + [ + -73.462287, + 45.483831 + ], + [ + -73.462032, + 45.483791 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.46135, + 45.4837 + ], + [ + -73.460838, + 45.483637 + ], + [ + -73.460175, + 45.48358 + ], + [ + -73.459999, + 45.483565 + ], + [ + -73.459497, + 45.483511 + ], + [ + -73.459033, + 45.483457 + ], + [ + -73.458739, + 45.483407 + ], + [ + -73.458547, + 45.483371 + ], + [ + -73.458333, + 45.483321 + ], + [ + -73.458016, + 45.483245 + ], + [ + -73.45777, + 45.483182 + ], + [ + -73.457492, + 45.483101 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45645, + 45.482799 + ], + [ + -73.455886, + 45.482623 + ], + [ + -73.455654, + 45.482542 + ], + [ + -73.455462, + 45.482465 + ], + [ + -73.455276, + 45.482384 + ], + [ + -73.455274, + 45.482383 + ], + [ + -73.455009, + 45.482272 + ], + [ + -73.454605, + 45.482087 + ], + [ + -73.454381, + 45.481984 + ], + [ + -73.454145, + 45.481862 + ], + [ + -73.453796, + 45.481673 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452379, + 45.481446 + ], + [ + -73.452062, + 45.481636 + ], + [ + -73.45135, + 45.482063 + ], + [ + -73.451246, + 45.482125 + ], + [ + -73.450103, + 45.482804 + ], + [ + -73.449882, + 45.482936 + ], + [ + -73.449245, + 45.483336 + ], + [ + -73.449101, + 45.483471 + ], + [ + -73.448914, + 45.483713 + ], + [ + -73.448817, + 45.483898 + ], + [ + -73.448629, + 45.484109 + ], + [ + -73.44844, + 45.484271 + ], + [ + -73.448219, + 45.484484 + ], + [ + -73.44775, + 45.484937 + ], + [ + -73.447415, + 45.485256 + ], + [ + -73.447237, + 45.485427 + ], + [ + -73.447005, + 45.485643 + ], + [ + -73.446785, + 45.485852 + ], + [ + -73.446708, + 45.485926 + ], + [ + -73.445795, + 45.486794 + ], + [ + -73.445654, + 45.486915 + ], + [ + -73.445524, + 45.487041 + ], + [ + -73.445408, + 45.487167 + ], + [ + -73.445358, + 45.487233 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 273, + "properties": { + "id": "4986fdc2-cc34-465e-8bbf-ac6eeabb651f", + "data": { + "gtfs": { + "shape_id": "525_1_A" + }, + "segments": [ + { + "distanceMeters": 295, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 368, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 977, + "travelTimeSeconds": 161 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 405, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 509, + "travelTimeSeconds": 85 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5575, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3565.80614449939, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.19, + "travelTimeWithoutDwellTimesSeconds": 900, + "operatingTimeWithLayoverTimeSeconds": 1080, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 900, + "operatingSpeedWithLayoverMetersPerSecond": 5.16, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.19 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "196681e4-c9e5-4a79-a3b1-ce225227e0aa", + "54bbe390-ff6d-41d9-bd4b-1e4843d66512", + "aa413165-9699-49b6-9dea-fa35bda8f373", + "0a623471-271f-47f5-9a85-7feece2a3285", + "dc5fe0eb-b8cc-4186-82d3-6787360ae612", + "1e48d359-2463-4fbd-b946-c0a530db4bbe", + "c46257ee-b29f-4a62-9447-95eb1e19c941", + "fe84c986-2907-4842-bde4-72fbe08a0576", + "784b0f22-55ff-44d1-a754-ddad81fb81cd", + "96e97125-39ff-47a9-b41d-043c4ca5c57e", + "c2e1b4a6-db9f-4050-848a-68486b390a21", + "a4f163e1-b90e-4fc3-82f3-f03b3181860d", + "491099bb-9493-4888-bd4e-20bd2140830a", + "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", + "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "d9b94443-0b59-40db-aecb-0acb5ea7976c", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "8a7004df-85bd-47fa-b418-d26df262c182", + "segments": [ + 0, + 6, + 10, + 16, + 27, + 37, + 39, + 45, + 52, + 57, + 71, + 77, + 114, + 123, + 130, + 142, + 143, + 151, + 156, + 162 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 273, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445508, + 45.489489 + ], + [ + -73.4453, + 45.489165 + ], + [ + -73.445238, + 45.489052 + ], + [ + -73.445212, + 45.488985 + ], + [ + -73.445181, + 45.488904 + ], + [ + -73.445074, + 45.488728 + ], + [ + -73.445053, + 45.488544 + ], + [ + -73.445044, + 45.488377 + ], + [ + -73.445046, + 45.488242 + ], + [ + -73.445073, + 45.488085 + ], + [ + -73.445118, + 45.487932 + ], + [ + -73.445182, + 45.487779 + ], + [ + -73.445261, + 45.48759 + ], + [ + -73.445319, + 45.487496 + ], + [ + -73.445386, + 45.487388 + ], + [ + -73.445526, + 45.487217 + ], + [ + -73.445638, + 45.487095 + ], + [ + -73.445641, + 45.487093 + ], + [ + -73.445764, + 45.486978 + ], + [ + -73.445905, + 45.486857 + ], + [ + -73.446707, + 45.486093 + ], + [ + -73.44682, + 45.485985 + ], + [ + -73.447123, + 45.485706 + ], + [ + -73.447356, + 45.48549 + ], + [ + -73.447536, + 45.485315 + ], + [ + -73.447867, + 45.484995 + ], + [ + -73.448281, + 45.484596 + ], + [ + -73.448552, + 45.484334 + ], + [ + -73.448747, + 45.484168 + ], + [ + -73.448891, + 45.484006 + ], + [ + -73.448947, + 45.483943 + ], + [ + -73.449046, + 45.483754 + ], + [ + -73.449223, + 45.483529 + ], + [ + -73.449352, + 45.483408 + ], + [ + -73.449865, + 45.483087 + ], + [ + -73.449978, + 45.483017 + ], + [ + -73.451449, + 45.482131 + ], + [ + -73.451768, + 45.481938 + ], + [ + -73.45215, + 45.481708 + ], + [ + -73.452851, + 45.48129 + ], + [ + -73.453668, + 45.481781 + ], + [ + -73.454023, + 45.481974 + ], + [ + -73.454266, + 45.482101 + ], + [ + -73.454494, + 45.482204 + ], + [ + -73.454893, + 45.482398 + ], + [ + -73.455361, + 45.482587 + ], + [ + -73.455562, + 45.482663 + ], + [ + -73.455798, + 45.482744 + ], + [ + -73.455981, + 45.4828 + ], + [ + -73.456376, + 45.48292 + ], + [ + -73.456963, + 45.483096 + ], + [ + -73.457696, + 45.483312 + ], + [ + -73.457948, + 45.48338 + ], + [ + -73.45825, + 45.483452 + ], + [ + -73.458477, + 45.483499 + ], + [ + -73.458491, + 45.483501 + ], + [ + -73.458691, + 45.483542 + ], + [ + -73.458995, + 45.483592 + ], + [ + -73.459974, + 45.483704 + ], + [ + -73.46004, + 45.48371 + ], + [ + -73.460519, + 45.483755 + ], + [ + -73.460806, + 45.483781 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.462585, + 45.484043 + ], + [ + -73.463416, + 45.484224 + ], + [ + -73.463639, + 45.484291 + ], + [ + -73.464599, + 45.48462 + ], + [ + -73.465244, + 45.484835 + ], + [ + -73.465443, + 45.484908 + ], + [ + -73.465586, + 45.484937 + ], + [ + -73.465724, + 45.484942 + ], + [ + -73.465848, + 45.484931 + ], + [ + -73.466018, + 45.484884 + ], + [ + -73.466121, + 45.484844 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466778, + 45.484384 + ], + [ + -73.466915, + 45.484307 + ], + [ + -73.466985, + 45.484267 + ], + [ + -73.467378, + 45.484028 + ], + [ + -73.468282, + 45.483401 + ], + [ + -73.468621, + 45.483172 + ], + [ + -73.468655, + 45.483149 + ], + [ + -73.468943, + 45.48296 + ], + [ + -73.469261, + 45.482752 + ], + [ + -73.469293, + 45.482731 + ], + [ + -73.469608, + 45.48252 + ], + [ + -73.469956, + 45.482272 + ], + [ + -73.470266, + 45.482073 + ], + [ + -73.470271, + 45.48207 + ], + [ + -73.470436, + 45.481957 + ], + [ + -73.470609, + 45.481836 + ], + [ + -73.470239, + 45.481512 + ], + [ + -73.470149, + 45.481381 + ], + [ + -73.470101, + 45.481279 + ], + [ + -73.469842, + 45.480733 + ], + [ + -73.469791, + 45.480625 + ], + [ + -73.470068, + 45.480576 + ], + [ + -73.470287, + 45.480532 + ], + [ + -73.470383, + 45.480513 + ], + [ + -73.470657, + 45.480464 + ], + [ + -73.471292, + 45.480347 + ], + [ + -73.471409, + 45.480342 + ], + [ + -73.47151, + 45.480342 + ], + [ + -73.471568, + 45.480347 + ], + [ + -73.471671, + 45.48036 + ], + [ + -73.471804, + 45.480383 + ], + [ + -73.471904, + 45.480419 + ], + [ + -73.472029, + 45.480487 + ], + [ + -73.472084, + 45.480519 + ], + [ + -73.472135, + 45.48055 + ], + [ + -73.472485, + 45.480311 + ], + [ + -73.47284, + 45.480068 + ], + [ + -73.474157, + 45.479169 + ], + [ + -73.47435, + 45.479044 + ], + [ + -73.474461, + 45.478971 + ], + [ + -73.475372, + 45.478413 + ], + [ + -73.475478, + 45.478344 + ], + [ + -73.476018, + 45.477994 + ], + [ + -73.476119, + 45.477927 + ], + [ + -73.476665, + 45.478303 + ], + [ + -73.476929, + 45.478485 + ], + [ + -73.477462, + 45.478904 + ], + [ + -73.477562, + 45.478975 + ], + [ + -73.477667, + 45.479048 + ], + [ + -73.477754, + 45.479101 + ], + [ + -73.477833, + 45.479125 + ], + [ + -73.478515, + 45.47962 + ], + [ + -73.47919, + 45.480101 + ], + [ + -73.47933, + 45.4802 + ], + [ + -73.479422, + 45.480272 + ], + [ + -73.479511, + 45.480326 + ], + [ + -73.479961, + 45.480655 + ], + [ + -73.480428, + 45.480974 + ], + [ + -73.480755, + 45.481226 + ], + [ + -73.481141, + 45.481496 + ], + [ + -73.481438, + 45.481712 + ], + [ + -73.481483, + 45.481744 + ], + [ + -73.48159, + 45.481816 + ], + [ + -73.481822, + 45.481987 + ], + [ + -73.481995, + 45.482108 + ], + [ + -73.482091, + 45.482176 + ], + [ + -73.482188, + 45.482243 + ], + [ + -73.482644, + 45.48257 + ], + [ + -73.482999, + 45.482824 + ], + [ + -73.483337, + 45.483067 + ], + [ + -73.483483, + 45.483175 + ], + [ + -73.483637, + 45.483278 + ], + [ + -73.484263, + 45.483728 + ], + [ + -73.484777, + 45.484096 + ], + [ + -73.485416, + 45.484552 + ], + [ + -73.485807, + 45.484835 + ], + [ + -73.486446, + 45.485294 + ], + [ + -73.486783, + 45.485533 + ], + [ + -73.486855, + 45.485586 + ], + [ + -73.487051, + 45.485731 + ], + [ + -73.487831, + 45.486284 + ], + [ + -73.488568, + 45.486806 + ], + [ + -73.488966, + 45.487079 + ], + [ + -73.489048, + 45.487135 + ], + [ + -73.489411, + 45.487405 + ], + [ + -73.490801, + 45.488399 + ], + [ + -73.491472, + 45.488878 + ] + ] + }, + "id": 274, + "properties": { + "id": "6b86f1db-9a7f-43a0-8d98-449a678666d5", + "data": { + "gtfs": { + "shape_id": "525_2_R" + }, + "segments": [ + { + "distanceMeters": 492, + "travelTimeSeconds": 91 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 781, + "travelTimeSeconds": 146 + }, + { + "distanceMeters": 550, + "travelTimeSeconds": 103 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 53 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5450, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3529.503388743907, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.34, + "travelTimeWithoutDwellTimesSeconds": 1020, + "operatingTimeWithLayoverTimeSeconds": 1200, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1020, + "operatingSpeedWithLayoverMetersPerSecond": 4.54, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.34 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", + "159a0fe9-bedb-40f2-9806-32ab49594978", + "a4f163e1-b90e-4fc3-82f3-f03b3181860d", + "c2e1b4a6-db9f-4050-848a-68486b390a21", + "96e97125-39ff-47a9-b41d-043c4ca5c57e", + "784b0f22-55ff-44d1-a754-ddad81fb81cd", + "c04702f7-b2cf-440e-a6da-0a84aefc3963", + "f32e29fd-d271-4ae6-8083-6d24349dccdf", + "1e48d359-2463-4fbd-b946-c0a530db4bbe", + "dc5fe0eb-b8cc-4186-82d3-6787360ae612", + "0a623471-271f-47f5-9a85-7feece2a3285", + "aa413165-9699-49b6-9dea-fa35bda8f373", + "54bbe390-ff6d-41d9-bd4b-1e4843d66512", + "7faed35b-7709-443d-b0ec-5f09ab018202" + ], + "stops": [], + "line_id": "8a7004df-85bd-47fa-b418-d26df262c182", + "segments": [ + 0, + 31, + 34, + 40, + 48, + 51, + 74, + 93, + 104, + 111, + 125, + 130, + 134, + 139, + 144, + 152, + 165, + 170, + 174 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 274, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.498453, + 45.479238 + ], + [ + -73.498413, + 45.479239 + ], + [ + -73.498188, + 45.479235 + ], + [ + -73.497101, + 45.479217 + ], + [ + -73.496405, + 45.479209 + ], + [ + -73.496272, + 45.479208 + ], + [ + -73.496207, + 45.479208 + ], + [ + -73.496137, + 45.479208 + ], + [ + -73.493367, + 45.479162 + ], + [ + -73.49213, + 45.479149 + ], + [ + -73.491847, + 45.479143 + ], + [ + -73.491713, + 45.47914 + ], + [ + -73.491329, + 45.479132 + ], + [ + -73.487039, + 45.479049 + ], + [ + -73.486789, + 45.47904 + ], + [ + -73.486635, + 45.47904 + ], + [ + -73.486624, + 45.47904 + ], + [ + -73.486526, + 45.47904 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486426, + 45.478914 + ], + [ + -73.486429, + 45.478851 + ], + [ + -73.486457, + 45.478743 + ], + [ + -73.486515, + 45.478644 + ], + [ + -73.486599, + 45.478568 + ], + [ + -73.487334, + 45.478055 + ], + [ + -73.487595, + 45.477883 + ], + [ + -73.487867, + 45.477704 + ], + [ + -73.48804, + 45.477592 + ], + [ + -73.488143, + 45.477497 + ], + [ + -73.488191, + 45.477434 + ], + [ + -73.48823, + 45.477367 + ], + [ + -73.488245, + 45.477317 + ], + [ + -73.488261, + 45.477254 + ], + [ + -73.488221, + 45.47702 + ], + [ + -73.488146, + 45.476629 + ], + [ + -73.488047, + 45.476044 + ], + [ + -73.487982, + 45.47571 + ], + [ + -73.487958, + 45.475585 + ], + [ + -73.487905, + 45.475414 + ], + [ + -73.48781, + 45.475189 + ], + [ + -73.487773, + 45.475113 + ], + [ + -73.487674, + 45.474955 + ], + [ + -73.487579, + 45.47482 + ], + [ + -73.48757, + 45.474809 + ], + [ + -73.487467, + 45.474676 + ], + [ + -73.487385, + 45.474582 + ], + [ + -73.486897, + 45.473997 + ], + [ + -73.486669, + 45.473713 + ], + [ + -73.486214, + 45.473191 + ], + [ + -73.486151, + 45.473119 + ], + [ + -73.486669, + 45.472951 + ], + [ + -73.486787, + 45.472912 + ], + [ + -73.487151, + 45.472794 + ], + [ + -73.488142, + 45.472472 + ], + [ + -73.488555, + 45.472341 + ], + [ + -73.488966, + 45.472197 + ], + [ + -73.489081, + 45.472161 + ], + [ + -73.489198, + 45.472121 + ], + [ + -73.489607, + 45.471977 + ], + [ + -73.489847, + 45.471871 + ], + [ + -73.490057, + 45.471779 + ], + [ + -73.490953, + 45.471352 + ], + [ + -73.49113, + 45.471275 + ], + [ + -73.491309, + 45.471203 + ], + [ + -73.49144, + 45.471158 + ], + [ + -73.491671, + 45.471086 + ], + [ + -73.492077, + 45.471005 + ], + [ + -73.49239, + 45.47096 + ], + [ + -73.492603, + 45.470947 + ], + [ + -73.492828, + 45.470933 + ], + [ + -73.493058, + 45.470938 + ], + [ + -73.494082, + 45.470974 + ], + [ + -73.49484, + 45.471001 + ], + [ + -73.494847, + 45.470884 + ], + [ + -73.494862, + 45.47056 + ], + [ + -73.494801, + 45.470439 + ], + [ + -73.494791, + 45.470417 + ], + [ + -73.494611, + 45.470061 + ], + [ + -73.494154, + 45.469237 + ], + [ + -73.494075, + 45.469188 + ], + [ + -73.49395, + 45.46917 + ], + [ + -73.492836, + 45.469118 + ], + [ + -73.4927, + 45.469111 + ], + [ + -73.492434, + 45.469107 + ], + [ + -73.489038, + 45.468993 + ], + [ + -73.488788, + 45.468985 + ], + [ + -73.487892, + 45.468935 + ], + [ + -73.486913, + 45.468899 + ], + [ + -73.486742, + 45.468895 + ], + [ + -73.486598, + 45.468913 + ], + [ + -73.486363, + 45.468976 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.485272, + 45.468957 + ], + [ + -73.485183, + 45.468899 + ], + [ + -73.485068, + 45.468858 + ], + [ + -73.484983, + 45.468836 + ], + [ + -73.484852, + 45.468827 + ], + [ + -73.484135, + 45.468799 + ], + [ + -73.484035, + 45.468795 + ], + [ + -73.482517, + 45.468777 + ], + [ + -73.481592, + 45.468898 + ], + [ + -73.4808, + 45.468946 + ], + [ + -73.480705, + 45.468952 + ], + [ + -73.479733, + 45.468916 + ], + [ + -73.478795, + 45.46888 + ], + [ + -73.477962, + 45.468846 + ], + [ + -73.477791, + 45.468839 + ], + [ + -73.475537, + 45.468744 + ], + [ + -73.475149, + 45.468731 + ], + [ + -73.474822, + 45.468708 + ], + [ + -73.474819, + 45.468708 + ], + [ + -73.47474, + 45.468663 + ], + [ + -73.474727, + 45.468661 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.473179, + 45.468285 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.4714, + 45.468097 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469574, + 45.467137 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.468556, + 45.467093 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.46871, + 45.466863 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466756 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.466922, + 45.466853 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465562, + 45.468208 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.463779, + 45.468251 + ], + [ + -73.463257, + 45.46862 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463016, + 45.468741 + ], + [ + -73.462763, + 45.468943 + ], + [ + -73.462689, + 45.46902 + ], + [ + -73.462679, + 45.469031 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.460787, + 45.470344 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.45843, + 45.471953 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.456046, + 45.473583 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.453674, + 45.475208 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.451328, + 45.476814 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.449276, + 45.478219 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448868, + 45.478494 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.449135, + 45.47883 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.449044, + 45.479268 + ], + [ + -73.448771, + 45.479431 + ], + [ + -73.448749, + 45.479445 + ], + [ + -73.446633, + 45.480708 + ], + [ + -73.446581, + 45.480738 + ], + [ + -73.445624, + 45.481309 + ], + [ + -73.443807, + 45.482383 + ], + [ + -73.443745, + 45.48242 + ], + [ + -73.443018, + 45.482865 + ], + [ + -73.440997, + 45.484058 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.441188, + 45.484531 + ], + [ + -73.441434, + 45.484724 + ], + [ + -73.441638, + 45.484884 + ], + [ + -73.442273, + 45.485404 + ], + [ + -73.44238, + 45.485492 + ], + [ + -73.442979, + 45.48598 + ], + [ + -73.443236, + 45.48619 + ], + [ + -73.443584, + 45.486491 + ], + [ + -73.443685, + 45.486573 + ], + [ + -73.443939, + 45.48678 + ], + [ + -73.444066, + 45.486883 + ], + [ + -73.444405, + 45.487149 + ], + [ + -73.44464, + 45.487266 + ], + [ + -73.444883, + 45.487369 + ], + [ + -73.445062, + 45.487428 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 275, + "properties": { + "id": "38eaaa20-8768-40bd-961b-0669f59b772c", + "data": { + "gtfs": { + "shape_id": "526_1_A" + }, + "segments": [ + { + "distanceMeters": 160, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 356, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 54, + "travelTimeSeconds": 7 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 728, + "travelTimeSeconds": 92 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 422, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 762, + "travelTimeSeconds": 125 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 74, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 606, + "travelTimeSeconds": 100 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9516, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4257.458195147626, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.89, + "travelTimeWithoutDwellTimesSeconds": 1380, + "operatingTimeWithLayoverTimeSeconds": 1560, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1380, + "operatingSpeedWithLayoverMetersPerSecond": 6.1, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.89 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", + "6b54424b-6f85-4448-8e7d-a05da4ef5b95", + "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", + "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", + "6e4c328c-6fba-4e81-b589-59318e11a37a", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "66a0749c-2a5b-458d-b059-307f555cb93a", + "d83daa69-bf92-4b93-8173-1c0fd22cbec0", + "3acbe4f4-b4c0-469f-af21-f4af3c6e2b53", + "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "79c669a1-9060-4e5d-b272-f107884dee00", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "0efa9d7f-9938-46ee-97f6-a92cc9c04c7d", + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "907f8610-452b-440d-849b-c803b07dedc1", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "42f94a5d-c370-4fd6-9c9f-6767ef259624", + "e0286f28-f802-47e9-8fd2-0338e2927a2f", + "46d1170e-039a-4a64-a065-b60146bf9006", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "e72d0d41-60dd-429c-9fc0-986190945d76", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "915f67f2-32a4-431c-af8d-3749731ceb03", + "segments": [ + 0, + 4, + 10, + 16, + 25, + 36, + 43, + 48, + 50, + 59, + 81, + 84, + 97, + 101, + 105, + 112, + 120, + 127, + 134, + 142, + 175, + 191, + 194, + 196, + 198, + 200, + 202, + 204, + 212, + 213, + 216, + 219, + 222, + 225, + 231 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 275, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445508, + 45.489489 + ], + [ + -73.4453, + 45.489165 + ], + [ + -73.445238, + 45.489052 + ], + [ + -73.445212, + 45.488985 + ], + [ + -73.445181, + 45.488904 + ], + [ + -73.445074, + 45.488728 + ], + [ + -73.445053, + 45.488544 + ], + [ + -73.445044, + 45.488377 + ], + [ + -73.445046, + 45.488242 + ], + [ + -73.445073, + 45.488085 + ], + [ + -73.445118, + 45.487932 + ], + [ + -73.445182, + 45.487779 + ], + [ + -73.445261, + 45.48759 + ], + [ + -73.445319, + 45.487496 + ], + [ + -73.445386, + 45.487388 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445129, + 45.48732 + ], + [ + -73.444962, + 45.487262 + ], + [ + -73.444731, + 45.487167 + ], + [ + -73.444565, + 45.487086 + ], + [ + -73.444194, + 45.486807 + ], + [ + -73.443808, + 45.486496 + ], + [ + -73.443706, + 45.486415 + ], + [ + -73.44336, + 45.486118 + ], + [ + -73.442634, + 45.485521 + ], + [ + -73.442528, + 45.485434 + ], + [ + -73.441754, + 45.484812 + ], + [ + -73.440979, + 45.484197 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.441491, + 45.483767 + ], + [ + -73.443018, + 45.482865 + ], + [ + -73.44365, + 45.482478 + ], + [ + -73.443745, + 45.48242 + ], + [ + -73.445624, + 45.481309 + ], + [ + -73.446436, + 45.480825 + ], + [ + -73.446581, + 45.480738 + ], + [ + -73.448474, + 45.479609 + ], + [ + -73.448771, + 45.479431 + ], + [ + -73.449044, + 45.479268 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.44954, + 45.478958 + ], + [ + -73.449587, + 45.478931 + ], + [ + -73.449459, + 45.478843 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.449373, + 45.478153 + ], + [ + -73.451105, + 45.476967 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.453423, + 45.47538 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.455841, + 45.473724 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.458215, + 45.4721 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.460499, + 45.470541 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.462593, + 45.469101 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.465198, + 45.468285 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.468456, + 45.466855 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.46679 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469327, + 45.468092 + ], + [ + -73.469492, + 45.4681 + ], + [ + -73.469913, + 45.468124 + ], + [ + -73.470299, + 45.468145 + ], + [ + -73.471041, + 45.46818 + ], + [ + -73.471238, + 45.46819 + ], + [ + -73.471526, + 45.468208 + ], + [ + -73.472194, + 45.468244 + ], + [ + -73.472407, + 45.468254 + ], + [ + -73.472597, + 45.468262 + ], + [ + -73.472728, + 45.468276 + ], + [ + -73.472834, + 45.468294 + ], + [ + -73.472877, + 45.468307 + ], + [ + -73.473025, + 45.468348 + ], + [ + -73.473214, + 45.468424 + ], + [ + -73.473651, + 45.468596 + ], + [ + -73.473673, + 45.468604 + ], + [ + -73.473905, + 45.468649 + ], + [ + -73.474077, + 45.468676 + ], + [ + -73.474259, + 45.46869 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474718, + 45.468735 + ], + [ + -73.474819, + 45.468708 + ], + [ + -73.474822, + 45.468708 + ], + [ + -73.475149, + 45.468731 + ], + [ + -73.475362, + 45.468738 + ], + [ + -73.475537, + 45.468744 + ], + [ + -73.477739, + 45.468837 + ], + [ + -73.477791, + 45.468839 + ], + [ + -73.478795, + 45.46888 + ], + [ + -73.479733, + 45.468916 + ], + [ + -73.480564, + 45.468947 + ], + [ + -73.480705, + 45.468952 + ], + [ + -73.481592, + 45.468898 + ], + [ + -73.482517, + 45.468777 + ], + [ + -73.483886, + 45.468794 + ], + [ + -73.484035, + 45.468795 + ], + [ + -73.484852, + 45.468827 + ], + [ + -73.484983, + 45.468836 + ], + [ + -73.485068, + 45.468858 + ], + [ + -73.485183, + 45.468899 + ], + [ + -73.485272, + 45.468957 + ], + [ + -73.485485, + 45.469208 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.486082, + 45.469096 + ], + [ + -73.486363, + 45.468976 + ], + [ + -73.486598, + 45.468913 + ], + [ + -73.486742, + 45.468895 + ], + [ + -73.486913, + 45.468899 + ], + [ + -73.487892, + 45.468935 + ], + [ + -73.488648, + 45.468977 + ], + [ + -73.488788, + 45.468985 + ], + [ + -73.49228, + 45.469101 + ], + [ + -73.492434, + 45.469107 + ], + [ + -73.4927, + 45.469111 + ], + [ + -73.49395, + 45.46917 + ], + [ + -73.494075, + 45.469188 + ], + [ + -73.494154, + 45.469237 + ], + [ + -73.494554, + 45.469958 + ], + [ + -73.494611, + 45.470061 + ], + [ + -73.494791, + 45.470417 + ], + [ + -73.494857, + 45.47055 + ], + [ + -73.494862, + 45.47056 + ], + [ + -73.494851, + 45.470809 + ], + [ + -73.494847, + 45.470884 + ], + [ + -73.494088, + 45.470857 + ], + [ + -73.493065, + 45.470821 + ], + [ + -73.492825, + 45.470816 + ], + [ + -73.492588, + 45.470825 + ], + [ + -73.492364, + 45.470843 + ], + [ + -73.492038, + 45.470888 + ], + [ + -73.491625, + 45.470969 + ], + [ + -73.491149, + 45.471131 + ], + [ + -73.491044, + 45.471167 + ], + [ + -73.490858, + 45.471248 + ], + [ + -73.490204, + 45.471562 + ], + [ + -73.490094, + 45.471615 + ], + [ + -73.489969, + 45.471675 + ], + [ + -73.489522, + 45.471873 + ], + [ + -73.489116, + 45.472013 + ], + [ + -73.48901, + 45.472049 + ], + [ + -73.488898, + 45.472089 + ], + [ + -73.488483, + 45.472229 + ], + [ + -73.48807, + 45.472359 + ], + [ + -73.487058, + 45.472692 + ], + [ + -73.486715, + 45.472804 + ], + [ + -73.48607, + 45.47302 + ], + [ + -73.485914, + 45.473065 + ], + [ + -73.485995, + 45.473164 + ], + [ + -73.486258, + 45.473478 + ], + [ + -73.486497, + 45.473763 + ], + [ + -73.486758, + 45.474064 + ], + [ + -73.486895, + 45.474227 + ], + [ + -73.487244, + 45.47464 + ], + [ + -73.487321, + 45.474735 + ], + [ + -73.487428, + 45.474874 + ], + [ + -73.487615, + 45.475158 + ], + [ + -73.487741, + 45.475441 + ], + [ + -73.487784, + 45.475581 + ], + [ + -73.487792, + 45.475608 + ], + [ + -73.487881, + 45.476058 + ], + [ + -73.487976, + 45.47662 + ], + [ + -73.488008, + 45.476755 + ], + [ + -73.488063, + 45.477092 + ], + [ + -73.488079, + 45.477241 + ], + [ + -73.488077, + 45.477259 + ], + [ + -73.488079, + 45.477295 + ], + [ + -73.488061, + 45.477358 + ], + [ + -73.488022, + 45.477403 + ], + [ + -73.48794, + 45.477475 + ], + [ + -73.487785, + 45.477583 + ], + [ + -73.487362, + 45.477861 + ], + [ + -73.487212, + 45.477961 + ], + [ + -73.486606, + 45.478379 + ], + [ + -73.486479, + 45.478461 + ], + [ + -73.486467, + 45.478469 + ], + [ + -73.486363, + 45.478568 + ], + [ + -73.486284, + 45.478752 + ], + [ + -73.48627, + 45.478815 + ], + [ + -73.486253, + 45.478887 + ], + [ + -73.48625, + 45.478912 + ], + [ + -73.486246, + 45.47895 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486526, + 45.47904 + ], + [ + -73.486789, + 45.47904 + ], + [ + -73.487039, + 45.479049 + ], + [ + -73.491329, + 45.479132 + ], + [ + -73.491477, + 45.479135 + ], + [ + -73.491713, + 45.47914 + ], + [ + -73.49213, + 45.479149 + ], + [ + -73.493367, + 45.479162 + ], + [ + -73.495779, + 45.479202 + ], + [ + -73.496137, + 45.479208 + ], + [ + -73.496207, + 45.479208 + ], + [ + -73.496272, + 45.479208 + ], + [ + -73.497101, + 45.479217 + ], + [ + -73.497956, + 45.479231 + ] + ] + }, + "id": 276, + "properties": { + "id": "20146e09-d686-45fc-8a7e-f8f450f47f56", + "data": { + "gtfs": { + "shape_id": "526_2_R" + }, + "segments": [ + { + "distanceMeters": 756, + "travelTimeSeconds": 128 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 487, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 578, + "travelTimeSeconds": 98 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 60, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 402, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 96, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 479, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 29 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9201, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4257.458195147626, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.9, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 5.29, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.9 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "46d1170e-039a-4a64-a065-b60146bf9006", + "e0286f28-f802-47e9-8fd2-0338e2927a2f", + "42f94a5d-c370-4fd6-9c9f-6767ef259624", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "907f8610-452b-440d-849b-c803b07dedc1", + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "0296a406-079c-41f9-8c5b-0723a0b5f294", + "79c669a1-9060-4e5d-b272-f107884dee00", + "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "3e9388da-8f48-48c6-b6c0-5461e27eb26a", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "d83daa69-bf92-4b93-8173-1c0fd22cbec0", + "66a0749c-2a5b-458d-b059-307f555cb93a", + "c5effd0a-a9b0-4cfe-8176-06c99313f58b", + "e7a825d7-e677-4fe7-b1ef-b6db556d3c70", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "f2aa277d-e5f8-429d-bc46-2a1c844da636", + "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", + "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", + "fc92d5a1-fe31-4274-9837-2686b4525030", + "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", + "6b54424b-6f85-4448-8e7d-a05da4ef5b95", + "36f2b716-8be1-4fa9-bb54-910b9cc8cda8" + ], + "stops": [], + "line_id": "915f67f2-32a4-431c-af8d-3749731ceb03", + "segments": [ + 0, + 38, + 41, + 45, + 48, + 50, + 58, + 59, + 61, + 63, + 65, + 67, + 69, + 82, + 102, + 118, + 122, + 129, + 140, + 142, + 146, + 150, + 157, + 159, + 165, + 167, + 173, + 178, + 191, + 199, + 207, + 213, + 226, + 229, + 243, + 247 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 276, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.492023, + 45.489267 + ], + [ + -73.491721, + 45.489052 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.491557, + 45.488939 + ], + [ + -73.490801, + 45.488399 + ], + [ + -73.489411, + 45.487405 + ], + [ + -73.489373, + 45.487377 + ], + [ + -73.489048, + 45.487135 + ], + [ + -73.488568, + 45.486806 + ], + [ + -73.487831, + 45.486284 + ], + [ + -73.487157, + 45.485806 + ], + [ + -73.487051, + 45.485731 + ], + [ + -73.486783, + 45.485533 + ], + [ + -73.486446, + 45.485294 + ], + [ + -73.485807, + 45.484835 + ], + [ + -73.485416, + 45.484552 + ], + [ + -73.485019, + 45.484269 + ], + [ + -73.484263, + 45.483728 + ], + [ + -73.483637, + 45.483278 + ], + [ + -73.483483, + 45.483175 + ], + [ + -73.483337, + 45.483067 + ], + [ + -73.482999, + 45.482824 + ], + [ + -73.482644, + 45.48257 + ], + [ + -73.482188, + 45.482243 + ], + [ + -73.482091, + 45.482176 + ], + [ + -73.481995, + 45.482108 + ], + [ + -73.481822, + 45.481987 + ], + [ + -73.481717, + 45.481909 + ], + [ + -73.48159, + 45.481816 + ], + [ + -73.481567, + 45.481829 + ], + [ + -73.481508, + 45.481869 + ], + [ + -73.480765, + 45.482378 + ], + [ + -73.480475, + 45.482571 + ], + [ + -73.479989, + 45.482922 + ], + [ + -73.479988, + 45.482923 + ], + [ + -73.479836, + 45.48303 + ], + [ + -73.479534, + 45.483242 + ], + [ + -73.479322, + 45.483399 + ], + [ + -73.479252, + 45.48344 + ], + [ + -73.477736, + 45.484481 + ], + [ + -73.477668, + 45.484528 + ], + [ + -73.477571, + 45.484591 + ], + [ + -73.476994, + 45.484996 + ], + [ + -73.476286, + 45.485495 + ], + [ + -73.476102, + 45.485612 + ], + [ + -73.475956, + 45.48572 + ], + [ + -73.47561, + 45.485464 + ], + [ + -73.475481, + 45.485369 + ], + [ + -73.475365, + 45.485286 + ], + [ + -73.475135, + 45.485121 + ], + [ + -73.474818, + 45.484892 + ], + [ + -73.474638, + 45.484761 + ], + [ + -73.474566, + 45.484707 + ], + [ + -73.473747, + 45.484113 + ], + [ + -73.473052, + 45.483612 + ], + [ + -73.472948, + 45.483537 + ], + [ + -73.472033, + 45.482872 + ], + [ + -73.471834, + 45.482727 + ], + [ + -73.47134, + 45.482367 + ], + [ + -73.470901, + 45.482034 + ], + [ + -73.470805, + 45.481962 + ], + [ + -73.470742, + 45.481922 + ], + [ + -73.470609, + 45.481836 + ], + [ + -73.470436, + 45.481957 + ], + [ + -73.470271, + 45.48207 + ], + [ + -73.469956, + 45.482272 + ], + [ + -73.469608, + 45.48252 + ], + [ + -73.469293, + 45.482731 + ], + [ + -73.469261, + 45.482752 + ], + [ + -73.468943, + 45.48296 + ], + [ + -73.468655, + 45.483149 + ], + [ + -73.468621, + 45.483172 + ], + [ + -73.468282, + 45.483401 + ], + [ + -73.467378, + 45.484028 + ], + [ + -73.466985, + 45.484267 + ], + [ + -73.466778, + 45.484384 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466022, + 45.484682 + ], + [ + -73.465888, + 45.484747 + ], + [ + -73.465767, + 45.484792 + ], + [ + -73.465702, + 45.484807 + ], + [ + -73.465661, + 45.484807 + ], + [ + -73.465627, + 45.484802 + ], + [ + -73.4655, + 45.484766 + ], + [ + -73.464965, + 45.484574 + ], + [ + -73.464559, + 45.484417 + ], + [ + -73.464508, + 45.484399 + ], + [ + -73.464185, + 45.484291 + ], + [ + -73.463703, + 45.484155 + ], + [ + -73.463657, + 45.484142 + ], + [ + -73.46319, + 45.484029 + ], + [ + -73.462672, + 45.483908 + ], + [ + -73.462287, + 45.483831 + ], + [ + -73.462032, + 45.483791 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.46135, + 45.4837 + ], + [ + -73.460838, + 45.483637 + ], + [ + -73.460177, + 45.48358 + ], + [ + -73.459999, + 45.483565 + ], + [ + -73.459497, + 45.483511 + ], + [ + -73.459033, + 45.483457 + ], + [ + -73.458739, + 45.483407 + ], + [ + -73.458547, + 45.483371 + ], + [ + -73.458333, + 45.483321 + ], + [ + -73.458016, + 45.483245 + ], + [ + -73.45777, + 45.483182 + ], + [ + -73.457493, + 45.483102 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45645, + 45.482799 + ], + [ + -73.455886, + 45.482623 + ], + [ + -73.455654, + 45.482542 + ], + [ + -73.455462, + 45.482465 + ], + [ + -73.455276, + 45.482384 + ], + [ + -73.455275, + 45.482384 + ], + [ + -73.455009, + 45.482272 + ], + [ + -73.454605, + 45.482087 + ], + [ + -73.454381, + 45.481984 + ], + [ + -73.454145, + 45.481862 + ], + [ + -73.453796, + 45.481673 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452379, + 45.481446 + ], + [ + -73.452062, + 45.481636 + ], + [ + -73.45135, + 45.482063 + ], + [ + -73.451247, + 45.482124 + ], + [ + -73.450093, + 45.48281 + ], + [ + -73.449882, + 45.482936 + ], + [ + -73.449245, + 45.483336 + ], + [ + -73.449101, + 45.483471 + ], + [ + -73.448914, + 45.483713 + ], + [ + -73.448817, + 45.483898 + ], + [ + -73.448629, + 45.484109 + ], + [ + -73.44844, + 45.484271 + ], + [ + -73.44822, + 45.484484 + ], + [ + -73.44775, + 45.484937 + ], + [ + -73.447415, + 45.485256 + ], + [ + -73.447237, + 45.485427 + ], + [ + -73.447005, + 45.485643 + ], + [ + -73.446786, + 45.485852 + ], + [ + -73.446708, + 45.485926 + ], + [ + -73.445795, + 45.486794 + ], + [ + -73.445654, + 45.486915 + ], + [ + -73.445524, + 45.487041 + ], + [ + -73.445408, + 45.487167 + ], + [ + -73.445358, + 45.487233 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 277, + "properties": { + "id": "2b464b47-7b96-4fac-bf50-3837ddfbe38a", + "data": { + "gtfs": { + "shape_id": "530_1_A" + }, + "segments": [ + { + "distanceMeters": 295, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 368, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 996, + "travelTimeSeconds": 155 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 405, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 509, + "travelTimeSeconds": 80 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5400, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3565.80614449939, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.43, + "travelTimeWithoutDwellTimesSeconds": 840, + "operatingTimeWithLayoverTimeSeconds": 1020, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 840, + "operatingSpeedWithLayoverMetersPerSecond": 5.29, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.43 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "196681e4-c9e5-4a79-a3b1-ce225227e0aa", + "54bbe390-ff6d-41d9-bd4b-1e4843d66512", + "aa413165-9699-49b6-9dea-fa35bda8f373", + "0a623471-271f-47f5-9a85-7feece2a3285", + "dc5fe0eb-b8cc-4186-82d3-6787360ae612", + "a3997372-5a39-4bfb-8751-2c107b865fce", + "2d362ed7-6d89-4629-988c-787207ccdc69", + "3c04c568-5ef2-4b47-8d34-b0d175358d60", + "c229b499-645e-4877-8f57-0fc6de2a8d53", + "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", + "a4f163e1-b90e-4fc3-82f3-f03b3181860d", + "491099bb-9493-4888-bd4e-20bd2140830a", + "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", + "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "d9b94443-0b59-40db-aecb-0acb5ea7976c", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "88765b65-7e98-423c-958b-942e0422d77e", + "segments": [ + 0, + 6, + 10, + 16, + 27, + 34, + 39, + 46, + 51, + 54, + 59, + 98, + 107, + 114, + 126, + 127, + 135, + 140, + 146 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 277, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445508, + 45.489489 + ], + [ + -73.4453, + 45.489165 + ], + [ + -73.445238, + 45.489052 + ], + [ + -73.445212, + 45.488985 + ], + [ + -73.445181, + 45.488904 + ], + [ + -73.445074, + 45.488728 + ], + [ + -73.445053, + 45.488544 + ], + [ + -73.445044, + 45.488377 + ], + [ + -73.445046, + 45.488242 + ], + [ + -73.445073, + 45.488085 + ], + [ + -73.445118, + 45.487932 + ], + [ + -73.445182, + 45.487779 + ], + [ + -73.445261, + 45.48759 + ], + [ + -73.445319, + 45.487496 + ], + [ + -73.445386, + 45.487388 + ], + [ + -73.445526, + 45.487217 + ], + [ + -73.445638, + 45.487095 + ], + [ + -73.445641, + 45.487093 + ], + [ + -73.445764, + 45.486978 + ], + [ + -73.445905, + 45.486857 + ], + [ + -73.446511, + 45.486279 + ], + [ + -73.446707, + 45.486092 + ], + [ + -73.44682, + 45.485985 + ], + [ + -73.447123, + 45.485706 + ], + [ + -73.447356, + 45.48549 + ], + [ + -73.447536, + 45.485315 + ], + [ + -73.447867, + 45.484995 + ], + [ + -73.448281, + 45.484596 + ], + [ + -73.448552, + 45.484334 + ], + [ + -73.448747, + 45.484168 + ], + [ + -73.448891, + 45.484006 + ], + [ + -73.448947, + 45.483943 + ], + [ + -73.449046, + 45.483754 + ], + [ + -73.449223, + 45.483529 + ], + [ + -73.449352, + 45.483408 + ], + [ + -73.449866, + 45.483087 + ], + [ + -73.449978, + 45.483017 + ], + [ + -73.451449, + 45.482131 + ], + [ + -73.451769, + 45.481938 + ], + [ + -73.45215, + 45.481708 + ], + [ + -73.452851, + 45.48129 + ], + [ + -73.453668, + 45.481781 + ], + [ + -73.454023, + 45.481974 + ], + [ + -73.454266, + 45.482101 + ], + [ + -73.454494, + 45.482204 + ], + [ + -73.454893, + 45.482398 + ], + [ + -73.455361, + 45.482587 + ], + [ + -73.455562, + 45.482663 + ], + [ + -73.455798, + 45.482744 + ], + [ + -73.456376, + 45.48292 + ], + [ + -73.456963, + 45.483096 + ], + [ + -73.457696, + 45.483312 + ], + [ + -73.457948, + 45.48338 + ], + [ + -73.45825, + 45.483452 + ], + [ + -73.458477, + 45.483499 + ], + [ + -73.458491, + 45.483501 + ], + [ + -73.458691, + 45.483542 + ], + [ + -73.458995, + 45.483592 + ], + [ + -73.459974, + 45.483704 + ], + [ + -73.46004, + 45.48371 + ], + [ + -73.460521, + 45.483755 + ], + [ + -73.460806, + 45.483781 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.462585, + 45.484043 + ], + [ + -73.463416, + 45.484224 + ], + [ + -73.463639, + 45.484291 + ], + [ + -73.464599, + 45.48462 + ], + [ + -73.465244, + 45.484835 + ], + [ + -73.465443, + 45.484908 + ], + [ + -73.465586, + 45.484937 + ], + [ + -73.465724, + 45.484942 + ], + [ + -73.465848, + 45.484931 + ], + [ + -73.466018, + 45.484884 + ], + [ + -73.466121, + 45.484844 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466778, + 45.484384 + ], + [ + -73.466917, + 45.484305 + ], + [ + -73.466985, + 45.484267 + ], + [ + -73.467378, + 45.484028 + ], + [ + -73.468282, + 45.483401 + ], + [ + -73.468621, + 45.483172 + ], + [ + -73.468655, + 45.483149 + ], + [ + -73.468943, + 45.48296 + ], + [ + -73.469261, + 45.482752 + ], + [ + -73.469293, + 45.482731 + ], + [ + -73.469608, + 45.48252 + ], + [ + -73.469956, + 45.482272 + ], + [ + -73.470268, + 45.482072 + ], + [ + -73.470271, + 45.48207 + ], + [ + -73.470416, + 45.481971 + ], + [ + -73.470436, + 45.481957 + ], + [ + -73.470609, + 45.481836 + ], + [ + -73.470742, + 45.481922 + ], + [ + -73.470805, + 45.481962 + ], + [ + -73.47134, + 45.482367 + ], + [ + -73.471834, + 45.482727 + ], + [ + -73.472033, + 45.482872 + ], + [ + -73.472837, + 45.483457 + ], + [ + -73.472948, + 45.483537 + ], + [ + -73.473747, + 45.484113 + ], + [ + -73.474469, + 45.484637 + ], + [ + -73.474566, + 45.484707 + ], + [ + -73.474818, + 45.484892 + ], + [ + -73.475135, + 45.485121 + ], + [ + -73.475481, + 45.485369 + ], + [ + -73.475662, + 45.485503 + ], + [ + -73.475956, + 45.48572 + ], + [ + -73.476102, + 45.485612 + ], + [ + -73.47615, + 45.485582 + ], + [ + -73.476286, + 45.485495 + ], + [ + -73.476994, + 45.484996 + ], + [ + -73.477496, + 45.484644 + ], + [ + -73.477571, + 45.484591 + ], + [ + -73.477668, + 45.484528 + ], + [ + -73.479252, + 45.48344 + ], + [ + -73.479322, + 45.483399 + ], + [ + -73.479534, + 45.483242 + ], + [ + -73.479761, + 45.483083 + ], + [ + -73.479836, + 45.48303 + ], + [ + -73.479989, + 45.482922 + ], + [ + -73.480475, + 45.482571 + ], + [ + -73.480765, + 45.482378 + ], + [ + -73.481508, + 45.481869 + ], + [ + -73.481567, + 45.481829 + ], + [ + -73.48159, + 45.481816 + ], + [ + -73.481822, + 45.481987 + ], + [ + -73.481995, + 45.482108 + ], + [ + -73.482091, + 45.482176 + ], + [ + -73.482188, + 45.482243 + ], + [ + -73.482644, + 45.48257 + ], + [ + -73.482999, + 45.482824 + ], + [ + -73.483337, + 45.483067 + ], + [ + -73.483483, + 45.483175 + ], + [ + -73.483637, + 45.483278 + ], + [ + -73.484263, + 45.483728 + ], + [ + -73.484786, + 45.484102 + ], + [ + -73.485416, + 45.484552 + ], + [ + -73.485807, + 45.484835 + ], + [ + -73.486446, + 45.485294 + ], + [ + -73.486783, + 45.485533 + ], + [ + -73.486855, + 45.485586 + ], + [ + -73.487051, + 45.485731 + ], + [ + -73.487831, + 45.486284 + ], + [ + -73.488568, + 45.486806 + ], + [ + -73.488966, + 45.487078 + ], + [ + -73.489048, + 45.487135 + ], + [ + -73.489411, + 45.487405 + ], + [ + -73.490801, + 45.488399 + ], + [ + -73.491472, + 45.488878 + ] + ] + }, + "id": 278, + "properties": { + "id": "0c92f790-0771-4fe9-a182-1e7f8c7e5a96", + "data": { + "gtfs": { + "shape_id": "530_2_R" + }, + "segments": [ + { + "distanceMeters": 492, + "travelTimeSeconds": 89 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 781, + "travelTimeSeconds": 142 + }, + { + "distanceMeters": 550, + "travelTimeSeconds": 100 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 557, + "travelTimeSeconds": 101 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 51 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5290, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3529.503388743907, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.51, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 4.64, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.51 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", + "159a0fe9-bedb-40f2-9806-32ab49594978", + "a4f163e1-b90e-4fc3-82f3-f03b3181860d", + "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", + "c229b499-645e-4877-8f57-0fc6de2a8d53", + "3c04c568-5ef2-4b47-8d34-b0d175358d60", + "2d362ed7-6d89-4629-988c-787207ccdc69", + "a3997372-5a39-4bfb-8751-2c107b865fce", + "0a623471-271f-47f5-9a85-7feece2a3285", + "aa413165-9699-49b6-9dea-fa35bda8f373", + "54bbe390-ff6d-41d9-bd4b-1e4843d66512", + "7faed35b-7709-443d-b0ec-5f09ab018202" + ], + "stops": [], + "line_id": "88765b65-7e98-423c-958b-942e0422d77e", + "segments": [ + 0, + 31, + 35, + 41, + 49, + 52, + 74, + 93, + 104, + 114, + 117, + 122, + 128, + 134, + 152, + 157, + 161 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 278, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.420993, + 45.457595 + ], + [ + -73.420984, + 45.457466 + ], + [ + -73.420984, + 45.457462 + ], + [ + -73.420768, + 45.456709 + ], + [ + -73.420731, + 45.456406 + ], + [ + -73.420728, + 45.456281 + ], + [ + -73.420766, + 45.456105 + ], + [ + -73.420872, + 45.455877 + ], + [ + -73.421054, + 45.45561 + ], + [ + -73.421295, + 45.455422 + ], + [ + -73.422321, + 45.454723 + ], + [ + -73.422712, + 45.454457 + ], + [ + -73.422823, + 45.454382 + ], + [ + -73.425, + 45.452904 + ], + [ + -73.425235, + 45.452745 + ], + [ + -73.42721, + 45.451405 + ], + [ + -73.427291, + 45.45135 + ], + [ + -73.42733, + 45.451323 + ], + [ + -73.427666, + 45.451103 + ], + [ + -73.42768, + 45.451094 + ], + [ + -73.428037, + 45.450878 + ], + [ + -73.430991, + 45.449139 + ], + [ + -73.43115, + 45.449049 + ], + [ + -73.431275, + 45.448979 + ], + [ + -73.432931, + 45.450108 + ], + [ + -73.433653, + 45.450548 + ], + [ + -73.433857, + 45.450613 + ], + [ + -73.433938, + 45.450638 + ], + [ + -73.434086, + 45.450685 + ], + [ + -73.434372, + 45.450754 + ], + [ + -73.434532, + 45.45078 + ], + [ + -73.434811, + 45.450806 + ], + [ + -73.435216, + 45.450834 + ], + [ + -73.43546, + 45.450862 + ], + [ + -73.435648, + 45.450893 + ], + [ + -73.435818, + 45.450928 + ], + [ + -73.435935, + 45.450963 + ], + [ + -73.436195, + 45.451061 + ], + [ + -73.436419, + 45.451155 + ], + [ + -73.436602, + 45.451264 + ], + [ + -73.436666, + 45.451306 + ], + [ + -73.436758, + 45.451367 + ], + [ + -73.436938, + 45.4515 + ], + [ + -73.437141, + 45.451649 + ], + [ + -73.43763, + 45.452001 + ], + [ + -73.438291, + 45.452478 + ], + [ + -73.438425, + 45.452575 + ], + [ + -73.438899, + 45.452918 + ], + [ + -73.439474, + 45.45333 + ], + [ + -73.439588, + 45.453411 + ], + [ + -73.439813, + 45.45357 + ], + [ + -73.439861, + 45.453603 + ], + [ + -73.439909, + 45.45364 + ], + [ + -73.439987, + 45.4537 + ], + [ + -73.440478, + 45.454051 + ], + [ + -73.44074, + 45.454241 + ], + [ + -73.44099, + 45.454406 + ], + [ + -73.441259, + 45.45456 + ], + [ + -73.441361, + 45.454611 + ], + [ + -73.441496, + 45.454678 + ], + [ + -73.441752, + 45.454794 + ], + [ + -73.441927, + 45.454861 + ], + [ + -73.442069, + 45.454915 + ], + [ + -73.442434, + 45.455032 + ], + [ + -73.442619, + 45.455085 + ], + [ + -73.442851, + 45.45514 + ], + [ + -73.442711, + 45.455401 + ], + [ + -73.442686, + 45.455439 + ], + [ + -73.442537, + 45.455671 + ], + [ + -73.442076, + 45.456224 + ], + [ + -73.441851, + 45.45649 + ], + [ + -73.441716, + 45.456616 + ], + [ + -73.441613, + 45.456707 + ], + [ + -73.441548, + 45.456764 + ], + [ + -73.441473, + 45.456822 + ], + [ + -73.44081, + 45.457277 + ], + [ + -73.440142, + 45.457735 + ], + [ + -73.439946, + 45.457887 + ], + [ + -73.439859, + 45.457955 + ], + [ + -73.439614, + 45.458149 + ], + [ + -73.43929, + 45.458432 + ], + [ + -73.438818, + 45.459021 + ], + [ + -73.438626, + 45.459273 + ], + [ + -73.438614, + 45.459291 + ], + [ + -73.438414, + 45.459492 + ], + [ + -73.437866, + 45.460042 + ], + [ + -73.437769, + 45.460141 + ], + [ + -73.437619, + 45.460293 + ], + [ + -73.437101, + 45.460817 + ], + [ + -73.43693, + 45.460991 + ], + [ + -73.436084, + 45.461838 + ], + [ + -73.435961, + 45.461961 + ], + [ + -73.435883, + 45.462039 + ], + [ + -73.435417, + 45.462506 + ], + [ + -73.435116, + 45.462807 + ], + [ + -73.435017, + 45.462901 + ], + [ + -73.434675, + 45.463227 + ], + [ + -73.434458, + 45.463416 + ], + [ + -73.434426, + 45.463444 + ], + [ + -73.433916, + 45.463851 + ], + [ + -73.432021, + 45.465211 + ], + [ + -73.431899, + 45.465299 + ], + [ + -73.431759, + 45.465404 + ], + [ + -73.431172, + 45.465847 + ], + [ + -73.430632, + 45.466255 + ], + [ + -73.430573, + 45.466288 + ], + [ + -73.43057, + 45.466298 + ], + [ + -73.43053, + 45.466326 + ], + [ + -73.430797, + 45.466502 + ], + [ + -73.432747, + 45.467791 + ], + [ + -73.434072, + 45.468662 + ], + [ + -73.434186, + 45.468737 + ], + [ + -73.434223, + 45.46871 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.434426, + 45.468557 + ], + [ + -73.434567, + 45.468446 + ], + [ + -73.434574, + 45.46844 + ], + [ + -73.434592, + 45.468428 + ], + [ + -73.434654, + 45.468386 + ], + [ + -73.434706, + 45.46835 + ], + [ + -73.43479, + 45.468319 + ], + [ + -73.434953, + 45.468251 + ], + [ + -73.435895, + 45.468018 + ], + [ + -73.437584, + 45.467585 + ], + [ + -73.437909, + 45.467502 + ], + [ + -73.438637, + 45.467322 + ], + [ + -73.438692, + 45.467309 + ], + [ + -73.439001, + 45.46721 + ], + [ + -73.439742, + 45.466711 + ], + [ + -73.439775, + 45.466686 + ], + [ + -73.440039, + 45.466482 + ], + [ + -73.440337, + 45.466252 + ], + [ + -73.440976, + 45.46578 + ], + [ + -73.441167, + 45.465915 + ], + [ + -73.441736, + 45.466257 + ], + [ + -73.442013, + 45.466357 + ], + [ + -73.442151, + 45.466404 + ], + [ + -73.442317, + 45.46646 + ], + [ + -73.442367, + 45.466471 + ], + [ + -73.442596, + 45.466523 + ], + [ + -73.442918, + 45.466614 + ], + [ + -73.44316, + 45.466708 + ], + [ + -73.4434, + 45.466798 + ], + [ + -73.443571, + 45.466875 + ], + [ + -73.443775, + 45.466978 + ], + [ + -73.44395, + 45.467091 + ], + [ + -73.44423, + 45.467276 + ], + [ + -73.44435, + 45.46737 + ], + [ + -73.44443, + 45.467451 + ], + [ + -73.44445, + 45.46747 + ], + [ + -73.444535, + 45.46755 + ], + [ + -73.445104, + 45.468072 + ], + [ + -73.445679, + 45.468635 + ], + [ + -73.446159, + 45.469087 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.447066, + 45.468996 + ], + [ + -73.4474, + 45.468829 + ], + [ + -73.447822, + 45.468645 + ], + [ + -73.448427, + 45.468407 + ], + [ + -73.449383, + 45.468079 + ], + [ + -73.449747, + 45.467955 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450014, + 45.467935 + ], + [ + -73.450122, + 45.468079 + ], + [ + -73.450316, + 45.468304 + ], + [ + -73.45058, + 45.468552 + ], + [ + -73.451028, + 45.468836 + ], + [ + -73.451105, + 45.468885 + ], + [ + -73.451294, + 45.468975 + ], + [ + -73.451441, + 45.469043 + ], + [ + -73.451848, + 45.4692 + ], + [ + -73.452447, + 45.46934 + ], + [ + -73.452697, + 45.469417 + ], + [ + -73.452751, + 45.469436 + ], + [ + -73.452836, + 45.469466 + ], + [ + -73.452949, + 45.469507 + ], + [ + -73.453362, + 45.469732 + ], + [ + -73.453575, + 45.469929 + ], + [ + -73.45358, + 45.469934 + ], + [ + -73.453598, + 45.469954 + ], + [ + -73.45368, + 45.470042 + ], + [ + -73.453779, + 45.470173 + ], + [ + -73.45386, + 45.470321 + ], + [ + -73.453915, + 45.47047 + ], + [ + -73.453949, + 45.470627 + ], + [ + -73.453947, + 45.470995 + ], + [ + -73.453946, + 45.471068 + ], + [ + -73.453836, + 45.471338 + ], + [ + -73.453823, + 45.471358 + ], + [ + -73.453715, + 45.471523 + ], + [ + -73.453575, + 45.471693 + ], + [ + -73.453393, + 45.471855 + ], + [ + -73.453204, + 45.471986 + ], + [ + -73.453004, + 45.472085 + ], + [ + -73.45285, + 45.472157 + ], + [ + -73.452463, + 45.472274 + ], + [ + -73.452316, + 45.472318 + ], + [ + -73.452008, + 45.472363 + ], + [ + -73.45163, + 45.472453 + ], + [ + -73.451205, + 45.472597 + ], + [ + -73.450793, + 45.472777 + ], + [ + -73.450608, + 45.472887 + ], + [ + -73.450449, + 45.472994 + ], + [ + -73.450285, + 45.473112 + ], + [ + -73.450213, + 45.47317 + ], + [ + -73.450137, + 45.473231 + ], + [ + -73.44993, + 45.473433 + ], + [ + -73.449727, + 45.47369 + ], + [ + -73.449578, + 45.473928 + ], + [ + -73.449481, + 45.474103 + ], + [ + -73.449384, + 45.474237 + ], + [ + -73.449337, + 45.474301 + ], + [ + -73.449175, + 45.474468 + ], + [ + -73.448857, + 45.474724 + ], + [ + -73.448574, + 45.474899 + ], + [ + -73.448039, + 45.475106 + ], + [ + -73.447996, + 45.475116 + ], + [ + -73.447817, + 45.47516 + ], + [ + -73.447461, + 45.475227 + ], + [ + -73.446928, + 45.475258 + ], + [ + -73.446655, + 45.475267 + ], + [ + -73.446335, + 45.475213 + ], + [ + -73.446018, + 45.475155 + ], + [ + -73.445688, + 45.475051 + ], + [ + -73.445389, + 45.47492 + ], + [ + -73.445344, + 45.474897 + ], + [ + -73.445071, + 45.474758 + ], + [ + -73.444821, + 45.47456 + ], + [ + -73.444816, + 45.474556 + ], + [ + -73.444637, + 45.474416 + ], + [ + -73.444536, + 45.474295 + ], + [ + -73.444434, + 45.474168 + ], + [ + -73.444376, + 45.474083 + ], + [ + -73.444267, + 45.473862 + ], + [ + -73.444225, + 45.473729 + ], + [ + -73.444201, + 45.473651 + ], + [ + -73.444096, + 45.473399 + ], + [ + -73.444022, + 45.473228 + ], + [ + -73.443969, + 45.473135 + ], + [ + -73.443885, + 45.472989 + ], + [ + -73.44368, + 45.472746 + ], + [ + -73.443403, + 45.472472 + ], + [ + -73.442813, + 45.472065 + ], + [ + -73.442653, + 45.471954 + ], + [ + -73.442519, + 45.471859 + ], + [ + -73.441942, + 45.47227 + ], + [ + -73.441021, + 45.472926 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.440777, + 45.473082 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.439918, + 45.473559 + ], + [ + -73.438731, + 45.47422 + ], + [ + -73.438304, + 45.474435 + ], + [ + -73.43828, + 45.474446 + ], + [ + -73.437984, + 45.474579 + ], + [ + -73.437774, + 45.474669 + ], + [ + -73.437493, + 45.474781 + ], + [ + -73.436979, + 45.47497 + ], + [ + -73.436441, + 45.475136 + ], + [ + -73.43565, + 45.475338 + ], + [ + -73.435359, + 45.475413 + ], + [ + -73.435246, + 45.475441 + ], + [ + -73.434371, + 45.475675 + ], + [ + -73.43213, + 45.476249 + ], + [ + -73.430984, + 45.476543 + ], + [ + -73.430442, + 45.476682 + ], + [ + -73.430219, + 45.476739 + ], + [ + -73.43007, + 45.476775 + ], + [ + -73.430191, + 45.476874 + ], + [ + -73.430586, + 45.477123 + ], + [ + -73.430682, + 45.477184 + ], + [ + -73.43148, + 45.477725 + ], + [ + -73.431567, + 45.477784 + ], + [ + -73.432859, + 45.478671 + ], + [ + -73.433475, + 45.479089 + ], + [ + -73.433608, + 45.479179 + ], + [ + -73.435032, + 45.480148 + ], + [ + -73.435713, + 45.480606 + ], + [ + -73.435802, + 45.480665 + ], + [ + -73.4369, + 45.481417 + ], + [ + -73.437309, + 45.481697 + ], + [ + -73.437407, + 45.481764 + ], + [ + -73.438338, + 45.48239 + ], + [ + -73.43885, + 45.482751 + ], + [ + -73.438971, + 45.482836 + ], + [ + -73.439533, + 45.483272 + ], + [ + -73.440126, + 45.483709 + ], + [ + -73.440663, + 45.48412 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.441185, + 45.484528 + ], + [ + -73.441638, + 45.484884 + ], + [ + -73.44227, + 45.485402 + ], + [ + -73.44238, + 45.485492 + ], + [ + -73.442979, + 45.48598 + ], + [ + -73.443236, + 45.48619 + ], + [ + -73.443584, + 45.486491 + ], + [ + -73.443685, + 45.486573 + ], + [ + -73.443937, + 45.486778 + ], + [ + -73.444066, + 45.486883 + ], + [ + -73.444405, + 45.487149 + ], + [ + -73.44464, + 45.487266 + ], + [ + -73.444883, + 45.487369 + ], + [ + -73.445062, + 45.487428 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 279, + "properties": { + "id": "7f7d3e36-3995-4f9d-bb8a-b1f498bff8a1", + "data": { + "gtfs": { + "shape_id": "532_1_A" + }, + "segments": [ + { + "distanceMeters": 422, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 304, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 102, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 59, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 61, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 606, + "travelTimeSeconds": 82 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11099, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4191.996930831726, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.4, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 6.61, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.4 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "3947066a-3681-4f55-8693-0a5fac46c728", + "006d28ae-a3cc-4f45-8689-daa6cf9386f5", + "94721b0b-0bae-4300-ab61-58dc9d3fe85b", + "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", + "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", + "27e1da8c-287d-4c6b-9905-9c8c3d07097d", + "9fe6df14-62d0-4a44-8e19-85300b42de89", + "c46f92e7-e692-49ea-b12f-0df7099ee6d5", + "06cee1c3-abcc-4982-b889-e73356b844e0", + "9e4bc046-2878-4cee-af77-934e179aa77f", + "1f87e3a1-2127-4357-9fd4-016c6c31e011", + "b7b9e437-9aed-4216-8c9e-6ac432328b58", + "eeae68ef-a789-47cd-b1a9-a6fc5c2bb689", + "1a929515-9cf9-46e2-a23e-d4a14e85a95d", + "7c6202a7-3f19-4943-97ae-2c6baa7cb485", + "2dc5436a-aaba-417a-8f15-4777cfa70bbf", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "ba86f45f-9fb5-4525-a50b-a876919fd012", + "988c86da-04eb-4067-b650-f13c447b17e7", + "988c86da-04eb-4067-b650-f13c447b17e7", + "4827a17d-8dc9-4cbd-8430-3334ebece64a", + "504cb53f-f1f4-46f2-81f5-f99fef8227fd", + "966472c1-4384-4d94-92f7-48afa023de51", + "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "c9664cb0-d2ee-485f-8261-b02c66f8f9aa", + "ee666934-d186-4b8b-a152-1fdeb23a5242", + "4d428a9f-d12a-42d6-ab66-7ad0c7ad2850", + "de0dd837-0f5e-4afa-a1ce-1042af81def1", + "014a3440-ffed-405b-9391-031896ce89b5", + "030a4337-a3e4-4cae-9b3c-548f03210dcf", + "ab44c70e-171d-4dd2-b074-2fbdab29c11d", + "18d33d13-0d37-41d0-8a27-4c75ae6704a6", + "f761f132-09f4-4a01-a76e-f9b0e50d8a9d", + "8bc1fa43-5a96-4718-96d6-82d3768ab9f4", + "c8919560-2bb2-4063-8184-8e6c296badbe", + "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", + "a17f387c-1398-49f4-8a7b-291d91ebc51f", + "a09ea856-287c-4215-ad6a-dab05db66e7a", + "cd932703-83f9-4acf-94fa-d521e6d427d0", + "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", + "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "e72d0d41-60dd-429c-9fc0-986190945d76", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "6c0bfb87-dee7-4e0e-9ee7-c2f5cb6e8211", + "segments": [ + 0, + 12, + 14, + 19, + 22, + 26, + 40, + 45, + 50, + 61, + 72, + 77, + 86, + 91, + 97, + 100, + 103, + 108, + 110, + 117, + 123, + 130, + 136, + 149, + 153, + 161, + 167, + 178, + 186, + 196, + 205, + 211, + 217, + 226, + 239, + 243, + 247, + 254, + 261, + 266, + 273, + 275, + 278, + 281, + 284, + 288, + 290, + 292, + 298 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 279, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445508, + 45.489489 + ], + [ + -73.4453, + 45.489165 + ], + [ + -73.445238, + 45.489052 + ], + [ + -73.445212, + 45.488985 + ], + [ + -73.445181, + 45.488904 + ], + [ + -73.445074, + 45.488728 + ], + [ + -73.445053, + 45.488544 + ], + [ + -73.445044, + 45.488377 + ], + [ + -73.445046, + 45.488242 + ], + [ + -73.445073, + 45.488085 + ], + [ + -73.445118, + 45.487932 + ], + [ + -73.445182, + 45.487779 + ], + [ + -73.445261, + 45.48759 + ], + [ + -73.445319, + 45.487496 + ], + [ + -73.445386, + 45.487388 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445129, + 45.48732 + ], + [ + -73.444962, + 45.487262 + ], + [ + -73.444731, + 45.487167 + ], + [ + -73.444565, + 45.487086 + ], + [ + -73.444194, + 45.486807 + ], + [ + -73.443808, + 45.486496 + ], + [ + -73.443706, + 45.486415 + ], + [ + -73.44336, + 45.486118 + ], + [ + -73.442631, + 45.485518 + ], + [ + -73.442528, + 45.485434 + ], + [ + -73.441754, + 45.484812 + ], + [ + -73.440975, + 45.484194 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.440245, + 45.483633 + ], + [ + -73.43964, + 45.483201 + ], + [ + -73.439159, + 45.482827 + ], + [ + -73.439083, + 45.482768 + ], + [ + -73.438464, + 45.482318 + ], + [ + -73.437644, + 45.481755 + ], + [ + -73.437512, + 45.481665 + ], + [ + -73.437014, + 45.481332 + ], + [ + -73.436034, + 45.480661 + ], + [ + -73.435909, + 45.480575 + ], + [ + -73.43514, + 45.480067 + ], + [ + -73.433836, + 45.479179 + ], + [ + -73.433717, + 45.479098 + ], + [ + -73.432962, + 45.478594 + ], + [ + -73.431691, + 45.47771 + ], + [ + -73.431589, + 45.477639 + ], + [ + -73.431156, + 45.477363 + ], + [ + -73.430833, + 45.477157 + ], + [ + -73.430771, + 45.477117 + ], + [ + -73.430341, + 45.476838 + ], + [ + -73.430884, + 45.476699 + ], + [ + -73.430986, + 45.476672 + ], + [ + -73.431164, + 45.476626 + ], + [ + -73.431616, + 45.47651 + ], + [ + -73.432188, + 45.476362 + ], + [ + -73.434429, + 45.475783 + ], + [ + -73.435107, + 45.475602 + ], + [ + -73.435306, + 45.475549 + ], + [ + -73.435634, + 45.475469 + ], + [ + -73.436518, + 45.475235 + ], + [ + -73.437045, + 45.475069 + ], + [ + -73.437596, + 45.47488 + ], + [ + -73.437872, + 45.474768 + ], + [ + -73.438084, + 45.474678 + ], + [ + -73.438205, + 45.474622 + ], + [ + -73.43841, + 45.474525 + ], + [ + -73.438836, + 45.474314 + ], + [ + -73.43909, + 45.474175 + ], + [ + -73.440044, + 45.473644 + ], + [ + -73.440381, + 45.473457 + ], + [ + -73.440534, + 45.473372 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.440904, + 45.473168 + ], + [ + -73.441015, + 45.473108 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.442527, + 45.472043 + ], + [ + -73.442653, + 45.471954 + ], + [ + -73.442946, + 45.472156 + ], + [ + -73.443403, + 45.472472 + ], + [ + -73.44368, + 45.472746 + ], + [ + -73.4438, + 45.472889 + ], + [ + -73.443885, + 45.472989 + ], + [ + -73.444022, + 45.473228 + ], + [ + -73.444096, + 45.473399 + ], + [ + -73.444201, + 45.473651 + ], + [ + -73.444225, + 45.473729 + ], + [ + -73.444267, + 45.473862 + ], + [ + -73.444376, + 45.474083 + ], + [ + -73.444434, + 45.474168 + ], + [ + -73.444536, + 45.474295 + ], + [ + -73.444637, + 45.474416 + ], + [ + -73.444816, + 45.474556 + ], + [ + -73.444821, + 45.47456 + ], + [ + -73.445071, + 45.474758 + ], + [ + -73.445389, + 45.47492 + ], + [ + -73.445457, + 45.47495 + ], + [ + -73.445688, + 45.475051 + ], + [ + -73.446018, + 45.475155 + ], + [ + -73.446335, + 45.475213 + ], + [ + -73.446655, + 45.475267 + ], + [ + -73.446928, + 45.475258 + ], + [ + -73.447461, + 45.475227 + ], + [ + -73.447817, + 45.47516 + ], + [ + -73.448039, + 45.475106 + ], + [ + -73.448342, + 45.474989 + ], + [ + -73.448574, + 45.474899 + ], + [ + -73.448857, + 45.474724 + ], + [ + -73.449175, + 45.474468 + ], + [ + -73.449337, + 45.474301 + ], + [ + -73.449358, + 45.474272 + ], + [ + -73.449481, + 45.474103 + ], + [ + -73.449578, + 45.473928 + ], + [ + -73.449727, + 45.47369 + ], + [ + -73.44993, + 45.473433 + ], + [ + -73.450137, + 45.473231 + ], + [ + -73.450285, + 45.473112 + ], + [ + -73.450312, + 45.473093 + ], + [ + -73.450449, + 45.472994 + ], + [ + -73.450608, + 45.472887 + ], + [ + -73.450793, + 45.472777 + ], + [ + -73.451205, + 45.472597 + ], + [ + -73.45163, + 45.472453 + ], + [ + -73.452008, + 45.472363 + ], + [ + -73.452167, + 45.47234 + ], + [ + -73.452316, + 45.472318 + ], + [ + -73.45285, + 45.472157 + ], + [ + -73.453004, + 45.472085 + ], + [ + -73.453204, + 45.471986 + ], + [ + -73.453393, + 45.471855 + ], + [ + -73.453575, + 45.471693 + ], + [ + -73.453715, + 45.471523 + ], + [ + -73.453836, + 45.471338 + ], + [ + -73.45391, + 45.471157 + ], + [ + -73.453946, + 45.471068 + ], + [ + -73.453949, + 45.470627 + ], + [ + -73.453918, + 45.470488 + ], + [ + -73.453915, + 45.47047 + ], + [ + -73.45386, + 45.470321 + ], + [ + -73.453779, + 45.470173 + ], + [ + -73.45368, + 45.470042 + ], + [ + -73.453598, + 45.469954 + ], + [ + -73.45358, + 45.469934 + ], + [ + -73.453454, + 45.469817 + ], + [ + -73.453362, + 45.469732 + ], + [ + -73.452949, + 45.469507 + ], + [ + -73.452836, + 45.469466 + ], + [ + -73.452751, + 45.469436 + ], + [ + -73.452697, + 45.469417 + ], + [ + -73.452447, + 45.46934 + ], + [ + -73.452072, + 45.469252 + ], + [ + -73.451848, + 45.4692 + ], + [ + -73.451441, + 45.469043 + ], + [ + -73.451294, + 45.468975 + ], + [ + -73.451105, + 45.468885 + ], + [ + -73.45058, + 45.468552 + ], + [ + -73.450316, + 45.468304 + ], + [ + -73.450122, + 45.468079 + ], + [ + -73.450075, + 45.468017 + ], + [ + -73.450014, + 45.467935 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.449888, + 45.467769 + ], + [ + -73.449338, + 45.467948 + ], + [ + -73.44837, + 45.46829 + ], + [ + -73.447748, + 45.468524 + ], + [ + -73.447289, + 45.468721 + ], + [ + -73.446429, + 45.469168 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445679, + 45.468635 + ], + [ + -73.445104, + 45.468072 + ], + [ + -73.444614, + 45.467623 + ], + [ + -73.444535, + 45.46755 + ], + [ + -73.44443, + 45.467451 + ], + [ + -73.44435, + 45.46737 + ], + [ + -73.44423, + 45.467276 + ], + [ + -73.44395, + 45.467091 + ], + [ + -73.443775, + 45.466978 + ], + [ + -73.443571, + 45.466875 + ], + [ + -73.4434, + 45.466798 + ], + [ + -73.44316, + 45.466708 + ], + [ + -73.442918, + 45.466614 + ], + [ + -73.442751, + 45.466567 + ], + [ + -73.442596, + 45.466523 + ], + [ + -73.442367, + 45.466471 + ], + [ + -73.442317, + 45.46646 + ], + [ + -73.442013, + 45.466357 + ], + [ + -73.441736, + 45.466257 + ], + [ + -73.441411, + 45.466062 + ], + [ + -73.441167, + 45.465915 + ], + [ + -73.440976, + 45.46578 + ], + [ + -73.440458, + 45.466163 + ], + [ + -73.440337, + 45.466252 + ], + [ + -73.439775, + 45.466686 + ], + [ + -73.439742, + 45.466711 + ], + [ + -73.439001, + 45.46721 + ], + [ + -73.438692, + 45.467309 + ], + [ + -73.438637, + 45.467322 + ], + [ + -73.438033, + 45.467471 + ], + [ + -73.437909, + 45.467502 + ], + [ + -73.435895, + 45.468018 + ], + [ + -73.434953, + 45.468251 + ], + [ + -73.43479, + 45.468319 + ], + [ + -73.434706, + 45.46835 + ], + [ + -73.434654, + 45.468386 + ], + [ + -73.434631, + 45.468402 + ], + [ + -73.434574, + 45.46844 + ], + [ + -73.434426, + 45.468557 + ], + [ + -73.434414, + 45.468566 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.433058, + 45.467863 + ], + [ + -73.430729, + 45.466319 + ], + [ + -73.430632, + 45.466255 + ], + [ + -73.431759, + 45.465404 + ], + [ + -73.431805, + 45.465369 + ], + [ + -73.431899, + 45.465299 + ], + [ + -73.433916, + 45.463851 + ], + [ + -73.434414, + 45.463453 + ], + [ + -73.434426, + 45.463444 + ], + [ + -73.434675, + 45.463227 + ], + [ + -73.435017, + 45.462901 + ], + [ + -73.435116, + 45.462807 + ], + [ + -73.435417, + 45.462506 + ], + [ + -73.435796, + 45.462126 + ], + [ + -73.435883, + 45.462039 + ], + [ + -73.436084, + 45.461838 + ], + [ + -73.43693, + 45.460991 + ], + [ + -73.437101, + 45.460817 + ], + [ + -73.437577, + 45.460335 + ], + [ + -73.437619, + 45.460293 + ], + [ + -73.437866, + 45.460042 + ], + [ + -73.438236, + 45.459671 + ], + [ + -73.438414, + 45.459492 + ], + [ + -73.438614, + 45.459291 + ], + [ + -73.438626, + 45.459273 + ], + [ + -73.438819, + 45.459071 + ], + [ + -73.438948, + 45.458945 + ], + [ + -73.439183, + 45.458702 + ], + [ + -73.439385, + 45.458522 + ], + [ + -73.439548, + 45.458374 + ], + [ + -73.439744, + 45.458212 + ], + [ + -73.439855, + 45.458123 + ], + [ + -73.439962, + 45.458036 + ], + [ + -73.44026, + 45.457807 + ], + [ + -73.440529, + 45.457614 + ], + [ + -73.440865, + 45.457385 + ], + [ + -73.441403, + 45.45702 + ], + [ + -73.441471, + 45.456971 + ], + [ + -73.441571, + 45.456899 + ], + [ + -73.441575, + 45.456899 + ], + [ + -73.441649, + 45.456841 + ], + [ + -73.441768, + 45.456751 + ], + [ + -73.441927, + 45.456598 + ], + [ + -73.442011, + 45.456512 + ], + [ + -73.442083, + 45.456427 + ], + [ + -73.44217, + 45.456323 + ], + [ + -73.442265, + 45.456206 + ], + [ + -73.442375, + 45.456072 + ], + [ + -73.442447, + 45.455982 + ], + [ + -73.442523, + 45.455887 + ], + [ + -73.442591, + 45.455806 + ], + [ + -73.442675, + 45.455707 + ], + [ + -73.442728, + 45.455644 + ], + [ + -73.442777, + 45.455581 + ], + [ + -73.442807, + 45.455541 + ], + [ + -73.44285, + 45.455478 + ], + [ + -73.442899, + 45.455392 + ], + [ + -73.442958, + 45.455271 + ], + [ + -73.443004, + 45.455181 + ], + [ + -73.443048, + 45.455091 + ], + [ + -73.442897, + 45.455046 + ], + [ + -73.442552, + 45.454942 + ], + [ + -73.442457, + 45.454913 + ], + [ + -73.442149, + 45.454821 + ], + [ + -73.441781, + 45.454681 + ], + [ + -73.441446, + 45.454519 + ], + [ + -73.44141, + 45.454501 + ], + [ + -73.440931, + 45.454231 + ], + [ + -73.440203, + 45.453713 + ], + [ + -73.440081, + 45.453626 + ], + [ + -73.440001, + 45.453569 + ], + [ + -73.43991, + 45.453501 + ], + [ + -73.439666, + 45.453317 + ], + [ + -73.439573, + 45.453251 + ], + [ + -73.439082, + 45.452902 + ], + [ + -73.438626, + 45.452571 + ], + [ + -73.438531, + 45.452502 + ], + [ + -73.437308, + 45.451615 + ], + [ + -73.437177, + 45.451517 + ], + [ + -73.437043, + 45.451417 + ], + [ + -73.436765, + 45.45122 + ], + [ + -73.436538, + 45.451086 + ], + [ + -73.436237, + 45.450946 + ], + [ + -73.435932, + 45.450844 + ], + [ + -73.435722, + 45.450794 + ], + [ + -73.4355, + 45.450753 + ], + [ + -73.435275, + 45.450728 + ], + [ + -73.434955, + 45.450707 + ], + [ + -73.434723, + 45.450689 + ], + [ + -73.434511, + 45.450663 + ], + [ + -73.434387, + 45.45064 + ], + [ + -73.434163, + 45.450586 + ], + [ + -73.43412, + 45.45058 + ], + [ + -73.433988, + 45.45056 + ], + [ + -73.433599, + 45.45039 + ], + [ + -73.432687, + 45.449776 + ], + [ + -73.431398, + 45.448909 + ], + [ + -73.431292, + 45.448821 + ], + [ + -73.431167, + 45.448894 + ], + [ + -73.430951, + 45.449021 + ], + [ + -73.430882, + 45.449061 + ], + [ + -73.427598, + 45.450978 + ], + [ + -73.42752, + 45.451029 + ], + [ + -73.427205, + 45.451234 + ], + [ + -73.427162, + 45.451264 + ], + [ + -73.427086, + 45.451315 + ], + [ + -73.424876, + 45.452814 + ], + [ + -73.42454, + 45.453042 + ], + [ + -73.422189, + 45.454637 + ], + [ + -73.421751, + 45.454934 + ], + [ + -73.421127, + 45.455358 + ], + [ + -73.420979, + 45.455496 + ], + [ + -73.420845, + 45.455619 + ], + [ + -73.420639, + 45.455911 + ], + [ + -73.420583, + 45.456092 + ], + [ + -73.420566, + 45.456243 + ], + [ + -73.420553, + 45.45636 + ], + [ + -73.420583, + 45.456538 + ], + [ + -73.420669, + 45.456926 + ], + [ + -73.42078, + 45.45738 + ] + ] + }, + "id": 280, + "properties": { + "id": "a2dedaa2-a27a-4c5b-bf63-c4a6ccb8cc2d", + "data": { + "gtfs": { + "shape_id": "532_2_R" + }, + "segments": [ + { + "distanceMeters": 757, + "travelTimeSeconds": 110 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 91, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 343, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 46, + "travelTimeSeconds": 7 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 344, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 311, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 392, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 304, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 45 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11041, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4226.798444626649, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.81, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 6.13, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.81 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", + "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", + "cd932703-83f9-4acf-94fa-d521e6d427d0", + "a09ea856-287c-4215-ad6a-dab05db66e7a", + "a17f387c-1398-49f4-8a7b-291d91ebc51f", + "71881b96-39d5-48ea-9242-5e05ded39cda", + "71881b96-39d5-48ea-9242-5e05ded39cda", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "46c30d80-c93e-497b-a096-3a7c13e3723f", + "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", + "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", + "8bc1fa43-5a96-4718-96d6-82d3768ab9f4", + "f761f132-09f4-4a01-a76e-f9b0e50d8a9d", + "18d33d13-0d37-41d0-8a27-4c75ae6704a6", + "ab44c70e-171d-4dd2-b074-2fbdab29c11d", + "030a4337-a3e4-4cae-9b3c-548f03210dcf", + "014a3440-ffed-405b-9391-031896ce89b5", + "de0dd837-0f5e-4afa-a1ce-1042af81def1", + "4d428a9f-d12a-42d6-ab66-7ad0c7ad2850", + "ee666934-d186-4b8b-a152-1fdeb23a5242", + "e3925175-d7e8-4440-80a1-64bd3d7d9b18", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", + "966472c1-4384-4d94-92f7-48afa023de51", + "43d1b9da-374a-4022-9200-6e68a13388db", + "504cb53f-f1f4-46f2-81f5-f99fef8227fd", + "4827a17d-8dc9-4cbd-8430-3334ebece64a", + "988c86da-04eb-4067-b650-f13c447b17e7", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "2dc5436a-aaba-417a-8f15-4777cfa70bbf", + "7c6202a7-3f19-4943-97ae-2c6baa7cb485", + "1a929515-9cf9-46e2-a23e-d4a14e85a95d", + "eeae68ef-a789-47cd-b1a9-a6fc5c2bb689", + "b7b9e437-9aed-4216-8c9e-6ac432328b58", + "1f87e3a1-2127-4357-9fd4-016c6c31e011", + "9159ff88-d9d5-4cda-a7ee-41b416c49163", + "06cee1c3-abcc-4982-b889-e73356b844e0", + "c46f92e7-e692-49ea-b12f-0df7099ee6d5", + "fdc86629-6768-46ce-9ee0-1d935d00516c", + "27e1da8c-287d-4c6b-9905-9c8c3d07097d", + "0b421cac-8896-468a-9252-ce5f1fee4e84", + "1f1619c9-3302-430c-9ade-aab4bf9e1e55", + "c74e0c90-a5ea-4788-9b1d-7bf05f50a1c4", + "657fc71f-da59-4e3a-8872-f83480cde10d", + "812fffe8-cc71-4dbc-93c9-b4301abed6c9", + "2091533d-ae73-45a6-ae28-00a869c29f04" + ], + "stops": [], + "line_id": "6c0bfb87-dee7-4e0e-9ee7-c2f5cb6e8211", + "segments": [ + 0, + 38, + 41, + 45, + 48, + 51, + 54, + 57, + 60, + 64, + 69, + 77, + 83, + 88, + 90, + 93, + 108, + 117, + 122, + 129, + 136, + 145, + 155, + 162, + 170, + 178, + 182, + 193, + 199, + 202, + 209, + 219, + 222, + 225, + 228, + 234, + 239, + 252, + 258, + 283, + 289, + 296, + 299, + 313, + 316, + 320, + 323, + 328, + 330 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 280, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.470853, + 45.437641 + ], + [ + -73.470909, + 45.43755 + ], + [ + -73.471049, + 45.437306 + ], + [ + -73.471113, + 45.437194 + ], + [ + -73.471139, + 45.437154 + ], + [ + -73.472058, + 45.435759 + ], + [ + -73.471657, + 45.43562 + ], + [ + -73.471617, + 45.435607 + ], + [ + -73.471308, + 45.435507 + ], + [ + -73.470685, + 45.435314 + ], + [ + -73.470598, + 45.435287 + ], + [ + -73.469951, + 45.435071 + ], + [ + -73.469144, + 45.434802 + ], + [ + -73.469086, + 45.434782 + ], + [ + -73.468637, + 45.434634 + ], + [ + -73.466273, + 45.43385 + ], + [ + -73.465531, + 45.433585 + ], + [ + -73.465352, + 45.433521 + ], + [ + -73.464983, + 45.434165 + ], + [ + -73.464402, + 45.435154 + ], + [ + -73.464363, + 45.435226 + ], + [ + -73.464262, + 45.435411 + ], + [ + -73.464217, + 45.435519 + ], + [ + -73.464208, + 45.435541 + ], + [ + -73.464129, + 45.435726 + ], + [ + -73.464042, + 45.435933 + ], + [ + -73.463949, + 45.43609 + ], + [ + -73.463883, + 45.436216 + ], + [ + -73.463836, + 45.436306 + ], + [ + -73.463113, + 45.4361 + ], + [ + -73.462701, + 45.435982 + ], + [ + -73.462325, + 45.436579 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.462162, + 45.436832 + ], + [ + -73.461442, + 45.437945 + ], + [ + -73.460899, + 45.438784 + ], + [ + -73.460824, + 45.438928 + ], + [ + -73.460775, + 45.43905 + ], + [ + -73.460753, + 45.439144 + ], + [ + -73.460745, + 45.439186 + ], + [ + -73.460732, + 45.439261 + ], + [ + -73.460756, + 45.439374 + ], + [ + -73.460804, + 45.439527 + ], + [ + -73.460879, + 45.439666 + ], + [ + -73.4611, + 45.439963 + ], + [ + -73.461732, + 45.440683 + ], + [ + -73.46187, + 45.440814 + ], + [ + -73.46208, + 45.440963 + ], + [ + -73.462213, + 45.441057 + ], + [ + -73.462145, + 45.441115 + ], + [ + -73.46199, + 45.441264 + ], + [ + -73.461921, + 45.441345 + ], + [ + -73.461309, + 45.442274 + ], + [ + -73.461249, + 45.442366 + ], + [ + -73.460623, + 45.443338 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.460454, + 45.443598 + ], + [ + -73.460027, + 45.444237 + ], + [ + -73.45954, + 45.445006 + ], + [ + -73.459486, + 45.445092 + ], + [ + -73.458903, + 45.445978 + ], + [ + -73.458716, + 45.446252 + ], + [ + -73.458499, + 45.446437 + ], + [ + -73.458358, + 45.446536 + ], + [ + -73.45823, + 45.446598 + ], + [ + -73.458121, + 45.446639 + ], + [ + -73.45812, + 45.446639 + ], + [ + -73.458085, + 45.446651 + ], + [ + -73.458009, + 45.446676 + ], + [ + -73.457516, + 45.446841 + ], + [ + -73.456885, + 45.447052 + ], + [ + -73.456398, + 45.447215 + ], + [ + -73.456253, + 45.447264 + ], + [ + -73.455927, + 45.447371 + ], + [ + -73.455661, + 45.447479 + ], + [ + -73.455528, + 45.447551 + ], + [ + -73.455416, + 45.447619 + ], + [ + -73.455304, + 45.447709 + ], + [ + -73.455137, + 45.447929 + ], + [ + -73.454897, + 45.448293 + ], + [ + -73.454606, + 45.448707 + ], + [ + -73.454507, + 45.448806 + ], + [ + -73.45442, + 45.448874 + ], + [ + -73.454351, + 45.448928 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.454088, + 45.449121 + ], + [ + -73.454556, + 45.449427 + ], + [ + -73.454793, + 45.449607 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.453977, + 45.450264 + ], + [ + -73.452738, + 45.451131 + ], + [ + -73.452622, + 45.451213 + ], + [ + -73.453298, + 45.451699 + ], + [ + -73.452613, + 45.45218 + ], + [ + -73.45248, + 45.452271 + ], + [ + -73.451635, + 45.452851 + ], + [ + -73.451486, + 45.452953 + ], + [ + -73.45112, + 45.453219 + ], + [ + -73.450766, + 45.453502 + ], + [ + -73.450729, + 45.453546 + ], + [ + -73.450488, + 45.453839 + ], + [ + -73.451305, + 45.454127 + ], + [ + -73.451557, + 45.454204 + ], + [ + -73.45174, + 45.454276 + ], + [ + -73.451873, + 45.454344 + ], + [ + -73.451956, + 45.454402 + ], + [ + -73.452089, + 45.454536 + ], + [ + -73.452189, + 45.454636 + ], + [ + -73.452038, + 45.454708 + ], + [ + -73.451941, + 45.454767 + ], + [ + -73.451848, + 45.45487 + ], + [ + -73.45166, + 45.455126 + ], + [ + -73.451461, + 45.455422 + ], + [ + -73.451258, + 45.455723 + ], + [ + -73.450443, + 45.45693 + ], + [ + -73.450382, + 45.457097 + ], + [ + -73.450362, + 45.457232 + ], + [ + -73.450367, + 45.457403 + ], + [ + -73.450396, + 45.457536 + ], + [ + -73.450437, + 45.457731 + ], + [ + -73.450776, + 45.457974 + ], + [ + -73.451112, + 45.458216 + ], + [ + -73.452534, + 45.459239 + ], + [ + -73.453079, + 45.459639 + ], + [ + -73.453221, + 45.459743 + ], + [ + -73.454635, + 45.460759 + ], + [ + -73.456104, + 45.461814 + ], + [ + -73.456268, + 45.4619 + ], + [ + -73.456608, + 45.461964 + ], + [ + -73.457019, + 45.462007 + ], + [ + -73.457292, + 45.46211 + ], + [ + -73.457369, + 45.46218 + ], + [ + -73.45742, + 45.46227 + ], + [ + -73.45744, + 45.462394 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.454668, + 45.465614 + ], + [ + -73.45456, + 45.465692 + ], + [ + -73.453819, + 45.466205 + ], + [ + -73.453432, + 45.466434 + ], + [ + -73.453035, + 45.466641 + ], + [ + -73.452922, + 45.46669 + ], + [ + -73.45279, + 45.466747 + ], + [ + -73.452589, + 45.466834 + ], + [ + -73.451705, + 45.467139 + ], + [ + -73.451627, + 45.467166 + ], + [ + -73.45158, + 45.467183 + ], + [ + -73.451019, + 45.467376 + ], + [ + -73.450937, + 45.467405 + ], + [ + -73.450156, + 45.467679 + ], + [ + -73.449888, + 45.467769 + ], + [ + -73.449338, + 45.467948 + ], + [ + -73.44837, + 45.46829 + ], + [ + -73.447748, + 45.468524 + ], + [ + -73.447289, + 45.468721 + ], + [ + -73.44644, + 45.469162 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445905, + 45.469485 + ], + [ + -73.445671, + 45.469643 + ], + [ + -73.445475, + 45.469778 + ], + [ + -73.445396, + 45.469832 + ], + [ + -73.445298, + 45.469899 + ], + [ + -73.444328, + 45.470583 + ], + [ + -73.444081, + 45.470757 + ], + [ + -73.442663, + 45.471758 + ], + [ + -73.442644, + 45.471771 + ], + [ + -73.442519, + 45.471859 + ], + [ + -73.441942, + 45.47227 + ], + [ + -73.441026, + 45.472922 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.440777, + 45.473082 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.439918, + 45.473559 + ], + [ + -73.438731, + 45.47422 + ], + [ + -73.438304, + 45.474435 + ], + [ + -73.438275, + 45.474448 + ], + [ + -73.437984, + 45.474579 + ], + [ + -73.437774, + 45.474669 + ], + [ + -73.437493, + 45.474781 + ], + [ + -73.436979, + 45.47497 + ], + [ + -73.436441, + 45.475136 + ], + [ + -73.43565, + 45.475338 + ], + [ + -73.435364, + 45.475411 + ], + [ + -73.435246, + 45.475441 + ], + [ + -73.434371, + 45.475675 + ], + [ + -73.43213, + 45.476249 + ], + [ + -73.430984, + 45.476543 + ], + [ + -73.430446, + 45.476681 + ], + [ + -73.430219, + 45.476739 + ], + [ + -73.43007, + 45.476775 + ], + [ + -73.430191, + 45.476874 + ], + [ + -73.430479, + 45.477056 + ], + [ + -73.430682, + 45.477184 + ], + [ + -73.43148, + 45.477725 + ], + [ + -73.431573, + 45.477789 + ], + [ + -73.432859, + 45.478671 + ], + [ + -73.433472, + 45.479087 + ], + [ + -73.433608, + 45.479179 + ], + [ + -73.435032, + 45.480148 + ], + [ + -73.435711, + 45.480604 + ], + [ + -73.435802, + 45.480665 + ], + [ + -73.4369, + 45.481417 + ], + [ + -73.437307, + 45.481696 + ], + [ + -73.437407, + 45.481764 + ], + [ + -73.438338, + 45.48239 + ], + [ + -73.438858, + 45.482756 + ], + [ + -73.438971, + 45.482836 + ], + [ + -73.439533, + 45.483272 + ], + [ + -73.440126, + 45.483709 + ], + [ + -73.440661, + 45.484119 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.441192, + 45.484534 + ], + [ + -73.441638, + 45.484884 + ], + [ + -73.442269, + 45.485401 + ], + [ + -73.44238, + 45.485492 + ], + [ + -73.442979, + 45.48598 + ], + [ + -73.443236, + 45.48619 + ], + [ + -73.443584, + 45.486491 + ], + [ + -73.443685, + 45.486573 + ], + [ + -73.443944, + 45.486784 + ], + [ + -73.444066, + 45.486883 + ], + [ + -73.444405, + 45.487149 + ], + [ + -73.44464, + 45.487266 + ], + [ + -73.444883, + 45.487369 + ], + [ + -73.445062, + 45.487428 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 281, + "properties": { + "id": "104e2a27-edd2-4f7b-b42d-424a16405e5e", + "data": { + "gtfs": { + "shape_id": "533_1_A" + }, + "segments": [ + { + "distanceMeters": 268, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 337, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 31, + "travelTimeSeconds": 4 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 727, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 62, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 605, + "travelTimeSeconds": 81 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9956, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6209.141183844406, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.54, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 6.64, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.54 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", + "f36c7de3-84dd-4573-ac69-91ccd87efd4f", + "1d638a17-5a2b-40f7-a0cc-6db81666104e", + "e990ec2d-e586-4b2f-884d-4124f22426b3", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "c7e2639a-bb94-426e-918b-714f0212d53b", + "19a4f64a-0169-40b9-8b9c-84de3158151e", + "b93691d0-438e-4eac-87a0-7c1ac45a7c18", + "9b31d865-da9f-4eb8-b8a9-3d488eb579df", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "57126f14-f5bb-4578-a4ae-48d75eae5e82", + "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", + "8b7e764f-0227-410c-89b9-51b9a8ad8c88", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", + "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", + "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", + "0087674f-0098-4bab-9a77-b31eb3602613", + "db56dff4-d82c-4b2d-ad34-35b3db3f27de", + "800b4ca8-f540-48ef-9acf-ec6d45db3496", + "0c735a18-4964-435c-ad38-89ab21a47f83", + "c01e4d9c-c5df-425f-9b40-215a62d76b50", + "4ca26d1e-a5a2-4d1a-ba5a-7bed9b5a1bee", + "bd9b4c12-08ed-4715-ae67-eb179ed7f974", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "ff779c9a-cd83-463a-8d0c-a93f3584a187", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", + "c8919560-2bb2-4063-8184-8e6c296badbe", + "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", + "a17f387c-1398-49f4-8a7b-291d91ebc51f", + "a09ea856-287c-4215-ad6a-dab05db66e7a", + "cd932703-83f9-4acf-94fa-d521e6d427d0", + "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", + "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "e72d0d41-60dd-429c-9fc0-986190945d76", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "2acfbc68-29a8-4710-9e84-11fdcfa10002", + "segments": [ + 0, + 7, + 12, + 16, + 27, + 31, + 33, + 34, + 39, + 47, + 52, + 54, + 58, + 66, + 71, + 82, + 87, + 90, + 95, + 99, + 106, + 113, + 118, + 123, + 125, + 143, + 149, + 154, + 162, + 170, + 171, + 175, + 182, + 189, + 194, + 201, + 203, + 206, + 209, + 212, + 216, + 218, + 220, + 226 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 281, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445508, + 45.489489 + ], + [ + -73.4453, + 45.489165 + ], + [ + -73.445238, + 45.489052 + ], + [ + -73.445212, + 45.488985 + ], + [ + -73.445181, + 45.488904 + ], + [ + -73.445074, + 45.488728 + ], + [ + -73.445053, + 45.488544 + ], + [ + -73.445044, + 45.488377 + ], + [ + -73.445046, + 45.488242 + ], + [ + -73.445073, + 45.488085 + ], + [ + -73.445118, + 45.487932 + ], + [ + -73.445182, + 45.487779 + ], + [ + -73.445261, + 45.48759 + ], + [ + -73.445319, + 45.487496 + ], + [ + -73.445386, + 45.487388 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445129, + 45.48732 + ], + [ + -73.444962, + 45.487262 + ], + [ + -73.444731, + 45.487167 + ], + [ + -73.444565, + 45.487086 + ], + [ + -73.444194, + 45.486807 + ], + [ + -73.443808, + 45.486496 + ], + [ + -73.443706, + 45.486415 + ], + [ + -73.44336, + 45.486118 + ], + [ + -73.44263, + 45.485517 + ], + [ + -73.442528, + 45.485434 + ], + [ + -73.441754, + 45.484812 + ], + [ + -73.440974, + 45.484193 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.440245, + 45.483633 + ], + [ + -73.43964, + 45.483201 + ], + [ + -73.439158, + 45.482826 + ], + [ + -73.439083, + 45.482768 + ], + [ + -73.438464, + 45.482318 + ], + [ + -73.437642, + 45.481754 + ], + [ + -73.437512, + 45.481665 + ], + [ + -73.437014, + 45.481332 + ], + [ + -73.436032, + 45.48066 + ], + [ + -73.435909, + 45.480575 + ], + [ + -73.43514, + 45.480067 + ], + [ + -73.433834, + 45.479178 + ], + [ + -73.433717, + 45.479098 + ], + [ + -73.432962, + 45.478594 + ], + [ + -73.431689, + 45.477709 + ], + [ + -73.431589, + 45.477639 + ], + [ + -73.431156, + 45.477363 + ], + [ + -73.430831, + 45.477155 + ], + [ + -73.430771, + 45.477117 + ], + [ + -73.430341, + 45.476838 + ], + [ + -73.430884, + 45.476699 + ], + [ + -73.43099, + 45.476671 + ], + [ + -73.431132, + 45.476635 + ], + [ + -73.431616, + 45.47651 + ], + [ + -73.432188, + 45.476362 + ], + [ + -73.434429, + 45.475783 + ], + [ + -73.435111, + 45.475601 + ], + [ + -73.435306, + 45.475549 + ], + [ + -73.435634, + 45.475469 + ], + [ + -73.436518, + 45.475235 + ], + [ + -73.437045, + 45.475069 + ], + [ + -73.437596, + 45.47488 + ], + [ + -73.437872, + 45.474768 + ], + [ + -73.438084, + 45.474678 + ], + [ + -73.438208, + 45.47462 + ], + [ + -73.43841, + 45.474525 + ], + [ + -73.438836, + 45.474314 + ], + [ + -73.43909, + 45.474175 + ], + [ + -73.440044, + 45.473644 + ], + [ + -73.440381, + 45.473457 + ], + [ + -73.440538, + 45.47337 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.440904, + 45.473168 + ], + [ + -73.441015, + 45.473108 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.442531, + 45.47204 + ], + [ + -73.442653, + 45.471954 + ], + [ + -73.444466, + 45.470668 + ], + [ + -73.444558, + 45.470603 + ], + [ + -73.444702, + 45.470501 + ], + [ + -73.445328, + 45.470057 + ], + [ + -73.445338, + 45.470052 + ], + [ + -73.445622, + 45.469854 + ], + [ + -73.446091, + 45.469543 + ], + [ + -73.446388, + 45.469346 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.447066, + 45.468996 + ], + [ + -73.4474, + 45.468829 + ], + [ + -73.447822, + 45.468645 + ], + [ + -73.448427, + 45.468407 + ], + [ + -73.449383, + 45.468079 + ], + [ + -73.449755, + 45.467952 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450233, + 45.467787 + ], + [ + -73.451014, + 45.467517 + ], + [ + -73.451685, + 45.467271 + ], + [ + -73.451729, + 45.467255 + ], + [ + -73.451774, + 45.467238 + ], + [ + -73.452561, + 45.466966 + ], + [ + -73.452657, + 45.466933 + ], + [ + -73.453014, + 45.466803 + ], + [ + -73.45314, + 45.466749 + ], + [ + -73.453548, + 45.466537 + ], + [ + -73.453946, + 45.466304 + ], + [ + -73.454693, + 45.465786 + ], + [ + -73.454717, + 45.46577 + ], + [ + -73.45516, + 45.46545 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.45734, + 45.462831 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.45744, + 45.462394 + ], + [ + -73.45742, + 45.46227 + ], + [ + -73.457369, + 45.46218 + ], + [ + -73.457292, + 45.46211 + ], + [ + -73.457019, + 45.462007 + ], + [ + -73.45684, + 45.461988 + ], + [ + -73.456608, + 45.461964 + ], + [ + -73.456268, + 45.4619 + ], + [ + -73.456104, + 45.461814 + ], + [ + -73.455619, + 45.461465 + ], + [ + -73.454187, + 45.460437 + ], + [ + -73.45331, + 45.459807 + ], + [ + -73.453221, + 45.459743 + ], + [ + -73.452534, + 45.459239 + ], + [ + -73.451112, + 45.458216 + ], + [ + -73.450768, + 45.457969 + ], + [ + -73.450437, + 45.457731 + ], + [ + -73.450367, + 45.457403 + ], + [ + -73.450362, + 45.457232 + ], + [ + -73.450382, + 45.457097 + ], + [ + -73.450443, + 45.45693 + ], + [ + -73.450536, + 45.456792 + ], + [ + -73.451231, + 45.455762 + ], + [ + -73.451461, + 45.455422 + ], + [ + -73.45166, + 45.455126 + ], + [ + -73.451848, + 45.45487 + ], + [ + -73.4519, + 45.454812 + ], + [ + -73.451941, + 45.454767 + ], + [ + -73.452038, + 45.454708 + ], + [ + -73.452189, + 45.454636 + ], + [ + -73.451956, + 45.454402 + ], + [ + -73.451873, + 45.454344 + ], + [ + -73.45174, + 45.454276 + ], + [ + -73.451557, + 45.454204 + ], + [ + -73.451305, + 45.454127 + ], + [ + -73.450789, + 45.453945 + ], + [ + -73.450488, + 45.453839 + ], + [ + -73.450766, + 45.453502 + ], + [ + -73.45112, + 45.453219 + ], + [ + -73.451338, + 45.453061 + ], + [ + -73.451486, + 45.452953 + ], + [ + -73.45248, + 45.452271 + ], + [ + -73.452613, + 45.45218 + ], + [ + -73.453298, + 45.451699 + ], + [ + -73.452765, + 45.451316 + ], + [ + -73.452622, + 45.451213 + ], + [ + -73.453977, + 45.450264 + ], + [ + -73.454491, + 45.44992 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.455056, + 45.44954 + ], + [ + -73.454737, + 45.449301 + ], + [ + -73.454434, + 45.449102 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.454351, + 45.448928 + ], + [ + -73.454507, + 45.448806 + ], + [ + -73.454606, + 45.448707 + ], + [ + -73.454897, + 45.448293 + ], + [ + -73.455137, + 45.447929 + ], + [ + -73.455304, + 45.447709 + ], + [ + -73.455416, + 45.447619 + ], + [ + -73.455528, + 45.447551 + ], + [ + -73.455661, + 45.447479 + ], + [ + -73.455891, + 45.447386 + ], + [ + -73.455927, + 45.447371 + ], + [ + -73.456253, + 45.447264 + ], + [ + -73.456885, + 45.447052 + ], + [ + -73.457516, + 45.446841 + ], + [ + -73.457775, + 45.446755 + ], + [ + -73.458009, + 45.446676 + ], + [ + -73.458085, + 45.446651 + ], + [ + -73.458121, + 45.446639 + ], + [ + -73.45823, + 45.446598 + ], + [ + -73.458358, + 45.446536 + ], + [ + -73.458499, + 45.446437 + ], + [ + -73.458716, + 45.446252 + ], + [ + -73.458903, + 45.445978 + ], + [ + -73.45943, + 45.445177 + ], + [ + -73.459486, + 45.445092 + ], + [ + -73.460027, + 45.444237 + ], + [ + -73.460312, + 45.44381 + ], + [ + -73.460454, + 45.443598 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.461193, + 45.442453 + ], + [ + -73.461249, + 45.442366 + ], + [ + -73.461921, + 45.441345 + ], + [ + -73.46199, + 45.441264 + ], + [ + -73.462048, + 45.441208 + ], + [ + -73.462145, + 45.441115 + ], + [ + -73.462213, + 45.441057 + ], + [ + -73.46187, + 45.440814 + ], + [ + -73.461732, + 45.440683 + ], + [ + -73.461116, + 45.439982 + ], + [ + -73.4611, + 45.439963 + ], + [ + -73.460879, + 45.439666 + ], + [ + -73.460804, + 45.439527 + ], + [ + -73.460756, + 45.439374 + ], + [ + -73.460732, + 45.439261 + ], + [ + -73.46075, + 45.439158 + ], + [ + -73.460753, + 45.439144 + ], + [ + -73.460775, + 45.43905 + ], + [ + -73.460824, + 45.438928 + ], + [ + -73.460899, + 45.438784 + ], + [ + -73.461533, + 45.437805 + ], + [ + -73.462055, + 45.436998 + ], + [ + -73.462057, + 45.436995 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.462701, + 45.435982 + ], + [ + -73.463836, + 45.436306 + ], + [ + -73.463949, + 45.43609 + ], + [ + -73.464019, + 45.435972 + ], + [ + -73.464042, + 45.435933 + ], + [ + -73.464129, + 45.435726 + ], + [ + -73.464208, + 45.435541 + ], + [ + -73.464217, + 45.435519 + ], + [ + -73.464262, + 45.435411 + ], + [ + -73.464363, + 45.435226 + ], + [ + -73.464402, + 45.435154 + ], + [ + -73.464983, + 45.434165 + ], + [ + -73.465299, + 45.433615 + ], + [ + -73.465352, + 45.433521 + ], + [ + -73.466273, + 45.43385 + ], + [ + -73.468914, + 45.434725 + ], + [ + -73.469086, + 45.434782 + ], + [ + -73.469951, + 45.435071 + ], + [ + -73.470598, + 45.435287 + ], + [ + -73.470685, + 45.435314 + ], + [ + -73.470856, + 45.435367 + ], + [ + -73.471308, + 45.435507 + ], + [ + -73.471316, + 45.43551 + ], + [ + -73.471657, + 45.43562 + ], + [ + -73.472058, + 45.435759 + ], + [ + -73.471139, + 45.437154 + ], + [ + -73.471113, + 45.437194 + ], + [ + -73.471037, + 45.437237 + ], + [ + -73.470968, + 45.437275 + ], + [ + -73.470767, + 45.437505 + ], + [ + -73.470657, + 45.43764 + ], + [ + -73.470585, + 45.437793 + ], + [ + -73.470582, + 45.437803 + ] + ] + }, + "id": 282, + "properties": { + "id": "07f399e0-0319-4541-8317-6044a2cd094e", + "data": { + "gtfs": { + "shape_id": "533_2_R" + }, + "segments": [ + { + "distanceMeters": 757, + "travelTimeSeconds": 105 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 91, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 343, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 514, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 45 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9935, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6209.141183844406, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.2, + "travelTimeWithoutDwellTimesSeconds": 1380, + "operatingTimeWithLayoverTimeSeconds": 1560, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1380, + "operatingSpeedWithLayoverMetersPerSecond": 6.37, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.2 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", + "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", + "cd932703-83f9-4acf-94fa-d521e6d427d0", + "a09ea856-287c-4215-ad6a-dab05db66e7a", + "a17f387c-1398-49f4-8a7b-291d91ebc51f", + "71881b96-39d5-48ea-9242-5e05ded39cda", + "71881b96-39d5-48ea-9242-5e05ded39cda", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "46c30d80-c93e-497b-a096-3a7c13e3723f", + "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", + "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "4fc83229-a15e-48e1-aa4f-fae0073dacf9", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "30d24143-abd0-4a47-955d-cdbc3943ae61", + "47d3a0e8-5db6-4263-911d-0835de2b9cb0", + "c01e4d9c-c5df-425f-9b40-215a62d76b50", + "5781af67-07a2-4732-99f5-af7b2835e18a", + "800b4ca8-f540-48ef-9acf-ec6d45db3496", + "db56dff4-d82c-4b2d-ad34-35b3db3f27de", + "0087674f-0098-4bab-9a77-b31eb3602613", + "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", + "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", + "fd4f887b-9300-41e3-8cc1-44b80109a4ad", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "8b7e764f-0227-410c-89b9-51b9a8ad8c88", + "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", + "57126f14-f5bb-4578-a4ae-48d75eae5e82", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "9b31d865-da9f-4eb8-b8a9-3d488eb579df", + "b93691d0-438e-4eac-87a0-7c1ac45a7c18", + "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", + "19a4f64a-0169-40b9-8b9c-84de3158151e", + "c7e2639a-bb94-426e-918b-714f0212d53b", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "e990ec2d-e586-4b2f-884d-4124f22426b3", + "1d638a17-5a2b-40f7-a0cc-6db81666104e", + "f36c7de3-84dd-4573-ac69-91ccd87efd4f", + "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", + "3eb5b313-c26d-472e-a3c1-397c7596c769" + ], + "stops": [], + "line_id": "2acfbc68-29a8-4710-9e84-11fdcfa10002", + "segments": [ + 0, + 38, + 41, + 45, + 48, + 51, + 54, + 57, + 60, + 64, + 69, + 77, + 83, + 88, + 92, + 97, + 104, + 111, + 118, + 136, + 140, + 141, + 142, + 146, + 153, + 157, + 166, + 170, + 175, + 178, + 182, + 193, + 198, + 207, + 210, + 213, + 217, + 222, + 228, + 233, + 235, + 240, + 249, + 252, + 259 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 282, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.455176, + 45.429296 + ], + [ + -73.45515, + 45.429313 + ], + [ + -73.454933, + 45.42945 + ], + [ + -73.454809, + 45.429506 + ], + [ + -73.454657, + 45.429588 + ], + [ + -73.454225, + 45.429797 + ], + [ + -73.453566, + 45.430073 + ], + [ + -73.453131, + 45.430253 + ], + [ + -73.452234, + 45.430624 + ], + [ + -73.451821, + 45.430796 + ], + [ + -73.451723, + 45.43084 + ], + [ + -73.451457, + 45.430959 + ], + [ + -73.451306, + 45.431026 + ], + [ + -73.450883, + 45.431238 + ], + [ + -73.450399, + 45.431499 + ], + [ + -73.449891, + 45.431803 + ], + [ + -73.449325, + 45.43218 + ], + [ + -73.448785, + 45.432585 + ], + [ + -73.448377, + 45.432935 + ], + [ + -73.447875, + 45.433413 + ], + [ + -73.447643, + 45.43369 + ], + [ + -73.44745, + 45.433901 + ], + [ + -73.447206, + 45.434187 + ], + [ + -73.447139, + 45.434272 + ], + [ + -73.447325, + 45.434288 + ], + [ + -73.447496, + 45.434296 + ], + [ + -73.447559, + 45.434294 + ], + [ + -73.447672, + 45.43429 + ], + [ + -73.447825, + 45.434283 + ], + [ + -73.448052, + 45.43426 + ], + [ + -73.448578, + 45.434176 + ], + [ + -73.448705, + 45.434165 + ], + [ + -73.448848, + 45.434152 + ], + [ + -73.449804, + 45.434095 + ], + [ + -73.450056, + 45.43408 + ], + [ + -73.451331, + 45.433994 + ], + [ + -73.451404, + 45.433989 + ], + [ + -73.452574, + 45.433909 + ], + [ + -73.452708, + 45.433899 + ], + [ + -73.453072, + 45.433895 + ], + [ + -73.453186, + 45.433903 + ], + [ + -73.453328, + 45.433913 + ], + [ + -73.453345, + 45.433915 + ], + [ + -73.45361, + 45.433947 + ], + [ + -73.453629, + 45.433949 + ], + [ + -73.453651, + 45.433954 + ], + [ + -73.453902, + 45.434003 + ], + [ + -73.454123, + 45.434057 + ], + [ + -73.45503, + 45.434305 + ], + [ + -73.455549, + 45.434449 + ], + [ + -73.455955, + 45.434571 + ], + [ + -73.456012, + 45.43459 + ], + [ + -73.456028, + 45.434596 + ], + [ + -73.456351, + 45.434706 + ], + [ + -73.45674, + 45.434846 + ], + [ + -73.457423, + 45.435094 + ], + [ + -73.457584, + 45.435152 + ], + [ + -73.458325, + 45.435421 + ], + [ + -73.459087, + 45.435697 + ], + [ + -73.459599, + 45.435873 + ], + [ + -73.459868, + 45.435958 + ], + [ + -73.4602, + 45.436053 + ], + [ + -73.46028, + 45.436076 + ], + [ + -73.461443, + 45.436418 + ], + [ + -73.462121, + 45.436612 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.462155, + 45.436844 + ], + [ + -73.461435, + 45.437956 + ], + [ + -73.460899, + 45.438784 + ], + [ + -73.460824, + 45.438928 + ], + [ + -73.460775, + 45.43905 + ], + [ + -73.460753, + 45.439144 + ], + [ + -73.460743, + 45.439198 + ], + [ + -73.460732, + 45.439261 + ], + [ + -73.460756, + 45.439374 + ], + [ + -73.460804, + 45.439527 + ], + [ + -73.460879, + 45.439666 + ], + [ + -73.4611, + 45.439963 + ], + [ + -73.461732, + 45.440683 + ], + [ + -73.46187, + 45.440814 + ], + [ + -73.461963, + 45.44088 + ], + [ + -73.462101, + 45.440977 + ], + [ + -73.462213, + 45.441057 + ], + [ + -73.462145, + 45.441115 + ], + [ + -73.46199, + 45.441264 + ], + [ + -73.461921, + 45.441345 + ], + [ + -73.461303, + 45.442284 + ], + [ + -73.461249, + 45.442366 + ], + [ + -73.460616, + 45.443348 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.460454, + 45.443598 + ], + [ + -73.460027, + 45.444237 + ], + [ + -73.459529, + 45.445024 + ], + [ + -73.459486, + 45.445092 + ], + [ + -73.458903, + 45.445978 + ], + [ + -73.458716, + 45.446252 + ], + [ + -73.458499, + 45.446437 + ], + [ + -73.458358, + 45.446536 + ], + [ + -73.45823, + 45.446598 + ], + [ + -73.458121, + 45.446639 + ], + [ + -73.458107, + 45.446644 + ], + [ + -73.458085, + 45.446651 + ], + [ + -73.458009, + 45.446676 + ], + [ + -73.457516, + 45.446841 + ], + [ + -73.456885, + 45.447052 + ], + [ + -73.456385, + 45.44722 + ], + [ + -73.456253, + 45.447264 + ], + [ + -73.455927, + 45.447371 + ], + [ + -73.455661, + 45.447479 + ], + [ + -73.455528, + 45.447551 + ], + [ + -73.455416, + 45.447619 + ], + [ + -73.455304, + 45.447709 + ], + [ + -73.455137, + 45.447929 + ], + [ + -73.454897, + 45.448293 + ], + [ + -73.454606, + 45.448707 + ], + [ + -73.454507, + 45.448806 + ], + [ + -73.454411, + 45.448881 + ], + [ + -73.454351, + 45.448928 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.454088, + 45.449121 + ], + [ + -73.454556, + 45.449427 + ], + [ + -73.454802, + 45.449614 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.453977, + 45.450264 + ], + [ + -73.453506, + 45.450594 + ], + [ + -73.452729, + 45.451138 + ], + [ + -73.452622, + 45.451213 + ], + [ + -73.453298, + 45.451699 + ], + [ + -73.452613, + 45.45218 + ], + [ + -73.45248, + 45.452271 + ], + [ + -73.451625, + 45.452857 + ], + [ + -73.451486, + 45.452953 + ], + [ + -73.45112, + 45.453219 + ], + [ + -73.450766, + 45.453502 + ], + [ + -73.450723, + 45.453554 + ], + [ + -73.450488, + 45.453839 + ], + [ + -73.451305, + 45.454127 + ], + [ + -73.451557, + 45.454204 + ], + [ + -73.45174, + 45.454276 + ], + [ + -73.451873, + 45.454344 + ], + [ + -73.451956, + 45.454402 + ], + [ + -73.452096, + 45.454543 + ], + [ + -73.452189, + 45.454636 + ], + [ + -73.452038, + 45.454708 + ], + [ + -73.451941, + 45.454767 + ], + [ + -73.451848, + 45.45487 + ], + [ + -73.45166, + 45.455126 + ], + [ + -73.451461, + 45.455422 + ], + [ + -73.451253, + 45.45573 + ], + [ + -73.450443, + 45.45693 + ], + [ + -73.450382, + 45.457097 + ], + [ + -73.450362, + 45.457232 + ], + [ + -73.450367, + 45.457403 + ], + [ + -73.450397, + 45.457544 + ], + [ + -73.450437, + 45.457731 + ], + [ + -73.451112, + 45.458216 + ], + [ + -73.451165, + 45.458254 + ], + [ + -73.452534, + 45.459239 + ], + [ + -73.453096, + 45.459651 + ], + [ + -73.453221, + 45.459743 + ], + [ + -73.454642, + 45.460764 + ], + [ + -73.456104, + 45.461814 + ], + [ + -73.456268, + 45.4619 + ], + [ + -73.456608, + 45.461964 + ], + [ + -73.457019, + 45.462007 + ], + [ + -73.457292, + 45.46211 + ], + [ + -73.457369, + 45.46218 + ], + [ + -73.45742, + 45.46227 + ], + [ + -73.45744, + 45.462394 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.454662, + 45.465619 + ], + [ + -73.45456, + 45.465692 + ], + [ + -73.453819, + 45.466205 + ], + [ + -73.453432, + 45.466434 + ], + [ + -73.453035, + 45.466641 + ], + [ + -73.452922, + 45.46669 + ], + [ + -73.452782, + 45.46675 + ], + [ + -73.452589, + 45.466834 + ], + [ + -73.451705, + 45.467139 + ], + [ + -73.451627, + 45.467166 + ], + [ + -73.45158, + 45.467183 + ], + [ + -73.451012, + 45.467379 + ], + [ + -73.450937, + 45.467405 + ], + [ + -73.450156, + 45.467679 + ], + [ + -73.449888, + 45.467769 + ], + [ + -73.449338, + 45.467948 + ], + [ + -73.44837, + 45.46829 + ], + [ + -73.447748, + 45.468524 + ], + [ + -73.447289, + 45.468721 + ], + [ + -73.446434, + 45.469165 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445905, + 45.469485 + ], + [ + -73.445671, + 45.469643 + ], + [ + -73.445475, + 45.469778 + ], + [ + -73.445396, + 45.469832 + ], + [ + -73.445298, + 45.469899 + ], + [ + -73.444328, + 45.470583 + ], + [ + -73.444076, + 45.470761 + ], + [ + -73.442658, + 45.471761 + ], + [ + -73.442644, + 45.471771 + ], + [ + -73.442519, + 45.471859 + ], + [ + -73.441942, + 45.47227 + ], + [ + -73.441022, + 45.472925 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.440777, + 45.473082 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.439918, + 45.473559 + ], + [ + -73.438731, + 45.47422 + ], + [ + -73.438304, + 45.474435 + ], + [ + -73.43827, + 45.474451 + ], + [ + -73.437984, + 45.474579 + ], + [ + -73.437774, + 45.474669 + ], + [ + -73.437493, + 45.474781 + ], + [ + -73.436979, + 45.47497 + ], + [ + -73.436441, + 45.475136 + ], + [ + -73.43565, + 45.475338 + ], + [ + -73.435359, + 45.475413 + ], + [ + -73.435246, + 45.475441 + ], + [ + -73.434371, + 45.475675 + ], + [ + -73.433734, + 45.475838 + ], + [ + -73.43213, + 45.476249 + ], + [ + -73.430984, + 45.476543 + ], + [ + -73.430442, + 45.476682 + ], + [ + -73.430219, + 45.476739 + ], + [ + -73.43007, + 45.476775 + ], + [ + -73.430191, + 45.476874 + ], + [ + -73.430682, + 45.477184 + ], + [ + -73.43148, + 45.477725 + ], + [ + -73.431576, + 45.477791 + ], + [ + -73.431924, + 45.478029 + ], + [ + -73.432859, + 45.478671 + ], + [ + -73.433474, + 45.479089 + ], + [ + -73.433608, + 45.479179 + ], + [ + -73.435032, + 45.480148 + ], + [ + -73.435713, + 45.480606 + ], + [ + -73.435802, + 45.480665 + ], + [ + -73.4369, + 45.481417 + ], + [ + -73.437309, + 45.481697 + ], + [ + -73.437407, + 45.481764 + ], + [ + -73.438338, + 45.48239 + ], + [ + -73.438859, + 45.482757 + ], + [ + -73.438971, + 45.482836 + ], + [ + -73.439533, + 45.483272 + ], + [ + -73.440126, + 45.483709 + ], + [ + -73.440671, + 45.484127 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.441193, + 45.484535 + ], + [ + -73.441638, + 45.484884 + ], + [ + -73.44227, + 45.485402 + ], + [ + -73.44238, + 45.485492 + ], + [ + -73.442979, + 45.48598 + ], + [ + -73.443236, + 45.48619 + ], + [ + -73.443584, + 45.486491 + ], + [ + -73.443685, + 45.486573 + ], + [ + -73.443945, + 45.486785 + ], + [ + -73.444066, + 45.486883 + ], + [ + -73.444405, + 45.487149 + ], + [ + -73.44464, + 45.487266 + ], + [ + -73.444883, + 45.487369 + ], + [ + -73.445062, + 45.487428 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 283, + "properties": { + "id": "57b09844-7ff4-43e0-971b-f651c6a482f2", + "data": { + "gtfs": { + "shape_id": "534_1_A" + }, + "segments": [ + { + "distanceMeters": 345, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 629, + "travelTimeSeconds": 102 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 36, + "travelTimeSeconds": 5 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 727, + "travelTimeSeconds": 117 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 61, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 605, + "travelTimeSeconds": 98 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10736, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6873.693590857519, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.17, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 5.59, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.17 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "dca1f1af-a3cf-4dc0-9b7c-88db3f7a9ff7", + "1e5e280b-187c-453e-ae50-34515416c146", + "d26ce5e1-6c58-4e66-9161-bd0bb569b92f", + "95267540-c736-4584-b843-23c799e4aa83", + "8162eb5c-436c-4cc2-b9dd-2d13a57dd8d8", + "75a6ca63-e257-4bc0-9a35-e9f67206fdfb", + "dc444f91-de90-48b4-9750-8ab69f40baf5", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "c7e2639a-bb94-426e-918b-714f0212d53b", + "19a4f64a-0169-40b9-8b9c-84de3158151e", + "b93691d0-438e-4eac-87a0-7c1ac45a7c18", + "9b31d865-da9f-4eb8-b8a9-3d488eb579df", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "57126f14-f5bb-4578-a4ae-48d75eae5e82", + "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", + "8b7e764f-0227-410c-89b9-51b9a8ad8c88", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", + "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", + "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", + "0087674f-0098-4bab-9a77-b31eb3602613", + "db56dff4-d82c-4b2d-ad34-35b3db3f27de", + "800b4ca8-f540-48ef-9acf-ec6d45db3496", + "0c735a18-4964-435c-ad38-89ab21a47f83", + "c01e4d9c-c5df-425f-9b40-215a62d76b50", + "4ca26d1e-a5a2-4d1a-ba5a-7bed9b5a1bee", + "bd9b4c12-08ed-4715-ae67-eb179ed7f974", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "ff779c9a-cd83-463a-8d0c-a93f3584a187", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", + "c8919560-2bb2-4063-8184-8e6c296badbe", + "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", + "a17f387c-1398-49f4-8a7b-291d91ebc51f", + "a09ea856-287c-4215-ad6a-dab05db66e7a", + "cd932703-83f9-4acf-94fa-d521e6d427d0", + "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", + "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "e72d0d41-60dd-429c-9fc0-986190945d76", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "7cb07ff6-0477-4319-a77c-2829010873b5", + "segments": [ + 0, + 11, + 31, + 35, + 43, + 51, + 57, + 64, + 66, + 67, + 72, + 81, + 86, + 88, + 92, + 100, + 105, + 116, + 121, + 125, + 130, + 134, + 141, + 148, + 153, + 158, + 160, + 178, + 184, + 189, + 197, + 205, + 206, + 210, + 217, + 224, + 230, + 236, + 239, + 242, + 245, + 248, + 252, + 254, + 256, + 262 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 283, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445508, + 45.489489 + ], + [ + -73.4453, + 45.489165 + ], + [ + -73.445238, + 45.489052 + ], + [ + -73.445212, + 45.488985 + ], + [ + -73.445181, + 45.488904 + ], + [ + -73.445074, + 45.488728 + ], + [ + -73.445053, + 45.488544 + ], + [ + -73.445044, + 45.488377 + ], + [ + -73.445046, + 45.488242 + ], + [ + -73.445073, + 45.488085 + ], + [ + -73.445118, + 45.487932 + ], + [ + -73.445182, + 45.487779 + ], + [ + -73.445261, + 45.48759 + ], + [ + -73.445319, + 45.487496 + ], + [ + -73.445386, + 45.487388 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445129, + 45.48732 + ], + [ + -73.444962, + 45.487262 + ], + [ + -73.444731, + 45.487167 + ], + [ + -73.444565, + 45.487086 + ], + [ + -73.444194, + 45.486807 + ], + [ + -73.443808, + 45.486496 + ], + [ + -73.443706, + 45.486415 + ], + [ + -73.44336, + 45.486118 + ], + [ + -73.442631, + 45.485518 + ], + [ + -73.442528, + 45.485434 + ], + [ + -73.441754, + 45.484812 + ], + [ + -73.440976, + 45.484194 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.440245, + 45.483633 + ], + [ + -73.43964, + 45.483201 + ], + [ + -73.439159, + 45.482827 + ], + [ + -73.439083, + 45.482768 + ], + [ + -73.438464, + 45.482318 + ], + [ + -73.437644, + 45.481756 + ], + [ + -73.437512, + 45.481665 + ], + [ + -73.437014, + 45.481332 + ], + [ + -73.436034, + 45.480661 + ], + [ + -73.435909, + 45.480575 + ], + [ + -73.43514, + 45.480067 + ], + [ + -73.433836, + 45.47918 + ], + [ + -73.433717, + 45.479098 + ], + [ + -73.432962, + 45.478594 + ], + [ + -73.431692, + 45.477711 + ], + [ + -73.431589, + 45.477639 + ], + [ + -73.431156, + 45.477363 + ], + [ + -73.430834, + 45.477157 + ], + [ + -73.430771, + 45.477117 + ], + [ + -73.430341, + 45.476838 + ], + [ + -73.430884, + 45.476699 + ], + [ + -73.430986, + 45.476673 + ], + [ + -73.431376, + 45.476572 + ], + [ + -73.431616, + 45.47651 + ], + [ + -73.432188, + 45.476362 + ], + [ + -73.434429, + 45.475783 + ], + [ + -73.435106, + 45.475603 + ], + [ + -73.435306, + 45.475549 + ], + [ + -73.435634, + 45.475469 + ], + [ + -73.436518, + 45.475235 + ], + [ + -73.437045, + 45.475069 + ], + [ + -73.437596, + 45.47488 + ], + [ + -73.437872, + 45.474768 + ], + [ + -73.438084, + 45.474678 + ], + [ + -73.438204, + 45.474622 + ], + [ + -73.43841, + 45.474525 + ], + [ + -73.438836, + 45.474314 + ], + [ + -73.43909, + 45.474175 + ], + [ + -73.440044, + 45.473644 + ], + [ + -73.440381, + 45.473457 + ], + [ + -73.440533, + 45.473373 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.440904, + 45.473168 + ], + [ + -73.441015, + 45.473108 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.442526, + 45.472043 + ], + [ + -73.442653, + 45.471954 + ], + [ + -73.444466, + 45.470668 + ], + [ + -73.444558, + 45.470603 + ], + [ + -73.444697, + 45.470504 + ], + [ + -73.445328, + 45.470057 + ], + [ + -73.445338, + 45.470052 + ], + [ + -73.445622, + 45.469854 + ], + [ + -73.446091, + 45.469543 + ], + [ + -73.446383, + 45.469349 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.447066, + 45.468996 + ], + [ + -73.4474, + 45.468829 + ], + [ + -73.447822, + 45.468645 + ], + [ + -73.448427, + 45.468407 + ], + [ + -73.449383, + 45.468079 + ], + [ + -73.449747, + 45.467955 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450233, + 45.467787 + ], + [ + -73.451014, + 45.467517 + ], + [ + -73.451685, + 45.467271 + ], + [ + -73.451729, + 45.467255 + ], + [ + -73.451774, + 45.467238 + ], + [ + -73.452553, + 45.466969 + ], + [ + -73.452657, + 45.466933 + ], + [ + -73.453014, + 45.466803 + ], + [ + -73.45314, + 45.466749 + ], + [ + -73.453548, + 45.466537 + ], + [ + -73.453946, + 45.466304 + ], + [ + -73.454693, + 45.465786 + ], + [ + -73.45471, + 45.465774 + ], + [ + -73.45516, + 45.46545 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.45734, + 45.462831 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.45744, + 45.462394 + ], + [ + -73.45742, + 45.46227 + ], + [ + -73.457369, + 45.46218 + ], + [ + -73.457292, + 45.46211 + ], + [ + -73.457019, + 45.462007 + ], + [ + -73.45685, + 45.461989 + ], + [ + -73.456608, + 45.461964 + ], + [ + -73.456268, + 45.4619 + ], + [ + -73.456104, + 45.461814 + ], + [ + -73.455626, + 45.461471 + ], + [ + -73.454194, + 45.460442 + ], + [ + -73.453317, + 45.459812 + ], + [ + -73.453221, + 45.459743 + ], + [ + -73.452534, + 45.459239 + ], + [ + -73.451112, + 45.458216 + ], + [ + -73.450776, + 45.457975 + ], + [ + -73.450437, + 45.457731 + ], + [ + -73.450367, + 45.457403 + ], + [ + -73.450362, + 45.457232 + ], + [ + -73.450382, + 45.457097 + ], + [ + -73.450443, + 45.45693 + ], + [ + -73.450536, + 45.456792 + ], + [ + -73.451226, + 45.45577 + ], + [ + -73.451461, + 45.455422 + ], + [ + -73.45166, + 45.455126 + ], + [ + -73.451848, + 45.45487 + ], + [ + -73.451894, + 45.45482 + ], + [ + -73.451941, + 45.454767 + ], + [ + -73.452038, + 45.454708 + ], + [ + -73.452189, + 45.454636 + ], + [ + -73.451956, + 45.454402 + ], + [ + -73.451873, + 45.454344 + ], + [ + -73.45174, + 45.454276 + ], + [ + -73.451557, + 45.454204 + ], + [ + -73.451305, + 45.454127 + ], + [ + -73.4508, + 45.453949 + ], + [ + -73.450488, + 45.453839 + ], + [ + -73.450766, + 45.453502 + ], + [ + -73.45112, + 45.453219 + ], + [ + -73.451329, + 45.453067 + ], + [ + -73.451486, + 45.452953 + ], + [ + -73.45248, + 45.452271 + ], + [ + -73.452613, + 45.45218 + ], + [ + -73.453298, + 45.451699 + ], + [ + -73.452775, + 45.451322 + ], + [ + -73.452622, + 45.451213 + ], + [ + -73.453977, + 45.450264 + ], + [ + -73.454481, + 45.449926 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.455056, + 45.44954 + ], + [ + -73.454737, + 45.449301 + ], + [ + -73.454444, + 45.449109 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.454351, + 45.448928 + ], + [ + -73.454507, + 45.448806 + ], + [ + -73.454606, + 45.448707 + ], + [ + -73.454897, + 45.448293 + ], + [ + -73.455137, + 45.447929 + ], + [ + -73.455304, + 45.447709 + ], + [ + -73.455416, + 45.447619 + ], + [ + -73.455528, + 45.447551 + ], + [ + -73.455661, + 45.447479 + ], + [ + -73.455878, + 45.447391 + ], + [ + -73.455927, + 45.447371 + ], + [ + -73.456253, + 45.447264 + ], + [ + -73.456885, + 45.447052 + ], + [ + -73.457516, + 45.446841 + ], + [ + -73.457761, + 45.446759 + ], + [ + -73.458009, + 45.446676 + ], + [ + -73.458085, + 45.446651 + ], + [ + -73.458121, + 45.446639 + ], + [ + -73.45823, + 45.446598 + ], + [ + -73.458358, + 45.446536 + ], + [ + -73.458499, + 45.446437 + ], + [ + -73.458716, + 45.446252 + ], + [ + -73.458903, + 45.445978 + ], + [ + -73.459423, + 45.445187 + ], + [ + -73.459486, + 45.445092 + ], + [ + -73.460027, + 45.444237 + ], + [ + -73.460306, + 45.44382 + ], + [ + -73.460454, + 45.443598 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.461186, + 45.442463 + ], + [ + -73.461249, + 45.442366 + ], + [ + -73.461921, + 45.441345 + ], + [ + -73.46199, + 45.441264 + ], + [ + -73.462038, + 45.441217 + ], + [ + -73.462145, + 45.441115 + ], + [ + -73.462213, + 45.441057 + ], + [ + -73.46187, + 45.440814 + ], + [ + -73.461732, + 45.440683 + ], + [ + -73.461701, + 45.440648 + ], + [ + -73.461125, + 45.439992 + ], + [ + -73.4611, + 45.439963 + ], + [ + -73.460879, + 45.439666 + ], + [ + -73.460804, + 45.439527 + ], + [ + -73.460756, + 45.439374 + ], + [ + -73.460732, + 45.439261 + ], + [ + -73.460748, + 45.43917 + ], + [ + -73.460753, + 45.439144 + ], + [ + -73.460775, + 45.43905 + ], + [ + -73.460824, + 45.438928 + ], + [ + -73.460899, + 45.438784 + ], + [ + -73.461525, + 45.437816 + ], + [ + -73.46205, + 45.437006 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.461792, + 45.436518 + ], + [ + -73.461443, + 45.436418 + ], + [ + -73.46028, + 45.436076 + ], + [ + -73.4602, + 45.436053 + ], + [ + -73.459868, + 45.435958 + ], + [ + -73.459599, + 45.435873 + ], + [ + -73.459087, + 45.435697 + ], + [ + -73.458347, + 45.435429 + ], + [ + -73.457584, + 45.435152 + ], + [ + -73.457423, + 45.435094 + ], + [ + -73.45674, + 45.434846 + ], + [ + -73.456351, + 45.434706 + ], + [ + -73.456102, + 45.434621 + ], + [ + -73.456028, + 45.434596 + ], + [ + -73.455955, + 45.434571 + ], + [ + -73.455549, + 45.434449 + ], + [ + -73.45503, + 45.434305 + ], + [ + -73.454123, + 45.434057 + ], + [ + -73.453902, + 45.434003 + ], + [ + -73.453695, + 45.433962 + ], + [ + -73.453651, + 45.433954 + ], + [ + -73.453629, + 45.433949 + ], + [ + -73.453345, + 45.433915 + ], + [ + -73.453328, + 45.433913 + ], + [ + -73.453186, + 45.433903 + ], + [ + -73.453072, + 45.433895 + ], + [ + -73.452708, + 45.433899 + ], + [ + -73.452574, + 45.433909 + ], + [ + -73.451609, + 45.433975 + ], + [ + -73.451404, + 45.433989 + ], + [ + -73.450056, + 45.43408 + ], + [ + -73.449804, + 45.434095 + ], + [ + -73.449072, + 45.434139 + ], + [ + -73.448848, + 45.434152 + ], + [ + -73.448578, + 45.434176 + ], + [ + -73.448472, + 45.434175 + ], + [ + -73.448255, + 45.434181 + ], + [ + -73.448109, + 45.43419 + ], + [ + -73.447833, + 45.434203 + ], + [ + -73.447405, + 45.434193 + ], + [ + -73.447515, + 45.434057 + ], + [ + -73.447812, + 45.43372 + ], + [ + -73.44808, + 45.433435 + ], + [ + -73.448286, + 45.433242 + ], + [ + -73.448467, + 45.433072 + ], + [ + -73.448834, + 45.432756 + ], + [ + -73.449139, + 45.432514 + ], + [ + -73.449431, + 45.432297 + ], + [ + -73.44953, + 45.432225 + ], + [ + -73.449956, + 45.431941 + ], + [ + -73.450305, + 45.431728 + ], + [ + -73.450787, + 45.431457 + ], + [ + -73.451268, + 45.431211 + ], + [ + -73.451712, + 45.431001 + ], + [ + -73.451764, + 45.430974 + ], + [ + -73.451808, + 45.430952 + ], + [ + -73.451911, + 45.430904 + ], + [ + -73.452123, + 45.43081 + ], + [ + -73.452869, + 45.430501 + ], + [ + -73.453778, + 45.430126 + ], + [ + -73.454571, + 45.429789 + ], + [ + -73.454843, + 45.429639 + ] + ] + }, + "id": 284, + "properties": { + "id": "61a9c375-40d0-43b3-bd26-b98dca6234a5", + "data": { + "gtfs": { + "shape_id": "534_2_R" + }, + "segments": [ + { + "distanceMeters": 757, + "travelTimeSeconds": 132 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 91, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 343, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 514, + "travelTimeSeconds": 90 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 630, + "travelTimeSeconds": 111 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 50 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 186, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10599, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6873.693590857519, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.7, + "travelTimeWithoutDwellTimesSeconds": 1860, + "operatingTimeWithLayoverTimeSeconds": 2046, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1860, + "operatingSpeedWithLayoverMetersPerSecond": 5.18, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.7 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", + "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", + "cd932703-83f9-4acf-94fa-d521e6d427d0", + "a09ea856-287c-4215-ad6a-dab05db66e7a", + "a17f387c-1398-49f4-8a7b-291d91ebc51f", + "71881b96-39d5-48ea-9242-5e05ded39cda", + "71881b96-39d5-48ea-9242-5e05ded39cda", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "46c30d80-c93e-497b-a096-3a7c13e3723f", + "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", + "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "4fc83229-a15e-48e1-aa4f-fae0073dacf9", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "30d24143-abd0-4a47-955d-cdbc3943ae61", + "47d3a0e8-5db6-4263-911d-0835de2b9cb0", + "c01e4d9c-c5df-425f-9b40-215a62d76b50", + "5781af67-07a2-4732-99f5-af7b2835e18a", + "800b4ca8-f540-48ef-9acf-ec6d45db3496", + "db56dff4-d82c-4b2d-ad34-35b3db3f27de", + "0087674f-0098-4bab-9a77-b31eb3602613", + "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", + "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", + "fd4f887b-9300-41e3-8cc1-44b80109a4ad", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "8b7e764f-0227-410c-89b9-51b9a8ad8c88", + "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", + "57126f14-f5bb-4578-a4ae-48d75eae5e82", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "9b31d865-da9f-4eb8-b8a9-3d488eb579df", + "b93691d0-438e-4eac-87a0-7c1ac45a7c18", + "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", + "19a4f64a-0169-40b9-8b9c-84de3158151e", + "c7e2639a-bb94-426e-918b-714f0212d53b", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "dc444f91-de90-48b4-9750-8ab69f40baf5", + "75a6ca63-e257-4bc0-9a35-e9f67206fdfb", + "8162eb5c-436c-4cc2-b9dd-2d13a57dd8d8", + "95267540-c736-4584-b843-23c799e4aa83", + "d26ce5e1-6c58-4e66-9161-bd0bb569b92f", + "601fc633-4aed-4e9a-b678-52e4dedfe19d", + "dca1f1af-a3cf-4dc0-9b7c-88db3f7a9ff7" + ], + "stops": [], + "line_id": "7cb07ff6-0477-4319-a77c-2829010873b5", + "segments": [ + 0, + 38, + 41, + 45, + 48, + 51, + 54, + 57, + 60, + 64, + 69, + 77, + 83, + 88, + 92, + 97, + 104, + 111, + 118, + 136, + 140, + 141, + 142, + 146, + 153, + 157, + 166, + 170, + 175, + 178, + 182, + 193, + 198, + 207, + 210, + 213, + 217, + 223, + 229, + 234, + 235, + 244, + 249, + 256, + 265, + 269, + 291 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 284, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.49157, + 45.501681 + ], + [ + -73.49208, + 45.501204 + ], + [ + -73.493769, + 45.499625 + ], + [ + -73.493836, + 45.499562 + ], + [ + -73.494216, + 45.499211 + ], + [ + -73.494944, + 45.498535 + ], + [ + -73.496141, + 45.497424 + ], + [ + -73.496207, + 45.497362 + ], + [ + -73.495967, + 45.497229 + ], + [ + -73.495841, + 45.497159 + ], + [ + -73.495426, + 45.496935 + ], + [ + -73.495021, + 45.496723 + ], + [ + -73.494839, + 45.496629 + ], + [ + -73.494644, + 45.49653 + ], + [ + -73.494255, + 45.496323 + ], + [ + -73.49388, + 45.496118 + ], + [ + -73.493736, + 45.496039 + ], + [ + -73.493501, + 45.496255 + ], + [ + -73.493312, + 45.49643 + ], + [ + -73.492313, + 45.497355 + ], + [ + -73.492247, + 45.497416 + ], + [ + -73.491955, + 45.49769 + ], + [ + -73.491359, + 45.498257 + ], + [ + -73.491353, + 45.498262 + ], + [ + -73.491043, + 45.498549 + ], + [ + -73.490098, + 45.499422 + ], + [ + -73.490037, + 45.499482 + ], + [ + -73.489939, + 45.49958 + ], + [ + -73.488349, + 45.501054 + ], + [ + -73.488187, + 45.501204 + ], + [ + -73.487936, + 45.501136 + ], + [ + -73.487909, + 45.501129 + ], + [ + -73.487728, + 45.501082 + ], + [ + -73.487613, + 45.501033 + ], + [ + -73.487525, + 45.50074 + ], + [ + -73.487509, + 45.500686 + ], + [ + -73.487464, + 45.50056 + ], + [ + -73.487346, + 45.500232 + ], + [ + -73.487139, + 45.499795 + ], + [ + -73.486985, + 45.499512 + ], + [ + -73.486847, + 45.499282 + ], + [ + -73.486818, + 45.499233 + ], + [ + -73.48673, + 45.4991 + ], + [ + -73.486631, + 45.498949 + ], + [ + -73.486428, + 45.498675 + ], + [ + -73.486216, + 45.498401 + ], + [ + -73.486166, + 45.498342 + ], + [ + -73.486, + 45.498149 + ], + [ + -73.485576, + 45.497708 + ], + [ + -73.485299, + 45.497456 + ], + [ + -73.485259, + 45.497422 + ], + [ + -73.485251, + 45.497415 + ], + [ + -73.484899, + 45.497123 + ], + [ + -73.484456, + 45.496792 + ], + [ + -73.484387, + 45.49674 + ], + [ + -73.484357, + 45.496722 + ], + [ + -73.48225, + 45.495329 + ], + [ + -73.482144, + 45.49526 + ], + [ + -73.482492, + 45.495007 + ], + [ + -73.483351, + 45.494382 + ], + [ + -73.483927, + 45.493972 + ], + [ + -73.48407, + 45.49387 + ], + [ + -73.483989, + 45.493816 + ], + [ + -73.483677, + 45.493611 + ], + [ + -73.483404, + 45.493431 + ], + [ + -73.481761, + 45.492348 + ], + [ + -73.481418, + 45.492121 + ], + [ + -73.481312, + 45.492051 + ], + [ + -73.481502, + 45.491907 + ], + [ + -73.481557, + 45.491867 + ], + [ + -73.481586, + 45.49184 + ], + [ + -73.481575, + 45.491826 + ], + [ + -73.481545, + 45.491786 + ], + [ + -73.481409, + 45.491696 + ], + [ + -73.479342, + 45.490229 + ], + [ + -73.479214, + 45.490139 + ], + [ + -73.478723, + 45.489788 + ], + [ + -73.476906, + 45.488494 + ], + [ + -73.476789, + 45.488411 + ], + [ + -73.476696, + 45.48846 + ], + [ + -73.476492, + 45.488586 + ], + [ + -73.476259, + 45.488424 + ], + [ + -73.47601, + 45.48819 + ], + [ + -73.475597, + 45.487907 + ], + [ + -73.475254, + 45.487671 + ], + [ + -73.475065, + 45.487542 + ], + [ + -73.475334, + 45.487352 + ], + [ + -73.475345, + 45.487344 + ], + [ + -73.475741, + 45.487061 + ], + [ + -73.475863, + 45.486966 + ], + [ + -73.475994, + 45.486863 + ], + [ + -73.475578, + 45.486575 + ], + [ + -73.47532, + 45.486399 + ], + [ + -73.475157, + 45.486287 + ], + [ + -73.474931, + 45.486431 + ], + [ + -73.474427, + 45.486764 + ], + [ + -73.474092, + 45.486988 + ], + [ + -73.473039, + 45.487708 + ], + [ + -73.472025, + 45.488459 + ], + [ + -73.471942, + 45.488513 + ], + [ + -73.46708, + 45.485304 + ], + [ + -73.466642, + 45.484984 + ], + [ + -73.466534, + 45.484895 + ], + [ + -73.466473, + 45.484845 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466302, + 45.484687 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466022, + 45.484682 + ], + [ + -73.465888, + 45.484747 + ], + [ + -73.465767, + 45.484792 + ], + [ + -73.465702, + 45.484807 + ], + [ + -73.465661, + 45.484807 + ], + [ + -73.465627, + 45.484802 + ], + [ + -73.4655, + 45.484766 + ], + [ + -73.464965, + 45.484574 + ], + [ + -73.464559, + 45.484417 + ], + [ + -73.464508, + 45.484399 + ], + [ + -73.464185, + 45.484291 + ], + [ + -73.463703, + 45.484155 + ], + [ + -73.463657, + 45.484142 + ], + [ + -73.46319, + 45.484029 + ], + [ + -73.462672, + 45.483908 + ], + [ + -73.462287, + 45.483831 + ], + [ + -73.462032, + 45.483791 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.46135, + 45.4837 + ], + [ + -73.460838, + 45.483637 + ], + [ + -73.460181, + 45.483581 + ], + [ + -73.459999, + 45.483565 + ], + [ + -73.459497, + 45.483511 + ], + [ + -73.459033, + 45.483457 + ], + [ + -73.458739, + 45.483407 + ], + [ + -73.458547, + 45.483371 + ], + [ + -73.458333, + 45.483321 + ], + [ + -73.458016, + 45.483245 + ], + [ + -73.45777, + 45.483182 + ], + [ + -73.457497, + 45.483103 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45645, + 45.482799 + ], + [ + -73.455886, + 45.482623 + ], + [ + -73.455654, + 45.482542 + ], + [ + -73.455462, + 45.482465 + ], + [ + -73.455276, + 45.482384 + ], + [ + -73.455267, + 45.48238 + ], + [ + -73.455009, + 45.482272 + ], + [ + -73.454605, + 45.482087 + ], + [ + -73.454381, + 45.481984 + ], + [ + -73.454145, + 45.481862 + ], + [ + -73.453796, + 45.481673 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452379, + 45.481446 + ], + [ + -73.452062, + 45.481636 + ], + [ + -73.45135, + 45.482063 + ], + [ + -73.451249, + 45.482123 + ], + [ + -73.450095, + 45.482809 + ], + [ + -73.449882, + 45.482936 + ], + [ + -73.449245, + 45.483336 + ], + [ + -73.449101, + 45.483471 + ], + [ + -73.448914, + 45.483713 + ], + [ + -73.448817, + 45.483898 + ], + [ + -73.448629, + 45.484109 + ], + [ + -73.44844, + 45.484271 + ], + [ + -73.448213, + 45.48449 + ], + [ + -73.44775, + 45.484937 + ], + [ + -73.447415, + 45.485256 + ], + [ + -73.447237, + 45.485427 + ], + [ + -73.447005, + 45.485643 + ], + [ + -73.446779, + 45.485858 + ], + [ + -73.446708, + 45.485926 + ], + [ + -73.445795, + 45.486794 + ], + [ + -73.445654, + 45.486915 + ], + [ + -73.445524, + 45.487041 + ], + [ + -73.445408, + 45.487167 + ], + [ + -73.445358, + 45.487232 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 285, + "properties": { + "id": "6049916a-8afd-445e-a123-aa74b41f93fc", + "data": { + "gtfs": { + "shape_id": "535_1_A" + }, + "segments": [ + { + "distanceMeters": 286, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 58, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 954, + "travelTimeSeconds": 155 + }, + { + "distanceMeters": 546, + "travelTimeSeconds": 88 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 404, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 509, + "travelTimeSeconds": 83 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7401, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3740.9793251471892, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.17, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 5.36, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.17 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "800c7491-9914-4c1b-98fa-05ef8ea6fc69", + "eeaa7f8b-2fd2-49cc-ba6a-d6a6a5274e6b", + "038ad1c0-bc4e-4528-8949-777db666b0b5", + "6bf17878-7313-4796-a2ad-a20a58f89e02", + "b3c7372b-3c0a-4cb2-bef2-6f11825f858a", + "7e2aa9ad-30a3-4e26-acfb-1e284e4a4e01", + "f8a2b8d6-3974-492f-9494-9a40d49bc027", + "5605c306-59ee-41b1-bafb-ef890fa7662b", + "c90494b0-6ef5-43d3-912f-c60109ccace2", + "71e7c9ac-fe80-497a-a057-1eb12ce8ef13", + "bcd0a901-5384-443e-9be4-1f0faa123ccb", + "fdd9bfef-c8dc-4f65-9008-847050729854", + "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", + "7ad37664-fa6b-478f-8d31-2d3ae7009709", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "3040b262-0b20-4c40-9350-e484adfe1d60", + "3040b262-0b20-4c40-9350-e484adfe1d60", + "c4f08e33-183e-41cf-9f96-5985f148bd11", + "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", + "ac9a9c14-57c3-4a81-9316-ceca9586731d", + "1e205a49-fad6-428c-9d0c-b4018473837d", + "a5c03062-e324-4cb7-8c59-00c59a14b63e", + "159a0fe9-bedb-40f2-9806-32ab49594978", + "491099bb-9493-4888-bd4e-20bd2140830a", + "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", + "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "d9b94443-0b59-40db-aecb-0acb5ea7976c", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "bca3776b-1530-41d0-bda2-87c9fc6e85e9", + "segments": [ + 0, + 2, + 5, + 6, + 12, + 15, + 19, + 22, + 26, + 28, + 34, + 40, + 50, + 53, + 56, + 60, + 63, + 66, + 74, + 77, + 84, + 92, + 102, + 128, + 137, + 144, + 156, + 157, + 165, + 170, + 176 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 285, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445508, + 45.489489 + ], + [ + -73.4453, + 45.489165 + ], + [ + -73.445238, + 45.489052 + ], + [ + -73.445212, + 45.488985 + ], + [ + -73.445181, + 45.488904 + ], + [ + -73.445074, + 45.488728 + ], + [ + -73.445053, + 45.488544 + ], + [ + -73.445044, + 45.488377 + ], + [ + -73.445046, + 45.488242 + ], + [ + -73.445073, + 45.488085 + ], + [ + -73.445118, + 45.487932 + ], + [ + -73.445182, + 45.487779 + ], + [ + -73.445261, + 45.48759 + ], + [ + -73.445319, + 45.487496 + ], + [ + -73.445386, + 45.487388 + ], + [ + -73.445526, + 45.487217 + ], + [ + -73.445638, + 45.487095 + ], + [ + -73.445641, + 45.487093 + ], + [ + -73.445764, + 45.486978 + ], + [ + -73.445905, + 45.486857 + ], + [ + -73.446707, + 45.486092 + ], + [ + -73.44682, + 45.485985 + ], + [ + -73.447123, + 45.485706 + ], + [ + -73.447356, + 45.48549 + ], + [ + -73.447536, + 45.485315 + ], + [ + -73.447867, + 45.484995 + ], + [ + -73.448281, + 45.484596 + ], + [ + -73.448552, + 45.484334 + ], + [ + -73.448747, + 45.484168 + ], + [ + -73.448891, + 45.484006 + ], + [ + -73.448947, + 45.483943 + ], + [ + -73.449046, + 45.483754 + ], + [ + -73.449223, + 45.483529 + ], + [ + -73.449352, + 45.483408 + ], + [ + -73.449866, + 45.483087 + ], + [ + -73.449978, + 45.483017 + ], + [ + -73.451449, + 45.482131 + ], + [ + -73.451768, + 45.481938 + ], + [ + -73.45215, + 45.481708 + ], + [ + -73.452851, + 45.48129 + ], + [ + -73.452932, + 45.481338 + ], + [ + -73.453668, + 45.481781 + ], + [ + -73.454023, + 45.481974 + ], + [ + -73.454266, + 45.482101 + ], + [ + -73.454494, + 45.482204 + ], + [ + -73.454893, + 45.482398 + ], + [ + -73.455361, + 45.482587 + ], + [ + -73.455562, + 45.482663 + ], + [ + -73.455798, + 45.482744 + ], + [ + -73.456376, + 45.48292 + ], + [ + -73.456963, + 45.483096 + ], + [ + -73.457696, + 45.483312 + ], + [ + -73.457948, + 45.48338 + ], + [ + -73.45825, + 45.483452 + ], + [ + -73.458477, + 45.483499 + ], + [ + -73.458491, + 45.483501 + ], + [ + -73.458691, + 45.483542 + ], + [ + -73.458995, + 45.483592 + ], + [ + -73.459974, + 45.483704 + ], + [ + -73.46004, + 45.48371 + ], + [ + -73.46052, + 45.483755 + ], + [ + -73.460806, + 45.483781 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.462585, + 45.484043 + ], + [ + -73.463416, + 45.484224 + ], + [ + -73.463639, + 45.484291 + ], + [ + -73.464599, + 45.48462 + ], + [ + -73.465244, + 45.484835 + ], + [ + -73.465443, + 45.484908 + ], + [ + -73.465586, + 45.484937 + ], + [ + -73.465724, + 45.484942 + ], + [ + -73.465848, + 45.484931 + ], + [ + -73.466018, + 45.484884 + ], + [ + -73.466121, + 45.484844 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.466212, + 45.48485 + ], + [ + -73.46623, + 45.484867 + ], + [ + -73.466294, + 45.484926 + ], + [ + -73.466478, + 45.485072 + ], + [ + -73.466566, + 45.485142 + ], + [ + -73.466759, + 45.48529 + ], + [ + -73.466948, + 45.485421 + ], + [ + -73.467024, + 45.48547 + ], + [ + -73.468004, + 45.486118 + ], + [ + -73.469888, + 45.487365 + ], + [ + -73.470621, + 45.487851 + ], + [ + -73.471611, + 45.488508 + ], + [ + -73.471789, + 45.488626 + ], + [ + -73.47187, + 45.488576 + ], + [ + -73.471942, + 45.488513 + ], + [ + -73.472025, + 45.488459 + ], + [ + -73.472094, + 45.488408 + ], + [ + -73.473039, + 45.487708 + ], + [ + -73.474092, + 45.486988 + ], + [ + -73.474427, + 45.486764 + ], + [ + -73.474931, + 45.486431 + ], + [ + -73.475157, + 45.486287 + ], + [ + -73.475578, + 45.486575 + ], + [ + -73.475841, + 45.486757 + ], + [ + -73.475994, + 45.486863 + ], + [ + -73.475863, + 45.486966 + ], + [ + -73.475741, + 45.487061 + ], + [ + -73.475395, + 45.487308 + ], + [ + -73.475345, + 45.487344 + ], + [ + -73.475065, + 45.487542 + ], + [ + -73.475399, + 45.487771 + ], + [ + -73.475597, + 45.487907 + ], + [ + -73.47601, + 45.48819 + ], + [ + -73.476259, + 45.488424 + ], + [ + -73.476492, + 45.488586 + ], + [ + -73.476696, + 45.48846 + ], + [ + -73.476706, + 45.488455 + ], + [ + -73.476789, + 45.488411 + ], + [ + -73.478723, + 45.489788 + ], + [ + -73.479088, + 45.490049 + ], + [ + -73.479214, + 45.490139 + ], + [ + -73.481409, + 45.491696 + ], + [ + -73.481421, + 45.491704 + ], + [ + -73.481545, + 45.491786 + ], + [ + -73.481575, + 45.491826 + ], + [ + -73.481586, + 45.49184 + ], + [ + -73.481557, + 45.491867 + ], + [ + -73.481502, + 45.491907 + ], + [ + -73.481312, + 45.492051 + ], + [ + -73.481761, + 45.492348 + ], + [ + -73.483908, + 45.493763 + ], + [ + -73.483989, + 45.493816 + ], + [ + -73.483614, + 45.494082 + ], + [ + -73.483267, + 45.494328 + ], + [ + -73.482398, + 45.494954 + ], + [ + -73.482055, + 45.495201 + ], + [ + -73.481907, + 45.495309 + ], + [ + -73.482, + 45.495372 + ], + [ + -73.482363, + 45.495611 + ], + [ + -73.483276, + 45.496213 + ], + [ + -73.483953, + 45.496659 + ], + [ + -73.48405, + 45.496727 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.483872, + 45.497077 + ], + [ + -73.48383, + 45.497108 + ], + [ + -73.483504, + 45.497347 + ], + [ + -73.483382, + 45.497433 + ], + [ + -73.483338, + 45.497469 + ], + [ + -73.483277, + 45.497509 + ], + [ + -73.482985, + 45.497707 + ], + [ + -73.482734, + 45.497876 + ], + [ + -73.482636, + 45.497941 + ], + [ + -73.482124, + 45.49831 + ], + [ + -73.481899, + 45.498472 + ], + [ + -73.48235, + 45.498769 + ], + [ + -73.482412, + 45.498809 + ], + [ + -73.485116, + 45.500596 + ], + [ + -73.485618, + 45.500533 + ], + [ + -73.486298, + 45.500448 + ], + [ + -73.486841, + 45.500694 + ], + [ + -73.48707, + 45.500799 + ], + [ + -73.487208, + 45.500862 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487613, + 45.501033 + ], + [ + -73.487728, + 45.501082 + ], + [ + -73.487936, + 45.501136 + ], + [ + -73.488187, + 45.501204 + ], + [ + -73.488486, + 45.501271 + ], + [ + -73.488837, + 45.501352 + ], + [ + -73.48926, + 45.501478 + ], + [ + -73.489761, + 45.501636 + ], + [ + -73.490233, + 45.501775 + ], + [ + -73.490675, + 45.501901 + ], + [ + -73.490913, + 45.501973 + ], + [ + -73.491171, + 45.502054 + ], + [ + -73.491395, + 45.501844 + ], + [ + -73.491575, + 45.501677 + ], + [ + -73.49208, + 45.501204 + ], + [ + -73.493773, + 45.499621 + ], + [ + -73.493836, + 45.499562 + ], + [ + -73.494216, + 45.499211 + ], + [ + -73.494948, + 45.498532 + ], + [ + -73.496152, + 45.497413 + ], + [ + -73.496207, + 45.497362 + ], + [ + -73.495967, + 45.497229 + ], + [ + -73.495841, + 45.497159 + ], + [ + -73.495426, + 45.496935 + ], + [ + -73.495021, + 45.496723 + ], + [ + -73.494834, + 45.496627 + ], + [ + -73.494644, + 45.49653 + ], + [ + -73.494255, + 45.496323 + ], + [ + -73.493866, + 45.49611 + ], + [ + -73.493736, + 45.496039 + ], + [ + -73.493501, + 45.496255 + ], + [ + -73.493386, + 45.496361 + ], + [ + -73.49231, + 45.497358 + ], + [ + -73.492247, + 45.497416 + ], + [ + -73.491955, + 45.49769 + ], + [ + -73.491355, + 45.49826 + ], + [ + -73.491353, + 45.498262 + ], + [ + -73.491043, + 45.498549 + ], + [ + -73.490098, + 45.499422 + ], + [ + -73.490034, + 45.499485 + ], + [ + -73.489939, + 45.49958 + ], + [ + -73.488346, + 45.501057 + ] + ] + }, + "id": 286, + "properties": { + "id": "b97f6be1-744d-42cc-a603-8d327237e759", + "data": { + "gtfs": { + "shape_id": "535_2_R" + }, + "segments": [ + { + "distanceMeters": 492, + "travelTimeSeconds": 93 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 781, + "travelTimeSeconds": 148 + }, + { + "distanceMeters": 507, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 554, + "travelTimeSeconds": 105 + }, + { + "distanceMeters": 464, + "travelTimeSeconds": 88 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 330, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 104, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 59, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 121, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 582, + "travelTimeSeconds": 110 + }, + { + "distanceMeters": 424, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 95, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 42 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7901, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3467.111681139746, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.27, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 4.7, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.27 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", + "4996264a-c3f0-4fe8-be81-9ca3d8659c61", + "e089008c-4123-4897-95b5-a61e5e049f48", + "a5c03062-e324-4cb7-8c59-00c59a14b63e", + "1e205a49-fad6-428c-9d0c-b4018473837d", + "ac9a9c14-57c3-4a81-9316-ceca9586731d", + "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", + "c4f08e33-183e-41cf-9f96-5985f148bd11", + "3040b262-0b20-4c40-9350-e484adfe1d60", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "fd062866-a8eb-4466-b53a-6adf8fc3f09a", + "b2075e72-f3b5-420a-b22b-99e7608c7c0a", + "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", + "59a23245-0190-4421-8038-2ea1cbdc6419", + "800c7491-9914-4c1b-98fa-05ef8ea6fc69", + "eeaa7f8b-2fd2-49cc-ba6a-d6a6a5274e6b", + "038ad1c0-bc4e-4528-8949-777db666b0b5", + "6bf17878-7313-4796-a2ad-a20a58f89e02", + "b3c7372b-3c0a-4cb2-bef2-6f11825f858a", + "7e2aa9ad-30a3-4e26-acfb-1e284e4a4e01", + "f8a2b8d6-3974-492f-9494-9a40d49bc027", + "5605c306-59ee-41b1-bafb-ef890fa7662b", + "c90494b0-6ef5-43d3-912f-c60109ccace2", + "71e7c9ac-fe80-497a-a057-1eb12ce8ef13" + ], + "stops": [], + "line_id": "bca3776b-1530-41d0-bda2-87c9fc6e85e9", + "segments": [ + 0, + 31, + 34, + 40, + 48, + 51, + 74, + 94, + 102, + 114, + 121, + 127, + 130, + 133, + 141, + 145, + 149, + 152, + 155, + 161, + 170, + 187, + 189, + 192, + 193, + 199, + 202, + 206, + 209, + 213 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 286, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.454364, + 45.464733 + ], + [ + -73.45432, + 45.464702 + ], + [ + -73.453971, + 45.464449 + ], + [ + -73.453617, + 45.464193 + ], + [ + -73.453261, + 45.463932 + ], + [ + -73.452912, + 45.463662 + ], + [ + -73.452802, + 45.463536 + ], + [ + -73.452721, + 45.463379 + ], + [ + -73.452662, + 45.463158 + ], + [ + -73.45263, + 45.463001 + ], + [ + -73.452634, + 45.462879 + ], + [ + -73.452663, + 45.462722 + ], + [ + -73.452703, + 45.4626 + ], + [ + -73.452775, + 45.462447 + ], + [ + -73.452835, + 45.462344 + ], + [ + -73.452842, + 45.462333 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.452625, + 45.461966 + ], + [ + -73.45174, + 45.461341 + ], + [ + -73.451566, + 45.461218 + ], + [ + -73.45131, + 45.461404 + ], + [ + -73.451082, + 45.461568 + ], + [ + -73.450857, + 45.461731 + ], + [ + -73.450328, + 45.462112 + ], + [ + -73.450113, + 45.462266 + ], + [ + -73.449057, + 45.462995 + ], + [ + -73.448872, + 45.463116 + ], + [ + -73.44876, + 45.463165 + ], + [ + -73.448735, + 45.463176 + ], + [ + -73.448659, + 45.463206 + ], + [ + -73.448508, + 45.463264 + ], + [ + -73.448372, + 45.463309 + ], + [ + -73.448196, + 45.46335 + ], + [ + -73.447895, + 45.463394 + ], + [ + -73.447618, + 45.463408 + ], + [ + -73.447276, + 45.463394 + ], + [ + -73.446942, + 45.463331 + ], + [ + -73.446808, + 45.463298 + ], + [ + -73.446687, + 45.463268 + ], + [ + -73.446445, + 45.463155 + ], + [ + -73.446381, + 45.463115 + ], + [ + -73.445923, + 45.462827 + ], + [ + -73.444193, + 45.461657 + ], + [ + -73.444045, + 45.461557 + ], + [ + -73.44286, + 45.46075 + ], + [ + -73.44257, + 45.460553 + ], + [ + -73.441049, + 45.461587 + ], + [ + -73.440903, + 45.461686 + ], + [ + -73.44047, + 45.46196 + ], + [ + -73.440096, + 45.462131 + ], + [ + -73.439952, + 45.462187 + ], + [ + -73.439923, + 45.462198 + ], + [ + -73.439564, + 45.462315 + ], + [ + -73.43934, + 45.462423 + ], + [ + -73.438984, + 45.462639 + ], + [ + -73.438333, + 45.463115 + ], + [ + -73.437701, + 45.463565 + ], + [ + -73.437964, + 45.463744 + ], + [ + -73.438131, + 45.463857 + ], + [ + -73.438391, + 45.464033 + ], + [ + -73.44087, + 45.465709 + ], + [ + -73.440976, + 45.46578 + ], + [ + -73.441167, + 45.465915 + ], + [ + -73.441736, + 45.466257 + ], + [ + -73.442013, + 45.466357 + ], + [ + -73.442158, + 45.466406 + ], + [ + -73.442317, + 45.46646 + ], + [ + -73.442367, + 45.466471 + ], + [ + -73.442596, + 45.466523 + ], + [ + -73.442918, + 45.466614 + ], + [ + -73.44316, + 45.466708 + ], + [ + -73.4434, + 45.466798 + ], + [ + -73.443571, + 45.466875 + ], + [ + -73.443775, + 45.466978 + ], + [ + -73.44395, + 45.467091 + ], + [ + -73.44423, + 45.467276 + ], + [ + -73.44435, + 45.46737 + ], + [ + -73.44443, + 45.467451 + ], + [ + -73.444455, + 45.467475 + ], + [ + -73.444535, + 45.46755 + ], + [ + -73.445104, + 45.468072 + ], + [ + -73.445679, + 45.468635 + ], + [ + -73.446163, + 45.469091 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445905, + 45.469485 + ], + [ + -73.445671, + 45.469643 + ], + [ + -73.445475, + 45.469778 + ], + [ + -73.445396, + 45.469832 + ], + [ + -73.445298, + 45.469899 + ], + [ + -73.444328, + 45.470583 + ], + [ + -73.444076, + 45.47076 + ], + [ + -73.442658, + 45.471761 + ], + [ + -73.442644, + 45.471771 + ], + [ + -73.442519, + 45.471859 + ], + [ + -73.441942, + 45.47227 + ], + [ + -73.441211, + 45.472791 + ], + [ + -73.441022, + 45.472925 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.440777, + 45.473082 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.441938, + 45.473928 + ], + [ + -73.442708, + 45.474456 + ], + [ + -73.443365, + 45.474904 + ], + [ + -73.443474, + 45.474978 + ], + [ + -73.44437, + 45.475586 + ], + [ + -73.445004, + 45.476016 + ], + [ + -73.445067, + 45.476058 + ], + [ + -73.445608, + 45.476432 + ], + [ + -73.446237, + 45.47686 + ], + [ + -73.446801, + 45.477246 + ], + [ + -73.446869, + 45.477292 + ], + [ + -73.447188, + 45.477508 + ], + [ + -73.44754, + 45.477747 + ], + [ + -73.448146, + 45.478157 + ], + [ + -73.448655, + 45.4785 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.450119, + 45.479471 + ], + [ + -73.450865, + 45.479959 + ], + [ + -73.451, + 45.480048 + ], + [ + -73.451438, + 45.480342 + ], + [ + -73.451689, + 45.480511 + ], + [ + -73.452165, + 45.480813 + ], + [ + -73.452537, + 45.481073 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452379, + 45.481446 + ], + [ + -73.452062, + 45.481636 + ], + [ + -73.45135, + 45.482063 + ], + [ + -73.451258, + 45.482118 + ], + [ + -73.450104, + 45.482803 + ], + [ + -73.449882, + 45.482936 + ], + [ + -73.449245, + 45.483336 + ], + [ + -73.449101, + 45.483471 + ], + [ + -73.448914, + 45.483713 + ], + [ + -73.448817, + 45.483898 + ], + [ + -73.448629, + 45.484109 + ], + [ + -73.44844, + 45.484271 + ], + [ + -73.44822, + 45.484483 + ], + [ + -73.44775, + 45.484937 + ], + [ + -73.447415, + 45.485256 + ], + [ + -73.447237, + 45.485427 + ], + [ + -73.447005, + 45.485643 + ], + [ + -73.446786, + 45.485851 + ], + [ + -73.446708, + 45.485926 + ], + [ + -73.445795, + 45.486794 + ], + [ + -73.445654, + 45.486915 + ], + [ + -73.445524, + 45.487041 + ], + [ + -73.445408, + 45.487167 + ], + [ + -73.445364, + 45.487224 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 287, + "properties": { + "id": "3d4cc52f-f287-4a56-906f-96fbc851c3b8", + "data": { + "gtfs": { + "shape_id": "536_1_A" + }, + "segments": [ + { + "distanceMeters": 319, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 53, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 48, + "travelTimeSeconds": 7 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 317, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 42, + "travelTimeSeconds": 6 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 510, + "travelTimeSeconds": 80 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6162, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2975.389464833659, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.42, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 5.4, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.42 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "5cacbe7b-f308-4076-8842-25195b37874b", + "5cacbe7b-f308-4076-8842-25195b37874b", + "90bf0496-ccdf-450d-91bf-4dc999f62290", + "160a49df-4dfe-423d-acd7-52bd439d623b", + "d7a2b864-2fd6-4357-924f-7fbbb1858b57", + "a77f6afe-a859-4856-8bf5-ab032add56af", + "735e4ba2-6503-4586-98da-feccec61a212", + "af14ce12-74fa-4edf-a439-c058d0014323", + "4bc3caff-ed56-497d-8ae6-f486cc6662a6", + "596478dc-5795-41d8-b76f-e8b99c5314f6", + "966472c1-4384-4d94-92f7-48afa023de51", + "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", + "c8919560-2bb2-4063-8184-8e6c296badbe", + "e80498a8-505d-4215-ba07-7582f8783d8e", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "c4061c94-e615-4bca-b219-1ff6ea9657d0", + "c4061c94-e615-4bca-b219-1ff6ea9657d0", + "89553e99-6867-4296-935e-718bb768cb73", + "72a48bdf-3a35-4f3b-8d05-e465faf044cf", + "70af9f63-28e4-474e-896b-5462b7252980", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "d9b94443-0b59-40db-aecb-0acb5ea7976c", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "7c94f09d-1666-4f35-8c26-dc026ec5b52b", + "segments": [ + 0, + 15, + 17, + 18, + 20, + 23, + 28, + 37, + 42, + 44, + 50, + 58, + 60, + 65, + 78, + 82, + 90, + 91, + 96, + 103, + 106, + 110, + 112, + 115, + 119, + 124, + 129, + 130, + 138, + 143, + 149 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 287, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445508, + 45.489489 + ], + [ + -73.4453, + 45.489165 + ], + [ + -73.445238, + 45.489052 + ], + [ + -73.445212, + 45.488985 + ], + [ + -73.445181, + 45.488904 + ], + [ + -73.445074, + 45.488728 + ], + [ + -73.445053, + 45.488544 + ], + [ + -73.445044, + 45.488377 + ], + [ + -73.445046, + 45.488242 + ], + [ + -73.445073, + 45.488085 + ], + [ + -73.445118, + 45.487932 + ], + [ + -73.445182, + 45.487779 + ], + [ + -73.445261, + 45.48759 + ], + [ + -73.445319, + 45.487496 + ], + [ + -73.445386, + 45.487388 + ], + [ + -73.445526, + 45.487217 + ], + [ + -73.445638, + 45.487095 + ], + [ + -73.445642, + 45.487092 + ], + [ + -73.445764, + 45.486978 + ], + [ + -73.445905, + 45.486857 + ], + [ + -73.446707, + 45.486092 + ], + [ + -73.44682, + 45.485985 + ], + [ + -73.447123, + 45.485706 + ], + [ + -73.447356, + 45.48549 + ], + [ + -73.447536, + 45.485315 + ], + [ + -73.447867, + 45.484995 + ], + [ + -73.448282, + 45.484595 + ], + [ + -73.448552, + 45.484334 + ], + [ + -73.448747, + 45.484168 + ], + [ + -73.448891, + 45.484006 + ], + [ + -73.448947, + 45.483943 + ], + [ + -73.449046, + 45.483754 + ], + [ + -73.449223, + 45.483529 + ], + [ + -73.449352, + 45.483408 + ], + [ + -73.449867, + 45.483086 + ], + [ + -73.449978, + 45.483017 + ], + [ + -73.451449, + 45.482131 + ], + [ + -73.45177, + 45.481937 + ], + [ + -73.45215, + 45.481708 + ], + [ + -73.452851, + 45.48129 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452737, + 45.480994 + ], + [ + -73.452517, + 45.480857 + ], + [ + -73.452296, + 45.480719 + ], + [ + -73.452295, + 45.480718 + ], + [ + -73.451837, + 45.480421 + ], + [ + -73.451565, + 45.480238 + ], + [ + -73.451004, + 45.47986 + ], + [ + -73.450929, + 45.479809 + ], + [ + -73.450257, + 45.479368 + ], + [ + -73.449704, + 45.479007 + ], + [ + -73.449587, + 45.478931 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448305, + 45.478058 + ], + [ + -73.447779, + 45.477702 + ], + [ + -73.4477, + 45.477648 + ], + [ + -73.446992, + 45.477175 + ], + [ + -73.446393, + 45.476765 + ], + [ + -73.445743, + 45.476329 + ], + [ + -73.445374, + 45.476072 + ], + [ + -73.445205, + 45.475955 + ], + [ + -73.444867, + 45.475726 + ], + [ + -73.444508, + 45.475482 + ], + [ + -73.443708, + 45.474941 + ], + [ + -73.443609, + 45.474874 + ], + [ + -73.44285, + 45.474357 + ], + [ + -73.441175, + 45.473211 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.441438, + 45.47281 + ], + [ + -73.442521, + 45.472047 + ], + [ + -73.442653, + 45.471954 + ], + [ + -73.444466, + 45.470668 + ], + [ + -73.444558, + 45.470603 + ], + [ + -73.444692, + 45.470508 + ], + [ + -73.445328, + 45.470057 + ], + [ + -73.445338, + 45.470052 + ], + [ + -73.445622, + 45.469854 + ], + [ + -73.446091, + 45.469543 + ], + [ + -73.446378, + 45.469353 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445679, + 45.468635 + ], + [ + -73.445104, + 45.468072 + ], + [ + -73.444623, + 45.467631 + ], + [ + -73.444535, + 45.46755 + ], + [ + -73.44443, + 45.467451 + ], + [ + -73.44435, + 45.46737 + ], + [ + -73.44423, + 45.467276 + ], + [ + -73.44395, + 45.467091 + ], + [ + -73.443775, + 45.466978 + ], + [ + -73.443571, + 45.466875 + ], + [ + -73.4434, + 45.466798 + ], + [ + -73.44316, + 45.466708 + ], + [ + -73.442918, + 45.466614 + ], + [ + -73.442764, + 45.46657 + ], + [ + -73.442596, + 45.466523 + ], + [ + -73.442367, + 45.466471 + ], + [ + -73.442317, + 45.46646 + ], + [ + -73.442013, + 45.466357 + ], + [ + -73.441736, + 45.466257 + ], + [ + -73.441412, + 45.466063 + ], + [ + -73.441167, + 45.465915 + ], + [ + -73.440976, + 45.46578 + ], + [ + -73.438682, + 45.46423 + ], + [ + -73.438391, + 45.464033 + ], + [ + -73.437915, + 45.46371 + ], + [ + -73.437816, + 45.463643 + ], + [ + -73.437701, + 45.463565 + ], + [ + -73.438333, + 45.463115 + ], + [ + -73.438984, + 45.462639 + ], + [ + -73.43934, + 45.462423 + ], + [ + -73.439564, + 45.462315 + ], + [ + -73.439805, + 45.462237 + ], + [ + -73.439923, + 45.462198 + ], + [ + -73.440096, + 45.462131 + ], + [ + -73.44047, + 45.46196 + ], + [ + -73.440903, + 45.461686 + ], + [ + -73.442467, + 45.460623 + ], + [ + -73.44257, + 45.460553 + ], + [ + -73.443983, + 45.461515 + ], + [ + -73.444045, + 45.461557 + ], + [ + -73.445923, + 45.462827 + ], + [ + -73.446381, + 45.463115 + ], + [ + -73.446445, + 45.463155 + ], + [ + -73.446561, + 45.46321 + ], + [ + -73.446687, + 45.463268 + ], + [ + -73.446942, + 45.463331 + ], + [ + -73.447276, + 45.463394 + ], + [ + -73.447618, + 45.463408 + ], + [ + -73.447895, + 45.463394 + ], + [ + -73.448196, + 45.46335 + ], + [ + -73.448372, + 45.463309 + ], + [ + -73.448467, + 45.463278 + ], + [ + -73.448508, + 45.463264 + ], + [ + -73.448659, + 45.463206 + ], + [ + -73.44876, + 45.463165 + ], + [ + -73.448872, + 45.463116 + ], + [ + -73.449057, + 45.462995 + ], + [ + -73.449923, + 45.462397 + ], + [ + -73.450113, + 45.462266 + ], + [ + -73.450857, + 45.461731 + ], + [ + -73.451241, + 45.461454 + ], + [ + -73.451566, + 45.461218 + ], + [ + -73.452262, + 45.46171 + ], + [ + -73.452834, + 45.462114 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.452835, + 45.462344 + ], + [ + -73.452775, + 45.462447 + ], + [ + -73.452703, + 45.4626 + ], + [ + -73.452687, + 45.462649 + ], + [ + -73.452663, + 45.462722 + ], + [ + -73.452634, + 45.462879 + ], + [ + -73.45263, + 45.463001 + ], + [ + -73.452662, + 45.463158 + ], + [ + -73.452721, + 45.463379 + ], + [ + -73.452802, + 45.463536 + ], + [ + -73.452912, + 45.463662 + ], + [ + -73.453261, + 45.463932 + ], + [ + -73.453537, + 45.464135 + ], + [ + -73.453617, + 45.464193 + ], + [ + -73.453971, + 45.464449 + ], + [ + -73.45432, + 45.464702 + ], + [ + -73.454639, + 45.464924 + ] + ] + }, + "id": 288, + "properties": { + "id": "cbad245d-8924-470d-a5c9-6ce9ea9f4ca2", + "data": { + "gtfs": { + "shape_id": "536_2_R" + }, + "segments": [ + { + "distanceMeters": 492, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 121, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 67, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 22 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6159, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2975.389464833659, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.7, + "travelTimeWithoutDwellTimesSeconds": 1080, + "operatingTimeWithLayoverTimeSeconds": 1260, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1080, + "operatingSpeedWithLayoverMetersPerSecond": 4.89, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.7 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "5f21960f-8919-4407-8a49-57c39947c4fe", + "cc43f372-04e8-4c4c-b711-2e4159e3855d", + "9b7055a8-adca-44c6-9935-6026756d4460", + "76ff8292-f41f-4d17-998d-6dd3d2c32288", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "e80498a8-505d-4215-ba07-7582f8783d8e", + "014d61e3-acfc-41f6-b78a-5c2178c073b1", + "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", + "966472c1-4384-4d94-92f7-48afa023de51", + "43d1b9da-374a-4022-9200-6e68a13388db", + "a02ece0d-dd7f-42ce-ab40-b24192e1114e", + "4bc3caff-ed56-497d-8ae6-f486cc6662a6", + "af14ce12-74fa-4edf-a439-c058d0014323", + "735e4ba2-6503-4586-98da-feccec61a212", + "b78c0741-766d-4707-a3b0-36a0477adc73", + "d7a2b864-2fd6-4357-924f-7fbbb1858b57", + "160a49df-4dfe-423d-acd7-52bd439d623b", + "90bf0496-ccdf-450d-91bf-4dc999f62290", + "5cacbe7b-f308-4076-8842-25195b37874b", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "b6dfeeab-9981-4db8-9a90-2e14691bf516", + "7fef83f0-dafe-4bfc-8d59-ed507f41abfa" + ], + "stops": [], + "line_id": "7c94f09d-1666-4f35-8c26-dc026ec5b52b", + "segments": [ + 0, + 31, + 34, + 40, + 48, + 51, + 57, + 62, + 65, + 69, + 74, + 78, + 81, + 84, + 88, + 93, + 98, + 109, + 115, + 118, + 121, + 127, + 132, + 134, + 139, + 147, + 153, + 156, + 159, + 164, + 173 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 288, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.414616, + 45.501136 + ], + [ + -73.414535, + 45.501249 + ], + [ + -73.414536, + 45.50133 + ], + [ + -73.414962, + 45.501488 + ], + [ + -73.415352, + 45.501632 + ], + [ + -73.415771, + 45.501785 + ], + [ + -73.416178, + 45.501934 + ], + [ + -73.416751, + 45.502146 + ], + [ + -73.417087, + 45.502269 + ], + [ + -73.417293, + 45.502344 + ], + [ + -73.417806, + 45.502538 + ], + [ + -73.418173, + 45.502669 + ], + [ + -73.418562, + 45.502815 + ], + [ + -73.418847, + 45.502921 + ], + [ + -73.418876, + 45.502933 + ], + [ + -73.419167, + 45.503047 + ], + [ + -73.419278, + 45.503088 + ], + [ + -73.419673, + 45.503241 + ], + [ + -73.420142, + 45.503431 + ], + [ + -73.420697, + 45.503668 + ], + [ + -73.420806, + 45.503714 + ], + [ + -73.421234, + 45.503904 + ], + [ + -73.421648, + 45.504084 + ], + [ + -73.422009, + 45.504242 + ], + [ + -73.422355, + 45.50439 + ], + [ + -73.423115, + 45.504715 + ], + [ + -73.423522, + 45.50489 + ], + [ + -73.42368, + 45.504958 + ], + [ + -73.423967, + 45.505084 + ], + [ + -73.424527, + 45.505328 + ], + [ + -73.424894, + 45.505486 + ], + [ + -73.424965, + 45.505517 + ], + [ + -73.425433, + 45.505715 + ], + [ + -73.425471, + 45.505742 + ], + [ + -73.425589, + 45.505823 + ], + [ + -73.425852, + 45.505949 + ], + [ + -73.426079, + 45.506046 + ], + [ + -73.426348, + 45.506161 + ], + [ + -73.426693, + 45.506308 + ], + [ + -73.426919, + 45.506405 + ], + [ + -73.426846, + 45.50654 + ], + [ + -73.426704, + 45.506822 + ], + [ + -73.426601, + 45.507025 + ], + [ + -73.426541, + 45.507144 + ], + [ + -73.426318, + 45.507578 + ], + [ + -73.426298, + 45.507614 + ], + [ + -73.42627, + 45.507659 + ], + [ + -73.426239, + 45.507691 + ], + [ + -73.426194, + 45.507718 + ], + [ + -73.426141, + 45.507753 + ], + [ + -73.425991, + 45.507803 + ], + [ + -73.425844, + 45.507844 + ], + [ + -73.425671, + 45.507884 + ], + [ + -73.425517, + 45.507911 + ], + [ + -73.425226, + 45.507965 + ], + [ + -73.425128, + 45.507977 + ], + [ + -73.424982, + 45.507996 + ], + [ + -73.424804, + 45.508018 + ], + [ + -73.424075, + 45.508099 + ], + [ + -73.423658, + 45.508135 + ], + [ + -73.423075, + 45.50817 + ], + [ + -73.422739, + 45.508194 + ], + [ + -73.422385, + 45.508219 + ], + [ + -73.420612, + 45.508335 + ], + [ + -73.418615, + 45.50846 + ], + [ + -73.418548, + 45.508464 + ], + [ + -73.417889, + 45.508503 + ], + [ + -73.417791, + 45.508509 + ], + [ + -73.416795, + 45.50858 + ], + [ + -73.414891, + 45.508706 + ], + [ + -73.41478, + 45.508713 + ], + [ + -73.414755, + 45.50847 + ], + [ + -73.414729, + 45.508272 + ], + [ + -73.414689, + 45.508002 + ], + [ + -73.41461, + 45.507863 + ], + [ + -73.414461, + 45.507795 + ], + [ + -73.414263, + 45.507764 + ], + [ + -73.41334, + 45.507828 + ], + [ + -73.41298, + 45.507853 + ], + [ + -73.412929, + 45.507488 + ], + [ + -73.412886, + 45.507187 + ], + [ + -73.412894, + 45.507083 + ], + [ + -73.412909, + 45.507038 + ], + [ + -73.412951, + 45.506962 + ], + [ + -73.412993, + 45.506876 + ], + [ + -73.413113, + 45.506647 + ], + [ + -73.413298, + 45.506287 + ], + [ + -73.413426, + 45.506022 + ], + [ + -73.413444, + 45.505954 + ], + [ + -73.413447, + 45.505864 + ], + [ + -73.413421, + 45.505761 + ], + [ + -73.413394, + 45.505639 + ], + [ + -73.413355, + 45.505522 + ], + [ + -73.413318, + 45.50541 + ], + [ + -73.413013, + 45.505441 + ], + [ + -73.412864, + 45.50545 + ], + [ + -73.412747, + 45.50545 + ], + [ + -73.412645, + 45.505436 + ], + [ + -73.412507, + 45.505418 + ], + [ + -73.412213, + 45.505349 + ], + [ + -73.411642, + 45.505214 + ], + [ + -73.411569, + 45.505197 + ], + [ + -73.41077, + 45.504994 + ], + [ + -73.409937, + 45.504794 + ], + [ + -73.409774, + 45.504755 + ], + [ + -73.409315, + 45.504637 + ], + [ + -73.408932, + 45.504538 + ], + [ + -73.408367, + 45.504398 + ], + [ + -73.40791, + 45.504285 + ], + [ + -73.407766, + 45.504249 + ], + [ + -73.407475, + 45.504174 + ], + [ + -73.407261, + 45.504118 + ], + [ + -73.406855, + 45.504005 + ], + [ + -73.406677, + 45.504352 + ], + [ + -73.406515, + 45.50468 + ], + [ + -73.406364, + 45.504981 + ], + [ + -73.406221, + 45.505258 + ], + [ + -73.40619, + 45.505319 + ], + [ + -73.405984, + 45.50575 + ], + [ + -73.405871, + 45.505971 + ], + [ + -73.405719, + 45.506277 + ], + [ + -73.405549, + 45.506609 + ], + [ + -73.405314, + 45.50711 + ], + [ + -73.405268, + 45.507208 + ], + [ + -73.405194, + 45.507248 + ], + [ + -73.40508, + 45.507248 + ], + [ + -73.404942, + 45.507221 + ], + [ + -73.403471, + 45.506845 + ], + [ + -73.403459, + 45.506842 + ], + [ + -73.401947, + 45.506458 + ], + [ + -73.400809, + 45.506169 + ], + [ + -73.400668, + 45.506128 + ], + [ + -73.400593, + 45.506106 + ], + [ + -73.40043, + 45.506038 + ], + [ + -73.40031, + 45.50598 + ], + [ + -73.400245, + 45.505941 + ], + [ + -73.400152, + 45.505885 + ], + [ + -73.400052, + 45.505795 + ], + [ + -73.399949, + 45.505664 + ], + [ + -73.399886, + 45.505552 + ], + [ + -73.39982, + 45.505426 + ], + [ + -73.399787, + 45.505322 + ], + [ + -73.39976, + 45.505156 + ], + [ + -73.399734, + 45.504777 + ], + [ + -73.399729, + 45.504706 + ], + [ + -73.399657, + 45.504175 + ], + [ + -73.39956, + 45.503489 + ], + [ + -73.399542, + 45.50336 + ], + [ + -73.399508, + 45.503131 + ], + [ + -73.399441, + 45.502676 + ], + [ + -73.399417, + 45.50246 + ], + [ + -73.399399, + 45.502327 + ], + [ + -73.399381, + 45.502189 + ], + [ + -73.399355, + 45.501992 + ], + [ + -73.399341, + 45.501884 + ], + [ + -73.399253, + 45.50189 + ], + [ + -73.398939, + 45.50191 + ], + [ + -73.396837, + 45.502044 + ], + [ + -73.395365, + 45.502133 + ], + [ + -73.395213, + 45.502142 + ], + [ + -73.395161, + 45.502053 + ], + [ + -73.395145, + 45.501928 + ], + [ + -73.395111, + 45.50166 + ], + [ + -73.395084, + 45.501431 + ], + [ + -73.395041, + 45.50117 + ], + [ + -73.395041, + 45.501053 + ], + [ + -73.395077, + 45.50094 + ], + [ + -73.395506, + 45.500058 + ], + [ + -73.395555, + 45.499955 + ], + [ + -73.395706, + 45.499618 + ], + [ + -73.395829, + 45.49938 + ], + [ + -73.395901, + 45.499299 + ], + [ + -73.396037, + 45.499128 + ], + [ + -73.396173, + 45.499011 + ], + [ + -73.396519, + 45.498686 + ], + [ + -73.396766, + 45.498454 + ], + [ + -73.396911, + 45.498319 + ], + [ + -73.397102, + 45.498121 + ], + [ + -73.397351, + 45.497878 + ], + [ + -73.397678, + 45.497573 + ], + [ + -73.397919, + 45.497334 + ], + [ + -73.39799, + 45.49727 + ], + [ + -73.398209, + 45.497074 + ], + [ + -73.398541, + 45.496804 + ], + [ + -73.398788, + 45.496579 + ], + [ + -73.399137, + 45.496287 + ], + [ + -73.399546, + 45.495932 + ], + [ + -73.399607, + 45.495824 + ], + [ + -73.399612, + 45.49582 + ], + [ + -73.399701, + 45.495748 + ], + [ + -73.399841, + 45.495549 + ], + [ + -73.399866, + 45.495514 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399814, + 45.49535 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.396677, + 45.493881 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.395077, + 45.493136 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.392017, + 45.491453 + ], + [ + -73.392075, + 45.491404 + ], + [ + -73.392441, + 45.491125 + ], + [ + -73.392989, + 45.49068 + ], + [ + -73.393177, + 45.490469 + ], + [ + -73.39407, + 45.489264 + ], + [ + -73.393539, + 45.489286 + ], + [ + -73.393319, + 45.489571 + ] + ] + }, + "id": 289, + "properties": { + "id": "d8961186-b360-4834-8743-f05d1c8bb97f", + "data": { + "gtfs": { + "shape_id": "538_1_A" + }, + "segments": [ + { + "distanceMeters": 248, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 70, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 380, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 81, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 195, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 328, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 701, + "travelTimeSeconds": 93 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6847, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2127.780932220343, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.61, + "travelTimeWithoutDwellTimesSeconds": 900, + "operatingTimeWithLayoverTimeSeconds": 1080, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 900, + "operatingSpeedWithLayoverMetersPerSecond": 6.34, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.61 + }, + "mode": "bus", + "name": "École Heritage", + "color": "#A32638", + "nodes": [ + "853b0202-bae1-4c20-ab0e-8b27d1350e9a", + "46ea2114-c4d6-46e8-be5d-60d028340abb", + "e460be07-05e4-49f8-a725-e63809c74139", + "235a92b0-53e1-410c-b264-d57c7814303c", + "7207a900-095a-4a6f-9e58-d5821a46e7d1", + "2d759b9b-5efb-4a57-814c-915d6b6185d7", + "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", + "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", + "b989758c-7e40-49d2-b551-b6f0e525013b", + "8760b56a-bae1-4862-80b6-347cc65704e3", + "86f64d55-814a-4fbc-858b-c5c25e590481", + "a591956d-b42e-4489-8d54-3a5d5df835c1", + "16d596f0-097e-4afe-b8c4-9b129c3c3d66", + "72cda4fb-fbe8-47ba-b42e-f310ef91d335", + "bf493d01-4cc2-40cf-9fee-339de5acd0ce", + "35110be1-21ec-490a-b4c8-8b20aa6bef7f", + "aa49b5ca-26fd-4fe1-8e89-4237204a7250", + "3d4eebbc-a250-4177-81d6-19642e2b4176", + "5228afc6-7e91-431f-8045-f41c542a77ea", + "f1de9305-8e6b-46d3-8c98-a08e73b2857f", + "b20c17a3-277e-418e-90be-8f8d32918ba9", + "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", + "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", + "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", + "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0", + "5c25bfb5-c167-4f71-8798-e94a8ad7560d", + "e4d9e692-bf6d-4c61-9845-9e50427c4cad", + "2550d07e-5034-443e-9840-7e9abcf5a62b", + "2e7cf58e-8d32-4b71-acee-694db180235f", + "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", + "69b9716f-dd31-4ae3-9736-6d5edb237b8a", + "8354e556-947c-481c-96bd-d61737767f2d", + "87ac0337-2ebc-4670-a2d4-e0f4a5b3c627" + ], + "stops": [], + "line_id": "d295d16d-b5e4-4427-83f1-171135ced77c", + "segments": [ + 0, + 8, + 14, + 19, + 26, + 30, + 38, + 41, + 55, + 61, + 66, + 69, + 77, + 92, + 100, + 103, + 108, + 116, + 122, + 127, + 135, + 143, + 146, + 151, + 156, + 158, + 167, + 174, + 181, + 190, + 198, + 205 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 289, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.392155, + 45.491342 + ], + [ + -73.392075, + 45.491404 + ], + [ + -73.392017, + 45.491453 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.394224, + 45.492736 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.395959, + 45.493551 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.399587, + 45.495241 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399778, + 45.495491 + ], + [ + -73.39967, + 45.495649 + ], + [ + -73.399618, + 45.495725 + ], + [ + -73.399612, + 45.49582 + ], + [ + -73.399607, + 45.495824 + ], + [ + -73.399546, + 45.495932 + ], + [ + -73.399137, + 45.496287 + ], + [ + -73.398788, + 45.496579 + ], + [ + -73.398541, + 45.496804 + ], + [ + -73.398209, + 45.497074 + ], + [ + -73.398096, + 45.497176 + ], + [ + -73.397919, + 45.497334 + ], + [ + -73.397678, + 45.497573 + ], + [ + -73.397351, + 45.497878 + ], + [ + -73.397102, + 45.498121 + ], + [ + -73.396911, + 45.498319 + ], + [ + -73.39686, + 45.498367 + ], + [ + -73.396766, + 45.498454 + ], + [ + -73.396173, + 45.499011 + ], + [ + -73.396037, + 45.499128 + ], + [ + -73.395901, + 45.499299 + ], + [ + -73.395829, + 45.49938 + ], + [ + -73.395706, + 45.499618 + ], + [ + -73.395599, + 45.499858 + ], + [ + -73.395555, + 45.499955 + ], + [ + -73.395077, + 45.50094 + ], + [ + -73.395041, + 45.501053 + ], + [ + -73.395041, + 45.50117 + ], + [ + -73.395084, + 45.501431 + ], + [ + -73.395111, + 45.50166 + ], + [ + -73.395151, + 45.501974 + ], + [ + -73.395161, + 45.502053 + ], + [ + -73.39513, + 45.502146 + ], + [ + -73.395136, + 45.50225 + ], + [ + -73.395228, + 45.502245 + ], + [ + -73.39542, + 45.502234 + ], + [ + -73.39685, + 45.502148 + ], + [ + -73.399355, + 45.501992 + ], + [ + -73.399365, + 45.502066 + ], + [ + -73.399401, + 45.502337 + ], + [ + -73.399417, + 45.50246 + ], + [ + -73.399441, + 45.502676 + ], + [ + -73.399508, + 45.503131 + ], + [ + -73.399524, + 45.50324 + ], + [ + -73.399542, + 45.50336 + ], + [ + -73.399657, + 45.504175 + ], + [ + -73.399715, + 45.504599 + ], + [ + -73.399729, + 45.504706 + ], + [ + -73.39976, + 45.505156 + ], + [ + -73.399787, + 45.505322 + ], + [ + -73.39982, + 45.505426 + ], + [ + -73.399886, + 45.505552 + ], + [ + -73.399949, + 45.505664 + ], + [ + -73.400042, + 45.505783 + ], + [ + -73.400052, + 45.505795 + ], + [ + -73.400152, + 45.505885 + ], + [ + -73.40031, + 45.50598 + ], + [ + -73.40043, + 45.506038 + ], + [ + -73.400586, + 45.506103 + ], + [ + -73.400593, + 45.506106 + ], + [ + -73.400668, + 45.506128 + ], + [ + -73.400809, + 45.506169 + ], + [ + -73.401947, + 45.506458 + ], + [ + -73.40328, + 45.506796 + ], + [ + -73.403459, + 45.506842 + ], + [ + -73.404942, + 45.507221 + ], + [ + -73.40508, + 45.507248 + ], + [ + -73.40518, + 45.507248 + ], + [ + -73.405194, + 45.507248 + ], + [ + -73.405268, + 45.507208 + ], + [ + -73.405549, + 45.506609 + ], + [ + -73.405719, + 45.506277 + ], + [ + -73.405871, + 45.505971 + ], + [ + -73.405984, + 45.50575 + ], + [ + -73.406106, + 45.505495 + ], + [ + -73.40619, + 45.505319 + ], + [ + -73.406364, + 45.504981 + ], + [ + -73.406515, + 45.50468 + ], + [ + -73.406677, + 45.504352 + ], + [ + -73.406855, + 45.504005 + ], + [ + -73.407261, + 45.504118 + ], + [ + -73.407475, + 45.504174 + ], + [ + -73.407635, + 45.504215 + ], + [ + -73.407766, + 45.504249 + ], + [ + -73.408367, + 45.504398 + ], + [ + -73.408932, + 45.504538 + ], + [ + -73.409315, + 45.504637 + ], + [ + -73.409685, + 45.504732 + ], + [ + -73.409774, + 45.504755 + ], + [ + -73.41077, + 45.504994 + ], + [ + -73.411462, + 45.50517 + ], + [ + -73.411569, + 45.505197 + ], + [ + -73.412213, + 45.505349 + ], + [ + -73.412507, + 45.505418 + ], + [ + -73.412645, + 45.505436 + ], + [ + -73.412747, + 45.50545 + ], + [ + -73.412864, + 45.50545 + ], + [ + -73.413013, + 45.505441 + ], + [ + -73.413166, + 45.505425 + ], + [ + -73.413318, + 45.50541 + ], + [ + -73.413394, + 45.505639 + ], + [ + -73.413421, + 45.505761 + ], + [ + -73.413447, + 45.505864 + ], + [ + -73.413444, + 45.505954 + ], + [ + -73.413426, + 45.506022 + ], + [ + -73.413298, + 45.506287 + ], + [ + -73.413113, + 45.506647 + ], + [ + -73.412993, + 45.506876 + ], + [ + -73.412951, + 45.506962 + ], + [ + -73.412909, + 45.507038 + ], + [ + -73.412894, + 45.507083 + ], + [ + -73.412886, + 45.507187 + ], + [ + -73.412929, + 45.507488 + ], + [ + -73.412967, + 45.507758 + ], + [ + -73.41298, + 45.507853 + ], + [ + -73.414263, + 45.507764 + ], + [ + -73.414461, + 45.507795 + ], + [ + -73.41461, + 45.507863 + ], + [ + -73.414689, + 45.508002 + ], + [ + -73.414729, + 45.508272 + ], + [ + -73.414755, + 45.50847 + ], + [ + -73.414773, + 45.50865 + ], + [ + -73.41478, + 45.508713 + ], + [ + -73.416795, + 45.50858 + ], + [ + -73.41761, + 45.508521 + ], + [ + -73.417791, + 45.508509 + ], + [ + -73.418548, + 45.508464 + ], + [ + -73.418615, + 45.50846 + ], + [ + -73.420612, + 45.508335 + ], + [ + -73.422385, + 45.508219 + ], + [ + -73.423075, + 45.50817 + ], + [ + -73.423658, + 45.508135 + ], + [ + -73.424075, + 45.508099 + ], + [ + -73.424804, + 45.508018 + ], + [ + -73.424982, + 45.507996 + ], + [ + -73.425226, + 45.507965 + ], + [ + -73.425517, + 45.507911 + ], + [ + -73.425671, + 45.507884 + ], + [ + -73.425844, + 45.507844 + ], + [ + -73.425991, + 45.507803 + ], + [ + -73.426141, + 45.507753 + ], + [ + -73.426194, + 45.507718 + ], + [ + -73.426239, + 45.507691 + ], + [ + -73.42627, + 45.507659 + ], + [ + -73.426298, + 45.507614 + ], + [ + -73.426318, + 45.507578 + ], + [ + -73.426541, + 45.507144 + ], + [ + -73.426601, + 45.507025 + ], + [ + -73.426846, + 45.506541 + ], + [ + -73.426846, + 45.50654 + ], + [ + -73.426919, + 45.506405 + ], + [ + -73.426972, + 45.506306 + ], + [ + -73.426422, + 45.506071 + ], + [ + -73.42613, + 45.505956 + ], + [ + -73.425918, + 45.505873 + ], + [ + -73.425637, + 45.505778 + ], + [ + -73.425471, + 45.505742 + ], + [ + -73.425433, + 45.505715 + ], + [ + -73.425251, + 45.505638 + ], + [ + -73.424965, + 45.505517 + ], + [ + -73.424527, + 45.505328 + ], + [ + -73.423967, + 45.505084 + ], + [ + -73.42368, + 45.504958 + ], + [ + -73.423539, + 45.504898 + ], + [ + -73.423115, + 45.504715 + ], + [ + -73.422355, + 45.50439 + ], + [ + -73.422129, + 45.504293 + ], + [ + -73.422009, + 45.504242 + ], + [ + -73.421648, + 45.504084 + ], + [ + -73.421234, + 45.503904 + ], + [ + -73.420806, + 45.503714 + ], + [ + -73.420529, + 45.503596 + ], + [ + -73.420142, + 45.503431 + ], + [ + -73.419673, + 45.503241 + ], + [ + -73.419478, + 45.503166 + ], + [ + -73.419278, + 45.503088 + ], + [ + -73.419167, + 45.503047 + ], + [ + -73.418847, + 45.502921 + ], + [ + -73.418562, + 45.502815 + ], + [ + -73.418173, + 45.502669 + ], + [ + -73.417806, + 45.502538 + ], + [ + -73.417355, + 45.502368 + ], + [ + -73.417293, + 45.502344 + ], + [ + -73.416751, + 45.502146 + ], + [ + -73.416178, + 45.501934 + ], + [ + -73.415771, + 45.501785 + ], + [ + -73.415352, + 45.501632 + ], + [ + -73.414962, + 45.501488 + ], + [ + -73.414688, + 45.501386 + ] + ] + }, + "id": 290, + "properties": { + "id": "96d7be13-0eb1-4e2d-9843-91df074ecb54", + "data": { + "gtfs": { + "shape_id": "538_2_R" + }, + "segments": [ + { + "distanceMeters": 266, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 195, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 400, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 56, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 819, + "travelTimeSeconds": 136 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 95, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 40 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6463, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2087.4507592737386, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.98, + "travelTimeWithoutDwellTimesSeconds": 1080, + "operatingTimeWithLayoverTimeSeconds": 1260, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1080, + "operatingSpeedWithLayoverMetersPerSecond": 5.13, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.98 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "ced239e0-91f5-4429-96fd-20bbb8fcfd11", + "70ea9063-86f0-43f5-9e7d-16ea087fc4ce", + "69b9716f-dd31-4ae3-9736-6d5edb237b8a", + "cb20b749-b55e-4251-94cd-215651864e8b", + "2e7cf58e-8d32-4b71-acee-694db180235f", + "2550d07e-5034-443e-9840-7e9abcf5a62b", + "e4d9e692-bf6d-4c61-9845-9e50427c4cad", + "5c25bfb5-c167-4f71-8798-e94a8ad7560d", + "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", + "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", + "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", + "b20c17a3-277e-418e-90be-8f8d32918ba9", + "b20c17a3-277e-418e-90be-8f8d32918ba9", + "f1de9305-8e6b-46d3-8c98-a08e73b2857f", + "5228afc6-7e91-431f-8045-f41c542a77ea", + "3d4eebbc-a250-4177-81d6-19642e2b4176", + "aa49b5ca-26fd-4fe1-8e89-4237204a7250", + "35110be1-21ec-490a-b4c8-8b20aa6bef7f", + "bf493d01-4cc2-40cf-9fee-339de5acd0ce", + "72cda4fb-fbe8-47ba-b42e-f310ef91d335", + "16d596f0-097e-4afe-b8c4-9b129c3c3d66", + "a591956d-b42e-4489-8d54-3a5d5df835c1", + "86f64d55-814a-4fbc-858b-c5c25e590481", + "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", + "2d759b9b-5efb-4a57-814c-915d6b6185d7", + "7207a900-095a-4a6f-9e58-d5821a46e7d1", + "1dee950f-860c-49ec-9656-8fcdc6bfa744", + "235a92b0-53e1-410c-b264-d57c7814303c", + "4a4fa494-b43c-4be6-b677-70874b8f73cc", + "46ea2114-c4d6-46e8-be5d-60d028340abb", + "853b0202-bae1-4c20-ab0e-8b27d1350e9a" + ], + "stops": [], + "line_id": "d295d16d-b5e4-4427-83f1-171135ced77c", + "segments": [ + 0, + 11, + 18, + 23, + 36, + 42, + 49, + 56, + 65, + 69, + 72, + 79, + 84, + 89, + 93, + 100, + 108, + 113, + 116, + 124, + 139, + 147, + 150, + 174, + 184, + 189, + 192, + 197, + 200, + 207 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 290, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.433716, + 45.499641 + ], + [ + -73.433592, + 45.499597 + ], + [ + -73.432859, + 45.499326 + ], + [ + -73.432516, + 45.4992 + ], + [ + -73.431775, + 45.498939 + ], + [ + -73.431159, + 45.498728 + ], + [ + -73.430984, + 45.498668 + ], + [ + -73.431037, + 45.498594 + ], + [ + -73.431441, + 45.498021 + ], + [ + -73.431832, + 45.497459 + ], + [ + -73.432148, + 45.497028 + ], + [ + -73.432274, + 45.496856 + ], + [ + -73.433052, + 45.497133 + ], + [ + -73.434199, + 45.497542 + ], + [ + -73.43431, + 45.497582 + ], + [ + -73.435579, + 45.498023 + ], + [ + -73.435865, + 45.4981 + ], + [ + -73.436036, + 45.49814 + ], + [ + -73.436216, + 45.498172 + ], + [ + -73.436513, + 45.498249 + ], + [ + -73.436806, + 45.498348 + ], + [ + -73.436898, + 45.498384 + ], + [ + -73.436955, + 45.498406 + ], + [ + -73.439319, + 45.499236 + ], + [ + -73.439705, + 45.499371 + ], + [ + -73.43988, + 45.499434 + ], + [ + -73.439931, + 45.499359 + ], + [ + -73.439954, + 45.499326 + ], + [ + -73.441092, + 45.497683 + ], + [ + -73.441172, + 45.497567 + ], + [ + -73.442302, + 45.495928 + ], + [ + -73.442662, + 45.495404 + ], + [ + -73.442507, + 45.495318 + ], + [ + -73.442397, + 45.495264 + ], + [ + -73.442288, + 45.495204 + ], + [ + -73.442274, + 45.495196 + ], + [ + -73.44114, + 45.494563 + ], + [ + -73.440909, + 45.494435 + ], + [ + -73.440795, + 45.494371 + ], + [ + -73.438673, + 45.493188 + ], + [ + -73.438575, + 45.493284 + ], + [ + -73.438558, + 45.493301 + ], + [ + -73.438402, + 45.493454 + ], + [ + -73.438287, + 45.49358 + ], + [ + -73.43819, + 45.493756 + ], + [ + -73.438134, + 45.493858 + ], + [ + -73.438053, + 45.493957 + ], + [ + -73.437622, + 45.494551 + ], + [ + -73.43754, + 45.494663 + ], + [ + -73.437416, + 45.494628 + ], + [ + -73.436664, + 45.494411 + ], + [ + -73.435723, + 45.494151 + ], + [ + -73.435615, + 45.494121 + ], + [ + -73.435472, + 45.494082 + ], + [ + -73.434513, + 45.493802 + ], + [ + -73.433773, + 45.493535 + ], + [ + -73.433602, + 45.493473 + ], + [ + -73.432927, + 45.49323 + ], + [ + -73.43277, + 45.493221 + ], + [ + -73.432639, + 45.493293 + ], + [ + -73.432568, + 45.493374 + ], + [ + -73.432269, + 45.493788 + ], + [ + -73.431927, + 45.494284 + ], + [ + -73.431866, + 45.494372 + ], + [ + -73.431456, + 45.494916 + ], + [ + -73.431051, + 45.495488 + ], + [ + -73.430689, + 45.495989 + ], + [ + -73.430662, + 45.496027 + ], + [ + -73.430595, + 45.496131 + ], + [ + -73.430345, + 45.496041 + ], + [ + -73.428793, + 45.495486 + ], + [ + -73.42811, + 45.495245 + ], + [ + -73.42799, + 45.495202 + ], + [ + -73.427327, + 45.494972 + ], + [ + -73.427129, + 45.4949 + ], + [ + -73.426304, + 45.494616 + ], + [ + -73.425789, + 45.494431 + ], + [ + -73.425567, + 45.494332 + ], + [ + -73.425526, + 45.494311 + ], + [ + -73.425435, + 45.494265 + ], + [ + -73.425244, + 45.494166 + ], + [ + -73.425117, + 45.494094 + ], + [ + -73.424993, + 45.493999 + ], + [ + -73.424846, + 45.493877 + ], + [ + -73.424732, + 45.493751 + ], + [ + -73.424622, + 45.493598 + ], + [ + -73.424286, + 45.493252 + ], + [ + -73.424064, + 45.493076 + ], + [ + -73.42402, + 45.49305 + ], + [ + -73.423956, + 45.493013 + ], + [ + -73.423777, + 45.492914 + ], + [ + -73.423558, + 45.492824 + ], + [ + -73.423264, + 45.492711 + ], + [ + -73.422869, + 45.492571 + ], + [ + -73.422074, + 45.492295 + ], + [ + -73.422051, + 45.492287 + ], + [ + -73.421183, + 45.491976 + ], + [ + -73.420312, + 45.491674 + ], + [ + -73.419483, + 45.491395 + ], + [ + -73.419326, + 45.491336 + ], + [ + -73.419176, + 45.491259 + ], + [ + -73.419007, + 45.49116 + ], + [ + -73.418432, + 45.490863 + ], + [ + -73.418223, + 45.490764 + ], + [ + -73.417895, + 45.490615 + ], + [ + -73.416915, + 45.49021 + ], + [ + -73.416651, + 45.490097 + ], + [ + -73.416262, + 45.489948 + ], + [ + -73.416087, + 45.489886 + ], + [ + -73.415958, + 45.48984 + ], + [ + -73.414473, + 45.489314 + ], + [ + -73.413388, + 45.48893 + ], + [ + -73.413246, + 45.48888 + ], + [ + -73.413378, + 45.488696 + ], + [ + -73.414235, + 45.487508 + ], + [ + -73.414543, + 45.487058 + ], + [ + -73.414879, + 45.486604 + ], + [ + -73.415045, + 45.486384 + ], + [ + -73.415216, + 45.486168 + ], + [ + -73.41547, + 45.485876 + ], + [ + -73.415626, + 45.485715 + ], + [ + -73.415653, + 45.485687 + ], + [ + -73.415881, + 45.485467 + ], + [ + -73.415979, + 45.485368 + ], + [ + -73.416171, + 45.485201 + ], + [ + -73.416634, + 45.484828 + ], + [ + -73.417619, + 45.484091 + ], + [ + -73.417816, + 45.483947 + ], + [ + -73.418029, + 45.48379 + ], + [ + -73.418094, + 45.483832 + ], + [ + -73.418778, + 45.484272 + ], + [ + -73.418862, + 45.484209 + ], + [ + -73.419609, + 45.483652 + ], + [ + -73.420308, + 45.483112 + ], + [ + -73.420348, + 45.483134 + ], + [ + -73.42046, + 45.483193 + ], + [ + -73.420616, + 45.483279 + ], + [ + -73.421429, + 45.483725 + ], + [ + -73.422428, + 45.48427 + ], + [ + -73.423441, + 45.484819 + ], + [ + -73.423524, + 45.484865 + ], + [ + -73.423667, + 45.484946 + ], + [ + -73.424722, + 45.485522 + ], + [ + -73.425068, + 45.485708 + ], + [ + -73.425082, + 45.485716 + ], + [ + -73.425509, + 45.485946 + ], + [ + -73.425426, + 45.48606 + ], + [ + -73.423333, + 45.488965 + ], + [ + -73.423292, + 45.489022 + ], + [ + -73.421245, + 45.491889 + ], + [ + -73.421183, + 45.491976 + ], + [ + -73.421099, + 45.492084 + ], + [ + -73.420884, + 45.492385 + ], + [ + -73.418962, + 45.495066 + ], + [ + -73.418892, + 45.495165 + ], + [ + -73.416874, + 45.498016 + ], + [ + -73.416834, + 45.498066 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.4165, + 45.498087 + ], + [ + -73.415848, + 45.497845 + ], + [ + -73.415069, + 45.497555 + ], + [ + -73.414637, + 45.497397 + ], + [ + -73.413391, + 45.496942 + ], + [ + -73.413139, + 45.49685 + ], + [ + -73.41213, + 45.496482 + ], + [ + -73.411766, + 45.496343 + ], + [ + -73.411419, + 45.496194 + ], + [ + -73.411065, + 45.496029 + ], + [ + -73.410951, + 45.495977 + ], + [ + -73.410895, + 45.495951 + ], + [ + -73.410789, + 45.495896 + ], + [ + -73.409735, + 45.495323 + ], + [ + -73.409349, + 45.495112 + ], + [ + -73.409136, + 45.494989 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.408825, + 45.494811 + ], + [ + -73.408434, + 45.49459 + ], + [ + -73.408369, + 45.494555 + ], + [ + -73.408119, + 45.494419 + ], + [ + -73.407735, + 45.494211 + ], + [ + -73.407122, + 45.493914 + ], + [ + -73.406676, + 45.493712 + ], + [ + -73.406594, + 45.493675 + ], + [ + -73.404056, + 45.49253 + ], + [ + -73.40355, + 45.492282 + ], + [ + -73.403081, + 45.492034 + ], + [ + -73.402801, + 45.491865 + ], + [ + -73.402782, + 45.491854 + ], + [ + -73.402626, + 45.491759 + ], + [ + -73.402493, + 45.491674 + ], + [ + -73.402463, + 45.491651 + ], + [ + -73.402357, + 45.491809 + ], + [ + -73.402324, + 45.491865 + ], + [ + -73.402229, + 45.492034 + ], + [ + -73.401287, + 45.493369 + ], + [ + -73.400962, + 45.49381 + ], + [ + -73.400582, + 45.494363 + ], + [ + -73.400352, + 45.494664 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.399521, + 45.49521 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.396689, + 45.493887 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.395089, + 45.493141 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.392017, + 45.491453 + ], + [ + -73.392075, + 45.491404 + ], + [ + -73.392441, + 45.491125 + ], + [ + -73.392989, + 45.49068 + ], + [ + -73.393177, + 45.490469 + ], + [ + -73.39407, + 45.489264 + ], + [ + -73.393539, + 45.489286 + ], + [ + -73.393319, + 45.489571 + ] + ] + }, + "id": 291, + "properties": { + "id": "07d365b4-08e8-468d-a518-8067f0e47591", + "data": { + "gtfs": { + "shape_id": "539_1_A" + }, + "segments": [ + { + "distanceMeters": 443, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 477, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 714, + "travelTimeSeconds": 106 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 411, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 589, + "travelTimeSeconds": 88 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 420, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 364, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 62, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 334, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 366, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 797, + "travelTimeSeconds": 119 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 702, + "travelTimeSeconds": 105 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10486, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3356.3914991906313, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.72, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 6.03, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.72 + }, + "mode": "bus", + "name": "École Heritage", + "color": "#A32638", + "nodes": [ + "aa6eb326-370c-4562-8a0f-6ee973ad147e", + "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", + "4a180761-ffc5-4d97-873b-916ca1656760", + "63ff9173-3e59-4bee-9a21-57d199dc88ec", + "015193c6-e760-4b43-b20c-28dc44f0558a", + "280e5a85-9e1a-4b2a-8fde-6cc3d439dfe9", + "f5c53aa7-466b-4eea-b3e2-5399d8d7f806", + "3437d9a1-68b8-4d3b-8599-7f7b86a577b8", + "20955fbd-1587-4ce3-bc7b-59e84c9c964d", + "648c28de-ca97-4dbf-950c-84a7af5578c7", + "0de64186-5455-4222-b348-dab3af89fb3c", + "f1d23184-1962-40c7-b052-f1f4b7010174", + "d9bf2534-8f61-4d16-adab-8e4d84e855be", + "d68685b2-7e92-4934-989f-8ccfae13451f", + "28985ee5-9fc5-416a-81f8-ff25dba2b6da", + "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", + "4b07d309-8f54-43c8-997d-d4abd77f2d1e", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", + "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", + "c4df5893-41b2-4d6a-81b5-7128fb72aba4", + "5665bcec-62a1-4d01-9550-6900a57f083d", + "0e836f4e-0231-42bf-9c3d-37ea2aef8934", + "30c08115-a1b6-45b8-9122-c5fe99723d2e", + "30c08115-a1b6-45b8-9122-c5fe99723d2e", + "bf4259d8-23ae-478a-8a93-ec28083b908d", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "5dd96d41-c4eb-4453-9e97-752999b1688d", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "df4c6e14-8093-4f02-87d3-4b3d84466b04", + "7c34d8fb-52d2-4cf7-8954-ff69847540ac", + "69b9716f-dd31-4ae3-9736-6d5edb237b8a", + "8354e556-947c-481c-96bd-d61737767f2d", + "87ac0337-2ebc-4670-a2d4-e0f4a5b3c627" + ], + "stops": [], + "line_id": "21d08e6e-8702-48db-a95d-eb07f07676c2", + "segments": [ + 0, + 10, + 13, + 21, + 28, + 30, + 37, + 44, + 47, + 52, + 55, + 62, + 66, + 71, + 78, + 88, + 108, + 111, + 120, + 127, + 139, + 143, + 147, + 149, + 152, + 153, + 156, + 163, + 167, + 173, + 181, + 186, + 203, + 210 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 291, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.392155, + 45.491342 + ], + [ + -73.392075, + 45.491404 + ], + [ + -73.392017, + 45.491453 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.392058, + 45.491722 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.394225, + 45.492736 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.395959, + 45.493551 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.399588, + 45.495242 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.400063, + 45.495324 + ], + [ + -73.400713, + 45.494417 + ], + [ + -73.401104, + 45.493864 + ], + [ + -73.401419, + 45.493423 + ], + [ + -73.402348, + 45.492074 + ], + [ + -73.40251, + 45.491908 + ], + [ + -73.402561, + 45.491939 + ], + [ + -73.402718, + 45.492032 + ], + [ + -73.403076, + 45.492241 + ], + [ + -73.403455, + 45.492444 + ], + [ + -73.403552, + 45.492491 + ], + [ + -73.403928, + 45.492669 + ], + [ + -73.405636, + 45.493441 + ], + [ + -73.405646, + 45.493445 + ], + [ + -73.406315, + 45.493747 + ], + [ + -73.406465, + 45.493815 + ], + [ + -73.407044, + 45.494076 + ], + [ + -73.407318, + 45.494207 + ], + [ + -73.407449, + 45.49427 + ], + [ + -73.408138, + 45.494635 + ], + [ + -73.408588, + 45.494884 + ], + [ + -73.408708, + 45.49495 + ], + [ + -73.408748, + 45.494972 + ], + [ + -73.408851, + 45.495036 + ], + [ + -73.4093, + 45.495297 + ], + [ + -73.410398, + 45.49591 + ], + [ + -73.410626, + 45.496031 + ], + [ + -73.410729, + 45.496085 + ], + [ + -73.411068, + 45.496248 + ], + [ + -73.41156, + 45.496461 + ], + [ + -73.411587, + 45.496473 + ], + [ + -73.412271, + 45.49673 + ], + [ + -73.412864, + 45.496955 + ], + [ + -73.413696, + 45.497258 + ], + [ + -73.414507, + 45.497553 + ], + [ + -73.415733, + 45.497998 + ], + [ + -73.416495, + 45.498275 + ], + [ + -73.416635, + 45.498326 + ], + [ + -73.416745, + 45.498178 + ], + [ + -73.416874, + 45.498016 + ], + [ + -73.416986, + 45.497858 + ], + [ + -73.41707, + 45.497739 + ], + [ + -73.418824, + 45.49526 + ], + [ + -73.418892, + 45.495165 + ], + [ + -73.421021, + 45.492194 + ], + [ + -73.421099, + 45.492084 + ], + [ + -73.421183, + 45.491976 + ], + [ + -73.420761, + 45.49183 + ], + [ + -73.420312, + 45.491674 + ], + [ + -73.419483, + 45.491395 + ], + [ + -73.419326, + 45.491336 + ], + [ + -73.419176, + 45.491259 + ], + [ + -73.419007, + 45.49116 + ], + [ + -73.418432, + 45.490863 + ], + [ + -73.418223, + 45.490764 + ], + [ + -73.417895, + 45.490615 + ], + [ + -73.416915, + 45.49021 + ], + [ + -73.416651, + 45.490097 + ], + [ + -73.416262, + 45.489948 + ], + [ + -73.416101, + 45.489891 + ], + [ + -73.415958, + 45.48984 + ], + [ + -73.414473, + 45.489314 + ], + [ + -73.41339, + 45.488931 + ], + [ + -73.413246, + 45.48888 + ], + [ + -73.413906, + 45.487964 + ], + [ + -73.414235, + 45.487508 + ], + [ + -73.414543, + 45.487058 + ], + [ + -73.414879, + 45.486604 + ], + [ + -73.415045, + 45.486384 + ], + [ + -73.415216, + 45.486168 + ], + [ + -73.41547, + 45.485876 + ], + [ + -73.415625, + 45.485716 + ], + [ + -73.415653, + 45.485687 + ], + [ + -73.415881, + 45.485467 + ], + [ + -73.415979, + 45.485368 + ], + [ + -73.416171, + 45.485201 + ], + [ + -73.416634, + 45.484828 + ], + [ + -73.417619, + 45.484091 + ], + [ + -73.417806, + 45.483954 + ], + [ + -73.418029, + 45.48379 + ], + [ + -73.418778, + 45.484272 + ], + [ + -73.419609, + 45.483652 + ], + [ + -73.420308, + 45.483112 + ], + [ + -73.420348, + 45.483134 + ], + [ + -73.42046, + 45.483193 + ], + [ + -73.420758, + 45.483357 + ], + [ + -73.421429, + 45.483725 + ], + [ + -73.422428, + 45.48427 + ], + [ + -73.423439, + 45.484819 + ], + [ + -73.423524, + 45.484865 + ], + [ + -73.423667, + 45.484946 + ], + [ + -73.424722, + 45.485522 + ], + [ + -73.425067, + 45.485708 + ], + [ + -73.425082, + 45.485716 + ], + [ + -73.425509, + 45.485946 + ], + [ + -73.425293, + 45.486245 + ], + [ + -73.423333, + 45.488964 + ], + [ + -73.423292, + 45.489022 + ], + [ + -73.421245, + 45.491889 + ], + [ + -73.421183, + 45.491976 + ], + [ + -73.421099, + 45.492084 + ], + [ + -73.421366, + 45.492179 + ], + [ + -73.421973, + 45.492395 + ], + [ + -73.422792, + 45.492684 + ], + [ + -73.423173, + 45.492823 + ], + [ + -73.423404, + 45.4929 + ], + [ + -73.423545, + 45.492954 + ], + [ + -73.423688, + 45.493026 + ], + [ + -73.423775, + 45.493075 + ], + [ + -73.423881, + 45.493134 + ], + [ + -73.423992, + 45.493193 + ], + [ + -73.424086, + 45.493252 + ], + [ + -73.424167, + 45.493319 + ], + [ + -73.4245, + 45.493675 + ], + [ + -73.424539, + 45.493715 + ], + [ + -73.424604, + 45.493823 + ], + [ + -73.424742, + 45.493976 + ], + [ + -73.424872, + 45.49408 + ], + [ + -73.425006, + 45.494188 + ], + [ + -73.425153, + 45.494283 + ], + [ + -73.425264, + 45.494344 + ], + [ + -73.425348, + 45.494391 + ], + [ + -73.425495, + 45.494463 + ], + [ + -73.425936, + 45.494625 + ], + [ + -73.426225, + 45.494733 + ], + [ + -73.42705, + 45.495013 + ], + [ + -73.427246, + 45.49508 + ], + [ + -73.427782, + 45.495266 + ], + [ + -73.427911, + 45.49531 + ], + [ + -73.428712, + 45.495599 + ], + [ + -73.430391, + 45.496189 + ], + [ + -73.430519, + 45.496234 + ], + [ + -73.430595, + 45.496131 + ], + [ + -73.430662, + 45.496027 + ], + [ + -73.430941, + 45.495641 + ], + [ + -73.431051, + 45.495488 + ], + [ + -73.431456, + 45.494916 + ], + [ + -73.431796, + 45.494464 + ], + [ + -73.431866, + 45.494372 + ], + [ + -73.432269, + 45.493788 + ], + [ + -73.432568, + 45.493374 + ], + [ + -73.432639, + 45.493293 + ], + [ + -73.43277, + 45.493221 + ], + [ + -73.432927, + 45.49323 + ], + [ + -73.433322, + 45.493372 + ], + [ + -73.433602, + 45.493473 + ], + [ + -73.434513, + 45.493802 + ], + [ + -73.435358, + 45.494049 + ], + [ + -73.435472, + 45.494082 + ], + [ + -73.435723, + 45.494151 + ], + [ + -73.436664, + 45.494411 + ], + [ + -73.437309, + 45.494597 + ], + [ + -73.43754, + 45.494663 + ], + [ + -73.437631, + 45.494539 + ], + [ + -73.438053, + 45.493957 + ], + [ + -73.438134, + 45.493858 + ], + [ + -73.438287, + 45.49358 + ], + [ + -73.438402, + 45.493454 + ], + [ + -73.438549, + 45.49331 + ], + [ + -73.438558, + 45.493301 + ], + [ + -73.438673, + 45.493188 + ], + [ + -73.439084, + 45.493418 + ], + [ + -73.440773, + 45.494359 + ], + [ + -73.440795, + 45.494371 + ], + [ + -73.44114, + 45.494563 + ], + [ + -73.441897, + 45.494985 + ], + [ + -73.442268, + 45.495192 + ], + [ + -73.442288, + 45.495204 + ], + [ + -73.442397, + 45.495264 + ], + [ + -73.442507, + 45.495318 + ], + [ + -73.442123, + 45.495873 + ], + [ + -73.441067, + 45.497401 + ], + [ + -73.440992, + 45.497509 + ], + [ + -73.439779, + 45.499267 + ], + [ + -73.439463, + 45.499154 + ], + [ + -73.439401, + 45.499132 + ], + [ + -73.439296, + 45.499096 + ], + [ + -73.437093, + 45.498327 + ], + [ + -73.437025, + 45.498303 + ], + [ + -73.436911, + 45.498253 + ], + [ + -73.436581, + 45.498141 + ], + [ + -73.436255, + 45.498055 + ], + [ + -73.435929, + 45.497992 + ], + [ + -73.435648, + 45.497915 + ], + [ + -73.434543, + 45.497519 + ], + [ + -73.434393, + 45.497465 + ], + [ + -73.432458, + 45.496785 + ], + [ + -73.432352, + 45.496748 + ], + [ + -73.432274, + 45.496856 + ], + [ + -73.432166, + 45.497004 + ], + [ + -73.431832, + 45.497459 + ], + [ + -73.431441, + 45.498021 + ], + [ + -73.431179, + 45.498393 + ], + [ + -73.430984, + 45.498668 + ], + [ + -73.431159, + 45.498728 + ], + [ + -73.431398, + 45.49881 + ], + [ + -73.431775, + 45.498939 + ], + [ + -73.432516, + 45.4992 + ], + [ + -73.432859, + 45.499326 + ], + [ + -73.433497, + 45.499562 + ] + ] + }, + "id": 292, + "properties": { + "id": "c234f785-cb1c-46d1-9ff3-7c1888ad4e66", + "data": { + "gtfs": { + "shape_id": "539_2_R" + }, + "segments": [ + { + "distanceMeters": 266, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 581, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 63, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 86, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 382, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 488, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 411, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 590, + "travelTimeSeconds": 88 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 420, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 364, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 112, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 38 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10102, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3387.883382381997, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.73, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 6.01, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.73 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "ced239e0-91f5-4429-96fd-20bbb8fcfd11", + "70ea9063-86f0-43f5-9e7d-16ea087fc4ce", + "69b9716f-dd31-4ae3-9736-6d5edb237b8a", + "cb20b749-b55e-4251-94cd-215651864e8b", + "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", + "76b4c3d5-f580-480d-bfec-c2639dd60d13", + "76b4c3d5-f580-480d-bfec-c2639dd60d13", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", + "e654777c-6941-47f5-a273-d73ab074f10e", + "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "bf4259d8-23ae-478a-8a93-ec28083b908d", + "30c08115-a1b6-45b8-9122-c5fe99723d2e", + "4b07d309-8f54-43c8-997d-d4abd77f2d1e", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", + "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", + "c4df5893-41b2-4d6a-81b5-7128fb72aba4", + "5665bcec-62a1-4d01-9550-6900a57f083d", + "0e836f4e-0231-42bf-9c3d-37ea2aef8934", + "30c08115-a1b6-45b8-9122-c5fe99723d2e", + "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", + "28985ee5-9fc5-416a-81f8-ff25dba2b6da", + "d68685b2-7e92-4934-989f-8ccfae13451f", + "d9bf2534-8f61-4d16-adab-8e4d84e855be", + "f1d23184-1962-40c7-b052-f1f4b7010174", + "0de64186-5455-4222-b348-dab3af89fb3c", + "648c28de-ca97-4dbf-950c-84a7af5578c7", + "20955fbd-1587-4ce3-bc7b-59e84c9c964d", + "3437d9a1-68b8-4d3b-8599-7f7b86a577b8", + "f5c53aa7-466b-4eea-b3e2-5399d8d7f806", + "2e1dd055-2856-439e-b231-cd2b626a492f", + "662f52e5-0ed5-4ba7-81cb-757051eefa2c", + "015193c6-e760-4b43-b20c-28dc44f0558a", + "45eb186b-1efe-43c4-8e82-92fe5a15a753", + "63ff9173-3e59-4bee-9a21-57d199dc88ec", + "4a180761-ffc5-4d97-873b-916ca1656760", + "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", + "747c9196-e225-4f37-90ad-0a4fef1b26af", + "aa6eb326-370c-4562-8a0f-6ee973ad147e" + ], + "stops": [], + "line_id": "21d08e6e-8702-48db-a95d-eb07f07676c2", + "segments": [ + 0, + 12, + 19, + 24, + 38, + 40, + 42, + 48, + 54, + 61, + 64, + 69, + 70, + 72, + 87, + 90, + 99, + 106, + 116, + 120, + 124, + 126, + 136, + 148, + 155, + 158, + 165, + 172, + 175, + 179, + 186, + 190, + 193, + 198, + 199, + 204, + 205, + 212, + 214, + 220 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 292, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.423965, + 45.462865 + ], + [ + -73.421437, + 45.464738 + ], + [ + -73.421345, + 45.464806 + ], + [ + -73.41783, + 45.467404 + ], + [ + -73.417764, + 45.467453 + ], + [ + -73.416013, + 45.468747 + ], + [ + -73.415903, + 45.468828 + ], + [ + -73.415843, + 45.468873 + ], + [ + -73.415792, + 45.468914 + ], + [ + -73.414208, + 45.470084 + ], + [ + -73.414113, + 45.470154 + ], + [ + -73.41171, + 45.471941 + ], + [ + -73.411574, + 45.472042 + ], + [ + -73.40969, + 45.473433 + ], + [ + -73.407184, + 45.475283 + ], + [ + -73.406966, + 45.475444 + ], + [ + -73.406646, + 45.475268 + ], + [ + -73.406182, + 45.475012 + ], + [ + -73.405527, + 45.474659 + ], + [ + -73.405388, + 45.474584 + ], + [ + -73.404728, + 45.474217 + ], + [ + -73.404723, + 45.474214 + ], + [ + -73.404642, + 45.474169 + ], + [ + -73.403898, + 45.473773 + ], + [ + -73.403033, + 45.473293 + ], + [ + -73.403012, + 45.473281 + ], + [ + -73.402925, + 45.473236 + ], + [ + -73.402861, + 45.4732 + ], + [ + -73.402694, + 45.473434 + ], + [ + -73.402652, + 45.473497 + ], + [ + -73.402588, + 45.473587 + ], + [ + -73.402575, + 45.473605 + ], + [ + -73.402598, + 45.473682 + ], + [ + -73.402526, + 45.473758 + ], + [ + -73.402424, + 45.473834 + ], + [ + -73.402001, + 45.474387 + ], + [ + -73.40166, + 45.474855 + ], + [ + -73.401528, + 45.475044 + ], + [ + -73.40138, + 45.475237 + ], + [ + -73.401127, + 45.475466 + ], + [ + -73.40103, + 45.475568 + ], + [ + -73.400906, + 45.47563 + ], + [ + -73.400159, + 45.476 + ], + [ + -73.399566, + 45.476293 + ], + [ + -73.39968, + 45.476383 + ], + [ + -73.399891, + 45.476595 + ], + [ + -73.3999, + 45.476608 + ], + [ + -73.399906, + 45.476613 + ], + [ + -73.399913, + 45.476622 + ], + [ + -73.39992, + 45.476631 + ], + [ + -73.399927, + 45.476635 + ], + [ + -73.399934, + 45.476644 + ], + [ + -73.399942, + 45.476653 + ], + [ + -73.39995, + 45.476658 + ], + [ + -73.399958, + 45.476667 + ], + [ + -73.399966, + 45.476671 + ], + [ + -73.399975, + 45.47668 + ], + [ + -73.399984, + 45.476685 + ], + [ + -73.399993, + 45.476694 + ], + [ + -73.400002, + 45.476698 + ], + [ + -73.400012, + 45.476703 + ], + [ + -73.400021, + 45.476712 + ], + [ + -73.400031, + 45.476716 + ], + [ + -73.400041, + 45.476721 + ], + [ + -73.400051, + 45.476725 + ], + [ + -73.400061, + 45.476734 + ], + [ + -73.400072, + 45.476739 + ], + [ + -73.400083, + 45.476743 + ], + [ + -73.400094, + 45.476748 + ], + [ + -73.400105, + 45.476752 + ], + [ + -73.400116, + 45.476757 + ], + [ + -73.400127, + 45.476761 + ], + [ + -73.400139, + 45.476766 + ], + [ + -73.400151, + 45.476766 + ], + [ + -73.400163, + 45.47677 + ], + [ + -73.400248, + 45.476799 + ], + [ + -73.400364, + 45.476838 + ], + [ + -73.401223, + 45.477154 + ], + [ + -73.401918, + 45.47741 + ], + [ + -73.402127, + 45.477488 + ], + [ + -73.403041, + 45.477817 + ], + [ + -73.403831, + 45.47811 + ], + [ + -73.404641, + 45.478398 + ], + [ + -73.405307, + 45.478644 + ], + [ + -73.405459, + 45.478701 + ], + [ + -73.405279, + 45.478954 + ], + [ + -73.405053, + 45.479272 + ], + [ + -73.404603, + 45.47987 + ], + [ + -73.404218, + 45.480391 + ], + [ + -73.4042, + 45.480414 + ], + [ + -73.40413, + 45.480504 + ], + [ + -73.403683, + 45.481106 + ], + [ + -73.403495, + 45.481444 + ], + [ + -73.403466, + 45.481488 + ], + [ + -73.40343, + 45.481524 + ], + [ + -73.403402, + 45.481556 + ], + [ + -73.403345, + 45.481556 + ], + [ + -73.403227, + 45.48156 + ], + [ + -73.401579, + 45.481551 + ], + [ + -73.401359, + 45.48155 + ], + [ + -73.401353, + 45.482238 + ], + [ + -73.4013, + 45.484402 + ], + [ + -73.4013, + 45.484406 + ], + [ + -73.401315, + 45.484488 + ], + [ + -73.400474, + 45.48563 + ], + [ + -73.400324, + 45.485836 + ], + [ + -73.399979, + 45.486309 + ], + [ + -73.399348, + 45.487181 + ], + [ + -73.398864, + 45.487814 + ], + [ + -73.398629, + 45.488062 + ], + [ + -73.398503, + 45.488224 + ], + [ + -73.400292, + 45.490061 + ], + [ + -73.40035, + 45.490119 + ], + [ + -73.400631, + 45.490403 + ], + [ + -73.40073, + 45.490503 + ], + [ + -73.40103, + 45.490791 + ], + [ + -73.401471, + 45.491169 + ], + [ + -73.401853, + 45.491463 + ], + [ + -73.401956, + 45.491543 + ], + [ + -73.402249, + 45.491741 + ], + [ + -73.402277, + 45.491759 + ], + [ + -73.402357, + 45.491809 + ], + [ + -73.402229, + 45.492034 + ], + [ + -73.401287, + 45.493369 + ], + [ + -73.400962, + 45.49381 + ], + [ + -73.400582, + 45.494363 + ], + [ + -73.400352, + 45.494664 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399854, + 45.495371 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.396681, + 45.493883 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.395091, + 45.493141 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.392017, + 45.491453 + ], + [ + -73.392075, + 45.491404 + ], + [ + -73.392441, + 45.491125 + ], + [ + -73.392989, + 45.49068 + ], + [ + -73.393177, + 45.490469 + ], + [ + -73.39407, + 45.489264 + ], + [ + -73.393539, + 45.489286 + ], + [ + -73.393319, + 45.489571 + ] + ] + }, + "id": 293, + "properties": { + "id": "a1094a3b-3829-4b26-ab4d-c3f509833273", + "data": { + "gtfs": { + "shape_id": "540_1_A" + }, + "segments": [ + { + "distanceMeters": 287, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 65, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 335, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 557, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 751, + "travelTimeSeconds": 107 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 702, + "travelTimeSeconds": 101 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6718, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3831.6645043989615, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 5.89, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7 + }, + "mode": "bus", + "name": "École Heritage", + "color": "#A32638", + "nodes": [ + "d739fe08-5298-4356-bd9e-c48a7fee16a1", + "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", + "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", + "176a1328-a08b-40f7-9010-c279f0b6cf5d", + "8dc191fb-71db-4873-9019-c9cedd32b2f0", + "cbe5dd37-dce1-464a-9725-6d31d37c48ab", + "fb30643a-60d9-443e-8b22-29ad762aebdb", + "bd054361-ba99-4c5e-bde0-47f325682b88", + "931c7650-b24c-4431-a556-56243637e8a2", + "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", + "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", + "5b05f00d-fd81-4604-b07f-a519f2a652e9", + "69493295-4b3e-4f92-babc-7684f8cd988a", + "15f5258e-a1ce-4027-8766-29bb39d270b4", + "9a8dc92f-8883-4536-8459-08c71c110b3b", + "d15a4dea-557a-47a7-943e-d1e1a44d1a5a", + "df277747-60c8-4b3b-bafb-24f50e6b7964", + "2d9ef136-ec60-4019-bd4d-d2df55cc0477", + "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6", + "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", + "7c34d8fb-52d2-4cf7-8954-ff69847540ac", + "69b9716f-dd31-4ae3-9736-6d5edb237b8a", + "8354e556-947c-481c-96bd-d61737767f2d", + "87ac0337-2ebc-4670-a2d4-e0f4a5b3c627" + ], + "stops": [], + "line_id": "1a8160b9-8b2d-40a0-a24c-ab68e0962538", + "segments": [ + 0, + 1, + 3, + 5, + 9, + 11, + 13, + 14, + 18, + 24, + 30, + 42, + 75, + 78, + 83, + 89, + 98, + 102, + 105, + 112, + 120, + 132, + 139 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 293, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.392155, + 45.491342 + ], + [ + -73.392075, + 45.491404 + ], + [ + -73.392017, + 45.491453 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.394226, + 45.492736 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.395961, + 45.493552 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.399591, + 45.495243 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399943, + 45.495414 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.400713, + 45.494417 + ], + [ + -73.401104, + 45.493864 + ], + [ + -73.401419, + 45.493423 + ], + [ + -73.402348, + 45.492074 + ], + [ + -73.40251, + 45.491908 + ], + [ + -73.402626, + 45.491759 + ], + [ + -73.402493, + 45.491674 + ], + [ + -73.402463, + 45.491651 + ], + [ + -73.402075, + 45.491386 + ], + [ + -73.401668, + 45.491075 + ], + [ + -73.401167, + 45.490642 + ], + [ + -73.400821, + 45.490307 + ], + [ + -73.40081, + 45.490296 + ], + [ + -73.398817, + 45.488255 + ], + [ + -73.398629, + 45.488062 + ], + [ + -73.398864, + 45.487814 + ], + [ + -73.398921, + 45.48774 + ], + [ + -73.399348, + 45.487181 + ], + [ + -73.399979, + 45.486309 + ], + [ + -73.400132, + 45.486099 + ], + [ + -73.400474, + 45.48563 + ], + [ + -73.401258, + 45.484565 + ], + [ + -73.401315, + 45.484488 + ], + [ + -73.4013, + 45.484402 + ], + [ + -73.401353, + 45.482238 + ], + [ + -73.401357, + 45.481808 + ], + [ + -73.401359, + 45.48155 + ], + [ + -73.403227, + 45.48156 + ], + [ + -73.403345, + 45.481556 + ], + [ + -73.403402, + 45.481556 + ], + [ + -73.40343, + 45.481524 + ], + [ + -73.403466, + 45.481488 + ], + [ + -73.403495, + 45.481444 + ], + [ + -73.403683, + 45.481106 + ], + [ + -73.404056, + 45.480604 + ], + [ + -73.40413, + 45.480504 + ], + [ + -73.404218, + 45.480391 + ], + [ + -73.404603, + 45.47987 + ], + [ + -73.405053, + 45.479272 + ], + [ + -73.405279, + 45.478954 + ], + [ + -73.405388, + 45.478801 + ], + [ + -73.405459, + 45.478701 + ], + [ + -73.404641, + 45.478398 + ], + [ + -73.403831, + 45.47811 + ], + [ + -73.403041, + 45.477817 + ], + [ + -73.402314, + 45.477555 + ], + [ + -73.402127, + 45.477488 + ], + [ + -73.401223, + 45.477154 + ], + [ + -73.400364, + 45.476838 + ], + [ + -73.400163, + 45.47677 + ], + [ + -73.400151, + 45.476766 + ], + [ + -73.400139, + 45.476766 + ], + [ + -73.400127, + 45.476761 + ], + [ + -73.400116, + 45.476757 + ], + [ + -73.400105, + 45.476752 + ], + [ + -73.400094, + 45.476748 + ], + [ + -73.400083, + 45.476743 + ], + [ + -73.400072, + 45.476739 + ], + [ + -73.400061, + 45.476734 + ], + [ + -73.400051, + 45.476725 + ], + [ + -73.400041, + 45.476721 + ], + [ + -73.400031, + 45.476716 + ], + [ + -73.400021, + 45.476712 + ], + [ + -73.400012, + 45.476703 + ], + [ + -73.400002, + 45.476698 + ], + [ + -73.399993, + 45.476694 + ], + [ + -73.399984, + 45.476685 + ], + [ + -73.399975, + 45.47668 + ], + [ + -73.399966, + 45.476671 + ], + [ + -73.399958, + 45.476667 + ], + [ + -73.39995, + 45.476658 + ], + [ + -73.399942, + 45.476653 + ], + [ + -73.399934, + 45.476644 + ], + [ + -73.399927, + 45.476635 + ], + [ + -73.39992, + 45.476631 + ], + [ + -73.399913, + 45.476622 + ], + [ + -73.399906, + 45.476613 + ], + [ + -73.3999, + 45.476608 + ], + [ + -73.399891, + 45.476595 + ], + [ + -73.399781, + 45.476485 + ], + [ + -73.39968, + 45.476383 + ], + [ + -73.401013, + 45.475736 + ], + [ + -73.40103, + 45.475568 + ], + [ + -73.401127, + 45.475466 + ], + [ + -73.40138, + 45.475237 + ], + [ + -73.401528, + 45.475044 + ], + [ + -73.40166, + 45.474855 + ], + [ + -73.402001, + 45.474387 + ], + [ + -73.402303, + 45.473992 + ], + [ + -73.402424, + 45.473834 + ], + [ + -73.402526, + 45.473758 + ], + [ + -73.402598, + 45.473682 + ], + [ + -73.402716, + 45.473664 + ], + [ + -73.402827, + 45.473511 + ], + [ + -73.403012, + 45.473281 + ], + [ + -73.403898, + 45.473773 + ], + [ + -73.404554, + 45.474122 + ], + [ + -73.404642, + 45.474169 + ], + [ + -73.404723, + 45.474214 + ], + [ + -73.404728, + 45.474217 + ], + [ + -73.405388, + 45.474584 + ], + [ + -73.406182, + 45.475012 + ], + [ + -73.406604, + 45.475245 + ], + [ + -73.406966, + 45.475444 + ], + [ + -73.407442, + 45.475093 + ], + [ + -73.409552, + 45.473535 + ], + [ + -73.411476, + 45.472114 + ], + [ + -73.411574, + 45.472042 + ], + [ + -73.413921, + 45.470297 + ], + [ + -73.414113, + 45.470154 + ], + [ + -73.415614, + 45.469045 + ], + [ + -73.415792, + 45.468914 + ], + [ + -73.415843, + 45.468873 + ], + [ + -73.415903, + 45.468828 + ], + [ + -73.417649, + 45.467538 + ], + [ + -73.417764, + 45.467453 + ], + [ + -73.421229, + 45.464891 + ], + [ + -73.421345, + 45.464806 + ], + [ + -73.424242, + 45.46266 + ] + ] + }, + "id": 294, + "properties": { + "id": "c6534281-8b1e-4ab5-ae9e-9f2698f9cb2f", + "data": { + "gtfs": { + "shape_id": "540_2_R" + }, + "segments": [ + { + "distanceMeters": 266, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 987, + "travelTimeSeconds": 139 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 329, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 406, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 49 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6393, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4067.6990338301016, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.1, + "travelTimeWithoutDwellTimesSeconds": 900, + "operatingTimeWithLayoverTimeSeconds": 1080, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 900, + "operatingSpeedWithLayoverMetersPerSecond": 5.92, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.1 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "ced239e0-91f5-4429-96fd-20bbb8fcfd11", + "70ea9063-86f0-43f5-9e7d-16ea087fc4ce", + "69b9716f-dd31-4ae3-9736-6d5edb237b8a", + "cb20b749-b55e-4251-94cd-215651864e8b", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6", + "2d9ef136-ec60-4019-bd4d-d2df55cc0477", + "df277747-60c8-4b3b-bafb-24f50e6b7964", + "d15a4dea-557a-47a7-943e-d1e1a44d1a5a", + "9a8dc92f-8883-4536-8459-08c71c110b3b", + "15f5258e-a1ce-4027-8766-29bb39d270b4", + "5b05f00d-fd81-4604-b07f-a519f2a652e9", + "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", + "55ca5f95-fab1-46cf-be83-81db90d348a5", + "bd054361-ba99-4c5e-bde0-47f325682b88", + "cf532e47-3506-49e5-a1ed-43182c89aa79", + "cbe5dd37-dce1-464a-9725-6d31d37c48ab", + "8dc191fb-71db-4873-9019-c9cedd32b2f0", + "176a1328-a08b-40f7-9010-c279f0b6cf5d", + "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", + "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", + "d739fe08-5298-4356-bd9e-c48a7fee16a1" + ], + "stops": [], + "line_id": "1a8160b9-8b2d-40a0-a24c-ab68e0962538", + "segments": [ + 0, + 11, + 18, + 23, + 41, + 47, + 49, + 53, + 62, + 68, + 73, + 107, + 116, + 124, + 130, + 133, + 134, + 136, + 138, + 142, + 144 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 294, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469004, + 45.466768 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466441, + 45.465884 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465589, + 45.46821 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.46363, + 45.4683 + ], + [ + -73.463472, + 45.468395 + ], + [ + -73.463397, + 45.468431 + ], + [ + -73.463306, + 45.468449 + ], + [ + -73.463219, + 45.468458 + ], + [ + -73.463124, + 45.468449 + ], + [ + -73.463037, + 45.468413 + ], + [ + -73.462702, + 45.468201 + ], + [ + -73.462471, + 45.468057 + ], + [ + -73.462195, + 45.467872 + ], + [ + -73.462008, + 45.467738 + ], + [ + -73.461894, + 45.467656 + ], + [ + -73.461788, + 45.46758 + ], + [ + -73.46133, + 45.467251 + ], + [ + -73.461109, + 45.467094 + ], + [ + -73.460905, + 45.466945 + ], + [ + -73.460729, + 45.466819 + ], + [ + -73.460722, + 45.466814 + ], + [ + -73.460629, + 45.466751 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.458927, + 45.465586 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457079, + 45.464307 + ], + [ + -73.456587, + 45.463951 + ], + [ + -73.45655, + 45.463924 + ], + [ + -73.455675, + 45.463282 + ], + [ + -73.454797, + 45.462637 + ], + [ + -73.454278, + 45.462276 + ], + [ + -73.454148, + 45.462367 + ], + [ + -73.454092, + 45.462406 + ], + [ + -73.454017, + 45.462437 + ], + [ + -73.453888, + 45.462462 + ], + [ + -73.453729, + 45.462455 + ], + [ + -73.453553, + 45.462428 + ], + [ + -73.453343, + 45.462373 + ], + [ + -73.453311, + 45.462361 + ], + [ + -73.453161, + 45.462302 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.452835, + 45.462344 + ], + [ + -73.452775, + 45.462447 + ], + [ + -73.452703, + 45.4626 + ], + [ + -73.452688, + 45.462646 + ], + [ + -73.452663, + 45.462722 + ], + [ + -73.452634, + 45.462879 + ], + [ + -73.45263, + 45.463001 + ], + [ + -73.452662, + 45.463158 + ], + [ + -73.452721, + 45.463379 + ], + [ + -73.452802, + 45.463536 + ], + [ + -73.452912, + 45.463662 + ], + [ + -73.453261, + 45.463932 + ], + [ + -73.453533, + 45.464132 + ], + [ + -73.453617, + 45.464193 + ], + [ + -73.453971, + 45.464449 + ], + [ + -73.45432, + 45.464702 + ], + [ + -73.454635, + 45.464921 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.454655, + 45.465624 + ], + [ + -73.45456, + 45.465692 + ], + [ + -73.453819, + 45.466205 + ], + [ + -73.453432, + 45.466434 + ], + [ + -73.453035, + 45.466641 + ], + [ + -73.452922, + 45.46669 + ], + [ + -73.452774, + 45.466754 + ], + [ + -73.452589, + 45.466834 + ], + [ + -73.451705, + 45.467139 + ], + [ + -73.451627, + 45.467166 + ], + [ + -73.45158, + 45.467183 + ], + [ + -73.451003, + 45.467382 + ], + [ + -73.450937, + 45.467405 + ], + [ + -73.450156, + 45.467679 + ], + [ + -73.449888, + 45.467769 + ], + [ + -73.449338, + 45.467948 + ], + [ + -73.44837, + 45.46829 + ], + [ + -73.447748, + 45.468524 + ], + [ + -73.447289, + 45.468721 + ], + [ + -73.446427, + 45.469169 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445905, + 45.469485 + ], + [ + -73.445671, + 45.469643 + ], + [ + -73.445475, + 45.469778 + ], + [ + -73.445396, + 45.469832 + ], + [ + -73.445298, + 45.469899 + ], + [ + -73.444328, + 45.470583 + ], + [ + -73.444078, + 45.470759 + ], + [ + -73.442661, + 45.471759 + ], + [ + -73.442644, + 45.471771 + ], + [ + -73.442519, + 45.471859 + ], + [ + -73.441942, + 45.47227 + ], + [ + -73.441024, + 45.472924 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.440777, + 45.473082 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.439918, + 45.473559 + ], + [ + -73.438731, + 45.47422 + ], + [ + -73.438304, + 45.474435 + ], + [ + -73.438273, + 45.474449 + ], + [ + -73.437984, + 45.474579 + ], + [ + -73.437774, + 45.474669 + ], + [ + -73.437493, + 45.474781 + ], + [ + -73.436979, + 45.47497 + ], + [ + -73.436441, + 45.475136 + ], + [ + -73.43565, + 45.475338 + ], + [ + -73.435363, + 45.475412 + ], + [ + -73.435246, + 45.475441 + ], + [ + -73.434371, + 45.475675 + ], + [ + -73.43213, + 45.476249 + ], + [ + -73.430984, + 45.476543 + ], + [ + -73.430434, + 45.476684 + ], + [ + -73.430219, + 45.476739 + ], + [ + -73.43007, + 45.476775 + ], + [ + -73.429697, + 45.476873 + ], + [ + -73.429193, + 45.477005 + ], + [ + -73.428358, + 45.477224 + ], + [ + -73.427857, + 45.477363 + ], + [ + -73.427526, + 45.477457 + ], + [ + -73.427221, + 45.477556 + ], + [ + -73.427152, + 45.47758 + ], + [ + -73.426989, + 45.477637 + ], + [ + -73.426493, + 45.477825 + ], + [ + -73.426135, + 45.477978 + ], + [ + -73.425662, + 45.478198 + ], + [ + -73.425284, + 45.478387 + ], + [ + -73.424884, + 45.478612 + ], + [ + -73.424494, + 45.47885 + ], + [ + -73.424258, + 45.479012 + ], + [ + -73.423721, + 45.479389 + ], + [ + -73.423505, + 45.479554 + ], + [ + -73.423421, + 45.479618 + ], + [ + -73.421122, + 45.481312 + ], + [ + -73.421017, + 45.481389 + ], + [ + -73.419775, + 45.482315 + ], + [ + -73.419122, + 45.482809 + ], + [ + -73.418378, + 45.483361 + ], + [ + -73.417919, + 45.483709 + ], + [ + -73.417514, + 45.484019 + ], + [ + -73.4175, + 45.484029 + ], + [ + -73.416526, + 45.484761 + ], + [ + -73.416059, + 45.485134 + ], + [ + -73.415863, + 45.485305 + ], + [ + -73.415534, + 45.485624 + ], + [ + -73.415533, + 45.485624 + ], + [ + -73.415347, + 45.485822 + ], + [ + -73.41509, + 45.486114 + ], + [ + -73.414917, + 45.486334 + ], + [ + -73.41475, + 45.486555 + ], + [ + -73.414412, + 45.487013 + ], + [ + -73.41409, + 45.487458 + ], + [ + -73.413177, + 45.488751 + ], + [ + -73.413119, + 45.488834 + ], + [ + -73.413049, + 45.488947 + ], + [ + -73.411857, + 45.490612 + ], + [ + -73.411381, + 45.491275 + ], + [ + -73.4113, + 45.491389 + ], + [ + -73.410804, + 45.492083 + ], + [ + -73.410177, + 45.492961 + ], + [ + -73.409729, + 45.493588 + ], + [ + -73.409634, + 45.493716 + ], + [ + -73.409271, + 45.494208 + ], + [ + -73.409074, + 45.494473 + ], + [ + -73.409048, + 45.494509 + ], + [ + -73.408825, + 45.494811 + ], + [ + -73.408748, + 45.494972 + ], + [ + -73.408585, + 45.495202 + ], + [ + -73.408399, + 45.49546 + ], + [ + -73.408074, + 45.495912 + ], + [ + -73.407847, + 45.49623 + ], + [ + -73.407762, + 45.496348 + ], + [ + -73.407634, + 45.496528 + ], + [ + -73.407544, + 45.496654 + ], + [ + -73.40725, + 45.497068 + ], + [ + -73.4068, + 45.497701 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.406411, + 45.4982 + ], + [ + -73.405568, + 45.497876 + ], + [ + -73.405172, + 45.497723 + ], + [ + -73.404858, + 45.497588 + ], + [ + -73.404434, + 45.497426 + ], + [ + -73.403795, + 45.49716 + ], + [ + -73.403712, + 45.497124 + ], + [ + -73.403543, + 45.497051 + ], + [ + -73.402953, + 45.49679 + ], + [ + -73.402418, + 45.496555 + ], + [ + -73.401777, + 45.496261 + ], + [ + -73.401121, + 45.49596 + ], + [ + -73.400118, + 45.495495 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.396689, + 45.493887 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.395089, + 45.49314 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.392017, + 45.491453 + ], + [ + -73.392075, + 45.491404 + ], + [ + -73.392441, + 45.491125 + ], + [ + -73.392989, + 45.49068 + ], + [ + -73.393177, + 45.490469 + ], + [ + -73.39407, + 45.489264 + ], + [ + -73.393539, + 45.489286 + ], + [ + -73.393319, + 45.489571 + ] + ] + }, + "id": 295, + "properties": { + "id": "98cb3320-4773-40dd-bd53-2af59a761107", + "data": { + "gtfs": { + "shape_id": "542_1_A" + }, + "segments": [ + { + "distanceMeters": 762, + "travelTimeSeconds": 98 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 344, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 89, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 414, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 394, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 399, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 702, + "travelTimeSeconds": 92 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9694, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6445.489967420419, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.69, + "travelTimeWithoutDwellTimesSeconds": 1260, + "operatingTimeWithLayoverTimeSeconds": 1440, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1260, + "operatingSpeedWithLayoverMetersPerSecond": 6.73, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.69 + }, + "mode": "bus", + "name": "École Heritage", + "color": "#A32638", + "nodes": [ + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "b6dfeeab-9981-4db8-9a90-2e14691bf516", + "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", + "bd9b4c12-08ed-4715-ae67-eb179ed7f974", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "ff779c9a-cd83-463a-8d0c-a93f3584a187", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", + "c8919560-2bb2-4063-8184-8e6c296badbe", + "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", + "0e293c4f-51c2-4ecd-9469-442389cb7915", + "e865e27f-7453-42b2-9745-a8e5425a0276", + "f7218298-f862-4f68-aabe-7a0d51011bc1", + "7f82f5fb-e61e-43a9-957c-0c400fd3ecbd", + "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "78262195-7c3a-4ed5-81d8-a33c906e3099", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "d1cd707b-8ed5-4d1d-b1cb-7633cade451b", + "590769f9-bd2c-482c-8bd5-e3724936b683", + "3e90658d-8898-49d9-be57-5b29936d4a9e", + "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", + "33ed66fe-2193-4e2a-b51d-d25140b9ad80", + "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", + "69b9716f-dd31-4ae3-9736-6d5edb237b8a", + "8354e556-947c-481c-96bd-d61737767f2d", + "87ac0337-2ebc-4670-a2d4-e0f4a5b3c627" + ], + "stops": [], + "line_id": "5b532a49-8a37-4ff4-a60c-c9371575f861", + "segments": [ + 0, + 33, + 53, + 59, + 63, + 69, + 81, + 87, + 96, + 100, + 102, + 108, + 113, + 121, + 129, + 130, + 134, + 141, + 148, + 153, + 162, + 172, + 174, + 181, + 186, + 193, + 197, + 204, + 209, + 213, + 216, + 224, + 228, + 230, + 236, + 243 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 295, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.392155, + 45.491342 + ], + [ + -73.392075, + 45.491404 + ], + [ + -73.392017, + 45.491453 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.394224, + 45.492736 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.395959, + 45.493551 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.399587, + 45.495241 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.401121, + 45.49596 + ], + [ + -73.401614, + 45.496187 + ], + [ + -73.402418, + 45.496555 + ], + [ + -73.402953, + 45.49679 + ], + [ + -73.403406, + 45.49699 + ], + [ + -73.403543, + 45.497051 + ], + [ + -73.403795, + 45.49716 + ], + [ + -73.404434, + 45.497426 + ], + [ + -73.404858, + 45.497588 + ], + [ + -73.405172, + 45.497723 + ], + [ + -73.405568, + 45.497876 + ], + [ + -73.406282, + 45.49815 + ], + [ + -73.406411, + 45.4982 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.406574, + 45.498264 + ], + [ + -73.406813, + 45.497927 + ], + [ + -73.407382, + 45.497122 + ], + [ + -73.407644, + 45.496752 + ], + [ + -73.407675, + 45.496708 + ], + [ + -73.407892, + 45.496394 + ], + [ + -73.408205, + 45.495957 + ], + [ + -73.408715, + 45.495247 + ], + [ + -73.408772, + 45.495159 + ], + [ + -73.408851, + 45.495036 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.409271, + 45.494515 + ], + [ + -73.409537, + 45.494129 + ], + [ + -73.409872, + 45.493642 + ], + [ + -73.411368, + 45.491535 + ], + [ + -73.41144, + 45.491434 + ], + [ + -73.412048, + 45.490575 + ], + [ + -73.413093, + 45.489097 + ], + [ + -73.41317, + 45.488987 + ], + [ + -73.413246, + 45.48888 + ], + [ + -73.414235, + 45.487508 + ], + [ + -73.414543, + 45.487058 + ], + [ + -73.414879, + 45.486604 + ], + [ + -73.415045, + 45.486384 + ], + [ + -73.415216, + 45.486168 + ], + [ + -73.41547, + 45.485876 + ], + [ + -73.415615, + 45.485726 + ], + [ + -73.415653, + 45.485687 + ], + [ + -73.415881, + 45.485467 + ], + [ + -73.415979, + 45.485368 + ], + [ + -73.416171, + 45.485201 + ], + [ + -73.416634, + 45.484828 + ], + [ + -73.417619, + 45.484091 + ], + [ + -73.417793, + 45.483963 + ], + [ + -73.418029, + 45.48379 + ], + [ + -73.419479, + 45.482708 + ], + [ + -73.420488, + 45.481958 + ], + [ + -73.420745, + 45.481758 + ], + [ + -73.42103, + 45.481548 + ], + [ + -73.421135, + 45.481471 + ], + [ + -73.423424, + 45.479784 + ], + [ + -73.423539, + 45.479699 + ], + [ + -73.42384, + 45.47947 + ], + [ + -73.424374, + 45.479093 + ], + [ + -73.424606, + 45.47894 + ], + [ + -73.42499, + 45.478702 + ], + [ + -73.425384, + 45.478481 + ], + [ + -73.425755, + 45.478293 + ], + [ + -73.426224, + 45.478077 + ], + [ + -73.426575, + 45.477924 + ], + [ + -73.42688, + 45.477809 + ], + [ + -73.427064, + 45.47774 + ], + [ + -73.427293, + 45.477659 + ], + [ + -73.427592, + 45.477565 + ], + [ + -73.427919, + 45.477471 + ], + [ + -73.428417, + 45.477332 + ], + [ + -73.430191, + 45.476874 + ], + [ + -73.430341, + 45.476838 + ], + [ + -73.430884, + 45.476699 + ], + [ + -73.430987, + 45.476672 + ], + [ + -73.431616, + 45.47651 + ], + [ + -73.432188, + 45.476362 + ], + [ + -73.434429, + 45.475783 + ], + [ + -73.435096, + 45.475605 + ], + [ + -73.435306, + 45.475549 + ], + [ + -73.435634, + 45.475469 + ], + [ + -73.436518, + 45.475235 + ], + [ + -73.437045, + 45.475069 + ], + [ + -73.437596, + 45.47488 + ], + [ + -73.437872, + 45.474768 + ], + [ + -73.438084, + 45.474678 + ], + [ + -73.438194, + 45.474627 + ], + [ + -73.43841, + 45.474525 + ], + [ + -73.438836, + 45.474314 + ], + [ + -73.43909, + 45.474175 + ], + [ + -73.440044, + 45.473644 + ], + [ + -73.440381, + 45.473457 + ], + [ + -73.440533, + 45.473372 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.440904, + 45.473168 + ], + [ + -73.441015, + 45.473108 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.442526, + 45.472043 + ], + [ + -73.442653, + 45.471954 + ], + [ + -73.444466, + 45.470668 + ], + [ + -73.444558, + 45.470603 + ], + [ + -73.444697, + 45.470504 + ], + [ + -73.445328, + 45.470057 + ], + [ + -73.445338, + 45.470052 + ], + [ + -73.445622, + 45.469854 + ], + [ + -73.446091, + 45.469543 + ], + [ + -73.446383, + 45.469349 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.447066, + 45.468996 + ], + [ + -73.4474, + 45.468829 + ], + [ + -73.447822, + 45.468645 + ], + [ + -73.448427, + 45.468407 + ], + [ + -73.449383, + 45.468079 + ], + [ + -73.449747, + 45.467955 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450233, + 45.467787 + ], + [ + -73.451014, + 45.467517 + ], + [ + -73.451685, + 45.467271 + ], + [ + -73.451729, + 45.467255 + ], + [ + -73.451774, + 45.467238 + ], + [ + -73.452541, + 45.466973 + ], + [ + -73.452657, + 45.466933 + ], + [ + -73.453014, + 45.466803 + ], + [ + -73.45314, + 45.466749 + ], + [ + -73.453548, + 45.466537 + ], + [ + -73.453946, + 45.466304 + ], + [ + -73.454693, + 45.465786 + ], + [ + -73.454701, + 45.465781 + ], + [ + -73.45516, + 45.46545 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.455952, + 45.465079 + ], + [ + -73.456078, + 45.465023 + ], + [ + -73.456262, + 45.464907 + ], + [ + -73.456407, + 45.464824 + ], + [ + -73.456567, + 45.464772 + ], + [ + -73.456717, + 45.464744 + ], + [ + -73.456888, + 45.464733 + ], + [ + -73.457035, + 45.464719 + ], + [ + -73.45718, + 45.464674 + ], + [ + -73.457301, + 45.4646 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.458747, + 45.465455 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.460095, + 45.466428 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.460554, + 45.466805 + ], + [ + -73.460661, + 45.466886 + ], + [ + -73.461028, + 45.467148 + ], + [ + -73.46125, + 45.467305 + ], + [ + -73.461574, + 45.467542 + ], + [ + -73.461806, + 45.46771 + ], + [ + -73.461906, + 45.467783 + ], + [ + -73.461978, + 45.467836 + ], + [ + -73.462611, + 45.468268 + ], + [ + -73.462996, + 45.468568 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.465226, + 45.468287 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466768 + ] + ] + }, + "id": 296, + "properties": { + "id": "fe5793b3-28ff-4294-beac-9010aa3ed0f8", + "data": { + "gtfs": { + "shape_id": "542_2_R" + }, + "segments": [ + { + "distanceMeters": 266, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 68, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 82, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 424, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 345, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 487, + "travelTimeSeconds": 84 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8383, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6628.220671680418, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.82, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 5.17, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.82 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "ced239e0-91f5-4429-96fd-20bbb8fcfd11", + "70ea9063-86f0-43f5-9e7d-16ea087fc4ce", + "69b9716f-dd31-4ae3-9736-6d5edb237b8a", + "cb20b749-b55e-4251-94cd-215651864e8b", + "33ed66fe-2193-4e2a-b51d-d25140b9ad80", + "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", + "aab8672e-86c9-4a43-9806-f5135dc02b4e", + "50ca3159-13cc-4149-b07f-8267a31166e3", + "590769f9-bd2c-482c-8bd5-e3724936b683", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "78262195-7c3a-4ed5-81d8-a33c906e3099", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", + "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", + "8131cbf3-211d-4b69-adcb-9af688489a49", + "e865e27f-7453-42b2-9745-a8e5425a0276", + "0e293c4f-51c2-4ecd-9469-442389cb7915", + "71881b96-39d5-48ea-9242-5e05ded39cda", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "46c30d80-c93e-497b-a096-3a7c13e3723f", + "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", + "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "4fc83229-a15e-48e1-aa4f-fae0073dacf9", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "01153fa0-59fe-4f77-8e46-e418296b526d", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "131616ed-8c78-458b-a65e-78f1aeac1fc7" + ], + "stops": [], + "line_id": "5b532a49-8a37-4ff4-a60c-c9371575f861", + "segments": [ + 0, + 11, + 18, + 23, + 28, + 31, + 38, + 42, + 44, + 49, + 52, + 55, + 58, + 67, + 74, + 79, + 81, + 91, + 100, + 104, + 112, + 118, + 123, + 127, + 132, + 139, + 146, + 153, + 170, + 172, + 180, + 183, + 195 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 296, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.472413, + 45.438012 + ], + [ + -73.472271, + 45.438 + ], + [ + -73.471887, + 45.438576 + ], + [ + -73.471678, + 45.438891 + ], + [ + -73.47036, + 45.440883 + ], + [ + -73.470303, + 45.440969 + ], + [ + -73.470099, + 45.441352 + ], + [ + -73.470027, + 45.441639 + ], + [ + -73.470012, + 45.441666 + ], + [ + -73.469784, + 45.442018 + ], + [ + -73.469477, + 45.442492 + ], + [ + -73.469142, + 45.44301 + ], + [ + -73.469051, + 45.443151 + ], + [ + -73.468613, + 45.443844 + ], + [ + -73.468216, + 45.444456 + ], + [ + -73.468179, + 45.444519 + ], + [ + -73.468126, + 45.444631 + ], + [ + -73.468082, + 45.444748 + ], + [ + -73.468044, + 45.444901 + ], + [ + -73.468021, + 45.445022 + ], + [ + -73.467959, + 45.445234 + ], + [ + -73.467968, + 45.445351 + ], + [ + -73.467947, + 45.445454 + ], + [ + -73.467879, + 45.445603 + ], + [ + -73.467839, + 45.445642 + ], + [ + -73.467743, + 45.445738 + ], + [ + -73.46755, + 45.445972 + ], + [ + -73.467467, + 45.446048 + ], + [ + -73.467388, + 45.446125 + ], + [ + -73.466916, + 45.446619 + ], + [ + -73.466576, + 45.447132 + ], + [ + -73.466314, + 45.447523 + ], + [ + -73.466204, + 45.447915 + ], + [ + -73.466096, + 45.44836 + ], + [ + -73.466078, + 45.448455 + ], + [ + -73.466034, + 45.44854 + ], + [ + -73.466, + 45.448608 + ], + [ + -73.465053, + 45.450083 + ], + [ + -73.464774, + 45.450517 + ], + [ + -73.464689, + 45.45065 + ], + [ + -73.464437, + 45.450996 + ], + [ + -73.464171, + 45.451253 + ], + [ + -73.463604, + 45.451658 + ], + [ + -73.463473, + 45.451752 + ], + [ + -73.462794, + 45.452251 + ], + [ + -73.462647, + 45.452373 + ], + [ + -73.462227, + 45.45284 + ], + [ + -73.462066, + 45.453015 + ], + [ + -73.461995, + 45.453092 + ], + [ + -73.461756, + 45.453348 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.462891, + 45.45421 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.462597, + 45.455054 + ], + [ + -73.462203, + 45.455612 + ], + [ + -73.462014, + 45.455891 + ], + [ + -73.461927, + 45.45608 + ], + [ + -73.461874, + 45.456197 + ], + [ + -73.461786, + 45.456489 + ], + [ + -73.461737, + 45.456795 + ], + [ + -73.461721, + 45.457015 + ], + [ + -73.461746, + 45.457278 + ], + [ + -73.46176, + 45.45742 + ], + [ + -73.461867, + 45.457825 + ], + [ + -73.462081, + 45.458239 + ], + [ + -73.462238, + 45.458487 + ], + [ + -73.462455, + 45.458766 + ], + [ + -73.462613, + 45.458969 + ], + [ + -73.462647, + 45.459013 + ], + [ + -73.462712, + 45.459175 + ], + [ + -73.462745, + 45.459391 + ], + [ + -73.462909, + 45.460586 + ], + [ + -73.462922, + 45.460678 + ], + [ + -73.463035, + 45.46138 + ], + [ + -73.463097, + 45.461763 + ], + [ + -73.463101, + 45.461866 + ], + [ + -73.463058, + 45.461956 + ], + [ + -73.463004, + 45.46201 + ], + [ + -73.462984, + 45.46202 + ], + [ + -73.462926, + 45.462051 + ], + [ + -73.462839, + 45.462082 + ], + [ + -73.462729, + 45.462095 + ], + [ + -73.46213, + 45.462145 + ], + [ + -73.461332, + 45.462216 + ], + [ + -73.461274, + 45.462221 + ], + [ + -73.460596, + 45.46227 + ], + [ + -73.459742, + 45.462333 + ], + [ + -73.458611, + 45.462189 + ], + [ + -73.457924, + 45.462105 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.454674, + 45.46561 + ], + [ + -73.45456, + 45.465692 + ], + [ + -73.453819, + 45.466205 + ], + [ + -73.453432, + 45.466434 + ], + [ + -73.453035, + 45.466641 + ], + [ + -73.452922, + 45.46669 + ], + [ + -73.452797, + 45.466744 + ], + [ + -73.452589, + 45.466834 + ], + [ + -73.451972, + 45.467047 + ], + [ + -73.451705, + 45.467139 + ], + [ + -73.451627, + 45.467166 + ], + [ + -73.45158, + 45.467183 + ], + [ + -73.451026, + 45.467374 + ], + [ + -73.450937, + 45.467405 + ], + [ + -73.450156, + 45.467679 + ], + [ + -73.449888, + 45.467769 + ], + [ + -73.449338, + 45.467948 + ], + [ + -73.44837, + 45.46829 + ], + [ + -73.447748, + 45.468524 + ], + [ + -73.447289, + 45.468721 + ], + [ + -73.446446, + 45.469159 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445905, + 45.469485 + ], + [ + -73.445671, + 45.469643 + ], + [ + -73.445475, + 45.469778 + ], + [ + -73.445396, + 45.469832 + ], + [ + -73.445298, + 45.469899 + ], + [ + -73.444328, + 45.470583 + ], + [ + -73.444085, + 45.470754 + ], + [ + -73.442667, + 45.471755 + ], + [ + -73.442644, + 45.471771 + ], + [ + -73.442519, + 45.471859 + ], + [ + -73.441942, + 45.47227 + ], + [ + -73.44103, + 45.472919 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.440777, + 45.473082 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.439918, + 45.473559 + ], + [ + -73.438731, + 45.47422 + ], + [ + -73.438304, + 45.474435 + ], + [ + -73.438279, + 45.474446 + ], + [ + -73.437984, + 45.474579 + ], + [ + -73.437774, + 45.474669 + ], + [ + -73.437493, + 45.474781 + ], + [ + -73.436979, + 45.47497 + ], + [ + -73.436441, + 45.475136 + ], + [ + -73.43565, + 45.475338 + ], + [ + -73.435369, + 45.47541 + ], + [ + -73.435246, + 45.475441 + ], + [ + -73.434371, + 45.475675 + ], + [ + -73.43213, + 45.476249 + ], + [ + -73.431103, + 45.476513 + ], + [ + -73.430984, + 45.476543 + ], + [ + -73.43045, + 45.47668 + ], + [ + -73.430219, + 45.476739 + ], + [ + -73.43007, + 45.476775 + ], + [ + -73.430191, + 45.476874 + ], + [ + -73.430682, + 45.477184 + ], + [ + -73.43148, + 45.477725 + ], + [ + -73.43157, + 45.477787 + ], + [ + -73.432859, + 45.478671 + ], + [ + -73.433469, + 45.479085 + ], + [ + -73.433608, + 45.479179 + ], + [ + -73.435032, + 45.480148 + ], + [ + -73.435709, + 45.480603 + ], + [ + -73.435802, + 45.480665 + ], + [ + -73.4369, + 45.481417 + ], + [ + -73.437305, + 45.481694 + ], + [ + -73.437407, + 45.481764 + ], + [ + -73.438338, + 45.48239 + ], + [ + -73.438856, + 45.482754 + ], + [ + -73.438971, + 45.482836 + ], + [ + -73.439533, + 45.483272 + ], + [ + -73.440126, + 45.483709 + ], + [ + -73.44066, + 45.484118 + ], + [ + -73.440761, + 45.484195 + ], + [ + -73.441191, + 45.484533 + ], + [ + -73.441638, + 45.484884 + ], + [ + -73.442268, + 45.4854 + ], + [ + -73.44238, + 45.485492 + ], + [ + -73.442979, + 45.48598 + ], + [ + -73.443236, + 45.48619 + ], + [ + -73.443584, + 45.486491 + ], + [ + -73.443685, + 45.486573 + ], + [ + -73.443944, + 45.486784 + ], + [ + -73.444066, + 45.486883 + ], + [ + -73.444405, + 45.487149 + ], + [ + -73.44464, + 45.487266 + ], + [ + -73.444883, + 45.487369 + ], + [ + -73.445062, + 45.487428 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 297, + "properties": { + "id": "0fe4316e-b931-443c-92db-cd824d46e28d", + "data": { + "gtfs": { + "shape_id": "544_1_A" + }, + "segments": [ + { + "distanceMeters": 82, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 485, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 62, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 605, + "travelTimeSeconds": 92 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8369, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6223.748743879313, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.64, + "travelTimeWithoutDwellTimesSeconds": 1260, + "operatingTimeWithLayoverTimeSeconds": 1440, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1260, + "operatingSpeedWithLayoverMetersPerSecond": 5.81, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.64 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", + "e13d482c-ee57-4f7d-bc38-264ca460deda", + "daacedd2-0b84-4f73-9f01-d9072ec32dce", + "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", + "e7ac28b2-1ac9-4d12-811f-8e49f5a7d7ab", + "27cd912d-c30d-4955-977f-68eb1e010190", + "d300031f-a642-4e09-b48b-0e859400e1f7", + "90d9bb0e-4845-468b-af33-21831922eede", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", + "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", + "d13720b6-fb91-4a90-a816-addaef17cf17", + "d0325326-9fbf-42e2-aefa-29fa09853c10", + "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "bd9b4c12-08ed-4715-ae67-eb179ed7f974", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "ff779c9a-cd83-463a-8d0c-a93f3584a187", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", + "c8919560-2bb2-4063-8184-8e6c296badbe", + "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", + "a17f387c-1398-49f4-8a7b-291d91ebc51f", + "a09ea856-287c-4215-ad6a-dab05db66e7a", + "cd932703-83f9-4acf-94fa-d521e6d427d0", + "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", + "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "e72d0d41-60dd-429c-9fc0-986190945d76", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "373a7b53-1e55-4654-a394-ba44efadc255", + "segments": [ + 0, + 2, + 4, + 11, + 24, + 35, + 38, + 42, + 49, + 52, + 57, + 62, + 68, + 72, + 84, + 89, + 100, + 106, + 112, + 120, + 128, + 129, + 133, + 140, + 147, + 153, + 159, + 161, + 164, + 167, + 170, + 174, + 176, + 178, + 184 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 297, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445508, + 45.489489 + ], + [ + -73.4453, + 45.489165 + ], + [ + -73.445238, + 45.489052 + ], + [ + -73.445212, + 45.488985 + ], + [ + -73.445181, + 45.488904 + ], + [ + -73.445074, + 45.488728 + ], + [ + -73.445053, + 45.488544 + ], + [ + -73.445044, + 45.488377 + ], + [ + -73.445046, + 45.488242 + ], + [ + -73.445073, + 45.488085 + ], + [ + -73.445118, + 45.487932 + ], + [ + -73.445182, + 45.487779 + ], + [ + -73.445261, + 45.48759 + ], + [ + -73.445319, + 45.487496 + ], + [ + -73.445386, + 45.487388 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445129, + 45.48732 + ], + [ + -73.444962, + 45.487262 + ], + [ + -73.444731, + 45.487167 + ], + [ + -73.444565, + 45.487086 + ], + [ + -73.444194, + 45.486807 + ], + [ + -73.443808, + 45.486496 + ], + [ + -73.443706, + 45.486415 + ], + [ + -73.44336, + 45.486118 + ], + [ + -73.442629, + 45.485517 + ], + [ + -73.442528, + 45.485434 + ], + [ + -73.441754, + 45.484812 + ], + [ + -73.440973, + 45.484192 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.440245, + 45.483633 + ], + [ + -73.43964, + 45.483201 + ], + [ + -73.439156, + 45.482825 + ], + [ + -73.439083, + 45.482768 + ], + [ + -73.438464, + 45.482318 + ], + [ + -73.43764, + 45.481753 + ], + [ + -73.437512, + 45.481665 + ], + [ + -73.437014, + 45.481332 + ], + [ + -73.43603, + 45.480658 + ], + [ + -73.435909, + 45.480575 + ], + [ + -73.43514, + 45.480067 + ], + [ + -73.433831, + 45.479176 + ], + [ + -73.433717, + 45.479098 + ], + [ + -73.432962, + 45.478594 + ], + [ + -73.431686, + 45.477707 + ], + [ + -73.431589, + 45.477639 + ], + [ + -73.431156, + 45.477363 + ], + [ + -73.430828, + 45.477153 + ], + [ + -73.430771, + 45.477117 + ], + [ + -73.430341, + 45.476838 + ], + [ + -73.430884, + 45.476699 + ], + [ + -73.430994, + 45.47667 + ], + [ + -73.431616, + 45.47651 + ], + [ + -73.432125, + 45.476378 + ], + [ + -73.432188, + 45.476362 + ], + [ + -73.434429, + 45.475783 + ], + [ + -73.435116, + 45.4756 + ], + [ + -73.435306, + 45.475549 + ], + [ + -73.435634, + 45.475469 + ], + [ + -73.436518, + 45.475235 + ], + [ + -73.437045, + 45.475069 + ], + [ + -73.437596, + 45.47488 + ], + [ + -73.437872, + 45.474768 + ], + [ + -73.438084, + 45.474678 + ], + [ + -73.438213, + 45.474618 + ], + [ + -73.43841, + 45.474525 + ], + [ + -73.438836, + 45.474314 + ], + [ + -73.43909, + 45.474175 + ], + [ + -73.440044, + 45.473644 + ], + [ + -73.440381, + 45.473457 + ], + [ + -73.440543, + 45.473367 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.440904, + 45.473168 + ], + [ + -73.441015, + 45.473108 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.442535, + 45.472037 + ], + [ + -73.442653, + 45.471954 + ], + [ + -73.444466, + 45.470668 + ], + [ + -73.444558, + 45.470603 + ], + [ + -73.444707, + 45.470497 + ], + [ + -73.445328, + 45.470057 + ], + [ + -73.445338, + 45.470052 + ], + [ + -73.445622, + 45.469854 + ], + [ + -73.446091, + 45.469543 + ], + [ + -73.446393, + 45.469342 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.447066, + 45.468996 + ], + [ + -73.4474, + 45.468829 + ], + [ + -73.447822, + 45.468645 + ], + [ + -73.448427, + 45.468407 + ], + [ + -73.449383, + 45.468079 + ], + [ + -73.449762, + 45.46795 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450233, + 45.467787 + ], + [ + -73.451014, + 45.467517 + ], + [ + -73.451685, + 45.467271 + ], + [ + -73.451729, + 45.467255 + ], + [ + -73.451774, + 45.467238 + ], + [ + -73.452568, + 45.466963 + ], + [ + -73.452657, + 45.466933 + ], + [ + -73.453014, + 45.466803 + ], + [ + -73.45314, + 45.466749 + ], + [ + -73.453548, + 45.466537 + ], + [ + -73.453946, + 45.466304 + ], + [ + -73.454693, + 45.465786 + ], + [ + -73.454723, + 45.465765 + ], + [ + -73.45516, + 45.46545 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.457621, + 45.462205 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.458544, + 45.46218 + ], + [ + -73.458611, + 45.462189 + ], + [ + -73.459742, + 45.462333 + ], + [ + -73.460596, + 45.46227 + ], + [ + -73.461029, + 45.462239 + ], + [ + -73.461274, + 45.462221 + ], + [ + -73.46213, + 45.462145 + ], + [ + -73.462729, + 45.462095 + ], + [ + -73.462839, + 45.462082 + ], + [ + -73.462926, + 45.462051 + ], + [ + -73.462984, + 45.46202 + ], + [ + -73.463004, + 45.46201 + ], + [ + -73.463058, + 45.461956 + ], + [ + -73.463101, + 45.461866 + ], + [ + -73.463097, + 45.461763 + ], + [ + -73.463035, + 45.46138 + ], + [ + -73.462934, + 45.460754 + ], + [ + -73.462922, + 45.460678 + ], + [ + -73.462764, + 45.459529 + ], + [ + -73.462745, + 45.459391 + ], + [ + -73.462712, + 45.459175 + ], + [ + -73.462647, + 45.459013 + ], + [ + -73.462455, + 45.458766 + ], + [ + -73.462238, + 45.458487 + ], + [ + -73.462081, + 45.458239 + ], + [ + -73.461867, + 45.457825 + ], + [ + -73.461772, + 45.457464 + ], + [ + -73.46176, + 45.45742 + ], + [ + -73.461721, + 45.457015 + ], + [ + -73.461737, + 45.456795 + ], + [ + -73.461786, + 45.456489 + ], + [ + -73.461836, + 45.456321 + ], + [ + -73.461874, + 45.456197 + ], + [ + -73.462014, + 45.455891 + ], + [ + -73.462203, + 45.455612 + ], + [ + -73.462531, + 45.455147 + ], + [ + -73.462597, + 45.455054 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.461792, + 45.45357 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.461995, + 45.453092 + ], + [ + -73.462227, + 45.45284 + ], + [ + -73.462647, + 45.452373 + ], + [ + -73.462794, + 45.452251 + ], + [ + -73.463327, + 45.45186 + ], + [ + -73.463473, + 45.451752 + ], + [ + -73.464171, + 45.451253 + ], + [ + -73.464437, + 45.450996 + ], + [ + -73.464567, + 45.450818 + ], + [ + -73.464689, + 45.45065 + ], + [ + -73.465053, + 45.450083 + ], + [ + -73.465978, + 45.448642 + ], + [ + -73.466, + 45.448608 + ], + [ + -73.466078, + 45.448455 + ], + [ + -73.466096, + 45.44836 + ], + [ + -73.466204, + 45.447915 + ], + [ + -73.466314, + 45.447523 + ], + [ + -73.466576, + 45.447132 + ], + [ + -73.466916, + 45.446619 + ], + [ + -73.467118, + 45.446407 + ], + [ + -73.467388, + 45.446125 + ], + [ + -73.467467, + 45.446048 + ], + [ + -73.46755, + 45.445972 + ], + [ + -73.467743, + 45.445738 + ], + [ + -73.467879, + 45.445603 + ], + [ + -73.467947, + 45.445454 + ], + [ + -73.467968, + 45.445351 + ], + [ + -73.467959, + 45.445234 + ], + [ + -73.468021, + 45.445022 + ], + [ + -73.468044, + 45.444901 + ], + [ + -73.468082, + 45.444748 + ], + [ + -73.468126, + 45.444631 + ], + [ + -73.468179, + 45.444519 + ], + [ + -73.468216, + 45.444456 + ], + [ + -73.468613, + 45.443844 + ], + [ + -73.468958, + 45.443298 + ], + [ + -73.469051, + 45.443151 + ], + [ + -73.469477, + 45.442492 + ], + [ + -73.469784, + 45.442018 + ], + [ + -73.470012, + 45.441666 + ], + [ + -73.470027, + 45.441639 + ], + [ + -73.470099, + 45.441352 + ], + [ + -73.47026, + 45.441049 + ], + [ + -73.470303, + 45.440969 + ], + [ + -73.471678, + 45.438891 + ], + [ + -73.472217, + 45.438081 + ] + ] + }, + "id": 298, + "properties": { + "id": "3be2034d-6a23-4475-ac32-ada8373b988a", + "data": { + "gtfs": { + "shape_id": "544_2_R" + }, + "segments": [ + { + "distanceMeters": 757, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 91, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 343, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 463, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 84, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 380, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 364, + "travelTimeSeconds": 58 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8296, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6223.748743879313, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.28, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 5.53, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.28 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", + "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", + "cd932703-83f9-4acf-94fa-d521e6d427d0", + "a09ea856-287c-4215-ad6a-dab05db66e7a", + "a17f387c-1398-49f4-8a7b-291d91ebc51f", + "71881b96-39d5-48ea-9242-5e05ded39cda", + "71881b96-39d5-48ea-9242-5e05ded39cda", + "126ef269-cdfb-4230-9d48-8082f5180c1a", + "46c30d80-c93e-497b-a096-3a7c13e3723f", + "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", + "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "4fc83229-a15e-48e1-aa4f-fae0073dacf9", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "5d862a7d-92b0-4def-8199-258993ce3523", + "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", + "d0325326-9fbf-42e2-aefa-29fa09853c10", + "d13720b6-fb91-4a90-a816-addaef17cf17", + "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", + "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", + "5b030db6-8eaf-4505-a2c0-5a5290886d5b", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "90d9bb0e-4845-468b-af33-21831922eede", + "d300031f-a642-4e09-b48b-0e859400e1f7", + "27cd912d-c30d-4955-977f-68eb1e010190", + "809d30b8-456e-4e86-b782-8a6448d546e0", + "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", + "daacedd2-0b84-4f73-9f01-d9072ec32dce", + "4a2d3316-6189-4ef5-b2d8-0d855b8ad675" + ], + "stops": [], + "line_id": "373a7b53-1e55-4654-a394-ba44efadc255", + "segments": [ + 0, + 38, + 41, + 45, + 48, + 51, + 54, + 57, + 60, + 64, + 69, + 77, + 83, + 88, + 92, + 97, + 104, + 111, + 118, + 130, + 132, + 136, + 148, + 150, + 158, + 163, + 167, + 172, + 178, + 182, + 185, + 193, + 209, + 216 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 298, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.490549, + 45.447733 + ], + [ + -73.490554, + 45.447636 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.490565, + 45.447402 + ], + [ + -73.49061, + 45.446822 + ], + [ + -73.491053, + 45.445413 + ], + [ + -73.491055, + 45.445404 + ], + [ + -73.491092, + 45.445287 + ], + [ + -73.491285, + 45.444689 + ], + [ + -73.491504, + 45.443969 + ], + [ + -73.491549, + 45.44338 + ], + [ + -73.491559, + 45.443245 + ], + [ + -73.492476, + 45.443271 + ], + [ + -73.492685, + 45.443277 + ], + [ + -73.492825, + 45.443281 + ], + [ + -73.49278, + 45.443672 + ], + [ + -73.492671, + 45.445045 + ], + [ + -73.492587, + 45.445944 + ], + [ + -73.492457, + 45.447463 + ], + [ + -73.49245, + 45.447542 + ], + [ + -73.491852, + 45.447527 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.490554, + 45.447636 + ], + [ + -73.490536, + 45.447988 + ], + [ + -73.490521, + 45.448293 + ], + [ + -73.490407, + 45.449504 + ], + [ + -73.490386, + 45.449719 + ], + [ + -73.490356, + 45.450109 + ], + [ + -73.490274, + 45.451145 + ], + [ + -73.490184, + 45.451908 + ], + [ + -73.490174, + 45.451996 + ], + [ + -73.490164, + 45.452099 + ], + [ + -73.490107, + 45.452689 + ], + [ + -73.490099, + 45.452842 + ], + [ + -73.490095, + 45.452936 + ], + [ + -73.490138, + 45.453076 + ], + [ + -73.490177, + 45.453161 + ], + [ + -73.490251, + 45.453269 + ], + [ + -73.490337, + 45.453359 + ], + [ + -73.490542, + 45.453511 + ], + [ + -73.49064, + 45.453584 + ], + [ + -73.490922, + 45.453778 + ], + [ + -73.491049, + 45.453868 + ], + [ + -73.491205, + 45.454016 + ], + [ + -73.491307, + 45.454169 + ], + [ + -73.491353, + 45.454286 + ], + [ + -73.491385, + 45.45439 + ], + [ + -73.491385, + 45.45452 + ], + [ + -73.491384, + 45.454537 + ], + [ + -73.491379, + 45.454673 + ], + [ + -73.491306, + 45.455478 + ], + [ + -73.491179, + 45.455672 + ], + [ + -73.49101, + 45.455802 + ], + [ + -73.491002, + 45.455806 + ], + [ + -73.490874, + 45.45587 + ], + [ + -73.490235, + 45.456194 + ], + [ + -73.490047, + 45.45632 + ], + [ + -73.489891, + 45.45645 + ], + [ + -73.489837, + 45.456558 + ], + [ + -73.489805, + 45.456679 + ], + [ + -73.48979, + 45.456792 + ], + [ + -73.489787, + 45.45681 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.489765, + 45.457071 + ], + [ + -73.489763, + 45.457296 + ], + [ + -73.489736, + 45.457408 + ], + [ + -73.489694, + 45.457516 + ], + [ + -73.489182, + 45.458344 + ], + [ + -73.489058, + 45.458542 + ], + [ + -73.488929, + 45.458754 + ], + [ + -73.48884, + 45.458976 + ], + [ + -73.488828, + 45.459006 + ], + [ + -73.488777, + 45.459727 + ], + [ + -73.488701, + 45.460814 + ], + [ + -73.488665, + 45.4614 + ], + [ + -73.488659, + 45.461512 + ], + [ + -73.488594, + 45.462464 + ], + [ + -73.488573, + 45.462762 + ], + [ + -73.488498, + 45.462929 + ], + [ + -73.488349, + 45.463109 + ], + [ + -73.488147, + 45.463215 + ], + [ + -73.488109, + 45.463235 + ], + [ + -73.487821, + 45.463302 + ], + [ + -73.487412, + 45.463379 + ], + [ + -73.487283, + 45.463388 + ], + [ + -73.487042, + 45.463406 + ], + [ + -73.486606, + 45.463401 + ], + [ + -73.486489, + 45.463401 + ], + [ + -73.486321, + 45.463433 + ], + [ + -73.486243, + 45.463455 + ], + [ + -73.486089, + 45.463495 + ], + [ + -73.485952, + 45.463553 + ], + [ + -73.485896, + 45.463576 + ], + [ + -73.485826, + 45.463612 + ], + [ + -73.485277, + 45.463878 + ], + [ + -73.485098, + 45.46395 + ], + [ + -73.484961, + 45.463999 + ], + [ + -73.484817, + 45.464035 + ], + [ + -73.484669, + 45.464067 + ], + [ + -73.484494, + 45.464076 + ], + [ + -73.484342, + 45.46408 + ], + [ + -73.48257, + 45.464048 + ], + [ + -73.482584, + 45.463697 + ], + [ + -73.482595, + 45.463423 + ], + [ + -73.482613, + 45.462807 + ], + [ + -73.482585, + 45.462708 + ], + [ + -73.482548, + 45.462559 + ], + [ + -73.48256, + 45.462375 + ], + [ + -73.482561, + 45.462353 + ], + [ + -73.482568, + 45.462177 + ], + [ + -73.482575, + 45.461956 + ], + [ + -73.482605, + 45.461662 + ], + [ + -73.482626, + 45.461448 + ], + [ + -73.482754, + 45.460997 + ], + [ + -73.482782, + 45.460899 + ], + [ + -73.483264, + 45.459885 + ], + [ + -73.483304, + 45.459801 + ], + [ + -73.483406, + 45.459504 + ], + [ + -73.4835, + 45.459081 + ], + [ + -73.483547, + 45.458852 + ], + [ + -73.483587, + 45.458486 + ], + [ + -73.483595, + 45.45842 + ], + [ + -73.48364, + 45.457923 + ], + [ + -73.483653, + 45.457786 + ], + [ + -73.483674, + 45.457283 + ], + [ + -73.483692, + 45.456872 + ], + [ + -73.483698, + 45.456733 + ], + [ + -73.482908, + 45.456699 + ], + [ + -73.482756, + 45.456692 + ], + [ + -73.482803, + 45.455945 + ], + [ + -73.482873, + 45.455347 + ], + [ + -73.482933, + 45.455144 + ], + [ + -73.483011, + 45.454952 + ], + [ + -73.483041, + 45.454879 + ], + [ + -73.483256, + 45.454555 + ], + [ + -73.483527, + 45.454254 + ], + [ + -73.483647, + 45.454132 + ], + [ + -73.48375, + 45.454002 + ], + [ + -73.48383, + 45.453858 + ], + [ + -73.483876, + 45.453709 + ], + [ + -73.483893, + 45.453567 + ], + [ + -73.483908, + 45.453444 + ], + [ + -73.483918, + 45.453192 + ], + [ + -73.483914, + 45.453106 + ], + [ + -73.483846, + 45.452963 + ], + [ + -73.483803, + 45.452872 + ], + [ + -73.483523, + 45.452683 + ], + [ + -73.483385, + 45.452634 + ], + [ + -73.483204, + 45.452607 + ], + [ + -73.482285, + 45.452579 + ], + [ + -73.481533, + 45.452556 + ], + [ + -73.481291, + 45.452548 + ], + [ + -73.480742, + 45.452539 + ], + [ + -73.480267, + 45.452543 + ], + [ + -73.479609, + 45.452606 + ], + [ + -73.479441, + 45.452631 + ], + [ + -73.479278, + 45.452656 + ], + [ + -73.479123, + 45.452678 + ], + [ + -73.479207, + 45.453038 + ], + [ + -73.479292, + 45.453398 + ], + [ + -73.479352, + 45.453722 + ], + [ + -73.479396, + 45.454042 + ], + [ + -73.47947, + 45.454763 + ], + [ + -73.47953, + 45.455342 + ], + [ + -73.479549, + 45.455666 + ], + [ + -73.479585, + 45.456089 + ], + [ + -73.479607, + 45.456396 + ], + [ + -73.479622, + 45.456606 + ], + [ + -73.479632, + 45.456719 + ], + [ + -73.47968, + 45.45724 + ], + [ + -73.479701, + 45.457465 + ], + [ + -73.47972, + 45.457668 + ], + [ + -73.479747, + 45.458082 + ], + [ + -73.479754, + 45.45832 + ], + [ + -73.479732, + 45.458469 + ], + [ + -73.479695, + 45.458689 + ], + [ + -73.479603, + 45.459 + ], + [ + -73.479545, + 45.459171 + ], + [ + -73.479519, + 45.459226 + ], + [ + -73.479465, + 45.459342 + ], + [ + -73.479339, + 45.459576 + ], + [ + -73.479253, + 45.45972 + ], + [ + -73.479162, + 45.45985 + ], + [ + -73.478872, + 45.460205 + ], + [ + -73.478751, + 45.460331 + ], + [ + -73.478332, + 45.460692 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.476655, + 45.461967 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.474375, + 45.468221 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474292, + 45.469387 + ], + [ + -73.47426, + 45.469555 + ], + [ + -73.474234, + 45.469689 + ], + [ + -73.474156, + 45.470095 + ], + [ + -73.474035, + 45.470724 + ], + [ + -73.473974, + 45.47107 + ], + [ + -73.473942, + 45.471336 + ], + [ + -73.473932, + 45.471601 + ], + [ + -73.473937, + 45.47168 + ], + [ + -73.473947, + 45.471826 + ], + [ + -73.473986, + 45.472118 + ], + [ + -73.473998, + 45.472177 + ], + [ + -73.474046, + 45.47242 + ], + [ + -73.474106, + 45.47264 + ], + [ + -73.474275, + 45.473063 + ], + [ + -73.474463, + 45.473437 + ], + [ + -73.474007, + 45.473581 + ], + [ + -73.473846, + 45.473648 + ], + [ + -73.473736, + 45.473702 + ], + [ + -73.473545, + 45.473797 + ], + [ + -73.473485, + 45.47383 + ], + [ + -73.473457, + 45.473846 + ], + [ + -73.473334, + 45.473927 + ], + [ + -73.473141, + 45.474053 + ], + [ + -73.473062, + 45.474109 + ], + [ + -73.472074, + 45.474808 + ], + [ + -73.471729, + 45.474583 + ], + [ + -73.470391, + 45.473622 + ], + [ + -73.470064, + 45.473386 + ], + [ + -73.468607, + 45.472409 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467508, + 45.472063 + ], + [ + -73.467493, + 45.472108 + ], + [ + -73.467347, + 45.472549 + ], + [ + -73.467254, + 45.472832 + ], + [ + -73.467075, + 45.473412 + ], + [ + -73.467018, + 45.473612 + ], + [ + -73.46686, + 45.474168 + ], + [ + -73.466715, + 45.474632 + ], + [ + -73.466501, + 45.475269 + ], + [ + -73.466278, + 45.475935 + ], + [ + -73.466234, + 45.476067 + ], + [ + -73.46613, + 45.476374 + ], + [ + -73.465592, + 45.477979 + ], + [ + -73.465357, + 45.478703 + ], + [ + -73.465344, + 45.478738 + ], + [ + -73.465269, + 45.478932 + ], + [ + -73.465247, + 45.479 + ], + [ + -73.465125, + 45.479367 + ], + [ + -73.464879, + 45.480107 + ], + [ + -73.464823, + 45.480273 + ], + [ + -73.464733, + 45.480574 + ], + [ + -73.464664, + 45.480885 + ], + [ + -73.464648, + 45.481004 + ], + [ + -73.464634, + 45.481108 + ], + [ + -73.464622, + 45.481195 + ], + [ + -73.464619, + 45.481245 + ], + [ + -73.464603, + 45.481524 + ], + [ + -73.464619, + 45.481956 + ], + [ + -73.464693, + 45.482383 + ], + [ + -73.464736, + 45.482559 + ], + [ + -73.46485, + 45.482905 + ], + [ + -73.46499, + 45.483243 + ], + [ + -73.465069, + 45.483405 + ], + [ + -73.465231, + 45.483688 + ], + [ + -73.465328, + 45.483837 + ], + [ + -73.465516, + 45.484318 + ], + [ + -73.465535, + 45.48439 + ], + [ + -73.465531, + 45.484453 + ], + [ + -73.465521, + 45.484494 + ], + [ + -73.465494, + 45.484521 + ], + [ + -73.465474, + 45.484542 + ], + [ + -73.465464, + 45.484552 + ], + [ + -73.46542, + 45.484575 + ], + [ + -73.465379, + 45.484592 + ], + [ + -73.465324, + 45.484601 + ], + [ + -73.465214, + 45.484601 + ], + [ + -73.464965, + 45.484574 + ], + [ + -73.464559, + 45.484417 + ], + [ + -73.464508, + 45.484399 + ], + [ + -73.464185, + 45.484291 + ], + [ + -73.463703, + 45.484155 + ], + [ + -73.463657, + 45.484142 + ], + [ + -73.46319, + 45.484029 + ], + [ + -73.462672, + 45.483908 + ], + [ + -73.462287, + 45.483831 + ], + [ + -73.462032, + 45.483791 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.46135, + 45.4837 + ], + [ + -73.460838, + 45.483637 + ], + [ + -73.460197, + 45.483582 + ], + [ + -73.459999, + 45.483565 + ], + [ + -73.459497, + 45.483511 + ], + [ + -73.459033, + 45.483457 + ], + [ + -73.458739, + 45.483407 + ], + [ + -73.458547, + 45.483371 + ], + [ + -73.458333, + 45.483321 + ], + [ + -73.458016, + 45.483245 + ], + [ + -73.45777, + 45.483182 + ], + [ + -73.45751, + 45.483107 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45645, + 45.482799 + ], + [ + -73.455886, + 45.482623 + ], + [ + -73.455654, + 45.482542 + ], + [ + -73.455462, + 45.482465 + ], + [ + -73.455289, + 45.48239 + ], + [ + -73.455276, + 45.482384 + ], + [ + -73.455009, + 45.482272 + ], + [ + -73.454605, + 45.482087 + ], + [ + -73.454381, + 45.481984 + ], + [ + -73.454145, + 45.481862 + ], + [ + -73.453796, + 45.481673 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452379, + 45.481446 + ], + [ + -73.452062, + 45.481636 + ], + [ + -73.45135, + 45.482063 + ], + [ + -73.451266, + 45.482113 + ], + [ + -73.450112, + 45.482799 + ], + [ + -73.449882, + 45.482936 + ], + [ + -73.449245, + 45.483336 + ], + [ + -73.449101, + 45.483471 + ], + [ + -73.448914, + 45.483713 + ], + [ + -73.448817, + 45.483898 + ], + [ + -73.448629, + 45.484109 + ], + [ + -73.44844, + 45.484271 + ], + [ + -73.448225, + 45.484479 + ], + [ + -73.44775, + 45.484937 + ], + [ + -73.447415, + 45.485256 + ], + [ + -73.447237, + 45.485427 + ], + [ + -73.447005, + 45.485643 + ], + [ + -73.44679, + 45.485848 + ], + [ + -73.446708, + 45.485926 + ], + [ + -73.445795, + 45.486794 + ], + [ + -73.445654, + 45.486915 + ], + [ + -73.445524, + 45.487041 + ], + [ + -73.445408, + 45.487167 + ], + [ + -73.445366, + 45.487222 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 299, + "properties": { + "id": "e1aefbbf-b4fe-495c-83b7-c77bd5ff6986", + "data": { + "gtfs": { + "shape_id": "546_1_A" + }, + "segments": [ + { + "distanceMeters": 262, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 477, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 392, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 750, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 403, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 436, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 72, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 838, + "travelTimeSeconds": 134 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 404, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 510, + "travelTimeSeconds": 82 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 198, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12407, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5927.194396535737, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.27, + "travelTimeWithoutDwellTimesSeconds": 1980, + "operatingTimeWithLayoverTimeSeconds": 2178, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1980, + "operatingSpeedWithLayoverMetersPerSecond": 5.7, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.27 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "56755a3d-6779-4355-8b48-27271fb6ce0b", + "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", + "14d2c36b-50a3-4d98-8947-81016b2b2927", + "0d8bc8fc-204a-4f67-a22f-4e3e93df3587", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "997c4af9-ab50-4dfb-941a-afadff58f267", + "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", + "c7c30949-db61-44fc-b7ab-a69b9fde12cc", + "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", + "f1131e74-6c65-4f22-a18d-41dbe35e4576", + "984def83-5f59-45f7-bb33-ed1dbca30502", + "5a6d8067-b58d-4ab2-838e-422e8f003ee9", + "9c711698-0f65-4997-8a72-24f5d8ab8fb7", + "1339471a-52fa-47e9-b0e4-753bf917ef08", + "57de752e-d268-4125-8223-581e6c2ff56e", + "2ecca6ee-e688-465d-a0b1-929435b41047", + "57b17011-c22d-458b-b4e5-e636c5436ed9", + "e51dbc0e-9385-4f59-b401-fd29a59c8b5b", + "d2127fc0-fbc1-4459-b6f9-07c0b8d9cdbe", + "258cb5fd-8795-41af-8e07-3de8ea977e23", + "ecb00316-793a-4c41-88bd-3870bea4d999", + "f92fabb3-5544-4aa3-8461-0c7fc17380ef", + "f889063d-4196-4990-bc8c-d6010d0c0192", + "95a6ef09-da34-422a-81ec-389b0e0bb278", + "c25adb1f-635e-4881-a89d-af8a9ea5ca92", + "87774b57-5ee3-418d-948c-ba4db73d3893", + "1ea7db5e-3ee6-4553-9276-7c24296c866d", + "9a86a407-515f-4b5e-8a56-9a4c52c91c96", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", + "3a8b9936-4595-4770-a3f4-b31253602356", + "82735dcc-3897-4e4c-87e8-45ee1dacedaa", + "85f19be2-1f67-4673-b3b3-52d06ed31ae3", + "47d29e21-b442-4f1e-bc41-0d7871af14e8", + "7eaffbff-c86c-4810-b174-bda8780c04b4", + "e76a6766-6730-419b-bd29-f65b80bb6721", + "bf51d692-a22e-42e9-a495-2d1955e0c462", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "491099bb-9493-4888-bd4e-20bd2140830a", + "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", + "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "d9b94443-0b59-40db-aecb-0acb5ea7976c", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "21e06751-3bad-4297-b332-9006f4a5a05d", + "segments": [ + 0, + 5, + 10, + 13, + 18, + 23, + 25, + 29, + 39, + 48, + 53, + 60, + 70, + 74, + 91, + 102, + 108, + 113, + 115, + 120, + 124, + 127, + 132, + 144, + 150, + 155, + 162, + 166, + 169, + 178, + 185, + 187, + 215, + 220, + 227, + 239, + 246, + 254, + 263, + 266, + 269, + 274, + 312, + 321, + 327, + 340, + 341, + 349, + 354, + 360 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 299, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446649, + 45.490498 + ], + [ + -73.446822, + 45.490639 + ], + [ + -73.44688, + 45.490686 + ], + [ + -73.447262, + 45.491006 + ], + [ + -73.447337, + 45.491069 + ], + [ + -73.447665, + 45.490889 + ], + [ + -73.448136, + 45.490592 + ], + [ + -73.44848, + 45.49039 + ], + [ + -73.448793, + 45.490206 + ], + [ + -73.44919, + 45.489963 + ], + [ + -73.44932, + 45.489889 + ], + [ + -73.449476, + 45.489801 + ], + [ + -73.450048, + 45.489455 + ], + [ + -73.450226, + 45.489293 + ], + [ + -73.450385, + 45.489131 + ], + [ + -73.450522, + 45.488807 + ], + [ + -73.450554, + 45.488635 + ], + [ + -73.450562, + 45.488591 + ], + [ + -73.450564, + 45.488501 + ], + [ + -73.451142, + 45.48852 + ], + [ + -73.451437, + 45.488556 + ], + [ + -73.451471, + 45.48856 + ], + [ + -73.451663, + 45.488618 + ], + [ + -73.451864, + 45.488677 + ], + [ + -73.452026, + 45.48874 + ], + [ + -73.452059, + 45.488756 + ], + [ + -73.45223, + 45.488835 + ], + [ + -73.452277, + 45.488867 + ], + [ + -73.452316, + 45.488894 + ], + [ + -73.452398, + 45.488943 + ], + [ + -73.452482, + 45.488993 + ], + [ + -73.452596, + 45.489092 + ], + [ + -73.452853, + 45.489389 + ], + [ + -73.453059, + 45.489641 + ], + [ + -73.453301, + 45.489897 + ], + [ + -73.453554, + 45.490154 + ], + [ + -73.453816, + 45.490388 + ], + [ + -73.454028, + 45.490572 + ], + [ + -73.454376, + 45.490852 + ], + [ + -73.4547, + 45.491108 + ], + [ + -73.454792, + 45.49118 + ], + [ + -73.455383, + 45.490825 + ], + [ + -73.456177, + 45.490348 + ], + [ + -73.456382, + 45.490186 + ], + [ + -73.45652, + 45.490034 + ], + [ + -73.456589, + 45.489894 + ], + [ + -73.456688, + 45.489687 + ], + [ + -73.456693, + 45.489668 + ], + [ + -73.456709, + 45.489602 + ], + [ + -73.456724, + 45.489525 + ], + [ + -73.456835, + 45.488612 + ], + [ + -73.456898, + 45.488075 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457729, + 45.48665 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.459257, + 45.48572 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.46022, + 45.485044 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.461105, + 45.484438 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.462585, + 45.484043 + ], + [ + -73.463416, + 45.484224 + ], + [ + -73.463639, + 45.484291 + ], + [ + -73.464599, + 45.48462 + ], + [ + -73.465244, + 45.484835 + ], + [ + -73.465443, + 45.484908 + ], + [ + -73.465586, + 45.484937 + ], + [ + -73.465724, + 45.484942 + ], + [ + -73.465848, + 45.484931 + ], + [ + -73.466018, + 45.484884 + ], + [ + -73.466121, + 45.484844 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466302, + 45.484687 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466188, + 45.484448 + ], + [ + -73.466149, + 45.484395 + ], + [ + -73.466127, + 45.48437 + ], + [ + -73.465905, + 45.484113 + ], + [ + -73.465719, + 45.4839 + ], + [ + -73.46546, + 45.483541 + ], + [ + -73.465236, + 45.483174 + ], + [ + -73.465161, + 45.483037 + ], + [ + -73.465057, + 45.482799 + ], + [ + -73.464968, + 45.48254 + ], + [ + -73.46489, + 45.482284 + ], + [ + -73.464833, + 45.481906 + ], + [ + -73.464816, + 45.481524 + ], + [ + -73.464841, + 45.481196 + ], + [ + -73.464843, + 45.481165 + ], + [ + -73.464847, + 45.481114 + ], + [ + -73.464866, + 45.480979 + ], + [ + -73.46492, + 45.48071 + ], + [ + -73.465032, + 45.480327 + ], + [ + -73.465198, + 45.479819 + ], + [ + -73.46547, + 45.479009 + ], + [ + -73.465548, + 45.478776 + ], + [ + -73.465652, + 45.478467 + ], + [ + -73.465874, + 45.477808 + ], + [ + -73.466475, + 45.475992 + ], + [ + -73.466484, + 45.475966 + ], + [ + -73.466637, + 45.475504 + ], + [ + -73.467366, + 45.473305 + ], + [ + -73.467616, + 45.472553 + ], + [ + -73.467822, + 45.472468 + ], + [ + -73.467906, + 45.472436 + ], + [ + -73.468005, + 45.472409 + ], + [ + -73.468127, + 45.472396 + ], + [ + -73.468231, + 45.472409 + ], + [ + -73.468368, + 45.472441 + ], + [ + -73.468499, + 45.472486 + ], + [ + -73.469144, + 45.472936 + ], + [ + -73.469236, + 45.473 + ], + [ + -73.469667, + 45.4733 + ], + [ + -73.469926, + 45.473481 + ], + [ + -73.471608, + 45.474678 + ], + [ + -73.471807, + 45.474825 + ], + [ + -73.471919, + 45.474907 + ], + [ + -73.472018, + 45.474979 + ], + [ + -73.47218, + 45.47489 + ], + [ + -73.472421, + 45.474721 + ], + [ + -73.473247, + 45.474143 + ], + [ + -73.473271, + 45.474127 + ], + [ + -73.473452, + 45.474003 + ], + [ + -73.47356, + 45.473931 + ], + [ + -73.47364, + 45.473887 + ], + [ + -73.473932, + 45.473738 + ], + [ + -73.474194, + 45.473626 + ], + [ + -73.474513, + 45.473518 + ], + [ + -73.474653, + 45.473477 + ], + [ + -73.474613, + 45.473387 + ], + [ + -73.47455, + 45.473262 + ], + [ + -73.474431, + 45.473027 + ], + [ + -73.474274, + 45.472609 + ], + [ + -73.474213, + 45.472397 + ], + [ + -73.474173, + 45.472208 + ], + [ + -73.474165, + 45.472163 + ], + [ + -73.474141, + 45.472028 + ], + [ + -73.474136, + 45.471996 + ], + [ + -73.47411, + 45.47183 + ], + [ + -73.474121, + 45.471228 + ], + [ + -73.474166, + 45.470967 + ], + [ + -73.474399, + 45.469698 + ], + [ + -73.474425, + 45.469556 + ], + [ + -73.474454, + 45.469396 + ], + [ + -73.474489, + 45.469055 + ], + [ + -73.474519, + 45.468803 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474544, + 45.468492 + ], + [ + -73.474545, + 45.468488 + ], + [ + -73.474528, + 45.468236 + ], + [ + -73.474508, + 45.467936 + ], + [ + -73.474508, + 45.467294 + ], + [ + -73.474542, + 45.4665 + ], + [ + -73.474546, + 45.466404 + ], + [ + -73.474554, + 45.466199 + ], + [ + -73.474621, + 45.465194 + ], + [ + -73.474664, + 45.464506 + ], + [ + -73.474669, + 45.464397 + ], + [ + -73.474734, + 45.464067 + ], + [ + -73.474884, + 45.463697 + ], + [ + -73.475002, + 45.463492 + ], + [ + -73.47522, + 45.463212 + ], + [ + -73.475408, + 45.463039 + ], + [ + -73.47556, + 45.462909 + ], + [ + -73.475821, + 45.462711 + ], + [ + -73.476105, + 45.462495 + ], + [ + -73.476449, + 45.462252 + ], + [ + -73.476557, + 45.462176 + ], + [ + -73.477249, + 45.461685 + ], + [ + -73.478228, + 45.460945 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.47888, + 45.460399 + ], + [ + -73.479008, + 45.460264 + ], + [ + -73.479302, + 45.459904 + ], + [ + -73.479398, + 45.459769 + ], + [ + -73.479488, + 45.459616 + ], + [ + -73.479616, + 45.459382 + ], + [ + -73.479649, + 45.459309 + ], + [ + -73.479699, + 45.459202 + ], + [ + -73.47976, + 45.459027 + ], + [ + -73.479776, + 45.458968 + ], + [ + -73.479808, + 45.458865 + ], + [ + -73.479852, + 45.458707 + ], + [ + -73.479891, + 45.458478 + ], + [ + -73.479913, + 45.458325 + ], + [ + -73.479923, + 45.458145 + ], + [ + -73.479926, + 45.458073 + ], + [ + -73.479893, + 45.457659 + ], + [ + -73.479818, + 45.456886 + ], + [ + -73.479803, + 45.456723 + ], + [ + -73.479792, + 45.456611 + ], + [ + -73.479747, + 45.456084 + ], + [ + -73.479731, + 45.4559 + ], + [ + -73.479696, + 45.455396 + ], + [ + -73.479646, + 45.454848 + ], + [ + -73.479629, + 45.454671 + ], + [ + -73.479566, + 45.454028 + ], + [ + -73.479521, + 45.453709 + ], + [ + -73.47946, + 45.45338 + ], + [ + -73.479374, + 45.453016 + ], + [ + -73.479306, + 45.45276 + ], + [ + -73.479278, + 45.452656 + ], + [ + -73.479609, + 45.452606 + ], + [ + -73.480267, + 45.452543 + ], + [ + -73.480742, + 45.452539 + ], + [ + -73.481254, + 45.452547 + ], + [ + -73.481291, + 45.452548 + ], + [ + -73.482743, + 45.452593 + ], + [ + -73.483204, + 45.452607 + ], + [ + -73.483385, + 45.452634 + ], + [ + -73.483523, + 45.452683 + ], + [ + -73.483746, + 45.452834 + ], + [ + -73.483803, + 45.452872 + ], + [ + -73.483914, + 45.453106 + ], + [ + -73.483918, + 45.453192 + ], + [ + -73.483908, + 45.453444 + ], + [ + -73.483893, + 45.453567 + ], + [ + -73.483876, + 45.453709 + ], + [ + -73.48383, + 45.453858 + ], + [ + -73.48375, + 45.454002 + ], + [ + -73.483647, + 45.454132 + ], + [ + -73.483527, + 45.454254 + ], + [ + -73.483256, + 45.454555 + ], + [ + -73.483085, + 45.454812 + ], + [ + -73.483041, + 45.454879 + ], + [ + -73.482933, + 45.455144 + ], + [ + -73.482873, + 45.455347 + ], + [ + -73.482803, + 45.455945 + ], + [ + -73.482764, + 45.456577 + ], + [ + -73.482756, + 45.456692 + ], + [ + -73.482746, + 45.456836 + ], + [ + -73.483692, + 45.456872 + ], + [ + -73.483678, + 45.457207 + ], + [ + -73.483653, + 45.457786 + ], + [ + -73.48364, + 45.457923 + ], + [ + -73.483602, + 45.458339 + ], + [ + -73.483595, + 45.45842 + ], + [ + -73.483547, + 45.458852 + ], + [ + -73.4835, + 45.459081 + ], + [ + -73.483406, + 45.459504 + ], + [ + -73.483318, + 45.459761 + ], + [ + -73.483304, + 45.459801 + ], + [ + -73.48282, + 45.46082 + ], + [ + -73.482782, + 45.460899 + ], + [ + -73.482626, + 45.461448 + ], + [ + -73.482575, + 45.461956 + ], + [ + -73.482571, + 45.462098 + ], + [ + -73.482568, + 45.462177 + ], + [ + -73.48256, + 45.462375 + ], + [ + -73.482548, + 45.462559 + ], + [ + -73.482585, + 45.462708 + ], + [ + -73.482613, + 45.462807 + ], + [ + -73.482595, + 45.463423 + ], + [ + -73.482573, + 45.463981 + ], + [ + -73.48257, + 45.464048 + ], + [ + -73.482859, + 45.464054 + ], + [ + -73.484342, + 45.46408 + ], + [ + -73.484494, + 45.464076 + ], + [ + -73.484669, + 45.464067 + ], + [ + -73.484817, + 45.464035 + ], + [ + -73.484961, + 45.463999 + ], + [ + -73.485098, + 45.46395 + ], + [ + -73.485277, + 45.463878 + ], + [ + -73.485826, + 45.463612 + ], + [ + -73.485896, + 45.463576 + ], + [ + -73.486004, + 45.463531 + ], + [ + -73.486089, + 45.463495 + ], + [ + -73.486243, + 45.463455 + ], + [ + -73.486321, + 45.463433 + ], + [ + -73.486489, + 45.463401 + ], + [ + -73.486606, + 45.463401 + ], + [ + -73.487042, + 45.463406 + ], + [ + -73.487283, + 45.463388 + ], + [ + -73.487412, + 45.463379 + ], + [ + -73.487521, + 45.463358 + ], + [ + -73.487821, + 45.463302 + ], + [ + -73.488109, + 45.463235 + ], + [ + -73.488349, + 45.463109 + ], + [ + -73.488498, + 45.462929 + ], + [ + -73.488573, + 45.462762 + ], + [ + -73.488594, + 45.462464 + ], + [ + -73.488654, + 45.461582 + ], + [ + -73.488659, + 45.461512 + ], + [ + -73.488701, + 45.460814 + ], + [ + -73.488777, + 45.459727 + ], + [ + -73.488806, + 45.459318 + ], + [ + -73.488828, + 45.459006 + ], + [ + -73.488929, + 45.458754 + ], + [ + -73.489058, + 45.458542 + ], + [ + -73.489182, + 45.458344 + ], + [ + -73.489694, + 45.457516 + ], + [ + -73.489708, + 45.457481 + ], + [ + -73.489736, + 45.457408 + ], + [ + -73.489763, + 45.457296 + ], + [ + -73.489765, + 45.457071 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.489787, + 45.45681 + ], + [ + -73.489805, + 45.456679 + ], + [ + -73.489837, + 45.456558 + ], + [ + -73.489891, + 45.45645 + ], + [ + -73.490047, + 45.45632 + ], + [ + -73.490235, + 45.456194 + ], + [ + -73.490843, + 45.455885 + ], + [ + -73.490874, + 45.45587 + ], + [ + -73.49101, + 45.455802 + ], + [ + -73.491179, + 45.455672 + ], + [ + -73.491306, + 45.455478 + ], + [ + -73.491366, + 45.454816 + ], + [ + -73.491379, + 45.454673 + ], + [ + -73.491385, + 45.45452 + ], + [ + -73.491385, + 45.45439 + ], + [ + -73.491353, + 45.454286 + ], + [ + -73.491307, + 45.454169 + ], + [ + -73.491205, + 45.454016 + ], + [ + -73.491049, + 45.453868 + ], + [ + -73.490922, + 45.453778 + ], + [ + -73.490731, + 45.453646 + ], + [ + -73.49064, + 45.453584 + ], + [ + -73.490337, + 45.453359 + ], + [ + -73.490251, + 45.453269 + ], + [ + -73.490177, + 45.453161 + ], + [ + -73.490138, + 45.453076 + ], + [ + -73.490095, + 45.452936 + ], + [ + -73.490099, + 45.452842 + ], + [ + -73.490107, + 45.452689 + ], + [ + -73.490162, + 45.452116 + ], + [ + -73.490164, + 45.452099 + ], + [ + -73.490174, + 45.451996 + ], + [ + -73.490274, + 45.451145 + ], + [ + -73.490347, + 45.450214 + ], + [ + -73.490356, + 45.450109 + ], + [ + -73.490386, + 45.449719 + ], + [ + -73.490521, + 45.448293 + ], + [ + -73.490549, + 45.447728 + ], + [ + -73.490554, + 45.447636 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.490565, + 45.447402 + ], + [ + -73.49061, + 45.446822 + ], + [ + -73.491054, + 45.445407 + ], + [ + -73.491055, + 45.445404 + ], + [ + -73.491092, + 45.445287 + ], + [ + -73.491285, + 45.444689 + ], + [ + -73.491504, + 45.443969 + ], + [ + -73.491549, + 45.443374 + ], + [ + -73.491559, + 45.443245 + ], + [ + -73.492476, + 45.443271 + ], + [ + -73.492694, + 45.443277 + ], + [ + -73.492825, + 45.443281 + ], + [ + -73.49278, + 45.443672 + ], + [ + -73.492671, + 45.445045 + ], + [ + -73.492587, + 45.445944 + ], + [ + -73.492455, + 45.447478 + ], + [ + -73.49245, + 45.447542 + ], + [ + -73.491852, + 45.447527 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.490554, + 45.447636 + ], + [ + -73.490536, + 45.447995 + ] + ] + }, + "id": 300, + "properties": { + "id": "8bfbb56d-7ad8-4ff6-be60-5bb4604c32e3", + "data": { + "gtfs": { + "shape_id": "546_2_R" + }, + "segments": [ + { + "distanceMeters": 74, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 909, + "travelTimeSeconds": 138 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 596, + "travelTimeSeconds": 90 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 84, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 774, + "travelTimeSeconds": 118 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 30, + "travelTimeSeconds": 5 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 478, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 32 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 186, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12256, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5871.081018497847, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.59, + "travelTimeWithoutDwellTimesSeconds": 1860, + "operatingTimeWithLayoverTimeSeconds": 2046, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1860, + "operatingSpeedWithLayoverMetersPerSecond": 5.99, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.59 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "35f25056-4f99-4b6e-babc-10c53194c70e", + "0f232130-277e-4d7b-b106-b6821c45f0a9", + "4262a22a-885d-4877-ad99-0a8406e2adaa", + "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", + "517a8299-e807-4040-8ccd-f417dda7338c", + "da4ca96f-4db9-4287-b307-afc6221c923f", + "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "a90c4da7-455c-41d3-9961-c7a64d627572", + "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "579043e1-54f7-411f-9a36-e7ee3324290f", + "1758013c-4193-42f0-a495-c36930003f5b", + "1345672a-9148-439f-9a52-b8a216612929", + "ece1943b-159a-42fa-a0c1-16e06714e25e", + "82735dcc-3897-4e4c-87e8-45ee1dacedaa", + "3a8b9936-4595-4770-a3f4-b31253602356", + "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", + "87774b57-5ee3-418d-948c-ba4db73d3893", + "c25adb1f-635e-4881-a89d-af8a9ea5ca92", + "95a6ef09-da34-422a-81ec-389b0e0bb278", + "f889063d-4196-4990-bc8c-d6010d0c0192", + "f92fabb3-5544-4aa3-8461-0c7fc17380ef", + "ecb00316-793a-4c41-88bd-3870bea4d999", + "258cb5fd-8795-41af-8e07-3de8ea977e23", + "d2127fc0-fbc1-4459-b6f9-07c0b8d9cdbe", + "e51dbc0e-9385-4f59-b401-fd29a59c8b5b", + "2d435714-a542-4404-9910-0df9675e2087", + "2ecca6ee-e688-465d-a0b1-929435b41047", + "57de752e-d268-4125-8223-581e6c2ff56e", + "57de752e-d268-4125-8223-581e6c2ff56e", + "1339471a-52fa-47e9-b0e4-753bf917ef08", + "9c711698-0f65-4997-8a72-24f5d8ab8fb7", + "5a6d8067-b58d-4ab2-838e-422e8f003ee9", + "e20e768c-bd5a-43fd-8842-af2717d6cb09", + "f1131e74-6c65-4f22-a18d-41dbe35e4576", + "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", + "c7c30949-db61-44fc-b7ab-a69b9fde12cc", + "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", + "997c4af9-ab50-4dfb-941a-afadff58f267", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "56755a3d-6779-4355-8b48-27271fb6ce0b", + "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", + "14d2c36b-50a3-4d98-8947-81016b2b2927", + "0d8bc8fc-204a-4f67-a22f-4e3e93df3587", + "11a7e876-eb5a-402b-8bb8-10625e7584e3" + ], + "stops": [], + "line_id": "21e06751-3bad-4297-b332-9006f4a5a05d", + "segments": [ + 0, + 3, + 10, + 16, + 27, + 39, + 47, + 51, + 60, + 65, + 72, + 110, + 118, + 121, + 135, + 138, + 144, + 160, + 165, + 168, + 190, + 193, + 201, + 212, + 218, + 224, + 229, + 235, + 247, + 252, + 256, + 259, + 264, + 266, + 270, + 277, + 279, + 289, + 305, + 309, + 315, + 326, + 331, + 340, + 349, + 353, + 357, + 362, + 367, + 370, + 375 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 300, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.48115, + 45.44636 + ], + [ + -73.481089, + 45.446285 + ], + [ + -73.480926, + 45.445993 + ], + [ + -73.480839, + 45.445718 + ], + [ + -73.480811, + 45.445444 + ], + [ + -73.480848, + 45.445021 + ], + [ + -73.481, + 45.443773 + ], + [ + -73.481012, + 45.443676 + ], + [ + -73.481219, + 45.441988 + ], + [ + -73.481285, + 45.441418 + ], + [ + -73.481299, + 45.441295 + ], + [ + -73.481973, + 45.441343 + ], + [ + -73.482262, + 45.441363 + ], + [ + -73.482811, + 45.441395 + ], + [ + -73.483146, + 45.441426 + ], + [ + -73.483482, + 45.441503 + ], + [ + -73.483768, + 45.441606 + ], + [ + -73.483786, + 45.441615 + ], + [ + -73.484016, + 45.441723 + ], + [ + -73.484181, + 45.441813 + ], + [ + -73.484668, + 45.442183 + ], + [ + -73.485324, + 45.442682 + ], + [ + -73.485435, + 45.442763 + ], + [ + -73.48577, + 45.442902 + ], + [ + -73.486077, + 45.44301 + ], + [ + -73.486385, + 45.443073 + ], + [ + -73.486658, + 45.4431 + ], + [ + -73.48683, + 45.443109 + ], + [ + -73.487183, + 45.443127 + ], + [ + -73.487351, + 45.44313 + ], + [ + -73.487487, + 45.443132 + ], + [ + -73.490545, + 45.443222 + ], + [ + -73.491559, + 45.443245 + ], + [ + -73.491531, + 45.443623 + ], + [ + -73.491504, + 45.443969 + ], + [ + -73.491285, + 45.444689 + ], + [ + -73.491119, + 45.445202 + ], + [ + -73.491092, + 45.445287 + ], + [ + -73.491055, + 45.445404 + ], + [ + -73.49061, + 45.446822 + ], + [ + -73.490574, + 45.447283 + ], + [ + -73.490565, + 45.447402 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.489956, + 45.447483 + ], + [ + -73.486184, + 45.447402 + ], + [ + -73.485385, + 45.447384 + ], + [ + -73.485334, + 45.447383 + ], + [ + -73.484501, + 45.447365 + ], + [ + -73.483174, + 45.447338 + ], + [ + -73.483047, + 45.447334 + ], + [ + -73.482811, + 45.447302 + ], + [ + -73.4826, + 45.447257 + ], + [ + -73.482392, + 45.447199 + ], + [ + -73.48231, + 45.44732 + ], + [ + -73.48203, + 45.447734 + ], + [ + -73.481672, + 45.448265 + ], + [ + -73.481538, + 45.448436 + ], + [ + -73.481405, + 45.448562 + ], + [ + -73.481319, + 45.448638 + ], + [ + -73.481186, + 45.448724 + ], + [ + -73.480948, + 45.448841 + ], + [ + -73.480707, + 45.44894 + ], + [ + -73.479506, + 45.449367 + ], + [ + -73.479229, + 45.449466 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.478203, + 45.449849 + ], + [ + -73.477921, + 45.449951 + ], + [ + -73.477783, + 45.450014 + ], + [ + -73.477866, + 45.4501 + ], + [ + -73.478024, + 45.450307 + ], + [ + -73.478182, + 45.450577 + ], + [ + -73.4785, + 45.451198 + ], + [ + -73.478751, + 45.451724 + ], + [ + -73.478921, + 45.452116 + ], + [ + -73.479089, + 45.452582 + ], + [ + -73.479123, + 45.452678 + ], + [ + -73.478661, + 45.452749 + ], + [ + -73.478149, + 45.452826 + ], + [ + -73.477761, + 45.452903 + ], + [ + -73.477488, + 45.453011 + ], + [ + -73.47723, + 45.453123 + ], + [ + -73.475827, + 45.453802 + ], + [ + -73.475148, + 45.454117 + ], + [ + -73.474972, + 45.454198 + ], + [ + -73.475548, + 45.454788 + ], + [ + -73.475752, + 45.455094 + ], + [ + -73.475818, + 45.455271 + ], + [ + -73.475877, + 45.455431 + ], + [ + -73.475885, + 45.455566 + ], + [ + -73.475889, + 45.455724 + ], + [ + -73.47585, + 45.456451 + ], + [ + -73.475848, + 45.456479 + ], + [ + -73.475839, + 45.456592 + ], + [ + -73.475794, + 45.457178 + ], + [ + -73.475778, + 45.457388 + ], + [ + -73.475737, + 45.458081 + ], + [ + -73.475737, + 45.458153 + ], + [ + -73.475692, + 45.458216 + ], + [ + -73.475621, + 45.458261 + ], + [ + -73.475551, + 45.458302 + ], + [ + -73.475386, + 45.45836 + ], + [ + -73.47511, + 45.458356 + ], + [ + -73.474813, + 45.458351 + ], + [ + -73.47477, + 45.459147 + ], + [ + -73.474306, + 45.459497 + ], + [ + -73.474131, + 45.459629 + ], + [ + -73.473576, + 45.460056 + ], + [ + -73.473509, + 45.460119 + ], + [ + -73.473517, + 45.460168 + ], + [ + -73.473556, + 45.460227 + ], + [ + -73.473658, + 45.46029 + ], + [ + -73.474466, + 45.460822 + ], + [ + -73.475666, + 45.461613 + ], + [ + -73.476388, + 45.462065 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.474376, + 45.468238 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474292, + 45.469387 + ], + [ + -73.474256, + 45.469572 + ], + [ + -73.474234, + 45.469689 + ], + [ + -73.474156, + 45.470095 + ], + [ + -73.474035, + 45.470724 + ], + [ + -73.473974, + 45.47107 + ], + [ + -73.473942, + 45.471336 + ], + [ + -73.473932, + 45.471601 + ], + [ + -73.473938, + 45.471696 + ], + [ + -73.473947, + 45.471826 + ], + [ + -73.473986, + 45.472118 + ], + [ + -73.473998, + 45.472177 + ], + [ + -73.474046, + 45.47242 + ], + [ + -73.474106, + 45.47264 + ], + [ + -73.474275, + 45.473063 + ], + [ + -73.474463, + 45.473437 + ], + [ + -73.474007, + 45.473581 + ], + [ + -73.473846, + 45.473648 + ], + [ + -73.473736, + 45.473702 + ], + [ + -73.473545, + 45.473797 + ], + [ + -73.473458, + 45.473845 + ], + [ + -73.473457, + 45.473846 + ], + [ + -73.473334, + 45.473927 + ], + [ + -73.473141, + 45.474053 + ], + [ + -73.473062, + 45.474109 + ], + [ + -73.472074, + 45.474808 + ], + [ + -73.471729, + 45.474583 + ], + [ + -73.470378, + 45.473612 + ], + [ + -73.470064, + 45.473386 + ], + [ + -73.468607, + 45.472409 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467508, + 45.472063 + ], + [ + -73.467493, + 45.472108 + ], + [ + -73.467341, + 45.47257 + ], + [ + -73.467254, + 45.472832 + ], + [ + -73.467075, + 45.473412 + ], + [ + -73.467018, + 45.473612 + ], + [ + -73.46686, + 45.474168 + ], + [ + -73.466715, + 45.474632 + ], + [ + -73.466501, + 45.475269 + ], + [ + -73.466278, + 45.475935 + ], + [ + -73.466234, + 45.476067 + ], + [ + -73.466127, + 45.476385 + ], + [ + -73.465592, + 45.477979 + ], + [ + -73.465357, + 45.478703 + ], + [ + -73.465337, + 45.478757 + ], + [ + -73.465269, + 45.478932 + ], + [ + -73.465247, + 45.479 + ], + [ + -73.465119, + 45.479385 + ], + [ + -73.464879, + 45.480107 + ], + [ + -73.464823, + 45.480273 + ], + [ + -73.464733, + 45.480574 + ], + [ + -73.464664, + 45.480885 + ], + [ + -73.464647, + 45.481013 + ], + [ + -73.464634, + 45.481108 + ], + [ + -73.464622, + 45.481195 + ], + [ + -73.464619, + 45.481245 + ], + [ + -73.464603, + 45.481524 + ], + [ + -73.464619, + 45.481956 + ], + [ + -73.464693, + 45.482383 + ], + [ + -73.464736, + 45.482559 + ], + [ + -73.46485, + 45.482905 + ], + [ + -73.46499, + 45.483243 + ], + [ + -73.465069, + 45.483405 + ], + [ + -73.465231, + 45.483688 + ], + [ + -73.465328, + 45.483837 + ], + [ + -73.465516, + 45.484318 + ], + [ + -73.465535, + 45.48439 + ], + [ + -73.465531, + 45.484453 + ], + [ + -73.465521, + 45.484494 + ], + [ + -73.465494, + 45.484521 + ], + [ + -73.465474, + 45.484542 + ], + [ + -73.465464, + 45.484552 + ], + [ + -73.46542, + 45.484575 + ], + [ + -73.465379, + 45.484592 + ], + [ + -73.465324, + 45.484601 + ], + [ + -73.465214, + 45.484601 + ], + [ + -73.464965, + 45.484574 + ], + [ + -73.464559, + 45.484417 + ], + [ + -73.464508, + 45.484399 + ], + [ + -73.464185, + 45.484291 + ], + [ + -73.463703, + 45.484155 + ], + [ + -73.463657, + 45.484142 + ], + [ + -73.46319, + 45.484029 + ], + [ + -73.462672, + 45.483908 + ], + [ + -73.462287, + 45.483831 + ], + [ + -73.462032, + 45.483791 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.46135, + 45.4837 + ], + [ + -73.460838, + 45.483637 + ], + [ + -73.460188, + 45.483581 + ], + [ + -73.459999, + 45.483565 + ], + [ + -73.459497, + 45.483511 + ], + [ + -73.459033, + 45.483457 + ], + [ + -73.458739, + 45.483407 + ], + [ + -73.458547, + 45.483371 + ], + [ + -73.458333, + 45.483321 + ], + [ + -73.458016, + 45.483245 + ], + [ + -73.45777, + 45.483182 + ], + [ + -73.457503, + 45.483104 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45645, + 45.482799 + ], + [ + -73.455886, + 45.482623 + ], + [ + -73.455654, + 45.482542 + ], + [ + -73.455462, + 45.482465 + ], + [ + -73.455282, + 45.482387 + ], + [ + -73.455276, + 45.482384 + ], + [ + -73.455009, + 45.482272 + ], + [ + -73.454605, + 45.482087 + ], + [ + -73.454381, + 45.481984 + ], + [ + -73.454145, + 45.481862 + ], + [ + -73.453796, + 45.481673 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452379, + 45.481446 + ], + [ + -73.452062, + 45.481636 + ], + [ + -73.45135, + 45.482063 + ], + [ + -73.451252, + 45.482121 + ], + [ + -73.450098, + 45.482807 + ], + [ + -73.449882, + 45.482936 + ], + [ + -73.449245, + 45.483336 + ], + [ + -73.449101, + 45.483471 + ], + [ + -73.448914, + 45.483713 + ], + [ + -73.448817, + 45.483898 + ], + [ + -73.448629, + 45.484109 + ], + [ + -73.44844, + 45.484271 + ], + [ + -73.448223, + 45.484481 + ], + [ + -73.44775, + 45.484937 + ], + [ + -73.447415, + 45.485256 + ], + [ + -73.447237, + 45.485427 + ], + [ + -73.447005, + 45.485643 + ], + [ + -73.446788, + 45.48585 + ], + [ + -73.446708, + 45.485926 + ], + [ + -73.445795, + 45.486794 + ], + [ + -73.445654, + 45.486915 + ], + [ + -73.445524, + 45.487041 + ], + [ + -73.445408, + 45.487167 + ], + [ + -73.445359, + 45.487231 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 301, + "properties": { + "id": "47643624-71a8-42de-a382-b641749e202c", + "data": { + "gtfs": { + "shape_id": "547_1_A" + }, + "segments": [ + { + "distanceMeters": 293, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 371, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 428, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 81, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 407, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 738, + "travelTimeSeconds": 98 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 404, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 435, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 72, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 838, + "travelTimeSeconds": 111 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 405, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 509, + "travelTimeSeconds": 68 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10844, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5664.047771452758, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.53, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 6.69, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.53 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "8f4ce296-9511-42d4-a138-f52bb761830f", + "0a5b3fec-6725-4b10-9b81-ad6506fe82d2", + "a532b39a-66ec-444f-abc1-766787d9387c", + "3518bfc1-7b5d-4295-9440-6fc17dd6b559", + "e9dbe1ee-244a-4556-8fa1-052d6f2dee5e", + "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", + "56755a3d-6779-4355-8b48-27271fb6ce0b", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "601c2147-2f83-405b-be6a-8fe05117cb43", + "91b595a9-abca-41fb-9723-f6ca055bd16b", + "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", + "4509b80b-76a5-49de-acb2-533a50bafac5", + "c25adb1f-635e-4881-a89d-af8a9ea5ca92", + "e690066b-eb33-421c-89b1-e731dab9975f", + "91baaa10-e8cd-406f-a7c1-c8e2465ade3f", + "1782a1a7-eddc-4228-a7a8-bf733f339e68", + "1782a1a7-eddc-4228-a7a8-bf733f339e68", + "54e2350c-1dbf-481f-9610-f78cb1a71b49", + "ef6b8e74-cf7c-405a-a81c-caa03b93a96a", + "ff23cabb-ca11-421b-a582-f6413aa21fa0", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", + "3a8b9936-4595-4770-a3f4-b31253602356", + "82735dcc-3897-4e4c-87e8-45ee1dacedaa", + "85f19be2-1f67-4673-b3b3-52d06ed31ae3", + "47d29e21-b442-4f1e-bc41-0d7871af14e8", + "7eaffbff-c86c-4810-b174-bda8780c04b4", + "e76a6766-6730-419b-bd29-f65b80bb6721", + "bf51d692-a22e-42e9-a495-2d1955e0c462", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "491099bb-9493-4888-bd4e-20bd2140830a", + "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", + "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "d9b94443-0b59-40db-aecb-0acb5ea7976c", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "cf41ea40-826e-4f39-9294-367ecc460961", + "segments": [ + 0, + 6, + 9, + 17, + 29, + 33, + 36, + 40, + 45, + 54, + 62, + 65, + 74, + 82, + 86, + 90, + 93, + 101, + 104, + 113, + 141, + 146, + 153, + 165, + 172, + 180, + 189, + 192, + 195, + 200, + 238, + 247, + 253, + 266, + 267, + 275, + 280, + 286 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 301, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446649, + 45.490498 + ], + [ + -73.446822, + 45.490639 + ], + [ + -73.44688, + 45.490686 + ], + [ + -73.447261, + 45.491006 + ], + [ + -73.447337, + 45.491069 + ], + [ + -73.447665, + 45.490889 + ], + [ + -73.448136, + 45.490592 + ], + [ + -73.44848, + 45.49039 + ], + [ + -73.448793, + 45.490206 + ], + [ + -73.44919, + 45.489963 + ], + [ + -73.449319, + 45.48989 + ], + [ + -73.449476, + 45.489801 + ], + [ + -73.450048, + 45.489455 + ], + [ + -73.450226, + 45.489293 + ], + [ + -73.450385, + 45.489131 + ], + [ + -73.450522, + 45.488807 + ], + [ + -73.450554, + 45.488637 + ], + [ + -73.450562, + 45.488591 + ], + [ + -73.450564, + 45.488501 + ], + [ + -73.451142, + 45.48852 + ], + [ + -73.451437, + 45.488556 + ], + [ + -73.451471, + 45.48856 + ], + [ + -73.451663, + 45.488618 + ], + [ + -73.451864, + 45.488677 + ], + [ + -73.452026, + 45.48874 + ], + [ + -73.452059, + 45.488756 + ], + [ + -73.45223, + 45.488835 + ], + [ + -73.452275, + 45.488865 + ], + [ + -73.452316, + 45.488894 + ], + [ + -73.452398, + 45.488943 + ], + [ + -73.452482, + 45.488993 + ], + [ + -73.452596, + 45.489092 + ], + [ + -73.452853, + 45.489389 + ], + [ + -73.453059, + 45.489641 + ], + [ + -73.453301, + 45.489897 + ], + [ + -73.453554, + 45.490154 + ], + [ + -73.453816, + 45.490388 + ], + [ + -73.454028, + 45.490572 + ], + [ + -73.454376, + 45.490852 + ], + [ + -73.454697, + 45.491105 + ], + [ + -73.454792, + 45.49118 + ], + [ + -73.455383, + 45.490825 + ], + [ + -73.456177, + 45.490348 + ], + [ + -73.456382, + 45.490186 + ], + [ + -73.45652, + 45.490034 + ], + [ + -73.456589, + 45.489894 + ], + [ + -73.456688, + 45.489687 + ], + [ + -73.456692, + 45.489673 + ], + [ + -73.456709, + 45.489602 + ], + [ + -73.456724, + 45.489525 + ], + [ + -73.456835, + 45.488612 + ], + [ + -73.456898, + 45.48808 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457724, + 45.486654 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.45925, + 45.485724 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.46022, + 45.485044 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.461099, + 45.484444 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.462585, + 45.484043 + ], + [ + -73.463416, + 45.484224 + ], + [ + -73.463639, + 45.484291 + ], + [ + -73.464599, + 45.48462 + ], + [ + -73.465244, + 45.484835 + ], + [ + -73.465443, + 45.484908 + ], + [ + -73.465586, + 45.484937 + ], + [ + -73.465724, + 45.484942 + ], + [ + -73.465848, + 45.484931 + ], + [ + -73.466018, + 45.484884 + ], + [ + -73.466121, + 45.484844 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466302, + 45.484687 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466188, + 45.484448 + ], + [ + -73.466149, + 45.484395 + ], + [ + -73.466127, + 45.48437 + ], + [ + -73.465905, + 45.484113 + ], + [ + -73.465719, + 45.4839 + ], + [ + -73.46546, + 45.483541 + ], + [ + -73.465236, + 45.483174 + ], + [ + -73.465161, + 45.483037 + ], + [ + -73.465057, + 45.482799 + ], + [ + -73.464968, + 45.48254 + ], + [ + -73.46489, + 45.482284 + ], + [ + -73.464833, + 45.481906 + ], + [ + -73.464816, + 45.481524 + ], + [ + -73.46484, + 45.481206 + ], + [ + -73.464843, + 45.481165 + ], + [ + -73.464847, + 45.481114 + ], + [ + -73.464866, + 45.480979 + ], + [ + -73.46492, + 45.48071 + ], + [ + -73.465032, + 45.480327 + ], + [ + -73.465198, + 45.479819 + ], + [ + -73.46547, + 45.479009 + ], + [ + -73.465544, + 45.478788 + ], + [ + -73.465652, + 45.478467 + ], + [ + -73.465874, + 45.477808 + ], + [ + -73.466471, + 45.476005 + ], + [ + -73.466484, + 45.475966 + ], + [ + -73.466637, + 45.475504 + ], + [ + -73.467366, + 45.473305 + ], + [ + -73.467616, + 45.472553 + ], + [ + -73.467822, + 45.472468 + ], + [ + -73.467906, + 45.472436 + ], + [ + -73.468005, + 45.472409 + ], + [ + -73.468127, + 45.472396 + ], + [ + -73.468231, + 45.472409 + ], + [ + -73.468368, + 45.472441 + ], + [ + -73.468499, + 45.472486 + ], + [ + -73.469144, + 45.472936 + ], + [ + -73.469236, + 45.473 + ], + [ + -73.469652, + 45.473289 + ], + [ + -73.469926, + 45.473481 + ], + [ + -73.471608, + 45.474678 + ], + [ + -73.471792, + 45.474814 + ], + [ + -73.471919, + 45.474907 + ], + [ + -73.472018, + 45.474979 + ], + [ + -73.47218, + 45.47489 + ], + [ + -73.472421, + 45.474721 + ], + [ + -73.473247, + 45.474143 + ], + [ + -73.473254, + 45.474138 + ], + [ + -73.473452, + 45.474003 + ], + [ + -73.47356, + 45.473931 + ], + [ + -73.47364, + 45.473887 + ], + [ + -73.473932, + 45.473738 + ], + [ + -73.474194, + 45.473626 + ], + [ + -73.474513, + 45.473518 + ], + [ + -73.474653, + 45.473477 + ], + [ + -73.474613, + 45.473387 + ], + [ + -73.47455, + 45.473262 + ], + [ + -73.474431, + 45.473027 + ], + [ + -73.474274, + 45.472609 + ], + [ + -73.474213, + 45.472397 + ], + [ + -73.474173, + 45.472208 + ], + [ + -73.474165, + 45.472163 + ], + [ + -73.474141, + 45.472028 + ], + [ + -73.474138, + 45.472013 + ], + [ + -73.47411, + 45.47183 + ], + [ + -73.474121, + 45.471228 + ], + [ + -73.474166, + 45.470967 + ], + [ + -73.474399, + 45.469698 + ], + [ + -73.474421, + 45.469574 + ], + [ + -73.474454, + 45.469396 + ], + [ + -73.474489, + 45.469055 + ], + [ + -73.474517, + 45.468822 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474544, + 45.468492 + ], + [ + -73.474545, + 45.468488 + ], + [ + -73.474528, + 45.468236 + ], + [ + -73.474508, + 45.467936 + ], + [ + -73.474508, + 45.467294 + ], + [ + -73.474542, + 45.4665 + ], + [ + -73.474546, + 45.466404 + ], + [ + -73.474554, + 45.466199 + ], + [ + -73.474621, + 45.465194 + ], + [ + -73.474664, + 45.464506 + ], + [ + -73.474669, + 45.464397 + ], + [ + -73.474734, + 45.464067 + ], + [ + -73.474884, + 45.463697 + ], + [ + -73.475002, + 45.463492 + ], + [ + -73.47522, + 45.463212 + ], + [ + -73.475408, + 45.463039 + ], + [ + -73.47556, + 45.462909 + ], + [ + -73.475821, + 45.462711 + ], + [ + -73.476105, + 45.462495 + ], + [ + -73.476427, + 45.462268 + ], + [ + -73.476557, + 45.462176 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476077, + 45.461871 + ], + [ + -73.475666, + 45.461613 + ], + [ + -73.473658, + 45.46029 + ], + [ + -73.473556, + 45.460227 + ], + [ + -73.473517, + 45.460168 + ], + [ + -73.473509, + 45.460119 + ], + [ + -73.473576, + 45.460056 + ], + [ + -73.473809, + 45.459876 + ], + [ + -73.474023, + 45.459711 + ], + [ + -73.474131, + 45.459629 + ], + [ + -73.47477, + 45.459147 + ], + [ + -73.474804, + 45.458515 + ], + [ + -73.474813, + 45.458351 + ], + [ + -73.475386, + 45.45836 + ], + [ + -73.475551, + 45.458302 + ], + [ + -73.475621, + 45.458261 + ], + [ + -73.475692, + 45.458216 + ], + [ + -73.475737, + 45.458153 + ], + [ + -73.475737, + 45.458081 + ], + [ + -73.475778, + 45.457388 + ], + [ + -73.475826, + 45.45676 + ], + [ + -73.475839, + 45.456592 + ], + [ + -73.475848, + 45.456479 + ], + [ + -73.475889, + 45.455724 + ], + [ + -73.475885, + 45.455566 + ], + [ + -73.475885, + 45.455557 + ], + [ + -73.475877, + 45.455431 + ], + [ + -73.475752, + 45.455094 + ], + [ + -73.475548, + 45.454788 + ], + [ + -73.475065, + 45.454294 + ], + [ + -73.474972, + 45.454198 + ], + [ + -73.475827, + 45.453802 + ], + [ + -73.47723, + 45.453123 + ], + [ + -73.477488, + 45.453011 + ], + [ + -73.477761, + 45.452903 + ], + [ + -73.478149, + 45.452826 + ], + [ + -73.478893, + 45.452713 + ], + [ + -73.479123, + 45.452678 + ], + [ + -73.479278, + 45.452656 + ], + [ + -73.479074, + 45.452084 + ], + [ + -73.478902, + 45.451688 + ], + [ + -73.478649, + 45.451162 + ], + [ + -73.478451, + 45.450779 + ], + [ + -73.47833, + 45.450536 + ], + [ + -73.478167, + 45.450257 + ], + [ + -73.478019, + 45.450065 + ], + [ + -73.478004, + 45.450046 + ], + [ + -73.477921, + 45.449951 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.479229, + 45.449466 + ], + [ + -73.479284, + 45.449446 + ], + [ + -73.480707, + 45.44894 + ], + [ + -73.480948, + 45.448841 + ], + [ + -73.481186, + 45.448724 + ], + [ + -73.481319, + 45.448638 + ], + [ + -73.481405, + 45.448562 + ], + [ + -73.481538, + 45.448436 + ], + [ + -73.481591, + 45.448368 + ], + [ + -73.481672, + 45.448265 + ], + [ + -73.482253, + 45.447405 + ], + [ + -73.48231, + 45.44732 + ], + [ + -73.482392, + 45.447199 + ], + [ + -73.482245, + 45.447145 + ], + [ + -73.482082, + 45.447077 + ], + [ + -73.481942, + 45.447005 + ], + [ + -73.481839, + 45.446947 + ], + [ + -73.481672, + 45.446839 + ], + [ + -73.481644, + 45.446821 + ], + [ + -73.481469, + 45.446695 + ], + [ + -73.481319, + 45.446551 + ], + [ + -73.481245, + 45.446479 + ], + [ + -73.481157, + 45.446369 + ], + [ + -73.481089, + 45.446285 + ], + [ + -73.480926, + 45.445993 + ], + [ + -73.480839, + 45.445718 + ], + [ + -73.480811, + 45.445444 + ], + [ + -73.480848, + 45.445021 + ], + [ + -73.480999, + 45.443783 + ], + [ + -73.481012, + 45.443676 + ], + [ + -73.481219, + 45.441988 + ], + [ + -73.481283, + 45.441428 + ], + [ + -73.481299, + 45.441295 + ], + [ + -73.481973, + 45.441343 + ], + [ + -73.482262, + 45.441363 + ], + [ + -73.482811, + 45.441395 + ], + [ + -73.483146, + 45.441426 + ], + [ + -73.483482, + 45.441503 + ], + [ + -73.483768, + 45.441606 + ], + [ + -73.483774, + 45.441609 + ], + [ + -73.484016, + 45.441723 + ], + [ + -73.484181, + 45.441813 + ], + [ + -73.484668, + 45.442183 + ], + [ + -73.485324, + 45.442682 + ], + [ + -73.485435, + 45.442763 + ], + [ + -73.48577, + 45.442902 + ], + [ + -73.486077, + 45.44301 + ], + [ + -73.486385, + 45.443073 + ], + [ + -73.486658, + 45.4431 + ], + [ + -73.48683, + 45.443109 + ], + [ + -73.487183, + 45.443127 + ], + [ + -73.487337, + 45.44313 + ], + [ + -73.487487, + 45.443132 + ], + [ + -73.490545, + 45.443222 + ], + [ + -73.491559, + 45.443245 + ], + [ + -73.491531, + 45.443614 + ], + [ + -73.491504, + 45.443969 + ], + [ + -73.491285, + 45.444689 + ], + [ + -73.491122, + 45.445193 + ], + [ + -73.491092, + 45.445287 + ], + [ + -73.491055, + 45.445404 + ], + [ + -73.49061, + 45.446822 + ], + [ + -73.490574, + 45.447283 + ], + [ + -73.490565, + 45.447402 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.489956, + 45.447483 + ], + [ + -73.486184, + 45.447402 + ], + [ + -73.485397, + 45.447385 + ], + [ + -73.485334, + 45.447383 + ], + [ + -73.484501, + 45.447365 + ], + [ + -73.483174, + 45.447338 + ], + [ + -73.483047, + 45.447334 + ], + [ + -73.482811, + 45.447302 + ], + [ + -73.4826, + 45.447257 + ], + [ + -73.482392, + 45.447199 + ], + [ + -73.48231, + 45.44732 + ], + [ + -73.482036, + 45.447727 + ] + ] + }, + "id": 302, + "properties": { + "id": "fade2ae2-ee3b-405a-b8fb-274450cce317", + "data": { + "gtfs": { + "shape_id": "547_2_R" + }, + "segments": [ + { + "distanceMeters": 74, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 909, + "travelTimeSeconds": 145 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 596, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 84, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 774, + "travelTimeSeconds": 124 + }, + { + "distanceMeters": 65, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 119, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 371, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 427, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 49 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10879, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5520.3886855286355, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.25, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 5.67, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.25 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "35f25056-4f99-4b6e-babc-10c53194c70e", + "0f232130-277e-4d7b-b106-b6821c45f0a9", + "4262a22a-885d-4877-ad99-0a8406e2adaa", + "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", + "517a8299-e807-4040-8ccd-f417dda7338c", + "da4ca96f-4db9-4287-b307-afc6221c923f", + "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "a90c4da7-455c-41d3-9961-c7a64d627572", + "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "579043e1-54f7-411f-9a36-e7ee3324290f", + "1758013c-4193-42f0-a495-c36930003f5b", + "1345672a-9148-439f-9a52-b8a216612929", + "ece1943b-159a-42fa-a0c1-16e06714e25e", + "82735dcc-3897-4e4c-87e8-45ee1dacedaa", + "3a8b9936-4595-4770-a3f4-b31253602356", + "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "ef6b8e74-cf7c-405a-a81c-caa03b93a96a", + "54e2350c-1dbf-481f-9610-f78cb1a71b49", + "1782a1a7-eddc-4228-a7a8-bf733f339e68", + "91baaa10-e8cd-406f-a7c1-c8e2465ade3f", + "e690066b-eb33-421c-89b1-e731dab9975f", + "c25adb1f-635e-4881-a89d-af8a9ea5ca92", + "4509b80b-76a5-49de-acb2-533a50bafac5", + "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", + "3e4f29c9-7bf2-4ca4-9cb4-2a3c4710cea6", + "91b595a9-abca-41fb-9723-f6ca055bd16b", + "8f4ce296-9511-42d4-a138-f52bb761830f", + "0a5b3fec-6725-4b10-9b81-ad6506fe82d2", + "a532b39a-66ec-444f-abc1-766787d9387c", + "3518bfc1-7b5d-4295-9440-6fc17dd6b559", + "e9dbe1ee-244a-4556-8fa1-052d6f2dee5e", + "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", + "56755a3d-6779-4355-8b48-27271fb6ce0b", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "601c2147-2f83-405b-be6a-8fe05117cb43", + "91b595a9-abca-41fb-9723-f6ca055bd16b" + ], + "stops": [], + "line_id": "cf41ea40-826e-4f39-9294-367ecc460961", + "segments": [ + 0, + 3, + 10, + 16, + 27, + 39, + 47, + 51, + 60, + 65, + 71, + 110, + 118, + 121, + 135, + 138, + 144, + 160, + 165, + 168, + 190, + 193, + 201, + 204, + 213, + 218, + 222, + 229, + 238, + 243, + 250, + 252, + 264, + 270, + 273, + 281, + 293, + 297, + 300, + 304, + 309 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 302, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.481538, + 45.438613 + ], + [ + -73.48154, + 45.438492 + ], + [ + -73.481571, + 45.437827 + ], + [ + -73.481572, + 45.437776 + ], + [ + -73.481581, + 45.437111 + ], + [ + -73.481588, + 45.43669 + ], + [ + -73.48159, + 45.436549 + ], + [ + -73.481583, + 45.435531 + ], + [ + -73.481582, + 45.43541 + ], + [ + -73.482382, + 45.435405 + ], + [ + -73.482932, + 45.435402 + ], + [ + -73.484574, + 45.435388 + ], + [ + -73.484708, + 45.435387 + ], + [ + -73.48743, + 45.435365 + ], + [ + -73.487529, + 45.435364 + ], + [ + -73.487766, + 45.435362 + ], + [ + -73.488499, + 45.435353 + ], + [ + -73.489078, + 45.435353 + ], + [ + -73.490339, + 45.435335 + ], + [ + -73.490512, + 45.435353 + ], + [ + -73.490636, + 45.435389 + ], + [ + -73.49074, + 45.435443 + ], + [ + -73.490825, + 45.43552 + ], + [ + -73.490911, + 45.435596 + ], + [ + -73.490933, + 45.435802 + ], + [ + -73.490941, + 45.43588 + ], + [ + -73.490978, + 45.436131 + ], + [ + -73.491142, + 45.436851 + ], + [ + -73.491212, + 45.437099 + ], + [ + -73.491237, + 45.437184 + ], + [ + -73.49152, + 45.437954 + ], + [ + -73.491752, + 45.438467 + ], + [ + -73.491829, + 45.438638 + ], + [ + -73.49121, + 45.438629 + ], + [ + -73.488267, + 45.438589 + ], + [ + -73.488148, + 45.438588 + ], + [ + -73.485001, + 45.438549 + ], + [ + -73.484835, + 45.438547 + ], + [ + -73.484725, + 45.438545 + ], + [ + -73.481672, + 45.438495 + ], + [ + -73.48154, + 45.438492 + ], + [ + -73.481345, + 45.438492 + ], + [ + -73.481336, + 45.439167 + ], + [ + -73.481322, + 45.43946 + ], + [ + -73.481291, + 45.439775 + ], + [ + -73.481194, + 45.440589 + ], + [ + -73.481134, + 45.441071 + ], + [ + -73.481107, + 45.441286 + ], + [ + -73.480147, + 45.441223 + ], + [ + -73.479817, + 45.44121 + ], + [ + -73.478107, + 45.441196 + ], + [ + -73.477758, + 45.441194 + ], + [ + -73.477731, + 45.441194 + ], + [ + -73.477247, + 45.441191 + ], + [ + -73.477021, + 45.4412 + ], + [ + -73.47678, + 45.441236 + ], + [ + -73.476584, + 45.441272 + ], + [ + -73.476413, + 45.441313 + ], + [ + -73.475939, + 45.441479 + ], + [ + -73.475852, + 45.44151 + ], + [ + -73.475703, + 45.441605 + ], + [ + -73.475479, + 45.441749 + ], + [ + -73.475247, + 45.441942 + ], + [ + -73.475115, + 45.442091 + ], + [ + -73.475039, + 45.44219 + ], + [ + -73.474902, + 45.442388 + ], + [ + -73.474682, + 45.442761 + ], + [ + -73.474541, + 45.443044 + ], + [ + -73.474469, + 45.443314 + ], + [ + -73.474438, + 45.443521 + ], + [ + -73.474388, + 45.444431 + ], + [ + -73.474384, + 45.444507 + ], + [ + -73.474282, + 45.446138 + ], + [ + -73.474281, + 45.446153 + ], + [ + -73.474217, + 45.446698 + ], + [ + -73.474171, + 45.446882 + ], + [ + -73.474095, + 45.447058 + ], + [ + -73.473962, + 45.447314 + ], + [ + -73.473833, + 45.447525 + ], + [ + -73.473557, + 45.447934 + ], + [ + -73.473507, + 45.448007 + ], + [ + -73.47251, + 45.447683 + ], + [ + -73.471666, + 45.447408 + ], + [ + -73.471252, + 45.447282 + ], + [ + -73.47028, + 45.446953 + ], + [ + -73.470002, + 45.446863 + ], + [ + -73.469936, + 45.446962 + ], + [ + -73.4697, + 45.447326 + ], + [ + -73.467906, + 45.450089 + ], + [ + -73.467328, + 45.451002 + ], + [ + -73.46669, + 45.452054 + ], + [ + -73.465968, + 45.453278 + ], + [ + -73.465918, + 45.453363 + ], + [ + -73.465707, + 45.453755 + ], + [ + -73.46558, + 45.454016 + ], + [ + -73.46536, + 45.454529 + ], + [ + -73.465344, + 45.454574 + ], + [ + -73.465251, + 45.454843 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.465167, + 45.455082 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465048, + 45.455509 + ], + [ + -73.465041, + 45.455536 + ], + [ + -73.464975, + 45.455829 + ], + [ + -73.464919, + 45.45613 + ], + [ + -73.464878, + 45.456427 + ], + [ + -73.464848, + 45.456873 + ], + [ + -73.464844, + 45.457169 + ], + [ + -73.464871, + 45.457574 + ], + [ + -73.464982, + 45.459113 + ], + [ + -73.464994, + 45.459278 + ], + [ + -73.465215, + 45.461562 + ], + [ + -73.465247, + 45.461893 + ], + [ + -73.465328, + 45.462497 + ], + [ + -73.465435, + 45.463211 + ], + [ + -73.465484, + 45.463543 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467476, + 45.467991 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467548, + 45.468225 + ], + [ + -73.467698, + 45.468792 + ], + [ + -73.467776, + 45.469183 + ], + [ + -73.46782, + 45.469453 + ], + [ + -73.46784, + 45.469697 + ], + [ + -73.467865, + 45.469989 + ], + [ + -73.467864, + 45.470057 + ], + [ + -73.467862, + 45.470168 + ], + [ + -73.46786, + 45.470362 + ], + [ + -73.467821, + 45.470781 + ], + [ + -73.467786, + 45.471019 + ], + [ + -73.467768, + 45.4711 + ], + [ + -73.467742, + 45.471226 + ], + [ + -73.467655, + 45.471563 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467508, + 45.472063 + ], + [ + -73.467493, + 45.472108 + ], + [ + -73.467342, + 45.472565 + ], + [ + -73.467254, + 45.472832 + ], + [ + -73.467075, + 45.473412 + ], + [ + -73.467018, + 45.473612 + ], + [ + -73.46686, + 45.474168 + ], + [ + -73.466715, + 45.474632 + ], + [ + -73.466501, + 45.475269 + ], + [ + -73.466278, + 45.475935 + ], + [ + -73.466234, + 45.476067 + ], + [ + -73.466125, + 45.47639 + ], + [ + -73.465592, + 45.477979 + ], + [ + -73.465357, + 45.478703 + ], + [ + -73.465338, + 45.478753 + ], + [ + -73.465269, + 45.478932 + ], + [ + -73.465247, + 45.479 + ], + [ + -73.46512, + 45.479382 + ], + [ + -73.464879, + 45.480107 + ], + [ + -73.464823, + 45.480273 + ], + [ + -73.464733, + 45.480574 + ], + [ + -73.464664, + 45.480885 + ], + [ + -73.464647, + 45.48101 + ], + [ + -73.464634, + 45.481108 + ], + [ + -73.464622, + 45.481195 + ], + [ + -73.464619, + 45.481245 + ], + [ + -73.464603, + 45.481524 + ], + [ + -73.464619, + 45.481956 + ], + [ + -73.464693, + 45.482383 + ], + [ + -73.464736, + 45.482559 + ], + [ + -73.46485, + 45.482905 + ], + [ + -73.46499, + 45.483243 + ], + [ + -73.465069, + 45.483405 + ], + [ + -73.465231, + 45.483688 + ], + [ + -73.465328, + 45.483837 + ], + [ + -73.465516, + 45.484318 + ], + [ + -73.465535, + 45.48439 + ], + [ + -73.465531, + 45.484453 + ], + [ + -73.465521, + 45.484494 + ], + [ + -73.465494, + 45.484521 + ], + [ + -73.465474, + 45.484542 + ], + [ + -73.465464, + 45.484552 + ], + [ + -73.46542, + 45.484575 + ], + [ + -73.465379, + 45.484592 + ], + [ + -73.465324, + 45.484601 + ], + [ + -73.465214, + 45.484601 + ], + [ + -73.464965, + 45.484574 + ], + [ + -73.464559, + 45.484417 + ], + [ + -73.464508, + 45.484399 + ], + [ + -73.464185, + 45.484291 + ], + [ + -73.463703, + 45.484155 + ], + [ + -73.463657, + 45.484142 + ], + [ + -73.46319, + 45.484029 + ], + [ + -73.462672, + 45.483908 + ], + [ + -73.462287, + 45.483831 + ], + [ + -73.462032, + 45.483791 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.46135, + 45.4837 + ], + [ + -73.460838, + 45.483637 + ], + [ + -73.460191, + 45.483581 + ], + [ + -73.459999, + 45.483565 + ], + [ + -73.459497, + 45.483511 + ], + [ + -73.459033, + 45.483457 + ], + [ + -73.458739, + 45.483407 + ], + [ + -73.458547, + 45.483371 + ], + [ + -73.458333, + 45.483321 + ], + [ + -73.458016, + 45.483245 + ], + [ + -73.45777, + 45.483182 + ], + [ + -73.457494, + 45.483102 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45645, + 45.482799 + ], + [ + -73.455886, + 45.482623 + ], + [ + -73.455654, + 45.482542 + ], + [ + -73.455462, + 45.482465 + ], + [ + -73.455276, + 45.482384 + ], + [ + -73.455274, + 45.482383 + ], + [ + -73.455009, + 45.482272 + ], + [ + -73.454605, + 45.482087 + ], + [ + -73.454381, + 45.481984 + ], + [ + -73.454145, + 45.481862 + ], + [ + -73.453796, + 45.481673 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452379, + 45.481446 + ], + [ + -73.452062, + 45.481636 + ], + [ + -73.45135, + 45.482063 + ], + [ + -73.451253, + 45.48212 + ], + [ + -73.450099, + 45.482806 + ], + [ + -73.449882, + 45.482936 + ], + [ + -73.449245, + 45.483336 + ], + [ + -73.449101, + 45.483471 + ], + [ + -73.448914, + 45.483713 + ], + [ + -73.448817, + 45.483898 + ], + [ + -73.448629, + 45.484109 + ], + [ + -73.44844, + 45.484271 + ], + [ + -73.448216, + 45.484487 + ], + [ + -73.44775, + 45.484937 + ], + [ + -73.447415, + 45.485256 + ], + [ + -73.447237, + 45.485427 + ], + [ + -73.447005, + 45.485643 + ], + [ + -73.446781, + 45.485856 + ], + [ + -73.446708, + 45.485926 + ], + [ + -73.445795, + 45.486794 + ], + [ + -73.445654, + 45.486915 + ], + [ + -73.445524, + 45.487041 + ], + [ + -73.445408, + 45.487167 + ], + [ + -73.445359, + 45.48723 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 303, + "properties": { + "id": "405e61ab-17e7-4b2e-8420-5b3c66baee03", + "data": { + "gtfs": { + "shape_id": "549_1_A" + }, + "segments": [ + { + "distanceMeters": 214, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 1274, + "travelTimeSeconds": 183 + }, + { + "distanceMeters": 478, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 1206, + "travelTimeSeconds": 173 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 436, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 72, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 838, + "travelTimeSeconds": 121 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 404, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 509, + "travelTimeSeconds": 73 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10883, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6451.177015702193, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.98, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 6.25, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.98 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", + "52fa062f-ca90-4e1d-998a-7b658a499b52", + "553f2fec-7dd4-475c-b1ed-ff9a62614e74", + "7a321951-38aa-4886-b297-59c69bcf3448", + "23afb18c-7e9a-4c38-a0e7-59d1aa5f5f5f", + "8f8e9cec-3b4e-465e-9db7-a68a74d060d1", + "a755707e-dbca-49b2-ba36-d6e6ffe0de89", + "70846d21-918c-4542-969d-4e5cccbc6e50", + "b88e581a-07f9-428f-bbb4-ab3a41e2dfe7", + "6195cfbf-10cd-4d7a-86f0-ca5dad76f9d9", + "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", + "a532b39a-66ec-444f-abc1-766787d9387c", + "ca880d29-2a91-4666-9ed1-c2825e5165f2", + "972f2e12-8185-4823-8ce3-2c965170ad9a", + "eab0f5d6-db57-4bf2-a26d-a49e7fe11c54", + "aebecb3d-b7f4-4a39-9b68-19a1c1a3b2b2", + "9d8d74b7-fc1f-4af5-a4a4-0cee1ee7b556", + "3481b163-efe1-4b08-b6af-eecb2141ddbe", + "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", + "acb7092d-3b2a-4d79-a4e3-09e7e52af475", + "47d29e21-b442-4f1e-bc41-0d7871af14e8", + "7eaffbff-c86c-4810-b174-bda8780c04b4", + "e76a6766-6730-419b-bd29-f65b80bb6721", + "bf51d692-a22e-42e9-a495-2d1955e0c462", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "491099bb-9493-4888-bd4e-20bd2140830a", + "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", + "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "d9b94443-0b59-40db-aecb-0acb5ea7976c", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "e8c1ec2a-af7c-4d5d-a722-e8848873681a", + "segments": [ + 0, + 5, + 7, + 11, + 13, + 24, + 28, + 31, + 34, + 36, + 39, + 46, + 52, + 58, + 70, + 72, + 79, + 97, + 109, + 140, + 154, + 163, + 166, + 169, + 174, + 212, + 221, + 228, + 240, + 241, + 249, + 254, + 260 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 303, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446648, + 45.490497 + ], + [ + -73.446649, + 45.490498 + ], + [ + -73.446822, + 45.490639 + ], + [ + -73.44688, + 45.490686 + ], + [ + -73.447261, + 45.491005 + ], + [ + -73.447337, + 45.491069 + ], + [ + -73.447665, + 45.490889 + ], + [ + -73.448136, + 45.490592 + ], + [ + -73.44848, + 45.49039 + ], + [ + -73.448793, + 45.490206 + ], + [ + -73.44919, + 45.489963 + ], + [ + -73.449329, + 45.489885 + ], + [ + -73.449476, + 45.489801 + ], + [ + -73.450048, + 45.489455 + ], + [ + -73.450226, + 45.489293 + ], + [ + -73.450385, + 45.489131 + ], + [ + -73.450522, + 45.488807 + ], + [ + -73.450554, + 45.488637 + ], + [ + -73.450562, + 45.488591 + ], + [ + -73.450564, + 45.488501 + ], + [ + -73.451142, + 45.48852 + ], + [ + -73.451437, + 45.488556 + ], + [ + -73.451471, + 45.48856 + ], + [ + -73.451663, + 45.488618 + ], + [ + -73.451864, + 45.488677 + ], + [ + -73.452026, + 45.48874 + ], + [ + -73.452059, + 45.488756 + ], + [ + -73.45223, + 45.488835 + ], + [ + -73.452275, + 45.488865 + ], + [ + -73.452316, + 45.488894 + ], + [ + -73.452398, + 45.488943 + ], + [ + -73.452482, + 45.488993 + ], + [ + -73.452596, + 45.489092 + ], + [ + -73.452853, + 45.489389 + ], + [ + -73.453059, + 45.489641 + ], + [ + -73.453301, + 45.489897 + ], + [ + -73.453554, + 45.490154 + ], + [ + -73.453816, + 45.490388 + ], + [ + -73.454028, + 45.490572 + ], + [ + -73.454376, + 45.490852 + ], + [ + -73.454697, + 45.491106 + ], + [ + -73.454792, + 45.49118 + ], + [ + -73.455383, + 45.490825 + ], + [ + -73.456177, + 45.490348 + ], + [ + -73.456382, + 45.490186 + ], + [ + -73.45652, + 45.490034 + ], + [ + -73.456589, + 45.489894 + ], + [ + -73.456688, + 45.489687 + ], + [ + -73.456692, + 45.489672 + ], + [ + -73.456709, + 45.489602 + ], + [ + -73.456724, + 45.489525 + ], + [ + -73.456835, + 45.488612 + ], + [ + -73.456898, + 45.488079 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457725, + 45.486653 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.459252, + 45.485723 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.46022, + 45.485044 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.461101, + 45.484442 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.462585, + 45.484043 + ], + [ + -73.463416, + 45.484224 + ], + [ + -73.463639, + 45.484291 + ], + [ + -73.464599, + 45.48462 + ], + [ + -73.465244, + 45.484835 + ], + [ + -73.465443, + 45.484908 + ], + [ + -73.465586, + 45.484937 + ], + [ + -73.465724, + 45.484942 + ], + [ + -73.465848, + 45.484931 + ], + [ + -73.466018, + 45.484884 + ], + [ + -73.466121, + 45.484844 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466302, + 45.484687 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466188, + 45.484448 + ], + [ + -73.466149, + 45.484395 + ], + [ + -73.466127, + 45.48437 + ], + [ + -73.465905, + 45.484113 + ], + [ + -73.465719, + 45.4839 + ], + [ + -73.46546, + 45.483541 + ], + [ + -73.465236, + 45.483174 + ], + [ + -73.465161, + 45.483037 + ], + [ + -73.465057, + 45.482799 + ], + [ + -73.464968, + 45.48254 + ], + [ + -73.46489, + 45.482284 + ], + [ + -73.464833, + 45.481906 + ], + [ + -73.464816, + 45.481524 + ], + [ + -73.46484, + 45.481203 + ], + [ + -73.464843, + 45.481165 + ], + [ + -73.464847, + 45.481114 + ], + [ + -73.464866, + 45.480979 + ], + [ + -73.46492, + 45.48071 + ], + [ + -73.465032, + 45.480327 + ], + [ + -73.465198, + 45.479819 + ], + [ + -73.46547, + 45.479009 + ], + [ + -73.465545, + 45.478784 + ], + [ + -73.465652, + 45.478467 + ], + [ + -73.465874, + 45.477808 + ], + [ + -73.466473, + 45.476001 + ], + [ + -73.466484, + 45.475966 + ], + [ + -73.466637, + 45.475504 + ], + [ + -73.467366, + 45.473305 + ], + [ + -73.467616, + 45.472553 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467869, + 45.471793 + ], + [ + -73.467954, + 45.471482 + ], + [ + -73.467979, + 45.471365 + ], + [ + -73.468005, + 45.471249 + ], + [ + -73.468064, + 45.470898 + ], + [ + -73.468088, + 45.470659 + ], + [ + -73.468112, + 45.470407 + ], + [ + -73.468119, + 45.470155 + ], + [ + -73.468115, + 45.470044 + ], + [ + -73.468111, + 45.469894 + ], + [ + -73.468108, + 45.469818 + ], + [ + -73.468107, + 45.469773 + ], + [ + -73.46805, + 45.4693 + ], + [ + -73.467955, + 45.468842 + ], + [ + -73.467932, + 45.468733 + ], + [ + -73.467793, + 45.468274 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.46758, + 45.467757 + ], + [ + -73.467357, + 45.467296 + ], + [ + -73.466914, + 45.466403 + ], + [ + -73.466752, + 45.466083 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466352, + 45.465288 + ], + [ + -73.466238, + 45.465062 + ], + [ + -73.466142, + 45.464853 + ], + [ + -73.466048, + 45.464638 + ], + [ + -73.46599, + 45.464498 + ], + [ + -73.465967, + 45.464441 + ], + [ + -73.465777, + 45.463945 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465663, + 45.463449 + ], + [ + -73.465646, + 45.463238 + ], + [ + -73.465636, + 45.463073 + ], + [ + -73.465461, + 45.461275 + ], + [ + -73.465448, + 45.461145 + ], + [ + -73.465251, + 45.459263 + ], + [ + -73.465217, + 45.458913 + ], + [ + -73.465199, + 45.458728 + ], + [ + -73.465132, + 45.458038 + ], + [ + -73.465113, + 45.457592 + ], + [ + -73.465124, + 45.457143 + ], + [ + -73.465143, + 45.45685 + ], + [ + -73.465153, + 45.456755 + ], + [ + -73.465199, + 45.456301 + ], + [ + -73.465244, + 45.456 + ], + [ + -73.465335, + 45.455572 + ], + [ + -73.465339, + 45.455554 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465617, + 45.454677 + ], + [ + -73.465624, + 45.454658 + ], + [ + -73.465629, + 45.454641 + ], + [ + -73.465694, + 45.454481 + ], + [ + -73.465735, + 45.45438 + ], + [ + -73.465853, + 45.45411 + ], + [ + -73.466087, + 45.453654 + ], + [ + -73.46613, + 45.45357 + ], + [ + -73.466877, + 45.452297 + ], + [ + -73.467521, + 45.451236 + ], + [ + -73.468182, + 45.450183 + ], + [ + -73.469986, + 45.447403 + ], + [ + -73.4701, + 45.447228 + ], + [ + -73.470215, + 45.447052 + ], + [ + -73.471183, + 45.44739 + ], + [ + -73.471746, + 45.44757 + ], + [ + -73.472443, + 45.447795 + ], + [ + -73.473347, + 45.448088 + ], + [ + -73.473437, + 45.448115 + ], + [ + -73.473507, + 45.448007 + ], + [ + -73.473833, + 45.447525 + ], + [ + -73.473962, + 45.447314 + ], + [ + -73.474095, + 45.447058 + ], + [ + -73.474171, + 45.446882 + ], + [ + -73.474217, + 45.446698 + ], + [ + -73.474267, + 45.446278 + ], + [ + -73.474281, + 45.446153 + ], + [ + -73.474336, + 45.445279 + ], + [ + -73.474376, + 45.444635 + ], + [ + -73.474384, + 45.444507 + ], + [ + -73.474438, + 45.443521 + ], + [ + -73.474469, + 45.443314 + ], + [ + -73.474541, + 45.443044 + ], + [ + -73.474682, + 45.442761 + ], + [ + -73.474902, + 45.442388 + ], + [ + -73.475039, + 45.44219 + ], + [ + -73.475115, + 45.442091 + ], + [ + -73.475247, + 45.441942 + ], + [ + -73.475479, + 45.441749 + ], + [ + -73.475634, + 45.441649 + ], + [ + -73.475703, + 45.441605 + ], + [ + -73.475852, + 45.44151 + ], + [ + -73.476413, + 45.441313 + ], + [ + -73.476584, + 45.441272 + ], + [ + -73.47678, + 45.441236 + ], + [ + -73.477021, + 45.4412 + ], + [ + -73.477247, + 45.441191 + ], + [ + -73.477686, + 45.441194 + ], + [ + -73.478107, + 45.441196 + ], + [ + -73.479817, + 45.44121 + ], + [ + -73.480147, + 45.441223 + ], + [ + -73.480948, + 45.441276 + ], + [ + -73.481107, + 45.441286 + ], + [ + -73.481299, + 45.441295 + ], + [ + -73.48139, + 45.440598 + ], + [ + -73.481487, + 45.439784 + ], + [ + -73.481519, + 45.439469 + ], + [ + -73.481531, + 45.439172 + ], + [ + -73.481538, + 45.438636 + ], + [ + -73.48154, + 45.438492 + ], + [ + -73.481571, + 45.437827 + ], + [ + -73.481572, + 45.437776 + ], + [ + -73.481581, + 45.437111 + ], + [ + -73.481587, + 45.436704 + ], + [ + -73.48159, + 45.436549 + ], + [ + -73.481583, + 45.435545 + ], + [ + -73.481582, + 45.43541 + ], + [ + -73.482382, + 45.435405 + ], + [ + -73.482932, + 45.435402 + ], + [ + -73.484554, + 45.435388 + ], + [ + -73.484708, + 45.435387 + ], + [ + -73.487411, + 45.435365 + ], + [ + -73.487529, + 45.435364 + ], + [ + -73.487766, + 45.435362 + ], + [ + -73.488499, + 45.435353 + ], + [ + -73.489078, + 45.435353 + ], + [ + -73.490339, + 45.435335 + ], + [ + -73.490512, + 45.435353 + ], + [ + -73.490636, + 45.435389 + ], + [ + -73.49074, + 45.435443 + ], + [ + -73.490825, + 45.43552 + ], + [ + -73.490911, + 45.435596 + ], + [ + -73.490932, + 45.435789 + ], + [ + -73.490941, + 45.43588 + ], + [ + -73.490978, + 45.436131 + ], + [ + -73.491142, + 45.436851 + ], + [ + -73.491209, + 45.437086 + ], + [ + -73.491237, + 45.437184 + ], + [ + -73.49152, + 45.437954 + ], + [ + -73.491746, + 45.438455 + ], + [ + -73.491829, + 45.438638 + ], + [ + -73.49121, + 45.438629 + ], + [ + -73.488285, + 45.43859 + ], + [ + -73.488148, + 45.438588 + ], + [ + -73.485032, + 45.438549 + ], + [ + -73.484835, + 45.438547 + ], + [ + -73.484725, + 45.438545 + ], + [ + -73.481702, + 45.438495 + ] + ] + }, + "id": 304, + "properties": { + "id": "320116ca-0018-4699-80a6-5fc4cd4a991d", + "data": { + "gtfs": { + "shape_id": "549_2_R" + }, + "segments": [ + { + "distanceMeters": 173, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 74, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 909, + "travelTimeSeconds": 135 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 608, + "travelTimeSeconds": 90 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 884, + "travelTimeSeconds": 131 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 477, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 898, + "travelTimeSeconds": 133 + }, + { + "distanceMeters": 516, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 39 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10920, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6451.177015702193, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.74, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 6.07, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.74 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "35f25056-4f99-4b6e-babc-10c53194c70e", + "0f232130-277e-4d7b-b106-b6821c45f0a9", + "4262a22a-885d-4877-ad99-0a8406e2adaa", + "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", + "517a8299-e807-4040-8ccd-f417dda7338c", + "da4ca96f-4db9-4287-b307-afc6221c923f", + "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "a90c4da7-455c-41d3-9961-c7a64d627572", + "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "579043e1-54f7-411f-9a36-e7ee3324290f", + "1758013c-4193-42f0-a495-c36930003f5b", + "51e1600d-418e-4477-9b26-9e5507d72a03", + "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "74887516-47d5-4269-9513-84672d18e287", + "1e3a74d9-9d8a-467f-a82e-3dafee501e32", + "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", + "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", + "aebecb3d-b7f4-4a39-9b68-19a1c1a3b2b2", + "eab0f5d6-db57-4bf2-a26d-a49e7fe11c54", + "972f2e12-8185-4823-8ce3-2c965170ad9a", + "ca880d29-2a91-4666-9ed1-c2825e5165f2", + "a532b39a-66ec-444f-abc1-766787d9387c", + "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", + "52fa062f-ca90-4e1d-998a-7b658a499b52", + "553f2fec-7dd4-475c-b1ed-ff9a62614e74", + "7a321951-38aa-4886-b297-59c69bcf3448", + "23afb18c-7e9a-4c38-a0e7-59d1aa5f5f5f", + "8f8e9cec-3b4e-465e-9db7-a68a74d060d1", + "a755707e-dbca-49b2-ba36-d6e6ffe0de89", + "70846d21-918c-4542-969d-4e5cccbc6e50", + "b88e581a-07f9-428f-bbb4-ab3a41e2dfe7", + "6195cfbf-10cd-4d7a-86f0-ca5dad76f9d9", + "205aad7d-06ec-4492-b7ed-ac8ab79f10b2" + ], + "stops": [], + "line_id": "e8c1ec2a-af7c-4d5d-a722-e8848873681a", + "segments": [ + 0, + 10, + 14, + 21, + 27, + 38, + 50, + 58, + 62, + 71, + 76, + 83, + 121, + 129, + 132, + 144, + 152, + 174, + 176, + 190, + 201, + 214, + 217, + 228, + 236, + 240, + 247, + 252, + 254, + 258, + 260, + 271, + 275, + 278, + 281, + 283 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 304, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.47318, + 45.448516 + ], + [ + -73.473049, + 45.44872 + ], + [ + -73.47303, + 45.448749 + ], + [ + -73.472948, + 45.448844 + ], + [ + -73.472758, + 45.448996 + ], + [ + -73.472583, + 45.449086 + ], + [ + -73.47242, + 45.449145 + ], + [ + -73.472128, + 45.449217 + ], + [ + -73.471995, + 45.449248 + ], + [ + -73.471866, + 45.449284 + ], + [ + -73.471718, + 45.449347 + ], + [ + -73.471562, + 45.449433 + ], + [ + -73.471456, + 45.449523 + ], + [ + -73.471364, + 45.449599 + ], + [ + -73.471258, + 45.449752 + ], + [ + -73.471118, + 45.449963 + ], + [ + -73.470954, + 45.450197 + ], + [ + -73.470688, + 45.450625 + ], + [ + -73.470669, + 45.450664 + ], + [ + -73.470498, + 45.451021 + ], + [ + -73.470381, + 45.451277 + ], + [ + -73.469962, + 45.452249 + ], + [ + -73.469638, + 45.453009 + ], + [ + -73.469306, + 45.453787 + ], + [ + -73.469164, + 45.45412 + ], + [ + -73.469093, + 45.454287 + ], + [ + -73.468944, + 45.454656 + ], + [ + -73.468828, + 45.455033 + ], + [ + -73.468739, + 45.455281 + ], + [ + -73.468506, + 45.455931 + ], + [ + -73.468443, + 45.456109 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468158, + 45.456945 + ], + [ + -73.468147, + 45.457005 + ], + [ + -73.468109, + 45.457211 + ], + [ + -73.468045, + 45.457821 + ], + [ + -73.468021, + 45.458057 + ], + [ + -73.467975, + 45.458309 + ], + [ + -73.467971, + 45.458525 + ], + [ + -73.467956, + 45.458669 + ], + [ + -73.467979, + 45.458754 + ], + [ + -73.468046, + 45.458906 + ], + [ + -73.468056, + 45.45893 + ], + [ + -73.468212, + 45.459096 + ], + [ + -73.468425, + 45.459258 + ], + [ + -73.468742, + 45.459506 + ], + [ + -73.468938, + 45.459704 + ], + [ + -73.46901, + 45.459861 + ], + [ + -73.469046, + 45.459978 + ], + [ + -73.469045, + 45.460397 + ], + [ + -73.469025, + 45.46067 + ], + [ + -73.46901, + 45.460865 + ], + [ + -73.46897, + 45.46149 + ], + [ + -73.468876, + 45.462738 + ], + [ + -73.468837, + 45.463254 + ], + [ + -73.468834, + 45.463408 + ], + [ + -73.468833, + 45.46342 + ], + [ + -73.468884, + 45.463461 + ], + [ + -73.468972, + 45.463474 + ], + [ + -73.46938, + 45.463488 + ], + [ + -73.470687, + 45.463533 + ], + [ + -73.471257, + 45.463547 + ], + [ + -73.471494, + 45.463556 + ], + [ + -73.471503, + 45.463556 + ], + [ + -73.471666, + 45.463565 + ], + [ + -73.471841, + 45.463592 + ], + [ + -73.472107, + 45.4637 + ], + [ + -73.472761, + 45.464147 + ], + [ + -73.472811, + 45.464181 + ], + [ + -73.473207, + 45.464434 + ], + [ + -73.473499, + 45.464573 + ], + [ + -73.473705, + 45.464641 + ], + [ + -73.473949, + 45.464699 + ], + [ + -73.474168, + 45.464717 + ], + [ + -73.474508, + 45.464734 + ], + [ + -73.474661, + 45.464744 + ], + [ + -73.474783, + 45.464747 + ], + [ + -73.475061, + 45.464753 + ], + [ + -73.476229, + 45.46479 + ], + [ + -73.47815, + 45.464859 + ], + [ + -73.478688, + 45.464879 + ], + [ + -73.478969, + 45.464889 + ], + [ + -73.479281, + 45.464889 + ], + [ + -73.479651, + 45.464862 + ], + [ + -73.479951, + 45.464831 + ], + [ + -73.480287, + 45.464772 + ], + [ + -73.480652, + 45.464687 + ], + [ + -73.480952, + 45.464593 + ], + [ + -73.481345, + 45.464437 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.481235, + 45.464154 + ], + [ + -73.480971, + 45.463838 + ], + [ + -73.480932, + 45.463792 + ], + [ + -73.480306, + 45.46304 + ], + [ + -73.479953, + 45.462619 + ], + [ + -73.479274, + 45.461807 + ], + [ + -73.478983, + 45.461465 + ], + [ + -73.478678, + 45.461105 + ], + [ + -73.47855, + 45.461011 + ], + [ + -73.478432, + 45.460906 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.476645, + 45.461976 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.474375, + 45.468231 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474292, + 45.469387 + ], + [ + -73.474258, + 45.469564 + ], + [ + -73.474234, + 45.469689 + ], + [ + -73.474156, + 45.470095 + ], + [ + -73.474035, + 45.470724 + ], + [ + -73.473974, + 45.47107 + ], + [ + -73.473942, + 45.471336 + ], + [ + -73.473932, + 45.471601 + ], + [ + -73.473938, + 45.471698 + ], + [ + -73.473947, + 45.471826 + ], + [ + -73.473986, + 45.472118 + ], + [ + -73.473998, + 45.472177 + ], + [ + -73.474046, + 45.47242 + ], + [ + -73.474106, + 45.47264 + ], + [ + -73.474275, + 45.473063 + ], + [ + -73.474463, + 45.473437 + ], + [ + -73.474007, + 45.473581 + ], + [ + -73.473846, + 45.473648 + ], + [ + -73.473736, + 45.473702 + ], + [ + -73.473545, + 45.473797 + ], + [ + -73.473465, + 45.473841 + ], + [ + -73.473457, + 45.473846 + ], + [ + -73.473334, + 45.473927 + ], + [ + -73.473141, + 45.474053 + ], + [ + -73.473062, + 45.474109 + ], + [ + -73.472074, + 45.474808 + ], + [ + -73.471729, + 45.474583 + ], + [ + -73.470383, + 45.473616 + ], + [ + -73.470064, + 45.473386 + ], + [ + -73.468607, + 45.472409 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467508, + 45.472063 + ], + [ + -73.467493, + 45.472108 + ], + [ + -73.467342, + 45.472565 + ], + [ + -73.467254, + 45.472832 + ], + [ + -73.467075, + 45.473412 + ], + [ + -73.467018, + 45.473612 + ], + [ + -73.46686, + 45.474168 + ], + [ + -73.466715, + 45.474632 + ], + [ + -73.466501, + 45.475269 + ], + [ + -73.466278, + 45.475935 + ], + [ + -73.466234, + 45.476067 + ], + [ + -73.466128, + 45.476381 + ], + [ + -73.465592, + 45.477979 + ], + [ + -73.465357, + 45.478703 + ], + [ + -73.465338, + 45.478752 + ], + [ + -73.465269, + 45.478932 + ], + [ + -73.465247, + 45.479 + ], + [ + -73.46512, + 45.479381 + ], + [ + -73.464879, + 45.480107 + ], + [ + -73.464823, + 45.480273 + ], + [ + -73.464733, + 45.480574 + ], + [ + -73.464664, + 45.480885 + ], + [ + -73.464647, + 45.481009 + ], + [ + -73.464634, + 45.481108 + ], + [ + -73.464622, + 45.481195 + ], + [ + -73.464619, + 45.481245 + ], + [ + -73.464603, + 45.481524 + ], + [ + -73.464619, + 45.481956 + ], + [ + -73.464693, + 45.482383 + ], + [ + -73.464736, + 45.482559 + ], + [ + -73.46485, + 45.482905 + ], + [ + -73.46499, + 45.483243 + ], + [ + -73.465069, + 45.483405 + ], + [ + -73.465231, + 45.483688 + ], + [ + -73.465328, + 45.483837 + ], + [ + -73.465516, + 45.484318 + ], + [ + -73.465535, + 45.48439 + ], + [ + -73.465531, + 45.484453 + ], + [ + -73.465521, + 45.484494 + ], + [ + -73.465494, + 45.484521 + ], + [ + -73.465474, + 45.484542 + ], + [ + -73.465464, + 45.484552 + ], + [ + -73.46542, + 45.484575 + ], + [ + -73.465379, + 45.484592 + ], + [ + -73.465324, + 45.484601 + ], + [ + -73.465214, + 45.484601 + ], + [ + -73.464965, + 45.484574 + ], + [ + -73.464559, + 45.484417 + ], + [ + -73.464508, + 45.484399 + ], + [ + -73.464185, + 45.484291 + ], + [ + -73.463703, + 45.484155 + ], + [ + -73.463657, + 45.484142 + ], + [ + -73.46319, + 45.484029 + ], + [ + -73.462672, + 45.483908 + ], + [ + -73.462287, + 45.483831 + ], + [ + -73.462032, + 45.483791 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.46135, + 45.4837 + ], + [ + -73.460838, + 45.483637 + ], + [ + -73.460192, + 45.483582 + ], + [ + -73.459999, + 45.483565 + ], + [ + -73.459497, + 45.483511 + ], + [ + -73.459033, + 45.483457 + ], + [ + -73.458739, + 45.483407 + ], + [ + -73.458547, + 45.483371 + ], + [ + -73.458333, + 45.483321 + ], + [ + -73.458016, + 45.483245 + ], + [ + -73.45777, + 45.483182 + ], + [ + -73.457506, + 45.483105 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45645, + 45.482799 + ], + [ + -73.455886, + 45.482623 + ], + [ + -73.455654, + 45.482542 + ], + [ + -73.455462, + 45.482465 + ], + [ + -73.455285, + 45.482388 + ], + [ + -73.455276, + 45.482384 + ], + [ + -73.455009, + 45.482272 + ], + [ + -73.454605, + 45.482087 + ], + [ + -73.454381, + 45.481984 + ], + [ + -73.454145, + 45.481862 + ], + [ + -73.453796, + 45.481673 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452379, + 45.481446 + ], + [ + -73.452062, + 45.481636 + ], + [ + -73.45135, + 45.482063 + ], + [ + -73.451254, + 45.48212 + ], + [ + -73.4501, + 45.482806 + ], + [ + -73.449882, + 45.482936 + ], + [ + -73.449245, + 45.483336 + ], + [ + -73.449101, + 45.483471 + ], + [ + -73.448914, + 45.483713 + ], + [ + -73.448817, + 45.483898 + ], + [ + -73.448629, + 45.484109 + ], + [ + -73.44844, + 45.484271 + ], + [ + -73.448224, + 45.48448 + ], + [ + -73.44775, + 45.484937 + ], + [ + -73.447415, + 45.485256 + ], + [ + -73.447237, + 45.485427 + ], + [ + -73.447005, + 45.485643 + ], + [ + -73.446789, + 45.485849 + ], + [ + -73.446708, + 45.485926 + ], + [ + -73.445795, + 45.486794 + ], + [ + -73.445654, + 45.486915 + ], + [ + -73.445524, + 45.487041 + ], + [ + -73.445408, + 45.487167 + ], + [ + -73.44536, + 45.48723 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 305, + "properties": { + "id": "646a31b1-bed7-4d44-9bbb-7d4c703df233", + "data": { + "gtfs": { + "shape_id": "550_1_A" + }, + "segments": [ + { + "distanceMeters": 25, + "travelTimeSeconds": 3 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 40, + "travelTimeSeconds": 5 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 750, + "travelTimeSeconds": 104 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 404, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 435, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 72, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 838, + "travelTimeSeconds": 116 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 405, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 509, + "travelTimeSeconds": 71 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9524, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5152.941043765201, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.21, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 6.35, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.21 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "5847442f-86f3-431c-ac38-324378b56363", + "5847442f-86f3-431c-ac38-324378b56363", + "23085815-2dff-4082-9402-38931522fb99", + "e21c6436-090b-4893-a347-5a67018da073", + "d5176685-5789-4135-ac00-ee677cfb093a", + "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", + "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", + "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", + "ef880d61-7a9a-4504-a9a1-27967a52e95d", + "f872f4da-bae9-485b-a2fb-ae01787389fc", + "71ffac32-604a-4260-b51e-c427856a20c4", + "70ace55a-2f3c-410b-8740-bea06ecb9924", + "5a01eede-d090-4bda-988f-792a987bafc2", + "eee98f97-7434-4d16-88a6-93a424bc6846", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "003bcf5e-54a8-471f-b008-b7fa64ff94ba", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", + "3a8b9936-4595-4770-a3f4-b31253602356", + "82735dcc-3897-4e4c-87e8-45ee1dacedaa", + "85f19be2-1f67-4673-b3b3-52d06ed31ae3", + "47d29e21-b442-4f1e-bc41-0d7871af14e8", + "7eaffbff-c86c-4810-b174-bda8780c04b4", + "e76a6766-6730-419b-bd29-f65b80bb6721", + "bf51d692-a22e-42e9-a495-2d1955e0c462", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "491099bb-9493-4888-bd4e-20bd2140830a", + "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", + "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "d9b94443-0b59-40db-aecb-0acb5ea7976c", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "cbba6b0c-47b9-488d-b560-8357c52cbbe3", + "segments": [ + 0, + 1, + 18, + 22, + 24, + 29, + 35, + 41, + 50, + 55, + 63, + 67, + 76, + 79, + 88, + 90, + 94, + 99, + 102, + 130, + 135, + 142, + 154, + 161, + 169, + 178, + 181, + 184, + 189, + 227, + 236, + 242, + 255, + 256, + 264, + 269, + 275 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 305, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446648, + 45.490497 + ], + [ + -73.446649, + 45.490498 + ], + [ + -73.446822, + 45.490639 + ], + [ + -73.44688, + 45.490686 + ], + [ + -73.447261, + 45.491005 + ], + [ + -73.447337, + 45.491069 + ], + [ + -73.447665, + 45.490889 + ], + [ + -73.448136, + 45.490592 + ], + [ + -73.44848, + 45.49039 + ], + [ + -73.448793, + 45.490206 + ], + [ + -73.44919, + 45.489963 + ], + [ + -73.449329, + 45.489885 + ], + [ + -73.449476, + 45.489801 + ], + [ + -73.450048, + 45.489455 + ], + [ + -73.450226, + 45.489293 + ], + [ + -73.450385, + 45.489131 + ], + [ + -73.450522, + 45.488807 + ], + [ + -73.450554, + 45.488637 + ], + [ + -73.450562, + 45.488591 + ], + [ + -73.450564, + 45.488501 + ], + [ + -73.451142, + 45.48852 + ], + [ + -73.451437, + 45.488556 + ], + [ + -73.451471, + 45.48856 + ], + [ + -73.451663, + 45.488618 + ], + [ + -73.451864, + 45.488677 + ], + [ + -73.452026, + 45.48874 + ], + [ + -73.452059, + 45.488756 + ], + [ + -73.45223, + 45.488835 + ], + [ + -73.452275, + 45.488865 + ], + [ + -73.452316, + 45.488894 + ], + [ + -73.452398, + 45.488943 + ], + [ + -73.452482, + 45.488993 + ], + [ + -73.452596, + 45.489092 + ], + [ + -73.452853, + 45.489389 + ], + [ + -73.453059, + 45.489641 + ], + [ + -73.453301, + 45.489897 + ], + [ + -73.453554, + 45.490154 + ], + [ + -73.453816, + 45.490388 + ], + [ + -73.454028, + 45.490572 + ], + [ + -73.454376, + 45.490852 + ], + [ + -73.454697, + 45.491106 + ], + [ + -73.454792, + 45.49118 + ], + [ + -73.455383, + 45.490825 + ], + [ + -73.456177, + 45.490348 + ], + [ + -73.456382, + 45.490186 + ], + [ + -73.45652, + 45.490034 + ], + [ + -73.456589, + 45.489894 + ], + [ + -73.456688, + 45.489687 + ], + [ + -73.456692, + 45.489672 + ], + [ + -73.456709, + 45.489602 + ], + [ + -73.456724, + 45.489525 + ], + [ + -73.456835, + 45.488612 + ], + [ + -73.456898, + 45.488079 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457725, + 45.486653 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.459252, + 45.485723 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.46022, + 45.485044 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.461101, + 45.484442 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.462585, + 45.484043 + ], + [ + -73.463416, + 45.484224 + ], + [ + -73.463639, + 45.484291 + ], + [ + -73.464599, + 45.48462 + ], + [ + -73.465244, + 45.484835 + ], + [ + -73.465443, + 45.484908 + ], + [ + -73.465586, + 45.484937 + ], + [ + -73.465724, + 45.484942 + ], + [ + -73.465848, + 45.484931 + ], + [ + -73.466018, + 45.484884 + ], + [ + -73.466121, + 45.484844 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466302, + 45.484687 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466188, + 45.484448 + ], + [ + -73.466149, + 45.484395 + ], + [ + -73.466127, + 45.48437 + ], + [ + -73.465905, + 45.484113 + ], + [ + -73.465719, + 45.4839 + ], + [ + -73.46546, + 45.483541 + ], + [ + -73.465236, + 45.483174 + ], + [ + -73.465161, + 45.483037 + ], + [ + -73.465057, + 45.482799 + ], + [ + -73.464968, + 45.48254 + ], + [ + -73.46489, + 45.482284 + ], + [ + -73.464833, + 45.481906 + ], + [ + -73.464816, + 45.481524 + ], + [ + -73.46484, + 45.481203 + ], + [ + -73.464843, + 45.481165 + ], + [ + -73.464847, + 45.481114 + ], + [ + -73.464866, + 45.480979 + ], + [ + -73.46492, + 45.48071 + ], + [ + -73.465032, + 45.480327 + ], + [ + -73.465198, + 45.479819 + ], + [ + -73.46547, + 45.479009 + ], + [ + -73.465545, + 45.478784 + ], + [ + -73.465652, + 45.478467 + ], + [ + -73.465874, + 45.477808 + ], + [ + -73.466472, + 45.476001 + ], + [ + -73.466484, + 45.475966 + ], + [ + -73.466637, + 45.475504 + ], + [ + -73.467366, + 45.473305 + ], + [ + -73.467616, + 45.472553 + ], + [ + -73.467822, + 45.472468 + ], + [ + -73.467906, + 45.472436 + ], + [ + -73.468005, + 45.472409 + ], + [ + -73.468127, + 45.472396 + ], + [ + -73.468231, + 45.472409 + ], + [ + -73.468368, + 45.472441 + ], + [ + -73.468499, + 45.472486 + ], + [ + -73.469144, + 45.472936 + ], + [ + -73.469236, + 45.473 + ], + [ + -73.469656, + 45.473293 + ], + [ + -73.469926, + 45.473481 + ], + [ + -73.471608, + 45.474678 + ], + [ + -73.471797, + 45.474817 + ], + [ + -73.471919, + 45.474907 + ], + [ + -73.472018, + 45.474979 + ], + [ + -73.47218, + 45.47489 + ], + [ + -73.472421, + 45.474721 + ], + [ + -73.473247, + 45.474143 + ], + [ + -73.473259, + 45.474135 + ], + [ + -73.473452, + 45.474003 + ], + [ + -73.47356, + 45.473931 + ], + [ + -73.47364, + 45.473887 + ], + [ + -73.473932, + 45.473738 + ], + [ + -73.474194, + 45.473626 + ], + [ + -73.474513, + 45.473518 + ], + [ + -73.474653, + 45.473477 + ], + [ + -73.474613, + 45.473387 + ], + [ + -73.47455, + 45.473262 + ], + [ + -73.474431, + 45.473027 + ], + [ + -73.474274, + 45.472609 + ], + [ + -73.474213, + 45.472397 + ], + [ + -73.474173, + 45.472208 + ], + [ + -73.474165, + 45.472163 + ], + [ + -73.474141, + 45.472028 + ], + [ + -73.474138, + 45.472008 + ], + [ + -73.47411, + 45.47183 + ], + [ + -73.474121, + 45.471228 + ], + [ + -73.474166, + 45.470967 + ], + [ + -73.474399, + 45.469698 + ], + [ + -73.474423, + 45.469568 + ], + [ + -73.474454, + 45.469396 + ], + [ + -73.474489, + 45.469055 + ], + [ + -73.474517, + 45.468816 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474544, + 45.468492 + ], + [ + -73.474545, + 45.468488 + ], + [ + -73.474528, + 45.468236 + ], + [ + -73.474508, + 45.467936 + ], + [ + -73.474508, + 45.467294 + ], + [ + -73.474542, + 45.4665 + ], + [ + -73.474546, + 45.466404 + ], + [ + -73.474554, + 45.466199 + ], + [ + -73.474621, + 45.465194 + ], + [ + -73.474664, + 45.464506 + ], + [ + -73.474669, + 45.464397 + ], + [ + -73.474734, + 45.464067 + ], + [ + -73.474884, + 45.463697 + ], + [ + -73.475002, + 45.463492 + ], + [ + -73.47522, + 45.463212 + ], + [ + -73.475408, + 45.463039 + ], + [ + -73.47556, + 45.462909 + ], + [ + -73.475821, + 45.462711 + ], + [ + -73.476105, + 45.462495 + ], + [ + -73.476434, + 45.462262 + ], + [ + -73.476557, + 45.462176 + ], + [ + -73.477249, + 45.461685 + ], + [ + -73.478214, + 45.460957 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.47855, + 45.461011 + ], + [ + -73.478678, + 45.461105 + ], + [ + -73.478847, + 45.461305 + ], + [ + -73.478983, + 45.461465 + ], + [ + -73.479274, + 45.461807 + ], + [ + -73.479715, + 45.462334 + ], + [ + -73.480306, + 45.46304 + ], + [ + -73.480932, + 45.463792 + ], + [ + -73.48136, + 45.464304 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.480952, + 45.464593 + ], + [ + -73.480652, + 45.464687 + ], + [ + -73.480572, + 45.464706 + ], + [ + -73.480287, + 45.464772 + ], + [ + -73.479951, + 45.464831 + ], + [ + -73.479651, + 45.464862 + ], + [ + -73.479281, + 45.464889 + ], + [ + -73.478969, + 45.464889 + ], + [ + -73.478722, + 45.46488 + ], + [ + -73.478688, + 45.464879 + ], + [ + -73.476229, + 45.46479 + ], + [ + -73.475061, + 45.464753 + ], + [ + -73.474661, + 45.464744 + ], + [ + -73.474508, + 45.464734 + ], + [ + -73.474268, + 45.464722 + ], + [ + -73.474168, + 45.464717 + ], + [ + -73.473949, + 45.464699 + ], + [ + -73.473705, + 45.464641 + ], + [ + -73.473499, + 45.464573 + ], + [ + -73.473207, + 45.464434 + ], + [ + -73.473012, + 45.464309 + ], + [ + -73.472811, + 45.464181 + ], + [ + -73.472107, + 45.4637 + ], + [ + -73.471841, + 45.463592 + ], + [ + -73.471677, + 45.463567 + ], + [ + -73.471666, + 45.463565 + ], + [ + -73.471494, + 45.463556 + ], + [ + -73.471257, + 45.463547 + ], + [ + -73.470687, + 45.463533 + ], + [ + -73.469168, + 45.463481 + ], + [ + -73.468972, + 45.463474 + ], + [ + -73.468884, + 45.463461 + ], + [ + -73.468833, + 45.46342 + ], + [ + -73.468836, + 45.463308 + ], + [ + -73.468837, + 45.463254 + ], + [ + -73.468876, + 45.462738 + ], + [ + -73.46897, + 45.46149 + ], + [ + -73.46901, + 45.460865 + ], + [ + -73.469029, + 45.460613 + ], + [ + -73.469045, + 45.460397 + ], + [ + -73.469046, + 45.459978 + ], + [ + -73.46901, + 45.459861 + ], + [ + -73.468938, + 45.459704 + ], + [ + -73.468742, + 45.459506 + ], + [ + -73.468425, + 45.459258 + ], + [ + -73.468212, + 45.459096 + ], + [ + -73.468161, + 45.459042 + ], + [ + -73.468056, + 45.45893 + ], + [ + -73.467979, + 45.458754 + ], + [ + -73.467956, + 45.458669 + ], + [ + -73.467971, + 45.458525 + ], + [ + -73.467975, + 45.458309 + ], + [ + -73.467994, + 45.458203 + ], + [ + -73.468021, + 45.458057 + ], + [ + -73.468109, + 45.457211 + ], + [ + -73.468147, + 45.457005 + ], + [ + -73.468147, + 45.457003 + ], + [ + -73.468158, + 45.456945 + ], + [ + -73.468344, + 45.456399 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468443, + 45.456109 + ], + [ + -73.468739, + 45.455281 + ], + [ + -73.468828, + 45.455033 + ], + [ + -73.468944, + 45.454656 + ], + [ + -73.469057, + 45.454375 + ], + [ + -73.469093, + 45.454287 + ], + [ + -73.469306, + 45.453787 + ], + [ + -73.469577, + 45.453152 + ], + [ + -73.469962, + 45.452249 + ], + [ + -73.470381, + 45.451277 + ], + [ + -73.470498, + 45.451021 + ], + [ + -73.470667, + 45.450669 + ], + [ + -73.470688, + 45.450625 + ], + [ + -73.470954, + 45.450197 + ], + [ + -73.471118, + 45.449963 + ], + [ + -73.471258, + 45.449752 + ], + [ + -73.471364, + 45.449599 + ], + [ + -73.471456, + 45.449523 + ], + [ + -73.471562, + 45.449433 + ], + [ + -73.471718, + 45.449347 + ], + [ + -73.471866, + 45.449284 + ], + [ + -73.471995, + 45.449248 + ], + [ + -73.472128, + 45.449217 + ], + [ + -73.47242, + 45.449145 + ], + [ + -73.472583, + 45.449086 + ], + [ + -73.472758, + 45.448996 + ], + [ + -73.472948, + 45.448844 + ], + [ + -73.47303, + 45.448749 + ], + [ + -73.473377, + 45.448208 + ] + ] + }, + "id": 306, + "properties": { + "id": "b54cf255-5528-4dc5-a228-789070407001", + "data": { + "gtfs": { + "shape_id": "550_2_R" + }, + "segments": [ + { + "distanceMeters": 173, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 74, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 909, + "travelTimeSeconds": 143 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 596, + "travelTimeSeconds": 94 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 84, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 774, + "travelTimeSeconds": 121 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 81, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 348, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 69, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 57 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9542, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5221.017160545563, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.36, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 5.68, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.36 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "35f25056-4f99-4b6e-babc-10c53194c70e", + "0f232130-277e-4d7b-b106-b6821c45f0a9", + "4262a22a-885d-4877-ad99-0a8406e2adaa", + "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", + "517a8299-e807-4040-8ccd-f417dda7338c", + "da4ca96f-4db9-4287-b307-afc6221c923f", + "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "a90c4da7-455c-41d3-9961-c7a64d627572", + "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "579043e1-54f7-411f-9a36-e7ee3324290f", + "1758013c-4193-42f0-a495-c36930003f5b", + "1345672a-9148-439f-9a52-b8a216612929", + "ece1943b-159a-42fa-a0c1-16e06714e25e", + "82735dcc-3897-4e4c-87e8-45ee1dacedaa", + "3a8b9936-4595-4770-a3f4-b31253602356", + "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "003bcf5e-54a8-471f-b008-b7fa64ff94ba", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "eee98f97-7434-4d16-88a6-93a424bc6846", + "4bbdfb79-c7dc-46c0-893b-48e38ccd2db0", + "70ace55a-2f3c-410b-8740-bea06ecb9924", + "71ffac32-604a-4260-b51e-c427856a20c4", + "f872f4da-bae9-485b-a2fb-ae01787389fc", + "f045bfca-885e-4fa6-be24-3e8f1855457a", + "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", + "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", + "ca62a640-5508-4ced-94a0-1f22107c57c9", + "ca62a640-5508-4ced-94a0-1f22107c57c9", + "d5176685-5789-4135-ac00-ee677cfb093a", + "e21c6436-090b-4893-a347-5a67018da073", + "23085815-2dff-4082-9402-38931522fb99", + "9d8d74b7-fc1f-4af5-a4a4-0cee1ee7b556" + ], + "stops": [], + "line_id": "cbba6b0c-47b9-488d-b560-8357c52cbbe3", + "segments": [ + 0, + 10, + 14, + 21, + 27, + 38, + 50, + 58, + 62, + 71, + 76, + 83, + 121, + 129, + 132, + 146, + 149, + 155, + 171, + 176, + 179, + 201, + 204, + 208, + 211, + 214, + 224, + 230, + 236, + 240, + 245, + 254, + 262, + 268, + 272, + 274, + 280, + 283, + 287 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 306, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.44669, + 45.451742 + ], + [ + -73.446544, + 45.451625 + ], + [ + -73.446361, + 45.451477 + ], + [ + -73.446255, + 45.45139 + ], + [ + -73.44517, + 45.4505 + ], + [ + -73.445063, + 45.450414 + ], + [ + -73.444716, + 45.450137 + ], + [ + -73.44418, + 45.449701 + ], + [ + -73.444019, + 45.449571 + ], + [ + -73.443592, + 45.449224 + ], + [ + -73.442951, + 45.4487 + ], + [ + -73.442867, + 45.448632 + ], + [ + -73.442823, + 45.448596 + ], + [ + -73.442719, + 45.448512 + ], + [ + -73.442307, + 45.448179 + ], + [ + -73.442297, + 45.448171 + ], + [ + -73.442221, + 45.44811 + ], + [ + -73.441797, + 45.447793 + ], + [ + -73.441083, + 45.447203 + ], + [ + -73.440351, + 45.446618 + ], + [ + -73.440227, + 45.446519 + ], + [ + -73.440193, + 45.446491 + ], + [ + -73.439095, + 45.445641 + ], + [ + -73.438366, + 45.445057 + ], + [ + -73.438227, + 45.444954 + ], + [ + -73.438338, + 45.444864 + ], + [ + -73.43846, + 45.444775 + ], + [ + -73.43865, + 45.444636 + ], + [ + -73.438851, + 45.444488 + ], + [ + -73.439723, + 45.443742 + ], + [ + -73.439847, + 45.44364 + ], + [ + -73.439975, + 45.443534 + ], + [ + -73.440539, + 45.443068 + ], + [ + -73.441276, + 45.442429 + ], + [ + -73.441943, + 45.441851 + ], + [ + -73.442064, + 45.44172 + ], + [ + -73.442173, + 45.441795 + ], + [ + -73.444502, + 45.443464 + ], + [ + -73.444646, + 45.443567 + ], + [ + -73.444814, + 45.443691 + ], + [ + -73.445792, + 45.44439 + ], + [ + -73.445916, + 45.444479 + ], + [ + -73.447006, + 45.445253 + ], + [ + -73.447144, + 45.445352 + ], + [ + -73.44736, + 45.4455 + ], + [ + -73.447729, + 45.445718 + ], + [ + -73.448087, + 45.44592 + ], + [ + -73.449214, + 45.446551 + ], + [ + -73.449266, + 45.44658 + ], + [ + -73.4494, + 45.446659 + ], + [ + -73.449563, + 45.446742 + ], + [ + -73.450068, + 45.447011 + ], + [ + -73.450448, + 45.447201 + ], + [ + -73.451097, + 45.447517 + ], + [ + -73.4522, + 45.448094 + ], + [ + -73.452476, + 45.448237 + ], + [ + -73.453807, + 45.448921 + ], + [ + -73.454021, + 45.449073 + ], + [ + -73.454088, + 45.449121 + ], + [ + -73.454556, + 45.449427 + ], + [ + -73.454805, + 45.449616 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.455393, + 45.45012 + ], + [ + -73.456061, + 45.45066 + ], + [ + -73.456286, + 45.450829 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.45715, + 45.451446 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.456661, + 45.452047 + ], + [ + -73.456649, + 45.452057 + ], + [ + -73.456511, + 45.452168 + ], + [ + -73.456345, + 45.452339 + ], + [ + -73.456105, + 45.452573 + ], + [ + -73.455893, + 45.452816 + ], + [ + -73.455815, + 45.452917 + ], + [ + -73.45573, + 45.453027 + ], + [ + -73.455536, + 45.453301 + ], + [ + -73.455293, + 45.453751 + ], + [ + -73.455167, + 45.454075 + ], + [ + -73.455022, + 45.454574 + ], + [ + -73.455003, + 45.454649 + ], + [ + -73.454977, + 45.454754 + ], + [ + -73.454933, + 45.455281 + ], + [ + -73.454963, + 45.455744 + ], + [ + -73.455037, + 45.456136 + ], + [ + -73.455173, + 45.456599 + ], + [ + -73.455283, + 45.456847 + ], + [ + -73.455363, + 45.457004 + ], + [ + -73.455596, + 45.457405 + ], + [ + -73.455646, + 45.457494 + ], + [ + -73.456006, + 45.458134 + ], + [ + -73.456233, + 45.458539 + ], + [ + -73.456258, + 45.458583 + ], + [ + -73.456281, + 45.458624 + ], + [ + -73.457238, + 45.460338 + ], + [ + -73.457292, + 45.460433 + ], + [ + -73.45742, + 45.460667 + ], + [ + -73.457486, + 45.46082 + ], + [ + -73.457532, + 45.460955 + ], + [ + -73.457565, + 45.461072 + ], + [ + -73.457606, + 45.46123 + ], + [ + -73.457631, + 45.461396 + ], + [ + -73.457639, + 45.461477 + ], + [ + -73.457625, + 45.461707 + ], + [ + -73.457614, + 45.461848 + ], + [ + -73.457629, + 45.461941 + ], + [ + -73.45763, + 45.461949 + ], + [ + -73.45769, + 45.462033 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.458519, + 45.462177 + ], + [ + -73.458611, + 45.462189 + ], + [ + -73.459742, + 45.462333 + ], + [ + -73.460596, + 45.46227 + ], + [ + -73.461004, + 45.462241 + ], + [ + -73.461012, + 45.46224 + ], + [ + -73.461274, + 45.462221 + ], + [ + -73.46213, + 45.462145 + ], + [ + -73.462729, + 45.462095 + ], + [ + -73.462839, + 45.462082 + ], + [ + -73.462926, + 45.462051 + ], + [ + -73.463004, + 45.46201 + ], + [ + -73.463058, + 45.461956 + ], + [ + -73.463101, + 45.461866 + ], + [ + -73.463097, + 45.461763 + ], + [ + -73.463035, + 45.46138 + ], + [ + -73.462937, + 45.460771 + ], + [ + -73.462922, + 45.460678 + ], + [ + -73.462766, + 45.459546 + ], + [ + -73.462745, + 45.459391 + ], + [ + -73.462914, + 45.459383 + ], + [ + -73.463714, + 45.459343 + ], + [ + -73.464994, + 45.459278 + ], + [ + -73.465215, + 45.461562 + ], + [ + -73.465247, + 45.461893 + ], + [ + -73.465328, + 45.462497 + ], + [ + -73.465435, + 45.463211 + ], + [ + -73.465484, + 45.463543 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465583, + 45.46821 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.463779, + 45.468251 + ], + [ + -73.463257, + 45.46862 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463016, + 45.468741 + ], + [ + -73.462763, + 45.468943 + ], + [ + -73.462689, + 45.46902 + ], + [ + -73.462689, + 45.469021 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.460798, + 45.470336 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.458439, + 45.471947 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.456063, + 45.473572 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.453679, + 45.475205 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.451331, + 45.476812 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.449277, + 45.478218 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448868, + 45.478494 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.449135, + 45.47883 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.450119, + 45.479471 + ], + [ + -73.450869, + 45.479962 + ], + [ + -73.451, + 45.480048 + ], + [ + -73.451438, + 45.480342 + ], + [ + -73.451689, + 45.480511 + ], + [ + -73.452165, + 45.480813 + ], + [ + -73.452542, + 45.481076 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452379, + 45.481446 + ], + [ + -73.452062, + 45.481636 + ], + [ + -73.45135, + 45.482063 + ], + [ + -73.451252, + 45.482121 + ], + [ + -73.450098, + 45.482807 + ], + [ + -73.449882, + 45.482936 + ], + [ + -73.449245, + 45.483336 + ], + [ + -73.449101, + 45.483471 + ], + [ + -73.448914, + 45.483713 + ], + [ + -73.448817, + 45.483898 + ], + [ + -73.448629, + 45.484109 + ], + [ + -73.44844, + 45.484271 + ], + [ + -73.448215, + 45.484488 + ], + [ + -73.44775, + 45.484937 + ], + [ + -73.447415, + 45.485256 + ], + [ + -73.447237, + 45.485427 + ], + [ + -73.447005, + 45.485643 + ], + [ + -73.44678, + 45.485857 + ], + [ + -73.446708, + 45.485926 + ], + [ + -73.445795, + 45.486794 + ], + [ + -73.445654, + 45.486915 + ], + [ + -73.445524, + 45.487041 + ], + [ + -73.445408, + 45.487167 + ], + [ + -73.445359, + 45.487231 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445189, + 45.487464 + ], + [ + -73.445131, + 45.487554 + ], + [ + -73.444984, + 45.487909 + ], + [ + -73.444937, + 45.488067 + ], + [ + -73.444908, + 45.488233 + ], + [ + -73.444906, + 45.488377 + ], + [ + -73.444915, + 45.488548 + ], + [ + -73.444937, + 45.488733 + ], + [ + -73.444965, + 45.48889 + ], + [ + -73.444941, + 45.489138 + ], + [ + -73.444921, + 45.489264 + ], + [ + -73.444905, + 45.489336 + ], + [ + -73.444972, + 45.489345 + ], + [ + -73.44499, + 45.489349 + ], + [ + -73.445046, + 45.489363 + ], + [ + -73.445235, + 45.489426 + ], + [ + -73.445377, + 45.489484 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.44568, + 45.490474 + ], + [ + -73.445612, + 45.490524 + ], + [ + -73.445975, + 45.490893 + ], + [ + -73.446005, + 45.490924 + ], + [ + -73.446035, + 45.490933 + ], + [ + -73.446066, + 45.490933 + ], + [ + -73.446099, + 45.490929 + ], + [ + -73.446126, + 45.490924 + ], + [ + -73.446161, + 45.490908 + ] + ] + }, + "id": 307, + "properties": { + "id": "da99d5a5-b9cc-4254-a78f-4a59693d5150", + "data": { + "gtfs": { + "shape_id": "551_1_A" + }, + "segments": [ + { + "distanceMeters": 300, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 469, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 86, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 91, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 83, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 93, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 1245, + "travelTimeSeconds": 194 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 509, + "travelTimeSeconds": 80 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10000, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4365.42770025513, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.41, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 5.75, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.41 + }, + "mode": "bus", + "name": "École Centennial", + "color": "#A32638", + "nodes": [ + "23bba49e-4054-4c02-89b3-a6043c3d4d67", + "bffdb17e-eb32-4d5e-9070-23ef35e6d825", + "52770c2f-36d3-4ae3-81c7-657d2436c44e", + "bc708643-7ab2-41eb-a233-30eac22a0a3d", + "9a91df5e-7976-4b04-a1ed-26fb34f4f58f", + "936850f5-3268-43bc-97bf-4daf0894fdc7", + "00c8e0cb-91d0-48ff-97f2-5154a17a68bc", + "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", + "d306b992-8d43-4ba8-8460-68d87b486222", + "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", + "b5853393-4072-4255-b507-e9c4b6659c5b", + "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "59b4f87c-067e-4dc3-856a-07fb245d4fe3", + "c77e59d9-5075-4e39-a183-6bacc1afd03e", + "f5f0a75d-b9e9-4575-845b-09748935c6e0", + "d271cca7-cd7a-4e22-8728-7a598b88fe32", + "3b708726-0db1-43de-b014-b11ddc9fc24a", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "5d862a7d-92b0-4def-8199-258993ce3523", + "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", + "d0325326-9fbf-42e2-aefa-29fa09853c10", + "d13720b6-fb91-4a90-a816-addaef17cf17", + "80775ca9-8434-48d9-a65d-5f3eace6e2d8", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "907f8610-452b-440d-849b-c803b07dedc1", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "72a48bdf-3a35-4f3b-8d05-e465faf044cf", + "70af9f63-28e4-474e-896b-5462b7252980", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "d9b94443-0b59-40db-aecb-0acb5ea7976c", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "33d857b4-2e13-426f-b28c-1e46e90fee90" + ], + "stops": [], + "line_id": "0ff3bef3-1755-4d5a-90a9-5ecdbe8e28fe", + "segments": [ + 0, + 7, + 10, + 19, + 27, + 30, + 33, + 37, + 42, + 47, + 57, + 60, + 66, + 69, + 74, + 80, + 89, + 91, + 94, + 105, + 109, + 113, + 125, + 127, + 130, + 163, + 179, + 182, + 184, + 186, + 188, + 190, + 192, + 199, + 204, + 209, + 210, + 218, + 223, + 229 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 307, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446161, + 45.490908 + ], + [ + -73.446195, + 45.490893 + ], + [ + -73.446211, + 45.490875 + ], + [ + -73.446218, + 45.490852 + ], + [ + -73.446218, + 45.49083 + ], + [ + -73.4462, + 45.490794 + ], + [ + -73.445806, + 45.490501 + ], + [ + -73.44573, + 45.490447 + ], + [ + -73.445884, + 45.490344 + ], + [ + -73.446198, + 45.490128 + ], + [ + -73.446132, + 45.490065 + ], + [ + -73.446019, + 45.489962 + ], + [ + -73.445772, + 45.489745 + ], + [ + -73.445534, + 45.489552 + ], + [ + -73.445508, + 45.489489 + ], + [ + -73.4453, + 45.489165 + ], + [ + -73.445238, + 45.489052 + ], + [ + -73.445212, + 45.488985 + ], + [ + -73.445181, + 45.488904 + ], + [ + -73.445074, + 45.488728 + ], + [ + -73.445053, + 45.488544 + ], + [ + -73.445044, + 45.488377 + ], + [ + -73.445046, + 45.488242 + ], + [ + -73.445073, + 45.488085 + ], + [ + -73.445118, + 45.487932 + ], + [ + -73.445182, + 45.487779 + ], + [ + -73.445261, + 45.48759 + ], + [ + -73.445319, + 45.487496 + ], + [ + -73.445386, + 45.487388 + ], + [ + -73.445526, + 45.487217 + ], + [ + -73.445638, + 45.487095 + ], + [ + -73.445643, + 45.487091 + ], + [ + -73.445764, + 45.486978 + ], + [ + -73.445905, + 45.486857 + ], + [ + -73.446511, + 45.486279 + ], + [ + -73.446709, + 45.486091 + ], + [ + -73.44682, + 45.485985 + ], + [ + -73.447123, + 45.485706 + ], + [ + -73.447356, + 45.48549 + ], + [ + -73.447536, + 45.485315 + ], + [ + -73.447867, + 45.484995 + ], + [ + -73.448283, + 45.484594 + ], + [ + -73.448552, + 45.484334 + ], + [ + -73.448747, + 45.484168 + ], + [ + -73.448891, + 45.484006 + ], + [ + -73.448947, + 45.483943 + ], + [ + -73.449046, + 45.483754 + ], + [ + -73.449223, + 45.483529 + ], + [ + -73.449352, + 45.483408 + ], + [ + -73.449869, + 45.483085 + ], + [ + -73.449978, + 45.483017 + ], + [ + -73.451449, + 45.482131 + ], + [ + -73.451773, + 45.481935 + ], + [ + -73.45215, + 45.481708 + ], + [ + -73.452851, + 45.48129 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452513, + 45.480854 + ], + [ + -73.452296, + 45.480719 + ], + [ + -73.452295, + 45.480718 + ], + [ + -73.451837, + 45.480421 + ], + [ + -73.451565, + 45.480238 + ], + [ + -73.451001, + 45.479858 + ], + [ + -73.450929, + 45.479809 + ], + [ + -73.450257, + 45.479368 + ], + [ + -73.449699, + 45.479004 + ], + [ + -73.449587, + 45.478931 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.44904, + 45.47838 + ], + [ + -73.449384, + 45.478145 + ], + [ + -73.451118, + 45.476959 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.453438, + 45.47537 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.455858, + 45.473713 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.458234, + 45.472087 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.46052, + 45.470526 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.462617, + 45.469087 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463315, + 45.468669 + ], + [ + -73.463605, + 45.468494 + ], + [ + -73.463821, + 45.468359 + ], + [ + -73.464061, + 45.468264 + ], + [ + -73.464182, + 45.468237 + ], + [ + -73.464284, + 45.468228 + ], + [ + -73.464393, + 45.468219 + ], + [ + -73.464524, + 45.468224 + ], + [ + -73.464627, + 45.468233 + ], + [ + -73.465228, + 45.468287 + ], + [ + -73.465232, + 45.468288 + ], + [ + -73.465371, + 45.468301 + ], + [ + -73.465793, + 45.468341 + ], + [ + -73.466337, + 45.468387 + ], + [ + -73.466548, + 45.468382 + ], + [ + -73.466775, + 45.468351 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.46758, + 45.467757 + ], + [ + -73.467357, + 45.467296 + ], + [ + -73.466914, + 45.466403 + ], + [ + -73.466752, + 45.466083 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466352, + 45.465288 + ], + [ + -73.466238, + 45.465062 + ], + [ + -73.466142, + 45.464853 + ], + [ + -73.466048, + 45.464638 + ], + [ + -73.46599, + 45.464498 + ], + [ + -73.465967, + 45.464441 + ], + [ + -73.465777, + 45.463945 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465663, + 45.463449 + ], + [ + -73.465646, + 45.463238 + ], + [ + -73.465636, + 45.463073 + ], + [ + -73.465461, + 45.461275 + ], + [ + -73.465447, + 45.461135 + ], + [ + -73.465251, + 45.459263 + ], + [ + -73.464994, + 45.459278 + ], + [ + -73.464712, + 45.459292 + ], + [ + -73.463601, + 45.459348 + ], + [ + -73.462745, + 45.459391 + ], + [ + -73.462912, + 45.460608 + ], + [ + -73.462922, + 45.460678 + ], + [ + -73.463035, + 45.46138 + ], + [ + -73.463097, + 45.461763 + ], + [ + -73.463101, + 45.461866 + ], + [ + -73.463058, + 45.461956 + ], + [ + -73.463004, + 45.46201 + ], + [ + -73.462926, + 45.462051 + ], + [ + -73.462839, + 45.462082 + ], + [ + -73.462729, + 45.462095 + ], + [ + -73.46213, + 45.462145 + ], + [ + -73.461312, + 45.462218 + ], + [ + -73.461274, + 45.462221 + ], + [ + -73.460596, + 45.46227 + ], + [ + -73.460027, + 45.462312 + ], + [ + -73.459742, + 45.462333 + ], + [ + -73.458611, + 45.462189 + ], + [ + -73.457891, + 45.462101 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.45769, + 45.462033 + ], + [ + -73.457776, + 45.461966 + ], + [ + -73.45778, + 45.461865 + ], + [ + -73.457805, + 45.461716 + ], + [ + -73.457817, + 45.461563 + ], + [ + -73.45782, + 45.461477 + ], + [ + -73.457812, + 45.461383 + ], + [ + -73.457786, + 45.461212 + ], + [ + -73.457777, + 45.461178 + ], + [ + -73.457743, + 45.46105 + ], + [ + -73.457714, + 45.460928 + ], + [ + -73.457665, + 45.460784 + ], + [ + -73.457595, + 45.460627 + ], + [ + -73.457462, + 45.460379 + ], + [ + -73.457342, + 45.460166 + ], + [ + -73.456502, + 45.458678 + ], + [ + -73.456446, + 45.458579 + ], + [ + -73.455825, + 45.457465 + ], + [ + -73.455767, + 45.45736 + ], + [ + -73.455551, + 45.456955 + ], + [ + -73.455474, + 45.456802 + ], + [ + -73.455367, + 45.456563 + ], + [ + -73.455234, + 45.456113 + ], + [ + -73.455192, + 45.45589 + ], + [ + -73.455162, + 45.455731 + ], + [ + -73.455134, + 45.455281 + ], + [ + -73.455165, + 45.454911 + ], + [ + -73.455177, + 45.454772 + ], + [ + -73.455206, + 45.454588 + ], + [ + -73.455346, + 45.454111 + ], + [ + -73.455479, + 45.453796 + ], + [ + -73.455501, + 45.453755 + ], + [ + -73.455716, + 45.453355 + ], + [ + -73.455867, + 45.453129 + ], + [ + -73.455902, + 45.453077 + ], + [ + -73.456055, + 45.452883 + ], + [ + -73.45626, + 45.452645 + ], + [ + -73.456494, + 45.452415 + ], + [ + -73.45667, + 45.452253 + ], + [ + -73.45729, + 45.451716 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457438, + 45.451421 + ], + [ + -73.457159, + 45.451237 + ], + [ + -73.457131, + 45.451219 + ], + [ + -73.456851, + 45.451021 + ], + [ + -73.45659, + 45.450823 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456003, + 45.45033 + ], + [ + -73.455826, + 45.450181 + ], + [ + -73.455605, + 45.449994 + ], + [ + -73.455056, + 45.44954 + ], + [ + -73.454737, + 45.449301 + ], + [ + -73.454454, + 45.449115 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.453273, + 45.448481 + ], + [ + -73.451557, + 45.447603 + ], + [ + -73.45107, + 45.447354 + ], + [ + -73.45026, + 45.446936 + ], + [ + -73.449665, + 45.446632 + ], + [ + -73.449652, + 45.446626 + ], + [ + -73.449554, + 45.446569 + ], + [ + -73.449363, + 45.446456 + ], + [ + -73.447677, + 45.44551 + ], + [ + -73.447484, + 45.445387 + ], + [ + -73.447413, + 45.445343 + ], + [ + -73.447287, + 45.445263 + ], + [ + -73.447125, + 45.445146 + ], + [ + -73.446612, + 45.444764 + ], + [ + -73.445568, + 45.444021 + ], + [ + -73.444908, + 45.44353 + ], + [ + -73.444834, + 45.443475 + ], + [ + -73.444807, + 45.443457 + ], + [ + -73.442882, + 45.442105 + ], + [ + -73.442348, + 45.44173 + ], + [ + -73.442337, + 45.441722 + ], + [ + -73.442193, + 45.441589 + ], + [ + -73.442073, + 45.441479 + ], + [ + -73.441948, + 45.441595 + ], + [ + -73.441846, + 45.441707 + ], + [ + -73.441646, + 45.44189 + ], + [ + -73.44159, + 45.441941 + ], + [ + -73.441375, + 45.442137 + ], + [ + -73.441332, + 45.442174 + ], + [ + -73.440863, + 45.442588 + ], + [ + -73.440303, + 45.443042 + ], + [ + -73.439999, + 45.443328 + ], + [ + -73.439837, + 45.443457 + ], + [ + -73.43959, + 45.443654 + ], + [ + -73.439296, + 45.443912 + ], + [ + -73.438998, + 45.444155 + ], + [ + -73.438488, + 45.444558 + ], + [ + -73.438222, + 45.444768 + ], + [ + -73.438088, + 45.444859 + ], + [ + -73.437964, + 45.444933 + ], + [ + -73.438029, + 45.444985 + ], + [ + -73.438094, + 45.445037 + ], + [ + -73.438233, + 45.445143 + ], + [ + -73.438783, + 45.445547 + ], + [ + -73.439565, + 45.446129 + ], + [ + -73.439751, + 45.446278 + ], + [ + -73.439937, + 45.446427 + ], + [ + -73.440135, + 45.446587 + ], + [ + -73.440935, + 45.447233 + ], + [ + -73.441223, + 45.447465 + ], + [ + -73.4421, + 45.448181 + ], + [ + -73.442609, + 45.448595 + ], + [ + -73.442709, + 45.448676 + ], + [ + -73.443187, + 45.449064 + ], + [ + -73.443314, + 45.449167 + ], + [ + -73.443912, + 45.449652 + ], + [ + -73.444945, + 45.45049 + ], + [ + -73.445035, + 45.450563 + ], + [ + -73.446306, + 45.451591 + ] + ] + }, + "id": 308, + "properties": { + "id": "c09badd5-a1a8-42ac-a084-b71d94ddaa6e", + "data": { + "gtfs": { + "shape_id": "551_2_R" + }, + "segments": [ + { + "distanceMeters": 492, + "travelTimeSeconds": 93 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 1009, + "travelTimeSeconds": 192 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 465, + "travelTimeSeconds": 89 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 642, + "travelTimeSeconds": 123 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 71 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 192, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10077, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4371.191401531776, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.25, + "travelTimeWithoutDwellTimesSeconds": 1920, + "operatingTimeWithLayoverTimeSeconds": 2112, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1920, + "operatingSpeedWithLayoverMetersPerSecond": 4.77, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.25 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33d857b4-2e13-426f-b28c-1e46e90fee90", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "5f21960f-8919-4407-8a49-57c39947c4fe", + "cc43f372-04e8-4c4c-b711-2e4159e3855d", + "9b7055a8-adca-44c6-9935-6026756d4460", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "907f8610-452b-440d-849b-c803b07dedc1", + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "74887516-47d5-4269-9513-84672d18e287", + "d13720b6-fb91-4a90-a816-addaef17cf17", + "d0325326-9fbf-42e2-aefa-29fa09853c10", + "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "ac84633b-6f3b-458c-8f4e-099cc310c05e", + "d271cca7-cd7a-4e22-8728-7a598b88fe32", + "f5f0a75d-b9e9-4575-845b-09748935c6e0", + "c77e59d9-5075-4e39-a183-6bacc1afd03e", + "59b4f87c-067e-4dc3-856a-07fb245d4fe3", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "2c6638eb-437e-4a41-bb5d-d6093797361d", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", + "d306b992-8d43-4ba8-8460-68d87b486222", + "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", + "88486643-e9da-4936-905d-86d1e3882217", + "13dab893-0384-46f9-a2e5-e504a47de39a", + "9bb9e4f0-3571-429e-bd1b-989f4196b247", + "708749bc-6754-4d22-849f-c5632030ae08", + "65ac05d1-7282-4065-a1b1-3364a3426c7e" + ], + "stops": [], + "line_id": "0ff3bef3-1755-4d5a-90a9-5ecdbe8e28fe", + "segments": [ + 0, + 31, + 35, + 41, + 49, + 52, + 57, + 62, + 65, + 69, + 70, + 72, + 74, + 76, + 78, + 81, + 94, + 120, + 124, + 126, + 137, + 143, + 153, + 160, + 162, + 171, + 178, + 184, + 194, + 198, + 204, + 210, + 215, + 219, + 226, + 245, + 253 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 308, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.45272, + 45.547512 + ], + [ + -73.454103, + 45.548563 + ], + [ + -73.454269, + 45.548689 + ], + [ + -73.454302, + 45.548714 + ], + [ + -73.456164, + 45.550129 + ], + [ + -73.456272, + 45.55021 + ], + [ + -73.458174, + 45.551651 + ], + [ + -73.458453, + 45.551841 + ], + [ + -73.458867, + 45.552123 + ], + [ + -73.459495, + 45.552583 + ], + [ + -73.459717, + 45.552763 + ], + [ + -73.45984, + 45.552911 + ], + [ + -73.459981, + 45.553149 + ], + [ + -73.460074, + 45.553307 + ], + [ + -73.460476, + 45.553964 + ], + [ + -73.460843, + 45.554611 + ], + [ + -73.460904, + 45.55472 + ], + [ + -73.461041, + 45.554923 + ], + [ + -73.461091, + 45.55497 + ], + [ + -73.461155, + 45.555031 + ], + [ + -73.461353, + 45.555197 + ], + [ + -73.461529, + 45.555341 + ], + [ + -73.461654, + 45.555431 + ], + [ + -73.461661, + 45.555436 + ], + [ + -73.461719, + 45.555453 + ], + [ + -73.461827, + 45.555485 + ], + [ + -73.461925, + 45.555463 + ], + [ + -73.461985, + 45.555435 + ], + [ + -73.461991, + 45.555431 + ], + [ + -73.462207, + 45.555292 + ], + [ + -73.462576, + 45.555058 + ], + [ + -73.46269, + 45.554985 + ], + [ + -73.464004, + 45.554145 + ], + [ + -73.464059, + 45.554129 + ], + [ + -73.464203, + 45.554087 + ], + [ + -73.464314, + 45.554019 + ], + [ + -73.464675, + 45.55379 + ], + [ + -73.464758, + 45.553732 + ], + [ + -73.466649, + 45.555169 + ], + [ + -73.467394, + 45.555735 + ], + [ + -73.468707, + 45.556734 + ], + [ + -73.468863, + 45.556851 + ], + [ + -73.468884, + 45.556867 + ], + [ + -73.4689, + 45.556879 + ], + [ + -73.469456, + 45.557296 + ], + [ + -73.469905, + 45.557643 + ], + [ + -73.470694, + 45.558227 + ], + [ + -73.470793, + 45.5583 + ], + [ + -73.470906, + 45.55839 + ], + [ + -73.471028, + 45.558322 + ], + [ + -73.471824, + 45.557823 + ], + [ + -73.472324, + 45.557504 + ], + [ + -73.472479, + 45.557405 + ], + [ + -73.472629, + 45.557279 + ], + [ + -73.472632, + 45.557275 + ], + [ + -73.473539, + 45.5567 + ], + [ + -73.473662, + 45.556622 + ], + [ + -73.473763, + 45.556559 + ], + [ + -73.475303, + 45.555547 + ], + [ + -73.475452, + 45.555449 + ], + [ + -73.475549, + 45.55539 + ], + [ + -73.47589, + 45.555179 + ], + [ + -73.47658, + 45.554819 + ], + [ + -73.47721, + 45.554495 + ], + [ + -73.478403, + 45.55387 + ], + [ + -73.479586, + 45.553272 + ], + [ + -73.480219, + 45.552936 + ], + [ + -73.480374, + 45.552853 + ], + [ + -73.480484, + 45.552799 + ], + [ + -73.482032, + 45.552008 + ], + [ + -73.482067, + 45.551991 + ], + [ + -73.482159, + 45.551945 + ], + [ + -73.483045, + 45.55149 + ], + [ + -73.483567, + 45.551223 + ], + [ + -73.483956, + 45.551023 + ], + [ + -73.484276, + 45.551364 + ], + [ + -73.484498, + 45.551601 + ], + [ + -73.48453, + 45.551635 + ], + [ + -73.484618, + 45.551734 + ], + [ + -73.484693, + 45.55186 + ], + [ + -73.484759, + 45.552008 + ], + [ + -73.484816, + 45.552215 + ], + [ + -73.484834, + 45.552346 + ], + [ + -73.484812, + 45.552548 + ], + [ + -73.484776, + 45.552733 + ], + [ + -73.484666, + 45.553158 + ], + [ + -73.48441, + 45.55415 + ], + [ + -73.484362, + 45.554361 + ], + [ + -73.484318, + 45.554555 + ], + [ + -73.4843, + 45.554726 + ], + [ + -73.484291, + 45.554865 + ], + [ + -73.484305, + 45.555234 + ], + [ + -73.484308, + 45.555293 + ], + [ + -73.484331, + 45.555639 + ], + [ + -73.48434, + 45.555782 + ], + [ + -73.484366, + 45.556165 + ], + [ + -73.484397, + 45.556377 + ], + [ + -73.48445, + 45.556532 + ], + [ + -73.484458, + 45.556557 + ], + [ + -73.484529, + 45.556737 + ], + [ + -73.484586, + 45.556858 + ], + [ + -73.484751, + 45.557108 + ], + [ + -73.484811, + 45.5572 + ], + [ + -73.484876, + 45.557286 + ], + [ + -73.48555, + 45.5581 + ], + [ + -73.485664, + 45.558262 + ], + [ + -73.485726, + 45.558424 + ], + [ + -73.485748, + 45.558546 + ], + [ + -73.485765, + 45.558649 + ], + [ + -73.48573, + 45.558798 + ], + [ + -73.48566, + 45.558951 + ], + [ + -73.485563, + 45.559104 + ], + [ + -73.485413, + 45.559252 + ], + [ + -73.485078, + 45.559522 + ], + [ + -73.484971, + 45.559607 + ], + [ + -73.48489, + 45.559675 + ], + [ + -73.484312, + 45.560233 + ], + [ + -73.484078, + 45.560521 + ], + [ + -73.484025, + 45.56059 + ], + [ + -73.483849, + 45.560818 + ], + [ + -73.483672, + 45.561082 + ], + [ + -73.483637, + 45.561133 + ], + [ + -73.483578, + 45.561221 + ], + [ + -73.483026, + 45.562041 + ], + [ + -73.482901, + 45.562217 + ], + [ + -73.482854, + 45.562284 + ], + [ + -73.482487, + 45.562715 + ], + [ + -73.482425, + 45.562788 + ], + [ + -73.482409, + 45.562806 + ], + [ + -73.482342, + 45.562878 + ], + [ + -73.482066, + 45.563125 + ], + [ + -73.48196, + 45.56322 + ], + [ + -73.481758, + 45.563341 + ], + [ + -73.481506, + 45.563472 + ], + [ + -73.481447, + 45.563492 + ], + [ + -73.481361, + 45.563521 + ], + [ + -73.481206, + 45.563571 + ], + [ + -73.480969, + 45.563624 + ], + [ + -73.480428, + 45.563746 + ], + [ + -73.480284, + 45.563777 + ], + [ + -73.480145, + 45.563809 + ], + [ + -73.479899, + 45.563872 + ], + [ + -73.47976, + 45.563926 + ], + [ + -73.479595, + 45.564025 + ], + [ + -73.47921, + 45.564275 + ], + [ + -73.479021, + 45.564398 + ], + [ + -73.47891, + 45.564479 + ], + [ + -73.480326, + 45.56555 + ], + [ + -73.4804, + 45.565606 + ], + [ + -73.480501, + 45.565683 + ], + [ + -73.482161, + 45.566943 + ], + [ + -73.482502, + 45.567202 + ], + [ + -73.482644, + 45.56731 + ], + [ + -73.482793, + 45.567251 + ], + [ + -73.482867, + 45.567188 + ], + [ + -73.483104, + 45.566981 + ], + [ + -73.483379, + 45.566757 + ], + [ + -73.484121, + 45.566154 + ], + [ + -73.484201, + 45.566091 + ], + [ + -73.484402, + 45.565933 + ], + [ + -73.4851, + 45.565418 + ], + [ + -73.485255, + 45.565303 + ], + [ + -73.485312, + 45.565245 + ], + [ + -73.485391, + 45.56515 + ], + [ + -73.485466, + 45.56506 + ], + [ + -73.485472, + 45.565049 + ], + [ + -73.485509, + 45.564975 + ], + [ + -73.485396, + 45.564912 + ], + [ + -73.485158, + 45.564813 + ], + [ + -73.484999, + 45.564714 + ], + [ + -73.484885, + 45.564619 + ], + [ + -73.484801, + 45.564538 + ], + [ + -73.484709, + 45.564453 + ], + [ + -73.484666, + 45.564381 + ], + [ + -73.484634, + 45.564327 + ], + [ + -73.484568, + 45.564188 + ], + [ + -73.484524, + 45.564039 + ], + [ + -73.484506, + 45.563909 + ], + [ + -73.48451, + 45.563769 + ], + [ + -73.484511, + 45.563679 + ], + [ + -73.484524, + 45.563621 + ], + [ + -73.484542, + 45.563553 + ], + [ + -73.484577, + 45.563486 + ], + [ + -73.484621, + 45.563405 + ], + [ + -73.484656, + 45.563337 + ], + [ + -73.484718, + 45.563256 + ], + [ + -73.484827, + 45.563148 + ], + [ + -73.485031, + 45.562928 + ], + [ + -73.485175, + 45.562787 + ], + [ + -73.485312, + 45.562653 + ], + [ + -73.485586, + 45.562377 + ], + [ + -73.485597, + 45.562366 + ], + [ + -73.48565, + 45.562312 + ], + [ + -73.486181, + 45.561776 + ], + [ + -73.48648, + 45.56147 + ], + [ + -73.486974, + 45.560989 + ], + [ + -73.487379, + 45.560714 + ], + [ + -73.487798, + 45.560517 + ], + [ + -73.488514, + 45.560143 + ], + [ + -73.489129, + 45.560629 + ], + [ + -73.489224, + 45.560705 + ], + [ + -73.489273, + 45.560743 + ], + [ + -73.491502, + 45.562506 + ], + [ + -73.491509, + 45.562511 + ], + [ + -73.491545, + 45.562543 + ], + [ + -73.491585, + 45.562559 + ], + [ + -73.4917, + 45.562606 + ], + [ + -73.491908, + 45.562298 + ], + [ + -73.49207, + 45.56203 + ], + [ + -73.492185, + 45.561871 + ], + [ + -73.492369, + 45.561588 + ], + [ + -73.49238, + 45.561571 + ], + [ + -73.492391, + 45.561555 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.494705, + 45.558381 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498677, + 45.553944 + ], + [ + -73.498726, + 45.553872 + ], + [ + -73.498813, + 45.553714 + ], + [ + -73.498895, + 45.553562 + ], + [ + -73.49895, + 45.553404 + ], + [ + -73.498964, + 45.55335 + ], + [ + -73.498988, + 45.55326 + ], + [ + -73.499026, + 45.553035 + ], + [ + -73.499051, + 45.55281 + ], + [ + -73.49911, + 45.552261 + ], + [ + -73.499127, + 45.552095 + ], + [ + -73.498947, + 45.552086 + ], + [ + -73.498793, + 45.55209 + ], + [ + -73.498694, + 45.552086 + ], + [ + -73.498592, + 45.552072 + ], + [ + -73.498413, + 45.552 + ], + [ + -73.497813, + 45.55154 + ], + [ + -73.497569, + 45.551352 + ], + [ + -73.497316, + 45.551152 + ], + [ + -73.496964, + 45.550873 + ], + [ + -73.496827, + 45.550682 + ], + [ + -73.496793, + 45.550619 + ], + [ + -73.496772, + 45.550538 + ], + [ + -73.496789, + 45.550453 + ], + [ + -73.496817, + 45.550376 + ], + [ + -73.496833, + 45.550372 + ], + [ + -73.497231, + 45.550102 + ], + [ + -73.497398, + 45.55003 + ], + [ + -73.497527, + 45.550007 + ], + [ + -73.497663, + 45.550007 + ], + [ + -73.497789, + 45.550025 + ], + [ + -73.497936, + 45.550061 + ], + [ + -73.498283, + 45.550169 + ], + [ + -73.49868, + 45.550277 + ], + [ + -73.499072, + 45.550349 + ], + [ + -73.499514, + 45.550349 + ], + [ + -73.499763, + 45.550363 + ], + [ + -73.501515, + 45.550448 + ], + [ + -73.502446, + 45.550493 + ], + [ + -73.502797, + 45.550502 + ], + [ + -73.502913, + 45.550498 + ], + [ + -73.503017, + 45.550484 + ], + [ + -73.503194, + 45.550453 + ], + [ + -73.503355, + 45.550399 + ], + [ + -73.503504, + 45.550327 + ], + [ + -73.503636, + 45.550237 + ], + [ + -73.503751, + 45.550133 + ], + [ + -73.503955, + 45.549904 + ], + [ + -73.504046, + 45.549787 + ], + [ + -73.504119, + 45.549647 + ], + [ + -73.50416, + 45.549508 + ], + [ + -73.504212, + 45.548909 + ], + [ + -73.504249, + 45.548755 + ], + [ + -73.504289, + 45.548585 + ], + [ + -73.504342, + 45.548423 + ], + [ + -73.504477, + 45.548095 + ], + [ + -73.504558, + 45.547933 + ], + [ + -73.504654, + 45.547771 + ], + [ + -73.504887, + 45.547461 + ], + [ + -73.505281, + 45.546997 + ], + [ + -73.507417, + 45.544581 + ], + [ + -73.508417, + 45.543519 + ], + [ + -73.509201, + 45.542727 + ], + [ + -73.509408, + 45.542534 + ], + [ + -73.510272, + 45.541764 + ], + [ + -73.510954, + 45.541206 + ], + [ + -73.511668, + 45.540662 + ], + [ + -73.515003, + 45.538277 + ], + [ + -73.515462, + 45.537917 + ], + [ + -73.515662, + 45.537746 + ], + [ + -73.515665, + 45.537741 + ], + [ + -73.516099, + 45.537345 + ], + [ + -73.516298, + 45.537147 + ], + [ + -73.516676, + 45.536747 + ], + [ + -73.517032, + 45.536337 + ], + [ + -73.521733, + 45.530807 + ], + [ + -73.521744, + 45.530794 + ], + [ + -73.523244, + 45.529034 + ], + [ + -73.523582, + 45.528589 + ], + [ + -73.523719, + 45.528386 + ], + [ + -73.523853, + 45.528161 + ], + [ + -73.523956, + 45.527977 + ], + [ + -73.524288, + 45.527297 + ], + [ + -73.524449, + 45.526847 + ], + [ + -73.524522, + 45.526604 + ], + [ + -73.524672, + 45.525934 + ], + [ + -73.524726, + 45.525403 + ], + [ + -73.524737, + 45.524827 + ], + [ + -73.524676, + 45.524211 + ], + [ + -73.524219, + 45.521088 + ], + [ + -73.524142, + 45.520647 + ], + [ + -73.523985, + 45.519869 + ], + [ + -73.523744, + 45.518866 + ], + [ + -73.5233, + 45.517354 + ], + [ + -73.520678, + 45.508901 + ], + [ + -73.520516, + 45.508028 + ], + [ + -73.520417, + 45.507551 + ], + [ + -73.520275, + 45.506971 + ], + [ + -73.520185, + 45.506668 + ], + [ + -73.520164, + 45.506597 + ], + [ + -73.519997, + 45.506161 + ], + [ + -73.5198, + 45.50576 + ], + [ + -73.519597, + 45.505405 + ], + [ + -73.519461, + 45.505185 + ], + [ + -73.519306, + 45.504964 + ], + [ + -73.518804, + 45.505054 + ], + [ + -73.518724, + 45.505059 + ], + [ + -73.518688, + 45.505063 + ], + [ + -73.518612, + 45.505059 + ], + [ + -73.518565, + 45.505054 + ], + [ + -73.518448, + 45.505027 + ], + [ + -73.518275, + 45.504978 + ], + [ + -73.517927, + 45.504848 + ], + [ + -73.517624, + 45.504735 + ], + [ + -73.517545, + 45.504708 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517141, + 45.504537 + ], + [ + -73.515845, + 45.50406 + ], + [ + -73.514808, + 45.503669 + ], + [ + -73.513604, + 45.503215 + ], + [ + -73.513366, + 45.50312 + ], + [ + -73.513316, + 45.503103 + ], + [ + -73.512873, + 45.503688 + ], + [ + -73.512716, + 45.503804 + ], + [ + -73.512322, + 45.504343 + ], + [ + -73.512272, + 45.504412 + ], + [ + -73.511819, + 45.505019 + ], + [ + -73.511442, + 45.505521 + ], + [ + -73.511362, + 45.505627 + ], + [ + -73.511195, + 45.505564 + ], + [ + -73.510942, + 45.505469 + ], + [ + -73.508881, + 45.504682 + ], + [ + -73.508706, + 45.504911 + ], + [ + -73.508627, + 45.505015 + ], + [ + -73.508426, + 45.505289 + ], + [ + -73.508201, + 45.505577 + ], + [ + -73.507955, + 45.505892 + ], + [ + -73.507704, + 45.506225 + ], + [ + -73.50747, + 45.506531 + ], + [ + -73.50725, + 45.506833 + ], + [ + -73.507097, + 45.507036 + ], + [ + -73.507023, + 45.507134 + ], + [ + -73.506779, + 45.507449 + ], + [ + -73.506569, + 45.507728 + ], + [ + -73.506355, + 45.508016 + ], + [ + -73.506088, + 45.508371 + ], + [ + -73.505811, + 45.508268 + ], + [ + -73.503983, + 45.507589 + ], + [ + -73.503127, + 45.507268 + ], + [ + -73.50278, + 45.507139 + ], + [ + -73.502418, + 45.507008 + ], + [ + -73.502098, + 45.506896 + ], + [ + -73.502109, + 45.507332 + ], + [ + -73.502155, + 45.507742 + ], + [ + -73.503376, + 45.508201 + ], + [ + -73.50436, + 45.508565 + ] + ] + }, + "id": 309, + "properties": { + "id": "cc57c470-e399-43ca-bd5d-076f29e82a84", + "data": { + "gtfs": { + "shape_id": "560_1_A" + }, + "segments": [ + { + "distanceMeters": 159, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 547, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 481, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 83, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 304, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 429, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 921, + "travelTimeSeconds": 98 + }, + { + "distanceMeters": 6981, + "travelTimeSeconds": 740 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 530, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 809, + "travelTimeSeconds": 86 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 16974, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5908.2197908970575, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.43, + "travelTimeWithoutDwellTimesSeconds": 1800, + "operatingTimeWithLayoverTimeSeconds": 1980, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1800, + "operatingSpeedWithLayoverMetersPerSecond": 8.57, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.43 + }, + "mode": "bus", + "name": "École St-Lambert Inter.", + "color": "#A32638", + "nodes": [ + "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", + "bb4626e2-c410-497b-977c-2cc1b65d7b57", + "714fccbf-a3ad-45ea-8e3f-be54db61f028", + "d9f7a5bd-7489-48e7-93cf-4368a09e2676", + "2e8375c2-0f15-448a-8203-e8a29699849e", + "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", + "1e6b54ae-f11e-4726-a36f-9c4411688776", + "8ece351b-2186-4cfe-9624-9d1eacc2181d", + "5a5c6460-b74c-4fc4-8f7e-fb80243c60b0", + "f5001112-5d1e-4489-87be-a34e9ded0d46", + "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", + "a388aa98-4c24-4671-8a33-a0e95f9d5ada", + "fc1c0989-eb4e-4e77-b261-f952dd40601e", + "fc1c0989-eb4e-4e77-b261-f952dd40601e", + "717d6b36-87fa-4b34-a418-6b20c1bc0d29", + "6db4cc67-3620-48bd-9c7c-28ab936b1e0b", + "a77c95ec-f278-40ce-a777-9f8b498d4367", + "f1b172ed-b501-4e36-bd1c-2425165ce50b", + "527ca44e-8da2-49e9-b2e4-033371d02c50", + "e6df12e3-4f2f-4277-aa8e-a04daab48336", + "9d19395e-81cd-4b78-af4a-b6c8e4259c9c", + "4f581479-b61b-497b-82d2-4c290ee6a857", + "84f7a7c0-b176-49cc-89e3-6756a3c3e4cc", + "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", + "0c748835-952e-4739-8acb-c70076e8b112", + "2c3ad537-4ff9-4b7f-9c7d-0b21ee34234d", + "48afa0b3-dc93-4216-9cf1-35b088276d02", + "8541057e-6661-45be-93ff-9ed50114b9a1", + "eace6dbd-217a-421f-9a0e-ee6e7890671f", + "84a0424b-0f35-4bd8-8109-5ac9219d5869", + "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", + "261a087b-9323-4696-9046-146a299af43d", + "f8b461c2-c03e-4da6-aa56-a50e7e1d9db0", + "1232f389-204f-48ac-a95f-0f1b3e5706b2", + "9bf48d6d-7a0b-4fbe-9125-1eef756e334f", + "bca5df0b-3970-4f0e-8644-3802bdd029df", + "3f77d417-9b8e-4514-8337-8fa9008d2cc7" + ], + "stops": [], + "line_id": "be397d0c-b465-458c-b28d-9ea380014382", + "segments": [ + 0, + 1, + 4, + 7, + 12, + 22, + 33, + 43, + 46, + 55, + 58, + 66, + 73, + 75, + 85, + 92, + 101, + 113, + 120, + 126, + 137, + 144, + 149, + 151, + 156, + 158, + 165, + 191, + 201, + 202, + 211, + 217, + 238, + 346, + 349, + 362 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 309, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.50436, + 45.508565 + ], + [ + -73.505595, + 45.509024 + ], + [ + -73.505098, + 45.509672 + ], + [ + -73.504847, + 45.510018 + ], + [ + -73.504789, + 45.510097 + ], + [ + -73.504625, + 45.51032 + ], + [ + -73.504367, + 45.510653 + ], + [ + -73.504141, + 45.510959 + ], + [ + -73.503715, + 45.511503 + ], + [ + -73.503649, + 45.511597 + ], + [ + -73.504193, + 45.511808 + ], + [ + -73.504821, + 45.512052 + ], + [ + -73.504953, + 45.512101 + ], + [ + -73.505513, + 45.512322 + ], + [ + -73.506059, + 45.512531 + ], + [ + -73.506149, + 45.512565 + ], + [ + -73.506238, + 45.512601 + ], + [ + -73.508131, + 45.513338 + ], + [ + -73.508567, + 45.513512 + ], + [ + -73.508741, + 45.513581 + ], + [ + -73.509393, + 45.513802 + ], + [ + -73.50981, + 45.513942 + ], + [ + -73.510118, + 45.514045 + ], + [ + -73.511388, + 45.514467 + ], + [ + -73.511507, + 45.514508 + ], + [ + -73.512165, + 45.514728 + ], + [ + -73.512735, + 45.514923 + ], + [ + -73.512796, + 45.514944 + ], + [ + -73.513796, + 45.515285 + ], + [ + -73.514442, + 45.515505 + ], + [ + -73.514563, + 45.515547 + ], + [ + -73.515414, + 45.515844 + ], + [ + -73.516876, + 45.516355 + ], + [ + -73.51692, + 45.51637 + ], + [ + -73.517227, + 45.516485 + ], + [ + -73.517318, + 45.516518 + ], + [ + -73.517741, + 45.516671 + ], + [ + -73.517978, + 45.516757 + ], + [ + -73.518077, + 45.516793 + ], + [ + -73.518456, + 45.516887 + ], + [ + -73.519047, + 45.517038 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.519402, + 45.517466 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520113, + 45.519734 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521301, + 45.520907 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.522024, + 45.520846 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.522376, + 45.520909 + ], + [ + -73.522687, + 45.521008 + ], + [ + -73.522964, + 45.521134 + ], + [ + -73.523031, + 45.521183 + ], + [ + -73.52312, + 45.521238 + ], + [ + -73.523209, + 45.521302 + ], + [ + -73.523294, + 45.521376 + ], + [ + -73.523363, + 45.521456 + ], + [ + -73.52341, + 45.521518 + ], + [ + -73.523504, + 45.521661 + ], + [ + -73.523557, + 45.521715 + ], + [ + -73.523601, + 45.521916 + ], + [ + -73.523662, + 45.522297 + ], + [ + -73.523863, + 45.52354 + ], + [ + -73.523876, + 45.523612 + ], + [ + -73.523976, + 45.524044 + ], + [ + -73.524075, + 45.524863 + ], + [ + -73.524101, + 45.525358 + ], + [ + -73.524096, + 45.525723 + ], + [ + -73.524085, + 45.526024 + ], + [ + -73.52401, + 45.526519 + ], + [ + -73.52398, + 45.526883 + ], + [ + -73.523923, + 45.527036 + ], + [ + -73.523716, + 45.527531 + ], + [ + -73.523372, + 45.528292 + ], + [ + -73.523292, + 45.528445 + ], + [ + -73.5232, + 45.528598 + ], + [ + -73.523088, + 45.528755 + ], + [ + -73.522246, + 45.529898 + ], + [ + -73.520051, + 45.532486 + ], + [ + -73.518914, + 45.533822 + ], + [ + -73.516804, + 45.536301 + ], + [ + -73.516415, + 45.536742 + ], + [ + -73.516001, + 45.537179 + ], + [ + -73.515781, + 45.537386 + ], + [ + -73.515551, + 45.537593 + ], + [ + -73.51507, + 45.537993 + ], + [ + -73.514817, + 45.538187 + ], + [ + -73.5143, + 45.538565 + ], + [ + -73.513245, + 45.539312 + ], + [ + -73.511932, + 45.540243 + ], + [ + -73.511153, + 45.540819 + ], + [ + -73.510648, + 45.541206 + ], + [ + -73.51007, + 45.541683 + ], + [ + -73.509233, + 45.542435 + ], + [ + -73.508779, + 45.542871 + ], + [ + -73.508342, + 45.543312 + ], + [ + -73.506683, + 45.545062 + ], + [ + -73.505072, + 45.546786 + ], + [ + -73.502818, + 45.54899 + ], + [ + -73.502212, + 45.54962 + ], + [ + -73.501984, + 45.549836 + ], + [ + -73.50186, + 45.549926 + ], + [ + -73.501728, + 45.550007 + ], + [ + -73.501592, + 45.550079 + ], + [ + -73.501452, + 45.550133 + ], + [ + -73.501399, + 45.550152 + ], + [ + -73.501309, + 45.550183 + ], + [ + -73.50116, + 45.550219 + ], + [ + -73.501011, + 45.55025 + ], + [ + -73.500705, + 45.550282 + ], + [ + -73.500547, + 45.550286 + ], + [ + -73.49991, + 45.550295 + ], + [ + -73.499238, + 45.550226 + ], + [ + -73.498778, + 45.550153 + ], + [ + -73.498464, + 45.550065 + ], + [ + -73.498138, + 45.54995 + ], + [ + -73.497746, + 45.549767 + ], + [ + -73.497494, + 45.54961 + ], + [ + -73.497234, + 45.549428 + ], + [ + -73.496902, + 45.549143 + ], + [ + -73.496533, + 45.548853 + ], + [ + -73.495999, + 45.548432 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.494756, + 45.548419 + ], + [ + -73.494517, + 45.548567 + ], + [ + -73.494355, + 45.548662 + ], + [ + -73.494341, + 45.548702 + ], + [ + -73.494351, + 45.54877 + ], + [ + -73.494352, + 45.548779 + ], + [ + -73.494377, + 45.548846 + ], + [ + -73.494604, + 45.549013 + ], + [ + -73.49562, + 45.549812 + ], + [ + -73.495901, + 45.550034 + ], + [ + -73.496311, + 45.550358 + ], + [ + -73.496482, + 45.550493 + ], + [ + -73.496546, + 45.550543 + ], + [ + -73.496964, + 45.550873 + ], + [ + -73.497569, + 45.551352 + ], + [ + -73.498413, + 45.552 + ], + [ + -73.498592, + 45.552072 + ], + [ + -73.498694, + 45.552086 + ], + [ + -73.498793, + 45.55209 + ], + [ + -73.498947, + 45.552086 + ], + [ + -73.49893, + 45.552473 + ], + [ + -73.498889, + 45.552801 + ], + [ + -73.498863, + 45.552968 + ], + [ + -73.498848, + 45.553058 + ], + [ + -73.498813, + 45.553251 + ], + [ + -73.498782, + 45.553386 + ], + [ + -73.498737, + 45.553535 + ], + [ + -73.498669, + 45.55371 + ], + [ + -73.498603, + 45.553836 + ], + [ + -73.498557, + 45.553912 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498164, + 45.554478 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.496102, + 45.55685 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.494564, + 45.55854 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.493667, + 45.559599 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.493021, + 45.560497 + ], + [ + -73.492543, + 45.561194 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.489863, + 45.559482 + ], + [ + -73.489762, + 45.55941 + ], + [ + -73.489659, + 45.55945 + ], + [ + -73.489522, + 45.559535 + ], + [ + -73.489132, + 45.559774 + ], + [ + -73.488636, + 45.560071 + ], + [ + -73.488514, + 45.560143 + ], + [ + -73.487798, + 45.560517 + ], + [ + -73.487379, + 45.560714 + ], + [ + -73.486974, + 45.560989 + ], + [ + -73.48648, + 45.56147 + ], + [ + -73.486181, + 45.561776 + ], + [ + -73.485709, + 45.562253 + ], + [ + -73.48565, + 45.562312 + ], + [ + -73.485312, + 45.562653 + ], + [ + -73.485175, + 45.562787 + ], + [ + -73.485031, + 45.562928 + ], + [ + -73.484827, + 45.563148 + ], + [ + -73.484718, + 45.563256 + ], + [ + -73.484656, + 45.563337 + ], + [ + -73.484621, + 45.563405 + ], + [ + -73.484577, + 45.563486 + ], + [ + -73.484542, + 45.563553 + ], + [ + -73.484524, + 45.563621 + ], + [ + -73.484511, + 45.563679 + ], + [ + -73.48451, + 45.563769 + ], + [ + -73.484506, + 45.563909 + ], + [ + -73.484524, + 45.564039 + ], + [ + -73.484568, + 45.564188 + ], + [ + -73.484634, + 45.564327 + ], + [ + -73.484666, + 45.564381 + ], + [ + -73.484709, + 45.564453 + ], + [ + -73.484801, + 45.564538 + ], + [ + -73.484885, + 45.564619 + ], + [ + -73.484999, + 45.564714 + ], + [ + -73.485158, + 45.564813 + ], + [ + -73.485396, + 45.564912 + ], + [ + -73.485402, + 45.564916 + ], + [ + -73.485509, + 45.564975 + ], + [ + -73.485466, + 45.56506 + ], + [ + -73.485391, + 45.56515 + ], + [ + -73.485312, + 45.565245 + ], + [ + -73.485255, + 45.565303 + ], + [ + -73.4851, + 45.565418 + ], + [ + -73.484614, + 45.565777 + ], + [ + -73.484402, + 45.565933 + ], + [ + -73.484121, + 45.566154 + ], + [ + -73.483104, + 45.566981 + ], + [ + -73.482898, + 45.567161 + ], + [ + -73.482867, + 45.567188 + ], + [ + -73.482793, + 45.567251 + ], + [ + -73.482548, + 45.567065 + ], + [ + -73.4815, + 45.566273 + ], + [ + -73.480444, + 45.565474 + ], + [ + -73.480073, + 45.565193 + ], + [ + -73.479541, + 45.564791 + ], + [ + -73.479021, + 45.564398 + ], + [ + -73.477591, + 45.5633 + ], + [ + -73.477496, + 45.563228 + ], + [ + -73.476819, + 45.562716 + ], + [ + -73.476466, + 45.562449 + ], + [ + -73.475938, + 45.562049 + ], + [ + -73.475231, + 45.561513 + ], + [ + -73.474585, + 45.561026 + ], + [ + -73.474435, + 45.560912 + ], + [ + -73.474349, + 45.560847 + ], + [ + -73.474262, + 45.560781 + ], + [ + -73.473051, + 45.559853 + ], + [ + -73.472951, + 45.559778 + ], + [ + -73.472285, + 45.559277 + ], + [ + -73.471768, + 45.558881 + ], + [ + -73.471244, + 45.558485 + ], + [ + -73.471028, + 45.558322 + ], + [ + -73.471706, + 45.557897 + ], + [ + -73.471824, + 45.557823 + ], + [ + -73.472324, + 45.557504 + ], + [ + -73.472479, + 45.557405 + ], + [ + -73.472629, + 45.557279 + ], + [ + -73.472632, + 45.557275 + ], + [ + -73.473528, + 45.556707 + ], + [ + -73.473662, + 45.556622 + ], + [ + -73.473763, + 45.556559 + ], + [ + -73.475301, + 45.555548 + ], + [ + -73.475452, + 45.555449 + ], + [ + -73.475549, + 45.55539 + ], + [ + -73.47589, + 45.555179 + ], + [ + -73.47658, + 45.554819 + ], + [ + -73.47721, + 45.554495 + ], + [ + -73.478403, + 45.55387 + ], + [ + -73.479586, + 45.553272 + ], + [ + -73.480216, + 45.552937 + ], + [ + -73.480374, + 45.552853 + ], + [ + -73.480484, + 45.552799 + ], + [ + -73.482032, + 45.552008 + ], + [ + -73.482067, + 45.551991 + ], + [ + -73.482159, + 45.551945 + ], + [ + -73.483045, + 45.55149 + ], + [ + -73.483563, + 45.551225 + ], + [ + -73.483956, + 45.551023 + ], + [ + -73.484266, + 45.551353 + ], + [ + -73.484498, + 45.551601 + ], + [ + -73.48453, + 45.551635 + ], + [ + -73.484618, + 45.551734 + ], + [ + -73.484693, + 45.55186 + ], + [ + -73.484759, + 45.552008 + ], + [ + -73.484816, + 45.552215 + ], + [ + -73.484834, + 45.552346 + ], + [ + -73.484812, + 45.552548 + ], + [ + -73.484776, + 45.552733 + ], + [ + -73.484667, + 45.553155 + ], + [ + -73.48441, + 45.55415 + ], + [ + -73.484362, + 45.554361 + ], + [ + -73.484318, + 45.554555 + ], + [ + -73.4843, + 45.554726 + ], + [ + -73.484291, + 45.554865 + ], + [ + -73.484305, + 45.555234 + ], + [ + -73.484308, + 45.55528 + ], + [ + -73.484331, + 45.555639 + ], + [ + -73.48434, + 45.555782 + ], + [ + -73.484366, + 45.556165 + ], + [ + -73.484397, + 45.556377 + ], + [ + -73.48445, + 45.556532 + ], + [ + -73.484458, + 45.556557 + ], + [ + -73.484529, + 45.556737 + ], + [ + -73.484586, + 45.556858 + ], + [ + -73.484748, + 45.557104 + ], + [ + -73.484811, + 45.5572 + ], + [ + -73.484876, + 45.557286 + ], + [ + -73.48555, + 45.5581 + ], + [ + -73.485664, + 45.558262 + ], + [ + -73.485726, + 45.558424 + ], + [ + -73.485748, + 45.558546 + ], + [ + -73.485765, + 45.558649 + ], + [ + -73.48573, + 45.558798 + ], + [ + -73.48566, + 45.558951 + ], + [ + -73.485563, + 45.559104 + ], + [ + -73.485413, + 45.559252 + ], + [ + -73.485082, + 45.559518 + ], + [ + -73.484971, + 45.559607 + ], + [ + -73.48489, + 45.559675 + ], + [ + -73.484312, + 45.560233 + ], + [ + -73.484078, + 45.560521 + ], + [ + -73.484025, + 45.56059 + ], + [ + -73.483849, + 45.560818 + ], + [ + -73.483675, + 45.561077 + ], + [ + -73.483637, + 45.561133 + ], + [ + -73.483578, + 45.561221 + ], + [ + -73.483026, + 45.562041 + ], + [ + -73.482901, + 45.562217 + ], + [ + -73.482854, + 45.562284 + ], + [ + -73.482491, + 45.56271 + ], + [ + -73.482425, + 45.562788 + ], + [ + -73.482409, + 45.562806 + ], + [ + -73.482342, + 45.562878 + ], + [ + -73.482066, + 45.563125 + ], + [ + -73.48196, + 45.56322 + ], + [ + -73.481774, + 45.563332 + ], + [ + -73.481758, + 45.563341 + ], + [ + -73.481506, + 45.563472 + ], + [ + -73.481447, + 45.563492 + ], + [ + -73.481361, + 45.563521 + ], + [ + -73.481206, + 45.563571 + ], + [ + -73.48099, + 45.56362 + ], + [ + -73.480428, + 45.563746 + ], + [ + -73.480284, + 45.563777 + ], + [ + -73.480145, + 45.563809 + ], + [ + -73.479899, + 45.563872 + ], + [ + -73.47976, + 45.563926 + ], + [ + -73.479595, + 45.564025 + ], + [ + -73.479217, + 45.564271 + ], + [ + -73.479021, + 45.564398 + ], + [ + -73.477591, + 45.5633 + ], + [ + -73.477496, + 45.563228 + ], + [ + -73.476819, + 45.562716 + ], + [ + -73.47646, + 45.562444 + ], + [ + -73.475938, + 45.562049 + ], + [ + -73.475231, + 45.561513 + ], + [ + -73.474585, + 45.561026 + ], + [ + -73.474437, + 45.560914 + ], + [ + -73.474349, + 45.560847 + ], + [ + -73.474262, + 45.560781 + ], + [ + -73.473051, + 45.559853 + ], + [ + -73.472951, + 45.559778 + ], + [ + -73.472285, + 45.559277 + ], + [ + -73.471768, + 45.558881 + ], + [ + -73.471247, + 45.558487 + ], + [ + -73.471028, + 45.558322 + ], + [ + -73.470903, + 45.558228 + ], + [ + -73.470033, + 45.557566 + ], + [ + -73.469575, + 45.55722 + ], + [ + -73.469106, + 45.556862 + ], + [ + -73.468985, + 45.55677 + ], + [ + -73.468826, + 45.556648 + ], + [ + -73.467509, + 45.555651 + ], + [ + -73.466771, + 45.555092 + ], + [ + -73.465456, + 45.554095 + ], + [ + -73.464874, + 45.553655 + ], + [ + -73.464766, + 45.553574 + ], + [ + -73.464651, + 45.553651 + ], + [ + -73.464574, + 45.553704 + ], + [ + -73.464098, + 45.55401 + ], + [ + -73.464056, + 45.554071 + ], + [ + -73.464004, + 45.554145 + ], + [ + -73.46269, + 45.554985 + ], + [ + -73.462576, + 45.555058 + ], + [ + -73.462207, + 45.555292 + ], + [ + -73.461991, + 45.555431 + ], + [ + -73.461985, + 45.555435 + ], + [ + -73.461965, + 45.555444 + ], + [ + -73.461925, + 45.555463 + ], + [ + -73.461827, + 45.555485 + ], + [ + -73.461719, + 45.555453 + ], + [ + -73.461661, + 45.555436 + ], + [ + -73.461529, + 45.555341 + ], + [ + -73.461353, + 45.555197 + ], + [ + -73.461155, + 45.555031 + ], + [ + -73.461091, + 45.55497 + ], + [ + -73.461041, + 45.554923 + ], + [ + -73.460904, + 45.55472 + ], + [ + -73.460843, + 45.554611 + ], + [ + -73.460476, + 45.553964 + ], + [ + -73.460133, + 45.553404 + ], + [ + -73.460074, + 45.553307 + ], + [ + -73.45984, + 45.552911 + ], + [ + -73.459717, + 45.552763 + ], + [ + -73.459495, + 45.552583 + ], + [ + -73.458867, + 45.552123 + ], + [ + -73.458276, + 45.55172 + ], + [ + -73.458174, + 45.551651 + ], + [ + -73.456336, + 45.550259 + ], + [ + -73.456272, + 45.55021 + ], + [ + -73.454362, + 45.54876 + ], + [ + -73.454302, + 45.548714 + ], + [ + -73.454269, + 45.548689 + ], + [ + -73.452371, + 45.547246 + ] + ] + }, + "id": 310, + "properties": { + "id": "e94f4e9d-3348-426e-a5dc-abaf61949e7c", + "data": { + "gtfs": { + "shape_id": "560_2_R" + }, + "segments": [ + { + "distanceMeters": 244, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 404, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 92, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 56, + "travelTimeSeconds": 6 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 5090, + "travelTimeSeconds": 536 + }, + { + "distanceMeters": 567, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 112, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 86, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 337, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 350, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 386, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 481, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 82, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 304, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 316, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 577, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 25 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 186, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 17638, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5908.2197908970575, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.48, + "travelTimeWithoutDwellTimesSeconds": 1860, + "operatingTimeWithLayoverTimeSeconds": 2046, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1860, + "operatingSpeedWithLayoverMetersPerSecond": 8.62, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.48 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "3f77d417-9b8e-4514-8337-8fa9008d2cc7", + "3035cba8-14ef-4eb7-b986-fc36588b4fe9", + "2227a38f-9c32-4890-9719-eef7445fa1fc", + "969092dd-fcfd-493a-be55-d0467c757fb1", + "2a197d72-1b4b-4077-a350-4c8656ad7bb1", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "f250cba5-329e-4403-912d-778f924ce25e", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "87d520cc-f77e-449c-88c9-cee424bbc329", + "c879a803-d58b-4487-8291-391e9b516d3c", + "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", + "261a087b-9323-4696-9046-146a299af43d", + "0bcb0e97-db40-44bb-afe9-f6212a5b6387", + "b16a31c8-203c-44e6-a193-88731a47056e", + "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", + "acd343da-a23f-40aa-9f8e-9e9ed5b60bd1", + "8541057e-6661-45be-93ff-9ed50114b9a1", + "48afa0b3-dc93-4216-9cf1-35b088276d02", + "2c3ad537-4ff9-4b7f-9c7d-0b21ee34234d", + "056bf57a-8baa-407d-9c70-a2dcb2e36aea", + "08472942-a2a0-45ef-be22-2dc8587875b6", + "768e4b50-abe9-456e-9460-90d8cbf65940", + "b15716e4-5653-476c-ba57-960f89ea42d5", + "2332d398-d991-4d3f-9d67-38ab4930ac25", + "f5001112-5d1e-4489-87be-a34e9ded0d46", + "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", + "a388aa98-4c24-4671-8a33-a0e95f9d5ada", + "fc1c0989-eb4e-4e77-b261-f952dd40601e", + "fc1c0989-eb4e-4e77-b261-f952dd40601e", + "717d6b36-87fa-4b34-a418-6b20c1bc0d29", + "6db4cc67-3620-48bd-9c7c-28ab936b1e0b", + "a77c95ec-f278-40ce-a777-9f8b498d4367", + "f1b172ed-b501-4e36-bd1c-2425165ce50b", + "527ca44e-8da2-49e9-b2e4-033371d02c50", + "e6df12e3-4f2f-4277-aa8e-a04daab48336", + "9d19395e-81cd-4b78-af4a-b6c8e4259c9c", + "4f581479-b61b-497b-82d2-4c290ee6a857", + "768e4b50-abe9-456e-9460-90d8cbf65940", + "b15716e4-5653-476c-ba57-960f89ea42d5", + "2332d398-d991-4d3f-9d67-38ab4930ac25", + "8ece351b-2186-4cfe-9624-9d1eacc2181d", + "1e6b54ae-f11e-4726-a36f-9c4411688776", + "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", + "2e8375c2-0f15-448a-8203-e8a29699849e", + "d9f7a5bd-7489-48e7-93cf-4368a09e2676", + "714fccbf-a3ad-45ea-8e3f-be54db61f028", + "bb4626e2-c410-497b-977c-2cc1b65d7b57", + "afa3ad41-3eae-461f-a526-3f7ca1b74bc9" + ], + "stops": [], + "line_id": "be397d0c-b465-458c-b28d-9ea380014382", + "segments": [ + 0, + 4, + 14, + 18, + 26, + 28, + 29, + 34, + 40, + 49, + 150, + 172, + 174, + 177, + 179, + 181, + 182, + 189, + 196, + 221, + 228, + 232, + 239, + 244, + 248, + 255, + 263, + 266, + 274, + 281, + 283, + 293, + 300, + 309, + 321, + 328, + 334, + 346, + 353, + 358, + 362, + 369, + 374, + 385, + 392, + 405, + 411, + 413, + 415 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 310, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.502056, + 45.546647 + ], + [ + -73.499769, + 45.545271 + ], + [ + -73.499661, + 45.545207 + ], + [ + -73.496867, + 45.543519 + ], + [ + -73.496791, + 45.543474 + ], + [ + -73.496378, + 45.543225 + ], + [ + -73.496254, + 45.54315 + ], + [ + -73.494874, + 45.542315 + ], + [ + -73.493936, + 45.541747 + ], + [ + -73.492291, + 45.540752 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.491774, + 45.540689 + ], + [ + -73.491536, + 45.540936 + ], + [ + -73.491291, + 45.541175 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.49059, + 45.540694 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486474, + 45.540149 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482886, + 45.538847 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.480017, + 45.538051 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.479414, + 45.538402 + ], + [ + -73.478347, + 45.539271 + ], + [ + -73.4782, + 45.53939 + ], + [ + -73.478021, + 45.539535 + ], + [ + -73.47788, + 45.539657 + ], + [ + -73.476575, + 45.540723 + ], + [ + -73.475691, + 45.541445 + ], + [ + -73.475595, + 45.541524 + ], + [ + -73.475008, + 45.542027 + ], + [ + -73.474845, + 45.542176 + ], + [ + -73.474596, + 45.542482 + ], + [ + -73.474126, + 45.54306 + ], + [ + -73.473915, + 45.543318 + ], + [ + -73.473412, + 45.542995 + ], + [ + -73.473362, + 45.542963 + ], + [ + -73.472636, + 45.54249 + ], + [ + -73.472231, + 45.542247 + ], + [ + -73.471809, + 45.542005 + ], + [ + -73.47173, + 45.541959 + ], + [ + -73.471636, + 45.541824 + ], + [ + -73.471767, + 45.541743 + ], + [ + -73.472855, + 45.540974 + ], + [ + -73.473584, + 45.540484 + ], + [ + -73.473775, + 45.540344 + ], + [ + -73.474071, + 45.540124 + ], + [ + -73.474164, + 45.54006 + ], + [ + -73.475129, + 45.539395 + ], + [ + -73.476288, + 45.538569 + ], + [ + -73.476737, + 45.538248 + ], + [ + -73.476875, + 45.538142 + ], + [ + -73.47704, + 45.538015 + ], + [ + -73.477271, + 45.537781 + ], + [ + -73.477387, + 45.537628 + ], + [ + -73.477404, + 45.537599 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477644, + 45.537235 + ], + [ + -73.477761, + 45.537128 + ], + [ + -73.47795, + 45.537029 + ], + [ + -73.478248, + 45.536966 + ], + [ + -73.47847, + 45.536877 + ], + [ + -73.478805, + 45.536643 + ], + [ + -73.479408, + 45.535093 + ], + [ + -73.479448, + 45.534992 + ], + [ + -73.480264, + 45.5329 + ], + [ + -73.480308, + 45.532787 + ], + [ + -73.481263, + 45.530321 + ], + [ + -73.481304, + 45.530061 + ], + [ + -73.481326, + 45.530017 + ], + [ + -73.481357, + 45.529956 + ], + [ + -73.481466, + 45.529737 + ], + [ + -73.481563, + 45.529683 + ], + [ + -73.481646, + 45.529629 + ], + [ + -73.481719, + 45.529602 + ], + [ + -73.481803, + 45.529584 + ], + [ + -73.481881, + 45.529579 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.482183, + 45.529619 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.484949, + 45.530769 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.485788, + 45.531117 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.488424, + 45.532213 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.488538, + 45.532145 + ], + [ + -73.488569, + 45.532091 + ], + [ + -73.488657, + 45.531965 + ], + [ + -73.488692, + 45.531915 + ], + [ + -73.488837, + 45.531715 + ], + [ + -73.488919, + 45.5316 + ], + [ + -73.489294, + 45.531043 + ], + [ + -73.489584, + 45.530621 + ], + [ + -73.489681, + 45.53048 + ], + [ + -73.490074, + 45.529927 + ], + [ + -73.490523, + 45.529279 + ], + [ + -73.490396, + 45.529257 + ], + [ + -73.489917, + 45.529096 + ], + [ + -73.488747, + 45.528705 + ], + [ + -73.488593, + 45.528653 + ], + [ + -73.486459, + 45.527913 + ], + [ + -73.486324, + 45.527866 + ], + [ + -73.483378, + 45.526866 + ], + [ + -73.483206, + 45.526808 + ], + [ + -73.483441, + 45.526452 + ], + [ + -73.483691, + 45.526075 + ], + [ + -73.484053, + 45.525537 + ], + [ + -73.4841, + 45.525467 + ], + [ + -73.48433, + 45.525112 + ], + [ + -73.484525, + 45.524815 + ], + [ + -73.484791, + 45.524401 + ], + [ + -73.485125, + 45.523895 + ], + [ + -73.48523, + 45.523735 + ], + [ + -73.485667, + 45.523079 + ], + [ + -73.486062, + 45.52248 + ], + [ + -73.486413, + 45.521957 + ], + [ + -73.486488, + 45.521846 + ], + [ + -73.487114, + 45.52091 + ], + [ + -73.487444, + 45.52041 + ], + [ + -73.487508, + 45.520312 + ], + [ + -73.487727, + 45.520388 + ], + [ + -73.487872, + 45.520438 + ], + [ + -73.48798, + 45.520475 + ], + [ + -73.488243, + 45.520566 + ], + [ + -73.490753, + 45.52143 + ], + [ + -73.490877, + 45.521473 + ], + [ + -73.492238, + 45.521946 + ], + [ + -73.493728, + 45.522464 + ], + [ + -73.493855, + 45.522508 + ], + [ + -73.496562, + 45.523455 + ], + [ + -73.496788, + 45.523534 + ], + [ + -73.49715, + 45.52366 + ], + [ + -73.499753, + 45.524564 + ], + [ + -73.499891, + 45.524634 + ], + [ + -73.500013, + 45.524695 + ], + [ + -73.500147, + 45.524758 + ], + [ + -73.500458, + 45.524879 + ], + [ + -73.500944, + 45.525045 + ], + [ + -73.501143, + 45.525113 + ], + [ + -73.502369, + 45.525516 + ], + [ + -73.502691, + 45.525622 + ], + [ + -73.503591, + 45.525919 + ], + [ + -73.505269, + 45.526473 + ], + [ + -73.505347, + 45.526499 + ], + [ + -73.506639, + 45.526923 + ], + [ + -73.506756, + 45.526962 + ], + [ + -73.507316, + 45.527151 + ], + [ + -73.508514, + 45.52754 + ], + [ + -73.510194, + 45.528086 + ], + [ + -73.510246, + 45.528113 + ], + [ + -73.510285, + 45.528134 + ], + [ + -73.510385, + 45.528186 + ], + [ + -73.510473, + 45.528213 + ], + [ + -73.510517, + 45.528141 + ], + [ + -73.510544, + 45.528105 + ], + [ + -73.510575, + 45.528064 + ], + [ + -73.510616, + 45.52801 + ], + [ + -73.510673, + 45.527898 + ], + [ + -73.510724, + 45.527781 + ], + [ + -73.51082, + 45.527401 + ], + [ + -73.510842, + 45.527313 + ], + [ + -73.510878, + 45.526809 + ], + [ + -73.510899, + 45.526469 + ], + [ + -73.510904, + 45.526386 + ], + [ + -73.510825, + 45.525626 + ], + [ + -73.510791, + 45.525473 + ], + [ + -73.510606, + 45.524768 + ], + [ + -73.510559, + 45.524591 + ], + [ + -73.510103, + 45.523637 + ], + [ + -73.510027, + 45.523495 + ], + [ + -73.509606, + 45.522713 + ], + [ + -73.509474, + 45.522467 + ], + [ + -73.509184, + 45.521936 + ], + [ + -73.509122, + 45.521825 + ], + [ + -73.509119, + 45.521819 + ], + [ + -73.508895, + 45.52141 + ], + [ + -73.508869, + 45.521361 + ], + [ + -73.508774, + 45.52119 + ], + [ + -73.50866, + 45.520978 + ], + [ + -73.508615, + 45.520897 + ], + [ + -73.508342, + 45.520368 + ], + [ + -73.507923, + 45.519557 + ], + [ + -73.507805, + 45.519327 + ], + [ + -73.507767, + 45.519257 + ], + [ + -73.507212, + 45.518218 + ], + [ + -73.507088, + 45.517986 + ], + [ + -73.50664, + 45.517136 + ], + [ + -73.506585, + 45.517039 + ], + [ + -73.506515, + 45.516915 + ], + [ + -73.506374, + 45.516632 + ], + [ + -73.506298, + 45.516497 + ], + [ + -73.506127, + 45.516047 + ], + [ + -73.505974, + 45.51571 + ], + [ + -73.505899, + 45.515647 + ], + [ + -73.505603, + 45.515085 + ], + [ + -73.505563, + 45.515012 + ], + [ + -73.505582, + 45.514994 + ], + [ + -73.505577, + 45.514945 + ], + [ + -73.505518, + 45.514841 + ], + [ + -73.505477, + 45.514751 + ], + [ + -73.50545, + 45.514657 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505454, + 45.514325 + ], + [ + -73.505464, + 45.514054 + ], + [ + -73.505469, + 45.513811 + ], + [ + -73.50548, + 45.513717 + ], + [ + -73.505507, + 45.513609 + ], + [ + -73.505553, + 45.513433 + ], + [ + -73.505595, + 45.513348 + ], + [ + -73.506067, + 45.512799 + ], + [ + -73.506238, + 45.512601 + ], + [ + -73.506149, + 45.512565 + ], + [ + -73.505735, + 45.512407 + ], + [ + -73.505513, + 45.512322 + ], + [ + -73.504953, + 45.512101 + ], + [ + -73.504821, + 45.512052 + ], + [ + -73.503649, + 45.511597 + ], + [ + -73.503715, + 45.511503 + ], + [ + -73.504141, + 45.510959 + ], + [ + -73.504367, + 45.510653 + ], + [ + -73.504625, + 45.51032 + ], + [ + -73.504847, + 45.510018 + ], + [ + -73.505098, + 45.509672 + ], + [ + -73.505595, + 45.509024 + ], + [ + -73.505856, + 45.508673 + ], + [ + -73.506088, + 45.508371 + ], + [ + -73.503983, + 45.507589 + ], + [ + -73.503127, + 45.507268 + ], + [ + -73.50278, + 45.507139 + ], + [ + -73.502418, + 45.507008 + ], + [ + -73.502098, + 45.506896 + ], + [ + -73.502109, + 45.507332 + ], + [ + -73.502155, + 45.507742 + ], + [ + -73.503376, + 45.508201 + ], + [ + -73.50436, + 45.508565 + ] + ] + }, + "id": 311, + "properties": { + "id": "5d7db24e-b1fd-45f0-9137-cf8ea55d691d", + "data": { + "gtfs": { + "shape_id": "565_1_A" + }, + "segments": [ + { + "distanceMeters": 235, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 421, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 68, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 374, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 339, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 76, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 78, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 53, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 311, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 104, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 96, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 500, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 1303, + "travelTimeSeconds": 211 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 198, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12259, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4240.4903944821535, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.19, + "travelTimeWithoutDwellTimesSeconds": 1980, + "operatingTimeWithLayoverTimeSeconds": 2178, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1980, + "operatingSpeedWithLayoverMetersPerSecond": 5.63, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.19 + }, + "mode": "bus", + "name": "École St-Lambert Inter.", + "color": "#A32638", + "nodes": [ + "c5521133-14cc-4988-b8c2-4360698fa4ec", + "29cae4d6-53eb-4c22-9faf-214af53be38b", + "0266ed3c-e279-4178-b7ea-9f611780869a", + "c1b679f5-d94a-4515-826d-dd0fd3e8ca0c", + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "ce58f095-9b51-4521-8a41-e64bfb0df31e", + "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", + "65003b15-0baf-4f82-9e15-665e17fd1c75", + "5f672947-8abc-447c-bf60-535abbf76fae", + "31db3d90-e07f-4dbc-995f-00186e6ce5e0", + "1396e79d-a217-431f-ba1d-6596c1924ac0", + "3a5ea563-a764-4bb6-b2d3-d98a1c377161", + "a1edad0a-8432-4850-b895-9d97092489b6", + "f7649797-fc15-4753-8189-cbc65d444f77", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "4b62100a-5cde-4d2b-8815-1a60c1ba3220", + "d488846f-abf4-41f2-9dd0-43b9cbb645a3", + "ec90d5a6-8d45-4327-b9de-7b521004b298", + "65175945-c54c-4732-85a9-890393a0975c", + "27c5df15-201f-4855-9f49-556fd659fd8e", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "a484746b-f716-4eab-ae1c-c7c08714d651", + "17183bd2-c06f-4999-9774-43fb48004315", + "280d705c-e41e-4a8f-8450-ac212bf84d99", + "1d3f02c5-7aee-413f-85a4-ed64749a6a77", + "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", + "5bc0109e-fc2a-4d2a-8204-5be74af579b9", + "a87339f4-b5b3-4402-b9ee-9ea1d8fcf569", + "212f4608-5163-4f8c-b126-acfdafddd04a", + "88e6eee9-3b8c-474d-aeb4-599447d404be", + "88e6eee9-3b8c-474d-aeb4-599447d404be", + "a63c10e3-b289-47b6-9867-4d82c043e2cb", + "a76bf032-5164-44ff-92fb-30023319517e", + "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "d41672d0-e186-418e-b20f-1d82b60c3365", + "3166d228-f358-4741-9950-420cebd0aa4c", + "20a17f7f-4c8c-4119-ac8f-7160c6595370", + "43f366d5-ac33-41ca-be94-6282f0233cd1", + "0abd44bc-ce59-4161-a0a7-b31176db0e89", + "aa2ca75c-2e9d-4072-a531-98e6423e4538", + "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", + "94f3304d-66ff-42a6-bd12-7828cf5efc64", + "7dd9be07-f5cb-4f00-86f7-d61821676a78", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "01cbab8a-50a9-42e0-9d05-820a9dd4fa51", + "c28a8fa6-886c-4f1e-b291-00d0237d02dd", + "eab3c393-e690-4d4a-921c-9c45533c53f2", + "2227a38f-9c32-4890-9719-eef7445fa1fc", + "3f77d417-9b8e-4514-8337-8fa9008d2cc7" + ], + "stops": [], + "line_id": "ad878084-7b7f-4691-a792-dd097cf0ba5f", + "segments": [ + 0, + 1, + 5, + 9, + 20, + 30, + 35, + 44, + 47, + 49, + 53, + 58, + 64, + 72, + 80, + 89, + 91, + 96, + 109, + 111, + 113, + 119, + 122, + 128, + 130, + 132, + 136, + 141, + 145, + 148, + 152, + 154, + 157, + 159, + 163, + 169, + 172, + 174, + 179, + 189, + 192, + 196, + 200, + 206, + 210, + 211, + 214, + 217, + 239 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 311, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.50436, + 45.508565 + ], + [ + -73.505595, + 45.509024 + ], + [ + -73.505098, + 45.509672 + ], + [ + -73.504847, + 45.510018 + ], + [ + -73.50479, + 45.510096 + ], + [ + -73.504625, + 45.51032 + ], + [ + -73.504367, + 45.510653 + ], + [ + -73.504141, + 45.510959 + ], + [ + -73.503715, + 45.511503 + ], + [ + -73.503649, + 45.511597 + ], + [ + -73.504821, + 45.512052 + ], + [ + -73.504953, + 45.512101 + ], + [ + -73.505513, + 45.512322 + ], + [ + -73.506057, + 45.51253 + ], + [ + -73.506149, + 45.512565 + ], + [ + -73.505798, + 45.512947 + ], + [ + -73.505455, + 45.513321 + ], + [ + -73.505293, + 45.513586 + ], + [ + -73.505209, + 45.513825 + ], + [ + -73.505166, + 45.51396 + ], + [ + -73.505169, + 45.514232 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505296, + 45.514616 + ], + [ + -73.505482, + 45.514981 + ], + [ + -73.505529, + 45.515008 + ], + [ + -73.505563, + 45.515012 + ], + [ + -73.505603, + 45.515085 + ], + [ + -73.505899, + 45.515647 + ], + [ + -73.50587, + 45.515953 + ], + [ + -73.505883, + 45.516007 + ], + [ + -73.505909, + 45.516052 + ], + [ + -73.506049, + 45.516416 + ], + [ + -73.506087, + 45.516538 + ], + [ + -73.506123, + 45.516645 + ], + [ + -73.506267, + 45.517046 + ], + [ + -73.506418, + 45.517356 + ], + [ + -73.506563, + 45.51763 + ], + [ + -73.506679, + 45.517851 + ], + [ + -73.506804, + 45.518072 + ], + [ + -73.506924, + 45.518297 + ], + [ + -73.507158, + 45.518738 + ], + [ + -73.507261, + 45.518931 + ], + [ + -73.507367, + 45.519126 + ], + [ + -73.507395, + 45.519177 + ], + [ + -73.507454, + 45.519286 + ], + [ + -73.507557, + 45.519476 + ], + [ + -73.507699, + 45.519736 + ], + [ + -73.507813, + 45.519948 + ], + [ + -73.5079, + 45.52011 + ], + [ + -73.508092, + 45.520465 + ], + [ + -73.508229, + 45.520723 + ], + [ + -73.508316, + 45.520888 + ], + [ + -73.50837, + 45.520987 + ], + [ + -73.508816, + 45.52186 + ], + [ + -73.508893, + 45.522004 + ], + [ + -73.509168, + 45.52252 + ], + [ + -73.509178, + 45.522539 + ], + [ + -73.50928, + 45.522728 + ], + [ + -73.509633, + 45.523397 + ], + [ + -73.509691, + 45.523507 + ], + [ + -73.509731, + 45.523583 + ], + [ + -73.509969, + 45.524042 + ], + [ + -73.510102, + 45.524299 + ], + [ + -73.510188, + 45.524465 + ], + [ + -73.510373, + 45.525036 + ], + [ + -73.510439, + 45.525351 + ], + [ + -73.510453, + 45.525414 + ], + [ + -73.510529, + 45.525734 + ], + [ + -73.510562, + 45.526097 + ], + [ + -73.510579, + 45.526273 + ], + [ + -73.510562, + 45.527029 + ], + [ + -73.510547, + 45.527214 + ], + [ + -73.510523, + 45.527407 + ], + [ + -73.51052, + 45.52743 + ], + [ + -73.510528, + 45.527565 + ], + [ + -73.510548, + 45.527677 + ], + [ + -73.510563, + 45.527749 + ], + [ + -73.510557, + 45.527853 + ], + [ + -73.510522, + 45.52797 + ], + [ + -73.510476, + 45.528037 + ], + [ + -73.510429, + 45.528114 + ], + [ + -73.510285, + 45.528097 + ], + [ + -73.510194, + 45.528086 + ], + [ + -73.510077, + 45.528048 + ], + [ + -73.50929, + 45.527792 + ], + [ + -73.507533, + 45.527222 + ], + [ + -73.507316, + 45.527151 + ], + [ + -73.506756, + 45.526962 + ], + [ + -73.505515, + 45.526554 + ], + [ + -73.505347, + 45.526499 + ], + [ + -73.503591, + 45.525919 + ], + [ + -73.502847, + 45.525673 + ], + [ + -73.502691, + 45.525622 + ], + [ + -73.501143, + 45.525113 + ], + [ + -73.500458, + 45.524879 + ], + [ + -73.500158, + 45.524762 + ], + [ + -73.500147, + 45.524758 + ], + [ + -73.500013, + 45.524695 + ], + [ + -73.499753, + 45.524564 + ], + [ + -73.49715, + 45.52366 + ], + [ + -73.496956, + 45.523592 + ], + [ + -73.496788, + 45.523534 + ], + [ + -73.493962, + 45.522545 + ], + [ + -73.493855, + 45.522508 + ], + [ + -73.492238, + 45.521946 + ], + [ + -73.49101, + 45.521519 + ], + [ + -73.490877, + 45.521473 + ], + [ + -73.488243, + 45.520566 + ], + [ + -73.487872, + 45.520438 + ], + [ + -73.487616, + 45.520349 + ], + [ + -73.487508, + 45.520312 + ], + [ + -73.48729, + 45.520643 + ], + [ + -73.487114, + 45.52091 + ], + [ + -73.486552, + 45.52175 + ], + [ + -73.486488, + 45.521846 + ], + [ + -73.486062, + 45.52248 + ], + [ + -73.485667, + 45.523079 + ], + [ + -73.485348, + 45.523557 + ], + [ + -73.48523, + 45.523735 + ], + [ + -73.484791, + 45.524401 + ], + [ + -73.484525, + 45.524815 + ], + [ + -73.48433, + 45.525112 + ], + [ + -73.484152, + 45.525387 + ], + [ + -73.4841, + 45.525467 + ], + [ + -73.483691, + 45.526075 + ], + [ + -73.483322, + 45.526632 + ], + [ + -73.483206, + 45.526808 + ], + [ + -73.483885, + 45.527038 + ], + [ + -73.486224, + 45.527832 + ], + [ + -73.486324, + 45.527866 + ], + [ + -73.488223, + 45.528525 + ], + [ + -73.488593, + 45.528653 + ], + [ + -73.490385, + 45.529253 + ], + [ + -73.490396, + 45.529257 + ], + [ + -73.490523, + 45.529279 + ], + [ + -73.490257, + 45.529663 + ], + [ + -73.490074, + 45.529927 + ], + [ + -73.489722, + 45.530423 + ], + [ + -73.489681, + 45.53048 + ], + [ + -73.489294, + 45.531043 + ], + [ + -73.488919, + 45.5316 + ], + [ + -73.488692, + 45.531915 + ], + [ + -73.488569, + 45.532091 + ], + [ + -73.488566, + 45.532097 + ], + [ + -73.488538, + 45.532145 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.48811, + 45.532078 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.485517, + 45.531006 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.481747, + 45.529437 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.481466, + 45.529737 + ], + [ + -73.481453, + 45.529762 + ], + [ + -73.481443, + 45.529783 + ], + [ + -73.481326, + 45.530017 + ], + [ + -73.481304, + 45.530061 + ], + [ + -73.481198, + 45.530124 + ], + [ + -73.479919, + 45.532569 + ], + [ + -73.479864, + 45.532675 + ], + [ + -73.478757, + 45.53472 + ], + [ + -73.478696, + 45.534834 + ], + [ + -73.478274, + 45.535591 + ], + [ + -73.478188, + 45.535747 + ], + [ + -73.477972, + 45.536164 + ], + [ + -73.477686, + 45.536714 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.477846, + 45.53759 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479466, + 45.538067 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.479436, + 45.538385 + ], + [ + -73.479084, + 45.53867 + ], + [ + -73.478347, + 45.539271 + ], + [ + -73.478222, + 45.539372 + ], + [ + -73.478021, + 45.539535 + ], + [ + -73.47788, + 45.539657 + ], + [ + -73.476575, + 45.540723 + ], + [ + -73.475713, + 45.541427 + ], + [ + -73.475595, + 45.541524 + ], + [ + -73.475008, + 45.542027 + ], + [ + -73.474845, + 45.542176 + ], + [ + -73.474596, + 45.542482 + ], + [ + -73.474143, + 45.543039 + ], + [ + -73.473915, + 45.543318 + ], + [ + -73.473362, + 45.542963 + ], + [ + -73.472636, + 45.54249 + ], + [ + -73.472231, + 45.542247 + ], + [ + -73.472216, + 45.542238 + ], + [ + -73.471836, + 45.54202 + ], + [ + -73.47173, + 45.541959 + ], + [ + -73.471636, + 45.541824 + ], + [ + -73.471767, + 45.541743 + ], + [ + -73.472855, + 45.540974 + ], + [ + -73.473584, + 45.540484 + ], + [ + -73.473775, + 45.540344 + ], + [ + -73.474071, + 45.540124 + ], + [ + -73.474139, + 45.540077 + ], + [ + -73.475129, + 45.539395 + ], + [ + -73.476288, + 45.538569 + ], + [ + -73.476737, + 45.538248 + ], + [ + -73.476875, + 45.538142 + ], + [ + -73.47704, + 45.538015 + ], + [ + -73.477271, + 45.537781 + ], + [ + -73.477385, + 45.53763 + ], + [ + -73.477387, + 45.537628 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.477851, + 45.537592 + ], + [ + -73.478221, + 45.537687 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479471, + 45.538068 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.48243, + 45.538903 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.485744, + 45.540106 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.491356, + 45.541251 + ], + [ + -73.491461, + 45.541175 + ], + [ + -73.491486, + 45.541152 + ], + [ + -73.491844, + 45.540786 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.492615, + 45.540948 + ], + [ + -73.493936, + 45.541747 + ], + [ + -73.494874, + 45.542315 + ], + [ + -73.496051, + 45.543027 + ], + [ + -73.496254, + 45.54315 + ], + [ + -73.496791, + 45.543474 + ], + [ + -73.496867, + 45.543519 + ], + [ + -73.499661, + 45.545207 + ], + [ + -73.502303, + 45.546795 + ] + ] + }, + "id": 312, + "properties": { + "id": "ae24a0aa-6a78-437d-9be2-f2fe1bf5a774", + "data": { + "gtfs": { + "shape_id": "565_2_R" + }, + "segments": [ + { + "distanceMeters": 244, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 404, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 612, + "travelTimeSeconds": 113 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 55, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 55, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 47, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 556, + "travelTimeSeconds": 102 + }, + { + "distanceMeters": 86, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 643, + "travelTimeSeconds": 119 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 222, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12044, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4240.4903944821535, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.42, + "travelTimeWithoutDwellTimesSeconds": 2220, + "operatingTimeWithLayoverTimeSeconds": 2442, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2220, + "operatingSpeedWithLayoverMetersPerSecond": 4.93, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.42 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "3f77d417-9b8e-4514-8337-8fa9008d2cc7", + "3035cba8-14ef-4eb7-b986-fc36588b4fe9", + "2227a38f-9c32-4890-9719-eef7445fa1fc", + "85d8d9e6-1387-4893-85de-43bc3c6ef93c", + "a9120d5d-ef7d-4b1d-b378-8c10096d7dd8", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "7dd9be07-f5cb-4f00-86f7-d61821676a78", + "94f3304d-66ff-42a6-bd12-7828cf5efc64", + "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", + "aa2ca75c-2e9d-4072-a531-98e6423e4538", + "0bf73f5f-c68a-4a9e-ae23-67c7ea602d08", + "43f366d5-ac33-41ca-be94-6282f0233cd1", + "20a17f7f-4c8c-4119-ac8f-7160c6595370", + "3166d228-f358-4741-9950-420cebd0aa4c", + "d41672d0-e186-418e-b20f-1d82b60c3365", + "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "a76bf032-5164-44ff-92fb-30023319517e", + "a63c10e3-b289-47b6-9867-4d82c043e2cb", + "88e6eee9-3b8c-474d-aeb4-599447d404be", + "212f4608-5163-4f8c-b126-acfdafddd04a", + "a87339f4-b5b3-4402-b9ee-9ea1d8fcf569", + "5bc0109e-fc2a-4d2a-8204-5be74af579b9", + "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", + "1d3f02c5-7aee-413f-85a4-ed64749a6a77", + "db8d9e51-701d-47ce-b55e-d7d57227adcb", + "37861c82-a45a-4026-bde0-eec4ce121a64", + "17183bd2-c06f-4999-9774-43fb48004315", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "27c5df15-201f-4855-9f49-556fd659fd8e", + "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", + "48e0fb78-b91c-4eec-a77a-11ad01e61d0c", + "d488846f-abf4-41f2-9dd0-43b9cbb645a3", + "24abc23f-a2cf-493e-ad62-b789edf9cd26", + "41617015-5d74-4430-aee6-934b0fd13e70", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "5f672947-8abc-447c-bf60-535abbf76fae", + "5f672947-8abc-447c-bf60-535abbf76fae", + "31db3d90-e07f-4dbc-995f-00186e6ce5e0", + "1396e79d-a217-431f-ba1d-6596c1924ac0", + "3a5ea563-a764-4bb6-b2d3-d98a1c377161", + "a1edad0a-8432-4850-b895-9d97092489b6", + "f7649797-fc15-4753-8189-cbc65d444f77", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "5f672947-8abc-447c-bf60-535abbf76fae", + "31e8057b-0fb0-44bd-83cf-3acad24654ec", + "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", + "411bafbe-bac8-4586-9af4-bc0b3163bdde", + "c1b679f5-d94a-4515-826d-dd0fd3e8ca0c", + "0266ed3c-e279-4178-b7ea-9f611780869a", + "c5521133-14cc-4988-b8c2-4360698fa4ec" + ], + "stops": [], + "line_id": "ad878084-7b7f-4691-a792-dd097cf0ba5f", + "segments": [ + 0, + 4, + 13, + 36, + 44, + 50, + 55, + 62, + 68, + 72, + 84, + 85, + 88, + 91, + 95, + 100, + 102, + 105, + 109, + 113, + 117, + 122, + 125, + 128, + 130, + 132, + 137, + 143, + 148, + 155, + 158, + 163, + 165, + 169, + 175, + 178, + 181, + 184, + 188, + 193, + 199, + 207, + 214, + 218, + 222, + 229, + 234, + 255, + 257, + 260 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 312, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.440902, + 45.528911 + ], + [ + -73.440869, + 45.52899 + ], + [ + -73.44038, + 45.530083 + ], + [ + -73.440366, + 45.530114 + ], + [ + -73.440274, + 45.530321 + ], + [ + -73.440069, + 45.530781 + ], + [ + -73.440025, + 45.53088 + ], + [ + -73.439543, + 45.531958 + ], + [ + -73.439479, + 45.53211 + ], + [ + -73.439159, + 45.532867 + ], + [ + -73.439121, + 45.532958 + ], + [ + -73.439267, + 45.532996 + ], + [ + -73.439534, + 45.53307 + ], + [ + -73.439566, + 45.533079 + ], + [ + -73.439642, + 45.533099 + ], + [ + -73.440793, + 45.533406 + ], + [ + -73.440917, + 45.533439 + ], + [ + -73.441654, + 45.533615 + ], + [ + -73.441957, + 45.533692 + ], + [ + -73.44295, + 45.533944 + ], + [ + -73.443077, + 45.533976 + ], + [ + -73.443863, + 45.53417 + ], + [ + -73.443989, + 45.534201 + ], + [ + -73.444489, + 45.534346 + ], + [ + -73.444931, + 45.53453 + ], + [ + -73.445118, + 45.534611 + ], + [ + -73.445446, + 45.534818 + ], + [ + -73.445653, + 45.534958 + ], + [ + -73.445829, + 45.535111 + ], + [ + -73.446015, + 45.535288 + ], + [ + -73.446079, + 45.535349 + ], + [ + -73.44617, + 45.535435 + ], + [ + -73.446275, + 45.535528 + ], + [ + -73.446362, + 45.535606 + ], + [ + -73.446623, + 45.535795 + ], + [ + -73.446833, + 45.535908 + ], + [ + -73.447009, + 45.53598 + ], + [ + -73.447135, + 45.536029 + ], + [ + -73.447379, + 45.536097 + ], + [ + -73.448323, + 45.536304 + ], + [ + -73.448623, + 45.536399 + ], + [ + -73.448771, + 45.536487 + ], + [ + -73.448898, + 45.536561 + ], + [ + -73.450382, + 45.537448 + ], + [ + -73.450563, + 45.537556 + ], + [ + -73.450772, + 45.537669 + ], + [ + -73.450923, + 45.537718 + ], + [ + -73.450952, + 45.537727 + ], + [ + -73.451166, + 45.537772 + ], + [ + -73.451401, + 45.537795 + ], + [ + -73.451627, + 45.537786 + ], + [ + -73.452059, + 45.537741 + ], + [ + -73.452711, + 45.537692 + ], + [ + -73.452874, + 45.537696 + ], + [ + -73.452931, + 45.537697 + ], + [ + -73.453038, + 45.53771 + ], + [ + -73.452922, + 45.538362 + ], + [ + -73.452921, + 45.538365 + ], + [ + -73.452904, + 45.538462 + ], + [ + -73.452804, + 45.539091 + ], + [ + -73.452723, + 45.539685 + ], + [ + -73.452717, + 45.539726 + ], + [ + -73.452594, + 45.540342 + ], + [ + -73.452366, + 45.540773 + ], + [ + -73.45227, + 45.540954 + ], + [ + -73.452075, + 45.541179 + ], + [ + -73.45197, + 45.541296 + ], + [ + -73.451796, + 45.541426 + ], + [ + -73.451437, + 45.541633 + ], + [ + -73.451233, + 45.541718 + ], + [ + -73.450967, + 45.541781 + ], + [ + -73.450741, + 45.541822 + ], + [ + -73.450649, + 45.541825 + ], + [ + -73.450524, + 45.54183 + ], + [ + -73.450532, + 45.54192 + ], + [ + -73.450512, + 45.542105 + ], + [ + -73.450477, + 45.54224 + ], + [ + -73.449919, + 45.542604 + ], + [ + -73.449268, + 45.543031 + ], + [ + -73.448885, + 45.543275 + ], + [ + -73.448583, + 45.543467 + ], + [ + -73.448345, + 45.543284 + ], + [ + -73.448064, + 45.543067 + ], + [ + -73.447976, + 45.542999 + ], + [ + -73.447904, + 45.542944 + ], + [ + -73.447355, + 45.542526 + ], + [ + -73.446879, + 45.542182 + ], + [ + -73.446733, + 45.542076 + ], + [ + -73.446124, + 45.541621 + ], + [ + -73.445606, + 45.54122 + ], + [ + -73.445503, + 45.54114 + ], + [ + -73.444511, + 45.54041 + ], + [ + -73.444375, + 45.540325 + ], + [ + -73.444216, + 45.540244 + ], + [ + -73.44408, + 45.540185 + ], + [ + -73.443876, + 45.540135 + ], + [ + -73.44377, + 45.540109 + ], + [ + -73.4435, + 45.540041 + ], + [ + -73.44267, + 45.539892 + ], + [ + -73.442456, + 45.539852 + ], + [ + -73.442205, + 45.539784 + ], + [ + -73.44215, + 45.539764 + ], + [ + -73.442001, + 45.539712 + ], + [ + -73.441896, + 45.53968 + ], + [ + -73.441646, + 45.539559 + ], + [ + -73.44151, + 45.539487 + ], + [ + -73.441387, + 45.539397 + ], + [ + -73.441242, + 45.539293 + ], + [ + -73.441122, + 45.539153 + ], + [ + -73.441004, + 45.538991 + ], + [ + -73.440944, + 45.538829 + ], + [ + -73.440917, + 45.538748 + ], + [ + -73.440909, + 45.53867 + ], + [ + -73.440902, + 45.5386 + ], + [ + -73.440899, + 45.538573 + ], + [ + -73.440907, + 45.538487 + ], + [ + -73.440917, + 45.538393 + ], + [ + -73.440957, + 45.538285 + ], + [ + -73.441023, + 45.538164 + ], + [ + -73.441098, + 45.538047 + ], + [ + -73.4412, + 45.537934 + ], + [ + -73.441569, + 45.537651 + ], + [ + -73.441939, + 45.537372 + ], + [ + -73.442459, + 45.537008 + ], + [ + -73.442686, + 45.536815 + ], + [ + -73.442787, + 45.53667 + ], + [ + -73.442839, + 45.536594 + ], + [ + -73.44311, + 45.535924 + ], + [ + -73.443379, + 45.535204 + ], + [ + -73.443667, + 45.534739 + ], + [ + -73.443894, + 45.534372 + ], + [ + -73.443947, + 45.534277 + ], + [ + -73.443989, + 45.534201 + ], + [ + -73.444063, + 45.534075 + ], + [ + -73.444231, + 45.533766 + ], + [ + -73.444441, + 45.533378 + ], + [ + -73.44472, + 45.532816 + ], + [ + -73.445133, + 45.532069 + ], + [ + -73.445159, + 45.532011 + ], + [ + -73.445217, + 45.531876 + ], + [ + -73.445224, + 45.53185 + ], + [ + -73.445262, + 45.531714 + ], + [ + -73.445416, + 45.531246 + ], + [ + -73.445655, + 45.53081 + ], + [ + -73.445837, + 45.530635 + ], + [ + -73.44588, + 45.530594 + ], + [ + -73.445934, + 45.530553 + ], + [ + -73.445986, + 45.530495 + ], + [ + -73.446078, + 45.530436 + ], + [ + -73.446188, + 45.530392 + ], + [ + -73.446303, + 45.53036 + ], + [ + -73.446426, + 45.53032 + ], + [ + -73.446558, + 45.530297 + ], + [ + -73.446722, + 45.530284 + ], + [ + -73.446778, + 45.530284 + ], + [ + -73.446897, + 45.530293 + ], + [ + -73.44702, + 45.530311 + ], + [ + -73.44713, + 45.530342 + ], + [ + -73.447236, + 45.530379 + ], + [ + -73.447385, + 45.530442 + ], + [ + -73.447468, + 45.530494 + ], + [ + -73.447543, + 45.530541 + ], + [ + -73.447862, + 45.53032 + ], + [ + -73.448024, + 45.530118 + ], + [ + -73.448085, + 45.530001 + ], + [ + -73.448361, + 45.529473 + ], + [ + -73.448445, + 45.529313 + ], + [ + -73.448776, + 45.528634 + ], + [ + -73.449051, + 45.528106 + ], + [ + -73.449239, + 45.527747 + ], + [ + -73.449412, + 45.527437 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.45067, + 45.527735 + ], + [ + -73.451123, + 45.527906 + ], + [ + -73.451519, + 45.528063 + ], + [ + -73.452162, + 45.528357 + ], + [ + -73.452276, + 45.528409 + ], + [ + -73.452337, + 45.528437 + ], + [ + -73.45321, + 45.528797 + ], + [ + -73.454095, + 45.529149 + ], + [ + -73.454898, + 45.529493 + ], + [ + -73.454978, + 45.529527 + ], + [ + -73.45507, + 45.529563 + ], + [ + -73.45522, + 45.529388 + ], + [ + -73.455284, + 45.529311 + ], + [ + -73.455451, + 45.529109 + ], + [ + -73.455499, + 45.529051 + ], + [ + -73.455785, + 45.528706 + ], + [ + -73.455884, + 45.528587 + ], + [ + -73.456049, + 45.528371 + ], + [ + -73.45613, + 45.528209 + ], + [ + -73.456176, + 45.528106 + ], + [ + -73.456187, + 45.527953 + ], + [ + -73.456204, + 45.52784 + ], + [ + -73.456183, + 45.527701 + ], + [ + -73.456135, + 45.527467 + ], + [ + -73.455932, + 45.526756 + ], + [ + -73.455896, + 45.52663 + ], + [ + -73.455652, + 45.525847 + ], + [ + -73.455602, + 45.525613 + ], + [ + -73.455589, + 45.525383 + ], + [ + -73.455612, + 45.525226 + ], + [ + -73.455654, + 45.525073 + ], + [ + -73.455815, + 45.524754 + ], + [ + -73.45592, + 45.524561 + ], + [ + -73.455992, + 45.52443 + ], + [ + -73.456517, + 45.523413 + ], + [ + -73.456595, + 45.52326 + ], + [ + -73.456778, + 45.522927 + ], + [ + -73.456973, + 45.52255 + ], + [ + -73.457039, + 45.522401 + ], + [ + -73.457075, + 45.522302 + ], + [ + -73.457107, + 45.52214 + ], + [ + -73.457118, + 45.521965 + ], + [ + -73.457108, + 45.521794 + ], + [ + -73.457056, + 45.521463 + ], + [ + -73.456999, + 45.5211 + ], + [ + -73.45699, + 45.521042 + ], + [ + -73.456859, + 45.520214 + ], + [ + -73.456859, + 45.520016 + ], + [ + -73.456867, + 45.519886 + ], + [ + -73.456897, + 45.519836 + ], + [ + -73.45694, + 45.519733 + ], + [ + -73.457021, + 45.519589 + ], + [ + -73.457071, + 45.519486 + ], + [ + -73.457177, + 45.519349 + ], + [ + -73.457268, + 45.519234 + ], + [ + -73.457332, + 45.519144 + ], + [ + -73.45752, + 45.518878 + ], + [ + -73.45768, + 45.518671 + ], + [ + -73.457816, + 45.518604 + ], + [ + -73.458054, + 45.518618 + ], + [ + -73.458153, + 45.5186 + ], + [ + -73.458265, + 45.518568 + ], + [ + -73.458385, + 45.518523 + ], + [ + -73.458481, + 45.51846 + ], + [ + -73.458593, + 45.518303 + ], + [ + -73.458982, + 45.517723 + ], + [ + -73.459414, + 45.517111 + ], + [ + -73.459867, + 45.516504 + ], + [ + -73.460323, + 45.515878 + ], + [ + -73.460719, + 45.515321 + ], + [ + -73.461115, + 45.51474 + ], + [ + -73.461665, + 45.513994 + ], + [ + -73.462213, + 45.514189 + ], + [ + -73.462602, + 45.514327 + ], + [ + -73.464082, + 45.514885 + ], + [ + -73.465757, + 45.515517 + ], + [ + -73.465949, + 45.515589 + ], + [ + -73.466056, + 45.515628 + ], + [ + -73.466138, + 45.51566 + ], + [ + -73.466232, + 45.515695 + ], + [ + -73.466464, + 45.515386 + ], + [ + -73.466616, + 45.515183 + ], + [ + -73.466795, + 45.514943 + ], + [ + -73.467735, + 45.513671 + ], + [ + -73.467821, + 45.513555 + ], + [ + -73.468294, + 45.512911 + ], + [ + -73.46871, + 45.512346 + ], + [ + -73.468744, + 45.5123 + ], + [ + -73.469443, + 45.511193 + ], + [ + -73.469555, + 45.511034 + ], + [ + -73.469846, + 45.510622 + ], + [ + -73.470521, + 45.509701 + ], + [ + -73.471066, + 45.508957 + ], + [ + -73.471144, + 45.508849 + ], + [ + -73.471529, + 45.5084 + ], + [ + -73.471611, + 45.508311 + ], + [ + -73.471717, + 45.508197 + ], + [ + -73.471961, + 45.507999 + ], + [ + -73.472233, + 45.507779 + ], + [ + -73.47263, + 45.507504 + ], + [ + -73.472934, + 45.507307 + ], + [ + -73.473074, + 45.507199 + ], + [ + -73.473158, + 45.507158 + ], + [ + -73.473577, + 45.506947 + ], + [ + -73.473945, + 45.506798 + ], + [ + -73.474313, + 45.506691 + ], + [ + -73.47466, + 45.506628 + ], + [ + -73.47498, + 45.506601 + ], + [ + -73.475233, + 45.506578 + ], + [ + -73.475525, + 45.506551 + ], + [ + -73.477372, + 45.506439 + ], + [ + -73.478813, + 45.506341 + ], + [ + -73.481594, + 45.506157 + ], + [ + -73.482058, + 45.506125 + ], + [ + -73.484736, + 45.50595 + ], + [ + -73.485056, + 45.505932 + ], + [ + -73.485154, + 45.505923 + ], + [ + -73.485457, + 45.505889 + ], + [ + -73.485514, + 45.505883 + ], + [ + -73.485664, + 45.505851 + ], + [ + -73.485863, + 45.505806 + ], + [ + -73.486064, + 45.505743 + ], + [ + -73.486538, + 45.505545 + ], + [ + -73.486574, + 45.505527 + ], + [ + -73.486885, + 45.505482 + ], + [ + -73.487023, + 45.505482 + ], + [ + -73.487147, + 45.505496 + ], + [ + -73.487216, + 45.505517 + ], + [ + -73.487307, + 45.505545 + ], + [ + -73.487659, + 45.505743 + ], + [ + -73.48774, + 45.50577 + ], + [ + -73.489183, + 45.506841 + ], + [ + -73.489373, + 45.507002 + ], + [ + -73.489401, + 45.507026 + ], + [ + -73.489582, + 45.507116 + ], + [ + -73.489923, + 45.507206 + ], + [ + -73.490235, + 45.507305 + ], + [ + -73.490409, + 45.507408 + ], + [ + -73.490538, + 45.507525 + ], + [ + -73.490647, + 45.50766 + ], + [ + -73.490946, + 45.50807 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491318, + 45.508448 + ], + [ + -73.491611, + 45.508785 + ], + [ + -73.491934, + 45.509114 + ], + [ + -73.492109, + 45.509276 + ], + [ + -73.492486, + 45.5096 + ], + [ + -73.492892, + 45.509906 + ], + [ + -73.492944, + 45.509941 + ], + [ + -73.493105, + 45.51005 + ], + [ + -73.493324, + 45.510189 + ], + [ + -73.493692, + 45.51041 + ], + [ + -73.494018, + 45.510585 + ], + [ + -73.494514, + 45.510828 + ], + [ + -73.495039, + 45.511049 + ], + [ + -73.495599, + 45.511256 + ], + [ + -73.496194, + 45.511454 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.500884, + 45.513009 + ], + [ + -73.50103, + 45.513055 + ], + [ + -73.501841, + 45.513343 + ], + [ + -73.501921, + 45.513375 + ], + [ + -73.502236, + 45.51351 + ], + [ + -73.503209, + 45.513879 + ], + [ + -73.504586, + 45.514346 + ], + [ + -73.505128, + 45.514485 + ], + [ + -73.505253, + 45.514517 + ], + [ + -73.505434, + 45.514562 + ], + [ + -73.505454, + 45.514325 + ], + [ + -73.505464, + 45.514054 + ], + [ + -73.505469, + 45.513811 + ], + [ + -73.50548, + 45.513717 + ], + [ + -73.505507, + 45.513609 + ], + [ + -73.505553, + 45.513433 + ], + [ + -73.505595, + 45.513348 + ], + [ + -73.506067, + 45.512799 + ], + [ + -73.506238, + 45.512601 + ], + [ + -73.506149, + 45.512565 + ], + [ + -73.505945, + 45.512487 + ], + [ + -73.505513, + 45.512322 + ], + [ + -73.504953, + 45.512101 + ], + [ + -73.504821, + 45.512052 + ], + [ + -73.503649, + 45.511597 + ], + [ + -73.503715, + 45.511503 + ], + [ + -73.504141, + 45.510959 + ], + [ + -73.504367, + 45.510653 + ], + [ + -73.504625, + 45.51032 + ], + [ + -73.504847, + 45.510018 + ], + [ + -73.505098, + 45.509672 + ], + [ + -73.505595, + 45.509024 + ], + [ + -73.505856, + 45.508673 + ], + [ + -73.506088, + 45.508371 + ], + [ + -73.503983, + 45.507589 + ], + [ + -73.503127, + 45.507268 + ], + [ + -73.50278, + 45.507139 + ], + [ + -73.502418, + 45.507008 + ], + [ + -73.502098, + 45.506896 + ], + [ + -73.502109, + 45.507332 + ], + [ + -73.502155, + 45.507742 + ], + [ + -73.503376, + 45.508201 + ], + [ + -73.50436, + 45.508565 + ] + ] + }, + "id": 313, + "properties": { + "id": "e8e3c03d-ccc4-4483-9797-4f369295b7d3", + "data": { + "gtfs": { + "shape_id": "570_1_A" + }, + "segments": [ + { + "distanceMeters": 218, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 86, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 92, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 61, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 1072, + "travelTimeSeconds": 147 + }, + { + "distanceMeters": 81, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 3192, + "travelTimeSeconds": 436 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 1303, + "travelTimeSeconds": 178 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13199, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5434.9109215417575, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.33, + "travelTimeWithoutDwellTimesSeconds": 1800, + "operatingTimeWithLayoverTimeSeconds": 1980, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1800, + "operatingSpeedWithLayoverMetersPerSecond": 6.67, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.33 + }, + "mode": "bus", + "name": "École St-Lambert Inter.", + "color": "#A32638", + "nodes": [ + "de69f95c-e485-42da-bcac-5eeb8a8928ad", + "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", + "0e37f239-15e7-41c5-a31a-ce2ad3dc4eae", + "2dda318d-8bf9-4860-b60d-6fcb1dd29156", + "576ef8c5-693c-4ae9-bb41-68685f43e174", + "210e532b-2acc-4a3e-b173-3471add098b1", + "8b3a553d-dad5-41ff-b228-80f338c4b0e0", + "25a5f82a-36a7-4a52-af2b-32a681f87765", + "231dda72-d4b5-48ae-b714-5ce9d3802c45", + "e5c2d9f4-1be6-458f-854f-8103a3048b8c", + "74325106-fd46-4be2-9872-2d362cabf10d", + "97fd6b08-e74d-4e78-a89d-1a8506473313", + "78852b27-6481-4593-91bd-0a0ac5e52bda", + "ed2d86bc-14d2-40cc-9b3c-fcf430af3d76", + "8990dfff-c24e-4da1-938f-d3124a8df164", + "b6aea660-191f-4c6f-a40e-a9dfada559a0", + "2b36885d-7487-45f3-88e4-95ced22c8df0", + "5251f580-cc4c-4e24-adc5-09ece02102d8", + "1f21bce0-b8ed-434c-ade7-9416eb8a180a", + "6ad75842-382c-44ee-b7d6-fd3532656bb0", + "90aff802-7f58-4407-a26e-45f80682eeaf", + "5360d4c3-b5aa-452d-a69b-73fcfc24260f", + "210e532b-2acc-4a3e-b173-3471add098b1", + "210e532b-2acc-4a3e-b173-3471add098b1", + "51637772-6b85-4c49-a14a-4de104a8f1f5", + "23ef9461-bbd0-492e-8678-c51238629a13", + "69483ac1-331d-4f0e-93b5-d8134f380763", + "da0ea2a1-8305-4096-84b5-3da6997f0293", + "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "51878141-1194-4666-977c-0597ee638ffb", + "0a078431-12d6-4e73-9908-076c3a27e8ed", + "e8c367ff-94d4-4335-8cfa-cd40d1ea983f", + "290dd81a-faeb-49a8-be84-7d76ab6dd7ef", + "c33924bc-c890-4a49-b330-6134b056dd6d", + "b9c0c47c-b605-460e-9360-3718e001061b", + "98268bc3-9f24-452e-8107-226a930051bc", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "5ca73944-03b3-4fca-ab1f-781dd6f959a4", + "ad783725-7edb-4c18-8b1a-a064301b213d", + "f9f88325-b670-4d47-91fa-edb372992bbc", + "e1a9e623-935b-47b9-a038-bcbd5a33f95e", + "a5b9648a-83c0-4eab-a54b-68c23aecae43", + "a9942a30-a6ad-484e-9e20-4748407133ba", + "2227a38f-9c32-4890-9719-eef7445fa1fc", + "3f77d417-9b8e-4514-8337-8fa9008d2cc7" + ], + "stops": [], + "line_id": "cd9d7c19-2e5d-4ed6-b8b6-b6d88d06591c", + "segments": [ + 0, + 5, + 8, + 12, + 15, + 21, + 29, + 41, + 43, + 53, + 56, + 60, + 63, + 72, + 79, + 82, + 86, + 89, + 95, + 101, + 112, + 125, + 131, + 134, + 140, + 144, + 160, + 165, + 170, + 175, + 180, + 187, + 196, + 204, + 206, + 215, + 225, + 247, + 252, + 255, + 258, + 331, + 338, + 348 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 313, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.50436, + 45.508565 + ], + [ + -73.505595, + 45.509024 + ], + [ + -73.505098, + 45.509672 + ], + [ + -73.504847, + 45.510018 + ], + [ + -73.504789, + 45.510096 + ], + [ + -73.504625, + 45.51032 + ], + [ + -73.504367, + 45.510653 + ], + [ + -73.504141, + 45.510959 + ], + [ + -73.503715, + 45.511503 + ], + [ + -73.503649, + 45.511597 + ], + [ + -73.50359, + 45.511574 + ], + [ + -73.503468, + 45.511526 + ], + [ + -73.503435, + 45.511575 + ], + [ + -73.5034, + 45.511633 + ], + [ + -73.502608, + 45.512875 + ], + [ + -73.502433, + 45.51315 + ], + [ + -73.502048, + 45.513078 + ], + [ + -73.501555, + 45.512938 + ], + [ + -73.501411, + 45.512898 + ], + [ + -73.50108, + 45.512799 + ], + [ + -73.500434, + 45.512596 + ], + [ + -73.499672, + 45.512346 + ], + [ + -73.499588, + 45.512318 + ], + [ + -73.498752, + 45.512058 + ], + [ + -73.498536, + 45.511994 + ], + [ + -73.498219, + 45.511893 + ], + [ + -73.498206, + 45.511888 + ], + [ + -73.497589, + 45.511692 + ], + [ + -73.497489, + 45.511657 + ], + [ + -73.496919, + 45.511546 + ], + [ + -73.496096, + 45.511283 + ], + [ + -73.495565, + 45.511107 + ], + [ + -73.495059, + 45.510918 + ], + [ + -73.494579, + 45.510716 + ], + [ + -73.494122, + 45.510491 + ], + [ + -73.494028, + 45.51044 + ], + [ + -73.493683, + 45.510252 + ], + [ + -73.493267, + 45.509991 + ], + [ + -73.492868, + 45.509712 + ], + [ + -73.492676, + 45.509564 + ], + [ + -73.4923, + 45.509258 + ], + [ + -73.491951, + 45.508929 + ], + [ + -73.49179, + 45.508763 + ], + [ + -73.491635, + 45.508592 + ], + [ + -73.491347, + 45.508236 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491046, + 45.507633 + ], + [ + -73.490915, + 45.507377 + ], + [ + -73.490797, + 45.507111 + ], + [ + -73.490589, + 45.506522 + ], + [ + -73.490582, + 45.506392 + ], + [ + -73.490603, + 45.506248 + ], + [ + -73.490612, + 45.506221 + ], + [ + -73.490644, + 45.506122 + ], + [ + -73.490698, + 45.506027 + ], + [ + -73.490768, + 45.505915 + ], + [ + -73.490822, + 45.505811 + ], + [ + -73.490899, + 45.505685 + ], + [ + -73.490958, + 45.505564 + ], + [ + -73.49098, + 45.505478 + ], + [ + -73.490984, + 45.505388 + ], + [ + -73.49099, + 45.505289 + ], + [ + -73.490975, + 45.505204 + ], + [ + -73.490939, + 45.5051 + ], + [ + -73.490875, + 45.505001 + ], + [ + -73.490827, + 45.504929 + ], + [ + -73.490753, + 45.504853 + ], + [ + -73.490691, + 45.504799 + ], + [ + -73.49061, + 45.504736 + ], + [ + -73.490474, + 45.504655 + ], + [ + -73.49045, + 45.504645 + ], + [ + -73.490291, + 45.504578 + ], + [ + -73.490131, + 45.504538 + ], + [ + -73.489983, + 45.504511 + ], + [ + -73.489875, + 45.504502 + ], + [ + -73.489861, + 45.504497 + ], + [ + -73.489704, + 45.504493 + ], + [ + -73.489544, + 45.504502 + ], + [ + -73.489342, + 45.50452 + ], + [ + -73.489018, + 45.504573 + ], + [ + -73.488616, + 45.504623 + ], + [ + -73.488197, + 45.504686 + ], + [ + -73.488066, + 45.504722 + ], + [ + -73.487867, + 45.504781 + ], + [ + -73.487713, + 45.504835 + ], + [ + -73.48741, + 45.50497 + ], + [ + -73.486959, + 45.505194 + ], + [ + -73.486552, + 45.505388 + ], + [ + -73.486271, + 45.505518 + ], + [ + -73.485954, + 45.505644 + ], + [ + -73.485749, + 45.505712 + ], + [ + -73.485554, + 45.505757 + ], + [ + -73.48532, + 45.505797 + ], + [ + -73.484714, + 45.505833 + ], + [ + -73.483377, + 45.505927 + ], + [ + -73.482071, + 45.506076 + ], + [ + -73.481729, + 45.506125 + ], + [ + -73.481594, + 45.506157 + ], + [ + -73.478813, + 45.506341 + ], + [ + -73.477372, + 45.506439 + ], + [ + -73.475525, + 45.506551 + ], + [ + -73.475233, + 45.506578 + ], + [ + -73.47498, + 45.506601 + ], + [ + -73.47466, + 45.506628 + ], + [ + -73.474313, + 45.506691 + ], + [ + -73.473945, + 45.506798 + ], + [ + -73.473577, + 45.506947 + ], + [ + -73.473158, + 45.507158 + ], + [ + -73.473074, + 45.507199 + ], + [ + -73.472806, + 45.507302 + ], + [ + -73.472546, + 45.507455 + ], + [ + -73.47229, + 45.507603 + ], + [ + -73.472121, + 45.507711 + ], + [ + -73.471621, + 45.508134 + ], + [ + -73.471413, + 45.508341 + ], + [ + -73.470997, + 45.508809 + ], + [ + -73.470932, + 45.508894 + ], + [ + -73.470366, + 45.509655 + ], + [ + -73.470032, + 45.510114 + ], + [ + -73.46959, + 45.510721 + ], + [ + -73.469434, + 45.510905 + ], + [ + -73.469378, + 45.510967 + ], + [ + -73.469091, + 45.511282 + ], + [ + -73.468985, + 45.5114 + ], + [ + -73.468432, + 45.512155 + ], + [ + -73.468415, + 45.512178 + ], + [ + -73.4665, + 45.514843 + ], + [ + -73.466445, + 45.514919 + ], + [ + -73.466167, + 45.515339 + ], + [ + -73.466151, + 45.515363 + ], + [ + -73.465949, + 45.515589 + ], + [ + -73.465471, + 45.515409 + ], + [ + -73.464082, + 45.514885 + ], + [ + -73.463054, + 45.514498 + ], + [ + -73.462602, + 45.514327 + ], + [ + -73.461665, + 45.513994 + ], + [ + -73.460554, + 45.513588 + ], + [ + -73.460309, + 45.513921 + ], + [ + -73.460004, + 45.514335 + ], + [ + -73.4596, + 45.514906 + ], + [ + -73.459186, + 45.515487 + ], + [ + -73.458735, + 45.516089 + ], + [ + -73.458292, + 45.516701 + ], + [ + -73.457868, + 45.517317 + ], + [ + -73.457427, + 45.517884 + ], + [ + -73.457318, + 45.518118 + ], + [ + -73.457329, + 45.518248 + ], + [ + -73.457353, + 45.518325 + ], + [ + -73.457425, + 45.518415 + ], + [ + -73.457485, + 45.518468 + ], + [ + -73.457496, + 45.518478 + ], + [ + -73.457557, + 45.518527 + ], + [ + -73.457569, + 45.518527 + ], + [ + -73.457551, + 45.518635 + ], + [ + -73.457265, + 45.519027 + ], + [ + -73.457212, + 45.51909 + ], + [ + -73.457149, + 45.51918 + ], + [ + -73.456893, + 45.519549 + ], + [ + -73.456858, + 45.51961 + ], + [ + -73.456808, + 45.519697 + ], + [ + -73.456763, + 45.519809 + ], + [ + -73.456747, + 45.519998 + ], + [ + -73.456743, + 45.520169 + ], + [ + -73.456867, + 45.52096 + ], + [ + -73.456881, + 45.521051 + ], + [ + -73.456916, + 45.521245 + ], + [ + -73.457007, + 45.521798 + ], + [ + -73.457018, + 45.521965 + ], + [ + -73.457007, + 45.522131 + ], + [ + -73.456977, + 45.522289 + ], + [ + -73.456948, + 45.522368 + ], + [ + -73.456942, + 45.522383 + ], + [ + -73.456878, + 45.522527 + ], + [ + -73.456684, + 45.5229 + ], + [ + -73.456572, + 45.523105 + ], + [ + -73.456502, + 45.523233 + ], + [ + -73.45597, + 45.524243 + ], + [ + -73.455885, + 45.524403 + ], + [ + -73.455699, + 45.524754 + ], + [ + -73.45556, + 45.52506 + ], + [ + -73.455515, + 45.525217 + ], + [ + -73.455492, + 45.525379 + ], + [ + -73.455505, + 45.525617 + ], + [ + -73.455556, + 45.52586 + ], + [ + -73.455725, + 45.526441 + ], + [ + -73.455732, + 45.526465 + ], + [ + -73.455785, + 45.526648 + ], + [ + -73.456034, + 45.52748 + ], + [ + -73.456081, + 45.527705 + ], + [ + -73.456084, + 45.527948 + ], + [ + -73.45603, + 45.528196 + ], + [ + -73.455955, + 45.528344 + ], + [ + -73.455795, + 45.528551 + ], + [ + -73.455584, + 45.528805 + ], + [ + -73.455542, + 45.528856 + ], + [ + -73.455189, + 45.52928 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.4548, + 45.529215 + ], + [ + -73.454681, + 45.529165 + ], + [ + -73.453608, + 45.528719 + ], + [ + -73.452464, + 45.528243 + ], + [ + -73.452419, + 45.528224 + ], + [ + -73.452095, + 45.528089 + ], + [ + -73.451849, + 45.527987 + ], + [ + -73.449888, + 45.527218 + ], + [ + -73.449586, + 45.5271 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.449239, + 45.527747 + ], + [ + -73.449102, + 45.528009 + ], + [ + -73.448776, + 45.528634 + ], + [ + -73.448473, + 45.529254 + ], + [ + -73.448445, + 45.529313 + ], + [ + -73.448085, + 45.530001 + ], + [ + -73.448024, + 45.530118 + ], + [ + -73.447862, + 45.53032 + ], + [ + -73.447635, + 45.530477 + ], + [ + -73.447543, + 45.530541 + ], + [ + -73.447385, + 45.530442 + ], + [ + -73.447236, + 45.530379 + ], + [ + -73.447213, + 45.530371 + ], + [ + -73.44713, + 45.530342 + ], + [ + -73.44702, + 45.530311 + ], + [ + -73.446897, + 45.530293 + ], + [ + -73.446778, + 45.530284 + ], + [ + -73.446722, + 45.530284 + ], + [ + -73.446558, + 45.530297 + ], + [ + -73.446426, + 45.53032 + ], + [ + -73.446303, + 45.53036 + ], + [ + -73.446188, + 45.530392 + ], + [ + -73.446163, + 45.530402 + ], + [ + -73.446078, + 45.530436 + ], + [ + -73.445986, + 45.530495 + ], + [ + -73.445934, + 45.530553 + ], + [ + -73.44588, + 45.530594 + ], + [ + -73.445655, + 45.53081 + ], + [ + -73.445416, + 45.531246 + ], + [ + -73.445297, + 45.531605 + ], + [ + -73.445262, + 45.531714 + ], + [ + -73.445217, + 45.531876 + ], + [ + -73.445159, + 45.532011 + ], + [ + -73.445133, + 45.532069 + ], + [ + -73.44472, + 45.532816 + ], + [ + -73.444441, + 45.533378 + ], + [ + -73.44412, + 45.533969 + ], + [ + -73.444063, + 45.534075 + ], + [ + -73.443989, + 45.534201 + ], + [ + -73.444489, + 45.534346 + ], + [ + -73.444931, + 45.53453 + ], + [ + -73.445118, + 45.534611 + ], + [ + -73.445446, + 45.534818 + ], + [ + -73.445653, + 45.534958 + ], + [ + -73.445829, + 45.535111 + ], + [ + -73.44602, + 45.535292 + ], + [ + -73.446079, + 45.535349 + ], + [ + -73.44617, + 45.535435 + ], + [ + -73.446275, + 45.535528 + ], + [ + -73.446362, + 45.535606 + ], + [ + -73.446623, + 45.535795 + ], + [ + -73.446833, + 45.535908 + ], + [ + -73.447009, + 45.53598 + ], + [ + -73.447135, + 45.536029 + ], + [ + -73.447379, + 45.536097 + ], + [ + -73.448323, + 45.536304 + ], + [ + -73.448623, + 45.536399 + ], + [ + -73.448778, + 45.53649 + ], + [ + -73.448898, + 45.536561 + ], + [ + -73.450389, + 45.537452 + ], + [ + -73.450563, + 45.537556 + ], + [ + -73.450772, + 45.537669 + ], + [ + -73.450923, + 45.537718 + ], + [ + -73.450952, + 45.537727 + ], + [ + -73.451166, + 45.537772 + ], + [ + -73.451401, + 45.537795 + ], + [ + -73.451627, + 45.537786 + ], + [ + -73.452059, + 45.537741 + ], + [ + -73.452406, + 45.537715 + ], + [ + -73.452711, + 45.537692 + ], + [ + -73.45287, + 45.537695 + ], + [ + -73.452931, + 45.537697 + ], + [ + -73.453038, + 45.53771 + ], + [ + -73.452921, + 45.538368 + ], + [ + -73.452904, + 45.538462 + ], + [ + -73.452804, + 45.539091 + ], + [ + -73.452722, + 45.539691 + ], + [ + -73.452717, + 45.539726 + ], + [ + -73.452594, + 45.540342 + ], + [ + -73.452363, + 45.540779 + ], + [ + -73.45227, + 45.540954 + ], + [ + -73.452075, + 45.541179 + ], + [ + -73.45197, + 45.541296 + ], + [ + -73.451796, + 45.541426 + ], + [ + -73.451437, + 45.541633 + ], + [ + -73.451233, + 45.541718 + ], + [ + -73.450967, + 45.541781 + ], + [ + -73.450741, + 45.541822 + ], + [ + -73.45064, + 45.541826 + ], + [ + -73.450524, + 45.54183 + ], + [ + -73.450532, + 45.54192 + ], + [ + -73.450512, + 45.542105 + ], + [ + -73.450477, + 45.54224 + ], + [ + -73.449919, + 45.542604 + ], + [ + -73.449268, + 45.543031 + ], + [ + -73.448887, + 45.543274 + ], + [ + -73.448583, + 45.543467 + ], + [ + -73.448371, + 45.543303 + ], + [ + -73.448058, + 45.543062 + ], + [ + -73.447976, + 45.542999 + ], + [ + -73.447904, + 45.542944 + ], + [ + -73.447355, + 45.542526 + ], + [ + -73.446881, + 45.542184 + ], + [ + -73.446733, + 45.542076 + ], + [ + -73.446124, + 45.541621 + ], + [ + -73.4456, + 45.541215 + ], + [ + -73.445503, + 45.54114 + ], + [ + -73.444511, + 45.54041 + ], + [ + -73.444375, + 45.540325 + ], + [ + -73.444216, + 45.540244 + ], + [ + -73.44408, + 45.540185 + ], + [ + -73.443867, + 45.540133 + ], + [ + -73.44377, + 45.540109 + ], + [ + -73.4435, + 45.540041 + ], + [ + -73.44267, + 45.539892 + ], + [ + -73.442456, + 45.539852 + ], + [ + -73.442205, + 45.539784 + ], + [ + -73.442141, + 45.539761 + ], + [ + -73.442001, + 45.539712 + ], + [ + -73.441896, + 45.53968 + ], + [ + -73.441646, + 45.539559 + ], + [ + -73.44151, + 45.539487 + ], + [ + -73.441387, + 45.539397 + ], + [ + -73.441242, + 45.539293 + ], + [ + -73.441122, + 45.539153 + ], + [ + -73.441004, + 45.538991 + ], + [ + -73.440944, + 45.538829 + ], + [ + -73.440917, + 45.538748 + ], + [ + -73.440908, + 45.538662 + ], + [ + -73.440902, + 45.5386 + ], + [ + -73.440899, + 45.538573 + ], + [ + -73.440907, + 45.538487 + ], + [ + -73.440917, + 45.538393 + ], + [ + -73.440957, + 45.538285 + ], + [ + -73.441023, + 45.538164 + ], + [ + -73.441098, + 45.538047 + ], + [ + -73.4412, + 45.537934 + ], + [ + -73.441569, + 45.537651 + ], + [ + -73.441939, + 45.537372 + ], + [ + -73.442459, + 45.537008 + ], + [ + -73.442686, + 45.536815 + ], + [ + -73.442791, + 45.536663 + ], + [ + -73.442839, + 45.536594 + ], + [ + -73.44311, + 45.535924 + ], + [ + -73.443379, + 45.535204 + ], + [ + -73.443894, + 45.534372 + ], + [ + -73.44395, + 45.534271 + ], + [ + -73.443951, + 45.53427 + ], + [ + -73.443989, + 45.534201 + ], + [ + -73.444063, + 45.534075 + ], + [ + -73.443132, + 45.533854 + ], + [ + -73.443002, + 45.533823 + ], + [ + -73.442012, + 45.533579 + ], + [ + -73.441709, + 45.533503 + ], + [ + -73.441658, + 45.533491 + ], + [ + -73.441109, + 45.53336 + ], + [ + -73.440969, + 45.533327 + ], + [ + -73.439773, + 45.533026 + ], + [ + -73.439556, + 45.532972 + ], + [ + -73.439429, + 45.532941 + ], + [ + -73.439309, + 45.532912 + ], + [ + -73.440138, + 45.531012 + ], + [ + -73.440178, + 45.530918 + ], + [ + -73.440526, + 45.530139 + ], + [ + -73.440983, + 45.529116 + ] + ] + }, + "id": 314, + "properties": { + "id": "819034f7-7a27-4b9f-9e74-8dfe87b9def9", + "data": { + "gtfs": { + "shape_id": "570_2_R" + }, + "segments": [ + { + "distanceMeters": 244, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 476, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 3202, + "travelTimeSeconds": 466 + }, + { + "distanceMeters": 335, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 61, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 826, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 87, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 93, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 33 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12361, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5434.9109215417575, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.87, + "travelTimeWithoutDwellTimesSeconds": 1800, + "operatingTimeWithLayoverTimeSeconds": 1980, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1800, + "operatingSpeedWithLayoverMetersPerSecond": 6.24, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.87 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "3f77d417-9b8e-4514-8337-8fa9008d2cc7", + "3035cba8-14ef-4eb7-b986-fc36588b4fe9", + "f4f29738-df3f-4d69-8632-9088ded0dc5a", + "741876fc-030a-42f6-a33a-8f1f9c2aba12", + "688a3f67-a176-441e-a399-c92a55de9c74", + "e1a9e623-935b-47b9-a038-bcbd5a33f95e", + "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", + "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", + "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", + "6fe3defb-8d6f-405c-8fb2-44b73532b240", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "98268bc3-9f24-452e-8107-226a930051bc", + "b9c0c47c-b605-460e-9360-3718e001061b", + "c33924bc-c890-4a49-b330-6134b056dd6d", + "290dd81a-faeb-49a8-be84-7d76ab6dd7ef", + "cdd96034-dead-4f68-a8ed-c24b98b781eb", + "6e83e147-802a-4695-95f3-96585bd15c4a", + "51878141-1194-4666-977c-0597ee638ffb", + "83cbcc26-a35c-4db6-a784-03a152cb9d6f", + "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "da0ea2a1-8305-4096-84b5-3da6997f0293", + "69483ac1-331d-4f0e-93b5-d8134f380763", + "23ef9461-bbd0-492e-8678-c51238629a13", + "51637772-6b85-4c49-a14a-4de104a8f1f5", + "210e532b-2acc-4a3e-b173-3471add098b1", + "8b3a553d-dad5-41ff-b228-80f338c4b0e0", + "25a5f82a-36a7-4a52-af2b-32a681f87765", + "231dda72-d4b5-48ae-b714-5ce9d3802c45", + "e5c2d9f4-1be6-458f-854f-8103a3048b8c", + "74325106-fd46-4be2-9872-2d362cabf10d", + "97fd6b08-e74d-4e78-a89d-1a8506473313", + "78852b27-6481-4593-91bd-0a0ac5e52bda", + "ed2d86bc-14d2-40cc-9b3c-fcf430af3d76", + "8990dfff-c24e-4da1-938f-d3124a8df164", + "b6aea660-191f-4c6f-a40e-a9dfada559a0", + "2b36885d-7487-45f3-88e4-95ced22c8df0", + "5251f580-cc4c-4e24-adc5-09ece02102d8", + "1f21bce0-b8ed-434c-ade7-9416eb8a180a", + "6ad75842-382c-44ee-b7d6-fd3532656bb0", + "90aff802-7f58-4407-a26e-45f80682eeaf", + "5360d4c3-b5aa-452d-a69b-73fcfc24260f", + "210e532b-2acc-4a3e-b173-3471add098b1", + "576ef8c5-693c-4ae9-bb41-68685f43e174", + "2dda318d-8bf9-4860-b60d-6fcb1dd29156", + "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", + "de69f95c-e485-42da-bcac-5eeb8a8928ad" + ], + "stops": [], + "line_id": "cd9d7c19-2e5d-4ed6-b8b6-b6d88d06591c", + "segments": [ + 0, + 4, + 17, + 21, + 25, + 124, + 126, + 128, + 133, + 149, + 158, + 163, + 174, + 176, + 185, + 193, + 198, + 200, + 204, + 208, + 210, + 215, + 229, + 236, + 243, + 252, + 264, + 266, + 277, + 280, + 283, + 286, + 295, + 302, + 305, + 309, + 312, + 318, + 324, + 335, + 348, + 354, + 362, + 366, + 368 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 314, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.46482, + 45.526263 + ], + [ + -73.464731, + 45.526435 + ], + [ + -73.463642, + 45.528469 + ], + [ + -73.462723, + 45.530186 + ], + [ + -73.462624, + 45.530371 + ], + [ + -73.462437, + 45.530708 + ], + [ + -73.462358, + 45.530861 + ], + [ + -73.46217, + 45.531262 + ], + [ + -73.461938, + 45.531653 + ], + [ + -73.461711, + 45.531982 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.462024, + 45.532625 + ], + [ + -73.462751, + 45.533003 + ], + [ + -73.463688, + 45.533556 + ], + [ + -73.463873, + 45.533665 + ], + [ + -73.464875, + 45.534543 + ], + [ + -73.46573, + 45.535331 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.468515, + 45.536979 + ], + [ + -73.468799, + 45.537046 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.469167, + 45.536827 + ], + [ + -73.470119, + 45.535066 + ], + [ + -73.470158, + 45.534994 + ], + [ + -73.471258, + 45.532956 + ], + [ + -73.471309, + 45.532862 + ], + [ + -73.472404, + 45.530828 + ], + [ + -73.47246, + 45.530725 + ], + [ + -73.473541, + 45.528698 + ], + [ + -73.4736, + 45.528588 + ], + [ + -73.474477, + 45.526966 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.474288, + 45.526314 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.474181, + 45.526055 + ], + [ + -73.474038, + 45.525457 + ], + [ + -73.474012, + 45.525344 + ], + [ + -73.473793, + 45.524566 + ], + [ + -73.47377, + 45.524471 + ], + [ + -73.47381, + 45.524417 + ], + [ + -73.473749, + 45.524215 + ], + [ + -73.473762, + 45.524053 + ], + [ + -73.473933, + 45.523816 + ], + [ + -73.474023, + 45.523693 + ], + [ + -73.474526, + 45.522973 + ], + [ + -73.474886, + 45.522492 + ], + [ + -73.474964, + 45.522388 + ], + [ + -73.475294, + 45.521907 + ], + [ + -73.475434, + 45.521732 + ], + [ + -73.476013, + 45.520938 + ], + [ + -73.476081, + 45.520845 + ], + [ + -73.476473, + 45.520306 + ], + [ + -73.47673, + 45.519943 + ], + [ + -73.47683, + 45.519802 + ], + [ + -73.477254, + 45.51923 + ], + [ + -73.477545, + 45.518801 + ], + [ + -73.477613, + 45.5187 + ], + [ + -73.478269, + 45.517795 + ], + [ + -73.478444, + 45.517559 + ], + [ + -73.478676, + 45.517242 + ], + [ + -73.479272, + 45.517448 + ], + [ + -73.479419, + 45.517499 + ], + [ + -73.480625, + 45.517916 + ], + [ + -73.481238, + 45.518128 + ], + [ + -73.481775, + 45.518314 + ], + [ + -73.481931, + 45.518367 + ], + [ + -73.48228, + 45.51849 + ], + [ + -73.482651, + 45.51862 + ], + [ + -73.484182, + 45.519156 + ], + [ + -73.484224, + 45.519171 + ], + [ + -73.484736, + 45.51935 + ], + [ + -73.484886, + 45.519403 + ], + [ + -73.487078, + 45.520163 + ], + [ + -73.487381, + 45.520268 + ], + [ + -73.487508, + 45.520312 + ], + [ + -73.487663, + 45.520079 + ], + [ + -73.487872, + 45.519763 + ], + [ + -73.488237, + 45.519187 + ], + [ + -73.4885, + 45.518792 + ], + [ + -73.488593, + 45.518652 + ], + [ + -73.488968, + 45.518103 + ], + [ + -73.489152, + 45.517788 + ], + [ + -73.489531, + 45.517225 + ], + [ + -73.489606, + 45.517113 + ], + [ + -73.49002, + 45.51647 + ], + [ + -73.490427, + 45.515876 + ], + [ + -73.490774, + 45.51537 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.491255, + 45.514612 + ], + [ + -73.491732, + 45.513901 + ], + [ + -73.492127, + 45.513303 + ], + [ + -73.492199, + 45.513195 + ], + [ + -73.49237, + 45.512938 + ], + [ + -73.492639, + 45.51252 + ], + [ + -73.493081, + 45.511867 + ], + [ + -73.493369, + 45.51144 + ], + [ + -73.493492, + 45.51125 + ], + [ + -73.493538, + 45.511179 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494003, + 45.510501 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.494126, + 45.510288 + ], + [ + -73.494238, + 45.510104 + ], + [ + -73.49438, + 45.509924 + ], + [ + -73.494493, + 45.509856 + ], + [ + -73.494824, + 45.509636 + ], + [ + -73.495154, + 45.509415 + ], + [ + -73.495498, + 45.509177 + ], + [ + -73.495814, + 45.508956 + ], + [ + -73.496204, + 45.508655 + ], + [ + -73.496376, + 45.508511 + ], + [ + -73.496824, + 45.508111 + ], + [ + -73.497233, + 45.508623 + ], + [ + -73.497769, + 45.509294 + ], + [ + -73.498065, + 45.509586 + ], + [ + -73.498161, + 45.50968 + ], + [ + -73.498287, + 45.509766 + ], + [ + -73.49839, + 45.509813 + ], + [ + -73.498525, + 45.509874 + ], + [ + -73.498839, + 45.509996 + ], + [ + -73.49986, + 45.510306 + ], + [ + -73.50032, + 45.51045 + ], + [ + -73.50064, + 45.510554 + ], + [ + -73.500724, + 45.510581 + ], + [ + -73.501152, + 45.51072 + ], + [ + -73.501574, + 45.510855 + ], + [ + -73.501949, + 45.510981 + ], + [ + -73.502532, + 45.511175 + ], + [ + -73.50299, + 45.511323 + ], + [ + -73.503113, + 45.511377 + ], + [ + -73.503371, + 45.511485 + ], + [ + -73.503468, + 45.511526 + ], + [ + -73.50359, + 45.511574 + ], + [ + -73.503649, + 45.511597 + ], + [ + -73.503715, + 45.511503 + ], + [ + -73.504141, + 45.510959 + ], + [ + -73.504367, + 45.510653 + ], + [ + -73.504625, + 45.51032 + ], + [ + -73.504847, + 45.510018 + ], + [ + -73.505098, + 45.509672 + ], + [ + -73.505595, + 45.509024 + ], + [ + -73.505856, + 45.508673 + ], + [ + -73.506088, + 45.508371 + ], + [ + -73.503983, + 45.507589 + ], + [ + -73.503107, + 45.507261 + ], + [ + -73.50278, + 45.507139 + ], + [ + -73.502418, + 45.507008 + ], + [ + -73.502098, + 45.506896 + ], + [ + -73.502109, + 45.507332 + ], + [ + -73.502155, + 45.507742 + ], + [ + -73.503376, + 45.508201 + ], + [ + -73.50436, + 45.508565 + ] + ] + }, + "id": 315, + "properties": { + "id": "e3c97675-52af-4cf2-a3ea-62308f7dd502", + "data": { + "gtfs": { + "shape_id": "572_1_A" + }, + "segments": [ + { + "distanceMeters": 262, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 96, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 668, + "travelTimeSeconds": 110 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 1072, + "travelTimeSeconds": 177 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8010, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3639.1359608005982, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.07, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 5.34, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.07 + }, + "mode": "bus", + "name": "École St-Lambert Inter.", + "color": "#A32638", + "nodes": [ + "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", + "6beffd5a-a5e7-4808-863a-90505f6172be", + "8746746f-daed-4d54-a90f-724d51454ae1", + "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "1e4facbf-29da-4515-97c4-4ef86c22290e", + "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", + "06d26eca-08e9-467e-9ff0-9595778162a0", + "523fb848-4048-4ab2-8e1c-32aab05ea63f", + "c2c8c1e8-4373-4b59-91c6-b04f7c4c1d76", + "eba98b16-12e9-4172-bbf2-62d1e69950a5", + "e709ab81-b01c-47b3-a19c-63757b8320b0", + "98c75cb8-58bc-4128-adc4-4f1198e685a1", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "f4167a64-c457-459d-9c74-9540f2c76889", + "75f82802-187b-4386-b435-5da7ab066898", + "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", + "bad427d3-2698-4efd-8d52-2bc92f049d64", + "242c7269-ce0d-45c7-8356-927308e89900", + "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", + "40cc5489-ce8f-4df1-916b-c682450d39d7", + "e9c79425-c47b-44ec-82ff-b480b97ceae7", + "e31a1f56-4ede-4f4f-a7a7-2fdbee444a41", + "88e6eee9-3b8c-474d-aeb4-599447d404be", + "ee7545d3-966c-460d-94a1-5e0d16623919", + "e88f5f2a-b0b5-4bb5-afb4-833f49fbaeea", + "315b8823-6c3a-493b-9af5-7325cbc48096", + "d76fa63a-1787-4749-9166-b1ecce1f4af2", + "5d573c90-ed41-4ac1-9f58-abc862e00f93", + "a331dc32-b29f-4455-9199-5b289acc7d53", + "a73a9d8f-0a4d-4f45-8ed5-05aa8ce7acde", + "0f0a758f-b2db-4611-9b64-d413bfce8846", + "3f77d417-9b8e-4514-8337-8fa9008d2cc7" + ], + "stops": [], + "line_id": "f3b41a7d-b664-4a6f-af72-56132e21bae0", + "segments": [ + 0, + 2, + 3, + 9, + 13, + 15, + 18, + 29, + 33, + 35, + 37, + 39, + 41, + 43, + 46, + 53, + 56, + 60, + 63, + 66, + 69, + 75, + 81, + 84, + 89, + 93, + 97, + 101, + 107, + 128, + 133, + 141 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 315, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.50436, + 45.508565 + ], + [ + -73.505595, + 45.509024 + ], + [ + -73.505098, + 45.509672 + ], + [ + -73.504847, + 45.510018 + ], + [ + -73.504789, + 45.510097 + ], + [ + -73.504625, + 45.51032 + ], + [ + -73.504367, + 45.510653 + ], + [ + -73.504141, + 45.510959 + ], + [ + -73.503715, + 45.511503 + ], + [ + -73.503649, + 45.511597 + ], + [ + -73.50359, + 45.511574 + ], + [ + -73.503468, + 45.511526 + ], + [ + -73.503351, + 45.511477 + ], + [ + -73.503113, + 45.511377 + ], + [ + -73.50299, + 45.511323 + ], + [ + -73.502532, + 45.511175 + ], + [ + -73.501949, + 45.510981 + ], + [ + -73.501574, + 45.510855 + ], + [ + -73.501152, + 45.51072 + ], + [ + -73.500932, + 45.510649 + ], + [ + -73.500724, + 45.510581 + ], + [ + -73.50032, + 45.51045 + ], + [ + -73.49986, + 45.510306 + ], + [ + -73.498839, + 45.509996 + ], + [ + -73.498525, + 45.509874 + ], + [ + -73.498287, + 45.509766 + ], + [ + -73.498266, + 45.509752 + ], + [ + -73.498161, + 45.50968 + ], + [ + -73.498065, + 45.509586 + ], + [ + -73.497769, + 45.509294 + ], + [ + -73.496956, + 45.508276 + ], + [ + -73.496824, + 45.508111 + ], + [ + -73.496446, + 45.508449 + ], + [ + -73.496376, + 45.508511 + ], + [ + -73.496204, + 45.508655 + ], + [ + -73.495814, + 45.508956 + ], + [ + -73.495498, + 45.509177 + ], + [ + -73.495154, + 45.509415 + ], + [ + -73.494824, + 45.509636 + ], + [ + -73.494493, + 45.509856 + ], + [ + -73.49438, + 45.509924 + ], + [ + -73.494238, + 45.510104 + ], + [ + -73.494126, + 45.510288 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.494003, + 45.510501 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.493538, + 45.511179 + ], + [ + -73.493369, + 45.51144 + ], + [ + -73.493081, + 45.511867 + ], + [ + -73.492639, + 45.51252 + ], + [ + -73.49237, + 45.512938 + ], + [ + -73.492199, + 45.513195 + ], + [ + -73.491788, + 45.513815 + ], + [ + -73.491732, + 45.513901 + ], + [ + -73.491255, + 45.514612 + ], + [ + -73.490909, + 45.515164 + ], + [ + -73.490838, + 45.515278 + ], + [ + -73.490427, + 45.515876 + ], + [ + -73.49002, + 45.51647 + ], + [ + -73.489682, + 45.516995 + ], + [ + -73.489606, + 45.517113 + ], + [ + -73.489152, + 45.517788 + ], + [ + -73.488968, + 45.518103 + ], + [ + -73.488671, + 45.518538 + ], + [ + -73.488593, + 45.518652 + ], + [ + -73.488237, + 45.519187 + ], + [ + -73.487872, + 45.519763 + ], + [ + -73.487595, + 45.52018 + ], + [ + -73.487508, + 45.520312 + ], + [ + -73.487078, + 45.520163 + ], + [ + -73.486949, + 45.520118 + ], + [ + -73.484992, + 45.519439 + ], + [ + -73.484886, + 45.519403 + ], + [ + -73.484224, + 45.519171 + ], + [ + -73.484182, + 45.519156 + ], + [ + -73.482651, + 45.51862 + ], + [ + -73.48228, + 45.51849 + ], + [ + -73.482077, + 45.518419 + ], + [ + -73.481931, + 45.518367 + ], + [ + -73.481238, + 45.518128 + ], + [ + -73.480625, + 45.517916 + ], + [ + -73.479419, + 45.517499 + ], + [ + -73.478857, + 45.517304 + ], + [ + -73.478676, + 45.517242 + ], + [ + -73.478434, + 45.517572 + ], + [ + -73.478269, + 45.517795 + ], + [ + -73.47767, + 45.518621 + ], + [ + -73.477613, + 45.5187 + ], + [ + -73.477254, + 45.51923 + ], + [ + -73.4769, + 45.519708 + ], + [ + -73.47683, + 45.519802 + ], + [ + -73.476473, + 45.520306 + ], + [ + -73.476155, + 45.520743 + ], + [ + -73.476081, + 45.520845 + ], + [ + -73.475434, + 45.521732 + ], + [ + -73.475294, + 45.521907 + ], + [ + -73.474993, + 45.522346 + ], + [ + -73.474964, + 45.522388 + ], + [ + -73.474526, + 45.522973 + ], + [ + -73.474023, + 45.523693 + ], + [ + -73.473883, + 45.523886 + ], + [ + -73.473762, + 45.524053 + ], + [ + -73.473573, + 45.524314 + ], + [ + -73.473363, + 45.524597 + ], + [ + -73.4729, + 45.52524 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.473054, + 45.525801 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.474459, + 45.526384 + ], + [ + -73.474658, + 45.526466 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.473643, + 45.528509 + ], + [ + -73.4736, + 45.528588 + ], + [ + -73.472501, + 45.530647 + ], + [ + -73.47246, + 45.530725 + ], + [ + -73.47136, + 45.532766 + ], + [ + -73.471309, + 45.532862 + ], + [ + -73.470213, + 45.534894 + ], + [ + -73.470158, + 45.534994 + ], + [ + -73.469172, + 45.536818 + ], + [ + -73.469167, + 45.536827 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.46869, + 45.536831 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466191, + 45.535482 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.46413, + 45.533601 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.462106, + 45.531887 + ], + [ + -73.462411, + 45.531442 + ], + [ + -73.462842, + 45.53064 + ], + [ + -73.462938, + 45.530461 + ], + [ + -73.463971, + 45.528556 + ], + [ + -73.465095, + 45.526481 + ] + ] + }, + "id": 316, + "properties": { + "id": "3c577de8-4c48-4073-921d-86284da1d0d9", + "data": { + "gtfs": { + "shape_id": "572_2_R" + }, + "segments": [ + { + "distanceMeters": 244, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 777, + "travelTimeSeconds": 133 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 18, + "travelTimeSeconds": 3 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 431, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 43 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7387, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3639.135960800599, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.86, + "travelTimeWithoutDwellTimesSeconds": 1260, + "operatingTimeWithLayoverTimeSeconds": 1440, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1260, + "operatingSpeedWithLayoverMetersPerSecond": 5.13, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.86 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "3f77d417-9b8e-4514-8337-8fa9008d2cc7", + "3035cba8-14ef-4eb7-b986-fc36588b4fe9", + "0f0a758f-b2db-4611-9b64-d413bfce8846", + "a73a9d8f-0a4d-4f45-8ed5-05aa8ce7acde", + "a331dc32-b29f-4455-9199-5b289acc7d53", + "f31baed5-09fe-46fd-9f4a-0a7da7aeef56", + "5e6dbb10-5962-4ed1-802d-bc3c0e5d2742", + "315b8823-6c3a-493b-9af5-7325cbc48096", + "e88f5f2a-b0b5-4bb5-afb4-833f49fbaeea", + "ee7545d3-966c-460d-94a1-5e0d16623919", + "88e6eee9-3b8c-474d-aeb4-599447d404be", + "e31a1f56-4ede-4f4f-a7a7-2fdbee444a41", + "e9c79425-c47b-44ec-82ff-b480b97ceae7", + "40cc5489-ce8f-4df1-916b-c682450d39d7", + "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", + "242c7269-ce0d-45c7-8356-927308e89900", + "bad427d3-2698-4efd-8d52-2bc92f049d64", + "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", + "75f82802-187b-4386-b435-5da7ab066898", + "471a40a2-ebb0-4658-a772-8036d064636d", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "e709ab81-b01c-47b3-a19c-63757b8320b0", + "eba98b16-12e9-4172-bbf2-62d1e69950a5", + "c2c8c1e8-4373-4b59-91c6-b04f7c4c1d76", + "523fb848-4048-4ab2-8e1c-32aab05ea63f", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "3b70b024-5c5b-4081-8c70-3fc026422289", + "1e4facbf-29da-4515-97c4-4ef86c22290e", + "8746746f-daed-4d54-a90f-724d51454ae1", + "47143cf4-4cce-4e8f-bfed-223c71fcc466", + "a64e19cc-ca7c-47f1-9793-ecfc50e76be9" + ], + "stops": [], + "line_id": "f3b41a7d-b664-4a6f-af72-56132e21bae0", + "segments": [ + 0, + 4, + 12, + 19, + 26, + 30, + 52, + 55, + 59, + 63, + 67, + 71, + 77, + 82, + 86, + 89, + 92, + 96, + 100, + 104, + 109, + 110, + 112, + 114, + 116, + 118, + 120, + 135, + 141, + 150, + 152 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 316, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.443507, + 45.513358 + ], + [ + -73.443129, + 45.513199 + ], + [ + -73.440479, + 45.512077 + ], + [ + -73.440445, + 45.512062 + ], + [ + -73.440007, + 45.511874 + ], + [ + -73.439905, + 45.511834 + ], + [ + -73.439831, + 45.511802 + ], + [ + -73.439738, + 45.511879 + ], + [ + -73.439633, + 45.511969 + ], + [ + -73.439493, + 45.512133 + ], + [ + -73.439292, + 45.512369 + ], + [ + -73.439125, + 45.512567 + ], + [ + -73.43894, + 45.512783 + ], + [ + -73.43879, + 45.512958 + ], + [ + -73.438197, + 45.51365 + ], + [ + -73.437958, + 45.513929 + ], + [ + -73.437794, + 45.51415 + ], + [ + -73.437544, + 45.5145 + ], + [ + -73.437328, + 45.514887 + ], + [ + -73.437139, + 45.515265 + ], + [ + -73.437121, + 45.5153 + ], + [ + -73.436728, + 45.516082 + ], + [ + -73.43672, + 45.516097 + ], + [ + -73.436655, + 45.516223 + ], + [ + -73.436309, + 45.516965 + ], + [ + -73.435853, + 45.517895 + ], + [ + -73.435632, + 45.518345 + ], + [ + -73.435603, + 45.518405 + ], + [ + -73.435539, + 45.518504 + ], + [ + -73.435371, + 45.518796 + ], + [ + -73.435201, + 45.519129 + ], + [ + -73.435196, + 45.519145 + ], + [ + -73.43516, + 45.519282 + ], + [ + -73.435146, + 45.519309 + ], + [ + -73.435066, + 45.51947 + ], + [ + -73.435022, + 45.51956 + ], + [ + -73.43465, + 45.520316 + ], + [ + -73.434436, + 45.520748 + ], + [ + -73.434256, + 45.521108 + ], + [ + -73.434209, + 45.521203 + ], + [ + -73.434057, + 45.521508 + ], + [ + -73.43365, + 45.522336 + ], + [ + -73.433608, + 45.522421 + ], + [ + -73.433569, + 45.522502 + ], + [ + -73.433656, + 45.522523 + ], + [ + -73.433693, + 45.522535 + ], + [ + -73.433807, + 45.522565 + ], + [ + -73.433875, + 45.522583 + ], + [ + -73.434331, + 45.52271 + ], + [ + -73.437851, + 45.523688 + ], + [ + -73.438325, + 45.523813 + ], + [ + -73.439251, + 45.524058 + ], + [ + -73.439451, + 45.524111 + ], + [ + -73.440412, + 45.524373 + ], + [ + -73.44186, + 45.52477 + ], + [ + -73.442223, + 45.524869 + ], + [ + -73.442597, + 45.524971 + ], + [ + -73.442704, + 45.525 + ], + [ + -73.442852, + 45.525036 + ], + [ + -73.442951, + 45.524869 + ], + [ + -73.443141, + 45.5245 + ], + [ + -73.443474, + 45.523856 + ], + [ + -73.443491, + 45.523821 + ], + [ + -73.444099, + 45.522593 + ], + [ + -73.444165, + 45.522458 + ], + [ + -73.444264, + 45.522301 + ], + [ + -73.444322, + 45.522225 + ], + [ + -73.445616, + 45.519728 + ], + [ + -73.445708, + 45.519575 + ], + [ + -73.445857, + 45.519382 + ], + [ + -73.446083, + 45.519122 + ], + [ + -73.446092, + 45.519112 + ], + [ + -73.446119, + 45.519088 + ], + [ + -73.446373, + 45.518869 + ], + [ + -73.446684, + 45.518635 + ], + [ + -73.446958, + 45.518469 + ], + [ + -73.447199, + 45.518348 + ], + [ + -73.447381, + 45.518267 + ], + [ + -73.447403, + 45.518257 + ], + [ + -73.447546, + 45.518195 + ], + [ + -73.448019, + 45.518033 + ], + [ + -73.448706, + 45.517817 + ], + [ + -73.449343, + 45.51762 + ], + [ + -73.449734, + 45.517489 + ], + [ + -73.449921, + 45.517427 + ], + [ + -73.450143, + 45.517364 + ], + [ + -73.450409, + 45.517292 + ], + [ + -73.45071, + 45.517229 + ], + [ + -73.450716, + 45.517224 + ], + [ + -73.451295, + 45.517148 + ], + [ + -73.451523, + 45.517121 + ], + [ + -73.451671, + 45.517101 + ], + [ + -73.451894, + 45.517072 + ], + [ + -73.452053, + 45.517054 + ], + [ + -73.452271, + 45.517027 + ], + [ + -73.452492, + 45.516987 + ], + [ + -73.452711, + 45.516919 + ], + [ + -73.452774, + 45.516901 + ], + [ + -73.453001, + 45.516816 + ], + [ + -73.453293, + 45.516654 + ], + [ + -73.45345, + 45.516542 + ], + [ + -73.453593, + 45.516416 + ], + [ + -73.453706, + 45.516276 + ], + [ + -73.453805, + 45.516137 + ], + [ + -73.453922, + 45.515977 + ], + [ + -73.454013, + 45.515854 + ], + [ + -73.455199, + 45.514135 + ], + [ + -73.455279, + 45.514018 + ], + [ + -73.456161, + 45.512754 + ], + [ + -73.456502, + 45.512271 + ], + [ + -73.456608, + 45.51212 + ], + [ + -73.456698, + 45.51199 + ], + [ + -73.456753, + 45.511846 + ], + [ + -73.456808, + 45.511652 + ], + [ + -73.456888, + 45.511378 + ], + [ + -73.45704, + 45.510771 + ], + [ + -73.457089, + 45.510627 + ], + [ + -73.457162, + 45.510496 + ], + [ + -73.457236, + 45.510384 + ], + [ + -73.457391, + 45.510154 + ], + [ + -73.457732, + 45.509684 + ], + [ + -73.457832, + 45.509547 + ], + [ + -73.458054, + 45.509219 + ], + [ + -73.458146, + 45.509057 + ], + [ + -73.458208, + 45.508913 + ], + [ + -73.458247, + 45.508832 + ], + [ + -73.458287, + 45.508665 + ], + [ + -73.458312, + 45.508463 + ], + [ + -73.458313, + 45.508315 + ], + [ + -73.458163, + 45.508323 + ], + [ + -73.457728, + 45.508353 + ], + [ + -73.457712, + 45.508354 + ], + [ + -73.456906, + 45.508408 + ], + [ + -73.456057, + 45.50847 + ], + [ + -73.45574, + 45.508494 + ], + [ + -73.454618, + 45.50857 + ], + [ + -73.453914, + 45.508619 + ], + [ + -73.453476, + 45.50865 + ], + [ + -73.452659, + 45.508713 + ], + [ + -73.452308, + 45.50874 + ], + [ + -73.451594, + 45.508784 + ], + [ + -73.451512, + 45.508816 + ], + [ + -73.451476, + 45.508843 + ], + [ + -73.451466, + 45.508892 + ], + [ + -73.451538, + 45.509394 + ], + [ + -73.451543, + 45.509425 + ], + [ + -73.451588, + 45.509738 + ], + [ + -73.451656, + 45.510171 + ], + [ + -73.451682, + 45.510341 + ], + [ + -73.451973, + 45.510422 + ], + [ + -73.452277, + 45.510526 + ], + [ + -73.453219, + 45.510876 + ], + [ + -73.453343, + 45.510922 + ], + [ + -73.454142, + 45.511217 + ], + [ + -73.455144, + 45.511587 + ], + [ + -73.455589, + 45.511751 + ], + [ + -73.456375, + 45.512037 + ], + [ + -73.456479, + 45.512075 + ], + [ + -73.456608, + 45.51212 + ], + [ + -73.457632, + 45.512503 + ], + [ + -73.458519, + 45.512827 + ], + [ + -73.459543, + 45.51322 + ], + [ + -73.45968, + 45.513273 + ], + [ + -73.460138, + 45.51344 + ], + [ + -73.460415, + 45.513065 + ], + [ + -73.460623, + 45.512783 + ], + [ + -73.461002, + 45.512271 + ], + [ + -73.461069, + 45.51218 + ], + [ + -73.461539, + 45.511564 + ], + [ + -73.46197, + 45.510961 + ], + [ + -73.462383, + 45.510395 + ], + [ + -73.462553, + 45.510233 + ], + [ + -73.462779, + 45.510066 + ], + [ + -73.463045, + 45.509936 + ], + [ + -73.463109, + 45.50991 + ], + [ + -73.463381, + 45.509801 + ], + [ + -73.463431, + 45.509882 + ], + [ + -73.463519, + 45.509999 + ], + [ + -73.463631, + 45.510107 + ], + [ + -73.463794, + 45.510215 + ], + [ + -73.464529, + 45.510665 + ], + [ + -73.464922, + 45.510916 + ], + [ + -73.464958, + 45.51094 + ], + [ + -73.465268, + 45.511138 + ], + [ + -73.464982, + 45.511318 + ], + [ + -73.464762, + 45.511493 + ], + [ + -73.464626, + 45.511606 + ], + [ + -73.464478, + 45.511745 + ], + [ + -73.464282, + 45.512001 + ], + [ + -73.463932, + 45.512501 + ], + [ + -73.463554, + 45.513006 + ], + [ + -73.463478, + 45.513108 + ], + [ + -73.463065, + 45.513684 + ], + [ + -73.462745, + 45.514128 + ], + [ + -73.462726, + 45.514155 + ], + [ + -73.462602, + 45.514327 + ], + [ + -73.462797, + 45.5144 + ], + [ + -73.464082, + 45.514885 + ], + [ + -73.465777, + 45.515524 + ], + [ + -73.465949, + 45.515589 + ], + [ + -73.466056, + 45.515628 + ], + [ + -73.466138, + 45.51566 + ], + [ + -73.466232, + 45.515695 + ], + [ + -73.466469, + 45.51538 + ], + [ + -73.466795, + 45.514943 + ], + [ + -73.467739, + 45.513666 + ], + [ + -73.467821, + 45.513555 + ], + [ + -73.468294, + 45.512911 + ], + [ + -73.468714, + 45.51234 + ], + [ + -73.468744, + 45.5123 + ], + [ + -73.469443, + 45.511193 + ], + [ + -73.469555, + 45.511034 + ], + [ + -73.469846, + 45.510622 + ], + [ + -73.470521, + 45.509701 + ], + [ + -73.471066, + 45.508957 + ], + [ + -73.471144, + 45.508849 + ], + [ + -73.471405, + 45.508937 + ], + [ + -73.471475, + 45.50896 + ], + [ + -73.472138, + 45.509183 + ], + [ + -73.475269, + 45.510209 + ], + [ + -73.475433, + 45.510263 + ], + [ + -73.478314, + 45.511203 + ], + [ + -73.478511, + 45.511267 + ], + [ + -73.481465, + 45.512229 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.481829, + 45.511876 + ], + [ + -73.482007, + 45.511596 + ], + [ + -73.482482, + 45.510894 + ], + [ + -73.482851, + 45.510332 + ], + [ + -73.482934, + 45.510206 + ], + [ + -73.483589, + 45.510414 + ], + [ + -73.486057, + 45.511196 + ], + [ + -73.488986, + 45.512155 + ], + [ + -73.489123, + 45.5122 + ], + [ + -73.49207, + 45.513153 + ], + [ + -73.492199, + 45.513195 + ], + [ + -73.492293, + 45.513053 + ], + [ + -73.49237, + 45.512938 + ], + [ + -73.492639, + 45.51252 + ], + [ + -73.493081, + 45.511867 + ], + [ + -73.493369, + 45.51144 + ], + [ + -73.493493, + 45.511249 + ], + [ + -73.493538, + 45.511179 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494003, + 45.510501 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.494126, + 45.510288 + ], + [ + -73.494238, + 45.510104 + ], + [ + -73.49438, + 45.509924 + ], + [ + -73.494493, + 45.509856 + ], + [ + -73.494824, + 45.509636 + ], + [ + -73.495154, + 45.509415 + ], + [ + -73.495498, + 45.509177 + ], + [ + -73.495814, + 45.508956 + ], + [ + -73.496204, + 45.508655 + ], + [ + -73.496376, + 45.508511 + ], + [ + -73.496824, + 45.508111 + ], + [ + -73.497076, + 45.508427 + ], + [ + -73.497769, + 45.509294 + ], + [ + -73.498065, + 45.509586 + ], + [ + -73.498161, + 45.50968 + ], + [ + -73.498287, + 45.509766 + ], + [ + -73.498388, + 45.509812 + ], + [ + -73.498525, + 45.509874 + ], + [ + -73.498839, + 45.509996 + ], + [ + -73.49986, + 45.510306 + ], + [ + -73.50032, + 45.51045 + ], + [ + -73.500636, + 45.510552 + ], + [ + -73.500724, + 45.510581 + ], + [ + -73.501152, + 45.51072 + ], + [ + -73.501574, + 45.510855 + ], + [ + -73.501949, + 45.510981 + ], + [ + -73.502532, + 45.511175 + ], + [ + -73.50299, + 45.511323 + ], + [ + -73.503113, + 45.511377 + ], + [ + -73.503366, + 45.511483 + ], + [ + -73.503468, + 45.511526 + ], + [ + -73.50359, + 45.511574 + ], + [ + -73.503649, + 45.511597 + ], + [ + -73.503715, + 45.511503 + ], + [ + -73.503862, + 45.511315 + ], + [ + -73.504141, + 45.510959 + ], + [ + -73.504367, + 45.510653 + ], + [ + -73.504625, + 45.51032 + ], + [ + -73.504847, + 45.510018 + ], + [ + -73.505098, + 45.509672 + ], + [ + -73.505595, + 45.509024 + ], + [ + -73.505856, + 45.508673 + ], + [ + -73.506088, + 45.508371 + ], + [ + -73.503983, + 45.507589 + ], + [ + -73.503127, + 45.507268 + ], + [ + -73.50278, + 45.507139 + ], + [ + -73.502418, + 45.507008 + ], + [ + -73.502098, + 45.506896 + ], + [ + -73.502109, + 45.507332 + ], + [ + -73.502155, + 45.507742 + ], + [ + -73.503376, + 45.508201 + ], + [ + -73.50436, + 45.508565 + ] + ] + }, + "id": 317, + "properties": { + "id": "a503dedb-b401-4f90-9953-88075ea4a95a", + "data": { + "gtfs": { + "shape_id": "575_1_A" + }, + "segments": [ + { + "distanceMeters": 279, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 461, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 412, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 85, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 417, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 87, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 80, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 455, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 535, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 668, + "travelTimeSeconds": 100 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 1072, + "travelTimeSeconds": 161 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 192, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12847, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4763.89023034518, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.69, + "travelTimeWithoutDwellTimesSeconds": 1920, + "operatingTimeWithLayoverTimeSeconds": 2112, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1920, + "operatingSpeedWithLayoverMetersPerSecond": 6.08, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.69 + }, + "mode": "bus", + "name": "École St-Lambert Inter.", + "color": "#A32638", + "nodes": [ + "dcaa1460-3c81-4616-b65b-ed7fae894032", + "a3922a48-9f26-4845-9881-2b33d59d0127", + "fd832741-dd18-4c66-bea3-40a37c4cdb9c", + "64e79ef5-e499-4b0b-96e8-a047e210960b", + "9a101899-eb7e-4980-897e-cfb842bca005", + "3d1e4353-a4d7-45de-bd72-c906526806e2", + "f8e89dfa-b651-418d-b1ab-5c9f2ffb0cf1", + "455644f9-4a24-446b-b548-a53bc406a4d8", + "3d39c5de-3cd5-4fd7-925f-37e3d32bd66c", + "5b35096e-2561-4a9f-8bf4-a3e7609358bf", + "02782fd4-ecd8-4615-9b7e-14ae16ac51bd", + "59ce5dad-a6de-46b9-a19c-e11dc5bfb727", + "aa6137b4-b674-460f-91f8-a129c1cf46bc", + "96eb89e4-98b8-49ac-b938-d7bcff69fc98", + "9d7bed04-91bf-4977-b8f5-ead58bfa3d28", + "0039f884-0610-402a-b23b-498abb207283", + "5f1eb6f1-dc45-44fc-bc07-9e965049da7f", + "4ecd13b4-71e4-4328-bc7f-b30325894d82", + "065b0112-1102-48ec-b10a-c88cde002f4f", + "77540404-5599-4bb2-b15d-add1fcb9fe20", + "1fdfd4f4-c553-4a7d-8963-4eb750e13bff", + "98d2ace5-e4e8-4113-91e3-89c01d89a89f", + "3dcc9db5-75c0-46a8-8247-d3d2e0220e07", + "e10756d4-095f-4fec-94fb-19ac7075bc43", + "e7cd0200-d7e2-4808-b4af-d251dcc23019", + "b79429dc-e0f7-44a7-b564-ff6f9831d545", + "065b0112-1102-48ec-b10a-c88cde002f4f", + "d8f16090-e69f-45d8-b535-45f45ab1b739", + "7183eaac-7645-401f-919b-91209487af61", + "3d29747a-7b75-4b0e-ad8a-50eec4e70061", + "5b565a57-bd7f-42f0-a279-0af0bf5f2a4d", + "0751a485-9efa-4491-b69f-eed5163417d8", + "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", + "5ca73944-03b3-4fca-ab1f-781dd6f959a4", + "ad783725-7edb-4c18-8b1a-a064301b213d", + "f9f88325-b670-4d47-91fa-edb372992bbc", + "e1a9e623-935b-47b9-a038-bcbd5a33f95e", + "ba348c95-9f07-48ca-a139-5d5c2dd83350", + "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", + "6c122298-4ea6-41ee-91e8-bb29cb41a320", + "e1825eb4-cef2-4f98-872f-0d169be63859", + "5ab29327-5bbe-43e2-9d7f-42e3ca97dbcb", + "229965c6-9bf9-414c-9970-4f7b1b31441b", + "d76fa63a-1787-4749-9166-b1ecce1f4af2", + "5d573c90-ed41-4ac1-9f58-abc862e00f93", + "a331dc32-b29f-4455-9199-5b289acc7d53", + "a73a9d8f-0a4d-4f45-8ed5-05aa8ce7acde", + "0f0a758f-b2db-4611-9b64-d413bfce8846", + "3f77d417-9b8e-4514-8337-8fa9008d2cc7" + ], + "stops": [], + "line_id": "46b1d45d-6a18-4a46-8244-c11e62fcf4b5", + "segments": [ + 0, + 3, + 10, + 21, + 25, + 34, + 38, + 48, + 51, + 56, + 60, + 63, + 70, + 78, + 83, + 91, + 104, + 106, + 109, + 120, + 130, + 133, + 136, + 144, + 147, + 151, + 156, + 161, + 166, + 174, + 181, + 190, + 193, + 198, + 203, + 205, + 208, + 216, + 219, + 221, + 223, + 228, + 232, + 234, + 241, + 262, + 267, + 275 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 317, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.50436, + 45.508565 + ], + [ + -73.505595, + 45.509024 + ], + [ + -73.505098, + 45.509672 + ], + [ + -73.504847, + 45.510018 + ], + [ + -73.50479, + 45.510096 + ], + [ + -73.504625, + 45.51032 + ], + [ + -73.504367, + 45.510653 + ], + [ + -73.504141, + 45.510959 + ], + [ + -73.503715, + 45.511503 + ], + [ + -73.503649, + 45.511597 + ], + [ + -73.50359, + 45.511574 + ], + [ + -73.503468, + 45.511526 + ], + [ + -73.503353, + 45.511478 + ], + [ + -73.503113, + 45.511377 + ], + [ + -73.50299, + 45.511323 + ], + [ + -73.502532, + 45.511175 + ], + [ + -73.501949, + 45.510981 + ], + [ + -73.501574, + 45.510855 + ], + [ + -73.501152, + 45.51072 + ], + [ + -73.500936, + 45.51065 + ], + [ + -73.500724, + 45.510581 + ], + [ + -73.50032, + 45.51045 + ], + [ + -73.49986, + 45.510306 + ], + [ + -73.498839, + 45.509996 + ], + [ + -73.498525, + 45.509874 + ], + [ + -73.498287, + 45.509766 + ], + [ + -73.49827, + 45.509755 + ], + [ + -73.498161, + 45.50968 + ], + [ + -73.498065, + 45.509586 + ], + [ + -73.497769, + 45.509294 + ], + [ + -73.496959, + 45.50828 + ], + [ + -73.496824, + 45.508111 + ], + [ + -73.496457, + 45.508439 + ], + [ + -73.496376, + 45.508511 + ], + [ + -73.496204, + 45.508655 + ], + [ + -73.495814, + 45.508956 + ], + [ + -73.495498, + 45.509177 + ], + [ + -73.495154, + 45.509415 + ], + [ + -73.494824, + 45.509636 + ], + [ + -73.494493, + 45.509856 + ], + [ + -73.49438, + 45.509924 + ], + [ + -73.494238, + 45.510104 + ], + [ + -73.494126, + 45.510288 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.494003, + 45.510501 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.493538, + 45.511179 + ], + [ + -73.493369, + 45.51144 + ], + [ + -73.493081, + 45.511867 + ], + [ + -73.492639, + 45.51252 + ], + [ + -73.49237, + 45.512938 + ], + [ + -73.492199, + 45.513195 + ], + [ + -73.491556, + 45.512987 + ], + [ + -73.489821, + 45.512426 + ], + [ + -73.489251, + 45.512241 + ], + [ + -73.489123, + 45.5122 + ], + [ + -73.486289, + 45.511272 + ], + [ + -73.486057, + 45.511196 + ], + [ + -73.482934, + 45.510206 + ], + [ + -73.482712, + 45.510545 + ], + [ + -73.482482, + 45.510894 + ], + [ + -73.482007, + 45.511596 + ], + [ + -73.481663, + 45.512136 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.480818, + 45.512018 + ], + [ + -73.47866, + 45.511316 + ], + [ + -73.478511, + 45.511267 + ], + [ + -73.475557, + 45.510304 + ], + [ + -73.475433, + 45.510263 + ], + [ + -73.472387, + 45.509264 + ], + [ + -73.472138, + 45.509183 + ], + [ + -73.471144, + 45.508849 + ], + [ + -73.470997, + 45.508809 + ], + [ + -73.470932, + 45.508894 + ], + [ + -73.470785, + 45.509092 + ], + [ + -73.470366, + 45.509655 + ], + [ + -73.470032, + 45.510114 + ], + [ + -73.46959, + 45.510721 + ], + [ + -73.469434, + 45.510905 + ], + [ + -73.469378, + 45.510967 + ], + [ + -73.469091, + 45.511282 + ], + [ + -73.468985, + 45.5114 + ], + [ + -73.468436, + 45.512149 + ], + [ + -73.468415, + 45.512178 + ], + [ + -73.466504, + 45.514837 + ], + [ + -73.466445, + 45.514919 + ], + [ + -73.466176, + 45.515324 + ], + [ + -73.466151, + 45.515363 + ], + [ + -73.465949, + 45.515589 + ], + [ + -73.465442, + 45.515398 + ], + [ + -73.464082, + 45.514885 + ], + [ + -73.463075, + 45.514505 + ], + [ + -73.462602, + 45.514327 + ], + [ + -73.462726, + 45.514155 + ], + [ + -73.463065, + 45.513684 + ], + [ + -73.463478, + 45.513108 + ], + [ + -73.46386, + 45.512598 + ], + [ + -73.463932, + 45.512501 + ], + [ + -73.464282, + 45.512001 + ], + [ + -73.464478, + 45.511745 + ], + [ + -73.464626, + 45.511606 + ], + [ + -73.464762, + 45.511493 + ], + [ + -73.464982, + 45.511318 + ], + [ + -73.464999, + 45.511307 + ], + [ + -73.465268, + 45.511138 + ], + [ + -73.464943, + 45.51093 + ], + [ + -73.464529, + 45.510665 + ], + [ + -73.463794, + 45.510215 + ], + [ + -73.463631, + 45.510107 + ], + [ + -73.463519, + 45.509999 + ], + [ + -73.463481, + 45.509949 + ], + [ + -73.463431, + 45.509882 + ], + [ + -73.463381, + 45.509801 + ], + [ + -73.463045, + 45.509936 + ], + [ + -73.462779, + 45.510066 + ], + [ + -73.462553, + 45.510233 + ], + [ + -73.462383, + 45.510395 + ], + [ + -73.462008, + 45.510909 + ], + [ + -73.46197, + 45.510961 + ], + [ + -73.461539, + 45.511564 + ], + [ + -73.461156, + 45.512067 + ], + [ + -73.461069, + 45.51218 + ], + [ + -73.460623, + 45.512783 + ], + [ + -73.460198, + 45.513358 + ], + [ + -73.460138, + 45.51344 + ], + [ + -73.45978, + 45.513309 + ], + [ + -73.45968, + 45.513273 + ], + [ + -73.458662, + 45.512882 + ], + [ + -73.458519, + 45.512827 + ], + [ + -73.457632, + 45.512503 + ], + [ + -73.456759, + 45.512177 + ], + [ + -73.456608, + 45.51212 + ], + [ + -73.456479, + 45.512075 + ], + [ + -73.455589, + 45.511751 + ], + [ + -73.455144, + 45.511587 + ], + [ + -73.454142, + 45.511217 + ], + [ + -73.453545, + 45.510997 + ], + [ + -73.453343, + 45.510922 + ], + [ + -73.452277, + 45.510526 + ], + [ + -73.451973, + 45.510422 + ], + [ + -73.451834, + 45.510383 + ], + [ + -73.451682, + 45.510341 + ], + [ + -73.451588, + 45.509738 + ], + [ + -73.451506, + 45.509168 + ], + [ + -73.451466, + 45.508892 + ], + [ + -73.451476, + 45.508843 + ], + [ + -73.451512, + 45.508816 + ], + [ + -73.451594, + 45.508784 + ], + [ + -73.451981, + 45.50876 + ], + [ + -73.452308, + 45.50874 + ], + [ + -73.452659, + 45.508713 + ], + [ + -73.453267, + 45.508666 + ], + [ + -73.453476, + 45.50865 + ], + [ + -73.454618, + 45.50857 + ], + [ + -73.455614, + 45.508502 + ], + [ + -73.45574, + 45.508494 + ], + [ + -73.456906, + 45.508408 + ], + [ + -73.458038, + 45.508332 + ], + [ + -73.458163, + 45.508323 + ], + [ + -73.458169, + 45.508458 + ], + [ + -73.458145, + 45.508652 + ], + [ + -73.458115, + 45.508773 + ], + [ + -73.458072, + 45.508881 + ], + [ + -73.458012, + 45.509021 + ], + [ + -73.458006, + 45.509031 + ], + [ + -73.457924, + 45.509178 + ], + [ + -73.457757, + 45.509424 + ], + [ + -73.457704, + 45.509502 + ], + [ + -73.457273, + 45.510105 + ], + [ + -73.457109, + 45.510339 + ], + [ + -73.457034, + 45.51046 + ], + [ + -73.456955, + 45.5106 + ], + [ + -73.456904, + 45.510748 + ], + [ + -73.456748, + 45.51131 + ], + [ + -73.456616, + 45.511823 + ], + [ + -73.456565, + 45.511954 + ], + [ + -73.456559, + 45.511963 + ], + [ + -73.456479, + 45.512075 + ], + [ + -73.456035, + 45.512709 + ], + [ + -73.455222, + 45.513885 + ], + [ + -73.455157, + 45.513978 + ], + [ + -73.454374, + 45.515104 + ], + [ + -73.454257, + 45.515272 + ], + [ + -73.453913, + 45.515766 + ], + [ + -73.453884, + 45.515808 + ], + [ + -73.453588, + 45.516236 + ], + [ + -73.453482, + 45.516362 + ], + [ + -73.453331, + 45.516501 + ], + [ + -73.453205, + 45.516587 + ], + [ + -73.452929, + 45.516735 + ], + [ + -73.452717, + 45.516816 + ], + [ + -73.452658, + 45.516834 + ], + [ + -73.452448, + 45.516897 + ], + [ + -73.452136, + 45.516973 + ], + [ + -73.451903, + 45.516982 + ], + [ + -73.451708, + 45.516986 + ], + [ + -73.451404, + 45.517027 + ], + [ + -73.451267, + 45.517045 + ], + [ + -73.450685, + 45.517121 + ], + [ + -73.450674, + 45.517125 + ], + [ + -73.450454, + 45.517157 + ], + [ + -73.450185, + 45.517229 + ], + [ + -73.450028, + 45.517277 + ], + [ + -73.449924, + 45.517309 + ], + [ + -73.449864, + 45.517328 + ], + [ + -73.449279, + 45.517521 + ], + [ + -73.448643, + 45.517714 + ], + [ + -73.447951, + 45.517934 + ], + [ + -73.447537, + 45.518082 + ], + [ + -73.447484, + 45.5181 + ], + [ + -73.4473, + 45.518172 + ], + [ + -73.44711, + 45.518258 + ], + [ + -73.44686, + 45.518383 + ], + [ + -73.446575, + 45.518554 + ], + [ + -73.446255, + 45.518793 + ], + [ + -73.446115, + 45.518914 + ], + [ + -73.445963, + 45.519049 + ], + [ + -73.445783, + 45.519251 + ], + [ + -73.445719, + 45.519328 + ], + [ + -73.445565, + 45.51953 + ], + [ + -73.445469, + 45.519688 + ], + [ + -73.445402, + 45.519816 + ], + [ + -73.445293, + 45.52002 + ], + [ + -73.444786, + 45.521006 + ], + [ + -73.444153, + 45.522222 + ], + [ + -73.444128, + 45.522269 + ], + [ + -73.444047, + 45.522427 + ], + [ + -73.443467, + 45.523605 + ], + [ + -73.443382, + 45.523794 + ], + [ + -73.443362, + 45.52383 + ], + [ + -73.443196, + 45.524138 + ], + [ + -73.442817, + 45.524838 + ], + [ + -73.442397, + 45.524734 + ], + [ + -73.442155, + 45.524675 + ], + [ + -73.442013, + 45.52464 + ], + [ + -73.441281, + 45.524441 + ], + [ + -73.44044, + 45.524202 + ], + [ + -73.43954, + 45.523947 + ], + [ + -73.439366, + 45.5239 + ], + [ + -73.437964, + 45.523516 + ], + [ + -73.433955, + 45.522417 + ], + [ + -73.433885, + 45.522398 + ], + [ + -73.433776, + 45.522369 + ], + [ + -73.434834, + 45.520403 + ], + [ + -73.435201, + 45.519599 + ], + [ + -73.435202, + 45.519597 + ], + [ + -73.435724, + 45.518588 + ], + [ + -73.43574, + 45.518567 + ], + [ + -73.435791, + 45.518454 + ], + [ + -73.435822, + 45.518391 + ], + [ + -73.435888, + 45.518254 + ], + [ + -73.435949, + 45.51813 + ], + [ + -73.4363, + 45.517415 + ], + [ + -73.4365, + 45.51701 + ], + [ + -73.436814, + 45.516368 + ], + [ + -73.436861, + 45.516273 + ], + [ + -73.436872, + 45.51625 + ], + [ + -73.436978, + 45.516111 + ], + [ + -73.437553, + 45.514946 + ], + [ + -73.437763, + 45.514573 + ], + [ + -73.438009, + 45.514226 + ], + [ + -73.438176, + 45.514015 + ], + [ + -73.439339, + 45.512657 + ], + [ + -73.439487, + 45.512474 + ], + [ + -73.43972, + 45.512185 + ], + [ + -73.439851, + 45.512113 + ], + [ + -73.439897, + 45.512099 + ], + [ + -73.439969, + 45.512081 + ], + [ + -73.440024, + 45.512077 + ], + [ + -73.440089, + 45.512077 + ], + [ + -73.440237, + 45.512095 + ], + [ + -73.441448, + 45.512613 + ], + [ + -73.441811, + 45.512775 + ], + [ + -73.442898, + 45.513214 + ] + ] + }, + "id": 318, + "properties": { + "id": "78023bf1-ffe9-40b7-be56-85849c9db0fd", + "data": { + "gtfs": { + "shape_id": "575_2_R" + }, + "segments": [ + { + "distanceMeters": 244, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 757, + "travelTimeSeconds": 117 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 49, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 524, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 542, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 335, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 60, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 82, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 371, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 459, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 496, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 483, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 50 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 186, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12052, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4818.522172080419, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.48, + "travelTimeWithoutDwellTimesSeconds": 1860, + "operatingTimeWithLayoverTimeSeconds": 2046, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1860, + "operatingSpeedWithLayoverMetersPerSecond": 5.89, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.48 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "3f77d417-9b8e-4514-8337-8fa9008d2cc7", + "3035cba8-14ef-4eb7-b986-fc36588b4fe9", + "0f0a758f-b2db-4611-9b64-d413bfce8846", + "a73a9d8f-0a4d-4f45-8ed5-05aa8ce7acde", + "a331dc32-b29f-4455-9199-5b289acc7d53", + "f31baed5-09fe-46fd-9f4a-0a7da7aeef56", + "d76fa63a-1787-4749-9166-b1ecce1f4af2", + "229965c6-9bf9-414c-9970-4f7b1b31441b", + "229965c6-9bf9-414c-9970-4f7b1b31441b", + "6ab67241-b06e-417b-b6fb-88a16df29924", + "e1825eb4-cef2-4f98-872f-0d169be63859", + "6c122298-4ea6-41ee-91e8-bb29cb41a320", + "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", + "777c347b-29df-4aab-9968-5fdfd62ed61a", + "e1a9e623-935b-47b9-a038-bcbd5a33f95e", + "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", + "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", + "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", + "0751a485-9efa-4491-b69f-eed5163417d8", + "5b565a57-bd7f-42f0-a279-0af0bf5f2a4d", + "3d29747a-7b75-4b0e-ad8a-50eec4e70061", + "1f1dcc94-03fa-4333-b695-c1027c760604", + "7183eaac-7645-401f-919b-91209487af61", + "d8f16090-e69f-45d8-b535-45f45ab1b739", + "2f3f3f3e-941f-4165-a7c4-41af6cf1cc84", + "065b0112-1102-48ec-b10a-c88cde002f4f", + "b79429dc-e0f7-44a7-b564-ff6f9831d545", + "e7cd0200-d7e2-4808-b4af-d251dcc23019", + "e10756d4-095f-4fec-94fb-19ac7075bc43", + "3dcc9db5-75c0-46a8-8247-d3d2e0220e07", + "98d2ace5-e4e8-4113-91e3-89c01d89a89f", + "1fdfd4f4-c553-4a7d-8963-4eb750e13bff", + "77540404-5599-4bb2-b15d-add1fcb9fe20", + "065b0112-1102-48ec-b10a-c88cde002f4f", + "4ecd13b4-71e4-4328-bc7f-b30325894d82", + "6716e17d-58d0-427c-a6f7-62e8d8197b2a", + "6716e17d-58d0-427c-a6f7-62e8d8197b2a", + "9d7bed04-91bf-4977-b8f5-ead58bfa3d28", + "96eb89e4-98b8-49ac-b938-d7bcff69fc98", + "71e321c3-bad2-413b-8558-79185b044654", + "59ce5dad-a6de-46b9-a19c-e11dc5bfb727", + "e4177123-f532-4426-8afb-b9c8199723e1", + "f902a061-c5e9-4964-8e41-eba87bfc63fc", + "3d39c5de-3cd5-4fd7-925f-37e3d32bd66c", + "9b519782-0187-4aff-8d16-ed5c874d6b88", + "f1517eba-215d-4b2a-b591-160be878e090", + "64e79ef5-e499-4b0b-96e8-a047e210960b", + "fd832741-dd18-4c66-bea3-40a37c4cdb9c", + "7b1c691c-8a55-45c2-8401-9d619a0efb76" + ], + "stops": [], + "line_id": "46b1d45d-6a18-4a46-8244-c11e62fcf4b5", + "segments": [ + 0, + 4, + 12, + 19, + 26, + 30, + 52, + 53, + 54, + 56, + 62, + 65, + 67, + 69, + 82, + 84, + 86, + 91, + 96, + 103, + 110, + 117, + 120, + 123, + 127, + 130, + 136, + 140, + 143, + 151, + 154, + 157, + 166, + 176, + 179, + 181, + 183, + 202, + 208, + 221, + 224, + 230, + 233, + 238, + 241, + 250, + 254, + 263 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 318, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.503405, + 45.511624 + ], + [ + -73.503435, + 45.511575 + ], + [ + -73.503468, + 45.511526 + ], + [ + -73.50359, + 45.511574 + ], + [ + -73.503649, + 45.511597 + ], + [ + -73.504821, + 45.512052 + ], + [ + -73.504953, + 45.512101 + ], + [ + -73.505513, + 45.512322 + ], + [ + -73.506059, + 45.51253 + ], + [ + -73.506149, + 45.512565 + ], + [ + -73.506238, + 45.512601 + ], + [ + -73.506546, + 45.512721 + ], + [ + -73.508131, + 45.513338 + ], + [ + -73.508566, + 45.513512 + ], + [ + -73.508741, + 45.513581 + ], + [ + -73.509393, + 45.513802 + ], + [ + -73.50981, + 45.513942 + ], + [ + -73.510118, + 45.514045 + ], + [ + -73.511388, + 45.514467 + ], + [ + -73.511507, + 45.514508 + ], + [ + -73.512165, + 45.514728 + ], + [ + -73.512734, + 45.514923 + ], + [ + -73.512796, + 45.514944 + ], + [ + -73.513795, + 45.515285 + ], + [ + -73.51444, + 45.515505 + ], + [ + -73.514563, + 45.515547 + ], + [ + -73.515414, + 45.515844 + ], + [ + -73.516876, + 45.516355 + ], + [ + -73.51692, + 45.51637 + ], + [ + -73.517225, + 45.516484 + ], + [ + -73.517318, + 45.516518 + ], + [ + -73.517741, + 45.516671 + ], + [ + -73.517978, + 45.516757 + ], + [ + -73.518077, + 45.516793 + ], + [ + -73.518456, + 45.516887 + ], + [ + -73.519045, + 45.517037 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.520048, + 45.518702 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520113, + 45.519741 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 319, + "properties": { + "id": "9c603939-aeae-4834-a009-b07951d9c27b", + "data": { + "gtfs": { + "shape_id": "580_2_R" + }, + "segments": [ + { + "distanceMeters": 243, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 92, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 56, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 767, + "travelTimeSeconds": 113 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 2460, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 1968.1924169411752, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.83, + "travelTimeWithoutDwellTimesSeconds": 360, + "operatingTimeWithLayoverTimeSeconds": 540, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 360, + "operatingSpeedWithLayoverMetersPerSecond": 4.56, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.83 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "0f0a758f-b2db-4611-9b64-d413bfce8846", + "2227a38f-9c32-4890-9719-eef7445fa1fc", + "969092dd-fcfd-493a-be55-d0467c757fb1", + "2a197d72-1b4b-4077-a350-4c8656ad7bb1", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "f250cba5-329e-4403-912d-778f924ce25e", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "992e3299-c421-4c46-ab72-217c483d33fd", + "segments": [ + 0, + 8, + 13, + 21, + 23, + 24, + 29, + 35, + 44 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 319, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.502001, + 45.480671 + ], + [ + -73.502676, + 45.481412 + ], + [ + -73.502806, + 45.48156 + ], + [ + -73.503272, + 45.482092 + ], + [ + -73.50345, + 45.482308 + ], + [ + -73.503512, + 45.48238 + ], + [ + -73.503531, + 45.482406 + ], + [ + -73.503598, + 45.482497 + ], + [ + -73.504141, + 45.483117 + ], + [ + -73.504614, + 45.483657 + ], + [ + -73.504846, + 45.483915 + ], + [ + -73.504857, + 45.483927 + ], + [ + -73.504897, + 45.483968 + ], + [ + -73.504924, + 45.483995 + ], + [ + -73.505108, + 45.484152 + ], + [ + -73.505242, + 45.484242 + ], + [ + -73.505364, + 45.484314 + ], + [ + -73.505521, + 45.484395 + ], + [ + -73.505663, + 45.484463 + ], + [ + -73.505851, + 45.484535 + ], + [ + -73.505993, + 45.484584 + ], + [ + -73.506624, + 45.484814 + ], + [ + -73.506746, + 45.484863 + ], + [ + -73.506951, + 45.484962 + ], + [ + -73.507115, + 45.485056 + ], + [ + -73.507185, + 45.485097 + ], + [ + -73.507329, + 45.4852 + ], + [ + -73.507431, + 45.485295 + ], + [ + -73.507518, + 45.485367 + ], + [ + -73.50762, + 45.485484 + ], + [ + -73.507754, + 45.485677 + ], + [ + -73.508077, + 45.486145 + ], + [ + -73.508225, + 45.48637 + ], + [ + -73.508335, + 45.486544 + ], + [ + -73.508385, + 45.486622 + ], + [ + -73.508489, + 45.486784 + ], + [ + -73.508543, + 45.486852 + ], + [ + -73.509573, + 45.488341 + ], + [ + -73.509675, + 45.488489 + ], + [ + -73.509764, + 45.488615 + ], + [ + -73.509971, + 45.488912 + ], + [ + -73.510806, + 45.490108 + ], + [ + -73.510813, + 45.490118 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.512404, + 45.492411 + ], + [ + -73.512404, + 45.492412 + ], + [ + -73.51245, + 45.492507 + ], + [ + -73.512764, + 45.493074 + ], + [ + -73.512921, + 45.493393 + ], + [ + -73.512971, + 45.493496 + ], + [ + -73.512984, + 45.493515 + ], + [ + -73.513008, + 45.493622 + ], + [ + -73.513012, + 45.493663 + ], + [ + -73.513019, + 45.493721 + ], + [ + -73.513009, + 45.493798 + ], + [ + -73.512984, + 45.493864 + ], + [ + -73.512977, + 45.493876 + ], + [ + -73.512954, + 45.493917 + ], + [ + -73.512916, + 45.493951 + ], + [ + -73.512873, + 45.493987 + ], + [ + -73.512839, + 45.494011 + ], + [ + -73.512778, + 45.494036 + ], + [ + -73.512664, + 45.494068 + ], + [ + -73.512506, + 45.494102 + ], + [ + -73.511393, + 45.494185 + ], + [ + -73.51105, + 45.494174 + ], + [ + -73.510846, + 45.494189 + ], + [ + -73.510793, + 45.4942 + ], + [ + -73.510474, + 45.49419 + ], + [ + -73.510047, + 45.494183 + ], + [ + -73.509926, + 45.494181 + ], + [ + -73.50913, + 45.494175 + ], + [ + -73.508099, + 45.494169 + ], + [ + -73.507903, + 45.494167 + ], + [ + -73.506279, + 45.494154 + ], + [ + -73.505484, + 45.494143 + ], + [ + -73.505309, + 45.49414 + ], + [ + -73.504012, + 45.494128 + ], + [ + -73.503889, + 45.494127 + ], + [ + -73.502661, + 45.494132 + ], + [ + -73.501918, + 45.494118 + ], + [ + -73.501485, + 45.494123 + ], + [ + -73.501355, + 45.494132 + ], + [ + -73.50111, + 45.494181 + ], + [ + -73.50099, + 45.494217 + ], + [ + -73.500901, + 45.494253 + ], + [ + -73.500871, + 45.494267 + ], + [ + -73.500761, + 45.494325 + ], + [ + -73.500559, + 45.494465 + ], + [ + -73.500469, + 45.494546 + ], + [ + -73.500384, + 45.494631 + ], + [ + -73.500337, + 45.494686 + ], + [ + -73.500282, + 45.494728 + ], + [ + -73.500108, + 45.494896 + ], + [ + -73.500064, + 45.495 + ], + [ + -73.500106, + 45.495026 + ], + [ + -73.500214, + 45.495111 + ], + [ + -73.500592, + 45.495409 + ], + [ + -73.50081, + 45.495567 + ], + [ + -73.501059, + 45.495724 + ], + [ + -73.501182, + 45.495805 + ], + [ + -73.501279, + 45.495868 + ], + [ + -73.501296, + 45.49588 + ], + [ + -73.501808, + 45.496251 + ], + [ + -73.50225, + 45.496558 + ], + [ + -73.502293, + 45.496588 + ], + [ + -73.502336, + 45.49662 + ], + [ + -73.50284, + 45.49698 + ], + [ + -73.50327, + 45.49729 + ], + [ + -73.503408, + 45.497389 + ], + [ + -73.503475, + 45.497438 + ], + [ + -73.504131, + 45.497897 + ], + [ + -73.504473, + 45.49814 + ], + [ + -73.504683, + 45.498293 + ], + [ + -73.504764, + 45.498354 + ], + [ + -73.504839, + 45.49841 + ], + [ + -73.505105, + 45.498595 + ], + [ + -73.505329, + 45.498757 + ], + [ + -73.505704, + 45.498928 + ], + [ + -73.506001, + 45.499076 + ], + [ + -73.506259, + 45.499211 + ], + [ + -73.506709, + 45.499427 + ], + [ + -73.506801, + 45.499467 + ], + [ + -73.507257, + 45.499662 + ], + [ + -73.50735, + 45.499701 + ], + [ + -73.507712, + 45.499859 + ], + [ + -73.508861, + 45.50034 + ], + [ + -73.508958, + 45.500376 + ], + [ + -73.509608, + 45.500651 + ], + [ + -73.509762, + 45.500713 + ], + [ + -73.50993, + 45.500781 + ], + [ + -73.510436, + 45.501012 + ], + [ + -73.511327, + 45.50142 + ], + [ + -73.512063, + 45.501735 + ], + [ + -73.512398, + 45.501874 + ], + [ + -73.5127, + 45.501847 + ], + [ + -73.512871, + 45.501831 + ], + [ + -73.512897, + 45.501829 + ], + [ + -73.513035, + 45.501807 + ], + [ + -73.513284, + 45.501793 + ], + [ + -73.51344, + 45.501784 + ], + [ + -73.513522, + 45.501784 + ], + [ + -73.5136, + 45.501784 + ], + [ + -73.513805, + 45.501793 + ], + [ + -73.514045, + 45.501797 + ], + [ + -73.514104, + 45.501797 + ], + [ + -73.514212, + 45.501802 + ], + [ + -73.514398, + 45.501805 + ], + [ + -73.516174, + 45.501834 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.516694, + 45.501961 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517439, + 45.505254 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517233, + 45.507269 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517557, + 45.509202 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517799, + 45.511415 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517595, + 45.513237 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518261, + 45.515302 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518968, + 45.516736 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.519009, + 45.517028 + ], + [ + -73.518456, + 45.516887 + ], + [ + -73.518077, + 45.516793 + ], + [ + -73.517978, + 45.516757 + ], + [ + -73.517741, + 45.516671 + ], + [ + -73.517737, + 45.51667 + ], + [ + -73.517486, + 45.516579 + ], + [ + -73.517318, + 45.516518 + ], + [ + -73.51692, + 45.51637 + ], + [ + -73.516876, + 45.516355 + ], + [ + -73.515414, + 45.515844 + ], + [ + -73.514716, + 45.5156 + ], + [ + -73.514563, + 45.515547 + ], + [ + -73.513759, + 45.515273 + ] + ] + }, + "id": 320, + "properties": { + "id": "845d678e-eb64-4499-ae3e-47070ae0317a", + "data": { + "gtfs": { + "shape_id": "600_1_A" + }, + "segments": [ + { + "distanceMeters": 227, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 406, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 411, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 605, + "travelTimeSeconds": 105 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 476, + "travelTimeSeconds": 82 + }, + { + "distanceMeters": 427, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 22, + "travelTimeSeconds": 4 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 83, + "travelTimeSeconds": 15 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6562, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3981.021371139948, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.76, + "travelTimeWithoutDwellTimesSeconds": 1140, + "operatingTimeWithLayoverTimeSeconds": 1320, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1140, + "operatingSpeedWithLayoverMetersPerSecond": 4.97, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.76 + }, + "mode": "bus", + "name": "Collèges NDL et Durocher", + "color": "#A32638", + "nodes": [ + "4df7f34c-ec49-4d48-90b3-56f3faffc976", + "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "9f22d75f-cc66-4020-8804-7912f49950d8", + "41d7b6d4-1fe4-44ed-a774-b005607fc59d", + "bc9b9243-e0ec-461a-9898-6eb69ecd511a", + "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "5d15d6e1-5f1d-4e9c-8c3a-63a3b3f11da3", + "17130fb5-7835-48a4-911b-07c08af792bb", + "f09bea25-9e7f-4f46-8a1e-1137fbe57059", + "1cea6199-481e-43b0-8d4a-8c7593ff485f", + "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", + "6557d1fe-6975-49e2-871c-ab07d42ea35b", + "0ac44bed-6f37-406e-8654-f8d5f36c840e", + "443288e2-2ae9-4c97-a015-0e176d8f71b2", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "2259b112-2e60-4bcc-ad14-9e0e577f2909", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "f250cba5-329e-4403-912d-778f924ce25e", + "f250cba5-329e-4403-912d-778f924ce25e", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "74539ff2-4125-4083-be0c-4345bf87f6fa" + ], + "stops": [], + "line_id": "eff765a7-29d8-4a72-be4f-72266aaa0270", + "segments": [ + 0, + 6, + 12, + 33, + 37, + 41, + 44, + 69, + 72, + 75, + 102, + 104, + 114, + 123, + 131, + 148, + 162, + 168, + 173, + 179, + 185, + 193, + 200, + 207, + 208, + 213 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 320, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.415733, + 45.489896 + ], + [ + -73.415825, + 45.489928 + ], + [ + -73.41588, + 45.489948 + ], + [ + -73.416181, + 45.490056 + ], + [ + -73.416563, + 45.490205 + ], + [ + -73.416833, + 45.490317 + ], + [ + -73.417817, + 45.490728 + ], + [ + -73.418126, + 45.490867 + ], + [ + -73.418329, + 45.490966 + ], + [ + -73.418926, + 45.491273 + ], + [ + -73.419065, + 45.491358 + ], + [ + -73.419232, + 45.491444 + ], + [ + -73.419402, + 45.491507 + ], + [ + -73.420066, + 45.49173 + ], + [ + -73.420235, + 45.491787 + ], + [ + -73.420442, + 45.49185 + ], + [ + -73.421099, + 45.492084 + ], + [ + -73.421973, + 45.492395 + ], + [ + -73.422792, + 45.492684 + ], + [ + -73.423173, + 45.492823 + ], + [ + -73.423404, + 45.4929 + ], + [ + -73.423545, + 45.492954 + ], + [ + -73.423688, + 45.493026 + ], + [ + -73.423782, + 45.493079 + ], + [ + -73.423881, + 45.493134 + ], + [ + -73.423992, + 45.493193 + ], + [ + -73.424086, + 45.493252 + ], + [ + -73.424167, + 45.493319 + ], + [ + -73.4245, + 45.493675 + ], + [ + -73.424539, + 45.493715 + ], + [ + -73.424604, + 45.493823 + ], + [ + -73.424742, + 45.493976 + ], + [ + -73.424872, + 45.49408 + ], + [ + -73.425006, + 45.494188 + ], + [ + -73.425153, + 45.494283 + ], + [ + -73.425261, + 45.494342 + ], + [ + -73.425348, + 45.494391 + ], + [ + -73.425495, + 45.494463 + ], + [ + -73.425936, + 45.494625 + ], + [ + -73.426225, + 45.494733 + ], + [ + -73.42705, + 45.495013 + ], + [ + -73.427246, + 45.49508 + ], + [ + -73.427779, + 45.495264 + ], + [ + -73.427911, + 45.49531 + ], + [ + -73.428712, + 45.495599 + ], + [ + -73.430398, + 45.496192 + ], + [ + -73.430519, + 45.496234 + ], + [ + -73.432091, + 45.496791 + ], + [ + -73.432274, + 45.496856 + ], + [ + -73.434216, + 45.497548 + ], + [ + -73.43431, + 45.497582 + ], + [ + -73.435579, + 45.498023 + ], + [ + -73.435865, + 45.4981 + ], + [ + -73.436036, + 45.49814 + ], + [ + -73.436216, + 45.498172 + ], + [ + -73.436513, + 45.498249 + ], + [ + -73.436806, + 45.498348 + ], + [ + -73.436902, + 45.498386 + ], + [ + -73.436955, + 45.498406 + ], + [ + -73.439319, + 45.499236 + ], + [ + -73.439705, + 45.499371 + ], + [ + -73.43988, + 45.499434 + ], + [ + -73.439954, + 45.499326 + ], + [ + -73.441094, + 45.49768 + ], + [ + -73.441172, + 45.497567 + ], + [ + -73.442304, + 45.495925 + ], + [ + -73.442662, + 45.495404 + ], + [ + -73.442881, + 45.495526 + ], + [ + -73.445644, + 45.497056 + ], + [ + -73.445726, + 45.497102 + ], + [ + -73.446114, + 45.497358 + ], + [ + -73.4462, + 45.497417 + ], + [ + -73.446473, + 45.497601 + ], + [ + -73.446666, + 45.497444 + ], + [ + -73.446768, + 45.497359 + ], + [ + -73.44702, + 45.497219 + ], + [ + -73.447145, + 45.497147 + ], + [ + -73.447323, + 45.497044 + ], + [ + -73.447676, + 45.497238 + ], + [ + -73.448036, + 45.497431 + ], + [ + -73.44838, + 45.497616 + ], + [ + -73.448779, + 45.497827 + ], + [ + -73.449434, + 45.49821 + ], + [ + -73.449496, + 45.498237 + ], + [ + -73.449546, + 45.498251 + ], + [ + -73.449725, + 45.498152 + ], + [ + -73.44978, + 45.498119 + ], + [ + -73.449884, + 45.498057 + ], + [ + -73.450085, + 45.497941 + ], + [ + -73.450487, + 45.498161 + ], + [ + -73.451013, + 45.498449 + ], + [ + -73.451357, + 45.498643 + ], + [ + -73.451834, + 45.498904 + ], + [ + -73.452113, + 45.499057 + ], + [ + -73.452401, + 45.499217 + ], + [ + -73.452639, + 45.49935 + ], + [ + -73.452794, + 45.499431 + ], + [ + -73.453172, + 45.499634 + ], + [ + -73.453483, + 45.499755 + ], + [ + -73.45482, + 45.500233 + ], + [ + -73.454914, + 45.500255 + ], + [ + -73.455067, + 45.500305 + ], + [ + -73.455166, + 45.5003 + ], + [ + -73.455262, + 45.5003 + ], + [ + -73.455439, + 45.500273 + ], + [ + -73.45555, + 45.500256 + ], + [ + -73.455726, + 45.500228 + ], + [ + -73.455803, + 45.500305 + ], + [ + -73.456099, + 45.500539 + ], + [ + -73.45648, + 45.500755 + ], + [ + -73.457135, + 45.501093 + ], + [ + -73.457312, + 45.501192 + ], + [ + -73.457366, + 45.501237 + ], + [ + -73.45755, + 45.501385 + ], + [ + -73.457629, + 45.501448 + ], + [ + -73.458179, + 45.50112 + ], + [ + -73.458392, + 45.500985 + ], + [ + -73.458619, + 45.50085 + ], + [ + -73.458792, + 45.500752 + ], + [ + -73.458932, + 45.50067 + ], + [ + -73.45911, + 45.500567 + ], + [ + -73.459247, + 45.50068 + ], + [ + -73.459797, + 45.501134 + ], + [ + -73.460303, + 45.501557 + ], + [ + -73.460537, + 45.501755 + ], + [ + -73.460681, + 45.501872 + ], + [ + -73.460827, + 45.501996 + ], + [ + -73.460922, + 45.502075 + ], + [ + -73.461281, + 45.501859 + ], + [ + -73.461423, + 45.501774 + ], + [ + -73.461628, + 45.501652 + ], + [ + -73.461886, + 45.501859 + ], + [ + -73.46216, + 45.502089 + ], + [ + -73.462443, + 45.502336 + ], + [ + -73.462726, + 45.502584 + ], + [ + -73.463263, + 45.503039 + ], + [ + -73.463285, + 45.503058 + ], + [ + -73.463363, + 45.503124 + ], + [ + -73.463564, + 45.503003 + ], + [ + -73.464212, + 45.502612 + ], + [ + -73.466594, + 45.501191 + ], + [ + -73.466934, + 45.500988 + ], + [ + -73.467259, + 45.501258 + ], + [ + -73.467598, + 45.501537 + ], + [ + -73.467922, + 45.501812 + ], + [ + -73.468174, + 45.502031 + ], + [ + -73.468227, + 45.502077 + ], + [ + -73.469094, + 45.502779 + ], + [ + -73.469411, + 45.503036 + ], + [ + -73.469419, + 45.503065 + ], + [ + -73.469426, + 45.503089 + ], + [ + -73.46944, + 45.503136 + ], + [ + -73.469513, + 45.50323 + ], + [ + -73.469572, + 45.50329 + ], + [ + -73.469677, + 45.503226 + ], + [ + -73.469755, + 45.503179 + ], + [ + -73.469968, + 45.50305 + ], + [ + -73.471065, + 45.502388 + ], + [ + -73.471184, + 45.502317 + ], + [ + -73.472092, + 45.501763 + ], + [ + -73.473525, + 45.500894 + ], + [ + -73.47358, + 45.50086 + ], + [ + -73.473641, + 45.500823 + ], + [ + -73.473574, + 45.500765 + ], + [ + -73.473253, + 45.500495 + ], + [ + -73.472986, + 45.50027 + ], + [ + -73.472579, + 45.499928 + ], + [ + -73.472378, + 45.499761 + ], + [ + -73.472276, + 45.499676 + ], + [ + -73.472173, + 45.49959 + ], + [ + -73.471624, + 45.499149 + ], + [ + -73.471205, + 45.498803 + ], + [ + -73.471076, + 45.498697 + ], + [ + -73.470968, + 45.498609 + ], + [ + -73.470813, + 45.498474 + ], + [ + -73.470322, + 45.498065 + ], + [ + -73.470122, + 45.497907 + ], + [ + -73.469866, + 45.497663 + ], + [ + -73.469768, + 45.497569 + ], + [ + -73.469532, + 45.497376 + ], + [ + -73.469247, + 45.497142 + ], + [ + -73.469174, + 45.497106 + ], + [ + -73.468897, + 45.496887 + ], + [ + -73.468809, + 45.496818 + ], + [ + -73.468449, + 45.496516 + ], + [ + -73.468074, + 45.496206 + ], + [ + -73.46768, + 45.495882 + ], + [ + -73.467549, + 45.495769 + ], + [ + -73.467417, + 45.495657 + ], + [ + -73.467151, + 45.495441 + ], + [ + -73.466865, + 45.495202 + ], + [ + -73.466595, + 45.494982 + ], + [ + -73.466311, + 45.494743 + ], + [ + -73.465999, + 45.494495 + ], + [ + -73.4658, + 45.494335 + ], + [ + -73.465714, + 45.494266 + ], + [ + -73.46542, + 45.494439 + ], + [ + -73.465269, + 45.494527 + ], + [ + -73.463018, + 45.495867 + ], + [ + -73.462904, + 45.495934 + ], + [ + -73.461541, + 45.496748 + ], + [ + -73.461046, + 45.497049 + ], + [ + -73.460385, + 45.49744 + ], + [ + -73.460362, + 45.497454 + ], + [ + -73.460224, + 45.497535 + ], + [ + -73.460165, + 45.497427 + ], + [ + -73.460116, + 45.497377 + ], + [ + -73.460063, + 45.497324 + ], + [ + -73.460019, + 45.497262 + ], + [ + -73.459954, + 45.497171 + ], + [ + -73.459892, + 45.497045 + ], + [ + -73.45984, + 45.496946 + ], + [ + -73.459805, + 45.496797 + ], + [ + -73.45979, + 45.496635 + ], + [ + -73.459786, + 45.496572 + ], + [ + -73.45979, + 45.496433 + ], + [ + -73.459822, + 45.496293 + ], + [ + -73.46018, + 45.495429 + ], + [ + -73.460269, + 45.495227 + ], + [ + -73.460322, + 45.495095 + ], + [ + -73.460354, + 45.495016 + ], + [ + -73.460277, + 45.4948 + ], + [ + -73.460132, + 45.49444 + ], + [ + -73.459999, + 45.494098 + ], + [ + -73.459882, + 45.493804 + ], + [ + -73.459784, + 45.493562 + ], + [ + -73.45974, + 45.493441 + ], + [ + -73.459717, + 45.493391 + ], + [ + -73.459678, + 45.493328 + ], + [ + -73.45962, + 45.493243 + ], + [ + -73.459564, + 45.493189 + ], + [ + -73.459055, + 45.492754 + ], + [ + -73.458942, + 45.492657 + ], + [ + -73.459196, + 45.49251 + ], + [ + -73.459245, + 45.492482 + ], + [ + -73.459615, + 45.492262 + ], + [ + -73.459713, + 45.492208 + ], + [ + -73.459829, + 45.492145 + ], + [ + -73.461043, + 45.491412 + ], + [ + -73.461641, + 45.491052 + ], + [ + -73.46185, + 45.490922 + ], + [ + -73.463535, + 45.489919 + ], + [ + -73.463805, + 45.489762 + ], + [ + -73.46482, + 45.489155 + ], + [ + -73.464653, + 45.489041 + ], + [ + -73.464595, + 45.489001 + ], + [ + -73.464379, + 45.488857 + ], + [ + -73.46422, + 45.488754 + ], + [ + -73.464097, + 45.488673 + ], + [ + -73.463537, + 45.488299 + ], + [ + -73.463291, + 45.488146 + ], + [ + -73.463053, + 45.487989 + ], + [ + -73.462992, + 45.487949 + ], + [ + -73.462983, + 45.487944 + ], + [ + -73.46278, + 45.487809 + ], + [ + -73.462116, + 45.487367 + ], + [ + -73.461428, + 45.486912 + ], + [ + -73.461292, + 45.486823 + ], + [ + -73.461219, + 45.486774 + ], + [ + -73.460376, + 45.486211 + ], + [ + -73.45953, + 45.485652 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.457883, + 45.486537 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.45694, + 45.487838 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456449, + 45.487901 + ], + [ + -73.456154, + 45.487865 + ], + [ + -73.455852, + 45.487802 + ], + [ + -73.455596, + 45.487748 + ], + [ + -73.455357, + 45.487675 + ], + [ + -73.455213, + 45.487621 + ], + [ + -73.454998, + 45.487531 + ], + [ + -73.454777, + 45.487423 + ], + [ + -73.454672, + 45.487356 + ], + [ + -73.454523, + 45.487261 + ], + [ + -73.454176, + 45.487527 + ], + [ + -73.453821, + 45.487792 + ], + [ + -73.452906, + 45.488462 + ] + ] + }, + "id": 321, + "properties": { + "id": "7acd871a-f1a6-4c1a-a289-b31363b0e5c1", + "data": { + "gtfs": { + "shape_id": "601_1_A" + }, + "segments": [ + { + "distanceMeters": 8, + "travelTimeSeconds": 1 + }, + { + "distanceMeters": 388, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 327, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 477, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 63, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 51, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 812, + "travelTimeSeconds": 137 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 402, + "travelTimeSeconds": 68 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9930, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2851.449814982888, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.91, + "travelTimeWithoutDwellTimesSeconds": 1680, + "operatingTimeWithLayoverTimeSeconds": 1860, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1680, + "operatingSpeedWithLayoverMetersPerSecond": 5.34, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.91 + }, + "mode": "bus", + "name": "École de l'Agora", + "color": "#A32638", + "nodes": [ + "4b07d309-8f54-43c8-997d-d4abd77f2d1e", + "4b07d309-8f54-43c8-997d-d4abd77f2d1e", + "f4abcc97-51ec-431d-988f-977063b9070f", + "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", + "28985ee5-9fc5-416a-81f8-ff25dba2b6da", + "d68685b2-7e92-4934-989f-8ccfae13451f", + "d9bf2534-8f61-4d16-adab-8e4d84e855be", + "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", + "4a180761-ffc5-4d97-873b-916ca1656760", + "63ff9173-3e59-4bee-9a21-57d199dc88ec", + "015193c6-e760-4b43-b20c-28dc44f0558a", + "280e5a85-9e1a-4b2a-8fde-6cc3d439dfe9", + "e9e722ad-a155-4750-9a2a-a126be84e7ec", + "e49c515c-3414-4a88-aaec-43f9499177ec", + "f46c44d6-0823-444d-9902-d03499774c08", + "69ce0958-621c-4e07-9f8c-41bd64014240", + "800a1d6c-4d5b-4560-b691-99e1b0db1343", + "bb534923-0939-4ebc-88f8-39847999c548", + "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", + "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", + "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", + "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", + "a3062aba-92b8-419f-9d8e-4f21713f9dcc", + "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", + "c17cc951-65ff-4617-a096-ccd1fe6cc26f", + "dbae3900-2b78-4309-9fa5-5503ae30ad22", + "300a7442-8453-4aa4-89f9-beacdcc75174", + "a44c12a5-9a53-4288-b77a-08bf3c4eaadc", + "4a83802a-cebb-4e1a-b140-a3d386f52eae", + "796a2647-8b16-4b22-808f-454e1bee3449", + "5f4522a4-83cd-4392-9a71-d32067987a56", + "2b94ffb1-8934-4ee0-a36c-60c433b4d09e", + "c988f5aa-9ab5-48a6-898c-21c53961d2f3", + "bfc273c8-ec5d-4e76-b6a3-3d443d9f65a2", + "12181a0a-32eb-4333-b444-1760ecaa417c", + "12181a0a-32eb-4333-b444-1760ecaa417c", + "0689eff9-8438-4b1c-9e3a-78c672f6ef82", + "3c0294df-b0e7-4be1-af27-4b755f5639ad", + "912a81e5-66f7-4af9-8125-ae16515fe284", + "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", + "720107c1-f0c2-4f37-8e59-ce7f32cd9461", + "a90c4da7-455c-41d3-9961-c7a64d627572", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "517a8299-e807-4040-8ccd-f417dda7338c" + ], + "stops": [], + "line_id": "b9effdd8-128c-4dc9-a95b-781a36d9814f", + "segments": [ + 0, + 1, + 13, + 23, + 35, + 42, + 45, + 47, + 49, + 57, + 63, + 65, + 68, + 76, + 86, + 94, + 105, + 113, + 119, + 126, + 129, + 136, + 140, + 145, + 147, + 157, + 160, + 167, + 172, + 177, + 182, + 187, + 194, + 198, + 202, + 208, + 219, + 224, + 231, + 252, + 256, + 260, + 266, + 275 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 321, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.452109, + 45.488779 + ], + [ + -73.452059, + 45.488756 + ], + [ + -73.452026, + 45.48874 + ], + [ + -73.451864, + 45.488677 + ], + [ + -73.451663, + 45.488618 + ], + [ + -73.451471, + 45.48856 + ], + [ + -73.451142, + 45.48852 + ], + [ + -73.450754, + 45.488507 + ], + [ + -73.450564, + 45.488501 + ], + [ + -73.450532, + 45.488263 + ], + [ + -73.45047, + 45.488074 + ], + [ + -73.450345, + 45.487867 + ], + [ + -73.450187, + 45.48766 + ], + [ + -73.450004, + 45.487498 + ], + [ + -73.449781, + 45.487354 + ], + [ + -73.449483, + 45.487192 + ], + [ + -73.449234, + 45.487093 + ], + [ + -73.449121, + 45.487056 + ], + [ + -73.448338, + 45.486755 + ], + [ + -73.448148, + 45.486665 + ], + [ + -73.448011, + 45.486602 + ], + [ + -73.447211, + 45.486192 + ], + [ + -73.44682, + 45.485985 + ], + [ + -73.446948, + 45.485867 + ], + [ + -73.447123, + 45.485706 + ], + [ + -73.447356, + 45.48549 + ], + [ + -73.447536, + 45.485315 + ], + [ + -73.447867, + 45.484995 + ], + [ + -73.448285, + 45.484593 + ], + [ + -73.448552, + 45.484334 + ], + [ + -73.448747, + 45.484168 + ], + [ + -73.448891, + 45.484006 + ], + [ + -73.448947, + 45.483943 + ], + [ + -73.449046, + 45.483754 + ], + [ + -73.449223, + 45.483529 + ], + [ + -73.449352, + 45.483408 + ], + [ + -73.44987, + 45.483084 + ], + [ + -73.449978, + 45.483017 + ], + [ + -73.451449, + 45.482131 + ], + [ + -73.451773, + 45.481936 + ], + [ + -73.45215, + 45.481708 + ], + [ + -73.452851, + 45.48129 + ], + [ + -73.453668, + 45.481781 + ], + [ + -73.454023, + 45.481974 + ], + [ + -73.454266, + 45.482101 + ], + [ + -73.454494, + 45.482204 + ], + [ + -73.454624, + 45.482357 + ], + [ + -73.455203, + 45.482812 + ], + [ + -73.455441, + 45.482965 + ], + [ + -73.455998, + 45.483317 + ], + [ + -73.456089, + 45.483375 + ], + [ + -73.456112, + 45.483393 + ], + [ + -73.456334, + 45.483523 + ], + [ + -73.457447, + 45.484256 + ], + [ + -73.457564, + 45.484333 + ], + [ + -73.45799, + 45.484621 + ], + [ + -73.458472, + 45.484946 + ], + [ + -73.458995, + 45.485292 + ], + [ + -73.459345, + 45.485527 + ], + [ + -73.45937, + 45.485544 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459934, + 45.485919 + ], + [ + -73.460376, + 45.486211 + ], + [ + -73.461018, + 45.48664 + ], + [ + -73.461219, + 45.486774 + ], + [ + -73.461292, + 45.486823 + ], + [ + -73.462116, + 45.487367 + ], + [ + -73.462656, + 45.487726 + ], + [ + -73.46278, + 45.487809 + ], + [ + -73.462983, + 45.487944 + ], + [ + -73.463053, + 45.487989 + ], + [ + -73.463291, + 45.488146 + ], + [ + -73.463537, + 45.488299 + ], + [ + -73.464097, + 45.488673 + ], + [ + -73.46422, + 45.488754 + ], + [ + -73.464379, + 45.488857 + ], + [ + -73.464595, + 45.489001 + ], + [ + -73.464738, + 45.489099 + ], + [ + -73.46482, + 45.489155 + ], + [ + -73.46446, + 45.48937 + ], + [ + -73.463805, + 45.489762 + ], + [ + -73.463535, + 45.489919 + ], + [ + -73.46185, + 45.490922 + ], + [ + -73.461641, + 45.491052 + ], + [ + -73.461043, + 45.491412 + ], + [ + -73.459829, + 45.492145 + ], + [ + -73.459713, + 45.492208 + ], + [ + -73.459615, + 45.492262 + ], + [ + -73.459245, + 45.492482 + ], + [ + -73.458942, + 45.492657 + ], + [ + -73.459238, + 45.49291 + ], + [ + -73.459564, + 45.493189 + ], + [ + -73.45962, + 45.493243 + ], + [ + -73.459678, + 45.493328 + ], + [ + -73.459717, + 45.493391 + ], + [ + -73.45974, + 45.493441 + ], + [ + -73.459746, + 45.493457 + ], + [ + -73.459784, + 45.493562 + ], + [ + -73.459999, + 45.494098 + ], + [ + -73.460132, + 45.49444 + ], + [ + -73.460277, + 45.4948 + ], + [ + -73.460301, + 45.494869 + ], + [ + -73.460354, + 45.495016 + ], + [ + -73.460269, + 45.495227 + ], + [ + -73.46018, + 45.495429 + ], + [ + -73.459822, + 45.496293 + ], + [ + -73.45979, + 45.496433 + ], + [ + -73.459786, + 45.496572 + ], + [ + -73.45979, + 45.496635 + ], + [ + -73.459805, + 45.496797 + ], + [ + -73.45984, + 45.496946 + ], + [ + -73.459892, + 45.497045 + ], + [ + -73.459954, + 45.497171 + ], + [ + -73.460063, + 45.497324 + ], + [ + -73.460165, + 45.497427 + ], + [ + -73.460166, + 45.497429 + ], + [ + -73.460224, + 45.497535 + ], + [ + -73.460362, + 45.497454 + ], + [ + -73.46059, + 45.497319 + ], + [ + -73.461046, + 45.497049 + ], + [ + -73.461541, + 45.496748 + ], + [ + -73.462754, + 45.496024 + ], + [ + -73.462904, + 45.495934 + ], + [ + -73.465269, + 45.494527 + ], + [ + -73.465608, + 45.494328 + ], + [ + -73.465714, + 45.494266 + ], + [ + -73.465999, + 45.494495 + ], + [ + -73.46601, + 45.494504 + ], + [ + -73.466053, + 45.494539 + ], + [ + -73.466311, + 45.494743 + ], + [ + -73.466595, + 45.494982 + ], + [ + -73.466865, + 45.495202 + ], + [ + -73.467151, + 45.495441 + ], + [ + -73.467334, + 45.49559 + ], + [ + -73.467417, + 45.495657 + ], + [ + -73.46768, + 45.495882 + ], + [ + -73.468074, + 45.496206 + ], + [ + -73.468449, + 45.496516 + ], + [ + -73.468663, + 45.496696 + ], + [ + -73.468809, + 45.496818 + ], + [ + -73.469174, + 45.497106 + ], + [ + -73.469247, + 45.497142 + ], + [ + -73.469532, + 45.497376 + ], + [ + -73.469575, + 45.497411 + ], + [ + -73.469768, + 45.497569 + ], + [ + -73.470122, + 45.497907 + ], + [ + -73.470322, + 45.498065 + ], + [ + -73.470813, + 45.498474 + ], + [ + -73.470887, + 45.498538 + ], + [ + -73.470968, + 45.498609 + ], + [ + -73.471205, + 45.498803 + ], + [ + -73.471624, + 45.499149 + ], + [ + -73.472162, + 45.499582 + ], + [ + -73.472173, + 45.49959 + ], + [ + -73.472276, + 45.499676 + ], + [ + -73.472579, + 45.499928 + ], + [ + -73.472986, + 45.50027 + ], + [ + -73.473396, + 45.500615 + ], + [ + -73.473574, + 45.500765 + ], + [ + -73.473144, + 45.501026 + ], + [ + -73.472027, + 45.501705 + ], + [ + -73.471225, + 45.502188 + ], + [ + -73.471117, + 45.502254 + ], + [ + -73.469783, + 45.503065 + ], + [ + -73.469716, + 45.503106 + ], + [ + -73.469614, + 45.503168 + ], + [ + -73.469532, + 45.503086 + ], + [ + -73.469411, + 45.503036 + ], + [ + -73.469131, + 45.502809 + ], + [ + -73.468308, + 45.502143 + ], + [ + -73.468227, + 45.502077 + ], + [ + -73.467922, + 45.501812 + ], + [ + -73.467598, + 45.501537 + ], + [ + -73.467259, + 45.501258 + ], + [ + -73.467153, + 45.50117 + ], + [ + -73.466934, + 45.500988 + ], + [ + -73.464327, + 45.502543 + ], + [ + -73.464212, + 45.502612 + ], + [ + -73.463363, + 45.503124 + ], + [ + -73.463263, + 45.503039 + ], + [ + -73.463043, + 45.502853 + ], + [ + -73.462726, + 45.502584 + ], + [ + -73.462443, + 45.502336 + ], + [ + -73.46216, + 45.502089 + ], + [ + -73.461886, + 45.501859 + ], + [ + -73.461724, + 45.501729 + ], + [ + -73.461628, + 45.501652 + ], + [ + -73.461281, + 45.501859 + ], + [ + -73.460922, + 45.502075 + ], + [ + -73.460681, + 45.501872 + ], + [ + -73.460649, + 45.501847 + ], + [ + -73.460537, + 45.501755 + ], + [ + -73.460303, + 45.501557 + ], + [ + -73.459797, + 45.501134 + ], + [ + -73.45932, + 45.50074 + ], + [ + -73.459247, + 45.50068 + ], + [ + -73.45911, + 45.500567 + ], + [ + -73.458792, + 45.500752 + ], + [ + -73.458619, + 45.50085 + ], + [ + -73.458392, + 45.500985 + ], + [ + -73.458179, + 45.50112 + ], + [ + -73.457765, + 45.501367 + ], + [ + -73.457629, + 45.501448 + ], + [ + -73.457366, + 45.501237 + ], + [ + -73.457312, + 45.501192 + ], + [ + -73.457135, + 45.501093 + ], + [ + -73.45648, + 45.500755 + ], + [ + -73.456099, + 45.500539 + ], + [ + -73.455947, + 45.500418 + ], + [ + -73.455926, + 45.500402 + ], + [ + -73.455803, + 45.500305 + ], + [ + -73.455726, + 45.500228 + ], + [ + -73.455439, + 45.500273 + ], + [ + -73.455262, + 45.5003 + ], + [ + -73.455166, + 45.5003 + ], + [ + -73.455067, + 45.500305 + ], + [ + -73.454914, + 45.500255 + ], + [ + -73.45482, + 45.500233 + ], + [ + -73.453483, + 45.499755 + ], + [ + -73.453172, + 45.499634 + ], + [ + -73.452891, + 45.499483 + ], + [ + -73.452794, + 45.499431 + ], + [ + -73.452639, + 45.49935 + ], + [ + -73.452113, + 45.499057 + ], + [ + -73.451834, + 45.498904 + ], + [ + -73.451357, + 45.498643 + ], + [ + -73.451013, + 45.498449 + ], + [ + -73.450487, + 45.498161 + ], + [ + -73.45038, + 45.498103 + ], + [ + -73.450085, + 45.497941 + ], + [ + -73.449884, + 45.498057 + ], + [ + -73.449725, + 45.498152 + ], + [ + -73.449546, + 45.498251 + ], + [ + -73.449496, + 45.498237 + ], + [ + -73.449434, + 45.49821 + ], + [ + -73.448779, + 45.497827 + ], + [ + -73.44838, + 45.497616 + ], + [ + -73.448036, + 45.497431 + ], + [ + -73.447676, + 45.497238 + ], + [ + -73.447323, + 45.497044 + ], + [ + -73.44702, + 45.497219 + ], + [ + -73.446768, + 45.497359 + ], + [ + -73.446666, + 45.497444 + ], + [ + -73.446534, + 45.497471 + ], + [ + -73.44646, + 45.497475 + ], + [ + -73.44636, + 45.497457 + ], + [ + -73.4462, + 45.497417 + ], + [ + -73.446114, + 45.497358 + ], + [ + -73.445887, + 45.497209 + ], + [ + -73.445726, + 45.497102 + ], + [ + -73.442904, + 45.495539 + ], + [ + -73.442881, + 45.495526 + ], + [ + -73.442662, + 45.495404 + ], + [ + -73.442507, + 45.495318 + ], + [ + -73.44213, + 45.495864 + ], + [ + -73.441074, + 45.497391 + ], + [ + -73.440992, + 45.497509 + ], + [ + -73.439779, + 45.499267 + ], + [ + -73.439482, + 45.499161 + ], + [ + -73.439401, + 45.499132 + ], + [ + -73.439311, + 45.499101 + ], + [ + -73.437108, + 45.498332 + ], + [ + -73.437025, + 45.498303 + ], + [ + -73.436911, + 45.498253 + ], + [ + -73.436581, + 45.498141 + ], + [ + -73.436255, + 45.498055 + ], + [ + -73.435929, + 45.497992 + ], + [ + -73.435648, + 45.497915 + ], + [ + -73.434558, + 45.497524 + ], + [ + -73.434393, + 45.497465 + ], + [ + -73.432474, + 45.496791 + ], + [ + -73.432352, + 45.496748 + ], + [ + -73.431202, + 45.496344 + ], + [ + -73.43079, + 45.496199 + ], + [ + -73.430595, + 45.496131 + ], + [ + -73.428793, + 45.495486 + ], + [ + -73.428117, + 45.495247 + ], + [ + -73.42799, + 45.495202 + ], + [ + -73.427327, + 45.494972 + ], + [ + -73.427129, + 45.4949 + ], + [ + -73.426304, + 45.494616 + ], + [ + -73.425789, + 45.494431 + ], + [ + -73.425567, + 45.494332 + ], + [ + -73.425532, + 45.494314 + ], + [ + -73.425435, + 45.494265 + ], + [ + -73.425244, + 45.494166 + ], + [ + -73.425117, + 45.494094 + ], + [ + -73.424993, + 45.493999 + ], + [ + -73.424846, + 45.493877 + ], + [ + -73.424732, + 45.493751 + ], + [ + -73.424622, + 45.493598 + ], + [ + -73.424286, + 45.493252 + ], + [ + -73.424064, + 45.493076 + ], + [ + -73.424027, + 45.493054 + ], + [ + -73.423956, + 45.493013 + ], + [ + -73.423777, + 45.492914 + ], + [ + -73.423558, + 45.492824 + ], + [ + -73.423264, + 45.492711 + ], + [ + -73.422869, + 45.492571 + ], + [ + -73.422074, + 45.492295 + ], + [ + -73.422051, + 45.492287 + ], + [ + -73.421183, + 45.491976 + ], + [ + -73.420312, + 45.491674 + ], + [ + -73.419483, + 45.491395 + ], + [ + -73.419326, + 45.491336 + ], + [ + -73.419176, + 45.491259 + ], + [ + -73.419007, + 45.49116 + ], + [ + -73.418432, + 45.490863 + ], + [ + -73.418223, + 45.490764 + ], + [ + -73.417895, + 45.490615 + ], + [ + -73.416915, + 45.49021 + ], + [ + -73.416651, + 45.490097 + ], + [ + -73.416262, + 45.489948 + ], + [ + -73.416107, + 45.489893 + ], + [ + -73.415958, + 45.48984 + ], + [ + -73.414473, + 45.489314 + ], + [ + -73.413397, + 45.488933 + ] + ] + }, + "id": 322, + "properties": { + "id": "3521c0b6-c732-463b-8d4e-9388cfcd37f9", + "data": { + "gtfs": { + "shape_id": "601_1_R" + }, + "segments": [ + { + "distanceMeters": 112, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 631, + "travelTimeSeconds": 94 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 446, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 359, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 721, + "travelTimeSeconds": 107 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 46, + "travelTimeSeconds": 7 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 432, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 443, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 36, + "travelTimeSeconds": 5 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 713, + "travelTimeSeconds": 105 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 36 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 11322, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3054.7433101553515, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.74, + "travelTimeWithoutDwellTimesSeconds": 1680, + "operatingTimeWithLayoverTimeSeconds": 1860, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1680, + "operatingSpeedWithLayoverMetersPerSecond": 6.09, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.74 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "517a8299-e807-4040-8ccd-f417dda7338c", + "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", + "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "1f1b5a64-7c8d-49de-8df3-369e30f799ef", + "c24b91da-a4a3-4b28-b987-5726c6a01fdb", + "720107c1-f0c2-4f37-8e59-ce7f32cd9461", + "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", + "e49dac95-6777-4527-88d9-43533c4c81ab", + "3c0294df-b0e7-4be1-af27-4b755f5639ad", + "0689eff9-8438-4b1c-9e3a-78c672f6ef82", + "12181a0a-32eb-4333-b444-1760ecaa417c", + "bfc273c8-ec5d-4e76-b6a3-3d443d9f65a2", + "c988f5aa-9ab5-48a6-898c-21c53961d2f3", + "c988f5aa-9ab5-48a6-898c-21c53961d2f3", + "2b94ffb1-8934-4ee0-a36c-60c433b4d09e", + "5f4522a4-83cd-4392-9a71-d32067987a56", + "796a2647-8b16-4b22-808f-454e1bee3449", + "4a83802a-cebb-4e1a-b140-a3d386f52eae", + "a44c12a5-9a53-4288-b77a-08bf3c4eaadc", + "300a7442-8453-4aa4-89f9-beacdcc75174", + "dbae3900-2b78-4309-9fa5-5503ae30ad22", + "5b1f9db8-9fc7-4028-9f92-fd33d2f419e7", + "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", + "ef559a5c-0885-4ac5-a0dc-bdf67aea0546", + "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", + "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", + "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", + "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", + "bb534923-0939-4ebc-88f8-39847999c548", + "800a1d6c-4d5b-4560-b691-99e1b0db1343", + "69ce0958-621c-4e07-9f8c-41bd64014240", + "f46c44d6-0823-444d-9902-d03499774c08", + "e9e722ad-a155-4750-9a2a-a126be84e7ec", + "a03c8e5e-b707-45da-b2b1-2e8109893679", + "662f52e5-0ed5-4ba7-81cb-757051eefa2c", + "015193c6-e760-4b43-b20c-28dc44f0558a", + "45eb186b-1efe-43c4-8e82-92fe5a15a753", + "63ff9173-3e59-4bee-9a21-57d199dc88ec", + "4a180761-ffc5-4d97-873b-916ca1656760", + "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", + "d9bf2534-8f61-4d16-adab-8e4d84e855be", + "d9bf2534-8f61-4d16-adab-8e4d84e855be", + "d68685b2-7e92-4934-989f-8ccfae13451f", + "28985ee5-9fc5-416a-81f8-ff25dba2b6da", + "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", + "4b07d309-8f54-43c8-997d-d4abd77f2d1e", + "ec6dc36f-a6d2-4f32-a06b-8b08421e0620" + ], + "stops": [], + "line_id": "b9effdd8-128c-4dc9-a95b-781a36d9814f", + "segments": [ + 0, + 7, + 28, + 36, + 39, + 49, + 58, + 63, + 67, + 77, + 96, + 101, + 115, + 121, + 124, + 127, + 133, + 138, + 143, + 148, + 152, + 157, + 161, + 163, + 169, + 174, + 180, + 185, + 190, + 194, + 201, + 208, + 220, + 228, + 248, + 250, + 254, + 255, + 260, + 261, + 268, + 270, + 272, + 273, + 276, + 283, + 293, + 313 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 322, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521447, + 45.524278 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522519, + 45.524053 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522189, + 45.522392 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520123, + 45.519901 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.519318, + 45.517318 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518922, + 45.516657 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517659, + 45.513615 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517704, + 45.511771 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.517612, + 45.509418 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517231, + 45.507335 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517347, + 45.505756 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.516771, + 45.502132 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.51647, + 45.501401 + ], + [ + -73.516373, + 45.50114 + ], + [ + -73.516146, + 45.500501 + ], + [ + -73.515977, + 45.500074 + ], + [ + -73.515873, + 45.499831 + ], + [ + -73.515698, + 45.499498 + ], + [ + -73.515674, + 45.499453 + ], + [ + -73.515623, + 45.499359 + ], + [ + -73.51517, + 45.49854 + ], + [ + -73.515085, + 45.498391 + ], + [ + -73.514769, + 45.497838 + ], + [ + -73.514552, + 45.497478 + ], + [ + -73.514219, + 45.49697 + ], + [ + -73.514166, + 45.496911 + ], + [ + -73.514104, + 45.49683 + ], + [ + -73.514054, + 45.496749 + ], + [ + -73.514009, + 45.496686 + ], + [ + -73.513974, + 45.496614 + ], + [ + -73.513925, + 45.49652 + ], + [ + -73.513899, + 45.496425 + ], + [ + -73.51384, + 45.496187 + ], + [ + -73.513786, + 45.49598 + ], + [ + -73.513692, + 45.495557 + ], + [ + -73.513666, + 45.495442 + ], + [ + -73.513621, + 45.495251 + ], + [ + -73.513604, + 45.495179 + ], + [ + -73.513561, + 45.49499 + ], + [ + -73.513505, + 45.494783 + ], + [ + -73.513459, + 45.494626 + ], + [ + -73.513342, + 45.494287 + ], + [ + -73.513283, + 45.494149 + ], + [ + -73.513261, + 45.494078 + ], + [ + -73.513094, + 45.493766 + ], + [ + -73.512984, + 45.493515 + ], + [ + -73.512971, + 45.493496 + ], + [ + -73.512921, + 45.493393 + ], + [ + -73.512764, + 45.493074 + ], + [ + -73.51245, + 45.492507 + ], + [ + -73.512406, + 45.492415 + ], + [ + -73.512404, + 45.492412 + ], + [ + -73.510962, + 45.490339 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.510813, + 45.490118 + ], + [ + -73.509971, + 45.488912 + ], + [ + -73.509822, + 45.488699 + ], + [ + -73.509764, + 45.488615 + ], + [ + -73.509675, + 45.488489 + ], + [ + -73.508585, + 45.486912 + ], + [ + -73.508543, + 45.486852 + ], + [ + -73.508489, + 45.486784 + ], + [ + -73.508385, + 45.486622 + ], + [ + -73.508225, + 45.48637 + ], + [ + -73.508077, + 45.486145 + ], + [ + -73.507754, + 45.485677 + ], + [ + -73.50762, + 45.485484 + ], + [ + -73.507518, + 45.485367 + ], + [ + -73.507431, + 45.485295 + ], + [ + -73.507329, + 45.4852 + ], + [ + -73.507185, + 45.485097 + ], + [ + -73.507115, + 45.485056 + ], + [ + -73.506951, + 45.484962 + ], + [ + -73.506746, + 45.484863 + ], + [ + -73.506624, + 45.484814 + ], + [ + -73.505993, + 45.484584 + ], + [ + -73.505851, + 45.484535 + ], + [ + -73.505663, + 45.484463 + ], + [ + -73.505521, + 45.484395 + ], + [ + -73.505364, + 45.484314 + ], + [ + -73.505242, + 45.484242 + ], + [ + -73.505108, + 45.484152 + ], + [ + -73.504929, + 45.483999 + ], + [ + -73.504924, + 45.483995 + ], + [ + -73.504857, + 45.483927 + ], + [ + -73.504846, + 45.483915 + ], + [ + -73.504614, + 45.483657 + ], + [ + -73.504141, + 45.483117 + ], + [ + -73.503671, + 45.48258 + ], + [ + -73.503598, + 45.482497 + ], + [ + -73.503512, + 45.48238 + ], + [ + -73.50345, + 45.482308 + ], + [ + -73.503272, + 45.482092 + ], + [ + -73.502806, + 45.48156 + ], + [ + -73.502676, + 45.481412 + ], + [ + -73.501976, + 45.480643 + ], + [ + -73.501828, + 45.48048 + ], + [ + -73.50163, + 45.480263 + ], + [ + -73.501562, + 45.480174 + ], + [ + -73.501309, + 45.479775 + ], + [ + -73.501238, + 45.479689 + ], + [ + -73.501074, + 45.479488 + ], + [ + -73.500829, + 45.479284 + ], + [ + -73.50074, + 45.479167 + ], + [ + -73.500635, + 45.479076 + ], + [ + -73.500662, + 45.478997 + ], + [ + -73.500703, + 45.478888 + ], + [ + -73.500708, + 45.478848 + ], + [ + -73.500618, + 45.478724 + ], + [ + -73.500601, + 45.478716 + ], + [ + -73.500465, + 45.47866 + ], + [ + -73.500394, + 45.478632 + ], + [ + -73.500191, + 45.478362 + ], + [ + -73.500102, + 45.478164 + ], + [ + -73.500052, + 45.478083 + ], + [ + -73.500034, + 45.478051 + ], + [ + -73.499927, + 45.477858 + ], + [ + -73.499728, + 45.477516 + ], + [ + -73.499052, + 45.476282 + ], + [ + -73.498986, + 45.476162 + ], + [ + -73.49875, + 45.475721 + ], + [ + -73.498676, + 45.475532 + ], + [ + -73.498554, + 45.475215 + ], + [ + -73.498471, + 45.475001 + ], + [ + -73.498395, + 45.474902 + ], + [ + -73.498245, + 45.474839 + ], + [ + -73.498064, + 45.474821 + ], + [ + -73.497243, + 45.474807 + ], + [ + -73.496473, + 45.474726 + ], + [ + -73.495455, + 45.474677 + ], + [ + -73.495399, + 45.474674 + ], + [ + -73.494958, + 45.47465 + ], + [ + -73.494447, + 45.474632 + ], + [ + -73.493633, + 45.474613 + ], + [ + -73.49348, + 45.474609 + ], + [ + -73.492987, + 45.474582 + ], + [ + -73.492833, + 45.474564 + ], + [ + -73.492566, + 45.474483 + ], + [ + -73.4924, + 45.474429 + ], + [ + -73.492221, + 45.474321 + ], + [ + -73.491964, + 45.474047 + ], + [ + -73.491842, + 45.473885 + ], + [ + -73.491679, + 45.473703 + ], + [ + -73.491514, + 45.47352 + ], + [ + -73.490819, + 45.472701 + ], + [ + -73.490331, + 45.47211 + ], + [ + -73.490196, + 45.471948 + ], + [ + -73.490057, + 45.471779 + ], + [ + -73.489969, + 45.471675 + ], + [ + -73.489522, + 45.471873 + ], + [ + -73.489116, + 45.472013 + ], + [ + -73.48901, + 45.472049 + ], + [ + -73.488898, + 45.472089 + ], + [ + -73.488483, + 45.472229 + ], + [ + -73.48807, + 45.472359 + ], + [ + -73.487106, + 45.472676 + ], + [ + -73.486715, + 45.472804 + ], + [ + -73.486452, + 45.472892 + ], + [ + -73.48607, + 45.47302 + ], + [ + -73.485914, + 45.473065 + ], + [ + -73.485995, + 45.473164 + ], + [ + -73.486497, + 45.473763 + ], + [ + -73.486758, + 45.474064 + ], + [ + -73.48687, + 45.474197 + ], + [ + -73.487244, + 45.47464 + ], + [ + -73.487321, + 45.474735 + ], + [ + -73.487428, + 45.474874 + ], + [ + -73.487615, + 45.475158 + ], + [ + -73.487741, + 45.475441 + ], + [ + -73.487774, + 45.475548 + ], + [ + -73.487792, + 45.475608 + ], + [ + -73.487881, + 45.476058 + ], + [ + -73.487976, + 45.47662 + ], + [ + -73.488008, + 45.476755 + ], + [ + -73.488063, + 45.477092 + ], + [ + -73.488079, + 45.477241 + ], + [ + -73.488077, + 45.477259 + ], + [ + -73.488079, + 45.477295 + ], + [ + -73.488061, + 45.477358 + ], + [ + -73.488022, + 45.477403 + ], + [ + -73.48794, + 45.477475 + ], + [ + -73.487785, + 45.477583 + ], + [ + -73.487395, + 45.47784 + ], + [ + -73.487212, + 45.477961 + ], + [ + -73.486606, + 45.478379 + ], + [ + -73.486502, + 45.478446 + ], + [ + -73.486467, + 45.478469 + ], + [ + -73.486363, + 45.478568 + ], + [ + -73.486284, + 45.478752 + ], + [ + -73.48627, + 45.478815 + ], + [ + -73.486261, + 45.478855 + ], + [ + -73.486253, + 45.478887 + ], + [ + -73.486246, + 45.47895 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486149, + 45.479058 + ], + [ + -73.485771, + 45.479058 + ], + [ + -73.485584, + 45.479045 + ], + [ + -73.485227, + 45.479031 + ], + [ + -73.484917, + 45.479027 + ], + [ + -73.482846, + 45.478998 + ], + [ + -73.482756, + 45.478997 + ], + [ + -73.482631, + 45.478995 + ], + [ + -73.482205, + 45.478986 + ], + [ + -73.481631, + 45.478977 + ], + [ + -73.480089, + 45.478949 + ], + [ + -73.479623, + 45.478936 + ], + [ + -73.479324, + 45.478923 + ], + [ + -73.479295, + 45.478922 + ], + [ + -73.479175, + 45.478922 + ], + [ + -73.479078, + 45.478918 + ], + [ + -73.478692, + 45.47891 + ], + [ + -73.478426, + 45.478904 + ], + [ + -73.478298, + 45.478904 + ], + [ + -73.478146, + 45.478904 + ], + [ + -73.478075, + 45.478904 + ], + [ + -73.477979, + 45.478918 + ], + [ + -73.477866, + 45.478954 + ], + [ + -73.477757, + 45.479003 + ], + [ + -73.477713, + 45.479021 + ], + [ + -73.477667, + 45.479048 + ], + [ + -73.477754, + 45.479101 + ], + [ + -73.477833, + 45.479125 + ], + [ + -73.478515, + 45.47962 + ], + [ + -73.479163, + 45.480082 + ], + [ + -73.47933, + 45.4802 + ], + [ + -73.479422, + 45.480272 + ], + [ + -73.479511, + 45.480326 + ], + [ + -73.479961, + 45.480655 + ], + [ + -73.480428, + 45.480974 + ], + [ + -73.480755, + 45.481226 + ], + [ + -73.481141, + 45.481496 + ], + [ + -73.481413, + 45.481693 + ], + [ + -73.481483, + 45.481744 + ], + [ + -73.48159, + 45.481816 + ], + [ + -73.481822, + 45.481987 + ], + [ + -73.481995, + 45.482108 + ], + [ + -73.482091, + 45.482176 + ], + [ + -73.482188, + 45.482243 + ], + [ + -73.482644, + 45.48257 + ], + [ + -73.482999, + 45.482824 + ], + [ + -73.483337, + 45.483067 + ], + [ + -73.483483, + 45.483175 + ], + [ + -73.483637, + 45.483278 + ], + [ + -73.484263, + 45.483728 + ], + [ + -73.484753, + 45.484078 + ], + [ + -73.485416, + 45.484552 + ], + [ + -73.485807, + 45.484835 + ], + [ + -73.486446, + 45.485294 + ], + [ + -73.486783, + 45.485533 + ], + [ + -73.486832, + 45.485569 + ], + [ + -73.487051, + 45.485731 + ], + [ + -73.487831, + 45.486284 + ], + [ + -73.488568, + 45.486806 + ], + [ + -73.488934, + 45.487057 + ], + [ + -73.489048, + 45.487135 + ], + [ + -73.489411, + 45.487405 + ], + [ + -73.490801, + 45.488399 + ], + [ + -73.49145, + 45.488863 + ], + [ + -73.491557, + 45.488939 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.492138, + 45.488647 + ], + [ + -73.492246, + 45.488512 + ], + [ + -73.492413, + 45.48862 + ], + [ + -73.492448, + 45.488643 + ], + [ + -73.492658, + 45.488782 + ], + [ + -73.492831, + 45.488903 + ], + [ + -73.492962, + 45.488996 + ], + [ + -73.493685, + 45.489511 + ], + [ + -73.494044, + 45.489767 + ], + [ + -73.494263, + 45.489927 + ], + [ + -73.494463, + 45.490073 + ], + [ + -73.494432, + 45.490141 + ], + [ + -73.494331, + 45.490171 + ], + [ + -73.494158, + 45.490222 + ], + [ + -73.49392, + 45.490316 + ], + [ + -73.493794, + 45.490397 + ], + [ + -73.493701, + 45.490456 + ], + [ + -73.493573, + 45.490366 + ], + [ + -73.492976, + 45.489943 + ], + [ + -73.492778, + 45.489803 + ], + [ + -73.492465, + 45.489583 + ], + [ + -73.492419, + 45.48955 + ], + [ + -73.492275, + 45.489448 + ], + [ + -73.492218, + 45.489407 + ], + [ + -73.492042, + 45.489281 + ], + [ + -73.491721, + 45.489052 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.491557, + 45.488939 + ], + [ + -73.491474, + 45.489016 + ], + [ + -73.491262, + 45.489144 + ], + [ + -73.490406, + 45.489663 + ], + [ + -73.489477, + 45.490208 + ], + [ + -73.48937, + 45.490271 + ], + [ + -73.488602, + 45.490739 + ], + [ + -73.487465, + 45.491422 + ], + [ + -73.487307, + 45.491517 + ], + [ + -73.486988, + 45.491706 + ], + [ + -73.486715, + 45.491868 + ], + [ + -73.486076, + 45.492313 + ], + [ + -73.485972, + 45.492385 + ], + [ + -73.484881, + 45.493177 + ], + [ + -73.484082, + 45.493749 + ], + [ + -73.483989, + 45.493816 + ], + [ + -73.483684, + 45.493615 + ], + [ + -73.483569, + 45.493539 + ], + [ + -73.481761, + 45.492348 + ], + [ + -73.481424, + 45.492125 + ], + [ + -73.481312, + 45.492051 + ], + [ + -73.481502, + 45.491907 + ], + [ + -73.481557, + 45.491867 + ], + [ + -73.481586, + 45.49184 + ], + [ + -73.481575, + 45.491826 + ], + [ + -73.481545, + 45.491786 + ], + [ + -73.481409, + 45.491696 + ], + [ + -73.479347, + 45.490233 + ], + [ + -73.479214, + 45.490139 + ], + [ + -73.478723, + 45.489788 + ], + [ + -73.476911, + 45.488498 + ], + [ + -73.476789, + 45.488411 + ], + [ + -73.476696, + 45.48846 + ], + [ + -73.476492, + 45.488586 + ], + [ + -73.476259, + 45.488424 + ], + [ + -73.47601, + 45.48819 + ], + [ + -73.475749, + 45.488011 + ], + [ + -73.475597, + 45.487907 + ], + [ + -73.475267, + 45.487681 + ], + [ + -73.475065, + 45.487542 + ], + [ + -73.475345, + 45.487344 + ], + [ + -73.475741, + 45.487061 + ], + [ + -73.475863, + 45.486966 + ], + [ + -73.475994, + 45.486863 + ], + [ + -73.475578, + 45.486575 + ], + [ + -73.475325, + 45.486402 + ], + [ + -73.475157, + 45.486287 + ], + [ + -73.475583, + 45.485981 + ], + [ + -73.475956, + 45.48572 + ], + [ + -73.475621, + 45.485472 + ], + [ + -73.475481, + 45.485369 + ], + [ + -73.475135, + 45.485121 + ], + [ + -73.474818, + 45.484892 + ], + [ + -73.474649, + 45.484768 + ], + [ + -73.474566, + 45.484707 + ], + [ + -73.473747, + 45.484113 + ], + [ + -73.473062, + 45.483619 + ], + [ + -73.472948, + 45.483537 + ], + [ + -73.472033, + 45.482872 + ], + [ + -73.471834, + 45.482727 + ], + [ + -73.47134, + 45.482367 + ], + [ + -73.471082, + 45.482171 + ], + [ + -73.47091, + 45.482041 + ], + [ + -73.470805, + 45.481962 + ], + [ + -73.470742, + 45.481922 + ], + [ + -73.470609, + 45.481836 + ], + [ + -73.470436, + 45.481957 + ], + [ + -73.470271, + 45.48207 + ], + [ + -73.469956, + 45.482272 + ], + [ + -73.469608, + 45.48252 + ], + [ + -73.469293, + 45.482731 + ], + [ + -73.469261, + 45.482752 + ], + [ + -73.468943, + 45.48296 + ], + [ + -73.468655, + 45.483149 + ], + [ + -73.468621, + 45.483172 + ], + [ + -73.468282, + 45.483401 + ], + [ + -73.467378, + 45.484028 + ], + [ + -73.466985, + 45.484267 + ], + [ + -73.466778, + 45.484384 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466022, + 45.484682 + ], + [ + -73.465888, + 45.484747 + ], + [ + -73.465767, + 45.484792 + ], + [ + -73.465702, + 45.484807 + ], + [ + -73.465661, + 45.484807 + ], + [ + -73.465627, + 45.484802 + ], + [ + -73.4655, + 45.484766 + ], + [ + -73.464965, + 45.484574 + ], + [ + -73.464559, + 45.484417 + ], + [ + -73.464508, + 45.484399 + ], + [ + -73.464185, + 45.484291 + ], + [ + -73.463703, + 45.484155 + ], + [ + -73.463657, + 45.484142 + ], + [ + -73.46319, + 45.484029 + ], + [ + -73.462672, + 45.483908 + ], + [ + -73.462287, + 45.483831 + ], + [ + -73.462032, + 45.483791 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.46135, + 45.4837 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461197, + 45.484333 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.459559, + 45.485495 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.457885, + 45.486536 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.456941, + 45.487836 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456449, + 45.487901 + ], + [ + -73.456154, + 45.487865 + ], + [ + -73.455852, + 45.487802 + ], + [ + -73.455596, + 45.487748 + ], + [ + -73.455357, + 45.487675 + ], + [ + -73.455213, + 45.487621 + ], + [ + -73.454998, + 45.487531 + ], + [ + -73.454777, + 45.487423 + ], + [ + -73.454672, + 45.487356 + ], + [ + -73.454523, + 45.487261 + ], + [ + -73.454176, + 45.487527 + ], + [ + -73.453821, + 45.487792 + ], + [ + -73.452906, + 45.488462 + ] + ] + }, + "id": 323, + "properties": { + "id": "15fb4488-70ab-4ea6-a637-53166597f261", + "data": { + "gtfs": { + "shape_id": "602_1_A" + }, + "segments": [ + { + "distanceMeters": 137, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 646, + "travelTimeSeconds": 102 + }, + { + "distanceMeters": 378, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 353, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 413, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 481, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 447, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 548, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 399, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 372, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 26, + "travelTimeSeconds": 4 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 43, + "travelTimeSeconds": 7 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 1159, + "travelTimeSeconds": 183 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 402, + "travelTimeSeconds": 64 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 246, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 15622, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6651.5379629597555, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.35, + "travelTimeWithoutDwellTimesSeconds": 2460, + "operatingTimeWithLayoverTimeSeconds": 2706, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2460, + "operatingSpeedWithLayoverMetersPerSecond": 5.77, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.35 + }, + "mode": "bus", + "name": "École de l'Agora", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "4c755ece-2475-4915-941e-37859f0f391f", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "0b09b82c-ec97-406d-9f1c-690cc935b5ea", + "27330ef0-4c59-4e22-a044-51b9d43c9719", + "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "bc9b9243-e0ec-461a-9898-6eb69ecd511a", + "41d7b6d4-1fe4-44ed-a774-b005607fc59d", + "9f22d75f-cc66-4020-8804-7912f49950d8", + "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "4df7f34c-ec49-4d48-90b3-56f3faffc976", + "aa2b19e6-8fc9-4313-8ff2-0087861c575d", + "28d21225-939d-4260-9ed4-5c109f412ad9", + "be011751-8885-454f-b767-5c0f1402d83f", + "c6165892-3719-417f-8d25-92e65471b42c", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "f2aa277d-e5f8-429d-bc46-2a1c844da636", + "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", + "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", + "fc92d5a1-fe31-4274-9837-2686b4525030", + "528dcb9e-5a83-46d3-8e03-42692ca57a5a", + "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", + "1e48d359-2463-4fbd-b946-c0a530db4bbe", + "dc5fe0eb-b8cc-4186-82d3-6787360ae612", + "0a623471-271f-47f5-9a85-7feece2a3285", + "aa413165-9699-49b6-9dea-fa35bda8f373", + "54bbe390-ff6d-41d9-bd4b-1e4843d66512", + "7faed35b-7709-443d-b0ec-5f09ab018202", + "fa220212-b6b2-4456-934f-7248f9884444", + "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", + "fa220212-b6b2-4456-934f-7248f9884444", + "196681e4-c9e5-4a79-a3b1-ce225227e0aa", + "a2e6b668-43de-43be-8b1b-07b41b333c8d", + "f132c08e-1812-4b2f-84fb-340628d1ac39", + "ff721ee3-8729-47c1-80cd-7dd5e7142284", + "3040b262-0b20-4c40-9350-e484adfe1d60", + "3040b262-0b20-4c40-9350-e484adfe1d60", + "c4f08e33-183e-41cf-9f96-5985f148bd11", + "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", + "ac9a9c14-57c3-4a81-9316-ceca9586731d", + "1e205a49-fad6-428c-9d0c-b4018473837d", + "a5c03062-e324-4cb7-8c59-00c59a14b63e", + "3c04c568-5ef2-4b47-8d34-b0d175358d60", + "c229b499-645e-4877-8f57-0fc6de2a8d53", + "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", + "a4f163e1-b90e-4fc3-82f3-f03b3181860d", + "c24b91da-a4a3-4b28-b987-5726c6a01fdb", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "517a8299-e807-4040-8ccd-f417dda7338c" + ], + "stops": [], + "line_id": "db2ed6a6-f372-4b36-bb4f-1545b8cfbe98", + "segments": [ + 0, + 8, + 47, + 58, + 69, + 75, + 82, + 88, + 93, + 105, + 113, + 131, + 146, + 148, + 152, + 155, + 178, + 184, + 191, + 214, + 226, + 229, + 238, + 242, + 251, + 259, + 265, + 278, + 281, + 295, + 302, + 319, + 327, + 340, + 345, + 349, + 353, + 362, + 365, + 378, + 380, + 387, + 390, + 394, + 397, + 399, + 402, + 410, + 413, + 421, + 428, + 432, + 436, + 439, + 445, + 494, + 500, + 509 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 323, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.452109, + 45.488779 + ], + [ + -73.452059, + 45.488756 + ], + [ + -73.452026, + 45.48874 + ], + [ + -73.451864, + 45.488677 + ], + [ + -73.451663, + 45.488618 + ], + [ + -73.451471, + 45.48856 + ], + [ + -73.451142, + 45.48852 + ], + [ + -73.450753, + 45.488507 + ], + [ + -73.450564, + 45.488501 + ], + [ + -73.450532, + 45.488263 + ], + [ + -73.45047, + 45.488074 + ], + [ + -73.450345, + 45.487867 + ], + [ + -73.450187, + 45.48766 + ], + [ + -73.450004, + 45.487498 + ], + [ + -73.449781, + 45.487354 + ], + [ + -73.449483, + 45.487192 + ], + [ + -73.449234, + 45.487093 + ], + [ + -73.449121, + 45.487056 + ], + [ + -73.448338, + 45.486755 + ], + [ + -73.448148, + 45.486665 + ], + [ + -73.448011, + 45.486602 + ], + [ + -73.447211, + 45.486192 + ], + [ + -73.44682, + 45.485985 + ], + [ + -73.447123, + 45.485706 + ], + [ + -73.447283, + 45.485557 + ], + [ + -73.447356, + 45.48549 + ], + [ + -73.447536, + 45.485315 + ], + [ + -73.447867, + 45.484995 + ], + [ + -73.448287, + 45.48459 + ], + [ + -73.448552, + 45.484334 + ], + [ + -73.448747, + 45.484168 + ], + [ + -73.448891, + 45.484006 + ], + [ + -73.448947, + 45.483943 + ], + [ + -73.449046, + 45.483754 + ], + [ + -73.449223, + 45.483529 + ], + [ + -73.449352, + 45.483408 + ], + [ + -73.449874, + 45.483082 + ], + [ + -73.449978, + 45.483017 + ], + [ + -73.451449, + 45.482131 + ], + [ + -73.451778, + 45.481933 + ], + [ + -73.45215, + 45.481708 + ], + [ + -73.452851, + 45.48129 + ], + [ + -73.453668, + 45.481781 + ], + [ + -73.454023, + 45.481974 + ], + [ + -73.454266, + 45.482101 + ], + [ + -73.454494, + 45.482204 + ], + [ + -73.454893, + 45.482398 + ], + [ + -73.455361, + 45.482587 + ], + [ + -73.455562, + 45.482663 + ], + [ + -73.455798, + 45.482744 + ], + [ + -73.456376, + 45.48292 + ], + [ + -73.456963, + 45.483096 + ], + [ + -73.457696, + 45.483312 + ], + [ + -73.457948, + 45.48338 + ], + [ + -73.45825, + 45.483452 + ], + [ + -73.458477, + 45.483499 + ], + [ + -73.458491, + 45.483501 + ], + [ + -73.458691, + 45.483542 + ], + [ + -73.458995, + 45.483592 + ], + [ + -73.459974, + 45.483704 + ], + [ + -73.46004, + 45.48371 + ], + [ + -73.460548, + 45.483757 + ], + [ + -73.460806, + 45.483781 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.462585, + 45.484043 + ], + [ + -73.463416, + 45.484224 + ], + [ + -73.463639, + 45.484291 + ], + [ + -73.464599, + 45.48462 + ], + [ + -73.465244, + 45.484835 + ], + [ + -73.465443, + 45.484908 + ], + [ + -73.465586, + 45.484937 + ], + [ + -73.465724, + 45.484942 + ], + [ + -73.465848, + 45.484931 + ], + [ + -73.466018, + 45.484884 + ], + [ + -73.466121, + 45.484844 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466778, + 45.484384 + ], + [ + -73.46693, + 45.484298 + ], + [ + -73.466985, + 45.484267 + ], + [ + -73.467378, + 45.484028 + ], + [ + -73.468282, + 45.483401 + ], + [ + -73.468621, + 45.483172 + ], + [ + -73.468655, + 45.483149 + ], + [ + -73.468943, + 45.48296 + ], + [ + -73.469261, + 45.482752 + ], + [ + -73.469293, + 45.482731 + ], + [ + -73.469608, + 45.48252 + ], + [ + -73.469942, + 45.482282 + ], + [ + -73.469956, + 45.482272 + ], + [ + -73.470271, + 45.48207 + ], + [ + -73.470282, + 45.482063 + ], + [ + -73.470436, + 45.481957 + ], + [ + -73.470609, + 45.481836 + ], + [ + -73.470742, + 45.481922 + ], + [ + -73.470805, + 45.481962 + ], + [ + -73.47134, + 45.482367 + ], + [ + -73.471834, + 45.482727 + ], + [ + -73.472033, + 45.482872 + ], + [ + -73.472851, + 45.483467 + ], + [ + -73.472948, + 45.483537 + ], + [ + -73.473747, + 45.484113 + ], + [ + -73.474492, + 45.484654 + ], + [ + -73.474566, + 45.484707 + ], + [ + -73.474818, + 45.484892 + ], + [ + -73.475135, + 45.485121 + ], + [ + -73.475481, + 45.485369 + ], + [ + -73.475677, + 45.485513 + ], + [ + -73.475956, + 45.48572 + ], + [ + -73.475583, + 45.485981 + ], + [ + -73.475157, + 45.486287 + ], + [ + -73.475578, + 45.486575 + ], + [ + -73.475858, + 45.486769 + ], + [ + -73.475994, + 45.486863 + ], + [ + -73.475863, + 45.486966 + ], + [ + -73.475741, + 45.487061 + ], + [ + -73.475468, + 45.487256 + ], + [ + -73.475345, + 45.487344 + ], + [ + -73.475065, + 45.487542 + ], + [ + -73.475417, + 45.487783 + ], + [ + -73.475597, + 45.487907 + ], + [ + -73.47601, + 45.48819 + ], + [ + -73.476259, + 45.488424 + ], + [ + -73.476492, + 45.488586 + ], + [ + -73.476696, + 45.48846 + ], + [ + -73.476727, + 45.488444 + ], + [ + -73.476789, + 45.488411 + ], + [ + -73.478723, + 45.489788 + ], + [ + -73.479108, + 45.490063 + ], + [ + -73.479214, + 45.490139 + ], + [ + -73.481409, + 45.491696 + ], + [ + -73.481442, + 45.491718 + ], + [ + -73.481545, + 45.491786 + ], + [ + -73.481575, + 45.491826 + ], + [ + -73.481586, + 45.49184 + ], + [ + -73.481557, + 45.491867 + ], + [ + -73.481502, + 45.491907 + ], + [ + -73.481312, + 45.492051 + ], + [ + -73.481761, + 45.492348 + ], + [ + -73.483473, + 45.493476 + ], + [ + -73.48393, + 45.493777 + ], + [ + -73.483989, + 45.493816 + ], + [ + -73.48407, + 45.49387 + ], + [ + -73.484957, + 45.493231 + ], + [ + -73.486013, + 45.492487 + ], + [ + -73.486068, + 45.492448 + ], + [ + -73.486525, + 45.49212 + ], + [ + -73.486777, + 45.49194 + ], + [ + -73.486792, + 45.491931 + ], + [ + -73.487065, + 45.491769 + ], + [ + -73.487289, + 45.491629 + ], + [ + -73.487383, + 45.491571 + ], + [ + -73.48867, + 45.490802 + ], + [ + -73.489402, + 45.490361 + ], + [ + -73.489454, + 45.490329 + ], + [ + -73.49048, + 45.489717 + ], + [ + -73.49127, + 45.489238 + ], + [ + -73.491548, + 45.48907 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.491557, + 45.488939 + ], + [ + -73.49119, + 45.488677 + ], + [ + -73.490801, + 45.488399 + ], + [ + -73.489411, + 45.487405 + ], + [ + -73.489344, + 45.487355 + ], + [ + -73.489048, + 45.487135 + ], + [ + -73.488568, + 45.486806 + ], + [ + -73.487831, + 45.486284 + ], + [ + -73.487126, + 45.485784 + ], + [ + -73.487051, + 45.485731 + ], + [ + -73.486783, + 45.485533 + ], + [ + -73.486446, + 45.485294 + ], + [ + -73.485807, + 45.484835 + ], + [ + -73.485416, + 45.484552 + ], + [ + -73.484988, + 45.484246 + ], + [ + -73.484263, + 45.483728 + ], + [ + -73.483637, + 45.483278 + ], + [ + -73.483483, + 45.483175 + ], + [ + -73.483337, + 45.483067 + ], + [ + -73.482999, + 45.482824 + ], + [ + -73.482644, + 45.48257 + ], + [ + -73.482188, + 45.482243 + ], + [ + -73.482091, + 45.482176 + ], + [ + -73.481995, + 45.482108 + ], + [ + -73.481822, + 45.481987 + ], + [ + -73.481685, + 45.481886 + ], + [ + -73.48159, + 45.481816 + ], + [ + -73.481483, + 45.481744 + ], + [ + -73.481141, + 45.481496 + ], + [ + -73.480755, + 45.481226 + ], + [ + -73.480428, + 45.480974 + ], + [ + -73.479961, + 45.480655 + ], + [ + -73.479511, + 45.480326 + ], + [ + -73.479422, + 45.480272 + ], + [ + -73.47933, + 45.4802 + ], + [ + -73.479219, + 45.480121 + ], + [ + -73.478515, + 45.47962 + ], + [ + -73.47809, + 45.479311 + ], + [ + -73.477833, + 45.479125 + ], + [ + -73.477798, + 45.479064 + ], + [ + -73.477757, + 45.479003 + ], + [ + -73.477866, + 45.478954 + ], + [ + -73.477979, + 45.478918 + ], + [ + -73.478075, + 45.478904 + ], + [ + -73.478146, + 45.478904 + ], + [ + -73.478298, + 45.478904 + ], + [ + -73.478426, + 45.478904 + ], + [ + -73.478594, + 45.478908 + ], + [ + -73.47897, + 45.478916 + ], + [ + -73.479078, + 45.478918 + ], + [ + -73.479175, + 45.478922 + ], + [ + -73.479295, + 45.478922 + ], + [ + -73.479623, + 45.478936 + ], + [ + -73.480089, + 45.478949 + ], + [ + -73.481631, + 45.478977 + ], + [ + -73.482205, + 45.478986 + ], + [ + -73.482402, + 45.47899 + ], + [ + -73.482631, + 45.478995 + ], + [ + -73.482756, + 45.478997 + ], + [ + -73.484917, + 45.479027 + ], + [ + -73.485227, + 45.479031 + ], + [ + -73.485584, + 45.479045 + ], + [ + -73.485771, + 45.479058 + ], + [ + -73.486149, + 45.479058 + ], + [ + -73.486168, + 45.479057 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486426, + 45.478914 + ], + [ + -73.486429, + 45.478851 + ], + [ + -73.486457, + 45.478743 + ], + [ + -73.486515, + 45.478644 + ], + [ + -73.486599, + 45.478568 + ], + [ + -73.487334, + 45.478055 + ], + [ + -73.48763, + 45.47786 + ], + [ + -73.487867, + 45.477704 + ], + [ + -73.48804, + 45.477592 + ], + [ + -73.488143, + 45.477497 + ], + [ + -73.488191, + 45.477434 + ], + [ + -73.48823, + 45.477367 + ], + [ + -73.488245, + 45.477317 + ], + [ + -73.488261, + 45.477254 + ], + [ + -73.488221, + 45.47702 + ], + [ + -73.488146, + 45.476629 + ], + [ + -73.488047, + 45.476044 + ], + [ + -73.487974, + 45.475666 + ], + [ + -73.487958, + 45.475585 + ], + [ + -73.487905, + 45.475414 + ], + [ + -73.48781, + 45.475189 + ], + [ + -73.487773, + 45.475113 + ], + [ + -73.487674, + 45.474955 + ], + [ + -73.487579, + 45.47482 + ], + [ + -73.487539, + 45.474769 + ], + [ + -73.487467, + 45.474676 + ], + [ + -73.487385, + 45.474582 + ], + [ + -73.486897, + 45.473997 + ], + [ + -73.486669, + 45.473713 + ], + [ + -73.486502, + 45.473522 + ], + [ + -73.486179, + 45.473152 + ], + [ + -73.486151, + 45.473119 + ], + [ + -73.486718, + 45.472935 + ], + [ + -73.486787, + 45.472912 + ], + [ + -73.488142, + 45.472472 + ], + [ + -73.488555, + 45.472341 + ], + [ + -73.488966, + 45.472197 + ], + [ + -73.489081, + 45.472161 + ], + [ + -73.489198, + 45.472121 + ], + [ + -73.489607, + 45.471977 + ], + [ + -73.489896, + 45.47185 + ], + [ + -73.490057, + 45.471779 + ], + [ + -73.490819, + 45.472701 + ], + [ + -73.491157, + 45.473099 + ], + [ + -73.491514, + 45.47352 + ], + [ + -73.491842, + 45.473885 + ], + [ + -73.491964, + 45.474047 + ], + [ + -73.492221, + 45.474321 + ], + [ + -73.4924, + 45.474429 + ], + [ + -73.492566, + 45.474483 + ], + [ + -73.492833, + 45.474564 + ], + [ + -73.492987, + 45.474582 + ], + [ + -73.493409, + 45.474605 + ], + [ + -73.49348, + 45.474609 + ], + [ + -73.494447, + 45.474632 + ], + [ + -73.494958, + 45.47465 + ], + [ + -73.495392, + 45.474673 + ], + [ + -73.495455, + 45.474677 + ], + [ + -73.496473, + 45.474726 + ], + [ + -73.497243, + 45.474807 + ], + [ + -73.498064, + 45.474821 + ], + [ + -73.498752, + 45.476086 + ], + [ + -73.498798, + 45.476171 + ], + [ + -73.499541, + 45.477511 + ], + [ + -73.499719, + 45.477795 + ], + [ + -73.499782, + 45.477895 + ], + [ + -73.49991, + 45.478097 + ], + [ + -73.499973, + 45.478195 + ], + [ + -73.500209, + 45.478682 + ], + [ + -73.500175, + 45.478743 + ], + [ + -73.500117, + 45.478833 + ], + [ + -73.500109, + 45.478859 + ], + [ + -73.500134, + 45.478943 + ], + [ + -73.500209, + 45.479027 + ], + [ + -73.500272, + 45.479047 + ], + [ + -73.500354, + 45.479074 + ], + [ + -73.500404, + 45.479087 + ], + [ + -73.500422, + 45.479099 + ], + [ + -73.500588, + 45.479205 + ], + [ + -73.501159, + 45.479818 + ], + [ + -73.501455, + 45.480118 + ], + [ + -73.50163, + 45.480263 + ], + [ + -73.501828, + 45.48048 + ], + [ + -73.502032, + 45.480704 + ], + [ + -73.502676, + 45.481412 + ], + [ + -73.502806, + 45.48156 + ], + [ + -73.503272, + 45.482092 + ], + [ + -73.50345, + 45.482308 + ], + [ + -73.503512, + 45.48238 + ], + [ + -73.503563, + 45.482449 + ], + [ + -73.503598, + 45.482497 + ], + [ + -73.504141, + 45.483117 + ], + [ + -73.504614, + 45.483657 + ], + [ + -73.504846, + 45.483915 + ], + [ + -73.504857, + 45.483927 + ], + [ + -73.504924, + 45.483995 + ], + [ + -73.504939, + 45.484007 + ], + [ + -73.505108, + 45.484152 + ], + [ + -73.505242, + 45.484242 + ], + [ + -73.505364, + 45.484314 + ], + [ + -73.505521, + 45.484395 + ], + [ + -73.505663, + 45.484463 + ], + [ + -73.505851, + 45.484535 + ], + [ + -73.505993, + 45.484584 + ], + [ + -73.506624, + 45.484814 + ], + [ + -73.506746, + 45.484863 + ], + [ + -73.506951, + 45.484962 + ], + [ + -73.507115, + 45.485056 + ], + [ + -73.507185, + 45.485097 + ], + [ + -73.507329, + 45.4852 + ], + [ + -73.507431, + 45.485295 + ], + [ + -73.507518, + 45.485367 + ], + [ + -73.50762, + 45.485484 + ], + [ + -73.507754, + 45.485677 + ], + [ + -73.508077, + 45.486145 + ], + [ + -73.508225, + 45.48637 + ], + [ + -73.508359, + 45.486581 + ], + [ + -73.508385, + 45.486622 + ], + [ + -73.508489, + 45.486784 + ], + [ + -73.508543, + 45.486852 + ], + [ + -73.509603, + 45.488385 + ], + [ + -73.509675, + 45.488489 + ], + [ + -73.509764, + 45.488615 + ], + [ + -73.509971, + 45.488912 + ], + [ + -73.510813, + 45.490118 + ], + [ + -73.510831, + 45.490145 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.512404, + 45.492412 + ], + [ + -73.512427, + 45.492458 + ], + [ + -73.51245, + 45.492507 + ], + [ + -73.512764, + 45.493074 + ], + [ + -73.512921, + 45.493393 + ], + [ + -73.512971, + 45.493496 + ], + [ + -73.512984, + 45.493515 + ], + [ + -73.513094, + 45.493766 + ], + [ + -73.513261, + 45.494078 + ], + [ + -73.513283, + 45.494149 + ], + [ + -73.513342, + 45.494287 + ], + [ + -73.513459, + 45.494626 + ], + [ + -73.513505, + 45.494783 + ], + [ + -73.513561, + 45.49499 + ], + [ + -73.513604, + 45.495179 + ], + [ + -73.513621, + 45.495251 + ], + [ + -73.513692, + 45.495557 + ], + [ + -73.513773, + 45.495922 + ], + [ + -73.513786, + 45.49598 + ], + [ + -73.51384, + 45.496187 + ], + [ + -73.513899, + 45.496425 + ], + [ + -73.513925, + 45.49652 + ], + [ + -73.513974, + 45.496614 + ], + [ + -73.514009, + 45.496686 + ], + [ + -73.514054, + 45.496749 + ], + [ + -73.514104, + 45.49683 + ], + [ + -73.514166, + 45.496911 + ], + [ + -73.514219, + 45.49697 + ], + [ + -73.514552, + 45.497478 + ], + [ + -73.514769, + 45.497838 + ], + [ + -73.515085, + 45.498391 + ], + [ + -73.51517, + 45.49854 + ], + [ + -73.515561, + 45.499247 + ], + [ + -73.515623, + 45.499359 + ], + [ + -73.515674, + 45.499453 + ], + [ + -73.515873, + 45.499831 + ], + [ + -73.515977, + 45.500074 + ], + [ + -73.515989, + 45.500104 + ], + [ + -73.516146, + 45.500501 + ], + [ + -73.516373, + 45.50114 + ], + [ + -73.51647, + 45.501401 + ], + [ + -73.516585, + 45.501693 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517436, + 45.505267 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517232, + 45.507282 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.51756, + 45.509215 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517796, + 45.511428 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517596, + 45.51325 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518267, + 45.515315 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518976, + 45.516748 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.519529, + 45.517692 + ], + [ + -73.51974, + 45.518057 + ], + [ + -73.519988, + 45.518525 + ], + [ + -73.520045, + 45.518687 + ], + [ + -73.520069, + 45.518799 + ], + [ + -73.520101, + 45.518988 + ], + [ + -73.520105, + 45.519239 + ], + [ + -73.520113, + 45.519732 + ], + [ + -73.520115, + 45.519865 + ], + [ + -73.520208, + 45.520304 + ], + [ + -73.520224, + 45.520404 + ], + [ + -73.52026, + 45.520614 + ], + [ + -73.520284, + 45.520743 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 324, + "properties": { + "id": "d9e1e811-dd84-4781-afaa-1e9bb848f8c7", + "data": { + "gtfs": { + "shape_id": "602_2_R" + }, + "segments": [ + { + "distanceMeters": 112, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 631, + "travelTimeSeconds": 97 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 782, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 549, + "travelTimeSeconds": 85 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 330, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 368, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 53, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 360, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 590, + "travelTimeSeconds": 91 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 405, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 397, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 348, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 768, + "travelTimeSeconds": 119 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 246, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 15938, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6651.5379629597555, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.48, + "travelTimeWithoutDwellTimesSeconds": 2460, + "operatingTimeWithLayoverTimeSeconds": 2706, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2460, + "operatingSpeedWithLayoverMetersPerSecond": 5.89, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.48 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "517a8299-e807-4040-8ccd-f417dda7338c", + "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", + "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", + "4d67ff32-8baa-4f46-bb29-fa3253415875", + "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", + "159a0fe9-bedb-40f2-9806-32ab49594978", + "a4f163e1-b90e-4fc3-82f3-f03b3181860d", + "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", + "c229b499-645e-4877-8f57-0fc6de2a8d53", + "3c04c568-5ef2-4b47-8d34-b0d175358d60", + "a5c03062-e324-4cb7-8c59-00c59a14b63e", + "1e205a49-fad6-428c-9d0c-b4018473837d", + "ac9a9c14-57c3-4a81-9316-ceca9586731d", + "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", + "c4f08e33-183e-41cf-9f96-5985f148bd11", + "3040b262-0b20-4c40-9350-e484adfe1d60", + "ff721ee3-8729-47c1-80cd-7dd5e7142284", + "f132c08e-1812-4b2f-84fb-340628d1ac39", + "5573bb7b-19f0-4d2b-a66d-9f04f87c1987", + "1bded3cb-51a3-422d-8815-a9027023991e", + "54bbe390-ff6d-41d9-bd4b-1e4843d66512", + "aa413165-9699-49b6-9dea-fa35bda8f373", + "0a623471-271f-47f5-9a85-7feece2a3285", + "dc5fe0eb-b8cc-4186-82d3-6787360ae612", + "1e48d359-2463-4fbd-b946-c0a530db4bbe", + "c46257ee-b29f-4a62-9447-95eb1e19c941", + "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", + "528dcb9e-5a83-46d3-8e03-42692ca57a5a", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", + "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", + "6e4c328c-6fba-4e81-b589-59318e11a37a", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "c6165892-3719-417f-8d25-92e65471b42c", + "be011751-8885-454f-b767-5c0f1402d83f", + "28d21225-939d-4260-9ed4-5c109f412ad9", + "aa2b19e6-8fc9-4313-8ff2-0087861c575d", + "4df7f34c-ec49-4d48-90b3-56f3faffc976", + "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "9f22d75f-cc66-4020-8804-7912f49950d8", + "41d7b6d4-1fe4-44ed-a774-b005607fc59d", + "bc9b9243-e0ec-461a-9898-6eb69ecd511a", + "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "114aaaad-d40e-4930-853f-ef5cebdd299f", + "0b09b82c-ec97-406d-9f1c-690cc935b5ea", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "2259b112-2e60-4bcc-ad14-9e0e577f2909", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "db2ed6a6-f372-4b36-bb4f-1545b8cfbe98", + "segments": [ + 0, + 7, + 28, + 36, + 39, + 61, + 80, + 93, + 101, + 104, + 109, + 114, + 121, + 127, + 130, + 133, + 142, + 146, + 152, + 155, + 158, + 165, + 169, + 175, + 186, + 196, + 198, + 209, + 217, + 225, + 234, + 245, + 252, + 258, + 260, + 268, + 271, + 280, + 284, + 289, + 311, + 317, + 324, + 344, + 348, + 353, + 356, + 372, + 387, + 396, + 409, + 415, + 420, + 426, + 432, + 440, + 447, + 456 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 324, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.438355, + 45.478767 + ], + [ + -73.43848, + 45.478674 + ], + [ + -73.438955, + 45.478323 + ], + [ + -73.440953, + 45.476843 + ], + [ + -73.441038, + 45.476781 + ], + [ + -73.443316, + 45.475097 + ], + [ + -73.443381, + 45.47505 + ], + [ + -73.443474, + 45.474978 + ], + [ + -73.443515, + 45.474946 + ], + [ + -73.443609, + 45.474874 + ], + [ + -73.44285, + 45.474357 + ], + [ + -73.441167, + 45.473205 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.440574, + 45.472807 + ], + [ + -73.439193, + 45.471877 + ], + [ + -73.438164, + 45.471184 + ], + [ + -73.438035, + 45.471097 + ], + [ + -73.435601, + 45.469489 + ], + [ + -73.435506, + 45.469426 + ], + [ + -73.434531, + 45.46878 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.434426, + 45.468557 + ], + [ + -73.434574, + 45.46844 + ], + [ + -73.434595, + 45.468426 + ], + [ + -73.434654, + 45.468386 + ], + [ + -73.434706, + 45.46835 + ], + [ + -73.43479, + 45.468319 + ], + [ + -73.434953, + 45.468251 + ], + [ + -73.435895, + 45.468018 + ], + [ + -73.437587, + 45.467584 + ], + [ + -73.437909, + 45.467502 + ], + [ + -73.438637, + 45.467322 + ], + [ + -73.438692, + 45.467309 + ], + [ + -73.439001, + 45.46721 + ], + [ + -73.439742, + 45.466711 + ], + [ + -73.439775, + 45.466686 + ], + [ + -73.440041, + 45.46648 + ], + [ + -73.440337, + 45.466252 + ], + [ + -73.440631, + 45.466035 + ], + [ + -73.440976, + 45.46578 + ], + [ + -73.441167, + 45.465915 + ], + [ + -73.441736, + 45.466257 + ], + [ + -73.442013, + 45.466357 + ], + [ + -73.442153, + 45.466404 + ], + [ + -73.442317, + 45.46646 + ], + [ + -73.442367, + 45.466471 + ], + [ + -73.442596, + 45.466523 + ], + [ + -73.442918, + 45.466614 + ], + [ + -73.44316, + 45.466708 + ], + [ + -73.4434, + 45.466798 + ], + [ + -73.443571, + 45.466875 + ], + [ + -73.443775, + 45.466978 + ], + [ + -73.44395, + 45.467091 + ], + [ + -73.44423, + 45.467276 + ], + [ + -73.44435, + 45.46737 + ], + [ + -73.44443, + 45.467451 + ], + [ + -73.444451, + 45.467471 + ], + [ + -73.444535, + 45.46755 + ], + [ + -73.445104, + 45.468072 + ], + [ + -73.445679, + 45.468635 + ], + [ + -73.446159, + 45.469088 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.447066, + 45.468996 + ], + [ + -73.4474, + 45.468829 + ], + [ + -73.447822, + 45.468645 + ], + [ + -73.448427, + 45.468407 + ], + [ + -73.449383, + 45.468079 + ], + [ + -73.449747, + 45.467955 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450233, + 45.467787 + ], + [ + -73.451014, + 45.467517 + ], + [ + -73.451685, + 45.467271 + ], + [ + -73.451729, + 45.467255 + ], + [ + -73.451774, + 45.467238 + ], + [ + -73.452541, + 45.466973 + ], + [ + -73.452657, + 45.466933 + ], + [ + -73.453014, + 45.466803 + ], + [ + -73.45314, + 45.466749 + ], + [ + -73.453548, + 45.466537 + ], + [ + -73.453946, + 45.466304 + ], + [ + -73.454693, + 45.465786 + ], + [ + -73.454701, + 45.465781 + ], + [ + -73.45516, + 45.46545 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.455952, + 45.465079 + ], + [ + -73.456078, + 45.465023 + ], + [ + -73.456262, + 45.464907 + ], + [ + -73.456407, + 45.464824 + ], + [ + -73.456567, + 45.464772 + ], + [ + -73.456586, + 45.464769 + ], + [ + -73.456717, + 45.464744 + ], + [ + -73.456888, + 45.464733 + ], + [ + -73.457035, + 45.464719 + ], + [ + -73.45718, + 45.464674 + ], + [ + -73.457301, + 45.4646 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.458747, + 45.465455 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.460094, + 45.466428 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.460554, + 45.466805 + ], + [ + -73.460661, + 45.466886 + ], + [ + -73.461028, + 45.467148 + ], + [ + -73.46125, + 45.467305 + ], + [ + -73.461806, + 45.46771 + ], + [ + -73.461905, + 45.467783 + ], + [ + -73.461978, + 45.467836 + ], + [ + -73.462611, + 45.468268 + ], + [ + -73.462995, + 45.468567 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463833, + 45.469169 + ], + [ + -73.464474, + 45.469628 + ], + [ + -73.464826, + 45.469886 + ], + [ + -73.465113, + 45.470096 + ], + [ + -73.465778, + 45.470582 + ], + [ + -73.46629, + 45.470955 + ], + [ + -73.466387, + 45.471026 + ], + [ + -73.466451, + 45.471073 + ], + [ + -73.465987, + 45.471393 + ], + [ + -73.465434, + 45.471774 + ], + [ + -73.464145, + 45.472641 + ], + [ + -73.464089, + 45.472678 + ], + [ + -73.462985, + 45.473456 + ], + [ + -73.462597, + 45.473708 + ], + [ + -73.462087, + 45.474055 + ], + [ + -73.461842, + 45.474222 + ], + [ + -73.461655, + 45.474349 + ], + [ + -73.4615, + 45.474454 + ], + [ + -73.461823, + 45.474666 + ], + [ + -73.462818, + 45.475107 + ], + [ + -73.462895, + 45.475142 + ], + [ + -73.463529, + 45.475427 + ], + [ + -73.463948, + 45.475607 + ], + [ + -73.464305, + 45.475858 + ], + [ + -73.464383, + 45.475913 + ], + [ + -73.462932, + 45.476894 + ], + [ + -73.462832, + 45.476961 + ], + [ + -73.462353, + 45.477289 + ], + [ + -73.461419, + 45.477929 + ], + [ + -73.461335, + 45.477986 + ], + [ + -73.461943, + 45.478433 + ], + [ + -73.462028, + 45.478495 + ], + [ + -73.461029, + 45.47917 + ], + [ + -73.46017, + 45.47975 + ], + [ + -73.460875, + 45.480222 + ], + [ + -73.461043, + 45.480335 + ], + [ + -73.457238, + 45.48291 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.456963, + 45.483096 + ], + [ + -73.457344, + 45.483208 + ], + [ + -73.457696, + 45.483312 + ], + [ + -73.457948, + 45.48338 + ], + [ + -73.45825, + 45.483452 + ], + [ + -73.458477, + 45.483499 + ], + [ + -73.458491, + 45.483501 + ], + [ + -73.458691, + 45.483542 + ], + [ + -73.458995, + 45.483592 + ], + [ + -73.459974, + 45.483704 + ], + [ + -73.46004, + 45.48371 + ], + [ + -73.460526, + 45.483755 + ], + [ + -73.460806, + 45.483781 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.459556, + 45.485498 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.457882, + 45.486538 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.45694, + 45.487838 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456449, + 45.487901 + ], + [ + -73.456154, + 45.487865 + ], + [ + -73.455852, + 45.487802 + ], + [ + -73.455596, + 45.487748 + ], + [ + -73.455357, + 45.487675 + ], + [ + -73.455213, + 45.487621 + ], + [ + -73.454998, + 45.487531 + ], + [ + -73.454777, + 45.487423 + ], + [ + -73.454672, + 45.487356 + ], + [ + -73.454523, + 45.487261 + ], + [ + -73.454176, + 45.487527 + ], + [ + -73.453821, + 45.487792 + ], + [ + -73.452906, + 45.488462 + ] + ] + }, + "id": 325, + "properties": { + "id": "0ce11888-ae3e-4ef7-b76c-d09773f95b58", + "data": { + "gtfs": { + "shape_id": "604_1_A" + }, + "segments": [ + { + "distanceMeters": 295, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 55, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 69, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 78, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 431, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 402, + "travelTimeSeconds": 66 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8148, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 1552.1510420772183, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.17, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 5.43, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.17 + }, + "mode": "bus", + "name": "École de l'Agora", + "color": "#A32638", + "nodes": [ + "cfc3e1d1-58b4-4975-b310-259719029f69", + "3753be88-b479-4ca1-bd8a-5ea694207952", + "d6d99976-b155-4a29-b088-e41bf69a502a", + "014d61e3-acfc-41f6-b78a-5c2178c073b1", + "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", + "14e293a6-352a-4156-8578-66d0b5bdcc1f", + "62558b4d-75af-4b04-8040-a30de5a89658", + "988c86da-04eb-4067-b650-f13c447b17e7", + "4827a17d-8dc9-4cbd-8430-3334ebece64a", + "504cb53f-f1f4-46f2-81f5-f99fef8227fd", + "966472c1-4384-4d94-92f7-48afa023de51", + "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "4fc83229-a15e-48e1-aa4f-fae0073dacf9", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "01153fa0-59fe-4f77-8e46-e418296b526d", + "977065eb-9054-495e-befc-5f3b6e0e6046", + "42f48eea-ee59-46f6-9c43-4b63100a50dc", + "156c412f-0b84-4b14-a73e-e1d07d0b148d", + "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", + "c467599b-2164-4b14-b9ca-8960936bda58", + "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", + "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", + "4122212c-2ecd-4db2-a305-20f02711d17b", + "9f622393-7da9-4ff8-9bda-12008512c7ed", + "10c2e9e3-14c8-465a-917c-28c8d9977609", + "fd67ddde-e938-481c-8721-79fa136304ae", + "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", + "c24b91da-a4a3-4b28-b987-5726c6a01fdb", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "517a8299-e807-4040-8ccd-f417dda7338c" + ], + "stops": [], + "line_id": "d16bb5d3-aa78-4c58-a6ba-dd96c5c1d20b", + "segments": [ + 0, + 3, + 5, + 11, + 16, + 18, + 20, + 24, + 30, + 37, + 44, + 57, + 61, + 69, + 76, + 83, + 101, + 103, + 110, + 113, + 118, + 121, + 124, + 126, + 132, + 139, + 141, + 144, + 146, + 150, + 152, + 165, + 177, + 183, + 192 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 325, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.452109, + 45.488779 + ], + [ + -73.452059, + 45.488756 + ], + [ + -73.452026, + 45.48874 + ], + [ + -73.451864, + 45.488677 + ], + [ + -73.451663, + 45.488618 + ], + [ + -73.451471, + 45.48856 + ], + [ + -73.451142, + 45.48852 + ], + [ + -73.450754, + 45.488507 + ], + [ + -73.450564, + 45.488501 + ], + [ + -73.450532, + 45.488263 + ], + [ + -73.45047, + 45.488074 + ], + [ + -73.450345, + 45.487867 + ], + [ + -73.450187, + 45.48766 + ], + [ + -73.450004, + 45.487498 + ], + [ + -73.449781, + 45.487354 + ], + [ + -73.449483, + 45.487192 + ], + [ + -73.449234, + 45.487093 + ], + [ + -73.449121, + 45.487056 + ], + [ + -73.448338, + 45.486755 + ], + [ + -73.448148, + 45.486665 + ], + [ + -73.448011, + 45.486602 + ], + [ + -73.447211, + 45.486192 + ], + [ + -73.44682, + 45.485985 + ], + [ + -73.446708, + 45.485926 + ], + [ + -73.446501, + 45.486123 + ], + [ + -73.445795, + 45.486794 + ], + [ + -73.445654, + 45.486915 + ], + [ + -73.445524, + 45.487041 + ], + [ + -73.445408, + 45.487167 + ], + [ + -73.445364, + 45.487224 + ], + [ + -73.445264, + 45.487356 + ], + [ + -73.445129, + 45.48732 + ], + [ + -73.444962, + 45.487262 + ], + [ + -73.444849, + 45.487215 + ], + [ + -73.444731, + 45.487167 + ], + [ + -73.444565, + 45.487086 + ], + [ + -73.444194, + 45.486807 + ], + [ + -73.443808, + 45.486496 + ], + [ + -73.443706, + 45.486415 + ], + [ + -73.44336, + 45.486118 + ], + [ + -73.44263, + 45.485518 + ], + [ + -73.442528, + 45.485434 + ], + [ + -73.441754, + 45.484812 + ], + [ + -73.440975, + 45.484194 + ], + [ + -73.440887, + 45.484124 + ], + [ + -73.440245, + 45.483633 + ], + [ + -73.43964, + 45.483201 + ], + [ + -73.43915, + 45.48282 + ], + [ + -73.439083, + 45.482768 + ], + [ + -73.438464, + 45.482318 + ], + [ + -73.437635, + 45.481749 + ], + [ + -73.437512, + 45.481665 + ], + [ + -73.437014, + 45.481332 + ], + [ + -73.436034, + 45.480661 + ], + [ + -73.435909, + 45.480575 + ], + [ + -73.436743, + 45.479964 + ], + [ + -73.438345, + 45.478774 + ], + [ + -73.438355, + 45.478767 + ], + [ + -73.43848, + 45.478674 + ], + [ + -73.438955, + 45.478323 + ], + [ + -73.440952, + 45.476844 + ], + [ + -73.441038, + 45.476781 + ], + [ + -73.443315, + 45.475098 + ], + [ + -73.443381, + 45.47505 + ], + [ + -73.443474, + 45.474978 + ], + [ + -73.443515, + 45.474946 + ], + [ + -73.443609, + 45.474874 + ], + [ + -73.44285, + 45.474357 + ], + [ + -73.441177, + 45.473212 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.440574, + 45.472807 + ], + [ + -73.439193, + 45.471877 + ], + [ + -73.438165, + 45.471184 + ], + [ + -73.438035, + 45.471097 + ], + [ + -73.435602, + 45.46949 + ], + [ + -73.435506, + 45.469426 + ], + [ + -73.434541, + 45.468786 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.434426, + 45.468557 + ], + [ + -73.434574, + 45.46844 + ], + [ + -73.434595, + 45.468426 + ], + [ + -73.434654, + 45.468386 + ], + [ + -73.434706, + 45.46835 + ], + [ + -73.43479, + 45.468319 + ], + [ + -73.434953, + 45.468251 + ], + [ + -73.435895, + 45.468018 + ], + [ + -73.437587, + 45.467584 + ], + [ + -73.437909, + 45.467502 + ], + [ + -73.438637, + 45.467322 + ], + [ + -73.438692, + 45.467309 + ], + [ + -73.439001, + 45.46721 + ], + [ + -73.439742, + 45.466711 + ], + [ + -73.439775, + 45.466686 + ], + [ + -73.440041, + 45.46648 + ], + [ + -73.440337, + 45.466252 + ], + [ + -73.440631, + 45.466035 + ], + [ + -73.440976, + 45.46578 + ], + [ + -73.441167, + 45.465915 + ], + [ + -73.441736, + 45.466257 + ], + [ + -73.442013, + 45.466357 + ], + [ + -73.442154, + 45.466405 + ], + [ + -73.442317, + 45.46646 + ], + [ + -73.442367, + 45.466471 + ], + [ + -73.442596, + 45.466523 + ], + [ + -73.442918, + 45.466614 + ], + [ + -73.44316, + 45.466708 + ], + [ + -73.4434, + 45.466798 + ], + [ + -73.443571, + 45.466875 + ], + [ + -73.443775, + 45.466978 + ], + [ + -73.44395, + 45.467091 + ], + [ + -73.44423, + 45.467276 + ], + [ + -73.44435, + 45.46737 + ], + [ + -73.44443, + 45.467451 + ], + [ + -73.444452, + 45.467472 + ], + [ + -73.444535, + 45.46755 + ], + [ + -73.445104, + 45.468072 + ], + [ + -73.445679, + 45.468635 + ], + [ + -73.44616, + 45.469088 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.447066, + 45.468996 + ], + [ + -73.4474, + 45.468829 + ], + [ + -73.447822, + 45.468645 + ], + [ + -73.448427, + 45.468407 + ], + [ + -73.449383, + 45.468079 + ], + [ + -73.449749, + 45.467954 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450233, + 45.467787 + ], + [ + -73.451014, + 45.467517 + ], + [ + -73.451685, + 45.467271 + ], + [ + -73.451729, + 45.467255 + ], + [ + -73.451774, + 45.467238 + ], + [ + -73.452543, + 45.466972 + ], + [ + -73.452657, + 45.466933 + ], + [ + -73.453014, + 45.466803 + ], + [ + -73.45314, + 45.466749 + ], + [ + -73.453548, + 45.466537 + ], + [ + -73.453946, + 45.466304 + ], + [ + -73.454693, + 45.465786 + ], + [ + -73.454702, + 45.46578 + ], + [ + -73.45516, + 45.46545 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.455952, + 45.465079 + ], + [ + -73.456078, + 45.465023 + ], + [ + -73.456262, + 45.464907 + ], + [ + -73.456407, + 45.464824 + ], + [ + -73.456567, + 45.464772 + ], + [ + -73.456586, + 45.464769 + ], + [ + -73.456717, + 45.464744 + ], + [ + -73.456888, + 45.464733 + ], + [ + -73.457035, + 45.464719 + ], + [ + -73.45718, + 45.464674 + ], + [ + -73.457301, + 45.4646 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.458749, + 45.465456 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.460096, + 45.466429 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.460554, + 45.466805 + ], + [ + -73.460661, + 45.466886 + ], + [ + -73.461028, + 45.467148 + ], + [ + -73.46125, + 45.467305 + ], + [ + -73.461806, + 45.46771 + ], + [ + -73.461907, + 45.467784 + ], + [ + -73.461978, + 45.467836 + ], + [ + -73.462611, + 45.468268 + ], + [ + -73.462997, + 45.468569 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463833, + 45.469169 + ], + [ + -73.464474, + 45.469628 + ], + [ + -73.464829, + 45.469888 + ], + [ + -73.465113, + 45.470096 + ], + [ + -73.465778, + 45.470582 + ], + [ + -73.466292, + 45.470957 + ], + [ + -73.466387, + 45.471026 + ], + [ + -73.466451, + 45.471073 + ], + [ + -73.465994, + 45.471388 + ], + [ + -73.465434, + 45.471774 + ], + [ + -73.464142, + 45.472642 + ], + [ + -73.464089, + 45.472678 + ], + [ + -73.462985, + 45.473456 + ], + [ + -73.462597, + 45.473708 + ], + [ + -73.462087, + 45.474055 + ], + [ + -73.461842, + 45.474222 + ], + [ + -73.461652, + 45.474351 + ], + [ + -73.4615, + 45.474454 + ], + [ + -73.461823, + 45.474666 + ], + [ + -73.462818, + 45.475107 + ], + [ + -73.462895, + 45.475142 + ], + [ + -73.463529, + 45.475427 + ], + [ + -73.463948, + 45.475607 + ], + [ + -73.464308, + 45.47586 + ], + [ + -73.464383, + 45.475913 + ], + [ + -73.462928, + 45.476896 + ], + [ + -73.462832, + 45.476961 + ], + [ + -73.462353, + 45.477289 + ], + [ + -73.461416, + 45.477931 + ], + [ + -73.461335, + 45.477986 + ], + [ + -73.461947, + 45.478436 + ], + [ + -73.462028, + 45.478495 + ], + [ + -73.461029, + 45.47917 + ], + [ + -73.46017, + 45.47975 + ], + [ + -73.460879, + 45.480225 + ], + [ + -73.461043, + 45.480335 + ], + [ + -73.457234, + 45.482913 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.456963, + 45.483096 + ], + [ + -73.457696, + 45.483312 + ], + [ + -73.457948, + 45.48338 + ], + [ + -73.45825, + 45.483452 + ], + [ + -73.458477, + 45.483499 + ], + [ + -73.458491, + 45.483501 + ], + [ + -73.458691, + 45.483542 + ], + [ + -73.458995, + 45.483592 + ], + [ + -73.459974, + 45.483704 + ], + [ + -73.46004, + 45.48371 + ], + [ + -73.460532, + 45.483756 + ] + ] + }, + "id": 326, + "properties": { + "id": "40069f1e-d73c-41a0-b641-51bff5af41a2", + "data": { + "gtfs": { + "shape_id": "604_2_R" + }, + "segments": [ + { + "distanceMeters": 112, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 628, + "travelTimeSeconds": 90 + }, + { + "distanceMeters": 310, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 326, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 56, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 409, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 68, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 78, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 431, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 46 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9192, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 826.5690904361447, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.96, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 6.13, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.96 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "517a8299-e807-4040-8ccd-f417dda7338c", + "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", + "ee549609-3f81-482a-ad57-c350bc1bbf48", + "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "b934caec-f3a1-4894-b7b5-6872a3d78790", + "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", + "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", + "cd932703-83f9-4acf-94fa-d521e6d427d0", + "cfc3e1d1-58b4-4975-b310-259719029f69", + "3753be88-b479-4ca1-bd8a-5ea694207952", + "d6d99976-b155-4a29-b088-e41bf69a502a", + "014d61e3-acfc-41f6-b78a-5c2178c073b1", + "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", + "14e293a6-352a-4156-8578-66d0b5bdcc1f", + "62558b4d-75af-4b04-8040-a30de5a89658", + "988c86da-04eb-4067-b650-f13c447b17e7", + "4827a17d-8dc9-4cbd-8430-3334ebece64a", + "504cb53f-f1f4-46f2-81f5-f99fef8227fd", + "966472c1-4384-4d94-92f7-48afa023de51", + "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "4fc83229-a15e-48e1-aa4f-fae0073dacf9", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "01153fa0-59fe-4f77-8e46-e418296b526d", + "977065eb-9054-495e-befc-5f3b6e0e6046", + "42f48eea-ee59-46f6-9c43-4b63100a50dc", + "156c412f-0b84-4b14-a73e-e1d07d0b148d", + "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", + "c467599b-2164-4b14-b9ca-8960936bda58", + "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", + "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", + "4122212c-2ecd-4db2-a305-20f02711d17b", + "9f622393-7da9-4ff8-9bda-12008512c7ed", + "10c2e9e3-14c8-465a-917c-28c8d9977609", + "fd67ddde-e938-481c-8721-79fa136304ae", + "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca" + ], + "stops": [], + "line_id": "d16bb5d3-aa78-4c58-a6ba-dd96c5c1d20b", + "segments": [ + 0, + 7, + 29, + 40, + 43, + 47, + 50, + 53, + 56, + 60, + 62, + 68, + 73, + 75, + 77, + 81, + 87, + 94, + 101, + 114, + 118, + 126, + 133, + 140, + 158, + 160, + 167, + 170, + 175, + 178, + 181, + 183, + 189, + 196, + 198, + 201, + 203, + 207, + 209 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 326, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.453929, + 45.515967 + ], + [ + -73.454013, + 45.515854 + ], + [ + -73.455201, + 45.514132 + ], + [ + -73.455279, + 45.514018 + ], + [ + -73.456161, + 45.512754 + ], + [ + -73.456341, + 45.512499 + ], + [ + -73.456504, + 45.512269 + ], + [ + -73.456608, + 45.51212 + ], + [ + -73.457632, + 45.512503 + ], + [ + -73.458519, + 45.512827 + ], + [ + -73.459543, + 45.51322 + ], + [ + -73.45968, + 45.513273 + ], + [ + -73.459747, + 45.513297 + ], + [ + -73.460138, + 45.51344 + ], + [ + -73.460623, + 45.512783 + ], + [ + -73.461002, + 45.512271 + ], + [ + -73.461069, + 45.51218 + ], + [ + -73.461539, + 45.511564 + ], + [ + -73.46197, + 45.510961 + ], + [ + -73.462383, + 45.510395 + ], + [ + -73.462553, + 45.510233 + ], + [ + -73.462779, + 45.510066 + ], + [ + -73.463045, + 45.509936 + ], + [ + -73.463109, + 45.50991 + ], + [ + -73.463381, + 45.509801 + ], + [ + -73.463431, + 45.509882 + ], + [ + -73.463519, + 45.509999 + ], + [ + -73.463631, + 45.510107 + ], + [ + -73.463676, + 45.510137 + ], + [ + -73.463794, + 45.510215 + ], + [ + -73.464529, + 45.510665 + ], + [ + -73.464922, + 45.510917 + ], + [ + -73.465268, + 45.511138 + ], + [ + -73.464982, + 45.511318 + ], + [ + -73.464762, + 45.511493 + ], + [ + -73.464626, + 45.511606 + ], + [ + -73.464478, + 45.511745 + ], + [ + -73.464282, + 45.512001 + ], + [ + -73.463932, + 45.512501 + ], + [ + -73.463554, + 45.513006 + ], + [ + -73.463478, + 45.513108 + ], + [ + -73.463247, + 45.513431 + ], + [ + -73.463065, + 45.513684 + ], + [ + -73.462744, + 45.514129 + ], + [ + -73.462726, + 45.514155 + ], + [ + -73.462602, + 45.514327 + ], + [ + -73.464082, + 45.514885 + ], + [ + -73.465778, + 45.515525 + ], + [ + -73.465949, + 45.515589 + ], + [ + -73.466056, + 45.515628 + ], + [ + -73.466138, + 45.51566 + ], + [ + -73.466232, + 45.515695 + ], + [ + -73.466474, + 45.515795 + ], + [ + -73.466702, + 45.515853 + ], + [ + -73.466803, + 45.515867 + ], + [ + -73.466838, + 45.515871 + ], + [ + -73.466992, + 45.515894 + ], + [ + -73.467576, + 45.515962 + ], + [ + -73.467711, + 45.515993 + ], + [ + -73.467803, + 45.516016 + ], + [ + -73.467947, + 45.51607 + ], + [ + -73.468097, + 45.516127 + ], + [ + -73.468254, + 45.516187 + ], + [ + -73.468571, + 45.51575 + ], + [ + -73.472494, + 45.517187 + ], + [ + -73.472533, + 45.5172 + ], + [ + -73.472693, + 45.517254 + ], + [ + -73.473088, + 45.517412 + ], + [ + -73.473656, + 45.51761 + ], + [ + -73.47566, + 45.518326 + ], + [ + -73.476615, + 45.51865 + ], + [ + -73.476759, + 45.51865 + ], + [ + -73.476929, + 45.518627 + ], + [ + -73.477002, + 45.518593 + ], + [ + -73.477134, + 45.518529 + ], + [ + -73.477396, + 45.518622 + ], + [ + -73.477613, + 45.5187 + ], + [ + -73.477254, + 45.51923 + ], + [ + -73.476902, + 45.519705 + ], + [ + -73.47683, + 45.519802 + ], + [ + -73.476473, + 45.520306 + ], + [ + -73.476157, + 45.52074 + ], + [ + -73.476081, + 45.520845 + ], + [ + -73.475434, + 45.521732 + ], + [ + -73.475294, + 45.521907 + ], + [ + -73.474996, + 45.522342 + ], + [ + -73.474964, + 45.522388 + ], + [ + -73.474526, + 45.522973 + ], + [ + -73.474291, + 45.523309 + ], + [ + -73.474023, + 45.523693 + ], + [ + -73.477226, + 45.52478 + ], + [ + -73.477339, + 45.524818 + ], + [ + -73.48022, + 45.525788 + ], + [ + -73.480349, + 45.525831 + ], + [ + -73.482756, + 45.526654 + ], + [ + -73.483206, + 45.526808 + ], + [ + -73.486253, + 45.527842 + ], + [ + -73.486324, + 45.527866 + ], + [ + -73.487749, + 45.52836 + ], + [ + -73.488241, + 45.528531 + ], + [ + -73.488593, + 45.528653 + ], + [ + -73.489528, + 45.528064 + ], + [ + -73.490298, + 45.527569 + ], + [ + -73.490653, + 45.527304 + ], + [ + -73.491337, + 45.526752 + ], + [ + -73.4914, + 45.526701 + ], + [ + -73.492088, + 45.526179 + ], + [ + -73.492707, + 45.525635 + ], + [ + -73.492906, + 45.525415 + ], + [ + -73.49318, + 45.525113 + ], + [ + -73.493408, + 45.524902 + ], + [ + -73.493799, + 45.524641 + ], + [ + -73.494186, + 45.524488 + ], + [ + -73.494712, + 45.524302 + ], + [ + -73.494785, + 45.524276 + ], + [ + -73.495166, + 45.524155 + ], + [ + -73.495493, + 45.524047 + ], + [ + -73.495888, + 45.523925 + ], + [ + -73.496536, + 45.523723 + ], + [ + -73.496718, + 45.523586 + ], + [ + -73.496788, + 45.523534 + ], + [ + -73.497235, + 45.523003 + ], + [ + -73.497422, + 45.522652 + ], + [ + -73.497435, + 45.5224 + ], + [ + -73.497301, + 45.521799 + ], + [ + -73.497269, + 45.521658 + ], + [ + -73.497101, + 45.520911 + ], + [ + -73.497017, + 45.520339 + ], + [ + -73.497012, + 45.520222 + ], + [ + -73.49702, + 45.520083 + ], + [ + -73.497044, + 45.519908 + ], + [ + -73.497064, + 45.519764 + ], + [ + -73.497083, + 45.519677 + ], + [ + -73.497108, + 45.519561 + ], + [ + -73.497278, + 45.518832 + ], + [ + -73.497354, + 45.518522 + ], + [ + -73.497411, + 45.518364 + ], + [ + -73.497477, + 45.518175 + ], + [ + -73.497615, + 45.517821 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.498036, + 45.516808 + ], + [ + -73.498298, + 45.516248 + ], + [ + -73.498388, + 45.516056 + ], + [ + -73.498727, + 45.51526 + ], + [ + -73.498864, + 45.515055 + ], + [ + -73.499247, + 45.514482 + ], + [ + -73.499299, + 45.514405 + ], + [ + -73.498867, + 45.514269 + ], + [ + -73.495992, + 45.51336 + ], + [ + -73.495825, + 45.513307 + ], + [ + -73.494505, + 45.512884 + ], + [ + -73.493805, + 45.512659 + ], + [ + -73.493619, + 45.512695 + ], + [ + -73.493364, + 45.512745 + ], + [ + -73.493004, + 45.512633 + ], + [ + -73.492878, + 45.512594 + ], + [ + -73.492639, + 45.51252 + ], + [ + -73.493081, + 45.511867 + ], + [ + -73.493369, + 45.51144 + ], + [ + -73.493501, + 45.511236 + ], + [ + -73.493538, + 45.511179 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494003, + 45.510501 + ], + [ + -73.494098, + 45.510356 + ], + [ + -73.493822, + 45.510203 + ], + [ + -73.493425, + 45.509955 + ], + [ + -73.493171, + 45.509789 + ], + [ + -73.492928, + 45.509613 + ], + [ + -73.492662, + 45.509406 + ], + [ + -73.492553, + 45.509315 + ], + [ + -73.492423, + 45.509204 + ], + [ + -73.492336, + 45.50915 + ], + [ + -73.492042, + 45.508893 + ], + [ + -73.491845, + 45.508695 + ], + [ + -73.491842, + 45.508692 + ], + [ + -73.491799, + 45.508647 + ], + [ + -73.491788, + 45.508636 + ], + [ + -73.491647, + 45.508488 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488541, + 45.503629 + ], + [ + -73.48831, + 45.50321 + ], + [ + -73.48823, + 45.503039 + ], + [ + -73.488092, + 45.502693 + ], + [ + -73.487989, + 45.502369 + ], + [ + -73.487959, + 45.502275 + ], + [ + -73.487746, + 45.501478 + ], + [ + -73.487613, + 45.501033 + ], + [ + -73.487525, + 45.500741 + ], + [ + -73.487509, + 45.500686 + ], + [ + -73.487464, + 45.50056 + ], + [ + -73.487346, + 45.500232 + ], + [ + -73.487139, + 45.499795 + ], + [ + -73.486985, + 45.499512 + ], + [ + -73.486843, + 45.499275 + ], + [ + -73.486818, + 45.499233 + ], + [ + -73.48673, + 45.4991 + ], + [ + -73.486631, + 45.498949 + ], + [ + -73.486428, + 45.498675 + ], + [ + -73.486216, + 45.498401 + ], + [ + -73.486166, + 45.498342 + ], + [ + -73.486, + 45.498149 + ], + [ + -73.485576, + 45.497708 + ], + [ + -73.485299, + 45.497456 + ], + [ + -73.48526, + 45.497423 + ], + [ + -73.485251, + 45.497415 + ], + [ + -73.484899, + 45.497123 + ], + [ + -73.484449, + 45.496786 + ], + [ + -73.484387, + 45.49674 + ], + [ + -73.484357, + 45.496722 + ], + [ + -73.482251, + 45.49533 + ], + [ + -73.482144, + 45.49526 + ], + [ + -73.482055, + 45.495201 + ], + [ + -73.479549, + 45.49354 + ], + [ + -73.479372, + 45.493423 + ], + [ + -73.474541, + 45.490231 + ], + [ + -73.474366, + 45.490115 + ], + [ + -73.473909, + 45.489814 + ], + [ + -73.472125, + 45.488635 + ], + [ + -73.471942, + 45.488513 + ], + [ + -73.46708, + 45.485304 + ], + [ + -73.466642, + 45.484984 + ], + [ + -73.466527, + 45.484889 + ], + [ + -73.466473, + 45.484845 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466302, + 45.484687 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466022, + 45.484682 + ], + [ + -73.465888, + 45.484747 + ], + [ + -73.465767, + 45.484792 + ], + [ + -73.465702, + 45.484807 + ], + [ + -73.465661, + 45.484807 + ], + [ + -73.465627, + 45.484802 + ], + [ + -73.4655, + 45.484766 + ], + [ + -73.464965, + 45.484574 + ], + [ + -73.464559, + 45.484417 + ], + [ + -73.464508, + 45.484399 + ], + [ + -73.464185, + 45.484291 + ], + [ + -73.463703, + 45.484155 + ], + [ + -73.463657, + 45.484142 + ], + [ + -73.46319, + 45.484029 + ], + [ + -73.462672, + 45.483908 + ], + [ + -73.462287, + 45.483831 + ], + [ + -73.462032, + 45.483791 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.46135, + 45.4837 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461197, + 45.484333 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.459549, + 45.485503 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.457874, + 45.486542 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.456938, + 45.487846 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456449, + 45.487901 + ], + [ + -73.456154, + 45.487865 + ], + [ + -73.455852, + 45.487802 + ], + [ + -73.455596, + 45.487748 + ], + [ + -73.455357, + 45.487675 + ], + [ + -73.455213, + 45.487621 + ], + [ + -73.454998, + 45.487531 + ], + [ + -73.454777, + 45.487423 + ], + [ + -73.454672, + 45.487356 + ], + [ + -73.454523, + 45.487261 + ], + [ + -73.454176, + 45.487527 + ], + [ + -73.453821, + 45.487792 + ], + [ + -73.452906, + 45.488462 + ] + ] + }, + "id": 327, + "properties": { + "id": "fcd2373d-1a1e-48b6-940d-bae27fcf3046", + "data": { + "gtfs": { + "shape_id": "605_1_A" + }, + "segments": [ + { + "distanceMeters": 227, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 89, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 417, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 424, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 446, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 953, + "travelTimeSeconds": 154 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 95, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 537, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 604, + "travelTimeSeconds": 98 + }, + { + "distanceMeters": 708, + "travelTimeSeconds": 115 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 65 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 210, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12965, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3044.9183871282007, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.17, + "travelTimeWithoutDwellTimesSeconds": 2100, + "operatingTimeWithLayoverTimeSeconds": 2310, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2100, + "operatingSpeedWithLayoverMetersPerSecond": 5.61, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.17 + }, + "mode": "bus", + "name": "École de l'Agora", + "color": "#A32638", + "nodes": [ + "5f1eb6f1-dc45-44fc-bc07-9e965049da7f", + "4ecd13b4-71e4-4328-bc7f-b30325894d82", + "065b0112-1102-48ec-b10a-c88cde002f4f", + "d8f16090-e69f-45d8-b535-45f45ab1b739", + "7183eaac-7645-401f-919b-91209487af61", + "3d29747a-7b75-4b0e-ad8a-50eec4e70061", + "5b565a57-bd7f-42f0-a279-0af0bf5f2a4d", + "0751a485-9efa-4491-b69f-eed5163417d8", + "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", + "5ca73944-03b3-4fca-ab1f-781dd6f959a4", + "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", + "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9", + "41c46bd6-8021-4abc-88c9-f9d4d32afe26", + "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", + "242c7269-ce0d-45c7-8356-927308e89900", + "bad427d3-2698-4efd-8d52-2bc92f049d64", + "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", + "30b4855a-ec3f-4079-bee1-0b92e6c4e1b7", + "1926fe87-9eee-4758-bf0a-1f846178b541", + "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", + "1d3f02c5-7aee-413f-85a4-ed64749a6a77", + "db8d9e51-701d-47ce-b55e-d7d57227adcb", + "dc7a6dd7-6fde-40ea-9f37-85aaefe35169", + "16c6c90b-9ef2-4203-a4a2-74a27e23dc94", + "afda06bb-9f3e-43a6-883f-96226fa884c5", + "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "6c8872a8-685f-49ed-9246-92743dd113de", + "161f72ac-926f-49be-80a4-a3cb10884d02", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "d32c5a5b-6e6f-48c3-9f4e-37b94ed6e20d", + "09272548-09d5-4afa-a45f-80ba6dd656dd", + "4a0c512f-2ce4-41cc-a200-cf81d75487c1", + "7095ff94-e6bf-4956-8b59-9e66be631584", + "5d573c90-ed41-4ac1-9f58-abc862e00f93", + "37199bb2-9740-4484-b68f-12d3c82f8bf9", + "bcd0a901-5384-443e-9be4-1f0faa123ccb", + "fdd9bfef-c8dc-4f65-9008-847050729854", + "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", + "7ad37664-fa6b-478f-8d31-2d3ae7009709", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "94cd69e7-ebc9-452b-a357-367107db73b4", + "03b1ef77-b509-4f21-97d5-d511eeb821cb", + "351136d8-2c40-4c3f-8032-a52e48738c07", + "159a0fe9-bedb-40f2-9806-32ab49594978", + "c24b91da-a4a3-4b28-b987-5726c6a01fdb", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "517a8299-e807-4040-8ccd-f417dda7338c" + ], + "stops": [], + "line_id": "fc8b2224-338e-48b0-927c-49ca43fad9bd", + "segments": [ + 0, + 2, + 6, + 10, + 15, + 23, + 31, + 39, + 43, + 47, + 54, + 61, + 65, + 75, + 78, + 81, + 85, + 90, + 92, + 94, + 96, + 99, + 104, + 108, + 113, + 119, + 124, + 132, + 138, + 141, + 147, + 148, + 154, + 159, + 174, + 192, + 198, + 208, + 211, + 214, + 217, + 219, + 222, + 226, + 262, + 268, + 277 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 327, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.452906, + 45.488462 + ], + [ + -73.452661, + 45.488642 + ], + [ + -73.452316, + 45.488894 + ], + [ + -73.452398, + 45.488943 + ], + [ + -73.452482, + 45.488993 + ], + [ + -73.452596, + 45.489092 + ], + [ + -73.452853, + 45.489389 + ], + [ + -73.453059, + 45.489641 + ], + [ + -73.453301, + 45.489897 + ], + [ + -73.453554, + 45.490154 + ], + [ + -73.453816, + 45.490388 + ], + [ + -73.454028, + 45.490572 + ], + [ + -73.454376, + 45.490852 + ], + [ + -73.454696, + 45.491105 + ], + [ + -73.454792, + 45.49118 + ], + [ + -73.455351, + 45.490845 + ], + [ + -73.456177, + 45.490348 + ], + [ + -73.456382, + 45.490186 + ], + [ + -73.45652, + 45.490034 + ], + [ + -73.456589, + 45.489894 + ], + [ + -73.456688, + 45.489687 + ], + [ + -73.456689, + 45.489683 + ], + [ + -73.456709, + 45.489602 + ], + [ + -73.456724, + 45.489525 + ], + [ + -73.456835, + 45.488612 + ], + [ + -73.456898, + 45.488082 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457714, + 45.486663 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.459238, + 45.485731 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.461096, + 45.484446 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461241, + 45.484258 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.462585, + 45.484043 + ], + [ + -73.463416, + 45.484224 + ], + [ + -73.463639, + 45.484291 + ], + [ + -73.464599, + 45.48462 + ], + [ + -73.465244, + 45.484835 + ], + [ + -73.465443, + 45.484908 + ], + [ + -73.465586, + 45.484937 + ], + [ + -73.465724, + 45.484942 + ], + [ + -73.465848, + 45.484931 + ], + [ + -73.466018, + 45.484884 + ], + [ + -73.466121, + 45.484844 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.466209, + 45.484848 + ], + [ + -73.46623, + 45.484867 + ], + [ + -73.466294, + 45.484926 + ], + [ + -73.466468, + 45.485064 + ], + [ + -73.466566, + 45.485142 + ], + [ + -73.466759, + 45.48529 + ], + [ + -73.466948, + 45.485421 + ], + [ + -73.467024, + 45.48547 + ], + [ + -73.468004, + 45.486118 + ], + [ + -73.469888, + 45.487365 + ], + [ + -73.470621, + 45.487851 + ], + [ + -73.471611, + 45.488508 + ], + [ + -73.471789, + 45.488626 + ], + [ + -73.473768, + 45.489935 + ], + [ + -73.474015, + 45.490099 + ], + [ + -73.474218, + 45.490232 + ], + [ + -73.476501, + 45.49174 + ], + [ + -73.4777, + 45.49253 + ], + [ + -73.479093, + 45.493449 + ], + [ + -73.479217, + 45.493531 + ], + [ + -73.480275, + 45.494231 + ], + [ + -73.481907, + 45.495309 + ], + [ + -73.482, + 45.495372 + ], + [ + -73.482365, + 45.495613 + ], + [ + -73.483276, + 45.496213 + ], + [ + -73.483953, + 45.496659 + ], + [ + -73.484044, + 45.496723 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.48442, + 45.496983 + ], + [ + -73.484708, + 45.497199 + ], + [ + -73.484931, + 45.497378 + ], + [ + -73.485095, + 45.49751 + ], + [ + -73.485397, + 45.497784 + ], + [ + -73.485739, + 45.498135 + ], + [ + -73.485877, + 45.498284 + ], + [ + -73.486105, + 45.498553 + ], + [ + -73.486286, + 45.498787 + ], + [ + -73.486368, + 45.498907 + ], + [ + -73.486538, + 45.499154 + ], + [ + -73.486685, + 45.499381 + ], + [ + -73.486823, + 45.499615 + ], + [ + -73.486951, + 45.499858 + ], + [ + -73.487138, + 45.500263 + ], + [ + -73.487159, + 45.500317 + ], + [ + -73.487266, + 45.500605 + ], + [ + -73.487306, + 45.500713 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487417, + 45.501077 + ], + [ + -73.487455, + 45.501208 + ], + [ + -73.487464, + 45.50124 + ], + [ + -73.48765, + 45.50191 + ], + [ + -73.487855, + 45.502589 + ], + [ + -73.488032, + 45.50303 + ], + [ + -73.488178, + 45.503309 + ], + [ + -73.488409, + 45.50371 + ], + [ + -73.489159, + 45.504974 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491522, + 45.508794 + ], + [ + -73.491771, + 45.509109 + ], + [ + -73.491972, + 45.509321 + ], + [ + -73.492304, + 45.509658 + ], + [ + -73.492337, + 45.509682 + ], + [ + -73.49247, + 45.509782 + ], + [ + -73.492773, + 45.510009 + ], + [ + -73.492921, + 45.510107 + ], + [ + -73.49316, + 45.510266 + ], + [ + -73.493482, + 45.510473 + ], + [ + -73.493504, + 45.510491 + ], + [ + -73.493884, + 45.510653 + ], + [ + -73.494697, + 45.511031 + ], + [ + -73.495151, + 45.511197 + ], + [ + -73.495933, + 45.511462 + ], + [ + -73.496219, + 45.511552 + ], + [ + -73.496266, + 45.511575 + ], + [ + -73.497301, + 45.511881 + ], + [ + -73.497453, + 45.511926 + ], + [ + -73.497928, + 45.512055 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.5003, + 45.512826 + ], + [ + -73.500012, + 45.513277 + ], + [ + -73.4998, + 45.513609 + ], + [ + -73.49937, + 45.514293 + ], + [ + -73.499299, + 45.514405 + ], + [ + -73.499247, + 45.514482 + ], + [ + -73.498727, + 45.51526 + ], + [ + -73.498432, + 45.515951 + ], + [ + -73.498388, + 45.516056 + ], + [ + -73.498036, + 45.516808 + ], + [ + -73.497777, + 45.517417 + ], + [ + -73.497734, + 45.517518 + ], + [ + -73.497477, + 45.518175 + ], + [ + -73.497411, + 45.518364 + ], + [ + -73.497354, + 45.518522 + ], + [ + -73.497278, + 45.518832 + ], + [ + -73.497142, + 45.519414 + ], + [ + -73.497108, + 45.519561 + ], + [ + -73.497064, + 45.519764 + ], + [ + -73.497044, + 45.519908 + ], + [ + -73.49702, + 45.520083 + ], + [ + -73.497012, + 45.520222 + ], + [ + -73.497017, + 45.520339 + ], + [ + -73.497101, + 45.520911 + ], + [ + -73.49723, + 45.521483 + ], + [ + -73.497269, + 45.521658 + ], + [ + -73.497435, + 45.5224 + ], + [ + -73.497422, + 45.522652 + ], + [ + -73.497235, + 45.523003 + ], + [ + -73.496897, + 45.523405 + ], + [ + -73.496788, + 45.523534 + ], + [ + -73.496536, + 45.523723 + ], + [ + -73.495888, + 45.523925 + ], + [ + -73.495493, + 45.524047 + ], + [ + -73.495166, + 45.524155 + ], + [ + -73.494785, + 45.524276 + ], + [ + -73.494284, + 45.524453 + ], + [ + -73.494186, + 45.524488 + ], + [ + -73.493799, + 45.524641 + ], + [ + -73.493408, + 45.524902 + ], + [ + -73.49318, + 45.525113 + ], + [ + -73.4928, + 45.525532 + ], + [ + -73.492707, + 45.525635 + ], + [ + -73.492088, + 45.526179 + ], + [ + -73.49147, + 45.526647 + ], + [ + -73.4914, + 45.526701 + ], + [ + -73.490653, + 45.527304 + ], + [ + -73.490298, + 45.527569 + ], + [ + -73.489528, + 45.528064 + ], + [ + -73.488698, + 45.528588 + ], + [ + -73.488593, + 45.528653 + ], + [ + -73.487705, + 45.528345 + ], + [ + -73.48649, + 45.527923 + ], + [ + -73.486324, + 45.527866 + ], + [ + -73.483397, + 45.526873 + ], + [ + -73.483206, + 45.526808 + ], + [ + -73.480561, + 45.525904 + ], + [ + -73.480349, + 45.525831 + ], + [ + -73.477602, + 45.524907 + ], + [ + -73.477339, + 45.524818 + ], + [ + -73.474232, + 45.523764 + ], + [ + -73.474023, + 45.523693 + ], + [ + -73.474272, + 45.523336 + ], + [ + -73.474526, + 45.522973 + ], + [ + -73.474888, + 45.52249 + ], + [ + -73.474964, + 45.522388 + ], + [ + -73.475294, + 45.521907 + ], + [ + -73.475434, + 45.521732 + ], + [ + -73.47602, + 45.520929 + ], + [ + -73.476081, + 45.520845 + ], + [ + -73.476473, + 45.520306 + ], + [ + -73.476731, + 45.519942 + ], + [ + -73.47683, + 45.519802 + ], + [ + -73.477254, + 45.51923 + ], + [ + -73.477545, + 45.518801 + ], + [ + -73.477613, + 45.5187 + ], + [ + -73.477253, + 45.518571 + ], + [ + -73.477134, + 45.518529 + ], + [ + -73.476929, + 45.518627 + ], + [ + -73.476759, + 45.51865 + ], + [ + -73.476615, + 45.51865 + ], + [ + -73.476304, + 45.518544 + ], + [ + -73.47566, + 45.518326 + ], + [ + -73.473656, + 45.51761 + ], + [ + -73.473088, + 45.517412 + ], + [ + -73.473012, + 45.517382 + ], + [ + -73.472693, + 45.517254 + ], + [ + -73.472494, + 45.517187 + ], + [ + -73.468981, + 45.515901 + ], + [ + -73.468571, + 45.51575 + ], + [ + -73.468254, + 45.516187 + ], + [ + -73.467947, + 45.51607 + ], + [ + -73.467803, + 45.516016 + ], + [ + -73.467711, + 45.515993 + ], + [ + -73.467576, + 45.515962 + ], + [ + -73.466992, + 45.515894 + ], + [ + -73.466838, + 45.515871 + ], + [ + -73.466702, + 45.515853 + ], + [ + -73.466474, + 45.515795 + ], + [ + -73.466379, + 45.515756 + ], + [ + -73.466232, + 45.515695 + ], + [ + -73.466138, + 45.51566 + ], + [ + -73.466056, + 45.515628 + ], + [ + -73.465949, + 45.515589 + ], + [ + -73.464082, + 45.514885 + ], + [ + -73.463074, + 45.514505 + ], + [ + -73.462602, + 45.514327 + ], + [ + -73.462726, + 45.514155 + ], + [ + -73.463065, + 45.513684 + ], + [ + -73.463137, + 45.513583 + ], + [ + -73.463478, + 45.513108 + ], + [ + -73.463861, + 45.512596 + ], + [ + -73.463932, + 45.512501 + ], + [ + -73.464282, + 45.512001 + ], + [ + -73.464478, + 45.511745 + ], + [ + -73.464626, + 45.511606 + ], + [ + -73.464762, + 45.511493 + ], + [ + -73.464982, + 45.511318 + ], + [ + -73.465001, + 45.511306 + ], + [ + -73.465268, + 45.511138 + ], + [ + -73.464529, + 45.510665 + ], + [ + -73.464009, + 45.510347 + ], + [ + -73.463794, + 45.510215 + ], + [ + -73.463631, + 45.510107 + ], + [ + -73.463519, + 45.509999 + ], + [ + -73.46348, + 45.509947 + ], + [ + -73.463431, + 45.509882 + ], + [ + -73.463381, + 45.509801 + ], + [ + -73.463045, + 45.509936 + ], + [ + -73.462779, + 45.510066 + ], + [ + -73.462553, + 45.510233 + ], + [ + -73.462383, + 45.510395 + ], + [ + -73.462007, + 45.510911 + ], + [ + -73.46197, + 45.510961 + ], + [ + -73.461539, + 45.511564 + ], + [ + -73.461154, + 45.512068 + ], + [ + -73.461069, + 45.51218 + ], + [ + -73.460623, + 45.512783 + ], + [ + -73.460197, + 45.51336 + ], + [ + -73.460138, + 45.51344 + ], + [ + -73.459933, + 45.513365 + ], + [ + -73.45968, + 45.513273 + ], + [ + -73.458659, + 45.512881 + ], + [ + -73.458519, + 45.512827 + ], + [ + -73.457632, + 45.512503 + ], + [ + -73.457418, + 45.512423 + ], + [ + -73.456755, + 45.512175 + ], + [ + -73.456608, + 45.51212 + ], + [ + -73.456479, + 45.512075 + ], + [ + -73.456035, + 45.512709 + ], + [ + -73.455223, + 45.513882 + ], + [ + -73.455157, + 45.513978 + ], + [ + -73.454375, + 45.515102 + ], + [ + -73.454257, + 45.515272 + ], + [ + -73.453914, + 45.515764 + ] + ] + }, + "id": 328, + "properties": { + "id": "32d98e02-9a0f-4dd8-8a60-27484964109a", + "data": { + "gtfs": { + "shape_id": "605_2_R" + }, + "segments": [ + { + "distanceMeters": 376, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 514, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 555, + "travelTimeSeconds": 88 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 544, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 507, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 1156, + "travelTimeSeconds": 182 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 383, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 195, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 44, + "travelTimeSeconds": 7 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 82, + "travelTimeSeconds": 13 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 210, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13271, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2978.708634745934, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.32, + "travelTimeWithoutDwellTimesSeconds": 2100, + "operatingTimeWithLayoverTimeSeconds": 2310, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2100, + "operatingSpeedWithLayoverMetersPerSecond": 5.74, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.32 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "517a8299-e807-4040-8ccd-f417dda7338c", + "da4ca96f-4db9-4287-b307-afc6221c923f", + "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "a90c4da7-455c-41d3-9961-c7a64d627572", + "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", + "4996264a-c3f0-4fe8-be81-9ca3d8659c61", + "e089008c-4123-4897-95b5-a61e5e049f48", + "03b1ef77-b509-4f21-97d5-d511eeb821cb", + "56af9248-f973-4335-84c1-2e5e744a3910", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "fd062866-a8eb-4466-b53a-6adf8fc3f09a", + "6c42a8f6-a98f-4058-9992-d00706a03dff", + "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "fdecd410-1224-486a-a041-e5f802671456", + "09272548-09d5-4afa-a45f-80ba6dd656dd", + "d32c5a5b-6e6f-48c3-9f4e-37b94ed6e20d", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "161f72ac-926f-49be-80a4-a3cb10884d02", + "6c8872a8-685f-49ed-9246-92743dd113de", + "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "afda06bb-9f3e-43a6-883f-96226fa884c5", + "16c6c90b-9ef2-4203-a4a2-74a27e23dc94", + "dc7a6dd7-6fde-40ea-9f37-85aaefe35169", + "280d705c-e41e-4a8f-8450-ac212bf84d99", + "1d3f02c5-7aee-413f-85a4-ed64749a6a77", + "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", + "1926fe87-9eee-4758-bf0a-1f846178b541", + "30b4855a-ec3f-4079-bee1-0b92e6c4e1b7", + "75f82802-187b-4386-b435-5da7ab066898", + "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", + "bad427d3-2698-4efd-8d52-2bc92f049d64", + "242c7269-ce0d-45c7-8356-927308e89900", + "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", + "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", + "41c46bd6-8021-4abc-88c9-f9d4d32afe26", + "ddeef6c2-ef0f-4d9f-a765-534563936049", + "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", + "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", + "0751a485-9efa-4491-b69f-eed5163417d8", + "5b565a57-bd7f-42f0-a279-0af0bf5f2a4d", + "3d29747a-7b75-4b0e-ad8a-50eec4e70061", + "1f1dcc94-03fa-4333-b695-c1027c760604", + "7183eaac-7645-401f-919b-91209487af61", + "d8f16090-e69f-45d8-b535-45f45ab1b739", + "2f3f3f3e-941f-4165-a7c4-41af6cf1cc84", + "065b0112-1102-48ec-b10a-c88cde002f4f", + "4ecd13b4-71e4-4328-bc7f-b30325894d82", + "6716e17d-58d0-427c-a6f7-62e8d8197b2a", + "6716e17d-58d0-427c-a6f7-62e8d8197b2a" + ], + "stops": [], + "line_id": "fc8b2224-338e-48b0-927c-49ca43fad9bd", + "segments": [ + 0, + 13, + 21, + 25, + 34, + 39, + 44, + 71, + 79, + 82, + 86, + 91, + 94, + 112, + 135, + 147, + 152, + 156, + 159, + 165, + 173, + 178, + 185, + 190, + 193, + 198, + 201, + 203, + 205, + 207, + 209, + 213, + 217, + 220, + 223, + 225, + 234, + 237, + 248, + 254, + 260, + 267, + 274, + 281, + 284, + 287, + 291, + 295, + 299, + 301 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 328, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.517735, + 45.516669 + ], + [ + -73.517496, + 45.516583 + ], + [ + -73.517318, + 45.516518 + ], + [ + -73.51692, + 45.51637 + ], + [ + -73.516876, + 45.516355 + ], + [ + -73.515414, + 45.515844 + ], + [ + -73.514725, + 45.515603 + ], + [ + -73.514563, + 45.515547 + ], + [ + -73.514692, + 45.515374 + ], + [ + -73.51474, + 45.515308 + ], + [ + -73.51499, + 45.51498 + ], + [ + -73.515208, + 45.514692 + ], + [ + -73.515467, + 45.514337 + ], + [ + -73.515566, + 45.514206 + ], + [ + -73.515671, + 45.514071 + ], + [ + -73.516146, + 45.51425 + ], + [ + -73.516645, + 45.514438 + ], + [ + -73.516734, + 45.514471 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.518009, + 45.514644 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517657, + 45.513609 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517706, + 45.511765 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.517608, + 45.509403 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517232, + 45.50732 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517349, + 45.505742 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.516769, + 45.502127 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.516261, + 45.501836 + ], + [ + -73.516043, + 45.501832 + ], + [ + -73.514398, + 45.501805 + ], + [ + -73.514212, + 45.501802 + ], + [ + -73.514104, + 45.501797 + ], + [ + -73.514045, + 45.501797 + ], + [ + -73.513805, + 45.501793 + ], + [ + -73.5136, + 45.501784 + ], + [ + -73.513522, + 45.501784 + ], + [ + -73.51344, + 45.501784 + ], + [ + -73.513352, + 45.501789 + ], + [ + -73.513284, + 45.501793 + ], + [ + -73.513035, + 45.501807 + ], + [ + -73.512897, + 45.501829 + ], + [ + -73.5127, + 45.501847 + ], + [ + -73.512501, + 45.501865 + ], + [ + -73.512398, + 45.501874 + ], + [ + -73.512063, + 45.501735 + ], + [ + -73.511984, + 45.501701 + ], + [ + -73.511327, + 45.50142 + ], + [ + -73.50993, + 45.500781 + ], + [ + -73.509907, + 45.500772 + ], + [ + -73.509762, + 45.500713 + ], + [ + -73.509608, + 45.500651 + ], + [ + -73.508958, + 45.500376 + ], + [ + -73.508861, + 45.50034 + ], + [ + -73.507712, + 45.499859 + ], + [ + -73.50735, + 45.499701 + ], + [ + -73.507069, + 45.499581 + ], + [ + -73.506801, + 45.499467 + ], + [ + -73.506709, + 45.499427 + ], + [ + -73.506259, + 45.499211 + ], + [ + -73.506001, + 45.499076 + ], + [ + -73.505704, + 45.498928 + ], + [ + -73.505329, + 45.498757 + ], + [ + -73.505105, + 45.498595 + ], + [ + -73.50495, + 45.498487 + ], + [ + -73.504839, + 45.49841 + ], + [ + -73.504683, + 45.498293 + ], + [ + -73.504473, + 45.49814 + ], + [ + -73.504131, + 45.497897 + ], + [ + -73.503475, + 45.497438 + ], + [ + -73.503408, + 45.497389 + ], + [ + -73.50327, + 45.49729 + ], + [ + -73.50284, + 45.49698 + ], + [ + -73.502634, + 45.496833 + ], + [ + -73.502336, + 45.49662 + ], + [ + -73.502293, + 45.496588 + ], + [ + -73.501808, + 45.496251 + ], + [ + -73.501446, + 45.495989 + ], + [ + -73.501279, + 45.495868 + ], + [ + -73.501182, + 45.495805 + ], + [ + -73.501059, + 45.495724 + ], + [ + -73.50081, + 45.495567 + ], + [ + -73.500592, + 45.495409 + ], + [ + -73.500505, + 45.49534 + ], + [ + -73.500106, + 45.495026 + ], + [ + -73.500064, + 45.495 + ], + [ + -73.500025, + 45.494979 + ], + [ + -73.499778, + 45.494815 + ], + [ + -73.499763, + 45.494802 + ], + [ + -73.49959, + 45.494676 + ], + [ + -73.499359, + 45.494506 + ], + [ + -73.499315, + 45.494474 + ], + [ + -73.499159, + 45.494361 + ], + [ + -73.498924, + 45.49419 + ], + [ + -73.498797, + 45.494096 + ], + [ + -73.498616, + 45.49397 + ], + [ + -73.49848, + 45.493866 + ], + [ + -73.498239, + 45.493691 + ], + [ + -73.498238, + 45.493691 + ], + [ + -73.49804, + 45.493547 + ], + [ + -73.497995, + 45.493515 + ], + [ + -73.497927, + 45.49347 + ], + [ + -73.497866, + 45.493425 + ], + [ + -73.497771, + 45.493353 + ], + [ + -73.497557, + 45.493191 + ], + [ + -73.497339, + 45.493038 + ], + [ + -73.497128, + 45.492885 + ], + [ + -73.496772, + 45.492629 + ], + [ + -73.496464, + 45.492407 + ], + [ + -73.496416, + 45.492372 + ], + [ + -73.496321, + 45.492305 + ], + [ + -73.496235, + 45.492242 + ], + [ + -73.495851, + 45.491976 + ], + [ + -73.49562, + 45.491814 + ], + [ + -73.495442, + 45.491684 + ], + [ + -73.495204, + 45.491517 + ], + [ + -73.494917, + 45.491315 + ], + [ + -73.49433, + 45.490897 + ], + [ + -73.494242, + 45.490838 + ], + [ + -73.494216, + 45.490819 + ], + [ + -73.493838, + 45.49055 + ], + [ + -73.493701, + 45.490456 + ], + [ + -73.493573, + 45.490366 + ], + [ + -73.492976, + 45.489943 + ], + [ + -73.492778, + 45.489803 + ], + [ + -73.492465, + 45.489583 + ], + [ + -73.492419, + 45.48955 + ], + [ + -73.492257, + 45.489435 + ], + [ + -73.492218, + 45.489407 + ], + [ + -73.492033, + 45.489274 + ], + [ + -73.491721, + 45.489052 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.491557, + 45.488939 + ], + [ + -73.490801, + 45.488399 + ], + [ + -73.489411, + 45.487405 + ], + [ + -73.489374, + 45.487377 + ], + [ + -73.489048, + 45.487135 + ], + [ + -73.488568, + 45.486806 + ], + [ + -73.487831, + 45.486284 + ], + [ + -73.487157, + 45.485806 + ], + [ + -73.487051, + 45.485731 + ], + [ + -73.486783, + 45.485533 + ], + [ + -73.486446, + 45.485294 + ], + [ + -73.485807, + 45.484835 + ], + [ + -73.485416, + 45.484552 + ], + [ + -73.485019, + 45.484268 + ], + [ + -73.484263, + 45.483728 + ], + [ + -73.483637, + 45.483278 + ], + [ + -73.483483, + 45.483175 + ], + [ + -73.483337, + 45.483067 + ], + [ + -73.482999, + 45.482824 + ], + [ + -73.482644, + 45.48257 + ], + [ + -73.482188, + 45.482243 + ], + [ + -73.482091, + 45.482176 + ], + [ + -73.481995, + 45.482108 + ], + [ + -73.481822, + 45.481987 + ], + [ + -73.481716, + 45.481908 + ], + [ + -73.48159, + 45.481816 + ], + [ + -73.481483, + 45.481744 + ], + [ + -73.481141, + 45.481496 + ], + [ + -73.480755, + 45.481226 + ], + [ + -73.480428, + 45.480974 + ], + [ + -73.479961, + 45.480655 + ], + [ + -73.479511, + 45.480326 + ], + [ + -73.479422, + 45.480272 + ], + [ + -73.47933, + 45.4802 + ], + [ + -73.479251, + 45.480144 + ], + [ + -73.478515, + 45.47962 + ], + [ + -73.478122, + 45.479334 + ], + [ + -73.477833, + 45.479125 + ], + [ + -73.477798, + 45.479064 + ], + [ + -73.477757, + 45.479003 + ], + [ + -73.477575, + 45.47885 + ], + [ + -73.477033, + 45.478413 + ], + [ + -73.476677, + 45.478153 + ], + [ + -73.47654, + 45.478053 + ], + [ + -73.476251, + 45.477842 + ], + [ + -73.475153, + 45.477059 + ], + [ + -73.474544, + 45.476636 + ], + [ + -73.474345, + 45.476487 + ], + [ + -73.474176, + 45.476361 + ], + [ + -73.4733, + 45.475709 + ], + [ + -73.473152, + 45.475605 + ], + [ + -73.472484, + 45.475128 + ], + [ + -73.472437, + 45.475091 + ], + [ + -73.47218, + 45.47489 + ], + [ + -73.472074, + 45.474808 + ], + [ + -73.471729, + 45.474583 + ], + [ + -73.470379, + 45.473613 + ], + [ + -73.470064, + 45.473386 + ], + [ + -73.468607, + 45.472409 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.467156, + 45.471392 + ], + [ + -73.466545, + 45.47101 + ], + [ + -73.466282, + 45.470821 + ], + [ + -73.465866, + 45.470524 + ], + [ + -73.465264, + 45.470087 + ], + [ + -73.465197, + 45.470037 + ], + [ + -73.464559, + 45.469569 + ], + [ + -73.464, + 45.469161 + ], + [ + -73.463828, + 45.469036 + ] + ] + }, + "id": 329, + "properties": { + "id": "97cce46d-21f8-40ea-8937-6da40f469999", + "data": { + "gtfs": { + "shape_id": "606_1_R" + }, + "segments": [ + { + "distanceMeters": 21, + "travelTimeSeconds": 5 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 577, + "travelTimeSeconds": 161 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 412, + "travelTimeSeconds": 97 + }, + { + "distanceMeters": 63, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 67, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 25, + "travelTimeSeconds": 6 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 368, + "travelTimeSeconds": 88 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 446, + "travelTimeSeconds": 106 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 39 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 192, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7776, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6740.77672383107, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 4.05, + "travelTimeWithoutDwellTimesSeconds": 1920, + "operatingTimeWithLayoverTimeSeconds": 2112, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1920, + "operatingSpeedWithLayoverMetersPerSecond": 3.68, + "averageSpeedWithoutDwellTimesMetersPerSecond": 4.05 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "f250cba5-329e-4403-912d-778f924ce25e", + "f250cba5-329e-4403-912d-778f924ce25e", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "46687bb1-1189-4edc-bbd4-c90db18d4ff5", + "46687bb1-1189-4edc-bbd4-c90db18d4ff5", + "df5b9592-81e3-4b2c-8a30-7f3a9144671b", + "d24bea6e-da8d-4183-8a5f-0e99be199484", + "6557d1fe-6975-49e2-871c-ab07d42ea35b", + "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", + "1cea6199-481e-43b0-8d4a-8c7593ff485f", + "467e03f3-2556-4d22-ae48-618a76e6b0b4", + "ea9801c9-a110-4900-bcae-f1b3a40050e8", + "0b6032e7-414a-429f-9df2-796599b947c2", + "88d8365e-2528-4422-a483-bb2efd9de617", + "fa220212-b6b2-4456-934f-7248f9884444", + "196681e4-c9e5-4a79-a3b1-ce225227e0aa", + "54bbe390-ff6d-41d9-bd4b-1e4843d66512", + "aa413165-9699-49b6-9dea-fa35bda8f373", + "0a623471-271f-47f5-9a85-7feece2a3285", + "dc5fe0eb-b8cc-4186-82d3-6787360ae612", + "1e48d359-2463-4fbd-b946-c0a530db4bbe", + "c46257ee-b29f-4a62-9447-95eb1e19c941", + "fe84c986-2907-4842-bde4-72fbe08a0576", + "d73e4ff6-4502-4376-9cf1-5410d307a82f", + "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", + "85f19be2-1f67-4673-b3b3-52d06ed31ae3", + "42f48eea-ee59-46f6-9c43-4b63100a50dc", + "8e9afee7-e1de-4794-a91d-f9db0ef29ed2", + "ee43ab70-74a3-4a43-bfec-164062a98584" + ], + "stops": [], + "line_id": "7b1d0910-9b0b-4643-b6e4-94ef789b7f42", + "segments": [ + 0, + 1, + 6, + 22, + 28, + 35, + 41, + 46, + 58, + 61, + 71, + 76, + 82, + 89, + 97, + 106, + 110, + 116, + 130, + 141, + 152, + 160, + 162, + 168, + 172, + 178, + 189, + 199, + 201, + 207, + 213, + 217, + 221, + 228, + 230 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 329, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.521447, + 45.524278 + ], + [ + -73.521441, + 45.524366 + ], + [ + -73.521454, + 45.524378 + ], + [ + -73.521465, + 45.524397 + ], + [ + -73.521495, + 45.524411 + ], + [ + -73.52152, + 45.524415 + ], + [ + -73.522484, + 45.524441 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.522519, + 45.524053 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522269, + 45.521519 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522303, + 45.521246 + ], + [ + -73.522314, + 45.521124 + ], + [ + -73.522312, + 45.521061 + ], + [ + -73.522297, + 45.52099 + ], + [ + -73.522254, + 45.520918 + ], + [ + -73.522202, + 45.520873 + ], + [ + -73.52209, + 45.52081 + ], + [ + -73.522032, + 45.520781 + ], + [ + -73.521962, + 45.520763 + ], + [ + -73.521858, + 45.520746 + ], + [ + -73.52176, + 45.520743 + ], + [ + -73.521678, + 45.520754 + ], + [ + -73.521604, + 45.520768 + ], + [ + -73.521512, + 45.520792 + ], + [ + -73.521388, + 45.520815 + ], + [ + -73.521286, + 45.520832 + ], + [ + -73.521218, + 45.520843 + ], + [ + -73.52114, + 45.520855 + ], + [ + -73.521012, + 45.520865 + ], + [ + -73.520918, + 45.520872 + ], + [ + -73.520796, + 45.520877 + ], + [ + -73.52064, + 45.520878 + ], + [ + -73.520491, + 45.520857 + ], + [ + -73.520363, + 45.52084 + ], + [ + -73.520252, + 45.520837 + ], + [ + -73.520121, + 45.52083 + ], + [ + -73.519926, + 45.520815 + ], + [ + -73.51983, + 45.520803 + ], + [ + -73.519522, + 45.520753 + ], + [ + -73.519411, + 45.520725 + ], + [ + -73.519258, + 45.520728 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.515669, + 45.519549 + ], + [ + -73.515453, + 45.51947 + ], + [ + -73.515318, + 45.51943 + ], + [ + -73.514997, + 45.519328 + ], + [ + -73.514524, + 45.519178 + ], + [ + -73.514357, + 45.518863 + ], + [ + -73.514227, + 45.51866 + ], + [ + -73.513978, + 45.518323 + ], + [ + -73.513732, + 45.517986 + ], + [ + -73.513547, + 45.517774 + ], + [ + -73.513223, + 45.517458 + ], + [ + -73.513099, + 45.517338 + ], + [ + -73.51236, + 45.51673 + ], + [ + -73.512248, + 45.516528 + ], + [ + -73.51162, + 45.516272 + ], + [ + -73.51136, + 45.516146 + ], + [ + -73.510789, + 45.515876 + ], + [ + -73.510116, + 45.515606 + ], + [ + -73.509849, + 45.51557 + ], + [ + -73.509164, + 45.515381 + ], + [ + -73.508444, + 45.51521 + ], + [ + -73.503449, + 45.513618 + ], + [ + -73.500803, + 45.512776 + ], + [ + -73.499338, + 45.51231 + ], + [ + -73.499162, + 45.512254 + ], + [ + -73.498549, + 45.512062 + ], + [ + -73.497699, + 45.511795 + ], + [ + -73.496919, + 45.511546 + ], + [ + -73.496096, + 45.511283 + ], + [ + -73.495565, + 45.511107 + ], + [ + -73.495059, + 45.510918 + ], + [ + -73.494579, + 45.510716 + ], + [ + -73.494122, + 45.510491 + ], + [ + -73.493683, + 45.510252 + ], + [ + -73.493267, + 45.509991 + ], + [ + -73.492868, + 45.509712 + ], + [ + -73.492676, + 45.509564 + ], + [ + -73.4923, + 45.509258 + ], + [ + -73.491951, + 45.508929 + ], + [ + -73.49179, + 45.508763 + ], + [ + -73.491635, + 45.508592 + ], + [ + -73.491347, + 45.508236 + ], + [ + -73.4913, + 45.508173 + ], + [ + -73.491215, + 45.508056 + ], + [ + -73.490974, + 45.507678 + ], + [ + -73.490056, + 45.506158 + ], + [ + -73.48918, + 45.5047 + ], + [ + -73.488595, + 45.503723 + ], + [ + -73.488541, + 45.503629 + ], + [ + -73.48831, + 45.50321 + ], + [ + -73.48823, + 45.503039 + ], + [ + -73.488092, + 45.502693 + ], + [ + -73.487989, + 45.502369 + ], + [ + -73.487959, + 45.502275 + ], + [ + -73.487746, + 45.501478 + ], + [ + -73.487613, + 45.501033 + ], + [ + -73.487523, + 45.500735 + ], + [ + -73.487509, + 45.500686 + ], + [ + -73.487464, + 45.50056 + ], + [ + -73.487346, + 45.500232 + ], + [ + -73.487139, + 45.499795 + ], + [ + -73.486985, + 45.499512 + ], + [ + -73.486844, + 45.499277 + ], + [ + -73.486818, + 45.499233 + ], + [ + -73.48673, + 45.4991 + ], + [ + -73.486631, + 45.498949 + ], + [ + -73.486428, + 45.498675 + ], + [ + -73.486216, + 45.498401 + ], + [ + -73.486166, + 45.498342 + ], + [ + -73.486, + 45.498149 + ], + [ + -73.485576, + 45.497708 + ], + [ + -73.485299, + 45.497456 + ], + [ + -73.485255, + 45.497418 + ], + [ + -73.485251, + 45.497415 + ], + [ + -73.484899, + 45.497123 + ], + [ + -73.484452, + 45.496789 + ], + [ + -73.484387, + 45.49674 + ], + [ + -73.484357, + 45.496722 + ], + [ + -73.482246, + 45.495326 + ], + [ + -73.482144, + 45.49526 + ], + [ + -73.482055, + 45.495201 + ], + [ + -73.479554, + 45.493543 + ], + [ + -73.479372, + 45.493423 + ], + [ + -73.474537, + 45.490228 + ], + [ + -73.474366, + 45.490115 + ], + [ + -73.473909, + 45.489814 + ], + [ + -73.472122, + 45.488632 + ], + [ + -73.471942, + 45.488513 + ], + [ + -73.46708, + 45.485304 + ], + [ + -73.466642, + 45.484984 + ], + [ + -73.466533, + 45.484894 + ], + [ + -73.466473, + 45.484845 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466302, + 45.484687 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466022, + 45.484682 + ], + [ + -73.465888, + 45.484747 + ], + [ + -73.465767, + 45.484792 + ], + [ + -73.465702, + 45.484807 + ], + [ + -73.465661, + 45.484807 + ], + [ + -73.465627, + 45.484802 + ], + [ + -73.4655, + 45.484766 + ], + [ + -73.464965, + 45.484574 + ], + [ + -73.464559, + 45.484417 + ], + [ + -73.464508, + 45.484399 + ], + [ + -73.464185, + 45.484291 + ], + [ + -73.463703, + 45.484155 + ], + [ + -73.463657, + 45.484142 + ], + [ + -73.46319, + 45.484029 + ], + [ + -73.462672, + 45.483908 + ], + [ + -73.462287, + 45.483831 + ], + [ + -73.462032, + 45.483791 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.46135, + 45.4837 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461294, + 45.483961 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.459557, + 45.485497 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.457883, + 45.486537 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.456938, + 45.487846 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456449, + 45.487901 + ], + [ + -73.456154, + 45.487865 + ], + [ + -73.455852, + 45.487802 + ], + [ + -73.455596, + 45.487748 + ], + [ + -73.455357, + 45.487675 + ], + [ + -73.455213, + 45.487621 + ], + [ + -73.454998, + 45.487531 + ], + [ + -73.454777, + 45.487423 + ], + [ + -73.454672, + 45.487356 + ], + [ + -73.454523, + 45.487261 + ], + [ + -73.454176, + 45.487527 + ], + [ + -73.453821, + 45.487792 + ], + [ + -73.452906, + 45.488462 + ] + ] + }, + "id": 330, + "properties": { + "id": "6c150fb9-623d-4944-b95b-9e646a43c35f", + "data": { + "gtfs": { + "shape_id": "607_1_A" + }, + "segments": [ + { + "distanceMeters": 137, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 627, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 2920, + "travelTimeSeconds": 450 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 538, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 603, + "travelTimeSeconds": 93 + }, + { + "distanceMeters": 708, + "travelTimeSeconds": 108 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 62 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8188, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6651.5379629597555, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.5, + "travelTimeWithoutDwellTimesSeconds": 1260, + "operatingTimeWithLayoverTimeSeconds": 1440, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1260, + "operatingSpeedWithLayoverMetersPerSecond": 5.69, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.5 + }, + "mode": "bus", + "name": "École de l'Agora", + "color": "#A32638", + "nodes": [ + "d1011845-6c20-48e2-a9a9-e727cee5b959", + "4c755ece-2475-4915-941e-37859f0f391f", + "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "d3215c60-bb9e-40ac-89e4-1f922b39e266", + "bcd0a901-5384-443e-9be4-1f0faa123ccb", + "fdd9bfef-c8dc-4f65-9008-847050729854", + "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", + "7ad37664-fa6b-478f-8d31-2d3ae7009709", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "94cd69e7-ebc9-452b-a357-367107db73b4", + "03b1ef77-b509-4f21-97d5-d511eeb821cb", + "351136d8-2c40-4c3f-8032-a52e48738c07", + "159a0fe9-bedb-40f2-9806-32ab49594978", + "c24b91da-a4a3-4b28-b987-5726c6a01fdb", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "517a8299-e807-4040-8ccd-f417dda7338c" + ], + "stops": [], + "line_id": "796e8ac2-9576-476b-8fec-a488864ea34b", + "segments": [ + 0, + 8, + 49, + 56, + 63, + 109, + 115, + 125, + 128, + 131, + 134, + 136, + 139, + 143, + 179, + 185, + 194 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 330, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.452906, + 45.488462 + ], + [ + -73.452661, + 45.488642 + ], + [ + -73.452316, + 45.488894 + ], + [ + -73.452398, + 45.488943 + ], + [ + -73.452482, + 45.488993 + ], + [ + -73.452596, + 45.489092 + ], + [ + -73.452853, + 45.489389 + ], + [ + -73.453059, + 45.489641 + ], + [ + -73.453301, + 45.489897 + ], + [ + -73.453554, + 45.490154 + ], + [ + -73.453816, + 45.490388 + ], + [ + -73.454028, + 45.490572 + ], + [ + -73.454376, + 45.490852 + ], + [ + -73.454696, + 45.491104 + ], + [ + -73.454792, + 45.49118 + ], + [ + -73.455838, + 45.490552 + ], + [ + -73.456177, + 45.490348 + ], + [ + -73.456382, + 45.490186 + ], + [ + -73.45652, + 45.490034 + ], + [ + -73.456589, + 45.489894 + ], + [ + -73.456688, + 45.489687 + ], + [ + -73.456689, + 45.489683 + ], + [ + -73.456709, + 45.489602 + ], + [ + -73.456724, + 45.489525 + ], + [ + -73.456835, + 45.488612 + ], + [ + -73.456897, + 45.488082 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457713, + 45.486664 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.459237, + 45.485732 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.461094, + 45.484447 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.462585, + 45.484043 + ], + [ + -73.463416, + 45.484224 + ], + [ + -73.463639, + 45.484291 + ], + [ + -73.464599, + 45.48462 + ], + [ + -73.465244, + 45.484835 + ], + [ + -73.465443, + 45.484908 + ], + [ + -73.465586, + 45.484937 + ], + [ + -73.465724, + 45.484942 + ], + [ + -73.465848, + 45.484931 + ], + [ + -73.466018, + 45.484884 + ], + [ + -73.466121, + 45.484844 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.46623, + 45.484867 + ], + [ + -73.466294, + 45.484926 + ], + [ + -73.466467, + 45.485063 + ], + [ + -73.466566, + 45.485142 + ], + [ + -73.466759, + 45.48529 + ], + [ + -73.466948, + 45.485421 + ], + [ + -73.467024, + 45.48547 + ], + [ + -73.467222, + 45.485601 + ], + [ + -73.468004, + 45.486118 + ], + [ + -73.469888, + 45.487365 + ], + [ + -73.470621, + 45.487851 + ], + [ + -73.471609, + 45.488506 + ], + [ + -73.471789, + 45.488626 + ], + [ + -73.473768, + 45.489935 + ], + [ + -73.474013, + 45.490097 + ], + [ + -73.474218, + 45.490232 + ], + [ + -73.476501, + 45.49174 + ], + [ + -73.4777, + 45.49253 + ], + [ + -73.47909, + 45.493447 + ], + [ + -73.479217, + 45.493531 + ], + [ + -73.480275, + 45.494231 + ], + [ + -73.481907, + 45.495309 + ], + [ + -73.482, + 45.495372 + ], + [ + -73.482362, + 45.495611 + ], + [ + -73.483276, + 45.496213 + ], + [ + -73.483953, + 45.496659 + ], + [ + -73.48404, + 45.49672 + ], + [ + -73.484203, + 45.496835 + ], + [ + -73.48442, + 45.496983 + ], + [ + -73.484708, + 45.497199 + ], + [ + -73.484931, + 45.497378 + ], + [ + -73.485095, + 45.49751 + ], + [ + -73.485397, + 45.497784 + ], + [ + -73.485739, + 45.498135 + ], + [ + -73.485877, + 45.498284 + ], + [ + -73.486105, + 45.498553 + ], + [ + -73.486286, + 45.498787 + ], + [ + -73.486368, + 45.498907 + ], + [ + -73.486538, + 45.499154 + ], + [ + -73.486685, + 45.499381 + ], + [ + -73.486823, + 45.499615 + ], + [ + -73.486951, + 45.499858 + ], + [ + -73.487138, + 45.500263 + ], + [ + -73.487159, + 45.500317 + ], + [ + -73.487265, + 45.500602 + ], + [ + -73.487306, + 45.500713 + ], + [ + -73.48737, + 45.50092 + ], + [ + -73.487417, + 45.501077 + ], + [ + -73.487455, + 45.501208 + ], + [ + -73.487464, + 45.50124 + ], + [ + -73.48765, + 45.50191 + ], + [ + -73.487855, + 45.502589 + ], + [ + -73.488032, + 45.50303 + ], + [ + -73.488178, + 45.503309 + ], + [ + -73.488409, + 45.50371 + ], + [ + -73.489159, + 45.504974 + ], + [ + -73.490669, + 45.507471 + ], + [ + -73.490821, + 45.507732 + ], + [ + -73.491056, + 45.508101 + ], + [ + -73.491274, + 45.508389 + ], + [ + -73.491318, + 45.508448 + ], + [ + -73.491611, + 45.508785 + ], + [ + -73.491934, + 45.509114 + ], + [ + -73.492109, + 45.509276 + ], + [ + -73.492486, + 45.5096 + ], + [ + -73.492892, + 45.509906 + ], + [ + -73.493105, + 45.51005 + ], + [ + -73.493324, + 45.510189 + ], + [ + -73.493692, + 45.51041 + ], + [ + -73.494018, + 45.510585 + ], + [ + -73.494514, + 45.510828 + ], + [ + -73.495039, + 45.511049 + ], + [ + -73.495599, + 45.511256 + ], + [ + -73.496194, + 45.511454 + ], + [ + -73.499095, + 45.512371 + ], + [ + -73.500628, + 45.512866 + ], + [ + -73.500836, + 45.512931 + ], + [ + -73.502033, + 45.513303 + ], + [ + -73.505335, + 45.514355 + ], + [ + -73.507293, + 45.514976 + ], + [ + -73.50757, + 45.515057 + ], + [ + -73.508383, + 45.515323 + ], + [ + -73.509009, + 45.515606 + ], + [ + -73.509231, + 45.515687 + ], + [ + -73.509741, + 45.515862 + ], + [ + -73.510108, + 45.515993 + ], + [ + -73.510631, + 45.516182 + ], + [ + -73.510788, + 45.516245 + ], + [ + -73.511308, + 45.516497 + ], + [ + -73.511636, + 45.51669 + ], + [ + -73.511911, + 45.516869 + ], + [ + -73.511995, + 45.516924 + ], + [ + -73.512285, + 45.517135 + ], + [ + -73.512469, + 45.517288 + ], + [ + -73.512743, + 45.517531 + ], + [ + -73.513032, + 45.517815 + ], + [ + -73.513435, + 45.518304 + ], + [ + -73.513469, + 45.518346 + ], + [ + -73.513624, + 45.51858 + ], + [ + -73.513669, + 45.518683 + ], + [ + -73.513704, + 45.51875 + ], + [ + -73.51371, + 45.518777 + ], + [ + -73.513719, + 45.518813 + ], + [ + -73.513719, + 45.518845 + ], + [ + -73.513715, + 45.518903 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515001, + 45.519422 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.518896, + 45.52063 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 331, + "properties": { + "id": "897138c1-2e45-4fe8-ba9a-6494fa7336f8", + "data": { + "gtfs": { + "shape_id": "607_2_R" + }, + "segments": [ + { + "distanceMeters": 376, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 514, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 555, + "travelTimeSeconds": 82 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 544, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 507, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 2816, + "travelTimeSeconds": 416 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 745, + "travelTimeSeconds": 111 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8517, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6651.5379629597555, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.76, + "travelTimeWithoutDwellTimesSeconds": 1260, + "operatingTimeWithLayoverTimeSeconds": 1440, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1260, + "operatingSpeedWithLayoverMetersPerSecond": 5.91, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.76 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "517a8299-e807-4040-8ccd-f417dda7338c", + "da4ca96f-4db9-4287-b307-afc6221c923f", + "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "a90c4da7-455c-41d3-9961-c7a64d627572", + "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", + "4996264a-c3f0-4fe8-be81-9ca3d8659c61", + "e089008c-4123-4897-95b5-a61e5e049f48", + "03b1ef77-b509-4f21-97d5-d511eeb821cb", + "56af9248-f973-4335-84c1-2e5e744a3910", + "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "fd062866-a8eb-4466-b53a-6adf8fc3f09a", + "6c42a8f6-a98f-4058-9992-d00706a03dff", + "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", + "be19484c-af95-45b2-bfe5-24342dd1b710", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "796e8ac2-9576-476b-8fec-a488864ea34b", + "segments": [ + 0, + 13, + 21, + 25, + 34, + 39, + 44, + 69, + 78, + 81, + 85, + 90, + 93, + 111, + 157, + 163, + 176, + 182 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 331, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.396233, + 45.485905 + ], + [ + -73.396316, + 45.48599 + ], + [ + -73.396877, + 45.486562 + ], + [ + -73.397253, + 45.486945 + ], + [ + -73.397988, + 45.487693 + ], + [ + -73.398422, + 45.488141 + ], + [ + -73.398503, + 45.488224 + ], + [ + -73.400292, + 45.490061 + ], + [ + -73.400344, + 45.490114 + ], + [ + -73.400631, + 45.490403 + ], + [ + -73.40073, + 45.490503 + ], + [ + -73.40103, + 45.490791 + ], + [ + -73.401471, + 45.491169 + ], + [ + -73.401956, + 45.491543 + ], + [ + -73.402249, + 45.491741 + ], + [ + -73.402279, + 45.49176 + ], + [ + -73.402357, + 45.491809 + ], + [ + -73.40251, + 45.491908 + ], + [ + -73.402561, + 45.491939 + ], + [ + -73.403076, + 45.492241 + ], + [ + -73.403455, + 45.492444 + ], + [ + -73.403546, + 45.492488 + ], + [ + -73.403928, + 45.492669 + ], + [ + -73.405629, + 45.493438 + ], + [ + -73.405646, + 45.493445 + ], + [ + -73.406308, + 45.493744 + ], + [ + -73.406465, + 45.493815 + ], + [ + -73.407044, + 45.494076 + ], + [ + -73.407318, + 45.494207 + ], + [ + -73.407449, + 45.49427 + ], + [ + -73.408138, + 45.494635 + ], + [ + -73.408581, + 45.494879 + ], + [ + -73.408708, + 45.49495 + ], + [ + -73.408748, + 45.494972 + ], + [ + -73.408851, + 45.495036 + ], + [ + -73.4093, + 45.495297 + ], + [ + -73.410398, + 45.49591 + ], + [ + -73.410608, + 45.496021 + ], + [ + -73.410729, + 45.496085 + ], + [ + -73.411068, + 45.496248 + ], + [ + -73.41156, + 45.496461 + ], + [ + -73.411587, + 45.496473 + ], + [ + -73.412271, + 45.49673 + ], + [ + -73.412864, + 45.496955 + ], + [ + -73.413686, + 45.497254 + ], + [ + -73.414507, + 45.497553 + ], + [ + -73.415733, + 45.497998 + ], + [ + -73.416484, + 45.498271 + ], + [ + -73.416635, + 45.498326 + ], + [ + -73.416723, + 45.498362 + ], + [ + -73.417312, + 45.498592 + ], + [ + -73.417435, + 45.498648 + ], + [ + -73.417607, + 45.498727 + ], + [ + -73.418042, + 45.498952 + ], + [ + -73.418335, + 45.499128 + ], + [ + -73.418479, + 45.499214 + ], + [ + -73.418764, + 45.499407 + ], + [ + -73.419209, + 45.499737 + ], + [ + -73.419305, + 45.499808 + ], + [ + -73.419729, + 45.500092 + ], + [ + -73.419878, + 45.500182 + ], + [ + -73.420342, + 45.50043 + ], + [ + -73.420707, + 45.500605 + ], + [ + -73.420784, + 45.500641 + ], + [ + -73.420878, + 45.500678 + ], + [ + -73.421089, + 45.500763 + ], + [ + -73.421557, + 45.500934 + ], + [ + -73.421727, + 45.500998 + ], + [ + -73.422541, + 45.501286 + ], + [ + -73.423018, + 45.501457 + ], + [ + -73.423282, + 45.501552 + ], + [ + -73.423423, + 45.501602 + ], + [ + -73.424204, + 45.50188 + ], + [ + -73.425944, + 45.502499 + ], + [ + -73.426184, + 45.502584 + ], + [ + -73.427788, + 45.503152 + ], + [ + -73.428083, + 45.503265 + ], + [ + -73.428273, + 45.50335 + ], + [ + -73.428512, + 45.503472 + ], + [ + -73.428523, + 45.503478 + ], + [ + -73.428643, + 45.503549 + ], + [ + -73.428884, + 45.503715 + ], + [ + -73.428992, + 45.503801 + ], + [ + -73.429012, + 45.50382 + ], + [ + -73.429175, + 45.503967 + ], + [ + -73.429253, + 45.504057 + ], + [ + -73.429303, + 45.504111 + ], + [ + -73.429332, + 45.504143 + ], + [ + -73.429383, + 45.504202 + ], + [ + -73.429486, + 45.504359 + ], + [ + -73.429494, + 45.504373 + ], + [ + -73.429599, + 45.504566 + ], + [ + -73.429648, + 45.504679 + ], + [ + -73.429656, + 45.504708 + ], + [ + -73.429758, + 45.505057 + ], + [ + -73.429934, + 45.505849 + ], + [ + -73.430026, + 45.506263 + ], + [ + -73.430066, + 45.506425 + ], + [ + -73.430099, + 45.506555 + ], + [ + -73.430103, + 45.506573 + ], + [ + -73.4302, + 45.506807 + ], + [ + -73.430341, + 45.507086 + ], + [ + -73.430485, + 45.507257 + ], + [ + -73.430506, + 45.507276 + ], + [ + -73.430509, + 45.507278 + ], + [ + -73.430608, + 45.507365 + ], + [ + -73.430672, + 45.507415 + ], + [ + -73.431358, + 45.507856 + ], + [ + -73.431609, + 45.508014 + ], + [ + -73.431666, + 45.508054 + ], + [ + -73.432482, + 45.508559 + ], + [ + -73.433021, + 45.508883 + ], + [ + -73.433395, + 45.509082 + ], + [ + -73.433453, + 45.509113 + ], + [ + -73.433508, + 45.50914 + ], + [ + -73.43374, + 45.509257 + ], + [ + -73.434128, + 45.509428 + ], + [ + -73.43476, + 45.509703 + ], + [ + -73.435361, + 45.509959 + ], + [ + -73.435478, + 45.510009 + ], + [ + -73.435758, + 45.510131 + ], + [ + -73.435893, + 45.510189 + ], + [ + -73.43661, + 45.510502 + ], + [ + -73.437183, + 45.510752 + ], + [ + -73.437938, + 45.511081 + ], + [ + -73.438224, + 45.511212 + ], + [ + -73.438489, + 45.511332 + ], + [ + -73.439008, + 45.511568 + ], + [ + -73.439444, + 45.511753 + ], + [ + -73.439738, + 45.511879 + ], + [ + -73.43983, + 45.511919 + ], + [ + -73.439896, + 45.511951 + ], + [ + -73.440237, + 45.512095 + ], + [ + -73.441448, + 45.512613 + ], + [ + -73.441811, + 45.512775 + ], + [ + -73.442889, + 45.51321 + ], + [ + -73.443061, + 45.51328 + ], + [ + -73.445634, + 45.514379 + ], + [ + -73.445671, + 45.514394 + ], + [ + -73.446646, + 45.514811 + ], + [ + -73.447765, + 45.515271 + ], + [ + -73.448402, + 45.515534 + ], + [ + -73.448481, + 45.515566 + ], + [ + -73.44854, + 45.51559 + ], + [ + -73.449494, + 45.515978 + ], + [ + -73.449844, + 45.516127 + ], + [ + -73.450296, + 45.51632 + ], + [ + -73.451371, + 45.516761 + ], + [ + -73.451373, + 45.516761 + ], + [ + -73.451903, + 45.516982 + ], + [ + -73.452053, + 45.517054 + ], + [ + -73.45224, + 45.517153 + ], + [ + -73.452412, + 45.517228 + ], + [ + -73.452518, + 45.517275 + ], + [ + -73.453808, + 45.5178 + ], + [ + -73.453989, + 45.517874 + ], + [ + -73.454088, + 45.517914 + ], + [ + -73.455195, + 45.518372 + ], + [ + -73.455625, + 45.518549 + ], + [ + -73.45631, + 45.518837 + ], + [ + -73.457046, + 45.519138 + ], + [ + -73.457149, + 45.51918 + ], + [ + -73.457268, + 45.519234 + ], + [ + -73.458416, + 45.519718 + ], + [ + -73.458582, + 45.519788 + ], + [ + -73.460199, + 45.520465 + ], + [ + -73.460326, + 45.520518 + ], + [ + -73.460513, + 45.520597 + ], + [ + -73.462498, + 45.52143 + ], + [ + -73.462791, + 45.521553 + ], + [ + -73.463779, + 45.521958 + ], + [ + -73.463823, + 45.521976 + ], + [ + -73.464215, + 45.522138 + ], + [ + -73.464352, + 45.522188 + ], + [ + -73.464459, + 45.522246 + ], + [ + -73.464607, + 45.522332 + ], + [ + -73.465163, + 45.522554 + ], + [ + -73.465496, + 45.522687 + ], + [ + -73.466002, + 45.522899 + ], + [ + -73.466103, + 45.522924 + ], + [ + -73.466276, + 45.522967 + ], + [ + -73.467237, + 45.523363 + ], + [ + -73.467912, + 45.523648 + ], + [ + -73.468048, + 45.523705 + ], + [ + -73.468866, + 45.524038 + ], + [ + -73.469522, + 45.524322 + ], + [ + -73.469662, + 45.524379 + ], + [ + -73.469721, + 45.524403 + ], + [ + -73.470239, + 45.524623 + ], + [ + -73.470555, + 45.524749 + ], + [ + -73.471094, + 45.524979 + ], + [ + -73.471997, + 45.525357 + ], + [ + -73.472466, + 45.525556 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.474462, + 45.526385 + ], + [ + -73.474661, + 45.526467 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.475467, + 45.526811 + ], + [ + -73.475894, + 45.526982 + ], + [ + -73.476159, + 45.527092 + ], + [ + -73.476219, + 45.527117 + ], + [ + -73.476969, + 45.527428 + ], + [ + -73.477725, + 45.527748 + ], + [ + -73.478336, + 45.528006 + ], + [ + -73.478598, + 45.528117 + ], + [ + -73.479454, + 45.528472 + ], + [ + -73.480164, + 45.528774 + ], + [ + -73.480753, + 45.529011 + ], + [ + -73.48089, + 45.529066 + ], + [ + -73.481428, + 45.5293 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.484963, + 45.530775 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.485802, + 45.531123 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.488436, + 45.532219 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.490636, + 45.533124 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.492967, + 45.534086 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.494094, + 45.534551 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.495628, + 45.535241 + ], + [ + -73.495883, + 45.535371 + ], + [ + -73.496561, + 45.535688 + ], + [ + -73.496645, + 45.535727 + ], + [ + -73.49677, + 45.535781 + ], + [ + -73.49726, + 45.535988 + ], + [ + -73.498459, + 45.536487 + ], + [ + -73.498935, + 45.536687 + ], + [ + -73.499435, + 45.536897 + ], + [ + -73.501142, + 45.537612 + ], + [ + -73.502066, + 45.537998 + ], + [ + -73.50326, + 45.538497 + ], + [ + -73.503424, + 45.538566 + ], + [ + -73.503808, + 45.538728 + ], + [ + -73.503912, + 45.538786 + ], + [ + -73.504095, + 45.538926 + ], + [ + -73.504553, + 45.539317 + ], + [ + -73.504747, + 45.539452 + ], + [ + -73.504767, + 45.539463 + ], + [ + -73.504898, + 45.539533 + ], + [ + -73.506469, + 45.540185 + ], + [ + -73.507029, + 45.540406 + ], + [ + -73.507958, + 45.540788 + ], + [ + -73.508096, + 45.540847 + ], + [ + -73.508112, + 45.54082 + ], + [ + -73.508159, + 45.540752 + ], + [ + -73.508242, + 45.54063 + ], + [ + -73.508344, + 45.540481 + ], + [ + -73.508359, + 45.54046 + ], + [ + -73.508548, + 45.540185 + ], + [ + -73.508697, + 45.53997 + ], + [ + -73.508896, + 45.539681 + ], + [ + -73.508991, + 45.53956 + ], + [ + -73.5095, + 45.538868 + ], + [ + -73.509547, + 45.538804 + ], + [ + -73.510038, + 45.538129 + ], + [ + -73.510181, + 45.537976 + ], + [ + -73.510286, + 45.537872 + ], + [ + -73.510414, + 45.537805 + ], + [ + -73.510805, + 45.537571 + ], + [ + -73.51108, + 45.537427 + ], + [ + -73.511591, + 45.537131 + ], + [ + -73.511716, + 45.537058 + ], + [ + -73.51274, + 45.536459 + ], + [ + -73.513159, + 45.536081 + ], + [ + -73.513272, + 45.536035 + ], + [ + -73.513413, + 45.535879 + ], + [ + -73.513707, + 45.535583 + ], + [ + -73.513941, + 45.535349 + ], + [ + -73.513973, + 45.535318 + ], + [ + -73.514031, + 45.535263 + ], + [ + -73.514312, + 45.534967 + ], + [ + -73.514735, + 45.53454 + ], + [ + -73.514842, + 45.53442 + ], + [ + -73.514898, + 45.534357 + ], + [ + -73.515145, + 45.534084 + ], + [ + -73.515317, + 45.533897 + ], + [ + -73.515372, + 45.533842 + ], + [ + -73.515504, + 45.533699 + ], + [ + -73.515509, + 45.533694 + ], + [ + -73.515888, + 45.533287 + ], + [ + -73.515986, + 45.533193 + ], + [ + -73.516614, + 45.532648 + ], + [ + -73.516729, + 45.532549 + ], + [ + -73.517579, + 45.531802 + ], + [ + -73.517926, + 45.531463 + ], + [ + -73.518114, + 45.53128 + ], + [ + -73.518212, + 45.531168 + ], + [ + -73.51845, + 45.53088 + ], + [ + -73.518608, + 45.530695 + ], + [ + -73.518713, + 45.530574 + ], + [ + -73.518834, + 45.53043 + ], + [ + -73.518953, + 45.53029 + ], + [ + -73.51902, + 45.530169 + ], + [ + -73.519168, + 45.529849 + ], + [ + -73.519338, + 45.529471 + ], + [ + -73.519395, + 45.529185 + ], + [ + -73.519421, + 45.528792 + ], + [ + -73.519425, + 45.528096 + ], + [ + -73.519428, + 45.527606 + ], + [ + -73.519433, + 45.526821 + ], + [ + -73.519425, + 45.526551 + ], + [ + -73.519398, + 45.526011 + ], + [ + -73.519391, + 45.525872 + ], + [ + -73.51938, + 45.525587 + ], + [ + -73.519429, + 45.525494 + ], + [ + -73.519429, + 45.525151 + ], + [ + -73.519429, + 45.524623 + ], + [ + -73.519429, + 45.524477 + ], + [ + -73.519455, + 45.524194 + ], + [ + -73.519492, + 45.523954 + ], + [ + -73.519551, + 45.523677 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.519882, + 45.523386 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.520198, + 45.524077 + ], + [ + -73.520174, + 45.524387 + ], + [ + -73.520921, + 45.524418 + ], + [ + -73.520961, + 45.524418 + ], + [ + -73.520974, + 45.524409 + ], + [ + -73.520997, + 45.524405 + ], + [ + -73.521023, + 45.524373 + ], + [ + -73.521033, + 45.524294 + ] + ] + }, + "id": 332, + "properties": { + "id": "f64bebb1-3522-4c7f-9370-d8f8af57f329", + "data": { + "gtfs": { + "shape_id": "608_1_A" + }, + "segments": [ + { + "distanceMeters": 302, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 63, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 422, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 480, + "travelTimeSeconds": 88 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 88, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 18, + "travelTimeSeconds": 4 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 76, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 211, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 102, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 347, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 635, + "travelTimeSeconds": 128 + }, + { + "distanceMeters": 533, + "travelTimeSeconds": 109 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 252, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13294, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 10630.668433067924, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.28, + "travelTimeWithoutDwellTimesSeconds": 2520, + "operatingTimeWithLayoverTimeSeconds": 2772, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2520, + "operatingSpeedWithLayoverMetersPerSecond": 4.8, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.28 + }, + "mode": "bus", + "name": "Terminus Longueuil", + "color": "#A32638", + "nodes": [ + "819870cc-ffb6-4a2a-add6-5b056cc3e4c0", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", + "7c34d8fb-52d2-4cf7-8954-ff69847540ac", + "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", + "76b4c3d5-f580-480d-bfec-c2639dd60d13", + "76b4c3d5-f580-480d-bfec-c2639dd60d13", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "df19b328-a961-4b0c-b128-99b5bcce3403", + "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", + "e654777c-6941-47f5-a273-d73ab074f10e", + "bb148567-d18f-49e1-a388-f782610c5390", + "e8e5c7df-2edf-4749-98c2-97962c7eff9c", + "a0b2e96c-f14a-4143-9ef3-8bb0e0e8a984", + "1b175835-d1cc-4713-943f-5472ffaa8fea", + "b4fcda7a-779e-4762-b2e5-038988d405be", + "80008949-5a0f-4c5e-b778-592c2ee8487f", + "53ead0f5-ebe4-4285-9d12-aa867ff0e782", + "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", + "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", + "7b1c691c-8a55-45c2-8401-9d619a0efb76", + "c4825963-416e-404b-a744-6ffe763e2d89", + "344c16fc-7161-4015-9999-e3e0f325dd1e", + "5636d204-312b-4d1e-bac7-614621da4bb5", + "d3991811-d92b-4ba2-9732-26a74abc49b7", + "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "5981cea7-b196-4e72-820c-362fb9c4e212", + "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", + "130245ae-209b-4e27-b903-ff57832b92eb", + "0d6b35f8-1b6c-4403-a7a5-53247aec7649", + "c3a2368c-bf2d-4c72-9adb-41ee799004b3", + "011d1f54-164c-4564-a051-bdacad3e287d", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "49918c5a-8414-49fd-abf9-87ae6b9f3976", + "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", + "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", + "65175945-c54c-4732-85a9-890393a0975c", + "27c5df15-201f-4855-9f49-556fd659fd8e", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "999ed130-7d99-4115-ac3c-cabba7731288", + "d15f81ba-7519-47f7-aa07-0026f1b03e42", + "28f2fe65-961c-4550-a722-1e7790fe94ad", + "9cf81604-6d70-4ba8-a3fc-521104742058", + "4d48f36b-2274-4392-afac-b2c2c64b98f0", + "5f58acb6-be68-437f-bde7-a77d03125af9", + "4e61612c-2f48-47d6-ad42-7c0737853911", + "e46ba2d2-9f30-419f-acae-c73c3ef665c5", + "48ea0d06-7b69-4895-b55b-2a18e6e6f906", + "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", + "d00d9138-966b-4522-be1d-8c665c71246b", + "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "649e6394-9376-40eb-bc0e-4a376a0044aa", + "4fb4515b-e129-4622-b855-89143c2fd488", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "202d7303-a137-4cb6-a689-d93e9f2f9634", + "segments": [ + 0, + 5, + 8, + 15, + 21, + 23, + 25, + 31, + 37, + 44, + 47, + 62, + 70, + 73, + 89, + 95, + 114, + 118, + 126, + 128, + 135, + 138, + 141, + 147, + 155, + 160, + 165, + 170, + 176, + 182, + 186, + 192, + 196, + 197, + 201, + 205, + 211, + 218, + 220, + 222, + 226, + 231, + 233, + 239, + 244, + 248, + 255, + 264, + 270, + 278, + 286, + 296, + 299, + 302, + 319 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 332, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.476061, + 45.456487 + ], + [ + -73.475848, + 45.456479 + ], + [ + -73.474778, + 45.456443 + ], + [ + -73.473716, + 45.456411 + ], + [ + -73.47264, + 45.456375 + ], + [ + -73.471572, + 45.456339 + ], + [ + -73.47073, + 45.456312 + ], + [ + -73.47047, + 45.456303 + ], + [ + -73.469686, + 45.456262 + ], + [ + -73.46943, + 45.456244 + ], + [ + -73.468978, + 45.456199 + ], + [ + -73.468639, + 45.456149 + ], + [ + -73.468607, + 45.456145 + ], + [ + -73.468443, + 45.456109 + ], + [ + -73.467856, + 45.455996 + ], + [ + -73.467523, + 45.455919 + ], + [ + -73.467299, + 45.455861 + ], + [ + -73.466983, + 45.455757 + ], + [ + -73.466899, + 45.455728 + ], + [ + -73.466828, + 45.455703 + ], + [ + -73.466307, + 45.455496 + ], + [ + -73.466093, + 45.45541 + ], + [ + -73.465683, + 45.455224 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.463912, + 45.454506 + ], + [ + -73.463601, + 45.454377 + ], + [ + -73.463295, + 45.45425 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.461788, + 45.453569 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.461995, + 45.453092 + ], + [ + -73.462227, + 45.45284 + ], + [ + -73.462521, + 45.452512 + ], + [ + -73.462647, + 45.452373 + ], + [ + -73.462794, + 45.452251 + ], + [ + -73.46333, + 45.451858 + ], + [ + -73.463473, + 45.451752 + ], + [ + -73.464171, + 45.451253 + ], + [ + -73.464437, + 45.450996 + ], + [ + -73.464569, + 45.450815 + ], + [ + -73.464689, + 45.45065 + ], + [ + -73.465053, + 45.450083 + ], + [ + -73.465974, + 45.448648 + ], + [ + -73.466, + 45.448608 + ], + [ + -73.466078, + 45.448455 + ], + [ + -73.466096, + 45.44836 + ], + [ + -73.466204, + 45.447915 + ], + [ + -73.466314, + 45.447523 + ], + [ + -73.466576, + 45.447132 + ], + [ + -73.466916, + 45.446619 + ], + [ + -73.467121, + 45.446405 + ], + [ + -73.467388, + 45.446125 + ], + [ + -73.467467, + 45.446048 + ], + [ + -73.46755, + 45.445972 + ], + [ + -73.467743, + 45.445738 + ], + [ + -73.467879, + 45.445603 + ], + [ + -73.467947, + 45.445454 + ], + [ + -73.467968, + 45.445351 + ], + [ + -73.467959, + 45.445234 + ], + [ + -73.468021, + 45.445022 + ], + [ + -73.468044, + 45.444901 + ], + [ + -73.468082, + 45.444748 + ], + [ + -73.468126, + 45.444631 + ], + [ + -73.468179, + 45.444519 + ], + [ + -73.468216, + 45.444456 + ], + [ + -73.468613, + 45.443844 + ], + [ + -73.468955, + 45.443303 + ], + [ + -73.469051, + 45.443151 + ], + [ + -73.469477, + 45.442492 + ], + [ + -73.469784, + 45.442018 + ], + [ + -73.470012, + 45.441666 + ], + [ + -73.470027, + 45.441639 + ], + [ + -73.470099, + 45.441352 + ], + [ + -73.470257, + 45.441055 + ], + [ + -73.470303, + 45.440969 + ], + [ + -73.471678, + 45.438891 + ], + [ + -73.472219, + 45.438078 + ], + [ + -73.472271, + 45.438 + ], + [ + -73.471224, + 45.437922 + ], + [ + -73.470889, + 45.437897 + ], + [ + -73.470756, + 45.437887 + ], + [ + -73.470561, + 45.437874 + ], + [ + -73.470109, + 45.437842 + ], + [ + -73.468967, + 45.437779 + ], + [ + -73.46793, + 45.43771 + ], + [ + -73.46781, + 45.437702 + ], + [ + -73.465864, + 45.437562 + ], + [ + -73.465515, + 45.437526 + ], + [ + -73.465311, + 45.437496 + ], + [ + -73.4653, + 45.437494 + ], + [ + -73.465091, + 45.437458 + ], + [ + -73.464723, + 45.437368 + ], + [ + -73.463269, + 45.436949 + ], + [ + -73.462441, + 45.436705 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.462154, + 45.436845 + ], + [ + -73.461977, + 45.437119 + ], + [ + -73.461434, + 45.437958 + ], + [ + -73.460899, + 45.438784 + ], + [ + -73.460824, + 45.438928 + ], + [ + -73.460775, + 45.43905 + ], + [ + -73.460753, + 45.439144 + ], + [ + -73.460743, + 45.4392 + ], + [ + -73.460732, + 45.439261 + ], + [ + -73.460756, + 45.439374 + ], + [ + -73.460804, + 45.439527 + ], + [ + -73.460879, + 45.439666 + ], + [ + -73.4611, + 45.439963 + ], + [ + -73.461732, + 45.440683 + ], + [ + -73.46187, + 45.440814 + ], + [ + -73.462104, + 45.44098 + ], + [ + -73.462213, + 45.441057 + ], + [ + -73.462145, + 45.441115 + ], + [ + -73.46199, + 45.441264 + ], + [ + -73.461921, + 45.441345 + ], + [ + -73.461295, + 45.442296 + ], + [ + -73.461249, + 45.442366 + ], + [ + -73.460609, + 45.44336 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.460454, + 45.443598 + ], + [ + -73.460027, + 45.444237 + ], + [ + -73.459526, + 45.445028 + ], + [ + -73.459486, + 45.445092 + ], + [ + -73.458903, + 45.445978 + ], + [ + -73.458716, + 45.446252 + ], + [ + -73.458499, + 45.446437 + ], + [ + -73.458358, + 45.446536 + ], + [ + -73.45823, + 45.446598 + ], + [ + -73.458121, + 45.446639 + ], + [ + -73.4581, + 45.446646 + ], + [ + -73.458085, + 45.446651 + ], + [ + -73.458009, + 45.446676 + ], + [ + -73.457516, + 45.446841 + ], + [ + -73.456885, + 45.447052 + ], + [ + -73.456377, + 45.447222 + ], + [ + -73.456253, + 45.447264 + ], + [ + -73.455927, + 45.447371 + ], + [ + -73.455661, + 45.447479 + ], + [ + -73.455528, + 45.447551 + ], + [ + -73.455416, + 45.447619 + ], + [ + -73.455304, + 45.447709 + ], + [ + -73.455137, + 45.447929 + ], + [ + -73.454897, + 45.448293 + ], + [ + -73.454606, + 45.448707 + ], + [ + -73.454507, + 45.448806 + ], + [ + -73.454405, + 45.448886 + ], + [ + -73.454351, + 45.448928 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.454088, + 45.449121 + ], + [ + -73.454556, + 45.449427 + ], + [ + -73.454809, + 45.449619 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.453977, + 45.450264 + ], + [ + -73.452721, + 45.451143 + ], + [ + -73.452622, + 45.451213 + ], + [ + -73.45274, + 45.451298 + ], + [ + -73.453298, + 45.451699 + ], + [ + -73.452613, + 45.45218 + ], + [ + -73.45248, + 45.452271 + ], + [ + -73.451617, + 45.452863 + ], + [ + -73.451486, + 45.452953 + ], + [ + -73.45112, + 45.453219 + ], + [ + -73.450766, + 45.453502 + ], + [ + -73.450717, + 45.453562 + ], + [ + -73.450488, + 45.453839 + ], + [ + -73.451305, + 45.454127 + ], + [ + -73.451557, + 45.454204 + ], + [ + -73.45174, + 45.454276 + ], + [ + -73.451796, + 45.454305 + ], + [ + -73.451873, + 45.454344 + ], + [ + -73.451956, + 45.454402 + ], + [ + -73.452104, + 45.454551 + ], + [ + -73.452189, + 45.454636 + ], + [ + -73.452038, + 45.454708 + ], + [ + -73.451941, + 45.454767 + ], + [ + -73.451848, + 45.45487 + ], + [ + -73.45166, + 45.455126 + ], + [ + -73.451461, + 45.455422 + ], + [ + -73.451241, + 45.455747 + ], + [ + -73.450443, + 45.45693 + ], + [ + -73.450382, + 45.457097 + ], + [ + -73.450362, + 45.457232 + ], + [ + -73.450366, + 45.457377 + ], + [ + -73.450367, + 45.457403 + ], + [ + -73.4504, + 45.457554 + ], + [ + -73.450437, + 45.457731 + ], + [ + -73.451112, + 45.458216 + ], + [ + -73.452534, + 45.459239 + ], + [ + -73.453107, + 45.45966 + ], + [ + -73.453221, + 45.459743 + ], + [ + -73.454663, + 45.460779 + ], + [ + -73.455149, + 45.461128 + ], + [ + -73.456104, + 45.461814 + ], + [ + -73.456268, + 45.4619 + ], + [ + -73.456608, + 45.461964 + ], + [ + -73.457019, + 45.462007 + ], + [ + -73.457439, + 45.46205 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.458539, + 45.46218 + ], + [ + -73.458611, + 45.462189 + ], + [ + -73.459742, + 45.462333 + ], + [ + -73.460596, + 45.46227 + ], + [ + -73.461023, + 45.462239 + ], + [ + -73.461274, + 45.462221 + ], + [ + -73.46213, + 45.462145 + ], + [ + -73.462729, + 45.462095 + ], + [ + -73.462839, + 45.462082 + ], + [ + -73.462926, + 45.462051 + ], + [ + -73.463004, + 45.46201 + ], + [ + -73.463058, + 45.461956 + ], + [ + -73.463101, + 45.461866 + ], + [ + -73.463097, + 45.461763 + ], + [ + -73.463035, + 45.46138 + ], + [ + -73.462935, + 45.460758 + ], + [ + -73.462922, + 45.460678 + ], + [ + -73.462765, + 45.459532 + ], + [ + -73.462745, + 45.459391 + ], + [ + -73.463438, + 45.459357 + ], + [ + -73.463732, + 45.459342 + ], + [ + -73.464994, + 45.459278 + ], + [ + -73.465215, + 45.461562 + ], + [ + -73.465247, + 45.461893 + ], + [ + -73.465328, + 45.462497 + ], + [ + -73.465435, + 45.463211 + ], + [ + -73.465484, + 45.463543 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.468228, + 45.466848 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466754 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469319, + 45.467991 + ], + [ + -73.468598, + 45.467969 + ], + [ + -73.468434, + 45.467978 + ], + [ + -73.467926, + 45.468045 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467548, + 45.468225 + ], + [ + -73.467698, + 45.468792 + ], + [ + -73.467776, + 45.469183 + ], + [ + -73.46782, + 45.469453 + ], + [ + -73.467842, + 45.469714 + ], + [ + -73.467865, + 45.469989 + ], + [ + -73.467864, + 45.470057 + ], + [ + -73.467862, + 45.470168 + ], + [ + -73.46786, + 45.470362 + ], + [ + -73.467821, + 45.470781 + ], + [ + -73.467786, + 45.471019 + ], + [ + -73.467768, + 45.4711 + ], + [ + -73.467742, + 45.471226 + ], + [ + -73.467655, + 45.471563 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467508, + 45.472063 + ], + [ + -73.467493, + 45.472108 + ], + [ + -73.467339, + 45.472573 + ], + [ + -73.467254, + 45.472832 + ], + [ + -73.467075, + 45.473412 + ], + [ + -73.467018, + 45.473612 + ], + [ + -73.46686, + 45.474168 + ], + [ + -73.466715, + 45.474632 + ], + [ + -73.466501, + 45.475269 + ], + [ + -73.466278, + 45.475935 + ], + [ + -73.466234, + 45.476067 + ], + [ + -73.466123, + 45.476397 + ], + [ + -73.465592, + 45.477979 + ], + [ + -73.465357, + 45.478703 + ], + [ + -73.465332, + 45.478768 + ], + [ + -73.465269, + 45.478932 + ], + [ + -73.465247, + 45.479 + ], + [ + -73.465115, + 45.479397 + ], + [ + -73.464879, + 45.480107 + ], + [ + -73.464823, + 45.480273 + ], + [ + -73.464733, + 45.480574 + ], + [ + -73.464664, + 45.480885 + ], + [ + -73.464645, + 45.481025 + ], + [ + -73.464634, + 45.481108 + ], + [ + -73.464622, + 45.481195 + ], + [ + -73.464619, + 45.481245 + ], + [ + -73.464603, + 45.481524 + ], + [ + -73.464619, + 45.481956 + ], + [ + -73.464693, + 45.482383 + ], + [ + -73.464736, + 45.482559 + ], + [ + -73.46485, + 45.482905 + ], + [ + -73.46499, + 45.483243 + ], + [ + -73.465069, + 45.483405 + ], + [ + -73.465231, + 45.483688 + ], + [ + -73.465328, + 45.483837 + ], + [ + -73.465516, + 45.484318 + ], + [ + -73.465535, + 45.48439 + ], + [ + -73.465531, + 45.484453 + ], + [ + -73.465521, + 45.484494 + ], + [ + -73.465494, + 45.484521 + ], + [ + -73.465464, + 45.484552 + ], + [ + -73.46542, + 45.484575 + ], + [ + -73.465379, + 45.484592 + ], + [ + -73.465324, + 45.484601 + ], + [ + -73.465214, + 45.484601 + ], + [ + -73.464965, + 45.484574 + ], + [ + -73.464559, + 45.484417 + ], + [ + -73.464508, + 45.484399 + ], + [ + -73.464185, + 45.484291 + ], + [ + -73.464064, + 45.484257 + ], + [ + -73.463703, + 45.484155 + ], + [ + -73.463657, + 45.484142 + ], + [ + -73.46319, + 45.484029 + ], + [ + -73.462672, + 45.483908 + ], + [ + -73.462287, + 45.483831 + ], + [ + -73.462032, + 45.483791 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.461912, + 45.483773 + ], + [ + -73.46135, + 45.4837 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.45955, + 45.485502 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.457875, + 45.486542 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.456938, + 45.487845 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456449, + 45.487901 + ], + [ + -73.456154, + 45.487865 + ], + [ + -73.455852, + 45.487802 + ], + [ + -73.455596, + 45.487748 + ], + [ + -73.455357, + 45.487675 + ], + [ + -73.455213, + 45.487621 + ], + [ + -73.454998, + 45.487531 + ], + [ + -73.454777, + 45.487423 + ], + [ + -73.454672, + 45.487356 + ], + [ + -73.454523, + 45.487261 + ], + [ + -73.454176, + 45.487527 + ], + [ + -73.453821, + 45.487792 + ], + [ + -73.452906, + 45.488462 + ] + ] + }, + "id": 333, + "properties": { + "id": "4dedb880-0f16-4a1c-b5ca-a6309aca1d9b", + "data": { + "gtfs": { + "shape_id": "609_1_A" + }, + "segments": [ + { + "distanceMeters": 581, + "travelTimeSeconds": 79 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 37, + "travelTimeSeconds": 5 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 168, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 87, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 93, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 1188, + "travelTimeSeconds": 163 + }, + { + "distanceMeters": 754, + "travelTimeSeconds": 179 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 436, + "travelTimeSeconds": 103 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 72, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 1000, + "travelTimeSeconds": 238 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 96 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 222, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13427, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3985.4196725437887, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.05, + "travelTimeWithoutDwellTimesSeconds": 2220, + "operatingTimeWithLayoverTimeSeconds": 2442, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2220, + "operatingSpeedWithLayoverMetersPerSecond": 5.5, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.05 + }, + "mode": "bus", + "name": "École de l'Agora", + "color": "#A32638", + "nodes": [ + "1782a1a7-eddc-4228-a7a8-bf733f339e68", + "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", + "8443a69f-fccf-4a19-8d08-6da77269e686", + "2946050b-73ca-45c7-be10-f80ba5b43ab5", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "90d9bb0e-4845-468b-af33-21831922eede", + "d300031f-a642-4e09-b48b-0e859400e1f7", + "27cd912d-c30d-4955-977f-68eb1e010190", + "809d30b8-456e-4e86-b782-8a6448d546e0", + "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", + "daacedd2-0b84-4f73-9f01-d9072ec32dce", + "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", + "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "c7e2639a-bb94-426e-918b-714f0212d53b", + "19a4f64a-0169-40b9-8b9c-84de3158151e", + "b93691d0-438e-4eac-87a0-7c1ac45a7c18", + "9b31d865-da9f-4eb8-b8a9-3d488eb579df", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "57126f14-f5bb-4578-a4ae-48d75eae5e82", + "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", + "8b7e764f-0227-410c-89b9-51b9a8ad8c88", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", + "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", + "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", + "0087674f-0098-4bab-9a77-b31eb3602613", + "db56dff4-d82c-4b2d-ad34-35b3db3f27de", + "800b4ca8-f540-48ef-9acf-ec6d45db3496", + "0c735a18-4964-435c-ad38-89ab21a47f83", + "c01e4d9c-c5df-425f-9b40-215a62d76b50", + "4ca26d1e-a5a2-4d1a-ba5a-7bed9b5a1bee", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "5d862a7d-92b0-4def-8199-258993ce3523", + "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", + "d0325326-9fbf-42e2-aefa-29fa09853c10", + "d13720b6-fb91-4a90-a816-addaef17cf17", + "80775ca9-8434-48d9-a65d-5f3eace6e2d8", + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "acb7092d-3b2a-4d79-a4e3-09e7e52af475", + "47d29e21-b442-4f1e-bc41-0d7871af14e8", + "7eaffbff-c86c-4810-b174-bda8780c04b4", + "e76a6766-6730-419b-bd29-f65b80bb6721", + "bf51d692-a22e-42e9-a495-2d1955e0c462", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "c24b91da-a4a3-4b28-b987-5726c6a01fdb", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "517a8299-e807-4040-8ccd-f417dda7338c" + ], + "stops": [], + "line_id": "e4a4b657-a352-4726-ac1d-5b2ae996f95c", + "segments": [ + 0, + 11, + 20, + 27, + 30, + 37, + 41, + 44, + 52, + 68, + 75, + 78, + 81, + 86, + 90, + 95, + 97, + 99, + 104, + 112, + 117, + 119, + 123, + 131, + 136, + 147, + 152, + 155, + 161, + 165, + 173, + 180, + 186, + 190, + 192, + 198, + 200, + 204, + 215, + 217, + 220, + 258, + 281, + 295, + 304, + 307, + 310, + 315, + 362, + 368, + 377 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 333, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.452906, + 45.488462 + ], + [ + -73.452661, + 45.488642 + ], + [ + -73.452316, + 45.488894 + ], + [ + -73.452398, + 45.488943 + ], + [ + -73.452482, + 45.488993 + ], + [ + -73.452596, + 45.489092 + ], + [ + -73.452853, + 45.489389 + ], + [ + -73.453059, + 45.489641 + ], + [ + -73.453301, + 45.489897 + ], + [ + -73.453554, + 45.490154 + ], + [ + -73.453816, + 45.490388 + ], + [ + -73.454028, + 45.490572 + ], + [ + -73.454376, + 45.490852 + ], + [ + -73.454696, + 45.491105 + ], + [ + -73.454792, + 45.49118 + ], + [ + -73.455557, + 45.490721 + ], + [ + -73.456177, + 45.490348 + ], + [ + -73.456382, + 45.490186 + ], + [ + -73.45652, + 45.490034 + ], + [ + -73.456589, + 45.489894 + ], + [ + -73.456688, + 45.489687 + ], + [ + -73.456689, + 45.489683 + ], + [ + -73.456709, + 45.489602 + ], + [ + -73.456724, + 45.489525 + ], + [ + -73.456835, + 45.488612 + ], + [ + -73.456898, + 45.488081 + ], + [ + -73.456914, + 45.487946 + ], + [ + -73.456962, + 45.487748 + ], + [ + -73.457061, + 45.487501 + ], + [ + -73.457135, + 45.487357 + ], + [ + -73.457168, + 45.487285 + ], + [ + -73.457257, + 45.487163 + ], + [ + -73.457384, + 45.486988 + ], + [ + -73.457563, + 45.486808 + ], + [ + -73.457715, + 45.486663 + ], + [ + -73.457779, + 45.486601 + ], + [ + -73.45845, + 45.486187 + ], + [ + -73.4585, + 45.48616 + ], + [ + -73.45866, + 45.486071 + ], + [ + -73.459238, + 45.485731 + ], + [ + -73.459365, + 45.485657 + ], + [ + -73.459428, + 45.485585 + ], + [ + -73.459818, + 45.485319 + ], + [ + -73.460288, + 45.484998 + ], + [ + -73.461097, + 45.484445 + ], + [ + -73.4611, + 45.484443 + ], + [ + -73.46115, + 45.484389 + ], + [ + -73.461194, + 45.484339 + ], + [ + -73.461241, + 45.484263 + ], + [ + -73.461246, + 45.484236 + ], + [ + -73.461257, + 45.484173 + ], + [ + -73.461295, + 45.483957 + ], + [ + -73.461321, + 45.483835 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.461742, + 45.483894 + ], + [ + -73.462585, + 45.484043 + ], + [ + -73.463416, + 45.484224 + ], + [ + -73.463639, + 45.484291 + ], + [ + -73.464054, + 45.484433 + ], + [ + -73.464599, + 45.48462 + ], + [ + -73.465244, + 45.484835 + ], + [ + -73.465443, + 45.484908 + ], + [ + -73.465586, + 45.484937 + ], + [ + -73.465724, + 45.484942 + ], + [ + -73.465848, + 45.484931 + ], + [ + -73.466018, + 45.484884 + ], + [ + -73.466121, + 45.484844 + ], + [ + -73.466168, + 45.484809 + ], + [ + -73.466327, + 45.48471 + ], + [ + -73.466302, + 45.484687 + ], + [ + -73.466193, + 45.48458 + ], + [ + -73.466188, + 45.484448 + ], + [ + -73.466149, + 45.484395 + ], + [ + -73.465905, + 45.484113 + ], + [ + -73.465719, + 45.4839 + ], + [ + -73.46546, + 45.483541 + ], + [ + -73.465236, + 45.483174 + ], + [ + -73.465161, + 45.483037 + ], + [ + -73.465057, + 45.482799 + ], + [ + -73.464968, + 45.48254 + ], + [ + -73.46489, + 45.482284 + ], + [ + -73.464833, + 45.481906 + ], + [ + -73.464816, + 45.481524 + ], + [ + -73.46484, + 45.481211 + ], + [ + -73.464843, + 45.481165 + ], + [ + -73.464847, + 45.481114 + ], + [ + -73.464866, + 45.480979 + ], + [ + -73.46492, + 45.48071 + ], + [ + -73.465032, + 45.480327 + ], + [ + -73.465198, + 45.479819 + ], + [ + -73.46547, + 45.479009 + ], + [ + -73.465543, + 45.478792 + ], + [ + -73.465652, + 45.478467 + ], + [ + -73.465874, + 45.477808 + ], + [ + -73.46647, + 45.47601 + ], + [ + -73.466484, + 45.475966 + ], + [ + -73.466637, + 45.475504 + ], + [ + -73.467366, + 45.473305 + ], + [ + -73.467411, + 45.473172 + ], + [ + -73.467616, + 45.472553 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467869, + 45.471793 + ], + [ + -73.467954, + 45.471482 + ], + [ + -73.467979, + 45.471365 + ], + [ + -73.468005, + 45.471249 + ], + [ + -73.468064, + 45.470898 + ], + [ + -73.468087, + 45.47067 + ], + [ + -73.468112, + 45.470407 + ], + [ + -73.468119, + 45.470155 + ], + [ + -73.468115, + 45.470044 + ], + [ + -73.468111, + 45.469894 + ], + [ + -73.468108, + 45.469818 + ], + [ + -73.468107, + 45.469773 + ], + [ + -73.46805, + 45.4693 + ], + [ + -73.467957, + 45.468854 + ], + [ + -73.467932, + 45.468733 + ], + [ + -73.467793, + 45.468274 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.468735, + 45.466864 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466788 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466352, + 45.465288 + ], + [ + -73.466238, + 45.465062 + ], + [ + -73.466142, + 45.464853 + ], + [ + -73.466048, + 45.464638 + ], + [ + -73.46599, + 45.464498 + ], + [ + -73.465967, + 45.464441 + ], + [ + -73.465973, + 45.464235 + ], + [ + -73.466002, + 45.464038 + ], + [ + -73.466104, + 45.463863 + ], + [ + -73.466216, + 45.463756 + ], + [ + -73.466371, + 45.463679 + ], + [ + -73.466622, + 45.463647 + ], + [ + -73.466852, + 45.463668 + ], + [ + -73.467082, + 45.463784 + ], + [ + -73.467212, + 45.463951 + ], + [ + -73.467234, + 45.464135 + ], + [ + -73.467163, + 45.464287 + ], + [ + -73.467024, + 45.464416 + ], + [ + -73.466735, + 45.46451 + ], + [ + -73.466567, + 45.464522 + ], + [ + -73.465706, + 45.464485 + ], + [ + -73.464402, + 45.464429 + ], + [ + -73.463422, + 45.464395 + ], + [ + -73.462294, + 45.464357 + ], + [ + -73.461419, + 45.464323 + ], + [ + -73.460353, + 45.4642 + ], + [ + -73.459906, + 45.464144 + ], + [ + -73.459408, + 45.464052 + ], + [ + -73.458521, + 45.463796 + ], + [ + -73.458275, + 45.463724 + ], + [ + -73.457681, + 45.463496 + ], + [ + -73.457669, + 45.463491 + ], + [ + -73.456975, + 45.463149 + ], + [ + -73.456896, + 45.463092 + ], + [ + -73.456843, + 45.463043 + ], + [ + -73.456777, + 45.462977 + ], + [ + -73.456717, + 45.462912 + ], + [ + -73.456666, + 45.462833 + ], + [ + -73.456625, + 45.462758 + ], + [ + -73.456603, + 45.462667 + ], + [ + -73.456593, + 45.462539 + ], + [ + -73.4566, + 45.462399 + ], + [ + -73.456621, + 45.462264 + ], + [ + -73.456608, + 45.461964 + ], + [ + -73.456268, + 45.4619 + ], + [ + -73.456104, + 45.461814 + ], + [ + -73.455636, + 45.461478 + ], + [ + -73.454204, + 45.46045 + ], + [ + -73.453336, + 45.459826 + ], + [ + -73.453221, + 45.459743 + ], + [ + -73.452534, + 45.459239 + ], + [ + -73.451112, + 45.458216 + ], + [ + -73.450794, + 45.457988 + ], + [ + -73.450437, + 45.457731 + ], + [ + -73.450367, + 45.457403 + ], + [ + -73.450362, + 45.457232 + ], + [ + -73.450382, + 45.457097 + ], + [ + -73.450443, + 45.45693 + ], + [ + -73.450536, + 45.456792 + ], + [ + -73.451215, + 45.455786 + ], + [ + -73.451461, + 45.455422 + ], + [ + -73.45166, + 45.455126 + ], + [ + -73.451848, + 45.45487 + ], + [ + -73.451887, + 45.454827 + ], + [ + -73.451941, + 45.454767 + ], + [ + -73.452038, + 45.454708 + ], + [ + -73.452189, + 45.454636 + ], + [ + -73.451956, + 45.454402 + ], + [ + -73.451873, + 45.454344 + ], + [ + -73.45174, + 45.454276 + ], + [ + -73.451557, + 45.454204 + ], + [ + -73.451305, + 45.454127 + ], + [ + -73.450822, + 45.453957 + ], + [ + -73.450488, + 45.453839 + ], + [ + -73.450766, + 45.453502 + ], + [ + -73.45112, + 45.453219 + ], + [ + -73.451321, + 45.453073 + ], + [ + -73.451486, + 45.452953 + ], + [ + -73.45248, + 45.452271 + ], + [ + -73.452613, + 45.45218 + ], + [ + -73.453298, + 45.451699 + ], + [ + -73.452791, + 45.451334 + ], + [ + -73.452622, + 45.451213 + ], + [ + -73.453977, + 45.450264 + ], + [ + -73.454474, + 45.449931 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.455056, + 45.44954 + ], + [ + -73.454737, + 45.449301 + ], + [ + -73.45446, + 45.449119 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.454351, + 45.448928 + ], + [ + -73.454507, + 45.448806 + ], + [ + -73.454606, + 45.448707 + ], + [ + -73.454897, + 45.448293 + ], + [ + -73.455137, + 45.447929 + ], + [ + -73.455304, + 45.447709 + ], + [ + -73.455416, + 45.447619 + ], + [ + -73.455528, + 45.447551 + ], + [ + -73.455661, + 45.447479 + ], + [ + -73.455871, + 45.447394 + ], + [ + -73.455927, + 45.447371 + ], + [ + -73.456253, + 45.447264 + ], + [ + -73.456885, + 45.447052 + ], + [ + -73.457516, + 45.446841 + ], + [ + -73.457754, + 45.446762 + ], + [ + -73.458009, + 45.446676 + ], + [ + -73.458085, + 45.446651 + ], + [ + -73.458121, + 45.446639 + ], + [ + -73.45823, + 45.446598 + ], + [ + -73.458358, + 45.446536 + ], + [ + -73.458499, + 45.446437 + ], + [ + -73.458716, + 45.446252 + ], + [ + -73.458903, + 45.445978 + ], + [ + -73.459421, + 45.445191 + ], + [ + -73.459486, + 45.445092 + ], + [ + -73.460027, + 45.444237 + ], + [ + -73.460298, + 45.443833 + ], + [ + -73.460454, + 45.443598 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.461184, + 45.442467 + ], + [ + -73.461249, + 45.442366 + ], + [ + -73.461921, + 45.441345 + ], + [ + -73.46199, + 45.441264 + ], + [ + -73.462035, + 45.44122 + ], + [ + -73.462145, + 45.441115 + ], + [ + -73.462213, + 45.441057 + ], + [ + -73.46187, + 45.440814 + ], + [ + -73.461732, + 45.440683 + ], + [ + -73.461128, + 45.439995 + ], + [ + -73.4611, + 45.439963 + ], + [ + -73.460879, + 45.439666 + ], + [ + -73.460804, + 45.439527 + ], + [ + -73.460756, + 45.439374 + ], + [ + -73.460732, + 45.439261 + ], + [ + -73.460748, + 45.439173 + ], + [ + -73.460753, + 45.439144 + ], + [ + -73.460775, + 45.43905 + ], + [ + -73.460824, + 45.438928 + ], + [ + -73.460899, + 45.438784 + ], + [ + -73.461524, + 45.437819 + ], + [ + -73.462043, + 45.437017 + ], + [ + -73.462055, + 45.436998 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.463269, + 45.436949 + ], + [ + -73.464723, + 45.437368 + ], + [ + -73.465091, + 45.437458 + ], + [ + -73.465112, + 45.437462 + ], + [ + -73.4653, + 45.437494 + ], + [ + -73.465515, + 45.437526 + ], + [ + -73.465864, + 45.437562 + ], + [ + -73.467637, + 45.43769 + ], + [ + -73.46781, + 45.437702 + ], + [ + -73.468967, + 45.437779 + ], + [ + -73.470109, + 45.437842 + ], + [ + -73.47029, + 45.437855 + ], + [ + -73.470561, + 45.437874 + ], + [ + -73.470756, + 45.437887 + ], + [ + -73.471663, + 45.437955 + ], + [ + -73.471971, + 45.437978 + ], + [ + -73.472271, + 45.438 + ], + [ + -73.471889, + 45.438574 + ], + [ + -73.471678, + 45.438891 + ], + [ + -73.470362, + 45.44088 + ], + [ + -73.470303, + 45.440969 + ], + [ + -73.470099, + 45.441352 + ], + [ + -73.470027, + 45.441639 + ], + [ + -73.470012, + 45.441666 + ], + [ + -73.469784, + 45.442018 + ], + [ + -73.469477, + 45.442492 + ], + [ + -73.469144, + 45.443007 + ], + [ + -73.469051, + 45.443151 + ], + [ + -73.468613, + 45.443844 + ], + [ + -73.468216, + 45.444456 + ], + [ + -73.468179, + 45.444519 + ], + [ + -73.468126, + 45.444631 + ], + [ + -73.468082, + 45.444748 + ], + [ + -73.468044, + 45.444901 + ], + [ + -73.468021, + 45.445022 + ], + [ + -73.467959, + 45.445234 + ], + [ + -73.467968, + 45.445351 + ], + [ + -73.467947, + 45.445454 + ], + [ + -73.467879, + 45.445603 + ], + [ + -73.467842, + 45.44564 + ], + [ + -73.467743, + 45.445738 + ], + [ + -73.46755, + 45.445972 + ], + [ + -73.467467, + 45.446048 + ], + [ + -73.467388, + 45.446125 + ], + [ + -73.466916, + 45.446619 + ], + [ + -73.466576, + 45.447132 + ], + [ + -73.466314, + 45.447523 + ], + [ + -73.466204, + 45.447915 + ], + [ + -73.466096, + 45.44836 + ], + [ + -73.466078, + 45.448455 + ], + [ + -73.466036, + 45.448538 + ], + [ + -73.466, + 45.448608 + ], + [ + -73.465053, + 45.450083 + ], + [ + -73.464776, + 45.450515 + ], + [ + -73.464689, + 45.45065 + ], + [ + -73.464437, + 45.450996 + ], + [ + -73.464171, + 45.451253 + ], + [ + -73.463607, + 45.451656 + ], + [ + -73.463473, + 45.451752 + ], + [ + -73.462794, + 45.452251 + ], + [ + -73.462647, + 45.452373 + ], + [ + -73.462227, + 45.45284 + ], + [ + -73.462118, + 45.452958 + ], + [ + -73.461995, + 45.453092 + ], + [ + -73.461759, + 45.453345 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.462898, + 45.454213 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463822, + 45.454609 + ], + [ + -73.46487, + 45.455052 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465851, + 45.455474 + ], + [ + -73.466482, + 45.45573 + ], + [ + -73.466742, + 45.45582 + ], + [ + -73.466794, + 45.455838 + ], + [ + -73.466905, + 45.455874 + ], + [ + -73.467229, + 45.455978 + ], + [ + -73.467462, + 45.456041 + ], + [ + -73.467802, + 45.456122 + ], + [ + -73.468113, + 45.456181 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468564, + 45.456262 + ], + [ + -73.468949, + 45.456316 + ], + [ + -73.469418, + 45.456365 + ], + [ + -73.469671, + 45.456392 + ], + [ + -73.470468, + 45.456429 + ], + [ + -73.471559, + 45.45646 + ], + [ + -73.472632, + 45.456497 + ], + [ + -73.473708, + 45.456537 + ], + [ + -73.474773, + 45.456569 + ], + [ + -73.475672, + 45.456588 + ] + ] + }, + "id": 334, + "properties": { + "id": "65edaad3-f17f-4b9b-b4f7-5f9e32ca5591", + "data": { + "gtfs": { + "shape_id": "609_2_R" + }, + "segments": [ + { + "distanceMeters": 376, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 909, + "travelTimeSeconds": 205 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 608, + "travelTimeSeconds": 137 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 82 + }, + { + "distanceMeters": 1753, + "travelTimeSeconds": 227 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 119, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 593, + "travelTimeSeconds": 78 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 210, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13234, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3985.4196725437887, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.3, + "travelTimeWithoutDwellTimesSeconds": 2100, + "operatingTimeWithLayoverTimeSeconds": 2310, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2100, + "operatingSpeedWithLayoverMetersPerSecond": 5.73, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.3 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "517a8299-e807-4040-8ccd-f417dda7338c", + "da4ca96f-4db9-4287-b307-afc6221c923f", + "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", + "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "a90c4da7-455c-41d3-9961-c7a64d627572", + "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", + "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "579043e1-54f7-411f-9a36-e7ee3324290f", + "1758013c-4193-42f0-a495-c36930003f5b", + "51e1600d-418e-4477-9b26-9e5507d72a03", + "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "30d24143-abd0-4a47-955d-cdbc3943ae61", + "47d3a0e8-5db6-4263-911d-0835de2b9cb0", + "c01e4d9c-c5df-425f-9b40-215a62d76b50", + "5781af67-07a2-4732-99f5-af7b2835e18a", + "800b4ca8-f540-48ef-9acf-ec6d45db3496", + "db56dff4-d82c-4b2d-ad34-35b3db3f27de", + "0087674f-0098-4bab-9a77-b31eb3602613", + "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", + "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", + "fd4f887b-9300-41e3-8cc1-44b80109a4ad", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "8b7e764f-0227-410c-89b9-51b9a8ad8c88", + "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", + "57126f14-f5bb-4578-a4ae-48d75eae5e82", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "9b31d865-da9f-4eb8-b8a9-3d488eb579df", + "b93691d0-438e-4eac-87a0-7c1ac45a7c18", + "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", + "19a4f64a-0169-40b9-8b9c-84de3158151e", + "c7e2639a-bb94-426e-918b-714f0212d53b", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", + "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", + "e13d482c-ee57-4f7d-bc38-264ca460deda", + "daacedd2-0b84-4f73-9f01-d9072ec32dce", + "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", + "e7ac28b2-1ac9-4d12-811f-8e49f5a7d7ab", + "27cd912d-c30d-4955-977f-68eb1e010190", + "d300031f-a642-4e09-b48b-0e859400e1f7", + "90d9bb0e-4845-468b-af33-21831922eede", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "981ebecb-3dc2-4439-8648-8052a51df7ec", + "2a268094-fe95-4a75-83da-d02aa638cbb6", + "1782a1a7-eddc-4228-a7a8-bf733f339e68" + ], + "stops": [], + "line_id": "e4a4b657-a352-4726-ac1d-5b2ae996f95c", + "segments": [ + 0, + 13, + 21, + 25, + 34, + 39, + 44, + 83, + 91, + 94, + 107, + 115, + 130, + 193, + 194, + 195, + 199, + 206, + 210, + 219, + 223, + 228, + 231, + 235, + 246, + 251, + 260, + 263, + 266, + 270, + 275, + 281, + 286, + 287, + 293, + 297, + 301, + 305, + 307, + 309, + 316, + 329, + 340, + 343, + 347, + 354, + 357, + 360, + 371 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 334, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.475383, + 45.468739 + ], + [ + -73.475537, + 45.468744 + ], + [ + -73.477762, + 45.468838 + ], + [ + -73.477791, + 45.468839 + ], + [ + -73.478795, + 45.46888 + ], + [ + -73.479733, + 45.468916 + ], + [ + -73.480589, + 45.468948 + ], + [ + -73.480705, + 45.468952 + ], + [ + -73.481592, + 45.468898 + ], + [ + -73.482517, + 45.468777 + ], + [ + -73.483914, + 45.468794 + ], + [ + -73.484035, + 45.468795 + ], + [ + -73.484852, + 45.468827 + ], + [ + -73.484983, + 45.468836 + ], + [ + -73.485068, + 45.468858 + ], + [ + -73.485183, + 45.468899 + ], + [ + -73.485272, + 45.468957 + ], + [ + -73.485494, + 45.469218 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.485925, + 45.469758 + ], + [ + -73.485957, + 45.470015 + ], + [ + -73.485933, + 45.470276 + ], + [ + -73.485863, + 45.471338 + ], + [ + -73.485859, + 45.471396 + ], + [ + -73.485922, + 45.47159 + ], + [ + -73.486077, + 45.471855 + ], + [ + -73.486282, + 45.472161 + ], + [ + -73.486545, + 45.47257 + ], + [ + -73.486649, + 45.472714 + ], + [ + -73.486715, + 45.472804 + ], + [ + -73.486787, + 45.472912 + ], + [ + -73.486941, + 45.472862 + ], + [ + -73.488142, + 45.472472 + ], + [ + -73.488555, + 45.472341 + ], + [ + -73.488966, + 45.472197 + ], + [ + -73.489081, + 45.472161 + ], + [ + -73.489198, + 45.472121 + ], + [ + -73.489607, + 45.471977 + ], + [ + -73.489856, + 45.471867 + ], + [ + -73.490057, + 45.471779 + ], + [ + -73.490233, + 45.471992 + ], + [ + -73.490819, + 45.472701 + ], + [ + -73.491133, + 45.473071 + ], + [ + -73.491514, + 45.47352 + ], + [ + -73.491147, + 45.473678 + ], + [ + -73.490727, + 45.473858 + ], + [ + -73.490172, + 45.474079 + ], + [ + -73.489892, + 45.474191 + ], + [ + -73.489482, + 45.474308 + ], + [ + -73.48921, + 45.474343 + ], + [ + -73.488939, + 45.474348 + ], + [ + -73.488579, + 45.47433 + ], + [ + -73.48828, + 45.474348 + ], + [ + -73.487939, + 45.474393 + ], + [ + -73.487678, + 45.474467 + ], + [ + -73.487656, + 45.474474 + ], + [ + -73.487464, + 45.474541 + ], + [ + -73.487385, + 45.474582 + ], + [ + -73.487244, + 45.47464 + ], + [ + -73.487321, + 45.474735 + ], + [ + -73.487376, + 45.474807 + ], + [ + -73.487428, + 45.474874 + ], + [ + -73.487615, + 45.475158 + ], + [ + -73.487741, + 45.475441 + ], + [ + -73.487791, + 45.475603 + ], + [ + -73.487792, + 45.475608 + ], + [ + -73.487881, + 45.476058 + ], + [ + -73.487976, + 45.47662 + ], + [ + -73.488008, + 45.476755 + ], + [ + -73.488063, + 45.477092 + ], + [ + -73.488079, + 45.477241 + ], + [ + -73.488077, + 45.477259 + ], + [ + -73.488079, + 45.477295 + ], + [ + -73.488061, + 45.477358 + ], + [ + -73.488022, + 45.477403 + ], + [ + -73.48794, + 45.477475 + ], + [ + -73.487785, + 45.477583 + ], + [ + -73.487346, + 45.477872 + ], + [ + -73.487212, + 45.477961 + ], + [ + -73.486606, + 45.478379 + ], + [ + -73.486467, + 45.478469 + ], + [ + -73.486456, + 45.47848 + ], + [ + -73.486363, + 45.478568 + ], + [ + -73.486284, + 45.478752 + ], + [ + -73.48627, + 45.478815 + ], + [ + -73.486253, + 45.478887 + ], + [ + -73.486246, + 45.47895 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486526, + 45.47904 + ], + [ + -73.486789, + 45.47904 + ], + [ + -73.487039, + 45.479049 + ], + [ + -73.487771, + 45.479064 + ], + [ + -73.491329, + 45.479132 + ], + [ + -73.491505, + 45.479136 + ], + [ + -73.491713, + 45.47914 + ], + [ + -73.49213, + 45.479149 + ], + [ + -73.493367, + 45.479162 + ], + [ + -73.49581, + 45.479202 + ], + [ + -73.496137, + 45.479208 + ], + [ + -73.496207, + 45.479208 + ], + [ + -73.496272, + 45.479208 + ], + [ + -73.497101, + 45.479217 + ], + [ + -73.497989, + 45.479231 + ], + [ + -73.498188, + 45.479235 + ], + [ + -73.498413, + 45.479239 + ], + [ + -73.498669, + 45.479235 + ], + [ + -73.498683, + 45.479234 + ], + [ + -73.498818, + 45.47923 + ], + [ + -73.499162, + 45.479257 + ], + [ + -73.49961, + 45.479198 + ], + [ + -73.49984, + 45.479133 + ], + [ + -73.500019, + 45.479082 + ], + [ + -73.500107, + 45.478998 + ], + [ + -73.500272, + 45.479047 + ], + [ + -73.500354, + 45.479074 + ], + [ + -73.500404, + 45.479087 + ], + [ + -73.500422, + 45.479099 + ], + [ + -73.500588, + 45.479205 + ], + [ + -73.501159, + 45.479818 + ], + [ + -73.501455, + 45.480118 + ], + [ + -73.50163, + 45.480263 + ], + [ + -73.501828, + 45.48048 + ], + [ + -73.502022, + 45.480693 + ], + [ + -73.502676, + 45.481412 + ], + [ + -73.502806, + 45.48156 + ], + [ + -73.503272, + 45.482092 + ], + [ + -73.50345, + 45.482308 + ], + [ + -73.503512, + 45.48238 + ], + [ + -73.503554, + 45.482437 + ], + [ + -73.503598, + 45.482497 + ], + [ + -73.504141, + 45.483117 + ], + [ + -73.504614, + 45.483657 + ], + [ + -73.504846, + 45.483915 + ], + [ + -73.504857, + 45.483927 + ], + [ + -73.504919, + 45.48399 + ], + [ + -73.504924, + 45.483995 + ], + [ + -73.505108, + 45.484152 + ], + [ + -73.505242, + 45.484242 + ], + [ + -73.505364, + 45.484314 + ], + [ + -73.505521, + 45.484395 + ], + [ + -73.505663, + 45.484463 + ], + [ + -73.505851, + 45.484535 + ], + [ + -73.505993, + 45.484584 + ], + [ + -73.506624, + 45.484814 + ], + [ + -73.506746, + 45.484863 + ], + [ + -73.506951, + 45.484962 + ], + [ + -73.507115, + 45.485056 + ], + [ + -73.507185, + 45.485097 + ], + [ + -73.507329, + 45.4852 + ], + [ + -73.507431, + 45.485295 + ], + [ + -73.507518, + 45.485367 + ], + [ + -73.50762, + 45.485484 + ], + [ + -73.507754, + 45.485677 + ], + [ + -73.508077, + 45.486145 + ], + [ + -73.508225, + 45.48637 + ], + [ + -73.508351, + 45.486569 + ], + [ + -73.508385, + 45.486622 + ], + [ + -73.508489, + 45.486784 + ], + [ + -73.508543, + 45.486852 + ], + [ + -73.509589, + 45.488365 + ], + [ + -73.509675, + 45.488489 + ], + [ + -73.509764, + 45.488615 + ], + [ + -73.509971, + 45.488912 + ], + [ + -73.510813, + 45.490118 + ], + [ + -73.510823, + 45.490133 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.511224, + 45.490715 + ], + [ + -73.512404, + 45.492412 + ], + [ + -73.51242, + 45.492446 + ], + [ + -73.51245, + 45.492507 + ], + [ + -73.512764, + 45.493074 + ], + [ + -73.512921, + 45.493393 + ], + [ + -73.512971, + 45.493496 + ], + [ + -73.512984, + 45.493515 + ], + [ + -73.513094, + 45.493766 + ], + [ + -73.513261, + 45.494078 + ], + [ + -73.513283, + 45.494149 + ], + [ + -73.513342, + 45.494287 + ], + [ + -73.513459, + 45.494626 + ], + [ + -73.513505, + 45.494783 + ], + [ + -73.513561, + 45.49499 + ], + [ + -73.513604, + 45.495179 + ], + [ + -73.513621, + 45.495251 + ], + [ + -73.513692, + 45.495557 + ], + [ + -73.513768, + 45.4959 + ], + [ + -73.513786, + 45.49598 + ], + [ + -73.51384, + 45.496187 + ], + [ + -73.513899, + 45.496425 + ], + [ + -73.513925, + 45.49652 + ], + [ + -73.513974, + 45.496614 + ], + [ + -73.514009, + 45.496686 + ], + [ + -73.514054, + 45.496749 + ], + [ + -73.514104, + 45.49683 + ], + [ + -73.514166, + 45.496911 + ], + [ + -73.514219, + 45.49697 + ], + [ + -73.514552, + 45.497478 + ], + [ + -73.514769, + 45.497838 + ], + [ + -73.515085, + 45.498391 + ], + [ + -73.51517, + 45.49854 + ], + [ + -73.515554, + 45.499234 + ], + [ + -73.515623, + 45.499359 + ], + [ + -73.515674, + 45.499453 + ], + [ + -73.515873, + 45.499831 + ], + [ + -73.515977, + 45.500074 + ], + [ + -73.516146, + 45.500501 + ], + [ + -73.516373, + 45.50114 + ], + [ + -73.51647, + 45.501401 + ], + [ + -73.51658, + 45.50168 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517553, + 45.504146 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.51744, + 45.505244 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517233, + 45.507268 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517556, + 45.509202 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517799, + 45.511415 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517595, + 45.513228 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518261, + 45.515302 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518968, + 45.516736 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.518554, + 45.516912 + ], + [ + -73.518456, + 45.516887 + ], + [ + -73.518077, + 45.516793 + ], + [ + -73.517978, + 45.516757 + ], + [ + -73.517748, + 45.516674 + ], + [ + -73.517741, + 45.516671 + ], + [ + -73.517498, + 45.516583 + ], + [ + -73.517318, + 45.516518 + ], + [ + -73.51692, + 45.51637 + ], + [ + -73.516876, + 45.516355 + ], + [ + -73.515414, + 45.515844 + ], + [ + -73.514727, + 45.515604 + ], + [ + -73.514563, + 45.515547 + ], + [ + -73.513759, + 45.515273 + ], + [ + -73.512796, + 45.514944 + ], + [ + -73.512165, + 45.514728 + ], + [ + -73.511589, + 45.514536 + ] + ] + }, + "id": 335, + "properties": { + "id": "6064bfa2-3ef7-45b7-b528-61a86fd1a3c1", + "data": { + "gtfs": { + "shape_id": "613_1_A" + }, + "segments": [ + { + "distanceMeters": 186, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 478, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 418, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 406, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 400, + "travelTimeSeconds": 95 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 95 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 97 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 22, + "travelTimeSeconds": 5 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 84, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 45 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9058, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5812.119800044617, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.59, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 5.03, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.59 + }, + "mode": "bus", + "name": "Collèges NDL et Durocher", + "color": "#A32638", + "nodes": [ + "0296a406-079c-41f9-8c5b-0723a0b5f294", + "79c669a1-9060-4e5d-b272-f107884dee00", + "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "3e9388da-8f48-48c6-b6c0-5461e27eb26a", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "7e4b21bb-20d6-4104-9b98-071226922d49", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "c6165892-3719-417f-8d25-92e65471b42c", + "6735199f-47fc-47db-9116-7c110cca8945", + "6e4c328c-6fba-4e81-b589-59318e11a37a", + "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", + "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", + "fc92d5a1-fe31-4274-9837-2686b4525030", + "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", + "6b54424b-6f85-4448-8e7d-a05da4ef5b95", + "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", + "4df7f34c-ec49-4d48-90b3-56f3faffc976", + "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "9f22d75f-cc66-4020-8804-7912f49950d8", + "41d7b6d4-1fe4-44ed-a774-b005607fc59d", + "bc9b9243-e0ec-461a-9898-6eb69ecd511a", + "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "114aaaad-d40e-4930-853f-ef5cebdd299f", + "0b09b82c-ec97-406d-9f1c-690cc935b5ea", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "2259b112-2e60-4bcc-ad14-9e0e577f2909", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "f250cba5-329e-4403-912d-778f924ce25e", + "f250cba5-329e-4403-912d-778f924ce25e", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "f1be4054-f28c-45a4-bc0b-58b82e1e6e83" + ], + "stops": [], + "line_id": "3c0a8fd0-87ee-4bee-8465-a0d907b9e825", + "segments": [ + 0, + 2, + 6, + 10, + 17, + 22, + 28, + 38, + 42, + 46, + 54, + 64, + 77, + 81, + 94, + 98, + 103, + 123, + 129, + 135, + 156, + 160, + 165, + 169, + 185, + 200, + 208, + 222, + 228, + 233, + 239, + 245, + 253, + 260, + 266, + 268, + 273, + 275 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 335, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.513787, + 45.515282 + ], + [ + -73.514563, + 45.515547 + ], + [ + -73.515414, + 45.515844 + ], + [ + -73.516876, + 45.516355 + ], + [ + -73.51692, + 45.51637 + ], + [ + -73.517318, + 45.516518 + ], + [ + -73.517741, + 45.516671 + ], + [ + -73.517978, + 45.516757 + ], + [ + -73.518077, + 45.516793 + ], + [ + -73.518456, + 45.516887 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.518972, + 45.516742 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517545, + 45.50406 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.516768, + 45.502126 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.51647, + 45.501401 + ], + [ + -73.516373, + 45.50114 + ], + [ + -73.516146, + 45.500501 + ], + [ + -73.515977, + 45.500074 + ], + [ + -73.515873, + 45.499831 + ], + [ + -73.515695, + 45.499492 + ], + [ + -73.515674, + 45.499453 + ], + [ + -73.515623, + 45.499359 + ], + [ + -73.51517, + 45.49854 + ], + [ + -73.515085, + 45.498391 + ], + [ + -73.514769, + 45.497838 + ], + [ + -73.514552, + 45.497478 + ], + [ + -73.514219, + 45.49697 + ], + [ + -73.514166, + 45.496911 + ], + [ + -73.514104, + 45.49683 + ], + [ + -73.514054, + 45.496749 + ], + [ + -73.514009, + 45.496686 + ], + [ + -73.513974, + 45.496614 + ], + [ + -73.513925, + 45.49652 + ], + [ + -73.513899, + 45.496425 + ], + [ + -73.51384, + 45.496187 + ], + [ + -73.513786, + 45.49598 + ], + [ + -73.513692, + 45.495557 + ], + [ + -73.513662, + 45.495427 + ], + [ + -73.513621, + 45.495251 + ], + [ + -73.513604, + 45.495179 + ], + [ + -73.513561, + 45.49499 + ], + [ + -73.513505, + 45.494783 + ], + [ + -73.513459, + 45.494626 + ], + [ + -73.513342, + 45.494287 + ], + [ + -73.513283, + 45.494149 + ], + [ + -73.513261, + 45.494078 + ], + [ + -73.513094, + 45.493766 + ], + [ + -73.512984, + 45.493515 + ], + [ + -73.512971, + 45.493496 + ], + [ + -73.512921, + 45.493393 + ], + [ + -73.512764, + 45.493074 + ], + [ + -73.51245, + 45.492507 + ], + [ + -73.512404, + 45.492412 + ], + [ + -73.512397, + 45.492401 + ], + [ + -73.511201, + 45.490682 + ], + [ + -73.510959, + 45.490334 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.510813, + 45.490118 + ], + [ + -73.509971, + 45.488912 + ], + [ + -73.509813, + 45.488686 + ], + [ + -73.509764, + 45.488615 + ], + [ + -73.509675, + 45.488489 + ], + [ + -73.508576, + 45.4869 + ], + [ + -73.508543, + 45.486852 + ], + [ + -73.508489, + 45.486784 + ], + [ + -73.508385, + 45.486622 + ], + [ + -73.508225, + 45.48637 + ], + [ + -73.508077, + 45.486145 + ], + [ + -73.507754, + 45.485677 + ], + [ + -73.50762, + 45.485484 + ], + [ + -73.507518, + 45.485367 + ], + [ + -73.507431, + 45.485295 + ], + [ + -73.507329, + 45.4852 + ], + [ + -73.507185, + 45.485097 + ], + [ + -73.507115, + 45.485056 + ], + [ + -73.506951, + 45.484962 + ], + [ + -73.506746, + 45.484863 + ], + [ + -73.506624, + 45.484814 + ], + [ + -73.505993, + 45.484584 + ], + [ + -73.505851, + 45.484535 + ], + [ + -73.505663, + 45.484463 + ], + [ + -73.505521, + 45.484395 + ], + [ + -73.505364, + 45.484314 + ], + [ + -73.505242, + 45.484242 + ], + [ + -73.505108, + 45.484152 + ], + [ + -73.504924, + 45.483995 + ], + [ + -73.504918, + 45.483988 + ], + [ + -73.504857, + 45.483927 + ], + [ + -73.504846, + 45.483915 + ], + [ + -73.504614, + 45.483657 + ], + [ + -73.504141, + 45.483117 + ], + [ + -73.503667, + 45.482576 + ], + [ + -73.503598, + 45.482497 + ], + [ + -73.503512, + 45.48238 + ], + [ + -73.50345, + 45.482308 + ], + [ + -73.503272, + 45.482092 + ], + [ + -73.502806, + 45.48156 + ], + [ + -73.502676, + 45.481412 + ], + [ + -73.501965, + 45.480631 + ], + [ + -73.501828, + 45.48048 + ], + [ + -73.50163, + 45.480263 + ], + [ + -73.501562, + 45.480174 + ], + [ + -73.501309, + 45.479775 + ], + [ + -73.501238, + 45.479689 + ], + [ + -73.501074, + 45.479488 + ], + [ + -73.500829, + 45.479284 + ], + [ + -73.50074, + 45.479167 + ], + [ + -73.500635, + 45.479076 + ], + [ + -73.500662, + 45.478997 + ], + [ + -73.500703, + 45.478888 + ], + [ + -73.500708, + 45.478848 + ], + [ + -73.500618, + 45.478724 + ], + [ + -73.500601, + 45.478716 + ], + [ + -73.500465, + 45.47866 + ], + [ + -73.500435, + 45.478659 + ], + [ + -73.500337, + 45.478661 + ], + [ + -73.50019, + 45.478724 + ], + [ + -73.500175, + 45.478743 + ], + [ + -73.500117, + 45.478833 + ], + [ + -73.500109, + 45.478859 + ], + [ + -73.500134, + 45.478943 + ], + [ + -73.50015, + 45.47896 + ], + [ + -73.500209, + 45.479027 + ], + [ + -73.500272, + 45.479047 + ], + [ + -73.500354, + 45.479074 + ], + [ + -73.500428, + 45.479084 + ], + [ + -73.500459, + 45.479088 + ], + [ + -73.500565, + 45.479065 + ], + [ + -73.500641, + 45.479027 + ], + [ + -73.500662, + 45.478997 + ], + [ + -73.500703, + 45.478888 + ], + [ + -73.500708, + 45.478848 + ], + [ + -73.500618, + 45.478724 + ], + [ + -73.500601, + 45.478716 + ], + [ + -73.500465, + 45.47866 + ], + [ + -73.500435, + 45.478659 + ], + [ + -73.500337, + 45.478661 + ], + [ + -73.50019, + 45.478724 + ], + [ + -73.500175, + 45.478743 + ], + [ + -73.500117, + 45.478833 + ], + [ + -73.500062, + 45.478934 + ], + [ + -73.499809, + 45.479021 + ], + [ + -73.4995, + 45.479103 + ], + [ + -73.498818, + 45.47923 + ], + [ + -73.498683, + 45.479234 + ], + [ + -73.498669, + 45.479235 + ], + [ + -73.4985, + 45.479238 + ], + [ + -73.498413, + 45.479239 + ], + [ + -73.498188, + 45.479235 + ], + [ + -73.497101, + 45.479217 + ], + [ + -73.49645, + 45.47921 + ], + [ + -73.496272, + 45.479208 + ], + [ + -73.496207, + 45.479208 + ], + [ + -73.496137, + 45.479208 + ], + [ + -73.493367, + 45.479162 + ], + [ + -73.49213, + 45.479149 + ], + [ + -73.491888, + 45.479144 + ], + [ + -73.491713, + 45.47914 + ], + [ + -73.491329, + 45.479132 + ], + [ + -73.487039, + 45.479049 + ], + [ + -73.486789, + 45.47904 + ], + [ + -73.486662, + 45.47904 + ], + [ + -73.486526, + 45.47904 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486426, + 45.478914 + ], + [ + -73.486427, + 45.478891 + ], + [ + -73.486429, + 45.478851 + ], + [ + -73.486457, + 45.478743 + ], + [ + -73.486515, + 45.478644 + ], + [ + -73.486599, + 45.478568 + ], + [ + -73.487334, + 45.478055 + ], + [ + -73.487569, + 45.477901 + ], + [ + -73.487867, + 45.477704 + ], + [ + -73.48804, + 45.477592 + ], + [ + -73.488143, + 45.477497 + ], + [ + -73.488191, + 45.477434 + ], + [ + -73.48823, + 45.477367 + ], + [ + -73.488245, + 45.477317 + ], + [ + -73.488261, + 45.477254 + ], + [ + -73.488221, + 45.47702 + ], + [ + -73.488146, + 45.476629 + ], + [ + -73.488047, + 45.476044 + ], + [ + -73.487985, + 45.475724 + ], + [ + -73.487958, + 45.475585 + ], + [ + -73.487905, + 45.475414 + ], + [ + -73.48781, + 45.475189 + ], + [ + -73.487773, + 45.475113 + ], + [ + -73.487674, + 45.474955 + ], + [ + -73.487579, + 45.474821 + ], + [ + -73.487579, + 45.47482 + ], + [ + -73.487467, + 45.474676 + ], + [ + -73.487385, + 45.474582 + ], + [ + -73.487464, + 45.474541 + ], + [ + -73.487656, + 45.474474 + ], + [ + -73.487939, + 45.474393 + ], + [ + -73.48828, + 45.474348 + ], + [ + -73.488579, + 45.47433 + ], + [ + -73.488939, + 45.474348 + ], + [ + -73.48921, + 45.474343 + ], + [ + -73.489482, + 45.474308 + ], + [ + -73.489786, + 45.474221 + ], + [ + -73.489892, + 45.474191 + ], + [ + -73.490727, + 45.473858 + ], + [ + -73.491385, + 45.473576 + ], + [ + -73.491514, + 45.47352 + ], + [ + -73.491197, + 45.473146 + ], + [ + -73.490819, + 45.472701 + ], + [ + -73.490176, + 45.471923 + ], + [ + -73.490057, + 45.471779 + ], + [ + -73.489969, + 45.471675 + ], + [ + -73.489522, + 45.471873 + ], + [ + -73.489116, + 45.472013 + ], + [ + -73.48901, + 45.472049 + ], + [ + -73.488898, + 45.472089 + ], + [ + -73.488483, + 45.472229 + ], + [ + -73.48807, + 45.472359 + ], + [ + -73.487081, + 45.472684 + ], + [ + -73.486715, + 45.472804 + ], + [ + -73.486545, + 45.47257 + ], + [ + -73.486282, + 45.472161 + ], + [ + -73.486077, + 45.471855 + ], + [ + -73.48603, + 45.471775 + ], + [ + -73.485922, + 45.47159 + ], + [ + -73.485859, + 45.471396 + ], + [ + -73.485933, + 45.470276 + ], + [ + -73.485957, + 45.470015 + ], + [ + -73.485925, + 45.469758 + ], + [ + -73.485646, + 45.469404 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.485272, + 45.468957 + ], + [ + -73.485183, + 45.468899 + ], + [ + -73.485068, + 45.468858 + ], + [ + -73.484983, + 45.468836 + ], + [ + -73.484852, + 45.468827 + ], + [ + -73.484168, + 45.4688 + ], + [ + -73.484035, + 45.468795 + ], + [ + -73.482517, + 45.468777 + ], + [ + -73.481592, + 45.468898 + ], + [ + -73.480831, + 45.468945 + ], + [ + -73.480705, + 45.468952 + ], + [ + -73.479733, + 45.468916 + ], + [ + -73.478795, + 45.46888 + ], + [ + -73.477978, + 45.468847 + ], + [ + -73.477791, + 45.468839 + ], + [ + -73.475537, + 45.468744 + ], + [ + -73.475149, + 45.468731 + ], + [ + -73.474822, + 45.468708 + ], + [ + -73.474819, + 45.468708 + ], + [ + -73.47475, + 45.468669 + ], + [ + -73.47474, + 45.468663 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.473201, + 45.468294 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.471423, + 45.468098 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469574, + 45.467137 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.468577, + 45.467094 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466768 + ] + ] + }, + "id": 336, + "properties": { + "id": "aee1d5c4-3653-4861-8be2-547b7762f5e1", + "data": { + "gtfs": { + "shape_id": "613_2_R" + }, + "segments": [ + { + "distanceMeters": 2163, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 482, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 447, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 582, + "travelTimeSeconds": 98 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 356, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 40 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9941, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5719.201914435239, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.2, + "travelTimeWithoutDwellTimesSeconds": 1380, + "operatingTimeWithLayoverTimeSeconds": 1560, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1380, + "operatingSpeedWithLayoverMetersPerSecond": 6.37, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.2 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "0b09b82c-ec97-406d-9f1c-690cc935b5ea", + "27330ef0-4c59-4e22-a044-51b9d43c9719", + "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "bc9b9243-e0ec-461a-9898-6eb69ecd511a", + "41d7b6d4-1fe4-44ed-a774-b005607fc59d", + "9f22d75f-cc66-4020-8804-7912f49950d8", + "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "4df7f34c-ec49-4d48-90b3-56f3faffc976", + "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", + "6b54424b-6f85-4448-8e7d-a05da4ef5b95", + "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", + "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", + "6e4c328c-6fba-4e81-b589-59318e11a37a", + "6735199f-47fc-47db-9116-7c110cca8945", + "c6165892-3719-417f-8d25-92e65471b42c", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "7e4b21bb-20d6-4104-9b98-071226922d49", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "3acbe4f4-b4c0-469f-af21-f4af3c6e2b53", + "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "79c669a1-9060-4e5d-b272-f107884dee00", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "0efa9d7f-9938-46ee-97f6-a92cc9c04c7d", + "131616ed-8c78-458b-a65e-78f1aeac1fc7" + ], + "stops": [], + "line_id": "3c0a8fd0-87ee-4bee-8465-a0d907b9e825", + "segments": [ + 0, + 55, + 63, + 81, + 97, + 99, + 103, + 106, + 130, + 135, + 142, + 190, + 194, + 200, + 205, + 215, + 226, + 232, + 244, + 247, + 251, + 260, + 265, + 271, + 278, + 282, + 286, + 292, + 301, + 308, + 315 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 336, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.513787, + 45.515282 + ], + [ + -73.514432, + 45.515502 + ], + [ + -73.514563, + 45.515547 + ], + [ + -73.515414, + 45.515844 + ], + [ + -73.516876, + 45.516355 + ], + [ + -73.51692, + 45.51637 + ], + [ + -73.517218, + 45.516481 + ], + [ + -73.517318, + 45.516518 + ], + [ + -73.517741, + 45.516671 + ], + [ + -73.517978, + 45.516757 + ], + [ + -73.518077, + 45.516793 + ], + [ + -73.518456, + 45.516887 + ], + [ + -73.519037, + 45.517035 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.518972, + 45.516742 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518914, + 45.516641 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517657, + 45.513608 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517706, + 45.511764 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.517607, + 45.509402 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517232, + 45.507319 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.51735, + 45.505741 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517545, + 45.50406 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.516768, + 45.502126 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.51647, + 45.501401 + ], + [ + -73.516373, + 45.50114 + ], + [ + -73.516146, + 45.500501 + ], + [ + -73.515977, + 45.500074 + ], + [ + -73.515873, + 45.499831 + ], + [ + -73.515695, + 45.499492 + ], + [ + -73.515674, + 45.499453 + ], + [ + -73.515623, + 45.499359 + ], + [ + -73.51517, + 45.49854 + ], + [ + -73.515085, + 45.498391 + ], + [ + -73.514769, + 45.497838 + ], + [ + -73.514552, + 45.497478 + ], + [ + -73.514219, + 45.49697 + ], + [ + -73.514166, + 45.496911 + ], + [ + -73.514104, + 45.49683 + ], + [ + -73.514054, + 45.496749 + ], + [ + -73.514009, + 45.496686 + ], + [ + -73.513974, + 45.496614 + ], + [ + -73.513925, + 45.49652 + ], + [ + -73.513899, + 45.496425 + ], + [ + -73.51384, + 45.496187 + ], + [ + -73.513786, + 45.49598 + ], + [ + -73.513692, + 45.495557 + ], + [ + -73.513662, + 45.495427 + ], + [ + -73.513621, + 45.495251 + ], + [ + -73.513604, + 45.495179 + ], + [ + -73.513561, + 45.49499 + ], + [ + -73.513505, + 45.494783 + ], + [ + -73.513459, + 45.494626 + ], + [ + -73.513342, + 45.494287 + ], + [ + -73.513283, + 45.494149 + ], + [ + -73.513261, + 45.494078 + ], + [ + -73.513094, + 45.493766 + ], + [ + -73.512984, + 45.493515 + ], + [ + -73.512971, + 45.493496 + ], + [ + -73.512921, + 45.493393 + ], + [ + -73.512764, + 45.493074 + ], + [ + -73.51245, + 45.492507 + ], + [ + -73.512404, + 45.492412 + ], + [ + -73.512397, + 45.492401 + ], + [ + -73.511201, + 45.490682 + ], + [ + -73.510959, + 45.490334 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.510813, + 45.490118 + ], + [ + -73.509971, + 45.488912 + ], + [ + -73.509813, + 45.488686 + ], + [ + -73.509764, + 45.488615 + ], + [ + -73.509675, + 45.488489 + ], + [ + -73.508576, + 45.4869 + ], + [ + -73.508543, + 45.486852 + ], + [ + -73.508489, + 45.486784 + ], + [ + -73.508385, + 45.486622 + ], + [ + -73.508225, + 45.48637 + ], + [ + -73.508077, + 45.486145 + ], + [ + -73.507754, + 45.485677 + ], + [ + -73.50762, + 45.485484 + ], + [ + -73.507518, + 45.485367 + ], + [ + -73.507431, + 45.485295 + ], + [ + -73.507329, + 45.4852 + ], + [ + -73.507185, + 45.485097 + ], + [ + -73.507115, + 45.485056 + ], + [ + -73.506951, + 45.484962 + ], + [ + -73.506746, + 45.484863 + ], + [ + -73.506624, + 45.484814 + ], + [ + -73.505993, + 45.484584 + ], + [ + -73.505851, + 45.484535 + ], + [ + -73.505663, + 45.484463 + ], + [ + -73.505521, + 45.484395 + ], + [ + -73.505364, + 45.484314 + ], + [ + -73.505242, + 45.484242 + ], + [ + -73.505108, + 45.484152 + ], + [ + -73.504924, + 45.483995 + ], + [ + -73.504918, + 45.483988 + ], + [ + -73.504857, + 45.483927 + ], + [ + -73.504846, + 45.483915 + ], + [ + -73.504614, + 45.483657 + ], + [ + -73.504141, + 45.483117 + ], + [ + -73.503667, + 45.482576 + ], + [ + -73.503598, + 45.482497 + ], + [ + -73.503512, + 45.48238 + ], + [ + -73.50345, + 45.482308 + ], + [ + -73.503272, + 45.482092 + ], + [ + -73.502806, + 45.48156 + ], + [ + -73.502676, + 45.481412 + ], + [ + -73.501965, + 45.480631 + ], + [ + -73.501828, + 45.48048 + ], + [ + -73.50163, + 45.480263 + ], + [ + -73.501562, + 45.480174 + ], + [ + -73.501309, + 45.479775 + ], + [ + -73.501238, + 45.479689 + ], + [ + -73.501074, + 45.479488 + ], + [ + -73.500829, + 45.479284 + ], + [ + -73.50074, + 45.479167 + ], + [ + -73.500635, + 45.479076 + ], + [ + -73.500662, + 45.478997 + ], + [ + -73.500703, + 45.478888 + ], + [ + -73.500708, + 45.478848 + ], + [ + -73.500618, + 45.478724 + ], + [ + -73.500601, + 45.478716 + ], + [ + -73.500465, + 45.47866 + ], + [ + -73.500435, + 45.478659 + ], + [ + -73.500337, + 45.478661 + ], + [ + -73.50019, + 45.478724 + ], + [ + -73.500175, + 45.478743 + ], + [ + -73.500117, + 45.478833 + ], + [ + -73.500109, + 45.478859 + ], + [ + -73.500134, + 45.478943 + ], + [ + -73.50015, + 45.47896 + ], + [ + -73.500209, + 45.479027 + ], + [ + -73.500272, + 45.479047 + ], + [ + -73.500354, + 45.479074 + ], + [ + -73.500428, + 45.479084 + ], + [ + -73.500459, + 45.479088 + ], + [ + -73.500565, + 45.479065 + ], + [ + -73.500641, + 45.479027 + ], + [ + -73.500662, + 45.478997 + ], + [ + -73.500703, + 45.478888 + ], + [ + -73.500708, + 45.478848 + ], + [ + -73.500618, + 45.478724 + ], + [ + -73.500601, + 45.478716 + ], + [ + -73.500465, + 45.47866 + ], + [ + -73.500435, + 45.478659 + ], + [ + -73.500337, + 45.478661 + ], + [ + -73.50019, + 45.478724 + ], + [ + -73.500175, + 45.478743 + ], + [ + -73.500117, + 45.478833 + ], + [ + -73.500062, + 45.478934 + ], + [ + -73.499809, + 45.479021 + ], + [ + -73.4995, + 45.479103 + ], + [ + -73.498818, + 45.47923 + ], + [ + -73.498683, + 45.479234 + ], + [ + -73.498669, + 45.479235 + ], + [ + -73.4985, + 45.479238 + ], + [ + -73.498413, + 45.479239 + ], + [ + -73.498188, + 45.479235 + ], + [ + -73.497101, + 45.479217 + ], + [ + -73.49645, + 45.47921 + ], + [ + -73.496272, + 45.479208 + ], + [ + -73.496207, + 45.479208 + ], + [ + -73.496137, + 45.479208 + ], + [ + -73.493367, + 45.479162 + ], + [ + -73.49213, + 45.479149 + ], + [ + -73.491888, + 45.479144 + ], + [ + -73.491713, + 45.47914 + ], + [ + -73.491329, + 45.479132 + ], + [ + -73.487039, + 45.479049 + ], + [ + -73.486789, + 45.47904 + ], + [ + -73.486662, + 45.47904 + ], + [ + -73.486526, + 45.47904 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486426, + 45.478914 + ], + [ + -73.486427, + 45.478891 + ], + [ + -73.486429, + 45.478851 + ], + [ + -73.486457, + 45.478743 + ], + [ + -73.486515, + 45.478644 + ], + [ + -73.486599, + 45.478568 + ], + [ + -73.487334, + 45.478055 + ], + [ + -73.487569, + 45.477901 + ], + [ + -73.487867, + 45.477704 + ], + [ + -73.48804, + 45.477592 + ], + [ + -73.488143, + 45.477497 + ], + [ + -73.488191, + 45.477434 + ], + [ + -73.48823, + 45.477367 + ], + [ + -73.488245, + 45.477317 + ], + [ + -73.488261, + 45.477254 + ], + [ + -73.488221, + 45.47702 + ], + [ + -73.488146, + 45.476629 + ], + [ + -73.488047, + 45.476044 + ], + [ + -73.487985, + 45.475724 + ], + [ + -73.487958, + 45.475585 + ], + [ + -73.487905, + 45.475414 + ], + [ + -73.48781, + 45.475189 + ], + [ + -73.487773, + 45.475113 + ], + [ + -73.487674, + 45.474955 + ], + [ + -73.487579, + 45.474821 + ], + [ + -73.487579, + 45.47482 + ], + [ + -73.487467, + 45.474676 + ], + [ + -73.487385, + 45.474582 + ], + [ + -73.487464, + 45.474541 + ], + [ + -73.487656, + 45.474474 + ], + [ + -73.487939, + 45.474393 + ], + [ + -73.48828, + 45.474348 + ], + [ + -73.488579, + 45.47433 + ], + [ + -73.488939, + 45.474348 + ], + [ + -73.48921, + 45.474343 + ], + [ + -73.489482, + 45.474308 + ], + [ + -73.489786, + 45.474221 + ], + [ + -73.489892, + 45.474191 + ], + [ + -73.490727, + 45.473858 + ], + [ + -73.491385, + 45.473576 + ], + [ + -73.491514, + 45.47352 + ], + [ + -73.491197, + 45.473146 + ], + [ + -73.490819, + 45.472701 + ], + [ + -73.490176, + 45.471923 + ], + [ + -73.490057, + 45.471779 + ], + [ + -73.489969, + 45.471675 + ], + [ + -73.489522, + 45.471873 + ], + [ + -73.489116, + 45.472013 + ], + [ + -73.48901, + 45.472049 + ], + [ + -73.488898, + 45.472089 + ], + [ + -73.488483, + 45.472229 + ], + [ + -73.48807, + 45.472359 + ], + [ + -73.487081, + 45.472684 + ], + [ + -73.486715, + 45.472804 + ], + [ + -73.486545, + 45.47257 + ], + [ + -73.486282, + 45.472161 + ], + [ + -73.486077, + 45.471855 + ], + [ + -73.48603, + 45.471775 + ], + [ + -73.485922, + 45.47159 + ], + [ + -73.485859, + 45.471396 + ], + [ + -73.485933, + 45.470276 + ], + [ + -73.485957, + 45.470015 + ], + [ + -73.485925, + 45.469758 + ], + [ + -73.485646, + 45.469404 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.485272, + 45.468957 + ], + [ + -73.485183, + 45.468899 + ], + [ + -73.485068, + 45.468858 + ], + [ + -73.484983, + 45.468836 + ], + [ + -73.484852, + 45.468827 + ], + [ + -73.484168, + 45.4688 + ], + [ + -73.484035, + 45.468795 + ], + [ + -73.482517, + 45.468777 + ], + [ + -73.481592, + 45.468898 + ], + [ + -73.480831, + 45.468945 + ], + [ + -73.480705, + 45.468952 + ], + [ + -73.479733, + 45.468916 + ], + [ + -73.478795, + 45.46888 + ], + [ + -73.477978, + 45.468847 + ], + [ + -73.477791, + 45.468839 + ], + [ + -73.475537, + 45.468744 + ], + [ + -73.475149, + 45.468731 + ], + [ + -73.474822, + 45.468708 + ], + [ + -73.474819, + 45.468708 + ], + [ + -73.47475, + 45.468669 + ], + [ + -73.47474, + 45.468663 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.473201, + 45.468294 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.471423, + 45.468098 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469574, + 45.467137 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.468577, + 45.467094 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466768 + ] + ] + }, + "id": 337, + "properties": { + "id": "b57b72e7-bf36-45e5-9849-1b7b0336ec66", + "data": { + "gtfs": { + "shape_id": "613_2_R" + }, + "segments": [ + { + "distanceMeters": 56, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 64, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 412, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 482, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 447, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 582, + "travelTimeSeconds": 98 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 356, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 40 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9941, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 6450.8352911251495, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.92, + "travelTimeWithoutDwellTimesSeconds": 1680, + "operatingTimeWithLayoverTimeSeconds": 1860, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1680, + "operatingSpeedWithLayoverMetersPerSecond": 5.34, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.92 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "f250cba5-329e-4403-912d-778f924ce25e", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "0b09b82c-ec97-406d-9f1c-690cc935b5ea", + "27330ef0-4c59-4e22-a044-51b9d43c9719", + "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "bc9b9243-e0ec-461a-9898-6eb69ecd511a", + "41d7b6d4-1fe4-44ed-a774-b005607fc59d", + "9f22d75f-cc66-4020-8804-7912f49950d8", + "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "4df7f34c-ec49-4d48-90b3-56f3faffc976", + "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", + "6b54424b-6f85-4448-8e7d-a05da4ef5b95", + "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", + "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", + "6e4c328c-6fba-4e81-b589-59318e11a37a", + "6735199f-47fc-47db-9116-7c110cca8945", + "c6165892-3719-417f-8d25-92e65471b42c", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "7e4b21bb-20d6-4104-9b98-071226922d49", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "3acbe4f4-b4c0-469f-af21-f4af3c6e2b53", + "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "79c669a1-9060-4e5d-b272-f107884dee00", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "0efa9d7f-9938-46ee-97f6-a92cc9c04c7d", + "131616ed-8c78-458b-a65e-78f1aeac1fc7" + ], + "stops": [], + "line_id": "3c0a8fd0-87ee-4bee-8465-a0d907b9e825", + "segments": [ + 0, + 1, + 6, + 12, + 16, + 27, + 33, + 40, + 46, + 51, + 64, + 72, + 90, + 106, + 108, + 112, + 115, + 139, + 144, + 151, + 199, + 203, + 209, + 214, + 224, + 235, + 241, + 253, + 256, + 260, + 269, + 274, + 280, + 287, + 291, + 295, + 301, + 310, + 317, + 324 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 337, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.517735, + 45.516669 + ], + [ + -73.517495, + 45.516583 + ], + [ + -73.517318, + 45.516518 + ], + [ + -73.51692, + 45.51637 + ], + [ + -73.516876, + 45.516355 + ], + [ + -73.515414, + 45.515844 + ], + [ + -73.514724, + 45.515603 + ], + [ + -73.514563, + 45.515547 + ], + [ + -73.514692, + 45.515374 + ], + [ + -73.51474, + 45.515308 + ], + [ + -73.51499, + 45.51498 + ], + [ + -73.515208, + 45.514692 + ], + [ + -73.515467, + 45.514337 + ], + [ + -73.515566, + 45.514206 + ], + [ + -73.515671, + 45.514071 + ], + [ + -73.516146, + 45.51425 + ], + [ + -73.516645, + 45.514438 + ], + [ + -73.516734, + 45.514471 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.518009, + 45.514644 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517656, + 45.513606 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517707, + 45.511762 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.517607, + 45.509399 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517232, + 45.507316 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.51735, + 45.505736 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517545, + 45.504708 + ], + [ + -73.517624, + 45.504735 + ], + [ + -73.517927, + 45.504848 + ], + [ + -73.518275, + 45.504978 + ], + [ + -73.518448, + 45.505027 + ], + [ + -73.518565, + 45.505054 + ], + [ + -73.518612, + 45.505059 + ], + [ + -73.518688, + 45.505063 + ], + [ + -73.518724, + 45.505059 + ], + [ + -73.518804, + 45.505054 + ], + [ + -73.519306, + 45.504964 + ], + [ + -73.519143, + 45.504742 + ], + [ + -73.518589, + 45.503983 + ], + [ + -73.517824, + 45.502971 + ], + [ + -73.517656, + 45.502728 + ], + [ + -73.51758, + 45.502602 + ], + [ + -73.517384, + 45.502224 + ], + [ + -73.517279, + 45.50199 + ], + [ + -73.516505, + 45.500249 + ], + [ + -73.516141, + 45.499372 + ], + [ + -73.515797, + 45.498666 + ], + [ + -73.515557, + 45.498211 + ], + [ + -73.51531, + 45.49777 + ], + [ + -73.514841, + 45.496875 + ], + [ + -73.51473, + 45.496655 + ], + [ + -73.514567, + 45.49629 + ], + [ + -73.514302, + 45.495593 + ], + [ + -73.513809, + 45.494225 + ], + [ + -73.513621, + 45.493721 + ], + [ + -73.513407, + 45.493145 + ], + [ + -73.5133, + 45.492903 + ], + [ + -73.51308, + 45.492502 + ], + [ + -73.51286, + 45.492156 + ], + [ + -73.511495, + 45.490203 + ], + [ + -73.511236, + 45.489825 + ], + [ + -73.511116, + 45.489632 + ], + [ + -73.510976, + 45.489447 + ], + [ + -73.510614, + 45.488876 + ], + [ + -73.510385, + 45.488494 + ], + [ + -73.510073, + 45.487927 + ], + [ + -73.50999, + 45.487756 + ], + [ + -73.509875, + 45.487535 + ], + [ + -73.509493, + 45.486739 + ], + [ + -73.509244, + 45.486118 + ], + [ + -73.509089, + 45.4857 + ], + [ + -73.508873, + 45.485047 + ], + [ + -73.508687, + 45.484395 + ], + [ + -73.508246, + 45.482663 + ], + [ + -73.508076, + 45.482055 + ], + [ + -73.508003, + 45.481848 + ], + [ + -73.507918, + 45.481646 + ], + [ + -73.507721, + 45.48125 + ], + [ + -73.507674, + 45.481165 + ], + [ + -73.507613, + 45.481066 + ], + [ + -73.507347, + 45.480701 + ], + [ + -73.50705, + 45.48035 + ], + [ + -73.506701, + 45.479999 + ], + [ + -73.506328, + 45.479689 + ], + [ + -73.505671, + 45.47923 + ], + [ + -73.50361, + 45.477871 + ], + [ + -73.502677, + 45.477264 + ], + [ + -73.502438, + 45.477102 + ], + [ + -73.500934, + 45.476112 + ], + [ + -73.500318, + 45.475613 + ], + [ + -73.499835, + 45.475253 + ], + [ + -73.499539, + 45.475014 + ], + [ + -73.499134, + 45.474659 + ], + [ + -73.498747, + 45.474299 + ], + [ + -73.498386, + 45.47393 + ], + [ + -73.498219, + 45.473741 + ], + [ + -73.498167, + 45.473683 + ], + [ + -73.49797, + 45.473435 + ], + [ + -73.497878, + 45.473309 + ], + [ + -73.497713, + 45.473057 + ], + [ + -73.497572, + 45.47281 + ], + [ + -73.497162, + 45.472027 + ], + [ + -73.496825, + 45.471419 + ], + [ + -73.496018, + 45.469957 + ], + [ + -73.495641, + 45.469215 + ], + [ + -73.495398, + 45.468643 + ], + [ + -73.495188, + 45.46809 + ], + [ + -73.494985, + 45.467532 + ], + [ + -73.494442, + 45.46593 + ], + [ + -73.494139, + 45.465053 + ], + [ + -73.494127, + 45.465021 + ], + [ + -73.493678, + 45.463735 + ], + [ + -73.493659, + 45.463676 + ], + [ + -73.493494, + 45.463181 + ], + [ + -73.493471, + 45.4631 + ], + [ + -73.493398, + 45.46278 + ], + [ + -73.493387, + 45.462702 + ], + [ + -73.493348, + 45.462495 + ], + [ + -73.493265, + 45.461696 + ], + [ + -73.49322, + 45.460923 + ], + [ + -73.493225, + 45.459757 + ], + [ + -73.493227, + 45.459429 + ], + [ + -73.493227, + 45.45939 + ], + [ + -73.493227, + 45.459163 + ], + [ + -73.493176, + 45.458389 + ], + [ + -73.49313, + 45.457634 + ], + [ + -73.493082, + 45.457085 + ], + [ + -73.493073, + 45.457004 + ], + [ + -73.492597, + 45.457018 + ], + [ + -73.492328, + 45.457023 + ], + [ + -73.492185, + 45.457026 + ], + [ + -73.492061, + 45.457031 + ], + [ + -73.491825, + 45.457026 + ], + [ + -73.491366, + 45.457004 + ], + [ + -73.490908, + 45.456984 + ], + [ + -73.490025, + 45.456946 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.488779, + 45.456899 + ], + [ + -73.488212, + 45.456877 + ], + [ + -73.486545, + 45.45682 + ], + [ + -73.486364, + 45.456814 + ], + [ + -73.485148, + 45.456777 + ], + [ + -73.483698, + 45.456733 + ], + [ + -73.482922, + 45.456699 + ], + [ + -73.482756, + 45.456692 + ], + [ + -73.480029, + 45.456617 + ], + [ + -73.479792, + 45.456611 + ], + [ + -73.479622, + 45.456606 + ], + [ + -73.479632, + 45.456719 + ], + [ + -73.47968, + 45.457236 + ], + [ + -73.479701, + 45.457465 + ], + [ + -73.47972, + 45.457668 + ], + [ + -73.479747, + 45.458082 + ], + [ + -73.479754, + 45.45832 + ], + [ + -73.479732, + 45.458469 + ], + [ + -73.479695, + 45.458689 + ], + [ + -73.479603, + 45.459 + ], + [ + -73.479545, + 45.459171 + ], + [ + -73.479521, + 45.459223 + ], + [ + -73.479465, + 45.459342 + ], + [ + -73.479339, + 45.459576 + ], + [ + -73.479253, + 45.45972 + ], + [ + -73.479162, + 45.45985 + ], + [ + -73.478872, + 45.460205 + ], + [ + -73.478751, + 45.460331 + ], + [ + -73.478336, + 45.460689 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.47855, + 45.461011 + ], + [ + -73.478678, + 45.461105 + ], + [ + -73.478837, + 45.461293 + ], + [ + -73.478983, + 45.461465 + ], + [ + -73.479274, + 45.461807 + ], + [ + -73.479705, + 45.462322 + ], + [ + -73.480306, + 45.46304 + ], + [ + -73.480932, + 45.463792 + ], + [ + -73.48135, + 45.464292 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.480952, + 45.464593 + ], + [ + -73.480652, + 45.464687 + ], + [ + -73.480572, + 45.464706 + ], + [ + -73.480287, + 45.464772 + ], + [ + -73.479951, + 45.464831 + ], + [ + -73.479651, + 45.464862 + ], + [ + -73.479281, + 45.464889 + ], + [ + -73.478969, + 45.464889 + ], + [ + -73.478742, + 45.464881 + ], + [ + -73.478688, + 45.464879 + ], + [ + -73.476229, + 45.46479 + ], + [ + -73.475061, + 45.464753 + ], + [ + -73.474661, + 45.464744 + ], + [ + -73.474508, + 45.464734 + ], + [ + -73.474301, + 45.464724 + ], + [ + -73.474168, + 45.464717 + ], + [ + -73.473949, + 45.464699 + ], + [ + -73.473705, + 45.464641 + ], + [ + -73.473499, + 45.464573 + ], + [ + -73.473207, + 45.464434 + ], + [ + -73.473036, + 45.464325 + ], + [ + -73.472811, + 45.464181 + ], + [ + -73.472107, + 45.4637 + ], + [ + -73.471841, + 45.463592 + ], + [ + -73.471697, + 45.46357 + ], + [ + -73.471666, + 45.463565 + ], + [ + -73.471494, + 45.463556 + ], + [ + -73.471257, + 45.463547 + ], + [ + -73.470687, + 45.463533 + ], + [ + -73.469188, + 45.463482 + ], + [ + -73.468972, + 45.463474 + ], + [ + -73.468884, + 45.463461 + ], + [ + -73.468833, + 45.46342 + ], + [ + -73.468836, + 45.463308 + ], + [ + -73.468837, + 45.463254 + ], + [ + -73.468876, + 45.462738 + ], + [ + -73.46897, + 45.46149 + ], + [ + -73.46901, + 45.460865 + ], + [ + -73.469028, + 45.460628 + ], + [ + -73.469045, + 45.460397 + ], + [ + -73.469046, + 45.459978 + ], + [ + -73.46901, + 45.459861 + ], + [ + -73.468938, + 45.459704 + ], + [ + -73.468742, + 45.459506 + ], + [ + -73.468425, + 45.459258 + ], + [ + -73.468212, + 45.459096 + ], + [ + -73.468172, + 45.459054 + ], + [ + -73.468056, + 45.45893 + ], + [ + -73.467979, + 45.458754 + ], + [ + -73.467956, + 45.458669 + ], + [ + -73.467971, + 45.458525 + ], + [ + -73.467975, + 45.458309 + ], + [ + -73.467992, + 45.458217 + ], + [ + -73.468021, + 45.458057 + ], + [ + -73.468109, + 45.457211 + ], + [ + -73.468145, + 45.457018 + ], + [ + -73.468147, + 45.457005 + ], + [ + -73.468158, + 45.456945 + ], + [ + -73.468339, + 45.456413 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468443, + 45.456109 + ], + [ + -73.467856, + 45.455996 + ], + [ + -73.467649, + 45.455948 + ], + [ + -73.467523, + 45.455919 + ], + [ + -73.467299, + 45.455861 + ], + [ + -73.466983, + 45.455757 + ], + [ + -73.466899, + 45.455728 + ], + [ + -73.466828, + 45.455703 + ], + [ + -73.466327, + 45.455504 + ], + [ + -73.466093, + 45.45541 + ], + [ + -73.465683, + 45.455224 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.463912, + 45.454506 + ], + [ + -73.463601, + 45.454377 + ], + [ + -73.463314, + 45.454258 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.461806, + 45.453577 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.459815, + 45.452691 + ], + [ + -73.459195, + 45.452403 + ], + [ + -73.45904, + 45.452331 + ], + [ + -73.458688, + 45.452137 + ], + [ + -73.458046, + 45.451791 + ], + [ + -73.457687, + 45.451583 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457438, + 45.451421 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.456651, + 45.452055 + ] + ] + }, + "id": 338, + "properties": { + "id": "ccb6b0ed-c7fe-4896-9cec-10aecee50a1a", + "data": { + "gtfs": { + "shape_id": "614_2_R" + }, + "segments": [ + { + "distanceMeters": 21, + "travelTimeSeconds": 6 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 577, + "travelTimeSeconds": 181 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 5844, + "travelTimeSeconds": 883 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 69, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 102, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 87, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 347, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 111, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 69, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 19 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 222, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 12838, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 8620.03119725235, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.78, + "travelTimeWithoutDwellTimesSeconds": 2220, + "operatingTimeWithLayoverTimeSeconds": 2442, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2220, + "operatingSpeedWithLayoverMetersPerSecond": 5.26, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.78 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "f250cba5-329e-4403-912d-778f924ce25e", + "f250cba5-329e-4403-912d-778f924ce25e", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "f5036251-0211-4905-a979-2d3d0f8db7ed", + "16a4cfe7-4b02-454a-8a07-9501f3c5e0c5", + "117181e4-9af2-4572-89ec-28895ad235ae", + "984def83-5f59-45f7-bb33-ed1dbca30502", + "1d56d4cb-0ab2-44f2-924d-aa119de8c362", + "ecb00316-793a-4c41-88bd-3870bea4d999", + "9c3366b7-c832-4b7b-8636-18bed8c1e2de", + "9a86a407-515f-4b5e-8a56-9a4c52c91c96", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "003bcf5e-54a8-471f-b008-b7fa64ff94ba", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "eee98f97-7434-4d16-88a6-93a424bc6846", + "4bbdfb79-c7dc-46c0-893b-48e38ccd2db0", + "70ace55a-2f3c-410b-8740-bea06ecb9924", + "71ffac32-604a-4260-b51e-c427856a20c4", + "f872f4da-bae9-485b-a2fb-ae01787389fc", + "f045bfca-885e-4fa6-be24-3e8f1855457a", + "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", + "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", + "ca62a640-5508-4ced-94a0-1f22107c57c9", + "ca62a640-5508-4ced-94a0-1f22107c57c9", + "8443a69f-fccf-4a19-8d08-6da77269e686", + "2946050b-73ca-45c7-be10-f80ba5b43ab5", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "ab493a3c-1217-4122-93b5-217f7741b2ea", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804" + ], + "stops": [], + "line_id": "70bfeebb-26a4-449d-89bd-dc842f377c6c", + "segments": [ + 0, + 1, + 6, + 22, + 28, + 35, + 41, + 46, + 146, + 153, + 158, + 159, + 163, + 167, + 169, + 173, + 182, + 189, + 194, + 197, + 200, + 210, + 216, + 222, + 226, + 231, + 240, + 248, + 254, + 257, + 260, + 270, + 277, + 280, + 283, + 287 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 338, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.489818, + 45.512425 + ], + [ + -73.489247, + 45.51224 + ], + [ + -73.489123, + 45.5122 + ], + [ + -73.486295, + 45.511274 + ], + [ + -73.486057, + 45.511196 + ], + [ + -73.482934, + 45.510206 + ], + [ + -73.482887, + 45.510277 + ], + [ + -73.482482, + 45.510894 + ], + [ + -73.482007, + 45.511596 + ], + [ + -73.481659, + 45.512142 + ], + [ + -73.48158, + 45.512266 + ], + [ + -73.481183, + 45.51286 + ], + [ + -73.480831, + 45.513389 + ], + [ + -73.480785, + 45.513459 + ], + [ + -73.480359, + 45.514111 + ], + [ + -73.479976, + 45.514697 + ], + [ + -73.479924, + 45.514777 + ], + [ + -73.479817, + 45.515002 + ], + [ + -73.479797, + 45.515146 + ], + [ + -73.479857, + 45.515614 + ], + [ + -73.479528, + 45.516065 + ], + [ + -73.479464, + 45.516153 + ], + [ + -73.479072, + 45.516698 + ], + [ + -73.478751, + 45.51714 + ], + [ + -73.478676, + 45.517242 + ], + [ + -73.478269, + 45.517795 + ], + [ + -73.477677, + 45.518612 + ], + [ + -73.477613, + 45.5187 + ], + [ + -73.477254, + 45.51923 + ], + [ + -73.476906, + 45.519699 + ], + [ + -73.47683, + 45.519802 + ], + [ + -73.476473, + 45.520306 + ], + [ + -73.476161, + 45.520734 + ], + [ + -73.476081, + 45.520845 + ], + [ + -73.475434, + 45.521732 + ], + [ + -73.475294, + 45.521907 + ], + [ + -73.474999, + 45.522337 + ], + [ + -73.474964, + 45.522388 + ], + [ + -73.474526, + 45.522973 + ], + [ + -73.474023, + 45.523693 + ], + [ + -73.473889, + 45.523877 + ], + [ + -73.473762, + 45.524053 + ], + [ + -73.473573, + 45.524314 + ], + [ + -73.473363, + 45.524597 + ], + [ + -73.472906, + 45.525231 + ], + [ + -73.472624, + 45.525623 + ], + [ + -73.473054, + 45.525801 + ], + [ + -73.473275, + 45.525893 + ], + [ + -73.473987, + 45.52619 + ], + [ + -73.474447, + 45.526379 + ], + [ + -73.474646, + 45.526461 + ], + [ + -73.474731, + 45.526496 + ], + [ + -73.474569, + 45.526796 + ], + [ + -73.473648, + 45.528499 + ], + [ + -73.4736, + 45.528588 + ], + [ + -73.472506, + 45.530638 + ], + [ + -73.47246, + 45.530725 + ], + [ + -73.471365, + 45.532757 + ], + [ + -73.471309, + 45.532862 + ], + [ + -73.470217, + 45.534884 + ], + [ + -73.470214, + 45.534891 + ], + [ + -73.470158, + 45.534994 + ], + [ + -73.469177, + 45.536809 + ], + [ + -73.469167, + 45.536827 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.468965, + 45.537225 + ], + [ + -73.468894, + 45.537383 + ], + [ + -73.468821, + 45.537568 + ], + [ + -73.468811, + 45.537594 + ], + [ + -73.468727, + 45.537968 + ], + [ + -73.468709, + 45.538089 + ], + [ + -73.468533, + 45.538881 + ], + [ + -73.468316, + 45.539859 + ], + [ + -73.468315, + 45.539866 + ], + [ + -73.468289, + 45.539983 + ], + [ + -73.468097, + 45.539977 + ], + [ + -73.467958, + 45.539975 + ], + [ + -73.467889, + 45.539974 + ], + [ + -73.467676, + 45.539978 + ], + [ + -73.467668, + 45.539978 + ], + [ + -73.467407, + 45.539989 + ], + [ + -73.467341, + 45.540003 + ], + [ + -73.467302, + 45.540031 + ], + [ + -73.466892, + 45.540019 + ], + [ + -73.466727, + 45.539999 + ], + [ + -73.466559, + 45.539965 + ], + [ + -73.466407, + 45.539932 + ], + [ + -73.466227, + 45.539907 + ], + [ + -73.466142, + 45.539902 + ], + [ + -73.466115, + 45.539901 + ], + [ + -73.46602, + 45.539896 + ], + [ + -73.465942, + 45.539897 + ], + [ + -73.465848, + 45.539899 + ], + [ + -73.465709, + 45.539906 + ], + [ + -73.4656, + 45.539921 + ], + [ + -73.465482, + 45.539933 + ], + [ + -73.465335, + 45.539946 + ], + [ + -73.465216, + 45.539952 + ], + [ + -73.465098, + 45.539953 + ], + [ + -73.464951, + 45.539943 + ], + [ + -73.464825, + 45.539928 + ], + [ + -73.464679, + 45.539901 + ], + [ + -73.464558, + 45.53987 + ], + [ + -73.464497, + 45.539849 + ], + [ + -73.464445, + 45.539835 + ], + [ + -73.464385, + 45.539815 + ], + [ + -73.464334, + 45.539792 + ], + [ + -73.464269, + 45.539763 + ], + [ + -73.464231, + 45.539745 + ], + [ + -73.46418, + 45.539719 + ], + [ + -73.46414, + 45.539697 + ], + [ + -73.464104, + 45.539676 + ], + [ + -73.464064, + 45.539651 + ], + [ + -73.464033, + 45.539628 + ], + [ + -73.464022, + 45.53962 + ], + [ + -73.463967, + 45.539581 + ], + [ + -73.463917, + 45.539539 + ], + [ + -73.463869, + 45.5395 + ], + [ + -73.463819, + 45.53946 + ], + [ + -73.463797, + 45.539442 + ], + [ + -73.463513, + 45.539212 + ], + [ + -73.463464, + 45.539174 + ], + [ + -73.463271, + 45.539023 + ], + [ + -73.463118, + 45.538911 + ], + [ + -73.462874, + 45.538753 + ], + [ + -73.462697, + 45.53865 + ], + [ + -73.462534, + 45.538551 + ], + [ + -73.462187, + 45.53833 + ], + [ + -73.461989, + 45.538189 + ], + [ + -73.461864, + 45.5381 + ], + [ + -73.462077, + 45.537938 + ], + [ + -73.462556, + 45.537575 + ], + [ + -73.462834, + 45.537383 + ], + [ + -73.462922, + 45.537322 + ], + [ + -73.463661, + 45.536866 + ], + [ + -73.464142, + 45.536599 + ] + ] + }, + "id": 339, + "properties": { + "id": "eb23ef11-e367-46b5-8cec-1f39e3bacb2f", + "data": { + "gtfs": { + "shape_id": "616_2_R" + }, + "segments": [ + { + "distanceMeters": 49, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 525, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 18, + "travelTimeSeconds": 3 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 89, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 38 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5099, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3348.785103142474, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.07, + "travelTimeWithoutDwellTimesSeconds": 840, + "operatingTimeWithLayoverTimeSeconds": 1020, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 840, + "operatingSpeedWithLayoverMetersPerSecond": 5, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.07 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "229965c6-9bf9-414c-9970-4f7b1b31441b", + "229965c6-9bf9-414c-9970-4f7b1b31441b", + "6ab67241-b06e-417b-b6fb-88a16df29924", + "e1825eb4-cef2-4f98-872f-0d169be63859", + "65d27cdb-34eb-4bce-af66-d925b6cbeb28", + "d3bdcdd3-55f8-4e08-a7fc-b8e6dbef8ce7", + "6519add4-6360-4c95-9945-0c2d867f68d6", + "40cc5489-ce8f-4df1-916b-c682450d39d7", + "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", + "242c7269-ce0d-45c7-8356-927308e89900", + "bad427d3-2698-4efd-8d52-2bc92f049d64", + "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", + "75f82802-187b-4386-b435-5da7ab066898", + "471a40a2-ebb0-4658-a772-8036d064636d", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "e709ab81-b01c-47b3-a19c-63757b8320b0", + "eba98b16-12e9-4172-bbf2-62d1e69950a5", + "c2c8c1e8-4373-4b59-91c6-b04f7c4c1d76", + "523fb848-4048-4ab2-8e1c-32aab05ea63f", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "7173d99c-f55d-41f4-8d2d-0266835b40ee", + "248781a4-a949-4c45-bc5a-1de80211510e", + "8e9d3a93-2217-4362-8631-6cc69bd428bc", + "497c7cbc-7c2a-4684-ae90-71dc2a66863f", + "a392bf4c-9790-451e-a9bc-51428fa10a69", + "faaa7c6f-4c6c-443c-99d4-d4c617571545" + ], + "stops": [], + "line_id": "96f6f53d-fc88-4ddb-818e-cf6c3484a1f9", + "segments": [ + 0, + 1, + 3, + 9, + 12, + 15, + 20, + 23, + 26, + 29, + 32, + 36, + 40, + 44, + 49, + 50, + 53, + 55, + 57, + 59, + 62, + 68, + 73, + 92, + 115, + 129 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 339, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469004, + 45.466768 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.467433, + 45.466676 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467569, + 45.46701 + ], + [ + -73.467704, + 45.467049 + ], + [ + -73.467839, + 45.467063 + ], + [ + -73.468862, + 45.467106 + ], + [ + -73.469426, + 45.467129 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469327, + 45.468092 + ], + [ + -73.469492, + 45.4681 + ], + [ + -73.470299, + 45.468145 + ], + [ + -73.471063, + 45.468181 + ], + [ + -73.471238, + 45.46819 + ], + [ + -73.471526, + 45.468208 + ], + [ + -73.472194, + 45.468244 + ], + [ + -73.472443, + 45.468255 + ], + [ + -73.472597, + 45.468262 + ], + [ + -73.472728, + 45.468276 + ], + [ + -73.472834, + 45.468294 + ], + [ + -73.472877, + 45.468307 + ], + [ + -73.473025, + 45.468348 + ], + [ + -73.473214, + 45.468424 + ], + [ + -73.473672, + 45.468604 + ], + [ + -73.473673, + 45.468604 + ], + [ + -73.473905, + 45.468649 + ], + [ + -73.474077, + 45.468676 + ], + [ + -73.474259, + 45.46869 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474718, + 45.468735 + ], + [ + -73.474819, + 45.468708 + ], + [ + -73.474822, + 45.468708 + ], + [ + -73.475149, + 45.468731 + ], + [ + -73.475387, + 45.468739 + ], + [ + -73.475537, + 45.468744 + ], + [ + -73.477766, + 45.468838 + ], + [ + -73.477791, + 45.468839 + ], + [ + -73.478795, + 45.46888 + ], + [ + -73.479733, + 45.468916 + ], + [ + -73.480593, + 45.468948 + ], + [ + -73.480705, + 45.468952 + ], + [ + -73.481592, + 45.468898 + ], + [ + -73.482517, + 45.468777 + ], + [ + -73.48393, + 45.468794 + ], + [ + -73.484035, + 45.468795 + ], + [ + -73.484852, + 45.468827 + ], + [ + -73.484983, + 45.468836 + ], + [ + -73.485068, + 45.468858 + ], + [ + -73.485183, + 45.468899 + ], + [ + -73.485272, + 45.468957 + ], + [ + -73.485502, + 45.469227 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.485925, + 45.469758 + ], + [ + -73.485957, + 45.470015 + ], + [ + -73.485933, + 45.470276 + ], + [ + -73.485862, + 45.471349 + ], + [ + -73.485859, + 45.471396 + ], + [ + -73.485922, + 45.47159 + ], + [ + -73.486077, + 45.471855 + ], + [ + -73.486282, + 45.472161 + ], + [ + -73.486545, + 45.47257 + ], + [ + -73.486656, + 45.472723 + ], + [ + -73.486715, + 45.472804 + ], + [ + -73.486787, + 45.472912 + ], + [ + -73.486906, + 45.472874 + ], + [ + -73.488142, + 45.472472 + ], + [ + -73.488555, + 45.472341 + ], + [ + -73.488966, + 45.472197 + ], + [ + -73.489081, + 45.472161 + ], + [ + -73.489198, + 45.472121 + ], + [ + -73.489607, + 45.471977 + ], + [ + -73.489868, + 45.471862 + ], + [ + -73.490057, + 45.471779 + ], + [ + -73.490819, + 45.472701 + ], + [ + -73.49114, + 45.473079 + ], + [ + -73.491508, + 45.473513 + ], + [ + -73.491514, + 45.47352 + ], + [ + -73.490727, + 45.473858 + ], + [ + -73.49016, + 45.474084 + ], + [ + -73.489892, + 45.474191 + ], + [ + -73.489482, + 45.474308 + ], + [ + -73.48921, + 45.474343 + ], + [ + -73.488939, + 45.474348 + ], + [ + -73.488579, + 45.47433 + ], + [ + -73.48828, + 45.474348 + ], + [ + -73.487939, + 45.474393 + ], + [ + -73.487667, + 45.474471 + ], + [ + -73.487656, + 45.474474 + ], + [ + -73.487464, + 45.474541 + ], + [ + -73.487385, + 45.474582 + ], + [ + -73.487244, + 45.47464 + ], + [ + -73.487321, + 45.474735 + ], + [ + -73.487428, + 45.474874 + ], + [ + -73.487615, + 45.475158 + ], + [ + -73.487741, + 45.475441 + ], + [ + -73.487791, + 45.475603 + ], + [ + -73.487792, + 45.475608 + ], + [ + -73.487881, + 45.476058 + ], + [ + -73.487976, + 45.47662 + ], + [ + -73.488008, + 45.476755 + ], + [ + -73.488063, + 45.477092 + ], + [ + -73.488079, + 45.477241 + ], + [ + -73.488077, + 45.477259 + ], + [ + -73.488079, + 45.477295 + ], + [ + -73.488061, + 45.477358 + ], + [ + -73.488022, + 45.477403 + ], + [ + -73.48794, + 45.477475 + ], + [ + -73.487785, + 45.477583 + ], + [ + -73.487338, + 45.477878 + ], + [ + -73.487212, + 45.477961 + ], + [ + -73.486606, + 45.478379 + ], + [ + -73.486467, + 45.478469 + ], + [ + -73.486449, + 45.478486 + ], + [ + -73.486363, + 45.478568 + ], + [ + -73.486284, + 45.478752 + ], + [ + -73.48627, + 45.478815 + ], + [ + -73.486253, + 45.478887 + ], + [ + -73.486246, + 45.47895 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486526, + 45.47904 + ], + [ + -73.486789, + 45.47904 + ], + [ + -73.487039, + 45.479049 + ], + [ + -73.487771, + 45.479064 + ], + [ + -73.491329, + 45.479132 + ], + [ + -73.491516, + 45.479136 + ], + [ + -73.491713, + 45.47914 + ], + [ + -73.49213, + 45.479149 + ], + [ + -73.493367, + 45.479162 + ], + [ + -73.49582, + 45.479202 + ], + [ + -73.496137, + 45.479208 + ], + [ + -73.496207, + 45.479208 + ], + [ + -73.496272, + 45.479208 + ], + [ + -73.497101, + 45.479217 + ], + [ + -73.497998, + 45.479231 + ], + [ + -73.498188, + 45.479235 + ], + [ + -73.498413, + 45.479239 + ], + [ + -73.498669, + 45.479235 + ], + [ + -73.498683, + 45.479234 + ], + [ + -73.498818, + 45.47923 + ], + [ + -73.499162, + 45.479257 + ], + [ + -73.49961, + 45.479198 + ], + [ + -73.499795, + 45.479146 + ], + [ + -73.500019, + 45.479082 + ], + [ + -73.500107, + 45.478998 + ], + [ + -73.500272, + 45.479047 + ], + [ + -73.500354, + 45.479074 + ], + [ + -73.500404, + 45.479087 + ], + [ + -73.500422, + 45.479099 + ], + [ + -73.500588, + 45.479205 + ], + [ + -73.501159, + 45.479818 + ], + [ + -73.501455, + 45.480118 + ], + [ + -73.50163, + 45.480263 + ], + [ + -73.501828, + 45.48048 + ], + [ + -73.502027, + 45.480699 + ], + [ + -73.502676, + 45.481412 + ], + [ + -73.502806, + 45.48156 + ], + [ + -73.503272, + 45.482092 + ], + [ + -73.50345, + 45.482308 + ], + [ + -73.503512, + 45.48238 + ], + [ + -73.503558, + 45.482443 + ], + [ + -73.503598, + 45.482497 + ], + [ + -73.504141, + 45.483117 + ], + [ + -73.504614, + 45.483657 + ], + [ + -73.504846, + 45.483915 + ], + [ + -73.504857, + 45.483927 + ], + [ + -73.504924, + 45.483995 + ], + [ + -73.504924, + 45.483995 + ], + [ + -73.505108, + 45.484152 + ], + [ + -73.505242, + 45.484242 + ], + [ + -73.505364, + 45.484314 + ], + [ + -73.505521, + 45.484395 + ], + [ + -73.505663, + 45.484463 + ], + [ + -73.505851, + 45.484535 + ], + [ + -73.505993, + 45.484584 + ], + [ + -73.506624, + 45.484814 + ], + [ + -73.506746, + 45.484863 + ], + [ + -73.506951, + 45.484962 + ], + [ + -73.507115, + 45.485056 + ], + [ + -73.507185, + 45.485097 + ], + [ + -73.507329, + 45.4852 + ], + [ + -73.507431, + 45.485295 + ], + [ + -73.507518, + 45.485367 + ], + [ + -73.50762, + 45.485484 + ], + [ + -73.507754, + 45.485677 + ], + [ + -73.508077, + 45.486145 + ], + [ + -73.508225, + 45.48637 + ], + [ + -73.508354, + 45.486574 + ], + [ + -73.508385, + 45.486622 + ], + [ + -73.508489, + 45.486784 + ], + [ + -73.508543, + 45.486852 + ], + [ + -73.509592, + 45.488369 + ], + [ + -73.509675, + 45.488489 + ], + [ + -73.509764, + 45.488615 + ], + [ + -73.509971, + 45.488912 + ], + [ + -73.510813, + 45.490118 + ], + [ + -73.510825, + 45.490137 + ], + [ + -73.510906, + 45.490257 + ], + [ + -73.511275, + 45.490788 + ], + [ + -73.512404, + 45.492412 + ], + [ + -73.512418, + 45.492441 + ], + [ + -73.51245, + 45.492507 + ], + [ + -73.512764, + 45.493074 + ], + [ + -73.512921, + 45.493393 + ], + [ + -73.512971, + 45.493496 + ], + [ + -73.512984, + 45.493515 + ], + [ + -73.513094, + 45.493766 + ], + [ + -73.513261, + 45.494078 + ], + [ + -73.513283, + 45.494149 + ], + [ + -73.513342, + 45.494287 + ], + [ + -73.513459, + 45.494626 + ], + [ + -73.513505, + 45.494783 + ], + [ + -73.513561, + 45.49499 + ], + [ + -73.513604, + 45.495179 + ], + [ + -73.513621, + 45.495251 + ], + [ + -73.513692, + 45.495557 + ], + [ + -73.513769, + 45.495904 + ], + [ + -73.513786, + 45.49598 + ], + [ + -73.51384, + 45.496187 + ], + [ + -73.513899, + 45.496425 + ], + [ + -73.513925, + 45.49652 + ], + [ + -73.513974, + 45.496614 + ], + [ + -73.514009, + 45.496686 + ], + [ + -73.514054, + 45.496749 + ], + [ + -73.514104, + 45.49683 + ], + [ + -73.514166, + 45.496911 + ], + [ + -73.514219, + 45.49697 + ], + [ + -73.514552, + 45.497478 + ], + [ + -73.514769, + 45.497838 + ], + [ + -73.515085, + 45.498391 + ], + [ + -73.51517, + 45.49854 + ], + [ + -73.515555, + 45.499237 + ], + [ + -73.515623, + 45.499359 + ], + [ + -73.515674, + 45.499453 + ], + [ + -73.515873, + 45.499831 + ], + [ + -73.515977, + 45.500074 + ], + [ + -73.516146, + 45.500501 + ], + [ + -73.516373, + 45.50114 + ], + [ + -73.51647, + 45.501401 + ], + [ + -73.516581, + 45.501682 + ], + [ + -73.516643, + 45.501842 + ], + [ + -73.516705, + 45.501986 + ], + [ + -73.516967, + 45.502566 + ], + [ + -73.517068, + 45.5028 + ], + [ + -73.517227, + 45.503156 + ], + [ + -73.517458, + 45.503745 + ], + [ + -73.517476, + 45.503807 + ], + [ + -73.517545, + 45.504056 + ], + [ + -73.517576, + 45.504406 + ], + [ + -73.517547, + 45.504631 + ], + [ + -73.517534, + 45.504703 + ], + [ + -73.517471, + 45.50509 + ], + [ + -73.51744, + 45.505246 + ], + [ + -73.51738, + 45.505554 + ], + [ + -73.517325, + 45.505896 + ], + [ + -73.517276, + 45.506369 + ], + [ + -73.517272, + 45.506413 + ], + [ + -73.51724, + 45.506895 + ], + [ + -73.517233, + 45.507261 + ], + [ + -73.517231, + 45.507371 + ], + [ + -73.517271, + 45.507803 + ], + [ + -73.517341, + 45.508348 + ], + [ + -73.517381, + 45.508505 + ], + [ + -73.517557, + 45.509203 + ], + [ + -73.517602, + 45.509383 + ], + [ + -73.51787, + 45.510359 + ], + [ + -73.51789, + 45.510606 + ], + [ + -73.517894, + 45.510836 + ], + [ + -73.51783, + 45.511241 + ], + [ + -73.517799, + 45.511415 + ], + [ + -73.517775, + 45.511547 + ], + [ + -73.517734, + 45.511668 + ], + [ + -73.517679, + 45.511857 + ], + [ + -73.517621, + 45.512235 + ], + [ + -73.517591, + 45.512752 + ], + [ + -73.517595, + 45.513228 + ], + [ + -73.517596, + 45.513256 + ], + [ + -73.51762, + 45.513472 + ], + [ + -73.517713, + 45.513819 + ], + [ + -73.517877, + 45.514282 + ], + [ + -73.518137, + 45.514998 + ], + [ + -73.518165, + 45.51506 + ], + [ + -73.518252, + 45.515281 + ], + [ + -73.518257, + 45.515293 + ], + [ + -73.518338, + 45.51548 + ], + [ + -73.518503, + 45.515861 + ], + [ + -73.518612, + 45.5161 + ], + [ + -73.518761, + 45.516353 + ], + [ + -73.518797, + 45.516415 + ], + [ + -73.518938, + 45.516689 + ], + [ + -73.518968, + 45.516736 + ], + [ + -73.518973, + 45.516744 + ], + [ + -73.519179, + 45.517071 + ], + [ + -73.518456, + 45.516887 + ], + [ + -73.518077, + 45.516793 + ], + [ + -73.517978, + 45.516757 + ], + [ + -73.517749, + 45.516674 + ], + [ + -73.517741, + 45.516671 + ], + [ + -73.517498, + 45.516584 + ], + [ + -73.517318, + 45.516518 + ], + [ + -73.51692, + 45.51637 + ], + [ + -73.516876, + 45.516355 + ], + [ + -73.515414, + 45.515844 + ], + [ + -73.514728, + 45.515604 + ], + [ + -73.514563, + 45.515547 + ], + [ + -73.513772, + 45.515277 + ], + [ + -73.512796, + 45.514944 + ], + [ + -73.512165, + 45.514728 + ], + [ + -73.511591, + 45.514536 + ], + [ + -73.511507, + 45.514508 + ], + [ + -73.511388, + 45.514467 + ], + [ + -73.510118, + 45.514045 + ], + [ + -73.50981, + 45.513942 + ], + [ + -73.509393, + 45.513802 + ], + [ + -73.508861, + 45.513622 + ], + [ + -73.508741, + 45.513581 + ], + [ + -73.508131, + 45.513338 + ], + [ + -73.506731, + 45.512793 + ] + ] + }, + "id": 340, + "properties": { + "id": "ea3ea963-edaa-400f-a934-4ff3e32ba42e", + "data": { + "gtfs": { + "shape_id": "618_1_A" + }, + "segments": [ + { + "distanceMeters": 577, + "travelTimeSeconds": 93 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 478, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 418, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 406, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 22, + "travelTimeSeconds": 4 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 83, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 31 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10409, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5869.814599689504, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.2, + "travelTimeWithoutDwellTimesSeconds": 1680, + "operatingTimeWithLayoverTimeSeconds": 1860, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1680, + "operatingSpeedWithLayoverMetersPerSecond": 5.6, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.2 + }, + "mode": "bus", + "name": "Pav. Durocher/St-Lambert", + "color": "#A32638", + "nodes": [ + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "a1799b5f-9add-43c2-89ac-80ade94b6634", + "0296a406-079c-41f9-8c5b-0723a0b5f294", + "79c669a1-9060-4e5d-b272-f107884dee00", + "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "3e9388da-8f48-48c6-b6c0-5461e27eb26a", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "7e4b21bb-20d6-4104-9b98-071226922d49", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "c6165892-3719-417f-8d25-92e65471b42c", + "6735199f-47fc-47db-9116-7c110cca8945", + "6e4c328c-6fba-4e81-b589-59318e11a37a", + "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", + "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", + "fc92d5a1-fe31-4274-9837-2686b4525030", + "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", + "6b54424b-6f85-4448-8e7d-a05da4ef5b95", + "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", + "4df7f34c-ec49-4d48-90b3-56f3faffc976", + "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "9f22d75f-cc66-4020-8804-7912f49950d8", + "41d7b6d4-1fe4-44ed-a774-b005607fc59d", + "bc9b9243-e0ec-461a-9898-6eb69ecd511a", + "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "114aaaad-d40e-4930-853f-ef5cebdd299f", + "0b09b82c-ec97-406d-9f1c-690cc935b5ea", + "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "9b5a2104-c851-4abe-88ee-090849d3adca", + "cf524087-95a4-43fb-a2f1-74822356a0a9", + "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "2259b112-2e60-4bcc-ad14-9e0e577f2909", + "6250ca71-cb3c-4550-b402-0f2dd1999975", + "f250cba5-329e-4403-912d-778f924ce25e", + "f250cba5-329e-4403-912d-778f924ce25e", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "74539ff2-4125-4083-be0c-4345bf87f6fa", + "f1be4054-f28c-45a4-bc0b-58b82e1e6e83", + "969092dd-fcfd-493a-be55-d0467c757fb1", + "2227a38f-9c32-4890-9719-eef7445fa1fc" + ], + "stops": [], + "line_id": "8f581ac8-c528-4e5e-8e82-7bf3e2b1f150", + "segments": [ + 0, + 15, + 19, + 26, + 37, + 39, + 43, + 47, + 54, + 59, + 65, + 75, + 78, + 82, + 90, + 99, + 112, + 116, + 129, + 133, + 138, + 158, + 164, + 170, + 191, + 195, + 200, + 204, + 220, + 235, + 243, + 256, + 262, + 267, + 273, + 279, + 287, + 294, + 300, + 302, + 307, + 309, + 312, + 318 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 340, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.484644, + 45.507615 + ], + [ + -73.48473, + 45.507484 + ], + [ + -73.485803, + 45.507835 + ], + [ + -73.48655, + 45.508085 + ], + [ + -73.486813, + 45.508173 + ], + [ + -73.487623, + 45.508427 + ], + [ + -73.487874, + 45.508506 + ], + [ + -73.487374, + 45.509243 + ], + [ + -73.487035, + 45.509743 + ], + [ + -73.486501, + 45.51053 + ], + [ + -73.486269, + 45.510879 + ], + [ + -73.486057, + 45.511196 + ], + [ + -73.488983, + 45.512154 + ], + [ + -73.489123, + 45.5122 + ], + [ + -73.492054, + 45.513148 + ], + [ + -73.492199, + 45.513195 + ], + [ + -73.495125, + 45.51412 + ], + [ + -73.495274, + 45.514166 + ], + [ + -73.495455, + 45.513884 + ], + [ + -73.495699, + 45.5135 + ], + [ + -73.495774, + 45.513384 + ], + [ + -73.498948, + 45.514387 + ], + [ + -73.499247, + 45.514482 + ], + [ + -73.501107, + 45.515074 + ], + [ + -73.501252, + 45.51512 + ], + [ + -73.501676, + 45.515264 + ], + [ + -73.503119, + 45.515714 + ], + [ + -73.503239, + 45.515746 + ], + [ + -73.50337, + 45.515769 + ], + [ + -73.503487, + 45.515791 + ], + [ + -73.503653, + 45.515813 + ], + [ + -73.504061, + 45.515903 + ], + [ + -73.504906, + 45.516155 + ], + [ + -73.50541, + 45.516318 + ], + [ + -73.505601, + 45.51638 + ], + [ + -73.506087, + 45.516538 + ], + [ + -73.506374, + 45.516632 + ], + [ + -73.506766, + 45.516758 + ], + [ + -73.507015, + 45.516838 + ], + [ + -73.509656, + 45.517693 + ], + [ + -73.509783, + 45.517734 + ], + [ + -73.512029, + 45.518461 + ], + [ + -73.512173, + 45.518508 + ], + [ + -73.51354, + 45.518952 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.515008, + 45.519424 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.5189, + 45.520631 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520384, + 45.520947 + ], + [ + -73.520579, + 45.520957 + ], + [ + -73.520814, + 45.520956 + ], + [ + -73.521071, + 45.520931 + ], + [ + -73.521704, + 45.520864 + ], + [ + -73.52186, + 45.520904 + ], + [ + -73.521944, + 45.520931 + ], + [ + -73.522016, + 45.520967 + ], + [ + -73.522095, + 45.521021 + ], + [ + -73.522197, + 45.521093 + ], + [ + -73.522262, + 45.521179 + ], + [ + -73.522274, + 45.521462 + ], + [ + -73.522211, + 45.522152 + ], + [ + -73.522201, + 45.522265 + ], + [ + -73.522129, + 45.523061 + ], + [ + -73.522103, + 45.523345 + ], + [ + -73.522091, + 45.523481 + ], + [ + -73.522533, + 45.523496 + ], + [ + -73.522534, + 45.523707 + ], + [ + -73.522523, + 45.523955 + ], + [ + -73.522516, + 45.524144 + ], + [ + -73.521586, + 45.524128 + ], + [ + -73.521515, + 45.524126 + ], + [ + -73.521495, + 45.52413 + ], + [ + -73.521468, + 45.524145 + ], + [ + -73.521455, + 45.524176 + ], + [ + -73.521449, + 45.524251 + ], + [ + -73.521447, + 45.524278 + ] + ] + }, + "id": 341, + "properties": { + "id": "c4185d4a-8e06-4559-b613-9ab9d8295ca8", + "data": { + "gtfs": { + "shape_id": "620_1_R" + }, + "segments": [ + { + "distanceMeters": 173, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 92, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 744, + "travelTimeSeconds": 117 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 4223, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3377.620784333219, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.4, + "travelTimeWithoutDwellTimesSeconds": 660, + "operatingTimeWithLayoverTimeSeconds": 840, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 660, + "operatingSpeedWithLayoverMetersPerSecond": 5.03, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.4 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "2e045adb-bebd-4da6-b99a-63531ab62f07", + "ec8cd08f-9336-4f9e-945b-09c8eb5b3620", + "0f8d4bf1-fdee-4df3-8471-0b6ede606755", + "808ef7d7-1aa0-4a40-a96d-0615a6e712b5", + "6ab67241-b06e-417b-b6fb-88a16df29924", + "229965c6-9bf9-414c-9970-4f7b1b31441b", + "d76fa63a-1787-4749-9166-b1ecce1f4af2", + "2c0958f9-14bd-4467-9157-d96db49f68da", + "4a0c512f-2ce4-41cc-a200-cf81d75487c1", + "09272548-09d5-4afa-a45f-80ba6dd656dd", + "4070ca4c-584b-43bd-a874-a91871fdf63a", + "9e3f5b7f-c832-420a-b6d0-a87946ebafd2", + "d2f3e0fa-8998-4ca4-96de-f858c0088aad", + "60f00f0f-eca3-4ad1-beab-4b6811c87e8c", + "e66fb997-f83d-42a0-a232-e5b0a94a0caf", + "608948b3-8ac4-493b-a2b3-48bd266c12ab", + "9da92501-0f80-4a3e-b324-83bbfa32d05c", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "fe3abe5a-3bfa-4814-808a-3da69f0ecbea", + "segments": [ + 0, + 3, + 5, + 8, + 10, + 12, + 14, + 16, + 19, + 21, + 23, + 28, + 33, + 38, + 39, + 41, + 43, + 48, + 54 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 341, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.510609, + 45.52478 + ], + [ + -73.510559, + 45.524591 + ], + [ + -73.510103, + 45.523637 + ], + [ + -73.510027, + 45.523495 + ], + [ + -73.509617, + 45.522732 + ], + [ + -73.509474, + 45.522467 + ], + [ + -73.509184, + 45.521936 + ], + [ + -73.509122, + 45.521825 + ], + [ + -73.509119, + 45.521819 + ], + [ + -73.508895, + 45.52141 + ], + [ + -73.508879, + 45.521381 + ], + [ + -73.508774, + 45.52119 + ], + [ + -73.50866, + 45.520978 + ], + [ + -73.508615, + 45.520897 + ], + [ + -73.508348, + 45.520379 + ], + [ + -73.507929, + 45.519568 + ], + [ + -73.507805, + 45.519327 + ], + [ + -73.507767, + 45.519257 + ], + [ + -73.507222, + 45.518237 + ], + [ + -73.507088, + 45.517986 + ], + [ + -73.50664, + 45.517136 + ], + [ + -73.506596, + 45.517059 + ], + [ + -73.506515, + 45.516915 + ], + [ + -73.506521, + 45.516821 + ], + [ + -73.506537, + 45.516798 + ], + [ + -73.506559, + 45.516785 + ], + [ + -73.506565, + 45.51678 + ], + [ + -73.506617, + 45.516753 + ], + [ + -73.506766, + 45.516758 + ], + [ + -73.506998, + 45.516833 + ], + [ + -73.50964, + 45.517688 + ], + [ + -73.509783, + 45.517734 + ], + [ + -73.512015, + 45.518456 + ], + [ + -73.512173, + 45.518508 + ], + [ + -73.513527, + 45.518948 + ], + [ + -73.513777, + 45.519029 + ], + [ + -73.513908, + 45.519079 + ], + [ + -73.514336, + 45.519216 + ], + [ + -73.514507, + 45.519269 + ], + [ + -73.514995, + 45.51942 + ], + [ + -73.515201, + 45.519484 + ], + [ + -73.515284, + 45.519506 + ], + [ + -73.515409, + 45.519547 + ], + [ + -73.51562, + 45.51961 + ], + [ + -73.51571, + 45.519606 + ], + [ + -73.51889, + 45.520628 + ], + [ + -73.519022, + 45.52067 + ], + [ + -73.519206, + 45.520729 + ], + [ + -73.519388, + 45.520809 + ], + [ + -73.519545, + 45.520842 + ], + [ + -73.519821, + 45.520894 + ], + [ + -73.520137, + 45.52093 + ], + [ + -73.520253, + 45.52094 + ], + [ + -73.520267, + 45.521081 + ], + [ + -73.520267, + 45.521193 + ], + [ + -73.520266, + 45.52152 + ], + [ + -73.52024, + 45.521656 + ], + [ + -73.520186, + 45.521863 + ], + [ + -73.520122, + 45.522057 + ], + [ + -73.520078, + 45.522195 + ], + [ + -73.519986, + 45.522346 + ], + [ + -73.519898, + 45.522488 + ], + [ + -73.519741, + 45.522806 + ], + [ + -73.519466, + 45.523362 + ], + [ + -73.519636, + 45.523373 + ], + [ + -73.520277, + 45.523406 + ], + [ + -73.52025, + 45.523627 + ], + [ + -73.520225, + 45.52387 + ], + [ + -73.521017, + 45.523892 + ], + [ + -73.521053, + 45.523883 + ], + [ + -73.521061, + 45.523869 + ], + [ + -73.521065, + 45.523851 + ], + [ + -73.521071, + 45.523799 + ] + ] + }, + "id": 342, + "properties": { + "id": "944c9327-1801-491c-92c9-c3fd2284ecc1", + "data": { + "gtfs": { + "shape_id": "624_1_R" + }, + "segments": [ + { + "distanceMeters": 241, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 119, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 96, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 70, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 582, + "travelTimeSeconds": 95 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 2585, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 853.7326483900574, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.15, + "travelTimeWithoutDwellTimesSeconds": 420, + "operatingTimeWithLayoverTimeSeconds": 600, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 420, + "operatingSpeedWithLayoverMetersPerSecond": 4.31, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.15 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "94f3304d-66ff-42a6-bd12-7828cf5efc64", + "7dd9be07-f5cb-4f00-86f7-d61821676a78", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "01cbab8a-50a9-42e0-9d05-820a9dd4fa51", + "c28a8fa6-886c-4f1e-b291-00d0237d02dd", + "eab3c393-e690-4d4a-921c-9c45533c53f2", + "60f00f0f-eca3-4ad1-beab-4b6811c87e8c", + "e66fb997-f83d-42a0-a232-e5b0a94a0caf", + "608948b3-8ac4-493b-a2b3-48bd266c12ab", + "9da92501-0f80-4a3e-b324-83bbfa32d05c", + "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "24b6917b-6070-4fb2-a53e-3551153f56bd", + "d1011845-6c20-48e2-a9a9-e727cee5b959" + ], + "stops": [], + "line_id": "165acff1-a8ae-4b91-9f5b-5798cb82f91c", + "segments": [ + 0, + 4, + 10, + 14, + 15, + 18, + 21, + 29, + 30, + 32, + 34, + 39, + 45 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 342, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.424853, + 45.462423 + ], + [ + -73.4247, + 45.462321 + ], + [ + -73.42397, + 45.461837 + ], + [ + -73.423457, + 45.461497 + ], + [ + -73.423345, + 45.461423 + ], + [ + -73.422579, + 45.460915 + ], + [ + -73.419929, + 45.459157 + ], + [ + -73.419828, + 45.45909 + ], + [ + -73.419877, + 45.459055 + ], + [ + -73.419973, + 45.458983 + ], + [ + -73.420409, + 45.458658 + ], + [ + -73.420587, + 45.458524 + ], + [ + -73.42063, + 45.458492 + ], + [ + -73.420736, + 45.458359 + ], + [ + -73.420842, + 45.458218 + ], + [ + -73.420969, + 45.457966 + ], + [ + -73.421005, + 45.457768 + ], + [ + -73.420993, + 45.457597 + ], + [ + -73.420984, + 45.457466 + ], + [ + -73.420984, + 45.457462 + ], + [ + -73.420768, + 45.456709 + ], + [ + -73.420731, + 45.456406 + ], + [ + -73.420728, + 45.456281 + ], + [ + -73.420766, + 45.456105 + ], + [ + -73.420872, + 45.455877 + ], + [ + -73.421054, + 45.45561 + ], + [ + -73.421295, + 45.455422 + ], + [ + -73.422321, + 45.454723 + ], + [ + -73.422712, + 45.454457 + ], + [ + -73.422823, + 45.454382 + ], + [ + -73.425, + 45.452904 + ], + [ + -73.425235, + 45.452745 + ], + [ + -73.42721, + 45.451405 + ], + [ + -73.427291, + 45.45135 + ], + [ + -73.42733, + 45.451323 + ], + [ + -73.427666, + 45.451103 + ], + [ + -73.42768, + 45.451094 + ], + [ + -73.428037, + 45.450878 + ], + [ + -73.430991, + 45.449139 + ], + [ + -73.431162, + 45.449043 + ], + [ + -73.431275, + 45.448979 + ], + [ + -73.431167, + 45.448894 + ], + [ + -73.43096, + 45.449015 + ], + [ + -73.430882, + 45.449061 + ], + [ + -73.428846, + 45.450249 + ], + [ + -73.427598, + 45.450978 + ], + [ + -73.427528, + 45.451024 + ], + [ + -73.427205, + 45.451234 + ], + [ + -73.427162, + 45.451264 + ], + [ + -73.427291, + 45.45135 + ], + [ + -73.42733, + 45.451323 + ], + [ + -73.427666, + 45.451103 + ], + [ + -73.427684, + 45.451092 + ], + [ + -73.428037, + 45.450878 + ], + [ + -73.430991, + 45.449139 + ], + [ + -73.431166, + 45.44904 + ], + [ + -73.431275, + 45.448979 + ], + [ + -73.432931, + 45.450108 + ], + [ + -73.433653, + 45.450548 + ], + [ + -73.433864, + 45.450615 + ], + [ + -73.433938, + 45.450638 + ], + [ + -73.434086, + 45.450685 + ], + [ + -73.434372, + 45.450754 + ], + [ + -73.434532, + 45.45078 + ], + [ + -73.434811, + 45.450806 + ], + [ + -73.435216, + 45.450834 + ], + [ + -73.43546, + 45.450862 + ], + [ + -73.435648, + 45.450893 + ], + [ + -73.435818, + 45.450928 + ], + [ + -73.435935, + 45.450963 + ], + [ + -73.436195, + 45.451061 + ], + [ + -73.436419, + 45.451155 + ], + [ + -73.436602, + 45.451264 + ], + [ + -73.436681, + 45.451316 + ], + [ + -73.436758, + 45.451367 + ], + [ + -73.436938, + 45.4515 + ], + [ + -73.437141, + 45.451649 + ], + [ + -73.43763, + 45.452001 + ], + [ + -73.438297, + 45.452482 + ], + [ + -73.438425, + 45.452575 + ], + [ + -73.438899, + 45.452918 + ], + [ + -73.439474, + 45.45333 + ], + [ + -73.439588, + 45.453411 + ], + [ + -73.43982, + 45.453574 + ], + [ + -73.439861, + 45.453603 + ], + [ + -73.439909, + 45.45364 + ], + [ + -73.439987, + 45.4537 + ], + [ + -73.440478, + 45.454051 + ], + [ + -73.44074, + 45.454241 + ], + [ + -73.44099, + 45.454406 + ], + [ + -73.441259, + 45.45456 + ], + [ + -73.441361, + 45.454611 + ], + [ + -73.441496, + 45.454678 + ], + [ + -73.441752, + 45.454794 + ], + [ + -73.441936, + 45.454864 + ], + [ + -73.442015, + 45.454895 + ], + [ + -73.442069, + 45.454915 + ], + [ + -73.442434, + 45.455032 + ], + [ + -73.442619, + 45.455085 + ], + [ + -73.442851, + 45.45514 + ], + [ + -73.442711, + 45.455401 + ], + [ + -73.442537, + 45.455671 + ], + [ + -73.442076, + 45.456224 + ], + [ + -73.441851, + 45.45649 + ], + [ + -73.441716, + 45.456616 + ], + [ + -73.441606, + 45.456713 + ], + [ + -73.441548, + 45.456764 + ], + [ + -73.441473, + 45.456822 + ], + [ + -73.44081, + 45.457277 + ], + [ + -73.440142, + 45.457735 + ], + [ + -73.439938, + 45.457893 + ], + [ + -73.439859, + 45.457955 + ], + [ + -73.439614, + 45.458149 + ], + [ + -73.43929, + 45.458432 + ], + [ + -73.438818, + 45.459021 + ], + [ + -73.438626, + 45.459273 + ], + [ + -73.438614, + 45.459291 + ], + [ + -73.438414, + 45.459492 + ], + [ + -73.437866, + 45.460042 + ], + [ + -73.437761, + 45.460148 + ], + [ + -73.437619, + 45.460293 + ], + [ + -73.437101, + 45.460817 + ], + [ + -73.43693, + 45.460991 + ], + [ + -73.436084, + 45.461838 + ], + [ + -73.435953, + 45.461969 + ], + [ + -73.435883, + 45.462039 + ], + [ + -73.435417, + 45.462506 + ], + [ + -73.435116, + 45.462807 + ], + [ + -73.435017, + 45.462901 + ], + [ + -73.434675, + 45.463227 + ], + [ + -73.434449, + 45.463423 + ], + [ + -73.434426, + 45.463444 + ], + [ + -73.433916, + 45.463851 + ], + [ + -73.432011, + 45.465218 + ], + [ + -73.431899, + 45.465299 + ], + [ + -73.431759, + 45.465404 + ], + [ + -73.431232, + 45.465802 + ], + [ + -73.431153, + 45.465861 + ], + [ + -73.430632, + 45.466255 + ], + [ + -73.430573, + 45.466288 + ], + [ + -73.43057, + 45.466298 + ], + [ + -73.43053, + 45.466326 + ], + [ + -73.430808, + 45.46651 + ], + [ + -73.432747, + 45.467791 + ], + [ + -73.434094, + 45.468676 + ], + [ + -73.434186, + 45.468737 + ], + [ + -73.435228, + 45.46943 + ], + [ + -73.435371, + 45.469525 + ], + [ + -73.437736, + 45.471088 + ], + [ + -73.437899, + 45.471196 + ], + [ + -73.440427, + 45.472898 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.440904, + 45.473168 + ], + [ + -73.441015, + 45.473108 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.441803, + 45.472553 + ], + [ + -73.442533, + 45.472039 + ], + [ + -73.442653, + 45.471954 + ], + [ + -73.444466, + 45.470668 + ], + [ + -73.444558, + 45.470603 + ], + [ + -73.444704, + 45.470499 + ], + [ + -73.445328, + 45.470057 + ], + [ + -73.445338, + 45.470052 + ], + [ + -73.445622, + 45.469854 + ], + [ + -73.446091, + 45.469543 + ], + [ + -73.446391, + 45.469344 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.447066, + 45.468996 + ], + [ + -73.4474, + 45.468829 + ], + [ + -73.447822, + 45.468645 + ], + [ + -73.448427, + 45.468407 + ], + [ + -73.449383, + 45.468079 + ], + [ + -73.449758, + 45.467951 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450233, + 45.467787 + ], + [ + -73.451014, + 45.467517 + ], + [ + -73.451685, + 45.467271 + ], + [ + -73.451729, + 45.467255 + ], + [ + -73.451774, + 45.467238 + ], + [ + -73.452564, + 45.466965 + ], + [ + -73.452657, + 45.466933 + ], + [ + -73.453014, + 45.466803 + ], + [ + -73.45314, + 45.466749 + ], + [ + -73.453548, + 45.466537 + ], + [ + -73.453946, + 45.466304 + ], + [ + -73.454693, + 45.465786 + ], + [ + -73.454719, + 45.465768 + ], + [ + -73.45516, + 45.46545 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.45762, + 45.462209 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.45769, + 45.462033 + ], + [ + -73.457776, + 45.461966 + ], + [ + -73.45778, + 45.461865 + ], + [ + -73.457799, + 45.461756 + ], + [ + -73.457805, + 45.461716 + ], + [ + -73.457817, + 45.461563 + ], + [ + -73.45782, + 45.461477 + ], + [ + -73.457812, + 45.461383 + ], + [ + -73.457786, + 45.461212 + ], + [ + -73.457776, + 45.461173 + ], + [ + -73.457743, + 45.46105 + ], + [ + -73.457714, + 45.460928 + ], + [ + -73.457665, + 45.460784 + ], + [ + -73.457595, + 45.460627 + ], + [ + -73.457462, + 45.460379 + ], + [ + -73.457342, + 45.460166 + ], + [ + -73.4565, + 45.458675 + ], + [ + -73.456446, + 45.458579 + ], + [ + -73.455819, + 45.457453 + ], + [ + -73.455767, + 45.45736 + ], + [ + -73.455551, + 45.456955 + ], + [ + -73.455474, + 45.456802 + ], + [ + -73.455367, + 45.456563 + ], + [ + -73.455234, + 45.456113 + ], + [ + -73.455192, + 45.45589 + ], + [ + -73.455162, + 45.455731 + ], + [ + -73.455134, + 45.455281 + ], + [ + -73.455165, + 45.454907 + ], + [ + -73.455177, + 45.454772 + ], + [ + -73.455206, + 45.454588 + ], + [ + -73.455346, + 45.454111 + ], + [ + -73.455479, + 45.453796 + ], + [ + -73.455501, + 45.453755 + ], + [ + -73.455716, + 45.453355 + ], + [ + -73.455869, + 45.453126 + ], + [ + -73.455902, + 45.453077 + ], + [ + -73.456055, + 45.452883 + ], + [ + -73.45626, + 45.452645 + ], + [ + -73.456494, + 45.452415 + ], + [ + -73.45667, + 45.452253 + ], + [ + -73.457293, + 45.451714 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457598, + 45.451363 + ], + [ + -73.457627, + 45.45129 + ], + [ + -73.457661, + 45.451176 + ], + [ + -73.457648, + 45.45104 + ], + [ + -73.457607, + 45.450938 + ], + [ + -73.457498, + 45.450823 + ], + [ + -73.457365, + 45.450743 + ] + ] + }, + "id": 343, + "properties": { + "id": "02824c66-dc4f-49f8-a5ce-540e74cc3f79", + "data": { + "gtfs": { + "shape_id": "640_1_A" + }, + "segments": [ + { + "distanceMeters": 150, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 77, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 422, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 45, + "travelTimeSeconds": 7 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 95, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 304, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 463, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 119, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 18 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9955, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2871.5902355163707, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.91, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 6.14, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.91 + }, + "mode": "bus", + "name": "École Antoine-Brossard", + "color": "#A32638", + "nodes": [ + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "bfb03303-2ee6-40dd-8e8f-859a06b338a6", + "2b6f210c-4f28-43d1-b096-b48c582f5274", + "57b5655a-03f7-4fb9-a3a9-26c2523cb5bf", + "3947066a-3681-4f55-8693-0a5fac46c728", + "006d28ae-a3cc-4f45-8689-daa6cf9386f5", + "94721b0b-0bae-4300-ab61-58dc9d3fe85b", + "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", + "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", + "1f1619c9-3302-430c-9ade-aab4bf9e1e55", + "c74e0c90-a5ea-4788-9b1d-7bf05f50a1c4", + "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", + "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", + "27e1da8c-287d-4c6b-9905-9c8c3d07097d", + "9fe6df14-62d0-4a44-8e19-85300b42de89", + "c46f92e7-e692-49ea-b12f-0df7099ee6d5", + "06cee1c3-abcc-4982-b889-e73356b844e0", + "9e4bc046-2878-4cee-af77-934e179aa77f", + "1f87e3a1-2127-4357-9fd4-016c6c31e011", + "b7b9e437-9aed-4216-8c9e-6ac432328b58", + "eeae68ef-a789-47cd-b1a9-a6fc5c2bb689", + "1a929515-9cf9-46e2-a23e-d4a14e85a95d", + "7c6202a7-3f19-4943-97ae-2c6baa7cb485", + "2dc5436a-aaba-417a-8f15-4777cfa70bbf", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "ba86f45f-9fb5-4525-a50b-a876919fd012", + "988c86da-04eb-4067-b650-f13c447b17e7", + "14e293a6-352a-4156-8578-66d0b5bdcc1f", + "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", + "2881ced2-6a46-4738-a470-6ff64097e482", + "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "4fc83229-a15e-48e1-aa4f-fae0073dacf9", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "ac84633b-6f3b-458c-8f4e-099cc310c05e", + "d271cca7-cd7a-4e22-8728-7a598b88fe32", + "f5f0a75d-b9e9-4575-845b-09748935c6e0", + "c77e59d9-5075-4e39-a183-6bacc1afd03e", + "59b4f87c-067e-4dc3-856a-07fb245d4fe3", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "44eacee6-a348-48cf-aeda-c9ddae958f8e" + ], + "stops": [], + "line_id": "f1057248-6983-4d17-9a0c-3b25a0b3a0d7", + "segments": [ + 0, + 3, + 6, + 10, + 17, + 29, + 31, + 36, + 39, + 42, + 46, + 52, + 55, + 59, + 73, + 78, + 83, + 94, + 105, + 110, + 119, + 124, + 130, + 133, + 137, + 142, + 144, + 146, + 148, + 150, + 157, + 161, + 166, + 173, + 180, + 187, + 199, + 210, + 217, + 219, + 228, + 235, + 241 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 343, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.457365, + 45.450743 + ], + [ + -73.457311, + 45.45071 + ], + [ + -73.457055, + 45.450562 + ], + [ + -73.45697, + 45.450481 + ], + [ + -73.456931, + 45.450397 + ], + [ + -73.456841, + 45.450279 + ], + [ + -73.456733, + 45.450296 + ], + [ + -73.456625, + 45.450319 + ], + [ + -73.456525, + 45.450368 + ], + [ + -73.456438, + 45.450427 + ], + [ + -73.456357, + 45.45049 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456282, + 45.450641 + ], + [ + -73.456274, + 45.450721 + ], + [ + -73.456292, + 45.450794 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.45714, + 45.451439 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.456657, + 45.45205 + ], + [ + -73.456511, + 45.452168 + ], + [ + -73.456345, + 45.452339 + ], + [ + -73.456105, + 45.452573 + ], + [ + -73.455893, + 45.452816 + ], + [ + -73.455821, + 45.452909 + ], + [ + -73.45573, + 45.453027 + ], + [ + -73.455536, + 45.453301 + ], + [ + -73.455293, + 45.453751 + ], + [ + -73.455167, + 45.454075 + ], + [ + -73.455022, + 45.454574 + ], + [ + -73.455006, + 45.45464 + ], + [ + -73.454977, + 45.454754 + ], + [ + -73.454933, + 45.455281 + ], + [ + -73.454963, + 45.455744 + ], + [ + -73.455037, + 45.456136 + ], + [ + -73.455173, + 45.456599 + ], + [ + -73.455283, + 45.456847 + ], + [ + -73.455363, + 45.457004 + ], + [ + -73.455596, + 45.457405 + ], + [ + -73.455641, + 45.457484 + ], + [ + -73.456006, + 45.458134 + ], + [ + -73.456228, + 45.458529 + ], + [ + -73.456258, + 45.458583 + ], + [ + -73.456281, + 45.458624 + ], + [ + -73.457233, + 45.460328 + ], + [ + -73.457292, + 45.460433 + ], + [ + -73.45742, + 45.460667 + ], + [ + -73.457486, + 45.46082 + ], + [ + -73.457532, + 45.460955 + ], + [ + -73.457565, + 45.461072 + ], + [ + -73.457606, + 45.46123 + ], + [ + -73.457631, + 45.461396 + ], + [ + -73.457639, + 45.461477 + ], + [ + -73.457625, + 45.461707 + ], + [ + -73.457614, + 45.461848 + ], + [ + -73.457627, + 45.46193 + ], + [ + -73.45763, + 45.461949 + ], + [ + -73.45769, + 45.462033 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.45467, + 45.465612 + ], + [ + -73.45456, + 45.465692 + ], + [ + -73.453819, + 45.466205 + ], + [ + -73.453432, + 45.466434 + ], + [ + -73.453035, + 45.466641 + ], + [ + -73.452922, + 45.46669 + ], + [ + -73.452792, + 45.466746 + ], + [ + -73.452589, + 45.466834 + ], + [ + -73.451705, + 45.467139 + ], + [ + -73.451627, + 45.467166 + ], + [ + -73.45158, + 45.467183 + ], + [ + -73.451022, + 45.467375 + ], + [ + -73.450937, + 45.467405 + ], + [ + -73.450156, + 45.467679 + ], + [ + -73.449888, + 45.467769 + ], + [ + -73.449338, + 45.467948 + ], + [ + -73.44837, + 45.46829 + ], + [ + -73.447748, + 45.468524 + ], + [ + -73.447289, + 45.468721 + ], + [ + -73.446442, + 45.469161 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445905, + 45.469485 + ], + [ + -73.445671, + 45.469643 + ], + [ + -73.445475, + 45.469778 + ], + [ + -73.445396, + 45.469832 + ], + [ + -73.445298, + 45.469899 + ], + [ + -73.444328, + 45.470583 + ], + [ + -73.444082, + 45.470756 + ], + [ + -73.442664, + 45.471757 + ], + [ + -73.442644, + 45.471771 + ], + [ + -73.442519, + 45.471859 + ], + [ + -73.441942, + 45.47227 + ], + [ + -73.44177, + 45.472393 + ], + [ + -73.441027, + 45.472922 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.439193, + 45.471877 + ], + [ + -73.438166, + 45.471184 + ], + [ + -73.438035, + 45.471097 + ], + [ + -73.435602, + 45.469489 + ], + [ + -73.435506, + 45.469426 + ], + [ + -73.43454, + 45.468786 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.433058, + 45.467863 + ], + [ + -73.430746, + 45.46633 + ], + [ + -73.430632, + 45.466255 + ], + [ + -73.430224, + 45.465985 + ], + [ + -73.426696, + 45.463645 + ], + [ + -73.426608, + 45.463587 + ], + [ + -73.425566, + 45.462896 + ], + [ + -73.425014, + 45.46253 + ], + [ + -73.424853, + 45.462423 + ], + [ + -73.4247, + 45.462321 + ], + [ + -73.42397, + 45.461837 + ], + [ + -73.423456, + 45.461496 + ], + [ + -73.423345, + 45.461423 + ], + [ + -73.422579, + 45.460915 + ], + [ + -73.419928, + 45.459157 + ], + [ + -73.419828, + 45.45909 + ], + [ + -73.419877, + 45.459055 + ], + [ + -73.420118, + 45.458874 + ], + [ + -73.42041, + 45.458657 + ], + [ + -73.420587, + 45.458524 + ], + [ + -73.42063, + 45.458492 + ], + [ + -73.420736, + 45.458359 + ], + [ + -73.420842, + 45.458218 + ], + [ + -73.420969, + 45.457966 + ], + [ + -73.421005, + 45.457768 + ], + [ + -73.420993, + 45.457596 + ], + [ + -73.420984, + 45.457466 + ], + [ + -73.420984, + 45.457462 + ], + [ + -73.420768, + 45.456709 + ], + [ + -73.420731, + 45.456406 + ], + [ + -73.420728, + 45.456281 + ], + [ + -73.420766, + 45.456105 + ], + [ + -73.420872, + 45.455877 + ], + [ + -73.421054, + 45.45561 + ], + [ + -73.421295, + 45.455422 + ], + [ + -73.422321, + 45.454723 + ], + [ + -73.422712, + 45.454457 + ], + [ + -73.422824, + 45.454381 + ], + [ + -73.425, + 45.452904 + ], + [ + -73.425236, + 45.452744 + ], + [ + -73.42721, + 45.451405 + ], + [ + -73.427291, + 45.45135 + ], + [ + -73.42733, + 45.451323 + ], + [ + -73.427666, + 45.451103 + ], + [ + -73.427682, + 45.451093 + ], + [ + -73.428037, + 45.450878 + ], + [ + -73.430991, + 45.449139 + ], + [ + -73.431164, + 45.449041 + ], + [ + -73.431275, + 45.448979 + ], + [ + -73.43292, + 45.4501 + ], + [ + -73.432931, + 45.450108 + ], + [ + -73.433653, + 45.450548 + ], + [ + -73.433862, + 45.450614 + ], + [ + -73.433938, + 45.450638 + ], + [ + -73.434086, + 45.450685 + ], + [ + -73.434372, + 45.450754 + ], + [ + -73.434532, + 45.45078 + ], + [ + -73.434811, + 45.450806 + ], + [ + -73.435216, + 45.450834 + ], + [ + -73.43546, + 45.450862 + ], + [ + -73.435648, + 45.450893 + ], + [ + -73.435818, + 45.450928 + ], + [ + -73.435935, + 45.450963 + ], + [ + -73.436195, + 45.451061 + ], + [ + -73.436419, + 45.451155 + ], + [ + -73.436602, + 45.451264 + ], + [ + -73.43668, + 45.451316 + ], + [ + -73.436758, + 45.451367 + ], + [ + -73.436938, + 45.4515 + ], + [ + -73.437141, + 45.451649 + ], + [ + -73.43763, + 45.452001 + ], + [ + -73.438296, + 45.452482 + ], + [ + -73.438425, + 45.452575 + ], + [ + -73.438899, + 45.452918 + ], + [ + -73.439474, + 45.45333 + ], + [ + -73.439588, + 45.453411 + ], + [ + -73.439819, + 45.453574 + ], + [ + -73.439861, + 45.453603 + ], + [ + -73.439909, + 45.45364 + ], + [ + -73.439987, + 45.4537 + ], + [ + -73.440478, + 45.454051 + ], + [ + -73.44074, + 45.454241 + ], + [ + -73.44099, + 45.454406 + ], + [ + -73.441259, + 45.45456 + ], + [ + -73.441361, + 45.454611 + ], + [ + -73.441496, + 45.454678 + ], + [ + -73.441752, + 45.454794 + ], + [ + -73.441935, + 45.454864 + ], + [ + -73.442069, + 45.454915 + ], + [ + -73.442434, + 45.455032 + ], + [ + -73.442619, + 45.455085 + ], + [ + -73.442851, + 45.45514 + ], + [ + -73.442711, + 45.455401 + ], + [ + -73.442537, + 45.455671 + ], + [ + -73.442453, + 45.455772 + ], + [ + -73.442076, + 45.456224 + ], + [ + -73.441851, + 45.45649 + ], + [ + -73.441716, + 45.456616 + ], + [ + -73.441606, + 45.456713 + ], + [ + -73.441548, + 45.456764 + ], + [ + -73.441473, + 45.456822 + ], + [ + -73.44081, + 45.457277 + ], + [ + -73.440142, + 45.457735 + ], + [ + -73.439939, + 45.457893 + ], + [ + -73.439859, + 45.457955 + ], + [ + -73.439614, + 45.458149 + ], + [ + -73.43929, + 45.458432 + ], + [ + -73.438818, + 45.459021 + ], + [ + -73.438626, + 45.459273 + ], + [ + -73.438614, + 45.459291 + ], + [ + -73.438414, + 45.459492 + ], + [ + -73.437866, + 45.460042 + ], + [ + -73.437762, + 45.460148 + ], + [ + -73.437619, + 45.460293 + ], + [ + -73.437101, + 45.460817 + ], + [ + -73.43693, + 45.460991 + ], + [ + -73.436084, + 45.461838 + ], + [ + -73.435953, + 45.461969 + ], + [ + -73.435883, + 45.462039 + ], + [ + -73.435417, + 45.462506 + ], + [ + -73.435116, + 45.462807 + ], + [ + -73.435017, + 45.462901 + ], + [ + -73.434675, + 45.463227 + ], + [ + -73.434449, + 45.463424 + ], + [ + -73.434426, + 45.463444 + ], + [ + -73.433916, + 45.463851 + ], + [ + -73.43201, + 45.465219 + ] + ] + }, + "id": 344, + "properties": { + "id": "afa330b2-e212-4733-8709-c10c7d9ecca4", + "data": { + "gtfs": { + "shape_id": "640_2_R" + }, + "segments": [ + { + "distanceMeters": 248, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 91, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 483, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 310, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 403, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 56, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 77, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 422, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 304, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 47 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9697, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2567.456556702445, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.99, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 5.39, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.99 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "44eacee6-a348-48cf-aeda-c9ddae958f8e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "59b4f87c-067e-4dc3-856a-07fb245d4fe3", + "c77e59d9-5075-4e39-a183-6bacc1afd03e", + "f5f0a75d-b9e9-4575-845b-09748935c6e0", + "d271cca7-cd7a-4e22-8728-7a598b88fe32", + "3b708726-0db1-43de-b014-b11ddc9fc24a", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "bd9b4c12-08ed-4715-ae67-eb179ed7f974", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "ff779c9a-cd83-463a-8d0c-a93f3584a187", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", + "c8919560-2bb2-4063-8184-8e6c296badbe", + "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", + "14e293a6-352a-4156-8578-66d0b5bdcc1f", + "62558b4d-75af-4b04-8040-a30de5a89658", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "988183db-88f1-47cb-87bf-b2a03dd4a38d", + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "bfb03303-2ee6-40dd-8e8f-859a06b338a6", + "2b6f210c-4f28-43d1-b096-b48c582f5274", + "57b5655a-03f7-4fb9-a3a9-26c2523cb5bf", + "3947066a-3681-4f55-8693-0a5fac46c728", + "006d28ae-a3cc-4f45-8689-daa6cf9386f5", + "94721b0b-0bae-4300-ab61-58dc9d3fe85b", + "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", + "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", + "27e1da8c-287d-4c6b-9905-9c8c3d07097d", + "9fe6df14-62d0-4a44-8e19-85300b42de89", + "c46f92e7-e692-49ea-b12f-0df7099ee6d5", + "06cee1c3-abcc-4982-b889-e73356b844e0", + "9e4bc046-2878-4cee-af77-934e179aa77f", + "1f87e3a1-2127-4357-9fd4-016c6c31e011", + "b7b9e437-9aed-4216-8c9e-6ac432328b58", + "eeae68ef-a789-47cd-b1a9-a6fc5c2bb689", + "1a929515-9cf9-46e2-a23e-d4a14e85a95d", + "7c6202a7-3f19-4943-97ae-2c6baa7cb485", + "2dc5436a-aaba-417a-8f15-4777cfa70bbf" + ], + "stops": [], + "line_id": "f1057248-6983-4d17-9a0c-3b25a0b3a0d7", + "segments": [ + 0, + 16, + 18, + 23, + 29, + 38, + 40, + 43, + 54, + 67, + 73, + 78, + 86, + 94, + 95, + 100, + 103, + 105, + 107, + 110, + 112, + 113, + 117, + 120, + 123, + 127, + 134, + 146, + 148, + 153, + 156, + 161, + 175, + 180, + 185, + 196, + 207, + 212, + 221, + 226, + 232 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 344, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.45145, + 45.430962 + ], + [ + -73.451306, + 45.431026 + ], + [ + -73.450883, + 45.431238 + ], + [ + -73.450399, + 45.431499 + ], + [ + -73.449891, + 45.431803 + ], + [ + -73.449325, + 45.43218 + ], + [ + -73.448785, + 45.432585 + ], + [ + -73.448377, + 45.432935 + ], + [ + -73.447875, + 45.433413 + ], + [ + -73.447643, + 45.43369 + ], + [ + -73.44745, + 45.433901 + ], + [ + -73.447206, + 45.434187 + ], + [ + -73.447139, + 45.434272 + ], + [ + -73.447325, + 45.434288 + ], + [ + -73.447496, + 45.434296 + ], + [ + -73.447559, + 45.434294 + ], + [ + -73.447672, + 45.43429 + ], + [ + -73.447825, + 45.434283 + ], + [ + -73.448052, + 45.43426 + ], + [ + -73.448578, + 45.434176 + ], + [ + -73.448699, + 45.434165 + ], + [ + -73.448848, + 45.434152 + ], + [ + -73.449804, + 45.434095 + ], + [ + -73.450056, + 45.43408 + ], + [ + -73.451324, + 45.433994 + ], + [ + -73.451404, + 45.433989 + ], + [ + -73.452574, + 45.433909 + ], + [ + -73.452708, + 45.433899 + ], + [ + -73.453072, + 45.433895 + ], + [ + -73.453186, + 45.433903 + ], + [ + -73.453328, + 45.433913 + ], + [ + -73.453345, + 45.433915 + ], + [ + -73.453603, + 45.433946 + ], + [ + -73.453629, + 45.433949 + ], + [ + -73.453651, + 45.433954 + ], + [ + -73.453902, + 45.434003 + ], + [ + -73.454123, + 45.434057 + ], + [ + -73.45503, + 45.434305 + ], + [ + -73.455549, + 45.434449 + ], + [ + -73.455955, + 45.434571 + ], + [ + -73.456005, + 45.434588 + ], + [ + -73.456028, + 45.434596 + ], + [ + -73.456351, + 45.434706 + ], + [ + -73.45674, + 45.434846 + ], + [ + -73.457423, + 45.435094 + ], + [ + -73.457584, + 45.435152 + ], + [ + -73.458318, + 45.435418 + ], + [ + -73.459087, + 45.435697 + ], + [ + -73.459599, + 45.435873 + ], + [ + -73.459868, + 45.435958 + ], + [ + -73.4602, + 45.436053 + ], + [ + -73.46028, + 45.436076 + ], + [ + -73.461443, + 45.436418 + ], + [ + -73.462112, + 45.43661 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.463269, + 45.436949 + ], + [ + -73.464723, + 45.437368 + ], + [ + -73.465091, + 45.437458 + ], + [ + -73.465138, + 45.437466 + ], + [ + -73.4653, + 45.437494 + ], + [ + -73.465515, + 45.437526 + ], + [ + -73.465864, + 45.437562 + ], + [ + -73.467675, + 45.437692 + ], + [ + -73.46781, + 45.437702 + ], + [ + -73.468967, + 45.437779 + ], + [ + -73.470109, + 45.437842 + ], + [ + -73.470326, + 45.437857 + ], + [ + -73.470561, + 45.437874 + ], + [ + -73.470756, + 45.437887 + ], + [ + -73.472007, + 45.43798 + ], + [ + -73.472271, + 45.438 + ], + [ + -73.472146, + 45.438187 + ], + [ + -73.471874, + 45.438596 + ], + [ + -73.471678, + 45.438891 + ], + [ + -73.470353, + 45.440893 + ], + [ + -73.470303, + 45.440969 + ], + [ + -73.469973, + 45.440865 + ], + [ + -73.468418, + 45.44037 + ], + [ + -73.467652, + 45.440123 + ], + [ + -73.46707, + 45.439934 + ], + [ + -73.466608, + 45.439785 + ], + [ + -73.465969, + 45.439632 + ], + [ + -73.465764, + 45.439609 + ], + [ + -73.46555, + 45.439605 + ], + [ + -73.465254, + 45.439631 + ], + [ + -73.464962, + 45.43969 + ], + [ + -73.464528, + 45.439856 + ], + [ + -73.463561, + 45.440337 + ], + [ + -73.463318, + 45.440459 + ], + [ + -73.462563, + 45.440836 + ], + [ + -73.462314, + 45.440989 + ], + [ + -73.462298, + 45.441 + ], + [ + -73.462213, + 45.441057 + ], + [ + -73.462145, + 45.441115 + ], + [ + -73.46199, + 45.441264 + ], + [ + -73.461921, + 45.441345 + ], + [ + -73.461296, + 45.442294 + ], + [ + -73.461249, + 45.442366 + ], + [ + -73.46061, + 45.443357 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.460454, + 45.443598 + ], + [ + -73.460027, + 45.444237 + ], + [ + -73.459528, + 45.445025 + ], + [ + -73.459486, + 45.445092 + ], + [ + -73.458903, + 45.445978 + ], + [ + -73.458716, + 45.446252 + ], + [ + -73.458499, + 45.446437 + ], + [ + -73.458358, + 45.446536 + ], + [ + -73.45823, + 45.446598 + ], + [ + -73.458121, + 45.446639 + ], + [ + -73.458106, + 45.446644 + ], + [ + -73.458085, + 45.446651 + ], + [ + -73.458009, + 45.446676 + ], + [ + -73.457516, + 45.446841 + ], + [ + -73.456885, + 45.447052 + ], + [ + -73.456373, + 45.447223 + ], + [ + -73.456253, + 45.447264 + ], + [ + -73.455927, + 45.447371 + ], + [ + -73.455661, + 45.447479 + ], + [ + -73.455528, + 45.447551 + ], + [ + -73.455416, + 45.447619 + ], + [ + -73.455304, + 45.447709 + ], + [ + -73.455137, + 45.447929 + ], + [ + -73.454897, + 45.448293 + ], + [ + -73.454606, + 45.448707 + ], + [ + -73.454507, + 45.448806 + ], + [ + -73.454403, + 45.448887 + ], + [ + -73.454351, + 45.448928 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.454088, + 45.449121 + ], + [ + -73.454251, + 45.449228 + ], + [ + -73.454556, + 45.449427 + ], + [ + -73.45481, + 45.44962 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.455393, + 45.45012 + ], + [ + -73.456061, + 45.45066 + ], + [ + -73.456286, + 45.450829 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.457154, + 45.451449 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457598, + 45.451363 + ], + [ + -73.457627, + 45.45129 + ], + [ + -73.457661, + 45.451176 + ], + [ + -73.457648, + 45.45104 + ], + [ + -73.457607, + 45.450938 + ], + [ + -73.457498, + 45.450823 + ], + [ + -73.457365, + 45.450743 + ] + ] + }, + "id": 345, + "properties": { + "id": "faf88441-45ea-4959-bfa8-561d15e203db", + "data": { + "gtfs": { + "shape_id": "644_1_A" + }, + "segments": [ + { + "distanceMeters": 628, + "travelTimeSeconds": 107 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 427, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 24 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5261, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2248.9641491088037, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.85, + "travelTimeWithoutDwellTimesSeconds": 900, + "operatingTimeWithLayoverTimeSeconds": 1080, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 900, + "operatingSpeedWithLayoverMetersPerSecond": 4.87, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.85 + }, + "mode": "bus", + "name": "École Antoine-Brossard", + "color": "#A32638", + "nodes": [ + "1e5e280b-187c-453e-ae50-34515416c146", + "d26ce5e1-6c58-4e66-9161-bd0bb569b92f", + "95267540-c736-4584-b843-23c799e4aa83", + "8162eb5c-436c-4cc2-b9dd-2d13a57dd8d8", + "75a6ca63-e257-4bc0-9a35-e9f67206fdfb", + "dc444f91-de90-48b4-9750-8ab69f40baf5", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", + "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", + "e13d482c-ee57-4f7d-bc38-264ca460deda", + "daacedd2-0b84-4f73-9f01-d9072ec32dce", + "bd0ab07f-3423-4348-a03c-133d6cccab2d", + "b93691d0-438e-4eac-87a0-7c1ac45a7c18", + "9b31d865-da9f-4eb8-b8a9-3d488eb579df", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "57126f14-f5bb-4578-a4ae-48d75eae5e82", + "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", + "8b7e764f-0227-410c-89b9-51b9a8ad8c88", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "44eacee6-a348-48cf-aeda-c9ddae958f8e" + ], + "stops": [], + "line_id": "671c05ae-c514-40d5-ab39-2a29b06275ff", + "segments": [ + 0, + 20, + 24, + 32, + 40, + 46, + 53, + 58, + 62, + 66, + 69, + 72, + 74, + 79, + 91, + 96, + 98, + 102, + 110, + 115, + 126, + 132, + 138 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 345, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.457365, + 45.450743 + ], + [ + -73.457311, + 45.45071 + ], + [ + -73.457055, + 45.450562 + ], + [ + -73.45697, + 45.450481 + ], + [ + -73.456931, + 45.450397 + ], + [ + -73.456841, + 45.450279 + ], + [ + -73.456733, + 45.450296 + ], + [ + -73.456625, + 45.450319 + ], + [ + -73.456525, + 45.450368 + ], + [ + -73.456438, + 45.450427 + ], + [ + -73.456357, + 45.45049 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456003, + 45.45033 + ], + [ + -73.455824, + 45.450179 + ], + [ + -73.455605, + 45.449994 + ], + [ + -73.455056, + 45.44954 + ], + [ + -73.454737, + 45.449301 + ], + [ + -73.454452, + 45.449114 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.454351, + 45.448928 + ], + [ + -73.454507, + 45.448806 + ], + [ + -73.454606, + 45.448707 + ], + [ + -73.454645, + 45.448652 + ], + [ + -73.454897, + 45.448293 + ], + [ + -73.455137, + 45.447929 + ], + [ + -73.455304, + 45.447709 + ], + [ + -73.455416, + 45.447619 + ], + [ + -73.455528, + 45.447551 + ], + [ + -73.455661, + 45.447479 + ], + [ + -73.455879, + 45.447391 + ], + [ + -73.455927, + 45.447371 + ], + [ + -73.456253, + 45.447264 + ], + [ + -73.456885, + 45.447052 + ], + [ + -73.457516, + 45.446841 + ], + [ + -73.45775, + 45.446763 + ], + [ + -73.458009, + 45.446676 + ], + [ + -73.458085, + 45.446651 + ], + [ + -73.458121, + 45.446639 + ], + [ + -73.45823, + 45.446598 + ], + [ + -73.458358, + 45.446536 + ], + [ + -73.458499, + 45.446437 + ], + [ + -73.458716, + 45.446252 + ], + [ + -73.458903, + 45.445978 + ], + [ + -73.459418, + 45.445195 + ], + [ + -73.459486, + 45.445092 + ], + [ + -73.460027, + 45.444237 + ], + [ + -73.4603, + 45.443829 + ], + [ + -73.460454, + 45.443598 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.461185, + 45.442464 + ], + [ + -73.461249, + 45.442366 + ], + [ + -73.461921, + 45.441345 + ], + [ + -73.46199, + 45.441264 + ], + [ + -73.462029, + 45.441226 + ], + [ + -73.462145, + 45.441115 + ], + [ + -73.462213, + 45.441057 + ], + [ + -73.462314, + 45.440989 + ], + [ + -73.462563, + 45.440836 + ], + [ + -73.463318, + 45.440459 + ], + [ + -73.463561, + 45.440337 + ], + [ + -73.464528, + 45.439856 + ], + [ + -73.464962, + 45.43969 + ], + [ + -73.465254, + 45.439631 + ], + [ + -73.46555, + 45.439605 + ], + [ + -73.465764, + 45.439609 + ], + [ + -73.465969, + 45.439632 + ], + [ + -73.46634, + 45.43972 + ], + [ + -73.466608, + 45.439785 + ], + [ + -73.467652, + 45.440123 + ], + [ + -73.468418, + 45.44037 + ], + [ + -73.47018, + 45.44093 + ], + [ + -73.470303, + 45.440969 + ], + [ + -73.47058, + 45.440549 + ], + [ + -73.471678, + 45.438891 + ], + [ + -73.47221, + 45.438091 + ], + [ + -73.472271, + 45.438 + ], + [ + -73.471707, + 45.437958 + ], + [ + -73.470911, + 45.437899 + ], + [ + -73.470756, + 45.437887 + ], + [ + -73.470561, + 45.437874 + ], + [ + -73.470109, + 45.437842 + ], + [ + -73.468967, + 45.437779 + ], + [ + -73.467953, + 45.437712 + ], + [ + -73.46781, + 45.437702 + ], + [ + -73.465864, + 45.437562 + ], + [ + -73.465515, + 45.437526 + ], + [ + -73.465335, + 45.4375 + ], + [ + -73.4653, + 45.437494 + ], + [ + -73.465091, + 45.437458 + ], + [ + -73.464723, + 45.437368 + ], + [ + -73.463269, + 45.436949 + ], + [ + -73.462465, + 45.436712 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.461443, + 45.436418 + ], + [ + -73.46028, + 45.436076 + ], + [ + -73.4602, + 45.436053 + ], + [ + -73.459868, + 45.435958 + ], + [ + -73.459599, + 45.435873 + ], + [ + -73.459087, + 45.435697 + ], + [ + -73.458339, + 45.435426 + ], + [ + -73.457584, + 45.435152 + ], + [ + -73.457423, + 45.435094 + ], + [ + -73.45674, + 45.434846 + ], + [ + -73.456351, + 45.434706 + ], + [ + -73.456096, + 45.434619 + ], + [ + -73.456028, + 45.434596 + ], + [ + -73.455955, + 45.434571 + ], + [ + -73.455549, + 45.434449 + ], + [ + -73.45503, + 45.434305 + ], + [ + -73.454123, + 45.434057 + ], + [ + -73.453902, + 45.434003 + ], + [ + -73.453689, + 45.433961 + ], + [ + -73.453651, + 45.433954 + ], + [ + -73.453629, + 45.433949 + ], + [ + -73.453345, + 45.433915 + ], + [ + -73.453328, + 45.433913 + ], + [ + -73.453186, + 45.433903 + ], + [ + -73.453072, + 45.433895 + ], + [ + -73.452708, + 45.433899 + ], + [ + -73.452574, + 45.433909 + ], + [ + -73.451603, + 45.433975 + ], + [ + -73.451404, + 45.433989 + ], + [ + -73.450056, + 45.43408 + ], + [ + -73.449804, + 45.434095 + ], + [ + -73.449067, + 45.434139 + ], + [ + -73.448848, + 45.434152 + ], + [ + -73.448578, + 45.434176 + ], + [ + -73.448472, + 45.434175 + ], + [ + -73.448255, + 45.434181 + ], + [ + -73.448109, + 45.43419 + ], + [ + -73.447833, + 45.434203 + ], + [ + -73.447405, + 45.434193 + ], + [ + -73.447515, + 45.434057 + ], + [ + -73.447812, + 45.43372 + ], + [ + -73.44808, + 45.433435 + ], + [ + -73.448286, + 45.433242 + ], + [ + -73.448467, + 45.433072 + ], + [ + -73.448834, + 45.432756 + ], + [ + -73.449139, + 45.432514 + ], + [ + -73.449431, + 45.432297 + ], + [ + -73.44953, + 45.432225 + ], + [ + -73.449956, + 45.431941 + ], + [ + -73.450305, + 45.431728 + ], + [ + -73.450787, + 45.431457 + ], + [ + -73.451268, + 45.431211 + ], + [ + -73.451712, + 45.431001 + ], + [ + -73.451767, + 45.430973 + ] + ] + }, + "id": 346, + "properties": { + "id": "e300776c-7854-4d4e-bd55-7300bc47519a", + "data": { + "gtfs": { + "shape_id": "644_2_R" + }, + "segments": [ + { + "distanceMeters": 178, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 398, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 329, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 364, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 353, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 630, + "travelTimeSeconds": 112 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5082, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2229.973461505094, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.65, + "travelTimeWithoutDwellTimesSeconds": 900, + "operatingTimeWithLayoverTimeSeconds": 1080, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 900, + "operatingSpeedWithLayoverMetersPerSecond": 4.71, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.65 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "44eacee6-a348-48cf-aeda-c9ddae958f8e", + "2c6638eb-437e-4a41-bb5d-d6093797361d", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "8b7e764f-0227-410c-89b9-51b9a8ad8c88", + "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", + "57126f14-f5bb-4578-a4ae-48d75eae5e82", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "9b31d865-da9f-4eb8-b8a9-3d488eb579df", + "b93691d0-438e-4eac-87a0-7c1ac45a7c18", + "bd0ab07f-3423-4348-a03c-133d6cccab2d", + "daacedd2-0b84-4f73-9f01-d9072ec32dce", + "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", + "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "dc444f91-de90-48b4-9750-8ab69f40baf5", + "75a6ca63-e257-4bc0-9a35-e9f67206fdfb", + "8162eb5c-436c-4cc2-b9dd-2d13a57dd8d8", + "95267540-c736-4584-b843-23c799e4aa83", + "d26ce5e1-6c58-4e66-9161-bd0bb569b92f", + "601fc633-4aed-4e9a-b678-52e4dedfe19d" + ], + "stops": [], + "line_id": "671c05ae-c514-40d5-ab39-2a29b06275ff", + "segments": [ + 0, + 13, + 17, + 29, + 34, + 43, + 46, + 49, + 53, + 66, + 70, + 74, + 77, + 82, + 86, + 91, + 99, + 104, + 111, + 120, + 124 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 346, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.507629, + 45.510747 + ], + [ + -73.507709, + 45.510639 + ], + [ + -73.508209, + 45.509991 + ], + [ + -73.508624, + 45.509429 + ], + [ + -73.508684, + 45.509348 + ], + [ + -73.509167, + 45.508704 + ], + [ + -73.509534, + 45.508211 + ], + [ + -73.509625, + 45.508088 + ], + [ + -73.510082, + 45.507498 + ], + [ + -73.510454, + 45.506997 + ], + [ + -73.510542, + 45.506877 + ], + [ + -73.510994, + 45.506265 + ], + [ + -73.511329, + 45.505817 + ], + [ + -73.511448, + 45.505658 + ], + [ + -73.511912, + 45.505051 + ], + [ + -73.512265, + 45.504569 + ], + [ + -73.512356, + 45.504443 + ], + [ + -73.512804, + 45.50384 + ], + [ + -73.512873, + 45.503688 + ], + [ + -73.513239, + 45.503205 + ], + [ + -73.513316, + 45.503103 + ], + [ + -73.513748, + 45.502535 + ], + [ + -73.513806, + 45.502427 + ], + [ + -73.513873, + 45.50226 + ], + [ + -73.513904, + 45.502188 + ], + [ + -73.514024, + 45.501904 + ], + [ + -73.514045, + 45.501797 + ], + [ + -73.513805, + 45.501793 + ], + [ + -73.5136, + 45.501784 + ], + [ + -73.513542, + 45.501784 + ], + [ + -73.513522, + 45.501784 + ], + [ + -73.51344, + 45.501784 + ], + [ + -73.513341, + 45.50179 + ], + [ + -73.513284, + 45.501793 + ], + [ + -73.513035, + 45.501807 + ], + [ + -73.512897, + 45.501829 + ], + [ + -73.5127, + 45.501847 + ], + [ + -73.512502, + 45.501865 + ], + [ + -73.512398, + 45.501874 + ], + [ + -73.512063, + 45.501735 + ], + [ + -73.511327, + 45.50142 + ], + [ + -73.50993, + 45.500781 + ], + [ + -73.509908, + 45.500772 + ], + [ + -73.509762, + 45.500713 + ], + [ + -73.509608, + 45.500651 + ], + [ + -73.508958, + 45.500376 + ], + [ + -73.508861, + 45.50034 + ], + [ + -73.507712, + 45.499859 + ], + [ + -73.50735, + 45.499701 + ], + [ + -73.507071, + 45.499582 + ], + [ + -73.506801, + 45.499467 + ], + [ + -73.506709, + 45.499427 + ], + [ + -73.506259, + 45.499211 + ], + [ + -73.506001, + 45.499076 + ], + [ + -73.505704, + 45.498928 + ], + [ + -73.505329, + 45.498757 + ], + [ + -73.505105, + 45.498595 + ], + [ + -73.504952, + 45.498489 + ], + [ + -73.504839, + 45.49841 + ], + [ + -73.504683, + 45.498293 + ], + [ + -73.504473, + 45.49814 + ], + [ + -73.504131, + 45.497897 + ], + [ + -73.503475, + 45.497438 + ], + [ + -73.503408, + 45.497389 + ], + [ + -73.50327, + 45.49729 + ], + [ + -73.50284, + 45.49698 + ], + [ + -73.502636, + 45.496834 + ], + [ + -73.502336, + 45.49662 + ], + [ + -73.502293, + 45.496588 + ], + [ + -73.501808, + 45.496251 + ], + [ + -73.501448, + 45.49599 + ], + [ + -73.501279, + 45.495868 + ], + [ + -73.501182, + 45.495805 + ], + [ + -73.501059, + 45.495724 + ], + [ + -73.50081, + 45.495567 + ], + [ + -73.500592, + 45.495409 + ], + [ + -73.500498, + 45.495335 + ], + [ + -73.500106, + 45.495026 + ], + [ + -73.500064, + 45.495 + ], + [ + -73.500025, + 45.494979 + ], + [ + -73.499778, + 45.494815 + ], + [ + -73.499763, + 45.494802 + ], + [ + -73.49959, + 45.494676 + ], + [ + -73.499359, + 45.494506 + ], + [ + -73.499315, + 45.494474 + ], + [ + -73.499159, + 45.494361 + ], + [ + -73.498924, + 45.49419 + ], + [ + -73.498797, + 45.494096 + ], + [ + -73.498616, + 45.49397 + ], + [ + -73.49848, + 45.493866 + ], + [ + -73.498241, + 45.493693 + ], + [ + -73.498238, + 45.493691 + ], + [ + -73.49804, + 45.493547 + ], + [ + -73.497995, + 45.493515 + ], + [ + -73.497927, + 45.49347 + ], + [ + -73.497866, + 45.493425 + ], + [ + -73.497771, + 45.493353 + ], + [ + -73.497557, + 45.493191 + ], + [ + -73.497339, + 45.493038 + ], + [ + -73.497128, + 45.492885 + ], + [ + -73.496772, + 45.492629 + ], + [ + -73.496467, + 45.492409 + ], + [ + -73.496416, + 45.492372 + ], + [ + -73.496321, + 45.492305 + ], + [ + -73.496235, + 45.492242 + ], + [ + -73.495851, + 45.491976 + ], + [ + -73.49562, + 45.491814 + ], + [ + -73.495442, + 45.491684 + ], + [ + -73.495204, + 45.491517 + ], + [ + -73.494917, + 45.491315 + ], + [ + -73.49433, + 45.490897 + ], + [ + -73.494242, + 45.490838 + ], + [ + -73.494219, + 45.490821 + ], + [ + -73.493838, + 45.49055 + ], + [ + -73.493701, + 45.490456 + ], + [ + -73.493573, + 45.490366 + ], + [ + -73.492976, + 45.489943 + ], + [ + -73.492778, + 45.489803 + ], + [ + -73.492465, + 45.489583 + ], + [ + -73.492419, + 45.48955 + ], + [ + -73.492261, + 45.489437 + ], + [ + -73.492218, + 45.489407 + ], + [ + -73.492027, + 45.489271 + ], + [ + -73.491721, + 45.489052 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.491557, + 45.488939 + ], + [ + -73.490801, + 45.488399 + ], + [ + -73.489411, + 45.487405 + ], + [ + -73.489378, + 45.48738 + ], + [ + -73.489048, + 45.487135 + ], + [ + -73.488568, + 45.486806 + ], + [ + -73.487831, + 45.486284 + ], + [ + -73.487161, + 45.485809 + ], + [ + -73.487051, + 45.485731 + ], + [ + -73.486783, + 45.485533 + ], + [ + -73.486446, + 45.485294 + ], + [ + -73.485807, + 45.484835 + ], + [ + -73.485416, + 45.484552 + ], + [ + -73.485024, + 45.484272 + ], + [ + -73.484263, + 45.483728 + ], + [ + -73.483637, + 45.483278 + ], + [ + -73.483483, + 45.483175 + ], + [ + -73.483337, + 45.483067 + ], + [ + -73.482999, + 45.482824 + ], + [ + -73.482644, + 45.48257 + ], + [ + -73.482188, + 45.482243 + ], + [ + -73.482091, + 45.482176 + ], + [ + -73.481995, + 45.482108 + ], + [ + -73.481822, + 45.481987 + ], + [ + -73.481721, + 45.481912 + ], + [ + -73.48159, + 45.481816 + ], + [ + -73.481567, + 45.481829 + ], + [ + -73.481265, + 45.482036 + ], + [ + -73.480765, + 45.482378 + ], + [ + -73.480475, + 45.482571 + ], + [ + -73.479992, + 45.48292 + ], + [ + -73.479989, + 45.482922 + ], + [ + -73.479836, + 45.48303 + ], + [ + -73.479534, + 45.483242 + ], + [ + -73.479322, + 45.483399 + ], + [ + -73.479252, + 45.48344 + ], + [ + -73.477739, + 45.484479 + ], + [ + -73.477668, + 45.484528 + ], + [ + -73.477571, + 45.484591 + ], + [ + -73.476994, + 45.484996 + ], + [ + -73.476286, + 45.485495 + ], + [ + -73.476102, + 45.485612 + ], + [ + -73.475956, + 45.48572 + ], + [ + -73.475613, + 45.485467 + ], + [ + -73.475481, + 45.485369 + ], + [ + -73.475271, + 45.485218 + ], + [ + -73.475135, + 45.485121 + ], + [ + -73.474818, + 45.484892 + ], + [ + -73.474642, + 45.484763 + ], + [ + -73.474566, + 45.484707 + ], + [ + -73.473747, + 45.484113 + ], + [ + -73.473055, + 45.483614 + ], + [ + -73.472948, + 45.483537 + ], + [ + -73.472033, + 45.482872 + ], + [ + -73.471834, + 45.482727 + ], + [ + -73.47134, + 45.482367 + ], + [ + -73.470904, + 45.482036 + ], + [ + -73.470805, + 45.481962 + ], + [ + -73.470742, + 45.481922 + ], + [ + -73.470609, + 45.481836 + ], + [ + -73.470239, + 45.481512 + ], + [ + -73.470149, + 45.481381 + ], + [ + -73.470101, + 45.481279 + ], + [ + -73.469844, + 45.480737 + ], + [ + -73.469791, + 45.480625 + ], + [ + -73.469913, + 45.480604 + ], + [ + -73.470068, + 45.480576 + ], + [ + -73.470287, + 45.480532 + ], + [ + -73.470383, + 45.480513 + ], + [ + -73.470657, + 45.480464 + ], + [ + -73.471292, + 45.480347 + ], + [ + -73.471409, + 45.480342 + ], + [ + -73.47151, + 45.480342 + ], + [ + -73.471568, + 45.480347 + ], + [ + -73.471671, + 45.48036 + ], + [ + -73.471804, + 45.480383 + ], + [ + -73.471904, + 45.480419 + ], + [ + -73.472029, + 45.480487 + ], + [ + -73.47207, + 45.480511 + ], + [ + -73.472135, + 45.48055 + ], + [ + -73.472485, + 45.480311 + ], + [ + -73.47284, + 45.480068 + ], + [ + -73.474157, + 45.479169 + ], + [ + -73.474346, + 45.479046 + ], + [ + -73.474461, + 45.478971 + ], + [ + -73.475372, + 45.478413 + ], + [ + -73.475478, + 45.478344 + ], + [ + -73.475599, + 45.478266 + ], + [ + -73.476014, + 45.477996 + ], + [ + -73.476119, + 45.477927 + ], + [ + -73.476929, + 45.478485 + ], + [ + -73.477462, + 45.478904 + ], + [ + -73.477559, + 45.478972 + ], + [ + -73.477667, + 45.479048 + ], + [ + -73.477713, + 45.479021 + ], + [ + -73.477757, + 45.479003 + ], + [ + -73.477866, + 45.478954 + ], + [ + -73.477979, + 45.478918 + ], + [ + -73.478075, + 45.478904 + ], + [ + -73.478146, + 45.478904 + ], + [ + -73.478298, + 45.478904 + ], + [ + -73.478426, + 45.478904 + ], + [ + -73.47892, + 45.478914 + ], + [ + -73.479078, + 45.478918 + ], + [ + -73.479175, + 45.478922 + ], + [ + -73.479295, + 45.478922 + ], + [ + -73.479623, + 45.478936 + ], + [ + -73.480089, + 45.478949 + ], + [ + -73.481631, + 45.478977 + ], + [ + -73.482205, + 45.478986 + ], + [ + -73.482352, + 45.478989 + ], + [ + -73.482631, + 45.478995 + ], + [ + -73.482756, + 45.478997 + ], + [ + -73.484917, + 45.479027 + ], + [ + -73.485227, + 45.479031 + ], + [ + -73.485584, + 45.479045 + ], + [ + -73.485771, + 45.479058 + ], + [ + -73.486116, + 45.479058 + ], + [ + -73.486149, + 45.479058 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486526, + 45.47904 + ], + [ + -73.486789, + 45.47904 + ], + [ + -73.487039, + 45.479049 + ], + [ + -73.491329, + 45.479132 + ], + [ + -73.491508, + 45.479136 + ], + [ + -73.491713, + 45.47914 + ], + [ + -73.491714, + 45.479248 + ], + [ + -73.491713, + 45.479479 + ], + [ + -73.491712, + 45.479783 + ], + [ + -73.49169, + 45.479945 + ], + [ + -73.491627, + 45.480148 + ], + [ + -73.491553, + 45.480274 + ], + [ + -73.491487, + 45.480377 + ], + [ + -73.49127, + 45.480553 + ], + [ + -73.491103, + 45.480665 + ], + [ + -73.491016, + 45.480715 + ], + [ + -73.49089, + 45.480751 + ], + [ + -73.490751, + 45.480796 + ], + [ + -73.490511, + 45.480858 + ], + [ + -73.489826, + 45.480989 + ], + [ + -73.489679, + 45.481016 + ], + [ + -73.489524, + 45.481046 + ], + [ + -73.489517, + 45.481047 + ], + [ + -73.489299, + 45.481083 + ], + [ + -73.488724, + 45.481186 + ], + [ + -73.488596, + 45.481209 + ], + [ + -73.488358, + 45.481254 + ], + [ + -73.488145, + 45.481295 + ], + [ + -73.48795, + 45.481331 + ], + [ + -73.487751, + 45.481349 + ], + [ + -73.487396, + 45.481353 + ], + [ + -73.486991, + 45.481335 + ], + [ + -73.486845, + 45.481313 + ], + [ + -73.486702, + 45.481259 + ], + [ + -73.486595, + 45.481214 + ], + [ + -73.486506, + 45.481151 + ], + [ + -73.486352, + 45.480984 + ], + [ + -73.48629, + 45.480791 + ], + [ + -73.486283, + 45.480482 + ], + [ + -73.486282, + 45.480458 + ], + [ + -73.486298, + 45.480129 + ], + [ + -73.486318, + 45.479855 + ], + [ + -73.486329, + 45.479263 + ], + [ + -73.486367, + 45.479175 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486149, + 45.479058 + ], + [ + -73.485771, + 45.479058 + ], + [ + -73.485678, + 45.479052 + ], + [ + -73.485584, + 45.479045 + ], + [ + -73.485227, + 45.479031 + ], + [ + -73.484917, + 45.479027 + ], + [ + -73.482777, + 45.478997 + ], + [ + -73.482756, + 45.478997 + ], + [ + -73.482631, + 45.478995 + ], + [ + -73.482205, + 45.478986 + ], + [ + -73.481631, + 45.478977 + ], + [ + -73.480089, + 45.478949 + ], + [ + -73.479623, + 45.478936 + ], + [ + -73.479295, + 45.478922 + ], + [ + -73.479256, + 45.478922 + ], + [ + -73.479175, + 45.478922 + ], + [ + -73.479078, + 45.478918 + ], + [ + -73.478426, + 45.478904 + ], + [ + -73.478115, + 45.478841 + ], + [ + -73.477983, + 45.47885 + ], + [ + -73.477828, + 45.478837 + ], + [ + -73.477715, + 45.478814 + ], + [ + -73.477616, + 45.478774 + ], + [ + -73.477564, + 45.478751 + ], + [ + -73.477508, + 45.478715 + ], + [ + -73.477033, + 45.478413 + ], + [ + -73.476647, + 45.478131 + ], + [ + -73.47654, + 45.478053 + ], + [ + -73.476251, + 45.477842 + ], + [ + -73.475153, + 45.477059 + ], + [ + -73.474544, + 45.476636 + ], + [ + -73.474345, + 45.476487 + ], + [ + -73.474276, + 45.476436 + ], + [ + -73.474156, + 45.476346 + ], + [ + -73.4733, + 45.475709 + ], + [ + -73.473152, + 45.475605 + ], + [ + -73.472484, + 45.475128 + ], + [ + -73.472409, + 45.475069 + ], + [ + -73.47218, + 45.47489 + ], + [ + -73.472074, + 45.474808 + ], + [ + -73.471729, + 45.474583 + ], + [ + -73.470359, + 45.473598 + ], + [ + -73.470064, + 45.473386 + ], + [ + -73.468607, + 45.472409 + ], + [ + -73.468277, + 45.472099 + ], + [ + -73.4682, + 45.472022 + ], + [ + -73.468135, + 45.47195 + ], + [ + -73.46809, + 45.471883 + ], + [ + -73.468053, + 45.47177 + ], + [ + -73.467979, + 45.471365 + ], + [ + -73.468005, + 45.471249 + ], + [ + -73.468022, + 45.471144 + ], + [ + -73.468064, + 45.470898 + ], + [ + -73.46809, + 45.470632 + ], + [ + -73.468112, + 45.470407 + ], + [ + -73.468119, + 45.470155 + ], + [ + -73.468115, + 45.470044 + ], + [ + -73.468111, + 45.469894 + ], + [ + -73.468108, + 45.469818 + ], + [ + -73.468107, + 45.469773 + ], + [ + -73.46805, + 45.4693 + ], + [ + -73.467949, + 45.468816 + ], + [ + -73.467932, + 45.468733 + ], + [ + -73.467793, + 45.468274 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.46758, + 45.467757 + ], + [ + -73.467357, + 45.467296 + ], + [ + -73.466914, + 45.466403 + ], + [ + -73.466752, + 45.466083 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466352, + 45.465288 + ], + [ + -73.466238, + 45.465062 + ], + [ + -73.466142, + 45.464853 + ], + [ + -73.466048, + 45.464638 + ], + [ + -73.46599, + 45.464498 + ], + [ + -73.465967, + 45.464441 + ], + [ + -73.465777, + 45.463945 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465663, + 45.463449 + ], + [ + -73.465646, + 45.463238 + ], + [ + -73.465636, + 45.463073 + ], + [ + -73.465461, + 45.461275 + ], + [ + -73.465447, + 45.461133 + ], + [ + -73.465251, + 45.459263 + ], + [ + -73.465215, + 45.458893 + ], + [ + -73.465199, + 45.458728 + ], + [ + -73.465132, + 45.458038 + ], + [ + -73.465113, + 45.457592 + ], + [ + -73.465124, + 45.457143 + ], + [ + -73.465143, + 45.45685 + ], + [ + -73.465153, + 45.456755 + ], + [ + -73.465199, + 45.456301 + ], + [ + -73.465244, + 45.456 + ], + [ + -73.465335, + 45.455572 + ], + [ + -73.465339, + 45.455554 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.46428, + 45.45465 + ], + [ + -73.463912, + 45.454506 + ], + [ + -73.463601, + 45.454377 + ], + [ + -73.463312, + 45.454258 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.461805, + 45.453576 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.459815, + 45.452691 + ], + [ + -73.459196, + 45.452403 + ], + [ + -73.45904, + 45.452331 + ], + [ + -73.458688, + 45.452137 + ], + [ + -73.458046, + 45.451791 + ], + [ + -73.457688, + 45.451583 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457598, + 45.451363 + ], + [ + -73.457627, + 45.45129 + ], + [ + -73.457661, + 45.451176 + ], + [ + -73.457648, + 45.45104 + ], + [ + -73.457607, + 45.450938 + ], + [ + -73.457498, + 45.450823 + ], + [ + -73.457365, + 45.450743 + ] + ] + }, + "id": 347, + "properties": { + "id": "34e43226-96e1-4498-88af-498503f54686", + "data": { + "gtfs": { + "shape_id": "650_1_A" + }, + "segments": [ + { + "distanceMeters": 166, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 100, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 66, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 104, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 26, + "travelTimeSeconds": 5 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 368, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 421, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 396, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 402, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 883, + "travelTimeSeconds": 158 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 615, + "travelTimeSeconds": 110 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 20 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 234, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13086, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7730.31604051811, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.59, + "travelTimeWithoutDwellTimesSeconds": 2340, + "operatingTimeWithLayoverTimeSeconds": 2574, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2340, + "operatingSpeedWithLayoverMetersPerSecond": 5.08, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.59 + }, + "mode": "bus", + "name": "École Antoine-Brossard", + "color": "#A32638", + "nodes": [ + "7009c13e-76ca-4283-afe5-33492dbd6d10", + "bb609a9b-192c-4f8e-9177-9dbd5b0d51a5", + "ed39b486-0ae1-40e4-a1bb-022292e07d90", + "36a7184c-7248-4c15-a0a7-68c04bd48cc7", + "9bf48d6d-7a0b-4fbe-9125-1eef756e334f", + "1232f389-204f-48ac-a95f-0f1b3e5706b2", + "23cc64ae-3ce4-46c2-8d0a-9082f50074d0", + "a230c1b0-ee13-40c1-8d3f-12ae20006cc6", + "46687bb1-1189-4edc-bbd4-c90db18d4ff5", + "46687bb1-1189-4edc-bbd4-c90db18d4ff5", + "df5b9592-81e3-4b2c-8a30-7f3a9144671b", + "d24bea6e-da8d-4183-8a5f-0e99be199484", + "6557d1fe-6975-49e2-871c-ab07d42ea35b", + "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", + "1cea6199-481e-43b0-8d4a-8c7593ff485f", + "467e03f3-2556-4d22-ae48-618a76e6b0b4", + "ea9801c9-a110-4900-bcae-f1b3a40050e8", + "0b6032e7-414a-429f-9df2-796599b947c2", + "88d8365e-2528-4422-a483-bb2efd9de617", + "fa220212-b6b2-4456-934f-7248f9884444", + "196681e4-c9e5-4a79-a3b1-ce225227e0aa", + "54bbe390-ff6d-41d9-bd4b-1e4843d66512", + "aa413165-9699-49b6-9dea-fa35bda8f373", + "0a623471-271f-47f5-9a85-7feece2a3285", + "dc5fe0eb-b8cc-4186-82d3-6787360ae612", + "a3997372-5a39-4bfb-8751-2c107b865fce", + "2d362ed7-6d89-4629-988c-787207ccdc69", + "3c04c568-5ef2-4b47-8d34-b0d175358d60", + "c229b499-645e-4877-8f57-0fc6de2a8d53", + "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", + "a4f163e1-b90e-4fc3-82f3-f03b3181860d", + "c2e1b4a6-db9f-4050-848a-68486b390a21", + "96e97125-39ff-47a9-b41d-043c4ca5c57e", + "784b0f22-55ff-44d1-a754-ddad81fb81cd", + "c04702f7-b2cf-440e-a6da-0a84aefc3963", + "f32e29fd-d271-4ae6-8083-6d24349dccdf", + "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", + "528dcb9e-5a83-46d3-8e03-42692ca57a5a", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", + "b4a272ff-ad07-49f4-b3bf-37e38018a4d0", + "a9e9d254-0411-40ff-8540-2c41b97aa285", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "528dcb9e-5a83-46d3-8e03-42692ca57a5a", + "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", + "fe84c986-2907-4842-bde4-72fbe08a0576", + "d73e4ff6-4502-4376-9cf1-5410d307a82f", + "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", + "85f19be2-1f67-4673-b3b3-52d06ed31ae3", + "51e1600d-418e-4477-9b26-9e5507d72a03", + "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "74887516-47d5-4269-9513-84672d18e287", + "1e3a74d9-9d8a-467f-a82e-3dafee501e32", + "2946050b-73ca-45c7-be10-f80ba5b43ab5", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "ab493a3c-1217-4122-93b5-217f7741b2ea", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "44eacee6-a348-48cf-aeda-c9ddae958f8e" + ], + "stops": [], + "line_id": "5e84d4cc-fcb7-4c39-bd5f-84a197ded9a7", + "segments": [ + 0, + 3, + 6, + 9, + 12, + 15, + 19, + 24, + 32, + 37, + 42, + 49, + 57, + 66, + 70, + 76, + 90, + 101, + 112, + 120, + 122, + 128, + 132, + 138, + 149, + 155, + 161, + 168, + 173, + 176, + 181, + 188, + 203, + 208, + 213, + 217, + 227, + 235, + 242, + 250, + 270, + 284, + 289, + 298, + 306, + 318, + 325, + 329, + 333, + 345, + 353, + 375, + 377, + 394, + 397, + 400, + 404 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 347, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.457365, + 45.450743 + ], + [ + -73.457311, + 45.45071 + ], + [ + -73.457055, + 45.450562 + ], + [ + -73.45697, + 45.450481 + ], + [ + -73.456931, + 45.450397 + ], + [ + -73.456841, + 45.450279 + ], + [ + -73.456733, + 45.450296 + ], + [ + -73.456625, + 45.450319 + ], + [ + -73.456525, + 45.450368 + ], + [ + -73.456438, + 45.450427 + ], + [ + -73.456357, + 45.45049 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456282, + 45.450641 + ], + [ + -73.456274, + 45.450721 + ], + [ + -73.456292, + 45.450794 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.45714, + 45.451439 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457924, + 45.451894 + ], + [ + -73.458487, + 45.4522 + ], + [ + -73.458729, + 45.45233 + ], + [ + -73.458941, + 45.452443 + ], + [ + -73.459713, + 45.452799 + ], + [ + -73.46123, + 45.453471 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.462917, + 45.454222 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463822, + 45.454609 + ], + [ + -73.464888, + 45.45506 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465093, + 45.455349 + ], + [ + -73.465048, + 45.455509 + ], + [ + -73.465041, + 45.455536 + ], + [ + -73.464975, + 45.455829 + ], + [ + -73.464919, + 45.45613 + ], + [ + -73.464878, + 45.456427 + ], + [ + -73.464848, + 45.456873 + ], + [ + -73.464844, + 45.457169 + ], + [ + -73.464871, + 45.457574 + ], + [ + -73.464981, + 45.459101 + ], + [ + -73.464994, + 45.459278 + ], + [ + -73.465215, + 45.461562 + ], + [ + -73.465247, + 45.461893 + ], + [ + -73.465328, + 45.462497 + ], + [ + -73.465435, + 45.463211 + ], + [ + -73.465484, + 45.463543 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467476, + 45.467991 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467548, + 45.468225 + ], + [ + -73.467698, + 45.468792 + ], + [ + -73.467776, + 45.469183 + ], + [ + -73.46782, + 45.469453 + ], + [ + -73.467839, + 45.469679 + ], + [ + -73.467865, + 45.469989 + ], + [ + -73.467864, + 45.470057 + ], + [ + -73.467862, + 45.470168 + ], + [ + -73.46786, + 45.470362 + ], + [ + -73.467821, + 45.470781 + ], + [ + -73.467786, + 45.471019 + ], + [ + -73.467768, + 45.4711 + ], + [ + -73.467742, + 45.471226 + ], + [ + -73.467655, + 45.471563 + ], + [ + -73.467617, + 45.471689 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.468499, + 45.472486 + ], + [ + -73.469236, + 45.473 + ], + [ + -73.469633, + 45.473276 + ], + [ + -73.469926, + 45.473481 + ], + [ + -73.471608, + 45.474678 + ], + [ + -73.471773, + 45.4748 + ], + [ + -73.471919, + 45.474907 + ], + [ + -73.472018, + 45.474979 + ], + [ + -73.47234, + 45.475227 + ], + [ + -73.472601, + 45.475413 + ], + [ + -73.473157, + 45.475808 + ], + [ + -73.473415, + 45.476001 + ], + [ + -73.473816, + 45.476288 + ], + [ + -73.475018, + 45.477149 + ], + [ + -73.475694, + 45.477627 + ], + [ + -73.476119, + 45.477927 + ], + [ + -73.476929, + 45.478485 + ], + [ + -73.477234, + 45.478725 + ], + [ + -73.477462, + 45.478904 + ], + [ + -73.477542, + 45.47896 + ], + [ + -73.477667, + 45.479048 + ], + [ + -73.477713, + 45.479021 + ], + [ + -73.477757, + 45.479003 + ], + [ + -73.477866, + 45.478954 + ], + [ + -73.477979, + 45.478918 + ], + [ + -73.478075, + 45.478904 + ], + [ + -73.478146, + 45.478904 + ], + [ + -73.478298, + 45.478904 + ], + [ + -73.478426, + 45.478904 + ], + [ + -73.478895, + 45.478914 + ], + [ + -73.479078, + 45.478918 + ], + [ + -73.479175, + 45.478922 + ], + [ + -73.479295, + 45.478922 + ], + [ + -73.479623, + 45.478936 + ], + [ + -73.480089, + 45.478949 + ], + [ + -73.481631, + 45.478977 + ], + [ + -73.482205, + 45.478986 + ], + [ + -73.482327, + 45.478988 + ], + [ + -73.482631, + 45.478995 + ], + [ + -73.482756, + 45.478997 + ], + [ + -73.484917, + 45.479027 + ], + [ + -73.485227, + 45.479031 + ], + [ + -73.485584, + 45.479045 + ], + [ + -73.485771, + 45.479058 + ], + [ + -73.486092, + 45.479058 + ], + [ + -73.486149, + 45.479058 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486526, + 45.47904 + ], + [ + -73.486789, + 45.47904 + ], + [ + -73.487039, + 45.479049 + ], + [ + -73.491329, + 45.479132 + ], + [ + -73.49147, + 45.479135 + ], + [ + -73.491616, + 45.479138 + ], + [ + -73.491713, + 45.47914 + ], + [ + -73.491714, + 45.479248 + ], + [ + -73.491712, + 45.479783 + ], + [ + -73.49169, + 45.479945 + ], + [ + -73.491627, + 45.480148 + ], + [ + -73.491553, + 45.480274 + ], + [ + -73.491487, + 45.480377 + ], + [ + -73.49127, + 45.480553 + ], + [ + -73.491103, + 45.480665 + ], + [ + -73.491016, + 45.480715 + ], + [ + -73.49089, + 45.480751 + ], + [ + -73.490751, + 45.480796 + ], + [ + -73.490511, + 45.480858 + ], + [ + -73.489826, + 45.480989 + ], + [ + -73.489679, + 45.481016 + ], + [ + -73.489517, + 45.481047 + ], + [ + -73.489399, + 45.481067 + ], + [ + -73.489299, + 45.481083 + ], + [ + -73.488747, + 45.481182 + ], + [ + -73.488596, + 45.481209 + ], + [ + -73.488358, + 45.481254 + ], + [ + -73.488145, + 45.481295 + ], + [ + -73.48795, + 45.481331 + ], + [ + -73.487751, + 45.481349 + ], + [ + -73.487396, + 45.481353 + ], + [ + -73.486991, + 45.481335 + ], + [ + -73.486845, + 45.481313 + ], + [ + -73.486702, + 45.481259 + ], + [ + -73.486595, + 45.481214 + ], + [ + -73.486506, + 45.481151 + ], + [ + -73.486352, + 45.480984 + ], + [ + -73.48629, + 45.480791 + ], + [ + -73.486283, + 45.480499 + ], + [ + -73.486282, + 45.480458 + ], + [ + -73.486298, + 45.480129 + ], + [ + -73.486318, + 45.479855 + ], + [ + -73.486329, + 45.479263 + ], + [ + -73.48636, + 45.479191 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486149, + 45.479058 + ], + [ + -73.485826, + 45.479058 + ], + [ + -73.485771, + 45.479058 + ], + [ + -73.485584, + 45.479045 + ], + [ + -73.485227, + 45.479031 + ], + [ + -73.484917, + 45.479027 + ], + [ + -73.482801, + 45.478997 + ], + [ + -73.482756, + 45.478997 + ], + [ + -73.482631, + 45.478995 + ], + [ + -73.482205, + 45.478986 + ], + [ + -73.481631, + 45.478977 + ], + [ + -73.480089, + 45.478949 + ], + [ + -73.479623, + 45.478936 + ], + [ + -73.479295, + 45.478922 + ], + [ + -73.479292, + 45.478922 + ], + [ + -73.479175, + 45.478922 + ], + [ + -73.479078, + 45.478918 + ], + [ + -73.478426, + 45.478904 + ], + [ + -73.478115, + 45.478841 + ], + [ + -73.477983, + 45.47885 + ], + [ + -73.477828, + 45.478837 + ], + [ + -73.477715, + 45.478814 + ], + [ + -73.477616, + 45.478774 + ], + [ + -73.477564, + 45.478751 + ], + [ + -73.477508, + 45.478715 + ], + [ + -73.477033, + 45.478413 + ], + [ + -73.476663, + 45.478143 + ], + [ + -73.47654, + 45.478053 + ], + [ + -73.476251, + 45.477842 + ], + [ + -73.476119, + 45.477927 + ], + [ + -73.475937, + 45.478046 + ], + [ + -73.475478, + 45.478344 + ], + [ + -73.475372, + 45.478413 + ], + [ + -73.474532, + 45.478927 + ], + [ + -73.474461, + 45.478971 + ], + [ + -73.474157, + 45.479169 + ], + [ + -73.47284, + 45.480068 + ], + [ + -73.472485, + 45.480311 + ], + [ + -73.472246, + 45.480474 + ], + [ + -73.472135, + 45.48055 + ], + [ + -73.472029, + 45.480487 + ], + [ + -73.471904, + 45.480419 + ], + [ + -73.471804, + 45.480383 + ], + [ + -73.471671, + 45.48036 + ], + [ + -73.471568, + 45.480347 + ], + [ + -73.47151, + 45.480342 + ], + [ + -73.471409, + 45.480342 + ], + [ + -73.471292, + 45.480347 + ], + [ + -73.470657, + 45.480464 + ], + [ + -73.470383, + 45.480513 + ], + [ + -73.470287, + 45.480532 + ], + [ + -73.470068, + 45.480576 + ], + [ + -73.469898, + 45.480606 + ], + [ + -73.469791, + 45.480625 + ], + [ + -73.46985, + 45.48075 + ], + [ + -73.470101, + 45.481279 + ], + [ + -73.470149, + 45.481381 + ], + [ + -73.470239, + 45.481512 + ], + [ + -73.470516, + 45.481755 + ], + [ + -73.470609, + 45.481836 + ], + [ + -73.470742, + 45.481922 + ], + [ + -73.470805, + 45.481962 + ], + [ + -73.47134, + 45.482367 + ], + [ + -73.471834, + 45.482727 + ], + [ + -73.472033, + 45.482872 + ], + [ + -73.472844, + 45.483462 + ], + [ + -73.472948, + 45.483537 + ], + [ + -73.473747, + 45.484113 + ], + [ + -73.474476, + 45.484642 + ], + [ + -73.474566, + 45.484707 + ], + [ + -73.474818, + 45.484892 + ], + [ + -73.475135, + 45.485121 + ], + [ + -73.475481, + 45.485369 + ], + [ + -73.475661, + 45.485501 + ], + [ + -73.475956, + 45.48572 + ], + [ + -73.476102, + 45.485612 + ], + [ + -73.476109, + 45.485608 + ], + [ + -73.476286, + 45.485495 + ], + [ + -73.476994, + 45.484996 + ], + [ + -73.477494, + 45.484645 + ], + [ + -73.477571, + 45.484591 + ], + [ + -73.477668, + 45.484528 + ], + [ + -73.479252, + 45.48344 + ], + [ + -73.479322, + 45.483399 + ], + [ + -73.479534, + 45.483242 + ], + [ + -73.47976, + 45.483084 + ], + [ + -73.479836, + 45.48303 + ], + [ + -73.479989, + 45.482922 + ], + [ + -73.480475, + 45.482571 + ], + [ + -73.480765, + 45.482378 + ], + [ + -73.481567, + 45.481829 + ], + [ + -73.48159, + 45.481816 + ], + [ + -73.481822, + 45.481987 + ], + [ + -73.481851, + 45.482007 + ], + [ + -73.481995, + 45.482108 + ], + [ + -73.482091, + 45.482176 + ], + [ + -73.482188, + 45.482243 + ], + [ + -73.482644, + 45.48257 + ], + [ + -73.482999, + 45.482824 + ], + [ + -73.483337, + 45.483067 + ], + [ + -73.483483, + 45.483175 + ], + [ + -73.483637, + 45.483278 + ], + [ + -73.484263, + 45.483728 + ], + [ + -73.484784, + 45.484101 + ], + [ + -73.485416, + 45.484552 + ], + [ + -73.485807, + 45.484835 + ], + [ + -73.486446, + 45.485294 + ], + [ + -73.486783, + 45.485533 + ], + [ + -73.486863, + 45.485591 + ], + [ + -73.487051, + 45.485731 + ], + [ + -73.487831, + 45.486284 + ], + [ + -73.488568, + 45.486806 + ], + [ + -73.488965, + 45.487078 + ], + [ + -73.489048, + 45.487135 + ], + [ + -73.489411, + 45.487405 + ], + [ + -73.490801, + 45.488399 + ], + [ + -73.491471, + 45.488878 + ], + [ + -73.491557, + 45.488939 + ], + [ + -73.491637, + 45.488998 + ], + [ + -73.491721, + 45.489052 + ], + [ + -73.492218, + 45.489407 + ], + [ + -73.492419, + 45.48955 + ], + [ + -73.492465, + 45.489583 + ], + [ + -73.492778, + 45.489803 + ], + [ + -73.492976, + 45.489943 + ], + [ + -73.493573, + 45.490366 + ], + [ + -73.493701, + 45.490456 + ], + [ + -73.493838, + 45.49055 + ], + [ + -73.494242, + 45.490838 + ], + [ + -73.494259, + 45.490849 + ], + [ + -73.49433, + 45.490897 + ], + [ + -73.494917, + 45.491315 + ], + [ + -73.495204, + 45.491517 + ], + [ + -73.495442, + 45.491684 + ], + [ + -73.49562, + 45.491814 + ], + [ + -73.495851, + 45.491976 + ], + [ + -73.496235, + 45.492242 + ], + [ + -73.496321, + 45.492305 + ], + [ + -73.496372, + 45.492341 + ], + [ + -73.496416, + 45.492372 + ], + [ + -73.496772, + 45.492629 + ], + [ + -73.497128, + 45.492885 + ], + [ + -73.497339, + 45.493038 + ], + [ + -73.497557, + 45.493191 + ], + [ + -73.497633, + 45.493248 + ], + [ + -73.497771, + 45.493353 + ], + [ + -73.497866, + 45.493425 + ], + [ + -73.497927, + 45.49347 + ], + [ + -73.497995, + 45.493515 + ], + [ + -73.49804, + 45.493547 + ], + [ + -73.498238, + 45.493691 + ], + [ + -73.49848, + 45.493866 + ], + [ + -73.498616, + 45.49397 + ], + [ + -73.498797, + 45.494096 + ], + [ + -73.498924, + 45.49419 + ], + [ + -73.499159, + 45.494361 + ], + [ + -73.499315, + 45.494474 + ], + [ + -73.499359, + 45.494506 + ], + [ + -73.49959, + 45.494676 + ], + [ + -73.499763, + 45.494802 + ], + [ + -73.499778, + 45.494815 + ], + [ + -73.499817, + 45.494841 + ], + [ + -73.500025, + 45.494979 + ], + [ + -73.500064, + 45.495 + ], + [ + -73.500106, + 45.495026 + ], + [ + -73.500592, + 45.495409 + ], + [ + -73.50081, + 45.495567 + ], + [ + -73.501059, + 45.495724 + ], + [ + -73.501182, + 45.495805 + ], + [ + -73.501279, + 45.495868 + ], + [ + -73.501291, + 45.495877 + ], + [ + -73.501808, + 45.496251 + ], + [ + -73.502254, + 45.496561 + ], + [ + -73.502293, + 45.496588 + ], + [ + -73.502336, + 45.49662 + ], + [ + -73.50284, + 45.49698 + ], + [ + -73.50327, + 45.49729 + ], + [ + -73.503408, + 45.497389 + ], + [ + -73.503475, + 45.497438 + ], + [ + -73.504131, + 45.497897 + ], + [ + -73.504473, + 45.49814 + ], + [ + -73.504683, + 45.498293 + ], + [ + -73.504758, + 45.49835 + ], + [ + -73.504839, + 45.49841 + ], + [ + -73.505105, + 45.498595 + ], + [ + -73.505329, + 45.498757 + ], + [ + -73.505704, + 45.498928 + ], + [ + -73.506001, + 45.499076 + ], + [ + -73.506259, + 45.499211 + ], + [ + -73.506709, + 45.499427 + ], + [ + -73.506801, + 45.499467 + ], + [ + -73.50725, + 45.499659 + ], + [ + -73.50735, + 45.499701 + ], + [ + -73.507712, + 45.499859 + ], + [ + -73.508861, + 45.50034 + ], + [ + -73.508958, + 45.500376 + ], + [ + -73.509608, + 45.500651 + ], + [ + -73.509762, + 45.500713 + ], + [ + -73.50993, + 45.500781 + ], + [ + -73.510439, + 45.501014 + ], + [ + -73.511327, + 45.50142 + ], + [ + -73.512063, + 45.501735 + ], + [ + -73.512398, + 45.501874 + ], + [ + -73.5127, + 45.501847 + ], + [ + -73.512897, + 45.501829 + ], + [ + -73.513035, + 45.501807 + ], + [ + -73.513284, + 45.501793 + ], + [ + -73.51344, + 45.501784 + ], + [ + -73.513522, + 45.501784 + ], + [ + -73.5136, + 45.501784 + ], + [ + -73.513805, + 45.501793 + ], + [ + -73.513814, + 45.501793 + ], + [ + -73.514045, + 45.501797 + ], + [ + -73.514024, + 45.501904 + ], + [ + -73.513895, + 45.502209 + ], + [ + -73.513873, + 45.50226 + ], + [ + -73.513806, + 45.502427 + ], + [ + -73.513748, + 45.502535 + ], + [ + -73.513316, + 45.503103 + ], + [ + -73.513059, + 45.503443 + ], + [ + -73.512873, + 45.503688 + ], + [ + -73.512716, + 45.503804 + ], + [ + -73.512314, + 45.504354 + ], + [ + -73.512272, + 45.504412 + ], + [ + -73.511819, + 45.505019 + ], + [ + -73.511434, + 45.505532 + ], + [ + -73.511362, + 45.505627 + ], + [ + -73.510901, + 45.506234 + ], + [ + -73.510511, + 45.506765 + ], + [ + -73.510451, + 45.506846 + ], + [ + -73.509985, + 45.507458 + ], + [ + -73.509594, + 45.50797 + ], + [ + -73.509531, + 45.508052 + ], + [ + -73.509072, + 45.508673 + ], + [ + -73.508663, + 45.50921 + ], + [ + -73.508585, + 45.509312 + ], + [ + -73.508101, + 45.509951 + ], + [ + -73.507675, + 45.510521 + ] + ] + }, + "id": 348, + "properties": { + "id": "2107bcb9-3c8a-435c-a8c1-076ff1f30470", + "data": { + "gtfs": { + "shape_id": "650_2_R" + }, + "segments": [ + { + "distanceMeters": 248, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 463, + "travelTimeSeconds": 98 + }, + { + "distanceMeters": 1205, + "travelTimeSeconds": 256 + }, + { + "distanceMeters": 468, + "travelTimeSeconds": 100 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 420, + "travelTimeSeconds": 89 + }, + { + "distanceMeters": 397, + "travelTimeSeconds": 85 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 557, + "travelTimeSeconds": 118 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 107, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 36 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 282, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 13262, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 7730.31604051811, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 4.7, + "travelTimeWithoutDwellTimesSeconds": 2820, + "operatingTimeWithLayoverTimeSeconds": 3102, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2820, + "operatingSpeedWithLayoverMetersPerSecond": 4.28, + "averageSpeedWithoutDwellTimesMetersPerSecond": 4.7 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "44eacee6-a348-48cf-aeda-c9ddae958f8e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", + "2ac07b96-98be-4710-a749-3162a661fcb5", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "981ebecb-3dc2-4439-8648-8052a51df7ec", + "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", + "acb7092d-3b2a-4d79-a4e3-09e7e52af475", + "1345672a-9148-439f-9a52-b8a216612929", + "ece1943b-159a-42fa-a0c1-16e06714e25e", + "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", + "d73e4ff6-4502-4376-9cf1-5410d307a82f", + "c04702f7-b2cf-440e-a6da-0a84aefc3963", + "f32e29fd-d271-4ae6-8083-6d24349dccdf", + "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", + "528dcb9e-5a83-46d3-8e03-42692ca57a5a", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", + "b4a272ff-ad07-49f4-b3bf-37e38018a4d0", + "a9e9d254-0411-40ff-8540-2c41b97aa285", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "528dcb9e-5a83-46d3-8e03-42692ca57a5a", + "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", + "fe84c986-2907-4842-bde4-72fbe08a0576", + "784b0f22-55ff-44d1-a754-ddad81fb81cd", + "96e97125-39ff-47a9-b41d-043c4ca5c57e", + "c2e1b4a6-db9f-4050-848a-68486b390a21", + "a4f163e1-b90e-4fc3-82f3-f03b3181860d", + "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", + "c229b499-645e-4877-8f57-0fc6de2a8d53", + "3c04c568-5ef2-4b47-8d34-b0d175358d60", + "2d362ed7-6d89-4629-988c-787207ccdc69", + "a3997372-5a39-4bfb-8751-2c107b865fce", + "0a623471-271f-47f5-9a85-7feece2a3285", + "aa413165-9699-49b6-9dea-fa35bda8f373", + "54bbe390-ff6d-41d9-bd4b-1e4843d66512", + "7faed35b-7709-443d-b0ec-5f09ab018202", + "88d8365e-2528-4422-a483-bb2efd9de617", + "0b6032e7-414a-429f-9df2-796599b947c2", + "1cedf968-65c8-4c0f-b92c-c06da7b8fe69", + "16f75d06-f538-4735-a99f-9bc7eaa6eaab", + "1cea6199-481e-43b0-8d4a-8c7593ff485f", + "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", + "6557d1fe-6975-49e2-871c-ab07d42ea35b", + "0ac44bed-6f37-406e-8654-f8d5f36c840e", + "443288e2-2ae9-4c97-a015-0e176d8f71b2", + "a230c1b0-ee13-40c1-8d3f-12ae20006cc6", + "1232f389-204f-48ac-a95f-0f1b3e5706b2", + "9bf48d6d-7a0b-4fbe-9125-1eef756e334f", + "36a7184c-7248-4c15-a0a7-68c04bd48cc7", + "ed39b486-0ae1-40e4-a1bb-022292e07d90", + "bb609a9b-192c-4f8e-9177-9dbd5b0d51a5", + "7009c13e-76ca-4283-afe5-33492dbd6d10" + ], + "stops": [], + "line_id": "5e84d4cc-fcb7-4c39-bd5f-84a197ded9a7", + "segments": [ + 0, + 16, + 21, + 24, + 26, + 29, + 40, + 71, + 86, + 89, + 93, + 96, + 98, + 103, + 113, + 121, + 128, + 136, + 156, + 170, + 175, + 184, + 192, + 204, + 211, + 216, + 230, + 236, + 243, + 246, + 251, + 257, + 263, + 281, + 286, + 290, + 294, + 307, + 316, + 322, + 339, + 348, + 350, + 360, + 369, + 377, + 392, + 400, + 403, + 406, + 409, + 412 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 348, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.475383, + 45.468739 + ], + [ + -73.475537, + 45.468744 + ], + [ + -73.477761, + 45.468838 + ], + [ + -73.477791, + 45.468839 + ], + [ + -73.478795, + 45.46888 + ], + [ + -73.479733, + 45.468916 + ], + [ + -73.480587, + 45.468948 + ], + [ + -73.480705, + 45.468952 + ], + [ + -73.481592, + 45.468898 + ], + [ + -73.482517, + 45.468777 + ], + [ + -73.48391, + 45.468794 + ], + [ + -73.484035, + 45.468795 + ], + [ + -73.484852, + 45.468827 + ], + [ + -73.484983, + 45.468836 + ], + [ + -73.485068, + 45.468858 + ], + [ + -73.485183, + 45.468899 + ], + [ + -73.485272, + 45.468957 + ], + [ + -73.485492, + 45.469215 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.485925, + 45.469758 + ], + [ + -73.485957, + 45.470015 + ], + [ + -73.485933, + 45.470276 + ], + [ + -73.485863, + 45.471334 + ], + [ + -73.485859, + 45.471396 + ], + [ + -73.485922, + 45.47159 + ], + [ + -73.486077, + 45.471855 + ], + [ + -73.486282, + 45.472161 + ], + [ + -73.486545, + 45.47257 + ], + [ + -73.486646, + 45.47271 + ], + [ + -73.486715, + 45.472804 + ], + [ + -73.48607, + 45.47302 + ], + [ + -73.485914, + 45.473065 + ], + [ + -73.485421, + 45.473196 + ], + [ + -73.485194, + 45.47325 + ], + [ + -73.484873, + 45.473304 + ], + [ + -73.484747, + 45.473331 + ], + [ + -73.484539, + 45.473353 + ], + [ + -73.484309, + 45.47338 + ], + [ + -73.484047, + 45.473403 + ], + [ + -73.483829, + 45.473413 + ], + [ + -73.483761, + 45.473416 + ], + [ + -73.483613, + 45.473425 + ], + [ + -73.48263, + 45.473402 + ], + [ + -73.479095, + 45.47329 + ], + [ + -73.478915, + 45.473285 + ], + [ + -73.476016, + 45.473194 + ], + [ + -73.47556, + 45.473217 + ], + [ + -73.475367, + 45.473239 + ], + [ + -73.475163, + 45.47327 + ], + [ + -73.474757, + 45.473357 + ], + [ + -73.474613, + 45.473387 + ], + [ + -73.474531, + 45.473224 + ], + [ + -73.474431, + 45.473027 + ], + [ + -73.474274, + 45.472609 + ], + [ + -73.474213, + 45.472397 + ], + [ + -73.474173, + 45.472208 + ], + [ + -73.474165, + 45.472163 + ], + [ + -73.474141, + 45.472028 + ], + [ + -73.474136, + 45.472001 + ], + [ + -73.47411, + 45.47183 + ], + [ + -73.474121, + 45.471228 + ], + [ + -73.474166, + 45.470967 + ], + [ + -73.474399, + 45.469698 + ], + [ + -73.474423, + 45.469563 + ], + [ + -73.474454, + 45.469396 + ], + [ + -73.474489, + 45.469055 + ], + [ + -73.474519, + 45.468803 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474544, + 45.468492 + ], + [ + -73.474545, + 45.468488 + ], + [ + -73.474528, + 45.468236 + ], + [ + -73.474508, + 45.467936 + ], + [ + -73.474508, + 45.467294 + ], + [ + -73.474542, + 45.4665 + ], + [ + -73.474546, + 45.466404 + ], + [ + -73.474554, + 45.466199 + ], + [ + -73.474621, + 45.465194 + ], + [ + -73.474664, + 45.464506 + ], + [ + -73.474669, + 45.464397 + ], + [ + -73.474734, + 45.464067 + ], + [ + -73.474884, + 45.463697 + ], + [ + -73.475002, + 45.463492 + ], + [ + -73.47522, + 45.463212 + ], + [ + -73.475408, + 45.463039 + ], + [ + -73.47556, + 45.462909 + ], + [ + -73.475821, + 45.462711 + ], + [ + -73.476105, + 45.462495 + ], + [ + -73.476442, + 45.462257 + ], + [ + -73.476557, + 45.462176 + ], + [ + -73.477249, + 45.461685 + ], + [ + -73.478211, + 45.460958 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.47888, + 45.460399 + ], + [ + -73.479008, + 45.460264 + ], + [ + -73.479302, + 45.459904 + ], + [ + -73.479398, + 45.459769 + ], + [ + -73.479488, + 45.459616 + ], + [ + -73.479616, + 45.459382 + ], + [ + -73.479641, + 45.459328 + ], + [ + -73.479699, + 45.459202 + ], + [ + -73.47976, + 45.459027 + ], + [ + -73.479776, + 45.458968 + ], + [ + -73.479808, + 45.458865 + ], + [ + -73.479852, + 45.458707 + ], + [ + -73.479891, + 45.458478 + ], + [ + -73.479913, + 45.458325 + ], + [ + -73.479923, + 45.458145 + ], + [ + -73.479926, + 45.458073 + ], + [ + -73.479893, + 45.457659 + ], + [ + -73.479821, + 45.456908 + ], + [ + -73.479803, + 45.456723 + ], + [ + -73.479792, + 45.456611 + ], + [ + -73.479622, + 45.456606 + ], + [ + -73.479272, + 45.456594 + ], + [ + -73.476072, + 45.456487 + ], + [ + -73.475848, + 45.456479 + ], + [ + -73.474778, + 45.456443 + ], + [ + -73.473716, + 45.456411 + ], + [ + -73.47264, + 45.456375 + ], + [ + -73.471572, + 45.456339 + ], + [ + -73.47073, + 45.456312 + ], + [ + -73.47047, + 45.456303 + ], + [ + -73.469686, + 45.456262 + ], + [ + -73.46943, + 45.456244 + ], + [ + -73.468978, + 45.456199 + ], + [ + -73.468654, + 45.456152 + ], + [ + -73.468607, + 45.456145 + ], + [ + -73.468443, + 45.456109 + ], + [ + -73.467856, + 45.455996 + ], + [ + -73.467523, + 45.455919 + ], + [ + -73.467299, + 45.455861 + ], + [ + -73.466983, + 45.455757 + ], + [ + -73.466899, + 45.455728 + ], + [ + -73.466828, + 45.455703 + ], + [ + -73.466321, + 45.455501 + ], + [ + -73.466093, + 45.45541 + ], + [ + -73.465683, + 45.455224 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.463912, + 45.454506 + ], + [ + -73.463601, + 45.454377 + ], + [ + -73.463299, + 45.454252 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.461804, + 45.453576 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.459815, + 45.452691 + ], + [ + -73.459185, + 45.452398 + ], + [ + -73.45904, + 45.452331 + ], + [ + -73.458688, + 45.452137 + ], + [ + -73.458046, + 45.451791 + ], + [ + -73.457688, + 45.451583 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457598, + 45.451363 + ], + [ + -73.457627, + 45.45129 + ], + [ + -73.457661, + 45.451176 + ], + [ + -73.457648, + 45.45104 + ], + [ + -73.457607, + 45.450938 + ], + [ + -73.457498, + 45.450823 + ], + [ + -73.457365, + 45.450743 + ] + ] + }, + "id": 349, + "properties": { + "id": "e7b9b66a-6e48-489c-b8f6-5277f82c930f", + "data": { + "gtfs": { + "shape_id": "653_1_A" + }, + "segments": [ + { + "distanceMeters": 186, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 85, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 774, + "travelTimeSeconds": 120 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 581, + "travelTimeSeconds": 90 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 17 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6180, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2452.2778649386005, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.44, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 5.42, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.44 + }, + "mode": "bus", + "name": "École Antoine-Brossard", + "color": "#A32638", + "nodes": [ + "0296a406-079c-41f9-8c5b-0723a0b5f294", + "79c669a1-9060-4e5d-b272-f107884dee00", + "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "3e9388da-8f48-48c6-b6c0-5461e27eb26a", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "7e4b21bb-20d6-4104-9b98-071226922d49", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", + "2ef5dac7-c226-43bb-8534-6642e7a8ab89", + "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", + "3a8b9936-4595-4770-a3f4-b31253602356", + "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", + "1782a1a7-eddc-4228-a7a8-bf733f339e68", + "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", + "8443a69f-fccf-4a19-8d08-6da77269e686", + "2946050b-73ca-45c7-be10-f80ba5b43ab5", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "ab493a3c-1217-4122-93b5-217f7741b2ea", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "44eacee6-a348-48cf-aeda-c9ddae958f8e" + ], + "stops": [], + "line_id": "223b7a8b-6ab2-4c7b-9207-a0958d5dd4aa", + "segments": [ + 0, + 2, + 6, + 10, + 17, + 22, + 28, + 39, + 43, + 49, + 58, + 63, + 66, + 88, + 91, + 99, + 110, + 115, + 126, + 135, + 142, + 145, + 148, + 152 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 349, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.457365, + 45.450743 + ], + [ + -73.457311, + 45.45071 + ], + [ + -73.457055, + 45.450562 + ], + [ + -73.45697, + 45.450481 + ], + [ + -73.456931, + 45.450397 + ], + [ + -73.456841, + 45.450279 + ], + [ + -73.456733, + 45.450296 + ], + [ + -73.456625, + 45.450319 + ], + [ + -73.456525, + 45.450368 + ], + [ + -73.456438, + 45.450427 + ], + [ + -73.456357, + 45.45049 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456282, + 45.450641 + ], + [ + -73.456274, + 45.450721 + ], + [ + -73.456292, + 45.450794 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.457139, + 45.451438 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457924, + 45.451894 + ], + [ + -73.458487, + 45.4522 + ], + [ + -73.458728, + 45.452329 + ], + [ + -73.458941, + 45.452443 + ], + [ + -73.459713, + 45.452799 + ], + [ + -73.461228, + 45.45347 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.462915, + 45.454221 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463822, + 45.454609 + ], + [ + -73.464886, + 45.455059 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465851, + 45.455474 + ], + [ + -73.466482, + 45.45573 + ], + [ + -73.466742, + 45.45582 + ], + [ + -73.466794, + 45.455838 + ], + [ + -73.466905, + 45.455874 + ], + [ + -73.467229, + 45.455978 + ], + [ + -73.467462, + 45.456041 + ], + [ + -73.467802, + 45.456122 + ], + [ + -73.468131, + 45.456184 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468564, + 45.456262 + ], + [ + -73.468949, + 45.456316 + ], + [ + -73.469418, + 45.456365 + ], + [ + -73.469671, + 45.456392 + ], + [ + -73.470468, + 45.456429 + ], + [ + -73.471559, + 45.45646 + ], + [ + -73.472632, + 45.456497 + ], + [ + -73.473708, + 45.456537 + ], + [ + -73.474773, + 45.456569 + ], + [ + -73.475687, + 45.456589 + ], + [ + -73.475839, + 45.456592 + ], + [ + -73.479486, + 45.456714 + ], + [ + -73.479632, + 45.456719 + ], + [ + -73.479637, + 45.456774 + ], + [ + -73.479682, + 45.457262 + ], + [ + -73.47972, + 45.457668 + ], + [ + -73.479747, + 45.458082 + ], + [ + -73.479754, + 45.45832 + ], + [ + -73.479732, + 45.458469 + ], + [ + -73.479695, + 45.458689 + ], + [ + -73.479603, + 45.459 + ], + [ + -73.479545, + 45.459171 + ], + [ + -73.47951, + 45.459246 + ], + [ + -73.479465, + 45.459342 + ], + [ + -73.479339, + 45.459576 + ], + [ + -73.479253, + 45.45972 + ], + [ + -73.479162, + 45.45985 + ], + [ + -73.478872, + 45.460205 + ], + [ + -73.478751, + 45.460331 + ], + [ + -73.478315, + 45.460707 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.476638, + 45.46198 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.474375, + 45.468232 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474718, + 45.468735 + ], + [ + -73.474819, + 45.468708 + ], + [ + -73.474822, + 45.468708 + ], + [ + -73.475149, + 45.468731 + ], + [ + -73.475371, + 45.468738 + ], + [ + -73.475537, + 45.468744 + ], + [ + -73.477762, + 45.468838 + ], + [ + -73.477791, + 45.468839 + ], + [ + -73.478795, + 45.46888 + ], + [ + -73.479733, + 45.468916 + ], + [ + -73.480588, + 45.468948 + ], + [ + -73.480705, + 45.468952 + ], + [ + -73.481592, + 45.468898 + ], + [ + -73.482517, + 45.468777 + ], + [ + -73.483911, + 45.468794 + ], + [ + -73.484035, + 45.468795 + ], + [ + -73.484852, + 45.468827 + ], + [ + -73.484983, + 45.468836 + ], + [ + -73.485068, + 45.468858 + ], + [ + -73.485183, + 45.468899 + ], + [ + -73.485272, + 45.468957 + ], + [ + -73.485492, + 45.469216 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.485925, + 45.469758 + ], + [ + -73.485957, + 45.470015 + ], + [ + -73.485933, + 45.470276 + ], + [ + -73.485863, + 45.471335 + ], + [ + -73.485859, + 45.471396 + ], + [ + -73.485922, + 45.47159 + ], + [ + -73.486077, + 45.471855 + ], + [ + -73.486282, + 45.472161 + ], + [ + -73.486545, + 45.47257 + ], + [ + -73.486647, + 45.472711 + ], + [ + -73.486715, + 45.472804 + ], + [ + -73.48607, + 45.47302 + ], + [ + -73.485914, + 45.473065 + ], + [ + -73.485421, + 45.473196 + ], + [ + -73.485194, + 45.47325 + ], + [ + -73.484873, + 45.473304 + ], + [ + -73.484747, + 45.473331 + ], + [ + -73.484539, + 45.473353 + ], + [ + -73.484309, + 45.47338 + ], + [ + -73.484047, + 45.473403 + ], + [ + -73.483828, + 45.473413 + ], + [ + -73.483761, + 45.473416 + ], + [ + -73.483613, + 45.473425 + ], + [ + -73.48263, + 45.473402 + ], + [ + -73.479093, + 45.47329 + ], + [ + -73.478915, + 45.473285 + ], + [ + -73.476016, + 45.473194 + ], + [ + -73.47556, + 45.473217 + ], + [ + -73.475367, + 45.473239 + ], + [ + -73.475163, + 45.47327 + ], + [ + -73.474755, + 45.473357 + ], + [ + -73.474613, + 45.473387 + ], + [ + -73.474531, + 45.473224 + ], + [ + -73.474431, + 45.473027 + ], + [ + -73.474274, + 45.472609 + ], + [ + -73.474213, + 45.472397 + ], + [ + -73.474173, + 45.472208 + ], + [ + -73.474165, + 45.472163 + ], + [ + -73.474141, + 45.472028 + ], + [ + -73.474136, + 45.472 + ], + [ + -73.47411, + 45.47183 + ], + [ + -73.474121, + 45.471228 + ], + [ + -73.474166, + 45.470967 + ], + [ + -73.474399, + 45.469698 + ], + [ + -73.474424, + 45.469562 + ], + [ + -73.474454, + 45.469396 + ], + [ + -73.474489, + 45.469055 + ], + [ + -73.474518, + 45.468811 + ] + ] + }, + "id": 350, + "properties": { + "id": "5da0ddaf-124b-4e8e-ba37-2724fd67a41b", + "data": { + "gtfs": { + "shape_id": "653_2_R" + }, + "segments": [ + { + "distanceMeters": 248, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 593, + "travelTimeSeconds": 94 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 72, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 750, + "travelTimeSeconds": 119 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 84, + "travelTimeSeconds": 14 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6412, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2389.227891427287, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.29, + "travelTimeWithoutDwellTimesSeconds": 1020, + "operatingTimeWithLayoverTimeSeconds": 1200, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1020, + "operatingSpeedWithLayoverMetersPerSecond": 5.34, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.29 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "44eacee6-a348-48cf-aeda-c9ddae958f8e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", + "2ac07b96-98be-4710-a749-3162a661fcb5", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "981ebecb-3dc2-4439-8648-8052a51df7ec", + "2a268094-fe95-4a75-83da-d02aa638cbb6", + "1782a1a7-eddc-4228-a7a8-bf733f339e68", + "9a86a407-515f-4b5e-8a56-9a4c52c91c96", + "9a86a407-515f-4b5e-8a56-9a4c52c91c96", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "0296a406-079c-41f9-8c5b-0723a0b5f294", + "79c669a1-9060-4e5d-b272-f107884dee00", + "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "3e9388da-8f48-48c6-b6c0-5461e27eb26a", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "7e4b21bb-20d6-4104-9b98-071226922d49", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", + "2ef5dac7-c226-43bb-8534-6642e7a8ab89", + "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", + "3a8b9936-4595-4770-a3f4-b31253602356", + "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6" + ], + "stops": [], + "line_id": "223b7a8b-6ab2-4c7b-9207-a0958d5dd4aa", + "segments": [ + 0, + 16, + 21, + 24, + 26, + 29, + 40, + 51, + 53, + 56, + 64, + 71, + 73, + 101, + 110, + 112, + 116, + 120, + 127, + 132, + 138, + 149, + 153, + 159, + 168, + 173 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 350, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.45262, + 45.461963 + ], + [ + -73.451744, + 45.461344 + ], + [ + -73.451566, + 45.461218 + ], + [ + -73.450867, + 45.460728 + ], + [ + -73.450263, + 45.460311 + ], + [ + -73.450156, + 45.460237 + ], + [ + -73.449533, + 45.459751 + ], + [ + -73.449148, + 45.459368 + ], + [ + -73.448862, + 45.459013 + ], + [ + -73.44872, + 45.458837 + ], + [ + -73.447008, + 45.457621 + ], + [ + -73.446704, + 45.457387 + ], + [ + -73.446542, + 45.457279 + ], + [ + -73.446522, + 45.457266 + ], + [ + -73.446491, + 45.457243 + ], + [ + -73.446422, + 45.457203 + ], + [ + -73.446401, + 45.457189 + ], + [ + -73.446378, + 45.457189 + ], + [ + -73.446356, + 45.457189 + ], + [ + -73.446333, + 45.457189 + ], + [ + -73.446306, + 45.457198 + ], + [ + -73.446296, + 45.457204 + ], + [ + -73.446277, + 45.457216 + ], + [ + -73.446222, + 45.457252 + ], + [ + -73.446124, + 45.457317 + ], + [ + -73.446093, + 45.457338 + ], + [ + -73.44586, + 45.457499 + ], + [ + -73.445829, + 45.457526 + ], + [ + -73.445802, + 45.457549 + ], + [ + -73.445734, + 45.457616 + ], + [ + -73.445677, + 45.457684 + ], + [ + -73.445622, + 45.45776 + ], + [ + -73.445587, + 45.457814 + ], + [ + -73.44556, + 45.457868 + ], + [ + -73.445533, + 45.457936 + ], + [ + -73.445517, + 45.45799 + ], + [ + -73.445494, + 45.458098 + ], + [ + -73.445484, + 45.458192 + ], + [ + -73.445487, + 45.458269 + ], + [ + -73.445499, + 45.458359 + ], + [ + -73.445519, + 45.458431 + ], + [ + -73.445566, + 45.458548 + ], + [ + -73.445589, + 45.458593 + ], + [ + -73.445635, + 45.458683 + ], + [ + -73.445516, + 45.458705 + ], + [ + -73.44522, + 45.458817 + ], + [ + -73.444921, + 45.458939 + ], + [ + -73.444686, + 45.459087 + ], + [ + -73.444104, + 45.459504 + ], + [ + -73.443294, + 45.460085 + ], + [ + -73.442676, + 45.460485 + ], + [ + -73.44257, + 45.460553 + ], + [ + -73.440903, + 45.461686 + ], + [ + -73.44047, + 45.46196 + ], + [ + -73.440096, + 45.462131 + ], + [ + -73.439948, + 45.462189 + ], + [ + -73.439923, + 45.462198 + ], + [ + -73.439564, + 45.462315 + ], + [ + -73.43934, + 45.462423 + ], + [ + -73.438984, + 45.462639 + ], + [ + -73.438333, + 45.463115 + ], + [ + -73.4379, + 45.463423 + ], + [ + -73.437701, + 45.463565 + ], + [ + -73.438136, + 45.46386 + ], + [ + -73.438391, + 45.464033 + ], + [ + -73.440876, + 45.465713 + ], + [ + -73.440976, + 45.46578 + ], + [ + -73.441167, + 45.465915 + ], + [ + -73.441736, + 45.466257 + ], + [ + -73.442013, + 45.466357 + ], + [ + -73.442166, + 45.466409 + ], + [ + -73.442317, + 45.46646 + ], + [ + -73.442367, + 45.466471 + ], + [ + -73.442596, + 45.466523 + ], + [ + -73.442918, + 45.466614 + ], + [ + -73.44316, + 45.466708 + ], + [ + -73.4434, + 45.466798 + ], + [ + -73.443571, + 45.466875 + ], + [ + -73.443775, + 45.466978 + ], + [ + -73.44395, + 45.467091 + ], + [ + -73.44423, + 45.467276 + ], + [ + -73.44435, + 45.46737 + ], + [ + -73.44443, + 45.467451 + ], + [ + -73.44446, + 45.46748 + ], + [ + -73.444535, + 45.46755 + ], + [ + -73.445104, + 45.468072 + ], + [ + -73.445679, + 45.468635 + ], + [ + -73.44617, + 45.469097 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.446957, + 45.469051 + ], + [ + -73.447066, + 45.468996 + ], + [ + -73.4474, + 45.468829 + ], + [ + -73.447822, + 45.468645 + ], + [ + -73.448427, + 45.468407 + ], + [ + -73.449383, + 45.468079 + ], + [ + -73.449753, + 45.467953 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450233, + 45.467787 + ], + [ + -73.451014, + 45.467517 + ], + [ + -73.451685, + 45.467271 + ], + [ + -73.451729, + 45.467255 + ], + [ + -73.451774, + 45.467238 + ], + [ + -73.45256, + 45.466966 + ], + [ + -73.452657, + 45.466933 + ], + [ + -73.453014, + 45.466803 + ], + [ + -73.45314, + 45.466749 + ], + [ + -73.453548, + 45.466537 + ], + [ + -73.453946, + 45.466304 + ], + [ + -73.454693, + 45.465786 + ], + [ + -73.454716, + 45.46577 + ], + [ + -73.45516, + 45.46545 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.457622, + 45.462203 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.45769, + 45.462033 + ], + [ + -73.457776, + 45.461966 + ], + [ + -73.45778, + 45.461865 + ], + [ + -73.457805, + 45.461716 + ], + [ + -73.457817, + 45.461563 + ], + [ + -73.45782, + 45.461477 + ], + [ + -73.457812, + 45.461383 + ], + [ + -73.457786, + 45.461212 + ], + [ + -73.457776, + 45.461175 + ], + [ + -73.457743, + 45.46105 + ], + [ + -73.457714, + 45.460928 + ], + [ + -73.457665, + 45.460784 + ], + [ + -73.457595, + 45.460627 + ], + [ + -73.457462, + 45.460379 + ], + [ + -73.457342, + 45.460166 + ], + [ + -73.456496, + 45.458668 + ], + [ + -73.456446, + 45.458579 + ], + [ + -73.455819, + 45.457454 + ], + [ + -73.455767, + 45.45736 + ], + [ + -73.455551, + 45.456955 + ], + [ + -73.455474, + 45.456802 + ], + [ + -73.455367, + 45.456563 + ], + [ + -73.455234, + 45.456113 + ], + [ + -73.455192, + 45.45589 + ], + [ + -73.455162, + 45.455731 + ], + [ + -73.455134, + 45.455281 + ], + [ + -73.455165, + 45.454908 + ], + [ + -73.455177, + 45.454772 + ], + [ + -73.455206, + 45.454588 + ], + [ + -73.455346, + 45.454111 + ], + [ + -73.455479, + 45.453796 + ], + [ + -73.455501, + 45.453755 + ], + [ + -73.455716, + 45.453355 + ], + [ + -73.455869, + 45.453127 + ], + [ + -73.455902, + 45.453077 + ], + [ + -73.456055, + 45.452883 + ], + [ + -73.45626, + 45.452645 + ], + [ + -73.456494, + 45.452415 + ], + [ + -73.45667, + 45.452253 + ], + [ + -73.457301, + 45.451707 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457598, + 45.451363 + ], + [ + -73.457627, + 45.45129 + ], + [ + -73.457661, + 45.451176 + ], + [ + -73.457648, + 45.45104 + ], + [ + -73.457607, + 45.450938 + ], + [ + -73.457498, + 45.450823 + ], + [ + -73.457365, + 45.450743 + ] + ] + }, + "id": 351, + "properties": { + "id": "77d48a89-3dc1-476b-95f1-5bb4cef02b9c", + "data": { + "gtfs": { + "shape_id": "656_1_A" + }, + "segments": [ + { + "distanceMeters": 97, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 335, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 464, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 19 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5295, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 1332.2803365216164, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.79, + "travelTimeWithoutDwellTimesSeconds": 780, + "operatingTimeWithLayoverTimeSeconds": 960, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 780, + "operatingSpeedWithLayoverMetersPerSecond": 5.51, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.79 + }, + "mode": "bus", + "name": "École Antoine-Brossard", + "color": "#A32638", + "nodes": [ + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "5cacbe7b-f308-4076-8842-25195b37874b", + "70f95ad2-eba4-4503-b7ff-17df9ce33ba4", + "e5e1c5c5-36d2-4221-83f3-658f6d4b6761", + "ea0252a4-936b-49d7-8af7-57e55fff6184", + "5b6c9f4f-7b19-41d9-ad96-38e8e97fc190", + "379600fc-81b2-40f5-8ddd-317a0b4fe4c0", + "735e4ba2-6503-4586-98da-feccec61a212", + "af14ce12-74fa-4edf-a439-c058d0014323", + "4bc3caff-ed56-497d-8ae6-f486cc6662a6", + "596478dc-5795-41d8-b76f-e8b99c5314f6", + "966472c1-4384-4d94-92f7-48afa023de51", + "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "4fc83229-a15e-48e1-aa4f-fae0073dacf9", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "ac84633b-6f3b-458c-8f4e-099cc310c05e", + "d271cca7-cd7a-4e22-8728-7a598b88fe32", + "f5f0a75d-b9e9-4575-845b-09748935c6e0", + "c77e59d9-5075-4e39-a183-6bacc1afd03e", + "59b4f87c-067e-4dc3-856a-07fb245d4fe3", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "44eacee6-a348-48cf-aeda-c9ddae958f8e" + ], + "stops": [], + "line_id": "3b2f326d-dba1-4f40-b7dd-3889635c14d4", + "segments": [ + 0, + 1, + 4, + 8, + 27, + 42, + 48, + 50, + 55, + 63, + 65, + 70, + 83, + 87, + 96, + 103, + 110, + 122, + 132, + 139, + 141, + 150, + 157, + 163 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 351, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.457365, + 45.450743 + ], + [ + -73.457311, + 45.45071 + ], + [ + -73.457055, + 45.450562 + ], + [ + -73.45697, + 45.450481 + ], + [ + -73.456931, + 45.450397 + ], + [ + -73.456841, + 45.450279 + ], + [ + -73.456733, + 45.450296 + ], + [ + -73.456625, + 45.450319 + ], + [ + -73.456525, + 45.450368 + ], + [ + -73.456438, + 45.450427 + ], + [ + -73.456357, + 45.45049 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456282, + 45.450641 + ], + [ + -73.456274, + 45.450721 + ], + [ + -73.456292, + 45.450794 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.457141, + 45.451439 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.456657, + 45.45205 + ], + [ + -73.456511, + 45.452168 + ], + [ + -73.456345, + 45.452339 + ], + [ + -73.456105, + 45.452573 + ], + [ + -73.455893, + 45.452816 + ], + [ + -73.455821, + 45.45291 + ], + [ + -73.45573, + 45.453027 + ], + [ + -73.455536, + 45.453301 + ], + [ + -73.455293, + 45.453751 + ], + [ + -73.455167, + 45.454075 + ], + [ + -73.455022, + 45.454574 + ], + [ + -73.455005, + 45.454641 + ], + [ + -73.454977, + 45.454754 + ], + [ + -73.454933, + 45.455281 + ], + [ + -73.454963, + 45.455744 + ], + [ + -73.455037, + 45.456136 + ], + [ + -73.455173, + 45.456599 + ], + [ + -73.455283, + 45.456847 + ], + [ + -73.455363, + 45.457004 + ], + [ + -73.455596, + 45.457405 + ], + [ + -73.455642, + 45.457486 + ], + [ + -73.456006, + 45.458134 + ], + [ + -73.456229, + 45.458531 + ], + [ + -73.456258, + 45.458583 + ], + [ + -73.456281, + 45.458624 + ], + [ + -73.457234, + 45.460331 + ], + [ + -73.457292, + 45.460433 + ], + [ + -73.45742, + 45.460667 + ], + [ + -73.457486, + 45.46082 + ], + [ + -73.457532, + 45.460955 + ], + [ + -73.457565, + 45.461072 + ], + [ + -73.457606, + 45.46123 + ], + [ + -73.457631, + 45.461396 + ], + [ + -73.457639, + 45.461477 + ], + [ + -73.457625, + 45.461707 + ], + [ + -73.457614, + 45.461848 + ], + [ + -73.457628, + 45.461934 + ], + [ + -73.45763, + 45.461949 + ], + [ + -73.45769, + 45.462033 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.454376, + 45.464741 + ], + [ + -73.45432, + 45.464702 + ], + [ + -73.453971, + 45.464449 + ], + [ + -73.453617, + 45.464193 + ], + [ + -73.453261, + 45.463932 + ], + [ + -73.452912, + 45.463662 + ], + [ + -73.452802, + 45.463536 + ], + [ + -73.452721, + 45.463379 + ], + [ + -73.452662, + 45.463158 + ], + [ + -73.45263, + 45.463001 + ], + [ + -73.452634, + 45.462879 + ], + [ + -73.452663, + 45.462722 + ], + [ + -73.452703, + 45.4626 + ], + [ + -73.452775, + 45.462447 + ], + [ + -73.452835, + 45.462344 + ], + [ + -73.452841, + 45.462335 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.452635, + 45.461973 + ], + [ + -73.45175, + 45.461348 + ], + [ + -73.451566, + 45.461218 + ], + [ + -73.450867, + 45.460728 + ], + [ + -73.450278, + 45.460322 + ], + [ + -73.450156, + 45.460237 + ], + [ + -73.449533, + 45.459751 + ], + [ + -73.449148, + 45.459368 + ], + [ + -73.448872, + 45.459026 + ], + [ + -73.44872, + 45.458837 + ], + [ + -73.447008, + 45.457621 + ], + [ + -73.446704, + 45.457387 + ], + [ + -73.446542, + 45.457279 + ], + [ + -73.446522, + 45.457266 + ], + [ + -73.446491, + 45.457243 + ], + [ + -73.446422, + 45.457203 + ], + [ + -73.446401, + 45.457189 + ], + [ + -73.446378, + 45.457189 + ], + [ + -73.446356, + 45.457189 + ], + [ + -73.446333, + 45.457189 + ], + [ + -73.446306, + 45.457198 + ], + [ + -73.446296, + 45.457204 + ], + [ + -73.446277, + 45.457216 + ], + [ + -73.446222, + 45.457252 + ], + [ + -73.446093, + 45.457338 + ], + [ + -73.445922, + 45.457456 + ], + [ + -73.44586, + 45.457499 + ], + [ + -73.445834, + 45.457522 + ], + [ + -73.445802, + 45.457549 + ], + [ + -73.445734, + 45.457616 + ], + [ + -73.445677, + 45.457684 + ], + [ + -73.445622, + 45.45776 + ], + [ + -73.445587, + 45.457814 + ], + [ + -73.44556, + 45.457868 + ], + [ + -73.445533, + 45.457936 + ], + [ + -73.445517, + 45.45799 + ], + [ + -73.445494, + 45.458098 + ], + [ + -73.445484, + 45.458192 + ], + [ + -73.445487, + 45.458269 + ], + [ + -73.445499, + 45.458359 + ], + [ + -73.445519, + 45.458431 + ], + [ + -73.445566, + 45.458548 + ], + [ + -73.445587, + 45.458589 + ], + [ + -73.445635, + 45.458683 + ], + [ + -73.445516, + 45.458705 + ], + [ + -73.44522, + 45.458817 + ], + [ + -73.444921, + 45.458939 + ], + [ + -73.444686, + 45.459087 + ], + [ + -73.444118, + 45.459494 + ], + [ + -73.443294, + 45.460085 + ], + [ + -73.44268, + 45.460481 + ], + [ + -73.44257, + 45.460553 + ], + [ + -73.440903, + 45.461686 + ], + [ + -73.44047, + 45.46196 + ], + [ + -73.440096, + 45.462131 + ], + [ + -73.439953, + 45.462187 + ], + [ + -73.439923, + 45.462198 + ], + [ + -73.439564, + 45.462315 + ], + [ + -73.43934, + 45.462423 + ], + [ + -73.438984, + 45.462639 + ], + [ + -73.438333, + 45.463115 + ], + [ + -73.437701, + 45.463565 + ], + [ + -73.437964, + 45.463744 + ], + [ + -73.438132, + 45.463858 + ], + [ + -73.438391, + 45.464033 + ], + [ + -73.440872, + 45.46571 + ], + [ + -73.440976, + 45.46578 + ], + [ + -73.441167, + 45.465915 + ], + [ + -73.441736, + 45.466257 + ], + [ + -73.442013, + 45.466357 + ], + [ + -73.442161, + 45.466407 + ], + [ + -73.442317, + 45.46646 + ], + [ + -73.442367, + 45.466471 + ], + [ + -73.442596, + 45.466523 + ], + [ + -73.442918, + 45.466614 + ], + [ + -73.44316, + 45.466708 + ], + [ + -73.4434, + 45.466798 + ], + [ + -73.443571, + 45.466875 + ], + [ + -73.443775, + 45.466978 + ], + [ + -73.44395, + 45.467091 + ], + [ + -73.44423, + 45.467276 + ], + [ + -73.44435, + 45.46737 + ], + [ + -73.44443, + 45.467451 + ], + [ + -73.44445, + 45.46747 + ], + [ + -73.444535, + 45.46755 + ], + [ + -73.445104, + 45.468072 + ], + [ + -73.445679, + 45.468635 + ], + [ + -73.446167, + 45.469095 + ] + ] + }, + "id": 352, + "properties": { + "id": "9de5ccc1-ffee-4eb0-b6aa-605c32e25821", + "data": { + "gtfs": { + "shape_id": "656_2_R" + }, + "segments": [ + { + "distanceMeters": 248, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 91, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 514, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 52, + "travelTimeSeconds": 7 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 30 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5055, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2238.9598785718053, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.66, + "travelTimeWithoutDwellTimesSeconds": 660, + "operatingTimeWithLayoverTimeSeconds": 840, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 660, + "operatingSpeedWithLayoverMetersPerSecond": 6.02, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.66 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "44eacee6-a348-48cf-aeda-c9ddae958f8e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "59b4f87c-067e-4dc3-856a-07fb245d4fe3", + "c77e59d9-5075-4e39-a183-6bacc1afd03e", + "f5f0a75d-b9e9-4575-845b-09748935c6e0", + "d271cca7-cd7a-4e22-8728-7a598b88fe32", + "3b708726-0db1-43de-b014-b11ddc9fc24a", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "5cacbe7b-f308-4076-8842-25195b37874b", + "70f95ad2-eba4-4503-b7ff-17df9ce33ba4", + "e5e1c5c5-36d2-4221-83f3-658f6d4b6761", + "ea0252a4-936b-49d7-8af7-57e55fff6184", + "5b6c9f4f-7b19-41d9-ad96-38e8e97fc190", + "379600fc-81b2-40f5-8ddd-317a0b4fe4c0", + "735e4ba2-6503-4586-98da-feccec61a212", + "af14ce12-74fa-4edf-a439-c058d0014323", + "4bc3caff-ed56-497d-8ae6-f486cc6662a6", + "596478dc-5795-41d8-b76f-e8b99c5314f6", + "966472c1-4384-4d94-92f7-48afa023de51", + "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c" + ], + "stops": [], + "line_id": "3b2f326d-dba1-4f40-b7dd-3889635c14d4", + "segments": [ + 0, + 16, + 18, + 23, + 29, + 38, + 40, + 43, + 54, + 67, + 82, + 84, + 85, + 88, + 92, + 111, + 126, + 132, + 134, + 139, + 147, + 149, + 154, + 167 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 352, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.486092, + 45.469091 + ], + [ + -73.486363, + 45.468976 + ], + [ + -73.486598, + 45.468913 + ], + [ + -73.486742, + 45.468895 + ], + [ + -73.486913, + 45.468899 + ], + [ + -73.487892, + 45.468935 + ], + [ + -73.488649, + 45.468977 + ], + [ + -73.488788, + 45.468985 + ], + [ + -73.492282, + 45.469102 + ], + [ + -73.492434, + 45.469107 + ], + [ + -73.4927, + 45.469111 + ], + [ + -73.49395, + 45.46917 + ], + [ + -73.494075, + 45.469188 + ], + [ + -73.494154, + 45.469237 + ], + [ + -73.494559, + 45.469968 + ], + [ + -73.494611, + 45.470061 + ], + [ + -73.494791, + 45.470417 + ], + [ + -73.494862, + 45.47056 + ], + [ + -73.494851, + 45.470811 + ], + [ + -73.494847, + 45.470884 + ], + [ + -73.49484, + 45.471001 + ], + [ + -73.495967, + 45.471037 + ], + [ + -73.496018, + 45.471127 + ], + [ + -73.496235, + 45.471478 + ], + [ + -73.496437, + 45.471928 + ], + [ + -73.496814, + 45.472585 + ], + [ + -73.496974, + 45.472864 + ], + [ + -73.497895, + 45.474517 + ], + [ + -73.497955, + 45.474625 + ], + [ + -73.498064, + 45.474821 + ], + [ + -73.497243, + 45.474807 + ], + [ + -73.496473, + 45.474726 + ], + [ + -73.495455, + 45.474677 + ], + [ + -73.495339, + 45.474671 + ], + [ + -73.494958, + 45.47465 + ], + [ + -73.494447, + 45.474632 + ], + [ + -73.493574, + 45.474611 + ], + [ + -73.49348, + 45.474609 + ], + [ + -73.492987, + 45.474582 + ], + [ + -73.492833, + 45.474564 + ], + [ + -73.492566, + 45.474483 + ], + [ + -73.4924, + 45.474429 + ], + [ + -73.492221, + 45.474321 + ], + [ + -73.491964, + 45.474047 + ], + [ + -73.491842, + 45.473885 + ], + [ + -73.491647, + 45.473668 + ], + [ + -73.491514, + 45.47352 + ], + [ + -73.490727, + 45.473858 + ], + [ + -73.490176, + 45.474077 + ], + [ + -73.489892, + 45.474191 + ], + [ + -73.489482, + 45.474308 + ], + [ + -73.48921, + 45.474343 + ], + [ + -73.488939, + 45.474348 + ], + [ + -73.488579, + 45.47433 + ], + [ + -73.48828, + 45.474348 + ], + [ + -73.487939, + 45.474393 + ], + [ + -73.487684, + 45.474466 + ], + [ + -73.487656, + 45.474474 + ], + [ + -73.487464, + 45.474541 + ], + [ + -73.487385, + 45.474582 + ], + [ + -73.486897, + 45.473997 + ], + [ + -73.486669, + 45.473713 + ], + [ + -73.486204, + 45.473181 + ], + [ + -73.486151, + 45.473119 + ], + [ + -73.48607, + 45.47302 + ], + [ + -73.485914, + 45.473065 + ], + [ + -73.485421, + 45.473196 + ], + [ + -73.485194, + 45.47325 + ], + [ + -73.484873, + 45.473304 + ], + [ + -73.484747, + 45.473331 + ], + [ + -73.484539, + 45.473353 + ], + [ + -73.484309, + 45.47338 + ], + [ + -73.484047, + 45.473403 + ], + [ + -73.48383, + 45.473413 + ], + [ + -73.483761, + 45.473416 + ], + [ + -73.483613, + 45.473425 + ], + [ + -73.48263, + 45.473402 + ], + [ + -73.479095, + 45.47329 + ], + [ + -73.478915, + 45.473285 + ], + [ + -73.476016, + 45.473194 + ], + [ + -73.47556, + 45.473217 + ], + [ + -73.475367, + 45.473239 + ], + [ + -73.475163, + 45.47327 + ], + [ + -73.474745, + 45.473359 + ], + [ + -73.474613, + 45.473387 + ], + [ + -73.474531, + 45.473224 + ], + [ + -73.474431, + 45.473027 + ], + [ + -73.474274, + 45.472609 + ], + [ + -73.474213, + 45.472397 + ], + [ + -73.474173, + 45.472208 + ], + [ + -73.474165, + 45.472163 + ], + [ + -73.474141, + 45.472028 + ], + [ + -73.474137, + 45.472001 + ], + [ + -73.47411, + 45.47183 + ], + [ + -73.474121, + 45.471228 + ], + [ + -73.474166, + 45.470967 + ], + [ + -73.474399, + 45.469698 + ], + [ + -73.474425, + 45.469555 + ], + [ + -73.474454, + 45.469396 + ], + [ + -73.474489, + 45.469055 + ], + [ + -73.474519, + 45.468803 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474544, + 45.468492 + ], + [ + -73.474545, + 45.468488 + ], + [ + -73.474528, + 45.468236 + ], + [ + -73.474508, + 45.467936 + ], + [ + -73.474508, + 45.467294 + ], + [ + -73.474542, + 45.4665 + ], + [ + -73.474546, + 45.466404 + ], + [ + -73.474554, + 45.466199 + ], + [ + -73.474621, + 45.465194 + ], + [ + -73.474664, + 45.464506 + ], + [ + -73.474669, + 45.464397 + ], + [ + -73.474734, + 45.464067 + ], + [ + -73.474884, + 45.463697 + ], + [ + -73.475002, + 45.463492 + ], + [ + -73.47522, + 45.463212 + ], + [ + -73.475408, + 45.463039 + ], + [ + -73.47556, + 45.462909 + ], + [ + -73.475821, + 45.462711 + ], + [ + -73.476105, + 45.462495 + ], + [ + -73.476442, + 45.462257 + ], + [ + -73.476557, + 45.462176 + ], + [ + -73.477249, + 45.461685 + ], + [ + -73.47822, + 45.460952 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.47888, + 45.460399 + ], + [ + -73.479008, + 45.460264 + ], + [ + -73.479302, + 45.459904 + ], + [ + -73.479398, + 45.459769 + ], + [ + -73.479488, + 45.459616 + ], + [ + -73.479616, + 45.459382 + ], + [ + -73.479645, + 45.45932 + ], + [ + -73.479699, + 45.459202 + ], + [ + -73.47976, + 45.459027 + ], + [ + -73.479776, + 45.458968 + ], + [ + -73.479808, + 45.458865 + ], + [ + -73.479852, + 45.458707 + ], + [ + -73.479891, + 45.458478 + ], + [ + -73.479913, + 45.458325 + ], + [ + -73.479923, + 45.458145 + ], + [ + -73.479926, + 45.458073 + ], + [ + -73.479893, + 45.457659 + ], + [ + -73.479821, + 45.456908 + ], + [ + -73.479803, + 45.456723 + ], + [ + -73.479792, + 45.456611 + ], + [ + -73.479622, + 45.456606 + ], + [ + -73.479363, + 45.456597 + ], + [ + -73.476073, + 45.456487 + ], + [ + -73.475848, + 45.456479 + ], + [ + -73.474778, + 45.456443 + ], + [ + -73.473716, + 45.456411 + ], + [ + -73.47264, + 45.456375 + ], + [ + -73.471572, + 45.456339 + ], + [ + -73.47073, + 45.456312 + ], + [ + -73.47047, + 45.456303 + ], + [ + -73.469686, + 45.456262 + ], + [ + -73.46943, + 45.456244 + ], + [ + -73.468978, + 45.456199 + ], + [ + -73.468654, + 45.456152 + ], + [ + -73.468607, + 45.456145 + ], + [ + -73.468443, + 45.456109 + ], + [ + -73.467856, + 45.455996 + ], + [ + -73.467523, + 45.455919 + ], + [ + -73.467299, + 45.455861 + ], + [ + -73.466983, + 45.455757 + ], + [ + -73.466899, + 45.455728 + ], + [ + -73.466828, + 45.455703 + ], + [ + -73.46631, + 45.455497 + ], + [ + -73.466093, + 45.45541 + ], + [ + -73.465683, + 45.455224 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.463912, + 45.454506 + ], + [ + -73.463601, + 45.454377 + ], + [ + -73.4633, + 45.454252 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.461793, + 45.453571 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.459815, + 45.452691 + ], + [ + -73.459185, + 45.452398 + ], + [ + -73.45904, + 45.452331 + ], + [ + -73.458688, + 45.452137 + ], + [ + -73.458046, + 45.451791 + ], + [ + -73.457688, + 45.451583 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457598, + 45.451363 + ], + [ + -73.457627, + 45.45129 + ], + [ + -73.457661, + 45.451176 + ], + [ + -73.457648, + 45.45104 + ], + [ + -73.457607, + 45.450938 + ], + [ + -73.457498, + 45.450823 + ], + [ + -73.457365, + 45.450743 + ] + ] + }, + "id": 353, + "properties": { + "id": "37afe4b2-0e8a-4c68-be2e-ac0fb07088e6", + "data": { + "gtfs": { + "shape_id": "660_1_A" + }, + "segments": [ + { + "distanceMeters": 205, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 84, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 774, + "travelTimeSeconds": 126 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 581, + "travelTimeSeconds": 94 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 18 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7395, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3024.198917110167, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.16, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 5.36, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.16 + }, + "mode": "bus", + "name": "École Antoine-Brossard", + "color": "#A32638", + "nodes": [ + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "d83daa69-bf92-4b93-8173-1c0fd22cbec0", + "66a0749c-2a5b-458d-b059-307f555cb93a", + "c5effd0a-a9b0-4cfe-8176-06c99313f58b", + "e7a825d7-e677-4fe7-b1ef-b6db556d3c70", + "9e1adf1c-c578-4c50-baba-31b7f0c157c4", + "2e10a277-1746-4c1f-9808-3de94d853988", + "28d21225-939d-4260-9ed4-5c109f412ad9", + "be011751-8885-454f-b767-5c0f1402d83f", + "c6165892-3719-417f-8d25-92e65471b42c", + "6735199f-47fc-47db-9116-7c110cca8945", + "6e4c328c-6fba-4e81-b589-59318e11a37a", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", + "2ef5dac7-c226-43bb-8534-6642e7a8ab89", + "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", + "3a8b9936-4595-4770-a3f4-b31253602356", + "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", + "1782a1a7-eddc-4228-a7a8-bf733f339e68", + "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", + "8443a69f-fccf-4a19-8d08-6da77269e686", + "2946050b-73ca-45c7-be10-f80ba5b43ab5", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "ab493a3c-1217-4122-93b5-217f7741b2ea", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "44eacee6-a348-48cf-aeda-c9ddae958f8e" + ], + "stops": [], + "line_id": "29429376-037c-4405-bf39-ccfd7d570b63", + "segments": [ + 0, + 6, + 8, + 14, + 18, + 25, + 27, + 33, + 36, + 45, + 48, + 56, + 62, + 73, + 77, + 83, + 92, + 97, + 100, + 122, + 125, + 133, + 144, + 149, + 160, + 169, + 176, + 179, + 182, + 186 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 353, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.457365, + 45.450743 + ], + [ + -73.457311, + 45.45071 + ], + [ + -73.457055, + 45.450562 + ], + [ + -73.45697, + 45.450481 + ], + [ + -73.456931, + 45.450397 + ], + [ + -73.456841, + 45.450279 + ], + [ + -73.456733, + 45.450296 + ], + [ + -73.456625, + 45.450319 + ], + [ + -73.456525, + 45.450368 + ], + [ + -73.456438, + 45.450427 + ], + [ + -73.456357, + 45.45049 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456282, + 45.450641 + ], + [ + -73.456274, + 45.450721 + ], + [ + -73.456292, + 45.450794 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.457139, + 45.451438 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457924, + 45.451894 + ], + [ + -73.458487, + 45.4522 + ], + [ + -73.458727, + 45.452329 + ], + [ + -73.458941, + 45.452443 + ], + [ + -73.459713, + 45.452799 + ], + [ + -73.461227, + 45.453469 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.462913, + 45.45422 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463822, + 45.454609 + ], + [ + -73.464884, + 45.455058 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465851, + 45.455474 + ], + [ + -73.466482, + 45.45573 + ], + [ + -73.466742, + 45.45582 + ], + [ + -73.466794, + 45.455838 + ], + [ + -73.466905, + 45.455874 + ], + [ + -73.467229, + 45.455978 + ], + [ + -73.467462, + 45.456041 + ], + [ + -73.467802, + 45.456122 + ], + [ + -73.468127, + 45.456183 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468564, + 45.456262 + ], + [ + -73.468949, + 45.456316 + ], + [ + -73.469418, + 45.456365 + ], + [ + -73.469671, + 45.456392 + ], + [ + -73.470468, + 45.456429 + ], + [ + -73.471559, + 45.45646 + ], + [ + -73.472632, + 45.456497 + ], + [ + -73.473708, + 45.456537 + ], + [ + -73.474773, + 45.456569 + ], + [ + -73.475682, + 45.456589 + ], + [ + -73.475839, + 45.456592 + ], + [ + -73.47948, + 45.456714 + ], + [ + -73.479632, + 45.456719 + ], + [ + -73.479682, + 45.457257 + ], + [ + -73.479701, + 45.457465 + ], + [ + -73.47972, + 45.457668 + ], + [ + -73.479747, + 45.458082 + ], + [ + -73.479754, + 45.45832 + ], + [ + -73.479732, + 45.458469 + ], + [ + -73.479695, + 45.458689 + ], + [ + -73.479603, + 45.459 + ], + [ + -73.479545, + 45.459171 + ], + [ + -73.479512, + 45.459241 + ], + [ + -73.479465, + 45.459342 + ], + [ + -73.479339, + 45.459576 + ], + [ + -73.479253, + 45.45972 + ], + [ + -73.479162, + 45.45985 + ], + [ + -73.478872, + 45.460205 + ], + [ + -73.478751, + 45.460331 + ], + [ + -73.47832, + 45.460703 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.476644, + 45.461976 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.474375, + 45.468225 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474718, + 45.468735 + ], + [ + -73.474819, + 45.468708 + ], + [ + -73.474822, + 45.468708 + ], + [ + -73.475143, + 45.46873 + ], + [ + -73.475149, + 45.468731 + ], + [ + -73.47536, + 45.468738 + ], + [ + -73.475537, + 45.468744 + ], + [ + -73.477751, + 45.468838 + ], + [ + -73.477791, + 45.468839 + ], + [ + -73.478795, + 45.46888 + ], + [ + -73.479733, + 45.468916 + ], + [ + -73.480576, + 45.468947 + ], + [ + -73.480705, + 45.468952 + ], + [ + -73.481592, + 45.468898 + ], + [ + -73.482517, + 45.468777 + ], + [ + -73.483899, + 45.468794 + ], + [ + -73.484035, + 45.468795 + ], + [ + -73.484852, + 45.468827 + ], + [ + -73.484983, + 45.468836 + ], + [ + -73.485068, + 45.468858 + ], + [ + -73.485183, + 45.468899 + ], + [ + -73.485272, + 45.468957 + ], + [ + -73.485486, + 45.469208 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.486093, + 45.469091 + ], + [ + -73.486363, + 45.468976 + ], + [ + -73.486598, + 45.468913 + ], + [ + -73.486742, + 45.468895 + ], + [ + -73.486913, + 45.468899 + ], + [ + -73.487892, + 45.468935 + ], + [ + -73.488649, + 45.468977 + ], + [ + -73.488788, + 45.468985 + ], + [ + -73.492281, + 45.469102 + ], + [ + -73.492434, + 45.469107 + ], + [ + -73.4927, + 45.469111 + ], + [ + -73.49395, + 45.46917 + ], + [ + -73.494075, + 45.469188 + ], + [ + -73.494154, + 45.469237 + ], + [ + -73.494559, + 45.469967 + ], + [ + -73.494611, + 45.470061 + ], + [ + -73.494791, + 45.470417 + ], + [ + -73.494862, + 45.47056 + ], + [ + -73.494851, + 45.47081 + ], + [ + -73.494847, + 45.470884 + ], + [ + -73.49484, + 45.471001 + ], + [ + -73.495967, + 45.471037 + ], + [ + -73.496018, + 45.471127 + ], + [ + -73.496235, + 45.471478 + ], + [ + -73.496437, + 45.471928 + ], + [ + -73.496813, + 45.472584 + ], + [ + -73.496974, + 45.472864 + ], + [ + -73.497894, + 45.474515 + ], + [ + -73.497955, + 45.474625 + ], + [ + -73.498064, + 45.474821 + ], + [ + -73.497243, + 45.474807 + ], + [ + -73.496473, + 45.474726 + ], + [ + -73.495455, + 45.474677 + ], + [ + -73.495343, + 45.474671 + ], + [ + -73.494958, + 45.47465 + ], + [ + -73.494447, + 45.474632 + ], + [ + -73.493578, + 45.474612 + ], + [ + -73.49348, + 45.474609 + ], + [ + -73.492987, + 45.474582 + ], + [ + -73.492833, + 45.474564 + ], + [ + -73.492566, + 45.474483 + ], + [ + -73.4924, + 45.474429 + ], + [ + -73.492221, + 45.474321 + ], + [ + -73.491964, + 45.474047 + ], + [ + -73.491842, + 45.473885 + ], + [ + -73.49165, + 45.473671 + ], + [ + -73.491514, + 45.47352 + ], + [ + -73.490727, + 45.473858 + ], + [ + -73.49018, + 45.474076 + ], + [ + -73.489892, + 45.474191 + ], + [ + -73.489482, + 45.474308 + ], + [ + -73.48921, + 45.474343 + ], + [ + -73.488939, + 45.474348 + ], + [ + -73.488579, + 45.47433 + ], + [ + -73.48828, + 45.474348 + ], + [ + -73.487939, + 45.474393 + ], + [ + -73.487689, + 45.474464 + ], + [ + -73.487656, + 45.474474 + ], + [ + -73.487464, + 45.474541 + ], + [ + -73.487385, + 45.474582 + ], + [ + -73.486897, + 45.473997 + ], + [ + -73.486669, + 45.473713 + ], + [ + -73.486207, + 45.473184 + ], + [ + -73.486151, + 45.473119 + ], + [ + -73.48607, + 45.47302 + ], + [ + -73.485914, + 45.473065 + ], + [ + -73.485421, + 45.473196 + ], + [ + -73.485194, + 45.47325 + ], + [ + -73.484873, + 45.473304 + ], + [ + -73.484747, + 45.473331 + ], + [ + -73.484539, + 45.473353 + ], + [ + -73.484309, + 45.47338 + ], + [ + -73.484047, + 45.473403 + ], + [ + -73.483837, + 45.473412 + ], + [ + -73.483761, + 45.473416 + ], + [ + -73.483613, + 45.473425 + ], + [ + -73.48263, + 45.473402 + ], + [ + -73.479091, + 45.47329 + ], + [ + -73.478915, + 45.473285 + ], + [ + -73.476016, + 45.473194 + ], + [ + -73.47556, + 45.473217 + ], + [ + -73.475367, + 45.473239 + ], + [ + -73.475163, + 45.47327 + ], + [ + -73.474754, + 45.473357 + ], + [ + -73.474613, + 45.473387 + ], + [ + -73.474531, + 45.473224 + ], + [ + -73.474431, + 45.473027 + ], + [ + -73.474274, + 45.472609 + ], + [ + -73.474213, + 45.472397 + ], + [ + -73.474173, + 45.472208 + ], + [ + -73.474165, + 45.472163 + ], + [ + -73.474141, + 45.472028 + ], + [ + -73.474138, + 45.472008 + ], + [ + -73.47411, + 45.47183 + ], + [ + -73.474121, + 45.471228 + ], + [ + -73.474166, + 45.470967 + ], + [ + -73.474399, + 45.469698 + ], + [ + -73.474424, + 45.469562 + ], + [ + -73.474454, + 45.469396 + ], + [ + -73.474489, + 45.469055 + ], + [ + -73.474518, + 45.468811 + ] + ] + }, + "id": 354, + "properties": { + "id": "c5996d19-e30e-4110-8421-17ca76d4f2d8", + "data": { + "gtfs": { + "shape_id": "660_2_R" + }, + "segments": [ + { + "distanceMeters": 248, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 593, + "travelTimeSeconds": 100 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 72, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 749, + "travelTimeSeconds": 127 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 61, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 371, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 84, + "travelTimeSeconds": 15 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8498, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2389.227891427287, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.9, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 5.25, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.9 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "44eacee6-a348-48cf-aeda-c9ddae958f8e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", + "2ac07b96-98be-4710-a749-3162a661fcb5", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "981ebecb-3dc2-4439-8648-8052a51df7ec", + "2a268094-fe95-4a75-83da-d02aa638cbb6", + "1782a1a7-eddc-4228-a7a8-bf733f339e68", + "9a86a407-515f-4b5e-8a56-9a4c52c91c96", + "9a86a407-515f-4b5e-8a56-9a4c52c91c96", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "0296a406-079c-41f9-8c5b-0723a0b5f294", + "79c669a1-9060-4e5d-b272-f107884dee00", + "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "3e9388da-8f48-48c6-b6c0-5461e27eb26a", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "d83daa69-bf92-4b93-8173-1c0fd22cbec0", + "66a0749c-2a5b-458d-b059-307f555cb93a", + "c5effd0a-a9b0-4cfe-8176-06c99313f58b", + "e7a825d7-e677-4fe7-b1ef-b6db556d3c70", + "9e1adf1c-c578-4c50-baba-31b7f0c157c4", + "2e10a277-1746-4c1f-9808-3de94d853988", + "28d21225-939d-4260-9ed4-5c109f412ad9", + "be011751-8885-454f-b767-5c0f1402d83f", + "c6165892-3719-417f-8d25-92e65471b42c", + "6735199f-47fc-47db-9116-7c110cca8945", + "6e4c328c-6fba-4e81-b589-59318e11a37a", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", + "2ef5dac7-c226-43bb-8534-6642e7a8ab89", + "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", + "3a8b9936-4595-4770-a3f4-b31253602356", + "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6" + ], + "stops": [], + "line_id": "29429376-037c-4405-bf39-ccfd7d570b63", + "segments": [ + 0, + 16, + 21, + 24, + 26, + 29, + 40, + 51, + 53, + 55, + 64, + 71, + 73, + 101, + 111, + 113, + 117, + 121, + 128, + 130, + 136, + 138, + 144, + 148, + 155, + 157, + 163, + 166, + 175, + 178, + 186, + 192, + 203, + 207, + 213, + 222, + 227 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 354, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.460174, + 45.48358 + ], + [ + -73.459999, + 45.483565 + ], + [ + -73.459497, + 45.483511 + ], + [ + -73.459033, + 45.483457 + ], + [ + -73.458739, + 45.483407 + ], + [ + -73.458547, + 45.483371 + ], + [ + -73.458333, + 45.483321 + ], + [ + -73.458016, + 45.483245 + ], + [ + -73.45777, + 45.483182 + ], + [ + -73.457489, + 45.4831 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.457453, + 45.482764 + ], + [ + -73.46093, + 45.480411 + ], + [ + -73.461043, + 45.480335 + ], + [ + -73.46017, + 45.47975 + ], + [ + -73.460562, + 45.479485 + ], + [ + -73.461947, + 45.478549 + ], + [ + -73.462028, + 45.478495 + ], + [ + -73.461431, + 45.478057 + ], + [ + -73.461335, + 45.477986 + ], + [ + -73.461651, + 45.47777 + ], + [ + -73.462711, + 45.477044 + ], + [ + -73.462832, + 45.476961 + ], + [ + -73.464383, + 45.475913 + ], + [ + -73.464095, + 45.475711 + ], + [ + -73.463948, + 45.475607 + ], + [ + -73.463529, + 45.475427 + ], + [ + -73.462895, + 45.475142 + ], + [ + -73.462818, + 45.475107 + ], + [ + -73.461823, + 45.474666 + ], + [ + -73.461583, + 45.474509 + ], + [ + -73.4615, + 45.474454 + ], + [ + -73.461737, + 45.474293 + ], + [ + -73.462087, + 45.474055 + ], + [ + -73.462597, + 45.473708 + ], + [ + -73.462985, + 45.473456 + ], + [ + -73.464058, + 45.4727 + ], + [ + -73.464089, + 45.472678 + ], + [ + -73.465434, + 45.471774 + ], + [ + -73.465948, + 45.47142 + ], + [ + -73.466451, + 45.471073 + ], + [ + -73.467061, + 45.471469 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467869, + 45.471793 + ], + [ + -73.467954, + 45.471482 + ], + [ + -73.467979, + 45.471365 + ], + [ + -73.468005, + 45.471249 + ], + [ + -73.468064, + 45.470898 + ], + [ + -73.468089, + 45.470644 + ], + [ + -73.468112, + 45.470407 + ], + [ + -73.468119, + 45.470155 + ], + [ + -73.468115, + 45.470044 + ], + [ + -73.468111, + 45.469894 + ], + [ + -73.468108, + 45.469818 + ], + [ + -73.468107, + 45.469773 + ], + [ + -73.46805, + 45.4693 + ], + [ + -73.467952, + 45.468827 + ], + [ + -73.467932, + 45.468733 + ], + [ + -73.467793, + 45.468274 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.46758, + 45.467757 + ], + [ + -73.467357, + 45.467296 + ], + [ + -73.466914, + 45.466403 + ], + [ + -73.466752, + 45.466083 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466352, + 45.465288 + ], + [ + -73.466238, + 45.465062 + ], + [ + -73.466142, + 45.464853 + ], + [ + -73.466048, + 45.464638 + ], + [ + -73.46599, + 45.464498 + ], + [ + -73.465967, + 45.464441 + ], + [ + -73.465777, + 45.463945 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465663, + 45.463449 + ], + [ + -73.465646, + 45.463238 + ], + [ + -73.465636, + 45.463073 + ], + [ + -73.465461, + 45.461275 + ], + [ + -73.465446, + 45.461131 + ], + [ + -73.465251, + 45.459263 + ], + [ + -73.465215, + 45.45889 + ], + [ + -73.465199, + 45.458728 + ], + [ + -73.465132, + 45.458038 + ], + [ + -73.465113, + 45.457592 + ], + [ + -73.465124, + 45.457143 + ], + [ + -73.465143, + 45.45685 + ], + [ + -73.465153, + 45.456755 + ], + [ + -73.465199, + 45.456301 + ], + [ + -73.465244, + 45.456 + ], + [ + -73.465335, + 45.455572 + ], + [ + -73.465339, + 45.455554 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.464797, + 45.454854 + ], + [ + -73.463912, + 45.454506 + ], + [ + -73.463601, + 45.454377 + ], + [ + -73.463305, + 45.454254 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.461808, + 45.453578 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.459815, + 45.452691 + ], + [ + -73.459187, + 45.452399 + ], + [ + -73.45904, + 45.452331 + ], + [ + -73.458688, + 45.452137 + ], + [ + -73.458046, + 45.451791 + ], + [ + -73.457689, + 45.451584 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457598, + 45.451363 + ], + [ + -73.457627, + 45.45129 + ], + [ + -73.457661, + 45.451176 + ], + [ + -73.457648, + 45.45104 + ], + [ + -73.457607, + 45.450938 + ], + [ + -73.457498, + 45.450823 + ], + [ + -73.457365, + 45.450743 + ] + ] + }, + "id": 355, + "properties": { + "id": "ef69852f-a675-43fc-a438-fe703a1befdb", + "data": { + "gtfs": { + "shape_id": "664_1_A" + }, + "segments": [ + { + "distanceMeters": 217, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 445, + "travelTimeSeconds": 85 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 76, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 884, + "travelTimeSeconds": 167 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 615, + "travelTimeSeconds": 116 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 21 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5082, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3654.283658753422, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.29, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 4.46, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.29 + }, + "mode": "bus", + "name": "École Antoine-Brossard", + "color": "#A32638", + "nodes": [ + "491099bb-9493-4888-bd4e-20bd2140830a", + "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", + "10c2e9e3-14c8-465a-917c-28c8d9977609", + "9f622393-7da9-4ff8-9bda-12008512c7ed", + "4122212c-2ecd-4db2-a305-20f02711d17b", + "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", + "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", + "c467599b-2164-4b14-b9ca-8960936bda58", + "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", + "156c412f-0b84-4b14-a73e-e1d07d0b148d", + "51e1600d-418e-4477-9b26-9e5507d72a03", + "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "74887516-47d5-4269-9513-84672d18e287", + "1e3a74d9-9d8a-467f-a82e-3dafee501e32", + "2946050b-73ca-45c7-be10-f80ba5b43ab5", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "ab493a3c-1217-4122-93b5-217f7741b2ea", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "44eacee6-a348-48cf-aeda-c9ddae958f8e" + ], + "stops": [], + "line_id": "9c6a923c-773a-4088-b39b-862e87c2e0e4", + "segments": [ + 0, + 9, + 12, + 16, + 18, + 21, + 24, + 30, + 36, + 39, + 50, + 58, + 80, + 82, + 99, + 102, + 105, + 109 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 355, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.457365, + 45.450743 + ], + [ + -73.457311, + 45.45071 + ], + [ + -73.457055, + 45.450562 + ], + [ + -73.45697, + 45.450481 + ], + [ + -73.456931, + 45.450397 + ], + [ + -73.456841, + 45.450279 + ], + [ + -73.456733, + 45.450296 + ], + [ + -73.456625, + 45.450319 + ], + [ + -73.456525, + 45.450368 + ], + [ + -73.456438, + 45.450427 + ], + [ + -73.456357, + 45.45049 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456282, + 45.450641 + ], + [ + -73.456274, + 45.450721 + ], + [ + -73.456292, + 45.450794 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.45714, + 45.451439 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457924, + 45.451894 + ], + [ + -73.458487, + 45.4522 + ], + [ + -73.45873, + 45.452331 + ], + [ + -73.458941, + 45.452443 + ], + [ + -73.459713, + 45.452799 + ], + [ + -73.461232, + 45.453472 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.462919, + 45.454223 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463822, + 45.454609 + ], + [ + -73.464892, + 45.455061 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465048, + 45.455509 + ], + [ + -73.465041, + 45.455536 + ], + [ + -73.464975, + 45.455829 + ], + [ + -73.464919, + 45.45613 + ], + [ + -73.464878, + 45.456427 + ], + [ + -73.464848, + 45.456873 + ], + [ + -73.464844, + 45.457169 + ], + [ + -73.464871, + 45.457574 + ], + [ + -73.464982, + 45.459105 + ], + [ + -73.464994, + 45.459278 + ], + [ + -73.465215, + 45.461562 + ], + [ + -73.465247, + 45.461893 + ], + [ + -73.465328, + 45.462497 + ], + [ + -73.465435, + 45.463211 + ], + [ + -73.465484, + 45.463543 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467476, + 45.467991 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467548, + 45.468225 + ], + [ + -73.467698, + 45.468792 + ], + [ + -73.467776, + 45.469183 + ], + [ + -73.46782, + 45.469453 + ], + [ + -73.467839, + 45.469687 + ], + [ + -73.467865, + 45.469989 + ], + [ + -73.467864, + 45.470057 + ], + [ + -73.467862, + 45.470168 + ], + [ + -73.46786, + 45.470362 + ], + [ + -73.467821, + 45.470781 + ], + [ + -73.467786, + 45.471019 + ], + [ + -73.467768, + 45.4711 + ], + [ + -73.467579, + 45.47132 + ], + [ + -73.467528, + 45.471365 + ], + [ + -73.467462, + 45.471392 + ], + [ + -73.467361, + 45.47141 + ], + [ + -73.467264, + 45.471406 + ], + [ + -73.467156, + 45.471392 + ], + [ + -73.466545, + 45.47101 + ], + [ + -73.466451, + 45.471073 + ], + [ + -73.46618, + 45.47126 + ], + [ + -73.466003, + 45.471381 + ], + [ + -73.465434, + 45.471774 + ], + [ + -73.46416, + 45.47263 + ], + [ + -73.464089, + 45.472678 + ], + [ + -73.462985, + 45.473456 + ], + [ + -73.462597, + 45.473708 + ], + [ + -73.462087, + 45.474055 + ], + [ + -73.461669, + 45.47434 + ], + [ + -73.4615, + 45.474454 + ], + [ + -73.461823, + 45.474666 + ], + [ + -73.462818, + 45.475107 + ], + [ + -73.462895, + 45.475142 + ], + [ + -73.463529, + 45.475427 + ], + [ + -73.463802, + 45.475545 + ], + [ + -73.463948, + 45.475607 + ], + [ + -73.464293, + 45.47585 + ], + [ + -73.464383, + 45.475913 + ], + [ + -73.462943, + 45.476886 + ], + [ + -73.462832, + 45.476961 + ], + [ + -73.46143, + 45.477921 + ], + [ + -73.461335, + 45.477986 + ], + [ + -73.46171, + 45.478262 + ], + [ + -73.461934, + 45.478426 + ], + [ + -73.462028, + 45.478495 + ], + [ + -73.46017, + 45.47975 + ], + [ + -73.460634, + 45.480061 + ], + [ + -73.460866, + 45.480216 + ], + [ + -73.461043, + 45.480335 + ], + [ + -73.457235, + 45.482912 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.456963, + 45.483096 + ], + [ + -73.457696, + 45.483312 + ], + [ + -73.457948, + 45.48338 + ], + [ + -73.45825, + 45.483452 + ], + [ + -73.458477, + 45.483499 + ], + [ + -73.458491, + 45.483501 + ], + [ + -73.458691, + 45.483542 + ], + [ + -73.458995, + 45.483592 + ], + [ + -73.459974, + 45.483704 + ], + [ + -73.46004, + 45.48371 + ], + [ + -73.460532, + 45.483756 + ] + ] + }, + "id": 356, + "properties": { + "id": "82015141-2698-41c2-a052-3e125f1e31fa", + "data": { + "gtfs": { + "shape_id": "664_2_R" + }, + "segments": [ + { + "distanceMeters": 248, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 463, + "travelTimeSeconds": 85 + }, + { + "distanceMeters": 1206, + "travelTimeSeconds": 223 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 78, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 432, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 59 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5194, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3690.198244187587, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.41, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 4.56, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.41 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "44eacee6-a348-48cf-aeda-c9ddae958f8e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", + "2ac07b96-98be-4710-a749-3162a661fcb5", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "981ebecb-3dc2-4439-8648-8052a51df7ec", + "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", + "acb7092d-3b2a-4d79-a4e3-09e7e52af475", + "156c412f-0b84-4b14-a73e-e1d07d0b148d", + "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", + "c467599b-2164-4b14-b9ca-8960936bda58", + "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", + "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", + "4122212c-2ecd-4db2-a305-20f02711d17b", + "9f622393-7da9-4ff8-9bda-12008512c7ed", + "10c2e9e3-14c8-465a-917c-28c8d9977609", + "fd67ddde-e938-481c-8721-79fa136304ae", + "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca" + ], + "stops": [], + "line_id": "9c6a923c-773a-4088-b39b-862e87c2e0e4", + "segments": [ + 0, + 16, + 21, + 24, + 26, + 29, + 39, + 70, + 87, + 89, + 94, + 102, + 104, + 106, + 109, + 113, + 115 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 356, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.442941, + 45.472153 + ], + [ + -73.443403, + 45.472472 + ], + [ + -73.44368, + 45.472746 + ], + [ + -73.443798, + 45.472886 + ], + [ + -73.443885, + 45.472989 + ], + [ + -73.444022, + 45.473228 + ], + [ + -73.444096, + 45.473399 + ], + [ + -73.444201, + 45.473651 + ], + [ + -73.444225, + 45.473729 + ], + [ + -73.444267, + 45.473862 + ], + [ + -73.444376, + 45.474083 + ], + [ + -73.444434, + 45.474168 + ], + [ + -73.444536, + 45.474295 + ], + [ + -73.444637, + 45.474416 + ], + [ + -73.444821, + 45.47456 + ], + [ + -73.445071, + 45.474758 + ], + [ + -73.445389, + 45.47492 + ], + [ + -73.445454, + 45.474949 + ], + [ + -73.445688, + 45.475051 + ], + [ + -73.446018, + 45.475155 + ], + [ + -73.446335, + 45.475213 + ], + [ + -73.446655, + 45.475267 + ], + [ + -73.446928, + 45.475258 + ], + [ + -73.447461, + 45.475227 + ], + [ + -73.447817, + 45.47516 + ], + [ + -73.448039, + 45.475106 + ], + [ + -73.448341, + 45.474989 + ], + [ + -73.448574, + 45.474899 + ], + [ + -73.448857, + 45.474724 + ], + [ + -73.449175, + 45.474468 + ], + [ + -73.449337, + 45.474301 + ], + [ + -73.449358, + 45.474272 + ], + [ + -73.449377, + 45.474246 + ], + [ + -73.449481, + 45.474103 + ], + [ + -73.449578, + 45.473928 + ], + [ + -73.449727, + 45.47369 + ], + [ + -73.44993, + 45.473433 + ], + [ + -73.450137, + 45.473231 + ], + [ + -73.450285, + 45.473112 + ], + [ + -73.450313, + 45.473092 + ], + [ + -73.450449, + 45.472994 + ], + [ + -73.450608, + 45.472887 + ], + [ + -73.450793, + 45.472777 + ], + [ + -73.451205, + 45.472597 + ], + [ + -73.45163, + 45.472453 + ], + [ + -73.452008, + 45.472363 + ], + [ + -73.452169, + 45.47234 + ], + [ + -73.452316, + 45.472318 + ], + [ + -73.45285, + 45.472157 + ], + [ + -73.453004, + 45.472085 + ], + [ + -73.453204, + 45.471986 + ], + [ + -73.453393, + 45.471855 + ], + [ + -73.453575, + 45.471693 + ], + [ + -73.453715, + 45.471523 + ], + [ + -73.453836, + 45.471338 + ], + [ + -73.453911, + 45.471154 + ], + [ + -73.453946, + 45.471068 + ], + [ + -73.453949, + 45.470627 + ], + [ + -73.453915, + 45.47047 + ], + [ + -73.45386, + 45.470321 + ], + [ + -73.453779, + 45.470173 + ], + [ + -73.45368, + 45.470042 + ], + [ + -73.453598, + 45.469954 + ], + [ + -73.45358, + 45.469934 + ], + [ + -73.453451, + 45.469814 + ], + [ + -73.453362, + 45.469732 + ], + [ + -73.452949, + 45.469507 + ], + [ + -73.452836, + 45.469466 + ], + [ + -73.452751, + 45.469436 + ], + [ + -73.452697, + 45.469417 + ], + [ + -73.452447, + 45.46934 + ], + [ + -73.452066, + 45.469251 + ], + [ + -73.451848, + 45.4692 + ], + [ + -73.451441, + 45.469043 + ], + [ + -73.451294, + 45.468975 + ], + [ + -73.451105, + 45.468885 + ], + [ + -73.45058, + 45.468552 + ], + [ + -73.450324, + 45.468312 + ], + [ + -73.450316, + 45.468304 + ], + [ + -73.450122, + 45.468079 + ], + [ + -73.450072, + 45.468013 + ], + [ + -73.450014, + 45.467935 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450233, + 45.467787 + ], + [ + -73.451014, + 45.467517 + ], + [ + -73.451685, + 45.467271 + ], + [ + -73.451729, + 45.467255 + ], + [ + -73.451774, + 45.467238 + ], + [ + -73.452554, + 45.466968 + ], + [ + -73.452657, + 45.466933 + ], + [ + -73.453014, + 45.466803 + ], + [ + -73.45314, + 45.466749 + ], + [ + -73.453548, + 45.466537 + ], + [ + -73.453946, + 45.466304 + ], + [ + -73.454693, + 45.465786 + ], + [ + -73.454721, + 45.465766 + ], + [ + -73.45516, + 45.46545 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.457621, + 45.462206 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.45769, + 45.462033 + ], + [ + -73.457776, + 45.461966 + ], + [ + -73.45778, + 45.461865 + ], + [ + -73.457805, + 45.461716 + ], + [ + -73.457817, + 45.461563 + ], + [ + -73.45782, + 45.461477 + ], + [ + -73.457812, + 45.461383 + ], + [ + -73.457786, + 45.461212 + ], + [ + -73.457775, + 45.461169 + ], + [ + -73.457743, + 45.46105 + ], + [ + -73.457714, + 45.460928 + ], + [ + -73.457665, + 45.460784 + ], + [ + -73.457595, + 45.460627 + ], + [ + -73.457462, + 45.460379 + ], + [ + -73.457342, + 45.460166 + ], + [ + -73.456497, + 45.45867 + ], + [ + -73.456446, + 45.458579 + ], + [ + -73.45582, + 45.457456 + ], + [ + -73.455767, + 45.45736 + ], + [ + -73.455551, + 45.456955 + ], + [ + -73.455474, + 45.456802 + ], + [ + -73.455367, + 45.456563 + ], + [ + -73.455234, + 45.456113 + ], + [ + -73.455192, + 45.45589 + ], + [ + -73.455162, + 45.455731 + ], + [ + -73.455134, + 45.455281 + ], + [ + -73.455165, + 45.454909 + ], + [ + -73.455177, + 45.454772 + ], + [ + -73.455206, + 45.454588 + ], + [ + -73.455346, + 45.454111 + ], + [ + -73.455479, + 45.453796 + ], + [ + -73.455501, + 45.453755 + ], + [ + -73.455716, + 45.453355 + ], + [ + -73.455874, + 45.453119 + ], + [ + -73.455902, + 45.453077 + ], + [ + -73.456055, + 45.452883 + ], + [ + -73.45626, + 45.452645 + ], + [ + -73.456494, + 45.452415 + ], + [ + -73.45667, + 45.452253 + ], + [ + -73.4573, + 45.451708 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457598, + 45.451363 + ], + [ + -73.457627, + 45.45129 + ], + [ + -73.457661, + 45.451176 + ], + [ + -73.457648, + 45.45104 + ], + [ + -73.457607, + 45.450938 + ], + [ + -73.457498, + 45.450823 + ], + [ + -73.457365, + 45.450743 + ] + ] + }, + "id": 357, + "properties": { + "id": "b1b67b16-1741-40a1-8e4a-a84d1e4728ce", + "data": { + "gtfs": { + "shape_id": "665_1_A" + }, + "segments": [ + { + "distanceMeters": 106, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 463, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 119, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 21 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 4047, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2641.5241839820637, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.13, + "travelTimeWithoutDwellTimesSeconds": 660, + "operatingTimeWithLayoverTimeSeconds": 840, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 660, + "operatingSpeedWithLayoverMetersPerSecond": 4.82, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.13 + }, + "mode": "bus", + "name": "École Antoine-Brossard", + "color": "#A32638", + "nodes": [ + "8bc1fa43-5a96-4718-96d6-82d3768ab9f4", + "f761f132-09f4-4a01-a76e-f9b0e50d8a9d", + "18d33d13-0d37-41d0-8a27-4c75ae6704a6", + "ab44c70e-171d-4dd2-b074-2fbdab29c11d", + "030a4337-a3e4-4cae-9b3c-548f03210dcf", + "014a3440-ffed-405b-9391-031896ce89b5", + "de0dd837-0f5e-4afa-a1ce-1042af81def1", + "4d428a9f-d12a-42d6-ab66-7ad0c7ad2850", + "ee666934-d186-4b8b-a152-1fdeb23a5242", + "e3925175-d7e8-4440-80a1-64bd3d7d9b18", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "4fc83229-a15e-48e1-aa4f-fae0073dacf9", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "ac84633b-6f3b-458c-8f4e-099cc310c05e", + "d271cca7-cd7a-4e22-8728-7a598b88fe32", + "f5f0a75d-b9e9-4575-845b-09748935c6e0", + "c77e59d9-5075-4e39-a183-6bacc1afd03e", + "59b4f87c-067e-4dc3-856a-07fb245d4fe3", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "44eacee6-a348-48cf-aeda-c9ddae958f8e" + ], + "stops": [], + "line_id": "3098cf50-ada1-462c-8cb5-9f40b533af3a", + "segments": [ + 0, + 3, + 17, + 26, + 31, + 39, + 46, + 55, + 64, + 71, + 80, + 88, + 95, + 107, + 117, + 124, + 126, + 135, + 142, + 148 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 357, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.457365, + 45.450743 + ], + [ + -73.457311, + 45.45071 + ], + [ + -73.457055, + 45.450562 + ], + [ + -73.45697, + 45.450481 + ], + [ + -73.456931, + 45.450397 + ], + [ + -73.456841, + 45.450279 + ], + [ + -73.456733, + 45.450296 + ], + [ + -73.456625, + 45.450319 + ], + [ + -73.456525, + 45.450368 + ], + [ + -73.456438, + 45.450427 + ], + [ + -73.456357, + 45.45049 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456282, + 45.450641 + ], + [ + -73.456274, + 45.450721 + ], + [ + -73.456292, + 45.450794 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.457141, + 45.451439 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.456657, + 45.45205 + ], + [ + -73.456511, + 45.452168 + ], + [ + -73.456345, + 45.452339 + ], + [ + -73.456105, + 45.452573 + ], + [ + -73.455893, + 45.452816 + ], + [ + -73.455821, + 45.45291 + ], + [ + -73.45573, + 45.453027 + ], + [ + -73.455536, + 45.453301 + ], + [ + -73.455293, + 45.453751 + ], + [ + -73.455167, + 45.454075 + ], + [ + -73.455022, + 45.454574 + ], + [ + -73.455005, + 45.454641 + ], + [ + -73.454977, + 45.454754 + ], + [ + -73.454933, + 45.455281 + ], + [ + -73.454963, + 45.455744 + ], + [ + -73.455037, + 45.456136 + ], + [ + -73.455173, + 45.456599 + ], + [ + -73.455283, + 45.456847 + ], + [ + -73.455363, + 45.457004 + ], + [ + -73.455596, + 45.457405 + ], + [ + -73.455642, + 45.457487 + ], + [ + -73.456006, + 45.458134 + ], + [ + -73.456229, + 45.458532 + ], + [ + -73.456258, + 45.458583 + ], + [ + -73.456281, + 45.458624 + ], + [ + -73.457235, + 45.460331 + ], + [ + -73.457292, + 45.460433 + ], + [ + -73.45742, + 45.460667 + ], + [ + -73.457486, + 45.46082 + ], + [ + -73.457532, + 45.460955 + ], + [ + -73.457565, + 45.461072 + ], + [ + -73.457606, + 45.46123 + ], + [ + -73.457631, + 45.461396 + ], + [ + -73.457639, + 45.461477 + ], + [ + -73.457625, + 45.461707 + ], + [ + -73.457614, + 45.461848 + ], + [ + -73.457628, + 45.461934 + ], + [ + -73.45763, + 45.461949 + ], + [ + -73.45769, + 45.462033 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.454665, + 45.465616 + ], + [ + -73.45456, + 45.465692 + ], + [ + -73.453819, + 45.466205 + ], + [ + -73.453432, + 45.466434 + ], + [ + -73.453035, + 45.466641 + ], + [ + -73.452922, + 45.46669 + ], + [ + -73.452786, + 45.466749 + ], + [ + -73.452589, + 45.466834 + ], + [ + -73.451705, + 45.467139 + ], + [ + -73.451627, + 45.467166 + ], + [ + -73.45158, + 45.467183 + ], + [ + -73.451014, + 45.467378 + ], + [ + -73.450937, + 45.467405 + ], + [ + -73.450156, + 45.467679 + ], + [ + -73.449888, + 45.467769 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450014, + 45.467935 + ], + [ + -73.450122, + 45.468079 + ], + [ + -73.450316, + 45.468304 + ], + [ + -73.45058, + 45.468552 + ], + [ + -73.451029, + 45.468837 + ], + [ + -73.451105, + 45.468885 + ], + [ + -73.451294, + 45.468975 + ], + [ + -73.451441, + 45.469043 + ], + [ + -73.451848, + 45.4692 + ], + [ + -73.452447, + 45.46934 + ], + [ + -73.452697, + 45.469417 + ], + [ + -73.452751, + 45.469436 + ], + [ + -73.452836, + 45.469466 + ], + [ + -73.452949, + 45.469507 + ], + [ + -73.453362, + 45.469732 + ], + [ + -73.453576, + 45.469931 + ], + [ + -73.45358, + 45.469934 + ], + [ + -73.453598, + 45.469954 + ], + [ + -73.45368, + 45.470042 + ], + [ + -73.453779, + 45.470173 + ], + [ + -73.45386, + 45.470321 + ], + [ + -73.453915, + 45.47047 + ], + [ + -73.453949, + 45.470627 + ], + [ + -73.453947, + 45.470998 + ], + [ + -73.453946, + 45.471068 + ], + [ + -73.453836, + 45.471338 + ], + [ + -73.453823, + 45.471358 + ], + [ + -73.453715, + 45.471523 + ], + [ + -73.453575, + 45.471693 + ], + [ + -73.453393, + 45.471855 + ], + [ + -73.453204, + 45.471986 + ], + [ + -73.453004, + 45.472085 + ], + [ + -73.45285, + 45.472157 + ], + [ + -73.45247, + 45.472272 + ], + [ + -73.452316, + 45.472318 + ], + [ + -73.452008, + 45.472363 + ], + [ + -73.45163, + 45.472453 + ], + [ + -73.451205, + 45.472597 + ], + [ + -73.450793, + 45.472777 + ], + [ + -73.450608, + 45.472887 + ], + [ + -73.450449, + 45.472994 + ], + [ + -73.450285, + 45.473112 + ], + [ + -73.450208, + 45.473174 + ], + [ + -73.450137, + 45.473231 + ], + [ + -73.44993, + 45.473433 + ], + [ + -73.449727, + 45.47369 + ], + [ + -73.449578, + 45.473928 + ], + [ + -73.449481, + 45.474103 + ], + [ + -73.449386, + 45.474234 + ], + [ + -73.449337, + 45.474301 + ], + [ + -73.449175, + 45.474468 + ], + [ + -73.448857, + 45.474724 + ], + [ + -73.448574, + 45.474899 + ], + [ + -73.448039, + 45.475106 + ], + [ + -73.447999, + 45.475116 + ], + [ + -73.447817, + 45.47516 + ], + [ + -73.447461, + 45.475227 + ], + [ + -73.446928, + 45.475258 + ], + [ + -73.446655, + 45.475267 + ], + [ + -73.446335, + 45.475213 + ], + [ + -73.446018, + 45.475155 + ], + [ + -73.445688, + 45.475051 + ], + [ + -73.445389, + 45.47492 + ], + [ + -73.445335, + 45.474893 + ], + [ + -73.445071, + 45.474758 + ], + [ + -73.444821, + 45.47456 + ], + [ + -73.444637, + 45.474416 + ], + [ + -73.444536, + 45.474295 + ], + [ + -73.444434, + 45.474168 + ], + [ + -73.444376, + 45.474083 + ], + [ + -73.444267, + 45.473862 + ], + [ + -73.444225, + 45.473729 + ], + [ + -73.444201, + 45.473651 + ], + [ + -73.444109, + 45.473429 + ], + [ + -73.444096, + 45.473399 + ], + [ + -73.444022, + 45.473228 + ], + [ + -73.443964, + 45.473127 + ], + [ + -73.443885, + 45.472989 + ], + [ + -73.44368, + 45.472746 + ], + [ + -73.443403, + 45.472472 + ], + [ + -73.442803, + 45.472058 + ] + ] + }, + "id": 358, + "properties": { + "id": "a9e24bfa-a55e-40d1-893b-0ecff5a14c29", + "data": { + "gtfs": { + "shape_id": "665_2_R" + }, + "segments": [ + { + "distanceMeters": 248, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 91, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 483, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 24 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 4231, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2641.5241839820637, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.41, + "travelTimeWithoutDwellTimesSeconds": 660, + "operatingTimeWithLayoverTimeSeconds": 840, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 660, + "operatingSpeedWithLayoverMetersPerSecond": 5.04, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.41 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "44eacee6-a348-48cf-aeda-c9ddae958f8e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "59b4f87c-067e-4dc3-856a-07fb245d4fe3", + "c77e59d9-5075-4e39-a183-6bacc1afd03e", + "f5f0a75d-b9e9-4575-845b-09748935c6e0", + "d271cca7-cd7a-4e22-8728-7a598b88fe32", + "3b708726-0db1-43de-b014-b11ddc9fc24a", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "bd9b4c12-08ed-4715-ae67-eb179ed7f974", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "ff779c9a-cd83-463a-8d0c-a93f3584a187", + "c9664cb0-d2ee-485f-8261-b02c66f8f9aa", + "ee666934-d186-4b8b-a152-1fdeb23a5242", + "4d428a9f-d12a-42d6-ab66-7ad0c7ad2850", + "de0dd837-0f5e-4afa-a1ce-1042af81def1", + "014a3440-ffed-405b-9391-031896ce89b5", + "030a4337-a3e4-4cae-9b3c-548f03210dcf", + "ab44c70e-171d-4dd2-b074-2fbdab29c11d", + "18d33d13-0d37-41d0-8a27-4c75ae6704a6", + "f761f132-09f4-4a01-a76e-f9b0e50d8a9d", + "8bc1fa43-5a96-4718-96d6-82d3768ab9f4" + ], + "stops": [], + "line_id": "3098cf50-ada1-462c-8cb5-9f40b533af3a", + "segments": [ + 0, + 16, + 18, + 23, + 29, + 38, + 40, + 43, + 54, + 67, + 73, + 78, + 87, + 98, + 106, + 116, + 125, + 131, + 137, + 146, + 159 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 358, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.469004, + 45.466768 + ], + [ + -73.469003, + 45.466637 + ], + [ + -73.46744, + 45.466583 + ], + [ + -73.46744, + 45.466582 + ], + [ + -73.46745, + 45.466456 + ], + [ + -73.467474, + 45.466326 + ], + [ + -73.467492, + 45.466224 + ], + [ + -73.467591, + 45.46606 + ], + [ + -73.467651, + 45.465959 + ], + [ + -73.467726, + 45.465836 + ], + [ + -73.467594, + 45.465752 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467341, + 45.465648 + ], + [ + -73.467145, + 45.465614 + ], + [ + -73.466939, + 45.465603 + ], + [ + -73.466716, + 45.465604 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466509, + 45.466021 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465586, + 45.46821 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.463779, + 45.468251 + ], + [ + -73.463257, + 45.46862 + ], + [ + -73.463137, + 45.468678 + ], + [ + -73.463016, + 45.468741 + ], + [ + -73.462763, + 45.468943 + ], + [ + -73.462691, + 45.469019 + ], + [ + -73.462689, + 45.46902 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.461694, + 45.469719 + ], + [ + -73.460801, + 45.470334 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.458442, + 45.471945 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.456057, + 45.473576 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.453673, + 45.475209 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.451326, + 45.476816 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.449272, + 45.478222 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448748, + 45.478356 + ], + [ + -73.448305, + 45.478058 + ], + [ + -73.44777, + 45.477695 + ], + [ + -73.4477, + 45.477648 + ], + [ + -73.446992, + 45.477175 + ], + [ + -73.446393, + 45.476765 + ], + [ + -73.445743, + 45.476329 + ], + [ + -73.445364, + 45.476066 + ], + [ + -73.445205, + 45.475955 + ], + [ + -73.444867, + 45.475726 + ], + [ + -73.444508, + 45.475482 + ], + [ + -73.443698, + 45.474934 + ], + [ + -73.443609, + 45.474874 + ], + [ + -73.44285, + 45.474357 + ], + [ + -73.441155, + 45.473198 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.441447, + 45.472804 + ], + [ + -73.442531, + 45.47204 + ], + [ + -73.442653, + 45.471954 + ], + [ + -73.444466, + 45.470668 + ], + [ + -73.444558, + 45.470603 + ], + [ + -73.444703, + 45.4705 + ], + [ + -73.445328, + 45.470057 + ], + [ + -73.445338, + 45.470052 + ], + [ + -73.445622, + 45.469854 + ], + [ + -73.446091, + 45.469543 + ], + [ + -73.446389, + 45.469345 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.447066, + 45.468996 + ], + [ + -73.4474, + 45.468829 + ], + [ + -73.447822, + 45.468645 + ], + [ + -73.448427, + 45.468407 + ], + [ + -73.449383, + 45.468079 + ], + [ + -73.449757, + 45.467952 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450233, + 45.467787 + ], + [ + -73.451014, + 45.467517 + ], + [ + -73.451685, + 45.467271 + ], + [ + -73.451729, + 45.467255 + ], + [ + -73.451774, + 45.467238 + ], + [ + -73.452563, + 45.466965 + ], + [ + -73.452657, + 45.466933 + ], + [ + -73.453014, + 45.466803 + ], + [ + -73.45314, + 45.466749 + ], + [ + -73.453548, + 45.466537 + ], + [ + -73.453946, + 45.466304 + ], + [ + -73.454693, + 45.465786 + ], + [ + -73.454719, + 45.465768 + ], + [ + -73.45516, + 45.46545 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.457623, + 45.462201 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.45769, + 45.462033 + ], + [ + -73.457776, + 45.461966 + ], + [ + -73.45778, + 45.461865 + ], + [ + -73.457805, + 45.461716 + ], + [ + -73.457817, + 45.461563 + ], + [ + -73.45782, + 45.461477 + ], + [ + -73.457812, + 45.461383 + ], + [ + -73.457786, + 45.461212 + ], + [ + -73.457776, + 45.461174 + ], + [ + -73.457743, + 45.46105 + ], + [ + -73.457714, + 45.460928 + ], + [ + -73.457665, + 45.460784 + ], + [ + -73.457595, + 45.460627 + ], + [ + -73.457462, + 45.460379 + ], + [ + -73.457342, + 45.460166 + ], + [ + -73.456495, + 45.458667 + ], + [ + -73.456446, + 45.458579 + ], + [ + -73.455819, + 45.457453 + ], + [ + -73.455767, + 45.45736 + ], + [ + -73.455551, + 45.456955 + ], + [ + -73.455474, + 45.456802 + ], + [ + -73.455367, + 45.456563 + ], + [ + -73.455234, + 45.456113 + ], + [ + -73.455192, + 45.45589 + ], + [ + -73.455162, + 45.455731 + ], + [ + -73.455134, + 45.455281 + ], + [ + -73.455165, + 45.454907 + ], + [ + -73.455177, + 45.454772 + ], + [ + -73.455206, + 45.454588 + ], + [ + -73.455346, + 45.454111 + ], + [ + -73.455479, + 45.453796 + ], + [ + -73.455501, + 45.453755 + ], + [ + -73.455716, + 45.453355 + ], + [ + -73.455869, + 45.453126 + ], + [ + -73.455902, + 45.453077 + ], + [ + -73.456055, + 45.452883 + ], + [ + -73.45626, + 45.452645 + ], + [ + -73.456494, + 45.452415 + ], + [ + -73.45667, + 45.452253 + ], + [ + -73.457301, + 45.451707 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457598, + 45.451363 + ], + [ + -73.457627, + 45.45129 + ], + [ + -73.457661, + 45.451176 + ], + [ + -73.457648, + 45.45104 + ], + [ + -73.457607, + 45.450938 + ], + [ + -73.457498, + 45.450823 + ], + [ + -73.457365, + 45.450743 + ] + ] + }, + "id": 359, + "properties": { + "id": "b6e419c4-1081-40ae-81ba-7d190c4c81ca", + "data": { + "gtfs": { + "shape_id": "670_1_A" + }, + "segments": [ + { + "distanceMeters": 762, + "travelTimeSeconds": 131 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 464, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 22 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6583, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2005.6719818386628, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.77, + "travelTimeWithoutDwellTimesSeconds": 1140, + "operatingTimeWithLayoverTimeSeconds": 1320, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1140, + "operatingSpeedWithLayoverMetersPerSecond": 4.99, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.77 + }, + "mode": "bus", + "name": "École Antoine-Brossard", + "color": "#A32638", + "nodes": [ + "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "907f8610-452b-440d-849b-c803b07dedc1", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "76ff8292-f41f-4d17-998d-6dd3d2c32288", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "e80498a8-505d-4215-ba07-7582f8783d8e", + "014d61e3-acfc-41f6-b78a-5c2178c073b1", + "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "4fc83229-a15e-48e1-aa4f-fae0073dacf9", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "ac84633b-6f3b-458c-8f4e-099cc310c05e", + "d271cca7-cd7a-4e22-8728-7a598b88fe32", + "f5f0a75d-b9e9-4575-845b-09748935c6e0", + "c77e59d9-5075-4e39-a183-6bacc1afd03e", + "59b4f87c-067e-4dc3-856a-07fb245d4fe3", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "44eacee6-a348-48cf-aeda-c9ddae958f8e" + ], + "stops": [], + "line_id": "84f64aa8-4fc5-49cf-8503-588f8a79e0ec", + "segments": [ + 0, + 33, + 48, + 53, + 55, + 57, + 59, + 61, + 63, + 67, + 72, + 76, + 79, + 82, + 86, + 91, + 98, + 105, + 112, + 124, + 134, + 141, + 143, + 152, + 159, + 165 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 359, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.457365, + 45.450743 + ], + [ + -73.457311, + 45.45071 + ], + [ + -73.457055, + 45.450562 + ], + [ + -73.45697, + 45.450481 + ], + [ + -73.456931, + 45.450397 + ], + [ + -73.456841, + 45.450279 + ], + [ + -73.456733, + 45.450296 + ], + [ + -73.456625, + 45.450319 + ], + [ + -73.456525, + 45.450368 + ], + [ + -73.456438, + 45.450427 + ], + [ + -73.456357, + 45.45049 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456282, + 45.450641 + ], + [ + -73.456274, + 45.450721 + ], + [ + -73.456292, + 45.450794 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.457141, + 45.451439 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.456657, + 45.45205 + ], + [ + -73.456511, + 45.452168 + ], + [ + -73.456345, + 45.452339 + ], + [ + -73.456105, + 45.452573 + ], + [ + -73.455893, + 45.452816 + ], + [ + -73.455821, + 45.45291 + ], + [ + -73.45573, + 45.453027 + ], + [ + -73.455536, + 45.453301 + ], + [ + -73.455293, + 45.453751 + ], + [ + -73.455167, + 45.454075 + ], + [ + -73.455022, + 45.454574 + ], + [ + -73.455005, + 45.45464 + ], + [ + -73.454977, + 45.454754 + ], + [ + -73.454933, + 45.455281 + ], + [ + -73.454963, + 45.455744 + ], + [ + -73.455037, + 45.456136 + ], + [ + -73.455173, + 45.456599 + ], + [ + -73.455283, + 45.456847 + ], + [ + -73.455363, + 45.457004 + ], + [ + -73.455596, + 45.457405 + ], + [ + -73.455641, + 45.457486 + ], + [ + -73.456006, + 45.458134 + ], + [ + -73.456229, + 45.458531 + ], + [ + -73.456258, + 45.458583 + ], + [ + -73.456281, + 45.458624 + ], + [ + -73.457234, + 45.46033 + ], + [ + -73.457292, + 45.460433 + ], + [ + -73.45742, + 45.460667 + ], + [ + -73.457486, + 45.46082 + ], + [ + -73.457532, + 45.460955 + ], + [ + -73.457565, + 45.461072 + ], + [ + -73.457606, + 45.46123 + ], + [ + -73.457631, + 45.461396 + ], + [ + -73.457639, + 45.461477 + ], + [ + -73.457625, + 45.461707 + ], + [ + -73.457614, + 45.461848 + ], + [ + -73.457628, + 45.461932 + ], + [ + -73.45763, + 45.461949 + ], + [ + -73.45769, + 45.462033 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.454871, + 45.465468 + ], + [ + -73.454668, + 45.465614 + ], + [ + -73.45456, + 45.465692 + ], + [ + -73.453819, + 45.466205 + ], + [ + -73.453432, + 45.466434 + ], + [ + -73.453035, + 45.466641 + ], + [ + -73.452922, + 45.46669 + ], + [ + -73.452789, + 45.466747 + ], + [ + -73.452589, + 45.466834 + ], + [ + -73.451705, + 45.467139 + ], + [ + -73.451627, + 45.467166 + ], + [ + -73.45158, + 45.467183 + ], + [ + -73.451018, + 45.467377 + ], + [ + -73.450937, + 45.467405 + ], + [ + -73.450156, + 45.467679 + ], + [ + -73.449888, + 45.467769 + ], + [ + -73.449338, + 45.467948 + ], + [ + -73.44837, + 45.46829 + ], + [ + -73.447748, + 45.468524 + ], + [ + -73.447289, + 45.468721 + ], + [ + -73.446438, + 45.469163 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445905, + 45.469485 + ], + [ + -73.445671, + 45.469643 + ], + [ + -73.445475, + 45.469778 + ], + [ + -73.445396, + 45.469832 + ], + [ + -73.445298, + 45.469899 + ], + [ + -73.444328, + 45.470583 + ], + [ + -73.444078, + 45.470759 + ], + [ + -73.44266, + 45.47176 + ], + [ + -73.442644, + 45.471771 + ], + [ + -73.442519, + 45.471859 + ], + [ + -73.441942, + 45.47227 + ], + [ + -73.441022, + 45.472925 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.440777, + 45.473082 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.441371, + 45.47354 + ], + [ + -73.441938, + 45.473928 + ], + [ + -73.442708, + 45.474456 + ], + [ + -73.443366, + 45.474904 + ], + [ + -73.443474, + 45.474978 + ], + [ + -73.44437, + 45.475586 + ], + [ + -73.445005, + 45.476017 + ], + [ + -73.445067, + 45.476058 + ], + [ + -73.445608, + 45.476432 + ], + [ + -73.446237, + 45.47686 + ], + [ + -73.446803, + 45.477247 + ], + [ + -73.446869, + 45.477292 + ], + [ + -73.44719, + 45.47751 + ], + [ + -73.44754, + 45.477747 + ], + [ + -73.448146, + 45.478157 + ], + [ + -73.448648, + 45.478495 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.448868, + 45.478494 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.449299, + 45.478203 + ], + [ + -73.44939, + 45.478141 + ], + [ + -73.451123, + 45.476955 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.453443, + 45.475366 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.455864, + 45.473709 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.45824, + 45.472083 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.460526, + 45.470522 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.462624, + 45.469083 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.463211, + 45.468741 + ], + [ + -73.463569, + 45.468988 + ], + [ + -73.463833, + 45.469169 + ], + [ + -73.464474, + 45.469628 + ], + [ + -73.464837, + 45.469894 + ], + [ + -73.465113, + 45.470096 + ], + [ + -73.465778, + 45.470582 + ], + [ + -73.466301, + 45.470963 + ], + [ + -73.466451, + 45.471073 + ], + [ + -73.467061, + 45.471469 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467869, + 45.471793 + ], + [ + -73.467954, + 45.471482 + ], + [ + -73.467979, + 45.471365 + ], + [ + -73.468005, + 45.471249 + ], + [ + -73.468064, + 45.470898 + ], + [ + -73.468089, + 45.470643 + ], + [ + -73.468112, + 45.470407 + ], + [ + -73.468119, + 45.470155 + ], + [ + -73.468115, + 45.470044 + ], + [ + -73.468111, + 45.469894 + ], + [ + -73.468108, + 45.469818 + ], + [ + -73.468107, + 45.469773 + ], + [ + -73.46805, + 45.4693 + ], + [ + -73.467953, + 45.468835 + ], + [ + -73.467932, + 45.468733 + ], + [ + -73.467793, + 45.468274 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.467733, + 45.467901 + ], + [ + -73.467682, + 45.467773 + ], + [ + -73.467632, + 45.467646 + ], + [ + -73.467536, + 45.46744 + ], + [ + -73.46747, + 45.467137 + ], + [ + -73.467452, + 45.466907 + ], + [ + -73.467452, + 45.466906 + ], + [ + -73.467445, + 45.466824 + ], + [ + -73.469005, + 45.466872 + ], + [ + -73.469004, + 45.466768 + ] + ] + }, + "id": 360, + "properties": { + "id": "544b3590-42f7-43b3-b5be-9215b90567d3", + "data": { + "gtfs": { + "shape_id": "670_2_R" + }, + "segments": [ + { + "distanceMeters": 248, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 91, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 483, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 317, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 42, + "travelTimeSeconds": 7 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 80, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 240, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 62 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7037, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2005.6719818386628, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.86, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 5.1, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.86 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "44eacee6-a348-48cf-aeda-c9ddae958f8e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "59b4f87c-067e-4dc3-856a-07fb245d4fe3", + "c77e59d9-5075-4e39-a183-6bacc1afd03e", + "f5f0a75d-b9e9-4575-845b-09748935c6e0", + "d271cca7-cd7a-4e22-8728-7a598b88fe32", + "3b708726-0db1-43de-b014-b11ddc9fc24a", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "bd9b4c12-08ed-4715-ae67-eb179ed7f974", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "ff779c9a-cd83-463a-8d0c-a93f3584a187", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", + "c8919560-2bb2-4063-8184-8e6c296badbe", + "e80498a8-505d-4215-ba07-7582f8783d8e", + "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "c4061c94-e615-4bca-b219-1ff6ea9657d0", + "c4061c94-e615-4bca-b219-1ff6ea9657d0", + "89553e99-6867-4296-935e-718bb768cb73", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "907f8610-452b-440d-849b-c803b07dedc1", + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "977065eb-9054-495e-befc-5f3b6e0e6046", + "42f48eea-ee59-46f6-9c43-4b63100a50dc", + "51e1600d-418e-4477-9b26-9e5507d72a03", + "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "131616ed-8c78-458b-a65e-78f1aeac1fc7" + ], + "stops": [], + "line_id": "84f64aa8-4fc5-49cf-8503-588f8a79e0ec", + "segments": [ + 0, + 16, + 18, + 23, + 29, + 38, + 40, + 43, + 54, + 68, + 74, + 79, + 87, + 95, + 96, + 100, + 108, + 111, + 115, + 117, + 120, + 125, + 126, + 128, + 130, + 132, + 134, + 137, + 143, + 146, + 157, + 165 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 360, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.448459, + 45.536842 + ], + [ + -73.44835, + 45.536912 + ], + [ + -73.448071, + 45.537128 + ], + [ + -73.447991, + 45.537204 + ], + [ + -73.447918, + 45.537281 + ], + [ + -73.447816, + 45.537429 + ], + [ + -73.447771, + 45.537519 + ], + [ + -73.447701, + 45.537636 + ], + [ + -73.447679, + 45.537709 + ], + [ + -73.447673, + 45.53773 + ], + [ + -73.447635, + 45.53791 + ], + [ + -73.447655, + 45.538145 + ], + [ + -73.447658, + 45.53818 + ], + [ + -73.447598, + 45.53877 + ], + [ + -73.447512, + 45.539058 + ], + [ + -73.447394, + 45.539323 + ], + [ + -73.447278, + 45.53953 + ], + [ + -73.447205, + 45.539653 + ], + [ + -73.447171, + 45.53971 + ], + [ + -73.447123, + 45.539791 + ], + [ + -73.447078, + 45.539849 + ], + [ + -73.447272, + 45.539904 + ], + [ + -73.447396, + 45.539999 + ], + [ + -73.447961, + 45.54043 + ], + [ + -73.448572, + 45.540885 + ], + [ + -73.44916, + 45.541353 + ], + [ + -73.449312, + 45.54147 + ], + [ + -73.449424, + 45.541556 + ], + [ + -73.449532, + 45.541605 + ], + [ + -73.449689, + 45.541677 + ], + [ + -73.449749, + 45.541704 + ], + [ + -73.449964, + 45.541763 + ], + [ + -73.45028, + 45.541808 + ], + [ + -73.450402, + 45.541819 + ], + [ + -73.450524, + 45.54183 + ], + [ + -73.450741, + 45.541822 + ], + [ + -73.450967, + 45.541781 + ], + [ + -73.451107, + 45.541748 + ], + [ + -73.451233, + 45.541718 + ], + [ + -73.451437, + 45.541633 + ], + [ + -73.451796, + 45.541426 + ], + [ + -73.45197, + 45.541296 + ], + [ + -73.452075, + 45.541179 + ], + [ + -73.452235, + 45.540994 + ], + [ + -73.45227, + 45.540954 + ], + [ + -73.452594, + 45.540342 + ], + [ + -73.452706, + 45.539781 + ], + [ + -73.452717, + 45.539726 + ], + [ + -73.452804, + 45.539091 + ], + [ + -73.452904, + 45.538462 + ], + [ + -73.453038, + 45.53771 + ], + [ + -73.45366, + 45.53778 + ], + [ + -73.454051, + 45.537823 + ], + [ + -73.455005, + 45.537945 + ], + [ + -73.456292, + 45.538122 + ], + [ + -73.456445, + 45.538144 + ], + [ + -73.456716, + 45.53818 + ], + [ + -73.456753, + 45.538063 + ], + [ + -73.456906, + 45.537595 + ], + [ + -73.457034, + 45.537289 + ], + [ + -73.457312, + 45.536745 + ], + [ + -73.457525, + 45.536412 + ], + [ + -73.457654, + 45.536215 + ], + [ + -73.457717, + 45.536119 + ], + [ + -73.457866, + 45.535926 + ], + [ + -73.458063, + 45.535706 + ], + [ + -73.458203, + 45.535555 + ], + [ + -73.45852, + 45.535215 + ], + [ + -73.45895, + 45.534833 + ], + [ + -73.459005, + 45.53479 + ], + [ + -73.459195, + 45.53464 + ], + [ + -73.460968, + 45.533133 + ], + [ + -73.461497, + 45.532611 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.462006, + 45.532616 + ], + [ + -73.46239, + 45.532816 + ], + [ + -73.462751, + 45.533003 + ], + [ + -73.463679, + 45.533551 + ], + [ + -73.463873, + 45.533665 + ], + [ + -73.464875, + 45.534543 + ], + [ + -73.465713, + 45.535316 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.468782, + 45.537042 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469941, + 45.537318 + ], + [ + -73.470305, + 45.537406 + ], + [ + -73.470749, + 45.537487 + ], + [ + -73.471335, + 45.537563 + ], + [ + -73.471845, + 45.53759 + ], + [ + -73.471901, + 45.53759 + ], + [ + -73.472146, + 45.537591 + ], + [ + -73.472355, + 45.537591 + ], + [ + -73.473126, + 45.537555 + ], + [ + -73.473826, + 45.537492 + ], + [ + -73.474491, + 45.537431 + ], + [ + -73.474517, + 45.537429 + ], + [ + -73.474599, + 45.537423 + ], + [ + -73.475173, + 45.53738 + ], + [ + -73.47563, + 45.537344 + ], + [ + -73.476192, + 45.537353 + ], + [ + -73.476662, + 45.537394 + ], + [ + -73.477026, + 45.537434 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.477716, + 45.537557 + ], + [ + -73.477854, + 45.537592 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.482443, + 45.538907 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.485756, + 45.54011 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.491356, + 45.541251 + ], + [ + -73.491461, + 45.541175 + ], + [ + -73.491486, + 45.541152 + ], + [ + -73.49185, + 45.54078 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.490724, + 45.539892 + ], + [ + -73.490551, + 45.539825 + ], + [ + -73.490497, + 45.539768 + ], + [ + -73.49051, + 45.539681 + ], + [ + -73.490564, + 45.539666 + ], + [ + -73.49064, + 45.539646 + ], + [ + -73.490709, + 45.539683 + ] + ] + }, + "id": 361, + "properties": { + "id": "afaf7512-b13d-42f1-a199-3a1025c6346b", + "data": { + "gtfs": { + "shape_id": "671_1_A" + }, + "segments": [ + { + "distanceMeters": 165, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 490, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 311, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 56, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 316, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 556, + "travelTimeSeconds": 95 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 36 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5233, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3280.338345936284, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.81, + "travelTimeWithoutDwellTimesSeconds": 900, + "operatingTimeWithLayoverTimeSeconds": 1080, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 900, + "operatingSpeedWithLayoverMetersPerSecond": 4.85, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.81 + }, + "mode": "bus", + "name": "École Jacques-Rousseau", + "color": "#A32638", + "nodes": [ + "25a5f82a-36a7-4a52-af2b-32a681f87765", + "4923c68b-ab12-4ac9-b43c-35ae6563b694", + "3d4b782b-1f81-40fc-b6e4-db01a1a8f864", + "ed2d86bc-14d2-40cc-9b3c-fcf430af3d76", + "78852b27-6481-4593-91bd-0a0ac5e52bda", + "97fd6b08-e74d-4e78-a89d-1a8506473313", + "f1d63efc-c02d-4bb9-828b-ddc2e062546b", + "8a5c9ba1-a597-4c12-90c9-b58f8d4f8d95", + "ead7d270-6dcb-4161-af5c-95bec6715688", + "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "1e4facbf-29da-4515-97c4-4ef86c22290e", + "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", + "06d26eca-08e9-467e-9ff0-9595778162a0", + "abdcf999-0861-4881-a478-42fa957c7f17", + "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "5f672947-8abc-447c-bf60-535abbf76fae", + "31e8057b-0fb0-44bd-83cf-3acad24654ec", + "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", + "411bafbe-bac8-4586-9af4-bc0b3163bdde", + "1c85a97d-9927-406a-a2ae-6f738750a95d" + ], + "stops": [], + "line_id": "e01bec9e-c255-4d5c-a90f-23f867e65133", + "segments": [ + 0, + 11, + 17, + 29, + 43, + 46, + 54, + 62, + 69, + 72, + 74, + 77, + 80, + 90, + 97, + 102, + 114, + 117, + 124, + 129, + 150 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 361, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.490709, + 45.539683 + ], + [ + -73.490762, + 45.539711 + ], + [ + -73.490724, + 45.539892 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.491774, + 45.540689 + ], + [ + -73.491536, + 45.540936 + ], + [ + -73.491291, + 45.541175 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.490595, + 45.540696 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486479, + 45.540151 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482892, + 45.53885 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.480024, + 45.538054 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476948, + 45.537232 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472331, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.46937, + 45.536993 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.46618, + 45.535471 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464118, + 45.533592 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.461306, + 45.532454 + ], + [ + -73.46089, + 45.532868 + ], + [ + -73.460874, + 45.532884 + ], + [ + -73.460757, + 45.533003 + ], + [ + -73.459629, + 45.533974 + ], + [ + -73.459043, + 45.534444 + ], + [ + -73.458963, + 45.534509 + ], + [ + -73.458731, + 45.534693 + ], + [ + -73.458241, + 45.535152 + ], + [ + -73.457986, + 45.535404 + ], + [ + -73.457781, + 45.535638 + ], + [ + -73.457342, + 45.536214 + ], + [ + -73.457298, + 45.536286 + ], + [ + -73.45713, + 45.536556 + ], + [ + -73.456948, + 45.536857 + ], + [ + -73.456811, + 45.537145 + ], + [ + -73.456744, + 45.5373 + ], + [ + -73.456664, + 45.537487 + ], + [ + -73.456514, + 45.537935 + ], + [ + -73.456485, + 45.538022 + ], + [ + -73.455771, + 45.537926 + ], + [ + -73.455426, + 45.53788 + ], + [ + -73.455036, + 45.537828 + ], + [ + -73.454083, + 45.537706 + ], + [ + -73.453207, + 45.537595 + ], + [ + -73.453056, + 45.537575 + ], + [ + -73.453038, + 45.53771 + ], + [ + -73.452919, + 45.538378 + ], + [ + -73.452904, + 45.538462 + ], + [ + -73.452804, + 45.539091 + ], + [ + -73.452721, + 45.5397 + ], + [ + -73.452717, + 45.539726 + ], + [ + -73.452594, + 45.540342 + ], + [ + -73.452358, + 45.540787 + ], + [ + -73.45227, + 45.540954 + ], + [ + -73.452075, + 45.541179 + ], + [ + -73.45197, + 45.541296 + ], + [ + -73.451932, + 45.541324 + ], + [ + -73.451796, + 45.541426 + ], + [ + -73.451437, + 45.541633 + ], + [ + -73.451233, + 45.541718 + ], + [ + -73.450967, + 45.541781 + ], + [ + -73.450741, + 45.541822 + ], + [ + -73.450641, + 45.541826 + ], + [ + -73.450524, + 45.54183 + ], + [ + -73.450402, + 45.541819 + ], + [ + -73.45028, + 45.541808 + ], + [ + -73.449964, + 45.541763 + ], + [ + -73.449749, + 45.541704 + ], + [ + -73.449532, + 45.541605 + ], + [ + -73.449424, + 45.541556 + ], + [ + -73.449312, + 45.54147 + ], + [ + -73.44916, + 45.541353 + ], + [ + -73.448572, + 45.540885 + ], + [ + -73.447961, + 45.54043 + ], + [ + -73.447559, + 45.540123 + ], + [ + -73.447272, + 45.539904 + ], + [ + -73.447182, + 45.539732 + ], + [ + -73.447171, + 45.53971 + ], + [ + -73.447278, + 45.53953 + ], + [ + -73.447394, + 45.539323 + ], + [ + -73.447512, + 45.539058 + ], + [ + -73.447598, + 45.53877 + ], + [ + -73.447655, + 45.538213 + ], + [ + -73.447658, + 45.53818 + ], + [ + -73.447635, + 45.53791 + ], + [ + -73.447673, + 45.53773 + ], + [ + -73.447679, + 45.537709 + ], + [ + -73.447701, + 45.537636 + ], + [ + -73.447771, + 45.537519 + ], + [ + -73.447816, + 45.537429 + ], + [ + -73.447918, + 45.537281 + ], + [ + -73.447991, + 45.537204 + ], + [ + -73.448071, + 45.537128 + ], + [ + -73.44835, + 45.536912 + ], + [ + -73.448776, + 45.536639 + ] + ] + }, + "id": 362, + "properties": { + "id": "9c35ae7b-af1f-41da-9054-a1f81f46584f", + "data": { + "gtfs": { + "shape_id": "671_1_R" + }, + "segments": [ + { + "distanceMeters": 318, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 310, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 353, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 102, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 371, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 36 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5235, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3280.338345936284, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.82, + "travelTimeWithoutDwellTimesSeconds": 900, + "operatingTimeWithLayoverTimeSeconds": 1080, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 900, + "operatingSpeedWithLayoverMetersPerSecond": 4.85, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.82 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "1c85a97d-9927-406a-a2ae-6f738750a95d", + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "ce58f095-9b51-4521-8a41-e64bfb0df31e", + "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", + "65003b15-0baf-4f82-9e15-665e17fd1c75", + "81b3573e-d948-478d-a011-db20e21b0c62", + "def08726-b847-4fc6-b901-78e04519a492", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "3b70b024-5c5b-4081-8c70-3fc026422289", + "1e4facbf-29da-4515-97c4-4ef86c22290e", + "85594754-b583-4735-aac6-bc45902705ca", + "ead7d270-6dcb-4161-af5c-95bec6715688", + "c24ac61d-1b21-4358-b45f-8dd4921fc769", + "f1d63efc-c02d-4bb9-828b-ddc2e062546b", + "fce7a113-2e0c-4a0f-922a-957670252ea1", + "e5c2d9f4-1be6-458f-854f-8103a3048b8c", + "74325106-fd46-4be2-9872-2d362cabf10d", + "97fd6b08-e74d-4e78-a89d-1a8506473313", + "78852b27-6481-4593-91bd-0a0ac5e52bda", + "ed2d86bc-14d2-40cc-9b3c-fcf430af3d76", + "3d4b782b-1f81-40fc-b6e4-db01a1a8f864", + "4923c68b-ab12-4ac9-b43c-35ae6563b694", + "25a5f82a-36a7-4a52-af2b-32a681f87765" + ], + "stops": [], + "line_id": "e01bec9e-c255-4d5c-a90f-23f867e65133", + "segments": [ + 0, + 12, + 22, + 27, + 36, + 45, + 57, + 67, + 80, + 86, + 97, + 100, + 107, + 113, + 116, + 119, + 122, + 125, + 128, + 138, + 152, + 158 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 362, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.443772, + 45.53457 + ], + [ + -73.443379, + 45.535204 + ], + [ + -73.44311, + 45.535924 + ], + [ + -73.442872, + 45.536513 + ], + [ + -73.442839, + 45.536594 + ], + [ + -73.442686, + 45.536815 + ], + [ + -73.442459, + 45.537008 + ], + [ + -73.441939, + 45.537372 + ], + [ + -73.441569, + 45.537651 + ], + [ + -73.4412, + 45.537934 + ], + [ + -73.441098, + 45.538047 + ], + [ + -73.441023, + 45.538164 + ], + [ + -73.440957, + 45.538285 + ], + [ + -73.440917, + 45.538393 + ], + [ + -73.440907, + 45.538487 + ], + [ + -73.440906, + 45.538501 + ], + [ + -73.440899, + 45.538573 + ], + [ + -73.440902, + 45.5386 + ], + [ + -73.440917, + 45.538748 + ], + [ + -73.440944, + 45.538829 + ], + [ + -73.441004, + 45.538991 + ], + [ + -73.441122, + 45.539153 + ], + [ + -73.441242, + 45.539293 + ], + [ + -73.441387, + 45.539397 + ], + [ + -73.44151, + 45.539487 + ], + [ + -73.441646, + 45.539559 + ], + [ + -73.441759, + 45.539614 + ], + [ + -73.441896, + 45.53968 + ], + [ + -73.442001, + 45.539712 + ], + [ + -73.442205, + 45.539784 + ], + [ + -73.442456, + 45.539852 + ], + [ + -73.44267, + 45.539892 + ], + [ + -73.443365, + 45.540017 + ], + [ + -73.4435, + 45.540041 + ], + [ + -73.44377, + 45.540109 + ], + [ + -73.44408, + 45.540185 + ], + [ + -73.444216, + 45.540244 + ], + [ + -73.444375, + 45.540325 + ], + [ + -73.444511, + 45.54041 + ], + [ + -73.44545, + 45.5411 + ], + [ + -73.445503, + 45.54114 + ], + [ + -73.4453, + 45.541276 + ], + [ + -73.444838, + 45.541585 + ], + [ + -73.443987, + 45.542147 + ], + [ + -73.441568, + 45.543693 + ], + [ + -73.44146, + 45.543777 + ], + [ + -73.441366, + 45.543851 + ], + [ + -73.441469, + 45.543941 + ], + [ + -73.44199, + 45.544319 + ], + [ + -73.442654, + 45.544846 + ], + [ + -73.442803, + 45.544955 + ], + [ + -73.443348, + 45.545354 + ], + [ + -73.443962, + 45.545827 + ], + [ + -73.444033, + 45.545881 + ], + [ + -73.444459, + 45.546196 + ], + [ + -73.444546, + 45.546255 + ], + [ + -73.44465, + 45.546309 + ], + [ + -73.444819, + 45.546349 + ], + [ + -73.44535, + 45.546453 + ], + [ + -73.446356, + 45.54662 + ], + [ + -73.446934, + 45.547003 + ], + [ + -73.447483, + 45.547458 + ], + [ + -73.447629, + 45.547579 + ], + [ + -73.447947, + 45.54746 + ], + [ + -73.448002, + 45.54744 + ], + [ + -73.448251, + 45.54734 + ], + [ + -73.448339, + 45.547305 + ], + [ + -73.448543, + 45.547215 + ], + [ + -73.448765, + 45.547097 + ], + [ + -73.448831, + 45.547062 + ], + [ + -73.449103, + 45.546914 + ], + [ + -73.449271, + 45.546806 + ], + [ + -73.449736, + 45.546505 + ], + [ + -73.449968, + 45.546338 + ], + [ + -73.450509, + 45.545965 + ], + [ + -73.4506, + 45.545902 + ], + [ + -73.451253, + 45.545453 + ], + [ + -73.452328, + 45.544699 + ], + [ + -73.452491, + 45.544585 + ], + [ + -73.453705, + 45.543758 + ], + [ + -73.453772, + 45.543712 + ], + [ + -73.454376, + 45.543288 + ], + [ + -73.454746, + 45.543027 + ], + [ + -73.455166, + 45.542732 + ], + [ + -73.455282, + 45.54266 + ], + [ + -73.455702, + 45.542678 + ], + [ + -73.455971, + 45.542683 + ], + [ + -73.456034, + 45.542341 + ], + [ + -73.456127, + 45.541828 + ], + [ + -73.456281, + 45.541837 + ], + [ + -73.45643, + 45.541833 + ], + [ + -73.456479, + 45.541824 + ], + [ + -73.456523, + 45.541801 + ], + [ + -73.45665, + 45.541711 + ], + [ + -73.45695, + 45.541509 + ], + [ + -73.457486, + 45.541136 + ], + [ + -73.457586, + 45.541064 + ], + [ + -73.458502, + 45.54043 + ], + [ + -73.458577, + 45.540376 + ], + [ + -73.459325, + 45.539858 + ], + [ + -73.459859, + 45.539489 + ], + [ + -73.459971, + 45.539411 + ], + [ + -73.460057, + 45.539352 + ], + [ + -73.460539, + 45.539018 + ], + [ + -73.460715, + 45.538897 + ], + [ + -73.460897, + 45.538771 + ], + [ + -73.461553, + 45.538316 + ], + [ + -73.461709, + 45.538208 + ], + [ + -73.461864, + 45.5381 + ], + [ + -73.462556, + 45.537575 + ], + [ + -73.462834, + 45.537383 + ], + [ + -73.462922, + 45.537322 + ], + [ + -73.463661, + 45.536866 + ], + [ + -73.464128, + 45.536607 + ], + [ + -73.464185, + 45.536575 + ], + [ + -73.464357, + 45.53646 + ], + [ + -73.4648, + 45.536162 + ], + [ + -73.465211, + 45.53589 + ], + [ + -73.465655, + 45.535595 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.468783, + 45.537042 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469941, + 45.537318 + ], + [ + -73.470305, + 45.537406 + ], + [ + -73.470749, + 45.537487 + ], + [ + -73.471335, + 45.537563 + ], + [ + -73.471845, + 45.53759 + ], + [ + -73.471914, + 45.53759 + ], + [ + -73.472146, + 45.537591 + ], + [ + -73.472355, + 45.537591 + ], + [ + -73.473126, + 45.537555 + ], + [ + -73.473826, + 45.537492 + ], + [ + -73.474504, + 45.53743 + ], + [ + -73.474517, + 45.537429 + ], + [ + -73.474599, + 45.537423 + ], + [ + -73.475173, + 45.53738 + ], + [ + -73.47563, + 45.537344 + ], + [ + -73.476192, + 45.537353 + ], + [ + -73.476662, + 45.537394 + ], + [ + -73.477026, + 45.537434 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.477867, + 45.537596 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.482443, + 45.538908 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.485756, + 45.54011 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.491356, + 45.541251 + ], + [ + -73.491461, + 45.541175 + ], + [ + -73.491486, + 45.541152 + ], + [ + -73.491851, + 45.54078 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.490724, + 45.539892 + ], + [ + -73.490551, + 45.539825 + ], + [ + -73.490497, + 45.539768 + ], + [ + -73.49051, + 45.539681 + ], + [ + -73.490564, + 45.539666 + ], + [ + -73.49064, + 45.539646 + ], + [ + -73.490709, + 45.539683 + ] + ] + }, + "id": 363, + "properties": { + "id": "3b81a721-ed00-42e6-a329-12c86fd91ef8", + "data": { + "gtfs": { + "shape_id": "672_1_A" + }, + "segments": [ + { + "distanceMeters": 228, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 437, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 310, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 73, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 700, + "travelTimeSeconds": 122 + }, + { + "distanceMeters": 109, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 556, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 36 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6555, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3687.4558134210874, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.75, + "travelTimeWithoutDwellTimesSeconds": 1140, + "operatingTimeWithLayoverTimeSeconds": 1320, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1140, + "operatingSpeedWithLayoverMetersPerSecond": 4.97, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.75 + }, + "mode": "bus", + "name": "École Jacques-Rousseau", + "color": "#A32638", + "nodes": [ + "210e532b-2acc-4a3e-b173-3471add098b1", + "5360d4c3-b5aa-452d-a69b-73fcfc24260f", + "90aff802-7f58-4407-a26e-45f80682eeaf", + "6ad75842-382c-44ee-b7d6-fd3532656bb0", + "1f21bce0-b8ed-434c-ade7-9416eb8a180a", + "5251f580-cc4c-4e24-adc5-09ece02102d8", + "146c0089-3caf-43e6-be7c-9f8a4573762c", + "5f232e4f-49b4-4ca7-8ee6-3aec9ca49e66", + "92a52522-0981-490b-a541-e3514efa3ed8", + "92a52522-0981-490b-a541-e3514efa3ed8", + "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", + "946a029d-014a-45ca-adcd-e5b8e3927d52", + "43f18805-a4b1-4fc6-a1c9-787eb883bcde", + "e4670d3f-1aa4-4e69-ac7c-0f6fbe1ebddb", + "3f5db866-fafa-412d-a611-8e8ceedc9d66", + "a392bf4c-9790-451e-a9bc-51428fa10a69", + "faaa7c6f-4c6c-443c-99d4-d4c617571545", + "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", + "06d26eca-08e9-467e-9ff0-9595778162a0", + "abdcf999-0861-4881-a478-42fa957c7f17", + "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "5f672947-8abc-447c-bf60-535abbf76fae", + "31e8057b-0fb0-44bd-83cf-3acad24654ec", + "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", + "411bafbe-bac8-4586-9af4-bc0b3163bdde", + "1c85a97d-9927-406a-a2ae-6f738750a95d" + ], + "stops": [], + "line_id": "939f13e7-a607-453b-a783-b43d443b0225", + "segments": [ + 0, + 3, + 15, + 26, + 32, + 39, + 45, + 52, + 61, + 65, + 74, + 77, + 79, + 82, + 104, + 107, + 113, + 118, + 128, + 135, + 140, + 151, + 155, + 161, + 166, + 187 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 363, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.490709, + 45.539683 + ], + [ + -73.490762, + 45.539711 + ], + [ + -73.490724, + 45.539892 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.491774, + 45.540689 + ], + [ + -73.491536, + 45.540936 + ], + [ + -73.491291, + 45.541175 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.490595, + 45.540697 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.48648, + 45.540152 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482894, + 45.53885 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.480026, + 45.538054 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476951, + 45.537232 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472334, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.469374, + 45.536994 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466182, + 45.535474 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.465509, + 45.535692 + ], + [ + -73.4648, + 45.536162 + ], + [ + -73.464357, + 45.53646 + ], + [ + -73.464185, + 45.536575 + ], + [ + -73.463661, + 45.536866 + ], + [ + -73.462922, + 45.537322 + ], + [ + -73.462834, + 45.537383 + ], + [ + -73.462556, + 45.537575 + ], + [ + -73.461864, + 45.5381 + ], + [ + -73.461553, + 45.538316 + ], + [ + -73.460897, + 45.538771 + ], + [ + -73.460751, + 45.538872 + ], + [ + -73.460539, + 45.539018 + ], + [ + -73.460057, + 45.539352 + ], + [ + -73.459971, + 45.539411 + ], + [ + -73.459859, + 45.539489 + ], + [ + -73.459325, + 45.539858 + ], + [ + -73.45858, + 45.540374 + ], + [ + -73.458577, + 45.540376 + ], + [ + -73.458502, + 45.54043 + ], + [ + -73.457586, + 45.541064 + ], + [ + -73.457486, + 45.541136 + ], + [ + -73.45695, + 45.541509 + ], + [ + -73.45665, + 45.541711 + ], + [ + -73.456523, + 45.541801 + ], + [ + -73.456479, + 45.541824 + ], + [ + -73.45643, + 45.541833 + ], + [ + -73.456281, + 45.541837 + ], + [ + -73.456127, + 45.541828 + ], + [ + -73.455834, + 45.54181 + ], + [ + -73.455731, + 45.542483 + ], + [ + -73.455702, + 45.542678 + ], + [ + -73.455282, + 45.54266 + ], + [ + -73.455166, + 45.542732 + ], + [ + -73.454376, + 45.543288 + ], + [ + -73.453888, + 45.543631 + ], + [ + -73.453772, + 45.543712 + ], + [ + -73.452722, + 45.544428 + ], + [ + -73.452491, + 45.544585 + ], + [ + -73.451253, + 45.545453 + ], + [ + -73.450674, + 45.545851 + ], + [ + -73.4506, + 45.545902 + ], + [ + -73.449968, + 45.546338 + ], + [ + -73.449736, + 45.546505 + ], + [ + -73.449271, + 45.546806 + ], + [ + -73.449103, + 45.546914 + ], + [ + -73.448831, + 45.547062 + ], + [ + -73.448543, + 45.547215 + ], + [ + -73.448339, + 45.547305 + ], + [ + -73.448002, + 45.54744 + ], + [ + -73.447947, + 45.54746 + ], + [ + -73.447769, + 45.547527 + ], + [ + -73.447629, + 45.547579 + ], + [ + -73.447476, + 45.547452 + ], + [ + -73.446934, + 45.547003 + ], + [ + -73.446356, + 45.54662 + ], + [ + -73.44535, + 45.546453 + ], + [ + -73.444819, + 45.546349 + ], + [ + -73.44465, + 45.546309 + ], + [ + -73.444546, + 45.546255 + ], + [ + -73.444459, + 45.546196 + ], + [ + -73.444101, + 45.545932 + ], + [ + -73.444033, + 45.545881 + ], + [ + -73.443348, + 45.545354 + ], + [ + -73.442654, + 45.544846 + ], + [ + -73.44199, + 45.544319 + ], + [ + -73.441469, + 45.543941 + ], + [ + -73.44143, + 45.543907 + ], + [ + -73.441366, + 45.543851 + ], + [ + -73.441568, + 45.543693 + ], + [ + -73.441604, + 45.543671 + ], + [ + -73.443987, + 45.542147 + ], + [ + -73.444838, + 45.541585 + ], + [ + -73.44542, + 45.541195 + ], + [ + -73.445503, + 45.54114 + ], + [ + -73.444511, + 45.54041 + ], + [ + -73.444375, + 45.540325 + ], + [ + -73.444216, + 45.540244 + ], + [ + -73.44408, + 45.540185 + ], + [ + -73.443864, + 45.540132 + ], + [ + -73.44377, + 45.540109 + ], + [ + -73.4435, + 45.540041 + ], + [ + -73.44267, + 45.539892 + ], + [ + -73.442456, + 45.539852 + ], + [ + -73.442205, + 45.539784 + ], + [ + -73.442139, + 45.539761 + ], + [ + -73.442001, + 45.539712 + ], + [ + -73.441896, + 45.53968 + ], + [ + -73.441646, + 45.539559 + ], + [ + -73.44151, + 45.539487 + ], + [ + -73.441387, + 45.539397 + ], + [ + -73.441242, + 45.539293 + ], + [ + -73.441122, + 45.539153 + ], + [ + -73.441004, + 45.538991 + ], + [ + -73.440944, + 45.538829 + ], + [ + -73.440917, + 45.538748 + ], + [ + -73.440908, + 45.538662 + ], + [ + -73.440902, + 45.5386 + ], + [ + -73.440899, + 45.538573 + ], + [ + -73.440907, + 45.538487 + ], + [ + -73.440917, + 45.538393 + ], + [ + -73.440957, + 45.538285 + ], + [ + -73.441023, + 45.538164 + ], + [ + -73.441098, + 45.538047 + ], + [ + -73.4412, + 45.537934 + ], + [ + -73.441569, + 45.537651 + ], + [ + -73.441939, + 45.537372 + ], + [ + -73.442459, + 45.537008 + ], + [ + -73.442686, + 45.536815 + ], + [ + -73.442791, + 45.536664 + ], + [ + -73.442839, + 45.536594 + ], + [ + -73.44311, + 45.535924 + ], + [ + -73.443379, + 45.535204 + ], + [ + -73.443894, + 45.534372 + ], + [ + -73.44395, + 45.534271 + ] + ] + }, + "id": 364, + "properties": { + "id": "6e605347-0128-4d13-89f5-ef3d67dc4e7e", + "data": { + "gtfs": { + "shape_id": "672_1_R" + }, + "segments": [ + { + "distanceMeters": 318, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 310, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 587, + "travelTimeSeconds": 102 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 356, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 127, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 356, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 307, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 50 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6549, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3687.4558134210874, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.74, + "travelTimeWithoutDwellTimesSeconds": 1140, + "operatingTimeWithLayoverTimeSeconds": 1320, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1140, + "operatingSpeedWithLayoverMetersPerSecond": 4.96, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.74 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "1c85a97d-9927-406a-a2ae-6f738750a95d", + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "ce58f095-9b51-4521-8a41-e64bfb0df31e", + "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", + "65003b15-0baf-4f82-9e15-665e17fd1c75", + "81b3573e-d948-478d-a011-db20e21b0c62", + "def08726-b847-4fc6-b901-78e04519a492", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "3b70b024-5c5b-4081-8c70-3fc026422289", + "3f5db866-fafa-412d-a611-8e8ceedc9d66", + "6fd0bc88-4e0d-40ae-bdaa-413bd47146b0", + "1254d090-1d68-478c-a4fc-972cd246c948", + "43f18805-a4b1-4fc6-a1c9-787eb883bcde", + "946a029d-014a-45ca-adcd-e5b8e3927d52", + "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", + "92a52522-0981-490b-a541-e3514efa3ed8", + "5f232e4f-49b4-4ca7-8ee6-3aec9ca49e66", + "146c0089-3caf-43e6-be7c-9f8a4573762c", + "5251f580-cc4c-4e24-adc5-09ece02102d8", + "1f21bce0-b8ed-434c-ade7-9416eb8a180a", + "6ad75842-382c-44ee-b7d6-fd3532656bb0", + "90aff802-7f58-4407-a26e-45f80682eeaf", + "5360d4c3-b5aa-452d-a69b-73fcfc24260f", + "210e532b-2acc-4a3e-b173-3471add098b1" + ], + "stops": [], + "line_id": "939f13e7-a607-453b-a783-b43d443b0225", + "segments": [ + 0, + 12, + 22, + 27, + 36, + 45, + 57, + 67, + 80, + 94, + 100, + 113, + 118, + 120, + 123, + 134, + 144, + 150, + 156, + 162, + 168, + 179, + 192 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 364, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.4614, + 45.561625 + ], + [ + -73.461679, + 45.561618 + ], + [ + -73.461978, + 45.561613 + ], + [ + -73.46207, + 45.561609 + ], + [ + -73.462165, + 45.561609 + ], + [ + -73.46239, + 45.561604 + ], + [ + -73.462462, + 45.561604 + ], + [ + -73.463036, + 45.561587 + ], + [ + -73.463459, + 45.561555 + ], + [ + -73.463851, + 45.561519 + ], + [ + -73.464159, + 45.561474 + ], + [ + -73.464383, + 45.56143 + ], + [ + -73.464635, + 45.561385 + ], + [ + -73.464943, + 45.561331 + ], + [ + -73.465298, + 45.56125 + ], + [ + -73.465606, + 45.561173 + ], + [ + -73.465739, + 45.561136 + ], + [ + -73.465993, + 45.561066 + ], + [ + -73.466384, + 45.560949 + ], + [ + -73.466692, + 45.560841 + ], + [ + -73.46697, + 45.560742 + ], + [ + -73.467261, + 45.560621 + ], + [ + -73.467525, + 45.560508 + ], + [ + -73.467816, + 45.560373 + ], + [ + -73.467979, + 45.560279 + ], + [ + -73.468117, + 45.560229 + ], + [ + -73.468235, + 45.560175 + ], + [ + -73.468563, + 45.559978 + ], + [ + -73.468878, + 45.559766 + ], + [ + -73.468988, + 45.55969 + ], + [ + -73.469567, + 45.559298 + ], + [ + -73.469573, + 45.559295 + ], + [ + -73.469855, + 45.559096 + ], + [ + -73.470074, + 45.558948 + ], + [ + -73.470224, + 45.55884 + ], + [ + -73.470906, + 45.55839 + ], + [ + -73.471028, + 45.558322 + ], + [ + -73.470903, + 45.558228 + ], + [ + -73.470033, + 45.557566 + ], + [ + -73.469941, + 45.557497 + ], + [ + -73.469575, + 45.55722 + ], + [ + -73.469106, + 45.556862 + ], + [ + -73.468985, + 45.55677 + ], + [ + -73.468826, + 45.556648 + ], + [ + -73.467509, + 45.555651 + ], + [ + -73.466771, + 45.555092 + ], + [ + -73.465456, + 45.554095 + ], + [ + -73.464874, + 45.553655 + ], + [ + -73.464766, + 45.553574 + ], + [ + -73.464651, + 45.553651 + ], + [ + -73.464574, + 45.553704 + ], + [ + -73.464098, + 45.55401 + ], + [ + -73.464057, + 45.55407 + ], + [ + -73.464004, + 45.554145 + ], + [ + -73.46269, + 45.554985 + ], + [ + -73.462576, + 45.555058 + ], + [ + -73.462207, + 45.555292 + ], + [ + -73.461991, + 45.555431 + ], + [ + -73.461967, + 45.555443 + ], + [ + -73.461925, + 45.555463 + ], + [ + -73.461827, + 45.555485 + ], + [ + -73.461719, + 45.555453 + ], + [ + -73.461661, + 45.555436 + ], + [ + -73.461575, + 45.555374 + ], + [ + -73.461529, + 45.555341 + ], + [ + -73.461353, + 45.555197 + ], + [ + -73.461155, + 45.555031 + ], + [ + -73.461091, + 45.55497 + ], + [ + -73.461041, + 45.554923 + ], + [ + -73.460904, + 45.55472 + ], + [ + -73.460843, + 45.554611 + ], + [ + -73.460476, + 45.553964 + ], + [ + -73.46013, + 45.553398 + ], + [ + -73.460074, + 45.553307 + ], + [ + -73.45984, + 45.552911 + ], + [ + -73.459717, + 45.552763 + ], + [ + -73.459495, + 45.552583 + ], + [ + -73.458867, + 45.552123 + ], + [ + -73.45828, + 45.551723 + ], + [ + -73.458174, + 45.551651 + ], + [ + -73.456341, + 45.550263 + ], + [ + -73.456272, + 45.55021 + ], + [ + -73.454367, + 45.548763 + ], + [ + -73.454302, + 45.548714 + ], + [ + -73.454269, + 45.548689 + ], + [ + -73.452377, + 45.547251 + ], + [ + -73.452243, + 45.547149 + ], + [ + -73.452485, + 45.546992 + ], + [ + -73.452859, + 45.546749 + ], + [ + -73.452912, + 45.546715 + ], + [ + -73.453255, + 45.546529 + ], + [ + -73.453306, + 45.546494 + ], + [ + -73.45375, + 45.546193 + ], + [ + -73.454098, + 45.545958 + ], + [ + -73.454416, + 45.545745 + ], + [ + -73.454536, + 45.545665 + ], + [ + -73.454687, + 45.545566 + ], + [ + -73.454901, + 45.545427 + ], + [ + -73.455048, + 45.545333 + ], + [ + -73.455094, + 45.545301 + ], + [ + -73.455158, + 45.545252 + ], + [ + -73.455247, + 45.545184 + ], + [ + -73.455332, + 45.545094 + ], + [ + -73.455461, + 45.54495 + ], + [ + -73.455559, + 45.544829 + ], + [ + -73.456108, + 45.544969 + ], + [ + -73.456291, + 45.545005 + ], + [ + -73.456381, + 45.545018 + ], + [ + -73.456413, + 45.545022 + ], + [ + -73.456506, + 45.545025 + ], + [ + -73.456655, + 45.545026 + ], + [ + -73.45681, + 45.545021 + ], + [ + -73.457082, + 45.545011 + ], + [ + -73.457324, + 45.544996 + ], + [ + -73.457656, + 45.544978 + ], + [ + -73.458864, + 45.54493 + ], + [ + -73.459543, + 45.544902 + ], + [ + -73.461269, + 45.544812 + ], + [ + -73.461426, + 45.544804 + ], + [ + -73.461578, + 45.544835 + ], + [ + -73.462079, + 45.544816 + ], + [ + -73.462661, + 45.544802 + ], + [ + -73.463226, + 45.544806 + ], + [ + -73.463613, + 45.544792 + ], + [ + -73.463647, + 45.544792 + ], + [ + -73.463763, + 45.544793 + ], + [ + -73.464006, + 45.544774 + ], + [ + -73.464279, + 45.544749 + ], + [ + -73.464624, + 45.544709 + ], + [ + -73.46498, + 45.544652 + ], + [ + -73.465084, + 45.544635 + ], + [ + -73.465297, + 45.544589 + ], + [ + -73.465549, + 45.544534 + ], + [ + -73.465651, + 45.544509 + ], + [ + -73.465759, + 45.544479 + ], + [ + -73.465837, + 45.544423 + ], + [ + -73.465862, + 45.544419 + ], + [ + -73.466248, + 45.544329 + ], + [ + -73.46648, + 45.54427 + ], + [ + -73.466764, + 45.544194 + ], + [ + -73.466769, + 45.544194 + ], + [ + -73.467143, + 45.544086 + ], + [ + -73.467484, + 45.543974 + ], + [ + -73.467587, + 45.543933 + ], + [ + -73.467632, + 45.543915 + ], + [ + -73.468074, + 45.543744 + ], + [ + -73.468467, + 45.543591 + ], + [ + -73.468689, + 45.543484 + ], + [ + -73.468945, + 45.543367 + ], + [ + -73.469346, + 45.54316 + ], + [ + -73.469557, + 45.543052 + ], + [ + -73.469727, + 45.542945 + ], + [ + -73.469836, + 45.542876 + ], + [ + -73.470253, + 45.542604 + ], + [ + -73.470294, + 45.542577 + ], + [ + -73.47055, + 45.542478 + ], + [ + -73.470835, + 45.54232 + ], + [ + -73.471384, + 45.542 + ], + [ + -73.471513, + 45.541905 + ], + [ + -73.47173, + 45.541959 + ], + [ + -73.471833, + 45.542019 + ], + [ + -73.472231, + 45.542247 + ], + [ + -73.472636, + 45.54249 + ], + [ + -73.473362, + 45.542963 + ], + [ + -73.473831, + 45.543264 + ], + [ + -73.473915, + 45.543318 + ], + [ + -73.474124, + 45.54344 + ], + [ + -73.474404, + 45.543587 + ], + [ + -73.474586, + 45.543683 + ], + [ + -73.475053, + 45.543884 + ], + [ + -73.475109, + 45.543908 + ], + [ + -73.475416, + 45.544033 + ], + [ + -73.475463, + 45.544052 + ], + [ + -73.475489, + 45.544062 + ], + [ + -73.475906, + 45.544232 + ], + [ + -73.476368, + 45.544484 + ], + [ + -73.476738, + 45.5447 + ], + [ + -73.477125, + 45.544952 + ], + [ + -73.47749, + 45.545227 + ], + [ + -73.478085, + 45.54574 + ], + [ + -73.478088, + 45.545743 + ], + [ + -73.478167, + 45.545816 + ], + [ + -73.478252, + 45.545902 + ], + [ + -73.479053, + 45.546743 + ], + [ + -73.47929, + 45.546982 + ], + [ + -73.479428, + 45.54712 + ], + [ + -73.479532, + 45.547225 + ], + [ + -73.479872, + 45.547514 + ], + [ + -73.479981, + 45.547607 + ], + [ + -73.480465, + 45.547976 + ], + [ + -73.480787, + 45.548206 + ], + [ + -73.481574, + 45.548732 + ], + [ + -73.481866, + 45.548943 + ], + [ + -73.481961, + 45.549011 + ], + [ + -73.482061, + 45.549092 + ], + [ + -73.482468, + 45.549434 + ], + [ + -73.482621, + 45.549591 + ], + [ + -73.48267, + 45.549641 + ], + [ + -73.482956, + 45.549956 + ], + [ + -73.483212, + 45.550235 + ], + [ + -73.483484, + 45.550524 + ], + [ + -73.483692, + 45.550744 + ], + [ + -73.483956, + 45.551023 + ], + [ + -73.48424, + 45.550878 + ], + [ + -73.485059, + 45.550458 + ], + [ + -73.485528, + 45.550218 + ], + [ + -73.485955, + 45.549961 + ], + [ + -73.489407, + 45.547816 + ], + [ + -73.48951, + 45.547751 + ], + [ + -73.490714, + 45.547006 + ], + [ + -73.491216, + 45.546506 + ], + [ + -73.491431, + 45.546368 + ], + [ + -73.491829, + 45.546111 + ], + [ + -73.491911, + 45.546057 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.491974, + 45.545187 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.491356, + 45.541251 + ], + [ + -73.491461, + 45.541175 + ], + [ + -73.491486, + 45.541152 + ], + [ + -73.49185, + 45.54078 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.490724, + 45.539892 + ], + [ + -73.490551, + 45.539825 + ], + [ + -73.490497, + 45.539768 + ], + [ + -73.49051, + 45.539681 + ], + [ + -73.490564, + 45.539666 + ], + [ + -73.49064, + 45.539646 + ], + [ + -73.490709, + 45.539683 + ] + ] + }, + "id": 365, + "properties": { + "id": "67a0b758-6fc3-458a-9867-78e9f9b0b7f7", + "data": { + "gtfs": { + "shape_id": "673_1_A" + }, + "segments": [ + { + "distanceMeters": 345, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 366, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 378, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 577, + "travelTimeSeconds": 96 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 511, + "travelTimeSeconds": 85 + }, + { + "distanceMeters": 619, + "travelTimeSeconds": 103 + }, + { + "distanceMeters": 435, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 464, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 1033, + "travelTimeSeconds": 172 + }, + { + "distanceMeters": 522, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 34 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7921, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3343.1513902454826, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 5.28, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6 + }, + "mode": "bus", + "name": "École Jacques-Rousseau", + "color": "#A32638", + "nodes": [ + "28b7e465-7627-4587-950e-0fe104f1bac7", + "83389414-0049-46f6-a04b-557250511611", + "5ed15359-4097-46e8-93c0-1b63029d1081", + "8ece351b-2186-4cfe-9624-9d1eacc2181d", + "1e6b54ae-f11e-4726-a36f-9c4411688776", + "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", + "2e8375c2-0f15-448a-8203-e8a29699849e", + "d9f7a5bd-7489-48e7-93cf-4368a09e2676", + "714fccbf-a3ad-45ea-8e3f-be54db61f028", + "bb4626e2-c410-497b-977c-2cc1b65d7b57", + "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", + "19d70945-d3db-430f-90e2-ad67901fda8d", + "7297ee1d-b36d-46fd-b6df-e9807a5791cf", + "ed9c5edc-a8fc-42c1-8283-02b881c76ff4", + "81ceaeba-df2d-476d-a80e-d7112cda70cb", + "50390f49-dc4e-4a3a-8b7e-5dae5f17aa70", + "3a5ea563-a764-4bb6-b2d3-d98a1c377161", + "0e8b7968-4242-43b0-a1a6-300cb3c93219", + "06cdca3a-f2d1-4f41-837c-693f8619463c", + "221d32b3-ef8a-416e-a402-91b2f0007208", + "2d7687a5-f458-4ce1-a3df-9639d89c0154", + "411bafbe-bac8-4586-9af4-bc0b3163bdde", + "1c85a97d-9927-406a-a2ae-6f738750a95d" + ], + "stops": [], + "line_id": "6fb1a6f8-a5d2-4a63-9e28-22d3be460c9b", + "segments": [ + 0, + 16, + 31, + 41, + 52, + 58, + 72, + 78, + 80, + 82, + 85, + 94, + 107, + 115, + 117, + 143, + 164, + 180, + 192, + 200, + 218, + 239 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 365, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.490709, + 45.539683 + ], + [ + -73.490762, + 45.539711 + ], + [ + -73.490724, + 45.539892 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.491904, + 45.540552 + ], + [ + -73.491774, + 45.540689 + ], + [ + -73.491536, + 45.540936 + ], + [ + -73.491291, + 45.541175 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491035, + 45.541427 + ], + [ + -73.491084, + 45.541584 + ], + [ + -73.491099, + 45.541724 + ], + [ + -73.491103, + 45.541795 + ], + [ + -73.491106, + 45.541854 + ], + [ + -73.491092, + 45.542156 + ], + [ + -73.491081, + 45.542381 + ], + [ + -73.49104, + 45.543146 + ], + [ + -73.490998, + 45.543726 + ], + [ + -73.491037, + 45.544117 + ], + [ + -73.491071, + 45.544252 + ], + [ + -73.491113, + 45.544396 + ], + [ + -73.491272, + 45.544698 + ], + [ + -73.491367, + 45.544855 + ], + [ + -73.491449, + 45.544981 + ], + [ + -73.491608, + 45.545148 + ], + [ + -73.491886, + 45.545409 + ], + [ + -73.492356, + 45.545778 + ], + [ + -73.492157, + 45.545903 + ], + [ + -73.491911, + 45.546057 + ], + [ + -73.491829, + 45.546111 + ], + [ + -73.491646, + 45.546229 + ], + [ + -73.491431, + 45.546368 + ], + [ + -73.491216, + 45.546506 + ], + [ + -73.490714, + 45.547006 + ], + [ + -73.48951, + 45.547751 + ], + [ + -73.489407, + 45.547816 + ], + [ + -73.485955, + 45.549961 + ], + [ + -73.485528, + 45.550218 + ], + [ + -73.485059, + 45.550458 + ], + [ + -73.484196, + 45.5509 + ], + [ + -73.483956, + 45.551023 + ], + [ + -73.483711, + 45.550763 + ], + [ + -73.483692, + 45.550744 + ], + [ + -73.483212, + 45.550235 + ], + [ + -73.482956, + 45.549956 + ], + [ + -73.48267, + 45.549641 + ], + [ + -73.482621, + 45.549591 + ], + [ + -73.482468, + 45.549434 + ], + [ + -73.482154, + 45.54917 + ], + [ + -73.482061, + 45.549092 + ], + [ + -73.481961, + 45.549011 + ], + [ + -73.481574, + 45.548732 + ], + [ + -73.480787, + 45.548206 + ], + [ + -73.480465, + 45.547976 + ], + [ + -73.479981, + 45.547607 + ], + [ + -73.479872, + 45.547514 + ], + [ + -73.479532, + 45.547225 + ], + [ + -73.479428, + 45.54712 + ], + [ + -73.47929, + 45.546982 + ], + [ + -73.479053, + 45.546743 + ], + [ + -73.47833, + 45.545984 + ], + [ + -73.478252, + 45.545902 + ], + [ + -73.478167, + 45.545816 + ], + [ + -73.478085, + 45.54574 + ], + [ + -73.47749, + 45.545227 + ], + [ + -73.477125, + 45.544952 + ], + [ + -73.476738, + 45.5447 + ], + [ + -73.476368, + 45.544484 + ], + [ + -73.475906, + 45.544232 + ], + [ + -73.475489, + 45.544062 + ], + [ + -73.475463, + 45.544052 + ], + [ + -73.475416, + 45.544033 + ], + [ + -73.475109, + 45.543908 + ], + [ + -73.475053, + 45.543884 + ], + [ + -73.474586, + 45.543683 + ], + [ + -73.474404, + 45.543587 + ], + [ + -73.474124, + 45.54344 + ], + [ + -73.474013, + 45.543375 + ], + [ + -73.473915, + 45.543318 + ], + [ + -73.473362, + 45.542963 + ], + [ + -73.472636, + 45.54249 + ], + [ + -73.472231, + 45.542247 + ], + [ + -73.471828, + 45.542015 + ], + [ + -73.47173, + 45.541959 + ], + [ + -73.471636, + 45.541824 + ], + [ + -73.471512, + 45.54173 + ], + [ + -73.471378, + 45.541806 + ], + [ + -73.47123, + 45.541901 + ], + [ + -73.470672, + 45.542296 + ], + [ + -73.47048, + 45.542427 + ], + [ + -73.470294, + 45.542577 + ], + [ + -73.470253, + 45.542604 + ], + [ + -73.470176, + 45.542655 + ], + [ + -73.469836, + 45.542876 + ], + [ + -73.469727, + 45.542945 + ], + [ + -73.469557, + 45.543052 + ], + [ + -73.469346, + 45.54316 + ], + [ + -73.468945, + 45.543367 + ], + [ + -73.468689, + 45.543484 + ], + [ + -73.468467, + 45.543591 + ], + [ + -73.468074, + 45.543744 + ], + [ + -73.467693, + 45.543891 + ], + [ + -73.467632, + 45.543915 + ], + [ + -73.467484, + 45.543974 + ], + [ + -73.467143, + 45.544086 + ], + [ + -73.466769, + 45.544194 + ], + [ + -73.466764, + 45.544194 + ], + [ + -73.46648, + 45.54427 + ], + [ + -73.466248, + 45.544329 + ], + [ + -73.465862, + 45.544419 + ], + [ + -73.465837, + 45.544423 + ], + [ + -73.465767, + 45.544414 + ], + [ + -73.465608, + 45.544444 + ], + [ + -73.465524, + 45.54446 + ], + [ + -73.465322, + 45.544499 + ], + [ + -73.464956, + 45.544556 + ], + [ + -73.464874, + 45.544569 + ], + [ + -73.464126, + 45.544648 + ], + [ + -73.463638, + 45.544692 + ], + [ + -73.463632, + 45.544692 + ], + [ + -73.461821, + 45.544766 + ], + [ + -73.461583, + 45.544772 + ], + [ + -73.461519, + 45.544785 + ], + [ + -73.461426, + 45.544804 + ], + [ + -73.459566, + 45.544901 + ], + [ + -73.459543, + 45.544902 + ], + [ + -73.457656, + 45.544978 + ], + [ + -73.457324, + 45.544996 + ], + [ + -73.457082, + 45.545011 + ], + [ + -73.45681, + 45.545021 + ], + [ + -73.456655, + 45.545026 + ], + [ + -73.456506, + 45.545025 + ], + [ + -73.456413, + 45.545022 + ], + [ + -73.456291, + 45.545005 + ], + [ + -73.456108, + 45.544969 + ], + [ + -73.455559, + 45.544829 + ], + [ + -73.455289, + 45.544748 + ], + [ + -73.455178, + 45.54491 + ], + [ + -73.455067, + 45.545031 + ], + [ + -73.454985, + 45.545117 + ], + [ + -73.45488, + 45.545202 + ], + [ + -73.454712, + 45.545301 + ], + [ + -73.454662, + 45.545337 + ], + [ + -73.454517, + 45.54544 + ], + [ + -73.454362, + 45.54553 + ], + [ + -73.454039, + 45.545719 + ], + [ + -73.453554, + 45.546052 + ], + [ + -73.453387, + 45.546196 + ], + [ + -73.453186, + 45.546448 + ], + [ + -73.45304, + 45.546592 + ], + [ + -73.452912, + 45.546715 + ], + [ + -73.452859, + 45.546749 + ], + [ + -73.452394, + 45.547051 + ], + [ + -73.452243, + 45.547149 + ], + [ + -73.452507, + 45.54735 + ], + [ + -73.45272, + 45.547512 + ], + [ + -73.454102, + 45.548562 + ], + [ + -73.454269, + 45.548689 + ], + [ + -73.454302, + 45.548714 + ], + [ + -73.456163, + 45.550128 + ], + [ + -73.456272, + 45.55021 + ], + [ + -73.458174, + 45.551651 + ], + [ + -73.45845, + 45.551839 + ], + [ + -73.458867, + 45.552123 + ], + [ + -73.459495, + 45.552583 + ], + [ + -73.459717, + 45.552763 + ], + [ + -73.45984, + 45.552911 + ], + [ + -73.459979, + 45.553146 + ], + [ + -73.460074, + 45.553307 + ], + [ + -73.460476, + 45.553964 + ], + [ + -73.460843, + 45.554611 + ], + [ + -73.460904, + 45.55472 + ], + [ + -73.461041, + 45.554923 + ], + [ + -73.461091, + 45.55497 + ], + [ + -73.461155, + 45.555031 + ], + [ + -73.461353, + 45.555197 + ], + [ + -73.461529, + 45.555341 + ], + [ + -73.461658, + 45.555433 + ], + [ + -73.461661, + 45.555436 + ], + [ + -73.461719, + 45.555453 + ], + [ + -73.461827, + 45.555485 + ], + [ + -73.461925, + 45.555463 + ], + [ + -73.461991, + 45.555431 + ], + [ + -73.462132, + 45.55534 + ], + [ + -73.462207, + 45.555292 + ], + [ + -73.462576, + 45.555058 + ], + [ + -73.46269, + 45.554985 + ], + [ + -73.464004, + 45.554145 + ], + [ + -73.46405, + 45.554132 + ], + [ + -73.464203, + 45.554087 + ], + [ + -73.464314, + 45.554019 + ], + [ + -73.464675, + 45.55379 + ], + [ + -73.464758, + 45.553732 + ], + [ + -73.466649, + 45.555169 + ], + [ + -73.467394, + 45.555735 + ], + [ + -73.468707, + 45.556734 + ], + [ + -73.468863, + 45.556851 + ], + [ + -73.468884, + 45.556867 + ], + [ + -73.468891, + 45.556872 + ], + [ + -73.469456, + 45.557296 + ], + [ + -73.469905, + 45.557643 + ], + [ + -73.470197, + 45.557962 + ], + [ + -73.470249, + 45.558057 + ], + [ + -73.470265, + 45.558151 + ], + [ + -73.470274, + 45.558277 + ], + [ + -73.470262, + 45.558403 + ], + [ + -73.470228, + 45.55852 + ], + [ + -73.470175, + 45.558628 + ], + [ + -73.470104, + 45.558723 + ], + [ + -73.469991, + 45.558844 + ], + [ + -73.469731, + 45.558997 + ], + [ + -73.469495, + 45.559157 + ], + [ + -73.46926, + 45.559316 + ], + [ + -73.468792, + 45.559631 + ], + [ + -73.468729, + 45.559676 + ], + [ + -73.468547, + 45.559798 + ], + [ + -73.467979, + 45.560279 + ], + [ + -73.467816, + 45.560373 + ], + [ + -73.467525, + 45.560508 + ], + [ + -73.467261, + 45.560621 + ], + [ + -73.46697, + 45.560742 + ], + [ + -73.466692, + 45.560841 + ], + [ + -73.466384, + 45.560949 + ], + [ + -73.466142, + 45.561021 + ], + [ + -73.465993, + 45.561066 + ], + [ + -73.465606, + 45.561173 + ], + [ + -73.465298, + 45.56125 + ], + [ + -73.464943, + 45.561331 + ], + [ + -73.464635, + 45.561385 + ], + [ + -73.464383, + 45.56143 + ], + [ + -73.464342, + 45.561416 + ], + [ + -73.46391, + 45.56142 + ], + [ + -73.463676, + 45.561411 + ], + [ + -73.463469, + 45.561416 + ], + [ + -73.463235, + 45.561434 + ], + [ + -73.463014, + 45.561456 + ], + [ + -73.462671, + 45.561478 + ], + [ + -73.46249, + 45.561483 + ], + [ + -73.462171, + 45.561492 + ], + [ + -73.461975, + 45.561496 + ], + [ + -73.460887, + 45.561523 + ] + ] + }, + "id": 366, + "properties": { + "id": "5f05cc13-ebf9-453e-8a94-d099ed9ee0a0", + "data": { + "gtfs": { + "shape_id": "673_1_R" + }, + "segments": [ + { + "distanceMeters": 313, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 549, + "travelTimeSeconds": 92 + }, + { + "distanceMeters": 782, + "travelTimeSeconds": 131 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 465, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 449, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 426, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 497, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 422, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 71, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 190, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 547, + "travelTimeSeconds": 91 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 125, + "travelTimeSeconds": 21 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7880, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3347.6451539953073, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.97, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 5.25, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.97 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "1c85a97d-9927-406a-a2ae-6f738750a95d", + "038a22ba-4928-42fc-aaed-50fbd831df37", + "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", + "cd788179-2c9b-4e1e-9ba3-10b35bfde3fa", + "06cdca3a-f2d1-4f41-837c-693f8619463c", + "0e8b7968-4242-43b0-a1a6-300cb3c93219", + "3a5ea563-a764-4bb6-b2d3-d98a1c377161", + "a1edad0a-8432-4850-b895-9d97092489b6", + "50390f49-dc4e-4a3a-8b7e-5dae5f17aa70", + "81ceaeba-df2d-476d-a80e-d7112cda70cb", + "ed9c5edc-a8fc-42c1-8283-02b881c76ff4", + "86d2a168-d8d6-4528-80ff-833432ddaf2d", + "c7d234f2-22e5-4459-8628-1d01e7ca4dc0", + "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", + "bb4626e2-c410-497b-977c-2cc1b65d7b57", + "714fccbf-a3ad-45ea-8e3f-be54db61f028", + "d9f7a5bd-7489-48e7-93cf-4368a09e2676", + "2e8375c2-0f15-448a-8203-e8a29699849e", + "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", + "1e6b54ae-f11e-4726-a36f-9c4411688776", + "8ece351b-2186-4cfe-9624-9d1eacc2181d", + "b070e296-b686-4ba3-bf68-049018a7af21", + "83389414-0049-46f6-a04b-557250511611", + "2b894d51-a427-4850-8fae-89ed3f29388d", + "fe1423a8-e632-40f2-9b1e-93314e069a43" + ], + "stops": [], + "line_id": "6fb1a6f8-a5d2-4a63-9e28-22d3be460c9b", + "segments": [ + 0, + 14, + 32, + 41, + 50, + 62, + 79, + 84, + 103, + 124, + 126, + 144, + 154, + 157, + 158, + 161, + 164, + 169, + 179, + 190, + 200, + 213, + 225, + 239 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 366, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.460306, + 45.44382 + ], + [ + -73.460454, + 45.443598 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.461187, + 45.442462 + ], + [ + -73.461249, + 45.442366 + ], + [ + -73.461921, + 45.441345 + ], + [ + -73.46199, + 45.441264 + ], + [ + -73.46204, + 45.441216 + ], + [ + -73.462145, + 45.441115 + ], + [ + -73.462213, + 45.441057 + ], + [ + -73.46187, + 45.440814 + ], + [ + -73.461732, + 45.440683 + ], + [ + -73.461124, + 45.43999 + ], + [ + -73.4611, + 45.439963 + ], + [ + -73.460879, + 45.439666 + ], + [ + -73.460804, + 45.439527 + ], + [ + -73.460756, + 45.439374 + ], + [ + -73.460732, + 45.439261 + ], + [ + -73.460749, + 45.439167 + ], + [ + -73.460753, + 45.439144 + ], + [ + -73.460775, + 45.43905 + ], + [ + -73.460824, + 45.438928 + ], + [ + -73.460899, + 45.438784 + ], + [ + -73.461527, + 45.437813 + ], + [ + -73.462052, + 45.437003 + ], + [ + -73.462055, + 45.436998 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.462701, + 45.435982 + ], + [ + -73.463836, + 45.436306 + ], + [ + -73.463949, + 45.43609 + ], + [ + -73.464014, + 45.43598 + ], + [ + -73.464042, + 45.435933 + ], + [ + -73.464129, + 45.435726 + ], + [ + -73.464208, + 45.435541 + ], + [ + -73.464217, + 45.435519 + ], + [ + -73.464262, + 45.435411 + ], + [ + -73.464363, + 45.435226 + ], + [ + -73.464402, + 45.435154 + ], + [ + -73.464983, + 45.434165 + ], + [ + -73.465295, + 45.433622 + ], + [ + -73.465352, + 45.433521 + ], + [ + -73.466273, + 45.43385 + ], + [ + -73.468905, + 45.434722 + ], + [ + -73.469086, + 45.434782 + ], + [ + -73.469951, + 45.435071 + ], + [ + -73.470598, + 45.435287 + ], + [ + -73.470685, + 45.435314 + ], + [ + -73.470856, + 45.435367 + ], + [ + -73.471308, + 45.435507 + ], + [ + -73.471308, + 45.435507 + ], + [ + -73.471657, + 45.43562 + ], + [ + -73.472058, + 45.435759 + ], + [ + -73.471139, + 45.437154 + ], + [ + -73.471113, + 45.437194 + ], + [ + -73.471037, + 45.437237 + ], + [ + -73.470968, + 45.437275 + ], + [ + -73.470767, + 45.437505 + ], + [ + -73.470657, + 45.43764 + ], + [ + -73.470585, + 45.437793 + ], + [ + -73.470584, + 45.437797 + ], + [ + -73.470561, + 45.437874 + ], + [ + -73.470756, + 45.437887 + ], + [ + -73.471979, + 45.437978 + ], + [ + -73.472271, + 45.438 + ], + [ + -73.471885, + 45.438579 + ], + [ + -73.471678, + 45.438891 + ], + [ + -73.470358, + 45.440885 + ], + [ + -73.470303, + 45.440969 + ], + [ + -73.470099, + 45.441352 + ], + [ + -73.470027, + 45.441639 + ], + [ + -73.470012, + 45.441666 + ], + [ + -73.469784, + 45.442018 + ], + [ + -73.469477, + 45.442492 + ], + [ + -73.46914, + 45.443013 + ], + [ + -73.469051, + 45.443151 + ], + [ + -73.468613, + 45.443844 + ], + [ + -73.468216, + 45.444456 + ], + [ + -73.468179, + 45.444519 + ], + [ + -73.468126, + 45.444631 + ], + [ + -73.468082, + 45.444748 + ], + [ + -73.468044, + 45.444901 + ], + [ + -73.468038, + 45.444935 + ], + [ + -73.468021, + 45.445022 + ], + [ + -73.467959, + 45.445234 + ], + [ + -73.467968, + 45.445351 + ], + [ + -73.467947, + 45.445454 + ], + [ + -73.467879, + 45.445603 + ], + [ + -73.467844, + 45.445638 + ], + [ + -73.467743, + 45.445738 + ], + [ + -73.46755, + 45.445972 + ], + [ + -73.466635, + 45.445539 + ], + [ + -73.466252, + 45.445364 + ], + [ + -73.466048, + 45.445292 + ], + [ + -73.465811, + 45.44522 + ], + [ + -73.464212, + 45.444702 + ], + [ + -73.464073, + 45.444657 + ], + [ + -73.461826, + 45.443936 + ], + [ + -73.46109, + 45.4437 + ], + [ + -73.460765, + 45.443595 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.460454, + 45.443598 + ], + [ + -73.460027, + 45.444237 + ], + [ + -73.459742, + 45.444687 + ], + [ + -73.459532, + 45.445019 + ], + [ + -73.459486, + 45.445092 + ], + [ + -73.458903, + 45.445978 + ], + [ + -73.458716, + 45.446252 + ], + [ + -73.458499, + 45.446437 + ], + [ + -73.458358, + 45.446536 + ], + [ + -73.45823, + 45.446598 + ], + [ + -73.458121, + 45.446639 + ], + [ + -73.458113, + 45.446641 + ], + [ + -73.458085, + 45.446651 + ], + [ + -73.458009, + 45.446676 + ], + [ + -73.457516, + 45.446841 + ], + [ + -73.456885, + 45.447052 + ], + [ + -73.45639, + 45.447218 + ], + [ + -73.456253, + 45.447264 + ], + [ + -73.455927, + 45.447371 + ], + [ + -73.455661, + 45.447479 + ], + [ + -73.455528, + 45.447551 + ], + [ + -73.455416, + 45.447619 + ], + [ + -73.455304, + 45.447709 + ], + [ + -73.455137, + 45.447929 + ], + [ + -73.454897, + 45.448293 + ], + [ + -73.454606, + 45.448707 + ], + [ + -73.454507, + 45.448806 + ], + [ + -73.454414, + 45.448878 + ], + [ + -73.454351, + 45.448928 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.454088, + 45.449121 + ], + [ + -73.454556, + 45.449427 + ], + [ + -73.454799, + 45.449612 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.455393, + 45.45012 + ], + [ + -73.456061, + 45.45066 + ], + [ + -73.456286, + 45.450829 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.457144, + 45.451442 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457598, + 45.451363 + ], + [ + -73.457627, + 45.45129 + ], + [ + -73.457661, + 45.451176 + ], + [ + -73.457648, + 45.45104 + ], + [ + -73.457607, + 45.450938 + ], + [ + -73.457498, + 45.450823 + ], + [ + -73.457365, + 45.450743 + ] + ] + }, + "id": 367, + "properties": { + "id": "be3ee5f9-43ef-4efe-a02f-f1e58a6ec505", + "data": { + "gtfs": { + "shape_id": "674_1_A" + }, + "segments": [ + { + "distanceMeters": 166, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 312, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 28, + "travelTimeSeconds": 5 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 24 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5284, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 833.3851519651183, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.87, + "travelTimeWithoutDwellTimesSeconds": 900, + "operatingTimeWithLayoverTimeSeconds": 1080, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 900, + "operatingSpeedWithLayoverMetersPerSecond": 4.89, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.87 + }, + "mode": "bus", + "name": "École Antoine-Brossard", + "color": "#A32638", + "nodes": [ + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "9b31d865-da9f-4eb8-b8a9-3d488eb579df", + "b93691d0-438e-4eac-87a0-7c1ac45a7c18", + "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", + "19a4f64a-0169-40b9-8b9c-84de3158151e", + "c7e2639a-bb94-426e-918b-714f0212d53b", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "e990ec2d-e586-4b2f-884d-4124f22426b3", + "1d638a17-5a2b-40f7-a0cc-6db81666104e", + "f36c7de3-84dd-4573-ac69-91ccd87efd4f", + "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", + "e13d482c-ee57-4f7d-bc38-264ca460deda", + "daacedd2-0b84-4f73-9f01-d9072ec32dce", + "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", + "e7ac28b2-1ac9-4d12-811f-8e49f5a7d7ab", + "ae5cac19-c84c-4e41-ae57-bbf3b3bda217", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "57126f14-f5bb-4578-a4ae-48d75eae5e82", + "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", + "8b7e764f-0227-410c-89b9-51b9a8ad8c88", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "44eacee6-a348-48cf-aeda-c9ddae958f8e" + ], + "stops": [], + "line_id": "beb52fea-e4d4-4d72-822c-3bf561a6346b", + "segments": [ + 0, + 3, + 7, + 12, + 18, + 23, + 24, + 30, + 39, + 42, + 49, + 59, + 62, + 64, + 66, + 73, + 87, + 94, + 97, + 98, + 103, + 111, + 116, + 127, + 132, + 138 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 367, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.457365, + 45.450743 + ], + [ + -73.457311, + 45.45071 + ], + [ + -73.457055, + 45.450562 + ], + [ + -73.45697, + 45.450481 + ], + [ + -73.456931, + 45.450397 + ], + [ + -73.456841, + 45.450279 + ], + [ + -73.456733, + 45.450296 + ], + [ + -73.456625, + 45.450319 + ], + [ + -73.456525, + 45.450368 + ], + [ + -73.456438, + 45.450427 + ], + [ + -73.456357, + 45.45049 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456003, + 45.45033 + ], + [ + -73.455823, + 45.450178 + ], + [ + -73.455605, + 45.449994 + ], + [ + -73.455056, + 45.44954 + ], + [ + -73.454737, + 45.449301 + ], + [ + -73.454449, + 45.449112 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.454351, + 45.448928 + ], + [ + -73.454507, + 45.448806 + ], + [ + -73.454606, + 45.448707 + ], + [ + -73.454897, + 45.448293 + ], + [ + -73.455137, + 45.447929 + ], + [ + -73.455304, + 45.447709 + ], + [ + -73.455416, + 45.447619 + ], + [ + -73.455528, + 45.447551 + ], + [ + -73.455661, + 45.447479 + ], + [ + -73.455885, + 45.447389 + ], + [ + -73.455927, + 45.447371 + ], + [ + -73.456253, + 45.447264 + ], + [ + -73.456885, + 45.447052 + ], + [ + -73.457516, + 45.446841 + ], + [ + -73.457757, + 45.446761 + ], + [ + -73.458009, + 45.446676 + ], + [ + -73.458085, + 45.446651 + ], + [ + -73.458121, + 45.446639 + ], + [ + -73.45823, + 45.446598 + ], + [ + -73.458358, + 45.446536 + ], + [ + -73.458499, + 45.446437 + ], + [ + -73.458716, + 45.446252 + ], + [ + -73.458903, + 45.445978 + ], + [ + -73.459422, + 45.445188 + ], + [ + -73.459486, + 45.445092 + ], + [ + -73.460027, + 45.444237 + ], + [ + -73.460305, + 45.443821 + ], + [ + -73.460454, + 45.443598 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.461191, + 45.442455 + ], + [ + -73.461249, + 45.442366 + ], + [ + -73.461921, + 45.441345 + ], + [ + -73.46199, + 45.441264 + ], + [ + -73.462039, + 45.441217 + ], + [ + -73.462145, + 45.441115 + ], + [ + -73.462213, + 45.441057 + ], + [ + -73.46187, + 45.440814 + ], + [ + -73.461732, + 45.440683 + ], + [ + -73.461117, + 45.439983 + ], + [ + -73.4611, + 45.439963 + ], + [ + -73.460879, + 45.439666 + ], + [ + -73.460804, + 45.439527 + ], + [ + -73.460756, + 45.439374 + ], + [ + -73.460732, + 45.439261 + ], + [ + -73.46075, + 45.439159 + ], + [ + -73.460753, + 45.439144 + ], + [ + -73.460775, + 45.43905 + ], + [ + -73.460824, + 45.438928 + ], + [ + -73.460899, + 45.438784 + ], + [ + -73.461527, + 45.437814 + ], + [ + -73.462052, + 45.437003 + ], + [ + -73.462055, + 45.436998 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.462701, + 45.435982 + ], + [ + -73.463836, + 45.436306 + ], + [ + -73.463949, + 45.43609 + ], + [ + -73.464014, + 45.43598 + ], + [ + -73.464042, + 45.435933 + ], + [ + -73.464129, + 45.435726 + ], + [ + -73.464208, + 45.435541 + ], + [ + -73.464217, + 45.435519 + ], + [ + -73.464262, + 45.435411 + ], + [ + -73.464363, + 45.435226 + ], + [ + -73.464402, + 45.435154 + ], + [ + -73.464983, + 45.434165 + ], + [ + -73.465295, + 45.433621 + ], + [ + -73.465352, + 45.433521 + ], + [ + -73.466273, + 45.43385 + ], + [ + -73.468907, + 45.434723 + ], + [ + -73.469086, + 45.434782 + ], + [ + -73.469951, + 45.435071 + ], + [ + -73.470598, + 45.435287 + ], + [ + -73.470685, + 45.435314 + ], + [ + -73.470856, + 45.435367 + ], + [ + -73.471308, + 45.435507 + ], + [ + -73.47131, + 45.435508 + ], + [ + -73.471657, + 45.43562 + ], + [ + -73.472058, + 45.435759 + ], + [ + -73.471139, + 45.437154 + ], + [ + -73.471113, + 45.437194 + ], + [ + -73.471037, + 45.437237 + ], + [ + -73.470968, + 45.437275 + ], + [ + -73.470767, + 45.437505 + ], + [ + -73.470657, + 45.43764 + ], + [ + -73.470585, + 45.437793 + ], + [ + -73.470581, + 45.437808 + ], + [ + -73.470561, + 45.437874 + ], + [ + -73.470756, + 45.437887 + ], + [ + -73.471995, + 45.43798 + ], + [ + -73.472271, + 45.438 + ], + [ + -73.471884, + 45.438581 + ], + [ + -73.471678, + 45.438891 + ], + [ + -73.470356, + 45.440888 + ], + [ + -73.470303, + 45.440969 + ], + [ + -73.470099, + 45.441352 + ], + [ + -73.470027, + 45.441639 + ], + [ + -73.470012, + 45.441666 + ], + [ + -73.469784, + 45.442018 + ], + [ + -73.469477, + 45.442492 + ], + [ + -73.469138, + 45.443016 + ], + [ + -73.469051, + 45.443151 + ], + [ + -73.468613, + 45.443844 + ], + [ + -73.468216, + 45.444456 + ], + [ + -73.468179, + 45.444519 + ], + [ + -73.468126, + 45.444631 + ], + [ + -73.468082, + 45.444748 + ], + [ + -73.468044, + 45.444901 + ], + [ + -73.468021, + 45.445022 + ], + [ + -73.467959, + 45.445234 + ], + [ + -73.467968, + 45.445351 + ], + [ + -73.467947, + 45.445454 + ], + [ + -73.467879, + 45.445603 + ], + [ + -73.467833, + 45.445649 + ] + ] + }, + "id": 368, + "properties": { + "id": "d0a20e6b-d3f2-44a2-88d7-3725508a86a9", + "data": { + "gtfs": { + "shape_id": "674_2_R" + }, + "segments": [ + { + "distanceMeters": 178, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 99, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 322, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 93, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 51 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 4437, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 986.4628463791121, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.16, + "travelTimeWithoutDwellTimesSeconds": 720, + "operatingTimeWithLayoverTimeSeconds": 900, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 720, + "operatingSpeedWithLayoverMetersPerSecond": 4.93, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.16 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "44eacee6-a348-48cf-aeda-c9ddae958f8e", + "2c6638eb-437e-4a41-bb5d-d6093797361d", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "8b7e764f-0227-410c-89b9-51b9a8ad8c88", + "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", + "57126f14-f5bb-4578-a4ae-48d75eae5e82", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "9b31d865-da9f-4eb8-b8a9-3d488eb579df", + "b93691d0-438e-4eac-87a0-7c1ac45a7c18", + "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", + "19a4f64a-0169-40b9-8b9c-84de3158151e", + "c7e2639a-bb94-426e-918b-714f0212d53b", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "e990ec2d-e586-4b2f-884d-4124f22426b3", + "1d638a17-5a2b-40f7-a0cc-6db81666104e", + "f36c7de3-84dd-4573-ac69-91ccd87efd4f", + "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", + "e13d482c-ee57-4f7d-bc38-264ca460deda", + "daacedd2-0b84-4f73-9f01-d9072ec32dce", + "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", + "e7ac28b2-1ac9-4d12-811f-8e49f5a7d7ab" + ], + "stops": [], + "line_id": "beb52fea-e4d4-4d72-822c-3bf561a6346b", + "segments": [ + 0, + 13, + 17, + 28, + 33, + 42, + 45, + 48, + 52, + 57, + 63, + 68, + 69, + 75, + 84, + 87, + 94, + 104, + 107, + 109, + 111, + 118 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 368, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.432978, + 45.523655 + ], + [ + -73.432949, + 45.523714 + ], + [ + -73.432601, + 45.524387 + ], + [ + -73.432398, + 45.524792 + ], + [ + -73.432026, + 45.525525 + ], + [ + -73.431458, + 45.526651 + ], + [ + -73.431435, + 45.526699 + ], + [ + -73.43143, + 45.52671 + ], + [ + -73.430919, + 45.527743 + ], + [ + -73.430793, + 45.527793 + ], + [ + -73.430701, + 45.527816 + ], + [ + -73.430693, + 45.527823 + ], + [ + -73.43063, + 45.527876 + ], + [ + -73.430607, + 45.527905 + ], + [ + -73.430587, + 45.527943 + ], + [ + -73.430578, + 45.528022 + ], + [ + -73.43058, + 45.528034 + ], + [ + -73.430593, + 45.528074 + ], + [ + -73.430622, + 45.528122 + ], + [ + -73.430658, + 45.528162 + ], + [ + -73.430703, + 45.52819 + ], + [ + -73.430762, + 45.528212 + ], + [ + -73.430835, + 45.528223 + ], + [ + -73.430897, + 45.528222 + ], + [ + -73.430956, + 45.528215 + ], + [ + -73.430992, + 45.528205 + ], + [ + -73.431119, + 45.528144 + ], + [ + -73.431155, + 45.528104 + ], + [ + -73.431168, + 45.528079 + ], + [ + -73.431176, + 45.528001 + ], + [ + -73.431176, + 45.527987 + ], + [ + -73.431158, + 45.527934 + ], + [ + -73.431122, + 45.52789 + ], + [ + -73.431109, + 45.527875 + ], + [ + -73.431089, + 45.527781 + ], + [ + -73.431568, + 45.526743 + ], + [ + -73.432147, + 45.525588 + ], + [ + -73.433078, + 45.523749 + ], + [ + -73.433693, + 45.522535 + ], + [ + -73.433807, + 45.522565 + ], + [ + -73.433875, + 45.522583 + ], + [ + -73.434321, + 45.522707 + ], + [ + -73.437851, + 45.523688 + ], + [ + -73.438325, + 45.523813 + ], + [ + -73.438143, + 45.524143 + ], + [ + -73.437418, + 45.525456 + ], + [ + -73.437336, + 45.525859 + ], + [ + -73.437466, + 45.526379 + ], + [ + -73.437644, + 45.527043 + ], + [ + -73.437663, + 45.527118 + ], + [ + -73.437995, + 45.52835 + ], + [ + -73.438003, + 45.528378 + ], + [ + -73.438018, + 45.528571 + ], + [ + -73.438014, + 45.528909 + ], + [ + -73.437936, + 45.529159 + ], + [ + -73.437705, + 45.529692 + ], + [ + -73.437373, + 45.530429 + ], + [ + -73.436999, + 45.531185 + ], + [ + -73.436846, + 45.531394 + ], + [ + -73.436514, + 45.531643 + ], + [ + -73.436328, + 45.531783 + ], + [ + -73.436242, + 45.53185 + ], + [ + -73.436738, + 45.532166 + ], + [ + -73.436807, + 45.5322 + ], + [ + -73.43711, + 45.532346 + ], + [ + -73.437143, + 45.532359 + ], + [ + -73.437365, + 45.532446 + ], + [ + -73.437788, + 45.532575 + ], + [ + -73.438512, + 45.532777 + ], + [ + -73.438764, + 45.532852 + ], + [ + -73.439121, + 45.532958 + ], + [ + -73.439267, + 45.532996 + ], + [ + -73.439309, + 45.532912 + ], + [ + -73.439381, + 45.532747 + ], + [ + -73.440126, + 45.531039 + ], + [ + -73.440178, + 45.530918 + ], + [ + -73.440526, + 45.530139 + ], + [ + -73.440971, + 45.529144 + ], + [ + -73.441026, + 45.529021 + ], + [ + -73.441195, + 45.528603 + ], + [ + -73.441677, + 45.52752 + ], + [ + -73.441723, + 45.527415 + ], + [ + -73.442111, + 45.526543 + ], + [ + -73.442305, + 45.526133 + ], + [ + -73.442765, + 45.52521 + ], + [ + -73.442852, + 45.525036 + ], + [ + -73.442988, + 45.525071 + ], + [ + -73.443244, + 45.525138 + ], + [ + -73.443912, + 45.525312 + ], + [ + -73.444302, + 45.525413 + ], + [ + -73.444482, + 45.52546 + ], + [ + -73.444863, + 45.525554 + ], + [ + -73.4451, + 45.525613 + ], + [ + -73.445298, + 45.525685 + ], + [ + -73.4455, + 45.525762 + ], + [ + -73.446265, + 45.526066 + ], + [ + -73.446307, + 45.526083 + ], + [ + -73.446395, + 45.526117 + ], + [ + -73.447841, + 45.526653 + ], + [ + -73.449303, + 45.52721 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.45067, + 45.527735 + ], + [ + -73.451123, + 45.527906 + ], + [ + -73.451519, + 45.528063 + ], + [ + -73.45214, + 45.528347 + ], + [ + -73.452276, + 45.528409 + ], + [ + -73.452337, + 45.528437 + ], + [ + -73.45321, + 45.528797 + ], + [ + -73.454095, + 45.529149 + ], + [ + -73.454876, + 45.529483 + ], + [ + -73.454978, + 45.529527 + ], + [ + -73.45507, + 45.529563 + ], + [ + -73.45727, + 45.530458 + ], + [ + -73.457482, + 45.530545 + ], + [ + -73.458332, + 45.530905 + ], + [ + -73.460581, + 45.531882 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.462008, + 45.532616 + ], + [ + -73.462751, + 45.533003 + ], + [ + -73.463681, + 45.533552 + ], + [ + -73.463873, + 45.533665 + ], + [ + -73.464875, + 45.534543 + ], + [ + -73.465715, + 45.535318 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.468787, + 45.537043 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469941, + 45.537318 + ], + [ + -73.470305, + 45.537406 + ], + [ + -73.470749, + 45.537487 + ], + [ + -73.471335, + 45.537563 + ], + [ + -73.471845, + 45.53759 + ], + [ + -73.471906, + 45.53759 + ], + [ + -73.472146, + 45.537591 + ], + [ + -73.472355, + 45.537591 + ], + [ + -73.473126, + 45.537555 + ], + [ + -73.473826, + 45.537492 + ], + [ + -73.474497, + 45.537431 + ], + [ + -73.474517, + 45.537429 + ], + [ + -73.474599, + 45.537423 + ], + [ + -73.475173, + 45.53738 + ], + [ + -73.47563, + 45.537344 + ], + [ + -73.476192, + 45.537353 + ], + [ + -73.476662, + 45.537394 + ], + [ + -73.477026, + 45.537434 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.477861, + 45.537594 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.47948, + 45.538072 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.48244, + 45.538906 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.485765, + 45.540113 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.491356, + 45.541251 + ], + [ + -73.491461, + 45.541175 + ], + [ + -73.491486, + 45.541152 + ], + [ + -73.491857, + 45.540773 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.490724, + 45.539892 + ], + [ + -73.490551, + 45.539825 + ], + [ + -73.490497, + 45.539768 + ], + [ + -73.49051, + 45.539681 + ], + [ + -73.490564, + 45.539666 + ], + [ + -73.49064, + 45.539646 + ], + [ + -73.490709, + 45.539683 + ] + ] + }, + "id": 369, + "properties": { + "id": "70fe79d1-87b3-4080-bf4b-80eb7fb023d2", + "data": { + "gtfs": { + "shape_id": "675_1_A" + }, + "segments": [ + { + "distanceMeters": 354, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 944, + "travelTimeSeconds": 168 + }, + { + "distanceMeters": 375, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 392, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 530, + "travelTimeSeconds": 95 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 88, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 316, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 556, + "travelTimeSeconds": 99 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 37 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8386, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4844.786012560933, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.59, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 4.99, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.59 + }, + "mode": "bus", + "name": "École Jacques-Rousseau", + "color": "#A32638", + "nodes": [ + "6b5e798b-1890-48ed-a234-04c622fd13ea", + "186b2759-8d28-41b8-beae-bac2adf7b3f9", + "455644f9-4a24-446b-b548-a53bc406a4d8", + "908faba3-76b8-49ef-bcfd-e4970978a82f", + "b3ae6488-015e-46a3-b034-181cc02048d1", + "0f82a749-1250-41a6-a638-43db1b5bd1a7", + "dd7e143a-63db-4b4e-82d6-e5e80de82672", + "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", + "de69f95c-e485-42da-bcac-5eeb8a8928ad", + "e36c087c-d78e-48bb-9430-6af9d10493cf", + "5b35096e-2561-4a9f-8bf4-a3e7609358bf", + "37e0037c-1e13-45e4-a410-24f20d2177f9", + "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", + "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "51878141-1194-4666-977c-0597ee638ffb", + "0a078431-12d6-4e73-9908-076c3a27e8ed", + "211cb268-dcfa-4d7b-810c-681bfa65d4c8", + "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "1e4facbf-29da-4515-97c4-4ef86c22290e", + "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", + "06d26eca-08e9-467e-9ff0-9595778162a0", + "abdcf999-0861-4881-a478-42fa957c7f17", + "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "5f672947-8abc-447c-bf60-535abbf76fae", + "31e8057b-0fb0-44bd-83cf-3acad24654ec", + "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", + "411bafbe-bac8-4586-9af4-bc0b3163bdde", + "1c85a97d-9927-406a-a2ae-6f738750a95d" + ], + "stops": [], + "line_id": "c648c8fb-8119-4b0d-a611-219f0014c88d", + "segments": [ + 0, + 5, + 41, + 44, + 48, + 50, + 59, + 74, + 77, + 80, + 87, + 89, + 95, + 99, + 104, + 109, + 112, + 118, + 120, + 123, + 133, + 140, + 145, + 156, + 160, + 166, + 171, + 192 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 369, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.490709, + 45.539683 + ], + [ + -73.490762, + 45.539711 + ], + [ + -73.490724, + 45.539892 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.491774, + 45.540689 + ], + [ + -73.491536, + 45.540936 + ], + [ + -73.491291, + 45.541175 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.490594, + 45.540696 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486478, + 45.540151 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482892, + 45.538849 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.480023, + 45.538053 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476947, + 45.537232 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472329, + 45.537403 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.469369, + 45.536992 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466178, + 45.53547 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464117, + 45.533591 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461194, + 45.531957 + ], + [ + -73.460868, + 45.531797 + ], + [ + -73.460137, + 45.531468 + ], + [ + -73.459095, + 45.531013 + ], + [ + -73.4578, + 45.530474 + ], + [ + -73.457591, + 45.530387 + ], + [ + -73.456631, + 45.529983 + ], + [ + -73.45522, + 45.529388 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.454653, + 45.529154 + ], + [ + -73.453608, + 45.528719 + ], + [ + -73.452449, + 45.528237 + ], + [ + -73.452419, + 45.528224 + ], + [ + -73.452095, + 45.528089 + ], + [ + -73.451849, + 45.527987 + ], + [ + -73.449873, + 45.527212 + ], + [ + -73.449586, + 45.5271 + ], + [ + -73.447563, + 45.526329 + ], + [ + -73.447243, + 45.526199 + ], + [ + -73.446596, + 45.52596 + ], + [ + -73.446438, + 45.5259 + ], + [ + -73.446226, + 45.525818 + ], + [ + -73.445479, + 45.525532 + ], + [ + -73.44525, + 45.525455 + ], + [ + -73.445048, + 45.525397 + ], + [ + -73.444823, + 45.525347 + ], + [ + -73.444676, + 45.525305 + ], + [ + -73.444476, + 45.525248 + ], + [ + -73.44392, + 45.525126 + ], + [ + -73.443091, + 45.524907 + ], + [ + -73.442951, + 45.524869 + ], + [ + -73.442817, + 45.524838 + ], + [ + -73.442117, + 45.524665 + ], + [ + -73.442013, + 45.52464 + ], + [ + -73.441281, + 45.524441 + ], + [ + -73.44044, + 45.524202 + ], + [ + -73.43954, + 45.523947 + ], + [ + -73.439329, + 45.52389 + ], + [ + -73.437964, + 45.523516 + ], + [ + -73.433955, + 45.522417 + ], + [ + -73.433848, + 45.522389 + ], + [ + -73.433776, + 45.522369 + ], + [ + -73.433738, + 45.522359 + ], + [ + -73.43365, + 45.522336 + ], + [ + -73.433608, + 45.522421 + ], + [ + -73.433569, + 45.522502 + ], + [ + -73.433421, + 45.522789 + ], + [ + -73.432996, + 45.523618 + ], + [ + -73.432963, + 45.523686 + ], + [ + -73.432949, + 45.523714 + ], + [ + -73.432601, + 45.524387 + ], + [ + -73.432398, + 45.524792 + ], + [ + -73.432026, + 45.525525 + ], + [ + -73.431443, + 45.526682 + ], + [ + -73.431435, + 45.526699 + ], + [ + -73.43143, + 45.52671 + ], + [ + -73.430919, + 45.527743 + ], + [ + -73.430793, + 45.527793 + ], + [ + -73.430701, + 45.527816 + ], + [ + -73.430693, + 45.527823 + ], + [ + -73.43063, + 45.527876 + ], + [ + -73.430607, + 45.527905 + ], + [ + -73.430587, + 45.527943 + ], + [ + -73.430578, + 45.528022 + ], + [ + -73.43058, + 45.528034 + ], + [ + -73.430593, + 45.528074 + ], + [ + -73.430622, + 45.528122 + ], + [ + -73.430658, + 45.528162 + ], + [ + -73.430703, + 45.52819 + ], + [ + -73.430762, + 45.528212 + ], + [ + -73.430835, + 45.528223 + ], + [ + -73.430897, + 45.528222 + ], + [ + -73.430956, + 45.528215 + ], + [ + -73.430992, + 45.528205 + ], + [ + -73.431119, + 45.528144 + ], + [ + -73.431155, + 45.528104 + ], + [ + -73.431168, + 45.528079 + ], + [ + -73.431176, + 45.528001 + ], + [ + -73.431176, + 45.527987 + ], + [ + -73.431158, + 45.527934 + ], + [ + -73.431122, + 45.52789 + ], + [ + -73.431109, + 45.527875 + ], + [ + -73.431089, + 45.527781 + ], + [ + -73.431381, + 45.527147 + ], + [ + -73.431568, + 45.526743 + ], + [ + -73.432147, + 45.525588 + ], + [ + -73.433078, + 45.523749 + ], + [ + -73.433693, + 45.522535 + ], + [ + -73.433807, + 45.522565 + ], + [ + -73.433875, + 45.522583 + ], + [ + -73.434375, + 45.522722 + ], + [ + -73.437851, + 45.523688 + ], + [ + -73.438325, + 45.523813 + ], + [ + -73.438122, + 45.524181 + ], + [ + -73.437418, + 45.525456 + ], + [ + -73.437336, + 45.525859 + ], + [ + -73.437466, + 45.526379 + ], + [ + -73.437652, + 45.527074 + ], + [ + -73.437663, + 45.527118 + ], + [ + -73.438003, + 45.528378 + ], + [ + -73.438003, + 45.528381 + ], + [ + -73.438018, + 45.528571 + ], + [ + -73.438014, + 45.528909 + ], + [ + -73.437967, + 45.529061 + ], + [ + -73.437936, + 45.529159 + ], + [ + -73.437705, + 45.529692 + ], + [ + -73.437373, + 45.530429 + ], + [ + -73.436999, + 45.531185 + ], + [ + -73.436846, + 45.531394 + ], + [ + -73.436484, + 45.531666 + ], + [ + -73.436328, + 45.531783 + ], + [ + -73.436242, + 45.53185 + ], + [ + -73.436738, + 45.532166 + ], + [ + -73.436807, + 45.5322 + ], + [ + -73.43711, + 45.532346 + ], + [ + -73.437143, + 45.532359 + ], + [ + -73.437365, + 45.532446 + ], + [ + -73.437788, + 45.532575 + ], + [ + -73.438512, + 45.532777 + ], + [ + -73.438764, + 45.532852 + ], + [ + -73.439121, + 45.532958 + ], + [ + -73.439267, + 45.532996 + ], + [ + -73.439309, + 45.532912 + ], + [ + -73.439599, + 45.532247 + ], + [ + -73.440142, + 45.531001 + ], + [ + -73.440178, + 45.530918 + ], + [ + -73.440526, + 45.530139 + ], + [ + -73.440987, + 45.529107 + ], + [ + -73.441026, + 45.529021 + ], + [ + -73.441195, + 45.528603 + ], + [ + -73.44169, + 45.527491 + ], + [ + -73.441723, + 45.527415 + ], + [ + -73.442111, + 45.526543 + ], + [ + -73.442305, + 45.526133 + ], + [ + -73.442765, + 45.52521 + ], + [ + -73.442852, + 45.525036 + ], + [ + -73.442988, + 45.525071 + ], + [ + -73.443284, + 45.525148 + ] + ] + }, + "id": 370, + "properties": { + "id": "de4c104a-72d0-47f1-962f-e16b7ff6cd0e", + "data": { + "gtfs": { + "shape_id": "675_1_R" + }, + "segments": [ + { + "distanceMeters": 318, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 310, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 312, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 459, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 944, + "travelTimeSeconds": 158 + }, + { + "distanceMeters": 375, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 335, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 392, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 531, + "travelTimeSeconds": 89 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 55 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9301, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 4058.484264493595, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.96, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 5.35, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.96 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "1c85a97d-9927-406a-a2ae-6f738750a95d", + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "ce58f095-9b51-4521-8a41-e64bfb0df31e", + "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", + "65003b15-0baf-4f82-9e15-665e17fd1c75", + "81b3573e-d948-478d-a011-db20e21b0c62", + "def08726-b847-4fc6-b901-78e04519a492", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "3b70b024-5c5b-4081-8c70-3fc026422289", + "1e4facbf-29da-4515-97c4-4ef86c22290e", + "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "53aec761-3dae-44a6-bc58-9d5003bfa1bb", + "6e83e147-802a-4695-95f3-96585bd15c4a", + "51878141-1194-4666-977c-0597ee638ffb", + "83cbcc26-a35c-4db6-a784-03a152cb9d6f", + "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", + "2800446d-aebc-4882-a018-9ab217599d73", + "f902a061-c5e9-4964-8e41-eba87bfc63fc", + "3d39c5de-3cd5-4fd7-925f-37e3d32bd66c", + "9b519782-0187-4aff-8d16-ed5c874d6b88", + "6b5e798b-1890-48ed-a234-04c622fd13ea", + "186b2759-8d28-41b8-beae-bac2adf7b3f9", + "455644f9-4a24-446b-b548-a53bc406a4d8", + "908faba3-76b8-49ef-bcfd-e4970978a82f", + "b3ae6488-015e-46a3-b034-181cc02048d1", + "0f82a749-1250-41a6-a638-43db1b5bd1a7", + "dd7e143a-63db-4b4e-82d6-e5e80de82672", + "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", + "de69f95c-e485-42da-bcac-5eeb8a8928ad", + "e36c087c-d78e-48bb-9430-6af9d10493cf", + "5b35096e-2561-4a9f-8bf4-a3e7609358bf" + ], + "stops": [], + "line_id": "c648c8fb-8119-4b0d-a611-219f0014c88d", + "segments": [ + 0, + 12, + 22, + 27, + 36, + 45, + 57, + 67, + 80, + 86, + 94, + 98, + 103, + 105, + 109, + 115, + 120, + 126, + 131, + 134, + 142, + 147, + 184, + 187, + 191, + 194, + 203, + 218, + 221, + 224 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 370, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.444179, + 45.534113 + ], + [ + -73.444063, + 45.534075 + ], + [ + -73.443132, + 45.533854 + ], + [ + -73.443002, + 45.533823 + ], + [ + -73.442012, + 45.533579 + ], + [ + -73.441709, + 45.533503 + ], + [ + -73.441658, + 45.533491 + ], + [ + -73.441131, + 45.533366 + ], + [ + -73.440969, + 45.533327 + ], + [ + -73.439556, + 45.532972 + ], + [ + -73.439441, + 45.532944 + ], + [ + -73.439309, + 45.532912 + ], + [ + -73.440133, + 45.531021 + ], + [ + -73.440178, + 45.530918 + ], + [ + -73.440526, + 45.530139 + ], + [ + -73.440964, + 45.52916 + ], + [ + -73.440978, + 45.529127 + ], + [ + -73.441026, + 45.529021 + ], + [ + -73.44147, + 45.52911 + ], + [ + -73.441955, + 45.529206 + ], + [ + -73.443116, + 45.529414 + ], + [ + -73.443204, + 45.529427 + ], + [ + -73.443317, + 45.529427 + ], + [ + -73.44338, + 45.529423 + ], + [ + -73.44346, + 45.529396 + ], + [ + -73.444039, + 45.529185 + ], + [ + -73.444543, + 45.528991 + ], + [ + -73.444859, + 45.528908 + ], + [ + -73.444933, + 45.528888 + ], + [ + -73.444914, + 45.528816 + ], + [ + -73.444923, + 45.528722 + ], + [ + -73.444949, + 45.52865 + ], + [ + -73.444989, + 45.528564 + ], + [ + -73.445351, + 45.527885 + ], + [ + -73.445472, + 45.527662 + ], + [ + -73.445709, + 45.527224 + ], + [ + -73.446007, + 45.52663 + ], + [ + -73.446132, + 45.526446 + ], + [ + -73.446304, + 45.526231 + ], + [ + -73.446395, + 45.526117 + ], + [ + -73.447841, + 45.526653 + ], + [ + -73.449326, + 45.527219 + ], + [ + -73.449498, + 45.527284 + ], + [ + -73.45067, + 45.527735 + ], + [ + -73.451123, + 45.527906 + ], + [ + -73.451519, + 45.528063 + ], + [ + -73.452161, + 45.528356 + ], + [ + -73.452276, + 45.528409 + ], + [ + -73.452337, + 45.528437 + ], + [ + -73.45321, + 45.528797 + ], + [ + -73.454095, + 45.529149 + ], + [ + -73.454884, + 45.529487 + ], + [ + -73.454978, + 45.529527 + ], + [ + -73.45507, + 45.529563 + ], + [ + -73.457289, + 45.530466 + ], + [ + -73.457482, + 45.530545 + ], + [ + -73.458332, + 45.530905 + ], + [ + -73.460581, + 45.531882 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.462023, + 45.532624 + ], + [ + -73.462751, + 45.533003 + ], + [ + -73.463694, + 45.53356 + ], + [ + -73.463873, + 45.533665 + ], + [ + -73.464875, + 45.534543 + ], + [ + -73.465725, + 45.535327 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.4688, + 45.537046 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469941, + 45.537318 + ], + [ + -73.470305, + 45.537406 + ], + [ + -73.470749, + 45.537487 + ], + [ + -73.471335, + 45.537563 + ], + [ + -73.471845, + 45.53759 + ], + [ + -73.471919, + 45.53759 + ], + [ + -73.472146, + 45.537591 + ], + [ + -73.472355, + 45.537591 + ], + [ + -73.473126, + 45.537555 + ], + [ + -73.473826, + 45.537492 + ], + [ + -73.474508, + 45.53743 + ], + [ + -73.474517, + 45.537429 + ], + [ + -73.474599, + 45.537423 + ], + [ + -73.475173, + 45.53738 + ], + [ + -73.47563, + 45.537344 + ], + [ + -73.476192, + 45.537353 + ], + [ + -73.476662, + 45.537394 + ], + [ + -73.477026, + 45.537434 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.47787, + 45.537597 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479487, + 45.538074 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.482446, + 45.538908 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.485769, + 45.540115 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.491356, + 45.541251 + ], + [ + -73.491461, + 45.541175 + ], + [ + -73.491486, + 45.541152 + ], + [ + -73.491851, + 45.540779 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.490724, + 45.539892 + ], + [ + -73.490551, + 45.539825 + ], + [ + -73.490497, + 45.539768 + ], + [ + -73.49051, + 45.539681 + ], + [ + -73.490564, + 45.539666 + ], + [ + -73.49064, + 45.539646 + ], + [ + -73.490709, + 45.539683 + ] + ] + }, + "id": 371, + "properties": { + "id": "d2c2e98a-0b5f-4f69-b8d6-986a27969348", + "data": { + "gtfs": { + "shape_id": "676_1_A" + }, + "segments": [ + { + "distanceMeters": 252, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 331, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 316, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 555, + "travelTimeSeconds": 109 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 40 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5817, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3687.4558134210874, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.1, + "travelTimeWithoutDwellTimesSeconds": 1140, + "operatingTimeWithLayoverTimeSeconds": 1320, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1140, + "operatingSpeedWithLayoverMetersPerSecond": 4.41, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.1 + }, + "mode": "bus", + "name": "École Jacques-Rousseau", + "color": "#A32638", + "nodes": [ + "210e532b-2acc-4a3e-b173-3471add098b1", + "576ef8c5-693c-4ae9-bb41-68685f43e174", + "2dda318d-8bf9-4860-b60d-6fcb1dd29156", + "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", + "de69f95c-e485-42da-bcac-5eeb8a8928ad", + "c37c473f-58f7-42cd-82b8-4282dea696a3", + "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", + "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "51878141-1194-4666-977c-0597ee638ffb", + "0a078431-12d6-4e73-9908-076c3a27e8ed", + "211cb268-dcfa-4d7b-810c-681bfa65d4c8", + "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "1e4facbf-29da-4515-97c4-4ef86c22290e", + "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", + "06d26eca-08e9-467e-9ff0-9595778162a0", + "abdcf999-0861-4881-a478-42fa957c7f17", + "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "5f672947-8abc-447c-bf60-535abbf76fae", + "31e8057b-0fb0-44bd-83cf-3acad24654ec", + "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", + "411bafbe-bac8-4586-9af4-bc0b3163bdde", + "1c85a97d-9927-406a-a2ae-6f738750a95d" + ], + "stops": [], + "line_id": "89c4af32-00c6-4332-b218-61365711704c", + "segments": [ + 0, + 7, + 10, + 12, + 16, + 27, + 38, + 41, + 46, + 51, + 54, + 60, + 62, + 65, + 75, + 82, + 87, + 98, + 102, + 108, + 113, + 134 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 371, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.490709, + 45.539683 + ], + [ + -73.490762, + 45.539711 + ], + [ + -73.490724, + 45.539892 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.491774, + 45.540689 + ], + [ + -73.491536, + 45.540936 + ], + [ + -73.491291, + 45.541175 + ], + [ + -73.4912, + 45.541242 + ], + [ + -73.491136, + 45.541157 + ], + [ + -73.490992, + 45.54099 + ], + [ + -73.490842, + 45.540864 + ], + [ + -73.490628, + 45.540711 + ], + [ + -73.490596, + 45.540697 + ], + [ + -73.49029, + 45.540558 + ], + [ + -73.490056, + 45.540495 + ], + [ + -73.489882, + 45.540459 + ], + [ + -73.489616, + 45.540437 + ], + [ + -73.48739, + 45.540374 + ], + [ + -73.487219, + 45.540365 + ], + [ + -73.487035, + 45.540347 + ], + [ + -73.486894, + 45.540306 + ], + [ + -73.486778, + 45.540266 + ], + [ + -73.486481, + 45.540152 + ], + [ + -73.486283, + 45.540077 + ], + [ + -73.485548, + 45.539807 + ], + [ + -73.484691, + 45.539492 + ], + [ + -73.483734, + 45.539149 + ], + [ + -73.482896, + 45.538851 + ], + [ + -73.482774, + 45.538807 + ], + [ + -73.482716, + 45.538785 + ], + [ + -73.482598, + 45.53874 + ], + [ + -73.48192, + 45.538573 + ], + [ + -73.481417, + 45.538456 + ], + [ + -73.480934, + 45.538339 + ], + [ + -73.48046, + 45.538204 + ], + [ + -73.480071, + 45.53807 + ], + [ + -73.480029, + 45.538055 + ], + [ + -73.479899, + 45.538011 + ], + [ + -73.478959, + 45.537703 + ], + [ + -73.478744, + 45.537632 + ], + [ + -73.478342, + 45.537493 + ], + [ + -73.477863, + 45.537376 + ], + [ + -73.477566, + 45.537326 + ], + [ + -73.477393, + 45.537299 + ], + [ + -73.477004, + 45.537236 + ], + [ + -73.476954, + 45.537232 + ], + [ + -73.476575, + 45.537205 + ], + [ + -73.476238, + 45.537178 + ], + [ + -73.475826, + 45.537168 + ], + [ + -73.475786, + 45.537168 + ], + [ + -73.475443, + 45.537168 + ], + [ + -73.475117, + 45.537179 + ], + [ + -73.475041, + 45.537182 + ], + [ + -73.474613, + 45.537231 + ], + [ + -73.473285, + 45.537352 + ], + [ + -73.473179, + 45.537361 + ], + [ + -73.472378, + 45.537402 + ], + [ + -73.472338, + 45.537402 + ], + [ + -73.472138, + 45.537406 + ], + [ + -73.47191, + 45.537397 + ], + [ + -73.471292, + 45.537352 + ], + [ + -73.47104, + 45.537338 + ], + [ + -73.470771, + 45.537301 + ], + [ + -73.470748, + 45.537298 + ], + [ + -73.470358, + 45.537235 + ], + [ + -73.469925, + 45.537131 + ], + [ + -73.469912, + 45.537128 + ], + [ + -73.469379, + 45.536995 + ], + [ + -73.469112, + 45.536928 + ], + [ + -73.468466, + 45.53678 + ], + [ + -73.468332, + 45.536746 + ], + [ + -73.468122, + 45.536694 + ], + [ + -73.467933, + 45.536631 + ], + [ + -73.46781, + 45.536591 + ], + [ + -73.46756, + 45.536496 + ], + [ + -73.467476, + 45.536464 + ], + [ + -73.467173, + 45.536302 + ], + [ + -73.467131, + 45.536271 + ], + [ + -73.466861, + 45.536077 + ], + [ + -73.466599, + 45.535866 + ], + [ + -73.466185, + 45.535477 + ], + [ + -73.466054, + 45.535353 + ], + [ + -73.465888, + 45.535192 + ], + [ + -73.465671, + 45.534979 + ], + [ + -73.465172, + 45.534493 + ], + [ + -73.464286, + 45.533719 + ], + [ + -73.464126, + 45.533598 + ], + [ + -73.464049, + 45.533539 + ], + [ + -73.463591, + 45.533242 + ], + [ + -73.463305, + 45.533089 + ], + [ + -73.463181, + 45.533022 + ], + [ + -73.462986, + 45.532918 + ], + [ + -73.461825, + 45.532265 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461206, + 45.531962 + ], + [ + -73.460868, + 45.531797 + ], + [ + -73.460137, + 45.531468 + ], + [ + -73.459095, + 45.531013 + ], + [ + -73.457813, + 45.53048 + ], + [ + -73.457591, + 45.530387 + ], + [ + -73.456631, + 45.529983 + ], + [ + -73.45522, + 45.529388 + ], + [ + -73.455128, + 45.529352 + ], + [ + -73.454669, + 45.52916 + ], + [ + -73.453608, + 45.528719 + ], + [ + -73.452465, + 45.528243 + ], + [ + -73.452419, + 45.528224 + ], + [ + -73.452095, + 45.528089 + ], + [ + -73.451849, + 45.527987 + ], + [ + -73.44989, + 45.527219 + ], + [ + -73.449586, + 45.5271 + ], + [ + -73.447563, + 45.526329 + ], + [ + -73.447243, + 45.526199 + ], + [ + -73.446596, + 45.52596 + ], + [ + -73.446438, + 45.5259 + ], + [ + -73.446245, + 45.525825 + ], + [ + -73.445479, + 45.525532 + ], + [ + -73.44525, + 45.525455 + ], + [ + -73.445048, + 45.525397 + ], + [ + -73.444823, + 45.525347 + ], + [ + -73.444697, + 45.525311 + ], + [ + -73.444476, + 45.525248 + ], + [ + -73.44392, + 45.525126 + ], + [ + -73.443091, + 45.524907 + ], + [ + -73.442951, + 45.524869 + ], + [ + -73.442817, + 45.524838 + ], + [ + -73.442704, + 45.525 + ], + [ + -73.442618, + 45.525173 + ], + [ + -73.442158, + 45.526102 + ], + [ + -73.441616, + 45.527307 + ], + [ + -73.441615, + 45.52731 + ], + [ + -73.441581, + 45.527384 + ], + [ + -73.441254, + 45.528072 + ], + [ + -73.440901, + 45.528913 + ], + [ + -73.440869, + 45.52899 + ], + [ + -73.44038, + 45.530083 + ], + [ + -73.440366, + 45.530114 + ], + [ + -73.440274, + 45.530321 + ], + [ + -73.440069, + 45.530782 + ], + [ + -73.440025, + 45.53088 + ], + [ + -73.439543, + 45.531958 + ], + [ + -73.439479, + 45.532111 + ], + [ + -73.439159, + 45.532867 + ], + [ + -73.439121, + 45.532958 + ], + [ + -73.439267, + 45.532996 + ], + [ + -73.439534, + 45.53307 + ], + [ + -73.439566, + 45.533079 + ], + [ + -73.440804, + 45.533409 + ], + [ + -73.440917, + 45.533439 + ], + [ + -73.441654, + 45.533615 + ], + [ + -73.441957, + 45.533692 + ], + [ + -73.44295, + 45.533944 + ], + [ + -73.443077, + 45.533976 + ], + [ + -73.443872, + 45.534172 + ] + ] + }, + "id": 372, + "properties": { + "id": "8acf576c-1359-480c-a74f-1bb84633da4b", + "data": { + "gtfs": { + "shape_id": "676_1_R" + }, + "segments": [ + { + "distanceMeters": 318, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 310, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 312, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 447, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 49 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5908, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3687.4558134210874, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.18, + "travelTimeWithoutDwellTimesSeconds": 1140, + "operatingTimeWithLayoverTimeSeconds": 1320, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1140, + "operatingSpeedWithLayoverMetersPerSecond": 4.48, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.18 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "1c85a97d-9927-406a-a2ae-6f738750a95d", + "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "ce58f095-9b51-4521-8a41-e64bfb0df31e", + "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", + "65003b15-0baf-4f82-9e15-665e17fd1c75", + "81b3573e-d948-478d-a011-db20e21b0c62", + "def08726-b847-4fc6-b901-78e04519a492", + "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "3b70b024-5c5b-4081-8c70-3fc026422289", + "1e4facbf-29da-4515-97c4-4ef86c22290e", + "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "53aec761-3dae-44a6-bc58-9d5003bfa1bb", + "6e83e147-802a-4695-95f3-96585bd15c4a", + "51878141-1194-4666-977c-0597ee638ffb", + "83cbcc26-a35c-4db6-a784-03a152cb9d6f", + "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", + "2800446d-aebc-4882-a018-9ab217599d73", + "e36c087c-d78e-48bb-9430-6af9d10493cf", + "de69f95c-e485-42da-bcac-5eeb8a8928ad", + "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", + "0e37f239-15e7-41c5-a31a-ce2ad3dc4eae", + "2dda318d-8bf9-4860-b60d-6fcb1dd29156", + "576ef8c5-693c-4ae9-bb41-68685f43e174", + "210e532b-2acc-4a3e-b173-3471add098b1" + ], + "stops": [], + "line_id": "89c4af32-00c6-4332-b218-61365711704c", + "segments": [ + 0, + 12, + 22, + 27, + 36, + 45, + 57, + 67, + 80, + 86, + 94, + 98, + 103, + 105, + 109, + 115, + 120, + 130, + 133, + 138, + 141, + 145, + 147 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 372, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.481451, + 45.529767 + ], + [ + -73.481326, + 45.530017 + ], + [ + -73.481304, + 45.530061 + ], + [ + -73.481198, + 45.530124 + ], + [ + -73.479917, + 45.532573 + ], + [ + -73.479864, + 45.532675 + ], + [ + -73.479068, + 45.532458 + ], + [ + -73.478243, + 45.532247 + ], + [ + -73.478045, + 45.532198 + ], + [ + -73.477701, + 45.532113 + ], + [ + -73.477534, + 45.532071 + ], + [ + -73.478611, + 45.530051 + ], + [ + -73.478676, + 45.52993 + ], + [ + -73.478201, + 45.529802 + ], + [ + -73.477753, + 45.529682 + ], + [ + -73.476841, + 45.52943 + ], + [ + -73.476086, + 45.529229 + ], + [ + -73.476011, + 45.529209 + ], + [ + -73.475204, + 45.528998 + ], + [ + -73.474395, + 45.528791 + ], + [ + -73.473728, + 45.528621 + ], + [ + -73.4736, + 45.528588 + ], + [ + -73.472809, + 45.528394 + ], + [ + -73.472079, + 45.528199 + ], + [ + -73.472018, + 45.528183 + ], + [ + -73.471289, + 45.527994 + ], + [ + -73.470663, + 45.527827 + ], + [ + -73.469147, + 45.527437 + ], + [ + -73.469036, + 45.527408 + ], + [ + -73.46814, + 45.52716 + ], + [ + -73.467315, + 45.526946 + ], + [ + -73.467236, + 45.526926 + ], + [ + -73.465397, + 45.526437 + ], + [ + -73.465154, + 45.526372 + ], + [ + -73.464731, + 45.526435 + ], + [ + -73.463642, + 45.52847 + ], + [ + -73.462723, + 45.530185 + ], + [ + -73.462624, + 45.530371 + ], + [ + -73.462437, + 45.530708 + ], + [ + -73.462358, + 45.530861 + ], + [ + -73.46217, + 45.531262 + ], + [ + -73.461938, + 45.531653 + ], + [ + -73.461719, + 45.531971 + ], + [ + -73.461594, + 45.532152 + ], + [ + -73.461433, + 45.532328 + ], + [ + -73.46167, + 45.53244 + ], + [ + -73.46202, + 45.532623 + ], + [ + -73.462751, + 45.533003 + ], + [ + -73.463183, + 45.533258 + ], + [ + -73.463682, + 45.533553 + ], + [ + -73.463873, + 45.533665 + ], + [ + -73.464875, + 45.534543 + ], + [ + -73.465723, + 45.535325 + ], + [ + -73.465865, + 45.535456 + ], + [ + -73.466411, + 45.535978 + ], + [ + -73.466736, + 45.536257 + ], + [ + -73.467022, + 45.536441 + ], + [ + -73.467079, + 45.536478 + ], + [ + -73.467286, + 45.53659 + ], + [ + -73.467515, + 45.53668 + ], + [ + -73.467814, + 45.536798 + ], + [ + -73.468166, + 45.536897 + ], + [ + -73.468785, + 45.537042 + ], + [ + -73.469046, + 45.537104 + ], + [ + -73.469941, + 45.537318 + ], + [ + -73.470305, + 45.537406 + ], + [ + -73.470749, + 45.537487 + ], + [ + -73.471335, + 45.537563 + ], + [ + -73.471845, + 45.53759 + ], + [ + -73.471916, + 45.53759 + ], + [ + -73.472146, + 45.537591 + ], + [ + -73.472355, + 45.537591 + ], + [ + -73.473126, + 45.537555 + ], + [ + -73.473826, + 45.537492 + ], + [ + -73.474493, + 45.537431 + ], + [ + -73.474517, + 45.537429 + ], + [ + -73.474599, + 45.537423 + ], + [ + -73.475173, + 45.53738 + ], + [ + -73.47563, + 45.537344 + ], + [ + -73.476192, + 45.537353 + ], + [ + -73.476662, + 45.537394 + ], + [ + -73.477026, + 45.537434 + ], + [ + -73.477274, + 45.53747 + ], + [ + -73.47746, + 45.537506 + ], + [ + -73.477625, + 45.537533 + ], + [ + -73.477868, + 45.537596 + ], + [ + -73.478288, + 45.537704 + ], + [ + -73.478769, + 45.537844 + ], + [ + -73.479473, + 45.538069 + ], + [ + -73.479475, + 45.53807 + ], + [ + -73.479713, + 45.538159 + ], + [ + -73.480503, + 45.538384 + ], + [ + -73.481236, + 45.538582 + ], + [ + -73.481767, + 45.538708 + ], + [ + -73.482303, + 45.538857 + ], + [ + -73.482444, + 45.538908 + ], + [ + -73.48258, + 45.538957 + ], + [ + -73.482614, + 45.538969 + ], + [ + -73.48418, + 45.539542 + ], + [ + -73.484865, + 45.539793 + ], + [ + -73.485757, + 45.54011 + ], + [ + -73.486117, + 45.540239 + ], + [ + -73.486682, + 45.540437 + ], + [ + -73.486867, + 45.540495 + ], + [ + -73.487008, + 45.540518 + ], + [ + -73.487265, + 45.540549 + ], + [ + -73.488279, + 45.54059 + ], + [ + -73.489733, + 45.540626 + ], + [ + -73.48997, + 45.540662 + ], + [ + -73.490151, + 45.540707 + ], + [ + -73.490333, + 45.540774 + ], + [ + -73.490606, + 45.540914 + ], + [ + -73.490682, + 45.540972 + ], + [ + -73.490795, + 45.541058 + ], + [ + -73.49093, + 45.541215 + ], + [ + -73.490985, + 45.541323 + ], + [ + -73.491022, + 45.541391 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.491356, + 45.541251 + ], + [ + -73.491461, + 45.541175 + ], + [ + -73.491486, + 45.541152 + ], + [ + -73.491851, + 45.54078 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.490724, + 45.539892 + ], + [ + -73.490551, + 45.539825 + ], + [ + -73.490497, + 45.539768 + ], + [ + -73.49051, + 45.539681 + ], + [ + -73.490564, + 45.539666 + ], + [ + -73.49064, + 45.539646 + ], + [ + -73.490709, + 45.539683 + ] + ] + }, + "id": 373, + "properties": { + "id": "5d7d40d8-c17a-45b3-bbde-a8fdee999e42", + "data": { + "gtfs": { + "shape_id": "678_1_A" + }, + "segments": [ + { + "distanceMeters": 336, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 102, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 315, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 136, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 556, + "travelTimeSeconds": 107 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 40 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5605, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 1327.803383396285, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.19, + "travelTimeWithoutDwellTimesSeconds": 1080, + "operatingTimeWithLayoverTimeSeconds": 1260, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1080, + "operatingSpeedWithLayoverMetersPerSecond": 4.45, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.19 + }, + "mode": "bus", + "name": "École Jacques-Rousseau", + "color": "#A32638", + "nodes": [ + "48e0fb78-b91c-4eec-a77a-11ad01e61d0c", + "d488846f-abf4-41f2-9dd0-43b9cbb645a3", + "621204a0-8cdd-445a-a8e4-bf8b08e16eba", + "af70f982-a652-4cf9-9be4-d543d75ad805", + "48d7eace-3f37-4246-9aea-13944ac3b50c", + "e709ab81-b01c-47b3-a19c-63757b8320b0", + "10a8a297-0790-40e2-901e-24be7500f796", + "979368fb-58ae-4231-bd7c-716ca91bbb6f", + "b6b773c1-84a4-412e-a7be-7f535298ece2", + "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", + "6beffd5a-a5e7-4808-863a-90505f6172be", + "8746746f-daed-4d54-a90f-724d51454ae1", + "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "1e4facbf-29da-4515-97c4-4ef86c22290e", + "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", + "06d26eca-08e9-467e-9ff0-9595778162a0", + "abdcf999-0861-4881-a478-42fa957c7f17", + "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", + "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "5f672947-8abc-447c-bf60-535abbf76fae", + "31e8057b-0fb0-44bd-83cf-3acad24654ec", + "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", + "411bafbe-bac8-4586-9af4-bc0b3163bdde", + "1c85a97d-9927-406a-a2ae-6f738750a95d" + ], + "stops": [], + "line_id": "0f52b506-b0e5-4459-8ca6-a462459fc2af", + "segments": [ + 0, + 4, + 9, + 11, + 16, + 20, + 23, + 27, + 30, + 32, + 35, + 36, + 42, + 46, + 49, + 52, + 62, + 69, + 74, + 85, + 89, + 95, + 100, + 121 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 373, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.490709, + 45.539683 + ], + [ + -73.490762, + 45.539711 + ], + [ + -73.490724, + 45.539892 + ], + [ + -73.491924, + 45.540532 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.492353, + 45.54027 + ], + [ + -73.492859, + 45.539758 + ], + [ + -73.494691, + 45.537875 + ], + [ + -73.494803, + 45.53776 + ], + [ + -73.495431, + 45.537131 + ], + [ + -73.495499, + 45.537063 + ], + [ + -73.495937, + 45.536623 + ], + [ + -73.496193, + 45.536366 + ], + [ + -73.49677, + 45.535781 + ], + [ + -73.496932, + 45.535682 + ], + [ + -73.496814, + 45.535632 + ], + [ + -73.496531, + 45.535518 + ], + [ + -73.495741, + 45.5352 + ], + [ + -73.495464, + 45.535119 + ], + [ + -73.494799, + 45.534843 + ], + [ + -73.494432, + 45.534691 + ], + [ + -73.49424, + 45.534611 + ], + [ + -73.493248, + 45.534202 + ], + [ + -73.492642, + 45.533952 + ], + [ + -73.492582, + 45.533927 + ], + [ + -73.491559, + 45.533504 + ], + [ + -73.491119, + 45.533321 + ], + [ + -73.490996, + 45.53327 + ], + [ + -73.49074, + 45.533166 + ], + [ + -73.48997, + 45.532856 + ], + [ + -73.489306, + 45.532577 + ], + [ + -73.488596, + 45.532287 + ], + [ + -73.488546, + 45.532266 + ], + [ + -73.487817, + 45.531951 + ], + [ + -73.485509, + 45.531003 + ], + [ + -73.485221, + 45.530885 + ], + [ + -73.483829, + 45.530295 + ], + [ + -73.483239, + 45.530049 + ], + [ + -73.483118, + 45.529998 + ], + [ + -73.482375, + 45.529701 + ], + [ + -73.482048, + 45.529561 + ], + [ + -73.48174, + 45.529434 + ], + [ + -73.481625, + 45.529386 + ], + [ + -73.48156, + 45.52953 + ], + [ + -73.481466, + 45.529737 + ], + [ + -73.481451, + 45.529767 + ], + [ + -73.481326, + 45.530017 + ], + [ + -73.481304, + 45.530061 + ], + [ + -73.481198, + 45.530124 + ], + [ + -73.479917, + 45.532574 + ], + [ + -73.479864, + 45.532675 + ], + [ + -73.479068, + 45.532458 + ], + [ + -73.478243, + 45.532247 + ], + [ + -73.478034, + 45.532195 + ], + [ + -73.4777, + 45.532112 + ], + [ + -73.477534, + 45.532071 + ], + [ + -73.478612, + 45.53005 + ], + [ + -73.478676, + 45.52993 + ], + [ + -73.478187, + 45.529798 + ], + [ + -73.477753, + 45.529682 + ], + [ + -73.476841, + 45.52943 + ], + [ + -73.476072, + 45.529226 + ], + [ + -73.476011, + 45.529209 + ], + [ + -73.475204, + 45.528998 + ], + [ + -73.474395, + 45.528791 + ], + [ + -73.473726, + 45.52862 + ], + [ + -73.4736, + 45.528588 + ], + [ + -73.472809, + 45.528394 + ], + [ + -73.472076, + 45.528198 + ], + [ + -73.472018, + 45.528183 + ], + [ + -73.471289, + 45.527994 + ], + [ + -73.470663, + 45.527827 + ], + [ + -73.469143, + 45.527436 + ], + [ + -73.469036, + 45.527408 + ], + [ + -73.46814, + 45.52716 + ], + [ + -73.467311, + 45.526945 + ], + [ + -73.467236, + 45.526926 + ], + [ + -73.465393, + 45.526436 + ] + ] + }, + "id": 374, + "properties": { + "id": "586826a2-b89a-4936-a94f-80ea93bc4eba", + "data": { + "gtfs": { + "shape_id": "678_1_R" + }, + "segments": [ + { + "distanceMeters": 198, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 323, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 69, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 55, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 195, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 28 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 4149, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2484.196276592894, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.76, + "travelTimeWithoutDwellTimesSeconds": 720, + "operatingTimeWithLayoverTimeSeconds": 900, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 720, + "operatingSpeedWithLayoverMetersPerSecond": 4.61, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.76 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "1c85a97d-9927-406a-a2ae-6f738750a95d", + "4e53f32e-03c3-4701-94aa-590f28b5adcd", + "04b348b3-bb46-4177-9e4b-604bf8d96a58", + "081e45a0-31c3-487c-996e-66d1b824569d", + "4ae33b06-30dd-4ad3-8df9-3ce610880853", + "9cf81604-6d70-4ba8-a3fc-521104742058", + "28f2fe65-961c-4550-a722-1e7790fe94ad", + "9d0a7ab6-be66-4ca9-b863-8712d8cd028c", + "999ed130-7d99-4115-ac3c-cabba7731288", + "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "27c5df15-201f-4855-9f49-556fd659fd8e", + "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", + "48e0fb78-b91c-4eec-a77a-11ad01e61d0c", + "d488846f-abf4-41f2-9dd0-43b9cbb645a3", + "621204a0-8cdd-445a-a8e4-bf8b08e16eba", + "af70f982-a652-4cf9-9be4-d543d75ad805", + "48d7eace-3f37-4246-9aea-13944ac3b50c", + "e709ab81-b01c-47b3-a19c-63757b8320b0", + "10a8a297-0790-40e2-901e-24be7500f796", + "979368fb-58ae-4231-bd7c-716ca91bbb6f", + "b6b773c1-84a4-412e-a7be-7f535298ece2", + "a64e19cc-ca7c-47f1-9793-ecfc50e76be9" + ], + "stops": [], + "line_id": "0f52b506-b0e5-4459-8ca6-a462459fc2af", + "segments": [ + 0, + 5, + 7, + 9, + 11, + 16, + 20, + 23, + 26, + 31, + 34, + 41, + 45, + 49, + 54, + 56, + 61, + 65, + 68, + 72, + 75 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 374, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.446863, + 45.578803 + ], + [ + -73.446887, + 45.57892 + ], + [ + -73.446904, + 45.579005 + ], + [ + -73.447123, + 45.580066 + ], + [ + -73.447136, + 45.58013 + ], + [ + -73.447307, + 45.58099 + ], + [ + -73.447337, + 45.581174 + ], + [ + -73.447364, + 45.581462 + ], + [ + -73.447358, + 45.581597 + ], + [ + -73.447346, + 45.581723 + ], + [ + -73.447325, + 45.581872 + ], + [ + -73.447274, + 45.582088 + ], + [ + -73.447195, + 45.582299 + ], + [ + -73.447195, + 45.5823 + ], + [ + -73.447144, + 45.582429 + ], + [ + -73.447053, + 45.582609 + ], + [ + -73.44698, + 45.58274 + ], + [ + -73.446895, + 45.58287 + ], + [ + -73.446759, + 45.583041 + ], + [ + -73.446638, + 45.583181 + ], + [ + -73.446546, + 45.58327 + ], + [ + -73.446413, + 45.583392 + ], + [ + -73.446342, + 45.583449 + ], + [ + -73.446149, + 45.583603 + ], + [ + -73.446125, + 45.583622 + ], + [ + -73.446013, + 45.583711 + ], + [ + -73.445939, + 45.583653 + ], + [ + -73.445658, + 45.583434 + ], + [ + -73.445465, + 45.583283 + ], + [ + -73.445375, + 45.583216 + ], + [ + -73.445296, + 45.583162 + ], + [ + -73.445278, + 45.58316 + ], + [ + -73.445214, + 45.583154 + ], + [ + -73.445192, + 45.583151 + ], + [ + -73.443826, + 45.582072 + ], + [ + -73.443724, + 45.581969 + ], + [ + -73.443652, + 45.58188 + ], + [ + -73.443575, + 45.581784 + ], + [ + -73.443489, + 45.581649 + ], + [ + -73.443437, + 45.581532 + ], + [ + -73.443375, + 45.581348 + ], + [ + -73.443359, + 45.581199 + ], + [ + -73.443264, + 45.580785 + ], + [ + -73.443203, + 45.58047 + ], + [ + -73.443169, + 45.580299 + ], + [ + -73.443122, + 45.580146 + ], + [ + -73.44301, + 45.579552 + ], + [ + -73.442822, + 45.57868 + ], + [ + -73.442754, + 45.578324 + ], + [ + -73.442692, + 45.577982 + ], + [ + -73.442644, + 45.577758 + ], + [ + -73.442632, + 45.577699 + ], + [ + -73.442584, + 45.577456 + ], + [ + -73.442456, + 45.576961 + ], + [ + -73.442427, + 45.576893 + ], + [ + -73.442391, + 45.576835 + ], + [ + -73.442323, + 45.576754 + ], + [ + -73.44223, + 45.576659 + ], + [ + -73.44214, + 45.576587 + ], + [ + -73.441907, + 45.576399 + ], + [ + -73.441505, + 45.576077 + ], + [ + -73.441396, + 45.575988 + ], + [ + -73.441078, + 45.575736 + ], + [ + -73.440733, + 45.575462 + ], + [ + -73.440381, + 45.575187 + ], + [ + -73.440036, + 45.574917 + ], + [ + -73.439719, + 45.574665 + ], + [ + -73.439615, + 45.574593 + ], + [ + -73.43947, + 45.574525 + ], + [ + -73.43935, + 45.574476 + ], + [ + -73.439334, + 45.574471 + ], + [ + -73.439097, + 45.574403 + ], + [ + -73.438625, + 45.5743 + ], + [ + -73.438216, + 45.5742 + ], + [ + -73.437342, + 45.573989 + ], + [ + -73.436799, + 45.573856 + ], + [ + -73.436584, + 45.573804 + ], + [ + -73.436462, + 45.574055 + ], + [ + -73.43627, + 45.574452 + ], + [ + -73.436268, + 45.574456 + ], + [ + -73.436179, + 45.574618 + ], + [ + -73.436118, + 45.574717 + ], + [ + -73.43596, + 45.574982 + ], + [ + -73.435699, + 45.575382 + ], + [ + -73.435467, + 45.575724 + ], + [ + -73.43543, + 45.575778 + ], + [ + -73.43534, + 45.575913 + ], + [ + -73.435197, + 45.576138 + ], + [ + -73.435093, + 45.576309 + ], + [ + -73.434836, + 45.576741 + ], + [ + -73.434758, + 45.576873 + ], + [ + -73.434669, + 45.577024 + ], + [ + -73.434583, + 45.577154 + ], + [ + -73.434306, + 45.577609 + ], + [ + -73.434048, + 45.57804 + ], + [ + -73.433813, + 45.578436 + ], + [ + -73.433689, + 45.578652 + ], + [ + -73.43354, + 45.57889 + ], + [ + -73.433468, + 45.578988 + ], + [ + -73.433444, + 45.579021 + ], + [ + -73.43335, + 45.57912 + ], + [ + -73.433199, + 45.579264 + ], + [ + -73.433076, + 45.579354 + ], + [ + -73.43294, + 45.579444 + ], + [ + -73.432711, + 45.579565 + ], + [ + -73.432272, + 45.579794 + ], + [ + -73.4319, + 45.579983 + ], + [ + -73.431767, + 45.580048 + ], + [ + -73.431616, + 45.580122 + ], + [ + -73.431365, + 45.580241 + ], + [ + -73.431218, + 45.580311 + ], + [ + -73.430652, + 45.580544 + ], + [ + -73.430169, + 45.580742 + ], + [ + -73.430012, + 45.580805 + ], + [ + -73.42982, + 45.580902 + ], + [ + -73.429773, + 45.580926 + ], + [ + -73.429655, + 45.581003 + ], + [ + -73.429134, + 45.581335 + ], + [ + -73.428889, + 45.581492 + ], + [ + -73.428761, + 45.581574 + ], + [ + -73.428049, + 45.582021 + ], + [ + -73.42763, + 45.582284 + ], + [ + -73.427138, + 45.582598 + ], + [ + -73.427107, + 45.582619 + ], + [ + -73.427069, + 45.582643 + ], + [ + -73.426641, + 45.582922 + ], + [ + -73.426528, + 45.583004 + ], + [ + -73.429814, + 45.585537 + ], + [ + -73.429832, + 45.585551 + ], + [ + -73.429958, + 45.585646 + ], + [ + -73.430085, + 45.585745 + ], + [ + -73.430467, + 45.586051 + ], + [ + -73.430716, + 45.586245 + ], + [ + -73.430893, + 45.586393 + ], + [ + -73.431289, + 45.586718 + ], + [ + -73.431318, + 45.586743 + ], + [ + -73.431717, + 45.587092 + ], + [ + -73.431535, + 45.58712 + ], + [ + -73.431364, + 45.587136 + ], + [ + -73.431293, + 45.587147 + ], + [ + -73.431197, + 45.587162 + ], + [ + -73.431023, + 45.587199 + ], + [ + -73.430126, + 45.587748 + ], + [ + -73.429364, + 45.588228 + ], + [ + -73.428809, + 45.588577 + ], + [ + -73.428677, + 45.58866 + ], + [ + -73.428716, + 45.588691 + ], + [ + -73.428853, + 45.588803 + ], + [ + -73.429011, + 45.588919 + ], + [ + -73.429127, + 45.589004 + ], + [ + -73.429464, + 45.589267 + ], + [ + -73.42947, + 45.589271 + ], + [ + -73.429525, + 45.589323 + ], + [ + -73.429569, + 45.589379 + ], + [ + -73.429601, + 45.589439 + ], + [ + -73.429621, + 45.589502 + ], + [ + -73.429799, + 45.590246 + ], + [ + -73.429965, + 45.590937 + ], + [ + -73.430035, + 45.591102 + ], + [ + -73.430052, + 45.591144 + ], + [ + -73.430249, + 45.591315 + ], + [ + -73.430625, + 45.591627 + ], + [ + -73.430742, + 45.591724 + ], + [ + -73.430999, + 45.591887 + ], + [ + -73.431426, + 45.592216 + ], + [ + -73.431736, + 45.592481 + ], + [ + -73.432411, + 45.593022 + ], + [ + -73.433124, + 45.593629 + ], + [ + -73.433267, + 45.593751 + ], + [ + -73.433582, + 45.593589 + ], + [ + -73.433689, + 45.593585 + ], + [ + -73.433785, + 45.593535 + ], + [ + -73.433902, + 45.593472 + ], + [ + -73.434067, + 45.593383 + ], + [ + -73.434286, + 45.593257 + ], + [ + -73.434482, + 45.593117 + ], + [ + -73.434699, + 45.59296 + ], + [ + -73.434861, + 45.592843 + ], + [ + -73.43505, + 45.592699 + ], + [ + -73.435304, + 45.592506 + ], + [ + -73.435474, + 45.592362 + ], + [ + -73.435781, + 45.592007 + ], + [ + -73.43601, + 45.591773 + ], + [ + -73.436174, + 45.591637 + ], + [ + -73.436205, + 45.591611 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.438326, + 45.592827 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.440066, + 45.594111 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.442146, + 45.595666 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442211, + 45.596301 + ], + [ + -73.442031, + 45.596415 + ], + [ + -73.441835, + 45.596541 + ], + [ + -73.441552, + 45.59672 + ], + [ + -73.441367, + 45.596828 + ], + [ + -73.441269, + 45.596877 + ], + [ + -73.440742, + 45.597138 + ], + [ + -73.439976, + 45.597521 + ], + [ + -73.43978, + 45.597624 + ], + [ + -73.438745, + 45.598161 + ], + [ + -73.438619, + 45.598226 + ], + [ + -73.438241, + 45.598406 + ], + [ + -73.437622, + 45.598721 + ], + [ + -73.43732, + 45.5989 + ], + [ + -73.437156, + 45.599026 + ], + [ + -73.437093, + 45.599081 + ], + [ + -73.437027, + 45.599139 + ], + [ + -73.43685, + 45.599305 + ], + [ + -73.436461, + 45.599693 + ], + [ + -73.436408, + 45.599746 + ], + [ + -73.436103, + 45.600029 + ], + [ + -73.435984, + 45.600152 + ], + [ + -73.435806, + 45.600335 + ], + [ + -73.435516, + 45.600609 + ], + [ + -73.435271, + 45.600843 + ], + [ + -73.43499, + 45.601122 + ], + [ + -73.434683, + 45.601399 + ], + [ + -73.434596, + 45.601477 + ], + [ + -73.434475, + 45.601531 + ], + [ + -73.434166, + 45.601679 + ], + [ + -73.433739, + 45.601863 + ], + [ + -73.432706, + 45.602245 + ], + [ + -73.431263, + 45.60278 + ], + [ + -73.430877, + 45.603027 + ], + [ + -73.430603, + 45.603201 + ], + [ + -73.430523, + 45.603252 + ], + [ + -73.429967, + 45.603607 + ], + [ + -73.429453, + 45.603926 + ], + [ + -73.42903, + 45.604191 + ], + [ + -73.428654, + 45.604426 + ], + [ + -73.428653, + 45.604427 + ], + [ + -73.428564, + 45.604483 + ], + [ + -73.427475, + 45.60518 + ], + [ + -73.427444, + 45.605211 + ], + [ + -73.427423, + 45.605237 + ], + [ + -73.427407, + 45.605278 + ], + [ + -73.427406, + 45.605312 + ], + [ + -73.427424, + 45.605353 + ], + [ + -73.42746, + 45.605399 + ], + [ + -73.427603, + 45.605522 + ], + [ + -73.427959, + 45.605798 + ], + [ + -73.427998, + 45.605828 + ], + [ + -73.428173, + 45.605959 + ], + [ + -73.428311, + 45.606067 + ], + [ + -73.428495, + 45.606184 + ], + [ + -73.42867, + 45.606274 + ], + [ + -73.428722, + 45.606295 + ], + [ + -73.42886, + 45.60635 + ], + [ + -73.429112, + 45.606427 + ], + [ + -73.429341, + 45.606472 + ], + [ + -73.429644, + 45.606521 + ], + [ + -73.429954, + 45.606572 + ], + [ + -73.430121, + 45.606599 + ], + [ + -73.430876, + 45.606707 + ], + [ + -73.431493, + 45.606793 + ], + [ + -73.431775, + 45.606798 + ], + [ + -73.431993, + 45.60678 + ], + [ + -73.43227, + 45.606721 + ], + [ + -73.432434, + 45.606672 + ], + [ + -73.432607, + 45.606605 + ], + [ + -73.432934, + 45.606461 + ], + [ + -73.433088, + 45.606393 + ], + [ + -73.433751, + 45.606088 + ], + [ + -73.436303, + 45.60492 + ], + [ + -73.436609, + 45.60478 + ], + [ + -73.436815, + 45.604686 + ], + [ + -73.436923, + 45.604637 + ], + [ + -73.437443, + 45.604403 + ], + [ + -73.437904, + 45.604192 + ], + [ + -73.437975, + 45.60416 + ], + [ + -73.438466, + 45.603935 + ], + [ + -73.438822, + 45.603769 + ], + [ + -73.441516, + 45.602542 + ], + [ + -73.441922, + 45.602327 + ], + [ + -73.442509, + 45.60198 + ], + [ + -73.443055, + 45.601648 + ], + [ + -73.443186, + 45.60157 + ], + [ + -73.443509, + 45.601378 + ], + [ + -73.444182, + 45.600973 + ], + [ + -73.444832, + 45.600591 + ], + [ + -73.445172, + 45.600385 + ], + [ + -73.445377, + 45.600266 + ], + [ + -73.445606, + 45.600133 + ], + [ + -73.446043, + 45.599863 + ], + [ + -73.446679, + 45.599485 + ], + [ + -73.446908, + 45.599337 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.447631, + 45.598916 + ], + [ + -73.447731, + 45.598856 + ], + [ + -73.448171, + 45.59861 + ], + [ + -73.448549, + 45.598398 + ], + [ + -73.448789, + 45.598275 + ], + [ + -73.448839, + 45.598249 + ], + [ + -73.448998, + 45.598218 + ], + [ + -73.44922, + 45.59824 + ], + [ + -73.449408, + 45.598272 + ], + [ + -73.449753, + 45.598322 + ], + [ + -73.449948, + 45.598342 + ], + [ + -73.450323, + 45.59838 + ], + [ + -73.450519, + 45.598376 + ], + [ + -73.451106, + 45.598269 + ], + [ + -73.451434, + 45.59821 + ], + [ + -73.451707, + 45.598139 + ], + [ + -73.45178, + 45.59812 + ], + [ + -73.451924, + 45.598053 + ], + [ + -73.452243, + 45.597868 + ], + [ + -73.452948, + 45.597441 + ], + [ + -73.453377, + 45.59718 + ], + [ + -73.453592, + 45.597032 + ], + [ + -73.453626, + 45.596997 + ], + [ + -73.453715, + 45.596906 + ], + [ + -73.453794, + 45.596785 + ], + [ + -73.453871, + 45.596596 + ], + [ + -73.453885, + 45.596532 + ], + [ + -73.453931, + 45.596308 + ], + [ + -73.453991, + 45.596137 + ], + [ + -73.454092, + 45.595664 + ], + [ + -73.454151, + 45.595322 + ], + [ + -73.454179, + 45.595182 + ], + [ + -73.454204, + 45.595062 + ], + [ + -73.45424, + 45.594796 + ], + [ + -73.454266, + 45.59466 + ], + [ + -73.454311, + 45.594418 + ], + [ + -73.454348, + 45.594256 + ], + [ + -73.454385, + 45.594198 + ], + [ + -73.454452, + 45.594099 + ], + [ + -73.454523, + 45.594018 + ], + [ + -73.454739, + 45.593883 + ], + [ + -73.454817, + 45.593955 + ], + [ + -73.454889, + 45.594009 + ], + [ + -73.455013, + 45.59409 + ], + [ + -73.455072, + 45.594122 + ], + [ + -73.455076, + 45.594123 + ], + [ + -73.455163, + 45.594144 + ], + [ + -73.455387, + 45.594185 + ], + [ + -73.455619, + 45.594225 + ], + [ + -73.455723, + 45.593917 + ], + [ + -73.455756, + 45.593816 + ], + [ + -73.455854, + 45.593569 + ], + [ + -73.456153, + 45.59288 + ], + [ + -73.456207, + 45.592759 + ], + [ + -73.456291, + 45.592592 + ], + [ + -73.456406, + 45.592363 + ], + [ + -73.456499, + 45.592179 + ], + [ + -73.45679, + 45.591652 + ], + [ + -73.456852, + 45.591559 + ], + [ + -73.456938, + 45.591427 + ], + [ + -73.457079, + 45.591212 + ], + [ + -73.457344, + 45.590807 + ], + [ + -73.457798, + 45.590177 + ], + [ + -73.457847, + 45.590109 + ], + [ + -73.458224, + 45.589642 + ], + [ + -73.45828, + 45.589578 + ], + [ + -73.458866, + 45.588918 + ], + [ + -73.45918, + 45.588576 + ], + [ + -73.459411, + 45.588319 + ], + [ + -73.459565, + 45.588139 + ], + [ + -73.459672, + 45.588027 + ], + [ + -73.46006, + 45.587602 + ], + [ + -73.460107, + 45.58755 + ], + [ + -73.46024, + 45.587403 + ], + [ + -73.46075, + 45.586842 + ], + [ + -73.461153, + 45.586394 + ], + [ + -73.46118, + 45.586364 + ], + [ + -73.461235, + 45.586304 + ], + [ + -73.461391, + 45.586115 + ], + [ + -73.461498, + 45.585994 + ], + [ + -73.461685, + 45.585787 + ], + [ + -73.461939, + 45.585508 + ], + [ + -73.462342, + 45.585071 + ], + [ + -73.462432, + 45.584973 + ], + [ + -73.462695, + 45.585153 + ], + [ + -73.463008, + 45.585396 + ], + [ + -73.463073, + 45.585446 + ], + [ + -73.463882, + 45.586067 + ], + [ + -73.464037, + 45.586186 + ], + [ + -73.466411, + 45.588016 + ], + [ + -73.466439, + 45.588038 + ], + [ + -73.466543, + 45.588142 + ], + [ + -73.466935, + 45.587825 + ], + [ + -73.467583, + 45.587301 + ], + [ + -73.468078, + 45.586878 + ], + [ + -73.468705, + 45.586302 + ], + [ + -73.469343, + 45.585587 + ], + [ + -73.469639, + 45.585161 + ], + [ + -73.470132, + 45.584453 + ], + [ + -73.470152, + 45.584422 + ], + [ + -73.470218, + 45.584246 + ], + [ + -73.470251, + 45.584156 + ], + [ + -73.470298, + 45.583954 + ], + [ + -73.470385, + 45.583842 + ], + [ + -73.470456, + 45.583585 + ], + [ + -73.47052, + 45.583429 + ], + [ + -73.470545, + 45.583369 + ], + [ + -73.470612, + 45.583247 + ], + [ + -73.470683, + 45.583117 + ], + [ + -73.470812, + 45.582911 + ], + [ + -73.470915, + 45.582744 + ], + [ + -73.470949, + 45.58269 + ], + [ + -73.471346, + 45.582051 + ], + [ + -73.471398, + 45.581925 + ], + [ + -73.471433, + 45.581808 + ], + [ + -73.471453, + 45.581699 + ], + [ + -73.471458, + 45.581595 + ], + [ + -73.471454, + 45.581489 + ], + [ + -73.471389, + 45.581345 + ], + [ + -73.471335, + 45.581232 + ], + [ + -73.471105, + 45.580881 + ], + [ + -73.470884, + 45.580526 + ], + [ + -73.470654, + 45.580152 + ], + [ + -73.470298, + 45.579576 + ], + [ + -73.47012, + 45.579347 + ], + [ + -73.469587, + 45.578501 + ], + [ + -73.469497, + 45.578352 + ], + [ + -73.469458, + 45.578217 + ], + [ + -73.469412, + 45.578105 + ], + [ + -73.469426, + 45.578028 + ], + [ + -73.469459, + 45.577871 + ], + [ + -73.469567, + 45.577727 + ], + [ + -73.469918, + 45.577331 + ], + [ + -73.46993, + 45.577318 + ], + [ + -73.46998, + 45.577261 + ], + [ + -73.470749, + 45.576405 + ], + [ + -73.470833, + 45.576315 + ], + [ + -73.471056, + 45.576076 + ], + [ + -73.471154, + 45.575991 + ], + [ + -73.471267, + 45.57591 + ], + [ + -73.471454, + 45.575824 + ], + [ + -73.471573, + 45.575815 + ], + [ + -73.47168, + 45.575793 + ], + [ + -73.471784, + 45.575788 + ], + [ + -73.47189, + 45.575788 + ], + [ + -73.472025, + 45.575797 + ], + [ + -73.472112, + 45.575815 + ], + [ + -73.472263, + 45.575852 + ], + [ + -73.472355, + 45.575892 + ], + [ + -73.472462, + 45.575951 + ], + [ + -73.472549, + 45.576014 + ], + [ + -73.472694, + 45.576122 + ], + [ + -73.473301, + 45.576594 + ], + [ + -73.473336, + 45.576621 + ], + [ + -73.473371, + 45.57665 + ], + [ + -73.473655, + 45.576878 + ], + [ + -73.474504, + 45.577526 + ], + [ + -73.47467, + 45.577629 + ], + [ + -73.474832, + 45.577728 + ], + [ + -73.474992, + 45.57776 + ], + [ + -73.475075, + 45.577797 + ], + [ + -73.475207, + 45.577851 + ], + [ + -73.4753, + 45.577885 + ], + [ + -73.47539, + 45.577914 + ], + [ + -73.475552, + 45.577947 + ], + [ + -73.475661, + 45.577961 + ], + [ + -73.475789, + 45.577962 + ], + [ + -73.475882, + 45.577959 + ], + [ + -73.475958, + 45.57795 + ], + [ + -73.476012, + 45.577939 + ], + [ + -73.476079, + 45.577928 + ], + [ + -73.476157, + 45.577912 + ], + [ + -73.476217, + 45.577897 + ], + [ + -73.476293, + 45.57787 + ], + [ + -73.476435, + 45.577844 + ], + [ + -73.476547, + 45.57778 + ], + [ + -73.476747, + 45.57765 + ], + [ + -73.476958, + 45.577498 + ], + [ + -73.477027, + 45.57744 + ], + [ + -73.477139, + 45.577348 + ], + [ + -73.477145, + 45.577342 + ], + [ + -73.477324, + 45.577191 + ], + [ + -73.477483, + 45.577054 + ], + [ + -73.477759, + 45.576825 + ], + [ + -73.477862, + 45.576731 + ], + [ + -73.478006, + 45.576618 + ], + [ + -73.478291, + 45.576373 + ], + [ + -73.478455, + 45.576238 + ], + [ + -73.478599, + 45.576116 + ], + [ + -73.478806, + 45.575943 + ], + [ + -73.478978, + 45.575795 + ], + [ + -73.479155, + 45.575649 + ], + [ + -73.479164, + 45.57564 + ], + [ + -73.479274, + 45.575534 + ], + [ + -73.47941, + 45.575433 + ], + [ + -73.479622, + 45.575253 + ], + [ + -73.4798, + 45.575097 + ], + [ + -73.479996, + 45.574941 + ], + [ + -73.480237, + 45.574738 + ], + [ + -73.480328, + 45.574659 + ], + [ + -73.480453, + 45.574551 + ], + [ + -73.480801, + 45.574263 + ], + [ + -73.481358, + 45.573789 + ], + [ + -73.481529, + 45.573644 + ], + [ + -73.481972, + 45.573269 + ], + [ + -73.482063, + 45.573191 + ], + [ + -73.482204, + 45.573068 + ], + [ + -73.482412, + 45.572903 + ], + [ + -73.482823, + 45.572557 + ], + [ + -73.482916, + 45.572476 + ], + [ + -73.482986, + 45.57241 + ], + [ + -73.483315, + 45.572122 + ], + [ + -73.483678, + 45.571813 + ], + [ + -73.483715, + 45.57178 + ], + [ + -73.483843, + 45.57167 + ], + [ + -73.484123, + 45.57144 + ], + [ + -73.484526, + 45.571099 + ], + [ + -73.484935, + 45.570755 + ], + [ + -73.484967, + 45.570727 + ], + [ + -73.485483, + 45.570269 + ], + [ + -73.485864, + 45.569911 + ], + [ + -73.485867, + 45.569908 + ], + [ + -73.485994, + 45.569784 + ], + [ + -73.486085, + 45.569691 + ], + [ + -73.486421, + 45.569373 + ], + [ + -73.487037, + 45.568739 + ], + [ + -73.487188, + 45.568584 + ], + [ + -73.487556, + 45.568196 + ], + [ + -73.487608, + 45.568138 + ], + [ + -73.488016, + 45.567684 + ], + [ + -73.488394, + 45.567236 + ], + [ + -73.488824, + 45.566727 + ], + [ + -73.488926, + 45.566606 + ], + [ + -73.489299, + 45.566117 + ], + [ + -73.489627, + 45.565684 + ], + [ + -73.489917, + 45.565286 + ], + [ + -73.490075, + 45.56507 + ], + [ + -73.490593, + 45.5643 + ], + [ + -73.490747, + 45.564066 + ], + [ + -73.491532, + 45.562873 + ], + [ + -73.491593, + 45.562778 + ], + [ + -73.491615, + 45.562743 + ], + [ + -73.4917, + 45.562606 + ], + [ + -73.491908, + 45.562298 + ], + [ + -73.49207, + 45.56203 + ], + [ + -73.492185, + 45.561871 + ], + [ + -73.492369, + 45.561588 + ], + [ + -73.492378, + 45.561574 + ], + [ + -73.492391, + 45.561555 + ], + [ + -73.492375, + 45.561439 + ], + [ + -73.49342, + 45.559914 + ], + [ + -73.49392, + 45.559275 + ], + [ + -73.494689, + 45.558398 + ], + [ + -73.494702, + 45.558384 + ], + [ + -73.495685, + 45.557305 + ], + [ + -73.496472, + 45.556445 + ], + [ + -73.498256, + 45.554371 + ], + [ + -73.498542, + 45.55402 + ], + [ + -73.498677, + 45.553944 + ], + [ + -73.498726, + 45.553872 + ], + [ + -73.498813, + 45.553714 + ], + [ + -73.498895, + 45.553562 + ], + [ + -73.49895, + 45.553404 + ], + [ + -73.498964, + 45.55335 + ], + [ + -73.498988, + 45.55326 + ], + [ + -73.499026, + 45.553035 + ], + [ + -73.499051, + 45.55281 + ], + [ + -73.49911, + 45.552261 + ], + [ + -73.499127, + 45.552095 + ], + [ + -73.498947, + 45.552086 + ], + [ + -73.498793, + 45.55209 + ], + [ + -73.498694, + 45.552086 + ], + [ + -73.498592, + 45.552072 + ], + [ + -73.498413, + 45.552 + ], + [ + -73.497809, + 45.551537 + ], + [ + -73.497569, + 45.551352 + ], + [ + -73.496964, + 45.550873 + ], + [ + -73.496546, + 45.550543 + ], + [ + -73.496482, + 45.550493 + ], + [ + -73.495901, + 45.550034 + ], + [ + -73.495874, + 45.550013 + ], + [ + -73.494604, + 45.549013 + ], + [ + -73.494377, + 45.548846 + ], + [ + -73.494352, + 45.548779 + ], + [ + -73.494351, + 45.54877 + ], + [ + -73.494341, + 45.548702 + ], + [ + -73.494355, + 45.548662 + ], + [ + -73.494517, + 45.548567 + ], + [ + -73.494756, + 45.548419 + ], + [ + -73.495272, + 45.548104 + ], + [ + -73.495446, + 45.547996 + ], + [ + -73.494882, + 45.547533 + ], + [ + -73.494037, + 45.54684 + ], + [ + -73.493868, + 45.546708 + ], + [ + -73.492532, + 45.54567 + ], + [ + -73.492193, + 45.545383 + ], + [ + -73.492091, + 45.545296 + ], + [ + -73.491973, + 45.545185 + ], + [ + -73.491821, + 45.545044 + ], + [ + -73.491678, + 45.544891 + ], + [ + -73.491607, + 45.544783 + ], + [ + -73.491515, + 45.54463 + ], + [ + -73.491425, + 45.544459 + ], + [ + -73.491366, + 45.544347 + ], + [ + -73.491328, + 45.544221 + ], + [ + -73.491298, + 45.544095 + ], + [ + -73.49126, + 45.543721 + ], + [ + -73.491278, + 45.543146 + ], + [ + -73.491292, + 45.542941 + ], + [ + -73.491331, + 45.54239 + ], + [ + -73.491356, + 45.541854 + ], + [ + -73.491354, + 45.541809 + ], + [ + -73.491349, + 45.541715 + ], + [ + -73.491332, + 45.541557 + ], + [ + -73.491274, + 45.541377 + ], + [ + -73.491237, + 45.54131 + ], + [ + -73.491356, + 45.541251 + ], + [ + -73.491461, + 45.541175 + ], + [ + -73.491486, + 45.541152 + ], + [ + -73.491853, + 45.540777 + ], + [ + -73.492032, + 45.540595 + ], + [ + -73.492356, + 45.540267 + ], + [ + -73.492859, + 45.539758 + ], + [ + -73.494703, + 45.537863 + ], + [ + -73.494803, + 45.53776 + ], + [ + -73.495436, + 45.537126 + ] + ] + }, + "id": 375, + "properties": { + "id": "7e0b7734-5dca-4c04-87b1-036d4c15d5ea", + "data": { + "gtfs": { + "shape_id": "683_1_A" + }, + "segments": [ + { + "distanceMeters": 142, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 171, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 441, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 390, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 349, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 237, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 84, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 378, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 210, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 361, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 101, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 505, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 154, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 64, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 1419, + "travelTimeSeconds": 202 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 423, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 332, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 401, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 922, + "travelTimeSeconds": 131 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 376, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 522, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 69, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 100, + "travelTimeSeconds": 15 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 276, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 19679, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5991.141571377438, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.13, + "travelTimeWithoutDwellTimesSeconds": 2760, + "operatingTimeWithLayoverTimeSeconds": 3036, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2760, + "operatingSpeedWithLayoverMetersPerSecond": 6.48, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.13 + }, + "mode": "bus", + "name": "CÉGEP Édouard-Montpetit", + "color": "#A32638", + "nodes": [ + "6c99422e-05cb-48dc-811f-162fee50cf80", + "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", + "44ce6da8-ee79-4e09-9c16-f31566643c0c", + "7b512bac-ad2d-4d5a-87d8-173290a7b311", + "b94a5730-dab3-4715-a12c-41d1c300a3ab", + "3f07914c-7958-4cd1-a0a6-c2c9e04cc913", + "589841be-b3c7-4f02-a8e7-b24569959def", + "d63304a9-15dd-4cf4-8ec7-3f7d0c080252", + "969d12ef-c40c-4428-9c70-2251a9d71a5e", + "b09cf260-c832-4cf7-bb1b-ef1c96c3308c", + "8a45829f-032b-46f2-a537-7925e71ca5d2", + "dda3c3c1-6952-475f-8547-789fb757f7c6", + "3ff2d59e-aa78-4d80-b1c5-f7852a289411", + "ba6e04e1-77fc-4b3f-86d2-fd956b418882", + "3bd4e28f-2392-4d87-96de-a2ab53d75020", + "e0ad666d-6319-4692-a7ee-a3080772e28d", + "c4a07fb5-3745-472e-8e03-a61e6908d906", + "3e60c63a-1f50-42ff-98f0-f081a7dc4017", + "de3d06d6-88af-49e3-b183-9464b2f111c8", + "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", + "ed16ff8f-f2f4-4914-b93b-f48229e580b7", + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "4fcc129f-8015-4b36-a21f-2437aa91a265", + "3d278b9f-fcbb-4681-9833-769bdbe48eaf", + "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", + "47dc43f6-90db-4837-be84-0b5d8a2becb4", + "628308c5-3a00-44cb-908b-068616e8e618", + "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", + "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", + "abeb197b-490c-4d67-8abe-37d08d73ce70", + "7d34a327-717a-432e-93f5-7310ac20c2c2", + "7ca4f3b1-99df-4499-964b-1702513ad59f", + "e134e428-8d59-4d84-966a-ce83afff1c1c", + "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", + "f7429ca8-1ccc-41e7-acab-a5d3915affbb", + "494d9db6-32c6-4aa3-9c11-91eba915c58f", + "6b55fd05-7687-457e-ae9d-e87027c7100f", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", + "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", + "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", + "b32eb408-e9c7-49ab-afd7-56523f4ec990", + "50c385af-a7f1-479f-b40d-4ed198aca8ce", + "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", + "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", + "8babca8c-ebff-46bc-b0c6-b6576c4fada6", + "c650007a-bdeb-4831-9df5-833406e44887", + "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", + "21aac851-6052-4e4d-8167-df2d9a876338", + "b54db9a8-0c8c-43a8-a385-bc532fde3f70", + "2f7a97d2-c790-4f58-9a63-010938bbaf69", + "48f19a5c-0937-4c87-ba6d-c01e50729a6a", + "064a6f97-fc69-48b1-8038-7d9a4eea77de", + "da1ccd92-4d5e-4317-ad9f-7a8daa9e9230", + "bf75043d-39f5-40a1-89fa-2154a9f2a45f", + "75347f42-115f-47ec-b394-c1f56ce167fb", + "dc112aae-906c-47be-a1fb-06ef714fd1ab", + "ab105343-272d-4aa3-9238-846c2fa787cb", + "24527bed-7ea6-44d6-b6db-18ac609f4938", + "1b1077ca-8a37-46a1-a7be-751ea2f7f2ae", + "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", + "d5099816-374e-4ebc-ab50-5ca4d2f829e5", + "84a0424b-0f35-4bd8-8109-5ac9219d5869", + "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", + "261a087b-9323-4696-9046-146a299af43d", + "f8b461c2-c03e-4da6-aa56-a50e7e1d9db0", + "86b1f9fa-fc35-4bee-a9b9-a70269091ef1", + "8a3f1208-7ffb-452e-8ebb-c436acba82d6", + "2d7687a5-f458-4ce1-a3df-9639d89c0154", + "411bafbe-bac8-4586-9af4-bc0b3163bdde", + "4e53f32e-03c3-4701-94aa-590f28b5adcd", + "04b348b3-bb46-4177-9e4b-604bf8d96a58", + "081e45a0-31c3-487c-996e-66d1b824569d" + ], + "stops": [], + "line_id": "1af974c3-a2fd-4a71-b2ec-d7a3b31d18be", + "segments": [ + 0, + 3, + 13, + 24, + 36, + 43, + 50, + 60, + 70, + 75, + 78, + 90, + 98, + 109, + 118, + 124, + 128, + 135, + 144, + 161, + 167, + 183, + 188, + 195, + 199, + 207, + 211, + 217, + 220, + 228, + 236, + 241, + 252, + 262, + 272, + 277, + 280, + 288, + 293, + 299, + 303, + 314, + 325, + 330, + 348, + 353, + 357, + 364, + 370, + 375, + 381, + 387, + 388, + 391, + 396, + 410, + 478, + 491, + 498, + 504, + 512, + 519, + 530, + 537, + 540, + 546, + 552, + 573, + 579, + 590, + 596, + 618, + 620, + 622 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 375, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.495436, + 45.537126 + ], + [ + -73.495499, + 45.537063 + ], + [ + -73.495942, + 45.536617 + ], + [ + -73.496193, + 45.536366 + ], + [ + -73.49677, + 45.535781 + ], + [ + -73.49726, + 45.535988 + ], + [ + -73.497442, + 45.536063 + ], + [ + -73.498459, + 45.536487 + ], + [ + -73.498915, + 45.536678 + ], + [ + -73.499435, + 45.536897 + ], + [ + -73.501142, + 45.537612 + ], + [ + -73.502066, + 45.537998 + ], + [ + -73.503243, + 45.53849 + ], + [ + -73.503424, + 45.538566 + ], + [ + -73.503808, + 45.538728 + ], + [ + -73.503912, + 45.538786 + ], + [ + -73.504095, + 45.538926 + ], + [ + -73.504553, + 45.539317 + ], + [ + -73.504747, + 45.539452 + ], + [ + -73.504752, + 45.539455 + ], + [ + -73.504898, + 45.539533 + ], + [ + -73.506469, + 45.540185 + ], + [ + -73.507029, + 45.540406 + ], + [ + -73.507958, + 45.540788 + ], + [ + -73.508096, + 45.540847 + ], + [ + -73.507711, + 45.541461 + ], + [ + -73.507514, + 45.541778 + ], + [ + -73.507368, + 45.542003 + ], + [ + -73.507112, + 45.542399 + ], + [ + -73.506629, + 45.543083 + ], + [ + -73.506394, + 45.543393 + ], + [ + -73.506245, + 45.543564 + ], + [ + -73.506072, + 45.543744 + ], + [ + -73.506032, + 45.543786 + ], + [ + -73.505954, + 45.54387 + ], + [ + -73.505635, + 45.544134 + ], + [ + -73.505629, + 45.54414 + ], + [ + -73.505579, + 45.544179 + ], + [ + -73.505527, + 45.544221 + ], + [ + -73.504296, + 45.545236 + ], + [ + -73.504222, + 45.545296 + ], + [ + -73.503599, + 45.545809 + ], + [ + -73.503243, + 45.546138 + ], + [ + -73.50284, + 45.546532 + ], + [ + -73.502631, + 45.546736 + ], + [ + -73.502628, + 45.546739 + ], + [ + -73.502577, + 45.546795 + ], + [ + -73.502495, + 45.546833 + ], + [ + -73.502421, + 45.546867 + ], + [ + -73.502363, + 45.54693 + ], + [ + -73.501891, + 45.547483 + ], + [ + -73.501089, + 45.54845 + ], + [ + -73.500323, + 45.549368 + ], + [ + -73.500136, + 45.549585 + ], + [ + -73.500016, + 45.549724 + ], + [ + -73.499756, + 45.550039 + ], + [ + -73.499564, + 45.550308 + ], + [ + -73.499518, + 45.550373 + ], + [ + -73.499348, + 45.550589 + ], + [ + -73.499249, + 45.550718 + ], + [ + -73.499149, + 45.550849 + ], + [ + -73.49909, + 45.551 + ], + [ + -73.499052, + 45.551292 + ], + [ + -73.498991, + 45.551754 + ], + [ + -73.498947, + 45.552086 + ], + [ + -73.498793, + 45.55209 + ], + [ + -73.498694, + 45.552086 + ], + [ + -73.498592, + 45.552072 + ], + [ + -73.498413, + 45.552 + ], + [ + -73.497817, + 45.551543 + ], + [ + -73.497569, + 45.551352 + ], + [ + -73.497461, + 45.551267 + ], + [ + -73.496964, + 45.550873 + ], + [ + -73.496827, + 45.550682 + ], + [ + -73.496793, + 45.550619 + ], + [ + -73.496772, + 45.550538 + ], + [ + -73.496789, + 45.550453 + ], + [ + -73.496817, + 45.550376 + ], + [ + -73.496833, + 45.550372 + ], + [ + -73.497231, + 45.550102 + ], + [ + -73.497398, + 45.55003 + ], + [ + -73.497527, + 45.550007 + ], + [ + -73.497663, + 45.550007 + ], + [ + -73.497789, + 45.550025 + ], + [ + -73.497936, + 45.550061 + ], + [ + -73.498283, + 45.550169 + ], + [ + -73.49868, + 45.550277 + ], + [ + -73.499072, + 45.550349 + ], + [ + -73.499514, + 45.550349 + ], + [ + -73.499763, + 45.550363 + ], + [ + -73.500269, + 45.550457 + ], + [ + -73.500381, + 45.550489 + ], + [ + -73.500508, + 45.550543 + ], + [ + -73.500621, + 45.550601 + ], + [ + -73.500711, + 45.550673 + ], + [ + -73.500782, + 45.550759 + ], + [ + -73.500831, + 45.550853 + ], + [ + -73.500844, + 45.550925 + ], + [ + -73.500851, + 45.550961 + ], + [ + -73.500846, + 45.551073 + ], + [ + -73.50082, + 45.551186 + ], + [ + -73.500772, + 45.551307 + ], + [ + -73.500707, + 45.551424 + ], + [ + -73.500628, + 45.551541 + ], + [ + -73.500279, + 45.551976 + ], + [ + -73.500025, + 45.552293 + ], + [ + -73.499573, + 45.552882 + ], + [ + -73.498972, + 45.553678 + ], + [ + -73.498458, + 45.55434 + ], + [ + -73.496787, + 45.55649 + ], + [ + -73.495905, + 45.557543 + ], + [ + -73.495369, + 45.558173 + ], + [ + -73.494314, + 45.559446 + ], + [ + -73.493461, + 45.560499 + ], + [ + -73.492975, + 45.561151 + ], + [ + -73.492659, + 45.561597 + ], + [ + -73.492068, + 45.562474 + ], + [ + -73.49148, + 45.563383 + ], + [ + -73.490434, + 45.564962 + ], + [ + -73.489967, + 45.565619 + ], + [ + -73.489477, + 45.566267 + ], + [ + -73.488962, + 45.566906 + ], + [ + -73.48825, + 45.567747 + ], + [ + -73.487877, + 45.568161 + ], + [ + -73.487301, + 45.568777 + ], + [ + -73.486712, + 45.56938 + ], + [ + -73.486308, + 45.569771 + ], + [ + -73.485474, + 45.570545 + ], + [ + -73.48461, + 45.571301 + ], + [ + -73.483654, + 45.572115 + ], + [ + -73.478606, + 45.576433 + ], + [ + -73.478028, + 45.576933 + ], + [ + -73.477248, + 45.577607 + ], + [ + -73.476645, + 45.578128 + ], + [ + -73.475915, + 45.578754 + ], + [ + -73.475553, + 45.579033 + ], + [ + -73.474887, + 45.579478 + ], + [ + -73.474437, + 45.579762 + ], + [ + -73.474095, + 45.580005 + ], + [ + -73.473853, + 45.580158 + ], + [ + -73.473398, + 45.580472 + ], + [ + -73.473077, + 45.58072 + ], + [ + -73.472886, + 45.580886 + ], + [ + -73.472612, + 45.581152 + ], + [ + -73.472574, + 45.581196 + ], + [ + -73.472319, + 45.581482 + ], + [ + -73.472175, + 45.581673 + ], + [ + -73.471994, + 45.581936 + ], + [ + -73.47191, + 45.582061 + ], + [ + -73.471753, + 45.582326 + ], + [ + -73.471543, + 45.582681 + ], + [ + -73.471245, + 45.583188 + ], + [ + -73.471013, + 45.58358 + ], + [ + -73.470714, + 45.584071 + ], + [ + -73.470067, + 45.585151 + ], + [ + -73.469784, + 45.585547 + ], + [ + -73.469628, + 45.585749 + ], + [ + -73.469287, + 45.586145 + ], + [ + -73.469101, + 45.586343 + ], + [ + -73.468904, + 45.586536 + ], + [ + -73.468695, + 45.586725 + ], + [ + -73.466029, + 45.588965 + ], + [ + -73.465851, + 45.589127 + ], + [ + -73.464661, + 45.590008 + ], + [ + -73.463452, + 45.59093 + ], + [ + -73.462873, + 45.59133 + ], + [ + -73.462371, + 45.591654 + ], + [ + -73.46224, + 45.591722 + ], + [ + -73.462125, + 45.591758 + ], + [ + -73.462005, + 45.59178 + ], + [ + -73.461886, + 45.591789 + ], + [ + -73.461876, + 45.591789 + ], + [ + -73.461768, + 45.591789 + ], + [ + -73.461658, + 45.591771 + ], + [ + -73.461565, + 45.591739 + ], + [ + -73.461505, + 45.591712 + ], + [ + -73.461385, + 45.591658 + ], + [ + -73.461314, + 45.591613 + ], + [ + -73.462065, + 45.590961 + ], + [ + -73.462195, + 45.590862 + ], + [ + -73.462294, + 45.590799 + ], + [ + -73.462386, + 45.590754 + ], + [ + -73.462519, + 45.590705 + ], + [ + -73.462602, + 45.590678 + ], + [ + -73.462706, + 45.590656 + ], + [ + -73.462813, + 45.590642 + ], + [ + -73.462888, + 45.590633 + ], + [ + -73.463001, + 45.590624 + ], + [ + -73.46316, + 45.59062 + ], + [ + -73.463269, + 45.590611 + ], + [ + -73.463357, + 45.590597 + ], + [ + -73.463462, + 45.590579 + ], + [ + -73.463571, + 45.590548 + ], + [ + -73.463709, + 45.590498 + ], + [ + -73.463772, + 45.590426 + ], + [ + -73.463826, + 45.590404 + ], + [ + -73.463931, + 45.590341 + ], + [ + -73.464069, + 45.590233 + ], + [ + -73.46414, + 45.59017 + ], + [ + -73.464647, + 45.589698 + ], + [ + -73.464755, + 45.589607 + ], + [ + -73.464769, + 45.589595 + ], + [ + -73.46517, + 45.589257 + ], + [ + -73.465623, + 45.588888 + ], + [ + -73.466111, + 45.588492 + ], + [ + -73.466543, + 45.588142 + ], + [ + -73.466439, + 45.588038 + ], + [ + -73.466346, + 45.587966 + ], + [ + -73.466124, + 45.587795 + ], + [ + -73.464044, + 45.586192 + ], + [ + -73.463882, + 45.586067 + ], + [ + -73.463008, + 45.585396 + ], + [ + -73.462705, + 45.585161 + ], + [ + -73.462695, + 45.585153 + ], + [ + -73.462432, + 45.584973 + ], + [ + -73.461939, + 45.585508 + ], + [ + -73.461685, + 45.585787 + ], + [ + -73.46157, + 45.585914 + ], + [ + -73.461498, + 45.585994 + ], + [ + -73.461395, + 45.58611 + ], + [ + -73.461391, + 45.586115 + ], + [ + -73.461235, + 45.586304 + ], + [ + -73.461153, + 45.586394 + ], + [ + -73.46075, + 45.586842 + ], + [ + -73.46024, + 45.587403 + ], + [ + -73.460107, + 45.58755 + ], + [ + -73.459748, + 45.587943 + ], + [ + -73.459672, + 45.588027 + ], + [ + -73.459565, + 45.588139 + ], + [ + -73.459411, + 45.588319 + ], + [ + -73.45918, + 45.588576 + ], + [ + -73.458866, + 45.588918 + ], + [ + -73.458388, + 45.589457 + ], + [ + -73.458224, + 45.589642 + ], + [ + -73.457847, + 45.590109 + ], + [ + -73.457798, + 45.590177 + ], + [ + -73.457344, + 45.590807 + ], + [ + -73.457079, + 45.591212 + ], + [ + -73.456938, + 45.591427 + ], + [ + -73.456894, + 45.591494 + ], + [ + -73.45679, + 45.591652 + ], + [ + -73.456499, + 45.592179 + ], + [ + -73.456406, + 45.592363 + ], + [ + -73.45632, + 45.592533 + ], + [ + -73.456207, + 45.592759 + ], + [ + -73.456153, + 45.59288 + ], + [ + -73.455854, + 45.593569 + ], + [ + -73.455756, + 45.593816 + ], + [ + -73.455696, + 45.593996 + ], + [ + -73.455619, + 45.594225 + ], + [ + -73.455387, + 45.594185 + ], + [ + -73.455163, + 45.594144 + ], + [ + -73.455072, + 45.594122 + ], + [ + -73.455013, + 45.59409 + ], + [ + -73.454889, + 45.594009 + ], + [ + -73.454817, + 45.593955 + ], + [ + -73.454739, + 45.593883 + ], + [ + -73.454523, + 45.594018 + ], + [ + -73.454452, + 45.594099 + ], + [ + -73.454385, + 45.594198 + ], + [ + -73.454348, + 45.594256 + ], + [ + -73.454311, + 45.594418 + ], + [ + -73.454266, + 45.59466 + ], + [ + -73.45424, + 45.594796 + ], + [ + -73.454229, + 45.594879 + ], + [ + -73.454204, + 45.595062 + ], + [ + -73.454151, + 45.595322 + ], + [ + -73.454092, + 45.595664 + ], + [ + -73.454003, + 45.596082 + ], + [ + -73.453991, + 45.596137 + ], + [ + -73.453931, + 45.596308 + ], + [ + -73.453871, + 45.596596 + ], + [ + -73.453794, + 45.596785 + ], + [ + -73.453715, + 45.596906 + ], + [ + -73.453626, + 45.596997 + ], + [ + -73.453592, + 45.597032 + ], + [ + -73.453377, + 45.59718 + ], + [ + -73.452948, + 45.597441 + ], + [ + -73.452243, + 45.597868 + ], + [ + -73.452077, + 45.597964 + ], + [ + -73.451924, + 45.598053 + ], + [ + -73.45178, + 45.59812 + ], + [ + -73.451434, + 45.59821 + ], + [ + -73.451106, + 45.598269 + ], + [ + -73.450519, + 45.598376 + ], + [ + -73.450323, + 45.59838 + ], + [ + -73.449948, + 45.598342 + ], + [ + -73.449753, + 45.598322 + ], + [ + -73.449408, + 45.598272 + ], + [ + -73.44922, + 45.59824 + ], + [ + -73.448998, + 45.598218 + ], + [ + -73.448839, + 45.598249 + ], + [ + -73.448706, + 45.598317 + ], + [ + -73.448549, + 45.598398 + ], + [ + -73.448171, + 45.59861 + ], + [ + -73.447731, + 45.598856 + ], + [ + -73.447317, + 45.599101 + ], + [ + -73.447161, + 45.599193 + ], + [ + -73.446908, + 45.599337 + ], + [ + -73.446679, + 45.599485 + ], + [ + -73.446043, + 45.599863 + ], + [ + -73.445865, + 45.599973 + ], + [ + -73.445606, + 45.600133 + ], + [ + -73.445172, + 45.600385 + ], + [ + -73.444832, + 45.600591 + ], + [ + -73.444182, + 45.600973 + ], + [ + -73.443509, + 45.601378 + ], + [ + -73.443055, + 45.601648 + ], + [ + -73.442778, + 45.601817 + ], + [ + -73.442509, + 45.60198 + ], + [ + -73.441922, + 45.602327 + ], + [ + -73.441516, + 45.602542 + ], + [ + -73.438822, + 45.603769 + ], + [ + -73.438466, + 45.603935 + ], + [ + -73.438109, + 45.604099 + ], + [ + -73.437975, + 45.60416 + ], + [ + -73.437443, + 45.604403 + ], + [ + -73.436923, + 45.604637 + ], + [ + -73.436609, + 45.60478 + ], + [ + -73.436429, + 45.604862 + ], + [ + -73.436303, + 45.60492 + ], + [ + -73.433751, + 45.606088 + ], + [ + -73.433088, + 45.606393 + ], + [ + -73.433, + 45.606432 + ], + [ + -73.432607, + 45.606605 + ], + [ + -73.432434, + 45.606672 + ], + [ + -73.43227, + 45.606721 + ], + [ + -73.431993, + 45.60678 + ], + [ + -73.431775, + 45.606798 + ], + [ + -73.431493, + 45.606793 + ], + [ + -73.430876, + 45.606707 + ], + [ + -73.43026, + 45.606619 + ], + [ + -73.430121, + 45.606599 + ], + [ + -73.429954, + 45.606572 + ], + [ + -73.429341, + 45.606472 + ], + [ + -73.429112, + 45.606427 + ], + [ + -73.42886, + 45.60635 + ], + [ + -73.428722, + 45.606295 + ], + [ + -73.42867, + 45.606274 + ], + [ + -73.428495, + 45.606184 + ], + [ + -73.428311, + 45.606067 + ], + [ + -73.428239, + 45.60601 + ], + [ + -73.428173, + 45.605959 + ], + [ + -73.427998, + 45.605828 + ], + [ + -73.427603, + 45.605522 + ], + [ + -73.42746, + 45.605399 + ], + [ + -73.427424, + 45.605353 + ], + [ + -73.427406, + 45.605312 + ], + [ + -73.427407, + 45.605278 + ], + [ + -73.427423, + 45.605237 + ], + [ + -73.427444, + 45.605211 + ], + [ + -73.427475, + 45.60518 + ], + [ + -73.428453, + 45.604554 + ], + [ + -73.428564, + 45.604483 + ], + [ + -73.428653, + 45.604427 + ], + [ + -73.42903, + 45.604191 + ], + [ + -73.429453, + 45.603926 + ], + [ + -73.429967, + 45.603607 + ], + [ + -73.430523, + 45.603252 + ], + [ + -73.430877, + 45.603027 + ], + [ + -73.431218, + 45.602808 + ], + [ + -73.431263, + 45.60278 + ], + [ + -73.432706, + 45.602245 + ], + [ + -73.433739, + 45.601863 + ], + [ + -73.434166, + 45.601679 + ], + [ + -73.434263, + 45.601633 + ], + [ + -73.434475, + 45.601531 + ], + [ + -73.434596, + 45.601477 + ], + [ + -73.43499, + 45.601122 + ], + [ + -73.435271, + 45.600843 + ], + [ + -73.435516, + 45.600609 + ], + [ + -73.435806, + 45.600335 + ], + [ + -73.435984, + 45.600152 + ], + [ + -73.436103, + 45.600029 + ], + [ + -73.436269, + 45.599875 + ], + [ + -73.436408, + 45.599746 + ], + [ + -73.43685, + 45.599305 + ], + [ + -73.437027, + 45.599139 + ], + [ + -73.437067, + 45.599104 + ], + [ + -73.437156, + 45.599026 + ], + [ + -73.43732, + 45.5989 + ], + [ + -73.437622, + 45.598721 + ], + [ + -73.438241, + 45.598406 + ], + [ + -73.438459, + 45.598302 + ], + [ + -73.438619, + 45.598226 + ], + [ + -73.43978, + 45.597624 + ], + [ + -73.439976, + 45.597521 + ], + [ + -73.440742, + 45.597138 + ], + [ + -73.441214, + 45.596904 + ], + [ + -73.441367, + 45.596828 + ], + [ + -73.441552, + 45.59672 + ], + [ + -73.441835, + 45.596541 + ], + [ + -73.442031, + 45.596415 + ], + [ + -73.4425, + 45.596119 + ], + [ + -73.442637, + 45.596033 + ], + [ + -73.442295, + 45.595776 + ], + [ + -73.442151, + 45.59567 + ], + [ + -73.441178, + 45.594952 + ], + [ + -73.440718, + 45.594605 + ], + [ + -73.440129, + 45.59416 + ], + [ + -73.439886, + 45.593975 + ], + [ + -73.439804, + 45.593912 + ], + [ + -73.439572, + 45.59375 + ], + [ + -73.439243, + 45.593507 + ], + [ + -73.438934, + 45.593273 + ], + [ + -73.438561, + 45.592999 + ], + [ + -73.438473, + 45.592935 + ], + [ + -73.438222, + 45.592751 + ], + [ + -73.438007, + 45.592593 + ], + [ + -73.437172, + 45.591963 + ], + [ + -73.436595, + 45.591527 + ], + [ + -73.436456, + 45.591422 + ], + [ + -73.436355, + 45.59135 + ], + [ + -73.43623, + 45.591445 + ], + [ + -73.436061, + 45.591575 + ], + [ + -73.435937, + 45.591669 + ], + [ + -73.435849, + 45.591743 + ], + [ + -73.435771, + 45.591809 + ], + [ + -73.435656, + 45.59193 + ], + [ + -73.435482, + 45.592133 + ], + [ + -73.435328, + 45.592303 + ], + [ + -73.435201, + 45.592416 + ], + [ + -73.435194, + 45.59242 + ], + [ + -73.434937, + 45.592614 + ], + [ + -73.434583, + 45.592879 + ], + [ + -73.434575, + 45.592883 + ], + [ + -73.434342, + 45.593054 + ], + [ + -73.434176, + 45.59318 + ], + [ + -73.433984, + 45.593306 + ], + [ + -73.433723, + 45.593472 + ], + [ + -73.433623, + 45.593526 + ], + [ + -73.433582, + 45.593589 + ], + [ + -73.433505, + 45.593629 + ], + [ + -73.433267, + 45.593751 + ], + [ + -73.432744, + 45.593305 + ], + [ + -73.432411, + 45.593022 + ], + [ + -73.431736, + 45.592481 + ], + [ + -73.431426, + 45.592216 + ], + [ + -73.430999, + 45.591887 + ], + [ + -73.430851, + 45.591793 + ], + [ + -73.430742, + 45.591724 + ], + [ + -73.430249, + 45.591315 + ], + [ + -73.430052, + 45.591144 + ], + [ + -73.430035, + 45.591102 + ], + [ + -73.429965, + 45.590937 + ], + [ + -73.429799, + 45.590246 + ], + [ + -73.429621, + 45.589502 + ], + [ + -73.429601, + 45.589438 + ], + [ + -73.429567, + 45.589376 + ], + [ + -73.429522, + 45.589319 + ], + [ + -73.429464, + 45.589267 + ], + [ + -73.429127, + 45.589004 + ], + [ + -73.429118, + 45.588997 + ], + [ + -73.429011, + 45.588919 + ], + [ + -73.429137, + 45.588834 + ], + [ + -73.429681, + 45.58849 + ], + [ + -73.429794, + 45.588417 + ], + [ + -73.430455, + 45.587999 + ], + [ + -73.43085, + 45.58775 + ], + [ + -73.431273, + 45.587482 + ], + [ + -73.431644, + 45.587248 + ], + [ + -73.431818, + 45.587179 + ], + [ + -73.431717, + 45.587092 + ], + [ + -73.431289, + 45.586718 + ], + [ + -73.431182, + 45.58663 + ], + [ + -73.430893, + 45.586393 + ], + [ + -73.430716, + 45.586245 + ], + [ + -73.430467, + 45.586051 + ], + [ + -73.430089, + 45.585748 + ], + [ + -73.430085, + 45.585745 + ], + [ + -73.429958, + 45.585646 + ], + [ + -73.429814, + 45.585537 + ], + [ + -73.428466, + 45.584498 + ], + [ + -73.426671, + 45.583114 + ], + [ + -73.426528, + 45.583004 + ], + [ + -73.426641, + 45.582922 + ], + [ + -73.427107, + 45.582619 + ], + [ + -73.427138, + 45.582598 + ], + [ + -73.42763, + 45.582284 + ], + [ + -73.428226, + 45.58191 + ], + [ + -73.428576, + 45.58169 + ], + [ + -73.428761, + 45.581574 + ], + [ + -73.429134, + 45.581335 + ], + [ + -73.429655, + 45.581003 + ], + [ + -73.429773, + 45.580926 + ], + [ + -73.42982, + 45.580902 + ], + [ + -73.430012, + 45.580805 + ], + [ + -73.430169, + 45.580742 + ], + [ + -73.430652, + 45.580544 + ], + [ + -73.431064, + 45.580374 + ], + [ + -73.431218, + 45.580311 + ], + [ + -73.431616, + 45.580122 + ], + [ + -73.431767, + 45.580048 + ], + [ + -73.4319, + 45.579983 + ], + [ + -73.432272, + 45.579794 + ], + [ + -73.432711, + 45.579565 + ], + [ + -73.43294, + 45.579444 + ], + [ + -73.433076, + 45.579354 + ], + [ + -73.433199, + 45.579264 + ], + [ + -73.433278, + 45.579189 + ], + [ + -73.43335, + 45.57912 + ], + [ + -73.433444, + 45.579021 + ], + [ + -73.43354, + 45.57889 + ], + [ + -73.433689, + 45.578652 + ], + [ + -73.433813, + 45.578436 + ], + [ + -73.434048, + 45.57804 + ], + [ + -73.434306, + 45.577609 + ], + [ + -73.43458, + 45.57716 + ], + [ + -73.434583, + 45.577154 + ], + [ + -73.434669, + 45.577024 + ], + [ + -73.434836, + 45.576741 + ], + [ + -73.435093, + 45.576309 + ], + [ + -73.435197, + 45.576138 + ], + [ + -73.43534, + 45.575913 + ], + [ + -73.43543, + 45.575778 + ], + [ + -73.435467, + 45.575724 + ], + [ + -73.435699, + 45.575382 + ], + [ + -73.43596, + 45.574982 + ], + [ + -73.436118, + 45.574717 + ], + [ + -73.436179, + 45.574618 + ], + [ + -73.436268, + 45.574456 + ], + [ + -73.436505, + 45.573966 + ], + [ + -73.436584, + 45.573804 + ], + [ + -73.437342, + 45.573989 + ], + [ + -73.437514, + 45.57403 + ], + [ + -73.438216, + 45.5742 + ], + [ + -73.438625, + 45.5743 + ], + [ + -73.439, + 45.574382 + ], + [ + -73.439097, + 45.574403 + ], + [ + -73.43935, + 45.574476 + ], + [ + -73.43947, + 45.574525 + ], + [ + -73.439615, + 45.574593 + ], + [ + -73.439719, + 45.574665 + ], + [ + -73.440036, + 45.574917 + ], + [ + -73.440381, + 45.575187 + ], + [ + -73.440733, + 45.575462 + ], + [ + -73.441078, + 45.575736 + ], + [ + -73.44132, + 45.575929 + ], + [ + -73.441396, + 45.575988 + ], + [ + -73.441907, + 45.576399 + ], + [ + -73.44214, + 45.576587 + ], + [ + -73.44223, + 45.576659 + ], + [ + -73.442323, + 45.576754 + ], + [ + -73.442391, + 45.576835 + ], + [ + -73.442427, + 45.576893 + ], + [ + -73.442456, + 45.576961 + ], + [ + -73.442584, + 45.577456 + ], + [ + -73.442632, + 45.577699 + ], + [ + -73.442671, + 45.577883 + ], + [ + -73.442692, + 45.577982 + ], + [ + -73.442754, + 45.578324 + ], + [ + -73.442822, + 45.57868 + ], + [ + -73.44301, + 45.579552 + ], + [ + -73.443122, + 45.580146 + ], + [ + -73.443126, + 45.580161 + ], + [ + -73.443169, + 45.580299 + ], + [ + -73.443264, + 45.580785 + ], + [ + -73.443359, + 45.581199 + ], + [ + -73.443375, + 45.581348 + ], + [ + -73.443437, + 45.581532 + ], + [ + -73.443442, + 45.581544 + ], + [ + -73.443489, + 45.581649 + ], + [ + -73.443575, + 45.581784 + ], + [ + -73.443724, + 45.581969 + ], + [ + -73.443826, + 45.582072 + ], + [ + -73.445192, + 45.583151 + ], + [ + -73.445199, + 45.583169 + ], + [ + -73.445212, + 45.583213 + ], + [ + -73.445216, + 45.583229 + ], + [ + -73.445297, + 45.583292 + ], + [ + -73.44537, + 45.583351 + ], + [ + -73.445826, + 45.583707 + ], + [ + -73.445827, + 45.583708 + ], + [ + -73.44592, + 45.583788 + ], + [ + -73.446073, + 45.583824 + ], + [ + -73.446269, + 45.583671 + ], + [ + -73.446281, + 45.583662 + ], + [ + -73.446365, + 45.583594 + ], + [ + -73.446509, + 45.583477 + ], + [ + -73.446663, + 45.583334 + ], + [ + -73.446759, + 45.583239 + ], + [ + -73.446885, + 45.583095 + ], + [ + -73.447026, + 45.582915 + ], + [ + -73.44712, + 45.582776 + ], + [ + -73.447194, + 45.582643 + ], + [ + -73.447216, + 45.582605 + ], + [ + -73.447288, + 45.582456 + ], + [ + -73.447348, + 45.582322 + ], + [ + -73.447422, + 45.58211 + ], + [ + -73.447475, + 45.581885 + ], + [ + -73.447497, + 45.581732 + ], + [ + -73.447521, + 45.581602 + ], + [ + -73.447516, + 45.581462 + ], + [ + -73.447513, + 45.581287 + ], + [ + -73.447477, + 45.581057 + ], + [ + -73.447323, + 45.580299 + ], + [ + -73.447286, + 45.580117 + ], + [ + -73.447144, + 45.579424 + ], + [ + -73.447088, + 45.579152 + ] + ] + }, + "id": 376, + "properties": { + "id": "b4de7e51-f7f0-4d39-aea7-5eecf300190f", + "data": { + "gtfs": { + "shape_id": "683_2_R" + }, + "segments": [ + { + "distanceMeters": 69, + "travelTimeSeconds": 7 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 378, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 6071, + "travelTimeSeconds": 676 + }, + { + "distanceMeters": 383, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 316, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 444, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 328, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 86, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 311, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 351, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 386, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 307, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 15 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 240, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 21577, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 5991.141571377439, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.99, + "travelTimeWithoutDwellTimesSeconds": 2400, + "operatingTimeWithLayoverTimeSeconds": 2640, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 2400, + "operatingSpeedWithLayoverMetersPerSecond": 8.17, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.99 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "081e45a0-31c3-487c-996e-66d1b824569d", + "4ae33b06-30dd-4ad3-8df9-3ce610880853", + "4d48f36b-2274-4392-afac-b2c2c64b98f0", + "5f58acb6-be68-437f-bde7-a77d03125af9", + "4e61612c-2f48-47d6-ad42-7c0737853911", + "2759f6fd-0d91-4292-9174-1b3724fde57a", + "cca1a0cf-beb4-489c-8f77-d54546a85821", + "17f362e0-58a1-4091-a2cb-677491725ae9", + "c5521133-14cc-4988-b8c2-4360698fa4ec", + "a42ad0c8-61c2-4ea6-ba0d-de9a1cb40394", + "bc056e84-1f20-4604-aad7-40427c6685a6", + "f8b461c2-c03e-4da6-aa56-a50e7e1d9db0", + "6460b11a-31ec-4bbc-b7b7-22be32195079", + "b2bf7d79-9175-4e1d-be9c-4f4140537e43", + "2f7a97d2-c790-4f58-9a63-010938bbaf69", + "b54db9a8-0c8c-43a8-a385-bc532fde3f70", + "21aac851-6052-4e4d-8167-df2d9a876338", + "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", + "c650007a-bdeb-4831-9df5-833406e44887", + "8babca8c-ebff-46bc-b0c6-b6576c4fada6", + "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", + "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", + "50c385af-a7f1-479f-b40d-4ed198aca8ce", + "b32eb408-e9c7-49ab-afd7-56523f4ec990", + "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", + "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", + "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", + "e215ed06-76bb-473a-80f3-21384e4c300f", + "6b55fd05-7687-457e-ae9d-e87027c7100f", + "494d9db6-32c6-4aa3-9c11-91eba915c58f", + "f7429ca8-1ccc-41e7-acab-a5d3915affbb", + "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", + "e134e428-8d59-4d84-966a-ce83afff1c1c", + "7ca4f3b1-99df-4499-964b-1702513ad59f", + "7d34a327-717a-432e-93f5-7310ac20c2c2", + "abeb197b-490c-4d67-8abe-37d08d73ce70", + "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", + "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", + "628308c5-3a00-44cb-908b-068616e8e618", + "47dc43f6-90db-4837-be84-0b5d8a2becb4", + "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", + "fc32be78-9480-4dfc-b10c-475dc000dd04", + "0872c388-8faf-4852-b4ce-cf3f6312e0ef", + "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "ed16ff8f-f2f4-4914-b93b-f48229e580b7", + "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", + "de3d06d6-88af-49e3-b183-9464b2f111c8", + "3613b472-6055-4b55-9c89-01a451d82804", + "4cd6eb13-aeec-4716-a3d3-8e1a38389723", + "9ad04c6c-abc1-49fe-8f36-db6146dd5c5c", + "3dedf179-3478-4b4d-b706-36e0a8981094", + "3bd4e28f-2392-4d87-96de-a2ab53d75020", + "ba6e04e1-77fc-4b3f-86d2-fd956b418882", + "3ff2d59e-aa78-4d80-b1c5-f7852a289411", + "dda3c3c1-6952-475f-8547-789fb757f7c6", + "b09cf260-c832-4cf7-bb1b-ef1c96c3308c", + "969d12ef-c40c-4428-9c70-2251a9d71a5e", + "d63304a9-15dd-4cf4-8ec7-3f7d0c080252", + "589841be-b3c7-4f02-a8e7-b24569959def", + "3f07914c-7958-4cd1-a0a6-c2c9e04cc913", + "b94a5730-dab3-4715-a12c-41d1c300a3ab", + "7b512bac-ad2d-4d5a-87d8-173290a7b311", + "44ce6da8-ee79-4e09-9c16-f31566643c0c", + "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", + "6c99422e-05cb-48dc-811f-162fee50cf80" + ], + "stops": [], + "line_id": "1af974c3-a2fd-4a71-b2ec-d7a3b31d18be", + "segments": [ + 0, + 2, + 8, + 12, + 19, + 25, + 35, + 39, + 45, + 53, + 63, + 69, + 175, + 200, + 208, + 209, + 212, + 219, + 226, + 232, + 239, + 243, + 248, + 264, + 268, + 279, + 292, + 296, + 301, + 308, + 314, + 319, + 323, + 331, + 341, + 352, + 360, + 365, + 374, + 378, + 383, + 388, + 393, + 400, + 407, + 410, + 416, + 432, + 439, + 452, + 459, + 468, + 472, + 473, + 480, + 489, + 499, + 507, + 521, + 527, + 537, + 548, + 554, + 560, + 572, + 584, + 595 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 376, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.490863, + 45.456982 + ], + [ + -73.48998, + 45.456944 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.489765, + 45.457071 + ], + [ + -73.489763, + 45.457296 + ], + [ + -73.489736, + 45.457408 + ], + [ + -73.489694, + 45.457516 + ], + [ + -73.489182, + 45.458344 + ], + [ + -73.489058, + 45.458542 + ], + [ + -73.488929, + 45.458754 + ], + [ + -73.488839, + 45.458979 + ], + [ + -73.488828, + 45.459006 + ], + [ + -73.488777, + 45.459727 + ], + [ + -73.488701, + 45.460814 + ], + [ + -73.488665, + 45.461402 + ], + [ + -73.488659, + 45.461512 + ], + [ + -73.488594, + 45.462464 + ], + [ + -73.488573, + 45.462762 + ], + [ + -73.488498, + 45.462929 + ], + [ + -73.488349, + 45.463109 + ], + [ + -73.488147, + 45.463215 + ], + [ + -73.488109, + 45.463235 + ], + [ + -73.487821, + 45.463302 + ], + [ + -73.487412, + 45.463379 + ], + [ + -73.487283, + 45.463388 + ], + [ + -73.487042, + 45.463406 + ], + [ + -73.486606, + 45.463401 + ], + [ + -73.486489, + 45.463401 + ], + [ + -73.486321, + 45.463433 + ], + [ + -73.486243, + 45.463455 + ], + [ + -73.486089, + 45.463495 + ], + [ + -73.485941, + 45.463558 + ], + [ + -73.485896, + 45.463576 + ], + [ + -73.485826, + 45.463612 + ], + [ + -73.485277, + 45.463878 + ], + [ + -73.485098, + 45.46395 + ], + [ + -73.484961, + 45.463999 + ], + [ + -73.484817, + 45.464035 + ], + [ + -73.484669, + 45.464067 + ], + [ + -73.484494, + 45.464076 + ], + [ + -73.484342, + 45.46408 + ], + [ + -73.48257, + 45.464048 + ], + [ + -73.482309, + 45.464098 + ], + [ + -73.481982, + 45.464183 + ], + [ + -73.481584, + 45.464342 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.481238, + 45.464158 + ], + [ + -73.480971, + 45.463838 + ], + [ + -73.480932, + 45.463792 + ], + [ + -73.480306, + 45.46304 + ], + [ + -73.479957, + 45.462623 + ], + [ + -73.479274, + 45.461807 + ], + [ + -73.478983, + 45.461465 + ], + [ + -73.478678, + 45.461105 + ], + [ + -73.47855, + 45.461011 + ], + [ + -73.478436, + 45.46091 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.47665, + 45.461971 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476066, + 45.461864 + ], + [ + -73.475666, + 45.461613 + ], + [ + -73.475411, + 45.461799 + ], + [ + -73.475315, + 45.461869 + ], + [ + -73.47512, + 45.462031 + ], + [ + -73.474994, + 45.462135 + ], + [ + -73.474502, + 45.462639 + ], + [ + -73.474394, + 45.46281 + ], + [ + -73.474225, + 45.463052 + ], + [ + -73.47413, + 45.463142 + ], + [ + -73.474125, + 45.463146 + ], + [ + -73.474018, + 45.46321 + ], + [ + -73.472907, + 45.464104 + ], + [ + -73.472811, + 45.464181 + ], + [ + -73.472107, + 45.4637 + ], + [ + -73.471841, + 45.463592 + ], + [ + -73.471692, + 45.463569 + ], + [ + -73.471666, + 45.463565 + ], + [ + -73.471494, + 45.463556 + ], + [ + -73.471257, + 45.463547 + ], + [ + -73.470687, + 45.463533 + ], + [ + -73.469185, + 45.463481 + ], + [ + -73.468972, + 45.463474 + ], + [ + -73.468884, + 45.463461 + ], + [ + -73.468833, + 45.46342 + ], + [ + -73.468836, + 45.463308 + ], + [ + -73.468837, + 45.463254 + ], + [ + -73.468876, + 45.462738 + ], + [ + -73.46897, + 45.46149 + ], + [ + -73.46901, + 45.460865 + ], + [ + -73.469029, + 45.460617 + ], + [ + -73.469045, + 45.460397 + ], + [ + -73.469046, + 45.459978 + ], + [ + -73.46901, + 45.459861 + ], + [ + -73.468938, + 45.459704 + ], + [ + -73.468742, + 45.459506 + ], + [ + -73.468425, + 45.459258 + ], + [ + -73.468212, + 45.459096 + ], + [ + -73.468171, + 45.459052 + ], + [ + -73.468056, + 45.45893 + ], + [ + -73.467979, + 45.458754 + ], + [ + -73.467956, + 45.458669 + ], + [ + -73.467971, + 45.458525 + ], + [ + -73.467975, + 45.458309 + ], + [ + -73.467992, + 45.458216 + ], + [ + -73.468021, + 45.458057 + ], + [ + -73.468109, + 45.457211 + ], + [ + -73.468145, + 45.457017 + ], + [ + -73.468147, + 45.457005 + ], + [ + -73.468158, + 45.456945 + ], + [ + -73.46834, + 45.456412 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468443, + 45.456109 + ], + [ + -73.467856, + 45.455996 + ], + [ + -73.467523, + 45.455919 + ], + [ + -73.467299, + 45.455861 + ], + [ + -73.466983, + 45.455757 + ], + [ + -73.466899, + 45.455728 + ], + [ + -73.466828, + 45.455703 + ], + [ + -73.466326, + 45.455503 + ], + [ + -73.466093, + 45.45541 + ], + [ + -73.465683, + 45.455224 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.463912, + 45.454506 + ], + [ + -73.463601, + 45.454377 + ], + [ + -73.463314, + 45.454258 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.461806, + 45.453577 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.459815, + 45.452691 + ], + [ + -73.459186, + 45.452399 + ], + [ + -73.45904, + 45.452331 + ], + [ + -73.458688, + 45.452137 + ], + [ + -73.458046, + 45.451791 + ], + [ + -73.457689, + 45.451583 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457598, + 45.451363 + ], + [ + -73.457627, + 45.45129 + ], + [ + -73.457661, + 45.451176 + ], + [ + -73.457648, + 45.45104 + ], + [ + -73.457607, + 45.450938 + ], + [ + -73.457498, + 45.450823 + ], + [ + -73.457365, + 45.450743 + ] + ] + }, + "id": 377, + "properties": { + "id": "c18d5aca-48d7-46f4-8169-e8c8f9b0af96", + "data": { + "gtfs": { + "shape_id": "684_1_A" + }, + "segments": [ + { + "distanceMeters": 69, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 79 + }, + { + "distanceMeters": 363, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 44, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 63, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 143, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 124, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 69, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 22 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 4763, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2698.903030564319, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 4.96, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 4.18, + "averageSpeedWithoutDwellTimesMetersPerSecond": 4.96 + }, + "mode": "bus", + "name": "École Antoine-Brossard", + "color": "#A32638", + "nodes": [ + "117181e4-9af2-4572-89ec-28895ad235ae", + "984def83-5f59-45f7-bb33-ed1dbca30502", + "5a6d8067-b58d-4ab2-838e-422e8f003ee9", + "9c711698-0f65-4997-8a72-24f5d8ab8fb7", + "1339471a-52fa-47e9-b0e4-753bf917ef08", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "003bcf5e-54a8-471f-b008-b7fa64ff94ba", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "06992afa-6d7e-4650-bffc-5a747de5860c", + "7389acbe-1784-4fea-a2ab-a4a9c9239e83", + "70ace55a-2f3c-410b-8740-bea06ecb9924", + "71ffac32-604a-4260-b51e-c427856a20c4", + "f872f4da-bae9-485b-a2fb-ae01787389fc", + "f045bfca-885e-4fa6-be24-3e8f1855457a", + "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", + "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", + "ca62a640-5508-4ced-94a0-1f22107c57c9", + "ca62a640-5508-4ced-94a0-1f22107c57c9", + "8443a69f-fccf-4a19-8d08-6da77269e686", + "2946050b-73ca-45c7-be10-f80ba5b43ab5", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "ab493a3c-1217-4122-93b5-217f7741b2ea", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "44eacee6-a348-48cf-aeda-c9ddae958f8e" + ], + "stops": [], + "line_id": "9ee80f39-41f5-48ee-aea8-5ac87d466001", + "segments": [ + 0, + 1, + 10, + 14, + 31, + 44, + 46, + 50, + 55, + 58, + 60, + 64, + 70, + 72, + 76, + 81, + 90, + 98, + 104, + 107, + 110, + 119, + 126, + 129, + 132, + 136 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 377, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.457365, + 45.450743 + ], + [ + -73.457311, + 45.45071 + ], + [ + -73.457055, + 45.450562 + ], + [ + -73.45697, + 45.450481 + ], + [ + -73.456931, + 45.450397 + ], + [ + -73.456841, + 45.450279 + ], + [ + -73.456733, + 45.450296 + ], + [ + -73.456625, + 45.450319 + ], + [ + -73.456525, + 45.450368 + ], + [ + -73.456438, + 45.450427 + ], + [ + -73.456357, + 45.45049 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456282, + 45.450641 + ], + [ + -73.456274, + 45.450721 + ], + [ + -73.456292, + 45.450794 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.45714, + 45.451439 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457924, + 45.451894 + ], + [ + -73.458487, + 45.4522 + ], + [ + -73.458729, + 45.45233 + ], + [ + -73.458941, + 45.452443 + ], + [ + -73.459713, + 45.452799 + ], + [ + -73.46123, + 45.453471 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.462917, + 45.454222 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463822, + 45.454609 + ], + [ + -73.464889, + 45.45506 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465851, + 45.455474 + ], + [ + -73.466482, + 45.45573 + ], + [ + -73.466742, + 45.45582 + ], + [ + -73.466794, + 45.455838 + ], + [ + -73.466905, + 45.455874 + ], + [ + -73.467229, + 45.455978 + ], + [ + -73.467462, + 45.456041 + ], + [ + -73.467802, + 45.456122 + ], + [ + -73.468135, + 45.456185 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468158, + 45.456945 + ], + [ + -73.468147, + 45.457005 + ], + [ + -73.468109, + 45.457211 + ], + [ + -73.468044, + 45.457834 + ], + [ + -73.468021, + 45.458057 + ], + [ + -73.467975, + 45.458309 + ], + [ + -73.467971, + 45.458525 + ], + [ + -73.467956, + 45.458669 + ], + [ + -73.467979, + 45.458754 + ], + [ + -73.468051, + 45.458918 + ], + [ + -73.468056, + 45.45893 + ], + [ + -73.468212, + 45.459096 + ], + [ + -73.468425, + 45.459258 + ], + [ + -73.468742, + 45.459506 + ], + [ + -73.468938, + 45.459704 + ], + [ + -73.46901, + 45.459861 + ], + [ + -73.469046, + 45.459978 + ], + [ + -73.469045, + 45.460397 + ], + [ + -73.469024, + 45.460681 + ], + [ + -73.46901, + 45.460865 + ], + [ + -73.46897, + 45.46149 + ], + [ + -73.468876, + 45.462738 + ], + [ + -73.468837, + 45.463254 + ], + [ + -73.468833, + 45.463418 + ], + [ + -73.468833, + 45.46342 + ], + [ + -73.468884, + 45.463461 + ], + [ + -73.468972, + 45.463474 + ], + [ + -73.46938, + 45.463488 + ], + [ + -73.470687, + 45.463533 + ], + [ + -73.471257, + 45.463547 + ], + [ + -73.471494, + 45.463556 + ], + [ + -73.471516, + 45.463557 + ], + [ + -73.471666, + 45.463565 + ], + [ + -73.471841, + 45.463592 + ], + [ + -73.472107, + 45.4637 + ], + [ + -73.47277, + 45.464153 + ], + [ + -73.472811, + 45.464181 + ], + [ + -73.474002, + 45.463223 + ], + [ + -73.474018, + 45.46321 + ], + [ + -73.47413, + 45.463142 + ], + [ + -73.474225, + 45.463052 + ], + [ + -73.474394, + 45.46281 + ], + [ + -73.474502, + 45.462639 + ], + [ + -73.47496, + 45.462171 + ], + [ + -73.474994, + 45.462135 + ], + [ + -73.475315, + 45.461869 + ], + [ + -73.475666, + 45.461613 + ], + [ + -73.475999, + 45.461821 + ], + [ + -73.476382, + 45.462062 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476557, + 45.462176 + ], + [ + -73.477249, + 45.461685 + ], + [ + -73.478221, + 45.460951 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.47855, + 45.461011 + ], + [ + -73.478678, + 45.461105 + ], + [ + -73.478798, + 45.461246 + ], + [ + -73.478852, + 45.461311 + ], + [ + -73.478983, + 45.461465 + ], + [ + -73.479274, + 45.461807 + ], + [ + -73.47972, + 45.46234 + ], + [ + -73.480306, + 45.46304 + ], + [ + -73.480932, + 45.463792 + ], + [ + -73.481364, + 45.464309 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.481982, + 45.464183 + ], + [ + -73.482309, + 45.464098 + ], + [ + -73.48257, + 45.464048 + ], + [ + -73.482856, + 45.464054 + ], + [ + -73.484342, + 45.46408 + ], + [ + -73.484494, + 45.464076 + ], + [ + -73.484669, + 45.464067 + ], + [ + -73.484817, + 45.464035 + ], + [ + -73.484961, + 45.463999 + ], + [ + -73.485098, + 45.46395 + ], + [ + -73.485277, + 45.463878 + ], + [ + -73.485826, + 45.463612 + ], + [ + -73.485896, + 45.463576 + ], + [ + -73.485989, + 45.463538 + ], + [ + -73.486089, + 45.463495 + ], + [ + -73.486243, + 45.463455 + ], + [ + -73.486321, + 45.463433 + ], + [ + -73.486489, + 45.463401 + ], + [ + -73.486606, + 45.463401 + ], + [ + -73.487042, + 45.463406 + ], + [ + -73.487283, + 45.463388 + ], + [ + -73.487412, + 45.463379 + ], + [ + -73.487821, + 45.463302 + ], + [ + -73.488109, + 45.463235 + ], + [ + -73.488349, + 45.463109 + ], + [ + -73.488498, + 45.462929 + ], + [ + -73.488573, + 45.462762 + ], + [ + -73.488581, + 45.462647 + ], + [ + -73.488594, + 45.462464 + ], + [ + -73.488653, + 45.461596 + ], + [ + -73.488659, + 45.461512 + ], + [ + -73.488701, + 45.460814 + ], + [ + -73.488777, + 45.459727 + ], + [ + -73.488805, + 45.459335 + ], + [ + -73.488828, + 45.459006 + ], + [ + -73.488929, + 45.458754 + ], + [ + -73.489058, + 45.458542 + ], + [ + -73.489182, + 45.458344 + ], + [ + -73.489694, + 45.457516 + ], + [ + -73.489701, + 45.457498 + ], + [ + -73.489736, + 45.457408 + ], + [ + -73.489763, + 45.457296 + ], + [ + -73.489765, + 45.457071 + ], + [ + -73.491355, + 45.457125 + ], + [ + -73.49153, + 45.457126 + ] + ] + }, + "id": 378, + "properties": { + "id": "dbfe0935-6e7c-488a-9100-5f5f8276dd74", + "data": { + "gtfs": { + "shape_id": "684_2_R" + }, + "segments": [ + { + "distanceMeters": 248, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 222, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 81, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 39 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 4975, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2757.437142128404, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 4.88, + "travelTimeWithoutDwellTimesSeconds": 1020, + "operatingTimeWithLayoverTimeSeconds": 1200, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1020, + "operatingSpeedWithLayoverMetersPerSecond": 4.15, + "averageSpeedWithoutDwellTimesMetersPerSecond": 4.88 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "44eacee6-a348-48cf-aeda-c9ddae958f8e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", + "2ac07b96-98be-4710-a749-3162a661fcb5", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "981ebecb-3dc2-4439-8648-8052a51df7ec", + "2a268094-fe95-4a75-83da-d02aa638cbb6", + "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", + "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", + "ef880d61-7a9a-4504-a9a1-27967a52e95d", + "f872f4da-bae9-485b-a2fb-ae01787389fc", + "71ffac32-604a-4260-b51e-c427856a20c4", + "70ace55a-2f3c-410b-8740-bea06ecb9924", + "7389acbe-1784-4fea-a2ab-a4a9c9239e83", + "06992afa-6d7e-4650-bffc-5a747de5860c", + "ff23cabb-ca11-421b-a582-f6413aa21fa0", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "003bcf5e-54a8-471f-b008-b7fa64ff94ba", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "57de752e-d268-4125-8223-581e6c2ff56e", + "1339471a-52fa-47e9-b0e4-753bf917ef08", + "9c711698-0f65-4997-8a72-24f5d8ab8fb7", + "5a6d8067-b58d-4ab2-838e-422e8f003ee9", + "e20e768c-bd5a-43fd-8842-af2717d6cb09", + "69fd316d-244b-48fa-871d-645ac04399fc" + ], + "stops": [], + "line_id": "9ee80f39-41f5-48ee-aea8-5ac87d466001", + "segments": [ + 0, + 16, + 21, + 24, + 26, + 29, + 40, + 45, + 51, + 60, + 65, + 73, + 77, + 79, + 85, + 90, + 94, + 99, + 102, + 105, + 110, + 120, + 136, + 140, + 146 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 378, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.490536, + 45.447995 + ], + [ + -73.490521, + 45.448293 + ], + [ + -73.490407, + 45.449501 + ], + [ + -73.490386, + 45.449719 + ], + [ + -73.490356, + 45.450109 + ], + [ + -73.490274, + 45.451145 + ], + [ + -73.490183, + 45.451912 + ], + [ + -73.490174, + 45.451996 + ], + [ + -73.490164, + 45.452099 + ], + [ + -73.490107, + 45.452689 + ], + [ + -73.490099, + 45.452842 + ], + [ + -73.490095, + 45.452936 + ], + [ + -73.490138, + 45.453076 + ], + [ + -73.490177, + 45.453161 + ], + [ + -73.490251, + 45.453269 + ], + [ + -73.490323, + 45.453345 + ], + [ + -73.490337, + 45.453359 + ], + [ + -73.490535, + 45.453506 + ], + [ + -73.49064, + 45.453584 + ], + [ + -73.490922, + 45.453778 + ], + [ + -73.491049, + 45.453868 + ], + [ + -73.491205, + 45.454016 + ], + [ + -73.491307, + 45.454169 + ], + [ + -73.491353, + 45.454286 + ], + [ + -73.491385, + 45.45439 + ], + [ + -73.491385, + 45.45452 + ], + [ + -73.491384, + 45.454529 + ], + [ + -73.491379, + 45.454673 + ], + [ + -73.491306, + 45.455478 + ], + [ + -73.491179, + 45.455672 + ], + [ + -73.491011, + 45.455801 + ], + [ + -73.49101, + 45.455802 + ], + [ + -73.490874, + 45.45587 + ], + [ + -73.490235, + 45.456194 + ], + [ + -73.490047, + 45.45632 + ], + [ + -73.489891, + 45.45645 + ], + [ + -73.489837, + 45.456558 + ], + [ + -73.489805, + 45.456679 + ], + [ + -73.48979, + 45.456792 + ], + [ + -73.489787, + 45.45681 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.489159, + 45.456913 + ], + [ + -73.488779, + 45.456899 + ], + [ + -73.488212, + 45.456877 + ], + [ + -73.48652, + 45.456819 + ], + [ + -73.486364, + 45.456814 + ], + [ + -73.485148, + 45.456777 + ], + [ + -73.483698, + 45.456733 + ], + [ + -73.482913, + 45.456699 + ], + [ + -73.482756, + 45.456692 + ], + [ + -73.482803, + 45.455945 + ], + [ + -73.482873, + 45.455347 + ], + [ + -73.482933, + 45.455144 + ], + [ + -73.483013, + 45.454949 + ], + [ + -73.483041, + 45.454879 + ], + [ + -73.483256, + 45.454555 + ], + [ + -73.483336, + 45.454466 + ], + [ + -73.483527, + 45.454254 + ], + [ + -73.483647, + 45.454132 + ], + [ + -73.48375, + 45.454002 + ], + [ + -73.48383, + 45.453858 + ], + [ + -73.483876, + 45.453709 + ], + [ + -73.483893, + 45.453567 + ], + [ + -73.483908, + 45.453444 + ], + [ + -73.483918, + 45.453192 + ], + [ + -73.483914, + 45.453106 + ], + [ + -73.483845, + 45.452961 + ], + [ + -73.483803, + 45.452872 + ], + [ + -73.483523, + 45.452683 + ], + [ + -73.483385, + 45.452634 + ], + [ + -73.483204, + 45.452607 + ], + [ + -73.481531, + 45.452556 + ], + [ + -73.481291, + 45.452548 + ], + [ + -73.480742, + 45.452539 + ], + [ + -73.480267, + 45.452543 + ], + [ + -73.479609, + 45.452606 + ], + [ + -73.479442, + 45.452631 + ], + [ + -73.479278, + 45.452656 + ], + [ + -73.479123, + 45.452678 + ], + [ + -73.47843, + 45.452784 + ], + [ + -73.478149, + 45.452826 + ], + [ + -73.477761, + 45.452903 + ], + [ + -73.477488, + 45.453011 + ], + [ + -73.47723, + 45.453123 + ], + [ + -73.475827, + 45.453802 + ], + [ + -73.475164, + 45.454109 + ], + [ + -73.474972, + 45.454198 + ], + [ + -73.475389, + 45.454625 + ], + [ + -73.475548, + 45.454788 + ], + [ + -73.475752, + 45.455094 + ], + [ + -73.47581, + 45.455248 + ], + [ + -73.475877, + 45.455431 + ], + [ + -73.475885, + 45.455566 + ], + [ + -73.475889, + 45.455724 + ], + [ + -73.475851, + 45.456427 + ], + [ + -73.475848, + 45.456479 + ], + [ + -73.475258, + 45.456459 + ], + [ + -73.474778, + 45.456443 + ], + [ + -73.473716, + 45.456411 + ], + [ + -73.47264, + 45.456375 + ], + [ + -73.471572, + 45.456339 + ], + [ + -73.47073, + 45.456312 + ], + [ + -73.47047, + 45.456303 + ], + [ + -73.469686, + 45.456262 + ], + [ + -73.46943, + 45.456244 + ], + [ + -73.468978, + 45.456199 + ], + [ + -73.468656, + 45.456152 + ], + [ + -73.468607, + 45.456145 + ], + [ + -73.468443, + 45.456109 + ], + [ + -73.467856, + 45.455996 + ], + [ + -73.467523, + 45.455919 + ], + [ + -73.467299, + 45.455861 + ], + [ + -73.466983, + 45.455757 + ], + [ + -73.466899, + 45.455728 + ], + [ + -73.466828, + 45.455703 + ], + [ + -73.466312, + 45.455498 + ], + [ + -73.466093, + 45.45541 + ], + [ + -73.465683, + 45.455224 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.463912, + 45.454506 + ], + [ + -73.463601, + 45.454377 + ], + [ + -73.463301, + 45.454253 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.461794, + 45.453571 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.459815, + 45.452691 + ], + [ + -73.459185, + 45.452398 + ], + [ + -73.45904, + 45.452331 + ], + [ + -73.458688, + 45.452137 + ], + [ + -73.458046, + 45.451791 + ], + [ + -73.457688, + 45.451583 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457598, + 45.451363 + ], + [ + -73.457627, + 45.45129 + ], + [ + -73.457661, + 45.451176 + ], + [ + -73.457648, + 45.45104 + ], + [ + -73.457607, + 45.450938 + ], + [ + -73.457498, + 45.450823 + ], + [ + -73.457365, + 45.450743 + ] + ] + }, + "id": 379, + "properties": { + "id": "8b570d07-35f7-4035-bf57-fd73f7aa6fa1", + "data": { + "gtfs": { + "shape_id": "689_1_A" + }, + "segments": [ + { + "distanceMeters": 168, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 188, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 378, + "travelTimeSeconds": 71 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 569, + "travelTimeSeconds": 107 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 21 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 4762, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2604.735314203061, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.29, + "travelTimeWithoutDwellTimesSeconds": 900, + "operatingTimeWithLayoverTimeSeconds": 1080, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 900, + "operatingSpeedWithLayoverMetersPerSecond": 4.41, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.29 + }, + "mode": "bus", + "name": "École Antoine-Brossard", + "color": "#A32638", + "nodes": [ + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "997c4af9-ab50-4dfb-941a-afadff58f267", + "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", + "c7c30949-db61-44fc-b7ab-a69b9fde12cc", + "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", + "f1131e74-6c65-4f22-a18d-41dbe35e4576", + "984def83-5f59-45f7-bb33-ed1dbca30502", + "1d56d4cb-0ab2-44f2-924d-aa119de8c362", + "ecb00316-793a-4c41-88bd-3870bea4d999", + "f92fabb3-5544-4aa3-8461-0c7fc17380ef", + "f889063d-4196-4990-bc8c-d6010d0c0192", + "95a6ef09-da34-422a-81ec-389b0e0bb278", + "c25adb1f-635e-4881-a89d-af8a9ea5ca92", + "e690066b-eb33-421c-89b1-e731dab9975f", + "91baaa10-e8cd-406f-a7c1-c8e2465ade3f", + "1782a1a7-eddc-4228-a7a8-bf733f339e68", + "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", + "8443a69f-fccf-4a19-8d08-6da77269e686", + "2946050b-73ca-45c7-be10-f80ba5b43ab5", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "ab493a3c-1217-4122-93b5-217f7741b2ea", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "44eacee6-a348-48cf-aeda-c9ddae958f8e" + ], + "stops": [], + "line_id": "b1bec197-6850-48e7-a309-5ab78730e864", + "segments": [ + 0, + 2, + 6, + 17, + 26, + 30, + 38, + 44, + 48, + 53, + 66, + 71, + 76, + 85, + 90, + 94, + 106, + 115, + 122, + 125, + 128, + 132 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 379, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.457365, + 45.450743 + ], + [ + -73.457311, + 45.45071 + ], + [ + -73.457055, + 45.450562 + ], + [ + -73.45697, + 45.450481 + ], + [ + -73.456931, + 45.450397 + ], + [ + -73.456841, + 45.450279 + ], + [ + -73.456733, + 45.450296 + ], + [ + -73.456625, + 45.450319 + ], + [ + -73.456525, + 45.450368 + ], + [ + -73.456438, + 45.450427 + ], + [ + -73.456357, + 45.45049 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456282, + 45.450641 + ], + [ + -73.456274, + 45.450721 + ], + [ + -73.456292, + 45.450794 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.456756, + 45.451165 + ], + [ + -73.457139, + 45.451439 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457924, + 45.451894 + ], + [ + -73.458487, + 45.4522 + ], + [ + -73.458728, + 45.45233 + ], + [ + -73.458941, + 45.452443 + ], + [ + -73.459713, + 45.452799 + ], + [ + -73.461229, + 45.45347 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.462916, + 45.454221 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463822, + 45.454609 + ], + [ + -73.464887, + 45.455059 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465851, + 45.455474 + ], + [ + -73.466482, + 45.45573 + ], + [ + -73.466742, + 45.45582 + ], + [ + -73.466794, + 45.455838 + ], + [ + -73.466905, + 45.455874 + ], + [ + -73.467229, + 45.455978 + ], + [ + -73.467462, + 45.456041 + ], + [ + -73.467802, + 45.456122 + ], + [ + -73.468132, + 45.456184 + ], + [ + -73.4684, + 45.456235 + ], + [ + -73.468564, + 45.456262 + ], + [ + -73.468949, + 45.456316 + ], + [ + -73.469418, + 45.456365 + ], + [ + -73.469671, + 45.456392 + ], + [ + -73.470468, + 45.456429 + ], + [ + -73.471559, + 45.45646 + ], + [ + -73.472632, + 45.456497 + ], + [ + -73.473708, + 45.456537 + ], + [ + -73.474773, + 45.456569 + ], + [ + -73.475689, + 45.456589 + ], + [ + -73.475839, + 45.456592 + ], + [ + -73.475848, + 45.456479 + ], + [ + -73.47587, + 45.456069 + ], + [ + -73.475889, + 45.455724 + ], + [ + -73.475885, + 45.455566 + ], + [ + -73.475883, + 45.45553 + ], + [ + -73.475877, + 45.455431 + ], + [ + -73.475752, + 45.455094 + ], + [ + -73.475548, + 45.454788 + ], + [ + -73.475052, + 45.45428 + ], + [ + -73.474972, + 45.454198 + ], + [ + -73.475607, + 45.453904 + ], + [ + -73.475827, + 45.453802 + ], + [ + -73.47723, + 45.453123 + ], + [ + -73.477488, + 45.453011 + ], + [ + -73.477761, + 45.452903 + ], + [ + -73.478149, + 45.452826 + ], + [ + -73.478914, + 45.45271 + ], + [ + -73.479123, + 45.452678 + ], + [ + -73.479278, + 45.452656 + ], + [ + -73.479609, + 45.452606 + ], + [ + -73.480267, + 45.452543 + ], + [ + -73.480742, + 45.452539 + ], + [ + -73.481261, + 45.452548 + ], + [ + -73.481291, + 45.452548 + ], + [ + -73.482674, + 45.452591 + ], + [ + -73.483204, + 45.452607 + ], + [ + -73.483385, + 45.452634 + ], + [ + -73.483523, + 45.452683 + ], + [ + -73.48375, + 45.452837 + ], + [ + -73.483803, + 45.452872 + ], + [ + -73.483914, + 45.453106 + ], + [ + -73.483918, + 45.453192 + ], + [ + -73.483908, + 45.453444 + ], + [ + -73.483893, + 45.453567 + ], + [ + -73.483876, + 45.453709 + ], + [ + -73.48383, + 45.453858 + ], + [ + -73.48375, + 45.454002 + ], + [ + -73.483647, + 45.454132 + ], + [ + -73.483527, + 45.454254 + ], + [ + -73.483256, + 45.454555 + ], + [ + -73.483085, + 45.454813 + ], + [ + -73.483041, + 45.454879 + ], + [ + -73.482933, + 45.455144 + ], + [ + -73.482873, + 45.455347 + ], + [ + -73.482803, + 45.455945 + ], + [ + -73.482764, + 45.456577 + ], + [ + -73.482756, + 45.456692 + ], + [ + -73.482746, + 45.456836 + ], + [ + -73.483334, + 45.456859 + ], + [ + -73.483692, + 45.456872 + ], + [ + -73.485139, + 45.456916 + ], + [ + -73.486304, + 45.456952 + ], + [ + -73.48636, + 45.456954 + ], + [ + -73.488203, + 45.457017 + ], + [ + -73.489591, + 45.457065 + ], + [ + -73.489765, + 45.457071 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.489787, + 45.45681 + ], + [ + -73.489805, + 45.456679 + ], + [ + -73.489826, + 45.456598 + ], + [ + -73.489837, + 45.456558 + ], + [ + -73.489891, + 45.45645 + ], + [ + -73.490047, + 45.45632 + ], + [ + -73.490235, + 45.456194 + ], + [ + -73.490846, + 45.455884 + ], + [ + -73.490874, + 45.45587 + ], + [ + -73.49101, + 45.455802 + ], + [ + -73.491179, + 45.455672 + ], + [ + -73.491306, + 45.455478 + ], + [ + -73.491366, + 45.454815 + ], + [ + -73.491379, + 45.454673 + ], + [ + -73.491385, + 45.45452 + ], + [ + -73.491385, + 45.45439 + ], + [ + -73.491353, + 45.454286 + ], + [ + -73.491307, + 45.454169 + ], + [ + -73.491205, + 45.454016 + ], + [ + -73.491049, + 45.453868 + ], + [ + -73.490922, + 45.453778 + ], + [ + -73.490731, + 45.453646 + ], + [ + -73.49064, + 45.453584 + ], + [ + -73.490337, + 45.453359 + ], + [ + -73.490251, + 45.453269 + ], + [ + -73.490177, + 45.453161 + ], + [ + -73.490138, + 45.453076 + ], + [ + -73.490095, + 45.452936 + ], + [ + -73.490099, + 45.452842 + ], + [ + -73.490107, + 45.452689 + ], + [ + -73.490162, + 45.452117 + ], + [ + -73.490164, + 45.452099 + ], + [ + -73.490174, + 45.451996 + ], + [ + -73.490274, + 45.451145 + ], + [ + -73.490348, + 45.450208 + ], + [ + -73.490356, + 45.450109 + ], + [ + -73.490386, + 45.449719 + ], + [ + -73.490521, + 45.448293 + ], + [ + -73.490549, + 45.447733 + ] + ] + }, + "id": 380, + "properties": { + "id": "47ac9255-c045-42db-86e4-103695306b78", + "data": { + "gtfs": { + "shape_id": "689_2_R" + }, + "segments": [ + { + "distanceMeters": 248, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 593, + "travelTimeSeconds": 106 + }, + { + "distanceMeters": 130, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 365, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 307, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 50 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 5027, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2604.7353142030606, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.58, + "travelTimeWithoutDwellTimesSeconds": 900, + "operatingTimeWithLayoverTimeSeconds": 1080, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 900, + "operatingSpeedWithLayoverMetersPerSecond": 4.65, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.58 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "44eacee6-a348-48cf-aeda-c9ddae958f8e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", + "2ac07b96-98be-4710-a749-3162a661fcb5", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "981ebecb-3dc2-4439-8648-8052a51df7ec", + "2a268094-fe95-4a75-83da-d02aa638cbb6", + "1782a1a7-eddc-4228-a7a8-bf733f339e68", + "91baaa10-e8cd-406f-a7c1-c8e2465ade3f", + "e690066b-eb33-421c-89b1-e731dab9975f", + "c25adb1f-635e-4881-a89d-af8a9ea5ca92", + "95a6ef09-da34-422a-81ec-389b0e0bb278", + "f889063d-4196-4990-bc8c-d6010d0c0192", + "f92fabb3-5544-4aa3-8461-0c7fc17380ef", + "ecb00316-793a-4c41-88bd-3870bea4d999", + "1d56d4cb-0ab2-44f2-924d-aa119de8c362", + "2f68c8b3-ace6-41af-8853-d72177e835fd", + "f1131e74-6c65-4f22-a18d-41dbe35e4576", + "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", + "c7c30949-db61-44fc-b7ab-a69b9fde12cc", + "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", + "997c4af9-ab50-4dfb-941a-afadff58f267", + "11a7e876-eb5a-402b-8bb8-10625e7584e3" + ], + "stops": [], + "line_id": "b1bec197-6850-48e7-a309-5ab78730e864", + "segments": [ + 0, + 17, + 22, + 25, + 27, + 30, + 41, + 52, + 58, + 62, + 70, + 76, + 82, + 94, + 99, + 105, + 108, + 118, + 123, + 132, + 141, + 145 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 380, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.474269, + 45.446255 + ], + [ + -73.474281, + 45.446153 + ], + [ + -73.474377, + 45.444612 + ], + [ + -73.474384, + 45.444507 + ], + [ + -73.474438, + 45.443521 + ], + [ + -73.474469, + 45.443314 + ], + [ + -73.474541, + 45.443044 + ], + [ + -73.474682, + 45.442761 + ], + [ + -73.474902, + 45.442388 + ], + [ + -73.475039, + 45.44219 + ], + [ + -73.475115, + 45.442091 + ], + [ + -73.475247, + 45.441942 + ], + [ + -73.475479, + 45.441749 + ], + [ + -73.475647, + 45.441641 + ], + [ + -73.475703, + 45.441605 + ], + [ + -73.475852, + 45.44151 + ], + [ + -73.476413, + 45.441313 + ], + [ + -73.476584, + 45.441272 + ], + [ + -73.47678, + 45.441236 + ], + [ + -73.477021, + 45.4412 + ], + [ + -73.477247, + 45.441191 + ], + [ + -73.477702, + 45.441194 + ], + [ + -73.478107, + 45.441196 + ], + [ + -73.479817, + 45.44121 + ], + [ + -73.480147, + 45.441223 + ], + [ + -73.480964, + 45.441277 + ], + [ + -73.481107, + 45.441286 + ], + [ + -73.481299, + 45.441295 + ], + [ + -73.481334, + 45.441029 + ], + [ + -73.48139, + 45.440598 + ], + [ + -73.481487, + 45.439784 + ], + [ + -73.481519, + 45.439469 + ], + [ + -73.481531, + 45.439172 + ], + [ + -73.481538, + 45.438618 + ], + [ + -73.48154, + 45.438492 + ], + [ + -73.481571, + 45.437827 + ], + [ + -73.481572, + 45.437776 + ], + [ + -73.481581, + 45.437111 + ], + [ + -73.481587, + 45.436695 + ], + [ + -73.48159, + 45.436549 + ], + [ + -73.481583, + 45.435536 + ], + [ + -73.481582, + 45.43541 + ], + [ + -73.482223, + 45.435406 + ], + [ + -73.482932, + 45.435402 + ], + [ + -73.484565, + 45.435388 + ], + [ + -73.484708, + 45.435387 + ], + [ + -73.487421, + 45.435365 + ], + [ + -73.487529, + 45.435364 + ], + [ + -73.487766, + 45.435362 + ], + [ + -73.488499, + 45.435353 + ], + [ + -73.489078, + 45.435353 + ], + [ + -73.490339, + 45.435335 + ], + [ + -73.490512, + 45.435353 + ], + [ + -73.490636, + 45.435389 + ], + [ + -73.49074, + 45.435443 + ], + [ + -73.490825, + 45.43552 + ], + [ + -73.490911, + 45.435596 + ], + [ + -73.490933, + 45.435804 + ], + [ + -73.490941, + 45.43588 + ], + [ + -73.490978, + 45.436131 + ], + [ + -73.491142, + 45.436851 + ], + [ + -73.49121, + 45.437091 + ], + [ + -73.491237, + 45.437184 + ], + [ + -73.49152, + 45.437954 + ], + [ + -73.491752, + 45.438468 + ], + [ + -73.491829, + 45.438638 + ], + [ + -73.492171, + 45.439317 + ], + [ + -73.492536, + 45.440134 + ], + [ + -73.492686, + 45.440476 + ], + [ + -73.492772, + 45.440644 + ], + [ + -73.492804, + 45.441148 + ], + [ + -73.492835, + 45.441319 + ], + [ + -73.492886, + 45.441751 + ], + [ + -73.492955, + 45.442327 + ], + [ + -73.492825, + 45.443281 + ], + [ + -73.491857, + 45.443253 + ], + [ + -73.491559, + 45.443245 + ], + [ + -73.491531, + 45.443617 + ], + [ + -73.491504, + 45.443969 + ], + [ + -73.491285, + 45.444689 + ], + [ + -73.491121, + 45.445196 + ], + [ + -73.491092, + 45.445287 + ], + [ + -73.491055, + 45.445404 + ], + [ + -73.49061, + 45.446822 + ], + [ + -73.490574, + 45.447277 + ], + [ + -73.490565, + 45.447402 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.489879, + 45.447482 + ], + [ + -73.486184, + 45.447402 + ], + [ + -73.485408, + 45.447385 + ], + [ + -73.485334, + 45.447383 + ], + [ + -73.484501, + 45.447365 + ], + [ + -73.483174, + 45.447338 + ], + [ + -73.483047, + 45.447334 + ], + [ + -73.482811, + 45.447302 + ], + [ + -73.4826, + 45.447257 + ], + [ + -73.482392, + 45.447199 + ], + [ + -73.48231, + 45.44732 + ], + [ + -73.482146, + 45.447564 + ], + [ + -73.482041, + 45.447719 + ], + [ + -73.481672, + 45.448265 + ], + [ + -73.481538, + 45.448436 + ], + [ + -73.481405, + 45.448562 + ], + [ + -73.481319, + 45.448638 + ], + [ + -73.481186, + 45.448724 + ], + [ + -73.480948, + 45.448841 + ], + [ + -73.480707, + 45.44894 + ], + [ + -73.479528, + 45.44936 + ], + [ + -73.479229, + 45.449466 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.478213, + 45.449845 + ], + [ + -73.477921, + 45.449951 + ], + [ + -73.477701, + 45.449722 + ], + [ + -73.477557, + 45.449605 + ], + [ + -73.477399, + 45.449483 + ], + [ + -73.477241, + 45.449371 + ], + [ + -73.477001, + 45.449227 + ], + [ + -73.476819, + 45.449132 + ], + [ + -73.476586, + 45.449024 + ], + [ + -73.476264, + 45.448894 + ], + [ + -73.475856, + 45.448768 + ], + [ + -73.475447, + 45.448629 + ], + [ + -73.475296, + 45.448579 + ], + [ + -73.474198, + 45.448236 + ], + [ + -73.473507, + 45.448007 + ], + [ + -73.47251, + 45.447683 + ], + [ + -73.471666, + 45.447408 + ], + [ + -73.471252, + 45.447282 + ], + [ + -73.47028, + 45.446953 + ], + [ + -73.470002, + 45.446863 + ], + [ + -73.469936, + 45.446962 + ], + [ + -73.4697, + 45.447326 + ], + [ + -73.469571, + 45.447526 + ], + [ + -73.467906, + 45.450089 + ], + [ + -73.467328, + 45.451002 + ], + [ + -73.46669, + 45.452054 + ], + [ + -73.465968, + 45.453278 + ], + [ + -73.465918, + 45.453363 + ], + [ + -73.465707, + 45.453755 + ], + [ + -73.46558, + 45.454016 + ], + [ + -73.46536, + 45.454529 + ], + [ + -73.465344, + 45.454574 + ], + [ + -73.46526, + 45.454817 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.464263, + 45.454644 + ], + [ + -73.463912, + 45.454506 + ], + [ + -73.463601, + 45.454377 + ], + [ + -73.463313, + 45.454258 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.461806, + 45.453577 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.459815, + 45.452691 + ], + [ + -73.459186, + 45.452398 + ], + [ + -73.45904, + 45.452331 + ], + [ + -73.458688, + 45.452137 + ], + [ + -73.458046, + 45.451791 + ], + [ + -73.457689, + 45.451583 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457598, + 45.451363 + ], + [ + -73.457627, + 45.45129 + ], + [ + -73.457661, + 45.451176 + ], + [ + -73.457648, + 45.45104 + ], + [ + -73.457607, + 45.450938 + ], + [ + -73.457498, + 45.450823 + ], + [ + -73.457365, + 45.450743 + ] + ] + }, + "id": 381, + "properties": { + "id": "ad77b7a5-bb5f-4dbb-811b-5e6775665e50", + "data": { + "gtfs": { + "shape_id": "690_1_A" + }, + "segments": [ + { + "distanceMeters": 183, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 356, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 307, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 690, + "travelTimeSeconds": 111 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 427, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 1428, + "travelTimeSeconds": 229 + }, + { + "distanceMeters": 191, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 140, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 108, + "travelTimeSeconds": 18 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7471, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 1409.9141025235178, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.23, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 5.41, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.23 + }, + "mode": "bus", + "name": "École Antoine-Brossard", + "color": "#A32638", + "nodes": [ + "aebecb3d-b7f4-4a39-9b68-19a1c1a3b2b2", + "eab0f5d6-db57-4bf2-a26d-a49e7fe11c54", + "972f2e12-8185-4823-8ce3-2c965170ad9a", + "ca880d29-2a91-4666-9ed1-c2825e5165f2", + "a532b39a-66ec-444f-abc1-766787d9387c", + "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", + "52fa062f-ca90-4e1d-998a-7b658a499b52", + "553f2fec-7dd4-475c-b1ed-ff9a62614e74", + "7a321951-38aa-4886-b297-59c69bcf3448", + "23afb18c-7e9a-4c38-a0e7-59d1aa5f5f5f", + "8f8e9cec-3b4e-465e-9db7-a68a74d060d1", + "a755707e-dbca-49b2-ba36-d6e6ffe0de89", + "70846d21-918c-4542-969d-4e5cccbc6e50", + "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", + "56755a3d-6779-4355-8b48-27271fb6ce0b", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "601c2147-2f83-405b-be6a-8fe05117cb43", + "91b595a9-abca-41fb-9723-f6ca055bd16b", + "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", + "4509b80b-76a5-49de-acb2-533a50bafac5", + "8f39e220-8ec5-4425-b9f8-90e418e7d6d3", + "3481b163-efe1-4b08-b6af-eecb2141ddbe", + "2946050b-73ca-45c7-be10-f80ba5b43ab5", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "ab493a3c-1217-4122-93b5-217f7741b2ea", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "44eacee6-a348-48cf-aeda-c9ddae958f8e" + ], + "stops": [], + "line_id": "d845ff1c-9626-4192-9dda-53e391db792f", + "segments": [ + 0, + 2, + 13, + 21, + 25, + 33, + 38, + 40, + 44, + 46, + 57, + 61, + 64, + 77, + 80, + 84, + 89, + 99, + 107, + 110, + 121, + 142, + 147, + 150, + 153, + 157 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 381, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.457365, + 45.450743 + ], + [ + -73.457311, + 45.45071 + ], + [ + -73.457055, + 45.450562 + ], + [ + -73.45697, + 45.450481 + ], + [ + -73.456931, + 45.450397 + ], + [ + -73.456841, + 45.450279 + ], + [ + -73.456733, + 45.450296 + ], + [ + -73.456625, + 45.450319 + ], + [ + -73.456525, + 45.450368 + ], + [ + -73.456438, + 45.450427 + ], + [ + -73.456357, + 45.45049 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456282, + 45.450641 + ], + [ + -73.456274, + 45.450721 + ], + [ + -73.456292, + 45.450794 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.45714, + 45.451439 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457924, + 45.451894 + ], + [ + -73.458487, + 45.4522 + ], + [ + -73.45873, + 45.45233 + ], + [ + -73.458941, + 45.452443 + ], + [ + -73.459713, + 45.452799 + ], + [ + -73.461231, + 45.453471 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.462918, + 45.454222 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463822, + 45.454609 + ], + [ + -73.46489, + 45.45506 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465569, + 45.454816 + ], + [ + -73.465617, + 45.454677 + ], + [ + -73.465629, + 45.454641 + ], + [ + -73.465631, + 45.454638 + ], + [ + -73.465694, + 45.454481 + ], + [ + -73.465735, + 45.45438 + ], + [ + -73.465853, + 45.45411 + ], + [ + -73.466087, + 45.453654 + ], + [ + -73.46613, + 45.45357 + ], + [ + -73.466877, + 45.452297 + ], + [ + -73.467521, + 45.451236 + ], + [ + -73.468182, + 45.450183 + ], + [ + -73.469986, + 45.447403 + ], + [ + -73.470111, + 45.447212 + ], + [ + -73.470215, + 45.447052 + ], + [ + -73.471183, + 45.44739 + ], + [ + -73.471746, + 45.44757 + ], + [ + -73.472443, + 45.447795 + ], + [ + -73.473347, + 45.448088 + ], + [ + -73.473437, + 45.448115 + ], + [ + -73.473507, + 45.448007 + ], + [ + -73.473833, + 45.447525 + ], + [ + -73.473958, + 45.447322 + ], + [ + -73.473962, + 45.447314 + ], + [ + -73.474095, + 45.447058 + ], + [ + -73.474171, + 45.446882 + ], + [ + -73.474217, + 45.446698 + ], + [ + -73.474268, + 45.446262 + ], + [ + -73.474281, + 45.446153 + ], + [ + -73.474377, + 45.444619 + ], + [ + -73.474384, + 45.444507 + ], + [ + -73.474438, + 45.443521 + ], + [ + -73.474469, + 45.443314 + ], + [ + -73.474541, + 45.443044 + ], + [ + -73.474682, + 45.442761 + ], + [ + -73.474902, + 45.442388 + ], + [ + -73.475039, + 45.44219 + ], + [ + -73.475115, + 45.442091 + ], + [ + -73.475247, + 45.441942 + ], + [ + -73.475479, + 45.441749 + ], + [ + -73.475649, + 45.44164 + ], + [ + -73.475703, + 45.441605 + ], + [ + -73.475852, + 45.44151 + ], + [ + -73.476413, + 45.441313 + ], + [ + -73.476584, + 45.441272 + ], + [ + -73.47678, + 45.441236 + ], + [ + -73.477021, + 45.4412 + ], + [ + -73.477247, + 45.441191 + ], + [ + -73.477705, + 45.441194 + ], + [ + -73.478107, + 45.441196 + ], + [ + -73.479817, + 45.44121 + ], + [ + -73.480147, + 45.441223 + ], + [ + -73.480966, + 45.441277 + ], + [ + -73.481107, + 45.441286 + ], + [ + -73.481299, + 45.441295 + ], + [ + -73.48139, + 45.440598 + ], + [ + -73.481487, + 45.439784 + ], + [ + -73.481519, + 45.439469 + ], + [ + -73.481531, + 45.439172 + ], + [ + -73.481538, + 45.438625 + ], + [ + -73.48154, + 45.438492 + ], + [ + -73.481571, + 45.437827 + ], + [ + -73.481572, + 45.437776 + ], + [ + -73.481581, + 45.437111 + ], + [ + -73.481588, + 45.436694 + ], + [ + -73.48159, + 45.436549 + ], + [ + -73.481583, + 45.435535 + ], + [ + -73.481582, + 45.43541 + ], + [ + -73.482382, + 45.435405 + ], + [ + -73.482932, + 45.435402 + ], + [ + -73.484555, + 45.435388 + ], + [ + -73.484708, + 45.435387 + ], + [ + -73.487423, + 45.435365 + ], + [ + -73.487529, + 45.435364 + ], + [ + -73.487766, + 45.435362 + ], + [ + -73.488499, + 45.435353 + ], + [ + -73.489078, + 45.435353 + ], + [ + -73.490339, + 45.435335 + ], + [ + -73.490512, + 45.435353 + ], + [ + -73.490636, + 45.435389 + ], + [ + -73.49074, + 45.435443 + ], + [ + -73.490825, + 45.43552 + ], + [ + -73.490911, + 45.435596 + ], + [ + -73.490932, + 45.435796 + ], + [ + -73.490941, + 45.43588 + ], + [ + -73.490978, + 45.436131 + ], + [ + -73.491142, + 45.436851 + ], + [ + -73.491211, + 45.437093 + ], + [ + -73.491237, + 45.437184 + ], + [ + -73.49152, + 45.437954 + ], + [ + -73.491749, + 45.438461 + ], + [ + -73.491829, + 45.438638 + ], + [ + -73.492171, + 45.439317 + ], + [ + -73.492536, + 45.440134 + ], + [ + -73.492686, + 45.440476 + ], + [ + -73.492772, + 45.440644 + ], + [ + -73.492804, + 45.441148 + ], + [ + -73.492835, + 45.441319 + ], + [ + -73.492886, + 45.441751 + ], + [ + -73.492955, + 45.442327 + ], + [ + -73.492825, + 45.443281 + ], + [ + -73.492537, + 45.443273 + ], + [ + -73.491559, + 45.443245 + ], + [ + -73.491532, + 45.44361 + ], + [ + -73.491504, + 45.443969 + ], + [ + -73.491285, + 45.444689 + ], + [ + -73.491123, + 45.445189 + ], + [ + -73.491092, + 45.445287 + ], + [ + -73.491055, + 45.445404 + ], + [ + -73.49061, + 45.446822 + ], + [ + -73.490575, + 45.447269 + ], + [ + -73.490565, + 45.447402 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.489725, + 45.447478 + ], + [ + -73.486184, + 45.447402 + ], + [ + -73.485406, + 45.447385 + ], + [ + -73.485334, + 45.447383 + ], + [ + -73.484501, + 45.447365 + ], + [ + -73.483174, + 45.447338 + ], + [ + -73.483047, + 45.447334 + ], + [ + -73.482811, + 45.447302 + ], + [ + -73.4826, + 45.447257 + ], + [ + -73.482392, + 45.447199 + ], + [ + -73.48231, + 45.44732 + ], + [ + -73.482195, + 45.447491 + ], + [ + -73.48204, + 45.447721 + ], + [ + -73.481672, + 45.448265 + ], + [ + -73.481538, + 45.448436 + ], + [ + -73.481405, + 45.448562 + ], + [ + -73.481319, + 45.448638 + ], + [ + -73.481186, + 45.448724 + ], + [ + -73.480948, + 45.448841 + ], + [ + -73.480707, + 45.44894 + ], + [ + -73.479526, + 45.44936 + ], + [ + -73.479229, + 45.449466 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.478211, + 45.449846 + ], + [ + -73.477921, + 45.449951 + ], + [ + -73.477811, + 45.449836 + ], + [ + -73.477701, + 45.449722 + ], + [ + -73.477557, + 45.449605 + ], + [ + -73.477399, + 45.449483 + ], + [ + -73.477241, + 45.449371 + ], + [ + -73.477001, + 45.449227 + ], + [ + -73.476819, + 45.449132 + ], + [ + -73.476586, + 45.449024 + ], + [ + -73.476264, + 45.448894 + ], + [ + -73.475856, + 45.448768 + ], + [ + -73.475445, + 45.448629 + ] + ] + }, + "id": 382, + "properties": { + "id": "eb6c33e1-9b29-47e8-8f10-980b58fb9545", + "data": { + "gtfs": { + "shape_id": "690_2_R" + }, + "segments": [ + { + "distanceMeters": 248, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 122, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 898, + "travelTimeSeconds": 139 + }, + { + "distanceMeters": 516, + "travelTimeSeconds": 80 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 357, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 324, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 146, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 690, + "travelTimeSeconds": 107 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 428, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 43 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7725, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 1429.0107322968581, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.44, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 5.6, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.44 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "44eacee6-a348-48cf-aeda-c9ddae958f8e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", + "2ac07b96-98be-4710-a749-3162a661fcb5", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "981ebecb-3dc2-4439-8648-8052a51df7ec", + "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", + "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", + "aebecb3d-b7f4-4a39-9b68-19a1c1a3b2b2", + "eab0f5d6-db57-4bf2-a26d-a49e7fe11c54", + "972f2e12-8185-4823-8ce3-2c965170ad9a", + "ca880d29-2a91-4666-9ed1-c2825e5165f2", + "a532b39a-66ec-444f-abc1-766787d9387c", + "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", + "52fa062f-ca90-4e1d-998a-7b658a499b52", + "553f2fec-7dd4-475c-b1ed-ff9a62614e74", + "7a321951-38aa-4886-b297-59c69bcf3448", + "23afb18c-7e9a-4c38-a0e7-59d1aa5f5f5f", + "8f8e9cec-3b4e-465e-9db7-a68a74d060d1", + "a755707e-dbca-49b2-ba36-d6e6ffe0de89", + "70846d21-918c-4542-969d-4e5cccbc6e50", + "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", + "56755a3d-6779-4355-8b48-27271fb6ce0b", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "601c2147-2f83-405b-be6a-8fe05117cb43", + "91b595a9-abca-41fb-9723-f6ca055bd16b", + "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", + "4509b80b-76a5-49de-acb2-533a50bafac5", + "8f39e220-8ec5-4425-b9f8-90e418e7d6d3" + ], + "stops": [], + "line_id": "d845ff1c-9626-4192-9dda-53e391db792f", + "segments": [ + 0, + 16, + 21, + 24, + 26, + 29, + 36, + 46, + 60, + 62, + 73, + 81, + 85, + 92, + 97, + 99, + 103, + 105, + 116, + 120, + 123, + 136, + 139, + 143, + 148, + 158, + 166, + 169 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 382, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.45145, + 45.430962 + ], + [ + -73.451306, + 45.431026 + ], + [ + -73.450883, + 45.431238 + ], + [ + -73.450399, + 45.431499 + ], + [ + -73.449891, + 45.431803 + ], + [ + -73.449325, + 45.43218 + ], + [ + -73.448785, + 45.432585 + ], + [ + -73.448377, + 45.432935 + ], + [ + -73.447875, + 45.433413 + ], + [ + -73.447643, + 45.43369 + ], + [ + -73.44745, + 45.433901 + ], + [ + -73.447206, + 45.434187 + ], + [ + -73.447139, + 45.434272 + ], + [ + -73.447325, + 45.434288 + ], + [ + -73.447496, + 45.434296 + ], + [ + -73.447559, + 45.434294 + ], + [ + -73.447672, + 45.43429 + ], + [ + -73.447825, + 45.434283 + ], + [ + -73.448052, + 45.43426 + ], + [ + -73.448578, + 45.434176 + ], + [ + -73.448698, + 45.434165 + ], + [ + -73.448848, + 45.434152 + ], + [ + -73.449804, + 45.434095 + ], + [ + -73.450056, + 45.43408 + ], + [ + -73.451323, + 45.433994 + ], + [ + -73.451404, + 45.433989 + ], + [ + -73.452574, + 45.433909 + ], + [ + -73.452708, + 45.433899 + ], + [ + -73.453072, + 45.433895 + ], + [ + -73.453186, + 45.433903 + ], + [ + -73.453328, + 45.433913 + ], + [ + -73.453345, + 45.433915 + ], + [ + -73.453602, + 45.433946 + ], + [ + -73.453629, + 45.433949 + ], + [ + -73.453651, + 45.433954 + ], + [ + -73.453902, + 45.434003 + ], + [ + -73.454123, + 45.434057 + ], + [ + -73.45503, + 45.434305 + ], + [ + -73.455549, + 45.434449 + ], + [ + -73.455955, + 45.434571 + ], + [ + -73.456004, + 45.434588 + ], + [ + -73.456028, + 45.434596 + ], + [ + -73.456351, + 45.434706 + ], + [ + -73.45674, + 45.434846 + ], + [ + -73.457423, + 45.435094 + ], + [ + -73.457584, + 45.435152 + ], + [ + -73.458316, + 45.435418 + ], + [ + -73.459087, + 45.435697 + ], + [ + -73.459599, + 45.435873 + ], + [ + -73.459868, + 45.435958 + ], + [ + -73.4602, + 45.436053 + ], + [ + -73.46028, + 45.436076 + ], + [ + -73.461443, + 45.436418 + ], + [ + -73.46211, + 45.436609 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.463269, + 45.436949 + ], + [ + -73.464723, + 45.437368 + ], + [ + -73.465091, + 45.437458 + ], + [ + -73.465135, + 45.437466 + ], + [ + -73.4653, + 45.437494 + ], + [ + -73.465515, + 45.437526 + ], + [ + -73.465864, + 45.437562 + ], + [ + -73.467672, + 45.437692 + ], + [ + -73.46781, + 45.437702 + ], + [ + -73.468967, + 45.437779 + ], + [ + -73.470109, + 45.437842 + ], + [ + -73.470323, + 45.437857 + ], + [ + -73.470561, + 45.437874 + ], + [ + -73.470756, + 45.437887 + ], + [ + -73.470768, + 45.437797 + ], + [ + -73.470807, + 45.437719 + ], + [ + -73.470818, + 45.437698 + ], + [ + -73.47086, + 45.43763 + ], + [ + -73.470909, + 45.43755 + ], + [ + -73.471049, + 45.437306 + ], + [ + -73.471113, + 45.437194 + ], + [ + -73.471139, + 45.437154 + ], + [ + -73.472058, + 45.435759 + ], + [ + -73.471657, + 45.43562 + ], + [ + -73.471604, + 45.435603 + ], + [ + -73.471308, + 45.435507 + ], + [ + -73.470685, + 45.435314 + ], + [ + -73.470598, + 45.435287 + ], + [ + -73.469951, + 45.435071 + ], + [ + -73.469132, + 45.434797 + ], + [ + -73.469086, + 45.434782 + ], + [ + -73.466273, + 45.43385 + ], + [ + -73.465521, + 45.433582 + ], + [ + -73.465352, + 45.433521 + ], + [ + -73.465294, + 45.433624 + ], + [ + -73.464983, + 45.434165 + ], + [ + -73.464402, + 45.435154 + ], + [ + -73.464363, + 45.435226 + ], + [ + -73.464262, + 45.435411 + ], + [ + -73.464217, + 45.435519 + ], + [ + -73.464208, + 45.435541 + ], + [ + -73.464129, + 45.435726 + ], + [ + -73.464042, + 45.435933 + ], + [ + -73.463949, + 45.43609 + ], + [ + -73.463875, + 45.436231 + ], + [ + -73.463836, + 45.436306 + ], + [ + -73.462701, + 45.435982 + ], + [ + -73.462322, + 45.436584 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.462363, + 45.436682 + ], + [ + -73.463269, + 45.436949 + ], + [ + -73.464723, + 45.437368 + ], + [ + -73.465091, + 45.437458 + ], + [ + -73.465137, + 45.437466 + ], + [ + -73.4653, + 45.437494 + ], + [ + -73.465515, + 45.437526 + ], + [ + -73.465864, + 45.437562 + ], + [ + -73.467674, + 45.437692 + ], + [ + -73.46781, + 45.437702 + ], + [ + -73.468967, + 45.437779 + ], + [ + -73.470109, + 45.437842 + ], + [ + -73.470326, + 45.437857 + ], + [ + -73.470561, + 45.437874 + ], + [ + -73.470756, + 45.437887 + ], + [ + -73.472006, + 45.43798 + ], + [ + -73.472271, + 45.438 + ], + [ + -73.474202, + 45.438163 + ], + [ + -73.474023, + 45.438441 + ], + [ + -73.473974, + 45.438517 + ], + [ + -73.47371, + 45.438932 + ], + [ + -73.473393, + 45.439449 + ], + [ + -73.473246, + 45.439724 + ], + [ + -73.473111, + 45.440012 + ], + [ + -73.472993, + 45.440308 + ], + [ + -73.472892, + 45.440614 + ], + [ + -73.472775, + 45.441091 + ], + [ + -73.472634, + 45.442077 + ], + [ + -73.472562, + 45.44241 + ], + [ + -73.472464, + 45.442742 + ], + [ + -73.47234, + 45.44308 + ], + [ + -73.47219, + 45.443413 + ], + [ + -73.472106, + 45.443579 + ], + [ + -73.471921, + 45.443899 + ], + [ + -73.471725, + 45.444209 + ], + [ + -73.470198, + 45.446562 + ], + [ + -73.470086, + 45.446733 + ], + [ + -73.470002, + 45.446863 + ], + [ + -73.469936, + 45.446962 + ], + [ + -73.470215, + 45.447052 + ], + [ + -73.470742, + 45.447236 + ], + [ + -73.471183, + 45.44739 + ], + [ + -73.471746, + 45.44757 + ], + [ + -73.472443, + 45.447795 + ], + [ + -73.473347, + 45.448088 + ], + [ + -73.473437, + 45.448115 + ], + [ + -73.475223, + 45.448691 + ], + [ + -73.475787, + 45.448871 + ], + [ + -73.476196, + 45.449002 + ], + [ + -73.476498, + 45.449128 + ], + [ + -73.476722, + 45.449231 + ], + [ + -73.476897, + 45.449321 + ], + [ + -73.477126, + 45.449456 + ], + [ + -73.477278, + 45.449564 + ], + [ + -73.477431, + 45.449681 + ], + [ + -73.477567, + 45.449794 + ], + [ + -73.477783, + 45.450014 + ], + [ + -73.477921, + 45.449951 + ], + [ + -73.477991, + 45.449926 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.4775, + 45.449189 + ] + ] + }, + "id": 383, + "properties": { + "id": "cc26b986-8272-497a-a08c-b9e0aaa19faa", + "data": { + "gtfs": { + "shape_id": "691_1_A" + }, + "segments": [ + { + "distanceMeters": 628, + "travelTimeSeconds": 113 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 64, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 313, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 338, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 1186, + "travelTimeSeconds": 214 + }, + { + "distanceMeters": 893, + "travelTimeSeconds": 162 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6641, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2875.058313918524, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.53, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 4.81, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.53 + }, + "mode": "bus", + "name": "École Lucille-Teasdale", + "color": "#A32638", + "nodes": [ + "1e5e280b-187c-453e-ae50-34515416c146", + "d26ce5e1-6c58-4e66-9161-bd0bb569b92f", + "95267540-c736-4584-b843-23c799e4aa83", + "8162eb5c-436c-4cc2-b9dd-2d13a57dd8d8", + "75a6ca63-e257-4bc0-9a35-e9f67206fdfb", + "dc444f91-de90-48b4-9750-8ab69f40baf5", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", + "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", + "f36c7de3-84dd-4573-ac69-91ccd87efd4f", + "1d638a17-5a2b-40f7-a0cc-6db81666104e", + "e990ec2d-e586-4b2f-884d-4124f22426b3", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", + "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", + "25804924-ba76-4ef4-b42b-ff451a0d33dc", + "fe1d7eea-bdc6-4263-a13b-eb6645c5e393" + ], + "stops": [], + "line_id": "98f4ffe4-3534-40c3-a09d-6c007e2b4710", + "segments": [ + 0, + 20, + 24, + 32, + 40, + 46, + 53, + 58, + 62, + 66, + 72, + 79, + 84, + 87, + 99, + 102, + 108, + 112, + 116, + 119, + 140 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 383, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.4775, + 45.449189 + ], + [ + -73.477354, + 45.449101 + ], + [ + -73.476598, + 45.448646 + ], + [ + -73.476493, + 45.448669 + ], + [ + -73.476429, + 45.448682 + ], + [ + -73.476264, + 45.448894 + ], + [ + -73.475856, + 45.448768 + ], + [ + -73.475456, + 45.448632 + ], + [ + -73.475296, + 45.448579 + ], + [ + -73.474198, + 45.448236 + ], + [ + -73.473507, + 45.448007 + ], + [ + -73.47251, + 45.447683 + ], + [ + -73.471666, + 45.447408 + ], + [ + -73.471252, + 45.447282 + ], + [ + -73.47028, + 45.446953 + ], + [ + -73.470337, + 45.446865 + ], + [ + -73.470478, + 45.446647 + ], + [ + -73.471792, + 45.444623 + ], + [ + -73.47221, + 45.443966 + ], + [ + -73.472405, + 45.443633 + ], + [ + -73.472572, + 45.443287 + ], + [ + -73.472646, + 45.443111 + ], + [ + -73.472778, + 45.442752 + ], + [ + -73.472833, + 45.442567 + ], + [ + -73.472919, + 45.442194 + ], + [ + -73.472951, + 45.442005 + ], + [ + -73.473027, + 45.441433 + ], + [ + -73.473089, + 45.441055 + ], + [ + -73.47323, + 45.44052 + ], + [ + -73.473412, + 45.440048 + ], + [ + -73.47351, + 45.439841 + ], + [ + -73.47354, + 45.439773 + ], + [ + -73.473721, + 45.439445 + ], + [ + -73.474086, + 45.43886 + ], + [ + -73.474303, + 45.438527 + ], + [ + -73.474451, + 45.4383 + ], + [ + -73.474529, + 45.438181 + ], + [ + -73.474202, + 45.438163 + ], + [ + -73.472438, + 45.438014 + ], + [ + -73.472271, + 45.438 + ], + [ + -73.470911, + 45.437899 + ], + [ + -73.470756, + 45.437887 + ], + [ + -73.470561, + 45.437874 + ], + [ + -73.470109, + 45.437842 + ], + [ + -73.468967, + 45.437779 + ], + [ + -73.467954, + 45.437712 + ], + [ + -73.46781, + 45.437702 + ], + [ + -73.465864, + 45.437562 + ], + [ + -73.465515, + 45.437526 + ], + [ + -73.465336, + 45.4375 + ], + [ + -73.4653, + 45.437494 + ], + [ + -73.465091, + 45.437458 + ], + [ + -73.464723, + 45.437368 + ], + [ + -73.463269, + 45.436949 + ], + [ + -73.462628, + 45.43676 + ], + [ + -73.462467, + 45.436713 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.462701, + 45.435982 + ], + [ + -73.463836, + 45.436306 + ], + [ + -73.463949, + 45.43609 + ], + [ + -73.464015, + 45.435979 + ], + [ + -73.464042, + 45.435933 + ], + [ + -73.464129, + 45.435726 + ], + [ + -73.464208, + 45.435541 + ], + [ + -73.464217, + 45.435519 + ], + [ + -73.464262, + 45.435411 + ], + [ + -73.464363, + 45.435226 + ], + [ + -73.464402, + 45.435154 + ], + [ + -73.464983, + 45.434165 + ], + [ + -73.465294, + 45.433623 + ], + [ + -73.465352, + 45.433521 + ], + [ + -73.465927, + 45.433727 + ], + [ + -73.466273, + 45.43385 + ], + [ + -73.468901, + 45.434721 + ], + [ + -73.469086, + 45.434782 + ], + [ + -73.469951, + 45.435071 + ], + [ + -73.470598, + 45.435287 + ], + [ + -73.470685, + 45.435314 + ], + [ + -73.471302, + 45.435506 + ], + [ + -73.471308, + 45.435507 + ], + [ + -73.471657, + 45.43562 + ], + [ + -73.472058, + 45.435759 + ], + [ + -73.471958, + 45.435911 + ], + [ + -73.471139, + 45.437154 + ], + [ + -73.471113, + 45.437194 + ], + [ + -73.471037, + 45.437237 + ], + [ + -73.470968, + 45.437275 + ], + [ + -73.470767, + 45.437505 + ], + [ + -73.470657, + 45.43764 + ], + [ + -73.470586, + 45.437791 + ], + [ + -73.470585, + 45.437793 + ], + [ + -73.470561, + 45.437874 + ], + [ + -73.470241, + 45.437851 + ], + [ + -73.470109, + 45.437842 + ], + [ + -73.468967, + 45.437779 + ], + [ + -73.467953, + 45.437711 + ], + [ + -73.46781, + 45.437702 + ], + [ + -73.465864, + 45.437562 + ], + [ + -73.465515, + 45.437526 + ], + [ + -73.465335, + 45.437499 + ], + [ + -73.4653, + 45.437494 + ], + [ + -73.465091, + 45.437458 + ], + [ + -73.464723, + 45.437368 + ], + [ + -73.463269, + 45.436949 + ], + [ + -73.462453, + 45.436709 + ], + [ + -73.462276, + 45.436657 + ], + [ + -73.461443, + 45.436418 + ], + [ + -73.46028, + 45.436076 + ], + [ + -73.4602, + 45.436053 + ], + [ + -73.459868, + 45.435958 + ], + [ + -73.459599, + 45.435873 + ], + [ + -73.459087, + 45.435697 + ], + [ + -73.458328, + 45.435422 + ], + [ + -73.457584, + 45.435152 + ], + [ + -73.457423, + 45.435094 + ], + [ + -73.45674, + 45.434846 + ], + [ + -73.456351, + 45.434706 + ], + [ + -73.456084, + 45.434615 + ], + [ + -73.456028, + 45.434596 + ], + [ + -73.455955, + 45.434571 + ], + [ + -73.455549, + 45.434449 + ], + [ + -73.45503, + 45.434305 + ], + [ + -73.454123, + 45.434057 + ], + [ + -73.453902, + 45.434003 + ], + [ + -73.453688, + 45.433961 + ], + [ + -73.453651, + 45.433954 + ], + [ + -73.453629, + 45.433949 + ], + [ + -73.453345, + 45.433915 + ], + [ + -73.453328, + 45.433913 + ], + [ + -73.453186, + 45.433903 + ], + [ + -73.453072, + 45.433895 + ], + [ + -73.452708, + 45.433899 + ], + [ + -73.452574, + 45.433909 + ], + [ + -73.451603, + 45.433975 + ], + [ + -73.451404, + 45.433989 + ], + [ + -73.450056, + 45.43408 + ], + [ + -73.449804, + 45.434095 + ], + [ + -73.449067, + 45.434139 + ], + [ + -73.448848, + 45.434152 + ], + [ + -73.448578, + 45.434176 + ], + [ + -73.448472, + 45.434175 + ], + [ + -73.448255, + 45.434181 + ], + [ + -73.448109, + 45.43419 + ], + [ + -73.447833, + 45.434203 + ], + [ + -73.447405, + 45.434193 + ], + [ + -73.447515, + 45.434057 + ], + [ + -73.447812, + 45.43372 + ], + [ + -73.44808, + 45.433435 + ], + [ + -73.448286, + 45.433242 + ], + [ + -73.448467, + 45.433072 + ], + [ + -73.448834, + 45.432756 + ], + [ + -73.449139, + 45.432514 + ], + [ + -73.449431, + 45.432297 + ], + [ + -73.44953, + 45.432225 + ], + [ + -73.449956, + 45.431941 + ], + [ + -73.450305, + 45.431728 + ], + [ + -73.450787, + 45.431457 + ], + [ + -73.451268, + 45.431211 + ], + [ + -73.451712, + 45.431001 + ], + [ + -73.451767, + 45.430973 + ] + ] + }, + "id": 384, + "properties": { + "id": "9ce804c4-a25a-4833-a6f7-d2f104eb99e5", + "data": { + "gtfs": { + "shape_id": "691_2_R" + }, + "segments": [ + { + "distanceMeters": 203, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 1468, + "travelTimeSeconds": 275 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 206, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 353, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 164, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 630, + "travelTimeSeconds": 118 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 6410, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2843.039846700105, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.34, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 4.64, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.34 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", + "8f39e220-8ec5-4425-b9f8-90e418e7d6d3", + "9d435e32-ad0d-41e2-bb28-30458533923f", + "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", + "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "e990ec2d-e586-4b2f-884d-4124f22426b3", + "1d638a17-5a2b-40f7-a0cc-6db81666104e", + "f36c7de3-84dd-4573-ac69-91ccd87efd4f", + "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", + "3eb5b313-c26d-472e-a3c1-397c7596c769", + "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", + "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", + "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "dc444f91-de90-48b4-9750-8ab69f40baf5", + "75a6ca63-e257-4bc0-9a35-e9f67206fdfb", + "8162eb5c-436c-4cc2-b9dd-2d13a57dd8d8", + "95267540-c736-4584-b843-23c799e4aa83", + "d26ce5e1-6c58-4e66-9161-bd0bb569b92f", + "601fc633-4aed-4e9a-b678-52e4dedfe19d" + ], + "stops": [], + "line_id": "98f4ffe4-3534-40c3-a09d-6c007e2b4710", + "segments": [ + 0, + 7, + 35, + 38, + 40, + 45, + 49, + 55, + 60, + 69, + 73, + 78, + 89, + 95, + 99, + 104, + 112, + 117, + 124, + 133, + 137 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 384, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.475383, + 45.468739 + ], + [ + -73.475537, + 45.468744 + ], + [ + -73.477761, + 45.468838 + ], + [ + -73.477791, + 45.468839 + ], + [ + -73.478795, + 45.46888 + ], + [ + -73.479733, + 45.468916 + ], + [ + -73.480587, + 45.468948 + ], + [ + -73.480705, + 45.468952 + ], + [ + -73.481592, + 45.468898 + ], + [ + -73.482517, + 45.468777 + ], + [ + -73.483911, + 45.468794 + ], + [ + -73.484035, + 45.468795 + ], + [ + -73.484852, + 45.468827 + ], + [ + -73.484983, + 45.468836 + ], + [ + -73.485068, + 45.468858 + ], + [ + -73.485183, + 45.468899 + ], + [ + -73.485272, + 45.468957 + ], + [ + -73.485492, + 45.469215 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.485753, + 45.469237 + ], + [ + -73.486104, + 45.469087 + ], + [ + -73.486363, + 45.468976 + ], + [ + -73.486598, + 45.468913 + ], + [ + -73.486742, + 45.468895 + ], + [ + -73.486913, + 45.468899 + ], + [ + -73.487892, + 45.468935 + ], + [ + -73.488662, + 45.468978 + ], + [ + -73.488788, + 45.468985 + ], + [ + -73.492295, + 45.469102 + ], + [ + -73.492434, + 45.469107 + ], + [ + -73.4927, + 45.469111 + ], + [ + -73.49395, + 45.46917 + ], + [ + -73.494075, + 45.469188 + ], + [ + -73.494154, + 45.469237 + ], + [ + -73.494564, + 45.469977 + ], + [ + -73.494611, + 45.470061 + ], + [ + -73.494791, + 45.470417 + ], + [ + -73.494862, + 45.47056 + ], + [ + -73.49485, + 45.470821 + ], + [ + -73.494847, + 45.470884 + ], + [ + -73.494582, + 45.470874 + ], + [ + -73.494088, + 45.470857 + ], + [ + -73.493065, + 45.470821 + ], + [ + -73.492825, + 45.470816 + ], + [ + -73.492588, + 45.470825 + ], + [ + -73.492364, + 45.470843 + ], + [ + -73.492038, + 45.470888 + ], + [ + -73.491625, + 45.470969 + ], + [ + -73.491149, + 45.471131 + ], + [ + -73.491044, + 45.471167 + ], + [ + -73.490858, + 45.471248 + ], + [ + -73.490204, + 45.471562 + ], + [ + -73.490078, + 45.471623 + ], + [ + -73.489969, + 45.471675 + ], + [ + -73.489522, + 45.471873 + ], + [ + -73.489116, + 45.472013 + ], + [ + -73.48901, + 45.472049 + ], + [ + -73.488898, + 45.472089 + ], + [ + -73.488483, + 45.472229 + ], + [ + -73.48807, + 45.472359 + ], + [ + -73.487028, + 45.472701 + ], + [ + -73.486715, + 45.472804 + ], + [ + -73.48607, + 45.47302 + ], + [ + -73.485914, + 45.473065 + ], + [ + -73.485421, + 45.473196 + ], + [ + -73.485194, + 45.47325 + ], + [ + -73.484873, + 45.473304 + ], + [ + -73.484747, + 45.473331 + ], + [ + -73.484539, + 45.473353 + ], + [ + -73.484309, + 45.47338 + ], + [ + -73.484047, + 45.473403 + ], + [ + -73.483806, + 45.473414 + ], + [ + -73.483761, + 45.473416 + ], + [ + -73.483613, + 45.473425 + ], + [ + -73.48263, + 45.473402 + ], + [ + -73.479071, + 45.47329 + ], + [ + -73.478915, + 45.473285 + ], + [ + -73.476016, + 45.473194 + ], + [ + -73.47556, + 45.473217 + ], + [ + -73.475367, + 45.473239 + ], + [ + -73.475163, + 45.47327 + ], + [ + -73.474722, + 45.473364 + ], + [ + -73.474613, + 45.473387 + ], + [ + -73.47451, + 45.473184 + ], + [ + -73.474431, + 45.473027 + ], + [ + -73.474274, + 45.472609 + ], + [ + -73.474213, + 45.472397 + ], + [ + -73.474173, + 45.472208 + ], + [ + -73.474165, + 45.472163 + ], + [ + -73.474141, + 45.472028 + ], + [ + -73.474134, + 45.471984 + ], + [ + -73.47411, + 45.47183 + ], + [ + -73.474121, + 45.471228 + ], + [ + -73.474166, + 45.470967 + ], + [ + -73.474399, + 45.469698 + ], + [ + -73.474428, + 45.469537 + ], + [ + -73.474454, + 45.469396 + ], + [ + -73.474489, + 45.469055 + ], + [ + -73.474521, + 45.468786 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474544, + 45.468492 + ], + [ + -73.474545, + 45.468488 + ], + [ + -73.474528, + 45.468236 + ], + [ + -73.474508, + 45.467936 + ], + [ + -73.474508, + 45.467294 + ], + [ + -73.474542, + 45.4665 + ], + [ + -73.474546, + 45.466404 + ], + [ + -73.474554, + 45.466199 + ], + [ + -73.474621, + 45.465194 + ], + [ + -73.474664, + 45.464506 + ], + [ + -73.474669, + 45.464397 + ], + [ + -73.474734, + 45.464067 + ], + [ + -73.474884, + 45.463697 + ], + [ + -73.475002, + 45.463492 + ], + [ + -73.47522, + 45.463212 + ], + [ + -73.475408, + 45.463039 + ], + [ + -73.47556, + 45.462909 + ], + [ + -73.475821, + 45.462711 + ], + [ + -73.476105, + 45.462495 + ], + [ + -73.47646, + 45.462244 + ], + [ + -73.476557, + 45.462176 + ], + [ + -73.477249, + 45.461685 + ], + [ + -73.478237, + 45.460939 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.478447, + 45.460919 + ], + [ + -73.47855, + 45.461011 + ], + [ + -73.478678, + 45.461105 + ], + [ + -73.478864, + 45.461325 + ], + [ + -73.478983, + 45.461465 + ], + [ + -73.479274, + 45.461807 + ], + [ + -73.479725, + 45.462346 + ], + [ + -73.480306, + 45.46304 + ], + [ + -73.480932, + 45.463792 + ], + [ + -73.481375, + 45.464322 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.481593, + 45.464338 + ], + [ + -73.481982, + 45.464183 + ], + [ + -73.482309, + 45.464098 + ], + [ + -73.48257, + 45.464048 + ], + [ + -73.482878, + 45.464054 + ], + [ + -73.484342, + 45.46408 + ], + [ + -73.484494, + 45.464076 + ], + [ + -73.484669, + 45.464067 + ], + [ + -73.484817, + 45.464035 + ], + [ + -73.484961, + 45.463999 + ], + [ + -73.485098, + 45.46395 + ], + [ + -73.485277, + 45.463878 + ], + [ + -73.485826, + 45.463612 + ], + [ + -73.485896, + 45.463576 + ], + [ + -73.486007, + 45.46353 + ], + [ + -73.486089, + 45.463495 + ], + [ + -73.486243, + 45.463455 + ], + [ + -73.486321, + 45.463433 + ], + [ + -73.486489, + 45.463401 + ], + [ + -73.486606, + 45.463401 + ], + [ + -73.487042, + 45.463406 + ], + [ + -73.487283, + 45.463388 + ], + [ + -73.487412, + 45.463379 + ], + [ + -73.487821, + 45.463302 + ], + [ + -73.488109, + 45.463235 + ], + [ + -73.488349, + 45.463109 + ], + [ + -73.488498, + 45.462929 + ], + [ + -73.488573, + 45.462762 + ], + [ + -73.488594, + 45.462464 + ], + [ + -73.488654, + 45.461583 + ], + [ + -73.488659, + 45.461512 + ], + [ + -73.488701, + 45.460814 + ], + [ + -73.488777, + 45.459727 + ], + [ + -73.488806, + 45.459321 + ], + [ + -73.488828, + 45.459006 + ], + [ + -73.488929, + 45.458754 + ], + [ + -73.489058, + 45.458542 + ], + [ + -73.489182, + 45.458344 + ], + [ + -73.489694, + 45.457516 + ], + [ + -73.489706, + 45.457486 + ], + [ + -73.489736, + 45.457408 + ], + [ + -73.489763, + 45.457296 + ], + [ + -73.489765, + 45.457071 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.489787, + 45.45681 + ], + [ + -73.489805, + 45.456679 + ], + [ + -73.489837, + 45.456558 + ], + [ + -73.489891, + 45.45645 + ], + [ + -73.490047, + 45.45632 + ], + [ + -73.490235, + 45.456194 + ], + [ + -73.490835, + 45.455889 + ], + [ + -73.490874, + 45.45587 + ], + [ + -73.49101, + 45.455802 + ], + [ + -73.491179, + 45.455672 + ], + [ + -73.491306, + 45.455478 + ], + [ + -73.491366, + 45.454824 + ], + [ + -73.491379, + 45.454673 + ], + [ + -73.491385, + 45.45452 + ], + [ + -73.491385, + 45.45439 + ], + [ + -73.491353, + 45.454286 + ], + [ + -73.491307, + 45.454169 + ], + [ + -73.491205, + 45.454016 + ], + [ + -73.491049, + 45.453868 + ], + [ + -73.490922, + 45.453778 + ], + [ + -73.490741, + 45.453653 + ], + [ + -73.49064, + 45.453584 + ], + [ + -73.490337, + 45.453359 + ], + [ + -73.490251, + 45.453269 + ], + [ + -73.490177, + 45.453161 + ], + [ + -73.490138, + 45.453076 + ], + [ + -73.490095, + 45.452936 + ], + [ + -73.490099, + 45.452842 + ], + [ + -73.490107, + 45.452689 + ], + [ + -73.490161, + 45.452127 + ], + [ + -73.490164, + 45.452099 + ], + [ + -73.490174, + 45.451996 + ], + [ + -73.490274, + 45.451145 + ], + [ + -73.490346, + 45.450227 + ], + [ + -73.490356, + 45.450109 + ], + [ + -73.490386, + 45.449719 + ], + [ + -73.490521, + 45.448293 + ], + [ + -73.490548, + 45.447743 + ], + [ + -73.490554, + 45.447636 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.490382, + 45.447493 + ], + [ + -73.486184, + 45.447402 + ], + [ + -73.485396, + 45.447385 + ], + [ + -73.485334, + 45.447383 + ], + [ + -73.484501, + 45.447365 + ], + [ + -73.483174, + 45.447338 + ], + [ + -73.483047, + 45.447334 + ], + [ + -73.482811, + 45.447302 + ], + [ + -73.4826, + 45.447257 + ], + [ + -73.482392, + 45.447199 + ], + [ + -73.48231, + 45.44732 + ], + [ + -73.48217, + 45.447527 + ], + [ + -73.482036, + 45.447726 + ], + [ + -73.481672, + 45.448265 + ], + [ + -73.481538, + 45.448436 + ], + [ + -73.481405, + 45.448562 + ], + [ + -73.481319, + 45.448638 + ], + [ + -73.481186, + 45.448724 + ], + [ + -73.480948, + 45.448841 + ], + [ + -73.480707, + 45.44894 + ], + [ + -73.479519, + 45.449362 + ], + [ + -73.479229, + 45.449466 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.4775, + 45.449189 + ] + ] + }, + "id": 385, + "properties": { + "id": "343247b3-8443-473b-8acb-28edcd72c5a9", + "data": { + "gtfs": { + "shape_id": "692_1_A" + }, + "segments": [ + { + "distanceMeters": 186, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 61, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 402, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 84, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 774, + "travelTimeSeconds": 114 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 81, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 261, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 367, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 252, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 218, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 133, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 147, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 431, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 29 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8907, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2189.5988528612766, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.75, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 5.94, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.75 + }, + "mode": "bus", + "name": "École Lucille-Teasdale", + "color": "#A32638", + "nodes": [ + "0296a406-079c-41f9-8c5b-0723a0b5f294", + "79c669a1-9060-4e5d-b272-f107884dee00", + "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "3e9388da-8f48-48c6-b6c0-5461e27eb26a", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "d83daa69-bf92-4b93-8173-1c0fd22cbec0", + "66a0749c-2a5b-458d-b059-307f555cb93a", + "c5effd0a-a9b0-4cfe-8176-06c99313f58b", + "e7a825d7-e677-4fe7-b1ef-b6db556d3c70", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", + "2ef5dac7-c226-43bb-8534-6642e7a8ab89", + "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", + "3a8b9936-4595-4770-a3f4-b31253602356", + "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "003bcf5e-54a8-471f-b008-b7fa64ff94ba", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "57de752e-d268-4125-8223-581e6c2ff56e", + "1339471a-52fa-47e9-b0e4-753bf917ef08", + "9c711698-0f65-4997-8a72-24f5d8ab8fb7", + "5a6d8067-b58d-4ab2-838e-422e8f003ee9", + "e20e768c-bd5a-43fd-8842-af2717d6cb09", + "f1131e74-6c65-4f22-a18d-41dbe35e4576", + "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", + "c7c30949-db61-44fc-b7ab-a69b9fde12cc", + "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", + "997c4af9-ab50-4dfb-941a-afadff58f267", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "601c2147-2f83-405b-be6a-8fe05117cb43", + "91b595a9-abca-41fb-9723-f6ca055bd16b", + "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", + "fe1d7eea-bdc6-4263-a13b-eb6645c5e393" + ], + "stops": [], + "line_id": "0ace1a53-efbf-40d0-b083-99e314f68253", + "segments": [ + 0, + 2, + 6, + 10, + 17, + 20, + 26, + 28, + 34, + 38, + 52, + 60, + 71, + 75, + 81, + 90, + 95, + 98, + 120, + 123, + 128, + 131, + 134, + 140, + 150, + 165, + 169, + 175, + 186, + 191, + 200, + 209, + 213, + 217, + 222, + 232, + 240 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 385, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.4775, + 45.449189 + ], + [ + -73.477354, + 45.449101 + ], + [ + -73.476598, + 45.448646 + ], + [ + -73.476493, + 45.448669 + ], + [ + -73.476429, + 45.448682 + ], + [ + -73.476264, + 45.448894 + ], + [ + -73.476196, + 45.449002 + ], + [ + -73.476216, + 45.44901 + ], + [ + -73.476498, + 45.449128 + ], + [ + -73.476722, + 45.449231 + ], + [ + -73.476897, + 45.449321 + ], + [ + -73.477126, + 45.449456 + ], + [ + -73.477278, + 45.449564 + ], + [ + -73.477431, + 45.449681 + ], + [ + -73.477567, + 45.449794 + ], + [ + -73.477783, + 45.450014 + ], + [ + -73.477921, + 45.449951 + ], + [ + -73.478103, + 45.449885 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.479229, + 45.449466 + ], + [ + -73.479303, + 45.44944 + ], + [ + -73.480707, + 45.44894 + ], + [ + -73.480948, + 45.448841 + ], + [ + -73.481186, + 45.448724 + ], + [ + -73.481319, + 45.448638 + ], + [ + -73.481405, + 45.448562 + ], + [ + -73.481538, + 45.448436 + ], + [ + -73.481594, + 45.448364 + ], + [ + -73.481672, + 45.448265 + ], + [ + -73.482261, + 45.447393 + ], + [ + -73.48231, + 45.44732 + ], + [ + -73.482533, + 45.447388 + ], + [ + -73.482583, + 45.447398 + ], + [ + -73.482766, + 45.447437 + ], + [ + -73.483026, + 45.447469 + ], + [ + -73.483183, + 45.447473 + ], + [ + -73.484513, + 45.447496 + ], + [ + -73.485351, + 45.447516 + ], + [ + -73.486178, + 45.447537 + ], + [ + -73.486624, + 45.447547 + ], + [ + -73.490554, + 45.447636 + ], + [ + -73.490546, + 45.447786 + ], + [ + -73.490536, + 45.447996 + ], + [ + -73.490521, + 45.448293 + ], + [ + -73.490406, + 45.449511 + ], + [ + -73.490386, + 45.449719 + ], + [ + -73.490356, + 45.450109 + ], + [ + -73.490274, + 45.451145 + ], + [ + -73.490183, + 45.451913 + ], + [ + -73.490174, + 45.451996 + ], + [ + -73.490164, + 45.452099 + ], + [ + -73.490107, + 45.452689 + ], + [ + -73.490099, + 45.452842 + ], + [ + -73.490095, + 45.452936 + ], + [ + -73.490138, + 45.453076 + ], + [ + -73.490177, + 45.453161 + ], + [ + -73.490251, + 45.453269 + ], + [ + -73.490337, + 45.453359 + ], + [ + -73.490545, + 45.453513 + ], + [ + -73.49064, + 45.453584 + ], + [ + -73.490922, + 45.453778 + ], + [ + -73.491049, + 45.453868 + ], + [ + -73.491205, + 45.454016 + ], + [ + -73.491307, + 45.454169 + ], + [ + -73.491353, + 45.454286 + ], + [ + -73.491385, + 45.45439 + ], + [ + -73.491385, + 45.45452 + ], + [ + -73.491384, + 45.454539 + ], + [ + -73.491379, + 45.454673 + ], + [ + -73.491306, + 45.455478 + ], + [ + -73.491179, + 45.455672 + ], + [ + -73.49101, + 45.455802 + ], + [ + -73.491, + 45.455807 + ], + [ + -73.490874, + 45.45587 + ], + [ + -73.490235, + 45.456194 + ], + [ + -73.490047, + 45.45632 + ], + [ + -73.489891, + 45.45645 + ], + [ + -73.489837, + 45.456558 + ], + [ + -73.489805, + 45.456679 + ], + [ + -73.48979, + 45.456792 + ], + [ + -73.489787, + 45.45681 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.489765, + 45.457071 + ], + [ + -73.489763, + 45.457296 + ], + [ + -73.489736, + 45.457408 + ], + [ + -73.489694, + 45.457516 + ], + [ + -73.489182, + 45.458344 + ], + [ + -73.489058, + 45.458542 + ], + [ + -73.488929, + 45.458754 + ], + [ + -73.488841, + 45.458974 + ], + [ + -73.488828, + 45.459006 + ], + [ + -73.488777, + 45.459727 + ], + [ + -73.488701, + 45.460814 + ], + [ + -73.488666, + 45.461395 + ], + [ + -73.488659, + 45.461512 + ], + [ + -73.488594, + 45.462464 + ], + [ + -73.488573, + 45.462762 + ], + [ + -73.488498, + 45.462929 + ], + [ + -73.488349, + 45.463109 + ], + [ + -73.488109, + 45.463235 + ], + [ + -73.487821, + 45.463302 + ], + [ + -73.487412, + 45.463379 + ], + [ + -73.487283, + 45.463388 + ], + [ + -73.487042, + 45.463406 + ], + [ + -73.486606, + 45.463401 + ], + [ + -73.486489, + 45.463401 + ], + [ + -73.486321, + 45.463433 + ], + [ + -73.486243, + 45.463455 + ], + [ + -73.486089, + 45.463495 + ], + [ + -73.48595, + 45.463554 + ], + [ + -73.485896, + 45.463576 + ], + [ + -73.485826, + 45.463612 + ], + [ + -73.485277, + 45.463878 + ], + [ + -73.485098, + 45.46395 + ], + [ + -73.484961, + 45.463999 + ], + [ + -73.484817, + 45.464035 + ], + [ + -73.484669, + 45.464067 + ], + [ + -73.484494, + 45.464076 + ], + [ + -73.484342, + 45.46408 + ], + [ + -73.48257, + 45.464048 + ], + [ + -73.482309, + 45.464098 + ], + [ + -73.481982, + 45.464183 + ], + [ + -73.481595, + 45.464337 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.481333, + 45.464271 + ], + [ + -73.481245, + 45.464167 + ], + [ + -73.480932, + 45.463792 + ], + [ + -73.480306, + 45.46304 + ], + [ + -73.479964, + 45.462632 + ], + [ + -73.479274, + 45.461807 + ], + [ + -73.478983, + 45.461465 + ], + [ + -73.478678, + 45.461105 + ], + [ + -73.47855, + 45.461011 + ], + [ + -73.478446, + 45.460919 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.478119, + 45.460863 + ], + [ + -73.476662, + 45.461962 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.474374, + 45.468208 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474292, + 45.469387 + ], + [ + -73.474262, + 45.469541 + ], + [ + -73.474234, + 45.469689 + ], + [ + -73.474156, + 45.470095 + ], + [ + -73.474035, + 45.470724 + ], + [ + -73.473974, + 45.47107 + ], + [ + -73.473942, + 45.471336 + ], + [ + -73.473932, + 45.471601 + ], + [ + -73.473936, + 45.471665 + ], + [ + -73.473947, + 45.471826 + ], + [ + -73.473986, + 45.472118 + ], + [ + -73.473998, + 45.472177 + ], + [ + -73.474046, + 45.47242 + ], + [ + -73.474106, + 45.47264 + ], + [ + -73.474275, + 45.473063 + ], + [ + -73.474463, + 45.473437 + ], + [ + -73.474513, + 45.473518 + ], + [ + -73.474653, + 45.473477 + ], + [ + -73.474883, + 45.473438 + ], + [ + -73.475204, + 45.473383 + ], + [ + -73.475211, + 45.473382 + ], + [ + -73.4754, + 45.473356 + ], + [ + -73.47558, + 45.473334 + ], + [ + -73.476017, + 45.473311 + ], + [ + -73.47871, + 45.4734 + ], + [ + -73.478906, + 45.473406 + ], + [ + -73.482446, + 45.473518 + ], + [ + -73.482622, + 45.473524 + ], + [ + -73.483288, + 45.473542 + ], + [ + -73.483471, + 45.473542 + ], + [ + -73.483606, + 45.473542 + ], + [ + -73.484062, + 45.473524 + ], + [ + -73.484567, + 45.473475 + ], + [ + -73.484784, + 45.473448 + ], + [ + -73.485243, + 45.473362 + ], + [ + -73.485556, + 45.473295 + ], + [ + -73.485864, + 45.473204 + ], + [ + -73.485874, + 45.4732 + ], + [ + -73.485995, + 45.473164 + ], + [ + -73.486151, + 45.473119 + ], + [ + -73.486635, + 45.472962 + ], + [ + -73.486787, + 45.472912 + ], + [ + -73.488142, + 45.472472 + ], + [ + -73.488555, + 45.472341 + ], + [ + -73.488966, + 45.472197 + ], + [ + -73.489081, + 45.472161 + ], + [ + -73.489198, + 45.472121 + ], + [ + -73.489607, + 45.471977 + ], + [ + -73.489817, + 45.471884 + ], + [ + -73.490057, + 45.471779 + ], + [ + -73.490953, + 45.471352 + ], + [ + -73.49113, + 45.471275 + ], + [ + -73.491309, + 45.471203 + ], + [ + -73.49144, + 45.471158 + ], + [ + -73.491671, + 45.471086 + ], + [ + -73.492077, + 45.471005 + ], + [ + -73.49239, + 45.47096 + ], + [ + -73.492603, + 45.470947 + ], + [ + -73.492828, + 45.470933 + ], + [ + -73.493058, + 45.470938 + ], + [ + -73.494082, + 45.470974 + ], + [ + -73.49484, + 45.471001 + ], + [ + -73.494847, + 45.470884 + ], + [ + -73.494853, + 45.470767 + ], + [ + -73.494862, + 45.47056 + ], + [ + -73.494791, + 45.470417 + ], + [ + -73.494611, + 45.470061 + ], + [ + -73.494154, + 45.469237 + ], + [ + -73.494075, + 45.469188 + ], + [ + -73.49395, + 45.46917 + ], + [ + -73.492856, + 45.469118 + ], + [ + -73.4927, + 45.469111 + ], + [ + -73.492434, + 45.469107 + ], + [ + -73.489056, + 45.468994 + ], + [ + -73.488788, + 45.468985 + ], + [ + -73.487892, + 45.468935 + ], + [ + -73.486913, + 45.468899 + ], + [ + -73.486742, + 45.468895 + ], + [ + -73.486598, + 45.468913 + ], + [ + -73.486363, + 45.468976 + ], + [ + -73.485575, + 45.469313 + ], + [ + -73.485272, + 45.468957 + ], + [ + -73.485183, + 45.468899 + ], + [ + -73.485068, + 45.468858 + ], + [ + -73.484983, + 45.468836 + ], + [ + -73.484852, + 45.468827 + ], + [ + -73.484165, + 45.4688 + ], + [ + -73.484035, + 45.468795 + ], + [ + -73.482517, + 45.468777 + ], + [ + -73.481592, + 45.468898 + ], + [ + -73.480828, + 45.468945 + ], + [ + -73.480705, + 45.468952 + ], + [ + -73.479733, + 45.468916 + ], + [ + -73.478795, + 45.46888 + ], + [ + -73.477977, + 45.468847 + ], + [ + -73.477791, + 45.468839 + ], + [ + -73.475537, + 45.468744 + ], + [ + -73.475149, + 45.468731 + ], + [ + -73.474822, + 45.468708 + ], + [ + -73.474819, + 45.468708 + ], + [ + -73.47474, + 45.468663 + ] + ] + }, + "id": 386, + "properties": { + "id": "0449c4e9-5385-4e1a-b395-022474ad0461", + "data": { + "gtfs": { + "shape_id": "692_2_R" + }, + "segments": [ + { + "distanceMeters": 451, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 696, + "travelTimeSeconds": 99 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 393, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 363, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 44, + "travelTimeSeconds": 6 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 750, + "travelTimeSeconds": 107 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 66, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 730, + "travelTimeSeconds": 104 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 421, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 37 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9267, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2165.066938276511, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.02, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 6.18, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.02 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", + "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", + "3e4f29c9-7bf2-4ca4-9cb4-2a3c4710cea6", + "91b595a9-abca-41fb-9723-f6ca055bd16b", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "997c4af9-ab50-4dfb-941a-afadff58f267", + "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", + "c7c30949-db61-44fc-b7ab-a69b9fde12cc", + "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", + "f1131e74-6c65-4f22-a18d-41dbe35e4576", + "984def83-5f59-45f7-bb33-ed1dbca30502", + "5a6d8067-b58d-4ab2-838e-422e8f003ee9", + "9c711698-0f65-4997-8a72-24f5d8ab8fb7", + "1339471a-52fa-47e9-b0e4-753bf917ef08", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "003bcf5e-54a8-471f-b008-b7fa64ff94ba", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", + "3a8b9936-4595-4770-a3f4-b31253602356", + "80a85fd6-8b7e-4c4c-b616-26338ab496f1", + "2ef5dac7-c226-43bb-8534-6642e7a8ab89", + "a9b02686-8465-48b9-89ba-773a03aed1e8", + "17fd1ec9-db8e-4d18-a174-72ce7cb4c434", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "66a0749c-2a5b-458d-b059-307f555cb93a", + "d83daa69-bf92-4b93-8173-1c0fd22cbec0", + "3acbe4f4-b4c0-469f-af21-f4af3c6e2b53", + "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "79c669a1-9060-4e5d-b272-f107884dee00", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6" + ], + "stops": [], + "line_id": "0ace1a53-efbf-40d0-b083-99e314f68253", + "segments": [ + 0, + 20, + 27, + 29, + 42, + 44, + 48, + 58, + 67, + 72, + 79, + 89, + 93, + 109, + 122, + 125, + 128, + 133, + 137, + 165, + 170, + 177, + 189, + 193, + 195, + 205, + 209, + 217, + 239, + 242, + 255, + 259, + 263 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 386, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.440201, + 45.440298 + ], + [ + -73.440843, + 45.440775 + ], + [ + -73.441836, + 45.441512 + ], + [ + -73.441948, + 45.441595 + ], + [ + -73.442064, + 45.44172 + ], + [ + -73.442173, + 45.441795 + ], + [ + -73.444491, + 45.443456 + ], + [ + -73.444646, + 45.443567 + ], + [ + -73.444814, + 45.443691 + ], + [ + -73.445792, + 45.44439 + ], + [ + -73.445916, + 45.444479 + ], + [ + -73.447002, + 45.445251 + ], + [ + -73.447144, + 45.445352 + ], + [ + -73.44736, + 45.4455 + ], + [ + -73.447729, + 45.445718 + ], + [ + -73.448087, + 45.44592 + ], + [ + -73.449209, + 45.446548 + ], + [ + -73.449266, + 45.44658 + ], + [ + -73.4494, + 45.446659 + ], + [ + -73.449563, + 45.446742 + ], + [ + -73.450068, + 45.447011 + ], + [ + -73.450448, + 45.447201 + ], + [ + -73.451097, + 45.447517 + ], + [ + -73.4522, + 45.448094 + ], + [ + -73.452476, + 45.448237 + ], + [ + -73.453807, + 45.448921 + ], + [ + -73.454006, + 45.449062 + ], + [ + -73.454088, + 45.449121 + ], + [ + -73.454556, + 45.449427 + ], + [ + -73.454798, + 45.449611 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.455393, + 45.45012 + ], + [ + -73.456061, + 45.45066 + ], + [ + -73.456286, + 45.450829 + ], + [ + -73.456327, + 45.45086 + ], + [ + -73.457142, + 45.45144 + ], + [ + -73.457286, + 45.451543 + ], + [ + -73.457407, + 45.451615 + ], + [ + -73.457924, + 45.451894 + ], + [ + -73.458487, + 45.4522 + ], + [ + -73.458731, + 45.452331 + ], + [ + -73.458941, + 45.452443 + ], + [ + -73.459713, + 45.452799 + ], + [ + -73.461232, + 45.453472 + ], + [ + -73.461523, + 45.4536 + ], + [ + -73.462919, + 45.454222 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.462973, + 45.45452 + ], + [ + -73.462597, + 45.455054 + ], + [ + -73.462203, + 45.455612 + ], + [ + -73.462014, + 45.455891 + ], + [ + -73.461922, + 45.456093 + ], + [ + -73.461874, + 45.456197 + ], + [ + -73.461786, + 45.456489 + ], + [ + -73.461737, + 45.456795 + ], + [ + -73.461721, + 45.457015 + ], + [ + -73.461748, + 45.457291 + ], + [ + -73.46176, + 45.45742 + ], + [ + -73.461867, + 45.457825 + ], + [ + -73.462081, + 45.458239 + ], + [ + -73.462238, + 45.458487 + ], + [ + -73.462455, + 45.458766 + ], + [ + -73.462621, + 45.45898 + ], + [ + -73.462647, + 45.459013 + ], + [ + -73.462712, + 45.459175 + ], + [ + -73.462745, + 45.459391 + ], + [ + -73.462911, + 45.460597 + ], + [ + -73.462922, + 45.460678 + ], + [ + -73.463035, + 45.46138 + ], + [ + -73.463087, + 45.461704 + ], + [ + -73.463097, + 45.461763 + ], + [ + -73.463101, + 45.461866 + ], + [ + -73.463058, + 45.461956 + ], + [ + -73.463004, + 45.46201 + ], + [ + -73.462926, + 45.462051 + ], + [ + -73.462839, + 45.462082 + ], + [ + -73.462729, + 45.462095 + ], + [ + -73.46213, + 45.462145 + ], + [ + -73.461317, + 45.462217 + ], + [ + -73.461274, + 45.462221 + ], + [ + -73.460596, + 45.46227 + ], + [ + -73.459742, + 45.462333 + ], + [ + -73.458611, + 45.462189 + ], + [ + -73.457909, + 45.462103 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.457019, + 45.462007 + ], + [ + -73.456859, + 45.46199 + ], + [ + -73.456608, + 45.461964 + ], + [ + -73.456268, + 45.4619 + ], + [ + -73.456104, + 45.461814 + ], + [ + -73.455632, + 45.461475 + ], + [ + -73.4542, + 45.460447 + ], + [ + -73.453333, + 45.459823 + ], + [ + -73.453221, + 45.459743 + ], + [ + -73.452534, + 45.459239 + ], + [ + -73.451112, + 45.458216 + ], + [ + -73.450782, + 45.457979 + ], + [ + -73.450437, + 45.457731 + ], + [ + -73.450367, + 45.457403 + ], + [ + -73.450362, + 45.457232 + ], + [ + -73.450382, + 45.457097 + ], + [ + -73.450443, + 45.45693 + ], + [ + -73.451222, + 45.455776 + ], + [ + -73.451461, + 45.455422 + ], + [ + -73.45166, + 45.455126 + ], + [ + -73.451697, + 45.455076 + ], + [ + -73.451848, + 45.45487 + ], + [ + -73.451889, + 45.454825 + ], + [ + -73.451941, + 45.454767 + ], + [ + -73.452038, + 45.454708 + ], + [ + -73.452189, + 45.454636 + ], + [ + -73.451956, + 45.454402 + ], + [ + -73.451873, + 45.454344 + ], + [ + -73.45174, + 45.454276 + ], + [ + -73.451557, + 45.454204 + ], + [ + -73.451305, + 45.454127 + ], + [ + -73.45082, + 45.453956 + ], + [ + -73.450488, + 45.453839 + ], + [ + -73.450766, + 45.453502 + ], + [ + -73.450798, + 45.453476 + ], + [ + -73.45112, + 45.453219 + ], + [ + -73.451322, + 45.453072 + ], + [ + -73.451486, + 45.452953 + ], + [ + -73.45248, + 45.452271 + ], + [ + -73.452613, + 45.45218 + ], + [ + -73.453298, + 45.451699 + ], + [ + -73.452781, + 45.451327 + ], + [ + -73.452622, + 45.451213 + ], + [ + -73.453977, + 45.450264 + ], + [ + -73.454474, + 45.449931 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.455056, + 45.44954 + ], + [ + -73.454771, + 45.449327 + ], + [ + -73.454737, + 45.449301 + ], + [ + -73.454461, + 45.449119 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.454351, + 45.448928 + ], + [ + -73.454507, + 45.448806 + ], + [ + -73.454606, + 45.448707 + ], + [ + -73.454897, + 45.448293 + ], + [ + -73.455137, + 45.447929 + ], + [ + -73.455304, + 45.447709 + ], + [ + -73.455416, + 45.447619 + ], + [ + -73.455528, + 45.447551 + ], + [ + -73.455661, + 45.447479 + ], + [ + -73.45587, + 45.447395 + ], + [ + -73.455927, + 45.447371 + ], + [ + -73.456253, + 45.447264 + ], + [ + -73.456885, + 45.447052 + ], + [ + -73.457516, + 45.446841 + ], + [ + -73.457752, + 45.446762 + ], + [ + -73.458009, + 45.446676 + ], + [ + -73.458085, + 45.446651 + ], + [ + -73.458121, + 45.446639 + ], + [ + -73.45823, + 45.446598 + ], + [ + -73.458358, + 45.446536 + ], + [ + -73.458499, + 45.446437 + ], + [ + -73.458716, + 45.446252 + ], + [ + -73.458903, + 45.445978 + ], + [ + -73.459419, + 45.445193 + ], + [ + -73.459486, + 45.445092 + ], + [ + -73.460027, + 45.444237 + ], + [ + -73.460296, + 45.443835 + ], + [ + -73.460454, + 45.443598 + ], + [ + -73.461771, + 45.444017 + ], + [ + -73.463013, + 45.444418 + ], + [ + -73.464019, + 45.444742 + ], + [ + -73.465754, + 45.44531 + ], + [ + -73.465988, + 45.445382 + ], + [ + -73.466182, + 45.445449 + ], + [ + -73.466559, + 45.44562 + ], + [ + -73.466885, + 45.445774 + ], + [ + -73.467467, + 45.446048 + ], + [ + -73.467858, + 45.44626 + ], + [ + -73.468293, + 45.446453 + ], + [ + -73.468548, + 45.446543 + ], + [ + -73.469098, + 45.446714 + ], + [ + -73.46979, + 45.446931 + ], + [ + -73.469936, + 45.446962 + ], + [ + -73.470215, + 45.447052 + ], + [ + -73.471183, + 45.44739 + ], + [ + -73.471746, + 45.44757 + ], + [ + -73.472443, + 45.447795 + ], + [ + -73.473347, + 45.448088 + ], + [ + -73.473437, + 45.448115 + ], + [ + -73.475223, + 45.448691 + ], + [ + -73.475787, + 45.448871 + ], + [ + -73.476196, + 45.449002 + ], + [ + -73.476498, + 45.449128 + ], + [ + -73.476722, + 45.449231 + ], + [ + -73.476897, + 45.449321 + ], + [ + -73.477126, + 45.449456 + ], + [ + -73.477278, + 45.449564 + ], + [ + -73.477431, + 45.449681 + ], + [ + -73.477567, + 45.449794 + ], + [ + -73.477783, + 45.450014 + ], + [ + -73.477921, + 45.449951 + ], + [ + -73.478061, + 45.4499 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.4775, + 45.449189 + ] + ] + }, + "id": 387, + "properties": { + "id": "5eaea76d-91dc-4df8-9292-26df46cf414b", + "data": { + "gtfs": { + "shape_id": "693_1_A" + }, + "segments": [ + { + "distanceMeters": 186, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 468, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 87, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 159, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 135, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 83, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 116, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 1726, + "travelTimeSeconds": 264 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8264, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3078.261471413936, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.56, + "travelTimeWithoutDwellTimesSeconds": 1260, + "operatingTimeWithLayoverTimeSeconds": 1440, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1260, + "operatingSpeedWithLayoverMetersPerSecond": 5.74, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.56 + }, + "mode": "bus", + "name": "École Lucille-Teasdale", + "color": "#A32638", + "nodes": [ + "49b9afd3-56d8-4495-8b7a-642e5568568e", + "13dab893-0384-46f9-a2e5-e504a47de39a", + "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", + "d306b992-8d43-4ba8-8460-68d87b486222", + "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", + "b5853393-4072-4255-b507-e9c4b6659c5b", + "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", + "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", + "2ac07b96-98be-4710-a749-3162a661fcb5", + "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", + "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", + "d13720b6-fb91-4a90-a816-addaef17cf17", + "d0325326-9fbf-42e2-aefa-29fa09853c10", + "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "30d24143-abd0-4a47-955d-cdbc3943ae61", + "47d3a0e8-5db6-4263-911d-0835de2b9cb0", + "c01e4d9c-c5df-425f-9b40-215a62d76b50", + "5781af67-07a2-4732-99f5-af7b2835e18a", + "800b4ca8-f540-48ef-9acf-ec6d45db3496", + "db56dff4-d82c-4b2d-ad34-35b3db3f27de", + "0087674f-0098-4bab-9a77-b31eb3602613", + "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", + "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", + "fd4f887b-9300-41e3-8cc1-44b80109a4ad", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "8b7e764f-0227-410c-89b9-51b9a8ad8c88", + "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", + "57126f14-f5bb-4578-a4ae-48d75eae5e82", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "fe1d7eea-bdc6-4263-a13b-eb6645c5e393" + ], + "stops": [], + "line_id": "c63586ec-56ce-4d9d-bdaf-685692053661", + "segments": [ + 0, + 2, + 6, + 11, + 16, + 26, + 29, + 35, + 40, + 43, + 45, + 51, + 56, + 62, + 66, + 78, + 83, + 86, + 90, + 91, + 92, + 96, + 102, + 107, + 116, + 121, + 126, + 129, + 134, + 145, + 150, + 159, + 162 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 387, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.4775, + 45.449189 + ], + [ + -73.477354, + 45.449101 + ], + [ + -73.476598, + 45.448646 + ], + [ + -73.476493, + 45.448669 + ], + [ + -73.476429, + 45.448682 + ], + [ + -73.476264, + 45.448894 + ], + [ + -73.475856, + 45.448768 + ], + [ + -73.475455, + 45.448632 + ], + [ + -73.475296, + 45.448579 + ], + [ + -73.474198, + 45.448236 + ], + [ + -73.473507, + 45.448007 + ], + [ + -73.47251, + 45.447683 + ], + [ + -73.471666, + 45.447408 + ], + [ + -73.471252, + 45.447282 + ], + [ + -73.47028, + 45.446953 + ], + [ + -73.470002, + 45.446863 + ], + [ + -73.469858, + 45.446832 + ], + [ + -73.469169, + 45.446615 + ], + [ + -73.468615, + 45.446444 + ], + [ + -73.468374, + 45.446359 + ], + [ + -73.468208, + 45.446282 + ], + [ + -73.467947, + 45.446165 + ], + [ + -73.46755, + 45.445972 + ], + [ + -73.466635, + 45.445539 + ], + [ + -73.466252, + 45.445364 + ], + [ + -73.466048, + 45.445292 + ], + [ + -73.465811, + 45.44522 + ], + [ + -73.464192, + 45.444695 + ], + [ + -73.464073, + 45.444657 + ], + [ + -73.461826, + 45.443936 + ], + [ + -73.461072, + 45.443693 + ], + [ + -73.460746, + 45.443589 + ], + [ + -73.46051, + 45.443513 + ], + [ + -73.460454, + 45.443598 + ], + [ + -73.460365, + 45.443732 + ], + [ + -73.460027, + 45.444237 + ], + [ + -73.45953, + 45.445023 + ], + [ + -73.459486, + 45.445092 + ], + [ + -73.458903, + 45.445978 + ], + [ + -73.458716, + 45.446252 + ], + [ + -73.458499, + 45.446437 + ], + [ + -73.458358, + 45.446536 + ], + [ + -73.45823, + 45.446598 + ], + [ + -73.458121, + 45.446639 + ], + [ + -73.458108, + 45.446643 + ], + [ + -73.458085, + 45.446651 + ], + [ + -73.458009, + 45.446676 + ], + [ + -73.457516, + 45.446841 + ], + [ + -73.456885, + 45.447052 + ], + [ + -73.456375, + 45.447223 + ], + [ + -73.456253, + 45.447264 + ], + [ + -73.455927, + 45.447371 + ], + [ + -73.455661, + 45.447479 + ], + [ + -73.455528, + 45.447551 + ], + [ + -73.455416, + 45.447619 + ], + [ + -73.455304, + 45.447709 + ], + [ + -73.455137, + 45.447929 + ], + [ + -73.454897, + 45.448293 + ], + [ + -73.454606, + 45.448707 + ], + [ + -73.454507, + 45.448806 + ], + [ + -73.454404, + 45.448887 + ], + [ + -73.454351, + 45.448928 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.454088, + 45.449121 + ], + [ + -73.454556, + 45.449427 + ], + [ + -73.45481, + 45.44962 + ], + [ + -73.45487, + 45.449666 + ], + [ + -73.454515, + 45.449903 + ], + [ + -73.453977, + 45.450264 + ], + [ + -73.452721, + 45.451143 + ], + [ + -73.452622, + 45.451213 + ], + [ + -73.453298, + 45.451699 + ], + [ + -73.452613, + 45.45218 + ], + [ + -73.45248, + 45.452271 + ], + [ + -73.451627, + 45.452856 + ], + [ + -73.451486, + 45.452953 + ], + [ + -73.45112, + 45.453219 + ], + [ + -73.450766, + 45.453502 + ], + [ + -73.450718, + 45.453561 + ], + [ + -73.450488, + 45.453839 + ], + [ + -73.451305, + 45.454127 + ], + [ + -73.451557, + 45.454204 + ], + [ + -73.45174, + 45.454276 + ], + [ + -73.451873, + 45.454344 + ], + [ + -73.451956, + 45.454402 + ], + [ + -73.452095, + 45.454542 + ], + [ + -73.452189, + 45.454636 + ], + [ + -73.452038, + 45.454708 + ], + [ + -73.451941, + 45.454767 + ], + [ + -73.451848, + 45.45487 + ], + [ + -73.45166, + 45.455126 + ], + [ + -73.451461, + 45.455422 + ], + [ + -73.451248, + 45.455737 + ], + [ + -73.450443, + 45.45693 + ], + [ + -73.450382, + 45.457097 + ], + [ + -73.450362, + 45.457232 + ], + [ + -73.450367, + 45.457403 + ], + [ + -73.450399, + 45.457551 + ], + [ + -73.450437, + 45.457731 + ], + [ + -73.450592, + 45.457842 + ], + [ + -73.451112, + 45.458216 + ], + [ + -73.452534, + 45.459239 + ], + [ + -73.453094, + 45.45965 + ], + [ + -73.453221, + 45.459743 + ], + [ + -73.45465, + 45.460769 + ], + [ + -73.456104, + 45.461814 + ], + [ + -73.456268, + 45.4619 + ], + [ + -73.456608, + 45.461964 + ], + [ + -73.457019, + 45.462007 + ], + [ + -73.457419, + 45.462048 + ], + [ + -73.457675, + 45.462075 + ], + [ + -73.45853, + 45.462179 + ], + [ + -73.458611, + 45.462189 + ], + [ + -73.459742, + 45.462333 + ], + [ + -73.460596, + 45.46227 + ], + [ + -73.461001, + 45.462241 + ], + [ + -73.461274, + 45.462221 + ], + [ + -73.46213, + 45.462145 + ], + [ + -73.462729, + 45.462095 + ], + [ + -73.462818, + 45.462085 + ], + [ + -73.462839, + 45.462082 + ], + [ + -73.462926, + 45.462051 + ], + [ + -73.463004, + 45.46201 + ], + [ + -73.463058, + 45.461956 + ], + [ + -73.463101, + 45.461866 + ], + [ + -73.463097, + 45.461763 + ], + [ + -73.463035, + 45.46138 + ], + [ + -73.462937, + 45.460774 + ], + [ + -73.462922, + 45.460678 + ], + [ + -73.462766, + 45.45954 + ], + [ + -73.462745, + 45.459391 + ], + [ + -73.462712, + 45.459175 + ], + [ + -73.462647, + 45.459013 + ], + [ + -73.462455, + 45.458766 + ], + [ + -73.462238, + 45.458487 + ], + [ + -73.462081, + 45.458239 + ], + [ + -73.461867, + 45.457825 + ], + [ + -73.461775, + 45.457477 + ], + [ + -73.46176, + 45.45742 + ], + [ + -73.461721, + 45.457015 + ], + [ + -73.461737, + 45.456795 + ], + [ + -73.461786, + 45.456489 + ], + [ + -73.461833, + 45.456334 + ], + [ + -73.461874, + 45.456197 + ], + [ + -73.462014, + 45.455891 + ], + [ + -73.462203, + 45.455612 + ], + [ + -73.462522, + 45.455159 + ], + [ + -73.462597, + 45.455054 + ], + [ + -73.463119, + 45.454312 + ], + [ + -73.463193, + 45.454208 + ], + [ + -73.462942, + 45.454094 + ], + [ + -73.462149, + 45.453733 + ], + [ + -73.461809, + 45.453578 + ], + [ + -73.461621, + 45.453493 + ], + [ + -73.459815, + 45.452691 + ], + [ + -73.459189, + 45.4524 + ], + [ + -73.45904, + 45.452331 + ], + [ + -73.458688, + 45.452137 + ], + [ + -73.458046, + 45.451791 + ], + [ + -73.457693, + 45.451586 + ], + [ + -73.457541, + 45.451498 + ], + [ + -73.457438, + 45.451421 + ], + [ + -73.457131, + 45.451219 + ], + [ + -73.456851, + 45.451021 + ], + [ + -73.45659, + 45.450823 + ], + [ + -73.456273, + 45.450557 + ], + [ + -73.456003, + 45.45033 + ], + [ + -73.455819, + 45.450175 + ], + [ + -73.455605, + 45.449994 + ], + [ + -73.455056, + 45.44954 + ], + [ + -73.454737, + 45.449301 + ], + [ + -73.454446, + 45.44911 + ], + [ + -73.454264, + 45.448991 + ], + [ + -73.453273, + 45.448481 + ], + [ + -73.451557, + 45.447603 + ], + [ + -73.45107, + 45.447354 + ], + [ + -73.45026, + 45.446936 + ], + [ + -73.449669, + 45.446635 + ], + [ + -73.449652, + 45.446626 + ], + [ + -73.449554, + 45.446569 + ], + [ + -73.449363, + 45.446456 + ], + [ + -73.447677, + 45.44551 + ], + [ + -73.447484, + 45.445387 + ], + [ + -73.447408, + 45.44534 + ], + [ + -73.447287, + 45.445263 + ], + [ + -73.447125, + 45.445146 + ], + [ + -73.446612, + 45.444764 + ], + [ + -73.445568, + 45.444021 + ], + [ + -73.444905, + 45.443527 + ], + [ + -73.444834, + 45.443475 + ], + [ + -73.444807, + 45.443457 + ], + [ + -73.442882, + 45.442105 + ], + [ + -73.442354, + 45.441734 + ], + [ + -73.442337, + 45.441722 + ], + [ + -73.442193, + 45.441589 + ], + [ + -73.442073, + 45.441479 + ], + [ + -73.441548, + 45.441133 + ], + [ + -73.4411, + 45.440787 + ], + [ + -73.440974, + 45.440696 + ], + [ + -73.440252, + 45.440176 + ], + [ + -73.439969, + 45.43997 + ] + ] + }, + "id": 388, + "properties": { + "id": "38733f4c-57e0-44a3-9867-43b451414663", + "data": { + "gtfs": { + "shape_id": "693_2_R" + }, + "segments": [ + { + "distanceMeters": 203, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 984, + "travelTimeSeconds": 152 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 28, + "travelTimeSeconds": 4 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 150, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 242, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 158, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 217, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 270, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 88, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 195, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 128, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 464, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 281, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 282, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 42 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8127, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3097.7745575377717, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.45, + "travelTimeWithoutDwellTimesSeconds": 1260, + "operatingTimeWithLayoverTimeSeconds": 1440, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1260, + "operatingSpeedWithLayoverMetersPerSecond": 5.64, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.45 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", + "8f39e220-8ec5-4425-b9f8-90e418e7d6d3", + "ae5cac19-c84c-4e41-ae57-bbf3b3bda217", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "57126f14-f5bb-4578-a4ae-48d75eae5e82", + "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", + "8b7e764f-0227-410c-89b9-51b9a8ad8c88", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", + "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", + "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", + "0087674f-0098-4bab-9a77-b31eb3602613", + "db56dff4-d82c-4b2d-ad34-35b3db3f27de", + "800b4ca8-f540-48ef-9acf-ec6d45db3496", + "0c735a18-4964-435c-ad38-89ab21a47f83", + "c01e4d9c-c5df-425f-9b40-215a62d76b50", + "4ca26d1e-a5a2-4d1a-ba5a-7bed9b5a1bee", + "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "5d862a7d-92b0-4def-8199-258993ce3523", + "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", + "d0325326-9fbf-42e2-aefa-29fa09853c10", + "d13720b6-fb91-4a90-a816-addaef17cf17", + "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", + "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", + "5b030db6-8eaf-4505-a2c0-5a5290886d5b", + "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "ab493a3c-1217-4122-93b5-217f7741b2ea", + "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "2c6638eb-437e-4a41-bb5d-d6093797361d", + "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", + "d306b992-8d43-4ba8-8460-68d87b486222", + "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", + "88486643-e9da-4936-905d-86d1e3882217", + "c5b32d48-73e8-4193-bbcc-f643b32c6ad7" + ], + "stops": [], + "line_id": "c63586ec-56ce-4d9d-bdaf-685692053661", + "segments": [ + 0, + 7, + 27, + 30, + 31, + 36, + 44, + 49, + 60, + 65, + 69, + 74, + 78, + 85, + 92, + 97, + 102, + 104, + 109, + 111, + 115, + 127, + 129, + 137, + 142, + 146, + 152, + 155, + 159, + 167, + 171, + 177, + 183, + 188, + 192 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 388, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.462689, + 45.46902 + ], + [ + -73.462634, + 45.469078 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.460808, + 45.47033 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.458439, + 45.471947 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.456063, + 45.473572 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.453679, + 45.475205 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.451331, + 45.476812 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.449277, + 45.478219 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.448868, + 45.478494 + ], + [ + -73.448753, + 45.478566 + ], + [ + -73.448994, + 45.478733 + ], + [ + -73.449425, + 45.47903 + ], + [ + -73.450119, + 45.479471 + ], + [ + -73.45087, + 45.479962 + ], + [ + -73.451, + 45.480048 + ], + [ + -73.451438, + 45.480342 + ], + [ + -73.451689, + 45.480511 + ], + [ + -73.452165, + 45.480813 + ], + [ + -73.452542, + 45.481076 + ], + [ + -73.452751, + 45.481223 + ], + [ + -73.452851, + 45.48129 + ], + [ + -73.453668, + 45.481781 + ], + [ + -73.454023, + 45.481974 + ], + [ + -73.454266, + 45.482101 + ], + [ + -73.454494, + 45.482204 + ], + [ + -73.454893, + 45.482398 + ], + [ + -73.455361, + 45.482587 + ], + [ + -73.455562, + 45.482663 + ], + [ + -73.455798, + 45.482744 + ], + [ + -73.456376, + 45.48292 + ], + [ + -73.456963, + 45.483096 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45732, + 45.482854 + ], + [ + -73.460939, + 45.480405 + ], + [ + -73.461043, + 45.480335 + ], + [ + -73.460857, + 45.48021 + ], + [ + -73.46017, + 45.47975 + ], + [ + -73.461956, + 45.478544 + ], + [ + -73.462028, + 45.478495 + ], + [ + -73.461949, + 45.478438 + ], + [ + -73.461424, + 45.478052 + ], + [ + -73.461335, + 45.477986 + ], + [ + -73.462719, + 45.477038 + ], + [ + -73.462832, + 45.476961 + ], + [ + -73.464383, + 45.475913 + ], + [ + -73.464088, + 45.475706 + ], + [ + -73.463948, + 45.475607 + ], + [ + -73.463529, + 45.475427 + ], + [ + -73.462895, + 45.475142 + ], + [ + -73.462818, + 45.475107 + ], + [ + -73.461823, + 45.474666 + ], + [ + -73.461576, + 45.474504 + ], + [ + -73.4615, + 45.474454 + ], + [ + -73.461544, + 45.474425 + ], + [ + -73.462087, + 45.474055 + ], + [ + -73.462597, + 45.473708 + ], + [ + -73.462985, + 45.473456 + ], + [ + -73.464065, + 45.472695 + ], + [ + -73.464089, + 45.472678 + ], + [ + -73.465434, + 45.471774 + ], + [ + -73.465954, + 45.471415 + ], + [ + -73.466451, + 45.471073 + ], + [ + -73.466809, + 45.471305 + ], + [ + -73.467061, + 45.471469 + ], + [ + -73.46758, + 45.47182 + ], + [ + -73.467806, + 45.471982 + ], + [ + -73.46785, + 45.471847 + ], + [ + -73.467869, + 45.471793 + ], + [ + -73.467954, + 45.471482 + ], + [ + -73.467979, + 45.471365 + ], + [ + -73.468005, + 45.471249 + ], + [ + -73.468064, + 45.470898 + ], + [ + -73.468076, + 45.470781 + ], + [ + -73.46809, + 45.470638 + ], + [ + -73.468112, + 45.470407 + ], + [ + -73.468119, + 45.470155 + ], + [ + -73.468115, + 45.470044 + ], + [ + -73.468111, + 45.469894 + ], + [ + -73.468108, + 45.469818 + ], + [ + -73.468107, + 45.469773 + ], + [ + -73.46805, + 45.4693 + ], + [ + -73.46795, + 45.468821 + ], + [ + -73.467932, + 45.468733 + ], + [ + -73.467793, + 45.468274 + ], + [ + -73.467751, + 45.468166 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.46758, + 45.467757 + ], + [ + -73.467357, + 45.467296 + ], + [ + -73.466914, + 45.466403 + ], + [ + -73.466752, + 45.466083 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466352, + 45.465288 + ], + [ + -73.466238, + 45.465062 + ], + [ + -73.466142, + 45.464853 + ], + [ + -73.466048, + 45.464638 + ], + [ + -73.46599, + 45.464498 + ], + [ + -73.465967, + 45.464441 + ], + [ + -73.465777, + 45.463945 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465663, + 45.463449 + ], + [ + -73.465646, + 45.463238 + ], + [ + -73.465636, + 45.463073 + ], + [ + -73.465461, + 45.461275 + ], + [ + -73.465446, + 45.461126 + ], + [ + -73.465251, + 45.459263 + ], + [ + -73.465215, + 45.458894 + ], + [ + -73.465199, + 45.458728 + ], + [ + -73.465132, + 45.458038 + ], + [ + -73.465113, + 45.457592 + ], + [ + -73.465124, + 45.457143 + ], + [ + -73.465143, + 45.45685 + ], + [ + -73.465153, + 45.456755 + ], + [ + -73.465199, + 45.456301 + ], + [ + -73.465244, + 45.456 + ], + [ + -73.465335, + 45.455572 + ], + [ + -73.465339, + 45.455554 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465617, + 45.454677 + ], + [ + -73.465629, + 45.454641 + ], + [ + -73.46563, + 45.454641 + ], + [ + -73.465694, + 45.454481 + ], + [ + -73.465735, + 45.45438 + ], + [ + -73.465853, + 45.45411 + ], + [ + -73.466087, + 45.453654 + ], + [ + -73.46613, + 45.45357 + ], + [ + -73.466877, + 45.452297 + ], + [ + -73.467521, + 45.451236 + ], + [ + -73.468182, + 45.450183 + ], + [ + -73.469986, + 45.447403 + ], + [ + -73.47011, + 45.447213 + ], + [ + -73.470141, + 45.447165 + ], + [ + -73.470215, + 45.447052 + ], + [ + -73.471183, + 45.44739 + ], + [ + -73.471746, + 45.44757 + ], + [ + -73.472443, + 45.447795 + ], + [ + -73.473347, + 45.448088 + ], + [ + -73.473437, + 45.448115 + ], + [ + -73.475223, + 45.448691 + ], + [ + -73.475787, + 45.448871 + ], + [ + -73.476196, + 45.449002 + ], + [ + -73.476498, + 45.449128 + ], + [ + -73.476722, + 45.449231 + ], + [ + -73.476897, + 45.449321 + ], + [ + -73.477126, + 45.449456 + ], + [ + -73.477278, + 45.449564 + ], + [ + -73.477431, + 45.449681 + ], + [ + -73.477567, + 45.449794 + ], + [ + -73.477726, + 45.449957 + ], + [ + -73.477783, + 45.450014 + ], + [ + -73.477921, + 45.449951 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.4775, + 45.449189 + ] + ] + }, + "id": 389, + "properties": { + "id": "f058daa5-911e-40fc-a128-97d5935b8ff3", + "data": { + "gtfs": { + "shape_id": "694_1_A" + }, + "segments": [ + { + "distanceMeters": 207, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 180, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 846, + "travelTimeSeconds": 149 + }, + { + "distanceMeters": 299, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 76, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 161, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 352, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 884, + "travelTimeSeconds": 156 + }, + { + "distanceMeters": 249, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 477, + "travelTimeSeconds": 84 + }, + { + "distanceMeters": 898, + "travelTimeSeconds": 158 + }, + { + "distanceMeters": 861, + "travelTimeSeconds": 152 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 8172, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2498.1869479866095, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.67, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 5.04, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.67 + }, + "mode": "bus", + "name": "École Lucille-Teasdale", + "color": "#A32638", + "nodes": [ + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "907f8610-452b-440d-849b-c803b07dedc1", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "72a48bdf-3a35-4f3b-8d05-e465faf044cf", + "70af9f63-28e4-474e-896b-5462b7252980", + "10c2e9e3-14c8-465a-917c-28c8d9977609", + "9f622393-7da9-4ff8-9bda-12008512c7ed", + "4122212c-2ecd-4db2-a305-20f02711d17b", + "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", + "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", + "c467599b-2164-4b14-b9ca-8960936bda58", + "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", + "156c412f-0b84-4b14-a73e-e1d07d0b148d", + "51e1600d-418e-4477-9b26-9e5507d72a03", + "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "74887516-47d5-4269-9513-84672d18e287", + "1e3a74d9-9d8a-467f-a82e-3dafee501e32", + "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", + "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", + "fe1d7eea-bdc6-4263-a13b-eb6645c5e393" + ], + "stops": [], + "line_id": "03325740-8fd8-4309-a150-bf5624bb8be9", + "segments": [ + 0, + 3, + 5, + 7, + 9, + 11, + 13, + 20, + 25, + 40, + 44, + 47, + 49, + 52, + 58, + 64, + 67, + 80, + 88, + 110, + 112, + 127, + 137 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 389, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.4775, + 45.449189 + ], + [ + -73.477354, + 45.449101 + ], + [ + -73.476598, + 45.448646 + ], + [ + -73.476493, + 45.448669 + ], + [ + -73.476429, + 45.448682 + ], + [ + -73.476264, + 45.448894 + ], + [ + -73.475856, + 45.448768 + ], + [ + -73.475454, + 45.448632 + ], + [ + -73.475296, + 45.448579 + ], + [ + -73.474198, + 45.448236 + ], + [ + -73.473507, + 45.448007 + ], + [ + -73.47251, + 45.447683 + ], + [ + -73.471666, + 45.447408 + ], + [ + -73.471252, + 45.447282 + ], + [ + -73.47028, + 45.446953 + ], + [ + -73.470002, + 45.446863 + ], + [ + -73.469936, + 45.446962 + ], + [ + -73.469837, + 45.447115 + ], + [ + -73.4697, + 45.447326 + ], + [ + -73.467906, + 45.450089 + ], + [ + -73.467328, + 45.451002 + ], + [ + -73.46669, + 45.452054 + ], + [ + -73.465968, + 45.453278 + ], + [ + -73.465918, + 45.453363 + ], + [ + -73.465707, + 45.453755 + ], + [ + -73.46558, + 45.454016 + ], + [ + -73.46536, + 45.454529 + ], + [ + -73.465344, + 45.454574 + ], + [ + -73.465257, + 45.454824 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.465167, + 45.455082 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465048, + 45.455509 + ], + [ + -73.465041, + 45.455536 + ], + [ + -73.464975, + 45.455829 + ], + [ + -73.464919, + 45.45613 + ], + [ + -73.464878, + 45.456427 + ], + [ + -73.464848, + 45.456873 + ], + [ + -73.464844, + 45.457169 + ], + [ + -73.464871, + 45.457574 + ], + [ + -73.464981, + 45.459093 + ], + [ + -73.464994, + 45.459278 + ], + [ + -73.465215, + 45.461562 + ], + [ + -73.465247, + 45.461893 + ], + [ + -73.465328, + 45.462497 + ], + [ + -73.465435, + 45.463211 + ], + [ + -73.465484, + 45.463543 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467476, + 45.467991 + ], + [ + -73.467504, + 45.468108 + ], + [ + -73.46754, + 45.468207 + ], + [ + -73.467548, + 45.468225 + ], + [ + -73.467698, + 45.468792 + ], + [ + -73.467776, + 45.469183 + ], + [ + -73.46782, + 45.469453 + ], + [ + -73.467839, + 45.469685 + ], + [ + -73.467865, + 45.469989 + ], + [ + -73.467864, + 45.470057 + ], + [ + -73.467862, + 45.470168 + ], + [ + -73.46786, + 45.470362 + ], + [ + -73.467821, + 45.470781 + ], + [ + -73.467786, + 45.471019 + ], + [ + -73.467768, + 45.4711 + ], + [ + -73.467579, + 45.47132 + ], + [ + -73.467528, + 45.471365 + ], + [ + -73.467462, + 45.471392 + ], + [ + -73.467361, + 45.47141 + ], + [ + -73.467264, + 45.471406 + ], + [ + -73.467156, + 45.471392 + ], + [ + -73.467054, + 45.471328 + ], + [ + -73.466545, + 45.47101 + ], + [ + -73.466451, + 45.471073 + ], + [ + -73.46631, + 45.47117 + ], + [ + -73.466004, + 45.471381 + ], + [ + -73.465434, + 45.471774 + ], + [ + -73.464161, + 45.47263 + ], + [ + -73.464089, + 45.472678 + ], + [ + -73.462985, + 45.473456 + ], + [ + -73.462597, + 45.473708 + ], + [ + -73.462087, + 45.474055 + ], + [ + -73.461669, + 45.474339 + ], + [ + -73.4615, + 45.474454 + ], + [ + -73.461687, + 45.474577 + ], + [ + -73.461823, + 45.474666 + ], + [ + -73.462818, + 45.475107 + ], + [ + -73.462895, + 45.475142 + ], + [ + -73.463529, + 45.475427 + ], + [ + -73.463948, + 45.475607 + ], + [ + -73.464292, + 45.475849 + ], + [ + -73.464383, + 45.475913 + ], + [ + -73.464108, + 45.476099 + ], + [ + -73.462943, + 45.476886 + ], + [ + -73.462832, + 45.476961 + ], + [ + -73.46143, + 45.477921 + ], + [ + -73.461335, + 45.477986 + ], + [ + -73.461508, + 45.478113 + ], + [ + -73.461934, + 45.478426 + ], + [ + -73.462028, + 45.478495 + ], + [ + -73.46017, + 45.47975 + ], + [ + -73.460369, + 45.479883 + ], + [ + -73.460867, + 45.480216 + ], + [ + -73.461043, + 45.480335 + ], + [ + -73.457244, + 45.482906 + ], + [ + -73.457116, + 45.482992 + ], + [ + -73.45697, + 45.48295 + ], + [ + -73.45645, + 45.482799 + ], + [ + -73.455886, + 45.482623 + ], + [ + -73.455654, + 45.482542 + ], + [ + -73.455462, + 45.482465 + ], + [ + -73.455285, + 45.482388 + ], + [ + -73.455276, + 45.482384 + ], + [ + -73.455009, + 45.482272 + ], + [ + -73.454605, + 45.482087 + ], + [ + -73.454381, + 45.481984 + ], + [ + -73.454145, + 45.481862 + ], + [ + -73.453796, + 45.481673 + ], + [ + -73.453035, + 45.48118 + ], + [ + -73.452928, + 45.481113 + ], + [ + -73.452515, + 45.480856 + ], + [ + -73.452296, + 45.480719 + ], + [ + -73.452295, + 45.480718 + ], + [ + -73.451837, + 45.480421 + ], + [ + -73.451565, + 45.480238 + ], + [ + -73.451002, + 45.479859 + ], + [ + -73.450929, + 45.479809 + ], + [ + -73.450257, + 45.479368 + ], + [ + -73.449701, + 45.479005 + ], + [ + -73.449587, + 45.478931 + ], + [ + -73.448913, + 45.478467 + ], + [ + -73.449159, + 45.478299 + ], + [ + -73.449383, + 45.478146 + ], + [ + -73.451116, + 45.476959 + ], + [ + -73.451199, + 45.476903 + ], + [ + -73.453437, + 45.475371 + ], + [ + -73.453577, + 45.475275 + ], + [ + -73.455857, + 45.473713 + ], + [ + -73.455973, + 45.473634 + ], + [ + -73.458243, + 45.472081 + ], + [ + -73.45834, + 45.472015 + ], + [ + -73.46052, + 45.470526 + ], + [ + -73.460724, + 45.470387 + ], + [ + -73.462599, + 45.469096 + ], + [ + -73.462617, + 45.469087 + ] + ] + }, + "id": 390, + "properties": { + "id": "32daf9a6-ce2f-492d-aad9-8d1b9a624c77", + "data": { + "gtfs": { + "shape_id": "694_2_R" + }, + "segments": [ + { + "distanceMeters": 203, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 1430, + "travelTimeSeconds": 261 + }, + { + "distanceMeters": 478, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 1207, + "travelTimeSeconds": 221 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 165, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 78, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 431, + "travelTimeSeconds": 79 + }, + { + "distanceMeters": 172, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 42 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7875, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2498.1869479866095, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.47, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 4.86, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.47 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", + "8f39e220-8ec5-4425-b9f8-90e418e7d6d3", + "3481b163-efe1-4b08-b6af-eecb2141ddbe", + "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", + "acb7092d-3b2a-4d79-a4e3-09e7e52af475", + "156c412f-0b84-4b14-a73e-e1d07d0b148d", + "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", + "c467599b-2164-4b14-b9ca-8960936bda58", + "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", + "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", + "4122212c-2ecd-4db2-a305-20f02711d17b", + "9f622393-7da9-4ff8-9bda-12008512c7ed", + "10c2e9e3-14c8-465a-917c-28c8d9977609", + "fd67ddde-e938-481c-8721-79fa136304ae", + "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", + "5f21960f-8919-4407-8a49-57c39947c4fe", + "cc43f372-04e8-4c4c-b711-2e4159e3855d", + "9b7055a8-adca-44c6-9935-6026756d4460", + "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "0a5574e2-bc64-452e-aa4a-d40291008573", + "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "907f8610-452b-440d-849b-c803b07dedc1", + "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38" + ], + "stops": [], + "line_id": "03325740-8fd8-4309-a150-bf5624bb8be9", + "segments": [ + 0, + 7, + 28, + 40, + 71, + 89, + 91, + 96, + 104, + 107, + 109, + 112, + 116, + 118, + 125, + 134, + 139, + 142, + 146, + 147, + 149, + 151, + 153, + 155 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 390, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.478926, + 45.478915 + ], + [ + -73.479078, + 45.478918 + ], + [ + -73.479175, + 45.478922 + ], + [ + -73.479295, + 45.478922 + ], + [ + -73.479623, + 45.478936 + ], + [ + -73.480089, + 45.478949 + ], + [ + -73.481631, + 45.478977 + ], + [ + -73.482205, + 45.478986 + ], + [ + -73.482357, + 45.478989 + ], + [ + -73.482631, + 45.478995 + ], + [ + -73.482756, + 45.478997 + ], + [ + -73.484917, + 45.479027 + ], + [ + -73.485227, + 45.479031 + ], + [ + -73.485584, + 45.479045 + ], + [ + -73.485771, + 45.479058 + ], + [ + -73.486122, + 45.479058 + ], + [ + -73.486149, + 45.479058 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486526, + 45.47904 + ], + [ + -73.486789, + 45.47904 + ], + [ + -73.487039, + 45.479049 + ], + [ + -73.491329, + 45.479132 + ], + [ + -73.4915, + 45.479136 + ], + [ + -73.491713, + 45.47914 + ], + [ + -73.49213, + 45.479149 + ], + [ + -73.493367, + 45.479162 + ], + [ + -73.495803, + 45.479202 + ], + [ + -73.496137, + 45.479208 + ], + [ + -73.496207, + 45.479208 + ], + [ + -73.496272, + 45.479208 + ], + [ + -73.497101, + 45.479217 + ], + [ + -73.497981, + 45.479231 + ], + [ + -73.498188, + 45.479235 + ], + [ + -73.498413, + 45.479239 + ], + [ + -73.498669, + 45.479235 + ], + [ + -73.498683, + 45.479234 + ], + [ + -73.498818, + 45.47923 + ], + [ + -73.499162, + 45.479257 + ], + [ + -73.49961, + 45.479198 + ], + [ + -73.500019, + 45.479082 + ], + [ + -73.500107, + 45.478998 + ], + [ + -73.500272, + 45.479047 + ], + [ + -73.500354, + 45.479074 + ], + [ + -73.500428, + 45.479084 + ], + [ + -73.500459, + 45.479088 + ], + [ + -73.500565, + 45.479065 + ], + [ + -73.500641, + 45.479027 + ], + [ + -73.500662, + 45.478997 + ], + [ + -73.500703, + 45.478888 + ], + [ + -73.500708, + 45.478848 + ], + [ + -73.500618, + 45.478724 + ], + [ + -73.500601, + 45.478716 + ], + [ + -73.500554, + 45.478697 + ], + [ + -73.500465, + 45.47866 + ], + [ + -73.500394, + 45.478632 + ], + [ + -73.500191, + 45.478362 + ], + [ + -73.500102, + 45.478164 + ], + [ + -73.500052, + 45.478083 + ], + [ + -73.500034, + 45.478051 + ], + [ + -73.499927, + 45.477858 + ], + [ + -73.499728, + 45.477516 + ], + [ + -73.49902, + 45.476223 + ], + [ + -73.498986, + 45.476162 + ], + [ + -73.49875, + 45.475721 + ], + [ + -73.498676, + 45.475532 + ], + [ + -73.498471, + 45.475001 + ], + [ + -73.498395, + 45.474902 + ], + [ + -73.498245, + 45.474839 + ], + [ + -73.498064, + 45.474821 + ], + [ + -73.497868, + 45.474818 + ], + [ + -73.497243, + 45.474807 + ], + [ + -73.496473, + 45.474726 + ], + [ + -73.495455, + 45.474677 + ], + [ + -73.495312, + 45.474669 + ], + [ + -73.494958, + 45.47465 + ], + [ + -73.494447, + 45.474632 + ], + [ + -73.493546, + 45.474611 + ], + [ + -73.49348, + 45.474609 + ], + [ + -73.492987, + 45.474582 + ], + [ + -73.492833, + 45.474564 + ], + [ + -73.492566, + 45.474483 + ], + [ + -73.4924, + 45.474429 + ], + [ + -73.492221, + 45.474321 + ], + [ + -73.491964, + 45.474047 + ], + [ + -73.491842, + 45.473885 + ], + [ + -73.491633, + 45.473652 + ], + [ + -73.491514, + 45.47352 + ], + [ + -73.490819, + 45.472701 + ], + [ + -73.490153, + 45.471896 + ], + [ + -73.490057, + 45.471779 + ], + [ + -73.489969, + 45.471675 + ], + [ + -73.489868, + 45.47172 + ], + [ + -73.489522, + 45.471873 + ], + [ + -73.489116, + 45.472013 + ], + [ + -73.48901, + 45.472049 + ], + [ + -73.488898, + 45.472089 + ], + [ + -73.488483, + 45.472229 + ], + [ + -73.48807, + 45.472359 + ], + [ + -73.48703, + 45.472701 + ], + [ + -73.486715, + 45.472804 + ], + [ + -73.48607, + 45.47302 + ], + [ + -73.485914, + 45.473065 + ], + [ + -73.485421, + 45.473196 + ], + [ + -73.485194, + 45.47325 + ], + [ + -73.484873, + 45.473304 + ], + [ + -73.484747, + 45.473331 + ], + [ + -73.484539, + 45.473353 + ], + [ + -73.484309, + 45.47338 + ], + [ + -73.484047, + 45.473403 + ], + [ + -73.483794, + 45.473414 + ], + [ + -73.483761, + 45.473416 + ], + [ + -73.483613, + 45.473425 + ], + [ + -73.48263, + 45.473402 + ], + [ + -73.47906, + 45.473289 + ], + [ + -73.478915, + 45.473285 + ], + [ + -73.476016, + 45.473194 + ], + [ + -73.47556, + 45.473217 + ], + [ + -73.475367, + 45.473239 + ], + [ + -73.475163, + 45.47327 + ], + [ + -73.474723, + 45.473364 + ], + [ + -73.474613, + 45.473387 + ], + [ + -73.474578, + 45.473317 + ], + [ + -73.474431, + 45.473027 + ], + [ + -73.474274, + 45.472609 + ], + [ + -73.474213, + 45.472397 + ], + [ + -73.474173, + 45.472208 + ], + [ + -73.474165, + 45.472163 + ], + [ + -73.474141, + 45.472028 + ], + [ + -73.474134, + 45.471985 + ], + [ + -73.47411, + 45.47183 + ], + [ + -73.474121, + 45.471228 + ], + [ + -73.474166, + 45.470967 + ], + [ + -73.474399, + 45.469698 + ], + [ + -73.474428, + 45.469538 + ], + [ + -73.474454, + 45.469396 + ], + [ + -73.474489, + 45.469055 + ], + [ + -73.474521, + 45.468786 + ], + [ + -73.474529, + 45.468717 + ], + [ + -73.474534, + 45.468636 + ], + [ + -73.474544, + 45.468492 + ], + [ + -73.474545, + 45.468488 + ], + [ + -73.474528, + 45.468236 + ], + [ + -73.474508, + 45.467936 + ], + [ + -73.474508, + 45.467294 + ], + [ + -73.474542, + 45.4665 + ], + [ + -73.474546, + 45.466404 + ], + [ + -73.474554, + 45.466199 + ], + [ + -73.474621, + 45.465194 + ], + [ + -73.474664, + 45.464506 + ], + [ + -73.474669, + 45.464397 + ], + [ + -73.474734, + 45.464067 + ], + [ + -73.474884, + 45.463697 + ], + [ + -73.475002, + 45.463492 + ], + [ + -73.47522, + 45.463212 + ], + [ + -73.475408, + 45.463039 + ], + [ + -73.47556, + 45.462909 + ], + [ + -73.475821, + 45.462711 + ], + [ + -73.476105, + 45.462495 + ], + [ + -73.47646, + 45.462245 + ], + [ + -73.476557, + 45.462176 + ], + [ + -73.477249, + 45.461685 + ], + [ + -73.478237, + 45.460939 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.47888, + 45.460399 + ], + [ + -73.479008, + 45.460264 + ], + [ + -73.479302, + 45.459904 + ], + [ + -73.479398, + 45.459769 + ], + [ + -73.479488, + 45.459616 + ], + [ + -73.479616, + 45.459382 + ], + [ + -73.479653, + 45.459302 + ], + [ + -73.479699, + 45.459202 + ], + [ + -73.47976, + 45.459027 + ], + [ + -73.479776, + 45.458968 + ], + [ + -73.479808, + 45.458865 + ], + [ + -73.479852, + 45.458707 + ], + [ + -73.479891, + 45.458478 + ], + [ + -73.479913, + 45.458325 + ], + [ + -73.479923, + 45.458145 + ], + [ + -73.479926, + 45.458073 + ], + [ + -73.479893, + 45.457659 + ], + [ + -73.479819, + 45.45689 + ], + [ + -73.479803, + 45.456723 + ], + [ + -73.479792, + 45.456611 + ], + [ + -73.479747, + 45.456084 + ], + [ + -73.479731, + 45.4559 + ], + [ + -73.479696, + 45.455396 + ], + [ + -73.479645, + 45.454845 + ], + [ + -73.479629, + 45.454671 + ], + [ + -73.479566, + 45.454028 + ], + [ + -73.479521, + 45.453709 + ], + [ + -73.47946, + 45.45338 + ], + [ + -73.479374, + 45.453016 + ], + [ + -73.479306, + 45.452759 + ], + [ + -73.479278, + 45.452656 + ], + [ + -73.479074, + 45.452084 + ], + [ + -73.478902, + 45.451688 + ], + [ + -73.478649, + 45.451162 + ], + [ + -73.478451, + 45.450779 + ], + [ + -73.47833, + 45.450536 + ], + [ + -73.478167, + 45.450257 + ], + [ + -73.478007, + 45.45005 + ], + [ + -73.478004, + 45.450046 + ], + [ + -73.477921, + 45.449951 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.4775, + 45.449189 + ] + ] + }, + "id": 391, + "properties": { + "id": "d8fa3477-fe5f-4913-ad86-9e706fb3b5f8", + "data": { + "gtfs": { + "shape_id": "695_1_A" + }, + "segments": [ + { + "distanceMeters": 268, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 420, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 336, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 565, + "travelTimeSeconds": 89 + }, + { + "distanceMeters": 399, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 138, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 285, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 84, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 774, + "travelTimeSeconds": 122 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 271, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 25 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7198, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3313.0174595807075, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.31, + "travelTimeWithoutDwellTimesSeconds": 1140, + "operatingTimeWithLayoverTimeSeconds": 1320, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1140, + "operatingSpeedWithLayoverMetersPerSecond": 5.45, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.31 + }, + "mode": "bus", + "name": "École Lucille-Teasdale", + "color": "#A32638", + "nodes": [ + "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", + "528dcb9e-5a83-46d3-8e03-42692ca57a5a", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", + "6b54424b-6f85-4448-8e7d-a05da4ef5b95", + "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", + "aa2b19e6-8fc9-4313-8ff2-0087861c575d", + "28d21225-939d-4260-9ed4-5c109f412ad9", + "be011751-8885-454f-b767-5c0f1402d83f", + "c6165892-3719-417f-8d25-92e65471b42c", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", + "2ef5dac7-c226-43bb-8534-6642e7a8ab89", + "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", + "3a8b9936-4595-4770-a3f4-b31253602356", + "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", + "87774b57-5ee3-418d-948c-ba4db73d3893", + "c25adb1f-635e-4881-a89d-af8a9ea5ca92", + "4509b80b-76a5-49de-acb2-533a50bafac5", + "fe1d7eea-bdc6-4263-a13b-eb6645c5e393" + ], + "stops": [], + "line_id": "9c5e775b-df6b-4c50-a1e3-479109a4a402", + "segments": [ + 0, + 8, + 15, + 23, + 27, + 32, + 62, + 74, + 77, + 86, + 89, + 99, + 110, + 114, + 120, + 129, + 134, + 137, + 159, + 162, + 170, + 181, + 187, + 193, + 201 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 391, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.4775, + 45.449189 + ], + [ + -73.477354, + 45.449101 + ], + [ + -73.476598, + 45.448646 + ], + [ + -73.476493, + 45.448669 + ], + [ + -73.476429, + 45.448682 + ], + [ + -73.476264, + 45.448894 + ], + [ + -73.476196, + 45.449002 + ], + [ + -73.47626, + 45.449029 + ], + [ + -73.476498, + 45.449128 + ], + [ + -73.476722, + 45.449231 + ], + [ + -73.476897, + 45.449321 + ], + [ + -73.477126, + 45.449456 + ], + [ + -73.477278, + 45.449564 + ], + [ + -73.477431, + 45.449681 + ], + [ + -73.477567, + 45.449794 + ], + [ + -73.477783, + 45.450014 + ], + [ + -73.477866, + 45.4501 + ], + [ + -73.478024, + 45.450307 + ], + [ + -73.478182, + 45.450577 + ], + [ + -73.4785, + 45.451198 + ], + [ + -73.478751, + 45.451724 + ], + [ + -73.478921, + 45.452116 + ], + [ + -73.479084, + 45.452568 + ], + [ + -73.479123, + 45.452678 + ], + [ + -73.479207, + 45.453038 + ], + [ + -73.479292, + 45.453398 + ], + [ + -73.479352, + 45.453722 + ], + [ + -73.479396, + 45.454042 + ], + [ + -73.47947, + 45.454759 + ], + [ + -73.47953, + 45.455342 + ], + [ + -73.479549, + 45.455666 + ], + [ + -73.479585, + 45.456089 + ], + [ + -73.479606, + 45.456391 + ], + [ + -73.479622, + 45.456606 + ], + [ + -73.479632, + 45.456719 + ], + [ + -73.47968, + 45.457234 + ], + [ + -73.47972, + 45.457668 + ], + [ + -73.479747, + 45.458082 + ], + [ + -73.479754, + 45.45832 + ], + [ + -73.479732, + 45.458469 + ], + [ + -73.479695, + 45.458689 + ], + [ + -73.479603, + 45.459 + ], + [ + -73.479545, + 45.459171 + ], + [ + -73.479522, + 45.459219 + ], + [ + -73.479465, + 45.459342 + ], + [ + -73.479339, + 45.459576 + ], + [ + -73.479253, + 45.45972 + ], + [ + -73.479162, + 45.45985 + ], + [ + -73.478872, + 45.460205 + ], + [ + -73.478751, + 45.460331 + ], + [ + -73.47834, + 45.460685 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.476665, + 45.46196 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.474374, + 45.468205 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.47439, + 45.468704 + ], + [ + -73.474292, + 45.469387 + ], + [ + -73.474263, + 45.469539 + ], + [ + -73.474234, + 45.469689 + ], + [ + -73.474156, + 45.470095 + ], + [ + -73.474035, + 45.470724 + ], + [ + -73.473974, + 45.47107 + ], + [ + -73.473942, + 45.471336 + ], + [ + -73.473932, + 45.471601 + ], + [ + -73.473936, + 45.471662 + ], + [ + -73.473947, + 45.471826 + ], + [ + -73.473986, + 45.472118 + ], + [ + -73.473998, + 45.472177 + ], + [ + -73.474046, + 45.47242 + ], + [ + -73.474106, + 45.47264 + ], + [ + -73.474275, + 45.473063 + ], + [ + -73.474463, + 45.473437 + ], + [ + -73.474513, + 45.473518 + ], + [ + -73.474653, + 45.473477 + ], + [ + -73.475183, + 45.473387 + ], + [ + -73.475204, + 45.473383 + ], + [ + -73.475207, + 45.473382 + ], + [ + -73.4754, + 45.473356 + ], + [ + -73.47558, + 45.473334 + ], + [ + -73.476017, + 45.473311 + ], + [ + -73.478707, + 45.4734 + ], + [ + -73.478906, + 45.473406 + ], + [ + -73.482444, + 45.473518 + ], + [ + -73.482622, + 45.473524 + ], + [ + -73.483288, + 45.473542 + ], + [ + -73.483471, + 45.473542 + ], + [ + -73.483606, + 45.473542 + ], + [ + -73.484062, + 45.473524 + ], + [ + -73.484567, + 45.473475 + ], + [ + -73.484784, + 45.473448 + ], + [ + -73.485243, + 45.473362 + ], + [ + -73.485556, + 45.473295 + ], + [ + -73.485862, + 45.473204 + ], + [ + -73.485874, + 45.4732 + ], + [ + -73.485995, + 45.473164 + ], + [ + -73.486151, + 45.473119 + ], + [ + -73.486633, + 45.472962 + ], + [ + -73.486787, + 45.472912 + ], + [ + -73.488142, + 45.472472 + ], + [ + -73.488555, + 45.472341 + ], + [ + -73.488966, + 45.472197 + ], + [ + -73.489081, + 45.472161 + ], + [ + -73.489198, + 45.472121 + ], + [ + -73.489607, + 45.471977 + ], + [ + -73.489816, + 45.471885 + ], + [ + -73.490057, + 45.471779 + ], + [ + -73.4902, + 45.471953 + ], + [ + -73.490819, + 45.472701 + ], + [ + -73.491108, + 45.473042 + ], + [ + -73.491514, + 45.47352 + ], + [ + -73.491842, + 45.473885 + ], + [ + -73.491964, + 45.474047 + ], + [ + -73.492221, + 45.474321 + ], + [ + -73.4924, + 45.474429 + ], + [ + -73.492566, + 45.474483 + ], + [ + -73.492833, + 45.474564 + ], + [ + -73.492987, + 45.474582 + ], + [ + -73.493312, + 45.4746 + ], + [ + -73.49348, + 45.474609 + ], + [ + -73.494447, + 45.474632 + ], + [ + -73.494958, + 45.47465 + ], + [ + -73.495308, + 45.474669 + ], + [ + -73.495455, + 45.474677 + ], + [ + -73.496473, + 45.474726 + ], + [ + -73.497243, + 45.474807 + ], + [ + -73.498064, + 45.474821 + ], + [ + -73.498721, + 45.476029 + ], + [ + -73.498798, + 45.476171 + ], + [ + -73.499541, + 45.477511 + ], + [ + -73.499719, + 45.477795 + ], + [ + -73.499782, + 45.477895 + ], + [ + -73.49991, + 45.478097 + ], + [ + -73.499973, + 45.478195 + ], + [ + -73.50001, + 45.478273 + ], + [ + -73.500209, + 45.478682 + ], + [ + -73.500175, + 45.478743 + ], + [ + -73.500117, + 45.478833 + ], + [ + -73.500062, + 45.478934 + ], + [ + -73.499809, + 45.479021 + ], + [ + -73.4995, + 45.479103 + ], + [ + -73.498818, + 45.47923 + ], + [ + -73.498683, + 45.479234 + ], + [ + -73.498669, + 45.479235 + ], + [ + -73.498482, + 45.479238 + ], + [ + -73.498413, + 45.479239 + ], + [ + -73.498188, + 45.479235 + ], + [ + -73.497101, + 45.479217 + ], + [ + -73.496432, + 45.479209 + ], + [ + -73.496272, + 45.479208 + ], + [ + -73.496207, + 45.479208 + ], + [ + -73.496137, + 45.479208 + ], + [ + -73.493367, + 45.479162 + ], + [ + -73.49213, + 45.479149 + ], + [ + -73.491873, + 45.479143 + ], + [ + -73.491713, + 45.47914 + ], + [ + -73.491329, + 45.479132 + ], + [ + -73.487039, + 45.479049 + ], + [ + -73.486789, + 45.47904 + ], + [ + -73.486648, + 45.47904 + ], + [ + -73.486526, + 45.47904 + ], + [ + -73.486424, + 45.479045 + ], + [ + -73.486246, + 45.479054 + ], + [ + -73.486149, + 45.479058 + ], + [ + -73.485771, + 45.479058 + ], + [ + -73.485584, + 45.479045 + ], + [ + -73.485227, + 45.479031 + ], + [ + -73.484917, + 45.479027 + ], + [ + -73.482807, + 45.478997 + ], + [ + -73.482756, + 45.478997 + ], + [ + -73.482631, + 45.478995 + ], + [ + -73.482205, + 45.478986 + ], + [ + -73.481631, + 45.478977 + ], + [ + -73.480089, + 45.478949 + ], + [ + -73.479623, + 45.478936 + ], + [ + -73.479295, + 45.478922 + ], + [ + -73.479286, + 45.478922 + ] + ] + }, + "id": 392, + "properties": { + "id": "2ee1fcc2-a2fc-4a5d-a7be-d9acccee9a97", + "data": { + "gtfs": { + "shape_id": "695_2_R" + }, + "segments": [ + { + "distanceMeters": 619, + "travelTimeSeconds": 97 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 94, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 223, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 750, + "travelTimeSeconds": 118 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 66, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 276, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 260, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 360, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 477, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 356, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 300, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 44 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 7261, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3313.0174595807075, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.37, + "travelTimeWithoutDwellTimesSeconds": 1140, + "operatingTimeWithLayoverTimeSeconds": 1320, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1140, + "operatingSpeedWithLayoverMetersPerSecond": 5.5, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.37 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", + "c25adb1f-635e-4881-a89d-af8a9ea5ca92", + "87774b57-5ee3-418d-948c-ba4db73d3893", + "1ea7db5e-3ee6-4553-9276-7c24296c866d", + "9a86a407-515f-4b5e-8a56-9a4c52c91c96", + "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "be3bd929-da81-47c1-9a06-fee0adc72da5", + "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", + "3a8b9936-4595-4770-a3f4-b31253602356", + "80a85fd6-8b7e-4c4c-b616-26338ab496f1", + "2ef5dac7-c226-43bb-8534-6642e7a8ab89", + "a9b02686-8465-48b9-89ba-773a03aed1e8", + "17fd1ec9-db8e-4d18-a174-72ce7cb4c434", + "b92e7022-9719-4479-bc45-c3dac5a8d257", + "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "c6165892-3719-417f-8d25-92e65471b42c", + "be011751-8885-454f-b767-5c0f1402d83f", + "28d21225-939d-4260-9ed4-5c109f412ad9", + "aa2b19e6-8fc9-4313-8ff2-0087861c575d", + "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", + "6b54424b-6f85-4448-8e7d-a05da4ef5b95", + "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", + "dfda995e-8686-4f89-a9b1-4109795a27c3", + "528dcb9e-5a83-46d3-8e03-42692ca57a5a", + "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498" + ], + "stops": [], + "line_id": "9c5e775b-df6b-4c50-a1e3-479109a4a402", + "segments": [ + 0, + 22, + 28, + 32, + 35, + 43, + 50, + 52, + 80, + 85, + 92, + 104, + 108, + 110, + 120, + 124, + 132, + 136, + 145, + 149, + 154, + 171, + 175, + 181, + 186, + 195 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 392, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.454651, + 45.465626 + ], + [ + -73.45456, + 45.465692 + ], + [ + -73.453819, + 45.466205 + ], + [ + -73.453432, + 45.466434 + ], + [ + -73.453035, + 45.466641 + ], + [ + -73.452922, + 45.46669 + ], + [ + -73.45278, + 45.466751 + ], + [ + -73.452589, + 45.466834 + ], + [ + -73.451705, + 45.467139 + ], + [ + -73.451627, + 45.467166 + ], + [ + -73.45158, + 45.467183 + ], + [ + -73.451009, + 45.46738 + ], + [ + -73.450937, + 45.467405 + ], + [ + -73.450156, + 45.467679 + ], + [ + -73.449888, + 45.467769 + ], + [ + -73.449338, + 45.467948 + ], + [ + -73.44837, + 45.46829 + ], + [ + -73.447748, + 45.468524 + ], + [ + -73.447289, + 45.468721 + ], + [ + -73.446421, + 45.469171 + ], + [ + -73.44631, + 45.469229 + ], + [ + -73.445905, + 45.469485 + ], + [ + -73.445671, + 45.469643 + ], + [ + -73.445475, + 45.469778 + ], + [ + -73.445396, + 45.469832 + ], + [ + -73.445298, + 45.469899 + ], + [ + -73.444328, + 45.470583 + ], + [ + -73.444073, + 45.470763 + ], + [ + -73.442655, + 45.471763 + ], + [ + -73.442644, + 45.471771 + ], + [ + -73.442519, + 45.471859 + ], + [ + -73.441942, + 45.47227 + ], + [ + -73.441019, + 45.472928 + ], + [ + -73.44089, + 45.473019 + ], + [ + -73.440133, + 45.47251 + ], + [ + -73.439193, + 45.471877 + ], + [ + -73.438158, + 45.471179 + ], + [ + -73.438035, + 45.471097 + ], + [ + -73.435594, + 45.469484 + ], + [ + -73.435506, + 45.469426 + ], + [ + -73.434523, + 45.468775 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.434426, + 45.468557 + ], + [ + -73.434574, + 45.46844 + ], + [ + -73.434603, + 45.468421 + ], + [ + -73.434654, + 45.468386 + ], + [ + -73.434706, + 45.46835 + ], + [ + -73.43479, + 45.468319 + ], + [ + -73.434953, + 45.468251 + ], + [ + -73.435208, + 45.468188 + ], + [ + -73.435895, + 45.468018 + ], + [ + -73.437598, + 45.467581 + ], + [ + -73.437909, + 45.467502 + ], + [ + -73.438637, + 45.467322 + ], + [ + -73.438692, + 45.467309 + ], + [ + -73.439001, + 45.46721 + ], + [ + -73.439742, + 45.466711 + ], + [ + -73.439775, + 45.466686 + ], + [ + -73.440049, + 45.466474 + ], + [ + -73.440337, + 45.466252 + ], + [ + -73.440976, + 45.46578 + ], + [ + -73.440101, + 45.465189 + ], + [ + -73.438668, + 45.46422 + ], + [ + -73.438391, + 45.464033 + ], + [ + -73.438331, + 45.463826 + ], + [ + -73.4383, + 45.463696 + ], + [ + -73.438272, + 45.463574 + ], + [ + -73.438292, + 45.463399 + ], + [ + -73.438344, + 45.463264 + ], + [ + -73.438333, + 45.463115 + ], + [ + -73.438984, + 45.462639 + ], + [ + -73.43934, + 45.462423 + ], + [ + -73.439564, + 45.462315 + ], + [ + -73.439819, + 45.462232 + ], + [ + -73.439923, + 45.462198 + ], + [ + -73.440096, + 45.462131 + ], + [ + -73.44047, + 45.46196 + ], + [ + -73.440903, + 45.461686 + ], + [ + -73.442487, + 45.460609 + ], + [ + -73.44257, + 45.460553 + ], + [ + -73.443294, + 45.460085 + ], + [ + -73.444686, + 45.459087 + ], + [ + -73.444921, + 45.458939 + ], + [ + -73.44522, + 45.458817 + ], + [ + -73.445516, + 45.458705 + ], + [ + -73.445635, + 45.458683 + ], + [ + -73.445566, + 45.458548 + ], + [ + -73.445519, + 45.458431 + ], + [ + -73.445499, + 45.458359 + ], + [ + -73.445487, + 45.458269 + ], + [ + -73.445484, + 45.458192 + ], + [ + -73.445494, + 45.458098 + ], + [ + -73.445517, + 45.45799 + ], + [ + -73.445533, + 45.457936 + ], + [ + -73.44556, + 45.457868 + ], + [ + -73.445587, + 45.457814 + ], + [ + -73.445622, + 45.45776 + ], + [ + -73.445677, + 45.457684 + ], + [ + -73.445734, + 45.457616 + ], + [ + -73.445802, + 45.457549 + ], + [ + -73.44586, + 45.457499 + ], + [ + -73.446093, + 45.457338 + ], + [ + -73.446222, + 45.457252 + ], + [ + -73.446277, + 45.457216 + ], + [ + -73.446296, + 45.457204 + ], + [ + -73.446306, + 45.457198 + ], + [ + -73.446333, + 45.457189 + ], + [ + -73.446356, + 45.457189 + ], + [ + -73.446378, + 45.457189 + ], + [ + -73.446401, + 45.457189 + ], + [ + -73.446422, + 45.457203 + ], + [ + -73.446491, + 45.457243 + ], + [ + -73.446522, + 45.457266 + ], + [ + -73.446542, + 45.457279 + ], + [ + -73.446704, + 45.457387 + ], + [ + -73.447008, + 45.457621 + ], + [ + -73.447347, + 45.457863 + ], + [ + -73.44872, + 45.458837 + ], + [ + -73.449148, + 45.459368 + ], + [ + -73.449533, + 45.459751 + ], + [ + -73.450156, + 45.460237 + ], + [ + -73.450867, + 45.460728 + ], + [ + -73.451566, + 45.461218 + ], + [ + -73.45285, + 45.462125 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.452835, + 45.462344 + ], + [ + -73.452775, + 45.462447 + ], + [ + -73.452703, + 45.4626 + ], + [ + -73.452685, + 45.462655 + ], + [ + -73.452663, + 45.462722 + ], + [ + -73.452634, + 45.462879 + ], + [ + -73.45263, + 45.463001 + ], + [ + -73.452662, + 45.463158 + ], + [ + -73.452721, + 45.463379 + ], + [ + -73.452802, + 45.463536 + ], + [ + -73.452912, + 45.463662 + ], + [ + -73.453261, + 45.463932 + ], + [ + -73.453543, + 45.464139 + ], + [ + -73.453617, + 45.464193 + ], + [ + -73.453971, + 45.464449 + ], + [ + -73.45432, + 45.464702 + ], + [ + -73.454645, + 45.464929 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.455291, + 45.465378 + ], + [ + -73.455597, + 45.465209 + ], + [ + -73.455721, + 45.465163 + ], + [ + -73.455952, + 45.465079 + ], + [ + -73.456078, + 45.465023 + ], + [ + -73.456262, + 45.464907 + ], + [ + -73.456407, + 45.464824 + ], + [ + -73.456567, + 45.464772 + ], + [ + -73.456717, + 45.464744 + ], + [ + -73.456888, + 45.464733 + ], + [ + -73.457035, + 45.464719 + ], + [ + -73.45718, + 45.464674 + ], + [ + -73.457301, + 45.4646 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457473, + 45.46447 + ], + [ + -73.457535, + 45.464441 + ], + [ + -73.457603, + 45.46442 + ], + [ + -73.457626, + 45.464413 + ], + [ + -73.457735, + 45.464395 + ], + [ + -73.457836, + 45.464393 + ], + [ + -73.457944, + 45.464401 + ], + [ + -73.458017, + 45.46441 + ], + [ + -73.45812, + 45.464427 + ], + [ + -73.458231, + 45.464451 + ], + [ + -73.458392, + 45.464491 + ], + [ + -73.458598, + 45.464536 + ], + [ + -73.458915, + 45.464603 + ], + [ + -73.459184, + 45.464658 + ], + [ + -73.459848, + 45.464797 + ], + [ + -73.460341, + 45.46487 + ], + [ + -73.460876, + 45.464928 + ], + [ + -73.461292, + 45.464968 + ], + [ + -73.461888, + 45.465033 + ], + [ + -73.462599, + 45.465146 + ], + [ + -73.463202, + 45.465285 + ], + [ + -73.463734, + 45.465422 + ], + [ + -73.464137, + 45.465531 + ], + [ + -73.464519, + 45.465639 + ], + [ + -73.464829, + 45.465721 + ], + [ + -73.465021, + 45.465762 + ], + [ + -73.465202, + 45.465781 + ], + [ + -73.465352, + 45.4658 + ], + [ + -73.465498, + 45.465796 + ], + [ + -73.465647, + 45.465796 + ], + [ + -73.465791, + 45.465789 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466488, + 45.465573 + ], + [ + -73.466352, + 45.465288 + ], + [ + -73.466238, + 45.465062 + ], + [ + -73.466142, + 45.464853 + ], + [ + -73.466048, + 45.464638 + ], + [ + -73.46599, + 45.464498 + ], + [ + -73.465967, + 45.464441 + ], + [ + -73.465777, + 45.463945 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465663, + 45.463449 + ], + [ + -73.465646, + 45.463238 + ], + [ + -73.465636, + 45.463073 + ], + [ + -73.465461, + 45.461275 + ], + [ + -73.465446, + 45.461128 + ], + [ + -73.465251, + 45.459263 + ], + [ + -73.465215, + 45.458888 + ], + [ + -73.465199, + 45.458728 + ], + [ + -73.465132, + 45.458038 + ], + [ + -73.465113, + 45.457592 + ], + [ + -73.465124, + 45.457143 + ], + [ + -73.465143, + 45.45685 + ], + [ + -73.465153, + 45.456755 + ], + [ + -73.465199, + 45.456301 + ], + [ + -73.465244, + 45.456 + ], + [ + -73.465335, + 45.455572 + ], + [ + -73.465339, + 45.455554 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465617, + 45.454677 + ], + [ + -73.465629, + 45.454641 + ], + [ + -73.465632, + 45.454636 + ], + [ + -73.465694, + 45.454481 + ], + [ + -73.465735, + 45.45438 + ], + [ + -73.465853, + 45.45411 + ], + [ + -73.466087, + 45.453654 + ], + [ + -73.46613, + 45.45357 + ], + [ + -73.466877, + 45.452297 + ], + [ + -73.467521, + 45.451236 + ], + [ + -73.468182, + 45.450183 + ], + [ + -73.469986, + 45.447403 + ], + [ + -73.470055, + 45.447298 + ], + [ + -73.470111, + 45.447211 + ], + [ + -73.470215, + 45.447052 + ], + [ + -73.471183, + 45.44739 + ], + [ + -73.471746, + 45.44757 + ], + [ + -73.472443, + 45.447795 + ], + [ + -73.473347, + 45.448088 + ], + [ + -73.473437, + 45.448115 + ], + [ + -73.475223, + 45.448691 + ], + [ + -73.475787, + 45.448871 + ], + [ + -73.476196, + 45.449002 + ], + [ + -73.476498, + 45.449128 + ], + [ + -73.476722, + 45.449231 + ], + [ + -73.476897, + 45.449321 + ], + [ + -73.477126, + 45.449456 + ], + [ + -73.477278, + 45.449564 + ], + [ + -73.477431, + 45.449681 + ], + [ + -73.477567, + 45.449794 + ], + [ + -73.477697, + 45.449927 + ], + [ + -73.477783, + 45.450014 + ], + [ + -73.477921, + 45.449951 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.4775, + 45.449189 + ] + ] + }, + "id": 393, + "properties": { + "id": "7e0a5cff-1244-4d31-bbb6-fba303fd976d", + "data": { + "gtfs": { + "shape_id": "696_1_A" + }, + "segments": [ + { + "distanceMeters": 193, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 155, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 411, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 255, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 310, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 275, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 55, + "travelTimeSeconds": 9 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 356, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 287, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 1272, + "travelTimeSeconds": 200 + }, + { + "distanceMeters": 66, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 1518, + "travelTimeSeconds": 238 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 477, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 898, + "travelTimeSeconds": 141 + }, + { + "distanceMeters": 861, + "travelTimeSeconds": 136 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9161, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2555.4553839081764, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.36, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 5.65, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.36 + }, + "mode": "bus", + "name": "École Lucille-Teasdale", + "color": "#A32638", + "nodes": [ + "bd9b4c12-08ed-4715-ae67-eb179ed7f974", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "ff779c9a-cd83-463a-8d0c-a93f3584a187", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", + "c8919560-2bb2-4063-8184-8e6c296badbe", + "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", + "14e293a6-352a-4156-8578-66d0b5bdcc1f", + "62558b4d-75af-4b04-8040-a30de5a89658", + "988c86da-04eb-4067-b650-f13c447b17e7", + "4827a17d-8dc9-4cbd-8430-3334ebece64a", + "504cb53f-f1f4-46f2-81f5-f99fef8227fd", + "a02ece0d-dd7f-42ce-ab40-b24192e1114e", + "af14ce12-74fa-4edf-a439-c058d0014323", + "735e4ba2-6503-4586-98da-feccec61a212", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "b6dfeeab-9981-4db8-9a90-2e14691bf516", + "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", + "74887516-47d5-4269-9513-84672d18e287", + "1e3a74d9-9d8a-467f-a82e-3dafee501e32", + "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", + "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", + "fe1d7eea-bdc6-4263-a13b-eb6645c5e393" + ], + "stops": [], + "line_id": "a69faa44-2d07-4242-a96a-f2eb2b3cbc5c", + "segments": [ + 0, + 6, + 11, + 19, + 27, + 28, + 32, + 36, + 38, + 40, + 44, + 51, + 58, + 62, + 73, + 78, + 123, + 128, + 137, + 141, + 203, + 205, + 220, + 231 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 393, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.4775, + 45.449189 + ], + [ + -73.477354, + 45.449101 + ], + [ + -73.476598, + 45.448646 + ], + [ + -73.476493, + 45.448669 + ], + [ + -73.476429, + 45.448682 + ], + [ + -73.476264, + 45.448894 + ], + [ + -73.475856, + 45.448768 + ], + [ + -73.475454, + 45.448632 + ], + [ + -73.475296, + 45.448579 + ], + [ + -73.474198, + 45.448236 + ], + [ + -73.473507, + 45.448007 + ], + [ + -73.47251, + 45.447683 + ], + [ + -73.471666, + 45.447408 + ], + [ + -73.471252, + 45.447282 + ], + [ + -73.47028, + 45.446953 + ], + [ + -73.470002, + 45.446863 + ], + [ + -73.469936, + 45.446962 + ], + [ + -73.469888, + 45.447037 + ], + [ + -73.4697, + 45.447326 + ], + [ + -73.467906, + 45.450089 + ], + [ + -73.467328, + 45.451002 + ], + [ + -73.46669, + 45.452054 + ], + [ + -73.465968, + 45.453278 + ], + [ + -73.465918, + 45.453363 + ], + [ + -73.465707, + 45.453755 + ], + [ + -73.46558, + 45.454016 + ], + [ + -73.46536, + 45.454529 + ], + [ + -73.465344, + 45.454574 + ], + [ + -73.465259, + 45.45482 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.465167, + 45.455082 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465048, + 45.455509 + ], + [ + -73.465041, + 45.455536 + ], + [ + -73.464975, + 45.455829 + ], + [ + -73.464919, + 45.45613 + ], + [ + -73.464878, + 45.456427 + ], + [ + -73.464848, + 45.456873 + ], + [ + -73.464844, + 45.457169 + ], + [ + -73.464871, + 45.457574 + ], + [ + -73.46498, + 45.459088 + ], + [ + -73.464994, + 45.459278 + ], + [ + -73.465215, + 45.461562 + ], + [ + -73.465247, + 45.461893 + ], + [ + -73.465168, + 45.462216 + ], + [ + -73.465077, + 45.462593 + ], + [ + -73.464995, + 45.462888 + ], + [ + -73.46481, + 45.463312 + ], + [ + -73.464565, + 45.463588 + ], + [ + -73.464117, + 45.46375 + ], + [ + -73.463733, + 45.463906 + ], + [ + -73.463323, + 45.463985 + ], + [ + -73.462946, + 45.464058 + ], + [ + -73.461977, + 45.464188 + ], + [ + -73.461326, + 45.464235 + ], + [ + -73.460353, + 45.4642 + ], + [ + -73.459906, + 45.464144 + ], + [ + -73.459408, + 45.464052 + ], + [ + -73.458521, + 45.463796 + ], + [ + -73.458275, + 45.463724 + ], + [ + -73.457681, + 45.463496 + ], + [ + -73.457669, + 45.463491 + ], + [ + -73.456975, + 45.463149 + ], + [ + -73.456896, + 45.463092 + ], + [ + -73.456843, + 45.463043 + ], + [ + -73.456777, + 45.462977 + ], + [ + -73.456717, + 45.462912 + ], + [ + -73.456666, + 45.462833 + ], + [ + -73.456625, + 45.462758 + ], + [ + -73.456603, + 45.462667 + ], + [ + -73.456593, + 45.462539 + ], + [ + -73.4566, + 45.462399 + ], + [ + -73.456621, + 45.462264 + ], + [ + -73.456608, + 45.461964 + ], + [ + -73.457019, + 45.462007 + ], + [ + -73.457033, + 45.462012 + ], + [ + -73.457292, + 45.46211 + ], + [ + -73.457369, + 45.46218 + ], + [ + -73.45742, + 45.46227 + ], + [ + -73.45744, + 45.462394 + ], + [ + -73.457465, + 45.462588 + ], + [ + -73.457392, + 45.462758 + ], + [ + -73.457069, + 45.463208 + ], + [ + -73.457053, + 45.463231 + ], + [ + -73.456947, + 45.463378 + ], + [ + -73.456792, + 45.463594 + ], + [ + -73.456553, + 45.463927 + ], + [ + -73.456063, + 45.464611 + ], + [ + -73.45514, + 45.465274 + ], + [ + -73.454379, + 45.464743 + ], + [ + -73.45432, + 45.464702 + ], + [ + -73.454244, + 45.464647 + ], + [ + -73.453971, + 45.464449 + ], + [ + -73.453617, + 45.464193 + ], + [ + -73.453261, + 45.463932 + ], + [ + -73.452912, + 45.463662 + ], + [ + -73.452802, + 45.463536 + ], + [ + -73.452721, + 45.463379 + ], + [ + -73.452662, + 45.463158 + ], + [ + -73.45263, + 45.463001 + ], + [ + -73.452634, + 45.462879 + ], + [ + -73.452663, + 45.462722 + ], + [ + -73.452703, + 45.4626 + ], + [ + -73.452775, + 45.462447 + ], + [ + -73.452835, + 45.462344 + ], + [ + -73.452839, + 45.462338 + ], + [ + -73.452943, + 45.462191 + ], + [ + -73.452639, + 45.461976 + ], + [ + -73.451754, + 45.461351 + ], + [ + -73.451566, + 45.461218 + ], + [ + -73.450867, + 45.460728 + ], + [ + -73.450283, + 45.460325 + ], + [ + -73.450156, + 45.460237 + ], + [ + -73.449533, + 45.459751 + ], + [ + -73.449148, + 45.459368 + ], + [ + -73.448875, + 45.45903 + ], + [ + -73.44872, + 45.458837 + ], + [ + -73.447008, + 45.457621 + ], + [ + -73.446704, + 45.457387 + ], + [ + -73.446542, + 45.457279 + ], + [ + -73.446522, + 45.457266 + ], + [ + -73.446491, + 45.457243 + ], + [ + -73.446422, + 45.457203 + ], + [ + -73.446401, + 45.457189 + ], + [ + -73.446378, + 45.457189 + ], + [ + -73.446356, + 45.457189 + ], + [ + -73.446333, + 45.457189 + ], + [ + -73.446306, + 45.457198 + ], + [ + -73.446296, + 45.457204 + ], + [ + -73.446277, + 45.457216 + ], + [ + -73.446222, + 45.457252 + ], + [ + -73.446093, + 45.457338 + ], + [ + -73.445979, + 45.457417 + ], + [ + -73.44586, + 45.457499 + ], + [ + -73.445839, + 45.457517 + ], + [ + -73.445802, + 45.457549 + ], + [ + -73.445734, + 45.457616 + ], + [ + -73.445677, + 45.457684 + ], + [ + -73.445622, + 45.45776 + ], + [ + -73.445587, + 45.457814 + ], + [ + -73.44556, + 45.457868 + ], + [ + -73.445533, + 45.457936 + ], + [ + -73.445517, + 45.45799 + ], + [ + -73.445494, + 45.458098 + ], + [ + -73.445484, + 45.458192 + ], + [ + -73.445487, + 45.458269 + ], + [ + -73.445499, + 45.458359 + ], + [ + -73.445519, + 45.458431 + ], + [ + -73.445566, + 45.458548 + ], + [ + -73.445584, + 45.458583 + ], + [ + -73.445635, + 45.458683 + ], + [ + -73.445516, + 45.458705 + ], + [ + -73.44522, + 45.458817 + ], + [ + -73.444921, + 45.458939 + ], + [ + -73.444686, + 45.459087 + ], + [ + -73.444124, + 45.45949 + ], + [ + -73.443294, + 45.460085 + ], + [ + -73.442688, + 45.460477 + ], + [ + -73.44257, + 45.460553 + ], + [ + -73.440903, + 45.461686 + ], + [ + -73.44047, + 45.46196 + ], + [ + -73.440096, + 45.462131 + ], + [ + -73.439963, + 45.462183 + ], + [ + -73.439923, + 45.462198 + ], + [ + -73.439564, + 45.462315 + ], + [ + -73.43934, + 45.462423 + ], + [ + -73.438984, + 45.462639 + ], + [ + -73.438333, + 45.463115 + ], + [ + -73.438344, + 45.463264 + ], + [ + -73.438292, + 45.463399 + ], + [ + -73.438272, + 45.463574 + ], + [ + -73.4383, + 45.463696 + ], + [ + -73.438331, + 45.463826 + ], + [ + -73.438391, + 45.464033 + ], + [ + -73.438977, + 45.46443 + ], + [ + -73.440859, + 45.465701 + ], + [ + -73.440976, + 45.46578 + ], + [ + -73.44047, + 45.466154 + ], + [ + -73.440337, + 45.466252 + ], + [ + -73.439775, + 45.466686 + ], + [ + -73.439742, + 45.466711 + ], + [ + -73.439001, + 45.46721 + ], + [ + -73.438692, + 45.467309 + ], + [ + -73.438637, + 45.467322 + ], + [ + -73.438061, + 45.467464 + ], + [ + -73.437909, + 45.467502 + ], + [ + -73.435895, + 45.468018 + ], + [ + -73.434953, + 45.468251 + ], + [ + -73.43479, + 45.468319 + ], + [ + -73.434706, + 45.46835 + ], + [ + -73.434654, + 45.468386 + ], + [ + -73.434574, + 45.46844 + ], + [ + -73.434433, + 45.468551 + ], + [ + -73.434426, + 45.468557 + ], + [ + -73.434317, + 45.468638 + ], + [ + -73.434223, + 45.46871 + ], + [ + -73.434186, + 45.468737 + ], + [ + -73.434698, + 45.469078 + ], + [ + -73.435215, + 45.469421 + ], + [ + -73.435371, + 45.469525 + ], + [ + -73.437723, + 45.471079 + ], + [ + -73.437899, + 45.471196 + ], + [ + -73.440414, + 45.472889 + ], + [ + -73.440734, + 45.473105 + ], + [ + -73.440861, + 45.47319 + ], + [ + -73.440904, + 45.473168 + ], + [ + -73.441015, + 45.473108 + ], + [ + -73.44102, + 45.473105 + ], + [ + -73.44252, + 45.472048 + ], + [ + -73.442653, + 45.471954 + ], + [ + -73.444466, + 45.470668 + ], + [ + -73.444558, + 45.470603 + ], + [ + -73.444692, + 45.470508 + ], + [ + -73.445328, + 45.470057 + ], + [ + -73.445338, + 45.470052 + ], + [ + -73.445622, + 45.469854 + ], + [ + -73.446091, + 45.469543 + ], + [ + -73.446377, + 45.469353 + ], + [ + -73.446414, + 45.469328 + ], + [ + -73.447066, + 45.468996 + ], + [ + -73.4474, + 45.468829 + ], + [ + -73.447822, + 45.468645 + ], + [ + -73.448427, + 45.468407 + ], + [ + -73.449383, + 45.468079 + ], + [ + -73.449742, + 45.467957 + ], + [ + -73.449964, + 45.467881 + ], + [ + -73.450233, + 45.467787 + ], + [ + -73.451014, + 45.467517 + ], + [ + -73.451685, + 45.467271 + ], + [ + -73.451729, + 45.467255 + ], + [ + -73.451774, + 45.467238 + ], + [ + -73.452548, + 45.466971 + ], + [ + -73.452657, + 45.466933 + ], + [ + -73.453014, + 45.466803 + ], + [ + -73.45314, + 45.466749 + ], + [ + -73.453548, + 45.466537 + ], + [ + -73.453946, + 45.466304 + ], + [ + -73.454693, + 45.465786 + ], + [ + -73.454707, + 45.465777 + ] + ] + }, + "id": 394, + "properties": { + "id": "284def9f-928e-41dc-adbc-96d8ed29bc9a", + "data": { + "gtfs": { + "shape_id": "696_2_R" + }, + "segments": [ + { + "distanceMeters": 203, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 1429, + "travelTimeSeconds": 226 + }, + { + "distanceMeters": 478, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 1834, + "travelTimeSeconds": 290 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 52, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 98, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 126, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 162, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 537, + "travelTimeSeconds": 85 + }, + { + "distanceMeters": 70, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 311, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 139, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 35 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9106, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2564.58008082812, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.32, + "travelTimeWithoutDwellTimesSeconds": 1440, + "operatingTimeWithLayoverTimeSeconds": 1620, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1440, + "operatingSpeedWithLayoverMetersPerSecond": 5.62, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.32 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", + "8f39e220-8ec5-4425-b9f8-90e418e7d6d3", + "3481b163-efe1-4b08-b6af-eecb2141ddbe", + "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", + "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "5cacbe7b-f308-4076-8842-25195b37874b", + "70f95ad2-eba4-4503-b7ff-17df9ce33ba4", + "e5e1c5c5-36d2-4221-83f3-658f6d4b6761", + "ea0252a4-936b-49d7-8af7-57e55fff6184", + "5b6c9f4f-7b19-41d9-ad96-38e8e97fc190", + "379600fc-81b2-40f5-8ddd-317a0b4fe4c0", + "735e4ba2-6503-4586-98da-feccec61a212", + "af14ce12-74fa-4edf-a439-c058d0014323", + "596478dc-5795-41d8-b76f-e8b99c5314f6", + "504cb53f-f1f4-46f2-81f5-f99fef8227fd", + "4827a17d-8dc9-4cbd-8430-3334ebece64a", + "988c86da-04eb-4067-b650-f13c447b17e7", + "14e293a6-352a-4156-8578-66d0b5bdcc1f", + "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", + "2881ced2-6a46-4738-a470-6ff64097e482", + "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", + "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "4fc83229-a15e-48e1-aa4f-fae0073dacf9" + ], + "stops": [], + "line_id": "a69faa44-2d07-4242-a96a-f2eb2b3cbc5c", + "segments": [ + 0, + 7, + 28, + 40, + 89, + 105, + 107, + 108, + 111, + 115, + 134, + 149, + 155, + 157, + 162, + 175, + 177, + 184, + 192, + 198, + 200, + 202, + 208, + 212, + 217, + 224, + 231 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 394, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.437764, + 45.460145 + ], + [ + -73.437619, + 45.460293 + ], + [ + -73.437101, + 45.460817 + ], + [ + -73.43693, + 45.460991 + ], + [ + -73.436084, + 45.461838 + ], + [ + -73.435956, + 45.461966 + ], + [ + -73.435883, + 45.462039 + ], + [ + -73.435417, + 45.462506 + ], + [ + -73.435116, + 45.462807 + ], + [ + -73.435017, + 45.462901 + ], + [ + -73.434675, + 45.463227 + ], + [ + -73.43446, + 45.463414 + ], + [ + -73.434426, + 45.463444 + ], + [ + -73.433916, + 45.463851 + ], + [ + -73.432014, + 45.465216 + ], + [ + -73.431899, + 45.465299 + ], + [ + -73.431759, + 45.465404 + ], + [ + -73.431165, + 45.465852 + ], + [ + -73.430632, + 45.466255 + ], + [ + -73.430223, + 45.465984 + ], + [ + -73.429945, + 45.4658 + ], + [ + -73.426695, + 45.463644 + ], + [ + -73.426608, + 45.463587 + ], + [ + -73.425566, + 45.462896 + ], + [ + -73.425014, + 45.46253 + ], + [ + -73.424861, + 45.462428 + ], + [ + -73.4247, + 45.462321 + ], + [ + -73.42397, + 45.461837 + ], + [ + -73.423456, + 45.461496 + ], + [ + -73.423345, + 45.461423 + ], + [ + -73.422579, + 45.460915 + ], + [ + -73.419928, + 45.459156 + ], + [ + -73.419828, + 45.45909 + ], + [ + -73.419877, + 45.459055 + ], + [ + -73.420094, + 45.458893 + ], + [ + -73.42041, + 45.458656 + ], + [ + -73.420587, + 45.458524 + ], + [ + -73.42063, + 45.458492 + ], + [ + -73.420736, + 45.458359 + ], + [ + -73.420842, + 45.458218 + ], + [ + -73.420969, + 45.457966 + ], + [ + -73.421005, + 45.457768 + ], + [ + -73.420993, + 45.457595 + ], + [ + -73.420984, + 45.457466 + ], + [ + -73.420984, + 45.457462 + ], + [ + -73.420768, + 45.456709 + ], + [ + -73.420731, + 45.456406 + ], + [ + -73.420728, + 45.456281 + ], + [ + -73.420766, + 45.456105 + ], + [ + -73.420872, + 45.455877 + ], + [ + -73.421054, + 45.45561 + ], + [ + -73.421295, + 45.455422 + ], + [ + -73.422321, + 45.454723 + ], + [ + -73.422712, + 45.454457 + ], + [ + -73.422824, + 45.454381 + ], + [ + -73.425, + 45.452904 + ], + [ + -73.425236, + 45.452744 + ], + [ + -73.42721, + 45.451405 + ], + [ + -73.427291, + 45.45135 + ], + [ + -73.42733, + 45.451323 + ], + [ + -73.427666, + 45.451103 + ], + [ + -73.427682, + 45.451093 + ], + [ + -73.428037, + 45.450878 + ], + [ + -73.430991, + 45.449139 + ], + [ + -73.431164, + 45.449042 + ], + [ + -73.431275, + 45.448979 + ], + [ + -73.432931, + 45.450108 + ], + [ + -73.433653, + 45.450548 + ], + [ + -73.433861, + 45.450614 + ], + [ + -73.433938, + 45.450638 + ], + [ + -73.434086, + 45.450685 + ], + [ + -73.434372, + 45.450754 + ], + [ + -73.434532, + 45.45078 + ], + [ + -73.434811, + 45.450806 + ], + [ + -73.435216, + 45.450834 + ], + [ + -73.43546, + 45.450862 + ], + [ + -73.435648, + 45.450893 + ], + [ + -73.435818, + 45.450928 + ], + [ + -73.435935, + 45.450963 + ], + [ + -73.436195, + 45.451061 + ], + [ + -73.436419, + 45.451155 + ], + [ + -73.436602, + 45.451264 + ], + [ + -73.43668, + 45.451315 + ], + [ + -73.436758, + 45.451367 + ], + [ + -73.436938, + 45.4515 + ], + [ + -73.437141, + 45.451649 + ], + [ + -73.43763, + 45.452001 + ], + [ + -73.438295, + 45.452481 + ], + [ + -73.438425, + 45.452575 + ], + [ + -73.438899, + 45.452918 + ], + [ + -73.439007, + 45.452995 + ], + [ + -73.439474, + 45.45333 + ], + [ + -73.439588, + 45.453411 + ], + [ + -73.439818, + 45.453573 + ], + [ + -73.439861, + 45.453603 + ], + [ + -73.439909, + 45.45364 + ], + [ + -73.439987, + 45.4537 + ], + [ + -73.440478, + 45.454051 + ], + [ + -73.44074, + 45.454241 + ], + [ + -73.44099, + 45.454406 + ], + [ + -73.441259, + 45.45456 + ], + [ + -73.441361, + 45.454611 + ], + [ + -73.441496, + 45.454678 + ], + [ + -73.441752, + 45.454794 + ], + [ + -73.441934, + 45.454863 + ], + [ + -73.442069, + 45.454915 + ], + [ + -73.442434, + 45.455032 + ], + [ + -73.442619, + 45.455085 + ], + [ + -73.442851, + 45.45514 + ], + [ + -73.443004, + 45.455181 + ], + [ + -73.443312, + 45.455218 + ], + [ + -73.443443, + 45.455253 + ], + [ + -73.443793, + 45.455352 + ], + [ + -73.443977, + 45.455424 + ], + [ + -73.444277, + 45.455609 + ], + [ + -73.444561, + 45.455812 + ], + [ + -73.445006, + 45.456208 + ], + [ + -73.445443, + 45.456518 + ], + [ + -73.445605, + 45.456635 + ], + [ + -73.445878, + 45.456816 + ], + [ + -73.445952, + 45.456865 + ], + [ + -73.446142, + 45.456982 + ], + [ + -73.446227, + 45.457004 + ], + [ + -73.446332, + 45.457032 + ], + [ + -73.446489, + 45.457095 + ], + [ + -73.446596, + 45.457158 + ], + [ + -73.446702, + 45.457243 + ], + [ + -73.446812, + 45.457324 + ], + [ + -73.446913, + 45.457357 + ], + [ + -73.446965, + 45.457368 + ], + [ + -73.447054, + 45.457381 + ], + [ + -73.447226, + 45.457406 + ], + [ + -73.447335, + 45.457449 + ], + [ + -73.448552, + 45.458228 + ], + [ + -73.448934, + 45.458388 + ], + [ + -73.449458, + 45.458593 + ], + [ + -73.449707, + 45.458708 + ], + [ + -73.450153, + 45.459037 + ], + [ + -73.451481, + 45.460003 + ], + [ + -73.452547, + 45.46077 + ], + [ + -73.454622, + 45.462265 + ], + [ + -73.454692, + 45.462368 + ], + [ + -73.454988, + 45.462608 + ], + [ + -73.455597, + 45.463097 + ], + [ + -73.456345, + 45.463585 + ], + [ + -73.45668, + 45.463751 + ], + [ + -73.457165, + 45.463986 + ], + [ + -73.45779, + 45.464251 + ], + [ + -73.457936, + 45.464285 + ], + [ + -73.458332, + 45.464415 + ], + [ + -73.458709, + 45.464519 + ], + [ + -73.459184, + 45.464658 + ], + [ + -73.459848, + 45.464797 + ], + [ + -73.460341, + 45.46487 + ], + [ + -73.460876, + 45.464928 + ], + [ + -73.461292, + 45.464968 + ], + [ + -73.461888, + 45.465033 + ], + [ + -73.462599, + 45.465146 + ], + [ + -73.463202, + 45.465285 + ], + [ + -73.463734, + 45.465422 + ], + [ + -73.464137, + 45.465531 + ], + [ + -73.464519, + 45.465639 + ], + [ + -73.464829, + 45.465721 + ], + [ + -73.465021, + 45.465762 + ], + [ + -73.465202, + 45.465781 + ], + [ + -73.465352, + 45.4658 + ], + [ + -73.465498, + 45.465796 + ], + [ + -73.465647, + 45.465796 + ], + [ + -73.465791, + 45.465789 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.46652, + 45.465639 + ], + [ + -73.466352, + 45.465288 + ], + [ + -73.466238, + 45.465062 + ], + [ + -73.466142, + 45.464853 + ], + [ + -73.466048, + 45.464638 + ], + [ + -73.46599, + 45.464498 + ], + [ + -73.465967, + 45.464441 + ], + [ + -73.465777, + 45.463945 + ], + [ + -73.465723, + 45.463731 + ], + [ + -73.465663, + 45.463449 + ], + [ + -73.465646, + 45.463238 + ], + [ + -73.465636, + 45.463073 + ], + [ + -73.46561, + 45.462808 + ], + [ + -73.465461, + 45.461275 + ], + [ + -73.465445, + 45.461122 + ], + [ + -73.465251, + 45.459263 + ], + [ + -73.465214, + 45.458881 + ], + [ + -73.465199, + 45.458728 + ], + [ + -73.465132, + 45.458038 + ], + [ + -73.465113, + 45.457592 + ], + [ + -73.465124, + 45.457143 + ], + [ + -73.465143, + 45.45685 + ], + [ + -73.465153, + 45.456755 + ], + [ + -73.465199, + 45.456301 + ], + [ + -73.465244, + 45.456 + ], + [ + -73.465335, + 45.455572 + ], + [ + -73.465339, + 45.455554 + ], + [ + -73.465416, + 45.455284 + ], + [ + -73.465461, + 45.455127 + ], + [ + -73.465617, + 45.454677 + ], + [ + -73.465629, + 45.454641 + ], + [ + -73.465634, + 45.454629 + ], + [ + -73.465694, + 45.454481 + ], + [ + -73.465735, + 45.45438 + ], + [ + -73.465853, + 45.45411 + ], + [ + -73.466087, + 45.453654 + ], + [ + -73.46613, + 45.45357 + ], + [ + -73.466877, + 45.452297 + ], + [ + -73.467521, + 45.451236 + ], + [ + -73.468182, + 45.450183 + ], + [ + -73.469986, + 45.447403 + ], + [ + -73.470116, + 45.447204 + ], + [ + -73.470215, + 45.447052 + ], + [ + -73.470659, + 45.447207 + ], + [ + -73.471183, + 45.44739 + ], + [ + -73.471746, + 45.44757 + ], + [ + -73.472443, + 45.447795 + ], + [ + -73.473347, + 45.448088 + ], + [ + -73.473437, + 45.448115 + ], + [ + -73.475223, + 45.448691 + ], + [ + -73.475787, + 45.448871 + ], + [ + -73.476196, + 45.449002 + ], + [ + -73.476498, + 45.449128 + ], + [ + -73.476722, + 45.449231 + ], + [ + -73.476897, + 45.449321 + ], + [ + -73.477126, + 45.449456 + ], + [ + -73.477278, + 45.449564 + ], + [ + -73.477431, + 45.449681 + ], + [ + -73.477567, + 45.449794 + ], + [ + -73.477783, + 45.450014 + ], + [ + -73.477921, + 45.449951 + ], + [ + -73.478139, + 45.449872 + ], + [ + -73.478451, + 45.449758 + ], + [ + -73.4775, + 45.449189 + ] + ] + }, + "id": 395, + "properties": { + "id": "c53381f5-a9f8-40ab-9d5e-13735f4b6e9f", + "data": { + "gtfs": { + "shape_id": "697_1_A" + }, + "segments": [ + { + "distanceMeters": 247, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 62 + }, + { + "distanceMeters": 77, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 422, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 2866, + "travelTimeSeconds": 465 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 477, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 898, + "travelTimeSeconds": 146 + }, + { + "distanceMeters": 860, + "travelTimeSeconds": 140 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 9981, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 3346.117652583036, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.16, + "travelTimeWithoutDwellTimesSeconds": 1620, + "operatingTimeWithLayoverTimeSeconds": 1800, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1620, + "operatingSpeedWithLayoverMetersPerSecond": 5.54, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.16 + }, + "mode": "bus", + "name": "École Lucille-Teasdale", + "color": "#A32638", + "nodes": [ + "eeae68ef-a789-47cd-b1a9-a6fc5c2bb689", + "1a929515-9cf9-46e2-a23e-d4a14e85a95d", + "7c6202a7-3f19-4943-97ae-2c6baa7cb485", + "2dc5436a-aaba-417a-8f15-4777cfa70bbf", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "988183db-88f1-47cb-87bf-b2a03dd4a38d", + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "bfb03303-2ee6-40dd-8e8f-859a06b338a6", + "2b6f210c-4f28-43d1-b096-b48c582f5274", + "57b5655a-03f7-4fb9-a3a9-26c2523cb5bf", + "3947066a-3681-4f55-8693-0a5fac46c728", + "006d28ae-a3cc-4f45-8689-daa6cf9386f5", + "94721b0b-0bae-4300-ab61-58dc9d3fe85b", + "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", + "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", + "27e1da8c-287d-4c6b-9905-9c8c3d07097d", + "9fe6df14-62d0-4a44-8e19-85300b42de89", + "c46f92e7-e692-49ea-b12f-0df7099ee6d5", + "06cee1c3-abcc-4982-b889-e73356b844e0", + "9e4bc046-2878-4cee-af77-934e179aa77f", + "74887516-47d5-4269-9513-84672d18e287", + "1e3a74d9-9d8a-467f-a82e-3dafee501e32", + "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", + "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", + "fe1d7eea-bdc6-4263-a13b-eb6645c5e393" + ], + "stops": [], + "line_id": "c69e504c-61f0-4e23-9d7f-bf8c0e6a904e", + "segments": [ + 0, + 5, + 11, + 14, + 17, + 19, + 21, + 25, + 28, + 31, + 35, + 42, + 54, + 56, + 61, + 64, + 68, + 82, + 87, + 93, + 104, + 184, + 186, + 201, + 211 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 395, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.4775, + 45.449189 + ], + [ + -73.477354, + 45.449101 + ], + [ + -73.476598, + 45.448646 + ], + [ + -73.476493, + 45.448669 + ], + [ + -73.476429, + 45.448682 + ], + [ + -73.476264, + 45.448894 + ], + [ + -73.475856, + 45.448768 + ], + [ + -73.475454, + 45.448632 + ], + [ + -73.475296, + 45.448579 + ], + [ + -73.474198, + 45.448236 + ], + [ + -73.473507, + 45.448007 + ], + [ + -73.47251, + 45.447683 + ], + [ + -73.471666, + 45.447408 + ], + [ + -73.471252, + 45.447282 + ], + [ + -73.47028, + 45.446953 + ], + [ + -73.470002, + 45.446863 + ], + [ + -73.469936, + 45.446962 + ], + [ + -73.4697, + 45.447326 + ], + [ + -73.467906, + 45.450089 + ], + [ + -73.467892, + 45.45011 + ], + [ + -73.467328, + 45.451002 + ], + [ + -73.46669, + 45.452054 + ], + [ + -73.465968, + 45.453278 + ], + [ + -73.465918, + 45.453363 + ], + [ + -73.465707, + 45.453755 + ], + [ + -73.46558, + 45.454016 + ], + [ + -73.46536, + 45.454529 + ], + [ + -73.465344, + 45.454574 + ], + [ + -73.465258, + 45.454822 + ], + [ + -73.465193, + 45.45501 + ], + [ + -73.465167, + 45.455082 + ], + [ + -73.465143, + 45.455167 + ], + [ + -73.465048, + 45.455509 + ], + [ + -73.465041, + 45.455536 + ], + [ + -73.464975, + 45.455829 + ], + [ + -73.464919, + 45.45613 + ], + [ + -73.464878, + 45.456427 + ], + [ + -73.464848, + 45.456873 + ], + [ + -73.464844, + 45.457169 + ], + [ + -73.464871, + 45.457574 + ], + [ + -73.464981, + 45.45909 + ], + [ + -73.464994, + 45.459278 + ], + [ + -73.465215, + 45.461562 + ], + [ + -73.465247, + 45.461893 + ], + [ + -73.465328, + 45.462497 + ], + [ + -73.465435, + 45.463211 + ], + [ + -73.465484, + 45.463543 + ], + [ + -73.465538, + 45.46379 + ], + [ + -73.465626, + 45.464088 + ], + [ + -73.465783, + 45.464475 + ], + [ + -73.46579, + 45.464493 + ], + [ + -73.465817, + 45.464557 + ], + [ + -73.465848, + 45.464629 + ], + [ + -73.465982, + 45.464935 + ], + [ + -73.465999, + 45.464975 + ], + [ + -73.46603, + 45.465039 + ], + [ + -73.466144, + 45.465278 + ], + [ + -73.466224, + 45.465446 + ], + [ + -73.46634, + 45.465678 + ], + [ + -73.466544, + 45.466093 + ], + [ + -73.466754, + 45.466512 + ], + [ + -73.466905, + 45.466821 + ], + [ + -73.46709, + 45.467181 + ], + [ + -73.467395, + 45.467802 + ], + [ + -73.467338, + 45.468013 + ], + [ + -73.467297, + 45.468072 + ], + [ + -73.467245, + 45.468117 + ], + [ + -73.467184, + 45.468148 + ], + [ + -73.466944, + 45.46822 + ], + [ + -73.466769, + 45.468252 + ], + [ + -73.466575, + 45.468272 + ], + [ + -73.466554, + 45.468274 + ], + [ + -73.466295, + 45.46827 + ], + [ + -73.465854, + 45.468233 + ], + [ + -73.465606, + 45.468212 + ], + [ + -73.465388, + 45.468193 + ], + [ + -73.465093, + 45.468166 + ], + [ + -73.464662, + 45.46813 + ], + [ + -73.464409, + 45.468116 + ], + [ + -73.464182, + 45.468125 + ], + [ + -73.464067, + 45.468143 + ], + [ + -73.463974, + 45.46817 + ], + [ + -73.463882, + 45.468201 + ], + [ + -73.463835, + 45.468224 + ], + [ + -73.46363, + 45.4683 + ], + [ + -73.463472, + 45.468395 + ], + [ + -73.463397, + 45.468431 + ], + [ + -73.463306, + 45.468449 + ], + [ + -73.463219, + 45.468458 + ], + [ + -73.463124, + 45.468449 + ], + [ + -73.463037, + 45.468413 + ], + [ + -73.462702, + 45.468201 + ], + [ + -73.462471, + 45.468057 + ], + [ + -73.462195, + 45.467872 + ], + [ + -73.462028, + 45.467752 + ], + [ + -73.461894, + 45.467656 + ], + [ + -73.461788, + 45.46758 + ], + [ + -73.46133, + 45.467251 + ], + [ + -73.461109, + 45.467094 + ], + [ + -73.460905, + 45.466945 + ], + [ + -73.460739, + 45.466826 + ], + [ + -73.460722, + 45.466814 + ], + [ + -73.460629, + 45.466751 + ], + [ + -73.460376, + 45.466631 + ], + [ + -73.458945, + 45.465599 + ], + [ + -73.458783, + 45.465482 + ], + [ + -73.458133, + 45.464996 + ], + [ + -73.457829, + 45.464789 + ], + [ + -73.457411, + 45.464509 + ], + [ + -73.457079, + 45.464307 + ], + [ + -73.456595, + 45.463957 + ], + [ + -73.45655, + 45.463924 + ], + [ + -73.455675, + 45.463282 + ], + [ + -73.454797, + 45.462637 + ], + [ + -73.454278, + 45.462276 + ], + [ + -73.453602, + 45.461785 + ], + [ + -73.453448, + 45.461674 + ], + [ + -73.453385, + 45.461629 + ], + [ + -73.45305, + 45.461381 + ], + [ + -73.45275, + 45.461169 + ], + [ + -73.452262, + 45.460814 + ], + [ + -73.449839, + 45.459072 + ], + [ + -73.449359, + 45.458774 + ], + [ + -73.448479, + 45.458383 + ], + [ + -73.448024, + 45.45813 + ], + [ + -73.447729, + 45.457941 + ], + [ + -73.447401, + 45.457716 + ], + [ + -73.447206, + 45.457532 + ], + [ + -73.447146, + 45.457473 + ], + [ + -73.447054, + 45.457381 + ], + [ + -73.446923, + 45.457262 + ], + [ + -73.446661, + 45.457072 + ], + [ + -73.44657, + 45.457027 + ], + [ + -73.446482, + 45.456996 + ], + [ + -73.446388, + 45.45696 + ], + [ + -73.446222, + 45.456915 + ], + [ + -73.445958, + 45.456735 + ], + [ + -73.445693, + 45.456555 + ], + [ + -73.445542, + 45.456451 + ], + [ + -73.445085, + 45.456131 + ], + [ + -73.444561, + 45.455812 + ], + [ + -73.444277, + 45.455609 + ], + [ + -73.443977, + 45.455424 + ], + [ + -73.443793, + 45.455352 + ], + [ + -73.443443, + 45.455253 + ], + [ + -73.443312, + 45.455218 + ], + [ + -73.443048, + 45.455091 + ], + [ + -73.442897, + 45.455046 + ], + [ + -73.442851, + 45.45514 + ], + [ + -73.442773, + 45.455286 + ], + [ + -73.442711, + 45.455401 + ], + [ + -73.442537, + 45.455671 + ], + [ + -73.442076, + 45.456224 + ], + [ + -73.441851, + 45.45649 + ], + [ + -73.441716, + 45.456616 + ], + [ + -73.441623, + 45.456698 + ], + [ + -73.441548, + 45.456764 + ], + [ + -73.441473, + 45.456822 + ], + [ + -73.44081, + 45.457277 + ], + [ + -73.440142, + 45.457735 + ], + [ + -73.439957, + 45.457879 + ], + [ + -73.439859, + 45.457955 + ], + [ + -73.439614, + 45.458149 + ], + [ + -73.43929, + 45.458432 + ], + [ + -73.438818, + 45.459021 + ], + [ + -73.438626, + 45.459273 + ], + [ + -73.438614, + 45.459291 + ], + [ + -73.438414, + 45.459492 + ], + [ + -73.437866, + 45.460042 + ], + [ + -73.437769, + 45.46014 + ], + [ + -73.437619, + 45.460293 + ], + [ + -73.437101, + 45.460817 + ], + [ + -73.43693, + 45.460991 + ], + [ + -73.436084, + 45.461838 + ], + [ + -73.435961, + 45.461961 + ], + [ + -73.435883, + 45.462039 + ], + [ + -73.435417, + 45.462506 + ], + [ + -73.435116, + 45.462807 + ], + [ + -73.435017, + 45.462901 + ], + [ + -73.434675, + 45.463227 + ], + [ + -73.434465, + 45.463409 + ], + [ + -73.434426, + 45.463444 + ], + [ + -73.433916, + 45.463851 + ], + [ + -73.43202, + 45.465212 + ], + [ + -73.431899, + 45.465299 + ], + [ + -73.431759, + 45.465404 + ], + [ + -73.43117, + 45.465848 + ], + [ + -73.430632, + 45.466255 + ], + [ + -73.430432, + 45.466123 + ], + [ + -73.430229, + 45.465988 + ], + [ + -73.4267, + 45.463648 + ], + [ + -73.426608, + 45.463587 + ], + [ + -73.425566, + 45.462896 + ], + [ + -73.425014, + 45.46253 + ], + [ + -73.424866, + 45.462432 + ], + [ + -73.4247, + 45.462321 + ], + [ + -73.42397, + 45.461837 + ], + [ + -73.42346, + 45.461499 + ], + [ + -73.423345, + 45.461423 + ], + [ + -73.422579, + 45.460915 + ], + [ + -73.419932, + 45.459159 + ], + [ + -73.419828, + 45.45909 + ], + [ + -73.419877, + 45.459055 + ], + [ + -73.420054, + 45.458923 + ], + [ + -73.420406, + 45.458659 + ], + [ + -73.420587, + 45.458524 + ], + [ + -73.42063, + 45.458492 + ], + [ + -73.420736, + 45.458359 + ], + [ + -73.420842, + 45.458218 + ], + [ + -73.420969, + 45.457966 + ], + [ + -73.421005, + 45.457768 + ], + [ + -73.420993, + 45.457599 + ], + [ + -73.420984, + 45.457466 + ], + [ + -73.420984, + 45.457462 + ], + [ + -73.420768, + 45.456709 + ], + [ + -73.420731, + 45.456406 + ], + [ + -73.420728, + 45.456281 + ], + [ + -73.420766, + 45.456105 + ], + [ + -73.420872, + 45.455877 + ], + [ + -73.421054, + 45.45561 + ], + [ + -73.421295, + 45.455422 + ], + [ + -73.422321, + 45.454723 + ], + [ + -73.422712, + 45.454457 + ], + [ + -73.42282, + 45.454384 + ], + [ + -73.425, + 45.452904 + ], + [ + -73.425233, + 45.452747 + ], + [ + -73.42721, + 45.451405 + ], + [ + -73.427291, + 45.45135 + ], + [ + -73.42733, + 45.451323 + ], + [ + -73.427666, + 45.451103 + ], + [ + -73.427678, + 45.451095 + ], + [ + -73.428037, + 45.450878 + ], + [ + -73.430991, + 45.449139 + ], + [ + -73.43116, + 45.449043 + ], + [ + -73.431275, + 45.448979 + ], + [ + -73.43165, + 45.449234 + ], + [ + -73.432931, + 45.450108 + ], + [ + -73.433653, + 45.450548 + ], + [ + -73.433858, + 45.450613 + ], + [ + -73.433938, + 45.450638 + ], + [ + -73.434086, + 45.450685 + ], + [ + -73.434372, + 45.450754 + ], + [ + -73.434532, + 45.45078 + ], + [ + -73.434811, + 45.450806 + ], + [ + -73.435216, + 45.450834 + ], + [ + -73.43546, + 45.450862 + ], + [ + -73.435648, + 45.450893 + ], + [ + -73.435818, + 45.450928 + ], + [ + -73.435935, + 45.450963 + ], + [ + -73.436195, + 45.451061 + ], + [ + -73.436419, + 45.451155 + ], + [ + -73.436602, + 45.451264 + ], + [ + -73.436677, + 45.451313 + ], + [ + -73.436758, + 45.451367 + ], + [ + -73.436938, + 45.4515 + ], + [ + -73.437141, + 45.451649 + ], + [ + -73.43763, + 45.452001 + ], + [ + -73.438293, + 45.45248 + ], + [ + -73.438425, + 45.452575 + ], + [ + -73.438899, + 45.452918 + ], + [ + -73.439474, + 45.45333 + ], + [ + -73.439588, + 45.453411 + ], + [ + -73.439816, + 45.453572 + ] + ] + }, + "id": 396, + "properties": { + "id": "ec2bf774-f853-41cd-b016-1ec904a5a985", + "data": { + "gtfs": { + "shape_id": "697_1_R" + }, + "segments": [ + { + "distanceMeters": 203, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 1429, + "travelTimeSeconds": 175 + }, + { + "distanceMeters": 478, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 1164, + "travelTimeSeconds": 143 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 1677, + "travelTimeSeconds": 206 + }, + { + "distanceMeters": 185, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 305, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 199, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 277, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 97, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 105, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 77, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 131, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 422, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 355, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 284, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 170, + "travelTimeSeconds": 21 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "bus_urban", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 10770, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "birdDistanceBetweenTerminals": 2967.6498031600477, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.16, + "travelTimeWithoutDwellTimesSeconds": 1320, + "operatingTimeWithLayoverTimeSeconds": 1500, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1320, + "operatingSpeedWithLayoverMetersPerSecond": 7.18, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.16 + }, + "mode": "bus", + "name": "Domicile", + "color": "#A32638", + "nodes": [ + "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", + "8f39e220-8ec5-4425-b9f8-90e418e7d6d3", + "3481b163-efe1-4b08-b6af-eecb2141ddbe", + "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", + "cbfe7779-9081-4538-b1fe-f238be6c7969", + "87719027-eaeb-4ca2-9916-48e459caa53b", + "827d769c-823c-44fa-9c17-8d7db0bd4459", + "7d672010-5387-42b1-8ad3-257c7e6df63a", + "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", + "1f87e3a1-2127-4357-9fd4-016c6c31e011", + "b7b9e437-9aed-4216-8c9e-6ac432328b58", + "eeae68ef-a789-47cd-b1a9-a6fc5c2bb689", + "1a929515-9cf9-46e2-a23e-d4a14e85a95d", + "7c6202a7-3f19-4943-97ae-2c6baa7cb485", + "2dc5436a-aaba-417a-8f15-4777cfa70bbf", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "988183db-88f1-47cb-87bf-b2a03dd4a38d", + "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "bfb03303-2ee6-40dd-8e8f-859a06b338a6", + "2b6f210c-4f28-43d1-b096-b48c582f5274", + "57b5655a-03f7-4fb9-a3a9-26c2523cb5bf", + "3947066a-3681-4f55-8693-0a5fac46c728", + "006d28ae-a3cc-4f45-8689-daa6cf9386f5", + "94721b0b-0bae-4300-ab61-58dc9d3fe85b", + "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", + "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", + "27e1da8c-287d-4c6b-9905-9c8c3d07097d", + "9fe6df14-62d0-4a44-8e19-85300b42de89", + "c46f92e7-e692-49ea-b12f-0df7099ee6d5", + "06cee1c3-abcc-4982-b889-e73356b844e0" + ], + "stops": [], + "line_id": "c69e504c-61f0-4e23-9d7f-bf8c0e6a904e", + "segments": [ + 0, + 7, + 28, + 40, + 74, + 94, + 100, + 104, + 110, + 155, + 160, + 169, + 174, + 180, + 183, + 186, + 189, + 190, + 194, + 197, + 200, + 204, + 211, + 223, + 225, + 230, + 233, + 238, + 252, + 257 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 396, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.35899, + 45.453258 + ], + [ + -73.358937, + 45.453238 + ], + [ + -73.35859, + 45.45311 + ], + [ + -73.358011, + 45.452897 + ], + [ + -73.357988, + 45.452887 + ], + [ + -73.357968, + 45.452874 + ], + [ + -73.35795, + 45.45286 + ], + [ + -73.357937, + 45.452843 + ], + [ + -73.357927, + 45.452825 + ], + [ + -73.357921, + 45.452807 + ], + [ + -73.357919, + 45.452788 + ], + [ + -73.357921, + 45.452769 + ], + [ + -73.357928, + 45.45275 + ], + [ + -73.357938, + 45.452733 + ], + [ + -73.358327, + 45.452213 + ], + [ + -73.359077, + 45.451209 + ], + [ + -73.35979, + 45.450256 + ], + [ + -73.359955, + 45.450031 + ], + [ + -73.360012, + 45.449953 + ], + [ + -73.360198, + 45.449699 + ], + [ + -73.360219, + 45.44968 + ], + [ + -73.360247, + 45.449663 + ], + [ + -73.360274, + 45.449652 + ], + [ + -73.360313, + 45.449642 + ], + [ + -73.360356, + 45.44964 + ], + [ + -73.360398, + 45.449646 + ], + [ + -73.360435, + 45.449657 + ], + [ + -73.360474, + 45.44968 + ], + [ + -73.361154, + 45.450101 + ], + [ + -73.362089, + 45.45068 + ], + [ + -73.362328, + 45.450833 + ], + [ + -73.362734, + 45.451093 + ], + [ + -73.362862, + 45.451175 + ], + [ + -73.362884, + 45.45119 + ], + [ + -73.362024, + 45.45235 + ], + [ + -73.361614, + 45.452902 + ], + [ + -73.360947, + 45.453822 + ], + [ + -73.36089, + 45.453881 + ], + [ + -73.36085, + 45.453914 + ], + [ + -73.360808, + 45.45392 + ], + [ + -73.360735, + 45.453904 + ], + [ + -73.36037, + 45.453772 + ], + [ + -73.36019, + 45.454014 + ], + [ + -73.358218, + 45.456659 + ], + [ + -73.357925, + 45.457056 + ], + [ + -73.356938, + 45.45839 + ], + [ + -73.355713, + 45.460008 + ], + [ + -73.355595, + 45.460166 + ], + [ + -73.35416, + 45.462083 + ], + [ + -73.3541, + 45.462163 + ], + [ + -73.352894, + 45.463799 + ], + [ + -73.35259, + 45.464211 + ], + [ + -73.352126, + 45.464849 + ], + [ + -73.351664, + 45.465467 + ], + [ + -73.351443, + 45.465762 + ], + [ + -73.351359, + 45.46587 + ], + [ + -73.351134, + 45.466175 + ], + [ + -73.349284, + 45.46868 + ], + [ + -73.349182, + 45.468818 + ], + [ + -73.350423, + 45.469636 + ], + [ + -73.351372, + 45.470261 + ], + [ + -73.351393, + 45.470274 + ], + [ + -73.352287, + 45.470834 + ], + [ + -73.354769, + 45.472443 + ], + [ + -73.355491, + 45.472949 + ], + [ + -73.356607, + 45.473732 + ], + [ + -73.357451, + 45.4743 + ], + [ + -73.358178, + 45.474674 + ], + [ + -73.358837, + 45.474971 + ], + [ + -73.358929, + 45.475013 + ], + [ + -73.360718, + 45.475762 + ], + [ + -73.361798, + 45.476213 + ], + [ + -73.362641, + 45.476583 + ], + [ + -73.363292, + 45.476888 + ], + [ + -73.363431, + 45.476953 + ], + [ + -73.36408, + 45.477314 + ], + [ + -73.365319, + 45.477987 + ], + [ + -73.365398, + 45.478031 + ], + [ + -73.368661, + 45.479841 + ], + [ + -73.36929, + 45.48019 + ], + [ + -73.369613, + 45.479742 + ], + [ + -73.372901, + 45.475178 + ], + [ + -73.373075, + 45.474921 + ], + [ + -73.373508, + 45.474319 + ], + [ + -73.37362, + 45.474193 + ], + [ + -73.374115, + 45.47437 + ], + [ + -73.374589, + 45.474539 + ], + [ + -73.376526, + 45.475231 + ], + [ + -73.377036, + 45.475416 + ], + [ + -73.377771, + 45.475696 + ], + [ + -73.378232, + 45.475885 + ], + [ + -73.378654, + 45.47607 + ], + [ + -73.378768, + 45.47612 + ], + [ + -73.378865, + 45.476016 + ], + [ + -73.378999, + 45.475829 + ], + [ + -73.379381, + 45.475298 + ], + [ + -73.37977, + 45.474904 + ], + [ + -73.379868, + 45.474867 + ], + [ + -73.37992, + 45.474823 + ], + [ + -73.379949, + 45.474771 + ], + [ + -73.379955, + 45.474715 + ], + [ + -73.379944, + 45.474689 + ], + [ + -73.379928, + 45.47465 + ], + [ + -73.379898, + 45.474617 + ], + [ + -73.379826, + 45.474574 + ], + [ + -73.379738, + 45.474563 + ], + [ + -73.379662, + 45.474553 + ], + [ + -73.379578, + 45.474573 + ], + [ + -73.379521, + 45.474603 + ], + [ + -73.379485, + 45.474634 + ], + [ + -73.379454, + 45.474683 + ], + [ + -73.379447, + 45.474748 + ], + [ + -73.379247, + 45.475249 + ], + [ + -73.378874, + 45.475757 + ], + [ + -73.378727, + 45.475958 + ], + [ + -73.378654, + 45.47607 + ], + [ + -73.378768, + 45.47612 + ], + [ + -73.378357, + 45.4767 + ], + [ + -73.379312, + 45.477038 + ], + [ + -73.379286, + 45.477173 + ], + [ + -73.379234, + 45.477277 + ], + [ + -73.379049, + 45.477564 + ], + [ + -73.378962, + 45.477691 + ], + [ + -73.378887, + 45.477798 + ], + [ + -73.375036, + 45.483176 + ], + [ + -73.37494, + 45.48331 + ], + [ + -73.375418, + 45.483571 + ], + [ + -73.376053, + 45.483919 + ], + [ + -73.376944, + 45.48441 + ], + [ + -73.377333, + 45.484662 + ], + [ + -73.377568, + 45.484792 + ], + [ + -73.377619, + 45.48482 + ], + [ + -73.377777, + 45.484906 + ], + [ + -73.378273, + 45.485158 + ], + [ + -73.379364, + 45.485713 + ], + [ + -73.379961, + 45.486024 + ], + [ + -73.381303, + 45.486687 + ], + [ + -73.381938, + 45.486995 + ], + [ + -73.382231, + 45.487138 + ], + [ + -73.38239, + 45.487214 + ], + [ + -73.382639, + 45.48734 + ], + [ + -73.383202, + 45.487615 + ], + [ + -73.383953, + 45.487976 + ], + [ + -73.384699, + 45.48831 + ], + [ + -73.384728, + 45.48832 + ], + [ + -73.384901, + 45.488369 + ], + [ + -73.385381, + 45.488599 + ], + [ + -73.385628, + 45.488725 + ], + [ + -73.385962, + 45.488879 + ], + [ + -73.386215, + 45.488995 + ], + [ + -73.387001, + 45.489365 + ], + [ + -73.387621, + 45.489654 + ], + [ + -73.388224, + 45.489938 + ], + [ + -73.388765, + 45.490199 + ], + [ + -73.389177, + 45.490388 + ], + [ + -73.389565, + 45.490569 + ], + [ + -73.390592, + 45.491047 + ], + [ + -73.391016, + 45.491244 + ], + [ + -73.391367, + 45.491407 + ], + [ + -73.391618, + 45.49152 + ], + [ + -73.39168, + 45.491549 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.401121, + 45.49596 + ], + [ + -73.402418, + 45.496555 + ], + [ + -73.402953, + 45.49679 + ], + [ + -73.403543, + 45.497051 + ], + [ + -73.403795, + 45.49716 + ], + [ + -73.404434, + 45.497426 + ], + [ + -73.404858, + 45.497588 + ], + [ + -73.405172, + 45.497723 + ], + [ + -73.405568, + 45.497876 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.406574, + 45.498264 + ], + [ + -73.407382, + 45.497122 + ], + [ + -73.407675, + 45.496708 + ], + [ + -73.407892, + 45.496394 + ], + [ + -73.408205, + 45.495957 + ], + [ + -73.408715, + 45.495247 + ], + [ + -73.408772, + 45.495159 + ] + ] + }, + "id": 397, + "properties": { + "id": "7c602c79-5580-4b7b-a829-e28aa1701ce0", + "data": { + "gtfs": { + "shape_id": "820_1_A" + }, + "segments": [ + { + "distanceMeters": 299, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 303, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 430, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 382, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 391, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 215, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 209, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 89, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 314, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 254, + "travelTimeSeconds": 40 + }, + { + "distanceMeters": 437, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 408, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 451, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 1184, + "travelTimeSeconds": 189 + }, + { + "distanceMeters": 331, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 966, + "travelTimeSeconds": 154 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 420, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 914, + "travelTimeSeconds": 145 + }, + { + "distanceMeters": 1767, + "travelTimeSeconds": 282 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 10972, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 6060.030832965471, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.31, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 5.71, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.31 + }, + "mode": "taxi", + "name": "boul. Cousineau", + "color": "#A32638", + "nodes": [ + "391ee800-682d-4882-8762-f7283ff37556", + "35bbf632-18f8-44dd-ab04-b98a1c0d6a9e", + "21eee29a-2e1c-4976-998c-3e4733f522e7", + "79ae40e4-ac61-4b2e-a0be-b4970ad0e618", + "ffb2037a-ed82-4fd2-9ba4-9740ffc9fc74", + "9fdbce5a-94e4-48ab-912d-f3a78f30abc3", + "13b8a3e4-2729-40dc-9d31-6c29415c10b5", + "88e03d45-747f-4e6b-aeb6-97810526c65b", + "13ce318e-8a74-454a-940f-02135b69457c", + "e9563d31-b4cc-432d-bbf1-a6ee47aee4e9", + "b966dc8d-04a6-41da-9b2d-4c18b27bb13f", + "387ad44c-0d6a-4a89-821b-3e0834eed8e2", + "4dd490ae-1643-4ca9-948e-eb5c251b5754", + "e66f2736-29ec-4b36-b206-47f7af7309b0", + "8a9ec4a8-34de-402b-ac5c-aa964c85104b", + "97664706-d6c8-4052-8818-e52a0be48a3e", + "d4214201-daf1-434d-b42f-8c8d41dcb39c", + "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", + "021fa80e-da9f-408b-be90-bb5e978d84f8", + "021fa80e-da9f-408b-be90-bb5e978d84f8", + "057da5dd-23f2-431d-8955-7a7d8f0dae40", + "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", + "88a428f4-cdde-43a8-a2c3-c4652eae6722", + "ced239e0-91f5-4429-96fd-20bbb8fcfd11", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3" + ], + "stops": [], + "line_id": "f2105914-2e93-44da-96b4-d541d3a4896d", + "segments": [ + 0, + 15, + 17, + 31, + 42, + 44, + 47, + 48, + 50, + 53, + 56, + 57, + 61, + 64, + 68, + 73, + 76, + 80, + 94, + 113, + 124, + 130, + 137, + 160 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 397, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.408394, + 45.495468 + ], + [ + -73.408074, + 45.495912 + ], + [ + -73.407847, + 45.49623 + ], + [ + -73.407762, + 45.496348 + ], + [ + -73.407544, + 45.496654 + ], + [ + -73.40725, + 45.497068 + ], + [ + -73.406438, + 45.49821 + ], + [ + -73.406128, + 45.498091 + ], + [ + -73.405568, + 45.497876 + ], + [ + -73.405172, + 45.497723 + ], + [ + -73.404858, + 45.497588 + ], + [ + -73.404434, + 45.497426 + ], + [ + -73.403795, + 45.49716 + ], + [ + -73.403543, + 45.497051 + ], + [ + -73.402953, + 45.49679 + ], + [ + -73.402418, + 45.496555 + ], + [ + -73.401121, + 45.49596 + ], + [ + -73.399985, + 45.495433 + ], + [ + -73.399879, + 45.495383 + ], + [ + -73.399728, + 45.495307 + ], + [ + -73.39739, + 45.494216 + ], + [ + -73.396885, + 45.493982 + ], + [ + -73.39654, + 45.493815 + ], + [ + -73.396134, + 45.49363 + ], + [ + -73.395695, + 45.493432 + ], + [ + -73.395514, + 45.493341 + ], + [ + -73.395339, + 45.49326 + ], + [ + -73.395159, + 45.49317 + ], + [ + -73.394968, + 45.493089 + ], + [ + -73.394402, + 45.492819 + ], + [ + -73.394199, + 45.492724 + ], + [ + -73.39383, + 45.492553 + ], + [ + -73.39348, + 45.492388 + ], + [ + -73.393397, + 45.49235 + ], + [ + -73.392925, + 45.492138 + ], + [ + -73.39266, + 45.492007 + ], + [ + -73.392021, + 45.491705 + ], + [ + -73.391814, + 45.49161 + ], + [ + -73.391618, + 45.49152 + ], + [ + -73.391367, + 45.491407 + ], + [ + -73.391263, + 45.491359 + ], + [ + -73.391016, + 45.491244 + ], + [ + -73.390592, + 45.491047 + ], + [ + -73.389565, + 45.490569 + ], + [ + -73.389177, + 45.490388 + ], + [ + -73.388765, + 45.490199 + ], + [ + -73.388224, + 45.489938 + ], + [ + -73.387621, + 45.489654 + ], + [ + -73.387001, + 45.489365 + ], + [ + -73.386215, + 45.488995 + ], + [ + -73.385628, + 45.488725 + ], + [ + -73.385381, + 45.488599 + ], + [ + -73.384901, + 45.488369 + ], + [ + -73.384743, + 45.488246 + ], + [ + -73.384445, + 45.488089 + ], + [ + -73.384044, + 45.487891 + ], + [ + -73.383491, + 45.487611 + ], + [ + -73.382868, + 45.487294 + ], + [ + -73.382616, + 45.487166 + ], + [ + -73.3825, + 45.487106 + ], + [ + -73.382345, + 45.487025 + ], + [ + -73.382237, + 45.486971 + ], + [ + -73.381986, + 45.486854 + ], + [ + -73.381371, + 45.486556 + ], + [ + -73.380021, + 45.485902 + ], + [ + -73.379495, + 45.485632 + ], + [ + -73.378643, + 45.485213 + ], + [ + -73.377846, + 45.484834 + ], + [ + -73.377633, + 45.484731 + ], + [ + -73.377163, + 45.484505 + ], + [ + -73.376944, + 45.48441 + ], + [ + -73.376053, + 45.483919 + ], + [ + -73.375418, + 45.483571 + ], + [ + -73.37494, + 45.48331 + ], + [ + -73.375184, + 45.482969 + ], + [ + -73.378887, + 45.477798 + ], + [ + -73.379049, + 45.477564 + ], + [ + -73.379234, + 45.477277 + ], + [ + -73.379286, + 45.477173 + ], + [ + -73.379312, + 45.477038 + ], + [ + -73.378357, + 45.4767 + ], + [ + -73.378768, + 45.47612 + ], + [ + -73.378865, + 45.476016 + ], + [ + -73.379013, + 45.47581 + ], + [ + -73.379381, + 45.475298 + ], + [ + -73.37977, + 45.474904 + ], + [ + -73.379868, + 45.474867 + ], + [ + -73.37992, + 45.474823 + ], + [ + -73.379949, + 45.474771 + ], + [ + -73.379955, + 45.474715 + ], + [ + -73.379944, + 45.474689 + ], + [ + -73.379928, + 45.47465 + ], + [ + -73.379898, + 45.474617 + ], + [ + -73.37987, + 45.4746 + ], + [ + -73.379826, + 45.474574 + ], + [ + -73.379662, + 45.474553 + ], + [ + -73.379578, + 45.474573 + ], + [ + -73.379521, + 45.474603 + ], + [ + -73.379485, + 45.474634 + ], + [ + -73.379454, + 45.474683 + ], + [ + -73.379447, + 45.474748 + ], + [ + -73.379247, + 45.475249 + ], + [ + -73.37886, + 45.475776 + ], + [ + -73.378727, + 45.475958 + ], + [ + -73.378232, + 45.475746 + ], + [ + -73.377593, + 45.475489 + ], + [ + -73.37695, + 45.47525 + ], + [ + -73.376248, + 45.474999 + ], + [ + -73.375066, + 45.474576 + ], + [ + -73.373694, + 45.474085 + ], + [ + -73.37362, + 45.474193 + ], + [ + -73.373508, + 45.474319 + ], + [ + -73.373075, + 45.474921 + ], + [ + -73.372901, + 45.475178 + ], + [ + -73.369394, + 45.480046 + ], + [ + -73.36929, + 45.48019 + ], + [ + -73.368508, + 45.479756 + ], + [ + -73.365398, + 45.478031 + ], + [ + -73.365331, + 45.477994 + ], + [ + -73.36408, + 45.477314 + ], + [ + -73.363431, + 45.476953 + ], + [ + -73.362889, + 45.476699 + ], + [ + -73.362641, + 45.476583 + ], + [ + -73.361798, + 45.476213 + ], + [ + -73.360718, + 45.475762 + ], + [ + -73.358929, + 45.475013 + ], + [ + -73.358925, + 45.475011 + ], + [ + -73.358178, + 45.474674 + ], + [ + -73.357451, + 45.4743 + ], + [ + -73.356607, + 45.473732 + ], + [ + -73.35484, + 45.472493 + ], + [ + -73.354769, + 45.472443 + ], + [ + -73.352287, + 45.470834 + ], + [ + -73.351405, + 45.470281 + ], + [ + -73.351372, + 45.470261 + ], + [ + -73.349182, + 45.468818 + ], + [ + -73.349501, + 45.468387 + ], + [ + -73.351233, + 45.466041 + ], + [ + -73.351359, + 45.46587 + ], + [ + -73.351443, + 45.465762 + ], + [ + -73.351752, + 45.46535 + ], + [ + -73.352126, + 45.464849 + ], + [ + -73.35259, + 45.464211 + ], + [ + -73.352887, + 45.463809 + ], + [ + -73.354076, + 45.462197 + ], + [ + -73.3541, + 45.462163 + ], + [ + -73.355111, + 45.460812 + ], + [ + -73.355713, + 45.460008 + ], + [ + -73.356938, + 45.45839 + ], + [ + -73.357611, + 45.457481 + ], + [ + -73.358218, + 45.456659 + ], + [ + -73.360278, + 45.453896 + ], + [ + -73.36037, + 45.453772 + ], + [ + -73.360735, + 45.453904 + ], + [ + -73.360808, + 45.45392 + ], + [ + -73.36085, + 45.453914 + ], + [ + -73.36089, + 45.453881 + ], + [ + -73.360947, + 45.453822 + ], + [ + -73.361614, + 45.452902 + ], + [ + -73.362884, + 45.45119 + ], + [ + -73.362862, + 45.451175 + ], + [ + -73.362753, + 45.451106 + ], + [ + -73.362245, + 45.45078 + ], + [ + -73.362089, + 45.45068 + ], + [ + -73.361154, + 45.450101 + ], + [ + -73.360529, + 45.449714 + ], + [ + -73.360474, + 45.44968 + ], + [ + -73.360435, + 45.449657 + ], + [ + -73.360398, + 45.449646 + ], + [ + -73.360356, + 45.44964 + ], + [ + -73.360313, + 45.449642 + ], + [ + -73.360274, + 45.449652 + ], + [ + -73.360247, + 45.449663 + ], + [ + -73.360219, + 45.44968 + ], + [ + -73.360198, + 45.449699 + ], + [ + -73.360072, + 45.44987 + ], + [ + -73.35979, + 45.450256 + ], + [ + -73.358811, + 45.451565 + ], + [ + -73.358327, + 45.452213 + ], + [ + -73.357938, + 45.452733 + ], + [ + -73.357928, + 45.45275 + ], + [ + -73.357921, + 45.452769 + ], + [ + -73.357919, + 45.452788 + ], + [ + -73.357921, + 45.452807 + ], + [ + -73.357927, + 45.452825 + ], + [ + -73.357937, + 45.452843 + ], + [ + -73.35795, + 45.45286 + ], + [ + -73.357968, + 45.452874 + ], + [ + -73.357988, + 45.452887 + ], + [ + -73.358011, + 45.452897 + ], + [ + -73.35859, + 45.45311 + ] + ] + }, + "id": 398, + "properties": { + "id": "8206192c-0dee-415f-b02a-2d220371965d", + "data": { + "gtfs": { + "shape_id": "820_1_R" + }, + "segments": [ + { + "distanceMeters": 1749, + "travelTimeSeconds": 280 + }, + { + "distanceMeters": 821, + "travelTimeSeconds": 131 + }, + { + "distanceMeters": 474, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 1235, + "travelTimeSeconds": 198 + }, + { + "distanceMeters": 331, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 1210, + "travelTimeSeconds": 194 + }, + { + "distanceMeters": 412, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 239, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 426, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 364, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 292, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 87, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 202, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 174, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 419, + "travelTimeSeconds": 67 + }, + { + "distanceMeters": 450, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 467, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 179, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 35 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 10858, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 6081.928046710087, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.24, + "travelTimeWithoutDwellTimesSeconds": 1740, + "operatingTimeWithLayoverTimeSeconds": 1920, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1740, + "operatingSpeedWithLayoverMetersPerSecond": 5.65, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.24 + }, + "mode": "taxi", + "name": "La Fredière", + "color": "#A32638", + "nodes": [ + "d1cd707b-8ed5-4d1d-b1cb-7633cade451b", + "ced239e0-91f5-4429-96fd-20bbb8fcfd11", + "88a428f4-cdde-43a8-a2c3-c4652eae6722", + "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", + "021fa80e-da9f-408b-be90-bb5e978d84f8", + "021fa80e-da9f-408b-be90-bb5e978d84f8", + "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", + "d4214201-daf1-434d-b42f-8c8d41dcb39c", + "97664706-d6c8-4052-8818-e52a0be48a3e", + "8a9ec4a8-34de-402b-ac5c-aa964c85104b", + "e66f2736-29ec-4b36-b206-47f7af7309b0", + "4dd490ae-1643-4ca9-948e-eb5c251b5754", + "387ad44c-0d6a-4a89-821b-3e0834eed8e2", + "b966dc8d-04a6-41da-9b2d-4c18b27bb13f", + "e9563d31-b4cc-432d-bbf1-a6ee47aee4e9", + "67c19007-add6-4dc0-8788-d8052cdf5468", + "88e03d45-747f-4e6b-aeb6-97810526c65b", + "6879e62e-b2af-404b-9ac0-810ced89b9c5", + "584e7592-5868-423c-a0f3-f7047fcc0c94", + "ffb2037a-ed82-4fd2-9ba4-9740ffc9fc74", + "79ae40e4-ac61-4b2e-a0be-b4970ad0e618", + "21eee29a-2e1c-4976-998c-3e4733f522e7", + "35bbf632-18f8-44dd-ab04-b98a1c0d6a9e", + "391ee800-682d-4882-8762-f7283ff37556" + ], + "stops": [], + "line_id": "f2105914-2e93-44da-96b4-d541d3a4896d", + "segments": [ + 0, + 40, + 58, + 68, + 83, + 102, + 114, + 118, + 121, + 126, + 130, + 133, + 136, + 137, + 140, + 143, + 144, + 146, + 149, + 151, + 162, + 165, + 177 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 398, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.416829, + 45.457739 + ], + [ + -73.416622, + 45.457887 + ], + [ + -73.416344, + 45.458017 + ], + [ + -73.416165, + 45.458062 + ], + [ + -73.415997, + 45.458084 + ], + [ + -73.415882, + 45.458093 + ], + [ + -73.415729, + 45.458102 + ], + [ + -73.415567, + 45.45812 + ], + [ + -73.415388, + 45.458142 + ], + [ + -73.415204, + 45.458183 + ], + [ + -73.415063, + 45.458237 + ], + [ + -73.414927, + 45.458313 + ], + [ + -73.414818, + 45.458382 + ], + [ + -73.414651, + 45.458488 + ], + [ + -73.410032, + 45.461922 + ], + [ + -73.410017, + 45.461933 + ], + [ + -73.40945, + 45.462354 + ], + [ + -73.408357, + 45.463154 + ], + [ + -73.40765, + 45.463671 + ], + [ + -73.404488, + 45.461547 + ], + [ + -73.404296, + 45.461418 + ], + [ + -73.402471, + 45.462753 + ], + [ + -73.401773, + 45.463279 + ], + [ + -73.401752, + 45.463294 + ], + [ + -73.400271, + 45.464402 + ] + ] + }, + "id": 399, + "properties": { + "id": "7884da10-8f18-4b2f-b063-c4eb0a874670", + "data": { + "gtfs": { + "shape_id": "821_1_R" + }, + "segments": [ + { + "distanceMeters": 178, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 543, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 611, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 23 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 1809, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 1483.9941474341915, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.53, + "travelTimeWithoutDwellTimesSeconds": 240, + "operatingTimeWithLayoverTimeSeconds": 420, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 240, + "operatingSpeedWithLayoverMetersPerSecond": 4.31, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.53 + }, + "mode": "taxi", + "name": "Armand-Frappier", + "color": "#A32638", + "nodes": [ + "cdda3c7c-b577-49de-afc0-aa4c4e60c34b", + "dc623539-3b98-4807-a5d5-f66507b8bc4c", + "fee943f3-e127-46e6-bc62-d6c4c320bd7a", + "28acd503-64ba-4c57-925c-1acd27dd7dde", + "3950239b-5631-4d11-8c79-64fecfa361ca", + "079e9464-8795-42f3-bc7f-526d1ec5de83" + ], + "stops": [], + "line_id": "7ea078f5-8350-43aa-857d-f29641193594", + "segments": [ + 0, + 12, + 14, + 19, + 23 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 399, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.400358, + 45.464338 + ], + [ + -73.40161, + 45.4634 + ], + [ + -73.401773, + 45.463279 + ], + [ + -73.402471, + 45.462753 + ], + [ + -73.40415, + 45.461524 + ], + [ + -73.404296, + 45.461418 + ], + [ + -73.406249, + 45.460063 + ], + [ + -73.406952, + 45.459576 + ], + [ + -73.408728, + 45.458425 + ], + [ + -73.409865, + 45.457688 + ], + [ + -73.410149, + 45.457553 + ], + [ + -73.410462, + 45.457446 + ], + [ + -73.410807, + 45.457387 + ], + [ + -73.411159, + 45.457347 + ], + [ + -73.411393, + 45.457343 + ], + [ + -73.411627, + 45.457361 + ], + [ + -73.412457, + 45.457447 + ], + [ + -73.412673, + 45.457474 + ], + [ + -73.412926, + 45.457502 + ], + [ + -73.413147, + 45.457542 + ], + [ + -73.413262, + 45.457587 + ], + [ + -73.413399, + 45.457668 + ], + [ + -73.414309, + 45.458264 + ], + [ + -73.414651, + 45.458488 + ], + [ + -73.414927, + 45.458313 + ], + [ + -73.415063, + 45.458237 + ], + [ + -73.415204, + 45.458183 + ], + [ + -73.415388, + 45.458142 + ], + [ + -73.415567, + 45.45812 + ], + [ + -73.415729, + 45.458102 + ], + [ + -73.415882, + 45.458093 + ], + [ + -73.415997, + 45.458084 + ], + [ + -73.416165, + 45.458062 + ], + [ + -73.416344, + 45.458017 + ], + [ + -73.416622, + 45.457887 + ], + [ + -73.416854, + 45.457722 + ] + ] + }, + "id": 400, + "properties": { + "id": "e32f2c1d-2d2d-404f-beb0-3b88971837c5", + "data": { + "gtfs": { + "shape_id": "821_1_A" + }, + "segments": [ + { + "distanceMeters": 143, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 231, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 509, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 235, + "travelTimeSeconds": 34 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 1670, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 1483.9941474341915, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.96, + "travelTimeWithoutDwellTimesSeconds": 240, + "operatingTimeWithLayoverTimeSeconds": 420, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 240, + "operatingSpeedWithLayoverMetersPerSecond": 3.98, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.96 + }, + "mode": "taxi", + "name": "Grande Allée", + "color": "#A32638", + "nodes": [ + "079e9464-8795-42f3-bc7f-526d1ec5de83", + "3950239b-5631-4d11-8c79-64fecfa361ca", + "28acd503-64ba-4c57-925c-1acd27dd7dde", + "abd6e1bb-b826-4462-87f2-3bae5c6594ea", + "fcd51ec2-f1b1-4630-8f4f-bbfd7b67c91f", + "dc623539-3b98-4807-a5d5-f66507b8bc4c", + "cdda3c7c-b577-49de-afc0-aa4c4e60c34b" + ], + "stops": [], + "line_id": "7ea078f5-8350-43aa-857d-f29641193594", + "segments": [ + 0, + 1, + 4, + 6, + 8, + 22 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 400, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.409131, + 45.494986 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.408825, + 45.494811 + ], + [ + -73.408434, + 45.49459 + ], + [ + -73.408369, + 45.494555 + ], + [ + -73.408119, + 45.494419 + ], + [ + -73.407735, + 45.494211 + ], + [ + -73.407122, + 45.493914 + ], + [ + -73.406594, + 45.493675 + ], + [ + -73.404056, + 45.49253 + ], + [ + -73.40355, + 45.492282 + ], + [ + -73.403081, + 45.492034 + ], + [ + -73.402782, + 45.491854 + ], + [ + -73.402626, + 45.491759 + ], + [ + -73.402493, + 45.491674 + ], + [ + -73.402463, + 45.491651 + ], + [ + -73.402075, + 45.491386 + ], + [ + -73.401668, + 45.491075 + ], + [ + -73.401167, + 45.490642 + ], + [ + -73.400821, + 45.490307 + ], + [ + -73.40081, + 45.490296 + ], + [ + -73.398815, + 45.488253 + ], + [ + -73.398629, + 45.488062 + ], + [ + -73.398311, + 45.487738 + ], + [ + -73.397543, + 45.486952 + ], + [ + -73.397073, + 45.486473 + ], + [ + -73.396515, + 45.485901 + ], + [ + -73.395797, + 45.485167 + ], + [ + -73.395424, + 45.48482 + ], + [ + -73.39519, + 45.484626 + ], + [ + -73.394903, + 45.484401 + ], + [ + -73.39454, + 45.484131 + ], + [ + -73.394481, + 45.484095 + ], + [ + -73.394291, + 45.483964 + ], + [ + -73.393942, + 45.483748 + ], + [ + -73.393737, + 45.48363 + ], + [ + -73.393666, + 45.48359 + ], + [ + -73.393194, + 45.483333 + ], + [ + -73.389941, + 45.481662 + ], + [ + -73.389604, + 45.481489 + ], + [ + -73.390327, + 45.480471 + ], + [ + -73.390189, + 45.480347 + ], + [ + -73.39014, + 45.480293 + ], + [ + -73.390072, + 45.480244 + ], + [ + -73.389421, + 45.47987 + ], + [ + -73.389193, + 45.479779 + ], + [ + -73.388979, + 45.479671 + ], + [ + -73.387452, + 45.478897 + ], + [ + -73.387157, + 45.478747 + ], + [ + -73.386978, + 45.478639 + ], + [ + -73.386905, + 45.478549 + ], + [ + -73.386905, + 45.478427 + ], + [ + -73.386987, + 45.478283 + ], + [ + -73.38737, + 45.477598 + ], + [ + -73.388259, + 45.476008 + ], + [ + -73.388803, + 45.475306 + ], + [ + -73.390004, + 45.473756 + ], + [ + -73.390088, + 45.473648 + ], + [ + -73.390141, + 45.473594 + ], + [ + -73.390206, + 45.473553 + ], + [ + -73.390246, + 45.473544 + ], + [ + -73.390301, + 45.473535 + ], + [ + -73.390506, + 45.473581 + ], + [ + -73.390724, + 45.473667 + ], + [ + -73.39155, + 45.473992 + ], + [ + -73.391902, + 45.474131 + ], + [ + -73.392574, + 45.474419 + ], + [ + -73.392966, + 45.474592 + ], + [ + -73.393067, + 45.474636 + ], + [ + -73.393169, + 45.474708 + ], + [ + -73.393219, + 45.474789 + ], + [ + -73.393214, + 45.474865 + ], + [ + -73.393186, + 45.474924 + ], + [ + -73.391445, + 45.47727 + ], + [ + -73.390196, + 45.478952 + ], + [ + -73.389899, + 45.479384 + ], + [ + -73.389655, + 45.479667 + ], + [ + -73.389421, + 45.47987 + ], + [ + -73.390072, + 45.480244 + ], + [ + -73.390126, + 45.480283 + ] + ] + }, + "id": 401, + "properties": { + "id": "52cf0d16-84e0-49e2-9f81-6a7adebcb043", + "data": { + "gtfs": { + "shape_id": "822_1_A" + }, + "segments": [ + { + "distanceMeters": 1114, + "travelTimeSeconds": 187 + }, + { + "distanceMeters": 1020, + "travelTimeSeconds": 173 + }, + { + "distanceMeters": 298, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 402, + "travelTimeSeconds": 103 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 4240, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 2182.3024987933086, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.44, + "travelTimeWithoutDwellTimesSeconds": 780, + "operatingTimeWithLayoverTimeSeconds": 960, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 780, + "operatingSpeedWithLayoverMetersPerSecond": 4.42, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.44 + }, + "mode": "taxi", + "name": "boul. Gaétan-Boucher", + "color": "#A32638", + "nodes": [ + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "f7cea010-bc23-4b23-9787-ee1c97385691", + "bbd5aca7-7e7b-4d06-8311-2cf48d52f004", + "7a57d6b0-c7c3-4126-8d8e-15b73700298c", + "ed4d769a-a729-464c-9950-c3c85c6236e8", + "b9093d84-9af5-4f2a-93ad-1688b71ea956", + "bc2d979c-1e8c-4c22-b201-faf3b0883de7", + "4e8e590f-c7fc-411e-a553-507fa178df0d", + "fa4f53a1-c17d-439f-ba32-89d994d23052" + ], + "stops": [], + "line_id": "1ca41c74-841c-4027-b55a-90ed5a1fb305", + "segments": [ + 0, + 21, + 38, + 46, + 53, + 55, + 63, + 67, + 73 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 401, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.390126, + 45.480283 + ], + [ + -73.39014, + 45.480293 + ], + [ + -73.390189, + 45.480347 + ], + [ + -73.389621, + 45.481161 + ], + [ + -73.389467, + 45.481417 + ], + [ + -73.389334, + 45.481534 + ], + [ + -73.389467, + 45.481602 + ], + [ + -73.38959, + 45.481669 + ], + [ + -73.390071, + 45.481927 + ], + [ + -73.390313, + 45.482057 + ], + [ + -73.390427, + 45.482115 + ], + [ + -73.393166, + 45.483526 + ], + [ + -73.393715, + 45.483828 + ], + [ + -73.393921, + 45.48395 + ], + [ + -73.394183, + 45.484121 + ], + [ + -73.394326, + 45.48422 + ], + [ + -73.394526, + 45.48436 + ], + [ + -73.394852, + 45.484608 + ], + [ + -73.395097, + 45.484806 + ], + [ + -73.395347, + 45.485022 + ], + [ + -73.395593, + 45.485252 + ], + [ + -73.396316, + 45.48599 + ], + [ + -73.396877, + 45.486562 + ], + [ + -73.397253, + 45.486945 + ], + [ + -73.397988, + 45.487693 + ], + [ + -73.398423, + 45.488141 + ], + [ + -73.398503, + 45.488224 + ], + [ + -73.400292, + 45.490061 + ], + [ + -73.400631, + 45.490403 + ], + [ + -73.40073, + 45.490503 + ], + [ + -73.40103, + 45.490791 + ], + [ + -73.401471, + 45.491169 + ], + [ + -73.401956, + 45.491543 + ], + [ + -73.402249, + 45.491741 + ], + [ + -73.402357, + 45.491809 + ], + [ + -73.40251, + 45.491908 + ], + [ + -73.402561, + 45.491939 + ], + [ + -73.403076, + 45.492241 + ], + [ + -73.403455, + 45.492444 + ], + [ + -73.403928, + 45.492669 + ], + [ + -73.405646, + 45.493445 + ], + [ + -73.406465, + 45.493815 + ], + [ + -73.407044, + 45.494076 + ], + [ + -73.407318, + 45.494207 + ], + [ + -73.407449, + 45.49427 + ], + [ + -73.408138, + 45.494635 + ], + [ + -73.408589, + 45.494884 + ] + ] + }, + "id": 402, + "properties": { + "id": "279861ae-1060-4ea3-bf22-49eb63641433", + "data": { + "gtfs": { + "shape_id": "822_1_R" + }, + "segments": [ + { + "distanceMeters": 1190, + "travelTimeSeconds": 155 + }, + { + "distanceMeters": 1107, + "travelTimeSeconds": 145 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 2296, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 2182.3024987933086, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.65, + "travelTimeWithoutDwellTimesSeconds": 300, + "operatingTimeWithLayoverTimeSeconds": 480, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 300, + "operatingSpeedWithLayoverMetersPerSecond": 4.78, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.65 + }, + "mode": "taxi", + "name": "boul. Gaétan-Boucher", + "color": "#A32638", + "nodes": [ + "fa4f53a1-c17d-439f-ba32-89d994d23052", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3" + ], + "stops": [], + "line_id": "1ca41c74-841c-4027-b55a-90ed5a1fb305", + "segments": [ + 0, + 25 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 402, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.389948, + 45.481666 + ], + [ + -73.389604, + 45.481489 + ], + [ + -73.390327, + 45.480471 + ], + [ + -73.390189, + 45.480347 + ], + [ + -73.39014, + 45.480293 + ], + [ + -73.390072, + 45.480244 + ], + [ + -73.389421, + 45.47987 + ], + [ + -73.389193, + 45.479779 + ], + [ + -73.388988, + 45.479675 + ], + [ + -73.387194, + 45.478766 + ], + [ + -73.387157, + 45.478747 + ], + [ + -73.386978, + 45.478639 + ], + [ + -73.386905, + 45.478549 + ], + [ + -73.386905, + 45.478427 + ], + [ + -73.386987, + 45.478283 + ], + [ + -73.387361, + 45.477614 + ], + [ + -73.388259, + 45.476008 + ], + [ + -73.388792, + 45.47532 + ], + [ + -73.390004, + 45.473756 + ], + [ + -73.390088, + 45.473648 + ], + [ + -73.390141, + 45.473594 + ], + [ + -73.390206, + 45.473553 + ], + [ + -73.390246, + 45.473544 + ], + [ + -73.390301, + 45.473535 + ], + [ + -73.390506, + 45.473581 + ], + [ + -73.390715, + 45.473663 + ], + [ + -73.391902, + 45.474131 + ], + [ + -73.391934, + 45.474145 + ], + [ + -73.392574, + 45.474419 + ], + [ + -73.392957, + 45.474588 + ], + [ + -73.393067, + 45.474636 + ], + [ + -73.393169, + 45.474708 + ], + [ + -73.393219, + 45.474789 + ], + [ + -73.393214, + 45.474865 + ], + [ + -73.393186, + 45.474924 + ], + [ + -73.39145, + 45.477263 + ], + [ + -73.390196, + 45.478952 + ], + [ + -73.389899, + 45.479384 + ], + [ + -73.389655, + 45.479667 + ], + [ + -73.389421, + 45.47987 + ], + [ + -73.390072, + 45.480244 + ], + [ + -73.390118, + 45.480277 + ], + [ + -73.39014, + 45.480293 + ], + [ + -73.390189, + 45.480347 + ], + [ + -73.389621, + 45.481161 + ], + [ + -73.389467, + 45.481417 + ], + [ + -73.389334, + 45.481534 + ], + [ + -73.389467, + 45.481602 + ], + [ + -73.38959, + 45.481669 + ], + [ + -73.390071, + 45.481927 + ], + [ + -73.390313, + 45.482057 + ], + [ + -73.390427, + 45.482115 + ], + [ + -73.393166, + 45.483526 + ], + [ + -73.393715, + 45.483828 + ], + [ + -73.393921, + 45.48395 + ], + [ + -73.394183, + 45.484121 + ], + [ + -73.394326, + 45.48422 + ], + [ + -73.394526, + 45.48436 + ], + [ + -73.394852, + 45.484608 + ], + [ + -73.395097, + 45.484806 + ], + [ + -73.395347, + 45.485022 + ], + [ + -73.395593, + 45.485252 + ], + [ + -73.396316, + 45.48599 + ], + [ + -73.396877, + 45.486562 + ], + [ + -73.397253, + 45.486945 + ], + [ + -73.397988, + 45.487693 + ], + [ + -73.398423, + 45.488142 + ], + [ + -73.398503, + 45.488224 + ], + [ + -73.400292, + 45.490061 + ], + [ + -73.400631, + 45.490403 + ], + [ + -73.40073, + 45.490503 + ], + [ + -73.40103, + 45.490791 + ], + [ + -73.401471, + 45.491169 + ], + [ + -73.401956, + 45.491543 + ], + [ + -73.402249, + 45.491741 + ], + [ + -73.402357, + 45.491809 + ], + [ + -73.40251, + 45.491908 + ], + [ + -73.402561, + 45.491939 + ], + [ + -73.403076, + 45.492241 + ], + [ + -73.403455, + 45.492444 + ], + [ + -73.403928, + 45.492669 + ], + [ + -73.405646, + 45.493445 + ], + [ + -73.406465, + 45.493815 + ], + [ + -73.407044, + 45.494076 + ], + [ + -73.407318, + 45.494207 + ], + [ + -73.407449, + 45.49427 + ], + [ + -73.408138, + 45.494635 + ], + [ + -73.408589, + 45.494884 + ] + ] + }, + "id": 403, + "properties": { + "id": "883d3779-1270-400a-b992-20848e52561d", + "data": { + "gtfs": { + "shape_id": "822_2_R" + }, + "segments": [ + { + "distanceMeters": 298, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 317, + "travelTimeSeconds": 49 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 340, + "travelTimeSeconds": 74 + }, + { + "distanceMeters": 402, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 1191, + "travelTimeSeconds": 180 + }, + { + "distanceMeters": 1107, + "travelTimeSeconds": 156 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 4403, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 2082.060043488649, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.12, + "travelTimeWithoutDwellTimesSeconds": 720, + "operatingTimeWithLayoverTimeSeconds": 900, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 720, + "operatingSpeedWithLayoverMetersPerSecond": 4.89, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.12 + }, + "mode": "taxi", + "name": "boul. Gaétan-Boucher", + "color": "#A32638", + "nodes": [ + "f7cea010-bc23-4b23-9787-ee1c97385691", + "bbd5aca7-7e7b-4d06-8311-2cf48d52f004", + "7a57d6b0-c7c3-4126-8d8e-15b73700298c", + "ed4d769a-a729-464c-9950-c3c85c6236e8", + "b9093d84-9af5-4f2a-93ad-1688b71ea956", + "bc2d979c-1e8c-4c22-b201-faf3b0883de7", + "4e8e590f-c7fc-411e-a553-507fa178df0d", + "fa4f53a1-c17d-439f-ba32-89d994d23052", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3" + ], + "stops": [], + "line_id": "1ca41c74-841c-4027-b55a-90ed5a1fb305", + "segments": [ + 0, + 8, + 15, + 17, + 25, + 29, + 35, + 41, + 66 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 403, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.409131, + 45.494986 + ], + [ + -73.408999, + 45.49491 + ], + [ + -73.408825, + 45.494811 + ], + [ + -73.408434, + 45.49459 + ], + [ + -73.408369, + 45.494555 + ], + [ + -73.408119, + 45.494419 + ], + [ + -73.407735, + 45.494211 + ], + [ + -73.407122, + 45.493914 + ], + [ + -73.406594, + 45.493675 + ], + [ + -73.404056, + 45.49253 + ], + [ + -73.40355, + 45.492282 + ], + [ + -73.403081, + 45.492034 + ], + [ + -73.402782, + 45.491854 + ], + [ + -73.402626, + 45.491759 + ], + [ + -73.402493, + 45.491674 + ], + [ + -73.402463, + 45.491651 + ], + [ + -73.402075, + 45.491386 + ], + [ + -73.401668, + 45.491075 + ], + [ + -73.401167, + 45.490642 + ], + [ + -73.400821, + 45.490307 + ], + [ + -73.40081, + 45.490296 + ], + [ + -73.398818, + 45.488256 + ], + [ + -73.398629, + 45.488062 + ], + [ + -73.398311, + 45.487738 + ], + [ + -73.397543, + 45.486952 + ], + [ + -73.397073, + 45.486473 + ], + [ + -73.396515, + 45.485901 + ], + [ + -73.395797, + 45.485167 + ], + [ + -73.395424, + 45.48482 + ], + [ + -73.39519, + 45.484626 + ], + [ + -73.394903, + 45.484401 + ], + [ + -73.39454, + 45.484131 + ], + [ + -73.394481, + 45.484095 + ], + [ + -73.394291, + 45.483964 + ], + [ + -73.393942, + 45.483748 + ], + [ + -73.393737, + 45.48363 + ], + [ + -73.393666, + 45.48359 + ], + [ + -73.393194, + 45.483333 + ], + [ + -73.389948, + 45.481666 + ] + ] + }, + "id": 404, + "properties": { + "id": "983c31b8-fa22-454e-bca7-7e741cc311cc", + "data": { + "gtfs": { + "shape_id": "822_2_A" + }, + "segments": [ + { + "distanceMeters": 1113, + "travelTimeSeconds": 187 + }, + { + "distanceMeters": 1020, + "travelTimeSeconds": 173 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 2132, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 2082.060043488649, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.92, + "travelTimeWithoutDwellTimesSeconds": 360, + "operatingTimeWithLayoverTimeSeconds": 540, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 360, + "operatingSpeedWithLayoverMetersPerSecond": 3.95, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.92 + }, + "mode": "taxi", + "name": "Parc ind. G-Leclerc", + "color": "#A32638", + "nodes": [ + "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "54d47023-e112-40d5-b44e-eafc96f238ef", + "f7cea010-bc23-4b23-9787-ee1c97385691" + ], + "stops": [], + "line_id": "1ca41c74-841c-4027-b55a-90ed5a1fb305", + "segments": [ + 0, + 21 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 404, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.470282, + 45.465904 + ], + [ + -73.47253, + 45.465927 + ], + [ + -73.472532, + 45.466083 + ], + [ + -73.472532, + 45.466141 + ], + [ + -73.473351, + 45.466148 + ], + [ + -73.473543, + 45.466181 + ], + [ + -73.473738, + 45.466268 + ], + [ + -73.473913, + 45.466413 + ], + [ + -73.47407, + 45.466476 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474542, + 45.4665 + ], + [ + -73.474546, + 45.466404 + ], + [ + -73.474554, + 45.466199 + ], + [ + -73.474621, + 45.465194 + ], + [ + -73.474664, + 45.464506 + ], + [ + -73.474669, + 45.464397 + ], + [ + -73.474734, + 45.464067 + ], + [ + -73.474884, + 45.463697 + ], + [ + -73.475002, + 45.463492 + ], + [ + -73.47522, + 45.463212 + ], + [ + -73.475408, + 45.463039 + ], + [ + -73.47556, + 45.462909 + ], + [ + -73.475821, + 45.462711 + ], + [ + -73.476105, + 45.462495 + ], + [ + -73.476557, + 45.462176 + ], + [ + -73.477249, + 45.461685 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.47888, + 45.460399 + ], + [ + -73.479008, + 45.460264 + ], + [ + -73.479302, + 45.459904 + ], + [ + -73.479398, + 45.459769 + ], + [ + -73.479488, + 45.459616 + ], + [ + -73.479616, + 45.459382 + ], + [ + -73.479699, + 45.459202 + ], + [ + -73.47976, + 45.459027 + ], + [ + -73.479776, + 45.458968 + ], + [ + -73.479808, + 45.458865 + ], + [ + -73.479852, + 45.458707 + ], + [ + -73.479891, + 45.458478 + ], + [ + -73.479913, + 45.458325 + ], + [ + -73.479923, + 45.458145 + ], + [ + -73.479926, + 45.458073 + ], + [ + -73.479893, + 45.457659 + ], + [ + -73.479803, + 45.456723 + ], + [ + -73.48065, + 45.456756 + ], + [ + -73.482746, + 45.456836 + ], + [ + -73.483692, + 45.456872 + ], + [ + -73.485139, + 45.456916 + ], + [ + -73.48636, + 45.456954 + ], + [ + -73.488203, + 45.457017 + ], + [ + -73.489765, + 45.457071 + ], + [ + -73.491355, + 45.457125 + ], + [ + -73.491539, + 45.457127 + ], + [ + -73.491916, + 45.45713 + ], + [ + -73.492063, + 45.457125 + ], + [ + -73.492191, + 45.457112 + ], + [ + -73.492604, + 45.457095 + ], + [ + -73.492835, + 45.457085 + ], + [ + -73.492872, + 45.457121 + ], + [ + -73.492924, + 45.45717 + ], + [ + -73.492952, + 45.457224 + ], + [ + -73.49298, + 45.457571 + ], + [ + -73.493075, + 45.459123 + ], + [ + -73.493088, + 45.459222 + ], + [ + -73.493088, + 45.459415 + ], + [ + -73.493088, + 45.459555 + ], + [ + -73.493088, + 45.459645 + ], + [ + -73.493114, + 45.459681 + ], + [ + -73.493167, + 45.459726 + ], + [ + -73.493225, + 45.459757 + ], + [ + -73.493227, + 45.459429 + ], + [ + -73.493227, + 45.459353 + ], + [ + -73.493227, + 45.459163 + ], + [ + -73.493176, + 45.458389 + ], + [ + -73.493131, + 45.457654 + ], + [ + -73.49313, + 45.457634 + ], + [ + -73.493168, + 45.457359 + ], + [ + -73.493184, + 45.457247 + ], + [ + -73.493212, + 45.457202 + ], + [ + -73.493265, + 45.457157 + ], + [ + -73.493346, + 45.457107 + ], + [ + -73.493489, + 45.457062 + ], + [ + -73.49357, + 45.457044 + ], + [ + -73.493685, + 45.456995 + ], + [ + -73.493839, + 45.456873 + ], + [ + -73.49389, + 45.456828 + ] + ] + }, + "id": 405, + "properties": { + "id": "d9c6b4a5-4f13-4c95-a588-0963b23f0843", + "data": { + "gtfs": { + "shape_id": "848_1_R" + }, + "segments": [ + { + "distanceMeters": 2509, + "travelTimeSeconds": 457 + }, + { + "distanceMeters": 451, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 60 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 3268, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 2103.6555490012965, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.45, + "travelTimeWithoutDwellTimesSeconds": 600, + "operatingTimeWithLayoverTimeSeconds": 780, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 600, + "operatingSpeedWithLayoverMetersPerSecond": 4.19, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.45 + }, + "mode": "taxi", + "name": "boul. Marie-Victorin", + "color": "#A32638", + "nodes": [ + "c4ad0852-4be5-437b-8da5-934b6b309e04", + "69fd316d-244b-48fa-871d-645ac04399fc", + "f5036251-0211-4905-a979-2d3d0f8db7ed", + "d8eae8f7-d8ed-4c6f-8280-28fd4b885b03" + ], + "stops": [], + "line_id": "b2678cc1-3ae4-4f7e-b5e5-83cfed80afc1", + "segments": [ + 0, + 52, + 71 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 405, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.470282, + 45.465904 + ], + [ + -73.47253, + 45.465927 + ], + [ + -73.472532, + 45.466083 + ], + [ + -73.472532, + 45.466141 + ], + [ + -73.473351, + 45.466148 + ], + [ + -73.473543, + 45.466181 + ], + [ + -73.473738, + 45.466268 + ], + [ + -73.473913, + 45.466413 + ], + [ + -73.47407, + 45.466476 + ], + [ + -73.474418, + 45.466493 + ], + [ + -73.474407, + 45.466674 + ], + [ + -73.474378, + 45.46715 + ], + [ + -73.474356, + 45.46763 + ], + [ + -73.474357, + 45.467948 + ], + [ + -73.47439, + 45.468455 + ], + [ + -73.474396, + 45.468587 + ], + [ + -73.474279, + 45.468564 + ], + [ + -73.474188, + 45.468555 + ], + [ + -73.474106, + 45.468546 + ], + [ + -73.47395, + 45.468523 + ], + [ + -73.473746, + 45.468478 + ], + [ + -73.473377, + 45.468366 + ], + [ + -73.47308, + 45.468244 + ], + [ + -73.472952, + 45.468208 + ], + [ + -73.472878, + 45.46819 + ], + [ + -73.47268, + 45.468159 + ], + [ + -73.47254, + 45.46815 + ], + [ + -73.471932, + 45.468123 + ], + [ + -73.471273, + 45.468091 + ], + [ + -73.470317, + 45.468041 + ], + [ + -73.469498, + 45.468002 + ], + [ + -73.469338, + 45.467993 + ], + [ + -73.469319, + 45.467991 + ], + [ + -73.468598, + 45.467969 + ], + [ + -73.468434, + 45.467978 + ], + [ + -73.467926, + 45.468045 + ], + [ + -73.467714, + 45.468067 + ], + [ + -73.46758, + 45.467757 + ], + [ + -73.467357, + 45.467296 + ], + [ + -73.467335, + 45.467098 + ], + [ + -73.467287, + 45.466921 + ], + [ + -73.46724, + 45.46679 + ], + [ + -73.467201, + 45.466621 + ], + [ + -73.467171, + 45.466457 + ], + [ + -73.467168, + 45.466361 + ], + [ + -73.467171, + 45.466266 + ], + [ + -73.46719, + 45.46616 + ], + [ + -73.467233, + 45.466051 + ], + [ + -73.467286, + 45.465947 + ], + [ + -73.467347, + 45.465852 + ], + [ + -73.46743, + 45.465768 + ], + [ + -73.467509, + 45.465697 + ], + [ + -73.467565, + 45.465647 + ], + [ + -73.467708, + 45.465556 + ], + [ + -73.467878, + 45.465455 + ], + [ + -73.467899, + 45.465442 + ], + [ + -73.46805, + 45.465387 + ], + [ + -73.468287, + 45.465321 + ], + [ + -73.468514, + 45.465288 + ], + [ + -73.468859, + 45.465256 + ], + [ + -73.469207, + 45.465245 + ], + [ + -73.471824, + 45.46534 + ], + [ + -73.47278, + 45.465351 + ], + [ + -73.473923, + 45.465346 + ], + [ + -73.474792, + 45.465284 + ], + [ + -73.476448, + 45.465339 + ], + [ + -73.478069, + 45.465419 + ], + [ + -73.47931, + 45.465481 + ], + [ + -73.480681, + 45.465584 + ], + [ + -73.481658, + 45.465665 + ], + [ + -73.483804, + 45.465854 + ], + [ + -73.484553, + 45.466021 + ], + [ + -73.485079, + 45.466155 + ], + [ + -73.485321, + 45.466217 + ], + [ + -73.485597, + 45.466363 + ], + [ + -73.485805, + 45.466512 + ], + [ + -73.48587, + 45.466606 + ], + [ + -73.486215, + 45.46715 + ], + [ + -73.486309, + 45.467253 + ], + [ + -73.48642, + 45.467342 + ], + [ + -73.486517, + 45.467414 + ], + [ + -73.486647, + 45.467482 + ], + [ + -73.486801, + 45.467547 + ], + [ + -73.486973, + 45.467585 + ], + [ + -73.4872, + 45.467617 + ], + [ + -73.49074, + 45.467901 + ], + [ + -73.491044, + 45.467928 + ], + [ + -73.493839, + 45.468153 + ], + [ + -73.496128, + 45.468328 + ], + [ + -73.496279, + 45.468355 + ], + [ + -73.496463, + 45.468391 + ], + [ + -73.496703, + 45.468486 + ], + [ + -73.496842, + 45.46858 + ], + [ + -73.496944, + 45.468675 + ], + [ + -73.497008, + 45.468765 + ], + [ + -73.497057, + 45.468873 + ], + [ + -73.497086, + 45.46899 + ], + [ + -73.497085, + 45.469111 + ], + [ + -73.497047, + 45.469224 + ], + [ + -73.496971, + 45.469327 + ], + [ + -73.496865, + 45.469413 + ], + [ + -73.496737, + 45.469476 + ], + [ + -73.496592, + 45.469521 + ], + [ + -73.496439, + 45.469543 + ], + [ + -73.496287, + 45.469543 + ], + [ + -73.496141, + 45.469516 + ], + [ + -73.496005, + 45.469471 + ], + [ + -73.495891, + 45.469404 + ], + [ + -73.4958, + 45.469318 + ], + [ + -73.49573, + 45.469219 + ], + [ + -73.495608, + 45.468985 + ], + [ + -73.495553, + 45.468855 + ], + [ + -73.495188, + 45.46809 + ], + [ + -73.494985, + 45.467532 + ], + [ + -73.494442, + 45.46593 + ], + [ + -73.494139, + 45.465053 + ], + [ + -73.494127, + 45.465021 + ], + [ + -73.493678, + 45.463735 + ], + [ + -73.493659, + 45.463676 + ], + [ + -73.493917, + 45.463636 + ], + [ + -73.493991, + 45.46364 + ], + [ + -73.494085, + 45.463658 + ], + [ + -73.494132, + 45.46369 + ], + [ + -73.494165, + 45.463748 + ], + [ + -73.494233, + 45.463951 + ], + [ + -73.494269, + 45.464113 + ], + [ + -73.494299, + 45.464153 + ], + [ + -73.494359, + 45.464176 + ], + [ + -73.494454, + 45.464176 + ], + [ + -73.495155, + 45.464144 + ], + [ + -73.495242, + 45.46418 + ], + [ + -73.495278, + 45.464189 + ], + [ + -73.495316, + 45.464198 + ], + [ + -73.495332, + 45.464193 + ], + [ + -73.495347, + 45.464189 + ], + [ + -73.495374, + 45.464176 + ], + [ + -73.495392, + 45.464149 + ], + [ + -73.495392, + 45.464126 + ], + [ + -73.49539, + 45.464115 + ], + [ + -73.495388, + 45.464104 + ], + [ + -73.495368, + 45.464081 + ], + [ + -73.495341, + 45.464068 + ], + [ + -73.495302, + 45.464063 + ], + [ + -73.495286, + 45.464067 + ], + [ + -73.495239, + 45.464077 + ], + [ + -73.495203, + 45.464099 + ], + [ + -73.495155, + 45.464144 + ], + [ + -73.494454, + 45.464176 + ], + [ + -73.494359, + 45.464176 + ], + [ + -73.494299, + 45.464153 + ], + [ + -73.494269, + 45.464113 + ], + [ + -73.494233, + 45.463951 + ], + [ + -73.494165, + 45.463748 + ], + [ + -73.494132, + 45.46369 + ], + [ + -73.494085, + 45.463658 + ], + [ + -73.493991, + 45.46364 + ], + [ + -73.493917, + 45.463636 + ], + [ + -73.493708, + 45.463668 + ], + [ + -73.493659, + 45.463676 + ], + [ + -73.493494, + 45.463181 + ], + [ + -73.493471, + 45.4631 + ], + [ + -73.493398, + 45.46278 + ], + [ + -73.493387, + 45.462702 + ], + [ + -73.493348, + 45.462495 + ], + [ + -73.493265, + 45.461696 + ], + [ + -73.49322, + 45.460923 + ], + [ + -73.493225, + 45.459757 + ], + [ + -73.493227, + 45.459429 + ], + [ + -73.493227, + 45.459343 + ], + [ + -73.493227, + 45.459163 + ], + [ + -73.493176, + 45.458389 + ], + [ + -73.49313, + 45.457634 + ], + [ + -73.493168, + 45.457359 + ], + [ + -73.493184, + 45.457247 + ], + [ + -73.493212, + 45.457202 + ], + [ + -73.493265, + 45.457157 + ], + [ + -73.493346, + 45.457107 + ], + [ + -73.493489, + 45.457062 + ], + [ + -73.49357, + 45.457044 + ], + [ + -73.493685, + 45.456995 + ], + [ + -73.493839, + 45.456873 + ], + [ + -73.49389, + 45.456828 + ] + ] + }, + "id": 406, + "properties": { + "id": "5bf1b821-00f5-45c9-87d2-858d267c1392", + "data": { + "gtfs": { + "shape_id": "848_2_R" + }, + "segments": [ + { + "distanceMeters": 5018, + "travelTimeSeconds": 505 + }, + { + "distanceMeters": 489, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 60 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 5814, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 2103.6555490012965, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.69, + "travelTimeWithoutDwellTimesSeconds": 600, + "operatingTimeWithLayoverTimeSeconds": 780, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 600, + "operatingSpeedWithLayoverMetersPerSecond": 7.45, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.69 + }, + "mode": "taxi", + "name": "boul. Marie-Victorin", + "color": "#A32638", + "nodes": [ + "c4ad0852-4be5-437b-8da5-934b6b309e04", + "b19b665b-1a3f-41e4-97e7-48f99301b48f", + "f5036251-0211-4905-a979-2d3d0f8db7ed", + "d8eae8f7-d8ed-4c6f-8280-28fd4b885b03" + ], + "stops": [], + "line_id": "b2678cc1-3ae4-4f7e-b5e5-83cfed80afc1", + "segments": [ + 0, + 157, + 168 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 406, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.49389, + 45.456828 + ], + [ + -73.493987, + 45.456743 + ], + [ + -73.494541, + 45.456266 + ], + [ + -73.494697, + 45.456063 + ], + [ + -73.494742, + 45.455982 + ], + [ + -73.494781, + 45.455901 + ], + [ + -73.494793, + 45.45582 + ], + [ + -73.494815, + 45.455658 + ], + [ + -73.494801, + 45.455497 + ], + [ + -73.494713, + 45.455193 + ], + [ + -73.4947, + 45.45515 + ], + [ + -73.494644, + 45.454934 + ], + [ + -73.494633, + 45.454606 + ], + [ + -73.494639, + 45.454208 + ], + [ + -73.494657, + 45.4529 + ], + [ + -73.494661, + 45.45272 + ], + [ + -73.494661, + 45.452707 + ], + [ + -73.494642, + 45.452086 + ], + [ + -73.494617, + 45.451655 + ], + [ + -73.494597, + 45.451326 + ], + [ + -73.494586, + 45.45114 + ], + [ + -73.494547, + 45.450511 + ], + [ + -73.494535, + 45.450326 + ], + [ + -73.494533, + 45.450291 + ], + [ + -73.494494, + 45.449652 + ], + [ + -73.494477, + 45.449575 + ], + [ + -73.494455, + 45.449517 + ], + [ + -73.494402, + 45.449423 + ], + [ + -73.494348, + 45.449342 + ], + [ + -73.494245, + 45.449225 + ], + [ + -73.494147, + 45.449144 + ], + [ + -73.494268, + 45.449068 + ], + [ + -73.494276, + 45.449063 + ], + [ + -73.494471, + 45.448874 + ], + [ + -73.494489, + 45.448329 + ], + [ + -73.4946, + 45.448203 + ], + [ + -73.494627, + 45.448172 + ], + [ + -73.494714, + 45.448037 + ], + [ + -73.494728, + 45.447947 + ], + [ + -73.494717, + 45.447928 + ], + [ + -73.494697, + 45.447893 + ], + [ + -73.494624, + 45.447861 + ], + [ + -73.494525, + 45.447852 + ], + [ + -73.494509, + 45.447854 + ], + [ + -73.494476, + 45.447857 + ], + [ + -73.494435, + 45.447875 + ], + [ + -73.49439, + 45.447915 + ], + [ + -73.494386, + 45.448037 + ], + [ + -73.494428, + 45.448163 + ], + [ + -73.494462, + 45.448248 + ], + [ + -73.494489, + 45.448329 + ], + [ + -73.494471, + 45.448874 + ], + [ + -73.494276, + 45.449063 + ], + [ + -73.494147, + 45.449144 + ], + [ + -73.49394, + 45.449049 + ], + [ + -73.493856, + 45.449013 + ], + [ + -73.493747, + 45.448977 + ], + [ + -73.493571, + 45.448941 + ], + [ + -73.493073, + 45.448905 + ], + [ + -73.4929, + 45.448892 + ], + [ + -73.49291, + 45.448771 + ], + [ + -73.49296, + 45.448149 + ], + [ + -73.493007, + 45.447654 + ], + [ + -73.493156, + 45.446086 + ], + [ + -73.493229, + 45.445324 + ], + [ + -73.493262, + 45.444847 + ], + [ + -73.4933, + 45.444446 + ], + [ + -73.493406, + 45.443357 + ], + [ + -73.493429, + 45.44262 + ], + [ + -73.493466, + 45.442098 + ], + [ + -73.493451, + 45.441636 + ], + [ + -73.493411, + 45.441199 + ], + [ + -73.493271, + 45.440509 + ], + [ + -73.493138, + 45.44014 + ], + [ + -73.49292, + 45.439677 + ], + [ + -73.492491, + 45.438692 + ], + [ + -73.492331, + 45.438305 + ], + [ + -73.492202, + 45.437981 + ], + [ + -73.492046, + 45.437427 + ], + [ + -73.491995, + 45.437207 + ], + [ + -73.491944, + 45.436946 + ], + [ + -73.491917, + 45.436775 + ], + [ + -73.491816, + 45.436078 + ], + [ + -73.49173, + 45.435439 + ], + [ + -73.491694, + 45.435263 + ], + [ + -73.491684, + 45.4352 + ], + [ + -73.491661, + 45.434957 + ], + [ + -73.491513, + 45.433962 + ], + [ + -73.4915, + 45.433877 + ], + [ + -73.491853, + 45.433886 + ], + [ + -73.491863, + 45.433963 + ], + [ + -73.491871, + 45.434003 + ], + [ + -73.491871, + 45.434048 + ], + [ + -73.491867, + 45.43408 + ], + [ + -73.491859, + 45.434105 + ], + [ + -73.491849, + 45.434138 + ], + [ + -73.491828, + 45.434174 + ], + [ + -73.491814, + 45.434228 + ], + [ + -73.491804, + 45.434278 + ], + [ + -73.491807, + 45.434327 + ], + [ + -73.491818, + 45.434426 + ], + [ + -73.491831, + 45.434568 + ], + [ + -73.491835, + 45.434615 + ], + [ + -73.491866, + 45.434768 + ], + [ + -73.49188, + 45.434863 + ], + [ + -73.491895, + 45.434944 + ], + [ + -73.491904, + 45.435038 + ], + [ + -73.49191, + 45.435083 + ], + [ + -73.491915, + 45.43511 + ], + [ + -73.491911, + 45.435142 + ], + [ + -73.491882, + 45.435169 + ], + [ + -73.491835, + 45.435179 + ], + [ + -73.491773, + 45.435188 + ], + [ + -73.491684, + 45.4352 + ], + [ + -73.491282, + 45.435228 + ], + [ + -73.490861, + 45.435254 + ], + [ + -73.490871, + 45.435313 + ], + [ + -73.490911, + 45.435596 + ], + [ + -73.490941, + 45.43588 + ], + [ + -73.490978, + 45.436131 + ], + [ + -73.491142, + 45.436851 + ], + [ + -73.491237, + 45.437184 + ], + [ + -73.49152, + 45.437954 + ], + [ + -73.491829, + 45.438638 + ], + [ + -73.492171, + 45.439317 + ], + [ + -73.492536, + 45.440134 + ], + [ + -73.492686, + 45.440476 + ], + [ + -73.492772, + 45.440644 + ], + [ + -73.492804, + 45.441148 + ], + [ + -73.492835, + 45.441319 + ], + [ + -73.492886, + 45.441751 + ], + [ + -73.492955, + 45.442327 + ], + [ + -73.492825, + 45.443281 + ], + [ + -73.49278, + 45.443672 + ], + [ + -73.492671, + 45.445045 + ], + [ + -73.492587, + 45.445944 + ], + [ + -73.49245, + 45.447542 + ], + [ + -73.491852, + 45.447527 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.490554, + 45.447636 + ], + [ + -73.490537, + 45.447972 + ], + [ + -73.490521, + 45.448293 + ], + [ + -73.490408, + 45.449489 + ], + [ + -73.490386, + 45.449719 + ], + [ + -73.490356, + 45.450109 + ], + [ + -73.490274, + 45.451145 + ], + [ + -73.490186, + 45.451894 + ], + [ + -73.490174, + 45.451996 + ], + [ + -73.490164, + 45.452099 + ], + [ + -73.490107, + 45.452689 + ], + [ + -73.490099, + 45.452842 + ], + [ + -73.490095, + 45.452936 + ], + [ + -73.490138, + 45.453076 + ], + [ + -73.490177, + 45.453161 + ], + [ + -73.490251, + 45.453269 + ], + [ + -73.490337, + 45.453359 + ], + [ + -73.490528, + 45.453501 + ], + [ + -73.49064, + 45.453584 + ], + [ + -73.490922, + 45.453778 + ], + [ + -73.491049, + 45.453868 + ], + [ + -73.491205, + 45.454016 + ], + [ + -73.491307, + 45.454169 + ], + [ + -73.491353, + 45.454286 + ], + [ + -73.491385, + 45.45439 + ], + [ + -73.491385, + 45.45452 + ], + [ + -73.491384, + 45.454523 + ], + [ + -73.491379, + 45.454673 + ], + [ + -73.491306, + 45.455478 + ], + [ + -73.491179, + 45.455672 + ], + [ + -73.491016, + 45.455797 + ], + [ + -73.49101, + 45.455802 + ], + [ + -73.490874, + 45.45587 + ], + [ + -73.490235, + 45.456194 + ], + [ + -73.490047, + 45.45632 + ], + [ + -73.489891, + 45.45645 + ], + [ + -73.489837, + 45.456558 + ], + [ + -73.489805, + 45.456679 + ], + [ + -73.48979, + 45.456788 + ], + [ + -73.489787, + 45.45681 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.488779, + 45.456899 + ], + [ + -73.488212, + 45.456877 + ], + [ + -73.486364, + 45.456814 + ], + [ + -73.485148, + 45.456777 + ], + [ + -73.483698, + 45.456733 + ], + [ + -73.482756, + 45.456692 + ], + [ + -73.480663, + 45.456635 + ], + [ + -73.479792, + 45.456611 + ], + [ + -73.479622, + 45.456606 + ], + [ + -73.479632, + 45.456719 + ], + [ + -73.47972, + 45.457668 + ], + [ + -73.479747, + 45.458082 + ], + [ + -73.479754, + 45.45832 + ], + [ + -73.479732, + 45.458469 + ], + [ + -73.479695, + 45.458689 + ], + [ + -73.479603, + 45.459 + ], + [ + -73.479545, + 45.459171 + ], + [ + -73.479465, + 45.459342 + ], + [ + -73.479339, + 45.459576 + ], + [ + -73.479253, + 45.45972 + ], + [ + -73.479162, + 45.45985 + ], + [ + -73.478872, + 45.460205 + ], + [ + -73.478751, + 45.460331 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474065, + 45.466381 + ], + [ + -73.47383, + 45.466232 + ], + [ + -73.473605, + 45.466125 + ], + [ + -73.473418, + 45.466091 + ], + [ + -73.472532, + 45.466083 + ], + [ + -73.47253, + 45.465927 + ], + [ + -73.472528, + 45.465779 + ], + [ + -73.470085, + 45.465745 + ], + [ + -73.470082, + 45.465902 + ], + [ + -73.470282, + 45.465904 + ] + ] + }, + "id": 407, + "properties": { + "id": "e37dbe09-6beb-4ab4-9541-3b1cf19657e5", + "data": { + "gtfs": { + "shape_id": "848_1_A" + }, + "segments": [ + { + "distanceMeters": 205, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 595, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 1427, + "travelTimeSeconds": 113 + }, + { + "distanceMeters": 1790, + "travelTimeSeconds": 225 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 2448, + "travelTimeSeconds": 420 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 8360, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 2103.655549001296, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.2, + "travelTimeWithoutDwellTimesSeconds": 1020, + "operatingTimeWithLayoverTimeSeconds": 1200, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1020, + "operatingSpeedWithLayoverMetersPerSecond": 6.97, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.2 + }, + "mode": "taxi", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "d8eae8f7-d8ed-4c6f-8280-28fd4b885b03", + "81232cdf-e1d4-440c-91bd-cfdc85007144", + "7ad52fd5-2149-40d5-ae51-5e78e11fdbc1", + "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", + "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", + "c25e5964-dcb2-42c5-8dcb-381856954cdc", + "127a18dc-2231-401d-91c9-c547e1fe457d", + "4b68f075-e5fe-41d1-ab47-bccc21ae9421", + "23aabe88-4903-4450-a13c-36afbe3bd891", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "997c4af9-ab50-4dfb-941a-afadff58f267", + "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", + "c7c30949-db61-44fc-b7ab-a69b9fde12cc", + "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", + "f1131e74-6c65-4f22-a18d-41dbe35e4576", + "984def83-5f59-45f7-bb33-ed1dbca30502", + "c4ad0852-4be5-437b-8da5-934b6b309e04" + ], + "stops": [], + "line_id": "b2678cc1-3ae4-4f7e-b5e5-83cfed80afc1", + "segments": [ + 0, + 9, + 13, + 16, + 18, + 22, + 39, + 63, + 94, + 140, + 142, + 146, + 156, + 165, + 169, + 177 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 407, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.49389, + 45.456828 + ], + [ + -73.493987, + 45.456743 + ], + [ + -73.494541, + 45.456266 + ], + [ + -73.494697, + 45.456063 + ], + [ + -73.494742, + 45.455982 + ], + [ + -73.494781, + 45.455901 + ], + [ + -73.494793, + 45.45582 + ], + [ + -73.494815, + 45.455658 + ], + [ + -73.494801, + 45.455497 + ], + [ + -73.494713, + 45.455193 + ], + [ + -73.4947, + 45.45515 + ], + [ + -73.494644, + 45.454934 + ], + [ + -73.494633, + 45.454606 + ], + [ + -73.494639, + 45.454208 + ], + [ + -73.494657, + 45.4529 + ], + [ + -73.494661, + 45.45272 + ], + [ + -73.494661, + 45.452707 + ], + [ + -73.494642, + 45.452086 + ], + [ + -73.494617, + 45.451655 + ], + [ + -73.494597, + 45.451326 + ], + [ + -73.494586, + 45.45114 + ], + [ + -73.494547, + 45.450511 + ], + [ + -73.494535, + 45.450326 + ], + [ + -73.494533, + 45.450291 + ], + [ + -73.494494, + 45.449652 + ], + [ + -73.494477, + 45.449575 + ], + [ + -73.494455, + 45.449517 + ], + [ + -73.494402, + 45.449423 + ], + [ + -73.494348, + 45.449342 + ], + [ + -73.494245, + 45.449225 + ], + [ + -73.494147, + 45.449144 + ], + [ + -73.494276, + 45.449063 + ], + [ + -73.494471, + 45.448874 + ], + [ + -73.494489, + 45.448329 + ], + [ + -73.494627, + 45.448172 + ], + [ + -73.494714, + 45.448037 + ], + [ + -73.494728, + 45.447947 + ], + [ + -73.494717, + 45.447928 + ], + [ + -73.494697, + 45.447893 + ], + [ + -73.494624, + 45.447861 + ], + [ + -73.494606, + 45.44786 + ], + [ + -73.494525, + 45.447852 + ], + [ + -73.494476, + 45.447857 + ], + [ + -73.494435, + 45.447875 + ], + [ + -73.49439, + 45.447915 + ], + [ + -73.494386, + 45.448037 + ], + [ + -73.494422, + 45.448144 + ], + [ + -73.494428, + 45.448163 + ], + [ + -73.494462, + 45.448248 + ], + [ + -73.494489, + 45.448329 + ], + [ + -73.494471, + 45.448874 + ], + [ + -73.494276, + 45.449063 + ], + [ + -73.494147, + 45.449144 + ], + [ + -73.49394, + 45.449049 + ], + [ + -73.493856, + 45.449013 + ], + [ + -73.493747, + 45.448977 + ], + [ + -73.493571, + 45.448941 + ], + [ + -73.493073, + 45.448905 + ], + [ + -73.4929, + 45.448892 + ], + [ + -73.49296, + 45.448149 + ], + [ + -73.493007, + 45.447654 + ], + [ + -73.493156, + 45.446087 + ], + [ + -73.493229, + 45.445324 + ], + [ + -73.493262, + 45.444847 + ], + [ + -73.4933, + 45.444446 + ], + [ + -73.493406, + 45.443357 + ], + [ + -73.493429, + 45.44262 + ], + [ + -73.493466, + 45.442098 + ], + [ + -73.493451, + 45.441636 + ], + [ + -73.493411, + 45.441199 + ], + [ + -73.493271, + 45.440509 + ], + [ + -73.493138, + 45.44014 + ], + [ + -73.49292, + 45.439677 + ], + [ + -73.492491, + 45.438692 + ], + [ + -73.492331, + 45.438305 + ], + [ + -73.492202, + 45.437981 + ], + [ + -73.492046, + 45.437427 + ], + [ + -73.491995, + 45.437207 + ], + [ + -73.491944, + 45.436946 + ], + [ + -73.491917, + 45.436775 + ], + [ + -73.491816, + 45.436078 + ], + [ + -73.49173, + 45.435439 + ], + [ + -73.491694, + 45.435263 + ], + [ + -73.491684, + 45.4352 + ], + [ + -73.491661, + 45.434957 + ], + [ + -73.491513, + 45.433962 + ], + [ + -73.4915, + 45.433877 + ], + [ + -73.491853, + 45.433886 + ], + [ + -73.491863, + 45.433963 + ], + [ + -73.491871, + 45.434003 + ], + [ + -73.491871, + 45.434048 + ], + [ + -73.491867, + 45.43408 + ], + [ + -73.49186, + 45.434104 + ], + [ + -73.491849, + 45.434138 + ], + [ + -73.491828, + 45.434174 + ], + [ + -73.491814, + 45.434228 + ], + [ + -73.491804, + 45.434278 + ], + [ + -73.491807, + 45.434327 + ], + [ + -73.491818, + 45.434426 + ], + [ + -73.491831, + 45.434568 + ], + [ + -73.491835, + 45.434615 + ], + [ + -73.491866, + 45.434768 + ], + [ + -73.49188, + 45.434863 + ], + [ + -73.491895, + 45.434944 + ], + [ + -73.491904, + 45.435038 + ], + [ + -73.49191, + 45.435083 + ], + [ + -73.491915, + 45.43511 + ], + [ + -73.491911, + 45.435142 + ], + [ + -73.491882, + 45.435169 + ], + [ + -73.491835, + 45.435179 + ], + [ + -73.491773, + 45.435188 + ], + [ + -73.491684, + 45.4352 + ], + [ + -73.491282, + 45.435228 + ], + [ + -73.490861, + 45.435254 + ], + [ + -73.490871, + 45.435313 + ], + [ + -73.490911, + 45.435596 + ], + [ + -73.490941, + 45.43588 + ], + [ + -73.490978, + 45.436131 + ], + [ + -73.491142, + 45.436851 + ], + [ + -73.491237, + 45.437184 + ], + [ + -73.49152, + 45.437954 + ], + [ + -73.491829, + 45.438638 + ], + [ + -73.492171, + 45.439317 + ], + [ + -73.492536, + 45.440134 + ], + [ + -73.492686, + 45.440476 + ], + [ + -73.492772, + 45.440644 + ], + [ + -73.492804, + 45.441148 + ], + [ + -73.492835, + 45.441319 + ], + [ + -73.492886, + 45.441751 + ], + [ + -73.492955, + 45.442327 + ], + [ + -73.492825, + 45.443281 + ], + [ + -73.49278, + 45.443672 + ], + [ + -73.492671, + 45.445045 + ], + [ + -73.492587, + 45.445944 + ], + [ + -73.49245, + 45.447542 + ], + [ + -73.491852, + 45.447527 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.490554, + 45.447636 + ], + [ + -73.490537, + 45.447971 + ], + [ + -73.490521, + 45.448293 + ], + [ + -73.490408, + 45.449488 + ], + [ + -73.490386, + 45.449719 + ], + [ + -73.490356, + 45.450109 + ], + [ + -73.490274, + 45.451145 + ], + [ + -73.490186, + 45.451892 + ], + [ + -73.490174, + 45.451996 + ], + [ + -73.490164, + 45.452099 + ], + [ + -73.490107, + 45.452689 + ], + [ + -73.490099, + 45.452842 + ], + [ + -73.490095, + 45.452936 + ], + [ + -73.490138, + 45.453076 + ], + [ + -73.490177, + 45.453161 + ], + [ + -73.490251, + 45.453269 + ], + [ + -73.490337, + 45.453359 + ], + [ + -73.490526, + 45.453499 + ], + [ + -73.49064, + 45.453584 + ], + [ + -73.490922, + 45.453778 + ], + [ + -73.491049, + 45.453868 + ], + [ + -73.491205, + 45.454016 + ], + [ + -73.491307, + 45.454169 + ], + [ + -73.491353, + 45.454286 + ], + [ + -73.491385, + 45.45439 + ], + [ + -73.491385, + 45.45452 + ], + [ + -73.491384, + 45.454521 + ], + [ + -73.491379, + 45.454673 + ], + [ + -73.491306, + 45.455478 + ], + [ + -73.491179, + 45.455672 + ], + [ + -73.491018, + 45.455796 + ], + [ + -73.49101, + 45.455802 + ], + [ + -73.490874, + 45.45587 + ], + [ + -73.490235, + 45.456194 + ], + [ + -73.490047, + 45.45632 + ], + [ + -73.489891, + 45.45645 + ], + [ + -73.489837, + 45.456558 + ], + [ + -73.489805, + 45.456679 + ], + [ + -73.48979, + 45.456786 + ], + [ + -73.489787, + 45.45681 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.489765, + 45.457071 + ], + [ + -73.490973, + 45.457112 + ], + [ + -73.491355, + 45.457125 + ], + [ + -73.491497, + 45.457126 + ], + [ + -73.491916, + 45.45713 + ], + [ + -73.492063, + 45.457125 + ], + [ + -73.492191, + 45.457112 + ], + [ + -73.492207, + 45.457328 + ], + [ + -73.492451, + 45.459737 + ], + [ + -73.492461, + 45.459829 + ], + [ + -73.492544, + 45.460635 + ], + [ + -73.492615, + 45.461161 + ], + [ + -73.49267, + 45.461326 + ], + [ + -73.492688, + 45.461621 + ], + [ + -73.491311, + 45.461584 + ], + [ + -73.491151, + 45.461579 + ], + [ + -73.490078, + 45.461548 + ], + [ + -73.489429, + 45.461531 + ], + [ + -73.488659, + 45.461512 + ], + [ + -73.488594, + 45.462464 + ], + [ + -73.488573, + 45.462762 + ], + [ + -73.488498, + 45.462929 + ], + [ + -73.488349, + 45.463109 + ], + [ + -73.488109, + 45.463235 + ], + [ + -73.487821, + 45.463302 + ], + [ + -73.487412, + 45.463379 + ], + [ + -73.487283, + 45.463388 + ], + [ + -73.487042, + 45.463406 + ], + [ + -73.486606, + 45.463401 + ], + [ + -73.486489, + 45.463401 + ], + [ + -73.486321, + 45.463433 + ], + [ + -73.486243, + 45.463455 + ], + [ + -73.486089, + 45.463495 + ], + [ + -73.485896, + 45.463576 + ], + [ + -73.485826, + 45.463612 + ], + [ + -73.485277, + 45.463878 + ], + [ + -73.485098, + 45.46395 + ], + [ + -73.484961, + 45.463999 + ], + [ + -73.484817, + 45.464035 + ], + [ + -73.484669, + 45.464067 + ], + [ + -73.484494, + 45.464076 + ], + [ + -73.484342, + 45.46408 + ], + [ + -73.48257, + 45.464048 + ], + [ + -73.482309, + 45.464098 + ], + [ + -73.481982, + 45.464183 + ], + [ + -73.48144, + 45.464399 + ], + [ + -73.480932, + 45.463792 + ], + [ + -73.480306, + 45.46304 + ], + [ + -73.479274, + 45.461807 + ], + [ + -73.478983, + 45.461465 + ], + [ + -73.478678, + 45.461105 + ], + [ + -73.47855, + 45.461011 + ], + [ + -73.478362, + 45.460844 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474065, + 45.466381 + ], + [ + -73.47383, + 45.466232 + ], + [ + -73.473605, + 45.466125 + ], + [ + -73.473418, + 45.466091 + ], + [ + -73.472532, + 45.466083 + ], + [ + -73.47253, + 45.465927 + ], + [ + -73.472528, + 45.465779 + ], + [ + -73.470085, + 45.465745 + ], + [ + -73.470082, + 45.465902 + ], + [ + -73.470282, + 45.465904 + ] + ] + }, + "id": 408, + "properties": { + "id": "00d7b0b4-8ca4-440b-8a0b-2b7895d034f3", + "data": { + "gtfs": { + "shape_id": "848_2_A" + }, + "segments": [ + { + "distanceMeters": 205, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 595, + "travelTimeSeconds": 58 + }, + { + "distanceMeters": 1427, + "travelTimeSeconds": 141 + }, + { + "distanceMeters": 1790, + "travelTimeSeconds": 150 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 60 + }, + { + "distanceMeters": 347, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 2583, + "travelTimeSeconds": 287 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 9326, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 2103.655549001296, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 9.71, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 8.18, + "averageSpeedWithoutDwellTimesMetersPerSecond": 9.71 + }, + "mode": "taxi", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "d8eae8f7-d8ed-4c6f-8280-28fd4b885b03", + "81232cdf-e1d4-440c-91bd-cfdc85007144", + "7ad52fd5-2149-40d5-ae51-5e78e11fdbc1", + "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", + "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", + "c25e5964-dcb2-42c5-8dcb-381856954cdc", + "127a18dc-2231-401d-91c9-c547e1fe457d", + "4b68f075-e5fe-41d1-ab47-bccc21ae9421", + "23aabe88-4903-4450-a13c-36afbe3bd891", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "997c4af9-ab50-4dfb-941a-afadff58f267", + "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", + "c7c30949-db61-44fc-b7ab-a69b9fde12cc", + "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", + "f1131e74-6c65-4f22-a18d-41dbe35e4576", + "984def83-5f59-45f7-bb33-ed1dbca30502", + "69fd316d-244b-48fa-871d-645ac04399fc", + "8e7df7c5-fbe3-41d1-a80a-c492814328ef", + "13911923-9958-42d2-8802-57ffe78c7f38", + "c4ad0852-4be5-437b-8da5-934b6b309e04" + ], + "stops": [], + "line_id": "b2678cc1-3ae4-4f7e-b5e5-83cfed80afc1", + "segments": [ + 0, + 9, + 13, + 16, + 18, + 22, + 37, + 61, + 92, + 138, + 140, + 144, + 154, + 163, + 167, + 175, + 181, + 186, + 192 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 408, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.49389, + 45.456828 + ], + [ + -73.493987, + 45.456743 + ], + [ + -73.494541, + 45.456266 + ], + [ + -73.494697, + 45.456063 + ], + [ + -73.494742, + 45.455982 + ], + [ + -73.494781, + 45.455901 + ], + [ + -73.494793, + 45.45582 + ], + [ + -73.494815, + 45.455658 + ], + [ + -73.494801, + 45.455497 + ], + [ + -73.494713, + 45.455193 + ], + [ + -73.4947, + 45.45515 + ], + [ + -73.494644, + 45.454934 + ], + [ + -73.494633, + 45.454606 + ], + [ + -73.494639, + 45.454208 + ], + [ + -73.494657, + 45.4529 + ], + [ + -73.494661, + 45.45272 + ], + [ + -73.494661, + 45.452707 + ], + [ + -73.494642, + 45.452086 + ], + [ + -73.494617, + 45.451655 + ], + [ + -73.494597, + 45.451326 + ], + [ + -73.494586, + 45.45114 + ], + [ + -73.494547, + 45.450511 + ], + [ + -73.494535, + 45.450326 + ], + [ + -73.494533, + 45.450291 + ], + [ + -73.494494, + 45.449652 + ], + [ + -73.494477, + 45.449575 + ], + [ + -73.494455, + 45.449517 + ], + [ + -73.494402, + 45.449423 + ], + [ + -73.494348, + 45.449342 + ], + [ + -73.494245, + 45.449225 + ], + [ + -73.494147, + 45.449144 + ], + [ + -73.494268, + 45.449068 + ], + [ + -73.494276, + 45.449063 + ], + [ + -73.494471, + 45.448874 + ], + [ + -73.494489, + 45.448329 + ], + [ + -73.4946, + 45.448203 + ], + [ + -73.494627, + 45.448172 + ], + [ + -73.494714, + 45.448037 + ], + [ + -73.494728, + 45.447947 + ], + [ + -73.494717, + 45.447928 + ], + [ + -73.494697, + 45.447893 + ], + [ + -73.494624, + 45.447861 + ], + [ + -73.494525, + 45.447852 + ], + [ + -73.494509, + 45.447854 + ], + [ + -73.494476, + 45.447857 + ], + [ + -73.494435, + 45.447875 + ], + [ + -73.49439, + 45.447915 + ], + [ + -73.494386, + 45.448037 + ], + [ + -73.494428, + 45.448163 + ], + [ + -73.494462, + 45.448248 + ], + [ + -73.494489, + 45.448329 + ], + [ + -73.494471, + 45.448874 + ], + [ + -73.494276, + 45.449063 + ], + [ + -73.494147, + 45.449144 + ], + [ + -73.49394, + 45.449049 + ], + [ + -73.493856, + 45.449013 + ], + [ + -73.493747, + 45.448977 + ], + [ + -73.493571, + 45.448941 + ], + [ + -73.493073, + 45.448905 + ], + [ + -73.4929, + 45.448892 + ], + [ + -73.49291, + 45.448771 + ], + [ + -73.49296, + 45.448149 + ], + [ + -73.493007, + 45.447654 + ], + [ + -73.493156, + 45.446086 + ], + [ + -73.493229, + 45.445324 + ], + [ + -73.493262, + 45.444847 + ], + [ + -73.4933, + 45.444446 + ], + [ + -73.493406, + 45.443357 + ], + [ + -73.493429, + 45.44262 + ], + [ + -73.493466, + 45.442098 + ], + [ + -73.493451, + 45.441636 + ], + [ + -73.493411, + 45.441199 + ], + [ + -73.493271, + 45.440509 + ], + [ + -73.493138, + 45.44014 + ], + [ + -73.49292, + 45.439677 + ], + [ + -73.492491, + 45.438692 + ], + [ + -73.492331, + 45.438305 + ], + [ + -73.492202, + 45.437981 + ], + [ + -73.492046, + 45.437427 + ], + [ + -73.491995, + 45.437207 + ], + [ + -73.491944, + 45.436946 + ], + [ + -73.491917, + 45.436775 + ], + [ + -73.491816, + 45.436078 + ], + [ + -73.49173, + 45.435439 + ], + [ + -73.491694, + 45.435263 + ], + [ + -73.491684, + 45.4352 + ], + [ + -73.491661, + 45.434957 + ], + [ + -73.491513, + 45.433962 + ], + [ + -73.4915, + 45.433877 + ], + [ + -73.491853, + 45.433886 + ], + [ + -73.491863, + 45.433963 + ], + [ + -73.491871, + 45.434003 + ], + [ + -73.491871, + 45.434048 + ], + [ + -73.491867, + 45.43408 + ], + [ + -73.491859, + 45.434105 + ], + [ + -73.491849, + 45.434138 + ], + [ + -73.491828, + 45.434174 + ], + [ + -73.491814, + 45.434228 + ], + [ + -73.491804, + 45.434278 + ], + [ + -73.491807, + 45.434327 + ], + [ + -73.491818, + 45.434426 + ], + [ + -73.491831, + 45.434568 + ], + [ + -73.491835, + 45.434615 + ], + [ + -73.491866, + 45.434768 + ], + [ + -73.49188, + 45.434863 + ], + [ + -73.491895, + 45.434944 + ], + [ + -73.491904, + 45.435038 + ], + [ + -73.49191, + 45.435083 + ], + [ + -73.491915, + 45.43511 + ], + [ + -73.491911, + 45.435142 + ], + [ + -73.491882, + 45.435169 + ], + [ + -73.491835, + 45.435179 + ], + [ + -73.491773, + 45.435188 + ], + [ + -73.491684, + 45.4352 + ], + [ + -73.491282, + 45.435228 + ], + [ + -73.490861, + 45.435254 + ], + [ + -73.490871, + 45.435313 + ], + [ + -73.490911, + 45.435596 + ], + [ + -73.490941, + 45.43588 + ], + [ + -73.490978, + 45.436131 + ], + [ + -73.491142, + 45.436851 + ], + [ + -73.491237, + 45.437184 + ], + [ + -73.49152, + 45.437954 + ], + [ + -73.491829, + 45.438638 + ], + [ + -73.492171, + 45.439317 + ], + [ + -73.492536, + 45.440134 + ], + [ + -73.492686, + 45.440476 + ], + [ + -73.492772, + 45.440644 + ], + [ + -73.492804, + 45.441148 + ], + [ + -73.492835, + 45.441319 + ], + [ + -73.492886, + 45.441751 + ], + [ + -73.492955, + 45.442327 + ], + [ + -73.492825, + 45.443281 + ], + [ + -73.49278, + 45.443672 + ], + [ + -73.492671, + 45.445045 + ], + [ + -73.492587, + 45.445944 + ], + [ + -73.49245, + 45.447542 + ], + [ + -73.491852, + 45.447527 + ], + [ + -73.490561, + 45.447497 + ], + [ + -73.490554, + 45.447636 + ], + [ + -73.490537, + 45.447972 + ], + [ + -73.490521, + 45.448293 + ], + [ + -73.490408, + 45.449489 + ], + [ + -73.490386, + 45.449719 + ], + [ + -73.490356, + 45.450109 + ], + [ + -73.490274, + 45.451145 + ], + [ + -73.490186, + 45.451894 + ], + [ + -73.490174, + 45.451996 + ], + [ + -73.490164, + 45.452099 + ], + [ + -73.490107, + 45.452689 + ], + [ + -73.490099, + 45.452842 + ], + [ + -73.490095, + 45.452936 + ], + [ + -73.490138, + 45.453076 + ], + [ + -73.490177, + 45.453161 + ], + [ + -73.490251, + 45.453269 + ], + [ + -73.490337, + 45.453359 + ], + [ + -73.490528, + 45.453501 + ], + [ + -73.49064, + 45.453584 + ], + [ + -73.490922, + 45.453778 + ], + [ + -73.491049, + 45.453868 + ], + [ + -73.491205, + 45.454016 + ], + [ + -73.491307, + 45.454169 + ], + [ + -73.491353, + 45.454286 + ], + [ + -73.491385, + 45.45439 + ], + [ + -73.491385, + 45.45452 + ], + [ + -73.491384, + 45.454523 + ], + [ + -73.491379, + 45.454673 + ], + [ + -73.491306, + 45.455478 + ], + [ + -73.491179, + 45.455672 + ], + [ + -73.491016, + 45.455797 + ], + [ + -73.49101, + 45.455802 + ], + [ + -73.490874, + 45.45587 + ], + [ + -73.490235, + 45.456194 + ], + [ + -73.490047, + 45.45632 + ], + [ + -73.489891, + 45.45645 + ], + [ + -73.489837, + 45.456558 + ], + [ + -73.489805, + 45.456679 + ], + [ + -73.48979, + 45.456788 + ], + [ + -73.489787, + 45.45681 + ], + [ + -73.489781, + 45.456936 + ], + [ + -73.488779, + 45.456899 + ], + [ + -73.488212, + 45.456877 + ], + [ + -73.486364, + 45.456814 + ], + [ + -73.485148, + 45.456777 + ], + [ + -73.483698, + 45.456733 + ], + [ + -73.482756, + 45.456692 + ], + [ + -73.480663, + 45.456635 + ], + [ + -73.479792, + 45.456611 + ], + [ + -73.479622, + 45.456606 + ], + [ + -73.479632, + 45.456719 + ], + [ + -73.47972, + 45.457668 + ], + [ + -73.479747, + 45.458082 + ], + [ + -73.479754, + 45.45832 + ], + [ + -73.479732, + 45.458469 + ], + [ + -73.479695, + 45.458689 + ], + [ + -73.479603, + 45.459 + ], + [ + -73.479545, + 45.459171 + ], + [ + -73.479465, + 45.459342 + ], + [ + -73.479339, + 45.459576 + ], + [ + -73.479253, + 45.45972 + ], + [ + -73.479162, + 45.45985 + ], + [ + -73.478872, + 45.460205 + ], + [ + -73.478751, + 45.460331 + ], + [ + -73.478239, + 45.460772 + ], + [ + -73.476463, + 45.462113 + ], + [ + -73.476014, + 45.462432 + ], + [ + -73.475822, + 45.462607 + ], + [ + -73.475637, + 45.46274 + ], + [ + -73.475488, + 45.462847 + ], + [ + -73.475333, + 45.462977 + ], + [ + -73.475134, + 45.463165 + ], + [ + -73.474954, + 45.463391 + ], + [ + -73.474914, + 45.463441 + ], + [ + -73.474784, + 45.463665 + ], + [ + -73.474663, + 45.463965 + ], + [ + -73.474626, + 45.46406 + ], + [ + -73.474559, + 45.46439 + ], + [ + -73.474553, + 45.464519 + ], + [ + -73.474549, + 45.464612 + ], + [ + -73.4745, + 45.465249 + ], + [ + -73.474495, + 45.465305 + ], + [ + -73.474487, + 45.465416 + ], + [ + -73.474484, + 45.46546 + ], + [ + -73.474464, + 45.465753 + ], + [ + -73.474438, + 45.466178 + ], + [ + -73.474424, + 45.4664 + ], + [ + -73.474065, + 45.466381 + ], + [ + -73.47383, + 45.466232 + ], + [ + -73.473605, + 45.466125 + ], + [ + -73.473418, + 45.466091 + ], + [ + -73.472532, + 45.466083 + ], + [ + -73.47253, + 45.465927 + ], + [ + -73.472528, + 45.465779 + ], + [ + -73.470085, + 45.465745 + ], + [ + -73.470082, + 45.465902 + ], + [ + -73.470282, + 45.465904 + ] + ] + }, + "id": 409, + "properties": { + "id": "ea2d2793-8db7-4007-af6e-4ae7e89cf220", + "data": { + "gtfs": { + "shape_id": "848_3_A" + }, + "segments": [ + { + "distanceMeters": 205, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 110, + "travelTimeSeconds": 8 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 117, + "travelTimeSeconds": 10 + }, + { + "distanceMeters": 148, + "travelTimeSeconds": 11 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 595, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 1427, + "travelTimeSeconds": 113 + }, + { + "distanceMeters": 1790, + "travelTimeSeconds": 225 + }, + { + "distanceMeters": 169, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 137, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 149, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 2448, + "travelTimeSeconds": 420 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 8360, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 2103.655549001296, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.2, + "travelTimeWithoutDwellTimesSeconds": 1020, + "operatingTimeWithLayoverTimeSeconds": 1200, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1020, + "operatingSpeedWithLayoverMetersPerSecond": 6.97, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.2 + }, + "mode": "taxi", + "name": "Terminus Panama", + "color": "#A32638", + "nodes": [ + "d8eae8f7-d8ed-4c6f-8280-28fd4b885b03", + "81232cdf-e1d4-440c-91bd-cfdc85007144", + "7ad52fd5-2149-40d5-ae51-5e78e11fdbc1", + "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", + "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", + "c25e5964-dcb2-42c5-8dcb-381856954cdc", + "127a18dc-2231-401d-91c9-c547e1fe457d", + "4b68f075-e5fe-41d1-ab47-bccc21ae9421", + "23aabe88-4903-4450-a13c-36afbe3bd891", + "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "997c4af9-ab50-4dfb-941a-afadff58f267", + "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", + "c7c30949-db61-44fc-b7ab-a69b9fde12cc", + "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", + "f1131e74-6c65-4f22-a18d-41dbe35e4576", + "984def83-5f59-45f7-bb33-ed1dbca30502", + "c4ad0852-4be5-437b-8da5-934b6b309e04" + ], + "stops": [], + "line_id": "b2678cc1-3ae4-4f7e-b5e5-83cfed80afc1", + "segments": [ + 0, + 9, + 13, + 16, + 18, + 22, + 39, + 63, + 94, + 140, + 142, + 146, + 156, + 165, + 169, + 177 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 409, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.468473, + 45.429621 + ], + [ + -73.468612, + 45.429671 + ], + [ + -73.467519, + 45.431402 + ], + [ + -73.467377, + 45.431628 + ], + [ + -73.466993, + 45.431531 + ], + [ + -73.466476, + 45.431402 + ], + [ + -73.46615, + 45.431313 + ], + [ + -73.465754, + 45.431189 + ], + [ + -73.465322, + 45.431045 + ], + [ + -73.465217, + 45.43101 + ], + [ + -73.464587, + 45.430806 + ], + [ + -73.464091, + 45.430641 + ], + [ + -73.463081, + 45.430309 + ], + [ + -73.462712, + 45.430188 + ], + [ + -73.461078, + 45.429654 + ], + [ + -73.460639, + 45.429496 + ], + [ + -73.460407, + 45.429402 + ], + [ + -73.460136, + 45.429283 + ], + [ + -73.459955, + 45.42919 + ], + [ + -73.459701, + 45.429046 + ], + [ + -73.459276, + 45.428772 + ], + [ + -73.458984, + 45.428544 + ], + [ + -73.458861, + 45.42844 + ], + [ + -73.458826, + 45.428406 + ], + [ + -73.458694, + 45.428274 + ], + [ + -73.458557, + 45.428134 + ], + [ + -73.458424, + 45.427988 + ], + [ + -73.458192, + 45.427699 + ], + [ + -73.45811, + 45.427595 + ], + [ + -73.458013, + 45.427475 + ], + [ + -73.457764, + 45.427158 + ], + [ + -73.457466, + 45.426823 + ], + [ + -73.457294, + 45.426683 + ], + [ + -73.457368, + 45.426635 + ], + [ + -73.458102, + 45.425956 + ], + [ + -73.458392, + 45.425488 + ], + [ + -73.4585, + 45.425443 + ], + [ + -73.458873, + 45.425164 + ], + [ + -73.459146, + 45.424954 + ] + ] + }, + "id": 410, + "properties": { + "id": "4e2b92e2-c4ab-4e20-bd4e-ea66a17e180d", + "data": { + "gtfs": { + "shape_id": "877_1_R" + }, + "segments": [ + { + "distanceMeters": 223, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 394, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 399, + "travelTimeSeconds": 65 + }, + { + "distanceMeters": 470, + "travelTimeSeconds": 76 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 1485, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 893.6054038760034, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.19, + "travelTimeWithoutDwellTimesSeconds": 240, + "operatingTimeWithLayoverTimeSeconds": 420, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 240, + "operatingSpeedWithLayoverMetersPerSecond": 3.53, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.19 + }, + "mode": "taxi", + "name": "av. de l'Illinois", + "color": "#A32638", + "nodes": [ + "dd75840f-4ec8-4ee8-b04f-ae7639f6c994", + "fbc5c4f7-343a-481e-867b-6e46cf998478", + "4b0fd39d-15a0-46ea-89e7-d0952ab5c888", + "4e38482f-be48-4cee-bcb2-e6dee0843574", + "c231ce0f-25f6-4aeb-9a45-f6162e368fe7" + ], + "stops": [], + "line_id": "b54f1f61-b36a-4650-a3b1-4686978c64c4", + "segments": [ + 0, + 2, + 12, + 23 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 410, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.459146, + 45.424954 + ], + [ + -73.459283, + 45.424849 + ], + [ + -73.459291, + 45.424845 + ], + [ + -73.459295, + 45.42484 + ], + [ + -73.459298, + 45.424836 + ], + [ + -73.459302, + 45.424831 + ], + [ + -73.459304, + 45.424827 + ], + [ + -73.459308, + 45.424827 + ], + [ + -73.45931, + 45.424822 + ], + [ + -73.459313, + 45.424818 + ], + [ + -73.459316, + 45.424813 + ], + [ + -73.459318, + 45.424809 + ], + [ + -73.45932, + 45.424804 + ], + [ + -73.459322, + 45.4248 + ], + [ + -73.459324, + 45.424795 + ], + [ + -73.459326, + 45.424791 + ], + [ + -73.459327, + 45.424786 + ], + [ + -73.459328, + 45.424782 + ], + [ + -73.45933, + 45.424777 + ], + [ + -73.459331, + 45.424773 + ], + [ + -73.459332, + 45.424768 + ], + [ + -73.459332, + 45.424764 + ], + [ + -73.459333, + 45.424759 + ], + [ + -73.459333, + 45.424755 + ], + [ + -73.459333, + 45.42475 + ], + [ + -73.459333, + 45.424746 + ], + [ + -73.459333, + 45.424741 + ], + [ + -73.459333, + 45.424737 + ], + [ + -73.459332, + 45.424732 + ], + [ + -73.459331, + 45.424728 + ], + [ + -73.459331, + 45.424723 + ], + [ + -73.459329, + 45.424719 + ], + [ + -73.459328, + 45.424714 + ], + [ + -73.459327, + 45.42471 + ], + [ + -73.459325, + 45.424705 + ], + [ + -73.459324, + 45.424701 + ], + [ + -73.459322, + 45.424696 + ], + [ + -73.45932, + 45.424692 + ], + [ + -73.459317, + 45.424692 + ], + [ + -73.459315, + 45.424687 + ], + [ + -73.459313, + 45.424683 + ], + [ + -73.45931, + 45.424678 + ], + [ + -73.459307, + 45.424674 + ], + [ + -73.459304, + 45.424669 + ], + [ + -73.459301, + 45.424665 + ], + [ + -73.459297, + 45.42466 + ], + [ + -73.459294, + 45.424656 + ], + [ + -73.459291, + 45.424656 + ], + [ + -73.459287, + 45.424651 + ], + [ + -73.459283, + 45.424647 + ], + [ + -73.459279, + 45.424642 + ], + [ + -73.459275, + 45.424638 + ], + [ + -73.45927, + 45.424638 + ], + [ + -73.459266, + 45.424633 + ], + [ + -73.459261, + 45.424629 + ], + [ + -73.459257, + 45.424629 + ], + [ + -73.459252, + 45.424624 + ], + [ + -73.459247, + 45.42462 + ], + [ + -73.459242, + 45.42462 + ], + [ + -73.459237, + 45.424615 + ], + [ + -73.459232, + 45.424611 + ], + [ + -73.459227, + 45.424611 + ], + [ + -73.459221, + 45.424606 + ], + [ + -73.459216, + 45.424606 + ], + [ + -73.45921, + 45.424602 + ], + [ + -73.459205, + 45.424602 + ], + [ + -73.459199, + 45.424597 + ], + [ + -73.459193, + 45.424597 + ], + [ + -73.459187, + 45.424597 + ], + [ + -73.459181, + 45.424593 + ], + [ + -73.459175, + 45.424593 + ], + [ + -73.459169, + 45.424593 + ], + [ + -73.459163, + 45.424588 + ], + [ + -73.459157, + 45.424588 + ], + [ + -73.459151, + 45.424588 + ], + [ + -73.459145, + 45.424588 + ], + [ + -73.459138, + 45.424584 + ], + [ + -73.459132, + 45.424584 + ], + [ + -73.459126, + 45.424584 + ], + [ + -73.459119, + 45.424584 + ], + [ + -73.459113, + 45.424584 + ], + [ + -73.459107, + 45.424584 + ], + [ + -73.4591, + 45.424584 + ], + [ + -73.459094, + 45.424584 + ], + [ + -73.459087, + 45.424584 + ], + [ + -73.459081, + 45.424584 + ], + [ + -73.459075, + 45.424584 + ], + [ + -73.459068, + 45.424584 + ], + [ + -73.459062, + 45.424584 + ], + [ + -73.459055, + 45.424584 + ], + [ + -73.459049, + 45.424588 + ], + [ + -73.459043, + 45.424588 + ], + [ + -73.459037, + 45.424588 + ], + [ + -73.459031, + 45.424588 + ], + [ + -73.459025, + 45.424593 + ], + [ + -73.459019, + 45.424593 + ], + [ + -73.459013, + 45.424593 + ], + [ + -73.459007, + 45.424597 + ], + [ + -73.459001, + 45.424597 + ], + [ + -73.458995, + 45.424597 + ], + [ + -73.458989, + 45.424602 + ], + [ + -73.458984, + 45.424602 + ], + [ + -73.458978, + 45.424606 + ], + [ + -73.458972, + 45.424606 + ], + [ + -73.458967, + 45.424611 + ], + [ + -73.458962, + 45.424611 + ], + [ + -73.458957, + 45.424615 + ], + [ + -73.458952, + 45.42462 + ], + [ + -73.458946, + 45.42462 + ], + [ + -73.458942, + 45.424624 + ], + [ + -73.458937, + 45.424629 + ], + [ + -73.458932, + 45.424629 + ], + [ + -73.458928, + 45.424633 + ], + [ + -73.458923, + 45.424638 + ], + [ + -73.458919, + 45.424638 + ], + [ + -73.458915, + 45.424642 + ], + [ + -73.458911, + 45.424647 + ], + [ + -73.458907, + 45.424651 + ], + [ + -73.458903, + 45.424656 + ], + [ + -73.4589, + 45.424656 + ], + [ + -73.458896, + 45.42466 + ], + [ + -73.458893, + 45.424665 + ], + [ + -73.458889, + 45.424669 + ], + [ + -73.458772, + 45.424843 + ], + [ + -73.45838, + 45.425425 + ], + [ + -73.458392, + 45.425488 + ], + [ + -73.458102, + 45.425956 + ], + [ + -73.457487, + 45.426525 + ], + [ + -73.457368, + 45.426635 + ], + [ + -73.457294, + 45.426683 + ], + [ + -73.457176, + 45.426759 + ], + [ + -73.457337, + 45.4269 + ], + [ + -73.457478, + 45.427053 + ], + [ + -73.457673, + 45.427288 + ], + [ + -73.45792, + 45.427585 + ], + [ + -73.457973, + 45.42765 + ], + [ + -73.457568, + 45.42781 + ], + [ + -73.457097, + 45.428037 + ], + [ + -73.45672, + 45.428258 + ], + [ + -73.456438, + 45.428448 + ], + [ + -73.4562, + 45.428609 + ], + [ + -73.455948, + 45.428776 + ], + [ + -73.455672, + 45.428959 + ], + [ + -73.455452, + 45.429112 + ], + [ + -73.455179, + 45.429293 + ], + [ + -73.45515, + 45.429313 + ], + [ + -73.454933, + 45.42945 + ], + [ + -73.455018, + 45.429522 + ], + [ + -73.455039, + 45.42954 + ], + [ + -73.455243, + 45.429411 + ], + [ + -73.455656, + 45.429131 + ], + [ + -73.456327, + 45.428677 + ], + [ + -73.456722, + 45.428415 + ], + [ + -73.457072, + 45.428204 + ], + [ + -73.457568, + 45.427951 + ], + [ + -73.458058, + 45.427753 + ], + [ + -73.458345, + 45.428101 + ], + [ + -73.458572, + 45.42834 + ], + [ + -73.458825, + 45.428587 + ], + [ + -73.458977, + 45.428706 + ], + [ + -73.459068, + 45.428777 + ], + [ + -73.459152, + 45.428842 + ], + [ + -73.459251, + 45.428918 + ], + [ + -73.459385, + 45.42901 + ], + [ + -73.459593, + 45.429127 + ], + [ + -73.459771, + 45.429226 + ], + [ + -73.459939, + 45.429319 + ], + [ + -73.46022, + 45.429449 + ], + [ + -73.460456, + 45.429549 + ], + [ + -73.460624, + 45.42962 + ], + [ + -73.460892, + 45.429712 + ], + [ + -73.461565, + 45.429935 + ], + [ + -73.462273, + 45.430171 + ], + [ + -73.463038, + 45.430419 + ], + [ + -73.463289, + 45.430501 + ], + [ + -73.464799, + 45.430999 + ], + [ + -73.465674, + 45.431285 + ], + [ + -73.466046, + 45.431398 + ], + [ + -73.466685, + 45.431574 + ], + [ + -73.466696, + 45.431577 + ], + [ + -73.466706, + 45.431579 + ], + [ + -73.467321, + 45.431724 + ], + [ + -73.467377, + 45.431628 + ], + [ + -73.467538, + 45.431372 + ], + [ + -73.468534, + 45.429795 + ] + ] + }, + "id": 411, + "properties": { + "id": "e82160a1-3d1f-48db-b41e-c0842986aa42", + "data": { + "gtfs": { + "shape_id": "877_1_A" + }, + "segments": [ + { + "distanceMeters": 316, + "travelTimeSeconds": 51 + }, + { + "distanceMeters": 439, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 477, + "travelTimeSeconds": 78 + }, + { + "distanceMeters": 395, + "travelTimeSeconds": 64 + }, + { + "distanceMeters": 386, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 192, + "travelTimeSeconds": 32 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 2203, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 919.287586426439, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.12, + "travelTimeWithoutDwellTimesSeconds": 360, + "operatingTimeWithLayoverTimeSeconds": 540, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 360, + "operatingSpeedWithLayoverMetersPerSecond": 4.08, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.12 + }, + "mode": "taxi", + "name": "av. de l'Illinois", + "color": "#A32638", + "nodes": [ + "c231ce0f-25f6-4aeb-9a45-f6162e368fe7", + "5ed225d6-d1a5-4cf8-b496-0bdeecc5f50f", + "dca1f1af-a3cf-4dc0-9b7c-88db3f7a9ff7", + "65e410b8-04ff-4ccd-883a-8d764b8c7d37", + "4b0fd39d-15a0-46ea-89e7-d0952ab5c888", + "99ed9a7e-9c9a-49bd-8a93-0c7a4fc5376d", + "f58a318f-2fac-4a22-b374-38335fe92155" + ], + "stops": [], + "line_id": "b54f1f61-b36a-4650-a3b1-4686978c64c4", + "segments": [ + 0, + 127, + 144, + 159, + 174, + 183 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 411, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.466116, + 45.587789 + ], + [ + -73.464045, + 45.586193 + ], + [ + -73.463882, + 45.586067 + ], + [ + -73.463008, + 45.585396 + ], + [ + -73.462699, + 45.585156 + ], + [ + -73.462695, + 45.585153 + ], + [ + -73.462432, + 45.584973 + ], + [ + -73.461583, + 45.58432 + ], + [ + -73.460674, + 45.583623 + ], + [ + -73.459322, + 45.582584 + ], + [ + -73.459198, + 45.582488 + ], + [ + -73.458433, + 45.582969 + ], + [ + -73.457769, + 45.583373 + ], + [ + -73.457597, + 45.583478 + ], + [ + -73.456185, + 45.582393 + ], + [ + -73.45586, + 45.58214 + ], + [ + -73.45575, + 45.582055 + ], + [ + -73.454385, + 45.580997 + ], + [ + -73.454001, + 45.5807 + ], + [ + -73.453713, + 45.58048 + ], + [ + -73.453279, + 45.580142 + ], + [ + -73.453165, + 45.580047 + ], + [ + -73.452925, + 45.579856 + ], + [ + -73.452651, + 45.579638 + ], + [ + -73.452413, + 45.579449 + ], + [ + -73.452177, + 45.579269 + ], + [ + -73.451973, + 45.579107 + ], + [ + -73.451905, + 45.579062 + ], + [ + -73.451728, + 45.578945 + ], + [ + -73.451578, + 45.57885 + ], + [ + -73.451104, + 45.578697 + ], + [ + -73.450828, + 45.578634 + ], + [ + -73.450592, + 45.578602 + ], + [ + -73.450371, + 45.578589 + ], + [ + -73.450127, + 45.578588 + ], + [ + -73.450095, + 45.578593 + ], + [ + -73.449875, + 45.578611 + ], + [ + -73.449822, + 45.578616 + ], + [ + -73.449402, + 45.57866 + ], + [ + -73.44906, + 45.578696 + ], + [ + -73.448846, + 45.578718 + ], + [ + -73.448502, + 45.578754 + ], + [ + -73.448017, + 45.578803 + ], + [ + -73.44788, + 45.578818 + ], + [ + -73.447593, + 45.578848 + ], + [ + -73.447371, + 45.578844 + ], + [ + -73.447296, + 45.578844 + ], + [ + -73.447245, + 45.578835 + ], + [ + -73.447193, + 45.578821 + ], + [ + -73.447144, + 45.578803 + ], + [ + -73.447102, + 45.578776 + ], + [ + -73.447078, + 45.578754 + ], + [ + -73.446989, + 45.578673 + ], + [ + -73.446922, + 45.578339 + ], + [ + -73.446764, + 45.577557 + ], + [ + -73.446738, + 45.577422 + ], + [ + -73.446692, + 45.57717 + ], + [ + -73.446671, + 45.576945 + ], + [ + -73.446671, + 45.57667 + ], + [ + -73.446671, + 45.576571 + ], + [ + -73.446689, + 45.576447 + ], + [ + -73.44669, + 45.576436 + ], + [ + -73.446707, + 45.576333 + ], + [ + -73.446734, + 45.576243 + ], + [ + -73.446807, + 45.576018 + ], + [ + -73.446886, + 45.575843 + ], + [ + -73.446894, + 45.575825 + ], + [ + -73.447166, + 45.575249 + ], + [ + -73.447388, + 45.574789 + ], + [ + -73.447238, + 45.574749 + ], + [ + -73.446746, + 45.574587 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442396, + 45.5725 + ], + [ + -73.442327, + 45.572407 + ], + [ + -73.442172, + 45.572214 + ], + [ + -73.442103, + 45.572145 + ], + [ + -73.442431, + 45.57202 + ], + [ + -73.442488, + 45.571998 + ], + [ + -73.442639, + 45.571977 + ], + [ + -73.442743, + 45.572044 + ], + [ + -73.443302, + 45.572631 + ], + [ + -73.443631, + 45.572972 + ], + [ + -73.444342, + 45.573197 + ], + [ + -73.444882, + 45.573368 + ], + [ + -73.444958, + 45.573259 + ], + [ + -73.445007, + 45.573188 + ], + [ + -73.445046, + 45.573132 + ], + [ + -73.443302, + 45.572631 + ], + [ + -73.442743, + 45.572044 + ], + [ + -73.442639, + 45.571977 + ], + [ + -73.442488, + 45.571998 + ], + [ + -73.442103, + 45.572145 + ], + [ + -73.442172, + 45.572214 + ], + [ + -73.442327, + 45.572407 + ], + [ + -73.442411, + 45.57252 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442753, + 45.572972 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.446746, + 45.574587 + ], + [ + -73.447238, + 45.574749 + ], + [ + -73.447388, + 45.574789 + ], + [ + -73.447436, + 45.574664 + ], + [ + -73.447623, + 45.574219 + ], + [ + -73.44779, + 45.573737 + ], + [ + -73.447926, + 45.573404 + ], + [ + -73.448288, + 45.57264 + ], + [ + -73.448668, + 45.571794 + ], + [ + -73.449152, + 45.570638 + ], + [ + -73.449223, + 45.570544 + ], + [ + -73.449264, + 45.570454 + ], + [ + -73.449093, + 45.570413 + ], + [ + -73.448988, + 45.570407 + ], + [ + -73.448759, + 45.570398 + ], + [ + -73.448494, + 45.570395 + ], + [ + -73.448177, + 45.570336 + ], + [ + -73.447945, + 45.570309 + ], + [ + -73.447255, + 45.570174 + ], + [ + -73.4464, + 45.570007 + ], + [ + -73.446311, + 45.569989 + ], + [ + -73.446194, + 45.569957 + ], + [ + -73.44618, + 45.569952 + ], + [ + -73.446079, + 45.569912 + ], + [ + -73.44598, + 45.569845 + ], + [ + -73.445832, + 45.569723 + ], + [ + -73.44535, + 45.56935 + ], + [ + -73.445158, + 45.569201 + ], + [ + -73.444719, + 45.568877 + ], + [ + -73.444688, + 45.568854 + ], + [ + -73.444286, + 45.568557 + ], + [ + -73.44375, + 45.568147 + ], + [ + -73.442738, + 45.567373 + ], + [ + -73.44266, + 45.567297 + ], + [ + -73.442626, + 45.567202 + ], + [ + -73.442645, + 45.567108 + ], + [ + -73.442699, + 45.567027 + ], + [ + -73.443963, + 45.565808 + ], + [ + -73.444144, + 45.565592 + ], + [ + -73.443981, + 45.565444 + ], + [ + -73.44349, + 45.565054 + ], + [ + -73.442879, + 45.56457 + ], + [ + -73.442508, + 45.564295 + ], + [ + -73.442266, + 45.564115 + ], + [ + -73.442143, + 45.564003 + ], + [ + -73.441254, + 45.56331 + ], + [ + -73.440214, + 45.562491 + ], + [ + -73.439139, + 45.561644 + ], + [ + -73.438958, + 45.561495 + ], + [ + -73.438883, + 45.561387 + ], + [ + -73.438837, + 45.561234 + ], + [ + -73.438882, + 45.561027 + ], + [ + -73.438934, + 45.560907 + ], + [ + -73.438972, + 45.56082 + ], + [ + -73.438971, + 45.560636 + ], + [ + -73.437363, + 45.560298 + ], + [ + -73.436168, + 45.560039 + ], + [ + -73.435865, + 45.559973 + ], + [ + -73.43466, + 45.559725 + ], + [ + -73.431826, + 45.559116 + ], + [ + -73.431639, + 45.559077 + ], + [ + -73.431282, + 45.559003 + ], + [ + -73.430103, + 45.55875 + ], + [ + -73.429913, + 45.558701 + ], + [ + -73.429765, + 45.558646 + ], + [ + -73.429502, + 45.558529 + ], + [ + -73.429201, + 45.55838 + ], + [ + -73.429028, + 45.558295 + ], + [ + -73.428814, + 45.558169 + ], + [ + -73.428483, + 45.557975 + ], + [ + -73.428147, + 45.55771 + ], + [ + -73.426734, + 45.556587 + ], + [ + -73.426525, + 45.556422 + ], + [ + -73.426228, + 45.556183 + ], + [ + -73.424224, + 45.554605 + ], + [ + -73.424021, + 45.554445 + ], + [ + -73.421784, + 45.555836 + ], + [ + -73.42074, + 45.556485 + ], + [ + -73.420532, + 45.556615 + ], + [ + -73.418885, + 45.55764 + ], + [ + -73.418468, + 45.557901 + ], + [ + -73.416296, + 45.559259 + ], + [ + -73.414236, + 45.560548 + ], + [ + -73.413751, + 45.56085 + ], + [ + -73.413349, + 45.561101 + ], + [ + -73.412841, + 45.561208 + ], + [ + -73.412305, + 45.561361 + ], + [ + -73.412026, + 45.561465 + ], + [ + -73.411761, + 45.561564 + ], + [ + -73.406235, + 45.565009 + ], + [ + -73.40489, + 45.565853 + ], + [ + -73.40476, + 45.565935 + ], + [ + -73.404576, + 45.565795 + ], + [ + -73.404259, + 45.565548 + ], + [ + -73.403138, + 45.564701 + ], + [ + -73.402147, + 45.56532 + ], + [ + -73.401592, + 45.565667 + ], + [ + -73.399112, + 45.567217 + ], + [ + -73.398475, + 45.567607 + ], + [ + -73.398275, + 45.567729 + ], + [ + -73.397609, + 45.568156 + ], + [ + -73.397554, + 45.56825 + ], + [ + -73.397545, + 45.56834 + ], + [ + -73.397569, + 45.56839 + ], + [ + -73.397619, + 45.568457 + ], + [ + -73.398633, + 45.56926 + ], + [ + -73.398791, + 45.569385 + ], + [ + -73.398845, + 45.569466 + ], + [ + -73.398868, + 45.569534 + ], + [ + -73.398872, + 45.569831 + ], + [ + -73.397337, + 45.569982 + ], + [ + -73.396252, + 45.570116 + ], + [ + -73.39531, + 45.570246 + ], + [ + -73.394177, + 45.570398 + ], + [ + -73.394124, + 45.570405 + ], + [ + -73.393727, + 45.570456 + ], + [ + -73.39317, + 45.570536 + ], + [ + -73.39269, + 45.570599 + ], + [ + -73.392081, + 45.570684 + ], + [ + -73.391191, + 45.570804 + ], + [ + -73.390528, + 45.570894 + ], + [ + -73.389658, + 45.571014 + ], + [ + -73.388912, + 45.571113 + ], + [ + -73.387898, + 45.571251 + ], + [ + -73.387801, + 45.571264 + ], + [ + -73.386982, + 45.571372 + ], + [ + -73.38625, + 45.571475 + ], + [ + -73.385674, + 45.57155 + ], + [ + -73.384997, + 45.571649 + ], + [ + -73.383765, + 45.571818 + ], + [ + -73.383299, + 45.571875 + ], + [ + -73.383227, + 45.571593 + ], + [ + -73.382776, + 45.571649 + ], + [ + -73.382659, + 45.571664 + ], + [ + -73.38222, + 45.571719 + ], + [ + -73.382294, + 45.571994 + ], + [ + -73.38163, + 45.572065 + ], + [ + -73.381419, + 45.571553 + ], + [ + -73.381529, + 45.571532 + ], + [ + -73.3815, + 45.571448 + ], + [ + -73.381383, + 45.571463 + ], + [ + -73.381398, + 45.571501 + ] + ] + }, + "id": 412, + "properties": { + "id": "9f155a14-36ef-4bca-a859-631c91cfaed5", + "data": { + "gtfs": { + "shape_id": "889_1_R" + }, + "segments": [ + { + "distanceMeters": 240, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 156, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 389, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 163, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 342, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 119, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 177, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 115, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 673, + "travelTimeSeconds": 87 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 463, + "travelTimeSeconds": 89 + }, + { + "distanceMeters": 1085, + "travelTimeSeconds": 211 + }, + { + "distanceMeters": 181, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 183, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 433, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 114, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 269, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 369, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 207, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 278, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 295, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 346, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 266, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 741, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 362, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 445, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 502, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 425, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 219, + "travelTimeSeconds": 21 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 12098, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 6854.324677165403, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 8.06, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 7.2, + "averageSpeedWithoutDwellTimesMetersPerSecond": 8.06 + }, + "mode": "taxi", + "name": "Eiffel", + "color": "#A32638", + "nodes": [ + "2f7a97d2-c790-4f58-9a63-010938bbaf69", + "b54db9a8-0c8c-43a8-a385-bc532fde3f70", + "21aac851-6052-4e4d-8167-df2d9a876338", + "6841469f-681d-47f3-a552-9c9ea4973966", + "a3ce54d5-25e0-4e55-a21f-2d2c2139447f", + "3370bd8e-b7b2-4aab-8679-28f57be8da19", + "a6014278-4b2c-4dc8-a0d9-22c0ac11eb1c", + "b0a54de7-81a4-4a54-ac92-70b7a1a6f8cd", + "5d689515-eb8c-46f5-b76c-9783188effbb", + "43c9714a-9286-4827-a621-a7c2f8cbdfb6", + "7c5ab4a9-cc9e-4b88-bc68-d214d8c04000", + "a83efd44-0d7a-49ef-b344-ef523d875f87", + "c75630d1-5494-4596-bc82-707a62fa5988", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "36054208-e9c6-4e5a-99d2-bfca0679b681", + "33622e57-d444-4916-a7fb-d1fa4643eb90", + "e979db3f-26cd-41d5-8708-f07b7090bef0", + "83669f2f-a25c-47b1-99a1-53a7c08fed91", + "a77f8bf1-6b13-445b-a79c-6b0770c935c0", + "68d70807-e1f4-4393-a156-0cb02f37fe17", + "bdfd6a86-57e8-4208-bd34-2b30f1846e4b", + "891bcf48-145c-4536-a871-eba463dca9a2", + "5406ad55-4f73-400c-be4e-2a11bd2e7e9a", + "ca8a495a-977a-4942-bdad-b75787da5697", + "3babd96f-413d-4615-8f50-ca3cd1b6b052", + "eba2d290-ee5d-4bce-bdc1-d2b8c52db23b", + "2bc51500-8df7-434b-a2d7-e073aed7d6fc", + "9d7899a8-defc-4e0a-81af-a591f5887bd8", + "d3be8a5e-1a82-4082-9319-940ad42306fa", + "4987f1ae-bfd4-4242-9f97-87bf5101bd17", + "1fe4d00f-490a-4b9c-a4fc-f708161d232c", + "d41fd5d6-e4c4-4145-9ae3-6c1c4eaf93df", + "0681e3d4-c5fd-4f85-982e-d5d26960784a", + "334d379f-12a2-4d6f-b070-272e37ff00dd", + "a913c5ce-8de0-458e-a9ee-4ae555d41e98", + "a93c22b5-170a-45a8-a2c1-143c975239a9", + "7335aafe-31d7-4598-a3ca-7bfa36ca76b3", + "35827d6c-59cb-43b0-bfdd-eaa586fe772c", + "b195cac8-133e-4e85-98b4-0a7ab23c800c", + "c7077046-1c3c-45a5-980c-e3cf3605f303" + ], + "stops": [], + "line_id": "9cea7d77-1752-4d7e-a87d-19bf9b783c71", + "segments": [ + 0, + 1, + 4, + 9, + 12, + 15, + 22, + 27, + 37, + 43, + 53, + 60, + 84, + 94, + 109, + 139, + 147, + 152, + 161, + 163, + 167, + 173, + 177, + 181, + 187, + 192, + 195, + 197, + 201, + 202, + 204, + 208, + 211, + 217, + 219, + 226, + 235, + 245, + 253 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 412, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.381398, + 45.571501 + ], + [ + -73.381419, + 45.571553 + ], + [ + -73.38163, + 45.572065 + ], + [ + -73.381681, + 45.57206 + ], + [ + -73.382294, + 45.571994 + ], + [ + -73.383299, + 45.571875 + ], + [ + -73.383232, + 45.571614 + ], + [ + -73.383227, + 45.571593 + ], + [ + -73.382773, + 45.57165 + ], + [ + -73.38222, + 45.571719 + ], + [ + -73.382238, + 45.571784 + ], + [ + -73.382294, + 45.571994 + ], + [ + -73.383299, + 45.571875 + ], + [ + -73.383765, + 45.571818 + ], + [ + -73.384997, + 45.571649 + ], + [ + -73.385674, + 45.57155 + ], + [ + -73.38625, + 45.571475 + ], + [ + -73.386982, + 45.571372 + ], + [ + -73.387855, + 45.571257 + ], + [ + -73.387898, + 45.571251 + ], + [ + -73.388912, + 45.571113 + ], + [ + -73.389658, + 45.571014 + ], + [ + -73.390528, + 45.570894 + ], + [ + -73.391191, + 45.570804 + ], + [ + -73.392081, + 45.570684 + ], + [ + -73.39269, + 45.570599 + ], + [ + -73.39317, + 45.570536 + ], + [ + -73.393727, + 45.570456 + ], + [ + -73.39409, + 45.570409 + ], + [ + -73.394177, + 45.570398 + ], + [ + -73.39531, + 45.570246 + ], + [ + -73.396252, + 45.570116 + ], + [ + -73.397337, + 45.569982 + ], + [ + -73.398872, + 45.569831 + ], + [ + -73.398868, + 45.569534 + ], + [ + -73.398845, + 45.569466 + ], + [ + -73.398791, + 45.569385 + ], + [ + -73.398461, + 45.569123 + ], + [ + -73.397619, + 45.568457 + ], + [ + -73.397569, + 45.56839 + ], + [ + -73.397545, + 45.56834 + ], + [ + -73.397554, + 45.56825 + ], + [ + -73.397609, + 45.568156 + ], + [ + -73.398105, + 45.567838 + ], + [ + -73.398275, + 45.567729 + ], + [ + -73.399112, + 45.567217 + ], + [ + -73.400876, + 45.566114 + ], + [ + -73.402147, + 45.56532 + ], + [ + -73.403138, + 45.564701 + ], + [ + -73.404259, + 45.565548 + ], + [ + -73.404576, + 45.565795 + ], + [ + -73.40462, + 45.565829 + ], + [ + -73.40476, + 45.565935 + ], + [ + -73.406235, + 45.565009 + ], + [ + -73.411595, + 45.561667 + ], + [ + -73.411761, + 45.561564 + ], + [ + -73.412305, + 45.561361 + ], + [ + -73.412841, + 45.561208 + ], + [ + -73.413349, + 45.561101 + ], + [ + -73.413744, + 45.560855 + ], + [ + -73.414236, + 45.560548 + ], + [ + -73.416299, + 45.559258 + ], + [ + -73.418518, + 45.55787 + ], + [ + -73.418885, + 45.55764 + ], + [ + -73.420532, + 45.556615 + ], + [ + -73.42074, + 45.556485 + ], + [ + -73.421586, + 45.55596 + ], + [ + -73.423791, + 45.554588 + ], + [ + -73.424021, + 45.554445 + ], + [ + -73.426228, + 45.556183 + ], + [ + -73.426313, + 45.556252 + ], + [ + -73.426525, + 45.556422 + ], + [ + -73.428147, + 45.55771 + ], + [ + -73.428483, + 45.557975 + ], + [ + -73.428814, + 45.558169 + ], + [ + -73.428888, + 45.558213 + ], + [ + -73.429028, + 45.558295 + ], + [ + -73.429502, + 45.558529 + ], + [ + -73.429765, + 45.558646 + ], + [ + -73.429913, + 45.558701 + ], + [ + -73.430103, + 45.55875 + ], + [ + -73.431282, + 45.559003 + ], + [ + -73.431371, + 45.559021 + ], + [ + -73.431826, + 45.559116 + ], + [ + -73.433279, + 45.559428 + ], + [ + -73.43466, + 45.559725 + ], + [ + -73.435312, + 45.559859 + ], + [ + -73.435865, + 45.559973 + ], + [ + -73.437363, + 45.560298 + ], + [ + -73.437803, + 45.56039 + ], + [ + -73.438971, + 45.560636 + ], + [ + -73.438972, + 45.56082 + ], + [ + -73.438882, + 45.561027 + ], + [ + -73.438837, + 45.561234 + ], + [ + -73.438883, + 45.561387 + ], + [ + -73.438958, + 45.561495 + ], + [ + -73.439139, + 45.561644 + ], + [ + -73.44014, + 45.562432 + ], + [ + -73.441254, + 45.56331 + ], + [ + -73.442079, + 45.563953 + ], + [ + -73.442143, + 45.564003 + ], + [ + -73.442266, + 45.564115 + ], + [ + -73.442879, + 45.56457 + ], + [ + -73.443314, + 45.564915 + ], + [ + -73.443981, + 45.565444 + ], + [ + -73.444144, + 45.565592 + ], + [ + -73.443963, + 45.565808 + ], + [ + -73.442699, + 45.567027 + ], + [ + -73.442645, + 45.567108 + ], + [ + -73.442626, + 45.567202 + ], + [ + -73.44266, + 45.567297 + ], + [ + -73.442738, + 45.567373 + ], + [ + -73.443735, + 45.568136 + ], + [ + -73.444286, + 45.568557 + ], + [ + -73.444688, + 45.568854 + ], + [ + -73.444719, + 45.568877 + ], + [ + -73.445058, + 45.569127 + ], + [ + -73.445158, + 45.569201 + ], + [ + -73.445832, + 45.569723 + ], + [ + -73.44598, + 45.569845 + ], + [ + -73.446079, + 45.569912 + ], + [ + -73.446194, + 45.569957 + ], + [ + -73.446311, + 45.569989 + ], + [ + -73.4464, + 45.570007 + ], + [ + -73.446542, + 45.570035 + ], + [ + -73.447945, + 45.570309 + ], + [ + -73.448177, + 45.570336 + ], + [ + -73.448494, + 45.570395 + ], + [ + -73.448719, + 45.570485 + ], + [ + -73.448772, + 45.570503 + ], + [ + -73.448806, + 45.570521 + ], + [ + -73.448851, + 45.570552 + ], + [ + -73.448874, + 45.570584 + ], + [ + -73.448893, + 45.57062 + ], + [ + -73.448903, + 45.570647 + ], + [ + -73.448906, + 45.570683 + ], + [ + -73.448873, + 45.570917 + ], + [ + -73.448823, + 45.571034 + ], + [ + -73.44818, + 45.572625 + ], + [ + -73.447654, + 45.573778 + ], + [ + -73.447519, + 45.574084 + ], + [ + -73.447518, + 45.574088 + ], + [ + -73.447455, + 45.574133 + ], + [ + -73.447308, + 45.574407 + ], + [ + -73.447267, + 45.574466 + ], + [ + -73.447241, + 45.574497 + ], + [ + -73.447197, + 45.574529 + ], + [ + -73.447149, + 45.574547 + ], + [ + -73.447112, + 45.574556 + ], + [ + -73.447049, + 45.574565 + ], + [ + -73.446965, + 45.574569 + ], + [ + -73.446884, + 45.574565 + ], + [ + -73.446792, + 45.574547 + ], + [ + -73.446652, + 45.574511 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442385, + 45.572485 + ], + [ + -73.442327, + 45.572407 + ], + [ + -73.442172, + 45.572214 + ], + [ + -73.442103, + 45.572145 + ], + [ + -73.442355, + 45.572049 + ], + [ + -73.442488, + 45.571998 + ], + [ + -73.442639, + 45.571977 + ], + [ + -73.442743, + 45.572044 + ], + [ + -73.443302, + 45.572631 + ], + [ + -73.443631, + 45.572972 + ], + [ + -73.444364, + 45.573204 + ], + [ + -73.444882, + 45.573368 + ], + [ + -73.444958, + 45.573259 + ], + [ + -73.444989, + 45.573213 + ], + [ + -73.445046, + 45.573132 + ], + [ + -73.443302, + 45.572631 + ], + [ + -73.442743, + 45.572044 + ], + [ + -73.442639, + 45.571977 + ], + [ + -73.442488, + 45.571998 + ], + [ + -73.442103, + 45.572145 + ], + [ + -73.442172, + 45.572214 + ], + [ + -73.442327, + 45.572407 + ], + [ + -73.442465, + 45.572593 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442765, + 45.572986 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.446698, + 45.574646 + ], + [ + -73.446963, + 45.574749 + ], + [ + -73.446986, + 45.574767 + ], + [ + -73.447005, + 45.574781 + ], + [ + -73.447026, + 45.574808 + ], + [ + -73.447042, + 45.57483 + ], + [ + -73.447056, + 45.574857 + ], + [ + -73.44707, + 45.574889 + ], + [ + -73.447082, + 45.57492 + ], + [ + -73.447099, + 45.575037 + ], + [ + -73.447053, + 45.57514 + ], + [ + -73.446759, + 45.575802 + ], + [ + -73.446721, + 45.575887 + ], + [ + -73.446618, + 45.576202 + ], + [ + -73.446585, + 45.576297 + ], + [ + -73.446578, + 45.576319 + ], + [ + -73.446558, + 45.576387 + ], + [ + -73.44653, + 45.57654 + ], + [ + -73.446519, + 45.57667 + ], + [ + -73.446516, + 45.576796 + ], + [ + -73.446516, + 45.576958 + ], + [ + -73.446539, + 45.577179 + ], + [ + -73.446584, + 45.57744 + ], + [ + -73.446584, + 45.577441 + ], + [ + -73.446615, + 45.57757 + ], + [ + -73.446887, + 45.57892 + ], + [ + -73.446904, + 45.579005 + ], + [ + -73.447056, + 45.578992 + ], + [ + -73.447608, + 45.578938 + ], + [ + -73.447883, + 45.578909 + ], + [ + -73.448031, + 45.578893 + ], + [ + -73.44852, + 45.578844 + ], + [ + -73.449074, + 45.578786 + ], + [ + -73.449991, + 45.578693 + ], + [ + -73.450095, + 45.578683 + ], + [ + -73.450109, + 45.578683 + ], + [ + -73.450463, + 45.578688 + ], + [ + -73.450661, + 45.578706 + ], + [ + -73.450775, + 45.578719 + ], + [ + -73.450895, + 45.578737 + ], + [ + -73.451093, + 45.578791 + ], + [ + -73.451234, + 45.578836 + ], + [ + -73.451238, + 45.578838 + ], + [ + -73.451309, + 45.578863 + ], + [ + -73.451495, + 45.578945 + ], + [ + -73.451582, + 45.57899 + ], + [ + -73.451744, + 45.579089 + ], + [ + -73.451869, + 45.579174 + ], + [ + -73.452082, + 45.579336 + ], + [ + -73.452313, + 45.579516 + ], + [ + -73.452549, + 45.579701 + ], + [ + -73.453039, + 45.580079 + ], + [ + -73.453063, + 45.580097 + ], + [ + -73.453179, + 45.580196 + ], + [ + -73.453622, + 45.580543 + ], + [ + -73.453903, + 45.580759 + ], + [ + -73.45429, + 45.581056 + ], + [ + -73.455063, + 45.581657 + ], + [ + -73.455188, + 45.581753 + ], + [ + -73.455378, + 45.581904 + ], + [ + -73.455648, + 45.582118 + ], + [ + -73.456087, + 45.582456 + ], + [ + -73.456184, + 45.582528 + ], + [ + -73.457491, + 45.583541 + ], + [ + -73.457597, + 45.583478 + ], + [ + -73.458087, + 45.58318 + ], + [ + -73.458433, + 45.582969 + ], + [ + -73.459198, + 45.582488 + ], + [ + -73.45929, + 45.582559 + ], + [ + -73.459337, + 45.582596 + ], + [ + -73.460674, + 45.583623 + ], + [ + -73.461583, + 45.58432 + ], + [ + -73.462319, + 45.584887 + ], + [ + -73.462432, + 45.584973 + ], + [ + -73.462695, + 45.585153 + ], + [ + -73.463008, + 45.585396 + ], + [ + -73.463882, + 45.586067 + ], + [ + -73.464027, + 45.586179 + ], + [ + -73.466391, + 45.588001 + ] + ] + }, + "id": 413, + "properties": { + "id": "b39b67b7-eb35-4920-8dff-95052611c1bf", + "data": { + "gtfs": { + "shape_id": "889_1_A" + }, + "segments": [ + { + "distanceMeters": 265, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 516, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 495, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 468, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 289, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 407, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 730, + "travelTimeSeconds": 68 + }, + { + "distanceMeters": 193, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 267, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 232, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 320, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 216, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 333, + "travelTimeSeconds": 63 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 452, + "travelTimeSeconds": 86 + }, + { + "distanceMeters": 151, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 157, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 1118, + "travelTimeSeconds": 190 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 463, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 435, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 262, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 253, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 100, + "travelTimeSeconds": 13 + }, + { + "distanceMeters": 198, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 273, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 307, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 132, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 345, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 196, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 274, + "travelTimeSeconds": 34 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 12189, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 6854.324677165403, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.81, + "travelTimeWithoutDwellTimesSeconds": 1560, + "operatingTimeWithLayoverTimeSeconds": 1740, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1560, + "operatingSpeedWithLayoverMetersPerSecond": 7, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.81 + }, + "mode": "taxi", + "name": "boul. Marie-Victorin", + "color": "#A32638", + "nodes": [ + "c7077046-1c3c-45a5-980c-e3cf3605f303", + "b195cac8-133e-4e85-98b4-0a7ab23c800c", + "35827d6c-59cb-43b0-bfdd-eaa586fe772c", + "7335aafe-31d7-4598-a3ca-7bfa36ca76b3", + "a93c22b5-170a-45a8-a2c1-143c975239a9", + "a913c5ce-8de0-458e-a9ee-4ae555d41e98", + "a4120eb1-d1f9-43e5-8720-90115641165b", + "0681e3d4-c5fd-4f85-982e-d5d26960784a", + "d41fd5d6-e4c4-4145-9ae3-6c1c4eaf93df", + "1fe4d00f-490a-4b9c-a4fc-f708161d232c", + "4987f1ae-bfd4-4242-9f97-87bf5101bd17", + "d3be8a5e-1a82-4082-9319-940ad42306fa", + "9d7899a8-defc-4e0a-81af-a591f5887bd8", + "2bc51500-8df7-434b-a2d7-e073aed7d6fc", + "eba2d290-ee5d-4bce-bdc1-d2b8c52db23b", + "3babd96f-413d-4615-8f50-ca3cd1b6b052", + "ca8a495a-977a-4942-bdad-b75787da5697", + "5406ad55-4f73-400c-be4e-2a11bd2e7e9a", + "288f625b-dae5-465b-9986-818da198e5d5", + "bdfd6a86-57e8-4208-bd34-2b30f1846e4b", + "68d70807-e1f4-4393-a156-0cb02f37fe17", + "a77f8bf1-6b13-445b-a79c-6b0770c935c0", + "83669f2f-a25c-47b1-99a1-53a7c08fed91", + "e979db3f-26cd-41d5-8708-f07b7090bef0", + "33622e57-d444-4916-a7fb-d1fa4643eb90", + "c75630d1-5494-4596-bc82-707a62fa5988", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "36054208-e9c6-4e5a-99d2-bfca0679b681", + "c520acc8-980c-45c0-9195-152ad50ee471", + "18aabfcd-f4e1-4782-a757-80cdf1597763", + "43c9714a-9286-4827-a621-a7c2f8cbdfb6", + "5d689515-eb8c-46f5-b76c-9783188effbb", + "b0a54de7-81a4-4a54-ac92-70b7a1a6f8cd", + "a6014278-4b2c-4dc8-a0d9-22c0ac11eb1c", + "3370bd8e-b7b2-4aab-8679-28f57be8da19", + "a3ce54d5-25e0-4e55-a21f-2d2c2139447f", + "6841469f-681d-47f3-a552-9c9ea4973966", + "21aac851-6052-4e4d-8167-df2d9a876338", + "b54db9a8-0c8c-43a8-a385-bc532fde3f70", + "2f7a97d2-c790-4f58-9a63-010938bbaf69" + ], + "stops": [], + "line_id": "9cea7d77-1752-4d7e-a87d-19bf9b783c71", + "segments": [ + 0, + 8, + 18, + 28, + 37, + 43, + 46, + 51, + 54, + 59, + 61, + 62, + 66, + 67, + 70, + 75, + 82, + 86, + 89, + 97, + 99, + 103, + 112, + 116, + 124, + 167, + 177, + 192, + 214, + 227, + 233, + 237, + 246, + 255, + 263, + 269, + 273, + 276, + 281 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 413, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.41744, + 45.573518 + ], + [ + -73.417361, + 45.573566 + ], + [ + -73.416949, + 45.573818 + ], + [ + -73.41659, + 45.574029 + ], + [ + -73.416162, + 45.574303 + ], + [ + -73.415841, + 45.574516 + ], + [ + -73.415714, + 45.5746 + ], + [ + -73.414791, + 45.57387 + ], + [ + -73.414647, + 45.573758 + ], + [ + -73.414077, + 45.573294 + ], + [ + -73.414068, + 45.573288 + ], + [ + -73.413911, + 45.573168 + ], + [ + -73.414244, + 45.572963 + ], + [ + -73.414438, + 45.57284 + ], + [ + -73.414603, + 45.572714 + ], + [ + -73.414683, + 45.572615 + ], + [ + -73.414726, + 45.572503 + ], + [ + -73.414932, + 45.571927 + ], + [ + -73.414964, + 45.571837 + ], + [ + -73.415227, + 45.571104 + ], + [ + -73.41537, + 45.570699 + ], + [ + -73.415436, + 45.570537 + ], + [ + -73.415527, + 45.570353 + ], + [ + -73.415627, + 45.57024 + ], + [ + -73.415778, + 45.570101 + ], + [ + -73.415904, + 45.570025 + ], + [ + -73.415923, + 45.570017 + ], + [ + -73.416084, + 45.569948 + ], + [ + -73.416182, + 45.569915 + ], + [ + -73.41628, + 45.569881 + ], + [ + -73.416545, + 45.569832 + ], + [ + -73.416713, + 45.569818 + ], + [ + -73.417529, + 45.569774 + ], + [ + -73.418983, + 45.569667 + ], + [ + -73.419829, + 45.569604 + ], + [ + -73.420778, + 45.569551 + ], + [ + -73.421741, + 45.569502 + ], + [ + -73.42241, + 45.569465 + ], + [ + -73.422873, + 45.56944 + ], + [ + -73.423733, + 45.569392 + ], + [ + -73.424354, + 45.569357 + ], + [ + -73.424538, + 45.569347 + ], + [ + -73.424562, + 45.569513 + ], + [ + -73.424628, + 45.570152 + ], + [ + -73.424653, + 45.570373 + ], + [ + -73.424693, + 45.570539 + ], + [ + -73.424729, + 45.57062 + ], + [ + -73.424803, + 45.570692 + ], + [ + -73.424894, + 45.570778 + ], + [ + -73.425582, + 45.571311 + ], + [ + -73.425614, + 45.571336 + ], + [ + -73.425716, + 45.571377 + ], + [ + -73.425864, + 45.571408 + ], + [ + -73.426472, + 45.571382 + ], + [ + -73.42732, + 45.571342 + ], + [ + -73.427626, + 45.571342 + ], + [ + -73.428023, + 45.571342 + ], + [ + -73.428324, + 45.571347 + ], + [ + -73.428377, + 45.571349 + ], + [ + -73.428617, + 45.57136 + ], + [ + -73.42894, + 45.571383 + ], + [ + -73.429449, + 45.571428 + ], + [ + -73.42993, + 45.571492 + ], + [ + -73.430291, + 45.571546 + ], + [ + -73.430609, + 45.5716 + ], + [ + -73.431316, + 45.57175 + ], + [ + -73.432763, + 45.572056 + ], + [ + -73.434031, + 45.572324 + ], + [ + -73.436351, + 45.572816 + ], + [ + -73.436831, + 45.572917 + ], + [ + -73.437002, + 45.572954 + ], + [ + -73.437141, + 45.572652 + ], + [ + -73.437277, + 45.572369 + ], + [ + -73.437365, + 45.572207 + ], + [ + -73.437639, + 45.571843 + ], + [ + -73.437915, + 45.571494 + ], + [ + -73.438071, + 45.571298 + ], + [ + -73.438113, + 45.571241 + ], + [ + -73.438292, + 45.571002 + ], + [ + -73.43873, + 45.571092 + ], + [ + -73.439233, + 45.571191 + ], + [ + -73.43982, + 45.571308 + ], + [ + -73.440331, + 45.571417 + ], + [ + -73.440756, + 45.571507 + ], + [ + -73.441159, + 45.571606 + ], + [ + -73.4413, + 45.571651 + ], + [ + -73.441501, + 45.571723 + ], + [ + -73.44164, + 45.571795 + ], + [ + -73.441785, + 45.571885 + ], + [ + -73.441925, + 45.571984 + ], + [ + -73.442041, + 45.572083 + ], + [ + -73.442103, + 45.572145 + ], + [ + -73.442357, + 45.572049 + ], + [ + -73.442488, + 45.571998 + ], + [ + -73.442639, + 45.571977 + ], + [ + -73.442743, + 45.572044 + ], + [ + -73.443302, + 45.572631 + ], + [ + -73.443631, + 45.572972 + ], + [ + -73.444363, + 45.573203 + ], + [ + -73.444882, + 45.573368 + ], + [ + -73.444953, + 45.573266 + ], + [ + -73.444958, + 45.573259 + ], + [ + -73.445046, + 45.573132 + ], + [ + -73.443302, + 45.572631 + ], + [ + -73.442743, + 45.572044 + ], + [ + -73.442639, + 45.571977 + ], + [ + -73.442488, + 45.571998 + ], + [ + -73.442103, + 45.572145 + ], + [ + -73.442172, + 45.572214 + ], + [ + -73.442327, + 45.572407 + ], + [ + -73.442488, + 45.572624 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442771, + 45.572994 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.446698, + 45.574646 + ], + [ + -73.446963, + 45.574749 + ], + [ + -73.446986, + 45.574767 + ], + [ + -73.447005, + 45.574781 + ], + [ + -73.447026, + 45.574808 + ], + [ + -73.447042, + 45.57483 + ], + [ + -73.447056, + 45.574857 + ], + [ + -73.44707, + 45.574889 + ], + [ + -73.447082, + 45.57492 + ], + [ + -73.447099, + 45.575037 + ], + [ + -73.447053, + 45.575141 + ], + [ + -73.446759, + 45.575802 + ], + [ + -73.446721, + 45.575887 + ], + [ + -73.446618, + 45.576202 + ], + [ + -73.446585, + 45.576297 + ], + [ + -73.446578, + 45.576319 + ], + [ + -73.446558, + 45.576387 + ], + [ + -73.44653, + 45.57654 + ], + [ + -73.446519, + 45.57667 + ], + [ + -73.446516, + 45.576796 + ], + [ + -73.446516, + 45.576958 + ], + [ + -73.446539, + 45.577179 + ], + [ + -73.446584, + 45.57744 + ], + [ + -73.446587, + 45.577451 + ], + [ + -73.446615, + 45.57757 + ], + [ + -73.446865, + 45.578811 + ], + [ + -73.446887, + 45.57892 + ], + [ + -73.446904, + 45.579005 + ], + [ + -73.447125, + 45.580074 + ], + [ + -73.447136, + 45.58013 + ], + [ + -73.447307, + 45.58099 + ], + [ + -73.447337, + 45.581174 + ], + [ + -73.447364, + 45.581462 + ], + [ + -73.447358, + 45.581597 + ], + [ + -73.447346, + 45.581723 + ], + [ + -73.447325, + 45.581872 + ], + [ + -73.447274, + 45.582088 + ], + [ + -73.447195, + 45.582299 + ], + [ + -73.447192, + 45.582306 + ] + ] + }, + "id": 414, + "properties": { + "id": "a4043fca-5d9f-4e8b-8edf-a47a09428e63", + "data": { + "gtfs": { + "shape_id": "892_1_A" + }, + "segments": [ + { + "distanceMeters": 167, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 208, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 194, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 244, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 268, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 17 + }, + { + "distanceMeters": 259, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 234, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 224, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 604, + "travelTimeSeconds": 132 + }, + { + "distanceMeters": 464, + "travelTimeSeconds": 81 + }, + { + "distanceMeters": 434, + "travelTimeSeconds": 76 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 153, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 251, + "travelTimeSeconds": 45 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 5146, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 2537.8002252576443, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.6, + "travelTimeWithoutDwellTimesSeconds": 780, + "operatingTimeWithLayoverTimeSeconds": 960, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 780, + "operatingSpeedWithLayoverMetersPerSecond": 5.36, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.6 + }, + "mode": "taxi", + "name": "boul. de Mortagne", + "color": "#A32638", + "nodes": [ + "80eb2b2c-3d80-431d-851d-8665038b93b7", + "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", + "c6549833-3800-4d1f-a789-747fc95c595a", + "ab419e3e-c877-4589-88de-b6df60ac6dd1", + "fb50e5b2-5326-4cb9-9888-65bcbf9b9592", + "834b9411-0d78-496d-8fb2-7131e0c1ec41", + "8b4e9db5-5481-4624-b5ab-e40bba2a2897", + "9cf65cb9-0319-47f1-8406-ca3211a7ff12", + "08debed2-a767-4e18-9342-678b9ff106e2", + "ab35419e-5bd1-4da1-bfdf-b33c65916d63", + "26830ba4-9f15-4574-ae58-812d3a6fc6d5", + "64d79080-f253-4cae-bbde-03e1a26a3f9e", + "7f184ebf-41da-496f-9ed8-536b6fff9c3f", + "7cc0727e-e69b-4711-8bea-f955d406f0ed", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "36054208-e9c6-4e5a-99d2-bfca0679b681", + "c520acc8-980c-45c0-9195-152ad50ee471", + "18aabfcd-f4e1-4782-a757-80cdf1597763", + "6c99422e-05cb-48dc-811f-162fee50cf80", + "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", + "44ce6da8-ee79-4e09-9c16-f31566643c0c" + ], + "stops": [], + "line_id": "855454e2-7380-4cee-b7f4-db041cfff1ca", + "segments": [ + 0, + 5, + 10, + 18, + 26, + 33, + 37, + 40, + 49, + 58, + 65, + 67, + 69, + 77, + 98, + 113, + 135, + 148, + 150, + 153 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 414, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.44719, + 45.58265 + ], + [ + -73.447216, + 45.582605 + ], + [ + -73.447288, + 45.582456 + ], + [ + -73.447348, + 45.582322 + ], + [ + -73.447422, + 45.58211 + ], + [ + -73.447475, + 45.581885 + ], + [ + -73.447497, + 45.581732 + ], + [ + -73.447521, + 45.581602 + ], + [ + -73.447516, + 45.581462 + ], + [ + -73.447513, + 45.581287 + ], + [ + -73.447477, + 45.581057 + ], + [ + -73.447325, + 45.580308 + ], + [ + -73.447286, + 45.580117 + ], + [ + -73.447144, + 45.579424 + ], + [ + -73.44709, + 45.579161 + ], + [ + -73.447056, + 45.578992 + ], + [ + -73.447038, + 45.578907 + ], + [ + -73.446989, + 45.578673 + ], + [ + -73.446923, + 45.578343 + ], + [ + -73.446764, + 45.577557 + ], + [ + -73.446738, + 45.577422 + ], + [ + -73.446692, + 45.57717 + ], + [ + -73.446671, + 45.576945 + ], + [ + -73.446671, + 45.57667 + ], + [ + -73.446671, + 45.576571 + ], + [ + -73.446688, + 45.576451 + ], + [ + -73.44669, + 45.576436 + ], + [ + -73.446707, + 45.576333 + ], + [ + -73.446734, + 45.576243 + ], + [ + -73.446807, + 45.576018 + ], + [ + -73.446886, + 45.575843 + ], + [ + -73.446894, + 45.575825 + ], + [ + -73.447166, + 45.575249 + ], + [ + -73.447388, + 45.574789 + ], + [ + -73.447238, + 45.574749 + ], + [ + -73.446746, + 45.574587 + ], + [ + -73.446527, + 45.57452 + ], + [ + -73.445962, + 45.574326 + ], + [ + -73.445227, + 45.574113 + ], + [ + -73.445119, + 45.574081 + ], + [ + -73.444281, + 45.573826 + ], + [ + -73.443874, + 45.573695 + ], + [ + -73.443666, + 45.573618 + ], + [ + -73.443347, + 45.57347 + ], + [ + -73.443062, + 45.573285 + ], + [ + -73.442883, + 45.573119 + ], + [ + -73.442792, + 45.57302 + ], + [ + -73.442704, + 45.572912 + ], + [ + -73.442673, + 45.572871 + ], + [ + -73.442398, + 45.572504 + ], + [ + -73.442327, + 45.572407 + ], + [ + -73.442172, + 45.572214 + ], + [ + -73.442103, + 45.572145 + ], + [ + -73.442346, + 45.572053 + ], + [ + -73.442488, + 45.571998 + ], + [ + -73.442639, + 45.571977 + ], + [ + -73.442743, + 45.572044 + ], + [ + -73.443302, + 45.572631 + ], + [ + -73.443631, + 45.572972 + ], + [ + -73.444337, + 45.573195 + ], + [ + -73.444882, + 45.573368 + ], + [ + -73.444958, + 45.573259 + ], + [ + -73.444963, + 45.573251 + ], + [ + -73.445046, + 45.573132 + ], + [ + -73.443302, + 45.572631 + ], + [ + -73.442743, + 45.572044 + ], + [ + -73.442639, + 45.571977 + ], + [ + -73.442488, + 45.571998 + ], + [ + -73.442103, + 45.572145 + ], + [ + -73.442041, + 45.572083 + ], + [ + -73.441925, + 45.571984 + ], + [ + -73.441785, + 45.571885 + ], + [ + -73.44164, + 45.571795 + ], + [ + -73.441501, + 45.571723 + ], + [ + -73.4413, + 45.571651 + ], + [ + -73.441159, + 45.571606 + ], + [ + -73.440756, + 45.571507 + ], + [ + -73.440331, + 45.571417 + ], + [ + -73.43982, + 45.571308 + ], + [ + -73.439233, + 45.571191 + ], + [ + -73.43873, + 45.571092 + ], + [ + -73.438292, + 45.571002 + ], + [ + -73.438187, + 45.571143 + ], + [ + -73.438071, + 45.571298 + ], + [ + -73.437915, + 45.571494 + ], + [ + -73.437905, + 45.571507 + ], + [ + -73.437639, + 45.571843 + ], + [ + -73.437365, + 45.572207 + ], + [ + -73.437277, + 45.572369 + ], + [ + -73.437141, + 45.572652 + ], + [ + -73.437137, + 45.57266 + ], + [ + -73.437002, + 45.572954 + ], + [ + -73.433666, + 45.572247 + ], + [ + -73.432763, + 45.572056 + ], + [ + -73.431541, + 45.571797 + ], + [ + -73.430609, + 45.5716 + ], + [ + -73.430291, + 45.571546 + ], + [ + -73.42993, + 45.571492 + ], + [ + -73.429449, + 45.571428 + ], + [ + -73.42894, + 45.571383 + ], + [ + -73.428617, + 45.57136 + ], + [ + -73.428496, + 45.571355 + ], + [ + -73.428324, + 45.571347 + ], + [ + -73.428023, + 45.571342 + ], + [ + -73.427626, + 45.571342 + ], + [ + -73.42732, + 45.571342 + ], + [ + -73.426566, + 45.571377 + ], + [ + -73.426472, + 45.571382 + ], + [ + -73.426074, + 45.571399 + ], + [ + -73.425864, + 45.571408 + ], + [ + -73.425716, + 45.571377 + ], + [ + -73.425614, + 45.571336 + ], + [ + -73.424894, + 45.570778 + ], + [ + -73.424803, + 45.570692 + ], + [ + -73.424729, + 45.57062 + ], + [ + -73.424693, + 45.570539 + ], + [ + -73.424653, + 45.570373 + ], + [ + -73.424628, + 45.570152 + ], + [ + -73.424565, + 45.569543 + ], + [ + -73.424562, + 45.569513 + ], + [ + -73.424538, + 45.569347 + ], + [ + -73.422873, + 45.56944 + ], + [ + -73.422325, + 45.56947 + ], + [ + -73.421741, + 45.569502 + ], + [ + -73.420778, + 45.569551 + ], + [ + -73.419829, + 45.569604 + ], + [ + -73.418962, + 45.569668 + ], + [ + -73.417529, + 45.569774 + ], + [ + -73.416713, + 45.569818 + ], + [ + -73.416574, + 45.569829 + ], + [ + -73.416545, + 45.569832 + ], + [ + -73.41628, + 45.569881 + ], + [ + -73.416182, + 45.569915 + ], + [ + -73.416084, + 45.569948 + ], + [ + -73.415904, + 45.570025 + ], + [ + -73.415778, + 45.570101 + ], + [ + -73.415627, + 45.57024 + ], + [ + -73.415527, + 45.570353 + ], + [ + -73.415436, + 45.570537 + ], + [ + -73.41537, + 45.570699 + ], + [ + -73.415227, + 45.571104 + ], + [ + -73.414974, + 45.571808 + ], + [ + -73.414932, + 45.571927 + ], + [ + -73.414726, + 45.572503 + ], + [ + -73.414683, + 45.572615 + ], + [ + -73.414618, + 45.572696 + ], + [ + -73.414603, + 45.572714 + ], + [ + -73.414438, + 45.57284 + ], + [ + -73.414244, + 45.572963 + ], + [ + -73.413911, + 45.573168 + ], + [ + -73.414077, + 45.573294 + ], + [ + -73.414647, + 45.573758 + ], + [ + -73.414791, + 45.57387 + ], + [ + -73.415714, + 45.5746 + ], + [ + -73.415986, + 45.57442 + ], + [ + -73.416162, + 45.574303 + ], + [ + -73.41659, + 45.574029 + ], + [ + -73.416949, + 45.573818 + ], + [ + -73.417166, + 45.573686 + ] + ] + }, + "id": 415, + "properties": { + "id": "96a834af-32c7-453a-a4a3-e19a39bd401d", + "data": { + "gtfs": { + "shape_id": "892_1_R" + }, + "segments": [ + { + "distanceMeters": 265, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 92, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 673, + "travelTimeSeconds": 121 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 752, + "travelTimeSeconds": 100 + }, + { + "distanceMeters": 142, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 306, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 173, + "travelTimeSeconds": 24 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 189, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 264, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 195, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 187, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 272, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 103, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 318, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 123, + "travelTimeSeconds": 17 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 5183, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 2537.8002252576443, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.64, + "travelTimeWithoutDwellTimesSeconds": 780, + "operatingTimeWithLayoverTimeSeconds": 960, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 780, + "operatingSpeedWithLayoverMetersPerSecond": 5.4, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.64 + }, + "mode": "taxi", + "name": "Ampère", + "color": "#A32638", + "nodes": [ + "44ce6da8-ee79-4e09-9c16-f31566643c0c", + "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", + "6c99422e-05cb-48dc-811f-162fee50cf80", + "7c5ab4a9-cc9e-4b88-bc68-d214d8c04000", + "a83efd44-0d7a-49ef-b344-ef523d875f87", + "c75630d1-5494-4596-bc82-707a62fa5988", + "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "c9b7f8d6-62a3-444a-bbd0-591def556854", + "7f184ebf-41da-496f-9ed8-536b6fff9c3f", + "64d79080-f253-4cae-bbde-03e1a26a3f9e", + "26830ba4-9f15-4574-ae58-812d3a6fc6d5", + "ab35419e-5bd1-4da1-bfdf-b33c65916d63", + "08debed2-a767-4e18-9342-678b9ff106e2", + "9cf65cb9-0319-47f1-8406-ca3211a7ff12", + "8b4e9db5-5481-4624-b5ab-e40bba2a2897", + "834b9411-0d78-496d-8fb2-7131e0c1ec41", + "fb50e5b2-5326-4cb9-9888-65bcbf9b9592", + "ab419e3e-c877-4589-88de-b6df60ac6dd1", + "ee85cfb1-201c-47a0-9d37-a01d18d76e92", + "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", + "80eb2b2c-3d80-431d-851d-8665038b93b7" + ], + "stops": [], + "line_id": "855454e2-7380-4cee-b7f4-db041cfff1ca", + "segments": [ + 0, + 11, + 14, + 18, + 25, + 49, + 59, + 85, + 90, + 92, + 94, + 101, + 108, + 118, + 122, + 126, + 129, + 141, + 145, + 154 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 415, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.436185, + 45.591213 + ], + [ + -73.43623, + 45.591247 + ], + [ + -73.436355, + 45.59135 + ], + [ + -73.43623, + 45.591445 + ], + [ + -73.435937, + 45.591669 + ], + [ + -73.435771, + 45.591809 + ], + [ + -73.435656, + 45.59193 + ], + [ + -73.435482, + 45.592133 + ], + [ + -73.435328, + 45.592303 + ], + [ + -73.435201, + 45.592416 + ], + [ + -73.435194, + 45.59242 + ], + [ + -73.434937, + 45.592614 + ], + [ + -73.434583, + 45.592879 + ], + [ + -73.434575, + 45.592883 + ], + [ + -73.434342, + 45.593054 + ], + [ + -73.434176, + 45.59318 + ], + [ + -73.433984, + 45.593306 + ], + [ + -73.433723, + 45.593472 + ], + [ + -73.433623, + 45.593526 + ], + [ + -73.433582, + 45.593589 + ], + [ + -73.433267, + 45.593751 + ], + [ + -73.433008, + 45.593886 + ], + [ + -73.432796, + 45.594012 + ], + [ + -73.432643, + 45.594115 + ], + [ + -73.432531, + 45.594178 + ], + [ + -73.432058, + 45.594473 + ], + [ + -73.432055, + 45.594475 + ], + [ + -73.431917, + 45.594569 + ], + [ + -73.431782, + 45.594668 + ], + [ + -73.431594, + 45.594825 + ], + [ + -73.43147, + 45.594956 + ], + [ + -73.431414, + 45.595014 + ], + [ + -73.431134, + 45.595351 + ], + [ + -73.430941, + 45.595572 + ], + [ + -73.430854, + 45.595684 + ], + [ + -73.430609, + 45.59595 + ], + [ + -73.430363, + 45.59621 + ], + [ + -73.430255, + 45.596318 + ], + [ + -73.430031, + 45.596525 + ], + [ + -73.429915, + 45.596619 + ], + [ + -73.42981, + 45.5967 + ], + [ + -73.429613, + 45.596862 + ], + [ + -73.429318, + 45.597082 + ], + [ + -73.429299, + 45.597096 + ], + [ + -73.429168, + 45.59719 + ], + [ + -73.428901, + 45.597006 + ], + [ + -73.42816, + 45.596492 + ], + [ + -73.428044, + 45.59647 + ], + [ + -73.425968, + 45.594881 + ], + [ + -73.42589, + 45.594822 + ], + [ + -73.425724, + 45.594928 + ], + [ + -73.425315, + 45.59519 + ], + [ + -73.425154, + 45.595291 + ], + [ + -73.424403, + 45.59577 + ], + [ + -73.424389, + 45.595779 + ], + [ + -73.424346, + 45.595806 + ], + [ + -73.424314, + 45.59582 + ], + [ + -73.42427, + 45.595828 + ], + [ + -73.424219, + 45.595828 + ], + [ + -73.424048, + 45.595824 + ], + [ + -73.423763, + 45.595816 + ], + [ + -73.423387, + 45.595805 + ], + [ + -73.423291, + 45.595802 + ], + [ + -73.423253, + 45.595801 + ], + [ + -73.422401, + 45.595778 + ], + [ + -73.422277, + 45.595772 + ], + [ + -73.42218, + 45.595765 + ], + [ + -73.422083, + 45.595744 + ], + [ + -73.421986, + 45.595693 + ], + [ + -73.421766, + 45.595519 + ], + [ + -73.421327, + 45.595172 + ], + [ + -73.421064, + 45.59497 + ], + [ + -73.420747, + 45.594726 + ], + [ + -73.420638, + 45.594642 + ], + [ + -73.419762, + 45.593964 + ], + [ + -73.419404, + 45.59369 + ], + [ + -73.41921, + 45.593542 + ], + [ + -73.419155, + 45.593435 + ], + [ + -73.419177, + 45.59311 + ], + [ + -73.419181, + 45.593058 + ], + [ + -73.419199, + 45.592802 + ], + [ + -73.4192, + 45.592784 + ], + [ + -73.419216, + 45.59257 + ], + [ + -73.419228, + 45.592373 + ], + [ + -73.419234, + 45.592287 + ], + [ + -73.419248, + 45.592076 + ], + [ + -73.41925, + 45.59204 + ], + [ + -73.419253, + 45.592004 + ], + [ + -73.419322, + 45.591902 + ], + [ + -73.420413, + 45.591205 + ], + [ + -73.420523, + 45.591135 + ], + [ + -73.42068, + 45.591034 + ], + [ + -73.420701, + 45.591021 + ], + [ + -73.420783, + 45.590968 + ], + [ + -73.420833, + 45.590937 + ], + [ + -73.420656, + 45.590797 + ], + [ + -73.418915, + 45.58942 + ], + [ + -73.418878, + 45.589389 + ], + [ + -73.418785, + 45.589312 + ], + [ + -73.418153, + 45.588786 + ], + [ + -73.417398, + 45.58817 + ], + [ + -73.417285, + 45.588078 + ], + [ + -73.416033, + 45.587004 + ], + [ + -73.415873, + 45.586847 + ], + [ + -73.415801, + 45.586765 + ], + [ + -73.415697, + 45.586647 + ], + [ + -73.415611, + 45.586509 + ], + [ + -73.415506, + 45.586391 + ], + [ + -73.415276, + 45.586167 + ], + [ + -73.414721, + 45.58571 + ], + [ + -73.414113, + 45.585277 + ], + [ + -73.413942, + 45.585139 + ], + [ + -73.41171, + 45.583342 + ], + [ + -73.411589, + 45.583244 + ], + [ + -73.411261, + 45.582974 + ], + [ + -73.410932, + 45.582707 + ], + [ + -73.410649, + 45.582481 + ], + [ + -73.410524, + 45.582384 + ], + [ + -73.410198, + 45.582124 + ], + [ + -73.40977, + 45.581743 + ], + [ + -73.409326, + 45.581385 + ], + [ + -73.409071, + 45.58113 + ], + [ + -73.408983, + 45.581041 + ], + [ + -73.408901, + 45.580908 + ], + [ + -73.408815, + 45.58074 + ], + [ + -73.408744, + 45.580442 + ], + [ + -73.408601, + 45.579953 + ], + [ + -73.408573, + 45.5799 + ], + [ + -73.408495, + 45.579881 + ], + [ + -73.408395, + 45.57989 + ], + [ + -73.408099, + 45.579917 + ], + [ + -73.407903, + 45.579935 + ], + [ + -73.407657, + 45.579922 + ], + [ + -73.407302, + 45.579893 + ], + [ + -73.407079, + 45.579861 + ], + [ + -73.406728, + 45.579771 + ], + [ + -73.40626, + 45.579611 + ], + [ + -73.405932, + 45.579444 + ], + [ + -73.405786, + 45.579342 + ], + [ + -73.405743, + 45.579303 + ], + [ + -73.4057, + 45.579264 + ], + [ + -73.405449, + 45.579042 + ], + [ + -73.405272, + 45.578897 + ], + [ + -73.40517, + 45.578813 + ], + [ + -73.404428, + 45.578224 + ], + [ + -73.404359, + 45.57817 + ], + [ + -73.404045, + 45.577927 + ], + [ + -73.403788, + 45.577749 + ], + [ + -73.403207, + 45.577445 + ], + [ + -73.403621, + 45.577033 + ], + [ + -73.404512, + 45.576201 + ], + [ + -73.40454, + 45.576175 + ], + [ + -73.404582, + 45.576139 + ], + [ + -73.404806, + 45.575896 + ], + [ + -73.404941, + 45.57582 + ], + [ + -73.405504, + 45.575339 + ], + [ + -73.405913, + 45.574988 + ], + [ + -73.406345, + 45.574609 + ], + [ + -73.406812, + 45.574199 + ], + [ + -73.407377, + 45.573703 + ], + [ + -73.407648, + 45.573464 + ], + [ + -73.407902, + 45.573272 + ], + [ + -73.408156, + 45.573119 + ], + [ + -73.408432, + 45.572987 + ], + [ + -73.40901, + 45.572865 + ], + [ + -73.410733, + 45.572762 + ], + [ + -73.410922, + 45.572751 + ], + [ + -73.411036, + 45.572745 + ], + [ + -73.412381, + 45.572673 + ], + [ + -73.412661, + 45.572692 + ], + [ + -73.412759, + 45.572574 + ], + [ + -73.41279, + 45.572436 + ], + [ + -73.412493, + 45.572143 + ], + [ + -73.412124, + 45.571846 + ], + [ + -73.411941, + 45.571638 + ], + [ + -73.411906, + 45.571399 + ], + [ + -73.41188, + 45.57122 + ], + [ + -73.411587, + 45.571236 + ] + ] + }, + "id": 416, + "properties": { + "id": "c8e5b516-d90b-4a79-9612-f90f0cd178fa", + "data": { + "gtfs": { + "shape_id": "893_2_A" + }, + "segments": [ + { + "distanceMeters": 506, + "travelTimeSeconds": 97 + }, + { + "distanceMeters": 364, + "travelTimeSeconds": 70 + }, + { + "distanceMeters": 374, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 247, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 256, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 309, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 197, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 246, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 233, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 321, + "travelTimeSeconds": 41 + }, + { + "distanceMeters": 384, + "travelTimeSeconds": 50 + }, + { + "distanceMeters": 166, + "travelTimeSeconds": 21 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 129, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 659, + "travelTimeSeconds": 151 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 5550, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 2964.0884710498603, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.78, + "travelTimeWithoutDwellTimesSeconds": 960, + "operatingTimeWithLayoverTimeSeconds": 1140, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 960, + "operatingSpeedWithLayoverMetersPerSecond": 4.87, + "averageSpeedWithoutDwellTimesMetersPerSecond": 5.78 + }, + "mode": "taxi", + "name": "Stat. de Touraine", + "color": "#A32638", + "nodes": [ + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "dbda0ea8-08e6-4d52-b455-3b21aae9d561", + "92d27f4f-1792-4dbb-8e38-aef6410a23d1", + "7cfada17-2082-416d-b64c-984a57776abe", + "81683acf-4f7f-4881-9c66-76f73077f14f", + "89a9cd80-8390-4b5d-ae70-b79c4f2755a8", + "47288795-8cf7-4a4f-a6d6-27f1d0029236", + "e6bd25b8-5158-4fce-9b9d-3a004cbf9ea1", + "b34b9d4c-8a10-4c6f-8680-e94a58cb3557", + "80ef4305-1848-4e04-a328-9a6224dacc70", + "560a4184-8ee9-4ea1-b3fb-4093c9ece9d5", + "144cb85b-88dc-4e09-90a2-f3d4d4c951bd", + "4941bea8-570f-4adc-b6d4-2b2cbff2bc03", + "35c1782c-662d-401b-9699-beb9fbc05ba4", + "1a872bc7-948e-475a-8527-ec3c2b61fd79", + "7b448eb1-37a4-4d74-be5a-f8938cae8304", + "d3a6dc19-15b0-45f0-a45a-d0eca5d46fd7", + "0f2d673a-8365-425e-adb1-c97927e1fe04", + "33427dde-b7ac-44e3-ba8b-3d835422c2dc", + "9c784932-945b-47d8-afa8-e5b73889acfb" + ], + "stops": [], + "line_id": "fa44047c-6b2a-47b5-bca4-e925c8baf4b2", + "segments": [ + 0, + 25, + 43, + 48, + 61, + 72, + 83, + 91, + 97, + 100, + 104, + 111, + 112, + 121, + 139, + 145, + 150, + 157, + 159 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 416, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.411587, + 45.571236 + ], + [ + -73.411416, + 45.571246 + ], + [ + -73.411426, + 45.571418 + ], + [ + -73.411906, + 45.571399 + ], + [ + -73.411941, + 45.571638 + ], + [ + -73.412124, + 45.571846 + ], + [ + -73.412493, + 45.572143 + ], + [ + -73.41279, + 45.572436 + ], + [ + -73.412759, + 45.572574 + ], + [ + -73.412619, + 45.572555 + ], + [ + -73.412388, + 45.572541 + ], + [ + -73.412156, + 45.572541 + ], + [ + -73.411544, + 45.572577 + ], + [ + -73.411304, + 45.572588 + ], + [ + -73.41125, + 45.57259 + ], + [ + -73.411126, + 45.572594 + ], + [ + -73.410903, + 45.572608 + ], + [ + -73.410714, + 45.572617 + ], + [ + -73.410503, + 45.57263 + ], + [ + -73.410213, + 45.572647 + ], + [ + -73.409062, + 45.572719 + ], + [ + -73.409057, + 45.572719 + ], + [ + -73.409052, + 45.572719 + ], + [ + -73.409047, + 45.572719 + ], + [ + -73.409041, + 45.57272 + ], + [ + -73.409036, + 45.57272 + ], + [ + -73.409031, + 45.57272 + ], + [ + -73.409026, + 45.57272 + ], + [ + -73.409021, + 45.57272 + ], + [ + -73.409016, + 45.572721 + ], + [ + -73.409011, + 45.572721 + ], + [ + -73.409006, + 45.572721 + ], + [ + -73.409, + 45.572722 + ], + [ + -73.408995, + 45.572722 + ], + [ + -73.40899, + 45.572722 + ], + [ + -73.408985, + 45.572722 + ], + [ + -73.40898, + 45.572723 + ], + [ + -73.408975, + 45.572723 + ], + [ + -73.40897, + 45.572723 + ], + [ + -73.408965, + 45.572724 + ], + [ + -73.40896, + 45.572724 + ], + [ + -73.408955, + 45.572725 + ], + [ + -73.408949, + 45.572725 + ], + [ + -73.408944, + 45.572725 + ], + [ + -73.408939, + 45.572726 + ], + [ + -73.408934, + 45.572726 + ], + [ + -73.408929, + 45.572727 + ], + [ + -73.408924, + 45.572727 + ], + [ + -73.408919, + 45.572728 + ], + [ + -73.408914, + 45.572728 + ], + [ + -73.408909, + 45.572729 + ], + [ + -73.408904, + 45.572729 + ], + [ + -73.408899, + 45.572729 + ], + [ + -73.408894, + 45.57273 + ], + [ + -73.408889, + 45.572731 + ], + [ + -73.408883, + 45.572731 + ], + [ + -73.408878, + 45.572732 + ], + [ + -73.408873, + 45.572732 + ], + [ + -73.408868, + 45.572733 + ], + [ + -73.408863, + 45.572733 + ], + [ + -73.408858, + 45.572734 + ], + [ + -73.408853, + 45.572734 + ], + [ + -73.408848, + 45.572735 + ], + [ + -73.408843, + 45.572736 + ], + [ + -73.408838, + 45.572736 + ], + [ + -73.408833, + 45.572737 + ], + [ + -73.408828, + 45.572737 + ], + [ + -73.408823, + 45.572738 + ], + [ + -73.408818, + 45.572739 + ], + [ + -73.408813, + 45.572739 + ], + [ + -73.408808, + 45.57274 + ], + [ + -73.408803, + 45.572741 + ], + [ + -73.408798, + 45.572742 + ], + [ + -73.408793, + 45.572742 + ], + [ + -73.408788, + 45.572743 + ], + [ + -73.408783, + 45.572744 + ], + [ + -73.408778, + 45.572744 + ], + [ + -73.408773, + 45.572745 + ], + [ + -73.408768, + 45.572746 + ], + [ + -73.408762, + 45.572747 + ], + [ + -73.408757, + 45.572747 + ], + [ + -73.408752, + 45.572748 + ], + [ + -73.408747, + 45.572749 + ], + [ + -73.408742, + 45.57275 + ], + [ + -73.408738, + 45.572751 + ], + [ + -73.408733, + 45.572752 + ], + [ + -73.408728, + 45.572752 + ], + [ + -73.408723, + 45.572753 + ], + [ + -73.408718, + 45.572754 + ], + [ + -73.408713, + 45.572755 + ], + [ + -73.408708, + 45.572756 + ], + [ + -73.408703, + 45.572757 + ], + [ + -73.408698, + 45.572758 + ], + [ + -73.408693, + 45.572759 + ], + [ + -73.408688, + 45.572759 + ], + [ + -73.408683, + 45.57276 + ], + [ + -73.408678, + 45.572761 + ], + [ + -73.408673, + 45.572762 + ], + [ + -73.408668, + 45.572763 + ], + [ + -73.408663, + 45.572764 + ], + [ + -73.408658, + 45.572765 + ], + [ + -73.408653, + 45.572766 + ], + [ + -73.408648, + 45.572767 + ], + [ + -73.408643, + 45.572768 + ], + [ + -73.408638, + 45.572769 + ], + [ + -73.408634, + 45.57277 + ], + [ + -73.408629, + 45.572771 + ], + [ + -73.408624, + 45.572772 + ], + [ + -73.408619, + 45.572773 + ], + [ + -73.408614, + 45.572774 + ], + [ + -73.408609, + 45.572775 + ], + [ + -73.408604, + 45.572777 + ], + [ + -73.408599, + 45.572778 + ], + [ + -73.408594, + 45.572779 + ], + [ + -73.40859, + 45.57278 + ], + [ + -73.408585, + 45.572781 + ], + [ + -73.40858, + 45.572782 + ], + [ + -73.408575, + 45.572783 + ], + [ + -73.40857, + 45.572784 + ], + [ + -73.408565, + 45.572786 + ], + [ + -73.40856, + 45.572787 + ], + [ + -73.408556, + 45.572788 + ], + [ + -73.408551, + 45.572789 + ], + [ + -73.408546, + 45.57279 + ], + [ + -73.408541, + 45.572792 + ], + [ + -73.408536, + 45.572793 + ], + [ + -73.408531, + 45.572794 + ], + [ + -73.408527, + 45.572795 + ], + [ + -73.408522, + 45.572797 + ], + [ + -73.408517, + 45.572798 + ], + [ + -73.408512, + 45.572799 + ], + [ + -73.408507, + 45.5728 + ], + [ + -73.408503, + 45.572802 + ], + [ + -73.408498, + 45.572803 + ], + [ + -73.408493, + 45.572804 + ], + [ + -73.408488, + 45.572806 + ], + [ + -73.408484, + 45.572807 + ], + [ + -73.408479, + 45.572808 + ], + [ + -73.408474, + 45.57281 + ], + [ + -73.408469, + 45.572811 + ], + [ + -73.408465, + 45.572812 + ], + [ + -73.40846, + 45.572814 + ], + [ + -73.408455, + 45.572815 + ], + [ + -73.40845, + 45.572817 + ], + [ + -73.408446, + 45.572818 + ], + [ + -73.408441, + 45.572819 + ], + [ + -73.408436, + 45.572821 + ], + [ + -73.408432, + 45.572822 + ], + [ + -73.408427, + 45.572824 + ], + [ + -73.408422, + 45.572825 + ], + [ + -73.408418, + 45.572827 + ], + [ + -73.408413, + 45.572828 + ], + [ + -73.408408, + 45.57283 + ], + [ + -73.408404, + 45.572831 + ], + [ + -73.408399, + 45.572833 + ], + [ + -73.408394, + 45.572834 + ], + [ + -73.40839, + 45.572836 + ], + [ + -73.408385, + 45.572837 + ], + [ + -73.40838, + 45.572839 + ], + [ + -73.408376, + 45.57284 + ], + [ + -73.408371, + 45.572842 + ], + [ + -73.408367, + 45.572843 + ], + [ + -73.408362, + 45.572845 + ], + [ + -73.408357, + 45.572847 + ], + [ + -73.408353, + 45.572848 + ], + [ + -73.408348, + 45.57285 + ], + [ + -73.408344, + 45.572851 + ], + [ + -73.408339, + 45.572853 + ], + [ + -73.408334, + 45.572855 + ], + [ + -73.40833, + 45.572856 + ], + [ + -73.408325, + 45.572858 + ], + [ + -73.408321, + 45.57286 + ], + [ + -73.408316, + 45.572861 + ], + [ + -73.408312, + 45.572863 + ], + [ + -73.408307, + 45.572865 + ], + [ + -73.408303, + 45.572867 + ], + [ + -73.408298, + 45.572868 + ], + [ + -73.408294, + 45.57287 + ], + [ + -73.408289, + 45.572872 + ], + [ + -73.408285, + 45.572874 + ], + [ + -73.40828, + 45.572875 + ], + [ + -73.408276, + 45.572877 + ], + [ + -73.408271, + 45.572879 + ], + [ + -73.408267, + 45.572881 + ], + [ + -73.408263, + 45.572883 + ], + [ + -73.408258, + 45.572884 + ], + [ + -73.408254, + 45.572886 + ], + [ + -73.408249, + 45.572888 + ], + [ + -73.408245, + 45.57289 + ], + [ + -73.408241, + 45.572892 + ], + [ + -73.408236, + 45.572894 + ], + [ + -73.408232, + 45.572895 + ], + [ + -73.408227, + 45.572897 + ], + [ + -73.408223, + 45.572899 + ], + [ + -73.408219, + 45.572901 + ], + [ + -73.408214, + 45.572903 + ], + [ + -73.40821, + 45.572905 + ], + [ + -73.408206, + 45.572907 + ], + [ + -73.408201, + 45.572909 + ], + [ + -73.408197, + 45.572911 + ], + [ + -73.408193, + 45.572913 + ], + [ + -73.408188, + 45.572915 + ], + [ + -73.408184, + 45.572917 + ], + [ + -73.40818, + 45.572919 + ], + [ + -73.408176, + 45.572921 + ], + [ + -73.408171, + 45.572923 + ], + [ + -73.408167, + 45.572925 + ], + [ + -73.408163, + 45.572927 + ], + [ + -73.408159, + 45.572929 + ], + [ + -73.408154, + 45.572931 + ], + [ + -73.40815, + 45.572933 + ], + [ + -73.408146, + 45.572935 + ], + [ + -73.408142, + 45.572937 + ], + [ + -73.408138, + 45.572939 + ], + [ + -73.408133, + 45.572941 + ], + [ + -73.408129, + 45.572943 + ], + [ + -73.408125, + 45.572945 + ], + [ + -73.408121, + 45.572947 + ], + [ + -73.408117, + 45.572949 + ], + [ + -73.408112, + 45.572951 + ], + [ + -73.408108, + 45.572953 + ], + [ + -73.408104, + 45.572955 + ], + [ + -73.4081, + 45.572958 + ], + [ + -73.408096, + 45.57296 + ], + [ + -73.408092, + 45.572962 + ], + [ + -73.408087, + 45.572964 + ], + [ + -73.408083, + 45.572966 + ], + [ + -73.408079, + 45.572968 + ], + [ + -73.408075, + 45.57297 + ], + [ + -73.408071, + 45.572972 + ], + [ + -73.408067, + 45.572975 + ], + [ + -73.408063, + 45.572977 + ], + [ + -73.408059, + 45.572979 + ], + [ + -73.408055, + 45.572981 + ], + [ + -73.408051, + 45.572983 + ], + [ + -73.408046, + 45.572985 + ], + [ + -73.408042, + 45.572988 + ], + [ + -73.408038, + 45.57299 + ], + [ + -73.408034, + 45.572992 + ], + [ + -73.40803, + 45.572994 + ], + [ + -73.408026, + 45.572996 + ], + [ + -73.408022, + 45.572999 + ], + [ + -73.408018, + 45.573001 + ], + [ + -73.408014, + 45.573003 + ], + [ + -73.40801, + 45.573005 + ], + [ + -73.408006, + 45.573008 + ], + [ + -73.408002, + 45.57301 + ], + [ + -73.407998, + 45.573012 + ], + [ + -73.407994, + 45.573014 + ], + [ + -73.40799, + 45.573017 + ], + [ + -73.407986, + 45.573019 + ], + [ + -73.407982, + 45.573021 + ], + [ + -73.407978, + 45.573024 + ], + [ + -73.407974, + 45.573026 + ], + [ + -73.40797, + 45.573028 + ], + [ + -73.407966, + 45.57303 + ], + [ + -73.407962, + 45.573033 + ], + [ + -73.407959, + 45.573035 + ], + [ + -73.407955, + 45.573037 + ], + [ + -73.407951, + 45.57304 + ], + [ + -73.407947, + 45.573042 + ], + [ + -73.407943, + 45.573044 + ], + [ + -73.407939, + 45.573047 + ], + [ + -73.407935, + 45.573049 + ], + [ + -73.407931, + 45.573052 + ], + [ + -73.407928, + 45.573054 + ], + [ + -73.407924, + 45.573056 + ], + [ + -73.40792, + 45.573059 + ], + [ + -73.407916, + 45.573061 + ], + [ + -73.407913, + 45.573064 + ], + [ + -73.407909, + 45.573066 + ], + [ + -73.407905, + 45.573069 + ], + [ + -73.407901, + 45.573071 + ], + [ + -73.407898, + 45.573074 + ], + [ + -73.407894, + 45.573076 + ], + [ + -73.40789, + 45.573079 + ], + [ + -73.407887, + 45.573081 + ], + [ + -73.407883, + 45.573084 + ], + [ + -73.40788, + 45.573086 + ], + [ + -73.407876, + 45.573089 + ], + [ + -73.407872, + 45.573091 + ], + [ + -73.407869, + 45.573094 + ], + [ + -73.407865, + 45.573097 + ], + [ + -73.407862, + 45.573099 + ], + [ + -73.407858, + 45.573102 + ], + [ + -73.407855, + 45.573105 + ], + [ + -73.407851, + 45.573107 + ], + [ + -73.407848, + 45.57311 + ], + [ + -73.407844, + 45.573112 + ], + [ + -73.407841, + 45.573115 + ], + [ + -73.407837, + 45.573118 + ], + [ + -73.407834, + 45.573121 + ], + [ + -73.407831, + 45.573123 + ], + [ + -73.407827, + 45.573126 + ], + [ + -73.407824, + 45.573129 + ], + [ + -73.407821, + 45.573131 + ], + [ + -73.407817, + 45.573134 + ], + [ + -73.407812, + 45.57314 + ], + [ + -73.407685, + 45.573152 + ], + [ + -73.407579, + 45.57316 + ], + [ + -73.407549, + 45.573159 + ], + [ + -73.407496, + 45.573159 + ], + [ + -73.407407, + 45.573146 + ], + [ + -73.407363, + 45.573135 + ], + [ + -73.407292, + 45.57311 + ], + [ + -73.407175, + 45.573055 + ], + [ + -73.406884, + 45.572882 + ], + [ + -73.405962, + 45.572152 + ], + [ + -73.405928, + 45.572128 + ], + [ + -73.405899, + 45.572108 + ], + [ + -73.405852, + 45.572099 + ], + [ + -73.405787, + 45.572088 + ], + [ + -73.405648, + 45.572091 + ], + [ + -73.40501, + 45.572118 + ], + [ + -73.404937, + 45.572127 + ], + [ + -73.404887, + 45.572144 + ], + [ + -73.404824, + 45.572173 + ], + [ + -73.404167, + 45.572586 + ], + [ + -73.404077, + 45.572646 + ], + [ + -73.404152, + 45.572702 + ], + [ + -73.404226, + 45.572758 + ], + [ + -73.404305, + 45.572839 + ], + [ + -73.404344, + 45.572907 + ], + [ + -73.404464, + 45.573131 + ], + [ + -73.404516, + 45.573227 + ], + [ + -73.405062, + 45.574199 + ], + [ + -73.405195, + 45.574394 + ], + [ + -73.405268, + 45.574469 + ], + [ + -73.405457, + 45.574621 + ], + [ + -73.405692, + 45.574808 + ], + [ + -73.40583, + 45.574917 + ], + [ + -73.405706, + 45.575031 + ], + [ + -73.404873, + 45.575797 + ], + [ + -73.404864, + 45.575811 + ], + [ + -73.404806, + 45.575896 + ], + [ + -73.404582, + 45.576139 + ], + [ + -73.40454, + 45.576175 + ], + [ + -73.403621, + 45.577033 + ], + [ + -73.403207, + 45.577445 + ], + [ + -73.40359, + 45.577645 + ], + [ + -73.403788, + 45.577749 + ], + [ + -73.404045, + 45.577927 + ], + [ + -73.404191, + 45.57804 + ], + [ + -73.404428, + 45.578224 + ], + [ + -73.40517, + 45.578813 + ], + [ + -73.405272, + 45.578897 + ], + [ + -73.405449, + 45.579042 + ], + [ + -73.405478, + 45.579067 + ], + [ + -73.4057, + 45.579264 + ], + [ + -73.405786, + 45.579342 + ], + [ + -73.405932, + 45.579444 + ], + [ + -73.40626, + 45.579611 + ], + [ + -73.406728, + 45.579771 + ], + [ + -73.407079, + 45.579861 + ], + [ + -73.407302, + 45.579893 + ], + [ + -73.407657, + 45.579922 + ], + [ + -73.407903, + 45.579935 + ], + [ + -73.408395, + 45.57989 + ], + [ + -73.408495, + 45.579881 + ], + [ + -73.408573, + 45.5799 + ], + [ + -73.408601, + 45.579953 + ], + [ + -73.408744, + 45.580442 + ], + [ + -73.408815, + 45.58074 + ], + [ + -73.408901, + 45.580908 + ], + [ + -73.40893, + 45.580955 + ], + [ + -73.408983, + 45.581041 + ], + [ + -73.409326, + 45.581385 + ], + [ + -73.40977, + 45.581743 + ], + [ + -73.410198, + 45.582124 + ], + [ + -73.410524, + 45.582384 + ], + [ + -73.410649, + 45.582481 + ], + [ + -73.410932, + 45.582707 + ], + [ + -73.411261, + 45.582974 + ], + [ + -73.411415, + 45.583101 + ], + [ + -73.411589, + 45.583244 + ], + [ + -73.413947, + 45.585143 + ], + [ + -73.414113, + 45.585277 + ], + [ + -73.414721, + 45.58571 + ], + [ + -73.415276, + 45.586167 + ], + [ + -73.415506, + 45.586391 + ], + [ + -73.415611, + 45.586509 + ], + [ + -73.415625, + 45.586532 + ], + [ + -73.415697, + 45.586647 + ], + [ + -73.415873, + 45.586847 + ], + [ + -73.416033, + 45.587004 + ], + [ + -73.417165, + 45.587975 + ], + [ + -73.417285, + 45.588078 + ], + [ + -73.418153, + 45.588786 + ], + [ + -73.418709, + 45.589249 + ], + [ + -73.418785, + 45.589312 + ], + [ + -73.418915, + 45.58942 + ], + [ + -73.420711, + 45.590841 + ], + [ + -73.420833, + 45.590937 + ], + [ + -73.420783, + 45.590968 + ], + [ + -73.420701, + 45.591021 + ], + [ + -73.420519, + 45.591137 + ], + [ + -73.420413, + 45.591205 + ], + [ + -73.419322, + 45.591902 + ], + [ + -73.419253, + 45.592004 + ], + [ + -73.41925, + 45.59204 + ], + [ + -73.419248, + 45.592076 + ], + [ + -73.419241, + 45.592173 + ], + [ + -73.419234, + 45.592287 + ], + [ + -73.419216, + 45.59257 + ], + [ + -73.4192, + 45.592784 + ], + [ + -73.419199, + 45.592802 + ], + [ + -73.419181, + 45.593058 + ], + [ + -73.419177, + 45.59311 + ], + [ + -73.419155, + 45.593435 + ], + [ + -73.41921, + 45.593542 + ], + [ + -73.419404, + 45.59369 + ], + [ + -73.419762, + 45.593964 + ], + [ + -73.420546, + 45.594571 + ], + [ + -73.420638, + 45.594642 + ], + [ + -73.421064, + 45.59497 + ], + [ + -73.421327, + 45.595172 + ], + [ + -73.421766, + 45.595519 + ], + [ + -73.421986, + 45.595693 + ], + [ + -73.422083, + 45.595744 + ], + [ + -73.42218, + 45.595765 + ], + [ + -73.422277, + 45.595772 + ], + [ + -73.422401, + 45.595778 + ], + [ + -73.4231, + 45.595797 + ], + [ + -73.423253, + 45.595801 + ], + [ + -73.423291, + 45.595802 + ], + [ + -73.423763, + 45.595816 + ], + [ + -73.424048, + 45.595824 + ], + [ + -73.424219, + 45.595828 + ], + [ + -73.42427, + 45.595828 + ], + [ + -73.424314, + 45.59582 + ], + [ + -73.424346, + 45.595806 + ], + [ + -73.424389, + 45.595779 + ], + [ + -73.424403, + 45.59577 + ], + [ + -73.425154, + 45.595291 + ], + [ + -73.425315, + 45.59519 + ], + [ + -73.425547, + 45.595042 + ], + [ + -73.425726, + 45.594927 + ], + [ + -73.42589, + 45.594822 + ], + [ + -73.426214, + 45.59507 + ], + [ + -73.428044, + 45.59647 + ], + [ + -73.428064, + 45.596555 + ], + [ + -73.428968, + 45.597186 + ], + [ + -73.429083, + 45.597267 + ], + [ + -73.429168, + 45.59719 + ], + [ + -73.429318, + 45.597082 + ], + [ + -73.429388, + 45.59703 + ], + [ + -73.429613, + 45.596862 + ], + [ + -73.42981, + 45.5967 + ], + [ + -73.429915, + 45.596619 + ], + [ + -73.430031, + 45.596525 + ], + [ + -73.430255, + 45.596318 + ], + [ + -73.430363, + 45.59621 + ], + [ + -73.430609, + 45.59595 + ], + [ + -73.430854, + 45.595684 + ], + [ + -73.430941, + 45.595572 + ], + [ + -73.431134, + 45.595351 + ], + [ + -73.431414, + 45.595014 + ], + [ + -73.43147, + 45.594956 + ], + [ + -73.431594, + 45.594825 + ], + [ + -73.431782, + 45.594668 + ], + [ + -73.431796, + 45.594658 + ], + [ + -73.431917, + 45.594569 + ], + [ + -73.432055, + 45.594475 + ], + [ + -73.432531, + 45.594178 + ], + [ + -73.432643, + 45.594115 + ], + [ + -73.432796, + 45.594012 + ], + [ + -73.433008, + 45.593886 + ], + [ + -73.433267, + 45.593751 + ], + [ + -73.433582, + 45.593589 + ], + [ + -73.433689, + 45.593585 + ], + [ + -73.433785, + 45.593535 + ], + [ + -73.434067, + 45.593383 + ], + [ + -73.434286, + 45.593257 + ], + [ + -73.434482, + 45.593117 + ], + [ + -73.434699, + 45.59296 + ], + [ + -73.434861, + 45.592843 + ], + [ + -73.43505, + 45.592699 + ], + [ + -73.435304, + 45.592506 + ], + [ + -73.435474, + 45.592362 + ], + [ + -73.435781, + 45.592007 + ], + [ + -73.43601, + 45.591773 + ], + [ + -73.436179, + 45.591633 + ] + ] + }, + "id": 417, + "properties": { + "id": "fca46353-6d3f-4cdc-a76c-0974f7fc92fa", + "data": { + "gtfs": { + "shape_id": "893_2_R" + }, + "segments": [ + { + "distanceMeters": 818, + "travelTimeSeconds": 233 + }, + { + "distanceMeters": 230, + "travelTimeSeconds": 66 + }, + { + "distanceMeters": 212, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 141, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 325, + "travelTimeSeconds": 59 + }, + { + "distanceMeters": 152, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 395, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 56 + }, + { + "distanceMeters": 301, + "travelTimeSeconds": 48 + }, + { + "distanceMeters": 203, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 236, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 205, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 308, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 257, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 243, + "travelTimeSeconds": 44 + }, + { + "distanceMeters": 375, + "travelTimeSeconds": 72 + }, + { + "distanceMeters": 373, + "travelTimeSeconds": 73 + }, + { + "distanceMeters": 485, + "travelTimeSeconds": 95 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 5949, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 2964.08847104986, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 4.96, + "travelTimeWithoutDwellTimesSeconds": 1200, + "operatingTimeWithLayoverTimeSeconds": 1380, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1200, + "operatingSpeedWithLayoverMetersPerSecond": 4.31, + "averageSpeedWithoutDwellTimesMetersPerSecond": 4.96 + }, + "mode": "taxi", + "name": "boul. de Mortagne", + "color": "#A32638", + "nodes": [ + "9c784932-945b-47d8-afa8-e5b73889acfb", + "9adb2d51-794e-405a-84b9-dacf33a046bb", + "2f7dafc2-f82c-429d-8ce9-0ab21c7cde49", + "e2e77ab6-27d8-4ca8-9f93-36a4bfb46efb", + "d3a6dc19-15b0-45f0-a45a-d0eca5d46fd7", + "7b448eb1-37a4-4d74-be5a-f8938cae8304", + "1a872bc7-948e-475a-8527-ec3c2b61fd79", + "35c1782c-662d-401b-9699-beb9fbc05ba4", + "4941bea8-570f-4adc-b6d4-2b2cbff2bc03", + "b7599023-7f7b-498e-8d55-1e94246bf9e4", + "1c1a55d1-8af4-4a8f-95a9-7af3f3207400", + "80ef4305-1848-4e04-a328-9a6224dacc70", + "b34b9d4c-8a10-4c6f-8680-e94a58cb3557", + "e6bd25b8-5158-4fce-9b9d-3a004cbf9ea1", + "47288795-8cf7-4a4f-a6d6-27f1d0029236", + "89a9cd80-8390-4b5d-ae70-b79c4f2755a8", + "81683acf-4f7f-4881-9c66-76f73077f14f", + "7cfada17-2082-416d-b64c-984a57776abe", + "92d27f4f-1792-4dbb-8e38-aef6410a23d1", + "dbda0ea8-08e6-4d52-b455-3b21aae9d561", + "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9" + ], + "stops": [], + "line_id": "fa44047c-6b2a-47b5-bca4-e925c8baf4b2", + "segments": [ + 0, + 308, + 323, + 329, + 333, + 342, + 347, + 364, + 373, + 375, + 381, + 385, + 388, + 391, + 401, + 412, + 422, + 436, + 441, + 460 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 417, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.383219, + 45.504148 + ], + [ + -73.383272, + 45.504038 + ], + [ + -73.383312, + 45.503943 + ], + [ + -73.383779, + 45.502957 + ], + [ + -73.384213, + 45.502038 + ], + [ + -73.384273, + 45.501912 + ], + [ + -73.384265, + 45.501888 + ], + [ + -73.38424, + 45.501865 + ], + [ + -73.384205, + 45.501854 + ], + [ + -73.384166, + 45.501858 + ], + [ + -73.384132, + 45.501876 + ], + [ + -73.383235, + 45.503784 + ], + [ + -73.383175, + 45.503912 + ], + [ + -73.382957, + 45.503857 + ], + [ + -73.382592, + 45.503772 + ], + [ + -73.382365, + 45.503717 + ], + [ + -73.382247, + 45.50369 + ], + [ + -73.382017, + 45.503632 + ], + [ + -73.381788, + 45.503586 + ], + [ + -73.381702, + 45.503586 + ], + [ + -73.381614, + 45.503595 + ], + [ + -73.381525, + 45.503613 + ], + [ + -73.381438, + 45.503649 + ], + [ + -73.381271, + 45.503748 + ], + [ + -73.381063, + 45.5039 + ], + [ + -73.380649, + 45.503653 + ], + [ + -73.379998, + 45.503229 + ], + [ + -73.379576, + 45.50295 + ], + [ + -73.379384, + 45.502828 + ], + [ + -73.37932, + 45.502783 + ], + [ + -73.37913, + 45.502648 + ], + [ + -73.379092, + 45.502627 + ], + [ + -73.379006, + 45.50258 + ], + [ + -73.37878, + 45.502481 + ], + [ + -73.378631, + 45.502438 + ], + [ + -73.37856, + 45.502418 + ], + [ + -73.378407, + 45.502386 + ], + [ + -73.378319, + 45.502372 + ], + [ + -73.37822, + 45.502368 + ], + [ + -73.378037, + 45.502359 + ], + [ + -73.377961, + 45.502365 + ], + [ + -73.377873, + 45.502372 + ], + [ + -73.37772, + 45.50239 + ], + [ + -73.377578, + 45.502421 + ], + [ + -73.377427, + 45.502461 + ], + [ + -73.37726, + 45.502529 + ], + [ + -73.3771, + 45.502609 + ], + [ + -73.376904, + 45.502699 + ], + [ + -73.376645, + 45.502847 + ], + [ + -73.376535, + 45.502915 + ], + [ + -73.376411, + 45.502996 + ], + [ + -73.376319, + 45.503059 + ], + [ + -73.376016, + 45.503247 + ], + [ + -73.375972, + 45.503274 + ], + [ + -73.375741, + 45.503453 + ], + [ + -73.375698, + 45.503485 + ], + [ + -73.375447, + 45.503715 + ], + [ + -73.375293, + 45.503854 + ], + [ + -73.37517, + 45.50398 + ], + [ + -73.374998, + 45.504213 + ], + [ + -73.374854, + 45.504429 + ], + [ + -73.374722, + 45.5046 + ], + [ + -73.374697, + 45.504635 + ], + [ + -73.374625, + 45.504735 + ], + [ + -73.374598, + 45.504793 + ], + [ + -73.374583, + 45.504843 + ], + [ + -73.374565, + 45.504919 + ], + [ + -73.374581, + 45.50514 + ], + [ + -73.37462, + 45.505338 + ], + [ + -73.374746, + 45.505563 + ], + [ + -73.374844, + 45.505788 + ], + [ + -73.374878, + 45.505846 + ], + [ + -73.374945, + 45.505963 + ], + [ + -73.374951, + 45.505973 + ], + [ + -73.375061, + 45.506067 + ], + [ + -73.375295, + 45.506238 + ], + [ + -73.375424, + 45.506333 + ], + [ + -73.375748, + 45.506597 + ], + [ + -73.375784, + 45.506626 + ], + [ + -73.375859, + 45.506698 + ], + [ + -73.375911, + 45.506761 + ], + [ + -73.375985, + 45.506896 + ], + [ + -73.376046, + 45.507022 + ], + [ + -73.375883, + 45.507054 + ], + [ + -73.375586, + 45.507112 + ], + [ + -73.37473, + 45.507255 + ], + [ + -73.374599, + 45.507263 + ], + [ + -73.374436, + 45.507272 + ], + [ + -73.372887, + 45.507302 + ], + [ + -73.372631, + 45.507306 + ], + [ + -73.371045, + 45.507325 + ], + [ + -73.37103, + 45.507325 + ], + [ + -73.370567, + 45.507304 + ], + [ + -73.370342, + 45.507358 + ], + [ + -73.370185, + 45.507385 + ], + [ + -73.369937, + 45.507438 + ], + [ + -73.369662, + 45.507523 + ], + [ + -73.36959, + 45.50755 + ], + [ + -73.369495, + 45.507586 + ], + [ + -73.369303, + 45.507667 + ], + [ + -73.369155, + 45.507739 + ], + [ + -73.368983, + 45.507838 + ], + [ + -73.368564, + 45.508094 + ], + [ + -73.368491, + 45.508158 + ], + [ + -73.368457, + 45.508199 + ], + [ + -73.368436, + 45.508296 + ], + [ + -73.367563, + 45.50897 + ], + [ + -73.367227, + 45.50923 + ], + [ + -73.366888, + 45.509491 + ], + [ + -73.366791, + 45.509545 + ], + [ + -73.36663, + 45.50963 + ], + [ + -73.366517, + 45.509684 + ], + [ + -73.366437, + 45.509729 + ], + [ + -73.36634, + 45.509765 + ], + [ + -73.36618, + 45.509827 + ], + [ + -73.366055, + 45.509872 + ], + [ + -73.365885, + 45.509935 + ], + [ + -73.365717, + 45.509993 + ], + [ + -73.365568, + 45.510038 + ], + [ + -73.365287, + 45.510128 + ], + [ + -73.364989, + 45.510222 + ], + [ + -73.364884, + 45.510258 + ], + [ + -73.364801, + 45.510289 + ], + [ + -73.364428, + 45.510415 + ], + [ + -73.363963, + 45.510554 + ], + [ + -73.363807, + 45.510603 + ], + [ + -73.363516, + 45.510675 + ], + [ + -73.363312, + 45.510724 + ], + [ + -73.363113, + 45.510769 + ], + [ + -73.36283, + 45.510827 + ], + [ + -73.362522, + 45.510867 + ], + [ + -73.362033, + 45.510911 + ], + [ + -73.361571, + 45.510947 + ], + [ + -73.360273, + 45.511035 + ], + [ + -73.359861, + 45.511062 + ], + [ + -73.359475, + 45.511093 + ], + [ + -73.358969, + 45.511182 + ], + [ + -73.358767, + 45.511222 + ], + [ + -73.358494, + 45.51128 + ], + [ + -73.357994, + 45.511379 + ], + [ + -73.357808, + 45.511419 + ], + [ + -73.357645, + 45.51145 + ], + [ + -73.357426, + 45.511482 + ], + [ + -73.357172, + 45.511499 + ], + [ + -73.356802, + 45.511517 + ], + [ + -73.356486, + 45.511534 + ], + [ + -73.355612, + 45.511556 + ], + [ + -73.354918, + 45.511591 + ], + [ + -73.35442, + 45.511608 + ], + [ + -73.354203, + 45.511612 + ], + [ + -73.352796, + 45.511656 + ], + [ + -73.352264, + 45.511666 + ], + [ + -73.351714, + 45.511677 + ], + [ + -73.351072, + 45.511694 + ], + [ + -73.350726, + 45.511702 + ], + [ + -73.350143, + 45.511706 + ], + [ + -73.349976, + 45.511715 + ], + [ + -73.349812, + 45.511737 + ], + [ + -73.349497, + 45.511795 + ], + [ + -73.349271, + 45.511854 + ], + [ + -73.348974, + 45.511939 + ], + [ + -73.348633, + 45.512033 + ], + [ + -73.348555, + 45.512055 + ], + [ + -73.348326, + 45.512118 + ], + [ + -73.348194, + 45.512149 + ], + [ + -73.347903, + 45.512212 + ], + [ + -73.34773, + 45.512243 + ], + [ + -73.347409, + 45.512292 + ], + [ + -73.347134, + 45.512332 + ], + [ + -73.346933, + 45.512357 + ], + [ + -73.346916, + 45.512359 + ], + [ + -73.346783, + 45.512368 + ], + [ + -73.346634, + 45.512381 + ], + [ + -73.346539, + 45.51239 + ], + [ + -73.346481, + 45.51239 + ], + [ + -73.346316, + 45.512399 + ], + [ + -73.346083, + 45.512389 + ], + [ + -73.345813, + 45.51233 + ], + [ + -73.345317, + 45.512181 + ], + [ + -73.344794, + 45.512014 + ], + [ + -73.344569, + 45.511951 + ], + [ + -73.34433, + 45.511901 + ], + [ + -73.344167, + 45.511892 + ], + [ + -73.3439, + 45.511905 + ], + [ + -73.343684, + 45.511945 + ], + [ + -73.343469, + 45.512003 + ], + [ + -73.343452, + 45.512008 + ], + [ + -73.343354, + 45.512062 + ], + [ + -73.34325, + 45.512077 + ], + [ + -73.343097, + 45.5121 + ], + [ + -73.343396, + 45.51257 + ], + [ + -73.343437, + 45.512674 + ], + [ + -73.343463, + 45.512804 + ], + [ + -73.343492, + 45.513074 + ], + [ + -73.343522, + 45.513542 + ], + [ + -73.343521, + 45.513731 + ], + [ + -73.343597, + 45.514311 + ], + [ + -73.343604, + 45.514376 + ], + [ + -73.343662, + 45.514928 + ], + [ + -73.343818, + 45.516263 + ], + [ + -73.343839, + 45.51644 + ], + [ + -73.343865, + 45.516956 + ], + [ + -73.343868, + 45.517007 + ], + [ + -73.34388, + 45.517106 + ], + [ + -73.343907, + 45.517382 + ], + [ + -73.34397, + 45.51801 + ], + [ + -73.344008, + 45.518389 + ], + [ + -73.344019, + 45.518505 + ], + [ + -73.344103, + 45.519059 + ], + [ + -73.344134, + 45.519324 + ], + [ + -73.34415, + 45.519419 + ], + [ + -73.344153, + 45.519444 + ], + [ + -73.344217, + 45.520058 + ], + [ + -73.344223, + 45.520328 + ], + [ + -73.344186, + 45.520584 + ], + [ + -73.344126, + 45.520715 + ], + [ + -73.344046, + 45.520881 + ], + [ + -73.343898, + 45.52107 + ], + [ + -73.343794, + 45.521169 + ], + [ + -73.343671, + 45.521281 + ], + [ + -73.343545, + 45.521362 + ], + [ + -73.343232, + 45.521573 + ], + [ + -73.343229, + 45.521574 + ], + [ + -73.34316, + 45.521627 + ], + [ + -73.342373, + 45.522165 + ], + [ + -73.341589, + 45.522686 + ], + [ + -73.341528, + 45.522727 + ], + [ + -73.340616, + 45.52335 + ], + [ + -73.340352, + 45.52353 + ], + [ + -73.340272, + 45.523584 + ], + [ + -73.340102, + 45.523754 + ], + [ + -73.340043, + 45.523791 + ], + [ + -73.339575, + 45.524088 + ], + [ + -73.339569, + 45.524092 + ], + [ + -73.338727, + 45.524626 + ], + [ + -73.338513, + 45.524752 + ], + [ + -73.338368, + 45.524837 + ], + [ + -73.339197, + 45.525405 + ], + [ + -73.339713, + 45.525764 + ], + [ + -73.339841, + 45.525854 + ], + [ + -73.340005, + 45.525968 + ], + [ + -73.340568, + 45.526316 + ], + [ + -73.340738, + 45.526442 + ], + [ + -73.341034, + 45.526636 + ], + [ + -73.341462, + 45.526915 + ], + [ + -73.34183, + 45.527172 + ], + [ + -73.341951, + 45.527269 + ], + [ + -73.341994, + 45.527303 + ], + [ + -73.342074, + 45.527389 + ], + [ + -73.342252, + 45.527555 + ], + [ + -73.342521, + 45.52779 + ], + [ + -73.342827, + 45.528033 + ], + [ + -73.343198, + 45.528321 + ], + [ + -73.343543, + 45.528556 + ], + [ + -73.343655, + 45.528635 + ], + [ + -73.343849, + 45.528772 + ], + [ + -73.344605, + 45.529334 + ], + [ + -73.345188, + 45.529767 + ], + [ + -73.345287, + 45.529841 + ], + [ + -73.344864, + 45.530128 + ], + [ + -73.344314, + 45.530501 + ], + [ + -73.343891, + 45.530779 + ], + [ + -73.343591, + 45.530977 + ], + [ + -73.343262, + 45.531188 + ], + [ + -73.342747, + 45.531549 + ], + [ + -73.34266, + 45.53161 + ], + [ + -73.342233, + 45.531892 + ], + [ + -73.341898, + 45.532126 + ], + [ + -73.341801, + 45.532193 + ], + [ + -73.341416, + 45.532445 + ], + [ + -73.341272, + 45.532539 + ], + [ + -73.34089, + 45.532795 + ], + [ + -73.340638, + 45.532948 + ], + [ + -73.340479, + 45.533028 + ], + [ + -73.34032, + 45.533087 + ], + [ + -73.340076, + 45.533181 + ], + [ + -73.339825, + 45.533257 + ], + [ + -73.339193, + 45.533418 + ], + [ + -73.339192, + 45.533418 + ], + [ + -73.338814, + 45.533494 + ], + [ + -73.338467, + 45.533588 + ], + [ + -73.33816, + 45.533691 + ], + [ + -73.337948, + 45.533781 + ], + [ + -73.337761, + 45.533879 + ], + [ + -73.337703, + 45.533911 + ], + [ + -73.337604, + 45.533969 + ], + [ + -73.337508, + 45.534041 + ], + [ + -73.337409, + 45.534123 + ], + [ + -73.337302, + 45.534212 + ], + [ + -73.337182, + 45.534319 + ], + [ + -73.337023, + 45.534243 + ], + [ + -73.33688, + 45.534169 + ], + [ + -73.336831, + 45.534143 + ], + [ + -73.336511, + 45.533972 + ], + [ + -73.336192, + 45.533801 + ], + [ + -73.336025, + 45.533719 + ], + [ + -73.335981, + 45.533692 + ], + [ + -73.335923, + 45.533656 + ], + [ + -73.335872, + 45.533638 + ], + [ + -73.335591, + 45.533467 + ], + [ + -73.335323, + 45.533286 + ], + [ + -73.335054, + 45.533106 + ], + [ + -73.334658, + 45.532854 + ], + [ + -73.333712, + 45.532276 + ], + [ + -73.333393, + 45.53206 + ], + [ + -73.333185, + 45.531925 + ], + [ + -73.333073, + 45.531852 + ], + [ + -73.332779, + 45.531663 + ], + [ + -73.332473, + 45.531483 + ], + [ + -73.332192, + 45.531293 + ], + [ + -73.331788, + 45.531009 + ], + [ + -73.331323, + 45.530662 + ], + [ + -73.33092, + 45.530363 + ], + [ + -73.330825, + 45.530292 + ], + [ + -73.330761, + 45.530256 + ], + [ + -73.330009, + 45.529693 + ], + [ + -73.328691, + 45.528715 + ], + [ + -73.328257, + 45.528395 + ], + [ + -73.328159, + 45.528322 + ], + [ + -73.327746, + 45.528029 + ], + [ + -73.326635, + 45.527209 + ], + [ + -73.326478, + 45.527089 + ], + [ + -73.325817, + 45.526587 + ], + [ + -73.325411, + 45.526298 + ], + [ + -73.324566, + 45.525567 + ], + [ + -73.324515, + 45.525523 + ], + [ + -73.324477, + 45.525478 + ], + [ + -73.323443, + 45.524603 + ], + [ + -73.322906, + 45.524151 + ], + [ + -73.322064, + 45.52344 + ], + [ + -73.321325, + 45.522814 + ], + [ + -73.321069, + 45.522593 + ], + [ + -73.32099, + 45.522525 + ], + [ + -73.319781, + 45.521516 + ], + [ + -73.319113, + 45.520953 + ], + [ + -73.318732, + 45.520632 + ], + [ + -73.318552, + 45.520474 + ], + [ + -73.318461, + 45.520393 + ], + [ + -73.318456, + 45.520312 + ], + [ + -73.318426, + 45.520276 + ], + [ + -73.318299, + 45.520113 + ], + [ + -73.318178, + 45.51995 + ], + [ + -73.31814, + 45.519962 + ], + [ + -73.31809, + 45.519979 + ], + [ + -73.318032, + 45.519996 + ], + [ + -73.31758, + 45.520131 + ], + [ + -73.31192, + 45.521822 + ], + [ + -73.310425, + 45.522271 + ], + [ + -73.310013, + 45.522395 + ], + [ + -73.309677, + 45.522494 + ], + [ + -73.308208, + 45.522923 + ], + [ + -73.302545, + 45.52465 + ], + [ + -73.302393, + 45.524695 + ], + [ + -73.302496, + 45.52486 + ], + [ + -73.302629, + 45.525053 + ] + ] + }, + "id": 418, + "properties": { + "id": "73cc2bbf-9b62-478e-8f51-0a830aaf71ec", + "data": { + "gtfs": { + "shape_id": "894_2_R" + }, + "segments": [ + { + "distanceMeters": 1219, + "travelTimeSeconds": 191 + }, + { + "distanceMeters": 296, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 14, + "travelTimeSeconds": 3 + }, + { + "distanceMeters": 2574, + "travelTimeSeconds": 300 + }, + { + "distanceMeters": 283, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 288, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 160, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 16 + }, + { + "distanceMeters": 263, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 178, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 106, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 227, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 176, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 228, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 376, + "travelTimeSeconds": 54 + }, + { + "distanceMeters": 286, + "travelTimeSeconds": 35 + }, + { + "distanceMeters": 144, + "travelTimeSeconds": 18 + }, + { + "distanceMeters": 370, + "travelTimeSeconds": 46 + }, + { + "distanceMeters": 145, + "travelTimeSeconds": 19 + }, + { + "distanceMeters": 294, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 248, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 302, + "travelTimeSeconds": 38 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 25 + }, + { + "distanceMeters": 226, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 225, + "travelTimeSeconds": 28 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 186, + "travelTimeSeconds": 29 + }, + { + "distanceMeters": 1332, + "travelTimeSeconds": 211 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 11189, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 6721.6152304566685, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 7.46, + "travelTimeWithoutDwellTimesSeconds": 1500, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 6.66, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.46 + }, + "mode": "taxi", + "name": "St-Basile-le-Grand", + "color": "#A32638", + "nodes": [ + "f5878f34-f127-426a-b40a-4b944c9b826c", + "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "71e14567-ffe9-47f4-8913-115ccc452daf", + "784a98f8-f964-4b51-9a84-d7aa241d6aab", + "4d3db5af-874a-4a4c-8a87-68ecc590af13", + "f20c1a67-6c7e-41a3-a85d-9c7b49ac0386", + "652ad35d-f3c9-49c6-b2de-8d15cab5cafb", + "7ac3961a-0b0e-47c8-a264-69b6edbbd2b9", + "9f67f31c-9015-4b9c-b5eb-210a53be617b", + "60ea8a19-f195-4f9b-b60e-122a63bd86bd", + "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", + "2c952684-5d97-4238-ae18-51cba6c9775e", + "819e2afa-bfef-47b3-8a41-a55f4c2f9156", + "0dae6aad-c792-48fd-a50b-e498ec730741", + "16815d0a-9758-4c90-a572-66e1110e9895", + "6a18cdcb-7d78-46ad-a358-7895b3877421", + "b96762ce-57d1-4d28-bc37-afabeacae179", + "3860f604-02bd-44a8-9d62-54ba0366b85f", + "59449548-0d0c-41e2-b094-c40114d0f9ce", + "a6331a68-3ea7-48f7-8560-80cafa791eb3", + "93fcd4a5-ee80-4c79-b0bc-547231801133", + "6b369192-79e8-4382-aaa0-abddf0da08d7", + "02c05e36-6f59-42fd-b6c5-b158e3d119a0", + "4f0816d5-67e0-4d4d-9413-6e045052da5f", + "7464372f-e710-4dc5-a76c-a68144e67289", + "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", + "5f32a25e-7895-498c-b5cd-182adcfb40dd", + "a94f1c18-1655-455b-9813-9178e8c9257e", + "26fb8877-5e09-4777-bcb0-88e1fd0fc274" + ], + "stops": [], + "line_id": "382bf851-753e-48f5-92c4-59cf640aaa2f", + "segments": [ + 0, + 54, + 71, + 72, + 169, + 185, + 197, + 201, + 206, + 211, + 222, + 225, + 227, + 235, + 239, + 246, + 257, + 264, + 269, + 287, + 296, + 305, + 312, + 317, + 321, + 324, + 328, + 331, + 334, + 345 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 418, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.302243, + 45.524936 + ], + [ + -73.302496, + 45.52486 + ], + [ + -73.302649, + 45.524814 + ], + [ + -73.308582, + 45.523031 + ], + [ + -73.309273, + 45.522823 + ], + [ + -73.309764, + 45.522675 + ], + [ + -73.309784, + 45.522669 + ], + [ + -73.310111, + 45.522571 + ], + [ + -73.311844, + 45.52205 + ], + [ + -73.311869, + 45.522043 + ], + [ + -73.315561, + 45.520935 + ], + [ + -73.317262, + 45.520425 + ], + [ + -73.318073, + 45.520181 + ], + [ + -73.318144, + 45.52016 + ], + [ + -73.318342, + 45.520362 + ], + [ + -73.318461, + 45.520393 + ], + [ + -73.318552, + 45.520474 + ], + [ + -73.318655, + 45.520564 + ], + [ + -73.318732, + 45.520632 + ], + [ + -73.319781, + 45.521516 + ], + [ + -73.32099, + 45.522525 + ], + [ + -73.32127, + 45.522767 + ], + [ + -73.321325, + 45.522814 + ], + [ + -73.322064, + 45.52344 + ], + [ + -73.322939, + 45.524178 + ], + [ + -73.323443, + 45.524603 + ], + [ + -73.324444, + 45.52545 + ], + [ + -73.324477, + 45.525478 + ], + [ + -73.324515, + 45.525523 + ], + [ + -73.325411, + 45.526298 + ], + [ + -73.325817, + 45.526587 + ], + [ + -73.326469, + 45.527082 + ], + [ + -73.326635, + 45.527209 + ], + [ + -73.327746, + 45.528029 + ], + [ + -73.328079, + 45.528266 + ], + [ + -73.328159, + 45.528322 + ], + [ + -73.328691, + 45.528715 + ], + [ + -73.330009, + 45.529693 + ], + [ + -73.330658, + 45.530179 + ], + [ + -73.330761, + 45.530256 + ], + [ + -73.330825, + 45.530292 + ], + [ + -73.331323, + 45.530662 + ], + [ + -73.331788, + 45.531009 + ], + [ + -73.332192, + 45.531293 + ], + [ + -73.332473, + 45.531483 + ], + [ + -73.332779, + 45.531663 + ], + [ + -73.333073, + 45.531852 + ], + [ + -73.333393, + 45.53206 + ], + [ + -73.333712, + 45.532276 + ], + [ + -73.333782, + 45.532319 + ], + [ + -73.334658, + 45.532854 + ], + [ + -73.335054, + 45.533106 + ], + [ + -73.335323, + 45.533286 + ], + [ + -73.335591, + 45.533467 + ], + [ + -73.335872, + 45.533638 + ], + [ + -73.335879, + 45.533641 + ], + [ + -73.335923, + 45.533656 + ], + [ + -73.336025, + 45.533719 + ], + [ + -73.336192, + 45.533801 + ], + [ + -73.336511, + 45.533972 + ], + [ + -73.336741, + 45.534095 + ], + [ + -73.336831, + 45.534143 + ], + [ + -73.337023, + 45.534243 + ], + [ + -73.33711, + 45.534285 + ], + [ + -73.337182, + 45.534319 + ], + [ + -73.337307, + 45.534374 + ], + [ + -73.337482, + 45.534198 + ], + [ + -73.337689, + 45.534041 + ], + [ + -73.337808, + 45.533974 + ], + [ + -73.338017, + 45.533853 + ], + [ + -73.338221, + 45.533768 + ], + [ + -73.338526, + 45.533664 + ], + [ + -73.338863, + 45.533588 + ], + [ + -73.339226, + 45.533508 + ], + [ + -73.339876, + 45.533342 + ], + [ + -73.340135, + 45.533266 + ], + [ + -73.340552, + 45.533109 + ], + [ + -73.340722, + 45.53302 + ], + [ + -73.340981, + 45.532867 + ], + [ + -73.341366, + 45.532607 + ], + [ + -73.341738, + 45.532355 + ], + [ + -73.341884, + 45.532256 + ], + [ + -73.341987, + 45.532185 + ], + [ + -73.342318, + 45.531956 + ], + [ + -73.342676, + 45.531717 + ], + [ + -73.342742, + 45.531673 + ], + [ + -73.343353, + 45.531255 + ], + [ + -73.343689, + 45.531049 + ], + [ + -73.344396, + 45.530559 + ], + [ + -73.344985, + 45.530159 + ], + [ + -73.345369, + 45.529899 + ], + [ + -73.345287, + 45.529841 + ], + [ + -73.345011, + 45.529635 + ], + [ + -73.344605, + 45.529334 + ], + [ + -73.343849, + 45.528772 + ], + [ + -73.343655, + 45.528635 + ], + [ + -73.343543, + 45.528556 + ], + [ + -73.343198, + 45.528321 + ], + [ + -73.342827, + 45.528033 + ], + [ + -73.342521, + 45.52779 + ], + [ + -73.342252, + 45.527555 + ], + [ + -73.342163, + 45.527472 + ], + [ + -73.342074, + 45.527389 + ], + [ + -73.341994, + 45.527303 + ], + [ + -73.34183, + 45.527172 + ], + [ + -73.341462, + 45.526915 + ], + [ + -73.341034, + 45.526636 + ], + [ + -73.340738, + 45.526442 + ], + [ + -73.340568, + 45.526316 + ], + [ + -73.340361, + 45.526188 + ], + [ + -73.340005, + 45.525968 + ], + [ + -73.339713, + 45.525764 + ], + [ + -73.339197, + 45.525405 + ], + [ + -73.338518, + 45.524939 + ], + [ + -73.338368, + 45.524837 + ], + [ + -73.338727, + 45.524626 + ], + [ + -73.338873, + 45.524533 + ], + [ + -73.339575, + 45.524088 + ], + [ + -73.340043, + 45.523791 + ], + [ + -73.340102, + 45.523754 + ], + [ + -73.340274, + 45.523685 + ], + [ + -73.340357, + 45.523652 + ], + [ + -73.340425, + 45.523602 + ], + [ + -73.341516, + 45.522856 + ], + [ + -73.341612, + 45.52279 + ], + [ + -73.342452, + 45.522224 + ], + [ + -73.343136, + 45.521768 + ], + [ + -73.343254, + 45.52169 + ], + [ + -73.343631, + 45.521425 + ], + [ + -73.343894, + 45.521227 + ], + [ + -73.344046, + 45.521061 + ], + [ + -73.344147, + 45.520913 + ], + [ + -73.344274, + 45.520719 + ], + [ + -73.344347, + 45.520476 + ], + [ + -73.344358, + 45.520296 + ], + [ + -73.344344, + 45.52004 + ], + [ + -73.344311, + 45.519741 + ], + [ + -73.344273, + 45.519406 + ], + [ + -73.344239, + 45.519032 + ], + [ + -73.344184, + 45.518506 + ], + [ + -73.344137, + 45.518006 + ], + [ + -73.344045, + 45.516998 + ], + [ + -73.344002, + 45.516569 + ], + [ + -73.343805, + 45.514586 + ], + [ + -73.343763, + 45.514238 + ], + [ + -73.343701, + 45.513718 + ], + [ + -73.343703, + 45.513529 + ], + [ + -73.343678, + 45.513173 + ], + [ + -73.34367, + 45.513061 + ], + [ + -73.343642, + 45.512791 + ], + [ + -73.343612, + 45.512647 + ], + [ + -73.343567, + 45.512534 + ], + [ + -73.343389, + 45.512139 + ], + [ + -73.343354, + 45.512062 + ], + [ + -73.343452, + 45.512008 + ], + [ + -73.343684, + 45.511945 + ], + [ + -73.3439, + 45.511905 + ], + [ + -73.344167, + 45.511892 + ], + [ + -73.34433, + 45.511901 + ], + [ + -73.344569, + 45.511951 + ], + [ + -73.344794, + 45.512014 + ], + [ + -73.345317, + 45.512181 + ], + [ + -73.345813, + 45.51233 + ], + [ + -73.346083, + 45.512389 + ], + [ + -73.346316, + 45.512399 + ], + [ + -73.346481, + 45.51239 + ], + [ + -73.346539, + 45.51239 + ], + [ + -73.346624, + 45.512382 + ], + [ + -73.346634, + 45.512381 + ], + [ + -73.346783, + 45.512368 + ], + [ + -73.346916, + 45.512359 + ], + [ + -73.347134, + 45.512332 + ], + [ + -73.347409, + 45.512292 + ], + [ + -73.34773, + 45.512243 + ], + [ + -73.347903, + 45.512212 + ], + [ + -73.348194, + 45.512149 + ], + [ + -73.348326, + 45.512118 + ], + [ + -73.348555, + 45.512055 + ], + [ + -73.348633, + 45.512033 + ], + [ + -73.348974, + 45.511939 + ], + [ + -73.349271, + 45.511854 + ], + [ + -73.349497, + 45.511795 + ], + [ + -73.349812, + 45.511737 + ], + [ + -73.349976, + 45.511715 + ], + [ + -73.350143, + 45.511706 + ], + [ + -73.350726, + 45.511702 + ], + [ + -73.351072, + 45.511694 + ], + [ + -73.351714, + 45.511677 + ], + [ + -73.352264, + 45.511666 + ], + [ + -73.352796, + 45.511656 + ], + [ + -73.354203, + 45.511612 + ], + [ + -73.35442, + 45.511608 + ], + [ + -73.354918, + 45.511591 + ], + [ + -73.355612, + 45.511556 + ], + [ + -73.356486, + 45.511534 + ], + [ + -73.356802, + 45.511517 + ], + [ + -73.357172, + 45.511499 + ], + [ + -73.357426, + 45.511482 + ], + [ + -73.357645, + 45.51145 + ], + [ + -73.357808, + 45.511419 + ], + [ + -73.357994, + 45.511379 + ], + [ + -73.358494, + 45.51128 + ], + [ + -73.358767, + 45.511222 + ], + [ + -73.358969, + 45.511182 + ], + [ + -73.359475, + 45.511093 + ], + [ + -73.359861, + 45.511062 + ], + [ + -73.360273, + 45.511035 + ], + [ + -73.361571, + 45.510947 + ], + [ + -73.362033, + 45.510911 + ], + [ + -73.362522, + 45.510867 + ], + [ + -73.36283, + 45.510827 + ], + [ + -73.363113, + 45.510769 + ], + [ + -73.363312, + 45.510724 + ], + [ + -73.363516, + 45.510675 + ], + [ + -73.363807, + 45.510603 + ], + [ + -73.363963, + 45.510554 + ], + [ + -73.364428, + 45.510415 + ], + [ + -73.364801, + 45.510289 + ], + [ + -73.364884, + 45.510258 + ], + [ + -73.364989, + 45.510222 + ], + [ + -73.365287, + 45.510128 + ], + [ + -73.365568, + 45.510038 + ], + [ + -73.365717, + 45.509993 + ], + [ + -73.365885, + 45.509935 + ], + [ + -73.366055, + 45.509872 + ], + [ + -73.36618, + 45.509827 + ], + [ + -73.36634, + 45.509765 + ], + [ + -73.366437, + 45.509729 + ], + [ + -73.366517, + 45.509684 + ], + [ + -73.36663, + 45.50963 + ], + [ + -73.366791, + 45.509545 + ], + [ + -73.366888, + 45.509491 + ], + [ + -73.367227, + 45.50923 + ], + [ + -73.367563, + 45.50897 + ], + [ + -73.368436, + 45.508296 + ], + [ + -73.368564, + 45.50826 + ], + [ + -73.368902, + 45.508008 + ], + [ + -73.36905, + 45.507914 + ], + [ + -73.369192, + 45.507833 + ], + [ + -73.369331, + 45.507761 + ], + [ + -73.369516, + 45.507658 + ], + [ + -73.369592, + 45.507631 + ], + [ + -73.369851, + 45.507564 + ], + [ + -73.370159, + 45.507483 + ], + [ + -73.370328, + 45.507457 + ], + [ + -73.370621, + 45.507421 + ], + [ + -73.370934, + 45.507408 + ], + [ + -73.371028, + 45.507408 + ], + [ + -73.372799, + 45.507392 + ], + [ + -73.374635, + 45.507344 + ], + [ + -73.374761, + 45.50734 + ], + [ + -73.37473, + 45.507255 + ], + [ + -73.374527, + 45.506687 + ], + [ + -73.374283, + 45.505985 + ], + [ + -73.373958, + 45.505013 + ], + [ + -73.37387, + 45.504482 + ], + [ + -73.373875, + 45.504217 + ], + [ + -73.373889, + 45.504095 + ], + [ + -73.373933, + 45.503704 + ], + [ + -73.374052, + 45.503331 + ], + [ + -73.374244, + 45.502903 + ], + [ + -73.374385, + 45.502755 + ], + [ + -73.374501, + 45.502652 + ], + [ + -73.374608, + 45.502607 + ], + [ + -73.37476, + 45.502575 + ], + [ + -73.375092, + 45.502612 + ], + [ + -73.375264, + 45.502648 + ], + [ + -73.375427, + 45.502684 + ], + [ + -73.375574, + 45.502747 + ], + [ + -73.376319, + 45.503059 + ], + [ + -73.376016, + 45.503247 + ], + [ + -73.375972, + 45.503274 + ], + [ + -73.375728, + 45.503463 + ], + [ + -73.375709, + 45.503477 + ], + [ + -73.375698, + 45.503485 + ], + [ + -73.375447, + 45.503715 + ], + [ + -73.375293, + 45.503854 + ], + [ + -73.37517, + 45.50398 + ], + [ + -73.374998, + 45.504213 + ], + [ + -73.374854, + 45.504429 + ], + [ + -73.374722, + 45.5046 + ], + [ + -73.374697, + 45.504635 + ], + [ + -73.374625, + 45.504735 + ], + [ + -73.374598, + 45.504793 + ], + [ + -73.374583, + 45.504843 + ], + [ + -73.374565, + 45.504919 + ], + [ + -73.374581, + 45.50514 + ], + [ + -73.37462, + 45.505338 + ], + [ + -73.374746, + 45.505563 + ], + [ + -73.374844, + 45.505788 + ], + [ + -73.374845, + 45.50579 + ], + [ + -73.37489, + 45.505867 + ], + [ + -73.374951, + 45.505973 + ], + [ + -73.374962, + 45.505982 + ], + [ + -73.375061, + 45.506067 + ], + [ + -73.375295, + 45.506238 + ], + [ + -73.375424, + 45.506333 + ], + [ + -73.375748, + 45.506597 + ], + [ + -73.375784, + 45.506626 + ], + [ + -73.375859, + 45.506698 + ], + [ + -73.375911, + 45.506761 + ], + [ + -73.375985, + 45.506896 + ], + [ + -73.376046, + 45.507022 + ], + [ + -73.376084, + 45.507108 + ], + [ + -73.376268, + 45.507459 + ], + [ + -73.376298, + 45.507513 + ], + [ + -73.376345, + 45.507576 + ], + [ + -73.3764, + 45.507639 + ], + [ + -73.376512, + 45.507729 + ], + [ + -73.376632, + 45.507801 + ], + [ + -73.376837, + 45.507891 + ], + [ + -73.376868, + 45.507902 + ], + [ + -73.376914, + 45.507917 + ], + [ + -73.377114, + 45.507982 + ], + [ + -73.377442, + 45.508081 + ], + [ + -73.377571, + 45.508108 + ], + [ + -73.377699, + 45.508135 + ], + [ + -73.377779, + 45.508144 + ], + [ + -73.377878, + 45.50815 + ], + [ + -73.377933, + 45.508153 + ], + [ + -73.378119, + 45.508163 + ], + [ + -73.378452, + 45.508145 + ], + [ + -73.378562, + 45.50814 + ], + [ + -73.379021, + 45.50812 + ], + [ + -73.379147, + 45.508114 + ], + [ + -73.3793, + 45.508105 + ], + [ + -73.379404, + 45.508091 + ], + [ + -73.379526, + 45.508074 + ], + [ + -73.379622, + 45.508047 + ], + [ + -73.379724, + 45.508025 + ], + [ + -73.379863, + 45.507975 + ], + [ + -73.379957, + 45.507934 + ], + [ + -73.380059, + 45.50789 + ], + [ + -73.380179, + 45.507823 + ], + [ + -73.380268, + 45.507759 + ], + [ + -73.380399, + 45.507666 + ], + [ + -73.380494, + 45.507592 + ], + [ + -73.380503, + 45.507585 + ], + [ + -73.380626, + 45.507481 + ], + [ + -73.38128, + 45.507806 + ], + [ + -73.381389, + 45.507851 + ], + [ + -73.381468, + 45.507752 + ], + [ + -73.381562, + 45.507572 + ], + [ + -73.381667, + 45.507356 + ], + [ + -73.381733, + 45.507226 + ], + [ + -73.381816, + 45.507051 + ], + [ + -73.381935, + 45.506785 + ], + [ + -73.382054, + 45.506552 + ], + [ + -73.382181, + 45.506291 + ], + [ + -73.382211, + 45.506232 + ], + [ + -73.382294, + 45.50607 + ], + [ + -73.382297, + 45.506061 + ], + [ + -73.382363, + 45.505931 + ], + [ + -73.382444, + 45.505769 + ], + [ + -73.382566, + 45.505517 + ], + [ + -73.382593, + 45.505454 + ], + [ + -73.382731, + 45.505162 + ], + [ + -73.382892, + 45.504865 + ], + [ + -73.382933, + 45.504757 + ], + [ + -73.382959, + 45.504685 + ], + [ + -73.383219, + 45.504148 + ] + ] + }, + "id": 419, + "properties": { + "id": "3b1648da-c300-4023-8f13-8994f42529d8", + "data": { + "gtfs": { + "shape_id": "894_1_A" + }, + "segments": [ + { + "distanceMeters": 538, + "travelTimeSeconds": 91 + }, + { + "distanceMeters": 872, + "travelTimeSeconds": 149 + }, + { + "distanceMeters": 319, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 204, + "travelTimeSeconds": 26 + }, + { + "distanceMeters": 184, + "travelTimeSeconds": 22 + }, + { + "distanceMeters": 241, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 182, + "travelTimeSeconds": 23 + }, + { + "distanceMeters": 293, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 341, + "travelTimeSeconds": 43 + }, + { + "distanceMeters": 220, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 120, + "travelTimeSeconds": 15 + }, + { + "distanceMeters": 439, + "travelTimeSeconds": 55 + }, + { + "distanceMeters": 102, + "travelTimeSeconds": 12 + }, + { + "distanceMeters": 250, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 410, + "travelTimeSeconds": 61 + }, + { + "distanceMeters": 201, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 200, + "travelTimeSeconds": 30 + }, + { + "distanceMeters": 213, + "travelTimeSeconds": 32 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 20 + }, + { + "distanceMeters": 175, + "travelTimeSeconds": 27 + }, + { + "distanceMeters": 258, + "travelTimeSeconds": 39 + }, + { + "distanceMeters": 354, + "travelTimeSeconds": 42 + }, + { + "distanceMeters": 379, + "travelTimeSeconds": 45 + }, + { + "distanceMeters": 118, + "travelTimeSeconds": 14 + }, + { + "distanceMeters": 279, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 3098, + "travelTimeSeconds": 370 + }, + { + "distanceMeters": 297, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 14, + "travelTimeSeconds": 3 + }, + { + "distanceMeters": 440, + "travelTimeSeconds": 119 + }, + { + "distanceMeters": 134, + "travelTimeSeconds": 36 + }, + { + "distanceMeters": 280, + "travelTimeSeconds": 75 + }, + { + "distanceMeters": 245, + "travelTimeSeconds": 67 + } + ], + "from_gtfs": true, + "nodeTypes": [], + "variables": { + "d_p": null, + "n_q_p": 0, + "n_s_p": 0, + "d_l_avg": null, + "d_l_max": null, + "d_l_med": null, + "d_l_min": null + }, + "waypoints": [], + "routingMode": "driving", + "routingEngine": "engine", + "waypointTypes": [], + "dwellTimeSeconds": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1.2, + "defaultDeceleration": 1.2, + "returnBackGeography": null, + "totalDistanceMeters": 11525, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 0, + "defaultRunningSpeedKmH": 50, + "defaultDwellTimeSeconds": 15, + "birdDistanceBetweenTerminals": 6721.6152304566685, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 6.86, + "travelTimeWithoutDwellTimesSeconds": 1680, + "operatingTimeWithLayoverTimeSeconds": 1860, + "totalTravelTimeWithReturnBackSeconds": null, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1680, + "operatingSpeedWithLayoverMetersPerSecond": 6.2, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.86 + }, + "mode": "taxi", + "name": "boul. St-Bruno", + "color": "#A32638", + "nodes": [ + "26fb8877-5e09-4777-bcb0-88e1fd0fc274", + "c3cf866f-d115-4fc2-9f1e-f70f34283f5f", + "5f32a25e-7895-498c-b5cd-182adcfb40dd", + "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", + "0893f164-19ee-46d7-888c-b2f0ceb4c706", + "4f0816d5-67e0-4d4d-9413-6e045052da5f", + "e3c142cf-278c-41ec-b9f5-dff43803109b", + "6b369192-79e8-4382-aaa0-abddf0da08d7", + "93fcd4a5-ee80-4c79-b0bc-547231801133", + "a6331a68-3ea7-48f7-8560-80cafa791eb3", + "59449548-0d0c-41e2-b094-c40114d0f9ce", + "3860f604-02bd-44a8-9d62-54ba0366b85f", + "b96762ce-57d1-4d28-bc37-afabeacae179", + "6a18cdcb-7d78-46ad-a358-7895b3877421", + "16815d0a-9758-4c90-a572-66e1110e9895", + "0dae6aad-c792-48fd-a50b-e498ec730741", + "4451201f-23d0-4b66-a2ac-a72029810b3b", + "2c952684-5d97-4238-ae18-51cba6c9775e", + "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", + "60ea8a19-f195-4f9b-b60e-122a63bd86bd", + "9f67f31c-9015-4b9c-b5eb-210a53be617b", + "106469e3-38d2-4015-b627-c243c3d7f8cd", + "0910a11d-1b83-4a5b-9c01-30b9a6d926ef", + "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d", + "784a98f8-f964-4b51-9a84-d7aa241d6aab", + "71e14567-ffe9-47f4-8913-115ccc452daf", + "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", + "01e0bcb2-ac63-4c88-b110-c273905a1d5c", + "c4c03f6a-b2dc-4fb8-87cd-df1a4417beae", + "f5878f34-f127-426a-b40a-4b944c9b826c" + ], + "stops": [], + "line_id": "382bf851-753e-48f5-92c4-59cf640aaa2f", + "segments": [ + 0, + 3, + 17, + 21, + 24, + 26, + 31, + 34, + 38, + 49, + 55, + 63, + 80, + 84, + 89, + 101, + 109, + 113, + 120, + 123, + 126, + 136, + 142, + 147, + 152, + 167, + 272, + 291, + 293, + 323, + 336, + 349 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-20T16:19:33.676269+00:00", + "integer_id": 419, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.501812, + 45.523633 + ], + [ + -73.500061, + 45.524846 + ], + [ + -73.504673, + 45.52101 + ], + [ + -73.506868, + 45.522376 + ], + [ + -73.502585, + 45.525591 + ], + [ + -73.500061, + 45.524846 + ] + ] + }, + "id": 420, + "properties": { + "id": "627d617d-6b7a-44a5-8d77-61753f20b0a4", + "data": { + "segments": [ + { + "distanceMeters": 192, + "travelTimeSeconds": 34 + }, + { + "distanceMeters": 558, + "travelTimeSeconds": 57 + }, + { + "distanceMeters": 229, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 490, + "travelTimeSeconds": 53 + }, + { + "distanceMeters": 214, + "travelTimeSeconds": 35 + } + ], + "from_gtfs": false, + "nodeTypes": [ + "manual", + "manual", + "manual", + "manual", + "manual", + "manual" + ], + "variables": { + "d_p": 1683, + "T_o_p": 420, + "n_q_p": 6, + "n_s_p": 6, + "d_l_avg": 337, + "d_l_max": 558, + "d_l_med": 229, + "d_l_min": 192 + }, + "waypoints": [ + [], + [], + [], + [], + [], + [] + ], + "routingMode": "rail", + "routingEngine": "manual", + "routingFailed": false, + "waypointTypes": [ + [], + [], + [], + [], + [], + [] + ], + "dwellTimeSeconds": [ + 0, + 30, + 30, + 30, + 30, + 30 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 250, + "defaultAcceleration": 0.7, + "defaultDeceleration": 0.7, + "returnBackGeography": null, + "totalDistanceMeters": 1683, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 150, + "defaultRunningSpeedKmH": 90, + "defaultDwellTimeSeconds": 30, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 4.01, + "travelTimeWithoutDwellTimesSeconds": 120, + "operatingTimeWithLayoverTimeSeconds": 600, + "totalTravelTimeWithReturnBackSeconds": 600, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 420, + "operatingSpeedWithLayoverMetersPerSecond": 2.81, + "directRouteBetweenTerminalsDistanceMeters": 192, + "averageSpeedWithoutDwellTimesMetersPerSecond": 14.03, + "directRouteBetweenTerminalsTravelTimeSeconds": 8 + }, + "mode": "rail", + "name": null, + "color": "#7cc2ff", + "nodes": [ + "0e5d2dfa-ebda-4bee-8d5e-46436cbea299", + "d41672d0-e186-418e-b20f-1d82b60c3365", + "c72f260f-0d66-46a0-aa47-d7bdf5b8c3c5", + "c64e94bb-98df-4524-930a-135a6f4b4bff", + "3166d228-f358-4741-9950-420cebd0aa4c", + "d41672d0-e186-418e-b20f-1d82b60c3365" + ], + "stops": [], + "line_id": "5908da12-15da-4997-b245-9ffec4a2fc0c", + "segments": [ + 0, + 1, + 2, + 3, + 4 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-24T18:12:55.253763+00:00", + "integer_id": 420, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.50194, + 45.523443 + ], + [ + -73.50133, + 45.523242 + ], + [ + -73.50062, + 45.523008 + ], + [ + -73.500708, + 45.522863 + ], + [ + -73.497284, + 45.521694 + ], + [ + -73.497276, + 45.521657 + ], + [ + -73.497203, + 45.521307 + ], + [ + -73.497117, + 45.520892 + ], + [ + -73.497423, + 45.520994 + ], + [ + -73.498031, + 45.521197 + ], + [ + -73.49828, + 45.52128 + ], + [ + -73.500256, + 45.521939 + ], + [ + -73.500549, + 45.521509 + ], + [ + -73.501004, + 45.52084 + ], + [ + -73.501434, + 45.520208 + ], + [ + -73.504546, + 45.521205 + ], + [ + -73.504759, + 45.521273 + ], + [ + -73.504331, + 45.521924 + ], + [ + -73.504778, + 45.52207 + ], + [ + -73.504334, + 45.522732 + ], + [ + -73.504015, + 45.52321 + ], + [ + -73.503676, + 45.523095 + ], + [ + -73.502184, + 45.522591 + ], + [ + -73.501625, + 45.522402 + ], + [ + -73.501184, + 45.522253 + ], + [ + -73.501099, + 45.522224 + ], + [ + -73.500708, + 45.522863 + ], + [ + -73.50062, + 45.523008 + ], + [ + -73.50133, + 45.523242 + ], + [ + -73.50194, + 45.523443 + ] + ] + }, + "id": 421, + "properties": { + "id": "7ae26289-ffdc-4f9e-add0-9e9e89336eb4", + "data": { + "segments": [ + { + "distanceMeters": 433, + "travelTimeSeconds": 69 + }, + { + "distanceMeters": 838, + "travelTimeSeconds": 122 + }, + { + "distanceMeters": 738, + "travelTimeSeconds": 123 + } + ], + "from_gtfs": false, + "nodeTypes": [ + "engine", + "engine", + "engine", + "engine" + ], + "variables": { + "d_p": 2009, + "T_o_p": 420, + "n_q_p": 4, + "n_s_p": 4, + "d_l_avg": 670, + "d_l_max": 838, + "d_l_med": 738, + "d_l_min": 433 + }, + "waypoints": [ + [], + [], + [], + [] + ], + "routingMode": "bus_urban", + "routingEngine": "engine", + "routingFailed": false, + "waypointTypes": [ + [], + [], + [], + [] + ], + "dwellTimeSeconds": [ + 0, + 20, + 20, + 20 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 2009, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 60, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 4.78, + "travelTimeWithoutDwellTimesSeconds": 300, + "operatingTimeWithLayoverTimeSeconds": 600, + "totalTravelTimeWithReturnBackSeconds": 600, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 420, + "operatingSpeedWithLayoverMetersPerSecond": 3.35, + "directRouteBetweenTerminalsDistanceMeters": 0, + "averageSpeedWithoutDwellTimesMetersPerSecond": 6.7, + "directRouteBetweenTerminalsTravelTimeSeconds": 0 + }, + "mode": "bus", + "name": null, + "color": "#fff600", + "nodes": [ + "0e5d2dfa-ebda-4bee-8d5e-46436cbea299", + "6c8872a8-685f-49ed-9246-92743dd113de", + "c72f260f-0d66-46a0-aa47-d7bdf5b8c3c5", + "0e5d2dfa-ebda-4bee-8d5e-46436cbea299" + ], + "stops": [], + "line_id": "f501d9ed-93db-4503-83dd-cf1890221267", + "segments": [ + 0, + 5, + 15 + ], + "direction": "loop", + "is_frozen": false, + "created_at": "2023-01-25T18:36:02.83819+00:00", + "integer_id": 421, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.508365, + 45.521033 + ], + [ + -73.508376, + 45.521052 + ], + [ + -73.50882, + 45.521847 + ], + [ + -73.508911, + 45.52201 + ], + [ + -73.509196, + 45.52252 + ], + [ + -73.509298, + 45.522709 + ], + [ + -73.509687, + 45.52343 + ], + [ + -73.509754, + 45.523555 + ], + [ + -73.509977, + 45.524041 + ], + [ + -73.51018, + 45.524458 + ], + [ + -73.510426, + 45.525377 + ], + [ + -73.510431, + 45.525413 + ], + [ + -73.510485, + 45.52576 + ], + [ + -73.510566, + 45.526288 + ], + [ + -73.51057, + 45.527241 + ], + [ + -73.510561, + 45.527302 + ], + [ + -73.510537, + 45.52747 + ], + [ + -73.510563, + 45.527791 + ], + [ + -73.510547, + 45.527893 + ], + [ + -73.510474, + 45.528039 + ], + [ + -73.510441, + 45.5281 + ], + [ + -73.510401, + 45.528159 + ], + [ + -73.51047, + 45.528232 + ], + [ + -73.510527, + 45.528147 + ], + [ + -73.510568, + 45.528082 + ], + [ + -73.510675, + 45.527879 + ], + [ + -73.510698, + 45.527819 + ], + [ + -73.510721, + 45.527758 + ], + [ + -73.510836, + 45.527394 + ], + [ + -73.510855, + 45.527335 + ], + [ + -73.510915, + 45.526403 + ], + [ + -73.510801, + 45.525535 + ], + [ + -73.510795, + 45.525489 + ], + [ + -73.510551, + 45.524579 + ], + [ + -73.511523, + 45.524887 + ], + [ + -73.511946, + 45.524236 + ], + [ + -73.512455, + 45.523454 + ], + [ + -73.51306, + 45.523637 + ], + [ + -73.513348, + 45.523723 + ], + [ + -73.513525, + 45.523724 + ], + [ + -73.513512, + 45.522963 + ], + [ + -73.513511, + 45.522924 + ], + [ + -73.513514, + 45.522659 + ], + [ + -73.513513, + 45.522529 + ], + [ + -73.513495, + 45.521155 + ], + [ + -73.513358, + 45.521154 + ], + [ + -73.513322, + 45.521154 + ], + [ + -73.513357, + 45.522351 + ], + [ + -73.51336, + 45.522467 + ], + [ + -73.513348, + 45.523723 + ], + [ + -73.513359, + 45.524687 + ], + [ + -73.513374, + 45.525191 + ], + [ + -73.513339, + 45.525305 + ], + [ + -73.513273, + 45.525347 + ], + [ + -73.513244, + 45.525365 + ], + [ + -73.513123, + 45.52537 + ], + [ + -73.512909, + 45.525325 + ], + [ + -73.511523, + 45.524887 + ], + [ + -73.510551, + 45.524579 + ], + [ + -73.510375, + 45.524523 + ], + [ + -73.510275, + 45.524491 + ], + [ + -73.51018, + 45.524458 + ], + [ + -73.510426, + 45.525377 + ], + [ + -73.510431, + 45.525413 + ], + [ + -73.510485, + 45.52576 + ], + [ + -73.510566, + 45.526288 + ], + [ + -73.510584, + 45.526294 + ], + [ + -73.510651, + 45.526316 + ], + [ + -73.510752, + 45.52635 + ], + [ + -73.510915, + 45.526403 + ], + [ + -73.510801, + 45.525535 + ], + [ + -73.510795, + 45.525489 + ], + [ + -73.510551, + 45.524579 + ], + [ + -73.510375, + 45.524523 + ], + [ + -73.510275, + 45.524491 + ], + [ + -73.51018, + 45.524458 + ], + [ + -73.509653, + 45.524285 + ], + [ + -73.50872, + 45.523979 + ], + [ + -73.508141, + 45.523971 + ], + [ + -73.507828, + 45.524421 + ], + [ + -73.507784, + 45.524484 + ], + [ + -73.504015, + 45.52321 + ], + [ + -73.503676, + 45.523095 + ], + [ + -73.502184, + 45.522591 + ], + [ + -73.501625, + 45.522402 + ], + [ + -73.501184, + 45.522253 + ], + [ + -73.501099, + 45.522224 + ], + [ + -73.500708, + 45.522863 + ], + [ + -73.50062, + 45.523008 + ], + [ + -73.500367, + 45.52342 + ], + [ + -73.500255, + 45.523604 + ], + [ + -73.500561, + 45.523716 + ], + [ + -73.500601, + 45.523754 + ], + [ + -73.500601, + 45.523821 + ], + [ + -73.500517, + 45.523949 + ], + [ + -73.500403, + 45.524121 + ], + [ + -73.500072, + 45.524631 + ], + [ + -73.500017, + 45.524714 + ], + [ + -73.499916, + 45.524664 + ], + [ + -73.499678, + 45.524544 + ], + [ + -73.496869, + 45.523566 + ], + [ + -73.49677, + 45.523532 + ], + [ + -73.496796, + 45.523506 + ], + [ + -73.496826, + 45.523476 + ], + [ + -73.497258, + 45.523041 + ], + [ + -73.497389, + 45.522847 + ], + [ + -73.497432, + 45.522704 + ], + [ + -73.49744, + 45.522428 + ], + [ + -73.497284, + 45.521694 + ], + [ + -73.497203, + 45.521307 + ], + [ + -73.497117, + 45.520892 + ], + [ + -73.497423, + 45.520994 + ], + [ + -73.498031, + 45.521197 + ], + [ + -73.49828, + 45.52128 + ], + [ + -73.500256, + 45.521939 + ], + [ + -73.500549, + 45.521509 + ], + [ + -73.501004, + 45.52084 + ], + [ + -73.501434, + 45.520208 + ], + [ + -73.501844, + 45.519605 + ], + [ + -73.502258, + 45.518996 + ], + [ + -73.505549, + 45.520069 + ], + [ + -73.508192, + 45.520901 + ], + [ + -73.508254, + 45.52092 + ], + [ + -73.508312, + 45.520939 + ], + [ + -73.508365, + 45.521033 + ], + [ + -73.508376, + 45.521052 + ], + [ + -73.50882, + 45.521847 + ], + [ + -73.507888, + 45.521547 + ], + [ + -73.507494, + 45.52215 + ], + [ + -73.50706, + 45.522813 + ], + [ + -73.504778, + 45.52207 + ], + [ + -73.504334, + 45.522732 + ], + [ + -73.504015, + 45.52321 + ], + [ + -73.503676, + 45.523095 + ], + [ + -73.502184, + 45.522591 + ], + [ + -73.501625, + 45.522402 + ], + [ + -73.501184, + 45.522253 + ], + [ + -73.501099, + 45.522224 + ], + [ + -73.500708, + 45.522863 + ], + [ + -73.50062, + 45.523008 + ], + [ + -73.500367, + 45.52342 + ], + [ + -73.500255, + 45.523604 + ], + [ + -73.500561, + 45.523716 + ], + [ + -73.500601, + 45.523754 + ], + [ + -73.500601, + 45.523821 + ], + [ + -73.500517, + 45.523949 + ], + [ + -73.500403, + 45.524121 + ], + [ + -73.500072, + 45.524631 + ], + [ + -73.500017, + 45.524714 + ], + [ + -73.499971, + 45.524784 + ], + [ + -73.499953, + 45.524811 + ], + [ + -73.499971, + 45.524784 + ], + [ + -73.500017, + 45.524714 + ], + [ + -73.500072, + 45.524631 + ], + [ + -73.500403, + 45.524121 + ], + [ + -73.500517, + 45.523949 + ], + [ + -73.500601, + 45.523821 + ], + [ + -73.500601, + 45.523754 + ], + [ + -73.500561, + 45.523716 + ], + [ + -73.500255, + 45.523604 + ], + [ + -73.500367, + 45.52342 + ], + [ + -73.50062, + 45.523008 + ], + [ + -73.500708, + 45.522863 + ], + [ + -73.501099, + 45.522224 + ], + [ + -73.501184, + 45.522253 + ], + [ + -73.501625, + 45.522402 + ], + [ + -73.502184, + 45.522591 + ], + [ + -73.503676, + 45.523095 + ], + [ + -73.504015, + 45.52321 + ], + [ + -73.507784, + 45.524484 + ], + [ + -73.507828, + 45.524421 + ], + [ + -73.508141, + 45.523971 + ], + [ + -73.50872, + 45.523979 + ], + [ + -73.509653, + 45.524285 + ], + [ + -73.51018, + 45.524458 + ], + [ + -73.510275, + 45.524491 + ], + [ + -73.510375, + 45.524523 + ], + [ + -73.510551, + 45.524579 + ], + [ + -73.510123, + 45.523669 + ], + [ + -73.510067, + 45.523566 + ], + [ + -73.509497, + 45.522526 + ], + [ + -73.509183, + 45.52195 + ], + [ + -73.50871, + 45.521082 + ], + [ + -73.508694, + 45.521054 + ], + [ + -73.508664, + 45.520999 + ], + [ + -73.508641, + 45.520956 + ] + ] + }, + "id": 422, + "properties": { + "id": "28f0c72b-b31a-450f-affb-ee32b550429a", + "data": { + "segments": [ + { + "distanceMeters": 833, + "travelTimeSeconds": 105 + }, + { + "distanceMeters": 1058, + "travelTimeSeconds": 161 + }, + { + "distanceMeters": 943, + "travelTimeSeconds": 141 + }, + { + "distanceMeters": 493, + "travelTimeSeconds": 83 + }, + { + "distanceMeters": 904, + "travelTimeSeconds": 130 + }, + { + "distanceMeters": 290, + "travelTimeSeconds": 52 + }, + { + "distanceMeters": 1472, + "travelTimeSeconds": 197 + }, + { + "distanceMeters": 1250, + "travelTimeSeconds": 186 + }, + { + "distanceMeters": 915, + "travelTimeSeconds": 127 + }, + { + "distanceMeters": 689, + "travelTimeSeconds": 113 + } + ], + "from_gtfs": false, + "nodeTypes": [ + "engine", + "engine", + "engine", + "engine", + "engine", + "engine", + "engine", + "engine", + "engine", + "engine", + "engine" + ], + "variables": { + "d_p": 8847, + "T_o_p": 1500, + "n_q_p": 11, + "n_s_p": 11, + "d_l_avg": 885, + "d_l_max": 1472, + "d_l_med": 910, + "d_l_min": 290 + }, + "waypoints": [ + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [] + ], + "routingMode": "bus_urban", + "routingEngine": "engine", + "routingFailed": false, + "waypointTypes": [ + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [] + ], + "dwellTimeSeconds": [ + 0, + 20, + 20, + 20, + 20, + 20, + 20, + 20, + 20, + 20, + 20 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "totalDistanceMeters": 8847, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 200, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 5.9, + "travelTimeWithoutDwellTimesSeconds": 1260, + "operatingTimeWithLayoverTimeSeconds": 1680, + "totalTravelTimeWithReturnBackSeconds": 1680, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 1500, + "operatingSpeedWithLayoverMetersPerSecond": 5.27, + "directRouteBetweenTerminalsDistanceMeters": 0, + "averageSpeedWithoutDwellTimesMetersPerSecond": 7.02, + "directRouteBetweenTerminalsTravelTimeSeconds": 0 + }, + "mode": "bus", + "name": null, + "color": "#fff600", + "nodes": [ + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "0abd44bc-ce59-4161-a0a7-b31176db0e89", + "9db6aff2-2175-49e9-984e-3eb4c8dd470c", + "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", + "1da8599d-038c-4242-b6d8-ab011dd7f5a1", + "d41672d0-e186-418e-b20f-1d82b60c3365", + "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "d41672d0-e186-418e-b20f-1d82b60c3365", + "1da8599d-038c-4242-b6d8-ab011dd7f5a1", + "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4" + ], + "stops": [], + "line_id": "f501d9ed-93db-4503-83dd-cf1890221267", + "segments": [ + 0, + 22, + 45, + 66, + 79, + 97, + 102, + 124, + 150, + 170 + ], + "direction": "inbound", + "is_frozen": false, + "created_at": "2023-01-25T18:36:22.639705+00:00", + "integer_id": 422, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.497734, + 45.517625 + ], + [ + -73.502224, + 45.518985 + ], + [ + -73.499242, + 45.519439 + ], + [ + -73.497116, + 45.519558 + ], + [ + -73.497734, + 45.517625 + ] + ] + }, + "id": 423, + "properties": { + "id": "b01f2354-b76c-411a-8ef6-1852afe88bb2", + "data": { + "segments": [ + { + "distanceMeters": 382, + "travelTimeSeconds": 47 + }, + { + "distanceMeters": 238, + "travelTimeSeconds": 37 + }, + { + "distanceMeters": 167, + "travelTimeSeconds": 31 + }, + { + "distanceMeters": 221, + "travelTimeSeconds": 36 + } + ], + "from_gtfs": false, + "nodeTypes": [ + "manual", + "manual", + "manual", + "manual", + "manual" + ], + "variables": { + "d_p": 1008, + "T_o_p": 300, + "n_q_p": 5, + "n_s_p": 5, + "d_l_avg": 252, + "d_l_max": 382, + "d_l_med": 230, + "d_l_min": 167 + }, + "waypoints": [ + [], + [], + [], + [], + [] + ], + "routingMode": "rail", + "routingEngine": "manual", + "routingFailed": false, + "waypointTypes": [ + [], + [], + [], + [], + [] + ], + "dwellTimeSeconds": [ + 0, + 30, + 30, + 30, + 30 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 250, + "defaultAcceleration": 0.7, + "defaultDeceleration": 0.7, + "returnBackGeography": null, + "totalDistanceMeters": 1008, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 120, + "defaultRunningSpeedKmH": 90, + "defaultDwellTimeSeconds": 30, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 3.36, + "travelTimeWithoutDwellTimesSeconds": 60, + "operatingTimeWithLayoverTimeSeconds": 480, + "totalTravelTimeWithReturnBackSeconds": 480, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 300, + "operatingSpeedWithLayoverMetersPerSecond": 2.1, + "directRouteBetweenTerminalsDistanceMeters": 0, + "averageSpeedWithoutDwellTimesMetersPerSecond": 16.8, + "directRouteBetweenTerminalsTravelTimeSeconds": 0 + }, + "mode": "rail", + "name": "1s", + "color": "#7cc2ff", + "nodes": [ + "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "54cba115-6a75-4b65-8019-b2b5de7a3947", + "98279ff5-957b-4eeb-9ad3-2a9d5fb6ef98", + "161f72ac-926f-49be-80a4-a3cb10884d02", + "d98b2f35-c33e-4d89-853d-ac91e28ea62b" + ], + "stops": [], + "line_id": "5908da12-15da-4997-b245-9ffec4a2fc0c", + "segments": [ + 0, + 1, + 2, + 3 + ], + "direction": "loop", + "is_frozen": false, + "created_at": "2023-01-30T15:10:31.171352+00:00", + "integer_id": 423, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -73.493837, + 45.52251 + ], + [ + -73.493906, + 45.522534 + ], + [ + -73.496552, + 45.523456 + ], + [ + -73.496676, + 45.523499 + ], + [ + -73.49677, + 45.523532 + ], + [ + -73.496702, + 45.523584 + ], + [ + -73.496461, + 45.523767 + ], + [ + -73.495902, + 45.523951 + ], + [ + -73.495859, + 45.523964 + ], + [ + -73.495545, + 45.524055 + ], + [ + -73.495401, + 45.524007 + ], + [ + -73.495332, + 45.523984 + ], + [ + -73.494852, + 45.523813 + ], + [ + -73.494815, + 45.523866 + ], + [ + -73.494764, + 45.523939 + ], + [ + -73.494373, + 45.523804 + ], + [ + -73.494303, + 45.523908 + ], + [ + -73.494705, + 45.524035 + ], + [ + -73.494763, + 45.524053 + ], + [ + -73.494764, + 45.523939 + ], + [ + -73.494815, + 45.523866 + ], + [ + -73.494852, + 45.523813 + ], + [ + -73.493732, + 45.523422 + ], + [ + -73.493513, + 45.523346 + ], + [ + -73.493377, + 45.523298 + ], + [ + -73.493288, + 45.523271 + ], + [ + -73.493302, + 45.523241 + ], + [ + -73.493349, + 45.523178 + ], + [ + -73.493802, + 45.522558 + ], + [ + -73.493836, + 45.522511 + ] + ] + }, + "id": 424, + "properties": { + "id": "75653bb1-4560-4d9c-9277-a64b4459615a", + "data": { + "segments": [ + { + "distanceMeters": 238, + "travelTimeSeconds": 33 + }, + { + "distanceMeters": 291, + "travelTimeSeconds": 77 + }, + { + "distanceMeters": 265, + "travelTimeSeconds": 58 + } + ], + "from_gtfs": false, + "nodeTypes": [ + "engine", + "engine", + "engine", + "engine" + ], + "variables": { + "d_p": 794, + "T_o_p": 240, + "n_q_p": 4, + "n_s_p": 4, + "d_l_avg": 265, + "d_l_max": 291, + "d_l_med": 265, + "d_l_min": 238 + }, + "waypoints": [ + [], + [], + [], + [] + ], + "routingMode": "bus_urban", + "routingEngine": "engine", + "routingFailed": false, + "waypointTypes": [ + [], + [], + [], + [] + ], + "dwellTimeSeconds": [ + 0, + 20, + 20, + 20 + ], + "defaultRoutingMode": "bus_urban", + "layoverTimeSeconds": 180, + "maxRunningSpeedKmH": 120, + "defaultAcceleration": 1, + "defaultDeceleration": 1, + "returnBackGeography": null, + "totalDistanceMeters": 794, + "defaultRoutingEngine": "engine", + "totalDwellTimeSeconds": 60, + "defaultRunningSpeedKmH": 40, + "defaultDwellTimeSeconds": 20, + "defaultMinLayoverTimeSeconds": 180, + "operatingSpeedMetersPerSecond": 3.31, + "travelTimeWithoutDwellTimesSeconds": 180, + "operatingTimeWithLayoverTimeSeconds": 420, + "totalTravelTimeWithReturnBackSeconds": 420, + "defaultLayoverRatioOverTotalTravelTime": 0.1, + "operatingTimeWithoutLayoverTimeSeconds": 240, + "operatingSpeedWithLayoverMetersPerSecond": 1.89, + "directRouteBetweenTerminalsDistanceMeters": 0, + "averageSpeedWithoutDwellTimesMetersPerSecond": 4.41, + "directRouteBetweenTerminalsTravelTimeSeconds": 0 + }, + "mode": "bus", + "name": null, + "color": "#fff600", + "nodes": [ + "a76bf032-5164-44ff-92fb-30023319517e", + "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "afda06bb-9f3e-43a6-883f-96226fa884c5", + "a76bf032-5164-44ff-92fb-30023319517e" + ], + "stops": [], + "line_id": "f501d9ed-93db-4503-83dd-cf1890221267", + "segments": [ + 0, + 2, + 17 + ], + "direction": "outbound", + "is_frozen": false, + "created_at": "2023-01-30T15:24:09.686624+00:00", + "integer_id": 424, + "is_enabled": true, + "updated_at": null, + "description": null, + "internal_id": null + } + } + ] +} \ No newline at end of file diff --git a/deck-gl-pow/index.html b/deck-gl-pow/index.html new file mode 100644 index 00000000..55e82f34 --- /dev/null +++ b/deck-gl-pow/index.html @@ -0,0 +1,28 @@ + + + + + maplibre-custom-layer-example + + + + +
+ + + + diff --git a/deck-gl-pow/nodes.geojson b/deck-gl-pow/nodes.geojson new file mode 100644 index 00000000..db631f35 --- /dev/null +++ b/deck-gl-pow/nodes.geojson @@ -0,0 +1,229198 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.605929, + 45.534479 + ] + }, + "id": 1, + "properties": { + "id": "96e58991-cfaa-4ae6-ba92-2c0e119b3a55", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7284462392411 + }, + "name": "n1", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.605929472, + 45.534479192 + ] + }, + "is_frozen": false, + "integer_id": 1, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.58744, + 45.528986 + ] + }, + "id": 2, + "properties": { + "id": "4c62b506-5036-4a10-8df2-3c468441896a", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6355018444641 + }, + "name": "n2", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.58744002, + 45.528986407 + ] + }, + "is_frozen": false, + "integer_id": 2, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.677646, + 45.594585 + ] + }, + "id": 3, + "properties": { + "id": "dfd47edd-1382-467e-befb-226624f23d4e", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7472728724861 + }, + "name": "n4", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.677645665, + 45.594585316 + ] + }, + "is_frozen": false, + "integer_id": 3, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.679747, + 45.590962 + ] + }, + "id": 4, + "properties": { + "id": "91dbd067-8089-4f8d-8daf-c1e5e6f13727", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6857672196336 + }, + "name": "n3", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.6797471, + 45.59096216 + ] + }, + "is_frozen": false, + "integer_id": 4, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.682889, + 45.593656 + ] + }, + "id": 5, + "properties": { + "id": "ad415560-2e75-47b0-a52e-3f9dec9a127d", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7314906884648 + }, + "name": "n5", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.682889027, + 45.59365569 + ] + }, + "is_frozen": false, + "integer_id": 5, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.508662, + 45.520951 + ] + }, + "id": 6, + "properties": { + "id": "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4995817398526 + }, + "name": "n10", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.508662, + 45.520951 + ] + }, + "is_frozen": false, + "integer_id": 6, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.510526, + 45.526381 + ] + }, + "id": 7, + "properties": { + "id": "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5914246930248 + }, + "name": "n11", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.510526, + 45.526381 + ] + }, + "is_frozen": false, + "integer_id": 7, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.500061, + 45.524846 + ] + }, + "id": 8, + "properties": { + "id": "d41672d0-e186-418e-b20f-1d82b60c3365", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5654590578063 + }, + "name": "n12", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.500061, + 45.524846 + ] + }, + "is_frozen": false, + "integer_id": 8, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513362, + 45.520783 + ] + }, + "id": 9, + "properties": { + "id": "9db6aff2-2175-49e9-984e-3eb4c8dd470c", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4967406089457 + }, + "name": "n13", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.513362, + 45.520783 + ] + }, + "is_frozen": false, + "integer_id": 9, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.51055, + 45.528304 + ] + }, + "id": 10, + "properties": { + "id": "0abd44bc-ce59-4161-a0a7-b31176db0e89", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.623956592404 + }, + "name": "n14", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.51055, + 45.528304 + ] + }, + "is_frozen": false, + "integer_id": 10, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.496589, + 45.523404 + ] + }, + "id": 11, + "properties": { + "id": "13013916-32c5-4da2-8c6f-a9c582a4c0a5", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.541068497801 + }, + "name": "n15", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.496589, + 45.523404 + ] + }, + "is_frozen": false, + "integer_id": 11, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.507861, + 45.524432 + ] + }, + "id": 12, + "properties": { + "id": "1da8599d-038c-4242-b6d8-ab011dd7f5a1", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5584563079408 + }, + "name": "n16", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507861, + 45.524432 + ] + }, + "is_frozen": false, + "integer_id": 12, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455378, + 45.543565 + ] + }, + "id": 13, + "properties": { + "id": "82f56357-1445-4183-b302-5e7eee64e769", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8822550459716 + }, + "name": "n1", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455377504, + 45.543565423 + ] + }, + "is_frozen": false, + "integer_id": 13, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.499242, + 45.519439 + ] + }, + "id": 14, + "properties": { + "id": "98279ff5-957b-4eeb-9ad3-2a9d5fb6ef98", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4740124669719 + }, + "name": "n20", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.499242, + 45.519439 + ] + }, + "is_frozen": false, + "integer_id": 14, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.509867, + 45.517734 + ] + }, + "id": 15, + "properties": { + "id": "e66fb997-f83d-42a0-a232-e5b0a94a0caf", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4451818347184 + }, + "name": "n21", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.509867, + 45.517734 + ] + }, + "is_frozen": false, + "integer_id": 15, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.505308, + 45.524763 + ] + }, + "id": 16, + "properties": { + "id": "e657782a-839d-417e-8b23-9ba7a22fe0b9", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.56405511262 + }, + "name": "n30", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.505308, + 45.524763 + ] + }, + "is_frozen": false, + "integer_id": 16, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.506868, + 45.522376 + ] + }, + "id": 17, + "properties": { + "id": "c64e94bb-98df-4524-930a-135a6f4b4bff", + "code": null, + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.523681629408 + }, + "name": null, + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.506868, + 45.522376 + ] + }, + "is_frozen": false, + "integer_id": 17, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.501812, + 45.523633 + ] + }, + "id": 18, + "properties": { + "id": "0e5d2dfa-ebda-4bee-8d5e-46436cbea299", + "code": "n40", + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5449417708653 + }, + "name": "n40", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.501812, + 45.523633 + ] + }, + "is_frozen": false, + "integer_id": 18, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.504673, + 45.52101 + ] + }, + "id": 19, + "properties": { + "id": "c72f260f-0d66-46a0-aa47-d7bdf5b8c3c5", + "code": "n50", + "data": { + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5005729960499 + }, + "name": "n50", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.504672661, + 45.521009614 + ] + }, + "is_frozen": false, + "integer_id": 19, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.52125, + 45.52405 + ] + }, + "id": 20, + "properties": { + "id": "d1011845-6c20-48e2-a9a9-e727cee5b959", + "code": "39999", + "data": { + "stops": [ + { + "id": "9999", + "code": "39999", + "data": { + "gtfs": { + "stop_id": "9999", + "stop_code": "39999", + "stop_name": "TERMINUS LONGUEUIL", + "location_type": 1, + "parent_station": "" + } + }, + "name": "TERMINUS LONGUEUIL", + "geography": { + "type": "Point", + "coordinates": [ + -73.52141, + 45.52408 + ] + } + }, + { + "id": "1001", + "code": "31001", + "data": { + "gtfs": { + "stop_id": "1001", + "stop_code": "31001", + "stop_name": "TERMINUS LONGUEUIL", + "location_type": 0, + "parent_station": "9999" + } + }, + "name": "TERMINUS LONGUEUIL", + "geography": { + "type": "Point", + "coordinates": [ + -73.5213985554661, + 45.5242766150855 + ] + } + }, + { + "id": "1002", + "code": "31002", + "data": { + "gtfs": { + "stop_id": "1002", + "stop_code": "31002", + "stop_name": "TERMINUS LONGUEUIL", + "location_type": 0, + "parent_station": "9999" + } + }, + "name": "TERMINUS LONGUEUIL", + "geography": { + "type": "Point", + "coordinates": [ + -73.521412111409, + 45.5238158271292 + ] + } + }, + { + "id": "4415", + "code": "34415", + "data": { + "gtfs": { + "stop_id": "4415", + "stop_code": "34415", + "stop_name": "TERMINUS LONGUEUIL", + "location_type": 0, + "parent_station": "9999" + } + }, + "name": "TERMINUS LONGUEUIL", + "geography": { + "type": "Point", + "coordinates": [ + -73.5210871623634, + 45.5242975879659 + ] + } + }, + { + "id": "4416", + "code": "34416", + "data": { + "gtfs": { + "stop_id": "4416", + "stop_code": "34416", + "stop_name": "TERMINUS LONGUEUIL", + "location_type": 0, + "parent_station": "9999" + } + }, + "name": "TERMINUS LONGUEUIL", + "geography": { + "type": "Point", + "coordinates": [ + -73.5211468541076, + 45.5238027559785 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5519978781872 + }, + "name": "TERMINUS LONGUEUIL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.521249637, + 45.524050172 + ] + }, + "is_frozen": false, + "integer_id": 20, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.51391, + 45.502191 + ] + }, + "id": 21, + "properties": { + "id": "a230c1b0-ee13-40c1-8d3f-12ae20006cc6", + "code": "31003", + "data": { + "stops": [ + { + "id": "1003", + "code": "31003", + "data": { + "gtfs": { + "stop_id": "1003", + "stop_code": "31003", + "stop_name": "boul. Desaulniers et PARC GORDON", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et PARC GORDON", + "geography": { + "type": "Point", + "coordinates": [ + -73.5137868128974, + 45.5021782086122 + ] + } + }, + { + "id": "1027", + "code": "31027", + "data": { + "gtfs": { + "stop_id": "1027", + "stop_code": "31027", + "stop_name": "boul. Desaulniers et IGA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et IGA", + "geography": { + "type": "Point", + "coordinates": [ + -73.5140325129902, + 45.5022030755544 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1824713944492 + }, + "name": "boul. Desaulniers et PARC GORDON", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.513909663, + 45.502190642 + ] + }, + "is_frozen": false, + "integer_id": 21, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.512317, + 45.504461 + ] + }, + "id": 22, + "properties": { + "id": "1232f389-204f-48ac-a95f-0f1b3e5706b2", + "code": "31004", + "data": { + "stops": [ + { + "id": "1004", + "code": "31004", + "data": { + "gtfs": { + "stop_id": "1004", + "stop_code": "31004", + "stop_name": "boul. Desaulniers et av. Birch", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et av. Birch", + "geography": { + "type": "Point", + "coordinates": [ + -73.5122733634264, + 45.5043342232894 + ] + } + }, + { + "id": "1025", + "code": "31025", + "data": { + "gtfs": { + "stop_id": "1025", + "stop_code": "31025", + "stop_name": "boul. Desaulniers et av. Birch", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et av. Birch", + "geography": { + "type": "Point", + "coordinates": [ + -73.5123610093457, + 45.5045871083594 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2208254318991 + }, + "name": "boul. Desaulniers et av. Birch", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.512317186, + 45.504460666 + ] + }, + "is_frozen": false, + "integer_id": 22, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.51139, + 45.505669 + ] + }, + "id": 23, + "properties": { + "id": "9bf48d6d-7a0b-4fbe-9125-1eef756e334f", + "code": "31005", + "data": { + "stops": [ + { + "id": "1005", + "code": "31005", + "data": { + "gtfs": { + "stop_id": "1005", + "stop_code": "31005", + "stop_name": "boul. Desaulniers et av. Oak", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et av. Oak", + "geography": { + "type": "Point", + "coordinates": [ + -73.5113658333393, + 45.5055005520629 + ] + } + }, + { + "id": "1023", + "code": "31023", + "data": { + "gtfs": { + "stop_id": "1023", + "stop_code": "31023", + "stop_name": "boul. Desaulniers et av. Oak", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et av. Oak", + "geography": { + "type": "Point", + "coordinates": [ + -73.5114138906968, + 45.5058379882501 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.241247722685 + }, + "name": "boul. Desaulniers et av. Oak", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.511389862, + 45.50566927 + ] + }, + "is_frozen": false, + "integer_id": 23, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.510497, + 45.506877 + ] + }, + "id": 24, + "properties": { + "id": "36a7184c-7248-4c15-a0a7-68c04bd48cc7", + "code": "31006", + "data": { + "stops": [ + { + "id": "1006", + "code": "31006", + "data": { + "gtfs": { + "stop_id": "1006", + "stop_code": "31006", + "stop_name": "boul. Desaulniers et av. Walnut", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et av. Walnut", + "geography": { + "type": "Point", + "coordinates": [ + -73.5104511506177, + 45.5067370293582 + ] + } + }, + { + "id": "1024", + "code": "31024", + "data": { + "gtfs": { + "stop_id": "1024", + "stop_code": "31024", + "stop_name": "boul. Desaulniers et av. Walnut", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et av. Walnut", + "geography": { + "type": "Point", + "coordinates": [ + -73.5105427029211, + 45.5070168656388 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2616556482843 + }, + "name": "boul. Desaulniers et av. Walnut", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.510496927, + 45.506876947 + ] + }, + "is_frozen": false, + "integer_id": 24, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.508644, + 45.509314 + ] + }, + "id": 25, + "properties": { + "id": "bb609a9b-192c-4f8e-9177-9dbd5b0d51a5", + "code": "31007", + "data": { + "stops": [ + { + "id": "1007", + "code": "31007", + "data": { + "gtfs": { + "stop_id": "1007", + "stop_code": "31007", + "stop_name": "boul. Desaulniers et av. de Dulwich", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et av. de Dulwich", + "geography": { + "type": "Point", + "coordinates": [ + -73.5086038184187, + 45.5091856478922 + ] + } + }, + { + "id": "1021", + "code": "31021", + "data": { + "gtfs": { + "stop_id": "1021", + "stop_code": "31021", + "stop_name": "boul. Desaulniers et av. de Dulwich", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et av. de Dulwich", + "geography": { + "type": "Point", + "coordinates": [ + -73.5086846448902, + 45.5094420967554 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.302839970217 + }, + "name": "boul. Desaulniers et av. de Dulwich", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.508644232, + 45.509313872 + ] + }, + "is_frozen": false, + "integer_id": 25, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.50766, + 45.510637 + ] + }, + "id": 26, + "properties": { + "id": "7009c13e-76ca-4283-afe5-33492dbd6d10", + "code": "31008", + "data": { + "stops": [ + { + "id": "1008", + "code": "31008", + "data": { + "gtfs": { + "stop_id": "1008", + "stop_code": "31008", + "stop_name": "boul. Desaulniers et av. de Putney", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et av. de Putney", + "geography": { + "type": "Point", + "coordinates": [ + -73.5076173546379, + 45.5104994871794 + ] + } + }, + { + "id": "1020", + "code": "31020", + "data": { + "gtfs": { + "stop_id": "1020", + "stop_code": "31020", + "stop_name": "boul. Desaulniers et av. de Putney", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et av. de Putney", + "geography": { + "type": "Point", + "coordinates": [ + -73.5077029803291, + 45.5107739331939 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3251983035296 + }, + "name": "boul. Desaulniers et av. de Putney", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507660167, + 45.51063671 + ] + }, + "is_frozen": false, + "integer_id": 26, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.512686, + 45.514989 + ] + }, + "id": 27, + "properties": { + "id": "2a197d72-1b4b-4077-a350-4c8656ad7bb1", + "code": "31010", + "data": { + "stops": [ + { + "id": "1010", + "code": "31010", + "data": { + "gtfs": { + "stop_id": "1010", + "stop_code": "31010", + "stop_name": "ch. Tiffin et ECOLE SECONDAIRE NOTRE-DAME-DE-LOURDES", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et ECOLE SECONDAIRE NOTRE-DAME-DE-LOURDES", + "geography": { + "type": "Point", + "coordinates": [ + -73.5126862219778, + 45.5149888066266 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3987675400043 + }, + "name": "ch. Tiffin et ECOLE SECONDAIRE NOTRE-DAME-DE-LOURDES", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.512686222, + 45.514988807 + ] + }, + "is_frozen": false, + "integer_id": 27, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.514252, + 45.515391 + ] + }, + "id": 28, + "properties": { + "id": "74539ff2-4125-4083-be0c-4345bf87f6fa", + "code": "31011", + "data": { + "stops": [ + { + "id": "1011", + "code": "31011", + "data": { + "gtfs": { + "stop_id": "1011", + "stop_code": "31011", + "stop_name": "ch. Tiffin et de Wagram", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et de Wagram", + "geography": { + "type": "Point", + "coordinates": [ + -73.5143913074405, + 45.5155708341197 + ] + } + }, + { + "id": "1016", + "code": "31016", + "data": { + "gtfs": { + "stop_id": "1016", + "stop_code": "31016", + "stop_name": "ch. Tiffin et Robitaille", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et Robitaille", + "geography": { + "type": "Point", + "coordinates": [ + -73.5147627012842, + 45.5155424273363 + ] + } + }, + { + "id": "3480", + "code": "33480", + "data": { + "gtfs": { + "stop_id": "3480", + "stop_code": "33480", + "stop_name": "ch. Tiffin et ECOLE SECONDAIRE NOTRE-DAME-DE-LOURDES", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et ECOLE SECONDAIRE NOTRE-DAME-DE-LOURDES", + "geography": { + "type": "Point", + "coordinates": [ + -73.5137414893716, + 45.5153476671695 + ] + } + }, + { + "id": "4296", + "code": "34296", + "data": { + "gtfs": { + "stop_id": "4296", + "stop_code": "34296", + "stop_name": "ch. Tiffin et ECOLE SECONDAIRE NOTRE-DAME-DE-LOURDES", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et ECOLE SECONDAIRE NOTRE-DAME-DE-LOURDES", + "geography": { + "type": "Point", + "coordinates": [ + -73.5138015618208, + 45.5152115904569 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4055707744807 + }, + "name": "ch. Tiffin et de Wagram", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.514252095, + 45.515391212 + ] + }, + "is_frozen": false, + "integer_id": 28, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.517477, + 45.51657 + ] + }, + "id": 29, + "properties": { + "id": "f250cba5-329e-4403-912d-778f924ce25e", + "code": "31012", + "data": { + "stops": [ + { + "id": "1012", + "code": "31012", + "data": { + "gtfs": { + "stop_id": "1012", + "stop_code": "31012", + "stop_name": "ch. Tiffin et de la Providence", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et de la Providence", + "geography": { + "type": "Point", + "coordinates": [ + -73.5171758801222, + 45.5165408315723 + ] + } + }, + { + "id": "1015", + "code": "31015", + "data": { + "gtfs": { + "stop_id": "1015", + "stop_code": "31015", + "stop_name": "ch. Tiffin et de la Providence", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et de la Providence", + "geography": { + "type": "Point", + "coordinates": [ + -73.5175210959979, + 45.516528688882 + ] + } + }, + { + "id": "4949", + "code": "34949", + "data": { + "gtfs": { + "stop_id": "4949", + "stop_code": "34949", + "stop_name": "ch. Tiffin et de la Providence", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et de la Providence", + "geography": { + "type": "Point", + "coordinates": [ + -73.5177775684209, + 45.5166107219435 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4254957209657 + }, + "name": "ch. Tiffin et de la Providence", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.517476724, + 45.516569705 + ] + }, + "is_frozen": false, + "integer_id": 29, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.511627, + 45.514481 + ] + }, + "id": 30, + "properties": { + "id": "f1be4054-f28c-45a4-bc0b-58b82e1e6e83", + "code": "31017", + "data": { + "stops": [ + { + "id": "1017", + "code": "31017", + "data": { + "gtfs": { + "stop_id": "1017", + "stop_code": "31017", + "stop_name": "ch. Tiffin et Patenaude", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et Patenaude", + "geography": { + "type": "Point", + "coordinates": [ + -73.5116265702011, + 45.514480772782 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3901787015534 + }, + "name": "ch. Tiffin et Patenaude", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.51162657, + 45.514480773 + ] + }, + "is_frozen": false, + "integer_id": 30, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.508719, + 45.513562 + ] + }, + "id": 31, + "properties": { + "id": "969092dd-fcfd-493a-be55-d0467c757fb1", + "code": "31018", + "data": { + "stops": [ + { + "id": "1018", + "code": "31018", + "data": { + "gtfs": { + "stop_id": "1018", + "stop_code": "31018", + "stop_name": "ch. Tiffin et Logan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et Logan", + "geography": { + "type": "Point", + "coordinates": [ + -73.5089071925685, + 45.5135597299863 + ] + } + }, + { + "id": "4088", + "code": "34088", + "data": { + "gtfs": { + "stop_id": "4088", + "stop_code": "34088", + "stop_name": "ch. Tiffin et Logan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et Logan", + "geography": { + "type": "Point", + "coordinates": [ + -73.5085312921727, + 45.5135633832395 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3746389917711 + }, + "name": "ch. Tiffin et Logan", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.508719242, + 45.513561557 + ] + }, + "is_frozen": false, + "integer_id": 31, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.506396, + 45.512631 + ] + }, + "id": 32, + "properties": { + "id": "2227a38f-9c32-4890-9719-eef7445fa1fc", + "code": "31019", + "data": { + "stops": [ + { + "id": "1019", + "code": "31019", + "data": { + "gtfs": { + "stop_id": "1019", + "stop_code": "31019", + "stop_name": "ch. Tiffin et boul. Desaulniers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et boul. Desaulniers", + "geography": { + "type": "Point", + "coordinates": [ + -73.5067837359891, + 45.512726647859 + ] + } + }, + { + "id": "1102", + "code": "31102", + "data": { + "gtfs": { + "stop_id": "1102", + "stop_code": "31102", + "stop_name": "ch. Tiffin et boul. Desaulniers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et boul. Desaulniers", + "geography": { + "type": "Point", + "coordinates": [ + -73.506009257491, + 45.5126004362648 + ] + } + }, + { + "id": "3541", + "code": "33541", + "data": { + "gtfs": { + "stop_id": "3541", + "stop_code": "33541", + "stop_name": "boul. Desaulniers et ch. Tiffin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et ch. Tiffin", + "geography": { + "type": "Point", + "coordinates": [ + -73.5061875311206, + 45.5124393029235 + ] + } + }, + { + "id": "5809", + "code": "30578", + "data": { + "gtfs": { + "stop_id": "5809", + "stop_code": "30578", + "stop_name": "boul. Desaulniers et ch. Tiffin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et ch. Tiffin", + "geography": { + "type": "Point", + "coordinates": [ + -73.5061277720678, + 45.5128218539657 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3589011908292 + }, + "name": "ch. Tiffin et boul. Desaulniers", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.506396497, + 45.512630578 + ] + }, + "is_frozen": false, + "integer_id": 32, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.509578, + 45.508089 + ] + }, + "id": 33, + "properties": { + "id": "ed39b486-0ae1-40e4-a1bb-022292e07d90", + "code": "31022", + "data": { + "stops": [ + { + "id": "1022", + "code": "31022", + "data": { + "gtfs": { + "stop_id": "1022", + "stop_code": "31022", + "stop_name": "boul. Desaulniers et av. de Merton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et av. de Merton", + "geography": { + "type": "Point", + "coordinates": [ + -73.5096028899567, + 45.5082291764656 + ] + } + }, + { + "id": "3404", + "code": "33404", + "data": { + "gtfs": { + "stop_id": "3404", + "stop_code": "33404", + "stop_name": "boul. Desaulniers et av. de Merton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et av. de Merton", + "geography": { + "type": "Point", + "coordinates": [ + -73.5095528867331, + 45.5079496203745 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2821455533407 + }, + "name": "boul. Desaulniers et av. de Merton", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.509577888, + 45.508089398 + ] + }, + "is_frozen": false, + "integer_id": 33, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513359, + 45.503232 + ] + }, + "id": 34, + "properties": { + "id": "23cc64ae-3ce4-46c2-8d0a-9082f50074d0", + "code": "31026", + "data": { + "stops": [ + { + "id": "1026", + "code": "31026", + "data": { + "gtfs": { + "stop_id": "1026", + "stop_code": "31026", + "stop_name": "boul. Desaulniers et av. Notre-Dame", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et av. Notre-Dame", + "geography": { + "type": "Point", + "coordinates": [ + -73.5133594577219, + 45.5032319009505 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2000638050334 + }, + "name": "boul. Desaulniers et av. Notre-Dame", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.513359458, + 45.503231901 + ] + }, + "is_frozen": false, + "integer_id": 34, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.509944, + 45.500698 + ] + }, + "id": 35, + "properties": { + "id": "df5b9592-81e3-4b2c-8a30-7f3a9144671b", + "code": "31029", + "data": { + "stops": [ + { + "id": "1029", + "code": "31029", + "data": { + "gtfs": { + "stop_id": "1029", + "stop_code": "31029", + "stop_name": "av. Victoria et de Woodstock", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et de Woodstock", + "geography": { + "type": "Point", + "coordinates": [ + -73.5099442602883, + 45.5006983025662 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1572595224388 + }, + "name": "av. Victoria et de Woodstock", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.50994426, + 45.500698303 + ] + }, + "is_frozen": false, + "integer_id": 35, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.507114, + 45.499512 + ] + }, + "id": 36, + "properties": { + "id": "d24bea6e-da8d-4183-8a5f-0e99be199484", + "code": "31030", + "data": { + "stops": [ + { + "id": "1030", + "code": "31030", + "data": { + "gtfs": { + "stop_id": "1030", + "stop_code": "31030", + "stop_name": "av. Victoria et GARE SAINT-LAMBERT", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et GARE SAINT-LAMBERT", + "geography": { + "type": "Point", + "coordinates": [ + -73.5071144393821, + 45.4995124400556 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1372267300094 + }, + "name": "av. Victoria et GARE SAINT-LAMBERT", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507114439, + 45.49951244 + ] + }, + "is_frozen": false, + "integer_id": 36, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.504843, + 45.498418 + ] + }, + "id": 37, + "properties": { + "id": "6557d1fe-6975-49e2-871c-ab07d42ea35b", + "code": "31031", + "data": { + "stops": [ + { + "id": "1031", + "code": "31031", + "data": { + "gtfs": { + "stop_id": "1031", + "stop_code": "31031", + "stop_name": "av. Victoria et Cartier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et Cartier", + "geography": { + "type": "Point", + "coordinates": [ + -73.504995371936, + 45.498445156919 + ] + } + }, + { + "id": "1078", + "code": "31078", + "data": { + "gtfs": { + "stop_id": "1078", + "stop_code": "31078", + "stop_name": "av. Victoria et Cartier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et Cartier", + "geography": { + "type": "Point", + "coordinates": [ + -73.5046913921009, + 45.4983907166626 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1187383931043 + }, + "name": "av. Victoria et Cartier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.504843382, + 45.498417937 + ] + }, + "is_frozen": false, + "integer_id": 37, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.502441, + 45.49669 + ] + }, + "id": 38, + "properties": { + "id": "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", + "code": "31032", + "data": { + "stops": [ + { + "id": "1032", + "code": "31032", + "data": { + "gtfs": { + "stop_id": "1032", + "stop_code": "31032", + "stop_name": "av. Victoria et av. Edison", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et av. Edison", + "geography": { + "type": "Point", + "coordinates": [ + -73.5026845796389, + 45.4967861033443 + ] + } + }, + { + "id": "1077", + "code": "31077", + "data": { + "gtfs": { + "stop_id": "1077", + "stop_code": "31077", + "stop_name": "av. Victoria et Upper Edison", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et Upper Edison", + "geography": { + "type": "Point", + "coordinates": [ + -73.5021982751104, + 45.4965948554886 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0895603533686 + }, + "name": "av. Victoria et av. Edison", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.502441427, + 45.496690479 + ] + }, + "is_frozen": false, + "integer_id": 38, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.501367, + 45.495931 + ] + }, + "id": 39, + "properties": { + "id": "1cea6199-481e-43b0-8d4a-8c7593ff485f", + "code": "31033", + "data": { + "stops": [ + { + "id": "1033", + "code": "31033", + "data": { + "gtfs": { + "stop_id": "1033", + "stop_code": "31033", + "stop_name": "av. Victoria et av. Hickson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et av. Hickson", + "geography": { + "type": "Point", + "coordinates": [ + -73.5015073917252, + 45.495941544786 + ] + } + }, + { + "id": "1076", + "code": "31076", + "data": { + "gtfs": { + "stop_id": "1076", + "stop_code": "31076", + "stop_name": "av. Victoria et Reid", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et Reid", + "geography": { + "type": "Point", + "coordinates": [ + -73.5012266330451, + 45.4959199032947 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0767283715932 + }, + "name": "av. Victoria et av. Hickson", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.501367012, + 45.495930724 + ] + }, + "is_frozen": false, + "integer_id": 39, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.500548, + 45.495299 + ] + }, + "id": 40, + "properties": { + "id": "467e03f3-2556-4d22-ae48-618a76e6b0b4", + "code": "31034", + "data": { + "stops": [ + { + "id": "1034", + "code": "31034", + "data": { + "gtfs": { + "stop_id": "1034", + "stop_code": "31034", + "stop_name": "av. Victoria et boul. Sir-Wilfrid-Laurier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et boul. Sir-Wilfrid-Laurier", + "geography": { + "type": "Point", + "coordinates": [ + -73.5005484772538, + 45.495299250924 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0660634162408 + }, + "name": "av. Victoria et boul. Sir-Wilfrid-Laurier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.500548477, + 45.495299251 + ] + }, + "is_frozen": false, + "integer_id": 40, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.498308, + 45.493637 + ] + }, + "id": 41, + "properties": { + "id": "ea9801c9-a110-4900-bcae-f1b3a40050e8", + "code": "31035", + "data": { + "stops": [ + { + "id": "1035", + "code": "31035", + "data": { + "gtfs": { + "stop_id": "1035", + "stop_code": "31035", + "stop_name": "av. Victoria et Imelda-Millette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et Imelda-Millette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4983081165907, + 45.4936370516674 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0379922122809 + }, + "name": "av. Victoria et Imelda-Millette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.498308117, + 45.493637052 + ] + }, + "is_frozen": false, + "integer_id": 41, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.49641, + 45.492373 + ] + }, + "id": 42, + "properties": { + "id": "0b6032e7-414a-429f-9df2-796599b947c2", + "code": "31036", + "data": { + "stops": [ + { + "id": "1036", + "code": "31036", + "data": { + "gtfs": { + "stop_id": "1036", + "stop_code": "31036", + "stop_name": "av. Victoria et King-Edward", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et King-Edward", + "geography": { + "type": "Point", + "coordinates": [ + -73.4965351893447, + 45.492345350392 + ] + } + }, + { + "id": "3291", + "code": "33291", + "data": { + "gtfs": { + "stop_id": "3291", + "stop_code": "33291", + "stop_name": "av. Victoria et King-Edward", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et King-Edward", + "geography": { + "type": "Point", + "coordinates": [ + -73.4962851538464, + 45.492400574103 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0166459151058 + }, + "name": "av. Victoria et King-Edward", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.496410172, + 45.492372962 + ] + }, + "is_frozen": false, + "integer_id": 42, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494232, + 45.490836 + ] + }, + "id": 43, + "properties": { + "id": "88d8365e-2528-4422-a483-bb2efd9de617", + "code": "31037", + "data": { + "stops": [ + { + "id": "1037", + "code": "31037", + "data": { + "gtfs": { + "stop_id": "1037", + "stop_code": "31037", + "stop_name": "av. Victoria et ch. Saint-Charles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et ch. Saint-Charles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4942927773624, + 45.4907615334407 + ] + } + }, + { + "id": "3290", + "code": "33290", + "data": { + "gtfs": { + "stop_id": "3290", + "stop_code": "33290", + "stop_name": "av. Victoria et ch. Saint-Charles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et ch. Saint-Charles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4941721040153, + 45.4909096706228 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9906869070282 + }, + "name": "av. Victoria et ch. Saint-Charles", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494232441, + 45.490835602 + ] + }, + "is_frozen": false, + "integer_id": 43, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491855, + 45.489025 + ] + }, + "id": 44, + "properties": { + "id": "196681e4-c9e5-4a79-a3b1-ce225227e0aa", + "code": "31038", + "data": { + "stops": [ + { + "id": "1038", + "code": "31038", + "data": { + "gtfs": { + "stop_id": "1038", + "stop_code": "31038", + "stop_name": "av. Victoria et boul. Churchill", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et boul. Churchill", + "geography": { + "type": "Point", + "coordinates": [ + -73.4920868666878, + 45.4892226668234 + ] + } + }, + { + "id": "2479", + "code": "32479", + "data": { + "gtfs": { + "stop_id": "2479", + "stop_code": "32479", + "stop_name": "boul. Churchill et av. Victoria", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Churchill et av. Victoria", + "geography": { + "type": "Point", + "coordinates": [ + -73.4916221862355, + 45.4888274270561 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9601175748978 + }, + "name": "av. Victoria et boul. Churchill", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491854526, + 45.489025047 + ] + }, + "is_frozen": false, + "integer_id": 44, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.489409, + 45.490192 + ] + }, + "id": 45, + "properties": { + "id": "a2e6b668-43de-43be-8b1b-07b41b333c8d", + "code": "31039", + "data": { + "stops": [ + { + "id": "1039", + "code": "31039", + "data": { + "gtfs": { + "stop_id": "1039", + "stop_code": "31039", + "stop_name": "boul. Churchill et Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Churchill et Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.489409233702, + 45.4901920339847 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9798205988992 + }, + "name": "boul. Churchill et Hubert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.489409234, + 45.490192034 + ] + }, + "is_frozen": false, + "integer_id": 45, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.487355, + 45.491543 + ] + }, + "id": 46, + "properties": { + "id": "f132c08e-1812-4b2f-84fb-340628d1ac39", + "code": "31040", + "data": { + "stops": [ + { + "id": "1040", + "code": "31040", + "data": { + "gtfs": { + "stop_id": "1040", + "stop_code": "31040", + "stop_name": "boul. Churchill et Empire", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Churchill et Empire", + "geography": { + "type": "Point", + "coordinates": [ + -73.4873879142154, + 45.4913925422227 + ] + } + }, + { + "id": "1073", + "code": "31073", + "data": { + "gtfs": { + "stop_id": "1073", + "stop_code": "31073", + "stop_name": "boul. Churchill et Empire", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Churchill et Empire", + "geography": { + "type": "Point", + "coordinates": [ + -73.4873221371154, + 45.491693626626 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0026327945234 + }, + "name": "boul. Churchill et Empire", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.487355026, + 45.491543084 + ] + }, + "is_frozen": false, + "integer_id": 46, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486014, + 45.492408 + ] + }, + "id": 47, + "properties": { + "id": "ff721ee3-8729-47c1-80cd-7dd5e7142284", + "code": "31041", + "data": { + "stops": [ + { + "id": "1041", + "code": "31041", + "data": { + "gtfs": { + "stop_id": "1041", + "stop_code": "31041", + "stop_name": "boul. Churchill et de Springfield", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Churchill et de Springfield", + "geography": { + "type": "Point", + "coordinates": [ + -73.4860049560195, + 45.4922858271618 + ] + } + }, + { + "id": "1072", + "code": "31072", + "data": { + "gtfs": { + "stop_id": "1072", + "stop_code": "31072", + "stop_name": "boul. Churchill et de Springfield", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Churchill et de Springfield", + "geography": { + "type": "Point", + "coordinates": [ + -73.4860236978119, + 45.4925301975845 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0172377744676 + }, + "name": "boul. Churchill et de Springfield", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486014327, + 45.492408012 + ] + }, + "is_frozen": false, + "integer_id": 47, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483872, + 45.493775 + ] + }, + "id": 48, + "properties": { + "id": "3040b262-0b20-4c40-9350-e484adfe1d60", + "code": "31042", + "data": { + "stops": [ + { + "id": "1042", + "code": "31042", + "data": { + "gtfs": { + "stop_id": "1042", + "stop_code": "31042", + "stop_name": "boul. Churchill et de Verchères", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Churchill et de Verchères", + "geography": { + "type": "Point", + "coordinates": [ + -73.4840141265468, + 45.4937267030482 + ] + } + }, + { + "id": "1071", + "code": "31071", + "data": { + "gtfs": { + "stop_id": "1071", + "stop_code": "31071", + "stop_name": "boul. Churchill et de Verchères", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Churchill et de Verchères", + "geography": { + "type": "Point", + "coordinates": [ + -73.4839891766793, + 45.4939955784833 + ] + } + }, + { + "id": "3993", + "code": "33993", + "data": { + "gtfs": { + "stop_id": "3993", + "stop_code": "33993", + "stop_name": "de Verchères et boul. Churchill", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Verchères et boul. Churchill", + "geography": { + "type": "Point", + "coordinates": [ + -73.4838373137989, + 45.4938159121464 + ] + } + }, + { + "id": "5030", + "code": "35030", + "data": { + "gtfs": { + "stop_id": "5030", + "stop_code": "35030", + "stop_name": "de Verchères et civique 271", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Verchères et civique 271", + "geography": { + "type": "Point", + "coordinates": [ + -73.4837303775, + 45.4935543310643 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0403210236026 + }, + "name": "boul. Churchill et de Verchères", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483872252, + 45.493774955 + ] + }, + "is_frozen": false, + "integer_id": 48, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482104, + 45.49531 + ] + }, + "id": 49, + "properties": { + "id": "7efe5a69-843b-4e1c-b95a-cdae4854b17d", + "code": "31043", + "data": { + "stops": [ + { + "id": "1043", + "code": "31043", + "data": { + "gtfs": { + "stop_id": "1043", + "stop_code": "31043", + "stop_name": "boul. Churchill et boul. Taschereau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Churchill et boul. Taschereau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4823470886998, + 45.4949219917692 + ] + } + }, + { + "id": "1069", + "code": "31069", + "data": { + "gtfs": { + "stop_id": "1069", + "stop_code": "31069", + "stop_name": "boul. Churchill et boul. Taschereau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Churchill et boul. Taschereau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4818526067998, + 45.4955138111435 + ] + } + }, + { + "id": "1167", + "code": "31167", + "data": { + "gtfs": { + "stop_id": "1167", + "stop_code": "31167", + "stop_name": "boul. Taschereau et boul. Churchill", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et boul. Churchill", + "geography": { + "type": "Point", + "coordinates": [ + -73.4823550681997, + 45.4952351676087 + ] + } + }, + { + "id": "3942", + "code": "33942", + "data": { + "gtfs": { + "stop_id": "3942", + "stop_code": "33942", + "stop_name": "boul. Taschereau et boul. Churchill", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et boul. Churchill", + "geography": { + "type": "Point", + "coordinates": [ + -73.4822564902695, + 45.4956971593596 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0662377924417 + }, + "name": "boul. Churchill et boul. Taschereau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482103837, + 45.495309576 + ] + }, + "is_frozen": false, + "integer_id": 49, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481099, + 45.495797 + ] + }, + "id": 50, + "properties": { + "id": "5cb517a3-d58a-47b9-835f-b13bd908a6f9", + "code": "31044", + "data": { + "stops": [ + { + "id": "1044", + "code": "31044", + "data": { + "gtfs": { + "stop_id": "1044", + "stop_code": "31044", + "stop_name": "boul. Churchill et de Mont-Royal", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Churchill et de Mont-Royal", + "geography": { + "type": "Point", + "coordinates": [ + -73.481098743191, + 45.4957970768247 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0744711761557 + }, + "name": "boul. Churchill et de Mont-Royal", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481098743, + 45.495797077 + ] + }, + "is_frozen": false, + "integer_id": 50, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479705, + 45.496927 + ] + }, + "id": 51, + "properties": { + "id": "6a2c9077-d7bd-4c23-a90d-45a5568fbdc9", + "code": "31045", + "data": { + "stops": [ + { + "id": "1045", + "code": "31045", + "data": { + "gtfs": { + "stop_id": "1045", + "stop_code": "31045", + "stop_name": "boul. Édouard et Grand Boulevard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Édouard et Grand Boulevard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4797975051483, + 45.4967324724036 + ] + } + }, + { + "id": "1068", + "code": "31068", + "data": { + "gtfs": { + "stop_id": "1068", + "stop_code": "31068", + "stop_name": "boul. Édouard et Grand Boulevard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Édouard et Grand Boulevard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4796132274783, + 45.4971217571683 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0935571530191 + }, + "name": "boul. Édouard et Grand Boulevard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479705366, + 45.496927115 + ] + }, + "is_frozen": false, + "integer_id": 51, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478194, + 45.497983 + ] + }, + "id": 52, + "properties": { + "id": "de8aa4d4-205c-4786-8a75-8902d51d8a41", + "code": "31046", + "data": { + "stops": [ + { + "id": "1046", + "code": "31046", + "data": { + "gtfs": { + "stop_id": "1046", + "stop_code": "31046", + "stop_name": "boul. Édouard et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Édouard et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4781862291345, + 45.497836098318 + ] + } + }, + { + "id": "1067", + "code": "31067", + "data": { + "gtfs": { + "stop_id": "1067", + "stop_code": "31067", + "stop_name": "boul. Édouard et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Édouard et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4781865714336, + 45.4981293187934 + ] + } + }, + { + "id": "1854", + "code": "31854", + "data": { + "gtfs": { + "stop_id": "1854", + "stop_code": "31854", + "stop_name": "Grande Allée et boul. Édouard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et boul. Édouard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4779475321663, + 45.4979358064753 + ] + } + }, + { + "id": "4002", + "code": "34002", + "data": { + "gtfs": { + "stop_id": "4002", + "stop_code": "34002", + "stop_name": "Grande Allée et boul. Édouard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et boul. Édouard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4784394741939, + 45.498056635132 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1113868209958 + }, + "name": "boul. Édouard et Grande Allée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.478193503, + 45.497982709 + ] + }, + "is_frozen": false, + "integer_id": 52, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474812, + 45.500118 + ] + }, + "id": 53, + "properties": { + "id": "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", + "code": "31047", + "data": { + "stops": [ + { + "id": "1047", + "code": "31047", + "data": { + "gtfs": { + "stop_id": "1047", + "stop_code": "31047", + "stop_name": "boul. Édouard et William", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Édouard et William", + "geography": { + "type": "Point", + "coordinates": [ + -73.4747764825874, + 45.4999695555552 + ] + } + }, + { + "id": "1066", + "code": "31066", + "data": { + "gtfs": { + "stop_id": "1066", + "stop_code": "31066", + "stop_name": "boul. Édouard et William", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Édouard et William", + "geography": { + "type": "Point", + "coordinates": [ + -73.4746908594903, + 45.5002657264001 + ] + } + }, + { + "id": "1118", + "code": "31118", + "data": { + "gtfs": { + "stop_id": "1118", + "stop_code": "31118", + "stop_name": "William et boul. Édouard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "William et boul. Édouard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4749329905929, + 45.5001441326504 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1474502386334 + }, + "name": "boul. Édouard et William", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474811925, + 45.500117641 + ] + }, + "is_frozen": false, + "integer_id": 53, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.473524, + 45.500774 + ] + }, + "id": 54, + "properties": { + "id": "300a7442-8453-4aa4-89f9-beacdcc75174", + "code": "31048", + "data": { + "stops": [ + { + "id": "1048", + "code": "31048", + "data": { + "gtfs": { + "stop_id": "1048", + "stop_code": "31048", + "stop_name": "boul. Édouard et Windsor", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Édouard et Windsor", + "geography": { + "type": "Point", + "coordinates": [ + -73.473717196559, + 45.5006051461319 + ] + } + }, + { + "id": "1065", + "code": "31065", + "data": { + "gtfs": { + "stop_id": "1065", + "stop_code": "31065", + "stop_name": "Windsor et boul. Édouard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Windsor et boul. Édouard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4733310946314, + 45.5006766490844 + ] + } + }, + { + "id": "1151", + "code": "31151", + "data": { + "gtfs": { + "stop_id": "1151", + "stop_code": "31151", + "stop_name": "boul. Édouard et Windsor", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Édouard et Windsor", + "geography": { + "type": "Point", + "coordinates": [ + -73.4735782340584, + 45.5009426723236 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1585367775889 + }, + "name": "boul. Édouard et Windsor", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.473524146, + 45.500773909 + ] + }, + "is_frozen": false, + "integer_id": 54, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47225, + 45.499695 + ] + }, + "id": 55, + "properties": { + "id": "a44c12a5-9a53-4288-b77a-08bf3c4eaadc", + "code": "31049", + "data": { + "stops": [ + { + "id": "1049", + "code": "31049", + "data": { + "gtfs": { + "stop_id": "1049", + "stop_code": "31049", + "stop_name": "Windsor et Gustave-Désourdy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Windsor et Gustave-Désourdy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4724078396163, + 45.4997477877398 + ] + } + }, + { + "id": "1064", + "code": "31064", + "data": { + "gtfs": { + "stop_id": "1064", + "stop_code": "31064", + "stop_name": "Windsor et Gustave-Désourdy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Windsor et Gustave-Désourdy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4720914194483, + 45.4996422402077 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1403108724483 + }, + "name": "Windsor et Gustave-Désourdy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47224963, + 45.499695014 + ] + }, + "is_frozen": false, + "integer_id": 55, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.470975, + 45.498631 + ] + }, + "id": 56, + "properties": { + "id": "4a83802a-cebb-4e1a-b140-a3d386f52eae", + "code": "31050", + "data": { + "stops": [ + { + "id": "1050", + "code": "31050", + "data": { + "gtfs": { + "stop_id": "1050", + "stop_code": "31050", + "stop_name": "Windsor et Georges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Windsor et Georges", + "geography": { + "type": "Point", + "coordinates": [ + -73.4711252127621, + 45.4986676583624 + ] + } + }, + { + "id": "1063", + "code": "31063", + "data": { + "gtfs": { + "stop_id": "1063", + "stop_code": "31063", + "stop_name": "Windsor et Georges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Windsor et Georges", + "geography": { + "type": "Point", + "coordinates": [ + -73.4708240903837, + 45.498594407457 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1223379256674 + }, + "name": "Windsor et Georges", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.470974652, + 45.498631033 + ] + }, + "is_frozen": false, + "integer_id": 56, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468777, + 45.496804 + ] + }, + "id": 57, + "properties": { + "id": "5f4522a4-83cd-4392-9a71-d32067987a56", + "code": "31051", + "data": { + "stops": [ + { + "id": "1051", + "code": "31051", + "data": { + "gtfs": { + "stop_id": "1051", + "stop_code": "31051", + "stop_name": "Windsor et Holmes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Windsor et Holmes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4689517611139, + 45.4968584021237 + ] + } + }, + { + "id": "1061", + "code": "31061", + "data": { + "gtfs": { + "stop_id": "1061", + "stop_code": "31061", + "stop_name": "Windsor et Holmes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Windsor et Holmes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4686015538592, + 45.4967503251175 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0914838732756 + }, + "name": "Windsor et Holmes", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468776657, + 45.496804364 + ] + }, + "is_frozen": false, + "integer_id": 57, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467461, + 45.495676 + ] + }, + "id": 58, + "properties": { + "id": "2b94ffb1-8934-4ee0-a36c-60c433b4d09e", + "code": "31052", + "data": { + "stops": [ + { + "id": "1052", + "code": "31052", + "data": { + "gtfs": { + "stop_id": "1052", + "stop_code": "31052", + "stop_name": "Windsor et De Gaulle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Windsor et De Gaulle", + "geography": { + "type": "Point", + "coordinates": [ + -73.467653710129, + 45.4957107407099 + ] + } + }, + { + "id": "1060", + "code": "31060", + "data": { + "gtfs": { + "stop_id": "1060", + "stop_code": "31060", + "stop_name": "Windsor et De Gaulle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Windsor et De Gaulle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4672687328938, + 45.4956411828731 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0724256503208 + }, + "name": "Windsor et De Gaulle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.467461222, + 45.495675962 + ] + }, + "is_frozen": false, + "integer_id": 58, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469237, + 45.492152 + ] + }, + "id": 59, + "properties": { + "id": "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", + "code": "31054", + "data": { + "stops": [ + { + "id": "1054", + "code": "31054", + "data": { + "gtfs": { + "stop_id": "1054", + "stop_code": "31054", + "stop_name": "Montgomery et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montgomery et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.46918456458, + 45.4922917549981 + ] + } + }, + { + "id": "1808", + "code": "31808", + "data": { + "gtfs": { + "stop_id": "1808", + "stop_code": "31808", + "stop_name": "Grande Allée et Montgomery", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Montgomery", + "geography": { + "type": "Point", + "coordinates": [ + -73.4694721071149, + 45.4921523562708 + ] + } + }, + { + "id": "1848", + "code": "31848", + "data": { + "gtfs": { + "stop_id": "1848", + "stop_code": "31848", + "stop_name": "Grande Allée et Montgomery", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Montgomery", + "geography": { + "type": "Point", + "coordinates": [ + -73.4690027303779, + 45.4920125055707 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0129169391886 + }, + "name": "Montgomery et Grande Allée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469237419, + 45.49215213 + ] + }, + "is_frozen": false, + "integer_id": 59, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468262, + 45.491229 + ] + }, + "id": 60, + "properties": { + "id": "cee5ccf3-ece1-4350-8264-3c360d07d279", + "code": "31055", + "data": { + "stops": [ + { + "id": "1055", + "code": "31055", + "data": { + "gtfs": { + "stop_id": "1055", + "stop_code": "31055", + "stop_name": "Grande Allée et Pine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Pine", + "geography": { + "type": "Point", + "coordinates": [ + -73.4678686396273, + 45.4911125957091 + ] + } + }, + { + "id": "1809", + "code": "31809", + "data": { + "gtfs": { + "stop_id": "1809", + "stop_code": "31809", + "stop_name": "Grande Allée et Régent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Régent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4684188341274, + 45.4914399390471 + ] + } + }, + { + "id": "1847", + "code": "31847", + "data": { + "gtfs": { + "stop_id": "1847", + "stop_code": "31847", + "stop_name": "Grande Allée et Régent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Régent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4677364923684, + 45.4911700864465 + ] + } + }, + { + "id": "2900", + "code": "32900", + "data": { + "gtfs": { + "stop_id": "2900", + "stop_code": "32900", + "stop_name": "Régent et Mackay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Régent et Mackay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4687874501799, + 45.4910183667459 + ] + } + }, + { + "id": "2905", + "code": "32905", + "data": { + "gtfs": { + "stop_id": "2905", + "stop_code": "32905", + "stop_name": "Régent et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Régent et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4682280042508, + 45.4912251768415 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9973319907256 + }, + "name": "Grande Allée et Pine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468261971, + 45.491229153 + ] + }, + "is_frozen": false, + "integer_id": 60, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464052, + 45.492785 + ] + }, + "id": 61, + "properties": { + "id": "c369e9dc-cf92-48cf-bb8f-a258dbed5d8d", + "code": "31056", + "data": { + "stops": [ + { + "id": "1056", + "code": "31056", + "data": { + "gtfs": { + "stop_id": "1056", + "stop_code": "31056", + "stop_name": "Pine et Windsor", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pine et Windsor", + "geography": { + "type": "Point", + "coordinates": [ + -73.4640522096572, + 45.4927851697438 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0236065880581 + }, + "name": "Pine et Windsor", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46405221, + 45.49278517 + ] + }, + "is_frozen": false, + "integer_id": 61, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46971, + 45.497556 + ] + }, + "id": 62, + "properties": { + "id": "796a2647-8b16-4b22-808f-454e1bee3449", + "code": "31057", + "data": { + "stops": [ + { + "id": "1057", + "code": "31057", + "data": { + "gtfs": { + "stop_id": "1057", + "stop_code": "31057", + "stop_name": "Windsor et Godin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Windsor et Godin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4698953807871, + 45.4976505173754 + ] + } + }, + { + "id": "1062", + "code": "31062", + "data": { + "gtfs": { + "stop_id": "1062", + "stop_code": "31062", + "stop_name": "Windsor et Godin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Windsor et Godin", + "geography": { + "type": "Point", + "coordinates": [ + -73.469524535689, + 45.4974617442712 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1041815222743 + }, + "name": "Windsor et Godin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469709958, + 45.497556131 + ] + }, + "is_frozen": false, + "integer_id": 62, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464975, + 45.493761 + ] + }, + "id": 63, + "properties": { + "id": "3f687a06-b3d8-47a1-ba8d-00632eabcaf7", + "code": "31058", + "data": { + "stops": [ + { + "id": "1058", + "code": "31058", + "data": { + "gtfs": { + "stop_id": "1058", + "stop_code": "31058", + "stop_name": "Windsor et Walnut", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Windsor et Walnut", + "geography": { + "type": "Point", + "coordinates": [ + -73.4649749953546, + 45.4937606260771 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0400790444868 + }, + "name": "Windsor et Walnut", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464974995, + 45.493760626 + ] + }, + "is_frozen": false, + "integer_id": 63, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465821, + 45.494345 + ] + }, + "id": 64, + "properties": { + "id": "c988f5aa-9ab5-48a6-898c-21c53961d2f3", + "code": "31059", + "data": { + "stops": [ + { + "id": "1059", + "code": "31059", + "data": { + "gtfs": { + "stop_id": "1059", + "stop_code": "31059", + "stop_name": "Windsor et Roosevelt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Windsor et Roosevelt", + "geography": { + "type": "Point", + "coordinates": [ + -73.4659453574987, + 45.4945584435086 + ] + } + }, + { + "id": "2899", + "code": "32899", + "data": { + "gtfs": { + "stop_id": "2899", + "stop_code": "32899", + "stop_name": "Montgomery et Windsor", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montgomery et Windsor", + "geography": { + "type": "Point", + "coordinates": [ + -73.4656969606939, + 45.4943907254776 + ] + } + }, + { + "id": "2906", + "code": "32906", + "data": { + "gtfs": { + "stop_id": "2906", + "stop_code": "32906", + "stop_name": "Montgomery et Windsor", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montgomery et Windsor", + "geography": { + "type": "Point", + "coordinates": [ + -73.4657716239398, + 45.4941324106406 + ] + } + }, + { + "id": "4692", + "code": "34692", + "data": { + "gtfs": { + "stop_id": "4692", + "stop_code": "34692", + "stop_name": "Windsor et Montgomery", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Windsor et Montgomery", + "geography": { + "type": "Point", + "coordinates": [ + -73.4658779919021, + 45.4942860971982 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0499549433541 + }, + "name": "Windsor et Roosevelt", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465821159, + 45.494345427 + ] + }, + "is_frozen": false, + "integer_id": 64, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.489406, + 45.490404 + ] + }, + "id": 65, + "properties": { + "id": "5573bb7b-19f0-4d2b-a66d-9f04f87c1987", + "code": "31074", + "data": { + "stops": [ + { + "id": "1074", + "code": "31074", + "data": { + "gtfs": { + "stop_id": "1074", + "stop_code": "31074", + "stop_name": "boul. Churchill et Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Churchill et Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4894056756934, + 45.4904040956367 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9834011138572 + }, + "name": "boul. Churchill et Hubert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.489405676, + 45.490404096 + ] + }, + "is_frozen": false, + "integer_id": 65, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.497528, + 45.493311 + ] + }, + "id": 66, + "properties": { + "id": "1cedf968-65c8-4c0f-b92c-c06da7b8fe69", + "code": "31075", + "data": { + "stops": [ + { + "id": "1075", + "code": "31075", + "data": { + "gtfs": { + "stop_id": "1075", + "stop_code": "31075", + "stop_name": "av. Victoria et av. de Rothesay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et av. de Rothesay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4975276249706, + 45.4933106017372 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0324794158988 + }, + "name": "av. Victoria et av. de Rothesay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.497527625, + 45.493310602 + ] + }, + "is_frozen": false, + "integer_id": 66, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.507201, + 45.499713 + ] + }, + "id": 67, + "properties": { + "id": "0ac44bed-6f37-406e-8654-f8d5f36c840e", + "code": "31079", + "data": { + "stops": [ + { + "id": "1079", + "code": "31079", + "data": { + "gtfs": { + "stop_id": "1079", + "stop_code": "31079", + "stop_name": "av. Victoria et GARE SAINT-LAMBERT", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et GARE SAINT-LAMBERT", + "geography": { + "type": "Point", + "coordinates": [ + -73.5072007069933, + 45.4997125490617 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1406070850674 + }, + "name": "av. Victoria et GARE SAINT-LAMBERT", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507200707, + 45.499712549 + ] + }, + "is_frozen": false, + "integer_id": 67, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.510375, + 45.501068 + ] + }, + "id": 68, + "properties": { + "id": "443288e2-2ae9-4c97-a015-0e176d8f71b2", + "code": "31080", + "data": { + "stops": [ + { + "id": "1080", + "code": "31080", + "data": { + "gtfs": { + "stop_id": "1080", + "stop_code": "31080", + "stop_name": "av. Victoria et TAYLOR", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et TAYLOR", + "geography": { + "type": "Point", + "coordinates": [ + -73.5103746047388, + 45.5010682528898 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1635093466024 + }, + "name": "av. Victoria et TAYLOR", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.510374605, + 45.501068253 + ] + }, + "is_frozen": false, + "integer_id": 68, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.503396, + 45.511528 + ] + }, + "id": 69, + "properties": { + "id": "0f0a758f-b2db-4611-9b64-d413bfce8846", + "code": "31081", + "data": { + "stops": [ + { + "id": "1081", + "code": "31081", + "data": { + "gtfs": { + "stop_id": "1081", + "stop_code": "31081", + "stop_name": "ch. Tiffin et Boudreau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et Boudreau", + "geography": { + "type": "Point", + "coordinates": [ + -73.5034076677968, + 45.5114075667887 + ] + } + }, + { + "id": "1104", + "code": "31104", + "data": { + "gtfs": { + "stop_id": "1104", + "stop_code": "31104", + "stop_name": "ch. Tiffin et Boudreau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et Boudreau", + "geography": { + "type": "Point", + "coordinates": [ + -73.503302408273, + 45.511561506698 + ] + } + }, + { + "id": "5467", + "code": "30214", + "data": { + "gtfs": { + "stop_id": "5467", + "stop_code": "30214", + "stop_name": "Boudreau et ch. Tiffin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Boudreau et ch. Tiffin", + "geography": { + "type": "Point", + "coordinates": [ + -73.5034888428141, + 45.511649213223 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3402701729241 + }, + "name": "ch. Tiffin et Boudreau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.503395626, + 45.51152839 + ] + }, + "is_frozen": false, + "integer_id": 69, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.500784, + 45.510605 + ] + }, + "id": 70, + "properties": { + "id": "a73a9d8f-0a4d-4f45-8ed5-05aa8ce7acde", + "code": "31082", + "data": { + "stops": [ + { + "id": "1082", + "code": "31082", + "data": { + "gtfs": { + "stop_id": "1082", + "stop_code": "31082", + "stop_name": "ch. Tiffin et Laforest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et Laforest", + "geography": { + "type": "Point", + "coordinates": [ + -73.5009738440636, + 45.5105799839992 + ] + } + }, + { + "id": "1101", + "code": "31101", + "data": { + "gtfs": { + "stop_id": "1101", + "stop_code": "31101", + "stop_name": "ch. Tiffin et Laforest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et Laforest", + "geography": { + "type": "Point", + "coordinates": [ + -73.5005936287037, + 45.5106297847545 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3246603687917 + }, + "name": "ch. Tiffin et Laforest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.500783736, + 45.510604884 + ] + }, + "is_frozen": false, + "integer_id": 70, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.498342, + 45.509789 + ] + }, + "id": 71, + "properties": { + "id": "a331dc32-b29f-4455-9199-5b289acc7d53", + "code": "31083", + "data": { + "stops": [ + { + "id": "1083", + "code": "31083", + "data": { + "gtfs": { + "stop_id": "1083", + "stop_code": "31083", + "stop_name": "ch. Tiffin et Jean-Bariteau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et Jean-Bariteau", + "geography": { + "type": "Point", + "coordinates": [ + -73.498338392814, + 45.5097062241792 + ] + } + }, + { + "id": "1100", + "code": "31100", + "data": { + "gtfs": { + "stop_id": "1100", + "stop_code": "31100", + "stop_name": "ch. Tiffin et Jean-Bariteau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et Jean-Bariteau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4983446692782, + 45.5098708467573 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3108624464946 + }, + "name": "ch. Tiffin et Jean-Bariteau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.498341531, + 45.509788535 + ] + }, + "is_frozen": false, + "integer_id": 71, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.496841, + 45.508145 + ] + }, + "id": 72, + "properties": { + "id": "f31baed5-09fe-46fd-9f4a-0a7da7aeef56", + "code": "31084", + "data": { + "stops": [ + { + "id": "1084", + "code": "31084", + "data": { + "gtfs": { + "stop_id": "1084", + "stop_code": "31084", + "stop_name": "Saint-Georges et Saint-Thomas", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Georges et Saint-Thomas", + "geography": { + "type": "Point", + "coordinates": [ + -73.4970204955943, + 45.5082499739596 + ] + } + }, + { + "id": "1099", + "code": "31099", + "data": { + "gtfs": { + "stop_id": "1099", + "stop_code": "31099", + "stop_name": "Saint-Georges et Saint-Thomas", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Georges et Saint-Thomas", + "geography": { + "type": "Point", + "coordinates": [ + -73.4966618821991, + 45.5080405050702 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2830892908614 + }, + "name": "Saint-Georges et Saint-Thomas", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.496841189, + 45.50814524 + ] + }, + "is_frozen": false, + "integer_id": 72, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.495007, + 45.505696 + ] + }, + "id": 73, + "properties": { + "id": "9158bca7-e437-40a4-83b0-5632dd53d6ee", + "code": "31085", + "data": { + "stops": [ + { + "id": "1085", + "code": "31085", + "data": { + "gtfs": { + "stop_id": "1085", + "stop_code": "31085", + "stop_name": "Saint-Georges et av. de l'Église", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Georges et av. de l'Église", + "geography": { + "type": "Point", + "coordinates": [ + -73.4951629641124, + 45.5057611964879 + ] + } + }, + { + "id": "1098", + "code": "31098", + "data": { + "gtfs": { + "stop_id": "1098", + "stop_code": "31098", + "stop_name": "Saint-Georges et av. de l'Église", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Georges et av. de l'Église", + "geography": { + "type": "Point", + "coordinates": [ + -73.4948509618677, + 45.5056300820815 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2416933052763 + }, + "name": "Saint-Georges et av. de l'Église", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.495006963, + 45.505695639 + ] + }, + "is_frozen": false, + "integer_id": 73, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492702, + 45.502567 + ] + }, + "id": 74, + "properties": { + "id": "433424db-8ed2-48db-aa2a-385d6850eb86", + "code": "31087", + "data": { + "stops": [ + { + "id": "1087", + "code": "31087", + "data": { + "gtfs": { + "stop_id": "1087", + "stop_code": "31087", + "stop_name": "Saint-Georges et Saint-Louis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Georges et Saint-Louis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4927016261865, + 45.5025673966004 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.188836681714 + }, + "name": "Saint-Georges et Saint-Louis", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492701626, + 45.502567397 + ] + }, + "is_frozen": false, + "integer_id": 74, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491872, + 45.502339 + ] + }, + "id": 75, + "properties": { + "id": "dbf189ce-b09f-4cff-a75f-31e014aad97b", + "code": "31096", + "data": { + "stops": [ + { + "id": "1096", + "code": "31096", + "data": { + "gtfs": { + "stop_id": "1096", + "stop_code": "31096", + "stop_name": "Saint-Georges et boul. Sir-Wilfrid-Laurier - (116) est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Georges et boul. Sir-Wilfrid-Laurier - (116) est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4918719887114, + 45.5023386337543 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1849717087576 + }, + "name": "Saint-Georges et boul. Sir-Wilfrid-Laurier - (116) est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491871989, + 45.502338634 + ] + }, + "is_frozen": false, + "integer_id": 75, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.515029, + 45.519268 + ] + }, + "id": 76, + "properties": { + "id": "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", + "code": "31107", + "data": { + "stops": [ + { + "id": "1107", + "code": "31107", + "data": { + "gtfs": { + "stop_id": "1107", + "stop_code": "31107", + "stop_name": "boul. La Fayette et de la Providence", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et de la Providence", + "geography": { + "type": "Point", + "coordinates": [ + -73.5150293430582, + 45.5192680932229 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4711224048073 + }, + "name": "boul. La Fayette et de la Providence", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.515029343, + 45.519268093 + ] + }, + "is_frozen": false, + "integer_id": 76, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.504807, + 45.51379 + ] + }, + "id": 77, + "properties": { + "id": "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", + "code": "31109", + "data": { + "stops": [ + { + "id": "1109", + "code": "31109", + "data": { + "gtfs": { + "stop_id": "1109", + "stop_code": "31109", + "stop_name": "boul. Taschereau et boul. Desaulniers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et boul. Desaulniers", + "geography": { + "type": "Point", + "coordinates": [ + -73.5048072979009, + 45.5137902248029 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3785046443724 + }, + "name": "boul. Taschereau et boul. Desaulniers", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.504807298, + 45.513790225 + ] + }, + "is_frozen": false, + "integer_id": 77, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.487666, + 45.500712 + ] + }, + "id": 78, + "properties": { + "id": "bcd0a901-5384-443e-9be4-1f0faa123ccb", + "code": "31110", + "data": { + "stops": [ + { + "id": "1110", + "code": "31110", + "data": { + "gtfs": { + "stop_id": "1110", + "stop_code": "31110", + "stop_name": "boul. Taschereau et King-Edward", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et King-Edward", + "geography": { + "type": "Point", + "coordinates": [ + -73.4876660115796, + 45.5007122087732 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1574944440225 + }, + "name": "boul. Taschereau et King-Edward", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.487666012, + 45.500712209 + ] + }, + "is_frozen": false, + "integer_id": 78, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.49972, + 45.512272 + ] + }, + "id": 79, + "properties": { + "id": "741876fc-030a-42f6-a33a-8f1f9c2aba12", + "code": "31111", + "data": { + "stops": [ + { + "id": "1111", + "code": "31111", + "data": { + "gtfs": { + "stop_id": "1111", + "stop_code": "31111", + "stop_name": "boul. Taschereau et Laforest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Laforest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4997204289479, + 45.5122724289729 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3528470410797 + }, + "name": "boul. Taschereau et Laforest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.499720429, + 45.512272429 + ] + }, + "is_frozen": false, + "integer_id": 79, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.498266, + 45.511804 + ] + }, + "id": 80, + "properties": { + "id": "688a3f67-a176-441e-a399-c92a55de9c74", + "code": "31112", + "data": { + "stops": [ + { + "id": "1112", + "code": "31112", + "data": { + "gtfs": { + "stop_id": "1112", + "stop_code": "31112", + "stop_name": "boul. Taschereau et Passerelle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Passerelle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4982664852053, + 45.5118040180129 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3449291951607 + }, + "name": "boul. Taschereau et Passerelle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.498266485, + 45.511804018 + ] + }, + "is_frozen": false, + "integer_id": 80, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491953, + 45.508648 + ] + }, + "id": 81, + "properties": { + "id": "37199bb2-9740-4484-b68f-12d3c82f8bf9", + "code": "31113", + "data": { + "stops": [ + { + "id": "1113", + "code": "31113", + "data": { + "gtfs": { + "stop_id": "1113", + "stop_code": "31113", + "stop_name": "boul. Taschereau et av. de l'Église", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et av. de l'Église", + "geography": { + "type": "Point", + "coordinates": [ + -73.4919530404916, + 45.5086481057116 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.291587920851 + }, + "name": "boul. Taschereau et av. de l'Église", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.49195304, + 45.508648106 + ] + }, + "is_frozen": false, + "integer_id": 81, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483745, + 45.497054 + ] + }, + "id": 82, + "properties": { + "id": "b2075e72-f3b5-420a-b22b-99e7608c7c0a", + "code": "31114", + "data": { + "stops": [ + { + "id": "1114", + "code": "31114", + "data": { + "gtfs": { + "stop_id": "1114", + "stop_code": "31114", + "stop_name": "Mary et boul. Taschereau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Mary et boul. Taschereau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4837454007708, + 45.4970541586367 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0957029561853 + }, + "name": "Mary et boul. Taschereau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483745401, + 45.497054159 + ] + }, + "is_frozen": false, + "integer_id": 82, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482634, + 45.49794 + ] + }, + "id": 83, + "properties": { + "id": "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", + "code": "31115", + "data": { + "stops": [ + { + "id": "1115", + "code": "31115", + "data": { + "gtfs": { + "stop_id": "1115", + "stop_code": "31115", + "stop_name": "boul. Marie et Mance", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie et Mance", + "geography": { + "type": "Point", + "coordinates": [ + -73.4826526764364, + 45.4978138486163 + ] + } + }, + { + "id": "1154", + "code": "31154", + "data": { + "gtfs": { + "stop_id": "1154", + "stop_code": "31154", + "stop_name": "boul. Marie et Mance", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie et Mance", + "geography": { + "type": "Point", + "coordinates": [ + -73.4826156278988, + 45.4980660197193 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.110664304204 + }, + "name": "boul. Marie et Mance", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482634152, + 45.497939934 + ] + }, + "is_frozen": false, + "integer_id": 83, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.480404, + 45.499478 + ] + }, + "id": 84, + "properties": { + "id": "47ef73cf-7799-46e3-b2f1-76a6533f7746", + "code": "31116", + "data": { + "stops": [ + { + "id": "1116", + "code": "31116", + "data": { + "gtfs": { + "stop_id": "1116", + "stop_code": "31116", + "stop_name": "boul. Marie et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4805239846036, + 45.4993367852819 + ] + } + }, + { + "id": "1153", + "code": "31153", + "data": { + "gtfs": { + "stop_id": "1153", + "stop_code": "31153", + "stop_name": "boul. Marie et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.48044852806, + 45.4996183937409 + ] + } + }, + { + "id": "1855", + "code": "31855", + "data": { + "gtfs": { + "stop_id": "1855", + "stop_code": "31855", + "stop_name": "Grande Allée et boul. Marie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et boul. Marie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4802845525818, + 45.4994794657026 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1366380276282 + }, + "name": "boul. Marie et Grande Allée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.480404269, + 45.49947759 + ] + }, + "is_frozen": false, + "integer_id": 84, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.4766, + 45.501595 + ] + }, + "id": 85, + "properties": { + "id": "9da3ecd5-fea1-433e-9a38-142aeff3882d", + "code": "31117", + "data": { + "stops": [ + { + "id": "1117", + "code": "31117", + "data": { + "gtfs": { + "stop_id": "1117", + "stop_code": "31117", + "stop_name": "boul. Marie et William", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie et William", + "geography": { + "type": "Point", + "coordinates": [ + -73.4768460867294, + 45.5016128018709 + ] + } + }, + { + "id": "1152", + "code": "31152", + "data": { + "gtfs": { + "stop_id": "1152", + "stop_code": "31152", + "stop_name": "William et boul. Marie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "William et boul. Marie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4763540024737, + 45.501576381595 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1724013694464 + }, + "name": "boul. Marie et William", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.476600045, + 45.501594592 + ] + }, + "is_frozen": false, + "integer_id": 85, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.471131, + 45.502294 + ] + }, + "id": 86, + "properties": { + "id": "dbae3900-2b78-4309-9fa5-5503ae30ad22", + "code": "31119", + "data": { + "stops": [ + { + "id": "1119", + "code": "31119", + "data": { + "gtfs": { + "stop_id": "1119", + "stop_code": "31119", + "stop_name": "boul. Édouard et place Édouard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Édouard et place Édouard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4711370357057, + 45.5021365578321 + ] + } + }, + { + "id": "1150", + "code": "31150", + "data": { + "gtfs": { + "stop_id": "1150", + "stop_code": "31150", + "stop_name": "boul. Édouard et des Émeraudes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Édouard et des Émeraudes", + "geography": { + "type": "Point", + "coordinates": [ + -73.471124713547, + 45.5024505486849 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1842100664065 + }, + "name": "boul. Édouard et place Édouard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.471130875, + 45.502293553 + ] + }, + "is_frozen": false, + "integer_id": 86, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469702, + 45.503029 + ] + }, + "id": 87, + "properties": { + "id": "5b1f9db8-9fc7-4028-9f92-fd33d2f419e7", + "code": "31120", + "data": { + "stops": [ + { + "id": "1120", + "code": "31120", + "data": { + "gtfs": { + "stop_id": "1120", + "stop_code": "31120", + "stop_name": "boul. Édouard et Elizabeth", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Édouard et Elizabeth", + "geography": { + "type": "Point", + "coordinates": [ + -73.4697020503422, + 45.5030292877143 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1966405166719 + }, + "name": "boul. Édouard et Elizabeth", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46970205, + 45.503029288 + ] + }, + "is_frozen": false, + "integer_id": 87, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468232, + 45.502076 + ] + }, + "id": 88, + "properties": { + "id": "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", + "code": "31121", + "data": { + "stops": [ + { + "id": "1121", + "code": "31121", + "data": { + "gtfs": { + "stop_id": "1121", + "stop_code": "31121", + "stop_name": "Elizabeth et Gustave-Désourdy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Elizabeth et Gustave-Désourdy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4683722527285, + 45.5020863344156 + ] + } + }, + { + "id": "1148", + "code": "31148", + "data": { + "gtfs": { + "stop_id": "1148", + "stop_code": "31148", + "stop_name": "Elizabeth et Gustave-Désourdy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Elizabeth et Gustave-Désourdy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4680913865008, + 45.502064918324 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1805282207741 + }, + "name": "Elizabeth et Gustave-Désourdy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46823182, + 45.502075626 + ] + }, + "is_frozen": false, + "integer_id": 88, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461617, + 45.501755 + ] + }, + "id": 89, + "properties": { + "id": "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", + "code": "31123", + "data": { + "stops": [ + { + "id": "1123", + "code": "31123", + "data": { + "gtfs": { + "stop_id": "1123", + "stop_code": "31123", + "stop_name": "Alexandra et Stratton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Alexandra et Stratton", + "geography": { + "type": "Point", + "coordinates": [ + -73.4617600789158, + 45.501686289148 + ] + } + }, + { + "id": "1145", + "code": "31145", + "data": { + "gtfs": { + "stop_id": "1145", + "stop_code": "31145", + "stop_name": "Stratton et Alexandra", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Stratton et Alexandra", + "geography": { + "type": "Point", + "coordinates": [ + -73.461474006017, + 45.5018232616445 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.175107565736 + }, + "name": "Alexandra et Stratton", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461617042, + 45.501754775 + ] + }, + "is_frozen": false, + "integer_id": 89, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45919, + 45.500709 + ] + }, + "id": 90, + "properties": { + "id": "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", + "code": "31124", + "data": { + "stops": [ + { + "id": "1124", + "code": "31124", + "data": { + "gtfs": { + "stop_id": "1124", + "stop_code": "31124", + "stop_name": "Joubert et De Gaulle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joubert et De Gaulle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4593822376129, + 45.5006797360069 + ] + } + }, + { + "id": "1143", + "code": "31143", + "data": { + "gtfs": { + "stop_id": "1143", + "stop_code": "31143", + "stop_name": "De Gaulle et Joubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Gaulle et Joubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4589984745777, + 45.5007381841096 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.157439556892 + }, + "name": "Joubert et De Gaulle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459190356, + 45.50070896 + ] + }, + "is_frozen": false, + "integer_id": 90, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457577, + 45.501375 + ] + }, + "id": 91, + "properties": { + "id": "bb534923-0939-4ebc-88f8-39847999c548", + "code": "31125", + "data": { + "stops": [ + { + "id": "1125", + "code": "31125", + "data": { + "gtfs": { + "stop_id": "1125", + "stop_code": "31125", + "stop_name": "De Gaulle et Diane", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Gaulle et Diane", + "geography": { + "type": "Point", + "coordinates": [ + -73.4576883340667, + 45.5013253022467 + ] + } + }, + { + "id": "1142", + "code": "31142", + "data": { + "gtfs": { + "stop_id": "1142", + "stop_code": "31142", + "stop_name": "Diane et De Gaulle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Diane et De Gaulle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4574660735327, + 45.5014240090001 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1686857190427 + }, + "name": "De Gaulle et Diane", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457577204, + 45.501374656 + ] + }, + "is_frozen": false, + "integer_id": 91, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45578, + 45.500243 + ] + }, + "id": 92, + "properties": { + "id": "800a1d6c-4d5b-4560-b691-99e1b0db1343", + "code": "31126", + "data": { + "stops": [ + { + "id": "1126", + "code": "31126", + "data": { + "gtfs": { + "stop_id": "1126", + "stop_code": "31126", + "stop_name": "Diane et Montgomery", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Diane et Montgomery", + "geography": { + "type": "Point", + "coordinates": [ + -73.4560031416748, + 45.5003545408673 + ] + } + }, + { + "id": "1141", + "code": "31141", + "data": { + "gtfs": { + "stop_id": "1141", + "stop_code": "31141", + "stop_name": "Montgomery et Diane", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montgomery et Diane", + "geography": { + "type": "Point", + "coordinates": [ + -73.4555559550505, + 45.5003289417779 + ] + } + }, + { + "id": "2910", + "code": "32910", + "data": { + "gtfs": { + "stop_id": "2910", + "stop_code": "32910", + "stop_name": "Montgomery et Diane", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montgomery et Diane", + "geography": { + "type": "Point", + "coordinates": [ + -73.4557341134123, + 45.5001323492642 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1495754549501 + }, + "name": "Diane et Montgomery", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455779548, + 45.500243445 + ] + }, + "is_frozen": false, + "integer_id": 92, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458263, + 45.498706 + ] + }, + "id": 93, + "properties": { + "id": "e827aa2c-577c-4249-9fc7-9a6572084b69", + "code": "31127", + "data": { + "stops": [ + { + "id": "1127", + "code": "31127", + "data": { + "gtfs": { + "stop_id": "1127", + "stop_code": "31127", + "stop_name": "Montgomery et Arthur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montgomery et Arthur", + "geography": { + "type": "Point", + "coordinates": [ + -73.4581764398747, + 45.498850428268 + ] + } + }, + { + "id": "2909", + "code": "32909", + "data": { + "gtfs": { + "stop_id": "2909", + "stop_code": "32909", + "stop_name": "Montgomery et Arthur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montgomery et Arthur", + "geography": { + "type": "Point", + "coordinates": [ + -73.4583502318908, + 45.4985611857132 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1236009878008 + }, + "name": "Montgomery et Arthur", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.458263336, + 45.498705807 + ] + }, + "is_frozen": false, + "integer_id": 93, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460177, + 45.497487 + ] + }, + "id": 94, + "properties": { + "id": "12181a0a-32eb-4333-b444-1760ecaa417c", + "code": "31128", + "data": { + "stops": [ + { + "id": "1128", + "code": "31128", + "data": { + "gtfs": { + "stop_id": "1128", + "stop_code": "31128", + "stop_name": "Edgar et Montgomery", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Edgar et Montgomery", + "geography": { + "type": "Point", + "coordinates": [ + -73.4601096202027, + 45.4972358820559 + ] + } + }, + { + "id": "2897", + "code": "32897", + "data": { + "gtfs": { + "stop_id": "2897", + "stop_code": "32897", + "stop_name": "Montgomery et Edgar", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montgomery et Edgar", + "geography": { + "type": "Point", + "coordinates": [ + -73.4600424536699, + 45.4977376961295 + ] + } + }, + { + "id": "2908", + "code": "32908", + "data": { + "gtfs": { + "stop_id": "2908", + "stop_code": "32908", + "stop_name": "Montgomery et Edgar", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montgomery et Edgar", + "geography": { + "type": "Point", + "coordinates": [ + -73.4603122730115, + 45.4973790080338 + ] + } + }, + { + "id": "4755", + "code": "34755", + "data": { + "gtfs": { + "stop_id": "4755", + "stop_code": "34755", + "stop_name": "Edgar et Montgomery", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Edgar et Montgomery", + "geography": { + "type": "Point", + "coordinates": [ + -73.4600750900254, + 45.4974671676758 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1030102867705 + }, + "name": "Edgar et Montgomery", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.460177363, + 45.497486789 + ] + }, + "is_frozen": false, + "integer_id": 94, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460297, + 45.495001 + ] + }, + "id": 95, + "properties": { + "id": "0689eff9-8438-4b1c-9e3a-78c672f6ef82", + "code": "31129", + "data": { + "stops": [ + { + "id": "1129", + "code": "31129", + "data": { + "gtfs": { + "stop_id": "1129", + "stop_code": "31129", + "stop_name": "Edgar et Kennedy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Edgar et Kennedy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4603918291199, + 45.4951100571404 + ] + } + }, + { + "id": "4754", + "code": "34754", + "data": { + "gtfs": { + "stop_id": "4754", + "stop_code": "34754", + "stop_name": "Edgar et Kennedy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Edgar et Kennedy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4602021878781, + 45.4948919517539 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0610264422744 + }, + "name": "Edgar et Kennedy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.460297008, + 45.495001004 + ] + }, + "is_frozen": false, + "integer_id": 95, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45982, + 45.493633 + ] + }, + "id": 96, + "properties": { + "id": "3c0294df-b0e7-4be1-af27-4b755f5639ad", + "code": "31130", + "data": { + "stops": [ + { + "id": "1130", + "code": "31130", + "data": { + "gtfs": { + "stop_id": "1130", + "stop_code": "31130", + "stop_name": "Edgar et Gauthier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Edgar et Gauthier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4599926058524, + 45.4937837066591 + ] + } + }, + { + "id": "4753", + "code": "34753", + "data": { + "gtfs": { + "stop_id": "4753", + "stop_code": "34753", + "stop_name": "Edgar et Gauthier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Edgar et Gauthier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4596483893916, + 45.4934820350881 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0379216066837 + }, + "name": "Edgar et Gauthier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459820498, + 45.493632871 + ] + }, + "is_frozen": false, + "integer_id": 96, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459131, + 45.492701 + ] + }, + "id": 97, + "properties": { + "id": "912a81e5-66f7-4af9-8125-ae16515fe284", + "code": "31131", + "data": { + "stops": [ + { + "id": "1131", + "code": "31131", + "data": { + "gtfs": { + "stop_id": "1131", + "stop_code": "31131", + "stop_name": "Edgar et Murray", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Edgar et Murray", + "geography": { + "type": "Point", + "coordinates": [ + -73.4591313995214, + 45.4927010156368 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0221855250703 + }, + "name": "Edgar et Murray", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.4591314, + 45.492701016 + ] + }, + "is_frozen": false, + "integer_id": 97, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457872, + 45.490893 + ] + }, + "id": 98, + "properties": { + "id": "504ca07a-925d-4f9a-9b79-37177c38a6d1", + "code": "31133", + "data": { + "stops": [ + { + "id": "1133", + "code": "31133", + "data": { + "gtfs": { + "stop_id": "1133", + "stop_code": "31133", + "stop_name": "9e Avenue et Soucy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "9e Avenue et Soucy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4578720068467, + 45.4908933835896 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9916625438102 + }, + "name": "9e Avenue et Soucy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457872007, + 45.490893384 + ] + }, + "is_frozen": false, + "integer_id": 98, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454807, + 45.492607 + ] + }, + "id": 99, + "properties": { + "id": "923afb03-b5b7-44ed-a97d-4785d2468e97", + "code": "31134", + "data": { + "stops": [ + { + "id": "1134", + "code": "31134", + "data": { + "gtfs": { + "stop_id": "1134", + "stop_code": "31134", + "stop_name": "Soucy et 8e Avenue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Soucy et 8e Avenue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4547689109325, + 45.4924870109032 + ] + } + }, + { + "id": "2893", + "code": "32893", + "data": { + "gtfs": { + "stop_id": "2893", + "stop_code": "32893", + "stop_name": "Soucy et 8e Avenue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Soucy et 8e Avenue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4547072687931, + 45.4927278560028 + ] + } + }, + { + "id": "2916", + "code": "32916", + "data": { + "gtfs": { + "stop_id": "2916", + "stop_code": "32916", + "stop_name": "8e Avenue et Soucy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "8e Avenue et Soucy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4549076434716, + 45.4926469492563 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0206052470666 + }, + "name": "Soucy et 8e Avenue", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454807456, + 45.492607433 + ] + }, + "is_frozen": false, + "integer_id": 99, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451974, + 45.494548 + ] + }, + "id": 100, + "properties": { + "id": "43297c29-6e25-4fbe-a1b6-70a1ce96533d", + "code": "31135", + "data": { + "stops": [ + { + "id": "1135", + "code": "31135", + "data": { + "gtfs": { + "stop_id": "1135", + "stop_code": "31135", + "stop_name": "Soucy et 7e Avenue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Soucy et 7e Avenue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4517999259104, + 45.4942773989221 + ] + } + }, + { + "id": "2892", + "code": "32892", + "data": { + "gtfs": { + "stop_id": "2892", + "stop_code": "32892", + "stop_name": "Soucy et 7e Avenue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Soucy et 7e Avenue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4517446787605, + 45.4945173335033 + ] + } + }, + { + "id": "5922", + "code": "30800", + "data": { + "gtfs": { + "stop_id": "5922", + "stop_code": "30800", + "stop_name": "7e Avenue et Balmoral", + "location_type": 0, + "parent_station": "" + } + }, + "name": "7e Avenue et Balmoral", + "geography": { + "type": "Point", + "coordinates": [ + -73.452202382235, + 45.4948181414412 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0533721065054 + }, + "name": "Soucy et 7e Avenue", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45197353, + 45.49454777 + ] + }, + "is_frozen": false, + "integer_id": 100, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449025, + 45.496026 + ] + }, + "id": 101, + "properties": { + "id": "c6b0edc5-b07e-4471-93c5-2b6117d67602", + "code": "31136", + "data": { + "stops": [ + { + "id": "1136", + "code": "31136", + "data": { + "gtfs": { + "stop_id": "1136", + "stop_code": "31136", + "stop_name": "Soucy et 6e Avenue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Soucy et 6e Avenue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4488114325509, + 45.496046287781 + ] + } + }, + { + "id": "2891", + "code": "32891", + "data": { + "gtfs": { + "stop_id": "2891", + "stop_code": "32891", + "stop_name": "Soucy et 6e Avenue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Soucy et 6e Avenue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4492383951095, + 45.4960054895116 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0783356452184 + }, + "name": "Soucy et 6e Avenue", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449024914, + 45.496025889 + ] + }, + "is_frozen": false, + "integer_id": 101, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44746, + 45.496977 + ] + }, + "id": 102, + "properties": { + "id": "e49c515c-3414-4a88-aaec-43f9499177ec", + "code": "31137", + "data": { + "stops": [ + { + "id": "1137", + "code": "31137", + "data": { + "gtfs": { + "stop_id": "1137", + "stop_code": "31137", + "stop_name": "Soucy et boul. Maricourt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Soucy et boul. Maricourt", + "geography": { + "type": "Point", + "coordinates": [ + -73.4476753479867, + 45.4967219167785 + ] + } + }, + { + "id": "2890", + "code": "32890", + "data": { + "gtfs": { + "stop_id": "2890", + "stop_code": "32890", + "stop_name": "Soucy et boul. Maricourt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Soucy et boul. Maricourt", + "geography": { + "type": "Point", + "coordinates": [ + -73.4472452336979, + 45.4972328735294 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0944063923777 + }, + "name": "Soucy et boul. Maricourt", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447460291, + 45.496977395 + ] + }, + "is_frozen": false, + "integer_id": 102, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46073, + 45.501908 + ] + }, + "id": 103, + "properties": { + "id": "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", + "code": "31144", + "data": { + "stops": [ + { + "id": "1144", + "code": "31144", + "data": { + "gtfs": { + "stop_id": "1144", + "stop_code": "31144", + "stop_name": "Joubert et Stratton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joubert et Stratton", + "geography": { + "type": "Point", + "coordinates": [ + -73.4607480710062, + 45.5020344776593 + ] + } + }, + { + "id": "3771", + "code": "33771", + "data": { + "gtfs": { + "stop_id": "3771", + "stop_code": "33771", + "stop_name": "Joubert et Holmes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joubert et Holmes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4607117806852, + 45.5017823408144 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1777031420269 + }, + "name": "Joubert et Stratton", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.460729926, + 45.501908409 + ] + }, + "is_frozen": false, + "integer_id": 103, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463166, + 45.502938 + ] + }, + "id": 104, + "properties": { + "id": "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", + "code": "31146", + "data": { + "stops": [ + { + "id": "1146", + "code": "31146", + "data": { + "gtfs": { + "stop_id": "1146", + "stop_code": "31146", + "stop_name": "Alexandra et Georges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Alexandra et Georges", + "geography": { + "type": "Point", + "coordinates": [ + -73.463214137482, + 45.5030923018296 + ] + } + }, + { + "id": "4892", + "code": "34892", + "data": { + "gtfs": { + "stop_id": "4892", + "stop_code": "34892", + "stop_name": "Alexandra et Georges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Alexandra et Georges", + "geography": { + "type": "Point", + "coordinates": [ + -73.4631176735562, + 45.5027839700998 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.195100451787 + }, + "name": "Alexandra et Georges", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463165906, + 45.502938136 + ] + }, + "is_frozen": false, + "integer_id": 104, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.484049, + 45.496893 + ] + }, + "id": 105, + "properties": { + "id": "fd062866-a8eb-4466-b53a-6adf8fc3f09a", + "code": "31155", + "data": { + "stops": [ + { + "id": "1155", + "code": "31155", + "data": { + "gtfs": { + "stop_id": "1155", + "stop_code": "31155", + "stop_name": "Mary et boul. Taschereau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Mary et boul. Taschereau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4841358023402, + 45.4970008275788 + ] + } + }, + { + "id": "1240", + "code": "31240", + "data": { + "gtfs": { + "stop_id": "1240", + "stop_code": "31240", + "stop_name": "boul. Taschereau et Mary", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Mary", + "geography": { + "type": "Point", + "coordinates": [ + -73.4839613412325, + 45.4967846030979 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0929761313645 + }, + "name": "Mary et boul. Taschereau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.484048572, + 45.496892715 + ] + }, + "is_frozen": false, + "integer_id": 105, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492831, + 45.510191 + ] + }, + "id": 106, + "properties": { + "id": "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", + "code": "31157", + "data": { + "stops": [ + { + "id": "1157", + "code": "31157", + "data": { + "gtfs": { + "stop_id": "1157", + "stop_code": "31157", + "stop_name": "boul. Taschereau et boul. Curé-Poirier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et boul. Curé-Poirier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4928309865253, + 45.5101909802156 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3176644935368 + }, + "name": "boul. Taschereau et boul. Curé-Poirier ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492830987, + 45.51019098 + ] + }, + "is_frozen": false, + "integer_id": 106, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.500849, + 45.513075 + ] + }, + "id": 107, + "properties": { + "id": "a5b9648a-83c0-4eab-a54b-68c23aecae43", + "code": "31158", + "data": { + "stops": [ + { + "id": "1158", + "code": "31158", + "data": { + "gtfs": { + "stop_id": "1158", + "stop_code": "31158", + "stop_name": "boul. Taschereau et ch. du Coteau-Rouge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et ch. du Coteau-Rouge", + "geography": { + "type": "Point", + "coordinates": [ + -73.5008493289044, + 45.5130749147072 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3664124210715 + }, + "name": "boul. Taschereau et ch. du Coteau-Rouge", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.500849329, + 45.513074915 + ] + }, + "is_frozen": false, + "integer_id": 107, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.505085, + 45.514554 + ] + }, + "id": 108, + "properties": { + "id": "a9942a30-a6ad-484e-9e20-4748407133ba", + "code": "31159", + "data": { + "stops": [ + { + "id": "1159", + "code": "31159", + "data": { + "gtfs": { + "stop_id": "1159", + "stop_code": "31159", + "stop_name": "boul. Taschereau et boul. Desaulniers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et boul. Desaulniers", + "geography": { + "type": "Point", + "coordinates": [ + -73.5050849152938, + 45.514553578722 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3914095479208 + }, + "name": "boul. Taschereau et boul. Desaulniers", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.505084915, + 45.514553579 + ] + }, + "is_frozen": false, + "integer_id": 108, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513365, + 45.518332 + ] + }, + "id": 109, + "properties": { + "id": "be19484c-af95-45b2-bfe5-24342dd1b710", + "code": "31161", + "data": { + "stops": [ + { + "id": "1161", + "code": "31161", + "data": { + "gtfs": { + "stop_id": "1161", + "stop_code": "31161", + "stop_name": "boul. Taschereau et boul. La Fayette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et boul. La Fayette", + "geography": { + "type": "Point", + "coordinates": [ + -73.5133648200166, + 45.5183320772084 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4552946999769 + }, + "name": "boul. Taschereau et boul. La Fayette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.51336482, + 45.518332077 + ] + }, + "is_frozen": false, + "integer_id": 109, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.514968, + 45.519474 + ] + }, + "id": 110, + "properties": { + "id": "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", + "code": "31162", + "data": { + "stops": [ + { + "id": "1162", + "code": "31162", + "data": { + "gtfs": { + "stop_id": "1162", + "stop_code": "31162", + "stop_name": "boul. La Fayette et de la Providence", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et de la Providence", + "geography": { + "type": "Point", + "coordinates": [ + -73.5149679935974, + 45.5194737535124 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4746001653377 + }, + "name": "boul. La Fayette et de la Providence", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.514967994, + 45.519473754 + ] + }, + "is_frozen": false, + "integer_id": 110, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.485381, + 45.497341 + ] + }, + "id": 111, + "properties": { + "id": "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", + "code": "31165", + "data": { + "stops": [ + { + "id": "1165", + "code": "31165", + "data": { + "gtfs": { + "stop_id": "1165", + "stop_code": "31165", + "stop_name": "boul. Taschereau et HOPITAL CHARLES-LEMOYNE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et HOPITAL CHARLES-LEMOYNE", + "geography": { + "type": "Point", + "coordinates": [ + -73.485381068438, + 45.4973409943717 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1005477198878 + }, + "name": "boul. Taschereau et HOPITAL CHARLES-LEMOYNE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.485381068, + 45.497340994 + ] + }, + "is_frozen": false, + "integer_id": 111, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.484565, + 45.496703 + ] + }, + "id": 112, + "properties": { + "id": "7ad37664-fa6b-478f-8d31-2d3ae7009709", + "code": "31166", + "data": { + "stops": [ + { + "id": "1166", + "code": "31166", + "data": { + "gtfs": { + "stop_id": "1166", + "stop_code": "31166", + "stop_name": "boul. Taschereau et Mary", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Mary", + "geography": { + "type": "Point", + "coordinates": [ + -73.4845651428639, + 45.4967034420623 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0897792981134 + }, + "name": "boul. Taschereau et Mary", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.484565143, + 45.496703442 + ] + }, + "is_frozen": false, + "integer_id": 112, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479654, + 45.493459 + ] + }, + "id": 113, + "properties": { + "id": "94cd69e7-ebc9-452b-a357-367107db73b4", + "code": "31168", + "data": { + "stops": [ + { + "id": "1168", + "code": "31168", + "data": { + "gtfs": { + "stop_id": "1168", + "stop_code": "31168", + "stop_name": "boul. Taschereau et Gladstone", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Gladstone", + "geography": { + "type": "Point", + "coordinates": [ + -73.4796537317124, + 45.4934593982795 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0349921382542 + }, + "name": "boul. Taschereau et Gladstone", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479653732, + 45.493459398 + ] + }, + "is_frozen": false, + "integer_id": 113, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474275, + 45.490163 + ] + }, + "id": 114, + "properties": { + "id": "03b1ef77-b509-4f21-97d5-d511eeb821cb", + "code": "31169", + "data": { + "stops": [ + { + "id": "1169", + "code": "31169", + "data": { + "gtfs": { + "stop_id": "1169", + "stop_code": "31169", + "stop_name": "boul. Taschereau et Margaret", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Margaret", + "geography": { + "type": "Point", + "coordinates": [ + -73.4746266010101, + 45.4901541216301 + ] + } + }, + { + "id": "1237", + "code": "31237", + "data": { + "gtfs": { + "stop_id": "1237", + "stop_code": "31237", + "stop_name": "boul. Taschereau et Charles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Charles", + "geography": { + "type": "Point", + "coordinates": [ + -73.47392253719, + 45.490172175034 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9793328825763 + }, + "name": "boul. Taschereau et Margaret", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474274569, + 45.490163148 + ] + }, + "is_frozen": false, + "integer_id": 114, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.472236, + 45.488539 + ] + }, + "id": 115, + "properties": { + "id": "351136d8-2c40-4c3f-8032-a52e48738c07", + "code": "31170", + "data": { + "stops": [ + { + "id": "1170", + "code": "31170", + "data": { + "gtfs": { + "stop_id": "1170", + "stop_code": "31170", + "stop_name": "boul. Taschereau et Regent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Regent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4722356373804, + 45.4885387195244 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9519069475381 + }, + "name": "boul. Taschereau et Regent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472235637, + 45.48853872 + ] + }, + "is_frozen": false, + "integer_id": 115, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460898, + 45.480305 + ] + }, + "id": 116, + "properties": { + "id": "10c2e9e3-14c8-465a-917c-28c8d9977609", + "code": "31173", + "data": { + "stops": [ + { + "id": "1173", + "code": "31173", + "data": { + "gtfs": { + "stop_id": "1173", + "stop_code": "31173", + "stop_name": "Alphonse et Arbour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Alphonse et Arbour", + "geography": { + "type": "Point", + "coordinates": [ + -73.460999100828, + 45.4801638328937 + ] + } + }, + { + "id": "1232", + "code": "31232", + "data": { + "gtfs": { + "stop_id": "1232", + "stop_code": "31232", + "stop_name": "Alphonse et Arbour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Alphonse et Arbour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4609743588663, + 45.4804467533199 + ] + } + }, + { + "id": "2175", + "code": "32175", + "data": { + "gtfs": { + "stop_id": "2175", + "stop_code": "32175", + "stop_name": "Arbour et Alphonse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Arbour et Alphonse", + "geography": { + "type": "Point", + "coordinates": [ + -73.4607975556123, + 45.4802807439661 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.81293444233 + }, + "name": "Alphonse et Arbour", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.460898328, + 45.480305293 + ] + }, + "is_frozen": false, + "integer_id": 116, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457164, + 45.482867 + ] + }, + "id": 117, + "properties": { + "id": "fd67ddde-e938-481c-8721-79fa136304ae", + "code": "31174", + "data": { + "stops": [ + { + "id": "1174", + "code": "31174", + "data": { + "gtfs": { + "stop_id": "1174", + "stop_code": "31174", + "stop_name": "Alphonse et av. Auguste", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Alphonse et av. Auguste", + "geography": { + "type": "Point", + "coordinates": [ + -73.4571637639873, + 45.4828672435316 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8561713083859 + }, + "name": "Alphonse et av. Auguste", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457163764, + 45.482867244 + ] + }, + "is_frozen": false, + "integer_id": 117, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460519, + 45.483821 + ] + }, + "id": 118, + "properties": { + "id": "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", + "code": "31175", + "data": { + "stops": [ + { + "id": "1175", + "code": "31175", + "data": { + "gtfs": { + "stop_id": "1175", + "stop_code": "31175", + "stop_name": "av. Auguste et Adam", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auguste et Adam", + "geography": { + "type": "Point", + "coordinates": [ + -73.460519392204, + 45.4838214472691 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8722764435349 + }, + "name": "av. Auguste et Adam", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.460519392, + 45.483821447 + ] + }, + "is_frozen": false, + "integer_id": 118, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459359, + 45.485508 + ] + }, + "id": 119, + "properties": { + "id": "c24b91da-a4a3-4b28-b987-5726c6a01fdb", + "code": "31176", + "data": { + "stops": [ + { + "id": "1176", + "code": "31176", + "data": { + "gtfs": { + "stop_id": "1176", + "stop_code": "31176", + "stop_name": "Adam et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adam et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4594511658038, + 45.4854273943605 + ] + } + }, + { + "id": "1844", + "code": "31844", + "data": { + "gtfs": { + "stop_id": "1844", + "stop_code": "31844", + "stop_name": "Grande Allée et Bellevue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Bellevue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4592667276434, + 45.4855890238325 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9007477637125 + }, + "name": "Adam et Grande Allée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459358947, + 45.485508209 + ] + }, + "is_frozen": false, + "integer_id": 119, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457814, + 45.486593 + ] + }, + "id": 120, + "properties": { + "id": "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", + "code": "31177", + "data": { + "stops": [ + { + "id": "1177", + "code": "31177", + "data": { + "gtfs": { + "stop_id": "1177", + "stop_code": "31177", + "stop_name": "Bellevue et MacGregor", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et MacGregor", + "geography": { + "type": "Point", + "coordinates": [ + -73.4578093272258, + 45.4864862358201 + ] + } + }, + { + "id": "1228", + "code": "31228", + "data": { + "gtfs": { + "stop_id": "1228", + "stop_code": "31228", + "stop_name": "Bellevue et MacGregor", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et MacGregor", + "geography": { + "type": "Point", + "coordinates": [ + -73.4578177985657, + 45.4867005641813 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.91906633838 + }, + "name": "Bellevue et MacGregor", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457813563, + 45.4865934 + ] + }, + "is_frozen": false, + "integer_id": 120, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456912, + 45.487957 + ] + }, + "id": 121, + "properties": { + "id": "92b7c0ae-f6b4-40be-bac0-c87467170afd", + "code": "31178", + "data": { + "stops": [ + { + "id": "1178", + "code": "31178", + "data": { + "gtfs": { + "stop_id": "1178", + "stop_code": "31178", + "stop_name": "Bellevue et Park", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et Park", + "geography": { + "type": "Point", + "coordinates": [ + -73.4568243415877, + 45.4878323237521 + ] + } + }, + { + "id": "1227", + "code": "31227", + "data": { + "gtfs": { + "stop_id": "1227", + "stop_code": "31227", + "stop_name": "Bellevue et Park", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et Park", + "geography": { + "type": "Point", + "coordinates": [ + -73.4569986960102, + 45.488081568414 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9420851708858 + }, + "name": "Bellevue et Park", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456911519, + 45.487956946 + ] + }, + "is_frozen": false, + "integer_id": 121, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45662, + 45.489823 + ] + }, + "id": 122, + "properties": { + "id": "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", + "code": "31179", + "data": { + "stops": [ + { + "id": "1179", + "code": "31179", + "data": { + "gtfs": { + "stop_id": "1179", + "stop_code": "31179", + "stop_name": "Bellevue et William-Barfoot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et William-Barfoot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4564519213521, + 45.4899607393667 + ] + } + }, + { + "id": "1226", + "code": "31226", + "data": { + "gtfs": { + "stop_id": "1226", + "stop_code": "31226", + "stop_name": "Bellevue et William-Barfoot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et William-Barfoot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4567871217983, + 45.4896854735637 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9735916092026 + }, + "name": "Bellevue et William-Barfoot", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456619522, + 45.489823106 + ] + }, + "is_frozen": false, + "integer_id": 122, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454779, + 45.491078 + ] + }, + "id": 123, + "properties": { + "id": "da4ca96f-4db9-4287-b307-afc6221c923f", + "code": "31180", + "data": { + "stops": [ + { + "id": "1180", + "code": "31180", + "data": { + "gtfs": { + "stop_id": "1180", + "stop_code": "31180", + "stop_name": "Bellevue et du Centenaire", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et du Centenaire", + "geography": { + "type": "Point", + "coordinates": [ + -73.4549658485358, + 45.4909849048699 + ] + } + }, + { + "id": "1225", + "code": "31225", + "data": { + "gtfs": { + "stop_id": "1225", + "stop_code": "31225", + "stop_name": "du Centenaire et Bellevue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Centenaire et Bellevue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4545925721985, + 45.491171078989 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9947796305275 + }, + "name": "Bellevue et du Centenaire", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45477921, + 45.491077992 + ] + }, + "is_frozen": false, + "integer_id": 123, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452452, + 45.488645 + ] + }, + "id": 124, + "properties": { + "id": "517a8299-e807-4040-8ccd-f417dda7338c", + "code": "31181", + "data": { + "stops": [ + { + "id": "1181", + "code": "31181", + "data": { + "gtfs": { + "stop_id": "1181", + "stop_code": "31181", + "stop_name": "du Centenaire et de l'École", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Centenaire et de l'École", + "geography": { + "type": "Point", + "coordinates": [ + -73.4524859775014, + 45.4889179702114 + ] + } + }, + { + "id": "1224", + "code": "31224", + "data": { + "gtfs": { + "stop_id": "1224", + "stop_code": "31224", + "stop_name": "du Centenaire et de l'École", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Centenaire et de l'École", + "geography": { + "type": "Point", + "coordinates": [ + -73.4522100962365, + 45.4889106824585 + ] + } + }, + { + "id": "5723", + "code": "30492", + "data": { + "gtfs": { + "stop_id": "5723", + "stop_code": "30492", + "stop_name": "de l'École et ECOLE SECONDAIRE L'AGORA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de l'École et ECOLE SECONDAIRE L'AGORA", + "geography": { + "type": "Point", + "coordinates": [ + -73.4527725773841, + 45.4883722878915 + ] + } + }, + { + "id": "5724", + "code": "30493", + "data": { + "gtfs": { + "stop_id": "5724", + "stop_code": "30493", + "stop_name": "du Centenaire et ECOLE SECONDAIRE L'AGORA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Centenaire et ECOLE SECONDAIRE L'AGORA", + "geography": { + "type": "Point", + "coordinates": [ + -73.452131156816, + 45.4887558130286 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9537034258464 + }, + "name": "du Centenaire et de l'École", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452451867, + 45.488645129 + ] + }, + "is_frozen": false, + "integer_id": 124, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450711, + 45.488542 + ] + }, + "id": 125, + "properties": { + "id": "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", + "code": "31182", + "data": { + "stops": [ + { + "id": "1182", + "code": "31182", + "data": { + "gtfs": { + "stop_id": "1182", + "stop_code": "31182", + "stop_name": "du Centenaire et du Centenaire", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Centenaire et du Centenaire", + "geography": { + "type": "Point", + "coordinates": [ + -73.4507551946638, + 45.4884384591872 + ] + } + }, + { + "id": "1223", + "code": "31223", + "data": { + "gtfs": { + "stop_id": "1223", + "stop_code": "31223", + "stop_name": "Ivry et du Centenaire", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ivry et du Centenaire", + "geography": { + "type": "Point", + "coordinates": [ + -73.4506669262016, + 45.4886453018395 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9519603138182 + }, + "name": "du Centenaire et du Centenaire", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45071106, + 45.488541881 + ] + }, + "is_frozen": false, + "integer_id": 125, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449484, + 45.489797 + ] + }, + "id": 126, + "properties": { + "id": "4262a22a-885d-4877-ad99-0a8406e2adaa", + "code": "31183", + "data": { + "stops": [ + { + "id": "1183", + "code": "31183", + "data": { + "gtfs": { + "stop_id": "1183", + "stop_code": "31183", + "stop_name": "Ivry et Madel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ivry et Madel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4495748961613, + 45.4896499521201 + ] + } + }, + { + "id": "1222", + "code": "31222", + "data": { + "gtfs": { + "stop_id": "1222", + "stop_code": "31222", + "stop_name": "Ivry et Andrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ivry et Andrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4493935028331, + 45.4899446845622 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9731562084829 + }, + "name": "Ivry et Madel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449484199, + 45.489797318 + ] + }, + "is_frozen": false, + "integer_id": 126, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44729, + 45.491001 + ] + }, + "id": 127, + "properties": { + "id": "0f232130-277e-4d7b-b106-b6821c45f0a9", + "code": "31184", + "data": { + "stops": [ + { + "id": "1184", + "code": "31184", + "data": { + "gtfs": { + "stop_id": "1184", + "stop_code": "31184", + "stop_name": "Ivry et Bellevue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ivry et Bellevue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4473950226294, + 45.4909482256177 + ] + } + }, + { + "id": "4368", + "code": "34368", + "data": { + "gtfs": { + "stop_id": "4368", + "stop_code": "34368", + "stop_name": "Bellevue et Ivry", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et Ivry", + "geography": { + "type": "Point", + "coordinates": [ + -73.4471856840377, + 45.4910534090796 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9934765350604 + }, + "name": "Ivry et Bellevue", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447290353, + 45.491000817 + ] + }, + "is_frozen": false, + "integer_id": 127, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443741, + 45.491275 + ] + }, + "id": 128, + "properties": { + "id": "7650e289-ca0a-45d4-ad94-da11b1683dc6", + "code": "31186", + "data": { + "stops": [ + { + "id": "1186", + "code": "31186", + "data": { + "gtfs": { + "stop_id": "1186", + "stop_code": "31186", + "stop_name": "Hudson et Dominion", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Hudson et Dominion", + "geography": { + "type": "Point", + "coordinates": [ + -73.4438371936539, + 45.4911678756227 + ] + } + }, + { + "id": "2156", + "code": "32156", + "data": { + "gtfs": { + "stop_id": "2156", + "stop_code": "32156", + "stop_name": "Dominion et Hudson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Dominion et Hudson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4432942643934, + 45.4912965065763 + ] + } + }, + { + "id": "4076", + "code": "34076", + "data": { + "gtfs": { + "stop_id": "4076", + "stop_code": "34076", + "stop_name": "Dominion et Hudson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Dominion et Hudson", + "geography": { + "type": "Point", + "coordinates": [ + -73.444187353238, + 45.4913824316936 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9981087236861 + }, + "name": "Hudson et Dominion", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443740809, + 45.491275154 + ] + }, + "is_frozen": false, + "integer_id": 128, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443416, + 45.492945 + ] + }, + "id": 129, + "properties": { + "id": "6d59a527-4747-4d6f-9acd-29b4758d8c2c", + "code": "31187", + "data": { + "stops": [ + { + "id": "1187", + "code": "31187", + "data": { + "gtfs": { + "stop_id": "1187", + "stop_code": "31187", + "stop_name": "Legault et Baker", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Legault et Baker", + "geography": { + "type": "Point", + "coordinates": [ + -73.4434343630364, + 45.492814465692 + ] + } + }, + { + "id": "1218", + "code": "31218", + "data": { + "gtfs": { + "stop_id": "1218", + "stop_code": "31218", + "stop_name": "Legault et Baker", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Legault et Baker", + "geography": { + "type": "Point", + "coordinates": [ + -73.443398412736, + 45.4930760723112 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0263101104892 + }, + "name": "Legault et Baker", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443416388, + 45.492945269 + ] + }, + "is_frozen": false, + "integer_id": 129, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442338, + 45.493848 + ] + }, + "id": 130, + "properties": { + "id": "617e606b-4ed1-4dba-9147-4a51b4bb23f4", + "code": "31188", + "data": { + "stops": [ + { + "id": "1188", + "code": "31188", + "data": { + "gtfs": { + "stop_id": "1188", + "stop_code": "31188", + "stop_name": "Legault et Jeary", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Legault et Jeary", + "geography": { + "type": "Point", + "coordinates": [ + -73.4423865672923, + 45.4937707674621 + ] + } + }, + { + "id": "1217", + "code": "31217", + "data": { + "gtfs": { + "stop_id": "1217", + "stop_code": "31217", + "stop_name": "Jeary et Legault", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jeary et Legault", + "geography": { + "type": "Point", + "coordinates": [ + -73.442290035, + 45.493924276296 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0415464921409 + }, + "name": "Legault et Jeary", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442338301, + 45.493847522 + ] + }, + "is_frozen": false, + "integer_id": 130, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44063, + 45.492921 + ] + }, + "id": 131, + "properties": { + "id": "5aef33db-0b7d-4b46-a545-a163c8806e46", + "code": "31189", + "data": { + "stops": [ + { + "id": "1189", + "code": "31189", + "data": { + "gtfs": { + "stop_id": "1189", + "stop_code": "31189", + "stop_name": "Jeary et Geoffrion", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jeary et Geoffrion", + "geography": { + "type": "Point", + "coordinates": [ + -73.4407839764589, + 45.4929232571851 + ] + } + }, + { + "id": "1216", + "code": "31216", + "data": { + "gtfs": { + "stop_id": "1216", + "stop_code": "31216", + "stop_name": "Jeary et Geoffrion", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jeary et Geoffrion", + "geography": { + "type": "Point", + "coordinates": [ + -73.440475099, + 45.4929192921048 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0259049327572 + }, + "name": "Jeary et Geoffrion", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440629538, + 45.492921275 + ] + }, + "is_frozen": false, + "integer_id": 131, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440222, + 45.490647 + ] + }, + "id": 132, + "properties": { + "id": "5cb52e5c-c1b7-4111-984c-122d6e4401d5", + "code": "31190", + "data": { + "stops": [ + { + "id": "1190", + "code": "31190", + "data": { + "gtfs": { + "stop_id": "1190", + "stop_code": "31190", + "stop_name": "Cummings et Dominion", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Cummings et Dominion", + "geography": { + "type": "Point", + "coordinates": [ + -73.4399980607261, + 45.4907099235175 + ] + } + }, + { + "id": "1214", + "code": "31214", + "data": { + "gtfs": { + "stop_id": "1214", + "stop_code": "31214", + "stop_name": "Cummings et Dominion", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Cummings et Dominion", + "geography": { + "type": "Point", + "coordinates": [ + -73.4398626794751, + 45.4905658771258 + ] + } + }, + { + "id": "2155", + "code": "32155", + "data": { + "gtfs": { + "stop_id": "2155", + "stop_code": "32155", + "stop_name": "Dominion et Cabot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Dominion et Cabot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4405817000586, + 45.4907822161948 + ] + } + }, + { + "id": "2176", + "code": "32176", + "data": { + "gtfs": { + "stop_id": "2176", + "stop_code": "32176", + "stop_name": "Dominion et Cummings", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Dominion et Cummings", + "geography": { + "type": "Point", + "coordinates": [ + -73.4401150135222, + 45.4905120189897 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9875044154098 + }, + "name": "Cummings et Dominion", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44022219, + 45.490647118 + ] + }, + "is_frozen": false, + "integer_id": 132, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440562, + 45.489313 + ] + }, + "id": 133, + "properties": { + "id": "6e3cdc85-5c0c-43a6-859f-4ad3aa775f67", + "code": "31191", + "data": { + "stops": [ + { + "id": "1191", + "code": "31191", + "data": { + "gtfs": { + "stop_id": "1191", + "stop_code": "31191", + "stop_name": "Cummings et Hart", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Cummings et Hart", + "geography": { + "type": "Point", + "coordinates": [ + -73.4406219184471, + 45.4894089151405 + ] + } + }, + { + "id": "3982", + "code": "33982", + "data": { + "gtfs": { + "stop_id": "3982", + "stop_code": "33982", + "stop_name": "Cummings et Hart", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Cummings et Hart", + "geography": { + "type": "Point", + "coordinates": [ + -73.4405014595113, + 45.4892164439597 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9649737632469 + }, + "name": "Cummings et Hart", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440561689, + 45.48931268 + ] + }, + "is_frozen": false, + "integer_id": 133, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441522, + 45.488401 + ] + }, + "id": 134, + "properties": { + "id": "5a038102-c755-4ed1-808d-b41a0eb02aa9", + "code": "31192", + "data": { + "stops": [ + { + "id": "1192", + "code": "31192", + "data": { + "gtfs": { + "stop_id": "1192", + "stop_code": "31192", + "stop_name": "Cummings et Gaudry", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Cummings et Gaudry", + "geography": { + "type": "Point", + "coordinates": [ + -73.4414691016001, + 45.4885110989401 + ] + } + }, + { + "id": "1212", + "code": "31212", + "data": { + "gtfs": { + "stop_id": "1212", + "stop_code": "31212", + "stop_name": "Cummings et Gaudry", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Cummings et Gaudry", + "geography": { + "type": "Point", + "coordinates": [ + -73.4415757942678, + 45.4882901578402 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9495755875469 + }, + "name": "Cummings et Gaudry", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441522448, + 45.488400628 + ] + }, + "is_frozen": false, + "integer_id": 134, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442431, + 45.485464 + ] + }, + "id": 135, + "properties": { + "id": "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", + "code": "31193", + "data": { + "stops": [ + { + "id": "1193", + "code": "31193", + "data": { + "gtfs": { + "stop_id": "1193", + "stop_code": "31193", + "stop_name": "boul. Payer et Kelly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Kelly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4426846640543, + 45.4854744485656 + ] + } + }, + { + "id": "1210", + "code": "31210", + "data": { + "gtfs": { + "stop_id": "1210", + "stop_code": "31210", + "stop_name": "boul. Payer et Jarry", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Jarry", + "geography": { + "type": "Point", + "coordinates": [ + -73.4421771619682, + 45.4854533217724 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8999995743571 + }, + "name": "boul. Payer et Kelly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442430913, + 45.485463885 + ] + }, + "is_frozen": false, + "integer_id": 135, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440773, + 45.484283 + ] + }, + "id": 136, + "properties": { + "id": "b934caec-f3a1-4894-b7b5-6872a3d78790", + "code": "31194", + "data": { + "stops": [ + { + "id": "1194", + "code": "31194", + "data": { + "gtfs": { + "stop_id": "1194", + "stop_code": "31194", + "stop_name": "boul. Payer et montée Saint-Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et montée Saint-Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4410536045981, + 45.4841371016805 + ] + } + }, + { + "id": "1251", + "code": "31251", + "data": { + "gtfs": { + "stop_id": "1251", + "stop_code": "31251", + "stop_name": "montée Saint-Hubert et boul. Payer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et boul. Payer", + "geography": { + "type": "Point", + "coordinates": [ + -73.440924227215, + 45.4839928399159 + ] + } + }, + { + "id": "1304", + "code": "31304", + "data": { + "gtfs": { + "stop_id": "1304", + "stop_code": "31304", + "stop_name": "montée Saint-Hubert et boul. Payer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et boul. Payer", + "geography": { + "type": "Point", + "coordinates": [ + -73.4406426810512, + 45.4843355739894 + ] + } + }, + { + "id": "3494", + "code": "33494", + "data": { + "gtfs": { + "stop_id": "3494", + "stop_code": "33494", + "stop_name": "montée Saint-Hubert et boul. Payer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et boul. Payer", + "geography": { + "type": "Point", + "coordinates": [ + -73.4404315347924, + 45.4842858969589 + ] + } + }, + { + "id": "3495", + "code": "33495", + "data": { + "gtfs": { + "stop_id": "3495", + "stop_code": "33495", + "stop_name": "boul. Payer et montée Saint-Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et montée Saint-Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4411154625082, + 45.4845733969174 + ] + } + }, + { + "id": "3626", + "code": "33626", + "data": { + "gtfs": { + "stop_id": "3626", + "stop_code": "33626", + "stop_name": "boul. Payer et montée Saint-Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et montée Saint-Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4405838469046, + 45.4841710209574 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8800688640697 + }, + "name": "boul. Payer et montée Saint-Hubert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440773499, + 45.484283118 + ] + }, + "is_frozen": false, + "integer_id": 136, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439, + 45.482787 + ] + }, + "id": 137, + "properties": { + "id": "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", + "code": "31195", + "data": { + "stops": [ + { + "id": "1195", + "code": "31195", + "data": { + "gtfs": { + "stop_id": "1195", + "stop_code": "31195", + "stop_name": "boul. Payer et de la Légion", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et de la Légion", + "geography": { + "type": "Point", + "coordinates": [ + -73.4392245825978, + 45.482768377076 + ] + } + }, + { + "id": "1209", + "code": "31209", + "data": { + "gtfs": { + "stop_id": "1209", + "stop_code": "31209", + "stop_name": "boul. Payer et de la Légion", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et de la Légion", + "geography": { + "type": "Point", + "coordinates": [ + -73.4387752069842, + 45.4828064777515 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8548241856315 + }, + "name": "boul. Payer et de la Légion", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438999895, + 45.482787427 + ] + }, + "is_frozen": false, + "integer_id": 137, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437467, + 45.481725 + ] + }, + "id": 138, + "properties": { + "id": "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", + "code": "31196", + "data": { + "stops": [ + { + "id": "1196", + "code": "31196", + "data": { + "gtfs": { + "stop_id": "1196", + "stop_code": "31196", + "stop_name": "boul. Payer et Redmond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Redmond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4376989733121, + 45.4816995212883 + ] + } + }, + { + "id": "1208", + "code": "31208", + "data": { + "gtfs": { + "stop_id": "1208", + "stop_code": "31208", + "stop_name": "boul. Payer et Redmond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Redmond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4372344268243, + 45.4817500030185 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8368894456796 + }, + "name": "boul. Payer et Redmond", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.4374667, + 45.481724762 + ] + }, + "is_frozen": false, + "integer_id": 138, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.435868, + 45.480641 + ] + }, + "id": 139, + "properties": { + "id": "cd932703-83f9-4acf-94fa-d521e6d427d0", + "code": "31197", + "data": { + "stops": [ + { + "id": "1197", + "code": "31197", + "data": { + "gtfs": { + "stop_id": "1197", + "stop_code": "31197", + "stop_name": "boul. Payer et Orchard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Orchard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4361057967569, + 45.4805980453011 + ] + } + }, + { + "id": "1207", + "code": "31207", + "data": { + "gtfs": { + "stop_id": "1207", + "stop_code": "31207", + "stop_name": "boul. Payer et Orchard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Orchard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4356298709103, + 45.4806642623647 + ] + } + }, + { + "id": "2831", + "code": "32831", + "data": { + "gtfs": { + "stop_id": "2831", + "stop_code": "32831", + "stop_name": "Orchard et boul. Payer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Orchard et boul. Payer", + "geography": { + "type": "Point", + "coordinates": [ + -73.4359545610282, + 45.4804588155282 + ] + } + }, + { + "id": "2862", + "code": "32862", + "data": { + "gtfs": { + "stop_id": "2862", + "stop_code": "32862", + "stop_name": "Orchard et boul. Payer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Orchard et boul. Payer", + "geography": { + "type": "Point", + "coordinates": [ + -73.4357295335651, + 45.4808225987937 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8185947379434 + }, + "name": "boul. Payer et Orchard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.435867834, + 45.480640707 + ] + }, + "is_frozen": false, + "integer_id": 139, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.433642, + 45.479134 + ] + }, + "id": 140, + "properties": { + "id": "a09ea856-287c-4215-ad6a-dab05db66e7a", + "code": "31198", + "data": { + "stops": [ + { + "id": "1198", + "code": "31198", + "data": { + "gtfs": { + "stop_id": "1198", + "stop_code": "31198", + "stop_name": "boul. Payer et Gilbert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Gilbert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4338976012672, + 45.4791167083456 + ] + } + }, + { + "id": "1206", + "code": "31206", + "data": { + "gtfs": { + "stop_id": "1206", + "stop_code": "31206", + "stop_name": "boul. Payer et Gilbert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Gilbert", + "geography": { + "type": "Point", + "coordinates": [ + -73.433385695541, + 45.4791519378197 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7931744636957 + }, + "name": "boul. Payer et Gilbert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.433641648, + 45.479134323 + ] + }, + "is_frozen": false, + "integer_id": 140, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.43162, + 45.477747 + ] + }, + "id": 141, + "properties": { + "id": "a17f387c-1398-49f4-8a7b-291d91ebc51f", + "code": "31199", + "data": { + "stops": [ + { + "id": "1199", + "code": "31199", + "data": { + "gtfs": { + "stop_id": "1199", + "stop_code": "31199", + "stop_name": "boul. Payer et Maurice", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Maurice", + "geography": { + "type": "Point", + "coordinates": [ + -73.4317550597078, + 45.4776485305209 + ] + } + }, + { + "id": "1205", + "code": "31205", + "data": { + "gtfs": { + "stop_id": "1205", + "stop_code": "31205", + "stop_name": "boul. Payer et Maurice", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Maurice", + "geography": { + "type": "Point", + "coordinates": [ + -73.4314842141203, + 45.4778461349681 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7697707496997 + }, + "name": "boul. Payer et Maurice", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431619637, + 45.477747333 + ] + }, + "is_frozen": false, + "integer_id": 141, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.430955, + 45.476901 + ] + }, + "id": 142, + "properties": { + "id": "71881b96-39d5-48ea-9242-5e05ded39cda", + "code": "31200", + "data": { + "stops": [ + { + "id": "1200", + "code": "31200", + "data": { + "gtfs": { + "stop_id": "1200", + "stop_code": "31200", + "stop_name": "boul. Payer et boul. Gaétan-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et boul. Gaétan-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4308909430032, + 45.4770934181313 + ] + } + }, + { + "id": "2701", + "code": "32701", + "data": { + "gtfs": { + "stop_id": "2701", + "stop_code": "32701", + "stop_name": "boul. Gaétan-Boucher et boul. Payer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et boul. Payer", + "geography": { + "type": "Point", + "coordinates": [ + -73.4310198623816, + 45.4767079916288 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7554858057978 + }, + "name": "boul. Payer et boul. Gaétan-Boucher", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.430955403, + 45.476900705 + ] + }, + "is_frozen": false, + "integer_id": 142, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.428865, + 45.475842 + ] + }, + "id": 143, + "properties": { + "id": "3bdfaeff-1b70-46d9-94b3-c14187a3f83c", + "code": "31201", + "data": { + "stops": [ + { + "id": "1201", + "code": "31201", + "data": { + "gtfs": { + "stop_id": "1201", + "stop_code": "31201", + "stop_name": "boul. Payer et Boisvert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Boisvert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4288645105497, + 45.4758420208821 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7376237897561 + }, + "name": "boul. Payer et Boisvert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.428864511, + 45.475842021 + ] + }, + "is_frozen": false, + "integer_id": 143, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.427264, + 45.475103 + ] + }, + "id": 144, + "properties": { + "id": "99164719-41bf-44c1-a7e0-77b9cb1d3a3d", + "code": "31202", + "data": { + "stops": [ + { + "id": "1202", + "code": "31202", + "data": { + "gtfs": { + "stop_id": "1202", + "stop_code": "31202", + "stop_name": "boul. Payer et Bélisle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Bélisle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4275242182036, + 45.4750633628613 + ] + } + }, + { + "id": "1203", + "code": "31203", + "data": { + "gtfs": { + "stop_id": "1203", + "stop_code": "31203", + "stop_name": "boul. Payer et Bélisle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Bélisle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4270032269373, + 45.4751422725818 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7251526171937 + }, + "name": "boul. Payer et Bélisle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.427263723, + 45.475102818 + ] + }, + "is_frozen": false, + "integer_id": 144, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.429462, + 45.476506 + ] + }, + "id": 145, + "properties": { + "id": "189acf66-403d-4292-8dff-0eed1cd28768", + "code": "31204", + "data": { + "stops": [ + { + "id": "1204", + "code": "31204", + "data": { + "gtfs": { + "stop_id": "1204", + "stop_code": "31204", + "stop_name": "boul. Payer et boul. Gaétan-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et boul. Gaétan-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4294624005474, + 45.476506053321 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.748827158271 + }, + "name": "boul. Payer et boul. Gaétan-Boucher", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.429462401, + 45.476506053 + ] + }, + "is_frozen": false, + "integer_id": 145, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443726, + 45.48699 + ] + }, + "id": 146, + "properties": { + "id": "e72d0d41-60dd-429c-9fc0-986190945d76", + "code": "31211", + "data": { + "stops": [ + { + "id": "1211", + "code": "31211", + "data": { + "gtfs": { + "stop_id": "1211", + "stop_code": "31211", + "stop_name": "boul. Payer et Cummings", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Cummings", + "geography": { + "type": "Point", + "coordinates": [ + -73.4438709316725, + 45.4868225844614 + ] + } + }, + { + "id": "2154", + "code": "32154", + "data": { + "gtfs": { + "stop_id": "2154", + "stop_code": "32154", + "stop_name": "Cummings et Gaudry", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Cummings et Gaudry", + "geography": { + "type": "Point", + "coordinates": [ + -73.4434439011287, + 45.4871578623579 + ] + } + }, + { + "id": "3298", + "code": "33298", + "data": { + "gtfs": { + "stop_id": "3298", + "stop_code": "33298", + "stop_name": "Cummings et boul. Payer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Cummings et boul. Payer", + "geography": { + "type": "Point", + "coordinates": [ + -73.4440085646416, + 45.4870180948685 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9257651733649 + }, + "name": "boul. Payer et Cummings", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443726233, + 45.486990223 + ] + }, + "is_frozen": false, + "integer_id": 146, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439222, + 45.492052 + ] + }, + "id": 147, + "properties": { + "id": "b795edd3-1e6e-4c63-b5cc-c707855d4f44", + "code": "31215", + "data": { + "stops": [ + { + "id": "1215", + "code": "31215", + "data": { + "gtfs": { + "stop_id": "1215", + "stop_code": "31215", + "stop_name": "Cummings et Jeary", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Cummings et Jeary", + "geography": { + "type": "Point", + "coordinates": [ + -73.4391115449599, + 45.4919817963878 + ] + } + }, + { + "id": "2598", + "code": "32598", + "data": { + "gtfs": { + "stop_id": "2598", + "stop_code": "32598", + "stop_name": "Jeary et Cummings", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jeary et Cummings", + "geography": { + "type": "Point", + "coordinates": [ + -73.4393318397364, + 45.4921219969348 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.01122441599 + }, + "name": "Cummings et Jeary", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439221692, + 45.492051897 + ] + }, + "is_frozen": false, + "integer_id": 147, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446224, + 45.490336 + ] + }, + "id": 148, + "properties": { + "id": "35f25056-4f99-4b6e-babc-10c53194c70e", + "code": "31220", + "data": { + "stops": [ + { + "id": "1220", + "code": "31220", + "data": { + "gtfs": { + "stop_id": "1220", + "stop_code": "31220", + "stop_name": "Hudson et Bellevue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Hudson et Bellevue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4458869249713, + 45.4901504618437 + ] + } + }, + { + "id": "4158", + "code": "34158", + "data": { + "gtfs": { + "stop_id": "4158", + "stop_code": "34158", + "stop_name": "Bellevue et Hudson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et Hudson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4463368170585, + 45.490120720038 + ] + } + }, + { + "id": "4248", + "code": "34248", + "data": { + "gtfs": { + "stop_id": "4248", + "stop_code": "34248", + "stop_name": "Bellevue et ECOLE SECONDAIRE CENTENNIAL REGIONAL HIGH SCHOOL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et ECOLE SECONDAIRE CENTENNIAL REGIONAL HIGH SCHOOL", + "geography": { + "type": "Point", + "coordinates": [ + -73.4465606106091, + 45.4905512100386 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9822507663682 + }, + "name": "Hudson et Bellevue", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446223768, + 45.490335965 + ] + }, + "is_frozen": false, + "integer_id": 148, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459463, + 45.485687 + ] + }, + "id": 149, + "properties": { + "id": "a90c4da7-455c-41d3-9961-c7a64d627572", + "code": "31229", + "data": { + "stops": [ + { + "id": "1229", + "code": "31229", + "data": { + "gtfs": { + "stop_id": "1229", + "stop_code": "31229", + "stop_name": "Bellevue et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4593197353503, + 45.4857823619892 + ] + } + }, + { + "id": "1813", + "code": "31813", + "data": { + "gtfs": { + "stop_id": "1813", + "stop_code": "31813", + "stop_name": "Grande Allée et Adam", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Adam", + "geography": { + "type": "Point", + "coordinates": [ + -73.4596055411352, + 45.4855923862923 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.903772087661 + }, + "name": "Bellevue et Grande Allée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459462638, + 45.485687374 + ] + }, + "is_frozen": false, + "integer_id": 149, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460186, + 45.483512 + ] + }, + "id": 150, + "properties": { + "id": "491099bb-9493-4888-bd4e-20bd2140830a", + "code": "31230", + "data": { + "stops": [ + { + "id": "1230", + "code": "31230", + "data": { + "gtfs": { + "stop_id": "1230", + "stop_code": "31230", + "stop_name": "av. Auguste et Angers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auguste et Angers", + "geography": { + "type": "Point", + "coordinates": [ + -73.4601857287999, + 45.4835117088155 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8670485653995 + }, + "name": "av. Auguste et Angers", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.460185729, + 45.483511709 + ] + }, + "is_frozen": false, + "integer_id": 150, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457534, + 45.483033 + ] + }, + "id": 151, + "properties": { + "id": "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", + "code": "31231", + "data": { + "stops": [ + { + "id": "1231", + "code": "31231", + "data": { + "gtfs": { + "stop_id": "1231", + "stop_code": "31231", + "stop_name": "av. Auguste et Alphonse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auguste et Alphonse", + "geography": { + "type": "Point", + "coordinates": [ + -73.4575337067745, + 45.4830326177216 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.85896244958 + }, + "name": "av. Auguste et Alphonse", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457533707, + 45.483032618 + ] + }, + "is_frozen": false, + "integer_id": 151, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466337, + 45.485153 + ] + }, + "id": 152, + "properties": { + "id": "4996264a-c3f0-4fe8-be81-9ca3d8659c61", + "code": "31235", + "data": { + "stops": [ + { + "id": "1235", + "code": "31235", + "data": { + "gtfs": { + "stop_id": "1235", + "stop_code": "31235", + "stop_name": "boul. Taschereau et av. Auguste", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et av. Auguste", + "geography": { + "type": "Point", + "coordinates": [ + -73.4663367317857, + 45.4851528600672 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8947495198303 + }, + "name": "boul. Taschereau et av. Auguste", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466336732, + 45.48515286 + ] + }, + "is_frozen": false, + "integer_id": 152, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478997, + 45.49352 + ] + }, + "id": 153, + "properties": { + "id": "56af9248-f973-4335-84c1-2e5e744a3910", + "code": "31238", + "data": { + "stops": [ + { + "id": "1238", + "code": "31238", + "data": { + "gtfs": { + "stop_id": "1238", + "stop_code": "31238", + "stop_name": "boul. Taschereau et Georges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Georges", + "geography": { + "type": "Point", + "coordinates": [ + -73.478997480116, + 45.4935200676033 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0360166799503 + }, + "name": "boul. Taschereau et Georges", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47899748, + 45.493520068 + ] + }, + "is_frozen": false, + "integer_id": 153, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460656, + 45.470429 + ] + }, + "id": 154, + "properties": { + "id": "907f8610-452b-440d-849b-c803b07dedc1", + "code": "31242", + "data": { + "stops": [ + { + "id": "1242", + "code": "31242", + "data": { + "gtfs": { + "stop_id": "1242", + "stop_code": "31242", + "stop_name": "av. Auteuil et Audette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et Audette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4607307594761, + 45.4702840649636 + ] + } + }, + { + "id": "1313", + "code": "31313", + "data": { + "gtfs": { + "stop_id": "1313", + "stop_code": "31313", + "stop_name": "av. Auteuil et Audette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et Audette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4605815180404, + 45.4705737457802 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6463097699989 + }, + "name": "av. Auteuil et Audette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.460656139, + 45.470428905 + ] + }, + "is_frozen": false, + "integer_id": 154, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455963, + 45.473648 + ] + }, + "id": 155, + "properties": { + "id": "0a5574e2-bc64-452e-aa4a-d40291008573", + "code": "31244", + "data": { + "stops": [ + { + "id": "1244", + "code": "31244", + "data": { + "gtfs": { + "stop_id": "1244", + "stop_code": "31244", + "stop_name": "av. Auteuil et Asselin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et Asselin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4559892505453, + 45.4735256396206 + ] + } + }, + { + "id": "1311", + "code": "31311", + "data": { + "gtfs": { + "stop_id": "1311", + "stop_code": "31311", + "stop_name": "av. Auteuil et Asselin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et Asselin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4559366181593, + 45.47376954554 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.700602779601 + }, + "name": "av. Auteuil et Asselin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455962934, + 45.473647593 + ] + }, + "is_frozen": false, + "integer_id": 155, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453555, + 45.475282 + ] + }, + "id": 156, + "properties": { + "id": "26379e8f-3aed-43ae-b0ea-5a9391563bd8", + "code": "31245", + "data": { + "stops": [ + { + "id": "1245", + "code": "31245", + "data": { + "gtfs": { + "stop_id": "1245", + "stop_code": "31245", + "stop_name": "av. Auteuil et Arpin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et Arpin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4536138970984, + 45.4751585187725 + ] + } + }, + { + "id": "1310", + "code": "31310", + "data": { + "gtfs": { + "stop_id": "1310", + "stop_code": "31310", + "stop_name": "av. Auteuil et Arpin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et Arpin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4534960775907, + 45.4754053332097 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7281743227828 + }, + "name": "av. Auteuil et Arpin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453554987, + 45.475281926 + ] + }, + "is_frozen": false, + "integer_id": 156, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45123, + 45.476887 + ] + }, + "id": 157, + "properties": { + "id": "3b299238-16f1-4f0e-9fc7-8d65b43af12f", + "code": "31246", + "data": { + "stops": [ + { + "id": "1246", + "code": "31246", + "data": { + "gtfs": { + "stop_id": "1246", + "stop_code": "31246", + "stop_name": "av. Auteuil et Aubry", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et Aubry", + "geography": { + "type": "Point", + "coordinates": [ + -73.4512641987036, + 45.4767631721978 + ] + } + }, + { + "id": "1309", + "code": "31309", + "data": { + "gtfs": { + "stop_id": "1309", + "stop_code": "31309", + "stop_name": "av. Auteuil et Aubry", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et Aubry", + "geography": { + "type": "Point", + "coordinates": [ + -73.4511952356136, + 45.4770106007254 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7552526465265 + }, + "name": "av. Auteuil et Aubry", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451229717, + 45.476886886 + ] + }, + "is_frozen": false, + "integer_id": 157, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448627, + 45.47952 + ] + }, + "id": 158, + "properties": { + "id": "42f94a5d-c370-4fd6-9c9f-6767ef259624", + "code": "31248", + "data": { + "stops": [ + { + "id": "1248", + "code": "31248", + "data": { + "gtfs": { + "stop_id": "1248", + "stop_code": "31248", + "stop_name": "montée Saint-Hubert et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4486951350238, + 45.4793866246085 + ] + } + }, + { + "id": "1307", + "code": "31307", + "data": { + "gtfs": { + "stop_id": "1307", + "stop_code": "31307", + "stop_name": "montée Saint-Hubert et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4485594687072, + 45.4796526455801 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7996764230871 + }, + "name": "montée Saint-Hubert et Grande Allée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448627302, + 45.479519635 + ] + }, + "is_frozen": false, + "integer_id": 158, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446567, + 45.480781 + ] + }, + "id": 159, + "properties": { + "id": "e0286f28-f802-47e9-8fd2-0338e2927a2f", + "code": "31249", + "data": { + "stops": [ + { + "id": "1249", + "code": "31249", + "data": { + "gtfs": { + "stop_id": "1249", + "stop_code": "31249", + "stop_name": "montée Saint-Hubert et av. Glenn", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Glenn", + "geography": { + "type": "Point", + "coordinates": [ + -73.4465743148287, + 45.4806574119786 + ] + } + }, + { + "id": "1306", + "code": "31306", + "data": { + "gtfs": { + "stop_id": "1306", + "stop_code": "31306", + "stop_name": "montée Saint-Hubert et av. Glenn", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Glenn", + "geography": { + "type": "Point", + "coordinates": [ + -73.4465597365263, + 45.4809048629616 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8209646010737 + }, + "name": "montée Saint-Hubert et av. Glenn", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446567026, + 45.480781137 + ] + }, + "is_frozen": false, + "integer_id": 159, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443746, + 45.482433 + ] + }, + "id": 160, + "properties": { + "id": "46d1170e-039a-4a64-a065-b60146bf9006", + "code": "31250", + "data": { + "stops": [ + { + "id": "1250", + "code": "31250", + "data": { + "gtfs": { + "stop_id": "1250", + "stop_code": "31250", + "stop_name": "montée Saint-Hubert et av. Irving", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Irving", + "geography": { + "type": "Point", + "coordinates": [ + -73.4437458229946, + 45.4823298332278 + ] + } + }, + { + "id": "1305", + "code": "31305", + "data": { + "gtfs": { + "stop_id": "1305", + "stop_code": "31305", + "stop_name": "montée Saint-Hubert et av. Irving", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Irving", + "geography": { + "type": "Point", + "coordinates": [ + -73.4437467721969, + 45.4825367335537 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8488471382668 + }, + "name": "montée Saint-Hubert et av. Irving", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443746298, + 45.482433283 + ] + }, + "is_frozen": false, + "integer_id": 160, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437992, + 45.485798 + ] + }, + "id": 161, + "properties": { + "id": "68549053-a194-4fc4-9393-09f9a34040bb", + "code": "31252", + "data": { + "stops": [ + { + "id": "1252", + "code": "31252", + "data": { + "gtfs": { + "stop_id": "1252", + "stop_code": "31252", + "stop_name": "montée Saint-Hubert et av. Normand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Normand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4380665235009, + 45.4856742576815 + ] + } + }, + { + "id": "1303", + "code": "31303", + "data": { + "gtfs": { + "stop_id": "1303", + "stop_code": "31303", + "stop_name": "montée Saint-Hubert et av. Normand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Normand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4379178090103, + 45.4859225694784 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.905646468804 + }, + "name": "montée Saint-Hubert et av. Normand", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437992166, + 45.485798414 + ] + }, + "is_frozen": false, + "integer_id": 161, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.435189, + 45.487451 + ] + }, + "id": 162, + "properties": { + "id": "40ff3e02-8b3f-498b-908e-b391cc70a163", + "code": "31253", + "data": { + "stops": [ + { + "id": "1253", + "code": "31253", + "data": { + "gtfs": { + "stop_id": "1253", + "stop_code": "31253", + "stop_name": "montée Saint-Hubert et av. Grenier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Grenier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4352216713907, + 45.4873358474427 + ] + } + }, + { + "id": "1302", + "code": "31302", + "data": { + "gtfs": { + "stop_id": "1302", + "stop_code": "31302", + "stop_name": "montée Saint-Hubert et av. Grenier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Grenier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4351568758361, + 45.4875658030911 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9335408477997 + }, + "name": "montée Saint-Hubert et av. Grenier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.435189274, + 45.487450825 + ] + }, + "is_frozen": false, + "integer_id": 162, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.432686, + 45.488855 + ] + }, + "id": 163, + "properties": { + "id": "b535e273-90c1-49b6-b38e-2087d5bbebed", + "code": "31254", + "data": { + "stops": [ + { + "id": "1254", + "code": "31254", + "data": { + "gtfs": { + "stop_id": "1254", + "stop_code": "31254", + "stop_name": "montée Saint-Hubert et boul. Maricourt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et boul. Maricourt", + "geography": { + "type": "Point", + "coordinates": [ + -73.4326858661208, + 45.4888549013352 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9572449870423 + }, + "name": "montée Saint-Hubert et boul. Maricourt", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.432685866, + 45.488854901 + ] + }, + "is_frozen": false, + "integer_id": 163, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.429392, + 45.493256 + ] + }, + "id": 164, + "properties": { + "id": "ee09cf9f-32a4-4f14-abc4-35cf4e9dacb6", + "code": "31255", + "data": { + "stops": [ + { + "id": "1255", + "code": "31255", + "data": { + "gtfs": { + "stop_id": "1255", + "stop_code": "31255", + "stop_name": "montée Saint-Hubert et av. Hémard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Hémard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4293617790231, + 45.4931460534466 + ] + } + }, + { + "id": "1300", + "code": "31300", + "data": { + "gtfs": { + "stop_id": "1300", + "stop_code": "31300", + "stop_name": "montée Saint-Hubert et av. Hémard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Hémard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4294230136091, + 45.493366501029 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0315620329598 + }, + "name": "montée Saint-Hubert et av. Hémard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.429392396, + 45.493256277 + ] + }, + "is_frozen": false, + "integer_id": 164, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.427963, + 45.495082 + ] + }, + "id": 165, + "properties": { + "id": "8e8689c3-62f3-42eb-93e5-b882f067b52e", + "code": "31256", + "data": { + "stops": [ + { + "id": "1256", + "code": "31256", + "data": { + "gtfs": { + "stop_id": "1256", + "stop_code": "31256", + "stop_name": "montée Saint-Hubert et boul. Davis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et boul. Davis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4279625079771, + 45.4950823233265 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0623997984055 + }, + "name": "montée Saint-Hubert et boul. Davis", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.427962508, + 45.495082323 + ] + }, + "is_frozen": false, + "integer_id": 165, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.424913, + 45.499522 + ] + }, + "id": 166, + "properties": { + "id": "4fac5725-fd12-47be-9db0-8dea1c53b6f5", + "code": "31257", + "data": { + "stops": [ + { + "id": "1257", + "code": "31257", + "data": { + "gtfs": { + "stop_id": "1257", + "stop_code": "31257", + "stop_name": "montée Saint-Hubert et av. Coursol", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Coursol", + "geography": { + "type": "Point", + "coordinates": [ + -73.4248927534904, + 45.4993831525354 + ] + } + }, + { + "id": "3302", + "code": "33302", + "data": { + "gtfs": { + "stop_id": "3302", + "stop_code": "33302", + "stop_name": "montée Saint-Hubert et av. Coursol", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Coursol", + "geography": { + "type": "Point", + "coordinates": [ + -73.424933600083, + 45.4996604238961 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1373846409498 + }, + "name": "montée Saint-Hubert et av. Coursol", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.424913177, + 45.499521788 + ] + }, + "is_frozen": false, + "integer_id": 166, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.423818, + 45.500907 + ] + }, + "id": 167, + "properties": { + "id": "1202144f-3657-40d2-ae2e-917153a50f04", + "code": "31258", + "data": { + "stops": [ + { + "id": "1258", + "code": "31258", + "data": { + "gtfs": { + "stop_id": "1258", + "stop_code": "31258", + "stop_name": "montée Saint-Hubert et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4238175648701, + 45.5009067331245 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.160780661266 + }, + "name": "montée Saint-Hubert et boul. Cousineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.423817565, + 45.500906733 + ] + }, + "is_frozen": false, + "integer_id": 167, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.421775, + 45.503776 + ] + }, + "id": 168, + "properties": { + "id": "6d53f355-0dfd-420a-a1cc-6510f1a36363", + "code": "31259", + "data": { + "stops": [ + { + "id": "1259", + "code": "31259", + "data": { + "gtfs": { + "stop_id": "1259", + "stop_code": "31259", + "stop_name": "montée Saint-Hubert et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4217745537286, + 45.5037763909916 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2092635254697 + }, + "name": "montée Saint-Hubert et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.421774554, + 45.503776391 + ] + }, + "is_frozen": false, + "integer_id": 168, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.417221, + 45.502321 + ] + }, + "id": 169, + "properties": { + "id": "46ea2114-c4d6-46e8-be5d-60d028340abb", + "code": "31260", + "data": { + "stops": [ + { + "id": "1260", + "code": "31260", + "data": { + "gtfs": { + "stop_id": "1260", + "stop_code": "31260", + "stop_name": "ch. de Chambly et Rocheleau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Rocheleau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4173991450924, + 45.5023080766946 + ] + } + }, + { + "id": "1295", + "code": "31295", + "data": { + "gtfs": { + "stop_id": "1295", + "stop_code": "31295", + "stop_name": "ch. de Chambly et Rocheleau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Rocheleau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4170434660813, + 45.5023330550491 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.184666450139 + }, + "name": "ch. de Chambly et Rocheleau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.417221306, + 45.502320566 + ] + }, + "is_frozen": false, + "integer_id": 169, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.416025, + 45.502217 + ] + }, + "id": 170, + "properties": { + "id": "5f67d1de-bfb7-46e1-9c6a-87d005dd64b6", + "code": "31261", + "data": { + "stops": [ + { + "id": "1261", + "code": "31261", + "data": { + "gtfs": { + "stop_id": "1261", + "stop_code": "31261", + "stop_name": "Latour et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Latour et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4159399453632, + 45.5021632658742 + ] + } + }, + { + "id": "3987", + "code": "33987", + "data": { + "gtfs": { + "stop_id": "3987", + "stop_code": "33987", + "stop_name": "Latour et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Latour et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4161097357604, + 45.5022713718737 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1829220990259 + }, + "name": "Latour et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.416024841, + 45.502217319 + ] + }, + "is_frozen": false, + "integer_id": 170, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.414774, + 45.504744 + ] + }, + "id": 171, + "properties": { + "id": "9f0b95b0-8453-4218-9889-ef6146815766", + "code": "31262", + "data": { + "stops": [ + { + "id": "1262", + "code": "31262", + "data": { + "gtfs": { + "stop_id": "1262", + "stop_code": "31262", + "stop_name": "Latour et av. Philippe", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Latour et av. Philippe", + "geography": { + "type": "Point", + "coordinates": [ + -73.4147366471653, + 45.5046450021564 + ] + } + }, + { + "id": "1293", + "code": "31293", + "data": { + "gtfs": { + "stop_id": "1293", + "stop_code": "31293", + "stop_name": "Latour et av. Philippe", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Latour et av. Philippe", + "geography": { + "type": "Point", + "coordinates": [ + -73.4148110222128, + 45.5048439615924 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2256210735696 + }, + "name": "Latour et av. Philippe", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.414773835, + 45.504744482 + ] + }, + "is_frozen": false, + "integer_id": 171, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.413375, + 45.50541 + ] + }, + "id": 172, + "properties": { + "id": "72cda4fb-fbe8-47ba-b42e-f310ef91d335", + "code": "31263", + "data": { + "stops": [ + { + "id": "1263", + "code": "31263", + "data": { + "gtfs": { + "stop_id": "1263", + "stop_code": "31263", + "stop_name": "Latour et Morency", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Latour et Morency", + "geography": { + "type": "Point", + "coordinates": [ + -73.4135554763556, + 45.5053072103228 + ] + } + }, + { + "id": "1292", + "code": "31292", + "data": { + "gtfs": { + "stop_id": "1292", + "stop_code": "31292", + "stop_name": "Latour et Morency", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Latour et Morency", + "geography": { + "type": "Point", + "coordinates": [ + -73.4131950010097, + 45.5054936435197 + ] + } + }, + { + "id": "1444", + "code": "31444", + "data": { + "gtfs": { + "stop_id": "1444", + "stop_code": "31444", + "stop_name": "Morency et Latour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Morency et Latour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4134809782904, + 45.5055135139411 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2368727357417 + }, + "name": "Latour et Morency", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.413375239, + 45.505410362 + ] + }, + "is_frozen": false, + "integer_id": 172, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.411563, + 45.505194 + ] + }, + "id": 173, + "properties": { + "id": "bf493d01-4cc2-40cf-9fee-339de5acd0ce", + "code": "31264", + "data": { + "stops": [ + { + "id": "1264", + "code": "31264", + "data": { + "gtfs": { + "stop_id": "1264", + "stop_code": "31264", + "stop_name": "Latour et Michaud", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Latour et Michaud", + "geography": { + "type": "Point", + "coordinates": [ + -73.4116898745628, + 45.5051528640248 + ] + } + }, + { + "id": "4032", + "code": "34032", + "data": { + "gtfs": { + "stop_id": "4032", + "stop_code": "34032", + "stop_name": "Latour et Michaud", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Latour et Michaud", + "geography": { + "type": "Point", + "coordinates": [ + -73.4114367236171, + 45.5052345096313 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2332114412968 + }, + "name": "Latour et Michaud", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.411563299, + 45.505193687 + ] + }, + "is_frozen": false, + "integer_id": 173, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.409826, + 45.504763 + ] + }, + "id": 174, + "properties": { + "id": "35110be1-21ec-490a-b4c8-8b20aa6bef7f", + "code": "31265", + "data": { + "stops": [ + { + "id": "1265", + "code": "31265", + "data": { + "gtfs": { + "stop_id": "1265", + "stop_code": "31265", + "stop_name": "Latour et Morin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Latour et Morin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4099865466884, + 45.5047284932428 + ] + } + }, + { + "id": "1290", + "code": "31290", + "data": { + "gtfs": { + "stop_id": "1290", + "stop_code": "31290", + "stop_name": "Latour et Morin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Latour et Morin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4096661702432, + 45.5047981230282 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2259391792077 + }, + "name": "Latour et Morin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.409826358, + 45.504763308 + ] + }, + "is_frozen": false, + "integer_id": 174, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.407786, + 45.504289 + ] + }, + "id": 175, + "properties": { + "id": "aa49b5ca-26fd-4fe1-8e89-4237204a7250", + "code": "31266", + "data": { + "stops": [ + { + "id": "1266", + "code": "31266", + "data": { + "gtfs": { + "stop_id": "1266", + "stop_code": "31266", + "stop_name": "Latour et Moreau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Latour et Moreau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4079588109064, + 45.5042187280634 + ] + } + }, + { + "id": "4157", + "code": "34157", + "data": { + "gtfs": { + "stop_id": "4157", + "stop_code": "34157", + "stop_name": "Latour et Moreau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Latour et Moreau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4076124314739, + 45.5042939614569 + ] + } + }, + { + "id": "4998", + "code": "34998", + "data": { + "gtfs": { + "stop_id": "4998", + "stop_code": "34998", + "stop_name": "Moreau et Latour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Moreau et Latour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4078097163929, + 45.5043598741623 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2179299105658 + }, + "name": "Latour et Moreau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.407785621, + 45.504289301 + ] + }, + "is_frozen": false, + "integer_id": 175, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.406208, + 45.505373 + ] + }, + "id": 176, + "properties": { + "id": "3d4eebbc-a250-4177-81d6-19642e2b4176", + "code": "31268", + "data": { + "stops": [ + { + "id": "1268", + "code": "31268", + "data": { + "gtfs": { + "stop_id": "1268", + "stop_code": "31268", + "stop_name": "Maisonneuve et av. Magnan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maisonneuve et av. Magnan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4061554709287, + 45.5052302929979 + ] + } + }, + { + "id": "1288", + "code": "31288", + "data": { + "gtfs": { + "stop_id": "1288", + "stop_code": "31288", + "stop_name": "Maisonneuve et av. Magnan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maisonneuve et av. Magnan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4062611356863, + 45.5055166467066 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2362493453448 + }, + "name": "Maisonneuve et av. Magnan", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.406208303, + 45.50537347 + ] + }, + "is_frozen": false, + "integer_id": 176, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.403386, + 45.506823 + ] + }, + "id": 177, + "properties": { + "id": "f1de9305-8e6b-46d3-8c98-a08e73b2857f", + "code": "31269", + "data": { + "stops": [ + { + "id": "1269", + "code": "31269", + "data": { + "gtfs": { + "stop_id": "1269", + "stop_code": "31269", + "stop_name": "Maisonneuve et Léontine-Marsolais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maisonneuve et Léontine-Marsolais", + "geography": { + "type": "Point", + "coordinates": [ + -73.4035092615162, + 45.5067881049848 + ] + } + }, + { + "id": "1287", + "code": "31287", + "data": { + "gtfs": { + "stop_id": "1287", + "stop_code": "31287", + "stop_name": "Maisonneuve et Léontine-Marsolais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maisonneuve et Léontine-Marsolais", + "geography": { + "type": "Point", + "coordinates": [ + -73.4032623977694, + 45.5068586661022 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2607505203983 + }, + "name": "Maisonneuve et Léontine-Marsolais", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.40338583, + 45.506823386 + ] + }, + "is_frozen": false, + "integer_id": 177, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.400274, + 45.505993 + ] + }, + "id": 178, + "properties": { + "id": "b20c17a3-277e-418e-90be-8f8d32918ba9", + "code": "31270", + "data": { + "stops": [ + { + "id": "1270", + "code": "31270", + "data": { + "gtfs": { + "stop_id": "1270", + "stop_code": "31270", + "stop_name": "Maisonneuve et Lucien-Milette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maisonneuve et Lucien-Milette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4003248643488, + 45.5058897952775 + ] + } + }, + { + "id": "1286", + "code": "31286", + "data": { + "gtfs": { + "stop_id": "1286", + "stop_code": "31286", + "stop_name": "Maisonneuve et Lucien-Milette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maisonneuve et Lucien-Milette", + "geography": { + "type": "Point", + "coordinates": [ + -73.400565307765, + 45.5061634453915 + ] + } + }, + { + "id": "4991", + "code": "34991", + "data": { + "gtfs": { + "stop_id": "4991", + "stop_code": "34991", + "stop_name": "Lucien-Milette et Maisonneuve", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lucien-Milette et Maisonneuve", + "geography": { + "type": "Point", + "coordinates": [ + -73.4000929502576, + 45.5060008699139 + ] + } + }, + { + "id": "4992", + "code": "34992", + "data": { + "gtfs": { + "stop_id": "4992", + "stop_code": "34992", + "stop_name": "Maisonneuve et Lucien-Milette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maisonneuve et Lucien-Milette", + "geography": { + "type": "Point", + "coordinates": [ + -73.3999820590326, + 45.5058220578361 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2467139548403 + }, + "name": "Maisonneuve et Lucien-Milette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.400273683, + 45.505992752 + ] + }, + "is_frozen": false, + "integer_id": 178, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.399712, + 45.504702 + ] + }, + "id": 179, + "properties": { + "id": "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", + "code": "31271", + "data": { + "stops": [ + { + "id": "1271", + "code": "31271", + "data": { + "gtfs": { + "stop_id": "1271", + "stop_code": "31271", + "stop_name": "Maisonneuve et Marquis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maisonneuve et Marquis", + "geography": { + "type": "Point", + "coordinates": [ + -73.399813083737, + 45.504786800018 + ] + } + }, + { + "id": "1285", + "code": "31285", + "data": { + "gtfs": { + "stop_id": "1285", + "stop_code": "31285", + "stop_name": "Maisonneuve et Marquis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maisonneuve et Marquis", + "geography": { + "type": "Point", + "coordinates": [ + -73.3996111722285, + 45.5046168602119 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2249003777396 + }, + "name": "Maisonneuve et Marquis", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.399712128, + 45.50470183 + ] + }, + "is_frozen": false, + "integer_id": 179, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.399552, + 45.50337 + ] + }, + "id": 180, + "properties": { + "id": "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", + "code": "31272", + "data": { + "stops": [ + { + "id": "1272", + "code": "31272", + "data": { + "gtfs": { + "stop_id": "1272", + "stop_code": "31272", + "stop_name": "Maisonneuve et Mainville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maisonneuve et Mainville", + "geography": { + "type": "Point", + "coordinates": [ + -73.3996640574578, + 45.5034890669966 + ] + } + }, + { + "id": "1284", + "code": "31284", + "data": { + "gtfs": { + "stop_id": "1284", + "stop_code": "31284", + "stop_name": "Maisonneuve et Mainville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maisonneuve et Mainville", + "geography": { + "type": "Point", + "coordinates": [ + -73.399439436886, + 45.5032516456687 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2024031201204 + }, + "name": "Maisonneuve et Mainville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.399551747, + 45.503370356 + ] + }, + "is_frozen": false, + "integer_id": 180, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.398934, + 45.501847 + ] + }, + "id": 181, + "properties": { + "id": "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0", + "code": "31273", + "data": { + "stops": [ + { + "id": "1273", + "code": "31273", + "data": { + "gtfs": { + "stop_id": "1273", + "stop_code": "31273", + "stop_name": "boul. Gaétan-Boucher et Maisonneuve", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et Maisonneuve", + "geography": { + "type": "Point", + "coordinates": [ + -73.3989342603498, + 45.5018469901337 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1766654935413 + }, + "name": "boul. Gaétan-Boucher et Maisonneuve", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.39893426, + 45.50184699 + ] + }, + "is_frozen": false, + "integer_id": 181, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.395194, + 45.502032 + ] + }, + "id": 182, + "properties": { + "id": "5c25bfb5-c167-4f71-8798-e94a8ad7560d", + "code": "31274", + "data": { + "stops": [ + { + "id": "1274", + "code": "31274", + "data": { + "gtfs": { + "stop_id": "1274", + "stop_code": "31274", + "stop_name": "boul. Gaétan-Boucher et boul. Jacques-Marcil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et boul. Jacques-Marcil", + "geography": { + "type": "Point", + "coordinates": [ + -73.3953719856189, + 45.5020676746579 + ] + } + }, + { + "id": "5366", + "code": "30106", + "data": { + "gtfs": { + "stop_id": "5366", + "stop_code": "30106", + "stop_name": "boul. Jacques-Marcil et boul. Gaétan-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Marcil et boul. Gaétan-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.3950158833044, + 45.5019958274982 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1797869640076 + }, + "name": "boul. Gaétan-Boucher et boul. Jacques-Marcil", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.395193934, + 45.502031751 + ] + }, + "is_frozen": false, + "integer_id": 182, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.396685, + 45.49853 + ] + }, + "id": 183, + "properties": { + "id": "2550d07e-5034-443e-9840-7e9abcf5a62b", + "code": "31275", + "data": { + "stops": [ + { + "id": "1275", + "code": "31275", + "data": { + "gtfs": { + "stop_id": "1275", + "stop_code": "31275", + "stop_name": "boul. Jacques-Marcil et de Monaco", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Marcil et de Monaco", + "geography": { + "type": "Point", + "coordinates": [ + -73.3966097237137, + 45.4987369989275 + ] + } + }, + { + "id": "5364", + "code": "30104", + "data": { + "gtfs": { + "stop_id": "5364", + "stop_code": "30104", + "stop_name": "boul. Jacques-Marcil et de Monaco", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Marcil et de Monaco", + "geography": { + "type": "Point", + "coordinates": [ + -73.3967597926847, + 45.498323268615 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1206335750027 + }, + "name": "boul. Jacques-Marcil et de Monaco", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.396684758, + 45.498530134 + ] + }, + "is_frozen": false, + "integer_id": 183, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.395545, + 45.499965 + ] + }, + "id": 184, + "properties": { + "id": "e4d9e692-bf6d-4c61-9845-9e50427c4cad", + "code": "31276", + "data": { + "stops": [ + { + "id": "1276", + "code": "31276", + "data": { + "gtfs": { + "stop_id": "1276", + "stop_code": "31276", + "stop_name": "boul. Jacques-Marcil et Joseph-A.-Mantha", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Marcil et Joseph-A.-Mantha", + "geography": { + "type": "Point", + "coordinates": [ + -73.3955959407681, + 45.5000895847375 + ] + } + }, + { + "id": "5365", + "code": "30105", + "data": { + "gtfs": { + "stop_id": "5365", + "stop_code": "30105", + "stop_name": "boul. Jacques-Marcil et Joseph-A.-Mantha", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Marcil et Joseph-A.-Mantha", + "geography": { + "type": "Point", + "coordinates": [ + -73.3954949904072, + 45.4998397678485 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1448662084973 + }, + "name": "boul. Jacques-Marcil et Joseph-A.-Mantha", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.395545466, + 45.499964676 + ] + }, + "is_frozen": false, + "integer_id": 184, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.40005, + 45.495493 + ] + }, + "id": 185, + "properties": { + "id": "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", + "code": "31277", + "data": { + "stops": [ + { + "id": "1277", + "code": "31277", + "data": { + "gtfs": { + "stop_id": "1277", + "stop_code": "31277", + "stop_name": "boul. Jacques-Marcil et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Marcil et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.3999123106282, + 45.4955739023131 + ] + } + }, + { + "id": "3945", + "code": "33945", + "data": { + "gtfs": { + "stop_id": "3945", + "stop_code": "33945", + "stop_name": "ch. de Chambly et boul. Jacques-Marcil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Jacques-Marcil", + "geography": { + "type": "Point", + "coordinates": [ + -73.4001870838567, + 45.4954118288324 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0693333446786 + }, + "name": "boul. Jacques-Marcil et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.400049697, + 45.495492866 + ] + }, + "is_frozen": false, + "integer_id": 185, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.401697, + 45.496219 + ] + }, + "id": 186, + "properties": { + "id": "33ed66fe-2193-4e2a-b51d-d25140b9ad80", + "code": "31278", + "data": { + "stops": [ + { + "id": "1278", + "code": "31278", + "data": { + "gtfs": { + "stop_id": "1278", + "stop_code": "31278", + "stop_name": "ch. de Chambly et Henri-Cyr", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Henri-Cyr", + "geography": { + "type": "Point", + "coordinates": [ + -73.4015414563726, + 45.4962610128982 + ] + } + }, + { + "id": "1379", + "code": "31379", + "data": { + "gtfs": { + "stop_id": "1379", + "stop_code": "31379", + "stop_name": "ch. de Chambly et Henri-Cyr", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Henri-Cyr", + "geography": { + "type": "Point", + "coordinates": [ + -73.4018522525184, + 45.4961777631269 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0816037396172 + }, + "name": "ch. de Chambly et Henri-Cyr", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.401696854, + 45.496219388 + ] + }, + "is_frozen": false, + "integer_id": 186, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.403551, + 45.497056 + ] + }, + "id": 187, + "properties": { + "id": "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", + "code": "31279", + "data": { + "stops": [ + { + "id": "1279", + "code": "31279", + "data": { + "gtfs": { + "stop_id": "1279", + "stop_code": "31279", + "stop_name": "ch. de Chambly et de Monaco", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et de Monaco", + "geography": { + "type": "Point", + "coordinates": [ + -73.4033431395568, + 45.4970522592567 + ] + } + }, + { + "id": "3944", + "code": "33944", + "data": { + "gtfs": { + "stop_id": "3944", + "stop_code": "33944", + "stop_name": "ch. de Chambly et de Monaco", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et de Monaco", + "geography": { + "type": "Point", + "coordinates": [ + -73.4037594341944, + 45.4970588241714 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0957263154608 + }, + "name": "ch. de Chambly et de Monaco", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.403551287, + 45.497055542 + ] + }, + "is_frozen": false, + "integer_id": 187, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.406324, + 45.498408 + ] + }, + "id": 188, + "properties": { + "id": "aab8672e-86c9-4a43-9806-f5135dc02b4e", + "code": "31280", + "data": { + "stops": [ + { + "id": "1280", + "code": "31280", + "data": { + "gtfs": { + "stop_id": "1280", + "stop_code": "31280", + "stop_name": "boul. Gaétan-Boucher et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4061021146563, + 45.4985709179673 + ] + } + }, + { + "id": "1448", + "code": "31448", + "data": { + "gtfs": { + "stop_id": "1448", + "stop_code": "31448", + "stop_name": "boul. Gaétan-Boucher et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4065455969929, + 45.4984422809484 + ] + } + }, + { + "id": "3272", + "code": "33272", + "data": { + "gtfs": { + "stop_id": "3272", + "stop_code": "33272", + "stop_name": "ch. de Chambly et boul. Gaétan-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Gaétan-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4061988448348, + 45.4982458739836 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1185772312862 + }, + "name": "boul. Gaétan-Boucher et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.406323856, + 45.498408396 + ] + }, + "is_frozen": false, + "integer_id": 188, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.403022, + 45.501668 + ] + }, + "id": 189, + "properties": { + "id": "dc630e4d-102e-48b9-8b4a-920cafc01d4a", + "code": "31281", + "data": { + "stops": [ + { + "id": "1281", + "code": "31281", + "data": { + "gtfs": { + "stop_id": "1281", + "stop_code": "31281", + "stop_name": "boul. Gaétan-Boucher et Latour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et Latour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4031979076987, + 45.501516237181 + ] + } + }, + { + "id": "1445", + "code": "31445", + "data": { + "gtfs": { + "stop_id": "1445", + "stop_code": "31445", + "stop_name": "boul. Gaétan-Boucher et Latour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et Latour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4028458658338, + 45.5018199377582 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1736430208215 + }, + "name": "boul. Gaétan-Boucher et Latour", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.403021887, + 45.501668087 + ] + }, + "is_frozen": false, + "integer_id": 189, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.400992, + 45.501835 + ] + }, + "id": 190, + "properties": { + "id": "00ed067b-7627-492d-ac0f-5d03bd3b185c", + "code": "31282", + "data": { + "stops": [ + { + "id": "1282", + "code": "31282", + "data": { + "gtfs": { + "stop_id": "1282", + "stop_code": "31282", + "stop_name": "boul. Gaétan-Boucher et av. de Mexico", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et av. de Mexico", + "geography": { + "type": "Point", + "coordinates": [ + -73.4011371567228, + 45.5017039450596 + ] + } + }, + { + "id": "1447", + "code": "31447", + "data": { + "gtfs": { + "stop_id": "1447", + "stop_code": "31447", + "stop_name": "boul. Gaétan-Boucher et av. de Mexico", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et av. de Mexico", + "geography": { + "type": "Point", + "coordinates": [ + -73.4008461899035, + 45.5019666936499 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1764683172253 + }, + "name": "boul. Gaétan-Boucher et av. de Mexico", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.400991673, + 45.501835319 + ] + }, + "is_frozen": false, + "integer_id": 190, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.399439, + 45.502333 + ] + }, + "id": 191, + "properties": { + "id": "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", + "code": "31283", + "data": { + "stops": [ + { + "id": "1283", + "code": "31283", + "data": { + "gtfs": { + "stop_id": "1283", + "stop_code": "31283", + "stop_name": "Maisonneuve et boul. Gaétan-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maisonneuve et boul. Gaétan-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.3993644106603, + 45.5023429216469 + ] + } + }, + { + "id": "1446", + "code": "31446", + "data": { + "gtfs": { + "stop_id": "1446", + "stop_code": "31446", + "stop_name": "Maisonneuve et boul. Gaétan-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maisonneuve et boul. Gaétan-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.3995134267423, + 45.5023237844889 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1848824863033 + }, + "name": "Maisonneuve et boul. Gaétan-Boucher", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.399438919, + 45.502333353 + ] + }, + "is_frozen": false, + "integer_id": 191, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.423275, + 45.501781 + ] + }, + "id": 192, + "properties": { + "id": "e8e5c7df-2edf-4749-98c2-97962c7eff9c", + "code": "31297", + "data": { + "stops": [ + { + "id": "1297", + "code": "31297", + "data": { + "gtfs": { + "stop_id": "1297", + "stop_code": "31297", + "stop_name": "montée Saint-Hubert et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4233034638877, + 45.501953553843 + ] + } + }, + { + "id": "3644", + "code": "33644", + "data": { + "gtfs": { + "stop_id": "3644", + "stop_code": "33644", + "stop_name": "boul. Cousineau et montée Saint-Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et montée Saint-Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4232455573338, + 45.5016075117261 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.175542733921 + }, + "name": "montée Saint-Hubert et boul. Cousineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.423274511, + 45.501780533 + ] + }, + "is_frozen": false, + "integer_id": 192, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.427938, + 45.495312 + ] + }, + "id": 193, + "properties": { + "id": "d68685b2-7e92-4934-989f-8ccfae13451f", + "code": "31299", + "data": { + "stops": [ + { + "id": "1299", + "code": "31299", + "data": { + "gtfs": { + "stop_id": "1299", + "stop_code": "31299", + "stop_name": "montée Saint-Hubert et boul. Davis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et boul. Davis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4279235893855, + 45.495430980332 + ] + } + }, + { + "id": "1724", + "code": "31724", + "data": { + "gtfs": { + "stop_id": "1724", + "stop_code": "31724", + "stop_name": "boul. Davis et montée Saint-Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et montée Saint-Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4277347679401, + 45.4953343068468 + ] + } + }, + { + "id": "1744", + "code": "31744", + "data": { + "gtfs": { + "stop_id": "1744", + "stop_code": "31744", + "stop_name": "boul. Davis et montée Saint-Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et montée Saint-Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4281421382, + 45.4951933053809 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0662811458423 + }, + "name": "montée Saint-Hubert et boul. Davis", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.427938453, + 45.495312143 + ] + }, + "is_frozen": false, + "integer_id": 193, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.430852, + 45.491291 + ] + }, + "id": 194, + "properties": { + "id": "46a4fc7f-c064-4d08-ac44-e9eeffd46d50", + "code": "31301", + "data": { + "stops": [ + { + "id": "1301", + "code": "31301", + "data": { + "gtfs": { + "stop_id": "1301", + "stop_code": "31301", + "stop_name": "montée Saint-Hubert et av. Trudeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Trudeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4308371145741, + 45.4915371007301 + ] + } + }, + { + "id": "3903", + "code": "33903", + "data": { + "gtfs": { + "stop_id": "3903", + "stop_code": "33903", + "stop_name": "montée Saint-Hubert et av. Trudeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Trudeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4308667649174, + 45.4910452994527 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9983796629581 + }, + "name": "montée Saint-Hubert et av. Trudeau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.43085194, + 45.4912912 + ] + }, + "is_frozen": false, + "integer_id": 194, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449335, + 45.47818 + ] + }, + "id": 195, + "properties": { + "id": "9d35b7a9-abde-4942-9112-1597cdd98ea0", + "code": "31308", + "data": { + "stops": [ + { + "id": "1308", + "code": "31308", + "data": { + "gtfs": { + "stop_id": "1308", + "stop_code": "31308", + "stop_name": "av. Auteuil et boul. Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et boul. Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4494633792133, + 45.4781935991562 + ] + } + }, + { + "id": "3984", + "code": "33984", + "data": { + "gtfs": { + "stop_id": "3984", + "stop_code": "33984", + "stop_name": "av. Auteuil et boul. Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et boul. Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4492070843179, + 45.4781671154647 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7770773022363 + }, + "name": "av. Auteuil et boul. Grande Allée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449335232, + 45.478180357 + ] + }, + "is_frozen": false, + "integer_id": 195, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458349, + 45.472024 + ] + }, + "id": 196, + "properties": { + "id": "ba5c0d3d-92c0-4bd7-8079-bab093684934", + "code": "31312", + "data": { + "stops": [ + { + "id": "1312", + "code": "31312", + "data": { + "gtfs": { + "stop_id": "1312", + "stop_code": "31312", + "stop_name": "av. Auteuil et Alarie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et Alarie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4583162907513, + 45.4721415603315 + ] + } + }, + { + "id": "3773", + "code": "33773", + "data": { + "gtfs": { + "stop_id": "3773", + "stop_code": "33773", + "stop_name": "av. Auteuil et Alarie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et Alarie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4583816306103, + 45.4719062118312 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6732128488143 + }, + "name": "av. Auteuil et Alarie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.458348961, + 45.472023886 + ] + }, + "is_frozen": false, + "integer_id": 196, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462655, + 45.46907 + ] + }, + "id": 197, + "properties": { + "id": "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", + "code": "31314", + "data": { + "stops": [ + { + "id": "1314", + "code": "31314", + "data": { + "gtfs": { + "stop_id": "1314", + "stop_code": "31314", + "stop_name": "av. Auteuil et boul. Lapinière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et boul. Lapinière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4626852194355, + 45.4691510822556 + ] + } + }, + { + "id": "3772", + "code": "33772", + "data": { + "gtfs": { + "stop_id": "3772", + "stop_code": "33772", + "stop_name": "av. Auteuil et boul. Lapinière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et boul. Lapinière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4626240852999, + 45.4689896258657 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6233964169397 + }, + "name": "av. Auteuil et boul. Lapinière", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462654652, + 45.469070354 + ] + }, + "is_frozen": false, + "integer_id": 197, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.517648, + 45.51341 + ] + }, + "id": 198, + "properties": { + "id": "c348089b-75bd-4b39-a9e3-567f6168a9ba", + "code": "31315", + "data": { + "stops": [ + { + "id": "1315", + "code": "31315", + "data": { + "gtfs": { + "stop_id": "1315", + "stop_code": "31315", + "stop_name": "Riverside et av. de Brixton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. de Brixton", + "geography": { + "type": "Point", + "coordinates": [ + -73.5177912036182, + 45.5135838252656 + ] + } + }, + { + "id": "1344", + "code": "31344", + "data": { + "gtfs": { + "stop_id": "1344", + "stop_code": "31344", + "stop_name": "Riverside et av. de Brixton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. de Brixton", + "geography": { + "type": "Point", + "coordinates": [ + -73.5175044585745, + 45.5132367350542 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3720816664083 + }, + "name": "Riverside et av. de Brixton", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.517647831, + 45.51341028 + ] + }, + "is_frozen": false, + "integer_id": 198, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.517749, + 45.511589 + ] + }, + "id": 199, + "properties": { + "id": "8a39a492-c1fa-443a-8dde-cec8aa8d663b", + "code": "31316", + "data": { + "stops": [ + { + "id": "1316", + "code": "31316", + "data": { + "gtfs": { + "stop_id": "1316", + "stop_code": "31316", + "stop_name": "Riverside et av. de Sanford", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. de Sanford", + "geography": { + "type": "Point", + "coordinates": [ + -73.5178301285685, + 45.5117745978731 + ] + } + }, + { + "id": "1343", + "code": "31343", + "data": { + "gtfs": { + "stop_id": "1343", + "stop_code": "31343", + "stop_name": "Riverside et av. de Sanford", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. de Sanford", + "geography": { + "type": "Point", + "coordinates": [ + -73.5176670574606, + 45.5114027159465 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3412888782092 + }, + "name": "Riverside et av. de Sanford", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.517748593, + 45.511588657 + ] + }, + "is_frozen": false, + "integer_id": 199, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.517591, + 45.509296 + ] + }, + "id": 200, + "properties": { + "id": "cf524087-95a4-43fb-a2f1-74822356a0a9", + "code": "31317", + "data": { + "stops": [ + { + "id": "1317", + "code": "31317", + "data": { + "gtfs": { + "stop_id": "1317", + "stop_code": "31317", + "stop_name": "Riverside et av. Walnut", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Walnut", + "geography": { + "type": "Point", + "coordinates": [ + -73.5177237020192, + 45.5093798788593 + ] + } + }, + { + "id": "1342", + "code": "31342", + "data": { + "gtfs": { + "stop_id": "1342", + "stop_code": "31342", + "stop_name": "Riverside et av. Walnut", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Walnut", + "geography": { + "type": "Point", + "coordinates": [ + -73.5174584679761, + 45.5092116330459 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3025337881597 + }, + "name": "Riverside et av. Walnut", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.517591085, + 45.509295756 + ] + }, + "is_frozen": false, + "integer_id": 200, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.517215, + 45.507285 + ] + }, + "id": 201, + "properties": { + "id": "9b5a2104-c851-4abe-88ee-090849d3adca", + "code": "31318", + "data": { + "stops": [ + { + "id": "1318", + "code": "31318", + "data": { + "gtfs": { + "stop_id": "1318", + "stop_code": "31318", + "stop_name": "Riverside et av. Pine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Pine", + "geography": { + "type": "Point", + "coordinates": [ + -73.5173389825552, + 45.5073111899161 + ] + } + }, + { + "id": "1341", + "code": "31341", + "data": { + "gtfs": { + "stop_id": "1341", + "stop_code": "31341", + "stop_name": "Riverside et av. Pine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Pine", + "geography": { + "type": "Point", + "coordinates": [ + -73.5170906731055, + 45.507259031081 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2685532828716 + }, + "name": "Riverside et av. Pine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.517214828, + 45.50728511 + ] + }, + "is_frozen": false, + "integer_id": 201, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.516511, + 45.501885 + ] + }, + "id": 202, + "properties": { + "id": "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", + "code": "31319", + "data": { + "stops": [ + { + "id": "1319", + "code": "31319", + "data": { + "gtfs": { + "stop_id": "1319", + "stop_code": "31319", + "stop_name": "av. Argyle et Riverside", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Argyle et Riverside", + "geography": { + "type": "Point", + "coordinates": [ + -73.5162305236968, + 45.5017747550852 + ] + } + }, + { + "id": "1339", + "code": "31339", + "data": { + "gtfs": { + "stop_id": "1339", + "stop_code": "31339", + "stop_name": "av. Argyle et Riverside", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Argyle et Riverside", + "geography": { + "type": "Point", + "coordinates": [ + -73.5161536596062, + 45.5019197793141 + ] + } + }, + { + "id": "1522", + "code": "31522", + "data": { + "gtfs": { + "stop_id": "1522", + "stop_code": "31522", + "stop_name": "Riverside et av. Argyle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Argyle", + "geography": { + "type": "Point", + "coordinates": [ + -73.5168691957907, + 45.5020838801728 + ] + } + }, + { + "id": "1567", + "code": "31567", + "data": { + "gtfs": { + "stop_id": "1567", + "stop_code": "31567", + "stop_name": "Riverside et av. Argyle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Argyle", + "geography": { + "type": "Point", + "coordinates": [ + -73.5164900662819, + 45.5016862147317 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1773084503483 + }, + "name": "av. Argyle et Riverside", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.516511428, + 45.501885047 + ] + }, + "is_frozen": false, + "integer_id": 202, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.489162, + 45.487233 + ] + }, + "id": 203, + "properties": { + "id": "54bbe390-ff6d-41d9-bd4b-1e4843d66512", + "code": "31320", + "data": { + "stops": [ + { + "id": "1320", + "code": "31320", + "data": { + "gtfs": { + "stop_id": "1320", + "stop_code": "31320", + "stop_name": "av. Victoria et av. Kerr", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et av. Kerr", + "geography": { + "type": "Point", + "coordinates": [ + -73.4894436386672, + 45.4873276145616 + ] + } + }, + { + "id": "1337", + "code": "31337", + "data": { + "gtfs": { + "stop_id": "1337", + "stop_code": "31337", + "stop_name": "av. Victoria et av. Kerr", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et av. Kerr", + "geography": { + "type": "Point", + "coordinates": [ + -73.4888802393235, + 45.4871373868529 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9298551773605 + }, + "name": "av. Victoria et av. Kerr", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.489161939, + 45.487232501 + ] + }, + "is_frozen": false, + "integer_id": 203, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479214, + 45.480123 + ] + }, + "id": 204, + "properties": { + "id": "1e48d359-2463-4fbd-b946-c0a530db4bbe", + "code": "31321", + "data": { + "stops": [ + { + "id": "1321", + "code": "31321", + "data": { + "gtfs": { + "stop_id": "1321", + "stop_code": "31321", + "stop_name": "av. Victoria et Allan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et Allan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4793131182397, + 45.4800911921688 + ] + } + }, + { + "id": "1333", + "code": "31333", + "data": { + "gtfs": { + "stop_id": "1333", + "stop_code": "31333", + "stop_name": "av. Victoria et Allan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et Allan", + "geography": { + "type": "Point", + "coordinates": [ + -73.479114087973, + 45.4801550837568 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8098605184721 + }, + "name": "av. Victoria et Allan", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479213603, + 45.480123138 + ] + }, + "is_frozen": false, + "integer_id": 204, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478206, + 45.479271 + ] + }, + "id": 205, + "properties": { + "id": "c46257ee-b29f-4a62-9447-95eb1e19c941", + "code": "31322", + "data": { + "stops": [ + { + "id": "1322", + "code": "31322", + "data": { + "gtfs": { + "stop_id": "1322", + "stop_code": "31322", + "stop_name": "av. Victoria et boul. Simard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et boul. Simard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4782063449852, + 45.4792710523355 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7954816863801 + }, + "name": "av. Victoria et boul. Simard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.478206345, + 45.479271052 + ] + }, + "is_frozen": false, + "integer_id": 205, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.476747, + 45.478094 + ] + }, + "id": 206, + "properties": { + "id": "fe84c986-2907-4842-bde4-72fbe08a0576", + "code": "31323", + "data": { + "stops": [ + { + "id": "1323", + "code": "31323", + "data": { + "gtfs": { + "stop_id": "1323", + "stop_code": "31323", + "stop_name": "av. Victoria et Morley", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et Morley", + "geography": { + "type": "Point", + "coordinates": [ + -73.4767472120275, + 45.4780936146347 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7756136633651 + }, + "name": "av. Victoria et Morley", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.476747212, + 45.478093615 + ] + }, + "is_frozen": false, + "integer_id": 206, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466294, + 45.470885 + ] + }, + "id": 207, + "properties": { + "id": "42f48eea-ee59-46f6-9c43-4b63100a50dc", + "code": "31325", + "data": { + "stops": [ + { + "id": "1325", + "code": "31325", + "data": { + "gtfs": { + "stop_id": "1325", + "stop_code": "31325", + "stop_name": "boul. Lapinière et Alfred", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et Alfred", + "geography": { + "type": "Point", + "coordinates": [ + -73.4663325440878, + 45.4707849676653 + ] + } + }, + { + "id": "3969", + "code": "33969", + "data": { + "gtfs": { + "stop_id": "3969", + "stop_code": "33969", + "stop_name": "boul. Lapinière et Alfred", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et Alfred", + "geography": { + "type": "Point", + "coordinates": [ + -73.4662551811334, + 45.4709855695741 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6540071837142 + }, + "name": "boul. Lapinière et Alfred", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466293863, + 45.470885269 + ] + }, + "is_frozen": false, + "integer_id": 207, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469592, + 45.473342 + ] + }, + "id": 208, + "properties": { + "id": "1345672a-9148-439f-9a52-b8a216612929", + "code": "31330", + "data": { + "stops": [ + { + "id": "1330", + "code": "31330", + "data": { + "gtfs": { + "stop_id": "1330", + "stop_code": "31330", + "stop_name": "boul. Lapinière et Alcide", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et Alcide", + "geography": { + "type": "Point", + "coordinates": [ + -73.4695918272203, + 45.4733421284052 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6954497836571 + }, + "name": "boul. Lapinière et Alcide", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469591827, + 45.473342128 + ] + }, + "is_frozen": false, + "integer_id": 208, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475883, + 45.477887 + ] + }, + "id": 209, + "properties": { + "id": "c04702f7-b2cf-440e-a6da-0a84aefc3963", + "code": "31331", + "data": { + "stops": [ + { + "id": "1331", + "code": "31331", + "data": { + "gtfs": { + "stop_id": "1331", + "stop_code": "31331", + "stop_name": "av. Victoria et Morley", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et Morley", + "geography": { + "type": "Point", + "coordinates": [ + -73.4756408939842, + 45.4776973209116 + ] + } + }, + { + "id": "2491", + "code": "32491", + "data": { + "gtfs": { + "stop_id": "2491", + "stop_code": "32491", + "stop_name": "Morley et av. Victoria", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Morley et av. Victoria", + "geography": { + "type": "Point", + "coordinates": [ + -73.4761245825502, + 45.4780758518923 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7721203919612 + }, + "name": "av. Victoria et Morley", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475882738, + 45.477886586 + ] + }, + "is_frozen": false, + "integer_id": 209, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.477506, + 45.479017 + ] + }, + "id": 210, + "properties": { + "id": "f32e29fd-d271-4ae6-8083-6d24349dccdf", + "code": "31332", + "data": { + "stops": [ + { + "id": "1332", + "code": "31332", + "data": { + "gtfs": { + "stop_id": "1332", + "stop_code": "31332", + "stop_name": "av. Victoria et boul. Simard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et boul. Simard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4775064005121, + 45.4790171697478 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7911975878877 + }, + "name": "av. Victoria et boul. Simard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.477506401, + 45.47901717 + ] + }, + "is_frozen": false, + "integer_id": 210, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.48157, + 45.481815 + ] + }, + "id": 211, + "properties": { + "id": "dc5fe0eb-b8cc-4186-82d3-6787360ae612", + "code": "31334", + "data": { + "stops": [ + { + "id": "1334", + "code": "31334", + "data": { + "gtfs": { + "stop_id": "1334", + "stop_code": "31334", + "stop_name": "av. Victoria et Regent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et Regent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4813603193656, + 45.4817689898721 + ] + } + }, + { + "id": "3643", + "code": "33643", + "data": { + "gtfs": { + "stop_id": "3643", + "stop_code": "33643", + "stop_name": "av. Victoria et Regent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et Regent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4817793394228, + 45.4818607491254 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8384101546795 + }, + "name": "av. Victoria et Regent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481569829, + 45.481814869 + ] + }, + "is_frozen": false, + "integer_id": 211, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.484889, + 45.484187 + ] + }, + "id": 212, + "properties": { + "id": "0a623471-271f-47f5-9a85-7feece2a3285", + "code": "31335", + "data": { + "stops": [ + { + "id": "1335", + "code": "31335", + "data": { + "gtfs": { + "stop_id": "1335", + "stop_code": "31335", + "stop_name": "av. Victoria et civique 1700", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et civique 1700", + "geography": { + "type": "Point", + "coordinates": [ + -73.4846940389769, + 45.4841602838916 + ] + } + }, + { + "id": "3642", + "code": "33642", + "data": { + "gtfs": { + "stop_id": "3642", + "stop_code": "33642", + "stop_name": "av. Victoria et civique 1755", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et civique 1755", + "geography": { + "type": "Point", + "coordinates": [ + -73.4850847982139, + 45.4842139619052 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8784485747038 + }, + "name": "av. Victoria et civique 1700", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.484889419, + 45.484187123 + ] + }, + "is_frozen": false, + "integer_id": 212, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.48701, + 45.485691 + ] + }, + "id": 213, + "properties": { + "id": "aa413165-9699-49b6-9dea-fa35bda8f373", + "code": "31336", + "data": { + "stops": [ + { + "id": "1336", + "code": "31336", + "data": { + "gtfs": { + "stop_id": "1336", + "stop_code": "31336", + "stop_name": "av. Victoria et James-E.-Davis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et James-E.-Davis", + "geography": { + "type": "Point", + "coordinates": [ + -73.486780178749, + 45.4856398874252 + ] + } + }, + { + "id": "2599", + "code": "32599", + "data": { + "gtfs": { + "stop_id": "2599", + "stop_code": "32599", + "stop_name": "av. Victoria et James-E.-Davis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et James-E.-Davis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4872388476348, + 45.4857419919951 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9038322824038 + }, + "name": "av. Victoria et James-E.-Davis", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.487009513, + 45.48569094 + ] + }, + "is_frozen": false, + "integer_id": 213, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491381, + 45.488941 + ] + }, + "id": 214, + "properties": { + "id": "7faed35b-7709-443d-b0ec-5f09ab018202", + "code": "31338", + "data": { + "stops": [ + { + "id": "1338", + "code": "31338", + "data": { + "gtfs": { + "stop_id": "1338", + "stop_code": "31338", + "stop_name": "av. Victoria et boul. Churchill", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et boul. Churchill", + "geography": { + "type": "Point", + "coordinates": [ + -73.4913813382034, + 45.4889411495796 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9587011322507 + }, + "name": "av. Victoria et boul. Churchill", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491381338, + 45.48894115 + ] + }, + "is_frozen": false, + "integer_id": 214, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.517405, + 45.505486 + ] + }, + "id": 215, + "properties": { + "id": "33c33575-6f8f-41f3-92e3-b54759cf28a1", + "code": "31340", + "data": { + "stops": [ + { + "id": "1340", + "code": "31340", + "data": { + "gtfs": { + "stop_id": "1340", + "stop_code": "31340", + "stop_name": "Riverside et av. Mercille", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Mercille", + "geography": { + "type": "Point", + "coordinates": [ + -73.5173601050762, + 45.5052343447835 + ] + } + }, + { + "id": "3303", + "code": "33303", + "data": { + "gtfs": { + "stop_id": "3303", + "stop_code": "33303", + "stop_name": "Riverside et av. Mercille", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Mercille", + "geography": { + "type": "Point", + "coordinates": [ + -73.5174503288528, + 45.5057378847772 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2381527919282 + }, + "name": "Riverside et av. Mercille", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.517405217, + 45.505486115 + ] + }, + "is_frozen": false, + "integer_id": 215, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.51541, + 45.533717 + ] + }, + "id": 216, + "properties": { + "id": "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", + "code": "31346", + "data": { + "stops": [ + { + "id": "1346", + "code": "31346", + "data": { + "gtfs": { + "stop_id": "1346", + "stop_code": "31346", + "stop_name": "Saint-Charles ouest et Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.5152495553594, + 45.5336939910352 + ] + } + }, + { + "id": "3348", + "code": "33348", + "data": { + "gtfs": { + "stop_id": "3348", + "stop_code": "33348", + "stop_name": "Saint-Charles ouest et Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.5155707735635, + 45.5337406205092 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.715552623372 + }, + "name": "Saint-Charles ouest et Montarville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.515410164, + 45.533717306 + ] + }, + "is_frozen": false, + "integer_id": 216, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.51399, + 45.53524 + ] + }, + "id": 217, + "properties": { + "id": "d00d9138-966b-4522-be1d-8c665c71246b", + "code": "31347", + "data": { + "stops": [ + { + "id": "1347", + "code": "31347", + "data": { + "gtfs": { + "stop_id": "1347", + "stop_code": "31347", + "stop_name": "Saint-Charles ouest et Labonté", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et Labonté", + "geography": { + "type": "Point", + "coordinates": [ + -73.5139418465303, + 45.5351088214384 + ] + } + }, + { + "id": "1430", + "code": "31430", + "data": { + "gtfs": { + "stop_id": "1430", + "stop_code": "31430", + "stop_name": "Saint-Charles ouest et Labonté", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et Labonté", + "geography": { + "type": "Point", + "coordinates": [ + -73.5140374576043, + 45.5353704529053 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7413159848394 + }, + "name": "Saint-Charles ouest et Labonté", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.513989652, + 45.535239637 + ] + }, + "is_frozen": false, + "integer_id": 217, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.511399, + 45.53724 + ] + }, + "id": 218, + "properties": { + "id": "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", + "code": "31348", + "data": { + "stops": [ + { + "id": "1348", + "code": "31348", + "data": { + "gtfs": { + "stop_id": "1348", + "stop_code": "31348", + "stop_name": "Saint-Charles ouest et MAIRIE DE L'ARRONDISSEMENT DU VIEUX-LONGUEUIL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et MAIRIE DE L'ARRONDISSEMENT DU VIEUX-LONGUEUIL", + "geography": { + "type": "Point", + "coordinates": [ + -73.5111641652022, + 45.5372874242779 + ] + } + }, + { + "id": "1429", + "code": "31429", + "data": { + "gtfs": { + "stop_id": "1429", + "stop_code": "31429", + "stop_name": "Saint-Charles ouest et Saint-Jean", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et Saint-Jean", + "geography": { + "type": "Point", + "coordinates": [ + -73.5116331038971, + 45.5371928945361 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7751752148879 + }, + "name": "Saint-Charles ouest et MAIRIE DE L'ARRONDISSEMENT DU VIEUX-LONGUEUIL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.511398635, + 45.537240159 + ] + }, + "is_frozen": false, + "integer_id": 218, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.509567, + 45.538795 + ] + }, + "id": 219, + "properties": { + "id": "48ea0d06-7b69-4895-b55b-2a18e6e6f906", + "code": "31349", + "data": { + "stops": [ + { + "id": "1349", + "code": "31349", + "data": { + "gtfs": { + "stop_id": "1349", + "stop_code": "31349", + "stop_name": "Saint-Charles ouest et Saint-Alexandre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et Saint-Alexandre", + "geography": { + "type": "Point", + "coordinates": [ + -73.5095545103946, + 45.5386738032097 + ] + } + }, + { + "id": "1428", + "code": "31428", + "data": { + "gtfs": { + "stop_id": "1428", + "stop_code": "31428", + "stop_name": "Saint-Charles ouest et Saint-Alexandre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et Saint-Alexandre", + "geography": { + "type": "Point", + "coordinates": [ + -73.5095793683202, + 45.5389168184066 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8014989357348 + }, + "name": "Saint-Charles ouest et Saint-Alexandre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.509566939, + 45.538795311 + ] + }, + "is_frozen": false, + "integer_id": 219, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.505493, + 45.539593 + ] + }, + "id": 220, + "properties": { + "id": "0b419003-a369-45de-8ce5-7da6890d7f0a", + "code": "31350", + "data": { + "stops": [ + { + "id": "1350", + "code": "31350", + "data": { + "gtfs": { + "stop_id": "1350", + "stop_code": "31350", + "stop_name": "ch. de Chambly et Saint-Laurent ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Saint-Laurent ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.5054925397943, + 45.5395926660578 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8149964276224 + }, + "name": "ch. de Chambly et Saint-Laurent ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.50549254, + 45.539592666 + ] + }, + "is_frozen": false, + "integer_id": 220, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.504028, + 45.538662 + ] + }, + "id": 221, + "properties": { + "id": "680dba5d-14fa-4f77-98bd-f3a49fec7b48", + "code": "31351", + "data": { + "stops": [ + { + "id": "1351", + "code": "31351", + "data": { + "gtfs": { + "stop_id": "1351", + "stop_code": "31351", + "stop_name": "ch. de Chambly et Guillaume", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Guillaume", + "geography": { + "type": "Point", + "coordinates": [ + -73.504028336962, + 45.5386623735755 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7992486556246 + }, + "name": "ch. de Chambly et Guillaume", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.504028337, + 45.538662374 + ] + }, + "is_frozen": false, + "integer_id": 221, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.499666, + 45.536739 + ] + }, + "id": 222, + "properties": { + "id": "f45a38ac-0f3f-41d9-9da1-be7902cc983a", + "code": "31352", + "data": { + "stops": [ + { + "id": "1352", + "code": "31352", + "data": { + "gtfs": { + "stop_id": "1352", + "stop_code": "31352", + "stop_name": "ch. de Chambly et Le Moyne ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Le Moyne ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4997283688683, + 45.5368191963752 + ] + } + }, + { + "id": "1958", + "code": "31958", + "data": { + "gtfs": { + "stop_id": "1958", + "stop_code": "31958", + "stop_name": "Le Moyne ouest et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne ouest et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4996036172677, + 45.5366590213015 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.766694509611 + }, + "name": "ch. de Chambly et Le Moyne ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.499665993, + 45.536739109 + ] + }, + "is_frozen": false, + "integer_id": 222, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.496509, + 45.535613 + ] + }, + "id": 223, + "properties": { + "id": "9cf81604-6d70-4ba8-a3fc-521104742058", + "code": "31353", + "data": { + "stops": [ + { + "id": "1353", + "code": "31353", + "data": { + "gtfs": { + "stop_id": "1353", + "stop_code": "31353", + "stop_name": "ch. de Chambly et CEGEP EDOUARD-MONTPETIT", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et CEGEP EDOUARD-MONTPETIT", + "geography": { + "type": "Point", + "coordinates": [ + -73.4965690377931, + 45.5354571353991 + ] + } + }, + { + "id": "1423", + "code": "31423", + "data": { + "gtfs": { + "stop_id": "1423", + "stop_code": "31423", + "stop_name": "ch. de Chambly et De Gentilly est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et De Gentilly est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4964489163358, + 45.5357679114337 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7476268834029 + }, + "name": "ch. de Chambly et CEGEP EDOUARD-MONTPETIT", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.496508977, + 45.535612523 + ] + }, + "is_frozen": false, + "integer_id": 223, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494246, + 45.534619 + ] + }, + "id": 224, + "properties": { + "id": "28f2fe65-961c-4550-a722-1e7790fe94ad", + "code": "31354", + "data": { + "stops": [ + { + "id": "1354", + "code": "31354", + "data": { + "gtfs": { + "stop_id": "1354", + "stop_code": "31354", + "stop_name": "ch. de Chambly et Sainte-Catherine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Sainte-Catherine", + "geography": { + "type": "Point", + "coordinates": [ + -73.4944849475691, + 45.5346067033174 + ] + } + }, + { + "id": "3447", + "code": "33447", + "data": { + "gtfs": { + "stop_id": "3447", + "stop_code": "33447", + "stop_name": "ch. de Chambly et Sainte-Catherine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Sainte-Catherine", + "geography": { + "type": "Point", + "coordinates": [ + -73.4940065931541, + 45.5346317532082 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7308161650544 + }, + "name": "ch. de Chambly et Sainte-Catherine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.49424577, + 45.534619228 + ] + }, + "is_frozen": false, + "integer_id": 224, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.49271, + 45.53385 + ] + }, + "id": 225, + "properties": { + "id": "9d0a7ab6-be66-4ca9-b863-8712d8cd028c", + "code": "31355", + "data": { + "stops": [ + { + "id": "1355", + "code": "31355", + "data": { + "gtfs": { + "stop_id": "1355", + "stop_code": "31355", + "stop_name": "ch. de Chambly et place du Collège", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et place du Collège", + "geography": { + "type": "Point", + "coordinates": [ + -73.4927098184929, + 45.5338502917079 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7178031464008 + }, + "name": "ch. de Chambly et place du Collège", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492709818, + 45.533850292 + ] + }, + "is_frozen": false, + "integer_id": 225, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490853, + 45.533234 + ] + }, + "id": 226, + "properties": { + "id": "999ed130-7d99-4115-ac3c-cabba7731288", + "code": "31356", + "data": { + "stops": [ + { + "id": "1356", + "code": "31356", + "data": { + "gtfs": { + "stop_id": "1356", + "stop_code": "31356", + "stop_name": "ch. de Chambly et Leblanc ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Leblanc ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4911828598862, + 45.5332248612934 + ] + } + }, + { + "id": "1421", + "code": "31421", + "data": { + "gtfs": { + "stop_id": "1421", + "stop_code": "31421", + "stop_name": "ch. de Chambly et Leblanc est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Leblanc est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4905222822402, + 45.5332428051616 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7073709392222 + }, + "name": "ch. de Chambly et Leblanc ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490852571, + 45.533233833 + ] + }, + "is_frozen": false, + "integer_id": 226, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.488498, + 45.53219 + ] + }, + "id": 227, + "properties": { + "id": "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", + "code": "31357", + "data": { + "stops": [ + { + "id": "1357", + "code": "31357", + "data": { + "gtfs": { + "stop_id": "1357", + "stop_code": "31357", + "stop_name": "ch. de Chambly et Briggs ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Briggs ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.488653916352, + 45.5322118772606 + ] + } + }, + { + "id": "1420", + "code": "31420", + "data": { + "gtfs": { + "stop_id": "1420", + "stop_code": "31420", + "stop_name": "ch. de Chambly et Briggs est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Briggs est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4883418991508, + 45.5322932740207 + ] + } + }, + { + "id": "4886", + "code": "34886", + "data": { + "gtfs": { + "stop_id": "4886", + "stop_code": "34886", + "stop_name": "Briggs ouest et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Briggs ouest et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4884833488102, + 45.5320859548 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6897071436043 + }, + "name": "ch. de Chambly et Briggs ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.488498, + 45.53219 + ] + }, + "is_frozen": false, + "integer_id": 227, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478898, + 45.528146 + ] + }, + "id": 228, + "properties": { + "id": "aa7795c0-dd5c-4462-b672-459c92223af2", + "code": "31359", + "data": { + "stops": [ + { + "id": "1359", + "code": "31359", + "data": { + "gtfs": { + "stop_id": "1359", + "stop_code": "31359", + "stop_name": "ch. de Chambly et Benoit ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Benoit ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4788979101183, + 45.5281456528469 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6212776698044 + }, + "name": "ch. de Chambly et Benoit ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47889791, + 45.528145653 + ] + }, + "is_frozen": false, + "integer_id": 228, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.476122, + 45.527073 + ] + }, + "id": 229, + "properties": { + "id": "49918c5a-8414-49fd-abf9-87ae6b9f3976", + "code": "31360", + "data": { + "stops": [ + { + "id": "1360", + "code": "31360", + "data": { + "gtfs": { + "stop_id": "1360", + "stop_code": "31360", + "stop_name": "ch. de Chambly et de Cherbourg", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et de Cherbourg", + "geography": { + "type": "Point", + "coordinates": [ + -73.4761539178719, + 45.5269823309531 + ] + } + }, + { + "id": "1417", + "code": "31417", + "data": { + "gtfs": { + "stop_id": "1417", + "stop_code": "31417", + "stop_name": "ch. de Chambly et Brodeur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Brodeur", + "geography": { + "type": "Point", + "coordinates": [ + -73.476089479408, + 45.5271629098168 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.603124631842 + }, + "name": "ch. de Chambly et de Cherbourg", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.476121699, + 45.52707262 + ] + }, + "is_frozen": false, + "integer_id": 229, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474459, + 45.526391 + ] + }, + "id": 230, + "properties": { + "id": "08c413fa-7a41-44db-95dd-16f0ed7ba039", + "code": "31361", + "data": { + "stops": [ + { + "id": "1361", + "code": "31361", + "data": { + "gtfs": { + "stop_id": "1361", + "stop_code": "31361", + "stop_name": "ch. de Chambly et boul. Wilson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Wilson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4743320663655, + 45.5262371004343 + ] + } + }, + { + "id": "1416", + "code": "31416", + "data": { + "gtfs": { + "stop_id": "1416", + "stop_code": "31416", + "stop_name": "ch. de Chambly et King-George", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et King-George", + "geography": { + "type": "Point", + "coordinates": [ + -73.4745852324556, + 45.5265440931361 + ] + } + }, + { + "id": "4304", + "code": "34304", + "data": { + "gtfs": { + "stop_id": "4304", + "stop_code": "34304", + "stop_name": "ch. de Chambly et King-George", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et King-George", + "geography": { + "type": "Point", + "coordinates": [ + -73.4743911235781, + 45.5264461148736 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.591587039827 + }, + "name": "ch. de Chambly et boul. Wilson", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474458649, + 45.526390597 + ] + }, + "is_frozen": false, + "integer_id": 230, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469638, + 45.524368 + ] + }, + "id": 231, + "properties": { + "id": "c3a2368c-bf2d-4c72-9adb-41ee799004b3", + "code": "31363", + "data": { + "stops": [ + { + "id": "1363", + "code": "31363", + "data": { + "gtfs": { + "stop_id": "1363", + "stop_code": "31363", + "stop_name": "ch. de Chambly et Payette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Payette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4696932228716, + 45.5242787085845 + ] + } + }, + { + "id": "1414", + "code": "31414", + "data": { + "gtfs": { + "stop_id": "1414", + "stop_code": "31414", + "stop_name": "ch. de Chambly et Briand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Briand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4695818956751, + 45.5244570515095 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5573717411154 + }, + "name": "ch. de Chambly et Payette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469637559, + 45.52436788 + ] + }, + "is_frozen": false, + "integer_id": 231, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468268, + 45.523693 + ] + }, + "id": 232, + "properties": { + "id": "6885c351-726d-4431-84b5-d9262699183f", + "code": "31364", + "data": { + "stops": [ + { + "id": "1364", + "code": "31364", + "data": { + "gtfs": { + "stop_id": "1364", + "stop_code": "31364", + "stop_name": "ch. de Chambly et Beaubien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Beaubien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4682676925322, + 45.5236925834222 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5459495568197 + }, + "name": "ch. de Chambly et Beaubien", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468267693, + 45.523692583 + ] + }, + "is_frozen": false, + "integer_id": 232, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460828, + 45.520528 + ] + }, + "id": 233, + "properties": { + "id": "ca3fc9fc-e2eb-41c4-a8d2-0ad2d2109db1", + "code": "31365", + "data": { + "stops": [ + { + "id": "1365", + "code": "31365", + "data": { + "gtfs": { + "stop_id": "1365", + "stop_code": "31365", + "stop_name": "ch. de Chambly et Deschamps", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Deschamps", + "geography": { + "type": "Point", + "coordinates": [ + -73.460828107179, + 45.5205280081865 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4924283614475 + }, + "name": "ch. de Chambly et Deschamps", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.460828107, + 45.520528008 + ] + }, + "is_frozen": false, + "integer_id": 233, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457163, + 45.519368 + ] + }, + "id": 234, + "properties": { + "id": "5720f65b-ba9f-440f-94f8-7ec0912acfa0", + "code": "31366", + "data": { + "stops": [ + { + "id": "1366", + "code": "31366", + "data": { + "gtfs": { + "stop_id": "1366", + "stop_code": "31366", + "stop_name": "ch. de Chambly et de Fontainebleau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et de Fontainebleau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4575653810272, + 45.5191671317664 + ] + } + }, + { + "id": "1411", + "code": "31411", + "data": { + "gtfs": { + "stop_id": "1411", + "stop_code": "31411", + "stop_name": "ch. de Chambly et boul. Des Ormeaux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Des Ormeaux", + "geography": { + "type": "Point", + "coordinates": [ + -73.4569950572288, + 45.5191960454174 + ] + } + }, + { + "id": "5453", + "code": "30197", + "data": { + "gtfs": { + "stop_id": "5453", + "stop_code": "30197", + "stop_name": "boul. Des Ormeaux et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Des Ormeaux et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4572965728507, + 45.5193701327854 + ] + } + }, + { + "id": "5454", + "code": "30198", + "data": { + "gtfs": { + "stop_id": "5454", + "stop_code": "30198", + "stop_name": "boul. Des Ormeaux et Mathieu", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Des Ormeaux et Mathieu", + "geography": { + "type": "Point", + "coordinates": [ + -73.456760932747, + 45.5195698524395 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4728201633094 + }, + "name": "ch. de Chambly et de Fontainebleau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457163157, + 45.519368492 + ] + }, + "is_frozen": false, + "integer_id": 234, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454195, + 45.517883 + ] + }, + "id": 235, + "properties": { + "id": "d3991811-d92b-4ba2-9732-26a74abc49b7", + "code": "31367", + "data": { + "stops": [ + { + "id": "1367", + "code": "31367", + "data": { + "gtfs": { + "stop_id": "1367", + "stop_code": "31367", + "stop_name": "ch. de Chambly et Roussin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Roussin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4544278893728, + 45.5178580381828 + ] + } + }, + { + "id": "3696", + "code": "33696", + "data": { + "gtfs": { + "stop_id": "3696", + "stop_code": "33696", + "stop_name": "ch. de Chambly et Roussin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Roussin", + "geography": { + "type": "Point", + "coordinates": [ + -73.453961530328, + 45.5179075052891 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4476973860329 + }, + "name": "ch. de Chambly et Roussin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45419471, + 45.517882772 + ] + }, + "is_frozen": false, + "integer_id": 235, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448584, + 45.515558 + ] + }, + "id": 236, + "properties": { + "id": "344c16fc-7161-4015-9999-e3e0f325dd1e", + "code": "31369", + "data": { + "stops": [ + { + "id": "1369", + "code": "31369", + "data": { + "gtfs": { + "stop_id": "1369", + "stop_code": "31369", + "stop_name": "ch. de Chambly et Radisson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Radisson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4488084698241, + 45.5155228836667 + ] + } + }, + { + "id": "1407", + "code": "31407", + "data": { + "gtfs": { + "stop_id": "1407", + "stop_code": "31407", + "stop_name": "ch. de Chambly et Radisson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Radisson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4483594663445, + 45.515594106453 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4083989762952 + }, + "name": "ch. de Chambly et Radisson", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448583968, + 45.515558495 + ] + }, + "is_frozen": false, + "integer_id": 236, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440493, + 45.511997 + ] + }, + "id": 237, + "properties": { + "id": "a3922a48-9f26-4845-9881-2b33d59d0127", + "code": "31371", + "data": { + "stops": [ + { + "id": "1371", + "code": "31371", + "data": { + "gtfs": { + "stop_id": "1371", + "stop_code": "31371", + "stop_name": "ch. de Chambly et boul. Julien-Lord", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Julien-Lord", + "geography": { + "type": "Point", + "coordinates": [ + -73.4404930741178, + 45.5119965984323 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3481844724464 + }, + "name": "ch. de Chambly et boul. Julien-Lord", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440493074, + 45.511996598 + ] + }, + "is_frozen": false, + "integer_id": 237, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.438362, + 45.511276 + ] + }, + "id": 238, + "properties": { + "id": "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", + "code": "31372", + "data": { + "stops": [ + { + "id": "1372", + "code": "31372", + "data": { + "gtfs": { + "stop_id": "1372", + "stop_code": "31372", + "stop_name": "ch. de Chambly et Shirley", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Shirley", + "geography": { + "type": "Point", + "coordinates": [ + -73.438559709028, + 45.5111634427243 + ] + } + }, + { + "id": "1404", + "code": "31404", + "data": { + "gtfs": { + "stop_id": "1404", + "stop_code": "31404", + "stop_name": "ch. de Chambly et Shirley", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Shirley", + "geography": { + "type": "Point", + "coordinates": [ + -73.4384538768433, + 45.5113886269362 + ] + } + }, + { + "id": "2441", + "code": "32441", + "data": { + "gtfs": { + "stop_id": "2441", + "stop_code": "32441", + "stop_name": "Shirley et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Shirley et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4381633603438, + 45.5113893122933 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3360103981769 + }, + "name": "ch. de Chambly et Shirley", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438361535, + 45.511276378 + ] + }, + "is_frozen": false, + "integer_id": 238, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.42666, + 45.502504 + ] + }, + "id": 239, + "properties": { + "id": "b904303e-de8b-4c71-8b48-48af0de2a9a1", + "code": "31373", + "data": { + "stops": [ + { + "id": "1373", + "code": "31373", + "data": { + "gtfs": { + "stop_id": "1373", + "stop_code": "31373", + "stop_name": "boul. Cousineau et Perras", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Perras", + "geography": { + "type": "Point", + "coordinates": [ + -73.4266600490967, + 45.5025035935127 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1877587191899 + }, + "name": "boul. Cousineau et Perras", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.426660049, + 45.502503594 + ] + }, + "is_frozen": false, + "integer_id": 239, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.424415, + 45.501693 + ] + }, + "id": 240, + "properties": { + "id": "61fd8171-4497-441f-b32a-7917186d6014", + "code": "31374", + "data": { + "stops": [ + { + "id": "1374", + "code": "31374", + "data": { + "gtfs": { + "stop_id": "1374", + "stop_code": "31374", + "stop_name": "boul. Cousineau et COMPLEXE COUSINEAU", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et COMPLEXE COUSINEAU", + "geography": { + "type": "Point", + "coordinates": [ + -73.4244150414744, + 45.50169287771 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1740618501149 + }, + "name": "boul. Cousineau et COMPLEXE COUSINEAU", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.424415041, + 45.501692878 + ] + }, + "is_frozen": false, + "integer_id": 240, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.421198, + 45.50055 + ] + }, + "id": 241, + "properties": { + "id": "7de9ea25-e152-4431-8cc3-23b5e1427ab3", + "code": "31375", + "data": { + "stops": [ + { + "id": "1375", + "code": "31375", + "data": { + "gtfs": { + "stop_id": "1375", + "stop_code": "31375", + "stop_name": "boul. Cousineau et Coderre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Coderre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4211978575408, + 45.5005498003641 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1547507916239 + }, + "name": "boul. Cousineau et Coderre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.421197858, + 45.5005498 + ] + }, + "is_frozen": false, + "integer_id": 241, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.396334, + 45.49371 + ] + }, + "id": 242, + "properties": { + "id": "69b9716f-dd31-4ae3-9736-6d5edb237b8a", + "code": "31381", + "data": { + "stops": [ + { + "id": "1381", + "code": "31381", + "data": { + "gtfs": { + "stop_id": "1381", + "stop_code": "31381", + "stop_name": "ch. de Chambly et Lavoie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Lavoie", + "geography": { + "type": "Point", + "coordinates": [ + -73.3967517252041, + 45.4938100326875 + ] + } + }, + { + "id": "1395", + "code": "31395", + "data": { + "gtfs": { + "stop_id": "1395", + "stop_code": "31395", + "stop_name": "ch. de Chambly et Davidson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Davidson", + "geography": { + "type": "Point", + "coordinates": [ + -73.3959158382799, + 45.493609487022 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0392200530304 + }, + "name": "ch. de Chambly et Lavoie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.396333782, + 45.49370976 + ] + }, + "is_frozen": false, + "integer_id": 242, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.395143, + 45.49307 + ] + }, + "id": 243, + "properties": { + "id": "8354e556-947c-481c-96bd-d61737767f2d", + "code": "31382", + "data": { + "stops": [ + { + "id": "1382", + "code": "31382", + "data": { + "gtfs": { + "stop_id": "1382", + "stop_code": "31382", + "stop_name": "ch. de Chambly et Cornwall", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Cornwall", + "geography": { + "type": "Point", + "coordinates": [ + -73.3951428992667, + 45.4930696994274 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.028411321719 + }, + "name": "ch. de Chambly et Cornwall", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.395142899, + 45.493069699 + ] + }, + "is_frozen": false, + "integer_id": 243, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.391725, + 45.491446 + ] + }, + "id": 244, + "properties": { + "id": "ced239e0-91f5-4429-96fd-20bbb8fcfd11", + "code": "31384", + "data": { + "stops": [ + { + "id": "1384", + "code": "31384", + "data": { + "gtfs": { + "stop_id": "1384", + "stop_code": "31384", + "stop_name": "ch. de Chambly et HERITAGE REGIONAL HIGH SCHOOL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et HERITAGE REGIONAL HIGH SCHOOL", + "geography": { + "type": "Point", + "coordinates": [ + -73.3913408584537, + 45.4912764502184 + ] + } + }, + { + "id": "1392", + "code": "31392", + "data": { + "gtfs": { + "stop_id": "1392", + "stop_code": "31392", + "stop_name": "ch. de Chambly et HERITAGE REGIONAL HIGH SCHOOL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et HERITAGE REGIONAL HIGH SCHOOL", + "geography": { + "type": "Point", + "coordinates": [ + -73.3916278704496, + 45.491615195927 + ] + } + }, + { + "id": "4760", + "code": "34760", + "data": { + "gtfs": { + "stop_id": "4760", + "stop_code": "34760", + "stop_name": "HERITAGE REGIONAL HIGH SCHOOL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "HERITAGE REGIONAL HIGH SCHOOL", + "geography": { + "type": "Point", + "coordinates": [ + -73.3921095115339, + 45.4913126164916 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0009905087351 + }, + "name": "ch. de Chambly et HERITAGE REGIONAL HIGH SCHOOL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.391725185, + 45.491445823 + ] + }, + "is_frozen": false, + "integer_id": 244, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.389262, + 45.490444 + ] + }, + "id": 245, + "properties": { + "id": "a2ac9477-abf0-4b55-8588-e045bd0373a2", + "code": "31385", + "data": { + "stops": [ + { + "id": "1385", + "code": "31385", + "data": { + "gtfs": { + "stop_id": "1385", + "stop_code": "31385", + "stop_name": "ch. de Chambly et Bernard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Bernard", + "geography": { + "type": "Point", + "coordinates": [ + -73.3896499584773, + 45.4905004424772 + ] + } + }, + { + "id": "1391", + "code": "31391", + "data": { + "gtfs": { + "stop_id": "1391", + "stop_code": "31391", + "stop_name": "ch. de Chambly et tsse du Centre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et tsse du Centre", + "geography": { + "type": "Point", + "coordinates": [ + -73.3888745369595, + 45.4903877068449 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9840761351132 + }, + "name": "ch. de Chambly et Bernard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.389262248, + 45.490444075 + ] + }, + "is_frozen": false, + "integer_id": 245, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.386333, + 45.489054 + ] + }, + "id": 246, + "properties": { + "id": "658aec75-ba5b-4e43-b93b-5305ff3f6685", + "code": "31386", + "data": { + "stops": [ + { + "id": "1386", + "code": "31386", + "data": { + "gtfs": { + "stop_id": "1386", + "stop_code": "31386", + "stop_name": "ch. de Chambly et civique 7695", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et civique 7695", + "geography": { + "type": "Point", + "coordinates": [ + -73.3863869893529, + 45.4890146687524 + ] + } + }, + { + "id": "1390", + "code": "31390", + "data": { + "gtfs": { + "stop_id": "1390", + "stop_code": "31390", + "stop_name": "ch. de Chambly et civique 7682", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et civique 7682", + "geography": { + "type": "Point", + "coordinates": [ + -73.3862799466469, + 45.489093759419 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9606100061612 + }, + "name": "ch. de Chambly et civique 7695", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.386333468, + 45.489054214 + ] + }, + "is_frozen": false, + "integer_id": 246, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.381536, + 45.487785 + ] + }, + "id": 247, + "properties": { + "id": "af654275-2b6e-4152-a4be-6ba5d5eb2c23", + "code": "31387", + "data": { + "stops": [ + { + "id": "1387", + "code": "31387", + "data": { + "gtfs": { + "stop_id": "1387", + "stop_code": "31387", + "stop_name": "boul. des Promenades et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. des Promenades et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.3815357878277, + 45.4877849512954 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9391815297029 + }, + "name": "boul. des Promenades et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.381535788, + 45.487784951 + ] + }, + "is_frozen": false, + "integer_id": 247, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.374979, + 45.506037 + ] + }, + "id": 248, + "properties": { + "id": "92f002bc-31eb-4cd4-babf-60ca8f4a9202", + "code": "31388", + "data": { + "stops": [ + { + "id": "1388", + "code": "31388", + "data": { + "gtfs": { + "stop_id": "1388", + "stop_code": "31388", + "stop_name": "Stationnement des Promenades et Sports Experts", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Stationnement des Promenades et Sports Experts", + "geography": { + "type": "Point", + "coordinates": [ + -73.3746746114984, + 45.5059194789785 + ] + } + }, + { + "id": "4652", + "code": "34652", + "data": { + "gtfs": { + "stop_id": "4652", + "stop_code": "34652", + "stop_name": "Stationnement des Promenades et Sports Experts", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Stationnement des Promenades et Sports Experts", + "geography": { + "type": "Point", + "coordinates": [ + -73.3747545898888, + 45.5060927441027 + ] + } + }, + { + "id": "5043", + "code": "35043", + "data": { + "gtfs": { + "stop_id": "5043", + "stop_code": "35043", + "stop_name": "Stationnement des Promenades et Sports Experts", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Stationnement des Promenades et Sports Experts", + "geography": { + "type": "Point", + "coordinates": [ + -73.3752834494844, + 45.5061550492321 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2474661304913 + }, + "name": "Stationnement des Promenades et Sports Experts", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.37497903, + 45.506037264 + ] + }, + "is_frozen": false, + "integer_id": 248, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.394163, + 45.4928 + ] + }, + "id": 249, + "properties": { + "id": "70ea9063-86f0-43f5-9e7d-16ea087fc4ce", + "code": "31394", + "data": { + "stops": [ + { + "id": "1394", + "code": "31394", + "data": { + "gtfs": { + "stop_id": "1394", + "stop_code": "31394", + "stop_name": "ch. de Chambly et d'York", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et d'York", + "geography": { + "type": "Point", + "coordinates": [ + -73.3941630013602, + 45.4927995910069 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0238501083013 + }, + "name": "ch. de Chambly et d'York", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.394163001, + 45.492799591 + ] + }, + "is_frozen": false, + "integer_id": 249, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.406842, + 45.498103 + ] + }, + "id": 250, + "properties": { + "id": "50ca3159-13cc-4149-b07f-8267a31166e3", + "code": "31396", + "data": { + "stops": [ + { + "id": "1396", + "code": "31396", + "data": { + "gtfs": { + "stop_id": "1396", + "stop_code": "31396", + "stop_name": "boul. Gaétan-Boucher et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4068989738546, + 45.4979597232163 + ] + } + }, + { + "id": "3431", + "code": "33431", + "data": { + "gtfs": { + "stop_id": "3431", + "stop_code": "33431", + "stop_name": "ch. de Chambly et boul. Gaétan-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Gaétan-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4067845110222, + 45.4982460447594 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1134167176197 + }, + "name": "boul. Gaétan-Boucher et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.406841742, + 45.498102884 + ] + }, + "is_frozen": false, + "integer_id": 250, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.40893, + 45.494827 + ] + }, + "id": 251, + "properties": { + "id": "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", + "code": "31397", + "data": { + "stops": [ + { + "id": "1397", + "code": "31397", + "data": { + "gtfs": { + "stop_id": "1397", + "stop_code": "31397", + "stop_name": "boul. Gaétan-Boucher et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4088997025176, + 45.4951992172913 + ] + } + }, + { + "id": "1718", + "code": "31718", + "data": { + "gtfs": { + "stop_id": "1718", + "stop_code": "31718", + "stop_name": "boul. Gaétan-Boucher et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4093385946134, + 45.4945346822885 + ] + } + }, + { + "id": "2969", + "code": "32969", + "data": { + "gtfs": { + "stop_id": "2969", + "stop_code": "32969", + "stop_name": "boul. Cousineau et boul. Gaétan-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et boul. Gaétan-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4091833739558, + 45.4949406992402 + ] + } + }, + { + "id": "3275", + "code": "33275", + "data": { + "gtfs": { + "stop_id": "3275", + "stop_code": "33275", + "stop_name": "boul. Cousineau et boul. Gaétan-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et boul. Gaétan-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4085223396734, + 45.4949432159581 + ] + } + }, + { + "id": "3535", + "code": "33535", + "data": { + "gtfs": { + "stop_id": "3535", + "stop_code": "33535", + "stop_name": "boul. Gaétan-Boucher et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.40901401582, + 45.4944541688961 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0580826103408 + }, + "name": "boul. Gaétan-Boucher et boul. Cousineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.408930467, + 45.494826693 + ] + }, + "is_frozen": false, + "integer_id": 251, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.413653, + 45.497311 + ] + }, + "id": 252, + "properties": { + "id": "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", + "code": "31399", + "data": { + "stops": [ + { + "id": "1399", + "code": "31399", + "data": { + "gtfs": { + "stop_id": "1399", + "stop_code": "31399", + "stop_name": "boul. Cousineau et civique 5750", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et civique 5750", + "geography": { + "type": "Point", + "coordinates": [ + -73.4136531018974, + 45.4973106231647 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1000347374686 + }, + "name": "boul. Cousineau et civique 5750", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.413653102, + 45.497310623 + ] + }, + "is_frozen": false, + "integer_id": 252, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.416453, + 45.498332 + ] + }, + "id": 253, + "properties": { + "id": "e654777c-6941-47f5-a273-d73ab074f10e", + "code": "31400", + "data": { + "stops": [ + { + "id": "1400", + "code": "31400", + "data": { + "gtfs": { + "stop_id": "1400", + "stop_code": "31400", + "stop_name": "boul. Cousineau et Prince-Charles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Prince-Charles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4164526055622, + 45.4983323108933 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1172920442732 + }, + "name": "boul. Cousineau et Prince-Charles", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.416452606, + 45.498332311 + ] + }, + "is_frozen": false, + "integer_id": 253, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.425898, + 45.50256 + ] + }, + "id": 254, + "properties": { + "id": "a0b2e96c-f14a-4143-9ef3-8bb0e0e8a984", + "code": "31402", + "data": { + "stops": [ + { + "id": "1402", + "code": "31402", + "data": { + "gtfs": { + "stop_id": "1402", + "stop_code": "31402", + "stop_name": "boul. Cousineau et Perras", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Perras", + "geography": { + "type": "Point", + "coordinates": [ + -73.425898487459, + 45.5025600935909 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1887132961048 + }, + "name": "boul. Cousineau et Perras", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.425898487, + 45.502560094 + ] + }, + "is_frozen": false, + "integer_id": 254, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.43938, + 45.511837 + ] + }, + "id": 255, + "properties": { + "id": "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", + "code": "31405", + "data": { + "stops": [ + { + "id": "1405", + "code": "31405", + "data": { + "gtfs": { + "stop_id": "1405", + "stop_code": "31405", + "stop_name": "ch. de Chambly et boul. Vauquelin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Vauquelin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4393797014289, + 45.5118365025891 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3454783032546 + }, + "name": "ch. de Chambly et boul. Vauquelin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439379701, + 45.511836503 + ] + }, + "is_frozen": false, + "integer_id": 255, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442845, + 45.513279 + ] + }, + "id": 256, + "properties": { + "id": "7b1c691c-8a55-45c2-8401-9d619a0efb76", + "code": "31406", + "data": { + "stops": [ + { + "id": "1406", + "code": "31406", + "data": { + "gtfs": { + "stop_id": "1406", + "stop_code": "31406", + "stop_name": "ch. de Chambly et Cuvillier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Cuvillier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4428447661494, + 45.5132789837461 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3698621347434 + }, + "name": "ch. de Chambly et Cuvillier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442844766, + 45.513278984 + ] + }, + "is_frozen": false, + "integer_id": 256, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460144, + 45.520527 + ] + }, + "id": 257, + "properties": { + "id": "5981cea7-b196-4e72-820c-362fb9c4e212", + "code": "31412", + "data": { + "stops": [ + { + "id": "1412", + "code": "31412", + "data": { + "gtfs": { + "stop_id": "1412", + "stop_code": "31412", + "stop_name": "ch. de Chambly et Deschamps", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Deschamps", + "geography": { + "type": "Point", + "coordinates": [ + -73.4601441765561, + 45.5205265811213 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4924042291784 + }, + "name": "ch. de Chambly et Deschamps", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.460144177, + 45.520526581 + ] + }, + "is_frozen": false, + "integer_id": 257, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467834, + 45.523721 + ] + }, + "id": 258, + "properties": { + "id": "0d6b35f8-1b6c-4403-a7a5-53247aec7649", + "code": "31413", + "data": { + "stops": [ + { + "id": "1413", + "code": "31413", + "data": { + "gtfs": { + "stop_id": "1413", + "stop_code": "31413", + "stop_name": "ch. de Chambly et Beaubien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Beaubien", + "geography": { + "type": "Point", + "coordinates": [ + -73.467834409787, + 45.5237206488211 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5464242658121 + }, + "name": "ch. de Chambly et Beaubien", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46783441, + 45.523720649 + ] + }, + "is_frozen": false, + "integer_id": 258, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47261, + 45.525619 + ] + }, + "id": 259, + "properties": { + "id": "011d1f54-164c-4564-a051-bdacad3e287d", + "code": "31415", + "data": { + "stops": [ + { + "id": "1415", + "code": "31415", + "data": { + "gtfs": { + "stop_id": "1415", + "stop_code": "31415", + "stop_name": "ch. de Chambly et boul. Nobert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Nobert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4723862163399, + 45.5256331369413 + ] + } + }, + { + "id": "3779", + "code": "33779", + "data": { + "gtfs": { + "stop_id": "3779", + "stop_code": "33779", + "stop_name": "ch. de Chambly et boul. Nobert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Nobert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4728340594332, + 45.5256048354901 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5785344125821 + }, + "name": "ch. de Chambly et boul. Nobert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472610138, + 45.525618986 + ] + }, + "is_frozen": false, + "integer_id": 259, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47826, + 45.528082 + ] + }, + "id": 260, + "properties": { + "id": "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", + "code": "31418", + "data": { + "stops": [ + { + "id": "1418", + "code": "31418", + "data": { + "gtfs": { + "stop_id": "1418", + "stop_code": "31418", + "stop_name": "ch. de Chambly et Benoit est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Benoit est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4782599871083, + 45.528082388817 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6202073724833 + }, + "name": "ch. de Chambly et Benoit est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.478259987, + 45.528082389 + ] + }, + "is_frozen": false, + "integer_id": 260, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492874, + 45.53416 + ] + }, + "id": 261, + "properties": { + "id": "d15f81ba-7519-47f7-aa07-0026f1b03e42", + "code": "31422", + "data": { + "stops": [ + { + "id": "1422", + "code": "31422", + "data": { + "gtfs": { + "stop_id": "1422", + "stop_code": "31422", + "stop_name": "ch. de Chambly et place du Collège", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et place du Collège", + "geography": { + "type": "Point", + "coordinates": [ + -73.4928737619742, + 45.5341600794266 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7230457351758 + }, + "name": "ch. de Chambly et place du Collège", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492873762, + 45.534160079 + ] + }, + "is_frozen": false, + "integer_id": 261, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.503193, + 45.538541 + ] + }, + "id": 262, + "properties": { + "id": "5f58acb6-be68-437f-bde7-a77d03125af9", + "code": "31425", + "data": { + "stops": [ + { + "id": "1425", + "code": "31425", + "data": { + "gtfs": { + "stop_id": "1425", + "stop_code": "31425", + "stop_name": "ch. de Chambly et Lévis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Lévis", + "geography": { + "type": "Point", + "coordinates": [ + -73.5031933042441, + 45.5385410541972 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7971950350828 + }, + "name": "ch. de Chambly et Lévis", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.503193304, + 45.538541054 + ] + }, + "is_frozen": false, + "integer_id": 262, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.504789, + 45.539575 + ] + }, + "id": 263, + "properties": { + "id": "4e61612c-2f48-47d6-ad42-7c0737853911", + "code": "31426", + "data": { + "stops": [ + { + "id": "1426", + "code": "31426", + "data": { + "gtfs": { + "stop_id": "1426", + "stop_code": "31426", + "stop_name": "ch. de Chambly et Saint-Laurent est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Saint-Laurent est", + "geography": { + "type": "Point", + "coordinates": [ + -73.50469785298, + 45.5394959249068 + ] + } + }, + { + "id": "3013", + "code": "33013", + "data": { + "gtfs": { + "stop_id": "3013", + "stop_code": "33013", + "stop_name": "Saint-Laurent est et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent est et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.5048807360661, + 45.539653175496 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8146897567123 + }, + "name": "ch. de Chambly et Saint-Laurent est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.504789295, + 45.53957455 + ] + }, + "is_frozen": false, + "integer_id": 263, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.508425, + 45.540535 + ] + }, + "id": 264, + "properties": { + "id": "e46ba2d2-9f30-419f-acae-c73c3ef665c5", + "code": "31427", + "data": { + "stops": [ + { + "id": "1427", + "code": "31427", + "data": { + "gtfs": { + "stop_id": "1427", + "stop_code": "31427", + "stop_name": "Saint-Charles ouest et Charlotte", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et Charlotte", + "geography": { + "type": "Point", + "coordinates": [ + -73.5084248857608, + 45.5405354151014 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8309558565129 + }, + "name": "Saint-Charles ouest et Charlotte", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.508424886, + 45.540535415 + ] + }, + "is_frozen": false, + "integer_id": 264, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.516741, + 45.532474 + ] + }, + "id": 265, + "properties": { + "id": "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", + "code": "31431", + "data": { + "stops": [ + { + "id": "1431", + "code": "31431", + "data": { + "gtfs": { + "stop_id": "1431", + "stop_code": "31431", + "stop_name": "Saint-Charles ouest et Jean-Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et Jean-Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.5166727776734, + 45.5326981301457 + ] + } + }, + { + "id": "3777", + "code": "33777", + "data": { + "gtfs": { + "stop_id": "3777", + "stop_code": "33777", + "stop_name": "Saint-Charles ouest et Jean-Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et Jean-Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.5168102182047, + 45.5322508615386 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6945213032091 + }, + "name": "Saint-Charles ouest et Jean-Béliveau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.516741498, + 45.532474496 + ] + }, + "is_frozen": false, + "integer_id": 265, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.519538, + 45.526006 + ] + }, + "id": 266, + "properties": { + "id": "4fb4515b-e129-4622-b855-89143c2fd488", + "code": "31433", + "data": { + "stops": [ + { + "id": "1433", + "code": "31433", + "data": { + "gtfs": { + "stop_id": "1433", + "stop_code": "31433", + "stop_name": "Saint-Charles ouest et place Charles-Le Moyne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et place Charles-Le Moyne", + "geography": { + "type": "Point", + "coordinates": [ + -73.5195379556377, + 45.5260059613304 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5850804432189 + }, + "name": "Saint-Charles ouest et place Charles-Le Moyne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.519537956, + 45.526005961 + ] + }, + "is_frozen": false, + "integer_id": 266, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442382, + 45.506851 + ] + }, + "id": 267, + "properties": { + "id": "631a5504-9e7c-4041-85e7-bf81e6a995d2", + "code": "31436", + "data": { + "stops": [ + { + "id": "1436", + "code": "31436", + "data": { + "gtfs": { + "stop_id": "1436", + "stop_code": "31436", + "stop_name": "boul. Sir-Wilfrid-Laurier et Harvey", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier et Harvey", + "geography": { + "type": "Point", + "coordinates": [ + -73.4424578622968, + 45.5069779893569 + ] + } + }, + { + "id": "1734", + "code": "31734", + "data": { + "gtfs": { + "stop_id": "1734", + "stop_code": "31734", + "stop_name": "Harvey et boul. Sir-Wilfrid-Laurier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Harvey et boul. Sir-Wilfrid-Laurier", + "geography": { + "type": "Point", + "coordinates": [ + -73.442306957622, + 45.5067234360025 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2612123193312 + }, + "name": "boul. Sir-Wilfrid-Laurier et Harvey", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44238241, + 45.506850713 + ] + }, + "is_frozen": false, + "integer_id": 267, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.438168, + 45.507239 + ] + }, + "id": 268, + "properties": { + "id": "b487112d-20d7-48e5-a658-6d701c316792", + "code": "31437", + "data": { + "stops": [ + { + "id": "1437", + "code": "31437", + "data": { + "gtfs": { + "stop_id": "1437", + "stop_code": "31437", + "stop_name": "boul. Sir-Wilfrid-Laurier et boul. Losch", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier et boul. Losch", + "geography": { + "type": "Point", + "coordinates": [ + -73.4381676550896, + 45.5072390757501 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2677753369549 + }, + "name": "boul. Sir-Wilfrid-Laurier et boul. Losch", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438167655, + 45.507239076 + ] + }, + "is_frozen": false, + "integer_id": 268, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.433666, + 45.50705 + ] + }, + "id": 269, + "properties": { + "id": "2f59e70c-00bf-46fc-9104-53f0aa9fb5e8", + "code": "31438", + "data": { + "stops": [ + { + "id": "1438", + "code": "31438", + "data": { + "gtfs": { + "stop_id": "1438", + "stop_code": "31438", + "stop_name": "boul. Sir-Wilfrid-Laurier et Jensens", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier et Jensens", + "geography": { + "type": "Point", + "coordinates": [ + -73.4336658196494, + 45.5070501982821 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2645834361924 + }, + "name": "boul. Sir-Wilfrid-Laurier et Jensens", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.43366582, + 45.507050198 + ] + }, + "is_frozen": false, + "integer_id": 269, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.426939, + 45.50657 + ] + }, + "id": 270, + "properties": { + "id": "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", + "code": "31439", + "data": { + "stops": [ + { + "id": "1439", + "code": "31439", + "data": { + "gtfs": { + "stop_id": "1439", + "stop_code": "31439", + "stop_name": "Martineau et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Martineau et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4266216821875, + 45.5067958189497 + ] + } + }, + { + "id": "1454", + "code": "31454", + "data": { + "gtfs": { + "stop_id": "1454", + "stop_code": "31454", + "stop_name": "ch. de Chambly et Martineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Martineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4266617850599, + 45.5063447212741 + ] + } + }, + { + "id": "1456", + "code": "31456", + "data": { + "gtfs": { + "stop_id": "1456", + "stop_code": "31456", + "stop_name": "ch. de Chambly et Martineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Martineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4272567003019, + 45.5063511702076 + ] + } + }, + { + "id": "1466", + "code": "31466", + "data": { + "gtfs": { + "stop_id": "1466", + "stop_code": "31466", + "stop_name": "Martineau et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Martineau et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4269564543585, + 45.506563481819 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2564731450798 + }, + "name": "Martineau et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.426939191, + 45.50657027 + ] + }, + "is_frozen": false, + "integer_id": 270, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.422735, + 45.508112 + ] + }, + "id": 271, + "properties": { + "id": "8760b56a-bae1-4862-80b6-347cc65704e3", + "code": "31440", + "data": { + "stops": [ + { + "id": "1440", + "code": "31440", + "data": { + "gtfs": { + "stop_id": "1440", + "stop_code": "31440", + "stop_name": "av. Raoul et Caumartin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Raoul et Caumartin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4227354706504, + 45.5081115255035 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.282519519268 + }, + "name": "av. Raoul et Caumartin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.422735471, + 45.508111526 + ] + }, + "is_frozen": false, + "integer_id": 271, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.417765, + 45.508512 + ] + }, + "id": 272, + "properties": { + "id": "86f64d55-814a-4fbc-858b-c5c25e590481", + "code": "31441", + "data": { + "stops": [ + { + "id": "1441", + "code": "31441", + "data": { + "gtfs": { + "stop_id": "1441", + "stop_code": "31441", + "stop_name": "av. Raoul et de Chamonix", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Raoul et de Chamonix", + "geography": { + "type": "Point", + "coordinates": [ + -73.4178958074487, + 45.5084562462622 + ] + } + }, + { + "id": "1464", + "code": "31464", + "data": { + "gtfs": { + "stop_id": "1464", + "stop_code": "31464", + "stop_name": "av. Raoul et de Chamonix", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Raoul et de Chamonix", + "geography": { + "type": "Point", + "coordinates": [ + -73.4176341221608, + 45.508566880638 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.289280269049 + }, + "name": "av. Raoul et de Chamonix", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.417764965, + 45.508511563 + ] + }, + "is_frozen": false, + "integer_id": 272, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.414775, + 45.508653 + ] + }, + "id": 273, + "properties": { + "id": "a591956d-b42e-4489-8d54-3a5d5df835c1", + "code": "31442", + "data": { + "stops": [ + { + "id": "1442", + "code": "31442", + "data": { + "gtfs": { + "stop_id": "1442", + "stop_code": "31442", + "stop_name": "av. Raoul et tsse Masson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Raoul et tsse Masson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4148940790294, + 45.5086413586681 + ] + } + }, + { + "id": "1463", + "code": "31463", + "data": { + "gtfs": { + "stop_id": "1463", + "stop_code": "31463", + "stop_name": "tsse Masson et av. Raoul", + "location_type": 0, + "parent_station": "" + } + }, + "name": "tsse Masson et av. Raoul", + "geography": { + "type": "Point", + "coordinates": [ + -73.4146552865607, + 45.5086636765647 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2916624863545 + }, + "name": "av. Raoul et tsse Masson", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.414774683, + 45.508652518 + ] + }, + "is_frozen": false, + "integer_id": 273, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.413107, + 45.507781 + ] + }, + "id": 274, + "properties": { + "id": "16d596f0-097e-4afe-b8c4-9b129c3c3d66", + "code": "31443", + "data": { + "stops": [ + { + "id": "1443", + "code": "31443", + "data": { + "gtfs": { + "stop_id": "1443", + "stop_code": "31443", + "stop_name": "tsse Masson et Morency", + "location_type": 0, + "parent_station": "" + } + }, + "name": "tsse Masson et Morency", + "geography": { + "type": "Point", + "coordinates": [ + -73.4133440501881, + 45.5077898424312 + ] + } + }, + { + "id": "1462", + "code": "31462", + "data": { + "gtfs": { + "stop_id": "1462", + "stop_code": "31462", + "stop_name": "Morency et tsse Masson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Morency et tsse Masson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4128705662059, + 45.507771485419 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2769279561572 + }, + "name": "tsse Masson et Morency", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.413107308, + 45.507780664 + ] + }, + "is_frozen": false, + "integer_id": 274, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.410386, + 45.49976 + ] + }, + "id": 275, + "properties": { + "id": "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", + "code": "31449", + "data": { + "stops": [ + { + "id": "1449", + "code": "31449", + "data": { + "gtfs": { + "stop_id": "1449", + "stop_code": "31449", + "stop_name": "ch. de Chambly et Meunier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Meunier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4103275965045, + 45.4998131261303 + ] + } + }, + { + "id": "1461", + "code": "31461", + "data": { + "gtfs": { + "stop_id": "1461", + "stop_code": "31461", + "stop_name": "ch. de Chambly et Meunier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Meunier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4104452551524, + 45.4997059129881 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1414005510813 + }, + "name": "ch. de Chambly et Meunier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.410386426, + 45.49975952 + ] + }, + "is_frozen": false, + "integer_id": 275, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.412241, + 45.500487 + ] + }, + "id": 276, + "properties": { + "id": "69889f24-c076-4661-981b-6008a401d446", + "code": "31450", + "data": { + "stops": [ + { + "id": "1450", + "code": "31450", + "data": { + "gtfs": { + "stop_id": "1450", + "stop_code": "31450", + "stop_name": "ch. de Chambly et Howard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Howard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4119684833759, + 45.5004910649752 + ] + } + }, + { + "id": "1460", + "code": "31460", + "data": { + "gtfs": { + "stop_id": "1460", + "stop_code": "31460", + "stop_name": "ch. de Chambly et Howard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Howard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4125131254006, + 45.5004824849687 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1536860866764 + }, + "name": "ch. de Chambly et Howard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.412240804, + 45.500486775 + ] + }, + "is_frozen": false, + "integer_id": 276, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.414608, + 45.5012 + ] + }, + "id": 277, + "properties": { + "id": "853b0202-bae1-4c20-ab0e-8b27d1350e9a", + "code": "31451", + "data": { + "stops": [ + { + "id": "1451", + "code": "31451", + "data": { + "gtfs": { + "stop_id": "1451", + "stop_code": "31451", + "stop_name": "ch. de Chambly et Mongeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Mongeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4144137677242, + 45.5013650838466 + ] + } + }, + { + "id": "1459", + "code": "31459", + "data": { + "gtfs": { + "stop_id": "1459", + "stop_code": "31459", + "stop_name": "ch. de Chambly et Prince-Charles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Prince-Charles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4147353714352, + 45.5013235275301 + ] + } + }, + { + "id": "2846", + "code": "32846", + "data": { + "gtfs": { + "stop_id": "2846", + "stop_code": "32846", + "stop_name": "Prince-Charles et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Prince-Charles et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4145227422093, + 45.5011022825133 + ] + } + }, + { + "id": "4750", + "code": "34750", + "data": { + "gtfs": { + "stop_id": "4750", + "stop_code": "34750", + "stop_name": "Prince-Charles et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Prince-Charles et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4148017875251, + 45.5010358116856 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1657426387541 + }, + "name": "ch. de Chambly et Mongeau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.414607778, + 45.501200448 + ] + }, + "is_frozen": false, + "integer_id": 277, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.423531, + 45.504895 + ] + }, + "id": 278, + "properties": { + "id": "7207a900-095a-4a6f-9e58-d5821a46e7d1", + "code": "31453", + "data": { + "stops": [ + { + "id": "1453", + "code": "31453", + "data": { + "gtfs": { + "stop_id": "1453", + "stop_code": "31453", + "stop_name": "ch. de Chambly et de Cherbourg", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et de Cherbourg", + "geography": { + "type": "Point", + "coordinates": [ + -73.4234706650278, + 45.5049479519679 + ] + } + }, + { + "id": "1458", + "code": "31458", + "data": { + "gtfs": { + "stop_id": "1458", + "stop_code": "31458", + "stop_name": "ch. de Chambly et de Cherbourg", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et de Cherbourg", + "geography": { + "type": "Point", + "coordinates": [ + -73.4235913417295, + 45.5048411737262 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2281570226447 + }, + "name": "ch. de Chambly et de Cherbourg", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.423531003, + 45.504894563 + ] + }, + "is_frozen": false, + "integer_id": 278, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.42506, + 45.505569 + ] + }, + "id": 279, + "properties": { + "id": "2d759b9b-5efb-4a57-814c-915d6b6185d7", + "code": "31457", + "data": { + "stops": [ + { + "id": "1457", + "code": "31457", + "data": { + "gtfs": { + "stop_id": "1457", + "stop_code": "31457", + "stop_name": "ch. de Chambly et Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4252915543787, + 45.5055846685602 + ] + } + }, + { + "id": "3561", + "code": "33561", + "data": { + "gtfs": { + "stop_id": "3561", + "stop_code": "33561", + "stop_name": "ch. de Chambly et Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4248289011054, + 45.5055528705507 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2395494822974 + }, + "name": "ch. de Chambly et Tremblay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.425060228, + 45.50556877 + ] + }, + "is_frozen": false, + "integer_id": 279, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486526, + 45.540087 + ] + }, + "id": 280, + "properties": { + "id": "ce58f095-9b51-4521-8a41-e64bfb0df31e", + "code": "31470", + "data": { + "stops": [ + { + "id": "1470", + "code": "31470", + "data": { + "gtfs": { + "stop_id": "1470", + "stop_code": "31470", + "stop_name": "boul. Roland-Therrien et de Bruges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et de Bruges", + "geography": { + "type": "Point", + "coordinates": [ + -73.4865261414744, + 45.5400872783817 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8233694217419 + }, + "name": "boul. Roland-Therrien et de Bruges", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486526141, + 45.540087278 + ] + }, + "is_frozen": false, + "integer_id": 280, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.480074, + 45.537984 + ] + }, + "id": 281, + "properties": { + "id": "65003b15-0baf-4f82-9e15-665e17fd1c75", + "code": "31473", + "data": { + "stops": [ + { + "id": "1473", + "code": "31473", + "data": { + "gtfs": { + "stop_id": "1473", + "stop_code": "31473", + "stop_name": "boul. Roland-Therrien et ch. du Lac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et ch. du Lac", + "geography": { + "type": "Point", + "coordinates": [ + -73.480074232291, + 45.5379836061027 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7877591119856 + }, + "name": "boul. Roland-Therrien et ch. du Lac", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.480074232, + 45.537983606 + ] + }, + "is_frozen": false, + "integer_id": 281, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.476967, + 45.537145 + ] + }, + "id": 282, + "properties": { + "id": "81b3573e-d948-478d-a011-db20e21b0c62", + "code": "31474", + "data": { + "stops": [ + { + "id": "1474", + "code": "31474", + "data": { + "gtfs": { + "stop_id": "1474", + "stop_code": "31474", + "stop_name": "boul. Roland-Therrien et boul. Curé-Poirier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et boul. Curé-Poirier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4769674798466, + 45.537145227283 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7735683913609 + }, + "name": "boul. Roland-Therrien et boul. Curé-Poirier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47696748, + 45.537145227 + ] + }, + "is_frozen": false, + "integer_id": 282, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469254, + 45.536852 + ] + }, + "id": 283, + "properties": { + "id": "2202db72-0aaa-4f54-a021-f6fae24f6d63", + "code": "31475", + "data": { + "stops": [ + { + "id": "1475", + "code": "31475", + "data": { + "gtfs": { + "stop_id": "1475", + "stop_code": "31475", + "stop_name": "boul. Roland-Therrien et King-George", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et King-George", + "geography": { + "type": "Point", + "coordinates": [ + -73.4694288845902, + 45.5369083300836 + ] + } + }, + { + "id": "5506", + "code": "30254", + "data": { + "gtfs": { + "stop_id": "5506", + "stop_code": "30254", + "stop_name": "King-George et boul. Roland-Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "King-George et boul. Roland-Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4690789964355, + 45.5367956095279 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.768604760262 + }, + "name": "boul. Roland-Therrien et King-George", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469253941, + 45.53685197 + ] + }, + "is_frozen": false, + "integer_id": 283, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466275, + 45.535437 + ] + }, + "id": 284, + "properties": { + "id": "3b70b024-5c5b-4081-8c70-3fc026422289", + "code": "31476", + "data": { + "stops": [ + { + "id": "1476", + "code": "31476", + "data": { + "gtfs": { + "stop_id": "1476", + "stop_code": "31476", + "stop_name": "boul. Roland-Therrien et ch. Du Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et ch. Du Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4662753705721, + 45.5354374568111 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.744663968393 + }, + "name": "boul. Roland-Therrien et ch. Du Tremblay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466275371, + 45.535437457 + ] + }, + "is_frozen": false, + "integer_id": 284, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494975, + 45.547488 + ] + }, + "id": 285, + "properties": { + "id": "8a3f1208-7ffb-452e-8ebb-c436acba82d6", + "code": "31477", + "data": { + "stops": [ + { + "id": "1477", + "code": "31477", + "data": { + "gtfs": { + "stop_id": "1477", + "stop_code": "31477", + "stop_name": "boul. Roland-Therrien et d'Auteuil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et d'Auteuil", + "geography": { + "type": "Point", + "coordinates": [ + -73.4949753974841, + 45.5474883067056 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.948683135472 + }, + "name": "boul. Roland-Therrien et d'Auteuil", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494975397, + 45.547488307 + ] + }, + "is_frozen": false, + "integer_id": 285, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463906, + 45.533593 + ] + }, + "id": 286, + "properties": { + "id": "1e4facbf-29da-4515-97c4-4ef86c22290e", + "code": "31478", + "data": { + "stops": [ + { + "id": "1478", + "code": "31478", + "data": { + "gtfs": { + "stop_id": "1478", + "stop_code": "31478", + "stop_name": "boul. Roland-Therrien et PALAIS DE JUSTICE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et PALAIS DE JUSTICE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4641914056155, + 45.5335568053197 + ] + } + }, + { + "id": "1503", + "code": "31503", + "data": { + "gtfs": { + "stop_id": "1503", + "stop_code": "31503", + "stop_name": "boul. Roland-Therrien et PALAIS DE JUSTICE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et PALAIS DE JUSTICE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4636201329929, + 45.5336296646818 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7134529831718 + }, + "name": "boul. Roland-Therrien et PALAIS DE JUSTICE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463905769, + 45.533593235 + ] + }, + "is_frozen": false, + "integer_id": 286, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457834, + 45.530459 + ] + }, + "id": 287, + "properties": { + "id": "53aec761-3dae-44a6-bc58-9d5003bfa1bb", + "code": "31479", + "data": { + "stops": [ + { + "id": "1479", + "code": "31479", + "data": { + "gtfs": { + "stop_id": "1479", + "stop_code": "31479", + "stop_name": "boul. Roland-Therrien et Toulouse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et Toulouse", + "geography": { + "type": "Point", + "coordinates": [ + -73.4578344773882, + 45.530459414651 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.660424235926 + }, + "name": "boul. Roland-Therrien et Toulouse", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457834477, + 45.530459415 + ] + }, + "is_frozen": false, + "integer_id": 287, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452314, + 45.52831 + ] + }, + "id": 288, + "properties": { + "id": "51878141-1194-4666-977c-0597ee638ffb", + "code": "31480", + "data": { + "stops": [ + { + "id": "1480", + "code": "31480", + "data": { + "gtfs": { + "stop_id": "1480", + "stop_code": "31480", + "stop_name": "boul. Roland-Therrien et Bizard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et Bizard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4525192122781, + 45.5281914267728 + ] + } + }, + { + "id": "1499", + "code": "31499", + "data": { + "gtfs": { + "stop_id": "1499", + "stop_code": "31499", + "stop_name": "boul. Roland-Therrien et Bizard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et Bizard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4521089629484, + 45.5284280211633 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.624053431746 + }, + "name": "boul. Roland-Therrien et Bizard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452314088, + 45.528309724 + ] + }, + "is_frozen": false, + "integer_id": 288, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449948, + 45.527156 + ] + }, + "id": 289, + "properties": { + "id": "83cbcc26-a35c-4db6-a784-03a152cb9d6f", + "code": "31481", + "data": { + "stops": [ + { + "id": "1481", + "code": "31481", + "data": { + "gtfs": { + "stop_id": "1481", + "stop_code": "31481", + "stop_name": "boul. Roland-Therrien et Montpetit", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et Montpetit", + "geography": { + "type": "Point", + "coordinates": [ + -73.449948357327, + 45.5271558724045 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6045330109962 + }, + "name": "boul. Roland-Therrien et Montpetit", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449948357, + 45.527155872 + ] + }, + "is_frozen": false, + "integer_id": 289, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44842, + 45.52936 + ] + }, + "id": 290, + "properties": { + "id": "da0ea2a1-8305-4096-84b5-3da6997f0293", + "code": "31482", + "data": { + "stops": [ + { + "id": "1482", + "code": "31482", + "data": { + "gtfs": { + "stop_id": "1482", + "stop_code": "31482", + "stop_name": "Boucher et Blainville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Boucher et Blainville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4483716025249, + 45.5292232104685 + ] + } + }, + { + "id": "1497", + "code": "31497", + "data": { + "gtfs": { + "stop_id": "1497", + "stop_code": "31497", + "stop_name": "Boucher et Blainville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Boucher et Blainville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4484681763198, + 45.5294971533282 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6418257049565 + }, + "name": "Boucher et Blainville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448419889, + 45.529360182 + ] + }, + "is_frozen": false, + "integer_id": 290, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.447478, + 45.530495 + ] + }, + "id": 291, + "properties": { + "id": "69483ac1-331d-4f0e-93b5-d8134f380763", + "code": "31483", + "data": { + "stops": [ + { + "id": "1483", + "code": "31483", + "data": { + "gtfs": { + "stop_id": "1483", + "stop_code": "31483", + "stop_name": "Boucher et Belcourt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Boucher et Belcourt", + "geography": { + "type": "Point", + "coordinates": [ + -73.4475702906617, + 45.5304236704739 + ] + } + }, + { + "id": "1496", + "code": "31496", + "data": { + "gtfs": { + "stop_id": "1496", + "stop_code": "31496", + "stop_name": "Belcourt et Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4473866176987, + 45.5305672335746 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6610339840934 + }, + "name": "Boucher et Belcourt", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447478454, + 45.530495452 + ] + }, + "is_frozen": false, + "integer_id": 291, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448366, + 45.532412 + ] + }, + "id": 292, + "properties": { + "id": "66f007ae-d813-40cb-ab41-e87b10da3a72", + "code": "31484", + "data": { + "stops": [ + { + "id": "1484", + "code": "31484", + "data": { + "gtfs": { + "stop_id": "1484", + "stop_code": "31484", + "stop_name": "Belcourt et tsse Bellemare", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et tsse Bellemare", + "geography": { + "type": "Point", + "coordinates": [ + -73.4483657008696, + 45.5324116501371 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.693457835036 + }, + "name": "Belcourt et tsse Bellemare", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448365701, + 45.53241165 + ] + }, + "is_frozen": false, + "integer_id": 292, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450097, + 45.533835 + ] + }, + "id": 293, + "properties": { + "id": "6685b5fc-0f35-439d-9c20-c96b665d5201", + "code": "31485", + "data": { + "stops": [ + { + "id": "1485", + "code": "31485", + "data": { + "gtfs": { + "stop_id": "1485", + "stop_code": "31485", + "stop_name": "Belcourt et tsse Des Ormeaux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et tsse Des Ormeaux", + "geography": { + "type": "Point", + "coordinates": [ + -73.450096876693, + 45.533835099824 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7175460512782 + }, + "name": "Belcourt et tsse Des Ormeaux", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450096877, + 45.5338351 + ] + }, + "is_frozen": false, + "integer_id": 293, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452216, + 45.534287 + ] + }, + "id": 294, + "properties": { + "id": "c896d257-2942-4aba-aded-59e49480d892", + "code": "31486", + "data": { + "stops": [ + { + "id": "1486", + "code": "31486", + "data": { + "gtfs": { + "stop_id": "1486", + "stop_code": "31486", + "stop_name": "Belcourt et Beauvais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et Beauvais", + "geography": { + "type": "Point", + "coordinates": [ + -73.4522159513844, + 45.5342872522125 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7251979346482 + }, + "name": "Belcourt et Beauvais", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452215951, + 45.534287252 + ] + }, + "is_frozen": false, + "integer_id": 294, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454728, + 45.533382 + ] + }, + "id": 295, + "properties": { + "id": "62590a84-0f1e-43e0-8046-574d7d23d2e9", + "code": "31487", + "data": { + "stops": [ + { + "id": "1487", + "code": "31487", + "data": { + "gtfs": { + "stop_id": "1487", + "stop_code": "31487", + "stop_name": "Belcourt et Bagot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et Bagot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4547279861442, + 45.533381697432 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7098731799844 + }, + "name": "Belcourt et Bagot", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454727986, + 45.533381697 + ] + }, + "is_frozen": false, + "integer_id": 295, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45593, + 45.534662 + ] + }, + "id": 296, + "properties": { + "id": "48a4676d-1da3-4489-8f80-1edfb1b61b1b", + "code": "31488", + "data": { + "stops": [ + { + "id": "1488", + "code": "31488", + "data": { + "gtfs": { + "stop_id": "1488", + "stop_code": "31488", + "stop_name": "Beauharnois et Bourdon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauharnois et Bourdon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4559304739465, + 45.5346624420541 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.731547508913 + }, + "name": "Beauharnois et Bourdon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455930474, + 45.534662442 + ] + }, + "is_frozen": false, + "integer_id": 296, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453735, + 45.535855 + ] + }, + "id": 297, + "properties": { + "id": "83c203fe-4b10-42fd-aafb-d9bc99f756b0", + "code": "31489", + "data": { + "stops": [ + { + "id": "1489", + "code": "31489", + "data": { + "gtfs": { + "stop_id": "1489", + "stop_code": "31489", + "stop_name": "Beauharnois et Beauvais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauharnois et Beauvais", + "geography": { + "type": "Point", + "coordinates": [ + -73.4537346354092, + 45.535855345625 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7517366010695 + }, + "name": "Beauharnois et Beauvais", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453734635, + 45.535855346 + ] + }, + "is_frozen": false, + "integer_id": 297, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453052, + 45.537592 + ] + }, + "id": 298, + "properties": { + "id": "e5c2d9f4-1be6-458f-854f-8103a3048b8c", + "code": "31490", + "data": { + "stops": [ + { + "id": "1490", + "code": "31490", + "data": { + "gtfs": { + "stop_id": "1490", + "stop_code": "31490", + "stop_name": "Beauharnois et boul. Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauharnois et boul. Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4529673807127, + 45.5374507910087 + ] + } + }, + { + "id": "1775", + "code": "31775", + "data": { + "gtfs": { + "stop_id": "1775", + "stop_code": "31775", + "stop_name": "boul. Béliveau et Beauharnois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et Beauharnois", + "geography": { + "type": "Point", + "coordinates": [ + -73.4528649280375, + 45.5377326633906 + ] + } + }, + { + "id": "5678", + "code": "30446", + "data": { + "gtfs": { + "stop_id": "5678", + "stop_code": "30446", + "stop_name": "boul. Béliveau et Beauharnois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et Beauharnois", + "geography": { + "type": "Point", + "coordinates": [ + -73.4532380853533, + 45.5375495828311 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7811259415091 + }, + "name": "Beauharnois et boul. Béliveau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453051507, + 45.537591727 + ] + }, + "is_frozen": false, + "integer_id": 298, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448784, + 45.536646 + ] + }, + "id": 299, + "properties": { + "id": "25a5f82a-36a7-4a52-af2b-32a681f87765", + "code": "31492", + "data": { + "stops": [ + { + "id": "1492", + "code": "31492", + "data": { + "gtfs": { + "stop_id": "1492", + "stop_code": "31492", + "stop_name": "boul. Béliveau et Braille", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et Braille", + "geography": { + "type": "Point", + "coordinates": [ + -73.4491631247747, + 45.5364913453642 + ] + } + }, + { + "id": "4865", + "code": "34865", + "data": { + "gtfs": { + "stop_id": "4865", + "stop_code": "34865", + "stop_name": "boul. Béliveau et Braille", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et Braille", + "geography": { + "type": "Point", + "coordinates": [ + -73.4487295278016, + 45.536528185302 + ] + } + }, + { + "id": "5800", + "code": "30569", + "data": { + "gtfs": { + "stop_id": "5800", + "stop_code": "30569", + "stop_name": "Braille et boul. Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Braille et boul. Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4484046621409, + 45.536799944795 + ] + } + }, + { + "id": "5802", + "code": "30571", + "data": { + "gtfs": { + "stop_id": "5802", + "stop_code": "30571", + "stop_name": "Braille et boul. Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Braille et boul. Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4488393399193, + 45.5366878378518 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7651125752294 + }, + "name": "boul. Béliveau et Braille", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448783893, + 45.536645645 + ] + }, + "is_frozen": false, + "integer_id": 299, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446251, + 45.535407 + ] + }, + "id": 300, + "properties": { + "id": "8b3a553d-dad5-41ff-b228-80f338c4b0e0", + "code": "31493", + "data": { + "stops": [ + { + "id": "1493", + "code": "31493", + "data": { + "gtfs": { + "stop_id": "1493", + "stop_code": "31493", + "stop_name": "boul. Béliveau et tsse Bourinot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et tsse Bourinot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4465448711421, + 45.5354892848609 + ] + } + }, + { + "id": "4890", + "code": "34890", + "data": { + "gtfs": { + "stop_id": "4890", + "stop_code": "34890", + "stop_name": "boul. Béliveau et tsse des Abénaquis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et tsse des Abénaquis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4459580893742, + 45.5353238291261 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.744141002329 + }, + "name": "boul. Béliveau et tsse Bourinot", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44625148, + 45.535406557 + ] + }, + "is_frozen": false, + "integer_id": 300, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44601, + 45.530493 + ] + }, + "id": 301, + "properties": { + "id": "23ef9461-bbd0-492e-8678-c51238629a13", + "code": "31495", + "data": { + "stops": [ + { + "id": "1495", + "code": "31495", + "data": { + "gtfs": { + "stop_id": "1495", + "stop_code": "31495", + "stop_name": "Belcourt et Brassard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et Brassard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4459176544979, + 45.5306661237046 + ] + } + }, + { + "id": "4896", + "code": "34896", + "data": { + "gtfs": { + "stop_id": "4896", + "stop_code": "34896", + "stop_name": "Belcourt et Brassard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et Brassard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4461017645058, + 45.530319892504 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6609926314326 + }, + "name": "Belcourt et Brassard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44600971, + 45.530493008 + ] + }, + "is_frozen": false, + "integer_id": 301, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449272, + 45.527631 + ] + }, + "id": 302, + "properties": { + "id": "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", + "code": "31498", + "data": { + "stops": [ + { + "id": "1498", + "code": "31498", + "data": { + "gtfs": { + "stop_id": "1498", + "stop_code": "31498", + "stop_name": "Boucher et boul. Roland-Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Boucher et boul. Roland-Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4495294150375, + 45.5274608064483 + ] + } + }, + { + "id": "4175", + "code": "34175", + "data": { + "gtfs": { + "stop_id": "4175", + "stop_code": "34175", + "stop_name": "boul. Roland-Therrien et Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4492996342215, + 45.5272754961952 + ] + } + }, + { + "id": "4742", + "code": "34742", + "data": { + "gtfs": { + "stop_id": "4742", + "stop_code": "34742", + "stop_name": "Boucher et Bonneville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Boucher et Bonneville", + "geography": { + "type": "Point", + "coordinates": [ + -73.449014932699, + 45.5279861533183 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6125679379829 + }, + "name": "Boucher et boul. Roland-Therrien", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449272174, + 45.527630825 + ] + }, + "is_frozen": false, + "integer_id": 302, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454842, + 45.529561 + ] + }, + "id": 303, + "properties": { + "id": "0a078431-12d6-4e73-9908-076c3a27e8ed", + "code": "31500", + "data": { + "stops": [ + { + "id": "1500", + "code": "31500", + "data": { + "gtfs": { + "stop_id": "1500", + "stop_code": "31500", + "stop_name": "boul. Roland-Therrien et boul. Des Ormeaux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et boul. Des Ormeaux", + "geography": { + "type": "Point", + "coordinates": [ + -73.4548415412842, + 45.5295610549647 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6452243058806 + }, + "name": "boul. Roland-Therrien et boul. Des Ormeaux", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454841541, + 45.529561055 + ] + }, + "is_frozen": false, + "integer_id": 303, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457238, + 45.530538 + ] + }, + "id": 304, + "properties": { + "id": "211cb268-dcfa-4d7b-810c-681bfa65d4c8", + "code": "31501", + "data": { + "stops": [ + { + "id": "1501", + "code": "31501", + "data": { + "gtfs": { + "stop_id": "1501", + "stop_code": "31501", + "stop_name": "boul. Roland-Therrien et Bagot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et Bagot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4572383401336, + 45.5305379325352 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6617527666083 + }, + "name": "boul. Roland-Therrien et Bagot", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45723834, + 45.530537933 + ] + }, + "is_frozen": false, + "integer_id": 304, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454759, + 45.529075 + ] + }, + "id": 305, + "properties": { + "id": "6e83e147-802a-4695-95f3-96585bd15c4a", + "code": "31502", + "data": { + "stops": [ + { + "id": "1502", + "code": "31502", + "data": { + "gtfs": { + "stop_id": "1502", + "stop_code": "31502", + "stop_name": "boul. Roland-Therrien et boul. Des Ormeaux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et boul. Des Ormeaux", + "geography": { + "type": "Point", + "coordinates": [ + -73.4547592738122, + 45.5290749060582 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.636999138621 + }, + "name": "boul. Roland-Therrien et boul. Des Ormeaux", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454759274, + 45.529074906 + ] + }, + "is_frozen": false, + "integer_id": 305, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465677, + 45.535502 + ] + }, + "id": 306, + "properties": { + "id": "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", + "code": "31504", + "data": { + "stops": [ + { + "id": "1504", + "code": "31504", + "data": { + "gtfs": { + "stop_id": "1504", + "stop_code": "31504", + "stop_name": "boul. Roland-Therrien et ch. Du Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et ch. Du Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4656332689873, + 45.53538720476 + ] + } + }, + { + "id": "5497", + "code": "30244", + "data": { + "gtfs": { + "stop_id": "5497", + "stop_code": "30244", + "stop_name": "ch. Du Tremblay et boul. Roland-Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et boul. Roland-Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4657207217018, + 45.5356175715401 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7457628938052 + }, + "name": "boul. Roland-Therrien et ch. Du Tremblay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465676995, + 45.535502388 + ] + }, + "is_frozen": false, + "integer_id": 306, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468768, + 45.537132 + ] + }, + "id": 307, + "properties": { + "id": "06d26eca-08e9-467e-9ff0-9595778162a0", + "code": "31505", + "data": { + "stops": [ + { + "id": "1505", + "code": "31505", + "data": { + "gtfs": { + "stop_id": "1505", + "stop_code": "31505", + "stop_name": "boul. Roland-Therrien et King-George", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et King-George", + "geography": { + "type": "Point", + "coordinates": [ + -73.4687677893865, + 45.5371324069894 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7733514000499 + }, + "name": "boul. Roland-Therrien et King-George", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468767789, + 45.537132407 + ] + }, + "is_frozen": false, + "integer_id": 307, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479388, + 45.538256 + ] + }, + "id": 308, + "properties": { + "id": "5f672947-8abc-447c-bf60-535abbf76fae", + "code": "31506", + "data": { + "stops": [ + { + "id": "1506", + "code": "31506", + "data": { + "gtfs": { + "stop_id": "1506", + "stop_code": "31506", + "stop_name": "boul. Roland-Therrien et ch. du Lac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et ch. du Lac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4794227912172, + 45.538156983781 + ] + } + }, + { + "id": "4905", + "code": "34905", + "data": { + "gtfs": { + "stop_id": "4905", + "stop_code": "34905", + "stop_name": "ch. du Lac et boul. Roland-Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et boul. Roland-Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4793527101902, + 45.5383546222325 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7923665563662 + }, + "name": "boul. Roland-Therrien et ch. du Lac", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479387751, + 45.538255803 + ] + }, + "is_frozen": false, + "integer_id": 308, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46145, + 45.531932 + ] + }, + "id": 309, + "properties": { + "id": "578c6989-4eaf-4641-bd71-dda3ad2bf2db", + "code": "31507", + "data": { + "stops": [ + { + "id": "1507", + "code": "31507", + "data": { + "gtfs": { + "stop_id": "1507", + "stop_code": "31507", + "stop_name": "boul. Roland-Therrien et boul. Jacques-Cartier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et boul. Jacques-Cartier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4612746563408, + 45.5319064402144 + ] + } + }, + { + "id": "1880", + "code": "31880", + "data": { + "gtfs": { + "stop_id": "1880", + "stop_code": "31880", + "stop_name": "boul. Jacques-Cartier est et boul. Roland-Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et boul. Roland-Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4616260128428, + 45.531957563428 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6853414379444 + }, + "name": "boul. Roland-Therrien et boul. Jacques-Cartier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461450335, + 45.531932002 + ] + }, + "is_frozen": false, + "integer_id": 309, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461821, + 45.53268 + ] + }, + "id": 310, + "properties": { + "id": "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", + "code": "31508", + "data": { + "stops": [ + { + "id": "1508", + "code": "31508", + "data": { + "gtfs": { + "stop_id": "1508", + "stop_code": "31508", + "stop_name": "boul. Roland-Therrien et boul. Jacques-Cartier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et boul. Jacques-Cartier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4619693589884, + 45.5326888752338 + ] + } + }, + { + "id": "1897", + "code": "31897", + "data": { + "gtfs": { + "stop_id": "1897", + "stop_code": "31897", + "stop_name": "boul. Jacques-Cartier est et boul. Roland-Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et boul. Roland-Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4616723755639, + 45.532671799626 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.698004530492 + }, + "name": "boul. Roland-Therrien et boul. Jacques-Cartier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461820867, + 45.532680337 + ] + }, + "is_frozen": false, + "integer_id": 310, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.485715, + 45.540181 + ] + }, + "id": 311, + "properties": { + "id": "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", + "code": "31511", + "data": { + "stops": [ + { + "id": "1511", + "code": "31511", + "data": { + "gtfs": { + "stop_id": "1511", + "stop_code": "31511", + "stop_name": "boul. Roland-Therrien et Fréchette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et Fréchette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4857146153706, + 45.540180594575 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8249491545353 + }, + "name": "boul. Roland-Therrien et Fréchette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.485714615, + 45.540180595 + ] + }, + "is_frozen": false, + "integer_id": 311, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490989, + 45.541803 + ] + }, + "id": 312, + "properties": { + "id": "038a22ba-4928-42fc-aaed-50fbd831df37", + "code": "31512", + "data": { + "stops": [ + { + "id": "1512", + "code": "31512", + "data": { + "gtfs": { + "stop_id": "1512", + "stop_code": "31512", + "stop_name": "boul. Roland-Therrien et De Gentilly est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et De Gentilly est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4909894363419, + 45.5418034755872 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8524236154784 + }, + "name": "boul. Roland-Therrien et De Gentilly est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490989436, + 45.541803476 + ] + }, + "is_frozen": false, + "integer_id": 312, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.49271, + 45.546169 + ] + }, + "id": 313, + "properties": { + "id": "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", + "code": "31515", + "data": { + "stops": [ + { + "id": "1515", + "code": "31515", + "data": { + "gtfs": { + "stop_id": "1515", + "stop_code": "31515", + "stop_name": "boul. Roland-Therrien et boul. Fernand-Lafontaine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et boul. Fernand-Lafontaine", + "geography": { + "type": "Point", + "coordinates": [ + -73.4927100640981, + 45.5461687081417 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9263361953562 + }, + "name": "boul. Roland-Therrien et boul. Fernand-Lafontaine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492710064, + 45.546168708 + ] + }, + "is_frozen": false, + "integer_id": 313, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.495343, + 45.548316 + ] + }, + "id": 314, + "properties": { + "id": "64648218-6b63-436c-9a46-4770987ba432", + "code": "31516", + "data": { + "stops": [ + { + "id": "1516", + "code": "31516", + "data": { + "gtfs": { + "stop_id": "1516", + "stop_code": "31516", + "stop_name": "boul. Roland-Therrien et d'Auteuil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et d'Auteuil", + "geography": { + "type": "Point", + "coordinates": [ + -73.4950511325125, + 45.5480817527184 + ] + } + }, + { + "id": "1521", + "code": "31521", + "data": { + "gtfs": { + "stop_id": "1521", + "stop_code": "31521", + "stop_name": "boul. Roland-Therrien et d'Auteuil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et d'Auteuil", + "geography": { + "type": "Point", + "coordinates": [ + -73.4956343088755, + 45.5485499322987 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9626979564848 + }, + "name": "boul. Roland-Therrien et d'Auteuil", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.495342721, + 45.548315843 + ] + }, + "is_frozen": false, + "integer_id": 314, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.499792, + 45.550464 + ] + }, + "id": 315, + "properties": { + "id": "820a9d7c-25e9-487c-9e51-cfefcb1432f7", + "code": "31518", + "data": { + "stops": [ + { + "id": "1518", + "code": "31518", + "data": { + "gtfs": { + "stop_id": "1518", + "stop_code": "31518", + "stop_name": "Saint-Charles est et du Bord-de-l'Eau est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles est et du Bord-de-l'Eau est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4997919119377, + 45.5504644411228 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9990886127359 + }, + "name": "Saint-Charles est et du Bord-de-l'Eau est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.499791912, + 45.550464441 + ] + }, + "is_frozen": false, + "integer_id": 315, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492047, + 45.545157 + ] + }, + "id": 316, + "properties": { + "id": "2d7687a5-f458-4ce1-a3df-9639d89c0154", + "code": "31520", + "data": { + "stops": [ + { + "id": "1520", + "code": "31520", + "data": { + "gtfs": { + "stop_id": "1520", + "stop_code": "31520", + "stop_name": "boul. Roland-Therrien et civique 570", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et civique 570", + "geography": { + "type": "Point", + "coordinates": [ + -73.4920466081198, + 45.5451567673821 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9092003869729 + }, + "name": "boul. Roland-Therrien et civique 570", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492046608, + 45.545156767 + ] + }, + "is_frozen": false, + "integer_id": 316, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.515634, + 45.499342 + ] + }, + "id": 317, + "properties": { + "id": "0b09b82c-ec97-406d-9f1c-690cc935b5ea", + "code": "31523", + "data": { + "stops": [ + { + "id": "1523", + "code": "31523", + "data": { + "gtfs": { + "stop_id": "1523", + "stop_code": "31523", + "stop_name": "Riverside et av. Saint-Denis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Saint-Denis", + "geography": { + "type": "Point", + "coordinates": [ + -73.5157891110389, + 45.4994433649644 + ] + } + }, + { + "id": "1566", + "code": "31566", + "data": { + "gtfs": { + "stop_id": "1566", + "stop_code": "31566", + "stop_name": "Riverside et av. Saint-Denis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Saint-Denis", + "geography": { + "type": "Point", + "coordinates": [ + -73.5154782686814, + 45.4992403703933 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1343453588867 + }, + "name": "Riverside et av. Saint-Denis", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.51563369, + 45.499341868 + ] + }, + "is_frozen": false, + "integer_id": 317, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.512309, + 45.492475 + ] + }, + "id": 318, + "properties": { + "id": "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", + "code": "31525", + "data": { + "stops": [ + { + "id": "1525", + "code": "31525", + "data": { + "gtfs": { + "stop_id": "1525", + "stop_code": "31525", + "stop_name": "Riverside et av. Rivermere", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Rivermere", + "geography": { + "type": "Point", + "coordinates": [ + -73.5124738773251, + 45.4923447218685 + ] + } + }, + { + "id": "1563", + "code": "31563", + "data": { + "gtfs": { + "stop_id": "1563", + "stop_code": "31563", + "stop_name": "Riverside et av. Rivermere", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Rivermere", + "geography": { + "type": "Point", + "coordinates": [ + -73.512314397433, + 45.4924455838692 + ] + } + }, + { + "id": "4464", + "code": "34464", + "data": { + "gtfs": { + "stop_id": "4464", + "stop_code": "34464", + "stop_name": "av. Rivermere et Riverside", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Rivermere et Riverside", + "geography": { + "type": "Point", + "coordinates": [ + -73.5121435543162, + 45.4926052948965 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0183690816394 + }, + "name": "Riverside et av. Rivermere", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.512308716, + 45.492475008 + ] + }, + "is_frozen": false, + "integer_id": 318, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.510877, + 45.490243 + ] + }, + "id": 319, + "properties": { + "id": "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", + "code": "31526", + "data": { + "stops": [ + { + "id": "1526", + "code": "31526", + "data": { + "gtfs": { + "stop_id": "1526", + "stop_code": "31526", + "stop_name": "Riverside et av. Alexandra", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Alexandra", + "geography": { + "type": "Point", + "coordinates": [ + -73.5110429273544, + 45.490266227485 + ] + } + }, + { + "id": "1562", + "code": "31562", + "data": { + "gtfs": { + "stop_id": "1562", + "stop_code": "31562", + "stop_name": "Riverside et av. Alexandra", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Alexandra", + "geography": { + "type": "Point", + "coordinates": [ + -73.5107116117831, + 45.4901477692363 + ] + } + }, + { + "id": "1616", + "code": "31616", + "data": { + "gtfs": { + "stop_id": "1616", + "stop_code": "31616", + "stop_name": "av. Alexandra et Riverside", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et Riverside", + "geography": { + "type": "Point", + "coordinates": [ + -73.5107582821189, + 45.4903382422511 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9806812209541 + }, + "name": "Riverside et av. Alexandra", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.51087727, + 45.490243006 + ] + }, + "is_frozen": false, + "integer_id": 319, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.509686, + 45.488503 + ] + }, + "id": 320, + "properties": { + "id": "bc9b9243-e0ec-461a-9898-6eb69ecd511a", + "code": "31527", + "data": { + "stops": [ + { + "id": "1527", + "code": "31527", + "data": { + "gtfs": { + "stop_id": "1527", + "stop_code": "31527", + "stop_name": "Riverside et boul. de Montrose", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et boul. de Montrose", + "geography": { + "type": "Point", + "coordinates": [ + -73.5098732221397, + 45.4886331155792 + ] + } + }, + { + "id": "1561", + "code": "31561", + "data": { + "gtfs": { + "stop_id": "1561", + "stop_code": "31561", + "stop_name": "Riverside et boul. de Montrose", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et boul. de Montrose", + "geography": { + "type": "Point", + "coordinates": [ + -73.5094993736771, + 45.4883721921355 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9512980559632 + }, + "name": "Riverside et boul. de Montrose", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.509686298, + 45.488502654 + ] + }, + "is_frozen": false, + "integer_id": 320, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.508435, + 45.486711 + ] + }, + "id": 321, + "properties": { + "id": "41d7b6d4-1fe4-44ed-a774-b005607fc59d", + "code": "31528", + "data": { + "stops": [ + { + "id": "1528", + "code": "31528", + "data": { + "gtfs": { + "stop_id": "1528", + "stop_code": "31528", + "stop_name": "Riverside et av. de Bolton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. de Bolton", + "geography": { + "type": "Point", + "coordinates": [ + -73.5086395945767, + 45.4868425231035 + ] + } + }, + { + "id": "1560", + "code": "31560", + "data": { + "gtfs": { + "stop_id": "1560", + "stop_code": "31560", + "stop_name": "Riverside et av. de Bolton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. de Bolton", + "geography": { + "type": "Point", + "coordinates": [ + -73.5082309758475, + 45.4865797110748 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9210535240078 + }, + "name": "Riverside et av. de Bolton", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.508435285, + 45.486711117 + ] + }, + "is_frozen": false, + "integer_id": 321, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.504885, + 45.483974 + ] + }, + "id": 322, + "properties": { + "id": "9f22d75f-cc66-4020-8804-7912f49950d8", + "code": "31529", + "data": { + "stops": [ + { + "id": "1529", + "code": "31529", + "data": { + "gtfs": { + "stop_id": "1529", + "stop_code": "31529", + "stop_name": "Riverside et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.5049471536314, + 45.4839372926223 + ] + } + }, + { + "id": "3311", + "code": "33311", + "data": { + "gtfs": { + "stop_id": "3311", + "stop_code": "33311", + "stop_name": "Riverside et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.5048232467849, + 45.4840116827947 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.874859560386 + }, + "name": "Riverside et Passage piétonnier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.5048852, + 45.483974488 + ] + }, + "is_frozen": false, + "integer_id": 322, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.503412, + 45.482555 + ] + }, + "id": 323, + "properties": { + "id": "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", + "code": "31530", + "data": { + "stops": [ + { + "id": "1530", + "code": "31530", + "data": { + "gtfs": { + "stop_id": "1530", + "stop_code": "31530", + "stop_name": "Riverside et av. de Normandie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. de Normandie", + "geography": { + "type": "Point", + "coordinates": [ + -73.5037211154899, + 45.4825139219901 + ] + } + }, + { + "id": "1559", + "code": "31559", + "data": { + "gtfs": { + "stop_id": "1559", + "stop_code": "31559", + "stop_name": "Riverside et av. de Normandie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. de Normandie", + "geography": { + "type": "Point", + "coordinates": [ + -73.5034312189398, + 45.482450926529 + ] + } + }, + { + "id": "2638", + "code": "32638", + "data": { + "gtfs": { + "stop_id": "2638", + "stop_code": "32638", + "stop_name": "av. de Normandie et Riverside", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. de Normandie et Riverside", + "geography": { + "type": "Point", + "coordinates": [ + -73.5034847941713, + 45.4825999277518 + ] + } + }, + { + "id": "2639", + "code": "32639", + "data": { + "gtfs": { + "stop_id": "2639", + "stop_code": "32639", + "stop_name": "av. de Normandie et Riverside", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. de Normandie et Riverside", + "geography": { + "type": "Point", + "coordinates": [ + -73.5031029379961, + 45.4826592971211 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8509032884463 + }, + "name": "Riverside et av. de Normandie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.503412027, + 45.482555112 + ] + }, + "is_frozen": false, + "integer_id": 323, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.501966, + 45.48064 + ] + }, + "id": 324, + "properties": { + "id": "4df7f34c-ec49-4d48-90b3-56f3faffc976", + "code": "31531", + "data": { + "stops": [ + { + "id": "1531", + "code": "31531", + "data": { + "gtfs": { + "stop_id": "1531", + "stop_code": "31531", + "stop_name": "Riverside et av. du Rhône", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. du Rhône", + "geography": { + "type": "Point", + "coordinates": [ + -73.5020559908241, + 45.4805516410936 + ] + } + }, + { + "id": "3503", + "code": "33503", + "data": { + "gtfs": { + "stop_id": "3503", + "stop_code": "33503", + "stop_name": "Riverside et av. du Rhône", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. du Rhône", + "geography": { + "type": "Point", + "coordinates": [ + -73.5018755206614, + 45.480727943939 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8185793135552 + }, + "name": "Riverside et av. du Rhône", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.501965756, + 45.480639793 + ] + }, + "is_frozen": false, + "integer_id": 324, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.487465, + 45.477871 + ] + }, + "id": 325, + "properties": { + "id": "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", + "code": "31532", + "data": { + "stops": [ + { + "id": "1532", + "code": "31532", + "data": { + "gtfs": { + "stop_id": "1532", + "stop_code": "31532", + "stop_name": "boul. Plamondon et av. de Navarre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Plamondon et av. de Navarre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4876400250363, + 45.4779247043518 + ] + } + }, + { + "id": "1557", + "code": "31557", + "data": { + "gtfs": { + "stop_id": "1557", + "stop_code": "31557", + "stop_name": "boul. Plamondon et av. de Navarre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Plamondon et av. de Navarre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4872894989754, + 45.4778166842448 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7718522423621 + }, + "name": "boul. Plamondon et av. de Navarre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.487464762, + 45.477870694 + ] + }, + "is_frozen": false, + "integer_id": 325, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.487883, + 45.47565 + ] + }, + "id": 326, + "properties": { + "id": "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", + "code": "31533", + "data": { + "stops": [ + { + "id": "1533", + "code": "31533", + "data": { + "gtfs": { + "stop_id": "1533", + "stop_code": "31533", + "stop_name": "boul. Plamondon et Viger", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Plamondon et Viger", + "geography": { + "type": "Point", + "coordinates": [ + -73.4880641926967, + 45.4756976276991 + ] + } + }, + { + "id": "1556", + "code": "31556", + "data": { + "gtfs": { + "stop_id": "1556", + "stop_code": "31556", + "stop_name": "boul. Plamondon et Viger", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Plamondon et Viger", + "geography": { + "type": "Point", + "coordinates": [ + -73.4877012866945, + 45.4756031052296 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7343903112202 + }, + "name": "boul. Plamondon et Viger", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48788274, + 45.475650366 + ] + }, + "is_frozen": false, + "integer_id": 326, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.487646, + 45.474593 + ] + }, + "id": 327, + "properties": { + "id": "6e4c328c-6fba-4e81-b589-59318e11a37a", + "code": "31534", + "data": { + "stops": [ + { + "id": "1534", + "code": "31534", + "data": { + "gtfs": { + "stop_id": "1534", + "stop_code": "31534", + "stop_name": "boul. Plamondon et av. Ponsard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Plamondon et av. Ponsard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4876311199373, + 45.4747797372525 + ] + } + }, + { + "id": "1555", + "code": "31555", + "data": { + "gtfs": { + "stop_id": "1555", + "stop_code": "31555", + "stop_name": "av. Ponsard et boul. Plamondon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Ponsard et boul. Plamondon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4876611878854, + 45.4744066052294 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7165545910714 + }, + "name": "boul. Plamondon et av. Ponsard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.487646154, + 45.474593171 + ] + }, + "is_frozen": false, + "integer_id": 327, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.489989, + 45.474147 + ] + }, + "id": 328, + "properties": { + "id": "6735199f-47fc-47db-9116-7c110cca8945", + "code": "31535", + "data": { + "stops": [ + { + "id": "1535", + "code": "31535", + "data": { + "gtfs": { + "stop_id": "1535", + "stop_code": "31535", + "stop_name": "av. Ponsard et Picard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Ponsard et Picard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4898471048807, + 45.4742760410874 + ] + } + }, + { + "id": "1554", + "code": "31554", + "data": { + "gtfs": { + "stop_id": "1554", + "stop_code": "31554", + "stop_name": "av. Ponsard et Perrier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Ponsard et Perrier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4901314878564, + 45.474018231778 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.709029923824 + }, + "name": "av. Ponsard et Picard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.489989296, + 45.474147136 + ] + }, + "is_frozen": false, + "integer_id": 328, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491399, + 45.47336 + ] + }, + "id": 329, + "properties": { + "id": "c6165892-3719-417f-8d25-92e65471b42c", + "code": "31536", + "data": { + "stops": [ + { + "id": "1536", + "code": "31536", + "data": { + "gtfs": { + "stop_id": "1536", + "stop_code": "31536", + "stop_name": "av. Ponsard et av. Victor-Hugo", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Ponsard et av. Victor-Hugo", + "geography": { + "type": "Point", + "coordinates": [ + -73.4914498589963, + 45.4736200528999 + ] + } + }, + { + "id": "2001", + "code": "32001", + "data": { + "gtfs": { + "stop_id": "2001", + "stop_code": "32001", + "stop_name": "av. Victor-Hugo et av. Ponsard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victor-Hugo et av. Ponsard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4917349291685, + 45.473628302989 + ] + } + }, + { + "id": "3310", + "code": "33310", + "data": { + "gtfs": { + "stop_id": "3310", + "stop_code": "33310", + "stop_name": "av. Victor-Hugo et av. Ponsard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victor-Hugo et av. Ponsard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4910629485313, + 45.4730912907588 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6957478459406 + }, + "name": "av. Ponsard et av. Victor-Hugo", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491398939, + 45.473359797 + ] + }, + "is_frozen": false, + "integer_id": 329, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.485937, + 45.471535 + ] + }, + "id": 330, + "properties": { + "id": "7e4b21bb-20d6-4104-9b98-071226922d49", + "code": "31538", + "data": { + "stops": [ + { + "id": "1538", + "code": "31538", + "data": { + "gtfs": { + "stop_id": "1538", + "stop_code": "31538", + "stop_name": "av. Panama et Petit", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et Petit", + "geography": { + "type": "Point", + "coordinates": [ + -73.4860886554132, + 45.4717380744613 + ] + } + }, + { + "id": "3787", + "code": "33787", + "data": { + "gtfs": { + "stop_id": "3787", + "stop_code": "33787", + "stop_name": "av. Panama et Petit", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et Petit", + "geography": { + "type": "Point", + "coordinates": [ + -73.4857849298747, + 45.4713309782224 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6649584095054 + }, + "name": "av. Panama et Petit", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.485936793, + 45.471534526 + ] + }, + "is_frozen": false, + "integer_id": 330, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.485781, + 45.469245 + ] + }, + "id": 331, + "properties": { + "id": "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", + "code": "31539", + "data": { + "stops": [ + { + "id": "1539", + "code": "31539", + "data": { + "gtfs": { + "stop_id": "1539", + "stop_code": "31539", + "stop_name": "av. Panama et av. Van Dyck", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et av. Van Dyck", + "geography": { + "type": "Point", + "coordinates": [ + -73.4857385418702, + 45.4693468071579 + ] + } + }, + { + "id": "4161", + "code": "34161", + "data": { + "gtfs": { + "stop_id": "4161", + "stop_code": "34161", + "stop_name": "av. Van Dyck et av. Panama", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Van Dyck et av. Panama", + "geography": { + "type": "Point", + "coordinates": [ + -73.4861368863735, + 45.4691428542716 + ] + } + }, + { + "id": "4207", + "code": "34207", + "data": { + "gtfs": { + "stop_id": "4207", + "stop_code": "34207", + "stop_name": "av. Panama et av. Van Dyck", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et av. Van Dyck", + "geography": { + "type": "Point", + "coordinates": [ + -73.4854259045073, + 45.4692396974397 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.626339058386 + }, + "name": "av. Panama et av. Van Dyck", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.485781395, + 45.469244831 + ] + }, + "is_frozen": false, + "integer_id": 331, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.484147, + 45.468759 + ] + }, + "id": 332, + "properties": { + "id": "3acbe4f4-b4c0-469f-af21-f4af3c6e2b53", + "code": "31540", + "data": { + "stops": [ + { + "id": "1540", + "code": "31540", + "data": { + "gtfs": { + "stop_id": "1540", + "stop_code": "31540", + "stop_name": "av. Panama et Poulin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et Poulin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4841466910497, + 45.4687593238598 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6181508082303 + }, + "name": "av. Panama et Poulin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.484146691, + 45.468759324 + ] + }, + "is_frozen": false, + "integer_id": 332, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.48069, + 45.468937 + ] + }, + "id": 333, + "properties": { + "id": "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", + "code": "31541", + "data": { + "stops": [ + { + "id": "1541", + "code": "31541", + "data": { + "gtfs": { + "stop_id": "1541", + "stop_code": "31541", + "stop_name": "av. Panama et Pasteur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et Pasteur", + "geography": { + "type": "Point", + "coordinates": [ + -73.4808015189529, + 45.4688747380891 + ] + } + }, + { + "id": "1548", + "code": "31548", + "data": { + "gtfs": { + "stop_id": "1548", + "stop_code": "31548", + "stop_name": "av. Panama et Pasteur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et Pasteur", + "geography": { + "type": "Point", + "coordinates": [ + -73.4805787117508, + 45.4689987220333 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6211427999515 + }, + "name": "av. Panama et Pasteur", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.480690115, + 45.46893673 + ] + }, + "is_frozen": false, + "integer_id": 333, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.477864, + 45.46883 + ] + }, + "id": 334, + "properties": { + "id": "79c669a1-9060-4e5d-b272-f107884dee00", + "code": "31542", + "data": { + "stops": [ + { + "id": "1542", + "code": "31542", + "data": { + "gtfs": { + "stop_id": "1542", + "stop_code": "31542", + "stop_name": "av. Panama et Pérou", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et Pérou", + "geography": { + "type": "Point", + "coordinates": [ + -73.4779748262644, + 45.468773478298 + ] + } + }, + { + "id": "1547", + "code": "31547", + "data": { + "gtfs": { + "stop_id": "1547", + "stop_code": "31547", + "stop_name": "av. Panama et Pérou", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et Pérou", + "geography": { + "type": "Point", + "coordinates": [ + -73.4777538424299, + 45.4688867839836 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6193449807118 + }, + "name": "av. Panama et Pérou", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.477864334, + 45.468830131 + ] + }, + "is_frozen": false, + "integer_id": 334, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474524, + 45.468527 + ] + }, + "id": 335, + "properties": { + "id": "8ee627ae-bc68-4536-9016-30abc9c3d2b6", + "code": "31543", + "data": { + "stops": [ + { + "id": "1543", + "code": "31543", + "data": { + "gtfs": { + "stop_id": "1543", + "stop_code": "31543", + "stop_name": "av. Panama et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4747489812307, + 45.4686332775483 + ] + } + }, + { + "id": "3895", + "code": "33895", + "data": { + "gtfs": { + "stop_id": "3895", + "stop_code": "33895", + "stop_name": "boul. Pelletier et av. Panama", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et av. Panama", + "geography": { + "type": "Point", + "coordinates": [ + -73.4746312881383, + 45.4688171624984 + ] + } + }, + { + "id": "4847", + "code": "34847", + "data": { + "gtfs": { + "stop_id": "4847", + "stop_code": "34847", + "stop_name": "boul. Pelletier et av. Panama", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et av. Panama", + "geography": { + "type": "Point", + "coordinates": [ + -73.4742983735828, + 45.4682378349086 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6142410700701 + }, + "name": "av. Panama et boul. Pelletier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474523677, + 45.468527499 + ] + }, + "is_frozen": false, + "integer_id": 335, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47124, + 45.468144 + ] + }, + "id": 336, + "properties": { + "id": "c9311250-c5c0-4fed-8860-4c67f9b92d97", + "code": "31545", + "data": { + "stops": [ + { + "id": "1545", + "code": "31545", + "data": { + "gtfs": { + "stop_id": "1545", + "stop_code": "31545", + "stop_name": "av. Panama et GALERIES DE BROSSARD", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et GALERIES DE BROSSARD", + "geography": { + "type": "Point", + "coordinates": [ + -73.4714224679242, + 45.4680448089923 + ] + } + }, + { + "id": "3531", + "code": "33531", + "data": { + "gtfs": { + "stop_id": "3531", + "stop_code": "33531", + "stop_name": "av. Panama et CAISSE POPULAIRE DESJARDINS DE BROSSARD", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et CAISSE POPULAIRE DESJARDINS DE BROSSARD", + "geography": { + "type": "Point", + "coordinates": [ + -73.4710574513855, + 45.4682438436752 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6077789462909 + }, + "name": "av. Panama et GALERIES DE BROSSARD", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47123996, + 45.468144326 + ] + }, + "is_frozen": false, + "integer_id": 336, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475378, + 45.468804 + ] + }, + "id": 337, + "properties": { + "id": "0296a406-079c-41f9-8c5b-0723a0b5f294", + "code": "31546", + "data": { + "stops": [ + { + "id": "1546", + "code": "31546", + "data": { + "gtfs": { + "stop_id": "1546", + "stop_code": "31546", + "stop_name": "av. Panama et Parny", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et Parny", + "geography": { + "type": "Point", + "coordinates": [ + -73.4753782369708, + 45.4688039406988 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6189032812466 + }, + "name": "av. Panama et Parny", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475378237, + 45.468803941 + ] + }, + "is_frozen": false, + "integer_id": 337, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483902, + 45.468894 + ] + }, + "id": 338, + "properties": { + "id": "3e9388da-8f48-48c6-b6c0-5461e27eb26a", + "code": "31549", + "data": { + "stops": [ + { + "id": "1549", + "code": "31549", + "data": { + "gtfs": { + "stop_id": "1549", + "stop_code": "31549", + "stop_name": "av. Panama et Poulin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et Poulin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4839024659607, + 45.4688942669696 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6204266494503 + }, + "name": "av. Panama et Poulin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483902466, + 45.468894267 + ] + }, + "is_frozen": false, + "integer_id": 338, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486666, + 45.472904 + ] + }, + "id": 339, + "properties": { + "id": "b92e7022-9719-4479-bc45-c3dac5a8d257", + "code": "31552", + "data": { + "stops": [ + { + "id": "1552", + "code": "31552", + "data": { + "gtfs": { + "stop_id": "1552", + "stop_code": "31552", + "stop_name": "av. Panama et boul. Provencher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et boul. Provencher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4865564320912, + 45.47274146088 + ] + } + }, + { + "id": "2002", + "code": "32002", + "data": { + "gtfs": { + "stop_id": "2002", + "stop_code": "32002", + "stop_name": "boul. Plamondon et boul. Provencher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Plamondon et boul. Provencher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4862970099162, + 45.4731471885189 + ] + } + }, + { + "id": "3309", + "code": "33309", + "data": { + "gtfs": { + "stop_id": "3309", + "stop_code": "33309", + "stop_name": "boul. Provencher et av. Panama", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Provencher et av. Panama", + "geography": { + "type": "Point", + "coordinates": [ + -73.4870340651735, + 45.4726605297897 + ] + } + }, + { + "id": "4762", + "code": "34762", + "data": { + "gtfs": { + "stop_id": "4762", + "stop_code": "34762", + "stop_name": "boul. Provencher et av. Panama", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Provencher et av. Panama", + "geography": { + "type": "Point", + "coordinates": [ + -73.4867095719993, + 45.4730083466623 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6880566153446 + }, + "name": "av. Panama et boul. Provencher", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486665538, + 45.472903859 + ] + }, + "is_frozen": false, + "integer_id": 339, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490074, + 45.471749 + ] + }, + "id": 340, + "properties": { + "id": "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", + "code": "31553", + "data": { + "stops": [ + { + "id": "1553", + "code": "31553", + "data": { + "gtfs": { + "stop_id": "1553", + "stop_code": "31553", + "stop_name": "boul. Provencher et av. Victor-Hugo", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Provencher et av. Victor-Hugo", + "geography": { + "type": "Point", + "coordinates": [ + -73.4898948587202, + 45.4719234158403 + ] + } + }, + { + "id": "3906", + "code": "33906", + "data": { + "gtfs": { + "stop_id": "3906", + "stop_code": "33906", + "stop_name": "av. Victor-Hugo et boul. Provencher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victor-Hugo et boul. Provencher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4902536028433, + 45.4718734829554 + ] + } + }, + { + "id": "4780", + "code": "34780", + "data": { + "gtfs": { + "stop_id": "4780", + "stop_code": "34780", + "stop_name": "boul. Provencher et av. Victor-Hugo", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Provencher et av. Victor-Hugo", + "geography": { + "type": "Point", + "coordinates": [ + -73.49005220277, + 45.4715754386418 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6685832959781 + }, + "name": "boul. Provencher et av. Victor-Hugo", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490074231, + 45.471749427 + ] + }, + "is_frozen": false, + "integer_id": 340, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486382, + 45.478428 + ] + }, + "id": 341, + "properties": { + "id": "fc92d5a1-fe31-4274-9837-2686b4525030", + "code": "31558", + "data": { + "stops": [ + { + "id": "1558", + "code": "31558", + "data": { + "gtfs": { + "stop_id": "1558", + "stop_code": "31558", + "stop_name": "boul. Plamondon et place Plamondon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Plamondon et place Plamondon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4863824015489, + 45.4784284756474 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7812639686139 + }, + "name": "boul. Plamondon et place Plamondon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486382402, + 45.478428476 + ] + }, + "is_frozen": false, + "integer_id": 341, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513535, + 45.49591 + ] + }, + "id": 342, + "properties": { + "id": "114aaaad-d40e-4930-853f-ef5cebdd299f", + "code": "31565", + "data": { + "stops": [ + { + "id": "1565", + "code": "31565", + "data": { + "gtfs": { + "stop_id": "1565", + "stop_code": "31565", + "stop_name": "Riverside et av. Hickson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Hickson", + "geography": { + "type": "Point", + "coordinates": [ + -73.5137037858885, + 45.4958941604028 + ] + } + }, + { + "id": "5596", + "code": "30345", + "data": { + "gtfs": { + "stop_id": "5596", + "stop_code": "30345", + "stop_name": "av. Hickson et Riverside", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Hickson et Riverside", + "geography": { + "type": "Point", + "coordinates": [ + -73.5133668159482, + 45.495926700902 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0763856373474 + }, + "name": "Riverside et av. Hickson", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.513535301, + 45.495910431 + ] + }, + "is_frozen": false, + "integer_id": 342, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.493727, + 45.463642 + ] + }, + "id": 343, + "properties": { + "id": "b19b665b-1a3f-41e4-97e7-48f99301b48f", + "code": "31568", + "data": { + "stops": [ + { + "id": "1568", + "code": "31568", + "data": { + "gtfs": { + "stop_id": "1568", + "stop_code": "31568", + "stop_name": "Turenne et boul. Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Turenne et boul. Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4937269658353, + 45.4636417620611 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5318540145854 + }, + "name": "Turenne et boul. Marie-Victorin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493726966, + 45.463641762 + ] + }, + "is_frozen": false, + "integer_id": 343, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.48982, + 45.456837 + ] + }, + "id": 344, + "properties": { + "id": "984def83-5f59-45f7-bb33-ed1dbca30502", + "code": "31570", + "data": { + "stops": [ + { + "id": "1570", + "code": "31570", + "data": { + "gtfs": { + "stop_id": "1570", + "stop_code": "31570", + "stop_name": "boul. de Rome et av. Stravinski", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. Stravinski", + "geography": { + "type": "Point", + "coordinates": [ + -73.4899770928305, + 45.4568764958068 + ] + } + }, + { + "id": "2763", + "code": "32763", + "data": { + "gtfs": { + "stop_id": "2763", + "stop_code": "32763", + "stop_name": "av. Stravinski et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4896621304927, + 45.4567972620096 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4171401511834 + }, + "name": "boul. de Rome et av. Stravinski", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.489819612, + 45.456836879 + ] + }, + "is_frozen": false, + "integer_id": 344, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486396, + 45.456887 + ] + }, + "id": 345, + "properties": { + "id": "1d56d4cb-0ab2-44f2-924d-aa119de8c362", + "code": "31571", + "data": { + "stops": [ + { + "id": "1571", + "code": "31571", + "data": { + "gtfs": { + "stop_id": "1571", + "stop_code": "31571", + "stop_name": "boul. de Rome et place Soulanges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et place Soulanges", + "geography": { + "type": "Point", + "coordinates": [ + -73.4865042758762, + 45.4567536758596 + ] + } + }, + { + "id": "1601", + "code": "31601", + "data": { + "gtfs": { + "stop_id": "1601", + "stop_code": "31601", + "stop_name": "boul. de Rome et place Soulanges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et place Soulanges", + "geography": { + "type": "Point", + "coordinates": [ + -73.4862878156747, + 45.4570208201421 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4179890996974 + }, + "name": "boul. de Rome et place Soulanges", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486396046, + 45.456887248 + ] + }, + "is_frozen": false, + "integer_id": 345, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482772, + 45.456731 + ] + }, + "id": 346, + "properties": { + "id": "ecb00316-793a-4c41-88bd-3870bea4d999", + "code": "31572", + "data": { + "stops": [ + { + "id": "1572", + "code": "31572", + "data": { + "gtfs": { + "stop_id": "1572", + "stop_code": "31572", + "stop_name": "boul. de Rome et av. Saguenay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. Saguenay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4828993282503, + 45.4566455961504 + ] + } + }, + { + "id": "1600", + "code": "31600", + "data": { + "gtfs": { + "stop_id": "1600", + "stop_code": "31600", + "stop_name": "boul. de Rome et av. Saguenay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. Saguenay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4826448502779, + 45.4568945913534 + ] + } + }, + { + "id": "2034", + "code": "32034", + "data": { + "gtfs": { + "stop_id": "2034", + "stop_code": "32034", + "stop_name": "av. Saguenay et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Saguenay et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4826920392004, + 45.4565669602999 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4153518366801 + }, + "name": "boul. de Rome et av. Saguenay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482772089, + 45.456730776 + ] + }, + "is_frozen": false, + "integer_id": 346, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479525, + 45.45702 + ] + }, + "id": 347, + "properties": { + "id": "9a86a407-515f-4b5e-8a56-9a4c52c91c96", + "code": "31573", + "data": { + "stops": [ + { + "id": "1573", + "code": "31573", + "data": { + "gtfs": { + "stop_id": "1573", + "stop_code": "31573", + "stop_name": "boul. Pelletier et Tardif", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et Tardif", + "geography": { + "type": "Point", + "coordinates": [ + -73.4795920364038, + 45.4572540268492 + ] + } + }, + { + "id": "2721", + "code": "32721", + "data": { + "gtfs": { + "stop_id": "2721", + "stop_code": "32721", + "stop_name": "boul. de Rome et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4794588395947, + 45.4567869635673 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4202349332343 + }, + "name": "boul. Pelletier et Tardif", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479525438, + 45.457020495 + ] + }, + "is_frozen": false, + "integer_id": 347, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478526, + 45.461005 + ] + }, + "id": 348, + "properties": { + "id": "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", + "code": "31574", + "data": { + "stops": [ + { + "id": "1574", + "code": "31574", + "data": { + "gtfs": { + "stop_id": "1574", + "stop_code": "31574", + "stop_name": "av. Touchette et av. Thibault", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Touchette et av. Thibault", + "geography": { + "type": "Point", + "coordinates": [ + -73.4787889702715, + 45.4613391993147 + ] + } + }, + { + "id": "1599", + "code": "31599", + "data": { + "gtfs": { + "stop_id": "1599", + "stop_code": "31599", + "stop_name": "av. Touchette et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Touchette et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4784962439212, + 45.4608712227588 + ] + } + }, + { + "id": "2652", + "code": "32652", + "data": { + "gtfs": { + "stop_id": "2652", + "stop_code": "32652", + "stop_name": "boul. Pelletier et av. Touchette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et av. Touchette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4782840122032, + 45.4609926623163 + ] + } + }, + { + "id": "2780", + "code": "32780", + "data": { + "gtfs": { + "stop_id": "2780", + "stop_code": "32780", + "stop_name": "boul. Pelletier et av. Touchette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et av. Touchette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4782636856411, + 45.4606706112391 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4873981081514 + }, + "name": "av. Touchette et av. Thibault", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.478526328, + 45.461004905 + ] + }, + "is_frozen": false, + "integer_id": 348, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47984, + 45.462479 + ] + }, + "id": 349, + "properties": { + "id": "003bcf5e-54a8-471f-b008-b7fa64ff94ba", + "code": "31575", + "data": { + "stops": [ + { + "id": "1575", + "code": "31575", + "data": { + "gtfs": { + "stop_id": "1575", + "stop_code": "31575", + "stop_name": "av. Touchette et civique 1230", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Touchette et civique 1230", + "geography": { + "type": "Point", + "coordinates": [ + -73.4796485331119, + 45.4623696834207 + ] + } + }, + { + "id": "1598", + "code": "31598", + "data": { + "gtfs": { + "stop_id": "1598", + "stop_code": "31598", + "stop_name": "av. Touchette et civique 1225", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Touchette et civique 1225", + "geography": { + "type": "Point", + "coordinates": [ + -73.4800306228296, + 45.4625873524497 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5122416228375 + }, + "name": "av. Touchette et civique 1230", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479839578, + 45.462478518 + ] + }, + "is_frozen": false, + "integer_id": 349, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481413, + 45.46431 + ] + }, + "id": 350, + "properties": { + "id": "a473bafa-653d-45cd-9ee5-57c2d5726bb0", + "code": "31576", + "data": { + "stops": [ + { + "id": "1576", + "code": "31576", + "data": { + "gtfs": { + "stop_id": "1576", + "stop_code": "31576", + "stop_name": "av. Touchette et av. Tisserand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Touchette et av. Tisserand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4812916224168, + 45.4643435858305 + ] + } + }, + { + "id": "2012", + "code": "32012", + "data": { + "gtfs": { + "stop_id": "2012", + "stop_code": "32012", + "stop_name": "av. Touchette et av. Tisserand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Touchette et av. Tisserand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4813119086224, + 45.4641201745999 + ] + } + }, + { + "id": "2041", + "code": "32041", + "data": { + "gtfs": { + "stop_id": "2041", + "stop_code": "32041", + "stop_name": "av. Tisserand et av. Touchette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et av. Touchette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4815340484223, + 45.4642845573798 + ] + } + }, + { + "id": "5910", + "code": "30788", + "data": { + "gtfs": { + "stop_id": "5910", + "stop_code": "30788", + "stop_name": "av. Tisserand et av. Touchette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et av. Touchette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4813931470788, + 45.4644997010427 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5431200613212 + }, + "name": "av. Touchette et av. Tisserand", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481412835, + 45.464309938 + ] + }, + "is_frozen": false, + "integer_id": 350, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474288, + 45.464641 + ] + }, + "id": 351, + "properties": { + "id": "4bbdfb79-c7dc-46c0-893b-48e38ccd2db0", + "code": "31577", + "data": { + "stops": [ + { + "id": "1577", + "code": "31577", + "data": { + "gtfs": { + "stop_id": "1577", + "stop_code": "31577", + "stop_name": "av. Tisserand et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4742876039593, + 45.464640721927 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.548697522956 + }, + "name": "av. Tisserand et boul. Pelletier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474287604, + 45.464640722 + ] + }, + "is_frozen": false, + "integer_id": 351, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.472906, + 45.464165 + ] + }, + "id": 352, + "properties": { + "id": "70ace55a-2f3c-410b-8740-bea06ecb9924", + "code": "31578", + "data": { + "stops": [ + { + "id": "1578", + "code": "31578", + "data": { + "gtfs": { + "stop_id": "1578", + "stop_code": "31578", + "stop_name": "av. Tisserand et Toulon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et Toulon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4730841242054, + 45.4642670072971 + ] + } + }, + { + "id": "1596", + "code": "31596", + "data": { + "gtfs": { + "stop_id": "1596", + "stop_code": "31596", + "stop_name": "av. Tisserand et Toulon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et Toulon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4727281178063, + 45.4641842996046 + ] + } + }, + { + "id": "2793", + "code": "32793", + "data": { + "gtfs": { + "stop_id": "2793", + "stop_code": "32793", + "stop_name": "Toulon et av. Tisserand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Toulon et av. Tisserand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4728348601258, + 45.4640637920408 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.540682987392 + }, + "name": "av. Tisserand et Toulon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472906121, + 45.4641654 + ] + }, + "is_frozen": false, + "integer_id": 352, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468969, + 45.46342 + ] + }, + "id": 353, + "properties": { + "id": "f872f4da-bae9-485b-a2fb-ae01787389fc", + "code": "31579", + "data": { + "stops": [ + { + "id": "1579", + "code": "31579", + "data": { + "gtfs": { + "stop_id": "1579", + "stop_code": "31579", + "stop_name": "av. Tisserand et civique 7100", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et civique 7100", + "geography": { + "type": "Point", + "coordinates": [ + -73.4691871419308, + 45.4634151881221 + ] + } + }, + { + "id": "3956", + "code": "33956", + "data": { + "gtfs": { + "stop_id": "3956", + "stop_code": "33956", + "stop_name": "av. Tisserand et civique 7100", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et civique 7100", + "geography": { + "type": "Point", + "coordinates": [ + -73.4687503907454, + 45.4634247050602 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5281141023326 + }, + "name": "av. Tisserand et civique 7100", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468968766, + 45.463419947 + ] + }, + "is_frozen": false, + "integer_id": 353, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469137, + 45.460622 + ] + }, + "id": 354, + "properties": { + "id": "f045bfca-885e-4fa6-be24-3e8f1855457a", + "code": "31580", + "data": { + "stops": [ + { + "id": "1580", + "code": "31580", + "data": { + "gtfs": { + "stop_id": "1580", + "stop_code": "31580", + "stop_name": "av. Tisserand et Talleyrand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et Talleyrand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4691366872049, + 45.4606216186659 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4809366383298 + }, + "name": "av. Tisserand et Talleyrand", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469136687, + 45.460621619 + ] + }, + "is_frozen": false, + "integer_id": 354, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468109, + 45.458972 + ] + }, + "id": 355, + "properties": { + "id": "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", + "code": "31581", + "data": { + "stops": [ + { + "id": "1581", + "code": "31581", + "data": { + "gtfs": { + "stop_id": "1581", + "stop_code": "31581", + "stop_name": "av. Tisserand et Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4682525045563, + 45.4590071932587 + ] + } + }, + { + "id": "1594", + "code": "31594", + "data": { + "gtfs": { + "stop_id": "1594", + "stop_code": "31594", + "stop_name": "av. Tisserand et Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4679664853299, + 45.4589369152083 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4531296114026 + }, + "name": "av. Tisserand et Therrien", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468109495, + 45.458972054 + ] + }, + "is_frozen": false, + "integer_id": 355, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468034, + 45.458025 + ] + }, + "id": 356, + "properties": { + "id": "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", + "code": "31582", + "data": { + "stops": [ + { + "id": "1582", + "code": "31582", + "data": { + "gtfs": { + "stop_id": "1582", + "stop_code": "31582", + "stop_name": "av. Tisserand et av. Trépanier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et av. Trépanier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4680899126072, + 45.4582187317277 + ] + } + }, + { + "id": "3312", + "code": "33312", + "data": { + "gtfs": { + "stop_id": "3312", + "stop_code": "33312", + "stop_name": "av. Tisserand et av. Trépanier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et av. Trépanier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4679783723385, + 45.4578311836459 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.437165327542 + }, + "name": "av. Tisserand et av. Trépanier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468034142, + 45.458024958 + ] + }, + "is_frozen": false, + "integer_id": 356, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463365, + 45.454183 + ] + }, + "id": 357, + "properties": { + "id": "2946050b-73ca-45c7-be10-f80ba5b43ab5", + "code": "31584", + "data": { + "stops": [ + { + "id": "1584", + "code": "31584", + "data": { + "gtfs": { + "stop_id": "1584", + "stop_code": "31584", + "stop_name": "boul. de Rome et av. Malo", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. Malo", + "geography": { + "type": "Point", + "coordinates": [ + -73.4633650982521, + 45.4541828463579 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3724107146556 + }, + "name": "boul. de Rome et av. Malo", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463365098, + 45.454182846 + ] + }, + "is_frozen": false, + "integer_id": 357, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461772, + 45.453409 + ] + }, + "id": 358, + "properties": { + "id": "b3b32b85-3f83-40cf-ad3b-bac323b87469", + "code": "31585", + "data": { + "stops": [ + { + "id": "1585", + "code": "31585", + "data": { + "gtfs": { + "stop_id": "1585", + "stop_code": "31585", + "stop_name": "boul. de Rome et av. Naples", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. Naples", + "geography": { + "type": "Point", + "coordinates": [ + -73.4618779903785, + 45.4534934294504 + ] + } + }, + { + "id": "2751", + "code": "32751", + "data": { + "gtfs": { + "stop_id": "2751", + "stop_code": "32751", + "stop_name": "av. Naples et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Naples et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4616669196805, + 45.4533254979298 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3593777868929 + }, + "name": "boul. de Rome et av. Naples", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461772455, + 45.453409464 + ] + }, + "is_frozen": false, + "integer_id": 358, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459253, + 45.452333 + ] + }, + "id": 359, + "properties": { + "id": "ab493a3c-1217-4122-93b5-217f7741b2ea", + "code": "31586", + "data": { + "stops": [ + { + "id": "1586", + "code": "31586", + "data": { + "gtfs": { + "stop_id": "1586", + "stop_code": "31586", + "stop_name": "boul. de Rome et av. Neuville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. Neuville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4592533786848, + 45.4523331265896 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.341240385953 + }, + "name": "boul. de Rome et av. Neuville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459253379, + 45.452333127 + ] + }, + "is_frozen": false, + "integer_id": 359, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455924, + 45.450109 + ] + }, + "id": 360, + "properties": { + "id": "2c6638eb-437e-4a41-bb5d-d6093797361d", + "code": "31588", + "data": { + "stops": [ + { + "id": "1588", + "code": "31588", + "data": { + "gtfs": { + "stop_id": "1588", + "stop_code": "31588", + "stop_name": "boul. de Rome et ARENA MICHEL-NORMANDIN", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et ARENA MICHEL-NORMANDIN", + "geography": { + "type": "Point", + "coordinates": [ + -73.4559241961527, + 45.4501087819443 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3037611091853 + }, + "name": "boul. de Rome et ARENA MICHEL-NORMANDIN", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455924196, + 45.450108782 + ] + }, + "is_frozen": false, + "integer_id": 360, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458687, + 45.452374 + ] + }, + "id": 361, + "properties": { + "id": "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", + "code": "31590", + "data": { + "stops": [ + { + "id": "1590", + "code": "31590", + "data": { + "gtfs": { + "stop_id": "1590", + "stop_code": "31590", + "stop_name": "boul. de Rome et av. Neuville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. Neuville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4586870975534, + 45.452374059875 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3419301308932 + }, + "name": "boul. de Rome et av. Neuville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.458687098, + 45.45237406 + ] + }, + "is_frozen": false, + "integer_id": 361, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461175, + 45.453545 + ] + }, + "id": 362, + "properties": { + "id": "2ac07b96-98be-4710-a749-3162a661fcb5", + "code": "31591", + "data": { + "stops": [ + { + "id": "1591", + "code": "31591", + "data": { + "gtfs": { + "stop_id": "1591", + "stop_code": "31591", + "stop_name": "boul. de Rome et av. Naples", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. Naples", + "geography": { + "type": "Point", + "coordinates": [ + -73.4611751817048, + 45.4535450601375 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3616627937928 + }, + "name": "boul. de Rome et av. Naples", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461175182, + 45.45354506 + ] + }, + "is_frozen": false, + "integer_id": 362, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462858, + 45.454285 + ] + }, + "id": 363, + "properties": { + "id": "dac9322f-08e9-4886-a135-b1cc9beeb09b", + "code": "31592", + "data": { + "stops": [ + { + "id": "1592", + "code": "31592", + "data": { + "gtfs": { + "stop_id": "1592", + "stop_code": "31592", + "stop_name": "boul. de Rome et av. Malo", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. Malo", + "geography": { + "type": "Point", + "coordinates": [ + -73.4628577151327, + 45.4542853680718 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.37413844122 + }, + "name": "boul. de Rome et av. Malo", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462857715, + 45.454285368 + ] + }, + "is_frozen": false, + "integer_id": 363, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468111, + 45.456247 + ] + }, + "id": 364, + "properties": { + "id": "2a268094-fe95-4a75-83da-d02aa638cbb6", + "code": "31593", + "data": { + "stops": [ + { + "id": "1593", + "code": "31593", + "data": { + "gtfs": { + "stop_id": "1593", + "stop_code": "31593", + "stop_name": "boul. de Rome et av. Tisserand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. Tisserand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4681112685973, + 45.4562472107297 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4072017101012 + }, + "name": "boul. de Rome et av. Tisserand", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468111269, + 45.456247211 + ] + }, + "is_frozen": false, + "integer_id": 364, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468923, + 45.460679 + ] + }, + "id": 365, + "properties": { + "id": "ef880d61-7a9a-4504-a9a1-27967a52e95d", + "code": "31595", + "data": { + "stops": [ + { + "id": "1595", + "code": "31595", + "data": { + "gtfs": { + "stop_id": "1595", + "stop_code": "31595", + "stop_name": "av. Tisserand et Talleyrand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et Talleyrand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4689233742988, + 45.4606791818094 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4819070322346 + }, + "name": "av. Tisserand et Talleyrand", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468923374, + 45.460679182 + ] + }, + "is_frozen": false, + "integer_id": 365, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474788, + 45.464806 + ] + }, + "id": 366, + "properties": { + "id": "5a01eede-d090-4bda-988f-792a987bafc2", + "code": "31597", + "data": { + "stops": [ + { + "id": "1597", + "code": "31597", + "data": { + "gtfs": { + "stop_id": "1597", + "stop_code": "31597", + "stop_name": "av. Tisserand et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4747875538318, + 45.4648055408479 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5514766284832 + }, + "name": "av. Tisserand et boul. Pelletier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474787554, + 45.464805541 + ] + }, + "is_frozen": false, + "integer_id": 366, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490916, + 45.455854 + ] + }, + "id": 367, + "properties": { + "id": "f1131e74-6c65-4f22-a18d-41dbe35e4576", + "code": "31602", + "data": { + "stops": [ + { + "id": "1602", + "code": "31602", + "data": { + "gtfs": { + "stop_id": "1602", + "stop_code": "31602", + "stop_name": "av. Stravinski et Schumann", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et Schumann", + "geography": { + "type": "Point", + "coordinates": [ + -73.4908922419873, + 45.4559465140588 + ] + } + }, + { + "id": "2762", + "code": "32762", + "data": { + "gtfs": { + "stop_id": "2762", + "stop_code": "32762", + "stop_name": "av. Stravinski et Schumann", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et Schumann", + "geography": { + "type": "Point", + "coordinates": [ + -73.4909399439923, + 45.4557605088572 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4005663441403 + }, + "name": "av. Stravinski et Schumann", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490916093, + 45.455853511 + ] + }, + "is_frozen": false, + "integer_id": 367, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490642, + 45.453586 + ] + }, + "id": 368, + "properties": { + "id": "c7c30949-db61-44fc-b7ab-a69b9fde12cc", + "code": "31603", + "data": { + "stops": [ + { + "id": "1603", + "code": "31603", + "data": { + "gtfs": { + "stop_id": "1603", + "stop_code": "31603", + "stop_name": "av. Stravinski et Schubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et Schubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4908016944597, + 45.4536050431873 + ] + } + }, + { + "id": "2760", + "code": "32760", + "data": { + "gtfs": { + "stop_id": "2760", + "stop_code": "32760", + "stop_name": "av. Stravinski et av. Stravinski", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et av. Stravinski", + "geography": { + "type": "Point", + "coordinates": [ + -73.4904818456314, + 45.4535659742545 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3623444265277 + }, + "name": "av. Stravinski et Schubert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.49064177, + 45.453585509 + ] + }, + "is_frozen": false, + "integer_id": 368, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490167, + 45.452021 + ] + }, + "id": 369, + "properties": { + "id": "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", + "code": "31604", + "data": { + "stops": [ + { + "id": "1604", + "code": "31604", + "data": { + "gtfs": { + "stop_id": "1604", + "stop_code": "31604", + "stop_name": "av. Stravinski et place Santerre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et place Santerre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4902515900486, + 45.4521274638767 + ] + } + }, + { + "id": "2759", + "code": "32759", + "data": { + "gtfs": { + "stop_id": "2759", + "stop_code": "32759", + "stop_name": "av. Stravinski et place Santerre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et place Santerre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4900829711553, + 45.4519137851176 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3359745769997 + }, + "name": "av. Stravinski et place Santerre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490167281, + 45.452020624 + ] + }, + "is_frozen": false, + "integer_id": 369, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.49037, + 45.449863 + ] + }, + "id": 370, + "properties": { + "id": "997c4af9-ab50-4dfb-941a-afadff58f267", + "code": "31605", + "data": { + "stops": [ + { + "id": "1605", + "code": "31605", + "data": { + "gtfs": { + "stop_id": "1605", + "stop_code": "31605", + "stop_name": "av. Stravinski et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4904330251031, + 45.4502214062371 + ] + } + }, + { + "id": "2758", + "code": "32758", + "data": { + "gtfs": { + "stop_id": "2758", + "stop_code": "32758", + "stop_name": "av. Stravinski et croiss. Sabourin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et croiss. Sabourin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4903074394209, + 45.4495046027877 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2996201394466 + }, + "name": "av. Stravinski et Passage piétonnier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490370232, + 45.449863005 + ] + }, + "is_frozen": false, + "integer_id": 370, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490513, + 45.447638 + ] + }, + "id": 371, + "properties": { + "id": "11a7e876-eb5a-402b-8bb8-10625e7584e3", + "code": "31606", + "data": { + "stops": [ + { + "id": "1606", + "code": "31606", + "data": { + "gtfs": { + "stop_id": "1606", + "stop_code": "31606", + "stop_name": "av. Stravinski et boul. Rivard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et boul. Rivard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4906237039296, + 45.4477350412472 + ] + } + }, + { + "id": "3606", + "code": "33606", + "data": { + "gtfs": { + "stop_id": "3606", + "stop_code": "33606", + "stop_name": "av. Stravinski et boul. Rivard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et boul. Rivard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4904686159487, + 45.4472851025053 + ] + } + }, + { + "id": "3607", + "code": "33607", + "data": { + "gtfs": { + "stop_id": "3607", + "stop_code": "33607", + "stop_name": "av. Stravinski et boul. Rivard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et boul. Rivard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4904027355712, + 45.4479914806459 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2621395362596 + }, + "name": "av. Stravinski et boul. Rivard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.49051322, + 45.447638292 + ] + }, + "is_frozen": false, + "integer_id": 371, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492328, + 45.447601 + ] + }, + "id": 372, + "properties": { + "id": "0d8bc8fc-204a-4f67-a22f-4e3e93df3587", + "code": "31607", + "data": { + "stops": [ + { + "id": "1607", + "code": "31607", + "data": { + "gtfs": { + "stop_id": "1607", + "stop_code": "31607", + "stop_name": "boul. Rivard et boul. Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Rivard et boul. Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4922638603879, + 45.447728480905 + ] + } + }, + { + "id": "3662", + "code": "33662", + "data": { + "gtfs": { + "stop_id": "3662", + "stop_code": "33662", + "stop_name": "boul. Marie-Victorin et boul. Rivard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et boul. Rivard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4923923307124, + 45.4474742157114 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2615171634047 + }, + "name": "boul. Rivard et boul. Marie-Victorin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492328096, + 45.447601348 + ] + }, + "is_frozen": false, + "integer_id": 372, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.489567, + 45.457141 + ] + }, + "id": 373, + "properties": { + "id": "2f68c8b3-ace6-41af-8853-d72177e835fd", + "code": "31608", + "data": { + "stops": [ + { + "id": "1608", + "code": "31608", + "data": { + "gtfs": { + "stop_id": "1608", + "stop_code": "31608", + "stop_name": "boul. de Rome et av. Tisserand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. Tisserand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4895668925947, + 45.4571408431967 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4222633719886 + }, + "name": "boul. de Rome et av. Tisserand", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.489566893, + 45.457140843 + ] + }, + "is_frozen": false, + "integer_id": 373, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492349, + 45.45976 + ] + }, + "id": 374, + "properties": { + "id": "8e7df7c5-fbe3-41d1-a80a-c492814328ef", + "code": "31609", + "data": { + "stops": [ + { + "id": "1609", + "code": "31609", + "data": { + "gtfs": { + "stop_id": "1609", + "stop_code": "31609", + "stop_name": "boul. Marie-Victorin et place Trianon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et place Trianon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4923494503127, + 45.4597601491036 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4664143755277 + }, + "name": "boul. Marie-Victorin et place Trianon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.49234945, + 45.459760149 + ] + }, + "is_frozen": false, + "integer_id": 374, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491282, + 45.461519 + ] + }, + "id": 375, + "properties": { + "id": "13911923-9958-42d2-8802-57ffe78c7f38", + "code": "31610", + "data": { + "stops": [ + { + "id": "1610", + "code": "31610", + "data": { + "gtfs": { + "stop_id": "1610", + "stop_code": "31610", + "stop_name": "av. Thérèse et croiss. Tourangeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Thérèse et croiss. Tourangeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4912824477056, + 45.461518884754 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.496063033824 + }, + "name": "av. Thérèse et croiss. Tourangeau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491282448, + 45.461518885 + ] + }, + "is_frozen": false, + "integer_id": 375, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.470651, + 45.481964 + ] + }, + "id": 376, + "properties": { + "id": "a4f163e1-b90e-4fc3-82f3-f03b3181860d", + "code": "31611", + "data": { + "stops": [ + { + "id": "1611", + "code": "31611", + "data": { + "gtfs": { + "stop_id": "1611", + "stop_code": "31611", + "stop_name": "Campbell et tsse Plante", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Campbell et tsse Plante", + "geography": { + "type": "Point", + "coordinates": [ + -73.4709738410543, + 45.4819799937337 + ] + } + }, + { + "id": "2469", + "code": "32469", + "data": { + "gtfs": { + "stop_id": "2469", + "stop_code": "32469", + "stop_name": "Campbell et Lawrence", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Campbell et Lawrence", + "geography": { + "type": "Point", + "coordinates": [ + -73.4704212260477, + 45.4818082314751 + ] + } + }, + { + "id": "4163", + "code": "34163", + "data": { + "gtfs": { + "stop_id": "4163", + "stop_code": "34163", + "stop_name": "Lawrence et tsse Board", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lawrence et tsse Board", + "geography": { + "type": "Point", + "coordinates": [ + -73.4703283062496, + 45.4821187767507 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8409186390714 + }, + "name": "Campbell et tsse Plante", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.470651074, + 45.481963504 + ] + }, + "is_frozen": false, + "integer_id": 376, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494433, + 45.490069 + ] + }, + "id": 377, + "properties": { + "id": "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", + "code": "31612", + "data": { + "stops": [ + { + "id": "1612", + "code": "31612", + "data": { + "gtfs": { + "stop_id": "1612", + "stop_code": "31612", + "stop_name": "av. Alexandra et Clack", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et Clack", + "geography": { + "type": "Point", + "coordinates": [ + -73.4942014527172, + 45.4900023196922 + ] + } + }, + { + "id": "1623", + "code": "31623", + "data": { + "gtfs": { + "stop_id": "1623", + "stop_code": "31623", + "stop_name": "av. Alexandra et Clack", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et Clack", + "geography": { + "type": "Point", + "coordinates": [ + -73.4946638558216, + 45.4901361590902 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9777473115711 + }, + "name": "av. Alexandra et Clack", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494432654, + 45.490069239 + ] + }, + "is_frozen": false, + "integer_id": 377, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.504689, + 45.490304 + ] + }, + "id": 378, + "properties": { + "id": "51191948-9067-4256-853f-d80a1333a164", + "code": "31613", + "data": { + "stops": [ + { + "id": "1613", + "code": "31613", + "data": { + "gtfs": { + "stop_id": "1613", + "stop_code": "31613", + "stop_name": "av. Alexandra et av. Casgrain", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et av. Casgrain", + "geography": { + "type": "Point", + "coordinates": [ + -73.5051249969795, + 45.4902367462407 + ] + } + }, + { + "id": "1619", + "code": "31619", + "data": { + "gtfs": { + "stop_id": "1619", + "stop_code": "31619", + "stop_name": "av. Alexandra et boul. Queen", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et boul. Queen", + "geography": { + "type": "Point", + "coordinates": [ + -73.5042535046299, + 45.4903704980896 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9817046773575 + }, + "name": "av. Alexandra et av. Casgrain", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.504689251, + 45.490303622 + ] + }, + "is_frozen": false, + "integer_id": 378, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.507032, + 45.490204 + ] + }, + "id": 379, + "properties": { + "id": "602dc8fb-62ff-45ed-888f-4b4172318b5d", + "code": "31614", + "data": { + "stops": [ + { + "id": "1614", + "code": "31614", + "data": { + "gtfs": { + "stop_id": "1614", + "stop_code": "31614", + "stop_name": "av. Alexandra et civique 230", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et civique 230", + "geography": { + "type": "Point", + "coordinates": [ + -73.5070249172839, + 45.4902575468003 + ] + } + }, + { + "id": "1618", + "code": "31618", + "data": { + "gtfs": { + "stop_id": "1618", + "stop_code": "31618", + "stop_name": "av. Alexandra et civique 223", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et civique 223", + "geography": { + "type": "Point", + "coordinates": [ + -73.507039929981, + 45.4901495437728 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9800149528617 + }, + "name": "av. Alexandra et civique 230", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507032424, + 45.490203545 + ] + }, + "is_frozen": false, + "integer_id": 379, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.509584, + 45.490228 + ] + }, + "id": 380, + "properties": { + "id": "5224c05b-57d6-4d5c-87fd-b9e78147c66e", + "code": "31615", + "data": { + "stops": [ + { + "id": "1615", + "code": "31615", + "data": { + "gtfs": { + "stop_id": "1615", + "stop_code": "31615", + "stop_name": "av. Alexandra et Osborne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et Osborne", + "geography": { + "type": "Point", + "coordinates": [ + -73.5094905040803, + 45.49030686004 + ] + } + }, + { + "id": "1617", + "code": "31617", + "data": { + "gtfs": { + "stop_id": "1617", + "stop_code": "31617", + "stop_name": "av. Alexandra et Osborne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et Osborne", + "geography": { + "type": "Point", + "coordinates": [ + -73.5096771840879, + 45.4901493714933 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9804298147983 + }, + "name": "av. Alexandra et Osborne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.509583844, + 45.490228116 + ] + }, + "is_frozen": false, + "integer_id": 380, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.5009, + 45.490924 + ] + }, + "id": 381, + "properties": { + "id": "d67aee3e-be1e-429b-b464-c7a6549e761a", + "code": "31620", + "data": { + "stops": [ + { + "id": "1620", + "code": "31620", + "data": { + "gtfs": { + "stop_id": "1620", + "stop_code": "31620", + "stop_name": "av. Alexandra et d'Arran", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et d'Arran", + "geography": { + "type": "Point", + "coordinates": [ + -73.5010287002794, + 45.4908516558786 + ] + } + }, + { + "id": "3407", + "code": "33407", + "data": { + "gtfs": { + "stop_id": "3407", + "stop_code": "33407", + "stop_name": "av. Alexandra et d'Arran", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et d'Arran", + "geography": { + "type": "Point", + "coordinates": [ + -73.500770427546, + 45.4909956331034 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9921734786598 + }, + "name": "av. Alexandra et d'Arran", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.500899564, + 45.490923644 + ] + }, + "is_frozen": false, + "integer_id": 381, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.498736, + 45.490879 + ] + }, + "id": 382, + "properties": { + "id": "1fa03421-8026-43d9-b21a-b3e57dfa43c2", + "code": "31621", + "data": { + "stops": [ + { + "id": "1621", + "code": "31621", + "data": { + "gtfs": { + "stop_id": "1621", + "stop_code": "31621", + "stop_name": "av. Alexandra et boul. Houde", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et boul. Houde", + "geography": { + "type": "Point", + "coordinates": [ + -73.4985035736132, + 45.4908179803103 + ] + } + }, + { + "id": "3406", + "code": "33406", + "data": { + "gtfs": { + "stop_id": "3406", + "stop_code": "33406", + "stop_name": "av. Alexandra et de Rutledge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et de Rutledge", + "geography": { + "type": "Point", + "coordinates": [ + -73.4989691308364, + 45.4909402194986 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9914213612316 + }, + "name": "av. Alexandra et boul. Houde", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.498736352, + 45.4908791 + ] + }, + "is_frozen": false, + "integer_id": 382, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.495916, + 45.490842 + ] + }, + "id": 383, + "properties": { + "id": "1fc11ea4-4e32-4f30-8519-34208d0f8931", + "code": "31622", + "data": { + "stops": [ + { + "id": "1622", + "code": "31622", + "data": { + "gtfs": { + "stop_id": "1622", + "stop_code": "31622", + "stop_name": "av. Alexandra et av. Wickham", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et av. Wickham", + "geography": { + "type": "Point", + "coordinates": [ + -73.496027930553, + 45.4907931015287 + ] + } + }, + { + "id": "3405", + "code": "33405", + "data": { + "gtfs": { + "stop_id": "3405", + "stop_code": "33405", + "stop_name": "av. Alexandra et av. Wickham", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et av. Wickham", + "geography": { + "type": "Point", + "coordinates": [ + -73.4958048356609, + 45.4908900293512 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9907875908776 + }, + "name": "av. Alexandra et av. Wickham", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.495916383, + 45.490841565 + ] + }, + "is_frozen": false, + "integer_id": 383, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.512201, + 45.518457 + ] + }, + "id": 384, + "properties": { + "id": "608948b3-8ac4-493b-a2b3-48bd266c12ab", + "code": "31624", + "data": { + "stops": [ + { + "id": "1624", + "code": "31624", + "data": { + "gtfs": { + "stop_id": "1624", + "stop_code": "31624", + "stop_name": "boul. La Fayette et Goupil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et Goupil", + "geography": { + "type": "Point", + "coordinates": [ + -73.5124112354269, + 45.5184086712457 + ] + } + }, + { + "id": "1688", + "code": "31688", + "data": { + "gtfs": { + "stop_id": "1688", + "stop_code": "31688", + "stop_name": "boul. La Fayette et Goupil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et Goupil", + "geography": { + "type": "Point", + "coordinates": [ + -73.5119910689953, + 45.5185045635436 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4574005830211 + }, + "name": "boul. La Fayette et Goupil", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.512201152, + 45.518456617 + ] + }, + "is_frozen": false, + "integer_id": 384, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.507278, + 45.516754 + ] + }, + "id": 385, + "properties": { + "id": "aaca7ee9-974a-47d8-922b-2905590b6265", + "code": "31626", + "data": { + "stops": [ + { + "id": "1626", + "code": "31626", + "data": { + "gtfs": { + "stop_id": "1626", + "stop_code": "31626", + "stop_name": "boul. La Fayette et Logan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et Logan", + "geography": { + "type": "Point", + "coordinates": [ + -73.506926450541, + 45.5166459236653 + ] + } + }, + { + "id": "1943", + "code": "31943", + "data": { + "gtfs": { + "stop_id": "1943", + "stop_code": "31943", + "stop_name": "boul. La Fayette et civique 948", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et civique 948", + "geography": { + "type": "Point", + "coordinates": [ + -73.5076302126532, + 45.5168613646146 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4286057150542 + }, + "name": "boul. La Fayette et Logan", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507278332, + 45.516753644 + ] + }, + "is_frozen": false, + "integer_id": 385, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.505353, + 45.51613 + ] + }, + "id": 386, + "properties": { + "id": "37e8736b-c9d0-4a33-a437-1f0196c113f1", + "code": "31627", + "data": { + "stops": [ + { + "id": "1627", + "code": "31627", + "data": { + "gtfs": { + "stop_id": "1627", + "stop_code": "31627", + "stop_name": "boul. La Fayette et Franquelin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et Franquelin", + "geography": { + "type": "Point", + "coordinates": [ + -73.5053529883313, + 45.5161298954804 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4180596469054 + }, + "name": "boul. La Fayette et Franquelin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.505352988, + 45.516129895 + ] + }, + "is_frozen": false, + "integer_id": 386, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.503627, + 45.515782 + ] + }, + "id": 387, + "properties": { + "id": "9e3f5b7f-c832-420a-b6d0-a87946ebafd2", + "code": "31628", + "data": { + "stops": [ + { + "id": "1628", + "code": "31628", + "data": { + "gtfs": { + "stop_id": "1628", + "stop_code": "31628", + "stop_name": "boul. La Fayette et Beauchamp", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et Beauchamp", + "geography": { + "type": "Point", + "coordinates": [ + -73.5039219627571, + 45.5156754222949 + ] + } + }, + { + "id": "3556", + "code": "33556", + "data": { + "gtfs": { + "stop_id": "3556", + "stop_code": "33556", + "stop_name": "boul. La Fayette et Beauchamp", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et Beauchamp", + "geography": { + "type": "Point", + "coordinates": [ + -73.5033325327246, + 45.515888090539 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4121736196306 + }, + "name": "boul. La Fayette et Beauchamp", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.503627248, + 45.515781756 + ] + }, + "is_frozen": false, + "integer_id": 387, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.501281, + 45.515089 + ] + }, + "id": 388, + "properties": { + "id": "4070ca4c-584b-43bd-a874-a91871fdf63a", + "code": "31629", + "data": { + "stops": [ + { + "id": "1629", + "code": "31629", + "data": { + "gtfs": { + "stop_id": "1629", + "stop_code": "31629", + "stop_name": "boul. La Fayette et Green", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et Green", + "geography": { + "type": "Point", + "coordinates": [ + -73.5015088748119, + 45.5150122274932 + ] + } + }, + { + "id": "1684", + "code": "31684", + "data": { + "gtfs": { + "stop_id": "1684", + "stop_code": "31684", + "stop_name": "boul. La Fayette et Green", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et Green", + "geography": { + "type": "Point", + "coordinates": [ + -73.5010530881189, + 45.5151659623611 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4004630391893 + }, + "name": "boul. La Fayette et Green", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.501280981, + 45.515089095 + ] + }, + "is_frozen": false, + "integer_id": 388, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.495279, + 45.514111 + ] + }, + "id": 389, + "properties": { + "id": "2c0958f9-14bd-4467-9157-d96db49f68da", + "code": "31631", + "data": { + "stops": [ + { + "id": "1631", + "code": "31631", + "data": { + "gtfs": { + "stop_id": "1631", + "stop_code": "31631", + "stop_name": "Front et La Salle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Front et La Salle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4952287568018, + 45.5140180220413 + ] + } + }, + { + "id": "1682", + "code": "31682", + "data": { + "gtfs": { + "stop_id": "1682", + "stop_code": "31682", + "stop_name": "La Salle et Front", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Salle et Front", + "geography": { + "type": "Point", + "coordinates": [ + -73.4950807772364, + 45.5142045420628 + ] + } + }, + { + "id": "3087", + "code": "33087", + "data": { + "gtfs": { + "stop_id": "3087", + "stop_code": "33087", + "stop_name": "La Salle et Front", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Salle et Front", + "geography": { + "type": "Point", + "coordinates": [ + -73.4954767719655, + 45.5141560227912 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3839322197152 + }, + "name": "Front et La Salle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.495278775, + 45.514111282 + ] + }, + "is_frozen": false, + "integer_id": 389, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491921, + 45.513121 + ] + }, + "id": 390, + "properties": { + "id": "d76fa63a-1787-4749-9166-b1ecce1f4af2", + "code": "31632", + "data": { + "stops": [ + { + "id": "1632", + "code": "31632", + "data": { + "gtfs": { + "stop_id": "1632", + "stop_code": "31632", + "stop_name": "La Salle et ECOLE SECONDAIRE GERARD-FILION", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Salle et ECOLE SECONDAIRE GERARD-FILION", + "geography": { + "type": "Point", + "coordinates": [ + -73.4915947053, + 45.512903984293 + ] + } + }, + { + "id": "1681", + "code": "31681", + "data": { + "gtfs": { + "stop_id": "1681", + "stop_code": "31681", + "stop_name": "La Salle et boul. Curé-Poirier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Salle et boul. Curé-Poirier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.492017506377, + 45.5132244310606 + ] + } + }, + { + "id": "3117", + "code": "33117", + "data": { + "gtfs": { + "stop_id": "3117", + "stop_code": "33117", + "stop_name": "boul. Curé-Poirier ouest et La Salle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et La Salle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4922465237645, + 45.5133385845183 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3671962692248 + }, + "name": "La Salle et ECOLE SECONDAIRE GERARD-FILION", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491920615, + 45.513121284 + ] + }, + "is_frozen": false, + "integer_id": 390, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.489402, + 45.512257 + ] + }, + "id": 391, + "properties": { + "id": "229965c6-9bf9-414c-9970-4f7b1b31441b", + "code": "31633", + "data": { + "stops": [ + { + "id": "1633", + "code": "31633", + "data": { + "gtfs": { + "stop_id": "1633", + "stop_code": "31633", + "stop_name": "La Salle et Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Salle et Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.489290031949, + 45.5121648955948 + ] + } + }, + { + "id": "1680", + "code": "31680", + "data": { + "gtfs": { + "stop_id": "1680", + "stop_code": "31680", + "stop_name": "La Salle et Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Salle et Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4889365471068, + 45.5122353518962 + ] + } + }, + { + "id": "3479", + "code": "33479", + "data": { + "gtfs": { + "stop_id": "3479", + "stop_code": "33479", + "stop_name": "La Salle et ECOLE SECONDAIRE GERARD-FILION", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Salle et ECOLE SECONDAIRE GERARD-FILION", + "geography": { + "type": "Point", + "coordinates": [ + -73.4898674587144, + 45.5123484664615 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3525808395509 + }, + "name": "La Salle et Hubert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.489402003, + 45.512256681 + ] + }, + "is_frozen": false, + "integer_id": 391, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486247, + 45.511048 + ] + }, + "id": 392, + "properties": { + "id": "6ab67241-b06e-417b-b6fb-88a16df29924", + "code": "31634", + "data": { + "stops": [ + { + "id": "1634", + "code": "31634", + "data": { + "gtfs": { + "stop_id": "1634", + "stop_code": "31634", + "stop_name": "La Salle et Beauregard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Salle et Beauregard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4863136995063, + 45.5112367915311 + ] + } + }, + { + "id": "3996", + "code": "33996", + "data": { + "gtfs": { + "stop_id": "3996", + "stop_code": "33996", + "stop_name": "Beauregard et La Salle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauregard et La Salle", + "geography": { + "type": "Point", + "coordinates": [ + -73.486180208591, + 45.5108588419203 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3321470660667 + }, + "name": "La Salle et Beauregard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486246954, + 45.511047817 + ] + }, + "is_frozen": false, + "integer_id": 392, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486944, + 45.509904 + ] + }, + "id": 393, + "properties": { + "id": "808ef7d7-1aa0-4a40-a96d-0615a6e712b5", + "code": "31635", + "data": { + "stops": [ + { + "id": "1635", + "code": "31635", + "data": { + "gtfs": { + "stop_id": "1635", + "stop_code": "31635", + "stop_name": "Beauregard et civique 1280", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauregard et civique 1280", + "geography": { + "type": "Point", + "coordinates": [ + -73.4869315398967, + 45.5100879260518 + ] + } + }, + { + "id": "3995", + "code": "33995", + "data": { + "gtfs": { + "stop_id": "3995", + "stop_code": "33995", + "stop_name": "Beauregard et civique 1300", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauregard et civique 1300", + "geography": { + "type": "Point", + "coordinates": [ + -73.4869555700782, + 45.5097206331148 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3128187311786 + }, + "name": "Beauregard et civique 1280", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486943555, + 45.50990428 + ] + }, + "is_frozen": false, + "integer_id": 393, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.487736, + 45.508574 + ] + }, + "id": 394, + "properties": { + "id": "0f8d4bf1-fdee-4df3-8471-0b6ede606755", + "code": "31636", + "data": { + "stops": [ + { + "id": "1636", + "code": "31636", + "data": { + "gtfs": { + "stop_id": "1636", + "stop_code": "31636", + "stop_name": "Beauregard et Séguin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauregard et Séguin", + "geography": { + "type": "Point", + "coordinates": [ + -73.48789409967, + 45.5086461270543 + ] + } + }, + { + "id": "1677", + "code": "31677", + "data": { + "gtfs": { + "stop_id": "1677", + "stop_code": "31677", + "stop_name": "Séguin et Beauregard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Séguin et Beauregard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4875785435675, + 45.5085014165558 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2903316333071 + }, + "name": "Beauregard et Séguin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.487736322, + 45.508573772 + ] + }, + "is_frozen": false, + "integer_id": 394, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486329, + 45.508012 + ] + }, + "id": 395, + "properties": { + "id": "ec8cd08f-9336-4f9e-945b-09c8eb5b3620", + "code": "31637", + "data": { + "stops": [ + { + "id": "1637", + "code": "31637", + "data": { + "gtfs": { + "stop_id": "1637", + "stop_code": "31637", + "stop_name": "Séguin et Conefroy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Séguin et Conefroy", + "geography": { + "type": "Point", + "coordinates": [ + -73.48615103032, + 45.5078711936904 + ] + } + }, + { + "id": "1676", + "code": "31676", + "data": { + "gtfs": { + "stop_id": "1676", + "stop_code": "31676", + "stop_name": "Séguin et Conefroy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Séguin et Conefroy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4865076129095, + 45.5081532451228 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2808412221399 + }, + "name": "Séguin et Conefroy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486329322, + 45.508012219 + ] + }, + "is_frozen": false, + "integer_id": 395, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.484847, + 45.507557 + ] + }, + "id": 396, + "properties": { + "id": "2e045adb-bebd-4da6-b99a-63531ab62f07", + "code": "31638", + "data": { + "stops": [ + { + "id": "1638", + "code": "31638", + "data": { + "gtfs": { + "stop_id": "1638", + "stop_code": "31638", + "stop_name": "Séguin et boul. Nobert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Séguin et boul. Nobert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4849493224535, + 45.5074669108069 + ] + } + }, + { + "id": "1675", + "code": "31675", + "data": { + "gtfs": { + "stop_id": "1675", + "stop_code": "31675", + "stop_name": "boul. Nobert et Séguin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Séguin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4847437143165, + 45.5076470670565 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2731479070383 + }, + "name": "Séguin et boul. Nobert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.484846518, + 45.507556989 + ] + }, + "is_frozen": false, + "integer_id": 396, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483764, + 45.508955 + ] + }, + "id": 397, + "properties": { + "id": "79a61958-f84e-477b-8bcf-aa304101e537", + "code": "31639", + "data": { + "stops": [ + { + "id": "1639", + "code": "31639", + "data": { + "gtfs": { + "stop_id": "1639", + "stop_code": "31639", + "stop_name": "boul. Nobert et civique 1341", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et civique 1341", + "geography": { + "type": "Point", + "coordinates": [ + -73.4837627341849, + 45.5087670617095 + ] + } + }, + { + "id": "1674", + "code": "31674", + "data": { + "gtfs": { + "stop_id": "1674", + "stop_code": "31674", + "stop_name": "boul. Nobert et civique 1321", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et civique 1321", + "geography": { + "type": "Point", + "coordinates": [ + -73.4837647467511, + 45.5091428639478 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2967740334974 + }, + "name": "boul. Nobert et civique 1341", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48376374, + 45.508954963 + ] + }, + "is_frozen": false, + "integer_id": 397, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482918, + 45.510226 + ] + }, + "id": 398, + "properties": { + "id": "5ab29327-5bbe-43e2-9d7f-42e3ca97dbcb", + "code": "31640", + "data": { + "stops": [ + { + "id": "1640", + "code": "31640", + "data": { + "gtfs": { + "stop_id": "1640", + "stop_code": "31640", + "stop_name": "boul. Nobert et La Salle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et La Salle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4828884679474, + 45.5101025291027 + ] + } + }, + { + "id": "1673", + "code": "31673", + "data": { + "gtfs": { + "stop_id": "1673", + "stop_code": "31673", + "stop_name": "boul. Nobert et La Salle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et La Salle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4829479852652, + 45.5103499945224 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3182608299077 + }, + "name": "boul. Nobert et La Salle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482918227, + 45.510226262 + ] + }, + "is_frozen": false, + "integer_id": 398, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479888, + 45.51478 + ] + }, + "id": 399, + "properties": { + "id": "d3bdcdd3-55f8-4e08-a7fc-b8e6dbef8ce7", + "code": "31643", + "data": { + "stops": [ + { + "id": "1643", + "code": "31643", + "data": { + "gtfs": { + "stop_id": "1643", + "stop_code": "31643", + "stop_name": "boul. Nobert et Marquette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Marquette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4798592792928, + 45.5146597326226 + ] + } + }, + { + "id": "3974", + "code": "33974", + "data": { + "gtfs": { + "stop_id": "3974", + "stop_code": "33974", + "stop_name": "boul. Nobert et Marquette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Marquette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4799176705855, + 45.5149004855096 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.395239257369 + }, + "name": "boul. Nobert et Marquette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479888475, + 45.514780109 + ] + }, + "is_frozen": false, + "integer_id": 399, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47946, + 45.516151 + ] + }, + "id": 400, + "properties": { + "id": "6519add4-6360-4c95-9945-0c2d867f68d6", + "code": "31644", + "data": { + "stops": [ + { + "id": "1644", + "code": "31644", + "data": { + "gtfs": { + "stop_id": "1644", + "stop_code": "31644", + "stop_name": "boul. Nobert et Westgate", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Westgate", + "geography": { + "type": "Point", + "coordinates": [ + -73.4794194158349, + 45.516029737853 + ] + } + }, + { + "id": "1670", + "code": "31670", + "data": { + "gtfs": { + "stop_id": "1670", + "stop_code": "31670", + "stop_name": "boul. Nobert et Westgate", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Westgate", + "geography": { + "type": "Point", + "coordinates": [ + -73.4795001025716, + 45.5162730090656 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4184227815288 + }, + "name": "boul. Nobert et Westgate", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479459759, + 45.516151373 + ] + }, + "is_frozen": false, + "integer_id": 400, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478732, + 45.517343 + ] + }, + "id": 401, + "properties": { + "id": "40cc5489-ce8f-4df1-916b-c682450d39d7", + "code": "31645", + "data": { + "stops": [ + { + "id": "1645", + "code": "31645", + "data": { + "gtfs": { + "stop_id": "1645", + "stop_code": "31645", + "stop_name": "boul. Nobert et Joliette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Joliette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4786531890739, + 45.5171000578541 + ] + } + }, + { + "id": "1669", + "code": "31669", + "data": { + "gtfs": { + "stop_id": "1669", + "stop_code": "31669", + "stop_name": "boul. Nobert et Joliette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Joliette", + "geography": { + "type": "Point", + "coordinates": [ + -73.478551323615, + 45.5175852356124 + ] + } + }, + { + "id": "3135", + "code": "33135", + "data": { + "gtfs": { + "stop_id": "3135", + "stop_code": "33135", + "stop_name": "Joliette et boul. Nobert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et boul. Nobert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4789124988991, + 45.5172374109242 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4385646315704 + }, + "name": "boul. Nobert et Joliette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.478731911, + 45.517342647 + ] + }, + "is_frozen": false, + "integer_id": 401, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.477469, + 45.518666 + ] + }, + "id": 402, + "properties": { + "id": "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", + "code": "31646", + "data": { + "stops": [ + { + "id": "1646", + "code": "31646", + "data": { + "gtfs": { + "stop_id": "1646", + "stop_code": "31646", + "stop_name": "boul. Nobert et Jean-Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Jean-Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4776014652592, + 45.5185871176583 + ] + } + }, + { + "id": "1668", + "code": "31668", + "data": { + "gtfs": { + "stop_id": "1668", + "stop_code": "31668", + "stop_name": "boul. Nobert et Jean-Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Jean-Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4776560522989, + 45.5188268638675 + ] + } + }, + { + "id": "3136", + "code": "33136", + "data": { + "gtfs": { + "stop_id": "3136", + "stop_code": "33136", + "stop_name": "Jean-Béliveau et Julien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jean-Béliveau et Julien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4772817022449, + 45.5185055370546 + ] + } + }, + { + "id": "3178", + "code": "33178", + "data": { + "gtfs": { + "stop_id": "3178", + "stop_code": "33178", + "stop_name": "Jean-Béliveau et boul. Nobert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jean-Béliveau et boul. Nobert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4773579852237, + 45.5186753089227 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.460944514053 + }, + "name": "boul. Nobert et Jean-Béliveau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.477468877, + 45.5186662 + ] + }, + "is_frozen": false, + "integer_id": 402, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.476829, + 45.519818 + ] + }, + "id": 403, + "properties": { + "id": "242c7269-ce0d-45c7-8356-927308e89900", + "code": "31647", + "data": { + "stops": [ + { + "id": "1647", + "code": "31647", + "data": { + "gtfs": { + "stop_id": "1647", + "stop_code": "31647", + "stop_name": "boul. Nobert et Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4768236972731, + 45.5196708410634 + ] + } + }, + { + "id": "1667", + "code": "31667", + "data": { + "gtfs": { + "stop_id": "1667", + "stop_code": "31667", + "stop_name": "boul. Nobert et Charlevoix", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Charlevoix", + "geography": { + "type": "Point", + "coordinates": [ + -73.4768347713101, + 45.5199660134479 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4804287256052 + }, + "name": "boul. Nobert et Montarville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.476829234, + 45.519818427 + ] + }, + "is_frozen": false, + "integer_id": 403, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.476083, + 45.520829 + ] + }, + "id": 404, + "properties": { + "id": "bad427d3-2698-4efd-8d52-2bc92f049d64", + "code": "31648", + "data": { + "stops": [ + { + "id": "1648", + "code": "31648", + "data": { + "gtfs": { + "stop_id": "1648", + "stop_code": "31648", + "stop_name": "boul. Nobert et de Boulogne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et de Boulogne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4760527394864, + 45.5207015553059 + ] + } + }, + { + "id": "1666", + "code": "31666", + "data": { + "gtfs": { + "stop_id": "1666", + "stop_code": "31666", + "stop_name": "boul. Nobert et de Boulogne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et de Boulogne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4761140112226, + 45.5209572928245 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4975257056053 + }, + "name": "boul. Nobert et de Boulogne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.476083375, + 45.520829424 + ] + }, + "is_frozen": false, + "integer_id": 404, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474937, + 45.52241 + ] + }, + "id": 405, + "properties": { + "id": "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", + "code": "31649", + "data": { + "stops": [ + { + "id": "1649", + "code": "31649", + "data": { + "gtfs": { + "stop_id": "1649", + "stop_code": "31649", + "stop_name": "boul. Nobert et McGill", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et McGill", + "geography": { + "type": "Point", + "coordinates": [ + -73.4748848617284, + 45.5223007307033 + ] + } + }, + { + "id": "1665", + "code": "31665", + "data": { + "gtfs": { + "stop_id": "1665", + "stop_code": "31665", + "stop_name": "boul. Nobert et McGill", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et McGill", + "geography": { + "type": "Point", + "coordinates": [ + -73.474989707007, + 45.522518877613 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5242533514953 + }, + "name": "boul. Nobert et McGill", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474937284, + 45.522409804 + ] + }, + "is_frozen": false, + "integer_id": 405, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474025, + 45.523766 + ] + }, + "id": 406, + "properties": { + "id": "75f82802-187b-4386-b435-5da7ab066898", + "code": "31650", + "data": { + "stops": [ + { + "id": "1650", + "code": "31650", + "data": { + "gtfs": { + "stop_id": "1650", + "stop_code": "31650", + "stop_name": "boul. Nobert et de Chatham", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et de Chatham", + "geography": { + "type": "Point", + "coordinates": [ + -73.473771424944, + 45.5238380278455 + ] + } + }, + { + "id": "1664", + "code": "31664", + "data": { + "gtfs": { + "stop_id": "1664", + "stop_code": "31664", + "stop_name": "boul. Nobert et Brébeuf", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Brébeuf", + "geography": { + "type": "Point", + "coordinates": [ + -73.4740307355709, + 45.5238425781907 + ] + } + }, + { + "id": "3036", + "code": "33036", + "data": { + "gtfs": { + "stop_id": "3036", + "stop_code": "33036", + "stop_name": "Brébeuf et boul. Nobert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brébeuf et boul. Nobert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4742780657747, + 45.5236892852598 + ] + } + }, + { + "id": "3084", + "code": "33084", + "data": { + "gtfs": { + "stop_id": "3084", + "stop_code": "33084", + "stop_name": "Brébeuf et boul. Nobert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brébeuf et boul. Nobert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4738065954767, + 45.5237242178855 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5471901850326 + }, + "name": "boul. Nobert et de Chatham", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474024745, + 45.523765932 + ] + }, + "is_frozen": false, + "integer_id": 406, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.472815, + 45.525202 + ] + }, + "id": 407, + "properties": { + "id": "471a40a2-ebb0-4658-a772-8036d064636d", + "code": "31651", + "data": { + "stops": [ + { + "id": "1651", + "code": "31651", + "data": { + "gtfs": { + "stop_id": "1651", + "stop_code": "31651", + "stop_name": "boul. Nobert et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4728154005743, + 45.5252017263557 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5714762334402 + }, + "name": "boul. Nobert et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472815401, + 45.525201726 + ] + }, + "is_frozen": false, + "integer_id": 407, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.473654, + 45.528601 + ] + }, + "id": 408, + "properties": { + "id": "e709ab81-b01c-47b3-a19c-63757b8320b0", + "code": "31652", + "data": { + "stops": [ + { + "id": "1652", + "code": "31652", + "data": { + "gtfs": { + "stop_id": "1652", + "stop_code": "31652", + "stop_name": "King-George et Gamache", + "location_type": 0, + "parent_station": "" + } + }, + "name": "King-George et Gamache", + "geography": { + "type": "Point", + "coordinates": [ + -73.4735456046833, + 45.5284799888281 + ] + } + }, + { + "id": "1661", + "code": "31661", + "data": { + "gtfs": { + "stop_id": "1661", + "stop_code": "31661", + "stop_name": "King-George et Gamache", + "location_type": 0, + "parent_station": "" + } + }, + "name": "King-George et Gamache", + "geography": { + "type": "Point", + "coordinates": [ + -73.4736615123115, + 45.528722972137 + ] + } + }, + { + "id": "5854", + "code": "30623", + "data": { + "gtfs": { + "stop_id": "5854", + "stop_code": "30623", + "stop_name": "Gamache et King-George", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gamache et King-George", + "geography": { + "type": "Point", + "coordinates": [ + -73.4737627040307, + 45.5285264696907 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6289894346135 + }, + "name": "King-George et Gamache", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.473654154, + 45.52860148 + ] + }, + "is_frozen": false, + "integer_id": 408, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.472466, + 45.530734 + ] + }, + "id": 409, + "properties": { + "id": "eba98b16-12e9-4172-bbf2-62d1e69950a5", + "code": "31653", + "data": { + "stops": [ + { + "id": "1653", + "code": "31653", + "data": { + "gtfs": { + "stop_id": "1653", + "stop_code": "31653", + "stop_name": "King-George et Lavallée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "King-George et Lavallée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4724269818449, + 45.5306198793834 + ] + } + }, + { + "id": "3792", + "code": "33792", + "data": { + "gtfs": { + "stop_id": "3792", + "stop_code": "33792", + "stop_name": "King-George et Lavallée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "King-George et Lavallée", + "geography": { + "type": "Point", + "coordinates": [ + -73.472505113707, + 45.5308481197924 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6650702595354 + }, + "name": "King-George et Lavallée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472466048, + 45.530734 + ] + }, + "is_frozen": false, + "integer_id": 409, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.471314, + 45.532856 + ] + }, + "id": 410, + "properties": { + "id": "c2c8c1e8-4373-4b59-91c6-b04f7c4c1d76", + "code": "31654", + "data": { + "stops": [ + { + "id": "1654", + "code": "31654", + "data": { + "gtfs": { + "stop_id": "1654", + "stop_code": "31654", + "stop_name": "King-George et Laurier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "King-George et Laurier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4712765063298, + 45.5327401768922 + ] + } + }, + { + "id": "1659", + "code": "31659", + "data": { + "gtfs": { + "stop_id": "1659", + "stop_code": "31659", + "stop_name": "King-George et Laurier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "King-George et Laurier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4713507209676, + 45.532971414382 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7009736654827 + }, + "name": "King-George et Laurier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.471313614, + 45.532855796 + ] + }, + "is_frozen": false, + "integer_id": 410, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.470141, + 45.53497 + ] + }, + "id": 411, + "properties": { + "id": "523fb848-4048-4ab2-8e1c-32aab05ea63f", + "code": "31655", + "data": { + "stops": [ + { + "id": "1655", + "code": "31655", + "data": { + "gtfs": { + "stop_id": "1655", + "stop_code": "31655", + "stop_name": "King-George et Bellerose", + "location_type": 0, + "parent_station": "" + } + }, + "name": "King-George et Bellerose", + "geography": { + "type": "Point", + "coordinates": [ + -73.4700787963265, + 45.5348544891354 + ] + } + }, + { + "id": "5498", + "code": "30245", + "data": { + "gtfs": { + "stop_id": "5498", + "stop_code": "30245", + "stop_name": "King-George et Bellerose", + "location_type": 0, + "parent_station": "" + } + }, + "name": "King-George et Bellerose", + "geography": { + "type": "Point", + "coordinates": [ + -73.4702030087705, + 45.5350862136846 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7367585386579 + }, + "name": "King-George et Bellerose", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.470140903, + 45.534970351 + ] + }, + "is_frozen": false, + "integer_id": 411, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474577, + 45.526984 + ] + }, + "id": 412, + "properties": { + "id": "98c75cb8-58bc-4128-adc4-4f1198e685a1", + "code": "31662", + "data": { + "stops": [ + { + "id": "1662", + "code": "31662", + "data": { + "gtfs": { + "stop_id": "1662", + "stop_code": "31662", + "stop_name": "King-George et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "King-George et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4745768129938, + 45.5269838499145 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6016229111515 + }, + "name": "King-George et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474576813, + 45.52698385 + ] + }, + "is_frozen": false, + "integer_id": 412, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.480743, + 45.513525 + ] + }, + "id": 413, + "properties": { + "id": "65d27cdb-34eb-4bce-af66-d925b6cbeb28", + "code": "31671", + "data": { + "stops": [ + { + "id": "1671", + "code": "31671", + "data": { + "gtfs": { + "stop_id": "1671", + "stop_code": "31671", + "stop_name": "boul. Nobert et Saint-Georges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Saint-Georges", + "geography": { + "type": "Point", + "coordinates": [ + -73.4807478088105, + 45.5136957832984 + ] + } + }, + { + "id": "3791", + "code": "33791", + "data": { + "gtfs": { + "stop_id": "3791", + "stop_code": "33791", + "stop_name": "boul. Nobert et Saint-Georges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Saint-Georges", + "geography": { + "type": "Point", + "coordinates": [ + -73.48073806854, + 45.5133551143123 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3740285871207 + }, + "name": "boul. Nobert et Saint-Georges", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.480742939, + 45.513525449 + ] + }, + "is_frozen": false, + "integer_id": 413, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.495817, + 45.513407 + ] + }, + "id": 414, + "properties": { + "id": "4a0c512f-2ce4-41cc-a200-cf81d75487c1", + "code": "31683", + "data": { + "stops": [ + { + "id": "1683", + "code": "31683", + "data": { + "gtfs": { + "stop_id": "1683", + "stop_code": "31683", + "stop_name": "Front et boul. La Fayette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Front et boul. La Fayette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4957965432976, + 45.5135292199416 + ] + } + }, + { + "id": "3118", + "code": "33118", + "data": { + "gtfs": { + "stop_id": "3118", + "stop_code": "33118", + "stop_name": "boul. La Fayette et Front", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et Front", + "geography": { + "type": "Point", + "coordinates": [ + -73.4955833459722, + 45.5134200890338 + ] + } + }, + { + "id": "4520", + "code": "34520", + "data": { + "gtfs": { + "stop_id": "4520", + "stop_code": "34520", + "stop_name": "boul. La Fayette et Front", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et Front", + "geography": { + "type": "Point", + "coordinates": [ + -73.4960502390975, + 45.5132838980394 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3720187634634 + }, + "name": "Front et boul. La Fayette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.495816793, + 45.513406559 + ] + }, + "is_frozen": false, + "integer_id": 414, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.505377, + 45.516371 + ] + }, + "id": 415, + "properties": { + "id": "d2f3e0fa-8998-4ca4-96de-f858c0088aad", + "code": "31685", + "data": { + "stops": [ + { + "id": "1685", + "code": "31685", + "data": { + "gtfs": { + "stop_id": "1685", + "stop_code": "31685", + "stop_name": "boul. La Fayette et Franquelin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et Franquelin", + "geography": { + "type": "Point", + "coordinates": [ + -73.5053766430245, + 45.5163707790886 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4221323643923 + }, + "name": "boul. La Fayette et Franquelin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.505376643, + 45.516370779 + ] + }, + "is_frozen": false, + "integer_id": 415, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.506988, + 45.516882 + ] + }, + "id": 416, + "properties": { + "id": "60f00f0f-eca3-4ad1-beab-4b6811c87e8c", + "code": "31686", + "data": { + "stops": [ + { + "id": "1686", + "code": "31686", + "data": { + "gtfs": { + "stop_id": "1686", + "stop_code": "31686", + "stop_name": "boul. La Fayette et civique 967", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et civique 967", + "geography": { + "type": "Point", + "coordinates": [ + -73.5069876581616, + 45.5168818186167 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4307728833526 + }, + "name": "boul. La Fayette et civique 967", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.506987658, + 45.516881819 + ] + }, + "is_frozen": false, + "integer_id": 416, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.51351, + 45.518998 + ] + }, + "id": 417, + "properties": { + "id": "9da92501-0f80-4a3e-b324-83bbfa32d05c", + "code": "31689", + "data": { + "stops": [ + { + "id": "1689", + "code": "31689", + "data": { + "gtfs": { + "stop_id": "1689", + "stop_code": "31689", + "stop_name": "boul. La Fayette et Saint-Laurent ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et Saint-Laurent ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.5135097795783, + 45.5189979421669 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.466554165281 + }, + "name": "boul. La Fayette et Saint-Laurent ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.51350978, + 45.518997942 + ] + }, + "is_frozen": false, + "integer_id": 417, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.518153, + 45.534211 + ] + }, + "id": 418, + "properties": { + "id": "72e3e510-0ae4-407e-a30d-82f52f41e278", + "code": "31693", + "data": { + "stops": [ + { + "id": "1693", + "code": "31693", + "data": { + "gtfs": { + "stop_id": "1693", + "stop_code": "31693", + "stop_name": "du Bord-de-l'Eau ouest et de Châteauguay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau ouest et de Châteauguay", + "geography": { + "type": "Point", + "coordinates": [ + -73.5180035023608, + 45.5342450991949 + ] + } + }, + { + "id": "1716", + "code": "31716", + "data": { + "gtfs": { + "stop_id": "1716", + "stop_code": "31716", + "stop_name": "du Bord-de-l'Eau ouest et de Châteauguay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau ouest et de Châteauguay", + "geography": { + "type": "Point", + "coordinates": [ + -73.5183015642948, + 45.5341775639737 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7239131084303 + }, + "name": "du Bord-de-l'Eau ouest et de Châteauguay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.518152533, + 45.534211332 + ] + }, + "is_frozen": false, + "integer_id": 418, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.516404, + 45.536259 + ] + }, + "id": 419, + "properties": { + "id": "28559490-1b1e-4bd4-83e1-408fd6a20c77", + "code": "31694", + "data": { + "stops": [ + { + "id": "1694", + "code": "31694", + "data": { + "gtfs": { + "stop_id": "1694", + "stop_code": "31694", + "stop_name": "du Bord-de-l'Eau ouest et Labonté", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau ouest et Labonté", + "geography": { + "type": "Point", + "coordinates": [ + -73.5162535930785, + 45.536284405125 + ] + } + }, + { + "id": "1715", + "code": "31715", + "data": { + "gtfs": { + "stop_id": "1715", + "stop_code": "31715", + "stop_name": "du Bord-de-l'Eau ouest et Labonté", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau ouest et Labonté", + "geography": { + "type": "Point", + "coordinates": [ + -73.5165534614982, + 45.5362335329289 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.758567934292 + }, + "name": "du Bord-de-l'Eau ouest et Labonté", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.516403527, + 45.536258969 + ] + }, + "is_frozen": false, + "integer_id": 419, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.514438, + 45.538097 + ] + }, + "id": 420, + "properties": { + "id": "dadcd93c-5469-44bf-8e3e-ccac4a5af110", + "code": "31695", + "data": { + "stops": [ + { + "id": "1695", + "code": "31695", + "data": { + "gtfs": { + "stop_id": "1695", + "stop_code": "31695", + "stop_name": "du Bord-de-l'Eau ouest et Saint-Jean", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau ouest et Saint-Jean", + "geography": { + "type": "Point", + "coordinates": [ + -73.5144926600117, + 45.5379574294684 + ] + } + }, + { + "id": "1714", + "code": "31714", + "data": { + "gtfs": { + "stop_id": "1714", + "stop_code": "31714", + "stop_name": "du Bord-de-l'Eau ouest et Saint-Jean", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau ouest et Saint-Jean", + "geography": { + "type": "Point", + "coordinates": [ + -73.5143835360026, + 45.5382368517966 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7896808966156 + }, + "name": "du Bord-de-l'Eau ouest et Saint-Jean", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.514438098, + 45.538097141 + ] + }, + "is_frozen": false, + "integer_id": 420, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.509821, + 45.541538 + ] + }, + "id": 421, + "properties": { + "id": "45ed93e4-f128-470f-b287-4d6ddc400e49", + "code": "31696", + "data": { + "stops": [ + { + "id": "1696", + "code": "31696", + "data": { + "gtfs": { + "stop_id": "1696", + "stop_code": "31696", + "stop_name": "du Bord-de-l'Eau ouest et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau ouest et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.5098064263642, + 45.5414223012068 + ] + } + }, + { + "id": "1713", + "code": "31713", + "data": { + "gtfs": { + "stop_id": "1713", + "stop_code": "31713", + "stop_name": "du Bord-de-l'Eau est et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau est et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.5098362108045, + 45.5416539175731 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8479309409876 + }, + "name": "du Bord-de-l'Eau ouest et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.509821319, + 45.541538109 + ] + }, + "is_frozen": false, + "integer_id": 421, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.507834, + 45.543524 + ] + }, + "id": 422, + "properties": { + "id": "d9324afd-9cb7-46ba-ad04-bb8387256785", + "code": "31697", + "data": { + "stops": [ + { + "id": "1697", + "code": "31697", + "data": { + "gtfs": { + "stop_id": "1697", + "stop_code": "31697", + "stop_name": "du Bord-de-l'Eau est et Saint-Étienne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau est et Saint-Étienne", + "geography": { + "type": "Point", + "coordinates": [ + -73.5077534727596, + 45.5435325762595 + ] + } + }, + { + "id": "1712", + "code": "31712", + "data": { + "gtfs": { + "stop_id": "1712", + "stop_code": "31712", + "stop_name": "du Bord-de-l'Eau est et Saint-Étienne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau est et Saint-Étienne", + "geography": { + "type": "Point", + "coordinates": [ + -73.5079138430781, + 45.5435160037691 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8815585937683 + }, + "name": "du Bord-de-l'Eau est et Saint-Étienne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507833658, + 45.54352429 + ] + }, + "is_frozen": false, + "integer_id": 422, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.505526, + 45.545998 + ] + }, + "id": 423, + "properties": { + "id": "72c849ab-069a-4dc5-92fe-9ecc63ba074d", + "code": "31698", + "data": { + "stops": [ + { + "id": "1698", + "code": "31698", + "data": { + "gtfs": { + "stop_id": "1698", + "stop_code": "31698", + "stop_name": "du Bord-de-l'Eau est et Pratt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau est et Pratt", + "geography": { + "type": "Point", + "coordinates": [ + -73.5055887250841, + 45.5458396007531 + ] + } + }, + { + "id": "3795", + "code": "33795", + "data": { + "gtfs": { + "stop_id": "3795", + "stop_code": "33795", + "stop_name": "du Bord-de-l'Eau est et Pratt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau est et Pratt", + "geography": { + "type": "Point", + "coordinates": [ + -73.5054627280132, + 45.546155731913 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9234397736446 + }, + "name": "du Bord-de-l'Eau est et Pratt", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.505525727, + 45.545997666 + ] + }, + "is_frozen": false, + "integer_id": 423, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.503839, + 45.547726 + ] + }, + "id": 424, + "properties": { + "id": "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", + "code": "31699", + "data": { + "stops": [ + { + "id": "1699", + "code": "31699", + "data": { + "gtfs": { + "stop_id": "1699", + "stop_code": "31699", + "stop_name": "du Bord-de-l'Eau est et d'Auvergne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau est et d'Auvergne", + "geography": { + "type": "Point", + "coordinates": [ + -73.5038472019842, + 45.5476270297483 + ] + } + }, + { + "id": "3794", + "code": "33794", + "data": { + "gtfs": { + "stop_id": "3794", + "stop_code": "33794", + "stop_name": "du Bord-de-l'Eau est et d'Auvergne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau est et d'Auvergne", + "geography": { + "type": "Point", + "coordinates": [ + -73.5038317808972, + 45.5478258319242 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9527158463203 + }, + "name": "du Bord-de-l'Eau est et d'Auvergne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.503839491, + 45.547726431 + ] + }, + "is_frozen": false, + "integer_id": 424, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456929, + 45.521202 + ] + }, + "id": 425, + "properties": { + "id": "98268bc3-9f24-452e-8107-226a930051bc", + "code": "31705", + "data": { + "stops": [ + { + "id": "1705", + "code": "31705", + "data": { + "gtfs": { + "stop_id": "1705", + "stop_code": "31705", + "stop_name": "boul. Des Ormeaux et CENTRE COMMERCIAL PLACE DESORMEAUX", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Des Ormeaux et CENTRE COMMERCIAL PLACE DESORMEAUX", + "geography": { + "type": "Point", + "coordinates": [ + -73.4567035187172, + 45.5209611862685 + ] + } + }, + { + "id": "3351", + "code": "33351", + "data": { + "gtfs": { + "stop_id": "3351", + "stop_code": "33351", + "stop_name": "boul. Des Ormeaux et CENTRE COMMERCIAL PLACE DESORMEAUX", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Des Ormeaux et CENTRE COMMERCIAL PLACE DESORMEAUX", + "geography": { + "type": "Point", + "coordinates": [ + -73.4571551749252, + 45.5214427710464 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5038262164251 + }, + "name": "boul. Des Ormeaux et CENTRE COMMERCIAL PLACE DESORMEAUX", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456929347, + 45.521201979 + ] + }, + "is_frozen": false, + "integer_id": 425, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456553, + 45.523249 + ] + }, + "id": 426, + "properties": { + "id": "b9c0c47c-b605-460e-9360-3718e001061b", + "code": "31706", + "data": { + "stops": [ + { + "id": "1706", + "code": "31706", + "data": { + "gtfs": { + "stop_id": "1706", + "stop_code": "31706", + "stop_name": "boul. Des Ormeaux et Toulouse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Des Ormeaux et Toulouse", + "geography": { + "type": "Point", + "coordinates": [ + -73.4564551112154, + 45.523065326361 + ] + } + }, + { + "id": "2499", + "code": "32499", + "data": { + "gtfs": { + "stop_id": "2499", + "stop_code": "32499", + "stop_name": "boul. Des Ormeaux et Toulouse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Des Ormeaux et Toulouse", + "geography": { + "type": "Point", + "coordinates": [ + -73.4566511519101, + 45.5234324968812 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5384453882159 + }, + "name": "boul. Des Ormeaux et Toulouse", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456553132, + 45.523248912 + ] + }, + "is_frozen": false, + "integer_id": 426, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455945, + 45.524396 + ] + }, + "id": 427, + "properties": { + "id": "c33924bc-c890-4a49-b330-6134b056dd6d", + "code": "31707", + "data": { + "stops": [ + { + "id": "1707", + "code": "31707", + "data": { + "gtfs": { + "stop_id": "1707", + "stop_code": "31707", + "stop_name": "boul. Des Ormeaux et Mousseau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Des Ormeaux et Mousseau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4558533227691, + 45.5242079098845 + ] + } + }, + { + "id": "2498", + "code": "32498", + "data": { + "gtfs": { + "stop_id": "2498", + "stop_code": "32498", + "stop_name": "boul. Des Ormeaux et Mousseau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Des Ormeaux et Mousseau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4560366050562, + 45.524583998364 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5578466023155 + }, + "name": "boul. Des Ormeaux et Mousseau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455944964, + 45.524395954 + ] + }, + "is_frozen": false, + "integer_id": 427, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455821, + 45.526609 + ] + }, + "id": 428, + "properties": { + "id": "290dd81a-faeb-49a8-be84-7d76ab6dd7ef", + "code": "31708", + "data": { + "stops": [ + { + "id": "1708", + "code": "31708", + "data": { + "gtfs": { + "stop_id": "1708", + "stop_code": "31708", + "stop_name": "boul. Des Ormeaux et Mazenod", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Des Ormeaux et Mazenod", + "geography": { + "type": "Point", + "coordinates": [ + -73.4555945817752, + 45.5264843513458 + ] + } + }, + { + "id": "2497", + "code": "32497", + "data": { + "gtfs": { + "stop_id": "2497", + "stop_code": "32497", + "stop_name": "boul. Des Ormeaux et Périgny", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Des Ormeaux et Périgny", + "geography": { + "type": "Point", + "coordinates": [ + -73.4560479713743, + 45.526734320281 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5952873410448 + }, + "name": "boul. Des Ormeaux et Mazenod", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455821277, + 45.526609336 + ] + }, + "is_frozen": false, + "integer_id": 428, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455477, + 45.528764 + ] + }, + "id": 429, + "properties": { + "id": "cdd96034-dead-4f68-a8ed-c24b98b781eb", + "code": "31709", + "data": { + "stops": [ + { + "id": "1709", + "code": "31709", + "data": { + "gtfs": { + "stop_id": "1709", + "stop_code": "31709", + "stop_name": "boul. Des Ormeaux et boul. Roland-Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Des Ormeaux et boul. Roland-Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4554766580033, + 45.5287635116046 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.631730766337 + }, + "name": "boul. Des Ormeaux et boul. Roland-Therrien", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455476658, + 45.528763512 + ] + }, + "is_frozen": false, + "integer_id": 429, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.411369, + 45.491403 + ] + }, + "id": 430, + "properties": { + "id": "78262195-7c3a-4ed5-81d8-a33c906e3099", + "code": "31719", + "data": { + "stops": [ + { + "id": "1719", + "code": "31719", + "data": { + "gtfs": { + "stop_id": "1719", + "stop_code": "31719", + "stop_name": "boul. Gaétan-Boucher et Avon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et Avon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4114543073793, + 45.4915614015617 + ] + } + }, + { + "id": "3829", + "code": "33829", + "data": { + "gtfs": { + "stop_id": "3829", + "stop_code": "33829", + "stop_name": "boul. Gaétan-Boucher et Gabrielle-Roy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et Gabrielle-Roy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4112844583127, + 45.4912446368578 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0002677509843 + }, + "name": "boul. Gaétan-Boucher et Avon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.411369383, + 45.491403019 + ] + }, + "is_frozen": false, + "integer_id": 430, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.413267, + 45.488915 + ] + }, + "id": 431, + "properties": { + "id": "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", + "code": "31720", + "data": { + "stops": [ + { + "id": "1720", + "code": "31720", + "data": { + "gtfs": { + "stop_id": "1720", + "stop_code": "31720", + "stop_name": "boul. Gaétan-Boucher et boul. Davis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et boul. Davis", + "geography": { + "type": "Point", + "coordinates": [ + -73.413179459674, + 45.4891155854748 + ] + } + }, + { + "id": "3619", + "code": "33619", + "data": { + "gtfs": { + "stop_id": "3619", + "stop_code": "33619", + "stop_name": "boul. Gaétan-Boucher et boul. Davis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et boul. Davis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4130867378465, + 45.4887148813504 + ] + } + }, + { + "id": "5436", + "code": "30179", + "data": { + "gtfs": { + "stop_id": "5436", + "stop_code": "30179", + "stop_name": "boul. Davis et boul. Gaétan-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et boul. Gaétan-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4134468181309, + 45.4888637003165 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9582635738404 + }, + "name": "boul. Gaétan-Boucher et boul. Davis", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.413266778, + 45.488915233 + ] + }, + "is_frozen": false, + "integer_id": 431, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.415917, + 45.489907 + ] + }, + "id": 432, + "properties": { + "id": "4b07d309-8f54-43c8-997d-d4abd77f2d1e", + "code": "31721", + "data": { + "stops": [ + { + "id": "1721", + "code": "31721", + "data": { + "gtfs": { + "stop_id": "1721", + "stop_code": "31721", + "stop_name": "boul. Davis et Sirois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et Sirois", + "geography": { + "type": "Point", + "coordinates": [ + -73.4157880661832, + 45.4899902694044 + ] + } + }, + { + "id": "5437", + "code": "30180", + "data": { + "gtfs": { + "stop_id": "5437", + "stop_code": "30180", + "stop_name": "boul. Davis et Sirois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et Sirois", + "geography": { + "type": "Point", + "coordinates": [ + -73.4161473841121, + 45.4898233479096 + ] + } + }, + { + "id": "5722", + "code": "30491", + "data": { + "gtfs": { + "stop_id": "5722", + "stop_code": "30491", + "stop_name": "boul. Davis et Sirois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et Sirois", + "geography": { + "type": "Point", + "coordinates": [ + -73.415687405469, + 45.4899598577735 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.97500484216 + }, + "name": "boul. Davis et Sirois", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.415917395, + 45.489906809 + ] + }, + "is_frozen": false, + "integer_id": 432, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.4254, + 45.494319 + ] + }, + "id": 433, + "properties": { + "id": "28985ee5-9fc5-416a-81f8-ff25dba2b6da", + "code": "31723", + "data": { + "stops": [ + { + "id": "1723", + "code": "31723", + "data": { + "gtfs": { + "stop_id": "1723", + "stop_code": "31723", + "stop_name": "boul. Davis et Coderre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et Coderre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4252260749498, + 45.4943797723804 + ] + } + }, + { + "id": "1745", + "code": "31745", + "data": { + "gtfs": { + "stop_id": "1745", + "stop_code": "31745", + "stop_name": "boul. Davis et Coderre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et Coderre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4255736049156, + 45.4942587983967 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0495134606166 + }, + "name": "boul. Davis et Coderre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.42539984, + 45.494319285 + ] + }, + "is_frozen": false, + "integer_id": 433, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.430792, + 45.496119 + ] + }, + "id": 434, + "properties": { + "id": "d9bf2534-8f61-4d16-adab-8e4d84e855be", + "code": "31725", + "data": { + "stops": [ + { + "id": "1725", + "code": "31725", + "data": { + "gtfs": { + "stop_id": "1725", + "stop_code": "31725", + "stop_name": "boul. Davis et Labrosse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et Labrosse", + "geography": { + "type": "Point", + "coordinates": [ + -73.4303450182016, + 45.4962595338069 + ] + } + }, + { + "id": "2925", + "code": "32925", + "data": { + "gtfs": { + "stop_id": "2925", + "stop_code": "32925", + "stop_name": "Labrosse et boul. Davis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Labrosse et boul. Davis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4306269063114, + 45.4959648021296 + ] + } + }, + { + "id": "3796", + "code": "33796", + "data": { + "gtfs": { + "stop_id": "3796", + "stop_code": "33796", + "stop_name": "boul. Davis et Labrosse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et Labrosse", + "geography": { + "type": "Point", + "coordinates": [ + -73.4308242961754, + 45.4961291991821 + ] + } + }, + { + "id": "5564", + "code": "30312", + "data": { + "gtfs": { + "stop_id": "5564", + "stop_code": "30312", + "stop_name": "boul. Davis et civique 5165", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et civique 5165", + "geography": { + "type": "Point", + "coordinates": [ + -73.4312388266402, + 45.496273461414 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0799104653543 + }, + "name": "boul. Davis et Labrosse", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.430791922, + 45.496119132 + ] + }, + "is_frozen": false, + "integer_id": 434, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.432266, + 45.496889 + ] + }, + "id": 435, + "properties": { + "id": "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", + "code": "31726", + "data": { + "stops": [ + { + "id": "1726", + "code": "31726", + "data": { + "gtfs": { + "stop_id": "1726", + "stop_code": "31726", + "stop_name": "boul. Davis et de Port-Royal", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et de Port-Royal", + "geography": { + "type": "Point", + "coordinates": [ + -73.4320257299016, + 45.4968738917096 + ] + } + }, + { + "id": "1742", + "code": "31742", + "data": { + "gtfs": { + "stop_id": "1742", + "stop_code": "31742", + "stop_name": "boul. Davis et de Port-Royal", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et de Port-Royal", + "geography": { + "type": "Point", + "coordinates": [ + -73.4325063139158, + 45.4967203276438 + ] + } + }, + { + "id": "2882", + "code": "32882", + "data": { + "gtfs": { + "stop_id": "2882", + "stop_code": "32882", + "stop_name": "de Port-Royal et boul. Davis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Port-Royal et boul. Davis", + "geography": { + "type": "Point", + "coordinates": [ + -73.432239827382, + 45.4970584869297 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0929202587562 + }, + "name": "boul. Davis et de Port-Royal", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.432266022, + 45.496889407 + ] + }, + "is_frozen": false, + "integer_id": 435, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.434372, + 45.497535 + ] + }, + "id": 436, + "properties": { + "id": "4a180761-ffc5-4d97-873b-916ca1656760", + "code": "31727", + "data": { + "stops": [ + { + "id": "1727", + "code": "31727", + "data": { + "gtfs": { + "stop_id": "1727", + "stop_code": "31727", + "stop_name": "boul. Davis et Loiselle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et Loiselle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4341628691599, + 45.497604017051 + ] + } + }, + { + "id": "1741", + "code": "31741", + "data": { + "gtfs": { + "stop_id": "1741", + "stop_code": "31741", + "stop_name": "boul. Davis et Loiselle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et Loiselle", + "geography": { + "type": "Point", + "coordinates": [ + -73.434580213942, + 45.4974649969836 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1038162771362 + }, + "name": "boul. Davis et Loiselle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.434371542, + 45.497534507 + ] + }, + "is_frozen": false, + "integer_id": 436, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439232, + 45.499919 + ] + }, + "id": 437, + "properties": { + "id": "565e8198-26d9-4715-bc5d-75974e6721d9", + "code": "31729", + "data": { + "stops": [ + { + "id": "1729", + "code": "31729", + "data": { + "gtfs": { + "stop_id": "1729", + "stop_code": "31729", + "stop_name": "boul. Gareau et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4392317251961, + 45.499919424376 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1441017727028 + }, + "name": "boul. Gareau et Passage piétonnier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439231725, + 45.499919424 + ] + }, + "is_frozen": false, + "integer_id": 437, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437896, + 45.501278 + ] + }, + "id": 438, + "properties": { + "id": "9b336d4e-db84-472b-aee3-9690d5d224b6", + "code": "31730", + "data": { + "stops": [ + { + "id": "1730", + "code": "31730", + "data": { + "gtfs": { + "stop_id": "1730", + "stop_code": "31730", + "stop_name": "boul. Gareau et Perras", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et Perras", + "geography": { + "type": "Point", + "coordinates": [ + -73.4378933317318, + 45.5010661794917 + ] + } + }, + { + "id": "3587", + "code": "33587", + "data": { + "gtfs": { + "stop_id": "3587", + "stop_code": "33587", + "stop_name": "boul. Gareau et Perras", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et Perras", + "geography": { + "type": "Point", + "coordinates": [ + -73.4378988312374, + 45.5014889342693 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1670453194441 + }, + "name": "boul. Gareau et Perras", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437896081, + 45.501277557 + ] + }, + "is_frozen": false, + "integer_id": 438, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441478, + 45.503886 + ] + }, + "id": 439, + "properties": { + "id": "1a2084b5-bc8c-4697-804e-35bea928cc06", + "code": "31732", + "data": { + "stops": [ + { + "id": "1732", + "code": "31732", + "data": { + "gtfs": { + "stop_id": "1732", + "stop_code": "31732", + "stop_name": "av. Thibault et boul. Losch", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Thibault et boul. Losch", + "geography": { + "type": "Point", + "coordinates": [ + -73.441526654315, + 45.5039822651501 + ] + } + }, + { + "id": "1736", + "code": "31736", + "data": { + "gtfs": { + "stop_id": "1736", + "stop_code": "31736", + "stop_name": "av. Thibault et boul. Losch", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Thibault et boul. Losch", + "geography": { + "type": "Point", + "coordinates": [ + -73.4414285976589, + 45.50378989779 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2111168831461 + }, + "name": "av. Thibault et boul. Losch", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441477626, + 45.503886081 + ] + }, + "is_frozen": false, + "integer_id": 439, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443673, + 45.504821 + ] + }, + "id": 440, + "properties": { + "id": "261db898-2ef3-4105-a628-5330af439dce", + "code": "31733", + "data": { + "stops": [ + { + "id": "1733", + "code": "31733", + "data": { + "gtfs": { + "stop_id": "1733", + "stop_code": "31733", + "stop_name": "av. Thibault et Harvey", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Thibault et Harvey", + "geography": { + "type": "Point", + "coordinates": [ + -73.4435685594293, + 45.5047118282718 + ] + } + }, + { + "id": "1735", + "code": "31735", + "data": { + "gtfs": { + "stop_id": "1735", + "stop_code": "31735", + "stop_name": "Harvey et av. Thibault", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Harvey et av. Thibault", + "geography": { + "type": "Point", + "coordinates": [ + -73.4437764619404, + 45.5049293786895 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.226907303029 + }, + "name": "av. Thibault et Harvey", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443672511, + 45.504820603 + ] + }, + "is_frozen": false, + "integer_id": 440, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439335, + 45.499031 + ] + }, + "id": 441, + "properties": { + "id": "45eb186b-1efe-43c4-8e82-92fe5a15a753", + "code": "31739", + "data": { + "stops": [ + { + "id": "1739", + "code": "31739", + "data": { + "gtfs": { + "stop_id": "1739", + "stop_code": "31739", + "stop_name": "boul. Davis et boul. Gareau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et boul. Gareau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4393347730323, + 45.4990314190026 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1291011954135 + }, + "name": "boul. Davis et boul. Gareau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439334773, + 45.499031419 + ] + }, + "is_frozen": false, + "integer_id": 441, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.436982, + 45.498362 + ] + }, + "id": 442, + "properties": { + "id": "63ff9173-3e59-4bee-9a21-57d199dc88ec", + "code": "31740", + "data": { + "stops": [ + { + "id": "1740", + "code": "31740", + "data": { + "gtfs": { + "stop_id": "1740", + "stop_code": "31740", + "stop_name": "boul. Davis et Paul-Provost", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et Paul-Provost", + "geography": { + "type": "Point", + "coordinates": [ + -73.4371474651095, + 45.4982445873707 + ] + } + }, + { + "id": "3797", + "code": "33797", + "data": { + "gtfs": { + "stop_id": "3797", + "stop_code": "33797", + "stop_name": "boul. Davis et Paul-Provost", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et Paul-Provost", + "geography": { + "type": "Point", + "coordinates": [ + -73.4368174755833, + 45.4984798638468 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1177973517944 + }, + "name": "boul. Davis et Paul-Provost", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.43698247, + 45.498362226 + ] + }, + "is_frozen": false, + "integer_id": 442, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.423904, + 45.493066 + ] + }, + "id": 443, + "properties": { + "id": "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", + "code": "31746", + "data": { + "stops": [ + { + "id": "1746", + "code": "31746", + "data": { + "gtfs": { + "stop_id": "1746", + "stop_code": "31746", + "stop_name": "boul. Davis et Rocheleau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et Rocheleau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4240840269613, + 45.4929971791636 + ] + } + }, + { + "id": "4270", + "code": "34270", + "data": { + "gtfs": { + "stop_id": "4270", + "stop_code": "34270", + "stop_name": "boul. Davis et Rocheleau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et Rocheleau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4237235229839, + 45.4931342957897 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0283444164285 + }, + "name": "boul. Davis et Rocheleau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.423903775, + 45.493065737 + ] + }, + "is_frozen": false, + "integer_id": 443, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.416949, + 45.497976 + ] + }, + "id": 444, + "properties": { + "id": "fc327306-9695-49c5-b3a4-e03dc25e8f2e", + "code": "31747", + "data": { + "stops": [ + { + "id": "1747", + "code": "31747", + "data": { + "gtfs": { + "stop_id": "1747", + "stop_code": "31747", + "stop_name": "Prince-Charles et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Prince-Charles et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4167508982064, + 45.4980428824484 + ] + } + }, + { + "id": "2584", + "code": "32584", + "data": { + "gtfs": { + "stop_id": "2584", + "stop_code": "32584", + "stop_name": "boul. Cousineau et Prince-Charles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Prince-Charles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4169387805121, + 45.4981842416081 + ] + } + }, + { + "id": "2851", + "code": "32851", + "data": { + "gtfs": { + "stop_id": "2851", + "stop_code": "32851", + "stop_name": "Prince-Charles et Adélaïde", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Prince-Charles et Adélaïde", + "geography": { + "type": "Point", + "coordinates": [ + -73.4171476491515, + 45.497768412582 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1112790218939 + }, + "name": "Prince-Charles et boul. Cousineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.416949274, + 45.497976327 + ] + }, + "is_frozen": false, + "integer_id": 444, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492443, + 45.561384 + ] + }, + "id": 445, + "properties": { + "id": "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", + "code": "31748", + "data": { + "stops": [ + { + "id": "1748", + "code": "31748", + "data": { + "gtfs": { + "stop_id": "1748", + "stop_code": "31748", + "stop_name": "boul. Marie-Victorin et Charbonneau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Charbonneau", + "geography": { + "type": "Point", + "coordinates": [ + -73.492440031485, + 45.5611627134563 + ] + } + }, + { + "id": "1800", + "code": "31800", + "data": { + "gtfs": { + "stop_id": "1800", + "stop_code": "31800", + "stop_name": "boul. Marie-Victorin et Charbonneau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Charbonneau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4924467664912, + 45.5616051234862 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1840947476031 + }, + "name": "boul. Marie-Victorin et Charbonneau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492443399, + 45.561383918 + ] + }, + "is_frozen": false, + "integer_id": 445, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.488573, + 45.560031 + ] + }, + "id": 446, + "properties": { + "id": "acd343da-a23f-40aa-9f8e-9e9ed5b60bd1", + "code": "31749", + "data": { + "stops": [ + { + "id": "1749", + "code": "31749", + "data": { + "gtfs": { + "stop_id": "1749", + "stop_code": "31749", + "stop_name": "Lalande et Lapointe", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lalande et Lapointe", + "geography": { + "type": "Point", + "coordinates": [ + -73.4885732203633, + 45.5600309472402 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1611658978031 + }, + "name": "Lalande et Lapointe", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48857322, + 45.560030947 + ] + }, + "is_frozen": false, + "integer_id": 446, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.485654, + 45.562318 + ] + }, + "id": 447, + "properties": { + "id": "8541057e-6661-45be-93ff-9ed50114b9a1", + "code": "31750", + "data": { + "stops": [ + { + "id": "1750", + "code": "31750", + "data": { + "gtfs": { + "stop_id": "1750", + "stop_code": "31750", + "stop_name": "Lalande et Passage à piétons", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lalande et Passage à piétons", + "geography": { + "type": "Point", + "coordinates": [ + -73.4856380081898, + 45.5622215124569 + ] + } + }, + { + "id": "1799", + "code": "31799", + "data": { + "gtfs": { + "stop_id": "1799", + "stop_code": "31799", + "stop_name": "Lalande et Passage à piétons", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lalande et Passage à piétons", + "geography": { + "type": "Point", + "coordinates": [ + -73.4856700213524, + 45.5624140241883 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1999216921266 + }, + "name": "Lalande et Passage à piétons", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.485654015, + 45.562317768 + ] + }, + "is_frozen": false, + "integer_id": 447, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.485454, + 45.56504 + ] + }, + "id": 448, + "properties": { + "id": "48afa0b3-dc93-4216-9cf1-35b088276d02", + "code": "31751", + "data": { + "stops": [ + { + "id": "1751", + "code": "31751", + "data": { + "gtfs": { + "stop_id": "1751", + "stop_code": "31751", + "stop_name": "Lalande et Kirouac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lalande et Kirouac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4853388317075, + 45.5649770065166 + ] + } + }, + { + "id": "1798", + "code": "31798", + "data": { + "gtfs": { + "stop_id": "1798", + "stop_code": "31798", + "stop_name": "Kirouac et Lalande", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Kirouac et Lalande", + "geography": { + "type": "Point", + "coordinates": [ + -73.4855701310126, + 45.5651023611387 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2460573291334 + }, + "name": "Lalande et Kirouac", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.485454481, + 45.565039684 + ] + }, + "is_frozen": false, + "integer_id": 448, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.484419, + 45.565949 + ] + }, + "id": 449, + "properties": { + "id": "2c3ad537-4ff9-4b7f-9c7d-0b21ee34234d", + "code": "31752", + "data": { + "stops": [ + { + "id": "1752", + "code": "31752", + "data": { + "gtfs": { + "stop_id": "1752", + "stop_code": "31752", + "stop_name": "Kirouac et La Vérendrye", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Kirouac et La Vérendrye", + "geography": { + "type": "Point", + "coordinates": [ + -73.4845475124435, + 45.5657351241402 + ] + } + }, + { + "id": "1797", + "code": "31797", + "data": { + "gtfs": { + "stop_id": "1797", + "stop_code": "31797", + "stop_name": "Kirouac et La Vérendrye", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Kirouac et La Vérendrye", + "geography": { + "type": "Point", + "coordinates": [ + -73.4842910611095, + 45.5661626052551 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2614691416753 + }, + "name": "Kirouac et La Vérendrye", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.484419287, + 45.565948865 + ] + }, + "is_frozen": false, + "integer_id": 449, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482875, + 45.567197 + ] + }, + "id": 450, + "properties": { + "id": "056bf57a-8baa-407d-9c70-a2dcb2e36aea", + "code": "31753", + "data": { + "stops": [ + { + "id": "1753", + "code": "31753", + "data": { + "gtfs": { + "stop_id": "1753", + "stop_code": "31753", + "stop_name": "Kirouac et boul. Jean-Paul-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Kirouac et boul. Jean-Paul-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4827886843322, + 45.567103363009 + ] + } + }, + { + "id": "5469", + "code": "30216", + "data": { + "gtfs": { + "stop_id": "5469", + "stop_code": "30216", + "stop_name": "boul. Jean-Paul-Vincent et Kirouac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jean-Paul-Vincent et Kirouac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4829613841596, + 45.5672901105187 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2826234143645 + }, + "name": "Kirouac et boul. Jean-Paul-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482875034, + 45.567196737 + ] + }, + "is_frozen": false, + "integer_id": 450, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479638, + 45.564725 + ] + }, + "id": 451, + "properties": { + "id": "08472942-a2a0-45ef-be22-2dc8587875b6", + "code": "31754", + "data": { + "stops": [ + { + "id": "1754", + "code": "31754", + "data": { + "gtfs": { + "stop_id": "1754", + "stop_code": "31754", + "stop_name": "boul. Jean-Paul-Vincent et Adoncour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jean-Paul-Vincent et Adoncour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4796382585905, + 45.5647248155413 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2407200750183 + }, + "name": "boul. Jean-Paul-Vincent et Adoncour", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479638259, + 45.564724816 + ] + }, + "is_frozen": false, + "integer_id": 451, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.476551, + 45.562383 + ] + }, + "id": 452, + "properties": { + "id": "768e4b50-abe9-456e-9460-90d8cbf65940", + "code": "31755", + "data": { + "stops": [ + { + "id": "1755", + "code": "31755", + "data": { + "gtfs": { + "stop_id": "1755", + "stop_code": "31755", + "stop_name": "boul. Jean-Paul-Vincent et de la Province", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jean-Paul-Vincent et de la Province", + "geography": { + "type": "Point", + "coordinates": [ + -73.476551037026, + 45.5623827795216 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2010235483195 + }, + "name": "boul. Jean-Paul-Vincent et de la Province", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.476551037, + 45.56238278 + ] + }, + "is_frozen": false, + "integer_id": 452, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474278, + 45.560876 + ] + }, + "id": 453, + "properties": { + "id": "b15716e4-5653-476c-ba57-960f89ea42d5", + "code": "31756", + "data": { + "stops": [ + { + "id": "1756", + "code": "31756", + "data": { + "gtfs": { + "stop_id": "1756", + "stop_code": "31756", + "stop_name": "boul. Jean-Paul-Vincent et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jean-Paul-Vincent et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4744903499909, + 45.5608702833913 + ] + } + }, + { + "id": "1793", + "code": "31793", + "data": { + "gtfs": { + "stop_id": "1793", + "stop_code": "31793", + "stop_name": "boul. Jean-Paul-Vincent et civique 843", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jean-Paul-Vincent et civique 843", + "geography": { + "type": "Point", + "coordinates": [ + -73.4740648888662, + 45.5608826961815 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1754951547982 + }, + "name": "boul. Jean-Paul-Vincent et Passage piétonnier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474277619, + 45.56087649 + ] + }, + "is_frozen": false, + "integer_id": 453, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.471332, + 45.558425 + ] + }, + "id": 454, + "properties": { + "id": "2332d398-d991-4d3f-9d67-38ab4930ac25", + "code": "31757", + "data": { + "stops": [ + { + "id": "1757", + "code": "31757", + "data": { + "gtfs": { + "stop_id": "1757", + "stop_code": "31757", + "stop_name": "boul. Jean-Paul-Vincent et boul. Fernand-Lafontaine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jean-Paul-Vincent et boul. Fernand-Lafontaine", + "geography": { + "type": "Point", + "coordinates": [ + -73.4713322127706, + 45.5584250407656 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1339526714045 + }, + "name": "boul. Jean-Paul-Vincent et boul. Fernand-Lafontaine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.471332213, + 45.558425041 + ] + }, + "is_frozen": false, + "integer_id": 454, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464044, + 45.554141 + ] + }, + "id": 455, + "properties": { + "id": "1e6b54ae-f11e-4726-a36f-9c4411688776", + "code": "31759", + "data": { + "stops": [ + { + "id": "1759", + "code": "31759", + "data": { + "gtfs": { + "stop_id": "1759", + "stop_code": "31759", + "stop_name": "du Caribou et boul. Jean-Paul-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Caribou et boul. Jean-Paul-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4639561190623, + 45.5540366924603 + ] + } + }, + { + "id": "1790", + "code": "31790", + "data": { + "gtfs": { + "stop_id": "1790", + "stop_code": "31790", + "stop_name": "du Caribou et boul. Jean-Paul-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Caribou et boul. Jean-Paul-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4641310487318, + 45.5542458007742 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0613719833108 + }, + "name": "du Caribou et boul. Jean-Paul-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464043584, + 45.554141247 + ] + }, + "is_frozen": false, + "integer_id": 455, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460059, + 45.553274 + ] + }, + "id": 456, + "properties": { + "id": "2e8375c2-0f15-448a-8203-e8a29699849e", + "code": "31761", + "data": { + "stops": [ + { + "id": "1761", + "code": "31761", + "data": { + "gtfs": { + "stop_id": "1761", + "stop_code": "31761", + "stop_name": "Bédard et Giroux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bédard et Giroux", + "geography": { + "type": "Point", + "coordinates": [ + -73.4602224632009, + 45.5533701954679 + ] + } + }, + { + "id": "1789", + "code": "31789", + "data": { + "gtfs": { + "stop_id": "1789", + "stop_code": "31789", + "stop_name": "Bédard et Germain", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bédard et Germain", + "geography": { + "type": "Point", + "coordinates": [ + -73.4598947856051, + 45.5531771688544 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0466747507691 + }, + "name": "Bédard et Giroux", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.460058624, + 45.553273682 + ] + }, + "is_frozen": false, + "integer_id": 456, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458364, + 45.551784 + ] + }, + "id": 457, + "properties": { + "id": "d9f7a5bd-7489-48e7-93cf-4368a09e2676", + "code": "31762", + "data": { + "stops": [ + { + "id": "1762", + "code": "31762", + "data": { + "gtfs": { + "stop_id": "1762", + "stop_code": "31762", + "stop_name": "Bédard et Guérin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bédard et Guérin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4583353206463, + 45.5516777552005 + ] + } + }, + { + "id": "1788", + "code": "31788", + "data": { + "gtfs": { + "stop_id": "1788", + "stop_code": "31788", + "stop_name": "Bédard et Germain", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bédard et Germain", + "geography": { + "type": "Point", + "coordinates": [ + -73.4583921972827, + 45.5518902927374 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0214403417972 + }, + "name": "Bédard et Guérin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.458363759, + 45.551784024 + ] + }, + "is_frozen": false, + "integer_id": 457, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456261, + 45.550188 + ] + }, + "id": 458, + "properties": { + "id": "714fccbf-a3ad-45ea-8e3f-be54db61f028", + "code": "31763", + "data": { + "stops": [ + { + "id": "1763", + "code": "31763", + "data": { + "gtfs": { + "stop_id": "1763", + "stop_code": "31763", + "stop_name": "Bédard et Grou", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bédard et Grou", + "geography": { + "type": "Point", + "coordinates": [ + -73.4564155130476, + 45.5502117261176 + ] + } + }, + { + "id": "1787", + "code": "31787", + "data": { + "gtfs": { + "stop_id": "1787", + "stop_code": "31787", + "stop_name": "Bédard et Lincourt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bédard et Lincourt", + "geography": { + "type": "Point", + "coordinates": [ + -73.4561063770439, + 45.5501651969344 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9944141447667 + }, + "name": "Bédard et Grou", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456260945, + 45.550188462 + ] + }, + "is_frozen": false, + "integer_id": 458, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454239, + 45.548659 + ] + }, + "id": 459, + "properties": { + "id": "bb4626e2-c410-497b-977c-2cc1b65d7b57", + "code": "31764", + "data": { + "stops": [ + { + "id": "1764", + "code": "31764", + "data": { + "gtfs": { + "stop_id": "1764", + "stop_code": "31764", + "stop_name": "Bédard et Guérin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bédard et Guérin", + "geography": { + "type": "Point", + "coordinates": [ + -73.454432603977, + 45.5487113069033 + ] + } + }, + { + "id": "1786", + "code": "31786", + "data": { + "gtfs": { + "stop_id": "1786", + "stop_code": "31786", + "stop_name": "Bédard et Guérin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bédard et Guérin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4540444788889, + 45.5486076703055 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9685179882691 + }, + "name": "Bédard et Guérin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454238541, + 45.548659489 + ] + }, + "is_frozen": false, + "integer_id": 459, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452448, + 45.547376 + ] + }, + "id": 460, + "properties": { + "id": "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", + "code": "31765", + "data": { + "stops": [ + { + "id": "1765", + "code": "31765", + "data": { + "gtfs": { + "stop_id": "1765", + "stop_code": "31765", + "stop_name": "Bédard et boul. Jacques-Cartier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bédard et boul. Jacques-Cartier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4524436058172, + 45.547198771838 + ] + } + }, + { + "id": "4211", + "code": "34211", + "data": { + "gtfs": { + "stop_id": "4211", + "stop_code": "34211", + "stop_name": "Bédard et boul. Jacques-Cartier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bédard et boul. Jacques-Cartier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4526570723857, + 45.5475523862802 + ] + } + }, + { + "id": "5441", + "code": "30184", + "data": { + "gtfs": { + "stop_id": "5441", + "stop_code": "30184", + "stop_name": "boul. Jacques-Cartier est et Bédard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et Bédard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4522390940394, + 45.5472877954791 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9467740661402 + }, + "name": "Bédard et boul. Jacques-Cartier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452448083, + 45.547375579 + ] + }, + "is_frozen": false, + "integer_id": 460, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450694, + 45.545899 + ] + }, + "id": 461, + "properties": { + "id": "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", + "code": "31766", + "data": { + "stops": [ + { + "id": "1766", + "code": "31766", + "data": { + "gtfs": { + "stop_id": "1766", + "stop_code": "31766", + "stop_name": "Bédard et ch. Du Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bédard et ch. Du Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4507965701256, + 45.5459548408849 + ] + } + }, + { + "id": "1888", + "code": "31888", + "data": { + "gtfs": { + "stop_id": "1888", + "stop_code": "31888", + "stop_name": "ch. Du Tremblay et Bédard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Bédard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4505991074756, + 45.5457895736212 + ] + } + }, + { + "id": "2575", + "code": "32575", + "data": { + "gtfs": { + "stop_id": "2575", + "stop_code": "32575", + "stop_name": "ch. Du Tremblay et Bédard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Bédard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4505920856342, + 45.5460090523438 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9217742777878 + }, + "name": "Bédard et ch. Du Tremblay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450694328, + 45.545899313 + ] + }, + "is_frozen": false, + "integer_id": 461, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446947, + 45.542139 + ] + }, + "id": 462, + "properties": { + "id": "2b36885d-7487-45f3-88e4-95ced22c8df0", + "code": "31769", + "data": { + "stops": [ + { + "id": "1769", + "code": "31769", + "data": { + "gtfs": { + "stop_id": "1769", + "stop_code": "31769", + "stop_name": "Robin et Buies", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Robin et Buies", + "geography": { + "type": "Point", + "coordinates": [ + -73.446946742356, + 45.5421392703915 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8581087121004 + }, + "name": "Robin et Buies", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446946742, + 45.54213927 + ] + }, + "is_frozen": false, + "integer_id": 462, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445526, + 45.541202 + ] + }, + "id": 463, + "properties": { + "id": "5251f580-cc4c-4e24-adc5-09ece02102d8", + "code": "31770", + "data": { + "stops": [ + { + "id": "1770", + "code": "31770", + "data": { + "gtfs": { + "stop_id": "1770", + "stop_code": "31770", + "stop_name": "Robin et Braille", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Robin et Braille", + "geography": { + "type": "Point", + "coordinates": [ + -73.4456611178286, + 45.5411848389436 + ] + } + }, + { + "id": "5834", + "code": "30603", + "data": { + "gtfs": { + "stop_id": "5834", + "stop_code": "30603", + "stop_name": "Belcourt et Braille", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et Braille", + "geography": { + "type": "Point", + "coordinates": [ + -73.4453911472395, + 45.541150196957 + ] + } + }, + { + "id": "5840", + "code": "30609", + "data": { + "gtfs": { + "stop_id": "5840", + "stop_code": "30609", + "stop_name": "Braille et Robin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Braille et Robin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4454845585327, + 45.5412535995502 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8422389648176 + }, + "name": "Robin et Braille", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445526133, + 45.541201898 + ] + }, + "is_frozen": false, + "integer_id": 463, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452717, + 45.53973 + ] + }, + "id": 464, + "properties": { + "id": "97fd6b08-e74d-4e78-a89d-1a8506473313", + "code": "31776", + "data": { + "stops": [ + { + "id": "1776", + "code": "31776", + "data": { + "gtfs": { + "stop_id": "1776", + "stop_code": "31776", + "stop_name": "Beauharnois et Balleray", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauharnois et Balleray", + "geography": { + "type": "Point", + "coordinates": [ + -73.452663695981, + 45.5396848673784 + ] + } + }, + { + "id": "5829", + "code": "30598", + "data": { + "gtfs": { + "stop_id": "5829", + "stop_code": "30598", + "stop_name": "Beauharnois et Boisbriand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauharnois et Boisbriand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4527705665046, + 45.5397752795664 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8173224875935 + }, + "name": "Beauharnois et Balleray", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452717131, + 45.539730073 + ] + }, + "is_frozen": false, + "integer_id": 464, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452293, + 45.540886 + ] + }, + "id": 465, + "properties": { + "id": "78852b27-6481-4593-91bd-0a0ac5e52bda", + "code": "31777", + "data": { + "stops": [ + { + "id": "1777", + "code": "31777", + "data": { + "gtfs": { + "stop_id": "1777", + "stop_code": "31777", + "stop_name": "Beauharnois et Boullard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauharnois et Boullard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4522781689988, + 45.5407558731154 + ] + } + }, + { + "id": "5828", + "code": "30597", + "data": { + "gtfs": { + "stop_id": "5828", + "stop_code": "30597", + "stop_name": "Beauharnois et Boullard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauharnois et Boullard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4523077392982, + 45.5410154965504 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8368856422939 + }, + "name": "Beauharnois et Boullard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452292954, + 45.540885685 + ] + }, + "is_frozen": false, + "integer_id": 465, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468987, + 45.556882 + ] + }, + "id": 466, + "properties": { + "id": "8ece351b-2186-4cfe-9624-9d1eacc2181d", + "code": "31791", + "data": { + "stops": [ + { + "id": "1791", + "code": "31791", + "data": { + "gtfs": { + "stop_id": "1791", + "stop_code": "31791", + "stop_name": "boul. Jean-Paul-Vincent et ch. du Lac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jean-Paul-Vincent et ch. du Lac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4688066656284, + 45.5569411550466 + ] + } + }, + { + "id": "4676", + "code": "34676", + "data": { + "gtfs": { + "stop_id": "4676", + "stop_code": "34676", + "stop_name": "boul. Jean-Paul-Vincent et ch. du Lac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jean-Paul-Vincent et ch. du Lac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4691678128513, + 45.5568221231004 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1078007907165 + }, + "name": "boul. Jean-Paul-Vincent et ch. du Lac", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468987239, + 45.556881639 + ] + }, + "is_frozen": false, + "integer_id": 466, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.470622, + 45.558269 + ] + }, + "id": 467, + "properties": { + "id": "5a5c6460-b74c-4fc4-8f7e-fb80243c60b0", + "code": "31792", + "data": { + "stops": [ + { + "id": "1792", + "code": "31792", + "data": { + "gtfs": { + "stop_id": "1792", + "stop_code": "31792", + "stop_name": "boul. Jean-Paul-Vincent et boul. Fernand-Lafontaine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jean-Paul-Vincent et boul. Fernand-Lafontaine", + "geography": { + "type": "Point", + "coordinates": [ + -73.4706215596608, + 45.5582689144354 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1313071105213 + }, + "name": "boul. Jean-Paul-Vincent et boul. Fernand-Lafontaine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47062156, + 45.558268914 + ] + }, + "is_frozen": false, + "integer_id": 467, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.48346, + 45.566817 + ] + }, + "id": 468, + "properties": { + "id": "0c748835-952e-4739-8acb-c70076e8b112", + "code": "31796", + "data": { + "stops": [ + { + "id": "1796", + "code": "31796", + "data": { + "gtfs": { + "stop_id": "1796", + "stop_code": "31796", + "stop_name": "Kirouac et boul. Jean-Paul-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Kirouac et boul. Jean-Paul-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4834595867067, + 45.5668165917873 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2761789433641 + }, + "name": "Kirouac et boul. Jean-Paul-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483459587, + 45.566816592 + ] + }, + "is_frozen": false, + "integer_id": 468, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.497907, + 45.551484 + ] + }, + "id": 469, + "properties": { + "id": "f8b461c2-c03e-4da6-aa56-a50e7e1d9db0", + "code": "31801", + "data": { + "stops": [ + { + "id": "1801", + "code": "31801", + "data": { + "gtfs": { + "stop_id": "1801", + "stop_code": "31801", + "stop_name": "Geoffrion et HOTEL HOLIDAY INN", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Geoffrion et HOTEL HOLIDAY INN", + "geography": { + "type": "Point", + "coordinates": [ + -73.4979074333033, + 45.5514837341393 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0163537492805 + }, + "name": "Geoffrion et HOTEL HOLIDAY INN", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.497907433, + 45.551483734 + ] + }, + "is_frozen": false, + "integer_id": 469, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.476728, + 45.497015 + ] + }, + "id": 470, + "properties": { + "id": "b33d27b7-d555-4c52-b225-a20c1767dd3b", + "code": "31803", + "data": { + "stops": [ + { + "id": "1803", + "code": "31803", + "data": { + "gtfs": { + "stop_id": "1803", + "stop_code": "31803", + "stop_name": "Grande Allée et Gustave-Désourdy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Gustave-Désourdy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4769003201014, + 45.4970336886609 + ] + } + }, + { + "id": "1853", + "code": "31853", + "data": { + "gtfs": { + "stop_id": "1853", + "stop_code": "31853", + "stop_name": "Grande Allée et Gustave-Désourdy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Gustave-Désourdy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4765562049087, + 45.4969966763608 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0950446408127 + }, + "name": "Grande Allée et Gustave-Désourdy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.476728263, + 45.497015183 + ] + }, + "is_frozen": false, + "integer_id": 470, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47544, + 45.496168 + ] + }, + "id": 471, + "properties": { + "id": "4969c5f0-e6b6-4445-8d46-f637f2b3b640", + "code": "31804", + "data": { + "stops": [ + { + "id": "1804", + "code": "31804", + "data": { + "gtfs": { + "stop_id": "1804", + "stop_code": "31804", + "stop_name": "Grande Allée et Georges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Georges", + "geography": { + "type": "Point", + "coordinates": [ + -73.4758067746371, + 45.4963146713743 + ] + } + }, + { + "id": "1852", + "code": "31852", + "data": { + "gtfs": { + "stop_id": "1852", + "stop_code": "31852", + "stop_name": "Grande Allée et Georges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Georges", + "geography": { + "type": "Point", + "coordinates": [ + -73.4750735572647, + 45.4960205238603 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.080729031011 + }, + "name": "Grande Allée et Georges", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475440166, + 45.496167598 + ] + }, + "is_frozen": false, + "integer_id": 471, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.473841, + 45.495113 + ] + }, + "id": 472, + "properties": { + "id": "dae79222-5b12-4269-8d31-6271170c1f54", + "code": "31805", + "data": { + "stops": [ + { + "id": "1805", + "code": "31805", + "data": { + "gtfs": { + "stop_id": "1805", + "stop_code": "31805", + "stop_name": "Grande Allée et Godin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Godin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4740002521546, + 45.495124361922 + ] + } + }, + { + "id": "1851", + "code": "31851", + "data": { + "gtfs": { + "stop_id": "1851", + "stop_code": "31851", + "stop_name": "Grande Allée et Godin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Godin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4736819286352, + 45.4951026324731 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0629262821407 + }, + "name": "Grande Allée et Godin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47384109, + 45.495113497 + ] + }, + "is_frozen": false, + "integer_id": 472, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47279, + 45.494414 + ] + }, + "id": 473, + "properties": { + "id": "d8e1fde2-a0b2-4339-9d55-49a5f3be258b", + "code": "31806", + "data": { + "stops": [ + { + "id": "1806", + "code": "31806", + "data": { + "gtfs": { + "stop_id": "1806", + "stop_code": "31806", + "stop_name": "Grande Allée et Holmes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Holmes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4729740336413, + 45.4944436740493 + ] + } + }, + { + "id": "1850", + "code": "31850", + "data": { + "gtfs": { + "stop_id": "1850", + "stop_code": "31850", + "stop_name": "Grande Allée et Holmes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Holmes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4726065117596, + 45.4943843227536 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0511129644817 + }, + "name": "Grande Allée et Holmes", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472790273, + 45.494413998 + ] + }, + "is_frozen": false, + "integer_id": 473, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.470463, + 45.492875 + ] + }, + "id": 474, + "properties": { + "id": "9e73f7cd-aad7-4512-9984-973fdc775485", + "code": "31807", + "data": { + "stops": [ + { + "id": "1807", + "code": "31807", + "data": { + "gtfs": { + "stop_id": "1807", + "stop_code": "31807", + "stop_name": "Grande Allée et Charles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Charles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4706760553943, + 45.4929233715597 + ] + } + }, + { + "id": "1849", + "code": "31849", + "data": { + "gtfs": { + "stop_id": "1849", + "stop_code": "31849", + "stop_name": "Grande Allée et Charles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Charles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4702505079022, + 45.4928263563564 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0251212089574 + }, + "name": "Grande Allée et Charles", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.470463282, + 45.492874864 + ] + }, + "is_frozen": false, + "integer_id": 474, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466177, + 45.490064 + ] + }, + "id": 475, + "properties": { + "id": "3690607e-a520-4b5c-bb6d-5e6ec4c83aec", + "code": "31810", + "data": { + "stops": [ + { + "id": "1810", + "code": "31810", + "data": { + "gtfs": { + "stop_id": "1810", + "stop_code": "31810", + "stop_name": "Grande Allée et Raymond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Raymond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4664373266612, + 45.490131615845 + ] + } + }, + { + "id": "1846", + "code": "31846", + "data": { + "gtfs": { + "stop_id": "1846", + "stop_code": "31846", + "stop_name": "Grande Allée et ch. École Mgr-Parent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et ch. École Mgr-Parent", + "geography": { + "type": "Point", + "coordinates": [ + -73.465916211138, + 45.4899963048126 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9776581805243 + }, + "name": "Grande Allée et Raymond", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466176769, + 45.49006396 + ] + }, + "is_frozen": false, + "integer_id": 475, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462636, + 45.488016 + ] + }, + "id": 476, + "properties": { + "id": "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", + "code": "31812", + "data": { + "stops": [ + { + "id": "1812", + "code": "31812", + "data": { + "gtfs": { + "stop_id": "1812", + "stop_code": "31812", + "stop_name": "Grande Allée et Soucy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Soucy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4630639602322, + 45.4878839591449 + ] + } + }, + { + "id": "1845", + "code": "31845", + "data": { + "gtfs": { + "stop_id": "1845", + "stop_code": "31845", + "stop_name": "Grande Allée et Soucy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Soucy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4625828672334, + 45.4877873454393 + ] + } + }, + { + "id": "3651", + "code": "33651", + "data": { + "gtfs": { + "stop_id": "3651", + "stop_code": "33651", + "stop_name": "Soucy et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Soucy et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4622088787043, + 45.4882448567016 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9430838391008 + }, + "name": "Grande Allée et Soucy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462636419, + 45.488016101 + ] + }, + "is_frozen": false, + "integer_id": 476, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45711, + 45.483907 + ] + }, + "id": 477, + "properties": { + "id": "3fb067af-1fec-457b-80c2-3e3f8b141afb", + "code": "31814", + "data": { + "stops": [ + { + "id": "1814", + "code": "31814", + "data": { + "gtfs": { + "stop_id": "1814", + "stop_code": "31814", + "stop_name": "Grande Allée et Vallières", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Vallières", + "geography": { + "type": "Point", + "coordinates": [ + -73.4571104866884, + 45.4839073628915 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.873726582224 + }, + "name": "Grande Allée et Vallières", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457110487, + 45.483907363 + ] + }, + "is_frozen": false, + "integer_id": 477, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452576, + 45.480794 + ] + }, + "id": 478, + "properties": { + "id": "5f21960f-8919-4407-8a49-57c39947c4fe", + "code": "31815", + "data": { + "stops": [ + { + "id": "1815", + "code": "31815", + "data": { + "gtfs": { + "stop_id": "1815", + "stop_code": "31815", + "stop_name": "boul. Grande Allée et av. Albanie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et av. Albanie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4525764804309, + 45.4807944725167 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8211896571349 + }, + "name": "boul. Grande Allée et av. Albanie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45257648, + 45.480794473 + ] + }, + "is_frozen": false, + "integer_id": 478, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451071, + 45.479796 + ] + }, + "id": 479, + "properties": { + "id": "cc43f372-04e8-4c4c-b711-2e4159e3855d", + "code": "31816", + "data": { + "stops": [ + { + "id": "1816", + "code": "31816", + "data": { + "gtfs": { + "stop_id": "1816", + "stop_code": "31816", + "stop_name": "boul. Grande Allée et Alain", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et Alain", + "geography": { + "type": "Point", + "coordinates": [ + -73.4510705146028, + 45.4797955736156 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8043328454404 + }, + "name": "boul. Grande Allée et Alain", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451070515, + 45.479795574 + ] + }, + "is_frozen": false, + "integer_id": 479, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449765, + 45.478951 + ] + }, + "id": 480, + "properties": { + "id": "9b7055a8-adca-44c6-9935-6026756d4460", + "code": "31817", + "data": { + "stops": [ + { + "id": "1817", + "code": "31817", + "data": { + "gtfs": { + "stop_id": "1817", + "stop_code": "31817", + "stop_name": "boul. Grande Allée et Anthony", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et Anthony", + "geography": { + "type": "Point", + "coordinates": [ + -73.4497648423124, + 45.4789506365527 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7900748949818 + }, + "name": "boul. Grande Allée et Anthony", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449764842, + 45.478950637 + ] + }, + "is_frozen": false, + "integer_id": 480, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.447853, + 45.477641 + ] + }, + "id": 481, + "properties": { + "id": "76ff8292-f41f-4d17-998d-6dd3d2c32288", + "code": "31818", + "data": { + "stops": [ + { + "id": "1818", + "code": "31818", + "data": { + "gtfs": { + "stop_id": "1818", + "stop_code": "31818", + "stop_name": "boul. Grande Allée et Aline", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et Aline", + "geography": { + "type": "Point", + "coordinates": [ + -73.4478528813783, + 45.4776414067562 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7679834517635 + }, + "name": "boul. Grande Allée et Aline", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447852881, + 45.477641407 + ] + }, + "is_frozen": false, + "integer_id": 481, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445187, + 45.476041 + ] + }, + "id": 482, + "properties": { + "id": "9f964071-2f19-4d3c-8325-c12fdde1c69e", + "code": "31819", + "data": { + "stops": [ + { + "id": "1819", + "code": "31819", + "data": { + "gtfs": { + "stop_id": "1819", + "stop_code": "31819", + "stop_name": "boul. Grande Allée et Redmond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et Redmond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4454300406466, + 45.4760198014052 + ] + } + }, + { + "id": "1839", + "code": "31839", + "data": { + "gtfs": { + "stop_id": "1839", + "stop_code": "31839", + "stop_name": "Grande Allée et Redmond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Redmond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4449434407865, + 45.4760623421494 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7409820833406 + }, + "name": "boul. Grande Allée et Redmond", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445186741, + 45.476041072 + ] + }, + "is_frozen": false, + "integer_id": 482, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443535, + 45.474923 + ] + }, + "id": 483, + "properties": { + "id": "e80498a8-505d-4215-ba07-7582f8783d8e", + "code": "31820", + "data": { + "stops": [ + { + "id": "1820", + "code": "31820", + "data": { + "gtfs": { + "stop_id": "1820", + "stop_code": "31820", + "stop_name": "boul. Grande Allée et Orchard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et Orchard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4437719690212, + 45.4748880474638 + ] + } + }, + { + "id": "1838", + "code": "31838", + "data": { + "gtfs": { + "stop_id": "1838", + "stop_code": "31838", + "stop_name": "Grande Allée et Orchard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Orchard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4432972383071, + 45.474958337442 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7221222011221 + }, + "name": "boul. Grande Allée et Orchard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443534604, + 45.474923192 + ] + }, + "is_frozen": false, + "integer_id": 483, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441234, + 45.473153 + ] + }, + "id": 484, + "properties": { + "id": "014d61e3-acfc-41f6-b78a-5c2178c073b1", + "code": "31821", + "data": { + "stops": [ + { + "id": "1821", + "code": "31821", + "data": { + "gtfs": { + "stop_id": "1821", + "stop_code": "31821", + "stop_name": "boul. Grande Allée et boul. Milan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et boul. Milan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4412344965765, + 45.4731532848716 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6922641664861 + }, + "name": "boul. Grande Allée et boul. Milan", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441234497, + 45.473153285 + ] + }, + "is_frozen": false, + "integer_id": 484, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.435409, + 45.469458 + ] + }, + "id": 485, + "properties": { + "id": "14e293a6-352a-4156-8578-66d0b5bdcc1f", + "code": "31823", + "data": { + "stops": [ + { + "id": "1823", + "code": "31823", + "data": { + "gtfs": { + "stop_id": "1823", + "stop_code": "31823", + "stop_name": "boul. Grande Allée et Canon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et Canon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4356519591684, + 45.4694384158526 + ] + } + }, + { + "id": "4443", + "code": "34443", + "data": { + "gtfs": { + "stop_id": "4443", + "stop_code": "34443", + "stop_name": "Grande Allée et Canon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Canon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4351655895996, + 45.4694781273924 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6299388838486 + }, + "name": "boul. Grande Allée et Canon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.435408774, + 45.469458272 + ] + }, + "is_frozen": false, + "integer_id": 485, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.434589, + 45.468733 + ] + }, + "id": 486, + "properties": { + "id": "62558b4d-75af-4b04-8040-a30de5a89658", + "code": "31824", + "data": { + "stops": [ + { + "id": "1824", + "code": "31824", + "data": { + "gtfs": { + "stop_id": "1824", + "stop_code": "31824", + "stop_name": "boul. Grande Allée et av. Baudelaire", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et av. Baudelaire", + "geography": { + "type": "Point", + "coordinates": [ + -73.4345885457135, + 45.4687326969387 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6177017403542 + }, + "name": "boul. Grande Allée et av. Baudelaire", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.434588546, + 45.468732697 + ] + }, + "is_frozen": false, + "integer_id": 486, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.430682, + 45.466031 + ] + }, + "id": 487, + "properties": { + "id": "e31ab3e8-c317-4996-b902-f3d69835ee3a", + "code": "31826", + "data": { + "stops": [ + { + "id": "1826", + "code": "31826", + "data": { + "gtfs": { + "stop_id": "1826", + "stop_code": "31826", + "stop_name": "boul. Grande Allée et boul. Chevrier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et boul. Chevrier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4308095179803, + 45.4662738232837 + ] + } + }, + { + "id": "5287", + "code": "35287", + "data": { + "gtfs": { + "stop_id": "5287", + "stop_code": "35287", + "stop_name": "boul. Chevrier et civique 5501", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Chevrier et civique 5501", + "geography": { + "type": "Point", + "coordinates": [ + -73.4310531872616, + 45.4657883293719 + ] + } + }, + { + "id": "5918", + "code": "30796", + "data": { + "gtfs": { + "stop_id": "5918", + "stop_code": "30796", + "stop_name": "boul. Grande Allée et boul. Chevrier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et boul. Chevrier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4303115732617, + 45.4659056785563 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5721418172958 + }, + "name": "boul. Grande Allée et boul. Chevrier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.43068238, + 45.466031076 + ] + }, + "is_frozen": false, + "integer_id": 487, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.426766, + 45.463582 + ] + }, + "id": 488, + "properties": { + "id": "988183db-88f1-47cb-87bf-b2a03dd4a38d", + "code": "31827", + "data": { + "stops": [ + { + "id": "1827", + "code": "31827", + "data": { + "gtfs": { + "stop_id": "1827", + "stop_code": "31827", + "stop_name": "boul. Grande Allée et Albert-Millichamp", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et Albert-Millichamp", + "geography": { + "type": "Point", + "coordinates": [ + -73.426765912102, + 45.4635815869592 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5308394295599 + }, + "name": "boul. Grande Allée et Albert-Millichamp", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.426765912, + 45.463581587 + ] + }, + "is_frozen": false, + "integer_id": 488, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.424096, + 45.462758 + ] + }, + "id": 489, + "properties": { + "id": "d739fe08-5298-4356-bd9e-c48a7fee16a1", + "code": "31828", + "data": { + "stops": [ + { + "id": "1828", + "code": "31828", + "data": { + "gtfs": { + "stop_id": "1828", + "stop_code": "31828", + "stop_name": "boul. Westley et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Westley et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4238815107359, + 45.4628095571272 + ] + } + }, + { + "id": "2103", + "code": "32103", + "data": { + "gtfs": { + "stop_id": "2103", + "stop_code": "32103", + "stop_name": "boul. Westley et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Westley et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4243108347429, + 45.4627057874246 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5169480732376 + }, + "name": "boul. Westley et Grande Allée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.424096173, + 45.462757672 + ] + }, + "is_frozen": false, + "integer_id": 489, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.421317, + 45.464808 + ] + }, + "id": 490, + "properties": { + "id": "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", + "code": "31829", + "data": { + "stops": [ + { + "id": "1829", + "code": "31829", + "data": { + "gtfs": { + "stop_id": "1829", + "stop_code": "31829", + "stop_name": "boul. Westley et av. Barlow", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Westley et av. Barlow", + "geography": { + "type": "Point", + "coordinates": [ + -73.4213465903456, + 45.464684025491 + ] + } + }, + { + "id": "2100", + "code": "32100", + "data": { + "gtfs": { + "stop_id": "2100", + "stop_code": "32100", + "stop_name": "boul. Westley et av. Barlow", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Westley et av. Barlow", + "geography": { + "type": "Point", + "coordinates": [ + -73.4212873392236, + 45.4649310598408 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5515103854755 + }, + "name": "boul. Westley et av. Barlow", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.421316965, + 45.464807543 + ] + }, + "is_frozen": false, + "integer_id": 490, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.426145, + 45.463512 + ] + }, + "id": 491, + "properties": { + "id": "2f104875-795a-4778-a419-276272abfb07", + "code": "31832", + "data": { + "stops": [ + { + "id": "1832", + "code": "31832", + "data": { + "gtfs": { + "stop_id": "1832", + "stop_code": "31832", + "stop_name": "Grande Allée et Albert-Millichamp", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Albert-Millichamp", + "geography": { + "type": "Point", + "coordinates": [ + -73.4261454976512, + 45.4635119567076 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5296654318213 + }, + "name": "Grande Allée et Albert-Millichamp", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.426145498, + 45.463511957 + ] + }, + "is_frozen": false, + "integer_id": 491, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.43071, + 45.466584 + ] + }, + "id": 492, + "properties": { + "id": "ba86f45f-9fb5-4525-a50b-a876919fd012", + "code": "31833", + "data": { + "stops": [ + { + "id": "1833", + "code": "31833", + "data": { + "gtfs": { + "stop_id": "1833", + "stop_code": "31833", + "stop_name": "Grande Allée et Ramsay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Ramsay", + "geography": { + "type": "Point", + "coordinates": [ + -73.430710342427, + 45.4665840499407 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5814665996593 + }, + "name": "Grande Allée et Ramsay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.430710342, + 45.46658405 + ] + }, + "is_frozen": false, + "integer_id": 492, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.43434, + 45.468604 + ] + }, + "id": 493, + "properties": { + "id": "988c86da-04eb-4067-b650-f13c447b17e7", + "code": "31835", + "data": { + "stops": [ + { + "id": "1835", + "code": "31835", + "data": { + "gtfs": { + "stop_id": "1835", + "stop_code": "31835", + "stop_name": "Grande Allée et Jonergin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Jonergin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4340062569148, + 45.468731535053 + ] + } + }, + { + "id": "2049", + "code": "32049", + "data": { + "gtfs": { + "stop_id": "2049", + "stop_code": "32049", + "stop_name": "av. Baudelaire et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Baudelaire et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4343675079573, + 45.4685223754437 + ] + } + }, + { + "id": "2101", + "code": "32101", + "data": { + "gtfs": { + "stop_id": "2101", + "stop_code": "32101", + "stop_name": "av. Baudelaire et boul. Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Baudelaire et boul. Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4346740496154, + 45.468476412331 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6155308188157 + }, + "name": "Grande Allée et Jonergin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.434340153, + 45.468603974 + ] + }, + "is_frozen": false, + "integer_id": 493, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.43795, + 45.471128 + ] + }, + "id": 494, + "properties": { + "id": "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", + "code": "31837", + "data": { + "stops": [ + { + "id": "1837", + "code": "31837", + "data": { + "gtfs": { + "stop_id": "1837", + "stop_code": "31837", + "stop_name": "Grande Allée et Boisvert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Boisvert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4376655965972, + 45.4711349526649 + ] + } + }, + { + "id": "4442", + "code": "34442", + "data": { + "gtfs": { + "stop_id": "4442", + "stop_code": "34442", + "stop_name": "boul. Grande Allée et Boisvert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et Boisvert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4382340929297, + 45.4711217844537 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6581075854392 + }, + "name": "Grande Allée et Boisvert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437949845, + 45.471128369 + ] + }, + "is_frozen": false, + "integer_id": 494, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446934, + 45.477427 + ] + }, + "id": 495, + "properties": { + "id": "c4061c94-e615-4bca-b219-1ff6ea9657d0", + "code": "31840", + "data": { + "stops": [ + { + "id": "1840", + "code": "31840", + "data": { + "gtfs": { + "stop_id": "1840", + "stop_code": "31840", + "stop_name": "Grande Allée et de la Légion", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et de la Légion", + "geography": { + "type": "Point", + "coordinates": [ + -73.4471279477773, + 45.4775574165323 + ] + } + }, + { + "id": "4436", + "code": "34436", + "data": { + "gtfs": { + "stop_id": "4436", + "stop_code": "34436", + "stop_name": "Grande Allée et Baillargeon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Baillargeon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4467407261588, + 45.4772965257503 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7643652863691 + }, + "name": "Grande Allée et de la Légion", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446934337, + 45.477426971 + ] + }, + "is_frozen": false, + "integer_id": 495, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448573, + 45.478555 + ] + }, + "id": 496, + "properties": { + "id": "89553e99-6867-4296-935e-718bb768cb73", + "code": "31841", + "data": { + "stops": [ + { + "id": "1841", + "code": "31841", + "data": { + "gtfs": { + "stop_id": "1841", + "stop_code": "31841", + "stop_name": "Grande Allée et Forester", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Forester", + "geography": { + "type": "Point", + "coordinates": [ + -73.4485726801819, + 45.4785551722531 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7834018102063 + }, + "name": "Grande Allée et Forester", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44857268, + 45.478555172 + ] + }, + "is_frozen": false, + "integer_id": 496, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450777, + 45.480024 + ] + }, + "id": 497, + "properties": { + "id": "72a48bdf-3a35-4f3b-8d05-e465faf044cf", + "code": "31842", + "data": { + "stops": [ + { + "id": "1842", + "code": "31842", + "data": { + "gtfs": { + "stop_id": "1842", + "stop_code": "31842", + "stop_name": "Grande Allée et Perlini", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Perlini", + "geography": { + "type": "Point", + "coordinates": [ + -73.4507769362585, + 45.4800236351086 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8081813859899 + }, + "name": "Grande Allée et Perlini", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450776936, + 45.480023635 + ] + }, + "is_frozen": false, + "integer_id": 497, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452465, + 45.481129 + ] + }, + "id": 498, + "properties": { + "id": "70af9f63-28e4-474e-896b-5462b7252980", + "code": "31843", + "data": { + "stops": [ + { + "id": "1843", + "code": "31843", + "data": { + "gtfs": { + "stop_id": "1843", + "stop_code": "31843", + "stop_name": "Grande Allée et Bellevue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Bellevue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4524646132345, + 45.4811294433792 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8268426055578 + }, + "name": "Grande Allée et Bellevue", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452464613, + 45.481129443 + ] + }, + "is_frozen": false, + "integer_id": 498, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513277, + 45.519812 + ] + }, + "id": 499, + "properties": { + "id": "a4d70496-3fc5-40c1-865f-08991bdf0a19", + "code": "31857", + "data": { + "stops": [ + { + "id": "1857", + "code": "31857", + "data": { + "gtfs": { + "stop_id": "1857", + "stop_code": "31857", + "stop_name": "Saint-Laurent ouest et La Salle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et La Salle", + "geography": { + "type": "Point", + "coordinates": [ + -73.5132771680188, + 45.5198123250358 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4803255373893 + }, + "name": "Saint-Laurent ouest et La Salle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.513277168, + 45.519812325 + ] + }, + "is_frozen": false, + "integer_id": 499, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513258, + 45.52212 + ] + }, + "id": 500, + "properties": { + "id": "3e3330f1-b4ce-44de-ae6a-efb45bab99e2", + "code": "31858", + "data": { + "stops": [ + { + "id": "1858", + "code": "31858", + "data": { + "gtfs": { + "stop_id": "1858", + "stop_code": "31858", + "stop_name": "Saint-Laurent ouest et Sainte-Hélène", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Sainte-Hélène", + "geography": { + "type": "Point", + "coordinates": [ + -73.5132577095325, + 45.5221204173838 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5193590246181 + }, + "name": "Saint-Laurent ouest et Sainte-Hélène", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.51325771, + 45.522120417 + ] + }, + "is_frozen": false, + "integer_id": 500, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.510239, + 45.521434 + ] + }, + "id": 501, + "properties": { + "id": "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", + "code": "31859", + "data": { + "stops": [ + { + "id": "1859", + "code": "31859", + "data": { + "gtfs": { + "stop_id": "1859", + "stop_code": "31859", + "stop_name": "Sainte-Hélène et Goupil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Goupil", + "geography": { + "type": "Point", + "coordinates": [ + -73.5105253418188, + 45.5214144821438 + ] + } + }, + { + "id": "1920", + "code": "31920", + "data": { + "gtfs": { + "stop_id": "1920", + "stop_code": "31920", + "stop_name": "Sainte-Hélène et Goupil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Goupil", + "geography": { + "type": "Point", + "coordinates": [ + -73.5099521837803, + 45.5214537062562 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5077517210194 + }, + "name": "Sainte-Hélène et Goupil", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.510238763, + 45.521434094 + ] + }, + "is_frozen": false, + "integer_id": 501, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.505544, + 45.520091 + ] + }, + "id": 502, + "properties": { + "id": "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", + "code": "31861", + "data": { + "stops": [ + { + "id": "1861", + "code": "31861", + "data": { + "gtfs": { + "stop_id": "1861", + "stop_code": "31861", + "stop_name": "Sainte-Hélène et Joséphine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Joséphine", + "geography": { + "type": "Point", + "coordinates": [ + -73.5057021856531, + 45.5200919048237 + ] + } + }, + { + "id": "1918", + "code": "31918", + "data": { + "gtfs": { + "stop_id": "1918", + "stop_code": "31918", + "stop_name": "Sainte-Hélène et Joséphine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Joséphine", + "geography": { + "type": "Point", + "coordinates": [ + -73.5053867012705, + 45.5200902743283 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4850396425408 + }, + "name": "Sainte-Hélène et Joséphine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.505544443, + 45.52009109 + ] + }, + "is_frozen": false, + "integer_id": 502, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.502224, + 45.518985 + ] + }, + "id": 503, + "properties": { + "id": "54cba115-6a75-4b65-8019-b2b5de7a3947", + "code": "31862", + "data": { + "stops": [ + { + "id": "1862", + "code": "31862", + "data": { + "gtfs": { + "stop_id": "1862", + "stop_code": "31862", + "stop_name": "Sainte-Hélène et Albani", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Albani", + "geography": { + "type": "Point", + "coordinates": [ + -73.5023868295374, + 45.5189613025346 + ] + } + }, + { + "id": "1917", + "code": "31917", + "data": { + "gtfs": { + "stop_id": "1917", + "stop_code": "31917", + "stop_name": "Sainte-Hélène et Albani", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Albani", + "geography": { + "type": "Point", + "coordinates": [ + -73.5020604054054, + 45.519009391866 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4663411860644 + }, + "name": "Sainte-Hélène et Albani", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.502223617, + 45.518985347 + ] + }, + "is_frozen": false, + "integer_id": 503, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.5, + 45.518258 + ] + }, + "id": 504, + "properties": { + "id": "05287baf-76e5-4533-8eef-0902c45b01ae", + "code": "31863", + "data": { + "stops": [ + { + "id": "1863", + "code": "31863", + "data": { + "gtfs": { + "stop_id": "1863", + "stop_code": "31863", + "stop_name": "Sainte-Hélène et Saint-Édouard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Saint-Édouard", + "geography": { + "type": "Point", + "coordinates": [ + -73.5001395237808, + 45.5182235661024 + ] + } + }, + { + "id": "1916", + "code": "31916", + "data": { + "gtfs": { + "stop_id": "1916", + "stop_code": "31916", + "stop_name": "Sainte-Hélène et Saint-Édouard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Saint-Édouard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4998599998888, + 45.5182923661158 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.454041542103 + }, + "name": "Sainte-Hélène et Saint-Édouard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.499999762, + 45.518257966 + ] + }, + "is_frozen": false, + "integer_id": 504, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.497734, + 45.517625 + ] + }, + "id": 505, + "properties": { + "id": "d98b2f35-c33e-4d89-853d-ac91e28ea62b", + "code": "31864", + "data": { + "stops": [ + { + "id": "1864", + "code": "31864", + "data": { + "gtfs": { + "stop_id": "1864", + "stop_code": "31864", + "stop_name": "Sainte-Hélène et ch. du Coteau-Rouge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et ch. du Coteau-Rouge", + "geography": { + "type": "Point", + "coordinates": [ + -73.4979073610015, + 45.5174953464493 + ] + } + }, + { + "id": "1915", + "code": "31915", + "data": { + "gtfs": { + "stop_id": "1915", + "stop_code": "31915", + "stop_name": "Sainte-Hélène et ch. du Coteau-Rouge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et ch. du Coteau-Rouge", + "geography": { + "type": "Point", + "coordinates": [ + -73.4975613972015, + 45.5175492769411 + ] + } + }, + { + "id": "4469", + "code": "34469", + "data": { + "gtfs": { + "stop_id": "4469", + "stop_code": "34469", + "stop_name": "ch. du Coteau-Rouge et Sainte-Hélène", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Sainte-Hélène", + "geography": { + "type": "Point", + "coordinates": [ + -73.4976293412557, + 45.5173984227704 + ] + } + }, + { + "id": "4478", + "code": "34478", + "data": { + "gtfs": { + "stop_id": "4478", + "stop_code": "34478", + "stop_name": "ch. du Coteau-Rouge et Sainte-Hélène", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Sainte-Hélène", + "geography": { + "type": "Point", + "coordinates": [ + -73.4977490602351, + 45.5178523858362 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4433456225379 + }, + "name": "Sainte-Hélène et ch. du Coteau-Rouge", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.497734379, + 45.517625404 + ] + }, + "is_frozen": false, + "integer_id": 505, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.493895, + 45.516283 + ] + }, + "id": 506, + "properties": { + "id": "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", + "code": "31865", + "data": { + "stops": [ + { + "id": "1865", + "code": "31865", + "data": { + "gtfs": { + "stop_id": "1865", + "stop_code": "31865", + "stop_name": "Sainte-Hélène et Front", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Front", + "geography": { + "type": "Point", + "coordinates": [ + -73.4940542083591, + 45.516263070518 + ] + } + }, + { + "id": "1914", + "code": "31914", + "data": { + "gtfs": { + "stop_id": "1914", + "stop_code": "31914", + "stop_name": "Sainte-Hélène et Front", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Front", + "geography": { + "type": "Point", + "coordinates": [ + -73.4937350152131, + 45.5163024134002 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4206482454384 + }, + "name": "Sainte-Hélène et Front", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493895, + 45.516283 + ] + }, + "is_frozen": false, + "integer_id": 506, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490857, + 45.515265 + ] + }, + "id": 507, + "properties": { + "id": "315b8823-6c3a-493b-9af5-7325cbc48096", + "code": "31866", + "data": { + "stops": [ + { + "id": "1866", + "code": "31866", + "data": { + "gtfs": { + "stop_id": "1866", + "stop_code": "31866", + "stop_name": "Sainte-Hélène et boul. Curé-Poirier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et boul. Curé-Poirier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4910514774775, + 45.5152775227567 + ] + } + }, + { + "id": "3088", + "code": "33088", + "data": { + "gtfs": { + "stop_id": "3088", + "stop_code": "33088", + "stop_name": "boul. Curé-Poirier ouest et Sainte-Hélène", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Sainte-Hélène", + "geography": { + "type": "Point", + "coordinates": [ + -73.4908014645173, + 45.5151274723911 + ] + } + }, + { + "id": "3851", + "code": "33851", + "data": { + "gtfs": { + "stop_id": "3851", + "stop_code": "33851", + "stop_name": "boul. Curé-Poirier ouest et Sainte-Hélène", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Sainte-Hélène", + "geography": { + "type": "Point", + "coordinates": [ + -73.4908862307135, + 45.5154030105279 + ] + } + }, + { + "id": "4530", + "code": "34530", + "data": { + "gtfs": { + "stop_id": "4530", + "stop_code": "34530", + "stop_name": "Sainte-Hélène et boul. Curé-Poirier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et boul. Curé-Poirier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4906634905796, + 45.5153062380278 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.403441038293 + }, + "name": "Sainte-Hélène et boul. Curé-Poirier ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490857484, + 45.515265241 + ] + }, + "is_frozen": false, + "integer_id": 507, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.487749, + 45.514273 + ] + }, + "id": 508, + "properties": { + "id": "64ba3e91-9bea-4655-ac42-4f3f1a14955c", + "code": "31867", + "data": { + "stops": [ + { + "id": "1867", + "code": "31867", + "data": { + "gtfs": { + "stop_id": "1867", + "stop_code": "31867", + "stop_name": "Sainte-Hélène et Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4879082730632, + 45.5142413865191 + ] + } + }, + { + "id": "1912", + "code": "31912", + "data": { + "gtfs": { + "stop_id": "1912", + "stop_code": "31912", + "stop_name": "Sainte-Hélène et Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.487589265949, + 45.5143053967072 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3866727780488 + }, + "name": "Sainte-Hélène et Hubert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48774877, + 45.514273392 + ] + }, + "is_frozen": false, + "integer_id": 508, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.48468, + 45.51327 + ] + }, + "id": 509, + "properties": { + "id": "5a82a520-52b6-417e-972a-f9bf56fb4f33", + "code": "31868", + "data": { + "stops": [ + { + "id": "1868", + "code": "31868", + "data": { + "gtfs": { + "stop_id": "1868", + "stop_code": "31868", + "stop_name": "Sainte-Hélène et Beauregard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Beauregard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4848525800055, + 45.5132518869094 + ] + } + }, + { + "id": "1911", + "code": "31911", + "data": { + "gtfs": { + "stop_id": "1911", + "stop_code": "31911", + "stop_name": "Sainte-Hélène et Beauregard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Beauregard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4845077698478, + 45.5132881420684 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3697104993129 + }, + "name": "Sainte-Hélène et Beauregard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.484680175, + 45.513270014 + ] + }, + "is_frozen": false, + "integer_id": 509, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481597, + 45.512236 + ] + }, + "id": 510, + "properties": { + "id": "e1825eb4-cef2-4f98-872f-0d169be63859", + "code": "31869", + "data": { + "stops": [ + { + "id": "1869", + "code": "31869", + "data": { + "gtfs": { + "stop_id": "1869", + "stop_code": "31869", + "stop_name": "Sainte-Hélène et boul. Nobert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et boul. Nobert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4817610339117, + 45.5122458523644 + ] + } + }, + { + "id": "1910", + "code": "31910", + "data": { + "gtfs": { + "stop_id": "1910", + "stop_code": "31910", + "stop_name": "Sainte-Hélène et boul. Nobert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et boul. Nobert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4814319998355, + 45.5122894371717 + ] + } + }, + { + "id": "3790", + "code": "33790", + "data": { + "gtfs": { + "stop_id": "3790", + "stop_code": "33790", + "stop_name": "boul. Nobert et Sainte-Hélène", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Sainte-Hélène", + "geography": { + "type": "Point", + "coordinates": [ + -73.4815572052521, + 45.5121089690308 + ] + } + }, + { + "id": "3997", + "code": "33997", + "data": { + "gtfs": { + "stop_id": "3997", + "stop_code": "33997", + "stop_name": "boul. Nobert et Sainte-Hélène", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Nobert et Sainte-Hélène", + "geography": { + "type": "Point", + "coordinates": [ + -73.4816364049013, + 45.5123629908688 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.352230913684 + }, + "name": "Sainte-Hélène et boul. Nobert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481596517, + 45.51223598 + ] + }, + "is_frozen": false, + "integer_id": 510, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478494, + 45.511257 + ] + }, + "id": 511, + "properties": { + "id": "6c122298-4ea6-41ee-91e8-bb29cb41a320", + "code": "31870", + "data": { + "stops": [ + { + "id": "1870", + "code": "31870", + "data": { + "gtfs": { + "stop_id": "1870", + "stop_code": "31870", + "stop_name": "Sainte-Hélène et Champlain", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Champlain", + "geography": { + "type": "Point", + "coordinates": [ + -73.4787031733887, + 45.5112532171867 + ] + } + }, + { + "id": "1909", + "code": "31909", + "data": { + "gtfs": { + "stop_id": "1909", + "stop_code": "31909", + "stop_name": "Sainte-Hélène et Champlain", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Champlain", + "geography": { + "type": "Point", + "coordinates": [ + -73.4782850639251, + 45.5112614872027 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3356888027937 + }, + "name": "Sainte-Hélène et Champlain", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.478494119, + 45.511257352 + ] + }, + "is_frozen": false, + "integer_id": 511, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475424, + 45.510257 + ] + }, + "id": 512, + "properties": { + "id": "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", + "code": "31871", + "data": { + "stops": [ + { + "id": "1871", + "code": "31871", + "data": { + "gtfs": { + "stop_id": "1871", + "stop_code": "31871", + "stop_name": "Sainte-Hélène et Maisonneuve", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Maisonneuve", + "geography": { + "type": "Point", + "coordinates": [ + -73.4756061653041, + 45.5102408867711 + ] + } + }, + { + "id": "3802", + "code": "33802", + "data": { + "gtfs": { + "stop_id": "3802", + "stop_code": "33802", + "stop_name": "Sainte-Hélène et Maisonneuve", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Maisonneuve", + "geography": { + "type": "Point", + "coordinates": [ + -73.475241679619, + 45.5102724809894 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3187750234471 + }, + "name": "Sainte-Hélène et Maisonneuve", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475423922, + 45.510256684 + ] + }, + "is_frozen": false, + "integer_id": 512, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.472433, + 45.509208 + ] + }, + "id": 513, + "properties": { + "id": "777c347b-29df-4aab-9968-5fdfd62ed61a", + "code": "31872", + "data": { + "stops": [ + { + "id": "1872", + "code": "31872", + "data": { + "gtfs": { + "stop_id": "1872", + "stop_code": "31872", + "stop_name": "Sainte-Hélène et Papineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Papineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4724330241005, + 45.5092082497085 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3010548362624 + }, + "name": "Sainte-Hélène et Papineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472433024, + 45.50920825 + ] + }, + "is_frozen": false, + "integer_id": 513, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466228, + 45.515041 + ] + }, + "id": 514, + "properties": { + "id": "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", + "code": "31873", + "data": { + "stops": [ + { + "id": "1873", + "code": "31873", + "data": { + "gtfs": { + "stop_id": "1873", + "stop_code": "31873", + "stop_name": "boul. Jacques-Cartier ouest et de Lyon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier ouest et de Lyon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4660589795652, + 45.5152863546306 + ] + } + }, + { + "id": "3225", + "code": "33225", + "data": { + "gtfs": { + "stop_id": "3225", + "stop_code": "33225", + "stop_name": "boul. Jacques-Cartier ouest et David", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier ouest et David", + "geography": { + "type": "Point", + "coordinates": [ + -73.466397653625, + 45.5147960413407 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3996532769394 + }, + "name": "boul. Jacques-Cartier ouest et de Lyon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466228317, + 45.515041198 + ] + }, + "is_frozen": false, + "integer_id": 514, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463888, + 45.519987 + ] + }, + "id": 515, + "properties": { + "id": "146e7d43-1e02-4f93-ac9a-e66dd29d3576", + "code": "31874", + "data": { + "stops": [ + { + "id": "1874", + "code": "31874", + "data": { + "gtfs": { + "stop_id": "1874", + "stop_code": "31874", + "stop_name": "boul. Jacques-Cartier ouest et Deschamps", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier ouest et Deschamps", + "geography": { + "type": "Point", + "coordinates": [ + -73.463613724404, + 45.5199152824487 + ] + } + }, + { + "id": "1902", + "code": "31902", + "data": { + "gtfs": { + "stop_id": "1902", + "stop_code": "31902", + "stop_name": "boul. Jacques-Cartier ouest et Denonville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier ouest et Denonville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4641628497608, + 45.5200594304965 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4832854221811 + }, + "name": "boul. Jacques-Cartier ouest et Deschamps", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463888287, + 45.519987356 + ] + }, + "is_frozen": false, + "integer_id": 515, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46382, + 45.521686 + ] + }, + "id": 516, + "properties": { + "id": "a5ca0f69-bb6f-4ef0-aaaa-1498b5ff9d00", + "code": "31875", + "data": { + "stops": [ + { + "id": "1875", + "code": "31875", + "data": { + "gtfs": { + "stop_id": "1875", + "stop_code": "31875", + "stop_name": "boul. Jacques-Cartier ouest et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier ouest et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4639562434838, + 45.5216250874626 + ] + } + }, + { + "id": "3575", + "code": "33575", + "data": { + "gtfs": { + "stop_id": "3575", + "stop_code": "33575", + "stop_name": "ch. de Chambly et boul. Jacques-Cartier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Jacques-Cartier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4636838294526, + 45.5217459171937 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5120035609685 + }, + "name": "boul. Jacques-Cartier ouest et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463820036, + 45.521685502 + ] + }, + "is_frozen": false, + "integer_id": 516, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464272, + 45.522687 + ] + }, + "id": 517, + "properties": { + "id": "cc82fbc3-882e-47d6-b5d3-94ced115eefc", + "code": "31876", + "data": { + "stops": [ + { + "id": "1876", + "code": "31876", + "data": { + "gtfs": { + "stop_id": "1876", + "stop_code": "31876", + "stop_name": "boul. Jacques-Cartier est et Pasteur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et Pasteur", + "geography": { + "type": "Point", + "coordinates": [ + -73.4642715902569, + 45.5226869977339 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5289415313164 + }, + "name": "boul. Jacques-Cartier est et Pasteur", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46427159, + 45.522686998 + ] + }, + "is_frozen": false, + "integer_id": 517, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465092, + 45.526375 + ] + }, + "id": 518, + "properties": { + "id": "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", + "code": "31877", + "data": { + "stops": [ + { + "id": "1877", + "code": "31877", + "data": { + "gtfs": { + "stop_id": "1877", + "stop_code": "31877", + "stop_name": "boul. Jacques-Cartier est et Périgny", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et Périgny", + "geography": { + "type": "Point", + "coordinates": [ + -73.4647534132951, + 45.5262464640083 + ] + } + }, + { + "id": "1900", + "code": "31900", + "data": { + "gtfs": { + "stop_id": "1900", + "stop_code": "31900", + "stop_name": "boul. Jacques-Cartier est et Gamache", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et Gamache", + "geography": { + "type": "Point", + "coordinates": [ + -73.4651777070877, + 45.5265025975277 + ] + } + }, + { + "id": "5798", + "code": "30567", + "data": { + "gtfs": { + "stop_id": "5798", + "stop_code": "30567", + "stop_name": "Gamache et boul. Jacques-Cartier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gamache et boul. Jacques-Cartier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4654296321478, + 45.5263674353934 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5913152608044 + }, + "name": "boul. Jacques-Cartier est et Périgny", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465091523, + 45.526374531 + ] + }, + "is_frozen": false, + "integer_id": 518, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463557, + 45.528451 + ] + }, + "id": 519, + "properties": { + "id": "6beffd5a-a5e7-4808-863a-90505f6172be", + "code": "31878", + "data": { + "stops": [ + { + "id": "1878", + "code": "31878", + "data": { + "gtfs": { + "stop_id": "1878", + "stop_code": "31878", + "stop_name": "boul. Jacques-Cartier est et civique 310", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et civique 310", + "geography": { + "type": "Point", + "coordinates": [ + -73.4635565803794, + 45.5284514917121 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6264518896676 + }, + "name": "boul. Jacques-Cartier est et civique 310", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46355658, + 45.528451492 + ] + }, + "is_frozen": false, + "integer_id": 519, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457217, + 45.536246 + ] + }, + "id": 520, + "properties": { + "id": "c24ac61d-1b21-4358-b45f-8dd4921fc769", + "code": "31882", + "data": { + "stops": [ + { + "id": "1882", + "code": "31882", + "data": { + "gtfs": { + "stop_id": "1882", + "stop_code": "31882", + "stop_name": "boul. Jacques-Cartier est et CLSC SIMONNE-MONET-CHARTRAND", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et CLSC SIMONNE-MONET-CHARTRAND", + "geography": { + "type": "Point", + "coordinates": [ + -73.4572166149503, + 45.5362455028995 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7583400194338 + }, + "name": "boul. Jacques-Cartier est et CLSC SIMONNE-MONET-CHARTRAND", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457216615, + 45.536245503 + ] + }, + "is_frozen": false, + "integer_id": 520, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45624, + 45.540373 + ] + }, + "id": 521, + "properties": { + "id": "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", + "code": "31883", + "data": { + "stops": [ + { + "id": "1883", + "code": "31883", + "data": { + "gtfs": { + "stop_id": "1883", + "stop_code": "31883", + "stop_name": "boul. Jacques-Cartier est et civique 1610", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et civique 1610", + "geography": { + "type": "Point", + "coordinates": [ + -73.4559920312875, + 45.5402669530053 + ] + } + }, + { + "id": "1893", + "code": "31893", + "data": { + "gtfs": { + "stop_id": "1893", + "stop_code": "31893", + "stop_name": "boul. Jacques-Cartier est et civique 1615", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et civique 1615", + "geography": { + "type": "Point", + "coordinates": [ + -73.4564876824691, + 45.5404787440751 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8282037837425 + }, + "name": "boul. Jacques-Cartier est et civique 1610", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456239857, + 45.540372849 + ] + }, + "is_frozen": false, + "integer_id": 521, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455633, + 45.542468 + ] + }, + "id": 522, + "properties": { + "id": "1254d090-1d68-478c-a4fc-972cd246c948", + "code": "31884", + "data": { + "stops": [ + { + "id": "1884", + "code": "31884", + "data": { + "gtfs": { + "stop_id": "1884", + "stop_code": "31884", + "stop_name": "boul. Jacques-Cartier est et ch. Du Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et ch. Du Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4556334685916, + 45.5424678569219 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8636718893656 + }, + "name": "boul. Jacques-Cartier est et ch. Du Tremblay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455633469, + 45.542467857 + ] + }, + "is_frozen": false, + "integer_id": 522, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453807, + 45.543683 + ] + }, + "id": 523, + "properties": { + "id": "43f18805-a4b1-4fc6-a1c9-787eb883bcde", + "code": "31886", + "data": { + "stops": [ + { + "id": "1886", + "code": "31886", + "data": { + "gtfs": { + "stop_id": "1886", + "stop_code": "31886", + "stop_name": "ch. Du Tremblay et Bonaventure", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Bonaventure", + "geography": { + "type": "Point", + "coordinates": [ + -73.4538244841805, + 45.5435684987583 + ] + } + }, + { + "id": "1891", + "code": "31891", + "data": { + "gtfs": { + "stop_id": "1891", + "stop_code": "31891", + "stop_name": "ch. Du Tremblay et Bonaventure", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Bonaventure", + "geography": { + "type": "Point", + "coordinates": [ + -73.4537900195041, + 45.5437974113517 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8842450725342 + }, + "name": "ch. Du Tremblay et Bonaventure", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453807252, + 45.543682955 + ] + }, + "is_frozen": false, + "integer_id": 523, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452537, + 45.54456 + ] + }, + "id": 524, + "properties": { + "id": "946a029d-014a-45ca-adcd-e5b8e3927d52", + "code": "31887", + "data": { + "stops": [ + { + "id": "1887", + "code": "31887", + "data": { + "gtfs": { + "stop_id": "1887", + "stop_code": "31887", + "stop_name": "ch. Du Tremblay et Bossuet", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Bossuet", + "geography": { + "type": "Point", + "coordinates": [ + -73.4526488889498, + 45.5443643728662 + ] + } + }, + { + "id": "3800", + "code": "33800", + "data": { + "gtfs": { + "stop_id": "3800", + "stop_code": "33800", + "stop_name": "ch. Du Tremblay et Bossuet", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Bossuet", + "geography": { + "type": "Point", + "coordinates": [ + -73.4524250710358, + 45.5447558212134 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.899097041618 + }, + "name": "ch. Du Tremblay et Bossuet", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45253698, + 45.544560097 + ] + }, + "is_frozen": false, + "integer_id": 524, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454845, + 45.543085 + ] + }, + "id": 525, + "properties": { + "id": "e4670d3f-1aa4-4e69-ac7c-0f6fbe1ebddb", + "code": "31892", + "data": { + "stops": [ + { + "id": "1892", + "code": "31892", + "data": { + "gtfs": { + "stop_id": "1892", + "stop_code": "31892", + "stop_name": "ch. Du Tremblay et boul. Jacques-Cartier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et boul. Jacques-Cartier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4548449988845, + 45.5430847163019 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8741159466709 + }, + "name": "ch. Du Tremblay et boul. Jacques-Cartier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454844999, + 45.543084716 + ] + }, + "is_frozen": false, + "integer_id": 525, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459037, + 45.534609 + ] + }, + "id": 526, + "properties": { + "id": "ead7d270-6dcb-4161-af5c-95bec6715688", + "code": "31896", + "data": { + "stops": [ + { + "id": "1896", + "code": "31896", + "data": { + "gtfs": { + "stop_id": "1896", + "stop_code": "31896", + "stop_name": "boul. Jacques-Cartier est et Bruchési", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et Bruchési", + "geography": { + "type": "Point", + "coordinates": [ + -73.459099113745, + 45.534828564425 + ] + } + }, + { + "id": "4182", + "code": "34182", + "data": { + "gtfs": { + "stop_id": "4182", + "stop_code": "34182", + "stop_name": "boul. Jacques-Cartier est et Bruchési", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et Bruchési", + "geography": { + "type": "Point", + "coordinates": [ + -73.4589745777231, + 45.5343904300208 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7306514800644 + }, + "name": "boul. Jacques-Cartier est et Bruchési", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459036846, + 45.534609497 + ] + }, + "is_frozen": false, + "integer_id": 526, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462781, + 45.530421 + ] + }, + "id": 527, + "properties": { + "id": "8746746f-daed-4d54-a90f-724d51454ae1", + "code": "31898", + "data": { + "stops": [ + { + "id": "1898", + "code": "31898", + "data": { + "gtfs": { + "stop_id": "1898", + "stop_code": "31898", + "stop_name": "boul. Jacques-Cartier est et Laurier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et Laurier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4629295148318, + 45.5306701629265 + ] + } + }, + { + "id": "4433", + "code": "34433", + "data": { + "gtfs": { + "stop_id": "4433", + "stop_code": "34433", + "stop_name": "boul. Jacques-Cartier est et Laurier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et Laurier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4626334410079, + 45.5301728191977 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6597825608577 + }, + "name": "boul. Jacques-Cartier est et Laurier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462781478, + 45.530421491 + ] + }, + "is_frozen": false, + "integer_id": 527, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46405, + 45.528578 + ] + }, + "id": 528, + "properties": { + "id": "47143cf4-4cce-4e8f-bfed-223c71fcc466", + "code": "31899", + "data": { + "stops": [ + { + "id": "1899", + "code": "31899", + "data": { + "gtfs": { + "stop_id": "1899", + "stop_code": "31899", + "stop_name": "boul. Jacques-Cartier est et civique 303", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et civique 303", + "geography": { + "type": "Point", + "coordinates": [ + -73.4640501799758, + 45.528578150183 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6285947288959 + }, + "name": "boul. Jacques-Cartier est et civique 303", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46405018, + 45.52857815 + ] + }, + "is_frozen": false, + "integer_id": 528, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464764, + 45.522591 + ] + }, + "id": 529, + "properties": { + "id": "334bd241-267c-4081-968b-fd0340fabe8f", + "code": "31901", + "data": { + "stops": [ + { + "id": "1901", + "code": "31901", + "data": { + "gtfs": { + "stop_id": "1901", + "stop_code": "31901", + "stop_name": "boul. Jacques-Cartier est et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4647637206288, + 45.5225914049289 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5273247599663 + }, + "name": "boul. Jacques-Cartier est et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464763721, + 45.522591405 + ] + }, + "is_frozen": false, + "integer_id": 529, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464973, + 45.517711 + ] + }, + "id": 530, + "properties": { + "id": "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", + "code": "31903", + "data": { + "stops": [ + { + "id": "1903", + "code": "31903", + "data": { + "gtfs": { + "stop_id": "1903", + "stop_code": "31903", + "stop_name": "boul. Jacques-Cartier ouest et Cadillac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier ouest et Cadillac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4649731327891, + 45.5177110980635 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4447945918523 + }, + "name": "boul. Jacques-Cartier ouest et Cadillac", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464973133, + 45.517711098 + ] + }, + "is_frozen": false, + "integer_id": 530, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466517, + 45.515819 + ] + }, + "id": 531, + "properties": { + "id": "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", + "code": "31904", + "data": { + "stops": [ + { + "id": "1904", + "code": "31904", + "data": { + "gtfs": { + "stop_id": "1904", + "stop_code": "31904", + "stop_name": "boul. Jacques-Cartier ouest et de Lyon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier ouest et de Lyon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4662388510518, + 45.515860071897 + ] + } + }, + { + "id": "3593", + "code": "33593", + "data": { + "gtfs": { + "stop_id": "3593", + "stop_code": "33593", + "stop_name": "de Lyon et boul. Jacques-Cartier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Lyon et boul. Jacques-Cartier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4664351204663, + 45.5156900624834 + ] + } + }, + { + "id": "3853", + "code": "33853", + "data": { + "gtfs": { + "stop_id": "3853", + "stop_code": "33853", + "stop_name": "de Lyon et Cadillac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Lyon et Cadillac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4667960036274, + 45.5159474414941 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4127991102546 + }, + "name": "boul. Jacques-Cartier ouest et de Lyon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466517427, + 45.515818752 + ] + }, + "is_frozen": false, + "integer_id": 531, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467806, + 45.513678 + ] + }, + "id": 532, + "properties": { + "id": "f9f88325-b670-4d47-91fa-edb372992bbc", + "code": "31905", + "data": { + "stops": [ + { + "id": "1905", + "code": "31905", + "data": { + "gtfs": { + "stop_id": "1905", + "stop_code": "31905", + "stop_name": "boul. Jacques-Cartier ouest et de Carignan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier ouest et de Carignan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4678057661988, + 45.5136777219275 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3766027654679 + }, + "name": "boul. Jacques-Cartier ouest et de Carignan", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.467805766, + 45.513677722 + ] + }, + "is_frozen": false, + "integer_id": 532, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468583, + 45.512236 + ] + }, + "id": 533, + "properties": { + "id": "e1a9e623-935b-47b9-a038-bcbd5a33f95e", + "code": "31906", + "data": { + "stops": [ + { + "id": "1906", + "code": "31906", + "data": { + "gtfs": { + "stop_id": "1906", + "stop_code": "31906", + "stop_name": "boul. Jacques-Cartier ouest et civique 859", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier ouest et civique 859", + "geography": { + "type": "Point", + "coordinates": [ + -73.4687827966667, + 45.5123515935162 + ] + } + }, + { + "id": "3611", + "code": "33611", + "data": { + "gtfs": { + "stop_id": "3611", + "stop_code": "33611", + "stop_name": "boul. Jacques-Cartier ouest et civique 862", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier ouest et civique 862", + "geography": { + "type": "Point", + "coordinates": [ + -73.468383602735, + 45.5121203306241 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3522306094155 + }, + "name": "boul. Jacques-Cartier ouest et civique 859", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.4685832, + 45.512235962 + ] + }, + "is_frozen": false, + "integer_id": 533, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.471375, + 45.50902 + ] + }, + "id": 534, + "properties": { + "id": "ba348c95-9f07-48ca-a139-5d5c2dd83350", + "code": "31907", + "data": { + "stops": [ + { + "id": "1907", + "code": "31907", + "data": { + "gtfs": { + "stop_id": "1907", + "stop_code": "31907", + "stop_name": "Sainte-Hélène et boul. Jacques-Cartier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et boul. Jacques-Cartier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4713747164152, + 45.5090195228877 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.297865156424 + }, + "name": "Sainte-Hélène et boul. Jacques-Cartier ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.471374716, + 45.509019523 + ] + }, + "is_frozen": false, + "integer_id": 534, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.512415, + 45.522266 + ] + }, + "id": 535, + "properties": { + "id": "52b1586a-11ae-4a36-8706-2e4367c6d3c8", + "code": "31921", + "data": { + "stops": [ + { + "id": "1921", + "code": "31921", + "data": { + "gtfs": { + "stop_id": "1921", + "stop_code": "31921", + "stop_name": "Sainte-Hélène et Saint-Laurent ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et Saint-Laurent ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.512415287618, + 45.5222660962612 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5218228462339 + }, + "name": "Sainte-Hélène et Saint-Laurent ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.512415288, + 45.522266096 + ] + }, + "is_frozen": false, + "integer_id": 535, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.42938, + 45.516714 + ] + }, + "id": 536, + "properties": { + "id": "5fca388e-eb04-4453-a322-bc37f3153a8f", + "code": "31927", + "data": { + "stops": [ + { + "id": "1927", + "code": "31927", + "data": { + "gtfs": { + "stop_id": "1927", + "stop_code": "31927", + "stop_name": "ch. de la Savane et De Tonnancour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et De Tonnancour", + "geography": { + "type": "Point", + "coordinates": [ + -73.429284343447, + 45.5166957565776 + ] + } + }, + { + "id": "1939", + "code": "31939", + "data": { + "gtfs": { + "stop_id": "1939", + "stop_code": "31939", + "stop_name": "ch. de la Savane et De Tonnancour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et De Tonnancour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4294758924338, + 45.5167318686308 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4279322600242 + }, + "name": "ch. de la Savane et De Tonnancour", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.429380118, + 45.516713813 + ] + }, + "is_frozen": false, + "integer_id": 536, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.418602, + 45.527201 + ] + }, + "id": 537, + "properties": { + "id": "96dc38f6-44d4-438d-b986-07c908b99f23", + "code": "31931", + "data": { + "stops": [ + { + "id": "1931", + "code": "31931", + "data": { + "gtfs": { + "stop_id": "1931", + "stop_code": "31931", + "stop_name": "Viger et ch. de la Savane", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Viger et ch. de la Savane", + "geography": { + "type": "Point", + "coordinates": [ + -73.4185332072995, + 45.5271111554676 + ] + } + }, + { + "id": "1936", + "code": "31936", + "data": { + "gtfs": { + "stop_id": "1936", + "stop_code": "31936", + "stop_name": "ch. de la Savane et Viger", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et Viger", + "geography": { + "type": "Point", + "coordinates": [ + -73.4186708162753, + 45.5272904915965 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6052934692863 + }, + "name": "Viger et ch. de la Savane", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.418602012, + 45.527200824 + ] + }, + "is_frozen": false, + "integer_id": 537, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.41412, + 45.528128 + ] + }, + "id": 538, + "properties": { + "id": "a208dd9e-53a1-4deb-bed5-724b8b3ed912", + "code": "31932", + "data": { + "stops": [ + { + "id": "1932", + "code": "31932", + "data": { + "gtfs": { + "stop_id": "1932", + "stop_code": "31932", + "stop_name": "ch. de la Savane et de l'ENA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et de l'ENA", + "geography": { + "type": "Point", + "coordinates": [ + -73.4140278441803, + 45.5280786198428 + ] + } + }, + { + "id": "1935", + "code": "31935", + "data": { + "gtfs": { + "stop_id": "1935", + "stop_code": "31935", + "stop_name": "ch. de la Savane et de l'ENA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et de l'ENA", + "geography": { + "type": "Point", + "coordinates": [ + -73.4142115372402, + 45.5281778230263 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6209827557075 + }, + "name": "ch. de la Savane et de l'ENA", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.414119691, + 45.528128221 + ] + }, + "is_frozen": false, + "integer_id": 538, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.407768, + 45.534477 + ] + }, + "id": 539, + "properties": { + "id": "84766cb6-ab9a-4256-a341-0b084c084dbb", + "code": "31933", + "data": { + "stops": [ + { + "id": "1933", + "code": "31933", + "data": { + "gtfs": { + "stop_id": "1933", + "stop_code": "31933", + "stop_name": "ch. de la Savane et boul. Clairevue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et boul. Clairevue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4079558878023, + 45.5343489634847 + ] + } + }, + { + "id": "1934", + "code": "31934", + "data": { + "gtfs": { + "stop_id": "1934", + "stop_code": "31934", + "stop_name": "boul. Clairevue et ch. de la Savane", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue et ch. de la Savane", + "geography": { + "type": "Point", + "coordinates": [ + -73.4075804173269, + 45.5346050610913 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7284093457358 + }, + "name": "ch. de la Savane et boul. Clairevue", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.407768153, + 45.534477012 + ] + }, + "is_frozen": false, + "integer_id": 539, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.426218, + 45.523079 + ] + }, + "id": 540, + "properties": { + "id": "e508c7cf-026b-4bcf-8135-74c7544363a5", + "code": "31937", + "data": { + "stops": [ + { + "id": "1937", + "code": "31937", + "data": { + "gtfs": { + "stop_id": "1937", + "stop_code": "31937", + "stop_name": "ch. de la Savane et La Vérendrye", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et La Vérendrye", + "geography": { + "type": "Point", + "coordinates": [ + -73.4262782829631, + 45.5232308238056 + ] + } + }, + { + "id": "3910", + "code": "33910", + "data": { + "gtfs": { + "stop_id": "3910", + "stop_code": "33910", + "stop_name": "ch. de la Savane et La Vérendrye", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et La Vérendrye", + "geography": { + "type": "Point", + "coordinates": [ + -73.4261569973197, + 45.5229265501012 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5355662808544 + }, + "name": "ch. de la Savane et La Vérendrye", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.42621764, + 45.523078687 + ] + }, + "is_frozen": false, + "integer_id": 540, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.426901, + 45.521604 + ] + }, + "id": 541, + "properties": { + "id": "945bff31-775d-46d3-8e37-f61285a9e40d", + "code": "31938", + "data": { + "stops": [ + { + "id": "1938", + "code": "31938", + "data": { + "gtfs": { + "stop_id": "1938", + "stop_code": "31938", + "stop_name": "ch. de la Savane et Senneville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et Senneville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4269617467423, + 45.5216618573553 + ] + } + }, + { + "id": "3909", + "code": "33909", + "data": { + "gtfs": { + "stop_id": "3909", + "stop_code": "33909", + "stop_name": "ch. de la Savane et Senneville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et Senneville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4268406009845, + 45.5215466920834 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5106298347872 + }, + "name": "ch. de la Savane et Senneville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.426901174, + 45.521604275 + ] + }, + "is_frozen": false, + "integer_id": 541, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.507406, + 45.519318 + ] + }, + "id": 542, + "properties": { + "id": "a9120d5d-ef7d-4b1d-b378-8c10096d7dd8", + "code": "31945", + "data": { + "stops": [ + { + "id": "1945", + "code": "31945", + "data": { + "gtfs": { + "stop_id": "1945", + "stop_code": "31945", + "stop_name": "boul. Desaulniers et Mercier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et Mercier", + "geography": { + "type": "Point", + "coordinates": [ + -73.5074061397859, + 45.5193179443232 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4719653897612 + }, + "name": "boul. Desaulniers et Mercier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.50740614, + 45.519317944 + ] + }, + "is_frozen": false, + "integer_id": 542, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.50931, + 45.527701 + ] + }, + "id": 543, + "properties": { + "id": "0bf73f5f-c68a-4a9e-ae23-67c7ea602d08", + "code": "31950", + "data": { + "stops": [ + { + "id": "1950", + "code": "31950", + "data": { + "gtfs": { + "stop_id": "1950", + "stop_code": "31950", + "stop_name": "Joliette et boul. Desaulniers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et boul. Desaulniers", + "geography": { + "type": "Point", + "coordinates": [ + -73.5093100417197, + 45.5277012712824 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6137551272395 + }, + "name": "Joliette et boul. Desaulniers", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.50931, + 45.527701 + ] + }, + "is_frozen": false, + "integer_id": 543, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.507058, + 45.527069 + ] + }, + "id": 544, + "properties": { + "id": "43f366d5-ac33-41ca-be94-6282f0233cd1", + "code": "31951", + "data": { + "stops": [ + { + "id": "1951", + "code": "31951", + "data": { + "gtfs": { + "stop_id": "1951", + "stop_code": "31951", + "stop_name": "Joliette et Le Moyne ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Le Moyne ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.5075526169949, + 45.5271451753108 + ] + } + }, + { + "id": "1984", + "code": "31984", + "data": { + "gtfs": { + "stop_id": "1984", + "stop_code": "31984", + "stop_name": "Le Moyne ouest et Joliette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne ouest et Joliette", + "geography": { + "type": "Point", + "coordinates": [ + -73.50677266595, + 45.527137591779 + ] + } + }, + { + "id": "3188", + "code": "33188", + "data": { + "gtfs": { + "stop_id": "3188", + "stop_code": "33188", + "stop_name": "Joliette et Le Moyne ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Le Moyne ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.5065642170209, + 45.5269936296714 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6030633922217 + }, + "name": "Joliette et Le Moyne ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507058, + 45.527069 + ] + }, + "is_frozen": false, + "integer_id": 544, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.505931, + 45.528074 + ] + }, + "id": 545, + "properties": { + "id": "09e0cc45-0105-4ba6-b7c5-86201ed79edf", + "code": "31952", + "data": { + "stops": [ + { + "id": "1952", + "code": "31952", + "data": { + "gtfs": { + "stop_id": "1952", + "stop_code": "31952", + "stop_name": "Le Moyne ouest et Gardenville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne ouest et Gardenville", + "geography": { + "type": "Point", + "coordinates": [ + -73.5059142156166, + 45.5279474946839 + ] + } + }, + { + "id": "1983", + "code": "31983", + "data": { + "gtfs": { + "stop_id": "1983", + "stop_code": "31983", + "stop_name": "Le Moyne ouest et Gardenville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne ouest et Gardenville", + "geography": { + "type": "Point", + "coordinates": [ + -73.505947631675, + 45.5282002838378 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6200654480512 + }, + "name": "Le Moyne ouest et Gardenville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.505931, + 45.528074 + ] + }, + "is_frozen": false, + "integer_id": 545, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.504327, + 45.530821 + ] + }, + "id": 546, + "properties": { + "id": "91d2eb2a-bbfe-4d2d-887b-5ab9a417b7e2", + "code": "31954", + "data": { + "stops": [ + { + "id": "1954", + "code": "31954", + "data": { + "gtfs": { + "stop_id": "1954", + "stop_code": "31954", + "stop_name": "Le Moyne ouest et boul. Quinn", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne ouest et boul. Quinn", + "geography": { + "type": "Point", + "coordinates": [ + -73.5040989121053, + 45.5306412392089 + ] + } + }, + { + "id": "3620", + "code": "33620", + "data": { + "gtfs": { + "stop_id": "3620", + "stop_code": "33620", + "stop_name": "Le Moyne ouest et boul. Quinn", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne ouest et boul. Quinn", + "geography": { + "type": "Point", + "coordinates": [ + -73.5040965168375, + 45.5308900473782 + ] + } + }, + { + "id": "3859", + "code": "33859", + "data": { + "gtfs": { + "stop_id": "3859", + "stop_code": "33859", + "stop_name": "boul. Quinn et Le Moyne ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Quinn et Le Moyne ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.5043391947621, + 45.530734647084 + ] + } + }, + { + "id": "4117", + "code": "34117", + "data": { + "gtfs": { + "stop_id": "4117", + "stop_code": "34117", + "stop_name": "boul. Quinn et Le Moyne ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Quinn et Le Moyne ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.5045571768484, + 45.5310015037364 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6665423279462 + }, + "name": "Le Moyne ouest et boul. Quinn", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.504327, + 45.530821 + ] + }, + "is_frozen": false, + "integer_id": 546, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.503209, + 45.532076 + ] + }, + "id": 547, + "properties": { + "id": "dac4f8d3-28c8-4cad-bd6d-c9e7c6bfb82b", + "code": "31955", + "data": { + "stops": [ + { + "id": "1955", + "code": "31955", + "data": { + "gtfs": { + "stop_id": "1955", + "stop_code": "31955", + "stop_name": "Le Moyne ouest et De Maricourt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne ouest et De Maricourt", + "geography": { + "type": "Point", + "coordinates": [ + -73.5032101932649, + 45.5319430928748 + ] + } + }, + { + "id": "1981", + "code": "31981", + "data": { + "gtfs": { + "stop_id": "1981", + "stop_code": "31981", + "stop_name": "Le Moyne ouest et De Maricourt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne ouest et De Maricourt", + "geography": { + "type": "Point", + "coordinates": [ + -73.5032075926681, + 45.5322083392224 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6877780885986 + }, + "name": "Le Moyne ouest et De Maricourt", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.503209, + 45.532076 + ] + }, + "is_frozen": false, + "integer_id": 547, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.50217, + 45.533538 + ] + }, + "id": 548, + "properties": { + "id": "95af381b-5ec5-4208-a73c-8f86d7b96b62", + "code": "31956", + "data": { + "stops": [ + { + "id": "1956", + "code": "31956", + "data": { + "gtfs": { + "stop_id": "1956", + "stop_code": "31956", + "stop_name": "Le Moyne ouest et Saint-Jean", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne ouest et Saint-Jean", + "geography": { + "type": "Point", + "coordinates": [ + -73.5021678370792, + 45.5334363118442 + ] + } + }, + { + "id": "1980", + "code": "31980", + "data": { + "gtfs": { + "stop_id": "1980", + "stop_code": "31980", + "stop_name": "Le Moyne ouest et Saint-Jean", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne ouest et Saint-Jean", + "geography": { + "type": "Point", + "coordinates": [ + -73.502171792187, + 45.5336391065047 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7125182516185 + }, + "name": "Le Moyne ouest et Saint-Jean", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.50217, + 45.533538 + ] + }, + "is_frozen": false, + "integer_id": 548, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.493317, + 45.539001 + ] + }, + "id": 549, + "properties": { + "id": "df883f3f-5d1a-4061-a525-ec3be165a7a9", + "code": "31961", + "data": { + "stops": [ + { + "id": "1961", + "code": "31961", + "data": { + "gtfs": { + "stop_id": "1961", + "stop_code": "31961", + "stop_name": "De Gentilly est et ECOLE SECONDAIRE JACQUES-ROUSSEAU", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Gentilly est et ECOLE SECONDAIRE JACQUES-ROUSSEAU", + "geography": { + "type": "Point", + "coordinates": [ + -73.4933171524409, + 45.5390011584707 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8049834249642 + }, + "name": "De Gentilly est et ECOLE SECONDAIRE JACQUES-ROUSSEAU", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493317152, + 45.539001158 + ] + }, + "is_frozen": false, + "integer_id": 549, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.484585, + 45.553142 + ] + }, + "id": 550, + "properties": { + "id": "717d6b36-87fa-4b34-a418-6b20c1bc0d29", + "code": "31963", + "data": { + "stops": [ + { + "id": "1963", + "code": "31963", + "data": { + "gtfs": { + "stop_id": "1963", + "stop_code": "31963", + "stop_name": "Adoncour et civique 601", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et civique 601", + "geography": { + "type": "Point", + "coordinates": [ + -73.4845852686755, + 45.5531420463443 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0444447922548 + }, + "name": "Adoncour et civique 601", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.484585269, + 45.553142046 + ] + }, + "is_frozen": false, + "integer_id": 550, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.484627, + 45.557145 + ] + }, + "id": 551, + "properties": { + "id": "a77c95ec-f278-40ce-a777-9f8b498d4367", + "code": "31964", + "data": { + "stops": [ + { + "id": "1964", + "code": "31964", + "data": { + "gtfs": { + "stop_id": "1964", + "stop_code": "31964", + "stop_name": "Adoncour et des Pluviers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et des Pluviers", + "geography": { + "type": "Point", + "coordinates": [ + -73.4846268121597, + 45.5571453701009 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1122693796142 + }, + "name": "Adoncour et des Pluviers", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.484626812, + 45.55714537 + ] + }, + "is_frozen": false, + "integer_id": 551, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.485009, + 45.559478 + ] + }, + "id": 552, + "properties": { + "id": "f1b172ed-b501-4e36-bd1c-2425165ce50b", + "code": "31965", + "data": { + "stops": [ + { + "id": "1965", + "code": "31965", + "data": { + "gtfs": { + "stop_id": "1965", + "stop_code": "31965", + "stop_name": "Adoncour et des Alouettes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et des Alouettes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4850089236193, + 45.5594776536681 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1517896918588 + }, + "name": "Adoncour et des Alouettes", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.485008924, + 45.559477654 + ] + }, + "is_frozen": false, + "integer_id": 552, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479134, + 45.564214 + ] + }, + "id": 553, + "properties": { + "id": "4f581479-b61b-497b-82d2-4c290ee6a857", + "code": "31970", + "data": { + "stops": [ + { + "id": "1970", + "code": "31970", + "data": { + "gtfs": { + "stop_id": "1970", + "stop_code": "31970", + "stop_name": "Adoncour et boul. Jean-Paul-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et boul. Jean-Paul-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4791338030877, + 45.5642136407893 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2320554553273 + }, + "name": "Adoncour et boul. Jean-Paul-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479133803, + 45.564213641 + ] + }, + "is_frozen": false, + "integer_id": 553, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47369, + 45.556612 + ] + }, + "id": 554, + "properties": { + "id": "f5001112-5d1e-4489-87be-a34e9ded0d46", + "code": "31971", + "data": { + "stops": [ + { + "id": "1971", + "code": "31971", + "data": { + "gtfs": { + "stop_id": "1971", + "stop_code": "31971", + "stop_name": "boul. Fernand-Lafontaine et des Hirondelles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et des Hirondelles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4736010528362, + 45.5567580882882 + ] + } + }, + { + "id": "5147", + "code": "35147", + "data": { + "gtfs": { + "stop_id": "5147", + "stop_code": "35147", + "stop_name": "boul. Fernand-Lafontaine et des Hirondelles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et des Hirondelles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4737786355557, + 45.5564666340839 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.103238278997 + }, + "name": "boul. Fernand-Lafontaine et des Hirondelles", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.473689844, + 45.556612361 + ] + }, + "is_frozen": false, + "integer_id": 554, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475478, + 45.555457 + ] + }, + "id": 555, + "properties": { + "id": "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", + "code": "31972", + "data": { + "stops": [ + { + "id": "1972", + "code": "31972", + "data": { + "gtfs": { + "stop_id": "1972", + "stop_code": "31972", + "stop_name": "boul. Fernand-Lafontaine et des Hirondelles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et des Hirondelles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4753867434118, + 45.5556115037945 + ] + } + }, + { + "id": "5146", + "code": "35146", + "data": { + "gtfs": { + "stop_id": "5146", + "stop_code": "35146", + "stop_name": "boul. Fernand-Lafontaine et des Hirondelles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et des Hirondelles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4755699682849, + 45.5553021196546 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.083659970014 + }, + "name": "boul. Fernand-Lafontaine et des Hirondelles", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475478356, + 45.555456812 + ] + }, + "is_frozen": false, + "integer_id": 555, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.480376, + 45.552869 + ] + }, + "id": 556, + "properties": { + "id": "a388aa98-4c24-4671-8a33-a0e95f9d5ada", + "code": "31973", + "data": { + "stops": [ + { + "id": "1973", + "code": "31973", + "data": { + "gtfs": { + "stop_id": "1973", + "stop_code": "31973", + "stop_name": "boul. Fernand-Lafontaine et des Grands-Ducs", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et des Grands-Ducs", + "geography": { + "type": "Point", + "coordinates": [ + -73.4802915277726, + 45.5530103252764 + ] + } + }, + { + "id": "5145", + "code": "35145", + "data": { + "gtfs": { + "stop_id": "5145", + "stop_code": "35145", + "stop_name": "boul. Fernand-Lafontaine et des Grands-Ducs", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et des Grands-Ducs", + "geography": { + "type": "Point", + "coordinates": [ + -73.4804599226214, + 45.5527278005706 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0398204169009 + }, + "name": "boul. Fernand-Lafontaine et des Grands-Ducs", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.480375725, + 45.552869063 + ] + }, + "is_frozen": false, + "integer_id": 556, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483905, + 45.551347 + ] + }, + "id": 557, + "properties": { + "id": "fc1c0989-eb4e-4e77-b261-f952dd40601e", + "code": "31974", + "data": { + "stops": [ + { + "id": "1974", + "code": "31974", + "data": { + "gtfs": { + "stop_id": "1974", + "stop_code": "31974", + "stop_name": "boul. Fernand-Lafontaine et Adoncour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et Adoncour", + "geography": { + "type": "Point", + "coordinates": [ + -73.48362847644, + 45.5513015224943 + ] + } + }, + { + "id": "4126", + "code": "34126", + "data": { + "gtfs": { + "stop_id": "4126", + "stop_code": "34126", + "stop_name": "Adoncour et boul. Fernand-Lafontaine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et boul. Fernand-Lafontaine", + "geography": { + "type": "Point", + "coordinates": [ + -73.484182012827, + 45.5513926917185 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0140394601801 + }, + "name": "boul. Fernand-Lafontaine et Adoncour", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483905245, + 45.551347107 + ] + }, + "is_frozen": false, + "integer_id": 557, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492418, + 45.540298 + ] + }, + "id": 558, + "properties": { + "id": "4e53f32e-03c3-4701-94aa-590f28b5adcd", + "code": "31975", + "data": { + "stops": [ + { + "id": "1975", + "code": "31975", + "data": { + "gtfs": { + "stop_id": "1975", + "stop_code": "31975", + "stop_name": "De Gentilly est et d'Auvergne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Gentilly est et d'Auvergne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4924178379863, + 45.5402976741908 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8269311573969 + }, + "name": "De Gentilly est et d'Auvergne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492417838, + 45.540297674 + ] + }, + "is_frozen": false, + "integer_id": 558, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494577, + 45.537924 + ] + }, + "id": 559, + "properties": { + "id": "04b348b3-bb46-4177-9e4b-604bf8d96a58", + "code": "31976", + "data": { + "stops": [ + { + "id": "1976", + "code": "31976", + "data": { + "gtfs": { + "stop_id": "1976", + "stop_code": "31976", + "stop_name": "De Gentilly est et de Normandie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Gentilly est et de Normandie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4947681778235, + 45.5378997395523 + ] + } + }, + { + "id": "5595", + "code": "30344", + "data": { + "gtfs": { + "stop_id": "5595", + "stop_code": "30344", + "stop_name": "De Gentilly est et de Normandie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Gentilly est et de Normandie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4943849150789, + 45.537948244194 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7867500421283 + }, + "name": "De Gentilly est et de Normandie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494576546, + 45.537923992 + ] + }, + "is_frozen": false, + "integer_id": 559, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.496347, + 45.536648 + ] + }, + "id": 560, + "properties": { + "id": "4ae33b06-30dd-4ad3-8df9-3ce610880853", + "code": "31977", + "data": { + "stops": [ + { + "id": "1977", + "code": "31977", + "data": { + "gtfs": { + "stop_id": "1977", + "stop_code": "31977", + "stop_name": "De Gentilly est et Thurber", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Gentilly est et Thurber", + "geography": { + "type": "Point", + "coordinates": [ + -73.496018301314, + 45.536649015689 + ] + } + }, + { + "id": "3199", + "code": "33199", + "data": { + "gtfs": { + "stop_id": "3199", + "stop_code": "33199", + "stop_name": "Thurber et De Gentilly est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Thurber et De Gentilly est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4966748918624, + 45.5366459970362 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7651440736972 + }, + "name": "De Gentilly est et Thurber", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.496346597, + 45.536647506 + ] + }, + "is_frozen": false, + "integer_id": 560, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.504987, + 45.529486 + ] + }, + "id": 561, + "properties": { + "id": "3b0f936b-399c-4201-853b-8259a72529d0", + "code": "31982", + "data": { + "stops": [ + { + "id": "1982", + "code": "31982", + "data": { + "gtfs": { + "stop_id": "1982", + "stop_code": "31982", + "stop_name": "Le Moyne ouest et de Châteauguay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne ouest et de Châteauguay", + "geography": { + "type": "Point", + "coordinates": [ + -73.5050114677919, + 45.5295974987597 + ] + } + }, + { + "id": "3807", + "code": "33807", + "data": { + "gtfs": { + "stop_id": "3807", + "stop_code": "33807", + "stop_name": "Le Moyne ouest et de Châteauguay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne ouest et de Châteauguay", + "geography": { + "type": "Point", + "coordinates": [ + -73.5049628597716, + 45.5293735957824 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6439544346788 + }, + "name": "Le Moyne ouest et de Châteauguay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.504987, + 45.529486 + ] + }, + "is_frozen": false, + "integer_id": 561, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.51068, + 45.52743 + ] + }, + "id": 562, + "properties": { + "id": "aa2ca75c-2e9d-4072-a531-98e6423e4538", + "code": "31985", + "data": { + "stops": [ + { + "id": "1985", + "code": "31985", + "data": { + "gtfs": { + "stop_id": "1985", + "stop_code": "31985", + "stop_name": "boul. Desaulniers et Marmier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et Marmier", + "geography": { + "type": "Point", + "coordinates": [ + -73.5109177767549, + 45.5274342177504 + ] + } + }, + { + "id": "4199", + "code": "34199", + "data": { + "gtfs": { + "stop_id": "4199", + "stop_code": "34199", + "stop_name": "boul. Desaulniers et Marmier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et Marmier", + "geography": { + "type": "Point", + "coordinates": [ + -73.5104423915266, + 45.5274254383731 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6091704947296 + }, + "name": "boul. Desaulniers et Marmier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.51068, + 45.52743 + ] + }, + "is_frozen": false, + "integer_id": 562, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.510316, + 45.524566 + ] + }, + "id": 563, + "properties": { + "id": "94f3304d-66ff-42a6-bd12-7828cf5efc64", + "code": "31987", + "data": { + "stops": [ + { + "id": "1987", + "code": "31987", + "data": { + "gtfs": { + "stop_id": "1987", + "stop_code": "31987", + "stop_name": "boul. Desaulniers et Marquette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et Marquette", + "geography": { + "type": "Point", + "coordinates": [ + -73.5106828728066, + 45.5247705066395 + ] + } + }, + { + "id": "4006", + "code": "34006", + "data": { + "gtfs": { + "stop_id": "4006", + "stop_code": "34006", + "stop_name": "boul. Desaulniers et Marquette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et Marquette", + "geography": { + "type": "Point", + "coordinates": [ + -73.5099494769065, + 45.5243613546066 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5607228817578 + }, + "name": "boul. Desaulniers et Marquette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.510316, + 45.524566 + ] + }, + "is_frozen": false, + "integer_id": 563, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.509398, + 45.52263 + ] + }, + "id": 564, + "properties": { + "id": "7dd9be07-f5cb-4f00-86f7-d61821676a78", + "code": "31988", + "data": { + "stops": [ + { + "id": "1988", + "code": "31988", + "data": { + "gtfs": { + "stop_id": "1988", + "stop_code": "31988", + "stop_name": "boul. Desaulniers et Préfontaine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et Préfontaine", + "geography": { + "type": "Point", + "coordinates": [ + -73.5096801841953, + 45.5227032024811 + ] + } + }, + { + "id": "4008", + "code": "34008", + "data": { + "gtfs": { + "stop_id": "4008", + "stop_code": "34008", + "stop_name": "boul. Desaulniers et Saint-Georges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et Saint-Georges", + "geography": { + "type": "Point", + "coordinates": [ + -73.5091154952568, + 45.5225572454103 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5279813075499 + }, + "name": "boul. Desaulniers et Préfontaine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.50939784, + 45.522630224 + ] + }, + "is_frozen": false, + "integer_id": 564, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.507982, + 45.519547 + ] + }, + "id": 565, + "properties": { + "id": "01cbab8a-50a9-42e0-9d05-820a9dd4fa51", + "code": "31989", + "data": { + "stops": [ + { + "id": "1989", + "code": "31989", + "data": { + "gtfs": { + "stop_id": "1989", + "stop_code": "31989", + "stop_name": "boul. Desaulniers et Mercier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et Mercier", + "geography": { + "type": "Point", + "coordinates": [ + -73.5079821831469, + 45.519547364834 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4758449483243 + }, + "name": "boul. Desaulniers et Mercier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507982183, + 45.519547365 + ] + }, + "is_frozen": false, + "integer_id": 565, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.507256, + 45.518217 + ] + }, + "id": 566, + "properties": { + "id": "c28a8fa6-886c-4f1e-b291-00d0237d02dd", + "code": "31990", + "data": { + "stops": [ + { + "id": "1990", + "code": "31990", + "data": { + "gtfs": { + "stop_id": "1990", + "stop_code": "31990", + "stop_name": "boul. Desaulniers et La Salle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et La Salle", + "geography": { + "type": "Point", + "coordinates": [ + -73.5072558809138, + 45.518217293316 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4533537962071 + }, + "name": "boul. Desaulniers et La Salle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507255881, + 45.518217293 + ] + }, + "is_frozen": false, + "integer_id": 566, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.506621, + 45.517032 + ] + }, + "id": 567, + "properties": { + "id": "eab3c393-e690-4d4a-921c-9c45533c53f2", + "code": "31991", + "data": { + "stops": [ + { + "id": "1991", + "code": "31991", + "data": { + "gtfs": { + "stop_id": "1991", + "stop_code": "31991", + "stop_name": "boul. Desaulniers et boul. La Fayette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et boul. La Fayette", + "geography": { + "type": "Point", + "coordinates": [ + -73.506621457481, + 45.517032397298 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4333188577177 + }, + "name": "boul. Desaulniers et boul. La Fayette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.506621457, + 45.517032397 + ] + }, + "is_frozen": false, + "integer_id": 567, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.488845, + 45.468981 + ] + }, + "id": 568, + "properties": { + "id": "d83daa69-bf92-4b93-8173-1c0fd22cbec0", + "code": "31992", + "data": { + "stops": [ + { + "id": "1992", + "code": "31992", + "data": { + "gtfs": { + "stop_id": "1992", + "stop_code": "31992", + "stop_name": "av. Van Dyck et Valois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Van Dyck et Valois", + "geography": { + "type": "Point", + "coordinates": [ + -73.4886482904907, + 45.4690388129311 + ] + } + }, + { + "id": "4764", + "code": "34764", + "data": { + "gtfs": { + "stop_id": "4764", + "stop_code": "34764", + "stop_name": "av. Van Dyck et Valois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Van Dyck et Valois", + "geography": { + "type": "Point", + "coordinates": [ + -73.4890409565841, + 45.4689222165261 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.621881248033 + }, + "name": "av. Van Dyck et Valois", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.488844624, + 45.468980515 + ] + }, + "is_frozen": false, + "integer_id": 568, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492559, + 45.469105 + ] + }, + "id": 569, + "properties": { + "id": "66a0749c-2a5b-458d-b059-307f555cb93a", + "code": "31993", + "data": { + "stops": [ + { + "id": "1993", + "code": "31993", + "data": { + "gtfs": { + "stop_id": "1993", + "stop_code": "31993", + "stop_name": "av. Van Dyck et Valois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Van Dyck et Valois", + "geography": { + "type": "Point", + "coordinates": [ + -73.4922803020091, + 45.4691582020658 + ] + } + }, + { + "id": "4763", + "code": "34763", + "data": { + "gtfs": { + "stop_id": "4763", + "stop_code": "34763", + "stop_name": "av. Van Dyck et Voltaire", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Van Dyck et Voltaire", + "geography": { + "type": "Point", + "coordinates": [ + -73.4928381372902, + 45.4690511285486 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6239750868966 + }, + "name": "av. Van Dyck et Valois", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.49255922, + 45.469104665 + ] + }, + "is_frozen": false, + "integer_id": 569, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494446, + 45.469993 + ] + }, + "id": 570, + "properties": { + "id": "c5effd0a-a9b0-4cfe-8176-06c99313f58b", + "code": "31994", + "data": { + "stops": [ + { + "id": "1994", + "code": "31994", + "data": { + "gtfs": { + "stop_id": "1994", + "stop_code": "31994", + "stop_name": "av. Van Dyck et place Vimy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Van Dyck et place Vimy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4944459446823, + 45.4699930811872 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6389589736198 + }, + "name": "av. Van Dyck et place Vimy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494445945, + 45.469993081 + ] + }, + "is_frozen": false, + "integer_id": 570, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.496704, + 45.472616 + ] + }, + "id": 571, + "properties": { + "id": "9e1adf1c-c578-4c50-baba-31b7f0c157c4", + "code": "31997", + "data": { + "stops": [ + { + "id": "1997", + "code": "31997", + "data": { + "gtfs": { + "stop_id": "1997", + "stop_code": "31997", + "stop_name": "boul. Marie-Victorin et Venise", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Venise", + "geography": { + "type": "Point", + "coordinates": [ + -73.4967042909713, + 45.4726161609382 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.683203524927 + }, + "name": "boul. Marie-Victorin et Venise", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.496704291, + 45.472616161 + ] + }, + "is_frozen": false, + "integer_id": 571, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.49781, + 45.474542 + ] + }, + "id": 572, + "properties": { + "id": "2e10a277-1746-4c1f-9808-3de94d853988", + "code": "31998", + "data": { + "stops": [ + { + "id": "1998", + "code": "31998", + "data": { + "gtfs": { + "stop_id": "1998", + "stop_code": "31998", + "stop_name": "boul. Marie-Victorin et av. Victor-Hugo", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et av. Victor-Hugo", + "geography": { + "type": "Point", + "coordinates": [ + -73.4978104790396, + 45.4745424977411 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7156997222103 + }, + "name": "boul. Marie-Victorin et av. Victor-Hugo", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.497810479, + 45.474542498 + ] + }, + "is_frozen": false, + "integer_id": 572, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.493459, + 45.474604 + ] + }, + "id": 573, + "properties": { + "id": "be011751-8885-454f-b767-5c0f1402d83f", + "code": "32000", + "data": { + "stops": [ + { + "id": "2000", + "code": "32000", + "data": { + "gtfs": { + "stop_id": "2000", + "stop_code": "32000", + "stop_name": "av. Victor-Hugo et Vallerand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victor-Hugo et Vallerand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4935745735365, + 45.47453276813 + ] + } + }, + { + "id": "5715", + "code": "30484", + "data": { + "gtfs": { + "stop_id": "5715", + "stop_code": "30484", + "stop_name": "av. Victor-Hugo et Vallerand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victor-Hugo et Vallerand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4933426761635, + 45.4746745852178 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7167318307594 + }, + "name": "av. Victor-Hugo et Vallerand", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493458625, + 45.474603677 + ] + }, + "is_frozen": false, + "integer_id": 573, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483827, + 45.473363 + ] + }, + "id": 574, + "properties": { + "id": "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", + "code": "32003", + "data": { + "stops": [ + { + "id": "2003", + "code": "32003", + "data": { + "gtfs": { + "stop_id": "2003", + "stop_code": "32003", + "stop_name": "boul. Provencher et Péloquin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Provencher et Péloquin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4838274910851, + 45.4733630153043 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6958021311269 + }, + "name": "boul. Provencher et Péloquin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483827491, + 45.473363015 + ] + }, + "is_frozen": false, + "integer_id": 574, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478926, + 45.473351 + ] + }, + "id": 575, + "properties": { + "id": "2ef5dac7-c226-43bb-8534-6642e7a8ab89", + "code": "32004", + "data": { + "stops": [ + { + "id": "2004", + "code": "32004", + "data": { + "gtfs": { + "stop_id": "2004", + "stop_code": "32004", + "stop_name": "boul. Provencher et av. Platon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Provencher et av. Platon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4791057425497, + 45.4732375321134 + ] + } + }, + { + "id": "4757", + "code": "34757", + "data": { + "gtfs": { + "stop_id": "4757", + "stop_code": "34757", + "stop_name": "boul. Provencher et av. Platon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Provencher et av. Platon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4787471861069, + 45.4734637083793 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6955930370556 + }, + "name": "boul. Provencher et av. Platon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.478926464, + 45.47335062 + ] + }, + "is_frozen": false, + "integer_id": 575, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47474, + 45.473288 + ] + }, + "id": 576, + "properties": { + "id": "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", + "code": "32005", + "data": { + "stops": [ + { + "id": "2005", + "code": "32005", + "data": { + "gtfs": { + "stop_id": "2005", + "stop_code": "32005", + "stop_name": "boul. Provencher et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Provencher et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4747401085157, + 45.473288366194 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6945428622491 + }, + "name": "boul. Provencher et boul. Pelletier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474740109, + 45.473288366 + ] + }, + "is_frozen": false, + "integer_id": 576, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482558, + 45.462218 + ] + }, + "id": 577, + "properties": { + "id": "2ecca6ee-e688-465d-a0b1-929435b41047", + "code": "32007", + "data": { + "stops": [ + { + "id": "2007", + "code": "32007", + "data": { + "gtfs": { + "stop_id": "2007", + "stop_code": "32007", + "stop_name": "av. Trahan et Trudeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Trahan et Trudeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4826518836893, + 45.4623450660328 + ] + } + }, + { + "id": "2039", + "code": "32039", + "data": { + "gtfs": { + "stop_id": "2039", + "stop_code": "32039", + "stop_name": "av. Trahan et Trudeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Trahan et Trudeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.482465033158, + 45.4620911971613 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5078516574839 + }, + "name": "av. Trahan et Trudeau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482558458, + 45.462218132 + ] + }, + "is_frozen": false, + "integer_id": 577, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482857, + 45.461002 + ] + }, + "id": 578, + "properties": { + "id": "57b17011-c22d-458b-b4e5-e636c5436ed9", + "code": "32008", + "data": { + "stops": [ + { + "id": "2008", + "code": "32008", + "data": { + "gtfs": { + "stop_id": "2008", + "stop_code": "32008", + "stop_name": "av. Trahan et Trottier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Trahan et Trottier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4828565748106, + 45.4610024385892 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4873565356849 + }, + "name": "av. Trahan et Trottier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482856575, + 45.461002439 + ] + }, + "is_frozen": false, + "integer_id": 578, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483289, + 45.459819 + ] + }, + "id": 579, + "properties": { + "id": "e51dbc0e-9385-4f59-b401-fd29a59c8b5b", + "code": "32009", + "data": { + "stops": [ + { + "id": "2009", + "code": "32009", + "data": { + "gtfs": { + "stop_id": "2009", + "stop_code": "32009", + "stop_name": "av. Trahan et place Trahan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Trahan et place Trahan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4833460049341, + 45.4598956957834 + ] + } + }, + { + "id": "2037", + "code": "32037", + "data": { + "gtfs": { + "stop_id": "2037", + "stop_code": "32037", + "stop_name": "av. Trahan et place Trahan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Trahan et place Trahan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4832316288827, + 45.4597429979244 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.467412286956 + }, + "name": "av. Trahan et place Trahan", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483288817, + 45.459819347 + ] + }, + "is_frozen": false, + "integer_id": 579, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483682, + 45.457236 + ] + }, + "id": 580, + "properties": { + "id": "258cb5fd-8795-41af-8e07-3de8ea977e23", + "code": "32011", + "data": { + "stops": [ + { + "id": "2011", + "code": "32011", + "data": { + "gtfs": { + "stop_id": "2011", + "stop_code": "32011", + "stop_name": "av. Trahan et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Trahan et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4837743155535, + 45.4572726945001 + ] + } + }, + { + "id": "2035", + "code": "32035", + "data": { + "gtfs": { + "stop_id": "2035", + "stop_code": "32035", + "stop_name": "av. Trahan et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Trahan et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4835905479064, + 45.4571997614795 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4238710740632 + }, + "name": "av. Trahan et boul. de Rome", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483682432, + 45.457236228 + ] + }, + "is_frozen": false, + "integer_id": 580, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483066, + 45.454869 + ] + }, + "id": 581, + "properties": { + "id": "f92fabb3-5544-4aa3-8461-0c7fc17380ef", + "code": "32014", + "data": { + "stops": [ + { + "id": "2014", + "code": "32014", + "data": { + "gtfs": { + "stop_id": "2014", + "stop_code": "32014", + "stop_name": "av. Saguenay et croiss. de Séville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Saguenay et croiss. de Séville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4830950898415, + 45.4549529956985 + ] + } + }, + { + "id": "2033", + "code": "32033", + "data": { + "gtfs": { + "stop_id": "2033", + "stop_code": "32033", + "stop_name": "av. Saguenay et croiss. de Séville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Saguenay et croiss. de Séville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4830377006572, + 45.4547847052213 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3839716043883 + }, + "name": "av. Saguenay et croiss. de Séville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483066395, + 45.45486885 + ] + }, + "is_frozen": false, + "integer_id": 581, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479167, + 45.452676 + ] + }, + "id": 582, + "properties": { + "id": "c25adb1f-635e-4881-a89d-af8a9ea5ca92", + "code": "32017", + "data": { + "stops": [ + { + "id": "2017", + "code": "32017", + "data": { + "gtfs": { + "stop_id": "2017", + "stop_code": "32017", + "stop_name": "av. Saguenay et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Saguenay et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4794102847993, + 45.4525838090003 + ] + } + }, + { + "id": "2030", + "code": "32030", + "data": { + "gtfs": { + "stop_id": "2030", + "stop_code": "32030", + "stop_name": "av. Saguenay et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Saguenay et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.478924030589, + 45.4527681501775 + ] + } + }, + { + "id": "2765", + "code": "32765", + "data": { + "gtfs": { + "stop_id": "2765", + "stop_code": "32765", + "stop_name": "boul. Pelletier et av. Saguenay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et av. Saguenay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4793877157834, + 45.4527541737192 + ] + } + }, + { + "id": "2778", + "code": "32778", + "data": { + "gtfs": { + "stop_id": "2778", + "stop_code": "32778", + "stop_name": "boul. Pelletier et av. Saguenay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et av. Saguenay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4789973436773, + 45.4525881934818 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3470177050178 + }, + "name": "av. Saguenay et boul. Pelletier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479167158, + 45.45267598 + ] + }, + "is_frozen": false, + "integer_id": 582, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475834, + 45.455406 + ] + }, + "id": 583, + "properties": { + "id": "91baaa10-e8cd-406f-a7c1-c8e2465ade3f", + "code": "32018", + "data": { + "stops": [ + { + "id": "2018", + "code": "32018", + "data": { + "gtfs": { + "stop_id": "2018", + "stop_code": "32018", + "stop_name": "av. Sartre et croiss. Samson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Sartre et croiss. Samson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4757123868127, + 45.4552768246444 + ] + } + }, + { + "id": "2028", + "code": "32028", + "data": { + "gtfs": { + "stop_id": "2028", + "stop_code": "32028", + "stop_name": "av. Sartre et croiss. Samson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Sartre et croiss. Samson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4759554954018, + 45.4555346049764 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.393019418759 + }, + "name": "av. Sartre et croiss. Samson", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475833941, + 45.455405715 + ] + }, + "is_frozen": false, + "integer_id": 583, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475868, + 45.456786 + ] + }, + "id": 584, + "properties": { + "id": "1782a1a7-eddc-4228-a7a8-bf733f339e68", + "code": "32019", + "data": { + "stops": [ + { + "id": "2019", + "code": "32019", + "data": { + "gtfs": { + "stop_id": "2019", + "stop_code": "32019", + "stop_name": "av. Sartre et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Sartre et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4757457421196, + 45.4564344111039 + ] + } + }, + { + "id": "2027", + "code": "32027", + "data": { + "gtfs": { + "stop_id": "2027", + "stop_code": "32027", + "stop_name": "av. Trépanier et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Trépanier et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4759042356587, + 45.4567448930274 + ] + } + }, + { + "id": "2658", + "code": "32658", + "data": { + "gtfs": { + "stop_id": "2658", + "stop_code": "32658", + "stop_name": "boul. de Rome et av. Sartre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. Sartre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4760664267569, + 45.456404064702 + ] + } + }, + { + "id": "3457", + "code": "33457", + "data": { + "gtfs": { + "stop_id": "3457", + "stop_code": "33457", + "stop_name": "boul. de Rome et av. Trépanier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. Trépanier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4756693138748, + 45.4566600989227 + ] + } + }, + { + "id": "5908", + "code": "30786", + "data": { + "gtfs": { + "stop_id": "5908", + "stop_code": "30786", + "stop_name": "av. Trépanier et de Trinidad", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Trépanier et de Trinidad", + "geography": { + "type": "Point", + "coordinates": [ + -73.4757127702682, + 45.4571684516166 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4162869575821 + }, + "name": "av. Sartre et boul. de Rome", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47586787, + 45.456786258 + ] + }, + "is_frozen": false, + "integer_id": 584, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475019, + 45.458398 + ] + }, + "id": 585, + "properties": { + "id": "54e2350c-1dbf-481f-9610-f78cb1a71b49", + "code": "32020", + "data": { + "stops": [ + { + "id": "2020", + "code": "32020", + "data": { + "gtfs": { + "stop_id": "2020", + "stop_code": "32020", + "stop_name": "av. Trépanier et Tunisie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Trépanier et Tunisie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4751184418758, + 45.4582968951225 + ] + } + }, + { + "id": "2026", + "code": "32026", + "data": { + "gtfs": { + "stop_id": "2026", + "stop_code": "32026", + "stop_name": "Tunisie et av. Trépanier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Tunisie et av. Trépanier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4749193300604, + 45.4584993889361 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4434556352894 + }, + "name": "av. Trépanier et Tunisie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475018886, + 45.458398142 + ] + }, + "is_frozen": false, + "integer_id": 585, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474191, + 45.459604 + ] + }, + "id": 586, + "properties": { + "id": "ef6b8e74-cf7c-405a-a81c-caa03b93a96a", + "code": "32021", + "data": { + "stops": [ + { + "id": "2021", + "code": "32021", + "data": { + "gtfs": { + "stop_id": "2021", + "stop_code": "32021", + "stop_name": "Tunisie et de Trinidad", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Tunisie et de Trinidad", + "geography": { + "type": "Point", + "coordinates": [ + -73.4742352244161, + 45.4594395799304 + ] + } + }, + { + "id": "3815", + "code": "33815", + "data": { + "gtfs": { + "stop_id": "3815", + "stop_code": "33815", + "stop_name": "Tunisie et de Trinidad", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Tunisie et de Trinidad", + "geography": { + "type": "Point", + "coordinates": [ + -73.4741471658524, + 45.4597680052478 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4637786690182 + }, + "name": "Tunisie et de Trinidad", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474191195, + 45.459603793 + ] + }, + "is_frozen": false, + "integer_id": 586, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.476359, + 45.462062 + ] + }, + "id": 587, + "properties": { + "id": "be3bd929-da81-47c1-9a06-fee0adc72da5", + "code": "32024", + "data": { + "stops": [ + { + "id": "2024", + "code": "32024", + "data": { + "gtfs": { + "stop_id": "2024", + "stop_code": "32024", + "stop_name": "Tunisie et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Tunisie et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4761282535981, + 45.4618065960419 + ] + } + }, + { + "id": "2726", + "code": "32726", + "data": { + "gtfs": { + "stop_id": "2726", + "stop_code": "32726", + "stop_name": "boul. Pelletier et Tunisie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et Tunisie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4765899076213, + 45.4619375792022 + ] + } + }, + { + "id": "4848", + "code": "34848", + "data": { + "gtfs": { + "stop_id": "4848", + "stop_code": "34848", + "stop_name": "boul. Pelletier et Tunisie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et Tunisie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4765369063769, + 45.4623183162477 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5052270741293 + }, + "name": "Tunisie et boul. Pelletier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.476359081, + 45.462062456 + ] + }, + "is_frozen": false, + "integer_id": 587, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483807, + 45.452896 + ] + }, + "id": 588, + "properties": { + "id": "f889063d-4196-4990-bc8c-d6010d0c0192", + "code": "32032", + "data": { + "stops": [ + { + "id": "2032", + "code": "32032", + "data": { + "gtfs": { + "stop_id": "2032", + "stop_code": "32032", + "stop_name": "av. Saguenay et croiss. Saturne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Saguenay et croiss. Saturne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4836951654006, + 45.4528616694959 + ] + } + }, + { + "id": "3812", + "code": "33812", + "data": { + "gtfs": { + "stop_id": "3812", + "stop_code": "33812", + "stop_name": "av. Saguenay et croiss. Saturne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Saguenay et croiss. Saturne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4839193942984, + 45.4529309358152 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3507303606949 + }, + "name": "av. Saguenay et croiss. Saturne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48380728, + 45.452896303 + ] + }, + "is_frozen": false, + "integer_id": 588, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483603, + 45.458404 + ] + }, + "id": 589, + "properties": { + "id": "d2127fc0-fbc1-4459-b6f9-07c0b8d9cdbe", + "code": "32036", + "data": { + "stops": [ + { + "id": "2036", + "code": "32036", + "data": { + "gtfs": { + "stop_id": "2036", + "stop_code": "32036", + "stop_name": "av. Trahan et Trudeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Trahan et Trudeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4835131855391, + 45.458325938049 + ] + } + }, + { + "id": "4341", + "code": "34341", + "data": { + "gtfs": { + "stop_id": "4341", + "stop_code": "34341", + "stop_name": "av. Trahan et Trudeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Trahan et Trudeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.48369189749, + 45.4584819518164 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4435534503618 + }, + "name": "av. Trahan et Trudeau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483602542, + 45.458403945 + ] + }, + "is_frozen": false, + "integer_id": 589, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482743, + 45.460791 + ] + }, + "id": 590, + "properties": { + "id": "2d435714-a542-4404-9910-0df9675e2087", + "code": "32038", + "data": { + "stops": [ + { + "id": "2038", + "code": "32038", + "data": { + "gtfs": { + "stop_id": "2038", + "stop_code": "32038", + "stop_name": "av. Trahan et Trottier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Trahan et Trottier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4827428244381, + 45.4607909567825 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4837913374691 + }, + "name": "av. Trahan et Trottier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482742824, + 45.460790957 + ] + }, + "is_frozen": false, + "integer_id": 590, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482656, + 45.463903 + ] + }, + "id": 591, + "properties": { + "id": "57de752e-d268-4125-8223-581e6c2ff56e", + "code": "32040", + "data": { + "stops": [ + { + "id": "2040", + "code": "32040", + "data": { + "gtfs": { + "stop_id": "2040", + "stop_code": "32040", + "stop_name": "av. Trahan et av. Tisserand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Trahan et av. Tisserand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4824564578126, + 45.4639718810007 + ] + } + }, + { + "id": "3962", + "code": "33962", + "data": { + "gtfs": { + "stop_id": "3962", + "stop_code": "33962", + "stop_name": "av. Tisserand et av. Trahan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et av. Trahan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4828553018921, + 45.4641137766906 + ] + } + }, + { + "id": "5539", + "code": "30287", + "data": { + "gtfs": { + "stop_id": "5539", + "stop_code": "30287", + "stop_name": "av. Trahan et place Trevi", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Trahan et place Trevi", + "geography": { + "type": "Point", + "coordinates": [ + -73.4826942914595, + 45.4636914819674 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5362524190504 + }, + "name": "av. Trahan et av. Tisserand", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48265588, + 45.463902629 + ] + }, + "is_frozen": false, + "integer_id": 591, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451515, + 45.4614 + ] + }, + "id": 592, + "properties": { + "id": "5cacbe7b-f308-4076-8842-25195b37874b", + "code": "32042", + "data": { + "stops": [ + { + "id": "2042", + "code": "32042", + "data": { + "gtfs": { + "stop_id": "2042", + "stop_code": "32042", + "stop_name": "av. Balzac et Bergerac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Balzac et Bergerac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4512223286203, + 45.4613577495939 + ] + } + }, + { + "id": "2109", + "code": "32109", + "data": { + "gtfs": { + "stop_id": "2109", + "stop_code": "32109", + "stop_name": "av. Balzac et Bergerac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Balzac et Bergerac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4513292890975, + 45.4615107696526 + ] + } + }, + { + "id": "2448", + "code": "32448", + "data": { + "gtfs": { + "stop_id": "2448", + "stop_code": "32448", + "stop_name": "Bergerac et av. Balzac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bergerac et av. Balzac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4518073155719, + 45.4612896534187 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4940623656565 + }, + "name": "av. Balzac et Bergerac", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451514822, + 45.461400212 + ] + }, + "is_frozen": false, + "integer_id": 592, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450116, + 45.46225 + ] + }, + "id": 593, + "properties": { + "id": "90bf0496-ccdf-450d-91bf-4dc999f62290", + "code": "32043", + "data": { + "stops": [ + { + "id": "2043", + "code": "32043", + "data": { + "gtfs": { + "stop_id": "2043", + "stop_code": "32043", + "stop_name": "av. Balzac et Berne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Balzac et Berne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4502384098014, + 45.462053730483 + ] + } + }, + { + "id": "2108", + "code": "32108", + "data": { + "gtfs": { + "stop_id": "2108", + "stop_code": "32108", + "stop_name": "av. Balzac et Berne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Balzac et Berne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4499938029601, + 45.4624460363242 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5083869587331 + }, + "name": "av. Balzac et Berne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450116106, + 45.462249883 + ] + }, + "is_frozen": false, + "integer_id": 593, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446662, + 45.463408 + ] + }, + "id": 594, + "properties": { + "id": "d7a2b864-2fd6-4357-924f-7fbbb1858b57", + "code": "32044", + "data": { + "stops": [ + { + "id": "2044", + "code": "32044", + "data": { + "gtfs": { + "stop_id": "2044", + "stop_code": "32044", + "stop_name": "av. Balzac et av. Baffin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Balzac et av. Baffin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4468249646918, + 45.4632373076534 + ] + } + }, + { + "id": "2106", + "code": "32106", + "data": { + "gtfs": { + "stop_id": "2106", + "stop_code": "32106", + "stop_name": "av. Baffin et av. Balzac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Baffin et av. Balzac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4464998092243, + 45.4635795151902 + ] + } + }, + { + "id": "5085", + "code": "35085", + "data": { + "gtfs": { + "stop_id": "5085", + "stop_code": "35085", + "stop_name": "av. Balzac et av. Baffin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Balzac et av. Baffin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4465221345025, + 45.4632636911379 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5279196007763 + }, + "name": "av. Balzac et av. Baffin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446662387, + 45.463408411 + ] + }, + "is_frozen": false, + "integer_id": 594, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.444716, + 45.464589 + ] + }, + "id": 595, + "properties": { + "id": "6159ebda-8d7f-40cc-ac22-1f98fc48a7cc", + "code": "32045", + "data": { + "stops": [ + { + "id": "2045", + "code": "32045", + "data": { + "gtfs": { + "stop_id": "2045", + "stop_code": "32045", + "stop_name": "av. Baffin et av. Bréard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Baffin et av. Bréard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4445495677644, + 45.4645784786498 + ] + } + }, + { + "id": "2105", + "code": "32105", + "data": { + "gtfs": { + "stop_id": "2105", + "stop_code": "32105", + "stop_name": "av. Baffin et av. Bréard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Baffin et av. Bréard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4448817978155, + 45.4646003168086 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5478321251529 + }, + "name": "av. Baffin et av. Bréard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.444715683, + 45.464589398 + ] + }, + "is_frozen": false, + "integer_id": 595, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442452, + 45.4664 + ] + }, + "id": 596, + "properties": { + "id": "966472c1-4384-4d94-92f7-48afa023de51", + "code": "32046", + "data": { + "stops": [ + { + "id": "2046", + "code": "32046", + "data": { + "gtfs": { + "stop_id": "2046", + "stop_code": "32046", + "stop_name": "av. Baffin et av. Bienvenue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Baffin et av. Bienvenue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4426147899318, + 45.4662894227526 + ] + } + }, + { + "id": "2457", + "code": "32457", + "data": { + "gtfs": { + "stop_id": "2457", + "stop_code": "32457", + "stop_name": "av. Bienvenue et Bosco", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienvenue et Bosco", + "geography": { + "type": "Point", + "coordinates": [ + -73.4421207176098, + 45.4664669791052 + ] + } + }, + { + "id": "2613", + "code": "32613", + "data": { + "gtfs": { + "stop_id": "2613", + "stop_code": "32613", + "stop_name": "av. Bienvenue et av. Baffin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienvenue et av. Baffin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4427831225207, + 45.4665108718063 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5783654192919 + }, + "name": "av. Baffin et av. Bienvenue", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44245192, + 45.466400147 + ] + }, + "is_frozen": false, + "integer_id": 596, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44146, + 45.466019 + ] + }, + "id": 597, + "properties": { + "id": "43d1b9da-374a-4022-9200-6e68a13388db", + "code": "32047", + "data": { + "stops": [ + { + "id": "2047", + "code": "32047", + "data": { + "gtfs": { + "stop_id": "2047", + "stop_code": "32047", + "stop_name": "av. Bienvenue et av. Baudelaire", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienvenue et av. Baudelaire", + "geography": { + "type": "Point", + "coordinates": [ + -73.4414601324139, + 45.4660188821859 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5719361933345 + }, + "name": "av. Bienvenue et av. Baudelaire", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441460132, + 45.466018882 + ] + }, + "is_frozen": false, + "integer_id": 597, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437814, + 45.467518 + ] + }, + "id": 598, + "properties": { + "id": "4827a17d-8dc9-4cbd-8430-3334ebece64a", + "code": "32048", + "data": { + "stops": [ + { + "id": "2048", + "code": "32048", + "data": { + "gtfs": { + "stop_id": "2048", + "stop_code": "32048", + "stop_name": "av. Baudelaire et croiss. Boulogne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Baudelaire et croiss. Boulogne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4380078366325, + 45.4674039194163 + ] + } + }, + { + "id": "2102", + "code": "32102", + "data": { + "gtfs": { + "stop_id": "2102", + "stop_code": "32102", + "stop_name": "av. Baudelaire et croiss. Boulogne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Baudelaire et croiss. Boulogne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4376211015326, + 45.4676320787691 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5972163674097 + }, + "name": "av. Baudelaire et croiss. Boulogne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437814469, + 45.467517999 + ] + }, + "is_frozen": false, + "integer_id": 598, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.417747, + 45.46748 + ] + }, + "id": 599, + "properties": { + "id": "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", + "code": "32050", + "data": { + "stops": [ + { + "id": "2050", + "code": "32050", + "data": { + "gtfs": { + "stop_id": "2050", + "stop_code": "32050", + "stop_name": "boul. Westley et civique 5105", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Westley et civique 5105", + "geography": { + "type": "Point", + "coordinates": [ + -73.4177701582355, + 45.4673722836546 + ] + } + }, + { + "id": "2099", + "code": "32099", + "data": { + "gtfs": { + "stop_id": "2099", + "stop_code": "32099", + "stop_name": "boul. Westley et civique 5105", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Westley et civique 5105", + "geography": { + "type": "Point", + "coordinates": [ + -73.4177233979501, + 45.4675879851018 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5965778111027 + }, + "name": "boul. Westley et civique 5105", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.417746778, + 45.467480134 + ] + }, + "is_frozen": false, + "integer_id": 599, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.415823, + 45.468903 + ] + }, + "id": 600, + "properties": { + "id": "176a1328-a08b-40f7-9010-c279f0b6cf5d", + "code": "32051", + "data": { + "stops": [ + { + "id": "2051", + "code": "32051", + "data": { + "gtfs": { + "stop_id": "2051", + "stop_code": "32051", + "stop_name": "boul. Westley et boul. Payer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Westley et boul. Payer", + "geography": { + "type": "Point", + "coordinates": [ + -73.4159609010658, + 45.4687160119508 + ] + } + }, + { + "id": "3519", + "code": "33519", + "data": { + "gtfs": { + "stop_id": "3519", + "stop_code": "33519", + "stop_name": "boul. Westley et boul. Payer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Westley et boul. Payer", + "geography": { + "type": "Point", + "coordinates": [ + -73.4156846536613, + 45.4690904764741 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6205780489599 + }, + "name": "boul. Westley et boul. Payer", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.415822777, + 45.468903244 + ] + }, + "is_frozen": false, + "integer_id": 600, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.414068, + 45.470196 + ] + }, + "id": 601, + "properties": { + "id": "8dc191fb-71db-4873-9019-c9cedd32b2f0", + "code": "32052", + "data": { + "stops": [ + { + "id": "2052", + "code": "32052", + "data": { + "gtfs": { + "stop_id": "2052", + "stop_code": "32052", + "stop_name": "boul. Westley et av. Lalande", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Westley et av. Lalande", + "geography": { + "type": "Point", + "coordinates": [ + -73.4141497560558, + 45.4700503613323 + ] + } + }, + { + "id": "2098", + "code": "32098", + "data": { + "gtfs": { + "stop_id": "2098", + "stop_code": "32098", + "stop_name": "boul. Westley et av. Lalande", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Westley et av. Lalande", + "geography": { + "type": "Point", + "coordinates": [ + -73.4139852765767, + 45.4703406510174 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6423731403797 + }, + "name": "boul. Westley et av. Lalande", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.414067516, + 45.470195506 + ] + }, + "is_frozen": false, + "integer_id": 601, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.411628, + 45.47203 + ] + }, + "id": 602, + "properties": { + "id": "cbe5dd37-dce1-464a-9725-6d31d37c48ab", + "code": "32053", + "data": { + "stops": [ + { + "id": "2053", + "code": "32053", + "data": { + "gtfs": { + "stop_id": "2053", + "stop_code": "32053", + "stop_name": "boul. Westley et av. McRae", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Westley et av. McRae", + "geography": { + "type": "Point", + "coordinates": [ + -73.4116543765764, + 45.4719011334189 + ] + } + }, + { + "id": "2097", + "code": "32097", + "data": { + "gtfs": { + "stop_id": "2097", + "stop_code": "32097", + "stop_name": "boul. Westley et av. McRae", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Westley et av. McRae", + "geography": { + "type": "Point", + "coordinates": [ + -73.4115409867098, + 45.472159093262 + ] + } + }, + { + "id": "4186", + "code": "34186", + "data": { + "gtfs": { + "stop_id": "4186", + "stop_code": "34186", + "stop_name": "av. McRae et boul. Westley", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. McRae et boul. Westley", + "geography": { + "type": "Point", + "coordinates": [ + -73.4117157908488, + 45.4720647444641 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6733178861369 + }, + "name": "boul. Westley et av. McRae", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.411628389, + 45.472030113 + ] + }, + "is_frozen": false, + "integer_id": 602, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.409622, + 45.473391 + ] + }, + "id": 603, + "properties": { + "id": "fb30643a-60d9-443e-8b22-29ad762aebdb", + "code": "32054", + "data": { + "stops": [ + { + "id": "2054", + "code": "32054", + "data": { + "gtfs": { + "stop_id": "2054", + "stop_code": "32054", + "stop_name": "boul. Westley et civique 4205", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Westley et civique 4205", + "geography": { + "type": "Point", + "coordinates": [ + -73.4096219025707, + 45.4733905354975 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6962663727475 + }, + "name": "boul. Westley et civique 4205", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.409621903, + 45.473390535 + ] + }, + "is_frozen": false, + "integer_id": 603, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.405586, + 45.474606 + ] + }, + "id": 604, + "properties": { + "id": "931c7650-b24c-4431-a556-56243637e8a2", + "code": "32056", + "data": { + "stops": [ + { + "id": "2056", + "code": "32056", + "data": { + "gtfs": { + "stop_id": "2056", + "stop_code": "32056", + "stop_name": "boul. Maricourt et de Kensington", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Maricourt et de Kensington", + "geography": { + "type": "Point", + "coordinates": [ + -73.4055857566901, + 45.4746064113533 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7167779542583 + }, + "name": "boul. Maricourt et de Kensington", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.405585757, + 45.474606411 + ] + }, + "is_frozen": false, + "integer_id": 604, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.398887, + 45.471426 + ] + }, + "id": 605, + "properties": { + "id": "8566f24d-a192-4017-b9c9-09c3d46779b5", + "code": "32059", + "data": { + "stops": [ + { + "id": "2059", + "code": "32059", + "data": { + "gtfs": { + "stop_id": "2059", + "stop_code": "32059", + "stop_name": "boul. Kimber et Hampton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Hampton", + "geography": { + "type": "Point", + "coordinates": [ + -73.3990291325084, + 45.4713889258389 + ] + } + }, + { + "id": "2091", + "code": "32091", + "data": { + "gtfs": { + "stop_id": "2091", + "stop_code": "32091", + "stop_name": "boul. Kimber et Hampton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Hampton", + "geography": { + "type": "Point", + "coordinates": [ + -73.3987447824376, + 45.4714630645752 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6631277563029 + }, + "name": "boul. Kimber et Hampton", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.398886957, + 45.471425995 + ] + }, + "is_frozen": false, + "integer_id": 605, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.397171, + 45.470488 + ] + }, + "id": 606, + "properties": { + "id": "6d9b7e37-cd6f-4931-b931-b7d0d8977c84", + "code": "32060", + "data": { + "stops": [ + { + "id": "2060", + "code": "32060", + "data": { + "gtfs": { + "stop_id": "2060", + "stop_code": "32060", + "stop_name": "boul. Kimber et Hillcrest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Hillcrest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3973156258043, + 45.4704914708639 + ] + } + }, + { + "id": "2090", + "code": "32090", + "data": { + "gtfs": { + "stop_id": "2090", + "stop_code": "32090", + "stop_name": "boul. Kimber et Hillcrest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Hillcrest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3970262182207, + 45.4704843435957 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6473049362543 + }, + "name": "boul. Kimber et Hillcrest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.397170922, + 45.470487907 + ] + }, + "is_frozen": false, + "integer_id": 606, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.387674, + 45.465334 + ] + }, + "id": 607, + "properties": { + "id": "76c5dc0c-6c87-48e4-b4a8-6f7986e09fb7", + "code": "32061", + "data": { + "stops": [ + { + "id": "2061", + "code": "32061", + "data": { + "gtfs": { + "stop_id": "2061", + "stop_code": "32061", + "stop_name": "boul. Kimber et Ovila", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Ovila", + "geography": { + "type": "Point", + "coordinates": [ + -73.3878306277758, + 45.4653624120451 + ] + } + }, + { + "id": "4970", + "code": "34970", + "data": { + "gtfs": { + "stop_id": "4970", + "stop_code": "34970", + "stop_name": "boul. Kimber et Ovila", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Ovila", + "geography": { + "type": "Point", + "coordinates": [ + -73.3875166265992, + 45.4653065402937 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5603954608295 + }, + "name": "boul. Kimber et Ovila", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.387673627, + 45.465334476 + ] + }, + "is_frozen": false, + "integer_id": 607, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.384094, + 45.463267 + ] + }, + "id": 608, + "properties": { + "id": "2bfdc814-6852-43cf-a60e-ce2e7fee82b8", + "code": "32063", + "data": { + "stops": [ + { + "id": "2063", + "code": "32063", + "data": { + "gtfs": { + "stop_id": "2063", + "stop_code": "32063", + "stop_name": "boul. Kimber et Caron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Caron", + "geography": { + "type": "Point", + "coordinates": [ + -73.3844802130917, + 45.4634641875986 + ] + } + }, + { + "id": "2088", + "code": "32088", + "data": { + "gtfs": { + "stop_id": "2088", + "stop_code": "32088", + "stop_name": "boul. Kimber et Caron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Caron", + "geography": { + "type": "Point", + "coordinates": [ + -73.3843668856152, + 45.4635235889664 + ] + } + }, + { + "id": "4503", + "code": "34503", + "data": { + "gtfs": { + "stop_id": "4503", + "stop_code": "34503", + "stop_name": "boul. Kimber et Léonard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Léonard", + "geography": { + "type": "Point", + "coordinates": [ + -73.3837083651866, + 45.4630107864878 + ] + } + }, + { + "id": "4504", + "code": "34504", + "data": { + "gtfs": { + "stop_id": "4504", + "stop_code": "34504", + "stop_name": "boul. Kimber et Léonard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Léonard", + "geography": { + "type": "Point", + "coordinates": [ + -73.3837507628162, + 45.4631199588769 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5255385343029 + }, + "name": "boul. Kimber et Caron", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.384094289, + 45.463267188 + ] + }, + "is_frozen": false, + "integer_id": 608, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.382351, + 45.462336 + ] + }, + "id": 609, + "properties": { + "id": "2bad9abb-726e-4e19-bd55-ea4436446fe9", + "code": "32064", + "data": { + "stops": [ + { + "id": "2064", + "code": "32064", + "data": { + "gtfs": { + "stop_id": "2064", + "stop_code": "32064", + "stop_name": "boul. Kimber et boul. Mountainview", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et boul. Mountainview", + "geography": { + "type": "Point", + "coordinates": [ + -73.3824689343, + 45.4622435426914 + ] + } + }, + { + "id": "2087", + "code": "32087", + "data": { + "gtfs": { + "stop_id": "2087", + "stop_code": "32087", + "stop_name": "boul. Mountainview et boul. Kimber", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Mountainview et boul. Kimber", + "geography": { + "type": "Point", + "coordinates": [ + -73.3822339839634, + 45.4624277698509 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5098330403076 + }, + "name": "boul. Kimber et boul. Mountainview", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.382351459, + 45.462335656 + ] + }, + "is_frozen": false, + "integer_id": 609, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.380298, + 45.464918 + ] + }, + "id": 610, + "properties": { + "id": "40363de6-68fe-4797-a6b6-a7c0b8b379e0", + "code": "32065", + "data": { + "stops": [ + { + "id": "2065", + "code": "32065", + "data": { + "gtfs": { + "stop_id": "2065", + "stop_code": "32065", + "stop_name": "boul. Mountainview et av. Matheson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Mountainview et av. Matheson", + "geography": { + "type": "Point", + "coordinates": [ + -73.3802524781374, + 45.4648005452397 + ] + } + }, + { + "id": "3819", + "code": "33819", + "data": { + "gtfs": { + "stop_id": "3819", + "stop_code": "33819", + "stop_name": "boul. Mountainview et av. Matheson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Mountainview et av. Matheson", + "geography": { + "type": "Point", + "coordinates": [ + -73.3803443291739, + 45.4650353689262 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5533721514936 + }, + "name": "boul. Mountainview et av. Matheson", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.380298404, + 45.464917957 + ] + }, + "is_frozen": false, + "integer_id": 610, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.378176, + 45.467865 + ] + }, + "id": 611, + "properties": { + "id": "24542ec6-1b63-420d-8089-98a7341dfe66", + "code": "32066", + "data": { + "stops": [ + { + "id": "2066", + "code": "32066", + "data": { + "gtfs": { + "stop_id": "2066", + "stop_code": "32066", + "stop_name": "boul. Mountainview et av. Gervais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Mountainview et av. Gervais", + "geography": { + "type": "Point", + "coordinates": [ + -73.3782036386128, + 45.4676661047169 + ] + } + }, + { + "id": "2085", + "code": "32085", + "data": { + "gtfs": { + "stop_id": "2085", + "stop_code": "32085", + "stop_name": "boul. Mountainview et av. Gervais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Mountainview et av. Gervais", + "geography": { + "type": "Point", + "coordinates": [ + -73.3781488074177, + 45.4680639233061 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6030684963429 + }, + "name": "boul. Mountainview et av. Gervais", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.378176223, + 45.467865014 + ] + }, + "is_frozen": false, + "integer_id": 611, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.375928, + 45.471014 + ] + }, + "id": 612, + "properties": { + "id": "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", + "code": "32067", + "data": { + "stops": [ + { + "id": "2067", + "code": "32067", + "data": { + "gtfs": { + "stop_id": "2067", + "stop_code": "32067", + "stop_name": "boul. Mountainview et av. McFarlane", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Mountainview et av. McFarlane", + "geography": { + "type": "Point", + "coordinates": [ + -73.3758620523024, + 45.4708934818317 + ] + } + }, + { + "id": "2084", + "code": "32084", + "data": { + "gtfs": { + "stop_id": "2084", + "stop_code": "32084", + "stop_name": "boul. Mountainview et av. McFarlane", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Mountainview et av. McFarlane", + "geography": { + "type": "Point", + "coordinates": [ + -73.3759933523441, + 45.4711342510343 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6561762407733 + }, + "name": "boul. Mountainview et av. McFarlane", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.375927702, + 45.471013866 + ] + }, + "is_frozen": false, + "integer_id": 612, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.369502, + 45.479882 + ] + }, + "id": 613, + "properties": { + "id": "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", + "code": "32070", + "data": { + "stops": [ + { + "id": "2070", + "code": "32070", + "data": { + "gtfs": { + "stop_id": "2070", + "stop_code": "32070", + "stop_name": "boul. Mountainview et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Mountainview et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.3693136174275, + 45.4800061087725 + ] + } + }, + { + "id": "2081", + "code": "32081", + "data": { + "gtfs": { + "stop_id": "2081", + "stop_code": "32081", + "stop_name": "boul. Mountainview et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Mountainview et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.3696904090992, + 45.4797587214404 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8057982861214 + }, + "name": "boul. Mountainview et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.369502013, + 45.479882415 + ] + }, + "is_frozen": false, + "integer_id": 613, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.374877, + 45.483243 + ] + }, + "id": 614, + "properties": { + "id": "057da5dd-23f2-431d-8955-7a7d8f0dae40", + "code": "32071", + "data": { + "stops": [ + { + "id": "2071", + "code": "32071", + "data": { + "gtfs": { + "stop_id": "2071", + "stop_code": "32071", + "stop_name": "ch. de Chambly et Patenaude", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Patenaude", + "geography": { + "type": "Point", + "coordinates": [ + -73.3746360592582, + 45.4832347958051 + ] + } + }, + { + "id": "2080", + "code": "32080", + "data": { + "gtfs": { + "stop_id": "2080", + "stop_code": "32080", + "stop_name": "ch. de Chambly et Patenaude", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Patenaude", + "geography": { + "type": "Point", + "coordinates": [ + -73.3751172396768, + 45.4833191768425 + ] + } + }, + { + "id": "5926", + "code": "30804", + "data": { + "gtfs": { + "stop_id": "5926", + "stop_code": "30804", + "stop_name": "Patenaude et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Patenaude et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.3749590822561, + 45.4831670396001 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8625150825478 + }, + "name": "ch. de Chambly et Patenaude", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.374876649, + 45.483243108 + ] + }, + "is_frozen": false, + "integer_id": 614, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.37763, + 45.48475 + ] + }, + "id": 615, + "properties": { + "id": "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", + "code": "32072", + "data": { + "stops": [ + { + "id": "2072", + "code": "32072", + "data": { + "gtfs": { + "stop_id": "2072", + "stop_code": "32072", + "stop_name": "ch. de Chambly et Pinard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Pinard", + "geography": { + "type": "Point", + "coordinates": [ + -73.3775284354584, + 45.4848531292896 + ] + } + }, + { + "id": "2079", + "code": "32079", + "data": { + "gtfs": { + "stop_id": "2079", + "stop_code": "32079", + "stop_name": "ch. de Chambly et Pinard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Pinard", + "geography": { + "type": "Point", + "coordinates": [ + -73.3777310665744, + 45.4846472393461 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8879525381482 + }, + "name": "ch. de Chambly et Pinard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.377629751, + 45.484750184 + ] + }, + "is_frozen": false, + "integer_id": 615, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.382282, + 45.487257 + ] + }, + "id": 616, + "properties": { + "id": "88a428f4-cdde-43a8-a2c3-c4652eae6722", + "code": "32073", + "data": { + "stops": [ + { + "id": "2073", + "code": "32073", + "data": { + "gtfs": { + "stop_id": "2073", + "stop_code": "32073", + "stop_name": "ch. de Chambly et boul. des Promenades", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. des Promenades", + "geography": { + "type": "Point", + "coordinates": [ + -73.3818755115794, + 45.4870900383634 + ] + } + }, + { + "id": "4153", + "code": "34153", + "data": { + "gtfs": { + "stop_id": "4153", + "stop_code": "34153", + "stop_name": "ch. de Chambly et boul. des Promenades", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. des Promenades", + "geography": { + "type": "Point", + "coordinates": [ + -73.3826886802909, + 45.487110033177 + ] + } + }, + { + "id": "4350", + "code": "34350", + "data": { + "gtfs": { + "stop_id": "4350", + "stop_code": "34350", + "stop_name": "boul. des Promenades et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. des Promenades et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.3822689809783, + 45.4874243853545 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9302723378096 + }, + "name": "ch. de Chambly et boul. des Promenades", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.382282096, + 45.487257212 + ] + }, + "is_frozen": false, + "integer_id": 616, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.403497, + 45.49255 + ] + }, + "id": 617, + "properties": { + "id": "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", + "code": "32076", + "data": { + "stops": [ + { + "id": "2076", + "code": "32076", + "data": { + "gtfs": { + "stop_id": "2076", + "stop_code": "32076", + "stop_name": "boul. Cousineau et CLSC SAINT-HUBERT", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et CLSC SAINT-HUBERT", + "geography": { + "type": "Point", + "coordinates": [ + -73.403496800185, + 45.4925498002083 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0196320382624 + }, + "name": "boul. Cousineau et CLSC SAINT-HUBERT", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.4034968, + 45.4925498 + ] + }, + "is_frozen": false, + "integer_id": 617, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.405913, + 45.493662 + ] + }, + "id": 618, + "properties": { + "id": "76b4c3d5-f580-480d-bfec-c2639dd60d13", + "code": "32077", + "data": { + "stops": [ + { + "id": "2077", + "code": "32077", + "data": { + "gtfs": { + "stop_id": "2077", + "stop_code": "32077", + "stop_name": "boul. Cousineau et de la Tourbière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et de la Tourbière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4062611459954, + 45.4938053849883 + ] + } + }, + { + "id": "4936", + "code": "34936", + "data": { + "gtfs": { + "stop_id": "4936", + "stop_code": "34936", + "stop_name": "boul. Cousineau et IGA EXTRA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et IGA EXTRA", + "geography": { + "type": "Point", + "coordinates": [ + -73.4055646535678, + 45.4935184897831 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0384124518498 + }, + "name": "boul. Cousineau et de la Tourbière", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.4059129, + 45.493661937 + ] + }, + "is_frozen": false, + "integer_id": 618, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.371649, + 45.476935 + ] + }, + "id": 619, + "properties": { + "id": "f585bf2c-536e-4916-a0ee-20092a76ccad", + "code": "32082", + "data": { + "stops": [ + { + "id": "2082", + "code": "32082", + "data": { + "gtfs": { + "stop_id": "2082", + "stop_code": "32082", + "stop_name": "boul. Mountainview et civique 2550", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Mountainview et civique 2550", + "geography": { + "type": "Point", + "coordinates": [ + -73.3717842099073, + 45.4769265728596 + ] + } + }, + { + "id": "4011", + "code": "34011", + "data": { + "gtfs": { + "stop_id": "4011", + "stop_code": "34011", + "stop_name": "boul. Mountainview et civique 2540", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Mountainview et civique 2540", + "geography": { + "type": "Point", + "coordinates": [ + -73.3715131679722, + 45.4769442652514 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7560715139745 + }, + "name": "boul. Mountainview et civique 2550", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.371648689, + 45.476935419 + ] + }, + "is_frozen": false, + "integer_id": 619, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.385762, + 45.464301 + ] + }, + "id": 620, + "properties": { + "id": "cfa8e93e-db19-45e9-8258-0b21519d678a", + "code": "32089", + "data": { + "stops": [ + { + "id": "2089", + "code": "32089", + "data": { + "gtfs": { + "stop_id": "2089", + "stop_code": "32089", + "stop_name": "boul. Kimber et Émile", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Émile", + "geography": { + "type": "Point", + "coordinates": [ + -73.3855979952754, + 45.4642808477298 + ] + } + }, + { + "id": "3901", + "code": "33901", + "data": { + "gtfs": { + "stop_id": "3901", + "stop_code": "33901", + "stop_name": "boul. Kimber et Émile", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Émile", + "geography": { + "type": "Point", + "coordinates": [ + -73.3859269115492, + 45.464321201066 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5429697606768 + }, + "name": "boul. Kimber et Émile", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.385762453, + 45.464301024 + ] + }, + "is_frozen": false, + "integer_id": 620, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.400134, + 45.471738 + ] + }, + "id": 621, + "properties": { + "id": "e50671a0-a4b5-4876-82f3-d4b9358f2b9f", + "code": "32092", + "data": { + "stops": [ + { + "id": "2092", + "code": "32092", + "data": { + "gtfs": { + "stop_id": "2092", + "stop_code": "32092", + "stop_name": "boul. Maricourt et Roland", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Maricourt et Roland", + "geography": { + "type": "Point", + "coordinates": [ + -73.3999842941242, + 45.4717337519549 + ] + } + }, + { + "id": "4369", + "code": "34369", + "data": { + "gtfs": { + "stop_id": "4369", + "stop_code": "34369", + "stop_name": "boul. Maricourt et Roland", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Maricourt et Roland", + "geography": { + "type": "Point", + "coordinates": [ + -73.4002829373651, + 45.4717430493231 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6683973116749 + }, + "name": "boul. Maricourt et Roland", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.400133616, + 45.471738401 + ] + }, + "is_frozen": false, + "integer_id": 621, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.404496, + 45.474185 + ] + }, + "id": 622, + "properties": { + "id": "55ca5f95-fab1-46cf-be83-81db90d348a5", + "code": "32094", + "data": { + "stops": [ + { + "id": "2094", + "code": "32094", + "data": { + "gtfs": { + "stop_id": "2094", + "stop_code": "32094", + "stop_name": "boul. Maricourt et Belmont", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Maricourt et Belmont", + "geography": { + "type": "Point", + "coordinates": [ + -73.4044955641255, + 45.4741854580167 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7096764139043 + }, + "name": "boul. Maricourt et Belmont", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.404495564, + 45.474185458 + ] + }, + "is_frozen": false, + "integer_id": 622, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.406845, + 45.475277 + ] + }, + "id": 623, + "properties": { + "id": "bd054361-ba99-4c5e-bde0-47f325682b88", + "code": "32095", + "data": { + "stops": [ + { + "id": "2095", + "code": "32095", + "data": { + "gtfs": { + "stop_id": "2095", + "stop_code": "32095", + "stop_name": "boul. Maricourt et boul. Westley", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Maricourt et boul. Westley", + "geography": { + "type": "Point", + "coordinates": [ + -73.4065482198651, + 45.4752963780047 + ] + } + }, + { + "id": "4437", + "code": "34437", + "data": { + "gtfs": { + "stop_id": "4437", + "stop_code": "34437", + "stop_name": "boul. Westley et boul. Maricourt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Westley et boul. Maricourt", + "geography": { + "type": "Point", + "coordinates": [ + -73.4071419283258, + 45.4752570628291 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7280864926951 + }, + "name": "boul. Maricourt et boul. Westley", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.406845074, + 45.47527672 + ] + }, + "is_frozen": false, + "integer_id": 623, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.409615, + 45.473576 + ] + }, + "id": 624, + "properties": { + "id": "cf532e47-3506-49e5-a1ed-43182c89aa79", + "code": "32096", + "data": { + "stops": [ + { + "id": "2096", + "code": "32096", + "data": { + "gtfs": { + "stop_id": "2096", + "stop_code": "32096", + "stop_name": "boul. Westley et civique 4192", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Westley et civique 4192", + "geography": { + "type": "Point", + "coordinates": [ + -73.4096145916559, + 45.4735763113732 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6994002911931 + }, + "name": "boul. Westley et civique 4192", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.409614592, + 45.473576311 + ] + }, + "is_frozen": false, + "integer_id": 624, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440252, + 45.466318 + ] + }, + "id": 625, + "properties": { + "id": "504cb53f-f1f4-46f2-81f5-f99fef8227fd", + "code": "32104", + "data": { + "stops": [ + { + "id": "2104", + "code": "32104", + "data": { + "gtfs": { + "stop_id": "2104", + "stop_code": "32104", + "stop_name": "av. Baudelaire et Bosco", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Baudelaire et Bosco", + "geography": { + "type": "Point", + "coordinates": [ + -73.4401150394157, + 45.4665208863903 + ] + } + }, + { + "id": "4205", + "code": "34205", + "data": { + "gtfs": { + "stop_id": "4205", + "stop_code": "34205", + "stop_name": "av. Baudelaire et croiss. Bazin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Baudelaire et croiss. Bazin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4403882609506, + 45.4661146575643 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5769763286189 + }, + "name": "av. Baudelaire et Bosco", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44025165, + 45.466317772 + ] + }, + "is_frozen": false, + "integer_id": 625, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448599, + 45.463235 + ] + }, + "id": 626, + "properties": { + "id": "160a49df-4dfe-423d-acd7-52bd439d623b", + "code": "32107", + "data": { + "stops": [ + { + "id": "2107", + "code": "32107", + "data": { + "gtfs": { + "stop_id": "2107", + "stop_code": "32107", + "stop_name": "av. Balzac et av. Bernard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Balzac et av. Bernard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4485152399608, + 45.4633543749268 + ] + } + }, + { + "id": "2628", + "code": "32628", + "data": { + "gtfs": { + "stop_id": "2628", + "stop_code": "32628", + "stop_name": "av. Balzac et av. Bernard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Balzac et av. Bernard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4486826917112, + 45.4631164230331 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5250025636934 + }, + "name": "av. Balzac et av. Bernard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448598966, + 45.463235399 + ] + }, + "is_frozen": false, + "integer_id": 626, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452988, + 45.462279 + ] + }, + "id": 627, + "properties": { + "id": "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", + "code": "32110", + "data": { + "stops": [ + { + "id": "2110", + "code": "32110", + "data": { + "gtfs": { + "stop_id": "2110", + "stop_code": "32110", + "stop_name": "Bergerac et av. Broadway", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bergerac et av. Broadway", + "geography": { + "type": "Point", + "coordinates": [ + -73.4527497012602, + 45.4621817539512 + ] + } + }, + { + "id": "2447", + "code": "32447", + "data": { + "gtfs": { + "stop_id": "2447", + "stop_code": "32447", + "stop_name": "Bergerac et av. Broadway", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bergerac et av. Broadway", + "geography": { + "type": "Point", + "coordinates": [ + -73.4526848314778, + 45.4619170120682 + ] + } + }, + { + "id": "3632", + "code": "33632", + "data": { + "gtfs": { + "stop_id": "3632", + "stop_code": "33632", + "stop_name": "av. Broadway et Bergerac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Broadway et Bergerac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4526282377949, + 45.4626406268673 + ] + } + }, + { + "id": "3633", + "code": "33633", + "data": { + "gtfs": { + "stop_id": "3633", + "stop_code": "33633", + "stop_name": "av. Broadway et Bergerac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Broadway et Bergerac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4529514639146, + 45.4623608019964 + ] + } + }, + { + "id": "5424", + "code": "30167", + "data": { + "gtfs": { + "stop_id": "5424", + "stop_code": "30167", + "stop_name": "Bergerac et av. Broadway", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bergerac et av. Broadway", + "geography": { + "type": "Point", + "coordinates": [ + -73.4533472480257, + 45.4623045482651 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5088748016888 + }, + "name": "Bergerac et av. Broadway", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452987743, + 45.462278819 + ] + }, + "is_frozen": false, + "integer_id": 627, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453213, + 45.45973 + ] + }, + "id": 628, + "properties": { + "id": "c01e4d9c-c5df-425f-9b40-215a62d76b50", + "code": "32115", + "data": { + "stops": [ + { + "id": "2115", + "code": "32115", + "data": { + "gtfs": { + "stop_id": "2115", + "stop_code": "32115", + "stop_name": "av. Malo et Massenet", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et Massenet", + "geography": { + "type": "Point", + "coordinates": [ + -73.4533966837212, + 45.4597639058722 + ] + } + }, + { + "id": "2142", + "code": "32142", + "data": { + "gtfs": { + "stop_id": "2142", + "stop_code": "32142", + "stop_name": "av. Malo et Massenet", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et Massenet", + "geography": { + "type": "Point", + "coordinates": [ + -73.4530297824589, + 45.4596967644679 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4659117966971 + }, + "name": "av. Malo et Massenet", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453213233, + 45.459730335 + ] + }, + "is_frozen": false, + "integer_id": 628, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451234, + 45.455752 + ] + }, + "id": 629, + "properties": { + "id": "800b4ca8-f540-48ef-9acf-ec6d45db3496", + "code": "32116", + "data": { + "stops": [ + { + "id": "2116", + "code": "32116", + "data": { + "gtfs": { + "stop_id": "2116", + "stop_code": "32116", + "stop_name": "av. Maupassant et civique 4040", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Maupassant et civique 4040", + "geography": { + "type": "Point", + "coordinates": [ + -73.4513112459919, + 45.4557987648815 + ] + } + }, + { + "id": "2140", + "code": "32140", + "data": { + "gtfs": { + "stop_id": "2140", + "stop_code": "32140", + "stop_name": "av. Maupassant et civique 4040", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Maupassant et civique 4040", + "geography": { + "type": "Point", + "coordinates": [ + -73.4511571376656, + 45.4557043272671 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3988478623954 + }, + "name": "av. Maupassant et civique 4040", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451234192, + 45.455751546 + ] + }, + "is_frozen": false, + "integer_id": 629, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452014, + 45.454709 + ] + }, + "id": 630, + "properties": { + "id": "db56dff4-d82c-4b2d-ad34-35b3db3f27de", + "code": "32117", + "data": { + "stops": [ + { + "id": "2117", + "code": "32117", + "data": { + "gtfs": { + "stop_id": "2117", + "stop_code": "32117", + "stop_name": "av. Maupassant et Montpetit", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Maupassant et Montpetit", + "geography": { + "type": "Point", + "coordinates": [ + -73.451983516024, + 45.4548516948626 + ] + } + }, + { + "id": "2139", + "code": "32139", + "data": { + "gtfs": { + "stop_id": "2139", + "stop_code": "32139", + "stop_name": "Montpetit et av. Maupassant", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montpetit et av. Maupassant", + "geography": { + "type": "Point", + "coordinates": [ + -73.4520439615797, + 45.4545664522932 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3812789403469 + }, + "name": "av. Maupassant et Montpetit", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452013739, + 45.454709074 + ] + }, + "is_frozen": false, + "integer_id": 630, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450735, + 45.453728 + ] + }, + "id": 631, + "properties": { + "id": "0087674f-0098-4bab-9a77-b31eb3602613", + "code": "32118", + "data": { + "stops": [ + { + "id": "2118", + "code": "32118", + "data": { + "gtfs": { + "stop_id": "2118", + "stop_code": "32118", + "stop_name": "Montpetit et Mauriac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montpetit et Mauriac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4508180410114, + 45.4539268831281 + ] + } + }, + { + "id": "2138", + "code": "32138", + "data": { + "gtfs": { + "stop_id": "2138", + "stop_code": "32138", + "stop_name": "Mauriac et Montpetit", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Mauriac et Montpetit", + "geography": { + "type": "Point", + "coordinates": [ + -73.4506527111342, + 45.4535296635582 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3647502483058 + }, + "name": "Montpetit et Mauriac", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450735376, + 45.453728273 + ] + }, + "is_frozen": false, + "integer_id": 631, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45149, + 45.452968 + ] + }, + "id": 632, + "properties": { + "id": "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", + "code": "32119", + "data": { + "stops": [ + { + "id": "2119", + "code": "32119", + "data": { + "gtfs": { + "stop_id": "2119", + "stop_code": "32119", + "stop_name": "Mauriac et Massé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Mauriac et Massé", + "geography": { + "type": "Point", + "coordinates": [ + -73.4514092234033, + 45.453119699958 + ] + } + }, + { + "id": "2137", + "code": "32137", + "data": { + "gtfs": { + "stop_id": "2137", + "stop_code": "32137", + "stop_name": "Mauriac et Massé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Mauriac et Massé", + "geography": { + "type": "Point", + "coordinates": [ + -73.4515716587018, + 45.4528166127538 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3519411625625 + }, + "name": "Mauriac et Massé", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451490441, + 45.452968156 + ] + }, + "is_frozen": false, + "integer_id": 632, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452737, + 45.45119 + ] + }, + "id": 633, + "properties": { + "id": "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", + "code": "32120", + "data": { + "stops": [ + { + "id": "2120", + "code": "32120", + "data": { + "gtfs": { + "stop_id": "2120", + "stop_code": "32120", + "stop_name": "Meilleur et Mondor", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Meilleur et Mondor", + "geography": { + "type": "Point", + "coordinates": [ + -73.4528175247463, + 45.4512935926716 + ] + } + }, + { + "id": "2136", + "code": "32136", + "data": { + "gtfs": { + "stop_id": "2136", + "stop_code": "32136", + "stop_name": "Mondor et Meilleur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Mondor et Meilleur", + "geography": { + "type": "Point", + "coordinates": [ + -73.4526562892746, + 45.4510865601741 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3219799097002 + }, + "name": "Meilleur et Mondor", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452736907, + 45.451190076 + ] + }, + "is_frozen": false, + "integer_id": 633, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454562, + 45.44998 + ] + }, + "id": 634, + "properties": { + "id": "fd4f887b-9300-41e3-8cc1-44b80109a4ad", + "code": "32121", + "data": { + "stops": [ + { + "id": "2121", + "code": "32121", + "data": { + "gtfs": { + "stop_id": "2121", + "stop_code": "32121", + "stop_name": "Mondor et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Mondor et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4545617854148, + 45.449980285646 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3015961397614 + }, + "name": "Mondor et boul. de Rome", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454561785, + 45.449980286 + ] + }, + "is_frozen": false, + "integer_id": 634, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45614, + 45.447304 + ] + }, + "id": 635, + "properties": { + "id": "8b7e764f-0227-410c-89b9-51b9a8ad8c88", + "code": "32122", + "data": { + "stops": [ + { + "id": "2122", + "code": "32122", + "data": { + "gtfs": { + "stop_id": "2122", + "stop_code": "32122", + "stop_name": "av. Niagara et civique 7895", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Niagara et civique 7895", + "geography": { + "type": "Point", + "coordinates": [ + -73.4559414971259, + 45.4474539923936 + ] + } + }, + { + "id": "2134", + "code": "32134", + "data": { + "gtfs": { + "stop_id": "2134", + "stop_code": "32134", + "stop_name": "av. Niagara et Navarre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Niagara et Navarre", + "geography": { + "type": "Point", + "coordinates": [ + -73.456337792206, + 45.4471531801124 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2565009942444 + }, + "name": "av. Niagara et civique 7895", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456139645, + 45.447303586 + ] + }, + "is_frozen": false, + "integer_id": 635, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459457, + 45.445096 + ] + }, + "id": 636, + "properties": { + "id": "57126f14-f5bb-4578-a4ae-48d75eae5e82", + "code": "32124", + "data": { + "stops": [ + { + "id": "2124", + "code": "32124", + "data": { + "gtfs": { + "stop_id": "2124", + "stop_code": "32124", + "stop_name": "av. Niagara et Nolet", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Niagara et Nolet", + "geography": { + "type": "Point", + "coordinates": [ + -73.4594736040324, + 45.445199652841 + ] + } + }, + { + "id": "2132", + "code": "32132", + "data": { + "gtfs": { + "stop_id": "2132", + "stop_code": "32132", + "stop_name": "av. Niagara et Nolet", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Niagara et Nolet", + "geography": { + "type": "Point", + "coordinates": [ + -73.4594409947107, + 45.4449926752615 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2193166923129 + }, + "name": "av. Niagara et Nolet", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459457299, + 45.445096164 + ] + }, + "is_frozen": false, + "integer_id": 636, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460759, + 45.443589 + ] + }, + "id": 637, + "properties": { + "id": "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", + "code": "32125", + "data": { + "stops": [ + { + "id": "2125", + "code": "32125", + "data": { + "gtfs": { + "stop_id": "2125", + "stop_code": "32125", + "stop_name": "av. Niagara et boul. Napoléon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Niagara et boul. Napoléon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4603966751953, + 45.4438497662472 + ] + } + }, + { + "id": "2131", + "code": "32131", + "data": { + "gtfs": { + "stop_id": "2131", + "stop_code": "32131", + "stop_name": "av. Orégon et boul. Napoléon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orégon et boul. Napoléon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4605491199356, + 45.443328336516 + ] + } + }, + { + "id": "2735", + "code": "32735", + "data": { + "gtfs": { + "stop_id": "2735", + "stop_code": "32735", + "stop_name": "boul. Napoléon et av. Orégon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Napoléon et av. Orégon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4607966490373, + 45.4435302982385 + ] + } + }, + { + "id": "4425", + "code": "34425", + "data": { + "gtfs": { + "stop_id": "4425", + "stop_code": "34425", + "stop_name": "boul. Napoléon et av. Orégon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Napoléon et av. Orégon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4611204734063, + 45.4436356367626 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1939316656103 + }, + "name": "av. Niagara et boul. Napoléon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.460758574, + 45.443589051 + ] + }, + "is_frozen": false, + "integer_id": 637, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461254, + 45.442371 + ] + }, + "id": 638, + "properties": { + "id": "9b31d865-da9f-4eb8-b8a9-3d488eb579df", + "code": "32126", + "data": { + "stops": [ + { + "id": "2126", + "code": "32126", + "data": { + "gtfs": { + "stop_id": "2126", + "stop_code": "32126", + "stop_name": "av. Orégon et croiss. Olivier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orégon et croiss. Olivier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4612843071354, + 45.4424822317552 + ] + } + }, + { + "id": "3912", + "code": "33912", + "data": { + "gtfs": { + "stop_id": "3912", + "stop_code": "33912", + "stop_name": "av. Orégon et croiss. Olivier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orégon et croiss. Olivier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4612245950243, + 45.4422595222714 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1734148486083 + }, + "name": "av. Orégon et croiss. Olivier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461254451, + 45.442370877 + ] + }, + "is_frozen": false, + "integer_id": 638, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462118, + 45.441094 + ] + }, + "id": 639, + "properties": { + "id": "b93691d0-438e-4eac-87a0-7c1ac45a7c18", + "code": "32129", + "data": { + "stops": [ + { + "id": "2129", + "code": "32129", + "data": { + "gtfs": { + "stop_id": "2129", + "stop_code": "32129", + "stop_name": "av. Orient et av. Orégon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orient et av. Orégon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4619951415501, + 45.4410387017686 + ] + } + }, + { + "id": "2736", + "code": "32736", + "data": { + "gtfs": { + "stop_id": "2736", + "stop_code": "32736", + "stop_name": "av. Orégon et av. Orient", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orégon et av. Orient", + "geography": { + "type": "Point", + "coordinates": [ + -73.4621379986156, + 45.4412592131513 + ] + } + }, + { + "id": "5573", + "code": "30321", + "data": { + "gtfs": { + "stop_id": "5573", + "stop_code": "30321", + "stop_name": "av. Orégon et av. Orient", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orégon et av. Orient", + "geography": { + "type": "Point", + "coordinates": [ + -73.462240974477, + 45.4409285900164 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.151909101472 + }, + "name": "av. Orient et av. Orégon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462118058, + 45.441093902 + ] + }, + "is_frozen": false, + "integer_id": 639, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457939, + 45.446706 + ] + }, + "id": 640, + "properties": { + "id": "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", + "code": "32133", + "data": { + "stops": [ + { + "id": "2133", + "code": "32133", + "data": { + "gtfs": { + "stop_id": "2133", + "stop_code": "32133", + "stop_name": "av. Niagara et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Niagara et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4580694326702, + 45.4465877023567 + ] + } + }, + { + "id": "3824", + "code": "33824", + "data": { + "gtfs": { + "stop_id": "3824", + "stop_code": "33824", + "stop_name": "av. Niagara et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Niagara et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4578089458202, + 45.4468252213435 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2464419388664 + }, + "name": "av. Niagara et Passage piétonnier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457939189, + 45.446706462 + ] + }, + "is_frozen": false, + "integer_id": 640, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454422, + 45.448947 + ] + }, + "id": 641, + "properties": { + "id": "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", + "code": "32135", + "data": { + "stops": [ + { + "id": "2135", + "code": "32135", + "data": { + "gtfs": { + "stop_id": "2135", + "stop_code": "32135", + "stop_name": "av. Niagara et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Niagara et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4543324415186, + 45.4488356019537 + ] + } + }, + { + "id": "3394", + "code": "33394", + "data": { + "gtfs": { + "stop_id": "3394", + "stop_code": "33394", + "stop_name": "boul. de Rome et av. Niagara", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. Niagara", + "geography": { + "type": "Point", + "coordinates": [ + -73.4545123659175, + 45.4490588153429 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2841908373387 + }, + "name": "av. Niagara et boul. de Rome", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454422404, + 45.448947209 + ] + }, + "is_frozen": false, + "integer_id": 641, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450312, + 45.45756 + ] + }, + "id": 642, + "properties": { + "id": "0c735a18-4964-435c-ad38-89ab21a47f83", + "code": "32141", + "data": { + "stops": [ + { + "id": "2141", + "code": "32141", + "data": { + "gtfs": { + "stop_id": "2141", + "stop_code": "32141", + "stop_name": "av. Maupassant et av. Malo", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Maupassant et av. Malo", + "geography": { + "type": "Point", + "coordinates": [ + -73.4503117855295, + 45.4575599904533 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4293281017093 + }, + "name": "av. Maupassant et av. Malo", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450311786, + 45.45755999 + ] + }, + "is_frozen": false, + "integer_id": 642, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454561, + 45.460833 + ] + }, + "id": 643, + "properties": { + "id": "4ca26d1e-a5a2-4d1a-ba5a-7bed9b5a1bee", + "code": "32143", + "data": { + "stops": [ + { + "id": "2143", + "code": "32143", + "data": { + "gtfs": { + "stop_id": "2143", + "stop_code": "32143", + "stop_name": "av. Malo et civique 3127", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et civique 3127", + "geography": { + "type": "Point", + "coordinates": [ + -73.4545609880758, + 45.4608327144269 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4844952806736 + }, + "name": "av. Malo et civique 3127", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454560988, + 45.460832714 + ] + }, + "is_frozen": false, + "integer_id": 643, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458505, + 45.462255 + ] + }, + "id": 644, + "properties": { + "id": "5d862a7d-92b0-4def-8199-258993ce3523", + "code": "32144", + "data": { + "stops": [ + { + "id": "2144", + "code": "32144", + "data": { + "gtfs": { + "stop_id": "2144", + "stop_code": "32144", + "stop_name": "av. Malo et Moquin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et Moquin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4585052271216, + 45.4622551120278 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5084751163645 + }, + "name": "av. Malo et Moquin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.458505227, + 45.462255112 + ] + }, + "is_frozen": false, + "integer_id": 644, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462924, + 45.460692 + ] + }, + "id": 645, + "properties": { + "id": "d0325326-9fbf-42e2-aefa-29fa09853c10", + "code": "32146", + "data": { + "stops": [ + { + "id": "2146", + "code": "32146", + "data": { + "gtfs": { + "stop_id": "2146", + "stop_code": "32146", + "stop_name": "av. Malo et Molière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et Molière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4630192331038, + 45.4607682771783 + ] + } + }, + { + "id": "4330", + "code": "34330", + "data": { + "gtfs": { + "stop_id": "4330", + "stop_code": "34330", + "stop_name": "av. Malo et Molière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et Molière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4628280986916, + 45.460615943468 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4821249721558 + }, + "name": "av. Malo et Molière", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462923666, + 45.46069211 + ] + }, + "is_frozen": false, + "integer_id": 645, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463069, + 45.459279 + ] + }, + "id": 646, + "properties": { + "id": "d13720b6-fb91-4a90-a816-addaef17cf17", + "code": "32147", + "data": { + "stops": [ + { + "id": "2147", + "code": "32147", + "data": { + "gtfs": { + "stop_id": "2147", + "stop_code": "32147", + "stop_name": "av. Malo et Mario", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et Mario", + "geography": { + "type": "Point", + "coordinates": [ + -73.4628465189701, + 45.4595382713116 + ] + } + }, + { + "id": "2754", + "code": "32754", + "data": { + "gtfs": { + "stop_id": "2754", + "stop_code": "32754", + "stop_name": "av. Malo et Murville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et Murville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4625439931521, + 45.4590206193123 + ] + } + }, + { + "id": "4340", + "code": "34340", + "data": { + "gtfs": { + "stop_id": "4340", + "stop_code": "34340", + "stop_name": "Mario et civique 2100", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Mario et civique 2100", + "geography": { + "type": "Point", + "coordinates": [ + -73.463593009063, + 45.4592689310323 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 969.4674773996558 + }, + "name": "av. Malo et Mario", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463068501, + 45.459279445 + ] + }, + "is_frozen": false, + "integer_id": 646, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 51, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451514, + 45.482026 + ] + }, + "id": 647, + "properties": { + "id": "9e951734-6b3c-4bdd-adf4-832ff4bf51af", + "code": "32149", + "data": { + "stops": [ + { + "id": "2149", + "code": "32149", + "data": { + "gtfs": { + "stop_id": "2149", + "stop_code": "32149", + "stop_name": "Bellevue et CENTRE D'EXPLOITATION DU RESEAU DE TRANSPORT DE LONGUEUIL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et CENTRE D'EXPLOITATION DU RESEAU DE TRANSPORT DE LONGUEUIL", + "geography": { + "type": "Point", + "coordinates": [ + -73.4511992334882, + 45.4820743019449 + ] + } + }, + { + "id": "2181", + "code": "32181", + "data": { + "gtfs": { + "stop_id": "2181", + "stop_code": "32181", + "stop_name": "Bellevue et civique 1685", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et civique 1685", + "geography": { + "type": "Point", + "coordinates": [ + -73.4518297366828, + 45.4819780241515 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8419761288819 + }, + "name": "Bellevue et CENTRE D'EXPLOITATION DU RESEAU DE TRANSPORT DE LONGUEUIL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451514485, + 45.482026163 + ] + }, + "is_frozen": false, + "integer_id": 647, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449997, + 45.48295 + ] + }, + "id": 648, + "properties": { + "id": "4d67ff32-8baa-4f46-bb29-fa3253415875", + "code": "32150", + "data": { + "stops": [ + { + "id": "2150", + "code": "32150", + "data": { + "gtfs": { + "stop_id": "2150", + "stop_code": "32150", + "stop_name": "Bellevue et Park", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et Park", + "geography": { + "type": "Point", + "coordinates": [ + -73.4500609739375, + 45.4827691293189 + ] + } + }, + { + "id": "2180", + "code": "32180", + "data": { + "gtfs": { + "stop_id": "2180", + "stop_code": "32180", + "stop_name": "Bellevue et Park", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et Park", + "geography": { + "type": "Point", + "coordinates": [ + -73.4499325849153, + 45.483130085118 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8575614075532 + }, + "name": "Bellevue et Park", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449996779, + 45.482949607 + ] + }, + "is_frozen": false, + "integer_id": 648, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44815, + 45.484447 + ] + }, + "id": 649, + "properties": { + "id": "d9b94443-0b59-40db-aecb-0acb5ea7976c", + "code": "32151", + "data": { + "stops": [ + { + "id": "2151", + "code": "32151", + "data": { + "gtfs": { + "stop_id": "2151", + "stop_code": "32151", + "stop_name": "Bellevue et Baron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et Baron", + "geography": { + "type": "Point", + "coordinates": [ + -73.4481502074088, + 45.4844469840891 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8828347597307 + }, + "name": "Bellevue et Baron", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448150207, + 45.484446984 + ] + }, + "is_frozen": false, + "integer_id": 649, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446753, + 45.485967 + ] + }, + "id": 650, + "properties": { + "id": "070bdb64-f7ee-43c2-8e32-71e1dacd4745", + "code": "32152", + "data": { + "stops": [ + { + "id": "2152", + "code": "32152", + "data": { + "gtfs": { + "stop_id": "2152", + "stop_code": "32152", + "stop_name": "Bellevue et du Centenaire", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et du Centenaire", + "geography": { + "type": "Point", + "coordinates": [ + -73.4467199073781, + 45.4858172176887 + ] + } + }, + { + "id": "2178", + "code": "32178", + "data": { + "gtfs": { + "stop_id": "2178", + "stop_code": "32178", + "stop_name": "Bellevue et du Centenaire", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et du Centenaire", + "geography": { + "type": "Point", + "coordinates": [ + -73.4467867590564, + 45.4861176776461 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9084998232593 + }, + "name": "Bellevue et du Centenaire", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446753333, + 45.485967448 + ] + }, + "is_frozen": false, + "integer_id": 650, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44551, + 45.487163 + ] + }, + "id": 651, + "properties": { + "id": "ee549609-3f81-482a-ad57-c350bc1bbf48", + "code": "32153", + "data": { + "stops": [ + { + "id": "2153", + "code": "32153", + "data": { + "gtfs": { + "stop_id": "2153", + "stop_code": "32153", + "stop_name": "Bellevue et boul. Payer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et boul. Payer", + "geography": { + "type": "Point", + "coordinates": [ + -73.4452856828035, + 45.4871986828388 + ] + } + }, + { + "id": "2177", + "code": "32177", + "data": { + "gtfs": { + "stop_id": "2177", + "stop_code": "32177", + "stop_name": "Bellevue et civique 1305", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et civique 1305", + "geography": { + "type": "Point", + "coordinates": [ + -73.4457337132402, + 45.4871277628699 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9286856589248 + }, + "name": "Bellevue et boul. Payer", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445509698, + 45.487163223 + ] + }, + "is_frozen": false, + "integer_id": 651, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461947, + 45.478537 + ] + }, + "id": 652, + "properties": { + "id": "9f622393-7da9-4ff8-9bda-12008512c7ed", + "code": "32158", + "data": { + "stops": [ + { + "id": "2158", + "code": "32158", + "data": { + "gtfs": { + "stop_id": "2158", + "stop_code": "32158", + "stop_name": "Agathe et André", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Agathe et André", + "geography": { + "type": "Point", + "coordinates": [ + -73.4620095751167, + 45.4785946714845 + ] + } + }, + { + "id": "2173", + "code": "32173", + "data": { + "gtfs": { + "stop_id": "2173", + "stop_code": "32173", + "stop_name": "André et Agathe", + "location_type": 0, + "parent_station": "" + } + }, + "name": "André et Agathe", + "geography": { + "type": "Point", + "coordinates": [ + -73.4618844649362, + 45.4784788627025 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7830912472314 + }, + "name": "Agathe et André", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46194702, + 45.478536767 + ] + }, + "is_frozen": false, + "integer_id": 652, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461426, + 45.477956 + ] + }, + "id": 653, + "properties": { + "id": "4122212c-2ecd-4db2-a305-20f02711d17b", + "code": "32159", + "data": { + "stops": [ + { + "id": "2159", + "code": "32159", + "data": { + "gtfs": { + "stop_id": "2159", + "stop_code": "32159", + "stop_name": "André et av. Aumont", + "location_type": 0, + "parent_station": "" + } + }, + "name": "André et av. Aumont", + "geography": { + "type": "Point", + "coordinates": [ + -73.461487299483, + 45.478020742483 + ] + } + }, + { + "id": "2172", + "code": "32172", + "data": { + "gtfs": { + "stop_id": "2172", + "stop_code": "32172", + "stop_name": "av. Aumont et André", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Aumont et André", + "geography": { + "type": "Point", + "coordinates": [ + -73.46136391506, + 45.4778911165502 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7732904528418 + }, + "name": "André et av. Aumont", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461425607, + 45.47795593 + ] + }, + "is_frozen": false, + "integer_id": 653, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462832, + 45.476981 + ] + }, + "id": 654, + "properties": { + "id": "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", + "code": "32160", + "data": { + "stops": [ + { + "id": "2160", + "code": "32160", + "data": { + "gtfs": { + "stop_id": "2160", + "stop_code": "32160", + "stop_name": "av. Aumont et av. d'Athènes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Aumont et av. d'Athènes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4627871099821, + 45.4771049499467 + ] + } + }, + { + "id": "2171", + "code": "32171", + "data": { + "gtfs": { + "stop_id": "2171", + "stop_code": "32171", + "stop_name": "av. Aumont et av. d'Athènes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Aumont et av. d'Athènes", + "geography": { + "type": "Point", + "coordinates": [ + -73.462876406877, + 45.4768575210357 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7568445410737 + }, + "name": "av. Aumont et av. d'Athènes", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462831758, + 45.476981235 + ] + }, + "is_frozen": false, + "integer_id": 654, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464202, + 45.475788 + ] + }, + "id": 655, + "properties": { + "id": "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", + "code": "32161", + "data": { + "stops": [ + { + "id": "2161", + "code": "32161", + "data": { + "gtfs": { + "stop_id": "2161", + "stop_code": "32161", + "stop_name": "av. Aubert et civique 2475", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Aubert et civique 2475", + "geography": { + "type": "Point", + "coordinates": [ + -73.4641684359061, + 45.4756699120767 + ] + } + }, + { + "id": "2170", + "code": "32170", + "data": { + "gtfs": { + "stop_id": "2170", + "stop_code": "32170", + "stop_name": "av. Aubert et av. Aumont", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Aubert et av. Aumont", + "geography": { + "type": "Point", + "coordinates": [ + -73.4642361559351, + 45.4759061666221 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7367130372528 + }, + "name": "av. Aubert et civique 2475", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464202296, + 45.475788039 + ] + }, + "is_frozen": false, + "integer_id": 655, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461623, + 45.474384 + ] + }, + "id": 656, + "properties": { + "id": "c467599b-2164-4b14-b9ca-8960936bda58", + "code": "32162", + "data": { + "stops": [ + { + "id": "2162", + "code": "32162", + "data": { + "gtfs": { + "stop_id": "2162", + "stop_code": "32162", + "stop_name": "av. Aubert et Alfred", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Aubert et Alfred", + "geography": { + "type": "Point", + "coordinates": [ + -73.4616587918548, + 45.4744619924085 + ] + } + }, + { + "id": "2169", + "code": "32169", + "data": { + "gtfs": { + "stop_id": "2169", + "stop_code": "32169", + "stop_name": "Alfred et av. Aubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Alfred et av. Aubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.461587885986, + 45.4743060277036 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7130259963615 + }, + "name": "av. Aubert et Alfred", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461623339, + 45.47438401 + ] + }, + "is_frozen": false, + "integer_id": 656, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464103, + 45.472679 + ] + }, + "id": 657, + "properties": { + "id": "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", + "code": "32163", + "data": { + "stops": [ + { + "id": "2163", + "code": "32163", + "data": { + "gtfs": { + "stop_id": "2163", + "stop_code": "32163", + "stop_name": "Alfred et Audette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Alfred et Audette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4641352908574, + 45.4727664966368 + ] + } + }, + { + "id": "2168", + "code": "32168", + "data": { + "gtfs": { + "stop_id": "2168", + "stop_code": "32168", + "stop_name": "Alfred et Audette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Alfred et Audette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4640706454128, + 45.4725912300564 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.684261219707 + }, + "name": "Alfred et Audette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464102968, + 45.472678863 + ] + }, + "is_frozen": false, + "integer_id": 657, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465933, + 45.47139 + ] + }, + "id": 658, + "properties": { + "id": "156c412f-0b84-4b14-a73e-e1d07d0b148d", + "code": "32164", + "data": { + "stops": [ + { + "id": "2164", + "code": "32164", + "data": { + "gtfs": { + "stop_id": "2164", + "stop_code": "32164", + "stop_name": "Alfred et boul. Lapinière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Alfred et boul. Lapinière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4659905692144, + 45.4714684035582 + ] + } + }, + { + "id": "2167", + "code": "32167", + "data": { + "gtfs": { + "stop_id": "2167", + "stop_code": "32167", + "stop_name": "Alfred et boul. Lapinière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Alfred et boul. Lapinière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4658747602677, + 45.4713108956132 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.662514707157 + }, + "name": "Alfred et boul. Lapinière", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465932665, + 45.47138965 + ] + }, + "is_frozen": false, + "integer_id": 658, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448365, + 45.484631 + ] + }, + "id": 659, + "properties": { + "id": "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", + "code": "32179", + "data": { + "stops": [ + { + "id": "2179", + "code": "32179", + "data": { + "gtfs": { + "stop_id": "2179", + "stop_code": "32179", + "stop_name": "Bellevue et Baron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellevue et Baron", + "geography": { + "type": "Point", + "coordinates": [ + -73.4483651373859, + 45.4846310567515 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8859417579882 + }, + "name": "Bellevue et Baron", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448365137, + 45.484631057 + ] + }, + "is_frozen": false, + "integer_id": 659, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491529, + 45.457196 + ] + }, + "id": 660, + "properties": { + "id": "69fd316d-244b-48fa-871d-645ac04399fc", + "code": "32182", + "data": { + "stops": [ + { + "id": "2182", + "code": "32182", + "data": { + "gtfs": { + "stop_id": "2182", + "stop_code": "32182", + "stop_name": "boul. de Rome et boul. Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et boul. Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4915288910383, + 45.4571961528732 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4231956140387 + }, + "name": "boul. de Rome et boul. Marie-Victorin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491528891, + 45.457196153 + ] + }, + "is_frozen": false, + "integer_id": 660, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448657, + 45.571148 + ] + }, + "id": 661, + "properties": { + "id": "6672cb43-3241-42d7-b5c0-fdaed10338b9", + "code": "32183", + "data": { + "stops": [ + { + "id": "2183", + "code": "32183", + "data": { + "gtfs": { + "stop_id": "2183", + "stop_code": "32183", + "stop_name": "boul. de Mortagne et Volta", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Volta", + "geography": { + "type": "Point", + "coordinates": [ + -73.4486573437763, + 45.5711476378381 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3496093638884 + }, + "name": "boul. de Mortagne et Volta", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448657344, + 45.571147638 + ] + }, + "is_frozen": false, + "integer_id": 661, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.447232, + 45.580187 + ] + }, + "id": 662, + "properties": { + "id": "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", + "code": "32185", + "data": { + "stops": [ + { + "id": "2185", + "code": "32185", + "data": { + "gtfs": { + "stop_id": "2185", + "stop_code": "32185", + "stop_name": "boul. de Mortagne et Lionel-Groulx", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Lionel-Groulx", + "geography": { + "type": "Point", + "coordinates": [ + -73.4470239711468, + 45.5800816038741 + ] + } + }, + { + "id": "2201", + "code": "32201", + "data": { + "gtfs": { + "stop_id": "2201", + "stop_code": "32201", + "stop_name": "boul. de Mortagne et Lionel-Groulx", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Lionel-Groulx", + "geography": { + "type": "Point", + "coordinates": [ + -73.4474410047757, + 45.5802924532012 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5029211196014 + }, + "name": "boul. de Mortagne et Lionel-Groulx", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447232488, + 45.580187029 + ] + }, + "is_frozen": false, + "integer_id": 662, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44734, + 45.582486 + ] + }, + "id": 663, + "properties": { + "id": "44ce6da8-ee79-4e09-9c16-f31566643c0c", + "code": "32186", + "data": { + "stops": [ + { + "id": "2186", + "code": "32186", + "data": { + "gtfs": { + "stop_id": "2186", + "stop_code": "32186", + "stop_name": "boul. de Mortagne et Calixa-Lavallée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Calixa-Lavallée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4471093200052, + 45.5822901725193 + ] + } + }, + { + "id": "2200", + "code": "32200", + "data": { + "gtfs": { + "stop_id": "2200", + "stop_code": "32200", + "stop_name": "boul. de Mortagne et Calixa-Lavallée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Calixa-Lavallée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4473022203604, + 45.5826814395652 + ] + } + }, + { + "id": "2411", + "code": "32411", + "data": { + "gtfs": { + "stop_id": "2411", + "stop_code": "32411", + "stop_name": "Calixa-Lavallée et boul. de Mortagne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Calixa-Lavallée et boul. de Mortagne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4475715419449, + 45.582452612425 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5419209690286 + }, + "name": "boul. de Mortagne et Calixa-Lavallée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447340431, + 45.582485806 + ] + }, + "is_frozen": false, + "integer_id": 663, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44589, + 45.583811 + ] + }, + "id": 664, + "properties": { + "id": "7b512bac-ad2d-4d5a-87d8-173290a7b311", + "code": "32187", + "data": { + "stops": [ + { + "id": "2187", + "code": "32187", + "data": { + "gtfs": { + "stop_id": "2187", + "stop_code": "32187", + "stop_name": "boul. de Mortagne et du Perche", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et du Perche", + "geography": { + "type": "Point", + "coordinates": [ + -73.4460287140069, + 45.5835716770604 + ] + } + }, + { + "id": "2316", + "code": "32316", + "data": { + "gtfs": { + "stop_id": "2316", + "stop_code": "32316", + "stop_name": "du Perche et boul. de Mortagne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Perche et boul. de Mortagne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4457503101092, + 45.5837462769335 + ] + } + }, + { + "id": "3548", + "code": "33548", + "data": { + "gtfs": { + "stop_id": "3548", + "stop_code": "33548", + "stop_name": "boul. de Mortagne et du Perche", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et du Perche", + "geography": { + "type": "Point", + "coordinates": [ + -73.4459427018356, + 45.5840499780568 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5644027475745 + }, + "name": "boul. de Mortagne et du Perche", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445889512, + 45.583810828 + ] + }, + "is_frozen": false, + "integer_id": 664, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.447297, + 45.599042 + ] + }, + "id": 665, + "properties": { + "id": "e215ed06-76bb-473a-80f3-21384e4c300f", + "code": "32189", + "data": { + "stops": [ + { + "id": "2189", + "code": "32189", + "data": { + "gtfs": { + "stop_id": "2189", + "stop_code": "32189", + "stop_name": "boul. De Montarville et Samuel-De Champlain", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et Samuel-De Champlain", + "geography": { + "type": "Point", + "coordinates": [ + -73.4469078731305, + 45.5991391317818 + ] + } + }, + { + "id": "2352", + "code": "32352", + "data": { + "gtfs": { + "stop_id": "2352", + "stop_code": "32352", + "stop_name": "Samuel-De Champlain et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4472180145817, + 45.5990357952956 + ] + } + }, + { + "id": "3325", + "code": "33325", + "data": { + "gtfs": { + "stop_id": "3325", + "stop_code": "33325", + "stop_name": "boul. De Montarville et Samuel-De Champlain", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et Samuel-De Champlain", + "geography": { + "type": "Point", + "coordinates": [ + -73.4469828873584, + 45.5989447219207 + ] + } + }, + { + "id": "4289", + "code": "34289", + "data": { + "gtfs": { + "stop_id": "4289", + "stop_code": "34289", + "stop_name": "Samuel-De Champlain et civique 425", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et civique 425", + "geography": { + "type": "Point", + "coordinates": [ + -73.4476869952226, + 45.5989924260539 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8229431363615 + }, + "name": "boul. De Montarville et Samuel-De Champlain", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447297434, + 45.599041927 + ] + }, + "is_frozen": false, + "integer_id": 665, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456546, + 45.606424 + ] + }, + "id": 666, + "properties": { + "id": "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", + "code": "32191", + "data": { + "stops": [ + { + "id": "2191", + "code": "32191", + "data": { + "gtfs": { + "stop_id": "2191", + "stop_code": "32191", + "stop_name": "boul. De Montarville et Samuel-Provost", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et Samuel-Provost", + "geography": { + "type": "Point", + "coordinates": [ + -73.4563765229973, + 45.606539719796 + ] + } + }, + { + "id": "2270", + "code": "32270", + "data": { + "gtfs": { + "stop_id": "2270", + "stop_code": "32270", + "stop_name": "boul. Marie-Victorin et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.456572720538, + 45.6061618673388 + ] + } + }, + { + "id": "4017", + "code": "34017", + "data": { + "gtfs": { + "stop_id": "4017", + "stop_code": "34017", + "stop_name": "boul. Marie-Victorin et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4567163125841, + 45.6066861950474 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.948325442891 + }, + "name": "boul. De Montarville et Samuel-Provost", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456546418, + 45.606424031 + ] + }, + "is_frozen": false, + "integer_id": 666, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442736, + 45.596144 + ] + }, + "id": 667, + "properties": { + "id": "0872c388-8faf-4852-b4ce-cf3f6312e0ef", + "code": "32197", + "data": { + "stops": [ + { + "id": "2197", + "code": "32197", + "data": { + "gtfs": { + "stop_id": "2197", + "stop_code": "32197", + "stop_name": "boul. De Montarville et de Brion", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et de Brion", + "geography": { + "type": "Point", + "coordinates": [ + -73.4429217759937, + 45.5961151227576 + ] + } + }, + { + "id": "2368", + "code": "32368", + "data": { + "gtfs": { + "stop_id": "2368", + "stop_code": "32368", + "stop_name": "Jacques-Cartier et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jacques-Cartier et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4425493095665, + 45.5961738631086 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7737446290439 + }, + "name": "boul. De Montarville et de Brion", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442735543, + 45.596144493 + ] + }, + "is_frozen": false, + "integer_id": 667, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491549, + 45.562578 + ] + }, + "id": 668, + "properties": { + "id": "84a0424b-0f35-4bd8-8109-5ac9219d5869", + "code": "32203", + "data": { + "stops": [ + { + "id": "2203", + "code": "32203", + "data": { + "gtfs": { + "stop_id": "2203", + "stop_code": "32203", + "stop_name": "boul. Marie-Victorin et Lapointe", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Lapointe", + "geography": { + "type": "Point", + "coordinates": [ + -73.4916166426828, + 45.562388576879 + ] + } + }, + { + "id": "2262", + "code": "32262", + "data": { + "gtfs": { + "stop_id": "2262", + "stop_code": "32262", + "stop_name": "boul. Marie-Victorin et Lapointe", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Lapointe", + "geography": { + "type": "Point", + "coordinates": [ + -73.4916650240449, + 45.5627665105341 + ] + } + }, + { + "id": "2588", + "code": "32588", + "data": { + "gtfs": { + "stop_id": "2588", + "stop_code": "32588", + "stop_name": "Lapointe et boul. Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lapointe et boul. Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4914320751289, + 45.5625370357333 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2043245295058 + }, + "name": "boul. Marie-Victorin et Lapointe", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.49154855, + 45.562577544 + ] + }, + "is_frozen": false, + "integer_id": 668, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486242, + 45.569302 + ] + }, + "id": 669, + "properties": { + "id": "de56e105-40ff-411e-a830-378b68780088", + "code": "32204", + "data": { + "stops": [ + { + "id": "2204", + "code": "32204", + "data": { + "gtfs": { + "stop_id": "2204", + "stop_code": "32204", + "stop_name": "boul. Marie-Victorin et boul. Jean-Paul-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et boul. Jean-Paul-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4862422985231, + 45.5693015429731 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.318307823495 + }, + "name": "boul. Marie-Victorin et boul. Jean-Paul-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486242299, + 45.569301543 + ] + }, + "is_frozen": false, + "integer_id": 669, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482137, + 45.573075 + ] + }, + "id": 670, + "properties": { + "id": "ab105343-272d-4aa3-9238-846c2fa787cb", + "code": "32205", + "data": { + "stops": [ + { + "id": "2205", + "code": "32205", + "data": { + "gtfs": { + "stop_id": "2205", + "stop_code": "32205", + "stop_name": "boul. Marie-Victorin et Guy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Guy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4821523669673, + 45.5729064133973 + ] + } + }, + { + "id": "3572", + "code": "33572", + "data": { + "gtfs": { + "stop_id": "3572", + "stop_code": "33572", + "stop_name": "boul. Marie-Victorin et Guy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Guy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4821225223181, + 45.5732437962198 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.382293861503 + }, + "name": "boul. Marie-Victorin et Guy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482137445, + 45.573075105 + ] + }, + "is_frozen": false, + "integer_id": 670, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.480385, + 45.574548 + ] + }, + "id": 671, + "properties": { + "id": "dc112aae-906c-47be-a1fb-06ef714fd1ab", + "code": "32206", + "data": { + "stops": [ + { + "id": "2206", + "code": "32206", + "data": { + "gtfs": { + "stop_id": "2206", + "stop_code": "32206", + "stop_name": "boul. Marie-Victorin et Guillerm", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Guillerm", + "geography": { + "type": "Point", + "coordinates": [ + -73.4803969811333, + 45.5743897576271 + ] + } + }, + { + "id": "2257", + "code": "32257", + "data": { + "gtfs": { + "stop_id": "2257", + "stop_code": "32257", + "stop_name": "boul. Marie-Victorin et Guillerm", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Guillerm", + "geography": { + "type": "Point", + "coordinates": [ + -73.480373705224, + 45.5747068714232 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4072776590081 + }, + "name": "boul. Marie-Victorin et Guillerm", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.480385343, + 45.574548315 + ] + }, + "is_frozen": false, + "integer_id": 671, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479146, + 45.575529 + ] + }, + "id": 672, + "properties": { + "id": "75347f42-115f-47ec-b394-c1f56ce167fb", + "code": "32207", + "data": { + "stops": [ + { + "id": "2207", + "code": "32207", + "data": { + "gtfs": { + "stop_id": "2207", + "stop_code": "32207", + "stop_name": "boul. Marie-Victorin et boul. Guimond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et boul. Guimond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4792153578925, + 45.5753715782341 + ] + } + }, + { + "id": "3870", + "code": "33870", + "data": { + "gtfs": { + "stop_id": "3870", + "stop_code": "33870", + "stop_name": "boul. Marie-Victorin et boul. Guimond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et boul. Guimond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4792152802624, + 45.5756862097234 + ] + } + }, + { + "id": "5233", + "code": "35233", + "data": { + "gtfs": { + "stop_id": "5233", + "stop_code": "35233", + "stop_name": "boul. Guimond et boul. Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Guimond et boul. Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4790769377167, + 45.5754864218652 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4239081270662 + }, + "name": "boul. Marie-Victorin et boul. Guimond", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479146148, + 45.575528894 + ] + }, + "is_frozen": false, + "integer_id": 672, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.477087, + 45.577316 + ] + }, + "id": 673, + "properties": { + "id": "bf75043d-39f5-40a1-89fa-2154a9f2a45f", + "code": "32208", + "data": { + "stops": [ + { + "id": "2208", + "code": "32208", + "data": { + "gtfs": { + "stop_id": "2208", + "stop_code": "32208", + "stop_name": "boul. Marie-Victorin et Arsène", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Arsène", + "geography": { + "type": "Point", + "coordinates": [ + -73.4769979499007, + 45.5772428026588 + ] + } + }, + { + "id": "2255", + "code": "32255", + "data": { + "gtfs": { + "stop_id": "2255", + "stop_code": "32255", + "stop_name": "boul. Marie-Victorin et Arsène", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Arsène", + "geography": { + "type": "Point", + "coordinates": [ + -73.4771758390855, + 45.5773894892408 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4542218560132 + }, + "name": "boul. Marie-Victorin et Arsène", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.477086894, + 45.577316146 + ] + }, + "is_frozen": false, + "integer_id": 673, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460972, + 45.586236 + ] + }, + "id": 674, + "properties": { + "id": "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", + "code": "32210", + "data": { + "stops": [ + { + "id": "2210", + "code": "32210", + "data": { + "gtfs": { + "stop_id": "2210", + "stop_code": "32210", + "stop_name": "boul. du Fort-Saint-Louis et boul. Industriel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et boul. Industriel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4613214725522, + 45.5860849166582 + ] + } + }, + { + "id": "4019", + "code": "34019", + "data": { + "gtfs": { + "stop_id": "4019", + "stop_code": "34019", + "stop_name": "boul. du Fort-Saint-Louis et boul. Industriel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et boul. Industriel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4612600523212, + 45.5864181577347 + ] + } + }, + { + "id": "4074", + "code": "34074", + "data": { + "gtfs": { + "stop_id": "4074", + "stop_code": "34074", + "stop_name": "boul. Industriel et boul. du Fort-Saint-Louis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Industriel et boul. du Fort-Saint-Louis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4606223242219, + 45.586053585081 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6055527586639 + }, + "name": "boul. du Fort-Saint-Louis et boul. Industriel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.460971898, + 45.586235871 + ] + }, + "is_frozen": false, + "integer_id": 674, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459872, + 45.587775 + ] + }, + "id": 675, + "properties": { + "id": "c650007a-bdeb-4831-9df5-833406e44887", + "code": "32211", + "data": { + "stops": [ + { + "id": "2211", + "code": "32211", + "data": { + "gtfs": { + "stop_id": "2211", + "stop_code": "32211", + "stop_name": "boul. du Fort-Saint-Louis et De Cournoyer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et De Cournoyer", + "geography": { + "type": "Point", + "coordinates": [ + -73.4596298470529, + 45.5879039518062 + ] + } + }, + { + "id": "2298", + "code": "32298", + "data": { + "gtfs": { + "stop_id": "2298", + "stop_code": "32298", + "stop_name": "boul. du Fort-Saint-Louis et Claude-Dauzat", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Claude-Dauzat", + "geography": { + "type": "Point", + "coordinates": [ + -73.4601139579856, + 45.5876456799918 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6316695006225 + }, + "name": "boul. du Fort-Saint-Louis et De Cournoyer", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459871903, + 45.587774816 + ] + }, + "is_frozen": false, + "integer_id": 675, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464014, + 45.586191 + ] + }, + "id": 676, + "properties": { + "id": "b54db9a8-0c8c-43a8-a385-bc532fde3f70", + "code": "32213", + "data": { + "stops": [ + { + "id": "2213", + "code": "32213", + "data": { + "gtfs": { + "stop_id": "2213", + "stop_code": "32213", + "stop_name": "De La Barre et civique 50", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Barre et civique 50", + "geography": { + "type": "Point", + "coordinates": [ + -73.4640907816779, + 45.5861522965495 + ] + } + }, + { + "id": "2301", + "code": "32301", + "data": { + "gtfs": { + "stop_id": "2301", + "stop_code": "32301", + "stop_name": "De La Barre et civique 50", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Barre et civique 50", + "geography": { + "type": "Point", + "coordinates": [ + -73.4639371768524, + 45.586229035145 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6047856370233 + }, + "name": "De La Barre et civique 50", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464013979, + 45.586190666 + ] + }, + "is_frozen": false, + "integer_id": 676, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458299, + 45.589521 + ] + }, + "id": 677, + "properties": { + "id": "8babca8c-ebff-46bc-b0c6-b6576c4fada6", + "code": "32214", + "data": { + "stops": [ + { + "id": "2214", + "code": "32214", + "data": { + "gtfs": { + "stop_id": "2214", + "stop_code": "32214", + "stop_name": "boul. du Fort-Saint-Louis et civique 198", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et civique 198", + "geography": { + "type": "Point", + "coordinates": [ + -73.4582801963323, + 45.5894277996288 + ] + } + }, + { + "id": "2297", + "code": "32297", + "data": { + "gtfs": { + "stop_id": "2297", + "stop_code": "32297", + "stop_name": "boul. du Fort-Saint-Louis et civique 198", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et civique 198", + "geography": { + "type": "Point", + "coordinates": [ + -73.4583172359911, + 45.5896135433261 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6613001849074 + }, + "name": "boul. du Fort-Saint-Louis et civique 198", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.458298716, + 45.589520671 + ] + }, + "is_frozen": false, + "integer_id": 677, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45686, + 45.591543 + ] + }, + "id": 678, + "properties": { + "id": "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", + "code": "32215", + "data": { + "stops": [ + { + "id": "2215", + "code": "32215", + "data": { + "gtfs": { + "stop_id": "2215", + "stop_code": "32215", + "stop_name": "boul. du Fort-Saint-Louis et Tailhandier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Tailhandier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4567806045779, + 45.591475090531 + ] + } + }, + { + "id": "2296", + "code": "32296", + "data": { + "gtfs": { + "stop_id": "2296", + "stop_code": "32296", + "stop_name": "boul. du Fort-Saint-Louis et Tailhandier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Tailhandier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4569392459746, + 45.591611304469 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.695629962271 + }, + "name": "boul. du Fort-Saint-Louis et Tailhandier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456859925, + 45.591543198 + ] + }, + "is_frozen": false, + "integer_id": 678, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455705, + 45.593973 + ] + }, + "id": 679, + "properties": { + "id": "50c385af-a7f1-479f-b40d-4ed198aca8ce", + "code": "32216", + "data": { + "stops": [ + { + "id": "2216", + "code": "32216", + "data": { + "gtfs": { + "stop_id": "2216", + "stop_code": "32216", + "stop_name": "boul. du Fort-Saint-Louis et Thomas-Pépin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Thomas-Pépin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4555837119844, + 45.5939898114269 + ] + } + }, + { + "id": "2295", + "code": "32295", + "data": { + "gtfs": { + "stop_id": "2295", + "stop_code": "32295", + "stop_name": "boul. du Fort-Saint-Louis et Thomas-Pépin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Thomas-Pépin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4558263195612, + 45.5939559774563 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.736875747686 + }, + "name": "boul. du Fort-Saint-Louis et Thomas-Pépin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455705016, + 45.593972894 + ] + }, + "is_frozen": false, + "integer_id": 679, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454782, + 45.597707 + ] + }, + "id": 680, + "properties": { + "id": "c70f5c69-70b5-4f23-92e4-0440931e6d31", + "code": "32217", + "data": { + "stops": [ + { + "id": "2217", + "code": "32217", + "data": { + "gtfs": { + "stop_id": "2217", + "stop_code": "32217", + "stop_name": "boul. du Fort-Saint-Louis et TUNNEL M.-VICTORIN", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et TUNNEL M.-VICTORIN", + "geography": { + "type": "Point", + "coordinates": [ + -73.4547820298938, + 45.5977072115247 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.800278705873 + }, + "name": "boul. du Fort-Saint-Louis et TUNNEL M.-VICTORIN", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45478203, + 45.597707212 + ] + }, + "is_frozen": false, + "integer_id": 680, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454228, + 45.600559 + ] + }, + "id": 681, + "properties": { + "id": "0c7061af-3fd1-4686-aa29-c78d142ae807", + "code": "32218", + "data": { + "stops": [ + { + "id": "2218", + "code": "32218", + "data": { + "gtfs": { + "stop_id": "2218", + "stop_code": "32218", + "stop_name": "boul. du Fort-Saint-Louis et Jean-De Lafond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Jean-De Lafond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4542284647133, + 45.600558672337 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.84870050508 + }, + "name": "boul. du Fort-Saint-Louis et Jean-De Lafond", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454228465, + 45.600558672 + ] + }, + "is_frozen": false, + "integer_id": 681, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453543, + 45.60383 + ] + }, + "id": 682, + "properties": { + "id": "bef3dd7a-32fd-4081-9a62-9328ee51057a", + "code": "32219", + "data": { + "stops": [ + { + "id": "2219", + "code": "32219", + "data": { + "gtfs": { + "stop_id": "2219", + "stop_code": "32219", + "stop_name": "boul. du Fort-Saint-Louis et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4535431214001, + 45.6038301238227 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9042633289378 + }, + "name": "boul. du Fort-Saint-Louis et boul. De Montarville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453543121, + 45.603830124 + ] + }, + "is_frozen": false, + "integer_id": 682, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45292, + 45.607011 + ] + }, + "id": 683, + "properties": { + "id": "1fa5bec6-00bf-4d49-9290-67a2b0919f84", + "code": "32220", + "data": { + "stops": [ + { + "id": "2220", + "code": "32220", + "data": { + "gtfs": { + "stop_id": "2220", + "stop_code": "32220", + "stop_name": "boul. du Fort-Saint-Louis et Jacques-Viau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Jacques-Viau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4529198097415, + 45.6070109094755 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9582954435126 + }, + "name": "boul. du Fort-Saint-Louis et Jacques-Viau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45291981, + 45.607010909 + ] + }, + "is_frozen": false, + "integer_id": 683, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452477, + 45.609973 + ] + }, + "id": 684, + "properties": { + "id": "e2d71c2d-a170-4ce7-a381-519755a00e36", + "code": "32221", + "data": { + "stops": [ + { + "id": "2221", + "code": "32221", + "data": { + "gtfs": { + "stop_id": "2221", + "stop_code": "32221", + "stop_name": "boul. du Fort-Saint-Louis et Pierre-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Pierre-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4524063738835, + 45.6097784195496 + ] + } + }, + { + "id": "3605", + "code": "33605", + "data": { + "gtfs": { + "stop_id": "3605", + "stop_code": "33605", + "stop_name": "boul. du Fort-Saint-Louis et Pierre-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Pierre-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4525475343747, + 45.6101681173755 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.008625300127 + }, + "name": "boul. du Fort-Saint-Louis et Pierre-Boucher", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452476954, + 45.609973268 + ] + }, + "is_frozen": false, + "integer_id": 684, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451816, + 45.612252 + ] + }, + "id": 685, + "properties": { + "id": "039c87a4-2647-4079-9a79-c7d3278ef6b2", + "code": "32222", + "data": { + "stops": [ + { + "id": "2222", + "code": "32222", + "data": { + "gtfs": { + "stop_id": "2222", + "stop_code": "32222", + "stop_name": "boul. du Fort-Saint-Louis et De Lavaltrie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et De Lavaltrie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4517741864955, + 45.612071800909 + ] + } + }, + { + "id": "2291", + "code": "32291", + "data": { + "gtfs": { + "stop_id": "2291", + "stop_code": "32291", + "stop_name": "boul. du Fort-Saint-Louis et De Lavaltrie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et De Lavaltrie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4518570996264, + 45.6124312406832 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.0473376894279 + }, + "name": "boul. du Fort-Saint-Louis et De Lavaltrie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451815643, + 45.612251521 + ] + }, + "is_frozen": false, + "integer_id": 685, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451028, + 45.614489 + ] + }, + "id": 686, + "properties": { + "id": "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", + "code": "32223", + "data": { + "stops": [ + { + "id": "2223", + "code": "32223", + "data": { + "gtfs": { + "stop_id": "2223", + "stop_code": "32223", + "stop_name": "boul. du Fort-Saint-Louis et De Montbrun", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et De Montbrun", + "geography": { + "type": "Point", + "coordinates": [ + -73.4509215437633, + 45.6142475958436 + ] + } + }, + { + "id": "3327", + "code": "33327", + "data": { + "gtfs": { + "stop_id": "3327", + "stop_code": "33327", + "stop_name": "boul. du Fort-Saint-Louis et De Montbrun", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et De Montbrun", + "geography": { + "type": "Point", + "coordinates": [ + -73.4508984136885, + 45.614730412418 + ] + } + }, + { + "id": "5866", + "code": "30635", + "data": { + "gtfs": { + "stop_id": "5866", + "stop_code": "30635", + "stop_name": "De Montbrun et boul. du Fort-Saint-Louis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Montbrun et boul. du Fort-Saint-Louis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4511581629825, + 45.6143847343649 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.0853618373272 + }, + "name": "boul. du Fort-Saint-Louis et De Montbrun", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451028288, + 45.614489004 + ] + }, + "is_frozen": false, + "integer_id": 686, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449507, + 45.617107 + ] + }, + "id": 687, + "properties": { + "id": "0778ac37-7369-4d81-abbc-9aa1d13b1c38", + "code": "32224", + "data": { + "stops": [ + { + "id": "2224", + "code": "32224", + "data": { + "gtfs": { + "stop_id": "2224", + "stop_code": "32224", + "stop_name": "boul. du Fort-Saint-Louis et Pierre-Bourgery", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Pierre-Bourgery", + "geography": { + "type": "Point", + "coordinates": [ + -73.4494545802536, + 45.6169789857563 + ] + } + }, + { + "id": "2290", + "code": "32290", + "data": { + "gtfs": { + "stop_id": "2290", + "stop_code": "32290", + "stop_name": "boul. du Fort-Saint-Louis et Pierre-Bourgery", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Pierre-Bourgery", + "geography": { + "type": "Point", + "coordinates": [ + -73.4495586797765, + 45.6172358418181 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.1298652192534 + }, + "name": "boul. du Fort-Saint-Louis et Pierre-Bourgery", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44950663, + 45.617107414 + ] + }, + "is_frozen": false, + "integer_id": 687, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445479, + 45.623999 + ] + }, + "id": 688, + "properties": { + "id": "253353ba-aba2-4e63-bf86-819bb7c9cecd", + "code": "32226", + "data": { + "stops": [ + { + "id": "2226", + "code": "32226", + "data": { + "gtfs": { + "stop_id": "2226", + "stop_code": "32226", + "stop_name": "boul. du Fort-Saint-Louis et Joseph-Bouchette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Joseph-Bouchette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4454828355888, + 45.6238187246229 + ] + } + }, + { + "id": "3329", + "code": "33329", + "data": { + "gtfs": { + "stop_id": "3329", + "stop_code": "33329", + "stop_name": "boul. du Fort-Saint-Louis et Joseph-Bouchette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Joseph-Bouchette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4454760648664, + 45.6241795156813 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.2470283695029 + }, + "name": "boul. du Fort-Saint-Louis et Joseph-Bouchette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44547945, + 45.62399912 + ] + }, + "is_frozen": false, + "integer_id": 688, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.444119, + 45.626339 + ] + }, + "id": 689, + "properties": { + "id": "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", + "code": "32227", + "data": { + "stops": [ + { + "id": "2227", + "code": "32227", + "data": { + "gtfs": { + "stop_id": "2227", + "stop_code": "32227", + "stop_name": "boul. du Fort-Saint-Louis et Jean-Bois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Jean-Bois", + "geography": { + "type": "Point", + "coordinates": [ + -73.4440672965056, + 45.6262495242451 + ] + } + }, + { + "id": "3328", + "code": "33328", + "data": { + "gtfs": { + "stop_id": "3328", + "stop_code": "33328", + "stop_name": "boul. du Fort-Saint-Louis et Jean-Bois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Jean-Bois", + "geography": { + "type": "Point", + "coordinates": [ + -73.4441714081908, + 45.6264284528891 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.2868172377288 + }, + "name": "boul. du Fort-Saint-Louis et Jean-Bois", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.444119352, + 45.626338989 + ] + }, + "is_frozen": false, + "integer_id": 689, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442031, + 45.630033 + ] + }, + "id": 690, + "properties": { + "id": "78a9a588-c1f0-470f-bbcc-52b6da866dad", + "code": "32229", + "data": { + "stops": [ + { + "id": "2229", + "code": "32229", + "data": { + "gtfs": { + "stop_id": "2229", + "stop_code": "32229", + "stop_name": "boul. du Fort-Saint-Louis et civique 958", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et civique 958", + "geography": { + "type": "Point", + "coordinates": [ + -73.4420056585702, + 45.6298342919573 + ] + } + }, + { + "id": "2292", + "code": "32292", + "data": { + "gtfs": { + "stop_id": "2292", + "stop_code": "32292", + "stop_name": "boul. du Fort-Saint-Louis et civique 980", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et civique 980", + "geography": { + "type": "Point", + "coordinates": [ + -73.4420567393866, + 45.630231438536 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.3496406432092 + }, + "name": "boul. du Fort-Saint-Louis et civique 958", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442031199, + 45.630032865 + ] + }, + "is_frozen": false, + "integer_id": 690, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440845, + 45.632839 + ] + }, + "id": 691, + "properties": { + "id": "90b41412-0c12-4505-b7c9-b915901b1dd2", + "code": "32230", + "data": { + "stops": [ + { + "id": "2230", + "code": "32230", + "data": { + "gtfs": { + "stop_id": "2230", + "stop_code": "32230", + "stop_name": "D'Argenson et Gilles-Hocquart", + "location_type": 0, + "parent_station": "" + } + }, + "name": "D'Argenson et Gilles-Hocquart", + "geography": { + "type": "Point", + "coordinates": [ + -73.4412886046867, + 45.6331005935022 + ] + } + }, + { + "id": "3919", + "code": "33919", + "data": { + "gtfs": { + "stop_id": "3919", + "stop_code": "33919", + "stop_name": "D'Argenson et boul. du Fort-Saint-Louis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "D'Argenson et boul. du Fort-Saint-Louis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4408373879768, + 45.6328435999782 + ] + } + }, + { + "id": "5463", + "code": "30210", + "data": { + "gtfs": { + "stop_id": "5463", + "stop_code": "30210", + "stop_name": "boul. du Fort-Saint-Louis et François-V.-Malhiot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et François-V.-Malhiot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4404015524482, + 45.6325769602891 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.3973702293853 + }, + "name": "D'Argenson et Gilles-Hocquart", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440845079, + 45.632838777 + ] + }, + "is_frozen": false, + "integer_id": 691, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443511, + 45.63417 + ] + }, + "id": 692, + "properties": { + "id": "f659a652-a61c-4199-abbc-a42f3ceef5cb", + "code": "32231", + "data": { + "stops": [ + { + "id": "2231", + "code": "32231", + "data": { + "gtfs": { + "stop_id": "2231", + "stop_code": "32231", + "stop_name": "D'Argenson et De Duquesne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "D'Argenson et De Duquesne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4435927921883, + 45.6343247038962 + ] + } + }, + { + "id": "2285", + "code": "32285", + "data": { + "gtfs": { + "stop_id": "2285", + "stop_code": "32285", + "stop_name": "D'Argenson et Le Gardeur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "D'Argenson et Le Gardeur", + "geography": { + "type": "Point", + "coordinates": [ + -73.4434298792015, + 45.6340146822544 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.4200120664528 + }, + "name": "D'Argenson et De Duquesne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443511336, + 45.634169693 + ] + }, + "is_frozen": false, + "integer_id": 692, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445118, + 45.635426 + ] + }, + "id": 693, + "properties": { + "id": "02fef102-0f62-42d0-b4ed-790bc76ef1ad", + "code": "32232", + "data": { + "stops": [ + { + "id": "2232", + "code": "32232", + "data": { + "gtfs": { + "stop_id": "2232", + "stop_code": "32232", + "stop_name": "D'Argenson et Michel-Moreau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "D'Argenson et Michel-Moreau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4449728974213, + 45.6353966629774 + ] + } + }, + { + "id": "2708", + "code": "32708", + "data": { + "gtfs": { + "stop_id": "2708", + "stop_code": "32708", + "stop_name": "D'Argenson et Michel-Moreau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "D'Argenson et Michel-Moreau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4452633495519, + 45.6354554565122 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.4413871182869 + }, + "name": "D'Argenson et Michel-Moreau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445118123, + 45.63542606 + ] + }, + "is_frozen": false, + "integer_id": 693, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.447675, + 45.637282 + ] + }, + "id": 694, + "properties": { + "id": "389622d0-ee1f-428b-9366-e69f134ff23e", + "code": "32233", + "data": { + "stops": [ + { + "id": "2233", + "code": "32233", + "data": { + "gtfs": { + "stop_id": "2233", + "stop_code": "32233", + "stop_name": "D'Argenson et boul. Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "D'Argenson et boul. Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4475824609224, + 45.6373480184109 + ] + } + }, + { + "id": "3918", + "code": "33918", + "data": { + "gtfs": { + "stop_id": "3918", + "stop_code": "33918", + "stop_name": "boul. Marie-Victorin et D'Argenson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et D'Argenson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4477674158721, + 45.6372156151612 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.4729624133877 + }, + "name": "D'Argenson et boul. Marie-Victorin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447674938, + 45.637281817 + ] + }, + "is_frozen": false, + "integer_id": 694, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44944, + 45.635356 + ] + }, + "id": 695, + "properties": { + "id": "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", + "code": "32234", + "data": { + "stops": [ + { + "id": "2234", + "code": "32234", + "data": { + "gtfs": { + "stop_id": "2234", + "stop_code": "32234", + "stop_name": "boul. Marie-Victorin et Birtz", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Birtz", + "geography": { + "type": "Point", + "coordinates": [ + -73.4494436772629, + 45.635482996359 + ] + } + }, + { + "id": "2283", + "code": "32283", + "data": { + "gtfs": { + "stop_id": "2283", + "stop_code": "32283", + "stop_name": "boul. Marie-Victorin et Birtz", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Birtz", + "geography": { + "type": "Point", + "coordinates": [ + -73.4494365555464, + 45.6352280907031 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.440187365104 + }, + "name": "boul. Marie-Victorin et Birtz", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449440116, + 45.635355544 + ] + }, + "is_frozen": false, + "integer_id": 695, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452047, + 45.63267 + ] + }, + "id": 696, + "properties": { + "id": "17cb8bb3-d8b7-472f-9a1a-e49fc66b519c", + "code": "32235", + "data": { + "stops": [ + { + "id": "2235", + "code": "32235", + "data": { + "gtfs": { + "stop_id": "2235", + "stop_code": "32235", + "stop_name": "boul. Marie-Victorin et De Mésy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De Mésy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4520474200582, + 45.6326698328993 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.3944962304411 + }, + "name": "boul. Marie-Victorin et De Mésy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45204742, + 45.632669833 + ] + }, + "is_frozen": false, + "integer_id": 696, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452974, + 45.630609 + ] + }, + "id": 697, + "properties": { + "id": "777d67e8-62c3-46b4-a71f-e76a88b45f45", + "code": "32236", + "data": { + "stops": [ + { + "id": "2236", + "code": "32236", + "data": { + "gtfs": { + "stop_id": "2236", + "stop_code": "32236", + "stop_name": "boul. Marie-Victorin et Charles-Guimond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Charles-Guimond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4530507871508, + 45.6306894492871 + ] + } + }, + { + "id": "2281", + "code": "32281", + "data": { + "gtfs": { + "stop_id": "2281", + "stop_code": "32281", + "stop_name": "boul. Marie-Victorin et Charles-Guimond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Charles-Guimond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4528970273717, + 45.6305276662327 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.359432814942 + }, + "name": "boul. Marie-Victorin et Charles-Guimond", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452973907, + 45.630608558 + ] + }, + "is_frozen": false, + "integer_id": 697, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453854, + 45.62805 + ] + }, + "id": 698, + "properties": { + "id": "6928ef4b-2825-4234-84d9-1c82edb211b0", + "code": "32237", + "data": { + "stops": [ + { + "id": "2237", + "code": "32237", + "data": { + "gtfs": { + "stop_id": "2237", + "stop_code": "32237", + "stop_name": "boul. Marie-Victorin et De Monts", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De Monts", + "geography": { + "type": "Point", + "coordinates": [ + -73.4539367014534, + 45.6281095817562 + ] + } + }, + { + "id": "2280", + "code": "32280", + "data": { + "gtfs": { + "stop_id": "2280", + "stop_code": "32280", + "stop_name": "boul. Marie-Victorin et De Monts", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De Monts", + "geography": { + "type": "Point", + "coordinates": [ + -73.4537720508911, + 45.6279905226223 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.3159165313941 + }, + "name": "boul. Marie-Victorin et De Monts", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453854376, + 45.628050052 + ] + }, + "is_frozen": false, + "integer_id": 698, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454263, + 45.626909 + ] + }, + "id": 699, + "properties": { + "id": "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", + "code": "32238", + "data": { + "stops": [ + { + "id": "2238", + "code": "32238", + "data": { + "gtfs": { + "stop_id": "2238", + "stop_code": "32238", + "stop_name": "boul. Marie-Victorin et De Léry", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De Léry", + "geography": { + "type": "Point", + "coordinates": [ + -73.4542978181523, + 45.6270729143603 + ] + } + }, + { + "id": "2279", + "code": "32279", + "data": { + "gtfs": { + "stop_id": "2279", + "stop_code": "32279", + "stop_name": "boul. Marie-Victorin et De Léry", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De Léry", + "geography": { + "type": "Point", + "coordinates": [ + -73.4542275493831, + 45.6267444506744 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.2965054806027 + }, + "name": "boul. Marie-Victorin et De Léry", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454262684, + 45.626908683 + ] + }, + "is_frozen": false, + "integer_id": 699, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455133, + 45.624252 + ] + }, + "id": 700, + "properties": { + "id": "568437d9-2de5-4e5e-b111-1a7811ac5c99", + "code": "32239", + "data": { + "stops": [ + { + "id": "2239", + "code": "32239", + "data": { + "gtfs": { + "stop_id": "2239", + "stop_code": "32239", + "stop_name": "boul. Marie-Victorin et De Varennes nord", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De Varennes nord", + "geography": { + "type": "Point", + "coordinates": [ + -73.4552196804343, + 45.6243729078392 + ] + } + }, + { + "id": "2278", + "code": "32278", + "data": { + "gtfs": { + "stop_id": "2278", + "stop_code": "32278", + "stop_name": "boul. Marie-Victorin et De Varennes nord", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De Varennes nord", + "geography": { + "type": "Point", + "coordinates": [ + -73.4550472111466, + 45.624130788388 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.2513257073081 + }, + "name": "boul. Marie-Victorin et De Varennes nord", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455133446, + 45.624251848 + ] + }, + "is_frozen": false, + "integer_id": 700, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455362, + 45.621887 + ] + }, + "id": 701, + "properties": { + "id": "148d4b0f-418e-4993-b335-f1dcd1c4df41", + "code": "32240", + "data": { + "stops": [ + { + "id": "2240", + "code": "32240", + "data": { + "gtfs": { + "stop_id": "2240", + "stop_code": "32240", + "stop_name": "boul. Marie-Victorin et François-Piedmont", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et François-Piedmont", + "geography": { + "type": "Point", + "coordinates": [ + -73.4554750531656, + 45.6219727648598 + ] + } + }, + { + "id": "2277", + "code": "32277", + "data": { + "gtfs": { + "stop_id": "2277", + "stop_code": "32277", + "stop_name": "boul. Marie-Victorin et François-Piedmont", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et François-Piedmont", + "geography": { + "type": "Point", + "coordinates": [ + -73.4552498428247, + 45.6218003236312 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.2111087786698 + }, + "name": "boul. Marie-Victorin et François-Piedmont", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455362448, + 45.621886544 + ] + }, + "is_frozen": false, + "integer_id": 701, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455734, + 45.61803 + ] + }, + "id": 702, + "properties": { + "id": "949c3098-32ca-4f3b-81ba-cbe506f68923", + "code": "32241", + "data": { + "stops": [ + { + "id": "2241", + "code": "32241", + "data": { + "gtfs": { + "stop_id": "2241", + "stop_code": "32241", + "stop_name": "boul. Marie-Victorin et De Niverville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De Niverville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4558502592203, + 45.6180797827869 + ] + } + }, + { + "id": "2276", + "code": "32276", + "data": { + "gtfs": { + "stop_id": "2276", + "stop_code": "32276", + "stop_name": "boul. Marie-Victorin et De Niverville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De Niverville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4556175259674, + 45.6179807118756 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.1455514659864 + }, + "name": "boul. Marie-Victorin et De Niverville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455733893, + 45.618030247 + ] + }, + "is_frozen": false, + "integer_id": 702, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456341, + 45.613738 + ] + }, + "id": 703, + "properties": { + "id": "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", + "code": "32243", + "data": { + "stops": [ + { + "id": "2243", + "code": "32243", + "data": { + "gtfs": { + "stop_id": "2243", + "stop_code": "32243", + "stop_name": "boul. Marie-Victorin et De Montbrun", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De Montbrun", + "geography": { + "type": "Point", + "coordinates": [ + -73.4564458203625, + 45.6138186373627 + ] + } + }, + { + "id": "2273", + "code": "32273", + "data": { + "gtfs": { + "stop_id": "2273", + "stop_code": "32273", + "stop_name": "boul. Marie-Victorin et De Montbrun", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De Montbrun", + "geography": { + "type": "Point", + "coordinates": [ + -73.4562365729037, + 45.6136564349327 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.0725907681366 + }, + "name": "boul. Marie-Victorin et De Montbrun", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456341197, + 45.613737536 + ] + }, + "is_frozen": false, + "integer_id": 703, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456548, + 45.610122 + ] + }, + "id": 704, + "properties": { + "id": "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", + "code": "32245", + "data": { + "stops": [ + { + "id": "2245", + "code": "32245", + "data": { + "gtfs": { + "stop_id": "2245", + "stop_code": "32245", + "stop_name": "boul. Marie-Victorin et Pierre-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Pierre-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4566407893143, + 45.6102255973744 + ] + } + }, + { + "id": "2272", + "code": "32272", + "data": { + "gtfs": { + "stop_id": "2272", + "stop_code": "32272", + "stop_name": "boul. Marie-Victorin et Pierre-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Pierre-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4564543573978, + 45.6100175784539 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.0111454324676 + }, + "name": "boul. Marie-Victorin et Pierre-Boucher", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456547573, + 45.610121588 + ] + }, + "is_frozen": false, + "integer_id": 704, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456604, + 45.608324 + ] + }, + "id": 705, + "properties": { + "id": "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", + "code": "32246", + "data": { + "stops": [ + { + "id": "2246", + "code": "32246", + "data": { + "gtfs": { + "stop_id": "2246", + "stop_code": "32246", + "stop_name": "boul. Marie-Victorin et des Seigneurs", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et des Seigneurs", + "geography": { + "type": "Point", + "coordinates": [ + -73.4566867100255, + 45.6084564916719 + ] + } + }, + { + "id": "2271", + "code": "32271", + "data": { + "gtfs": { + "stop_id": "2271", + "stop_code": "32271", + "stop_name": "boul. Marie-Victorin et des Seigneurs", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et des Seigneurs", + "geography": { + "type": "Point", + "coordinates": [ + -73.4565218768503, + 45.6081909568822 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9805989241098 + }, + "name": "boul. Marie-Victorin et des Seigneurs", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456604293, + 45.608323724 + ] + }, + "is_frozen": false, + "integer_id": 705, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457182, + 45.604317 + ] + }, + "id": 706, + "properties": { + "id": "bc367579-e120-4c24-8a22-9700d9580818", + "code": "32248", + "data": { + "stops": [ + { + "id": "2248", + "code": "32248", + "data": { + "gtfs": { + "stop_id": "2248", + "stop_code": "32248", + "stop_name": "boul. Marie-Victorin et Desmarteau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Desmarteau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4572209740985, + 45.6045244270679 + ] + } + }, + { + "id": "2269", + "code": "32269", + "data": { + "gtfs": { + "stop_id": "2269", + "stop_code": "32269", + "stop_name": "boul. Marie-Victorin et Desmarteau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Desmarteau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4571427692076, + 45.6041104773326 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9125410000587 + }, + "name": "boul. Marie-Victorin et Desmarteau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457181872, + 45.604317452 + ] + }, + "is_frozen": false, + "integer_id": 706, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457704, + 45.602368 + ] + }, + "id": 707, + "properties": { + "id": "0d10f2fd-9087-48c2-a3cc-d12114887a2b", + "code": "32249", + "data": { + "stops": [ + { + "id": "2249", + "code": "32249", + "data": { + "gtfs": { + "stop_id": "2249", + "stop_code": "32249", + "stop_name": "boul. Marie-Victorin et Charlotte-Denys", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Charlotte-Denys", + "geography": { + "type": "Point", + "coordinates": [ + -73.4577833954722, + 45.6023611305942 + ] + } + }, + { + "id": "2268", + "code": "32268", + "data": { + "gtfs": { + "stop_id": "2268", + "stop_code": "32268", + "stop_name": "boul. Marie-Victorin et Charlotte-Denys", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Charlotte-Denys", + "geography": { + "type": "Point", + "coordinates": [ + -73.4576236057958, + 45.6023739902541 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8794217411228 + }, + "name": "boul. Marie-Victorin et Charlotte-Denys", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457703501, + 45.60236756 + ] + }, + "is_frozen": false, + "integer_id": 707, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458467, + 45.600347 + ] + }, + "id": 708, + "properties": { + "id": "cc54b5e7-0d92-40a3-a2d0-962bd60dc85b", + "code": "32250", + "data": { + "stops": [ + { + "id": "2250", + "code": "32250", + "data": { + "gtfs": { + "stop_id": "2250", + "stop_code": "32250", + "stop_name": "boul. Marie-Victorin et De La Broquerie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De La Broquerie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4585093660923, + 45.6004378218873 + ] + } + }, + { + "id": "2267", + "code": "32267", + "data": { + "gtfs": { + "stop_id": "2267", + "stop_code": "32267", + "stop_name": "boul. Marie-Victorin et De La Broquerie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De La Broquerie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4584239619566, + 45.6002551906152 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8450973774071 + }, + "name": "boul. Marie-Victorin et De La Broquerie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.458466664, + 45.600346506 + ] + }, + "is_frozen": false, + "integer_id": 708, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459108, + 45.598651 + ] + }, + "id": 709, + "properties": { + "id": "695f9244-0dd1-45c0-ba42-b49de2270ee6", + "code": "32251", + "data": { + "stops": [ + { + "id": "2251", + "code": "32251", + "data": { + "gtfs": { + "stop_id": "2251", + "stop_code": "32251", + "stop_name": "boul. Marie-Victorin et Marguerite-Bourgeoys", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Marguerite-Bourgeoys", + "geography": { + "type": "Point", + "coordinates": [ + -73.4591922059938, + 45.5986987655771 + ] + } + }, + { + "id": "2266", + "code": "32266", + "data": { + "gtfs": { + "stop_id": "2266", + "stop_code": "32266", + "stop_name": "boul. Marie-Victorin et Marguerite-Bourgeoys", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Marguerite-Bourgeoys", + "geography": { + "type": "Point", + "coordinates": [ + -73.4590236336773, + 45.5986042233068 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8163131352613 + }, + "name": "boul. Marie-Victorin et Marguerite-Bourgeoys", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45910792, + 45.598651494 + ] + }, + "is_frozen": false, + "integer_id": 709, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459997, + 45.596792 + ] + }, + "id": 710, + "properties": { + "id": "51dc5cf7-92db-46c8-8c42-9f02a7f9e23c", + "code": "32252", + "data": { + "stops": [ + { + "id": "2252", + "code": "32252", + "data": { + "gtfs": { + "stop_id": "2252", + "stop_code": "32252", + "stop_name": "boul. Marie-Victorin et Bachand nord", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Bachand nord", + "geography": { + "type": "Point", + "coordinates": [ + -73.4600917930151, + 45.596872238094 + ] + } + }, + { + "id": "2265", + "code": "32265", + "data": { + "gtfs": { + "stop_id": "2265", + "stop_code": "32265", + "stop_name": "boul. Marie-Victorin et Bachand nord", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Bachand nord", + "geography": { + "type": "Point", + "coordinates": [ + -73.4599020444539, + 45.5967111051022 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7847330938682 + }, + "name": "boul. Marie-Victorin et Bachand nord", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459996919, + 45.596791672 + ] + }, + "is_frozen": false, + "integer_id": 710, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464734, + 45.589625 + ] + }, + "id": 711, + "properties": { + "id": "b2bf7d79-9175-4e1d-be9c-4f4140537e43", + "code": "32253", + "data": { + "stops": [ + { + "id": "2253", + "code": "32253", + "data": { + "gtfs": { + "stop_id": "2253", + "stop_code": "32253", + "stop_name": "boul. Marie-Victorin et Fréchette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Fréchette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4648430908989, + 45.5896459597151 + ] + } + }, + { + "id": "2264", + "code": "32264", + "data": { + "gtfs": { + "stop_id": "2264", + "stop_code": "32264", + "stop_name": "boul. Marie-Victorin et Fréchette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Fréchette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4646244589012, + 45.5896033095987 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6630647499496 + }, + "name": "boul. Marie-Victorin et Fréchette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464733775, + 45.589624635 + ] + }, + "is_frozen": false, + "integer_id": 711, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46699, + 45.587882 + ] + }, + "id": 712, + "properties": { + "id": "48f19a5c-0937-4c87-ba6d-c01e50729a6a", + "code": "32254", + "data": { + "stops": [ + { + "id": "2254", + "code": "32254", + "data": { + "gtfs": { + "stop_id": "2254", + "stop_code": "32254", + "stop_name": "boul. Marie-Victorin et De La Barre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De La Barre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4669899151379, + 45.5878816189225 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6334820848411 + }, + "name": "boul. Marie-Victorin et De La Barre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466989915, + 45.587881619 + ] + }, + "is_frozen": false, + "integer_id": 712, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483814, + 45.571624 + ] + }, + "id": 713, + "properties": { + "id": "24527bed-7ea6-44d6-b6db-18ac609f4938", + "code": "32258", + "data": { + "stops": [ + { + "id": "2258", + "code": "32258", + "data": { + "gtfs": { + "stop_id": "2258", + "stop_code": "32258", + "stop_name": "boul. Marie-Victorin et de l'Église", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et de l'Église", + "geography": { + "type": "Point", + "coordinates": [ + -73.4837567501771, + 45.5718208020479 + ] + } + }, + { + "id": "2537", + "code": "32537", + "data": { + "gtfs": { + "stop_id": "2537", + "stop_code": "32537", + "stop_name": "boul. Marie-Victorin et de l'Église", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et de l'Église", + "geography": { + "type": "Point", + "coordinates": [ + -73.4838715997872, + 45.5714265676507 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3576814926264 + }, + "name": "boul. Marie-Victorin et de l'Église", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483814175, + 45.571623685 + ] + }, + "is_frozen": false, + "integer_id": 713, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.488871, + 45.566558 + ] + }, + "id": 714, + "properties": { + "id": "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", + "code": "32260", + "data": { + "stops": [ + { + "id": "2260", + "code": "32260", + "data": { + "gtfs": { + "stop_id": "2260", + "stop_code": "32260", + "stop_name": "boul. Marie-Victorin et Lalande", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Lalande", + "geography": { + "type": "Point", + "coordinates": [ + -73.4888712404006, + 45.5667607007618 + ] + } + }, + { + "id": "4020", + "code": "34020", + "data": { + "gtfs": { + "stop_id": "4020", + "stop_code": "34020", + "stop_name": "boul. Marie-Victorin et Lalande", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Lalande", + "geography": { + "type": "Point", + "coordinates": [ + -73.488871594596, + 45.5663553449367 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2717955834111 + }, + "name": "boul. Marie-Victorin et Lalande", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.488871417, + 45.566558023 + ] + }, + "is_frozen": false, + "integer_id": 714, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490797, + 45.564096 + ] + }, + "id": 715, + "properties": { + "id": "d5099816-374e-4ebc-ab50-5ca4d2f829e5", + "code": "32261", + "data": { + "stops": [ + { + "id": "2261", + "code": "32261", + "data": { + "gtfs": { + "stop_id": "2261", + "stop_code": "32261", + "stop_name": "boul. Marie-Victorin et Passerelle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Passerelle", + "geography": { + "type": "Point", + "coordinates": [ + -73.490796708316, + 45.5640964049489 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2300682913826 + }, + "name": "boul. Marie-Victorin et Passerelle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490796708, + 45.564096405 + ] + }, + "is_frozen": false, + "integer_id": 715, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455489, + 45.620172 + ] + }, + "id": 716, + "properties": { + "id": "518135ae-62e9-44c2-bac7-e8c50c56eec9", + "code": "32275", + "data": { + "stops": [ + { + "id": "2275", + "code": "32275", + "data": { + "gtfs": { + "stop_id": "2275", + "stop_code": "32275", + "stop_name": "boul. Marie-Victorin et Jacques-Racicot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Jacques-Racicot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4553850052636, + 45.6201402005271 + ] + } + }, + { + "id": "3562", + "code": "33562", + "data": { + "gtfs": { + "stop_id": "3562", + "stop_code": "33562", + "stop_name": "boul. Marie-Victorin et Jacques-Racicot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Jacques-Racicot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4555930161139, + 45.6202036940046 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.1819588659179 + }, + "name": "boul. Marie-Victorin et Jacques-Racicot", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455489011, + 45.620171947 + ] + }, + "is_frozen": false, + "integer_id": 716, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451682, + 45.632817 + ] + }, + "id": 717, + "properties": { + "id": "d04543e8-f38e-4937-b92b-1bc9ff97fd25", + "code": "32282", + "data": { + "stops": [ + { + "id": "2282", + "code": "32282", + "data": { + "gtfs": { + "stop_id": "2282", + "stop_code": "32282", + "stop_name": "boul. Marie-Victorin et De Mésy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De Mésy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4516823654665, + 45.6328165337206 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.3969918400617 + }, + "name": "boul. Marie-Victorin et De Mésy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451682365, + 45.632816534 + ] + }, + "is_frozen": false, + "integer_id": 717, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443223, + 45.627895 + ] + }, + "id": 718, + "properties": { + "id": "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", + "code": "32287", + "data": { + "stops": [ + { + "id": "2287", + "code": "32287", + "data": { + "gtfs": { + "stop_id": "2287", + "stop_code": "32287", + "stop_name": "boul. du Fort-Saint-Louis et De Mésy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et De Mésy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4433653445986, + 45.6278310175915 + ] + } + }, + { + "id": "4018", + "code": "34018", + "data": { + "gtfs": { + "stop_id": "4018", + "stop_code": "34018", + "stop_name": "boul. du Fort-Saint-Louis et De Mésy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et De Mésy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4430805477329, + 45.6279593195259 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.3132823964115 + }, + "name": "boul. du Fort-Saint-Louis et De Mésy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443222946, + 45.627895169 + ] + }, + "is_frozen": false, + "integer_id": 718, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446934, + 45.621505 + ] + }, + "id": 719, + "properties": { + "id": "706f0077-9543-4662-8684-a321216a8a90", + "code": "32288", + "data": { + "stops": [ + { + "id": "2288", + "code": "32288", + "data": { + "gtfs": { + "stop_id": "2288", + "stop_code": "32288", + "stop_name": "boul. du Fort-Saint-Louis et civique 810", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et civique 810", + "geography": { + "type": "Point", + "coordinates": [ + -73.4469505052011, + 45.6216639670413 + ] + } + }, + { + "id": "3917", + "code": "33917", + "data": { + "gtfs": { + "stop_id": "3917", + "stop_code": "33917", + "stop_name": "boul. du Fort-Saint-Louis et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4469181737507, + 45.621346844045 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.2046288127078 + }, + "name": "boul. du Fort-Saint-Louis et civique 810", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446934339, + 45.621505406 + ] + }, + "is_frozen": false, + "integer_id": 719, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448873, + 45.618437 + ] + }, + "id": 720, + "properties": { + "id": "589f0f16-2c87-45fc-856c-d82dc5449f14", + "code": "32289", + "data": { + "stops": [ + { + "id": "2289", + "code": "32289", + "data": { + "gtfs": { + "stop_id": "2289", + "stop_code": "32289", + "stop_name": "boul. du Fort-Saint-Louis et De Varennes sud", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et De Varennes sud", + "geography": { + "type": "Point", + "coordinates": [ + -73.4488731975871, + 45.6184367682086 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.1524617219986 + }, + "name": "boul. du Fort-Saint-Louis et De Varennes sud", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448873198, + 45.618436768 + ] + }, + "is_frozen": false, + "integer_id": 720, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452988, + 45.608088 + ] + }, + "id": 721, + "properties": { + "id": "a2b2c8d3-da2c-46a1-8009-597d5c6a0c19", + "code": "32293", + "data": { + "stops": [ + { + "id": "2293", + "code": "32293", + "data": { + "gtfs": { + "stop_id": "2293", + "stop_code": "32293", + "stop_name": "boul. du Fort-Saint-Louis et Jacques-Ménard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Jacques-Ménard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4529879594498, + 45.6080880055626 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9765941853077 + }, + "name": "boul. du Fort-Saint-Louis et Jacques-Ménard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452987959, + 45.608088006 + ] + }, + "is_frozen": false, + "integer_id": 721, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462477, + 45.58504 + ] + }, + "id": 722, + "properties": { + "id": "21aac851-6052-4e4d-8167-df2d9a876338", + "code": "32300", + "data": { + "stops": [ + { + "id": "2300", + "code": "32300", + "data": { + "gtfs": { + "stop_id": "2300", + "stop_code": "32300", + "stop_name": "boul. du Fort-Saint-Louis et De La Barre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et De La Barre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4624143828935, + 45.585129330903 + ] + } + }, + { + "id": "3867", + "code": "33867", + "data": { + "gtfs": { + "stop_id": "3867", + "stop_code": "33867", + "stop_name": "De La Barre et boul. du Fort-Saint-Louis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Barre et boul. du Fort-Saint-Louis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4627322100293, + 45.5851213608544 + ] + } + }, + { + "id": "4226", + "code": "34226", + "data": { + "gtfs": { + "stop_id": "4226", + "stop_code": "34226", + "stop_name": "De La Barre et boul. du Fort-Saint-Louis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Barre et boul. du Fort-Saint-Louis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4622221379085, + 45.584950420868 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.585257530005 + }, + "name": "boul. du Fort-Saint-Louis et De La Barre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462477174, + 45.585039876 + ] + }, + "is_frozen": false, + "integer_id": 722, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459632, + 45.585147 + ] + }, + "id": 723, + "properties": { + "id": "1f0a0267-b7e7-48ae-bd8a-a1242dd984ed", + "code": "32302", + "data": { + "stops": [ + { + "id": "2302", + "code": "32302", + "data": { + "gtfs": { + "stop_id": "2302", + "stop_code": "32302", + "stop_name": "boul. Industriel et UNIPRO", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Industriel et UNIPRO", + "geography": { + "type": "Point", + "coordinates": [ + -73.4597795679507, + 45.5851097936569 + ] + } + }, + { + "id": "2394", + "code": "32394", + "data": { + "gtfs": { + "stop_id": "2394", + "stop_code": "32394", + "stop_name": "boul. Industriel et UNIPRO", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Industriel et UNIPRO", + "geography": { + "type": "Point", + "coordinates": [ + -73.4594851347623, + 45.5851834387853 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5870687838128 + }, + "name": "boul. Industriel et UNIPRO", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459632351, + 45.585146616 + ] + }, + "is_frozen": false, + "integer_id": 723, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457711, + 45.583454 + ] + }, + "id": 724, + "properties": { + "id": "a3ce54d5-25e0-4e55-a21f-2d2c2139447f", + "code": "32303", + "data": { + "stops": [ + { + "id": "2303", + "code": "32303", + "data": { + "gtfs": { + "stop_id": "2303", + "stop_code": "32303", + "stop_name": "boul. Industriel et De Vaudreuil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Industriel et De Vaudreuil", + "geography": { + "type": "Point", + "coordinates": [ + -73.4579375023731, + 45.5836791993568 + ] + } + }, + { + "id": "2393", + "code": "32393", + "data": { + "gtfs": { + "stop_id": "2393", + "stop_code": "32393", + "stop_name": "boul. Industriel et De Vaudreuil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Industriel et De Vaudreuil", + "geography": { + "type": "Point", + "coordinates": [ + -73.4572805987449, + 45.5834473950689 + ] + } + }, + { + "id": "4224", + "code": "34224", + "data": { + "gtfs": { + "stop_id": "4224", + "stop_code": "34224", + "stop_name": "De Vaudreuil et boul. Industriel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Vaudreuil et boul. Industriel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4577175137508, + 45.5833442705949 + ] + } + }, + { + "id": "4392", + "code": "34392", + "data": { + "gtfs": { + "stop_id": "4392", + "stop_code": "34392", + "stop_name": "De Vaudreuil et boul. Industriel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Vaudreuil et boul. Industriel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4581419238918, + 45.5832289435663 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5583494619647 + }, + "name": "boul. Industriel et De Vaudreuil", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457711261, + 45.583454071 + ] + }, + "is_frozen": false, + "integer_id": 724, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452979, + 45.579966 + ] + }, + "id": 725, + "properties": { + "id": "a6014278-4b2c-4dc8-a0d9-22c0ac11eb1c", + "code": "32304", + "data": { + "stops": [ + { + "id": "2304", + "code": "32304", + "data": { + "gtfs": { + "stop_id": "2304", + "stop_code": "32304", + "stop_name": "boul. Industriel et De Lauzon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Industriel et De Lauzon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4529792156497, + 45.579815786256 + ] + } + }, + { + "id": "2391", + "code": "32391", + "data": { + "gtfs": { + "stop_id": "2391", + "stop_code": "32391", + "stop_name": "boul. Industriel et De Lauzon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Industriel et De Lauzon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4529788015388, + 45.580115404567 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4991646356468 + }, + "name": "boul. Industriel et De Lauzon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452979009, + 45.579965595 + ] + }, + "is_frozen": false, + "integer_id": 725, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451574, + 45.578948 + ] + }, + "id": 726, + "properties": { + "id": "b0a54de7-81a4-4a54-ac92-70b7a1a6f8cd", + "code": "32305", + "data": { + "stops": [ + { + "id": "2305", + "code": "32305", + "data": { + "gtfs": { + "stop_id": "2305", + "stop_code": "32305", + "stop_name": "boul. Industriel et Jules-Léger", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Industriel et Jules-Léger", + "geography": { + "type": "Point", + "coordinates": [ + -73.4519453042481, + 45.5790209978518 + ] + } + }, + { + "id": "4022", + "code": "34022", + "data": { + "gtfs": { + "stop_id": "4022", + "stop_code": "34022", + "stop_name": "boul. Industriel et boul. Industriel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Industriel et boul. Industriel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4512018095108, + 45.5788754967417 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4819065513493 + }, + "name": "boul. Industriel et Jules-Léger", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451573557, + 45.578948247 + ] + }, + "is_frozen": false, + "integer_id": 726, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.447875, + 45.578865 + ] + }, + "id": 727, + "properties": { + "id": "43c9714a-9286-4827-a621-a7c2f8cbdfb6", + "code": "32306", + "data": { + "stops": [ + { + "id": "2306", + "code": "32306", + "data": { + "gtfs": { + "stop_id": "2306", + "stop_code": "32306", + "stop_name": "boul. Industriel et boul. de Mortagne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Industriel et boul. de Mortagne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4478584786405, + 45.5787629319277 + ] + } + }, + { + "id": "2389", + "code": "32389", + "data": { + "gtfs": { + "stop_id": "2389", + "stop_code": "32389", + "stop_name": "boul. Industriel et boul. de Mortagne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Industriel et boul. de Mortagne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4478910016871, + 45.5789674297713 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4804974775172 + }, + "name": "boul. Industriel et boul. de Mortagne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44787474, + 45.578865181 + ] + }, + "is_frozen": false, + "integer_id": 727, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44702, + 45.578325 + ] + }, + "id": 728, + "properties": { + "id": "7c5ab4a9-cc9e-4b88-bc68-d214d8c04000", + "code": "32307", + "data": { + "stops": [ + { + "id": "2307", + "code": "32307", + "data": { + "gtfs": { + "stop_id": "2307", + "stop_code": "32307", + "stop_name": "boul. de Mortagne et de Parfondeval", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et de Parfondeval", + "geography": { + "type": "Point", + "coordinates": [ + -73.4470196668127, + 45.578325440441 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4713418370309 + }, + "name": "boul. de Mortagne et de Parfondeval", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447019667, + 45.57832544 + ] + }, + "is_frozen": false, + "integer_id": 728, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439154, + 45.574417 + ] + }, + "id": 729, + "properties": { + "id": "969d12ef-c40c-4428-9c70-2251a9d71a5e", + "code": "32312", + "data": { + "stops": [ + { + "id": "2312", + "code": "32312", + "data": { + "gtfs": { + "stop_id": "2312", + "stop_code": "32312", + "stop_name": "du Perche et de Brésolettes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Perche et de Brésolettes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4389508842496, + 45.574447532012 + ] + } + }, + { + "id": "3604", + "code": "33604", + "data": { + "gtfs": { + "stop_id": "3604", + "stop_code": "33604", + "stop_name": "du Perche et de Brésolettes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Perche et de Brésolettes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4393579605271, + 45.5743873053329 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4050577481512 + }, + "name": "du Perche et de Brésolettes", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439154422, + 45.574417419 + ] + }, + "is_frozen": false, + "integer_id": 729, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442647, + 45.577807 + ] + }, + "id": 730, + "properties": { + "id": "589841be-b3c7-4f02-a8e7-b24569959def", + "code": "32313", + "data": { + "stops": [ + { + "id": "2313", + "code": "32313", + "data": { + "gtfs": { + "stop_id": "2313", + "stop_code": "32313", + "stop_name": "du Perche et de Champs", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Perche et de Champs", + "geography": { + "type": "Point", + "coordinates": [ + -73.4425280584547, + 45.577883039258 + ] + } + }, + { + "id": "2384", + "code": "32384", + "data": { + "gtfs": { + "stop_id": "2384", + "stop_code": "32384", + "stop_name": "du Perche et de Parfondeval", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Perche et de Parfondeval", + "geography": { + "type": "Point", + "coordinates": [ + -73.4427662059048, + 45.5777303530836 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4625426147265 + }, + "name": "du Perche et de Champs", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442647132, + 45.577806696 + ] + }, + "is_frozen": false, + "integer_id": 730, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443179, + 45.580307 + ] + }, + "id": 731, + "properties": { + "id": "3f07914c-7958-4cd1-a0a6-c2c9e04cc913", + "code": "32314", + "data": { + "stops": [ + { + "id": "2314", + "code": "32314", + "data": { + "gtfs": { + "stop_id": "2314", + "stop_code": "32314", + "stop_name": "du Perche et de Tourouvre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Perche et de Tourouvre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4430360520485, + 45.5801684217499 + ] + } + }, + { + "id": "2383", + "code": "32383", + "data": { + "gtfs": { + "stop_id": "2383", + "stop_code": "32383", + "stop_name": "du Perche et de Tourouvre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Perche et de Tourouvre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4433218032348, + 45.580445907033 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5049591501815 + }, + "name": "du Perche et de Tourouvre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443178928, + 45.580307164 + ] + }, + "is_frozen": false, + "integer_id": 731, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443542, + 45.58169 + ] + }, + "id": 732, + "properties": { + "id": "b94a5730-dab3-4715-a12c-41d1c300a3ab", + "code": "32315", + "data": { + "stops": [ + { + "id": "2315", + "code": "32315", + "data": { + "gtfs": { + "stop_id": "2315", + "stop_code": "32315", + "stop_name": "du Perche et des Feings", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Perche et des Feings", + "geography": { + "type": "Point", + "coordinates": [ + -73.4433384926245, + 45.5815501461552 + ] + } + }, + { + "id": "3553", + "code": "33553", + "data": { + "gtfs": { + "stop_id": "3553", + "stop_code": "33553", + "stop_name": "du Perche et des Feings", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Perche et des Feings", + "geography": { + "type": "Point", + "coordinates": [ + -73.4437458083097, + 45.5818294038183 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5284153880033 + }, + "name": "du Perche et des Feings", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44354215, + 45.581689775 + ] + }, + "is_frozen": false, + "integer_id": 732, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.444528, + 45.585107 + ] + }, + "id": 733, + "properties": { + "id": "2cdb15ef-cdbd-4b50-8947-cb9baee33626", + "code": "32317", + "data": { + "stops": [ + { + "id": "2317", + "code": "32317", + "data": { + "gtfs": { + "stop_id": "2317", + "stop_code": "32317", + "stop_name": "boul. de Mortagne et des Îles-Percées", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et des Îles-Percées", + "geography": { + "type": "Point", + "coordinates": [ + -73.4444896944307, + 45.584925266805 + ] + } + }, + { + "id": "2381", + "code": "32381", + "data": { + "gtfs": { + "stop_id": "2381", + "stop_code": "32381", + "stop_name": "boul. de Mortagne et des Îles-Percées", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et des Îles-Percées", + "geography": { + "type": "Point", + "coordinates": [ + -73.4445665998337, + 45.5852894023818 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5864022296871 + }, + "name": "boul. de Mortagne et des Îles-Percées", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.444528147, + 45.585107335 + ] + }, + "is_frozen": false, + "integer_id": 733, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443431, + 45.586103 + ] + }, + "id": 734, + "properties": { + "id": "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", + "code": "32318", + "data": { + "stops": [ + { + "id": "2318", + "code": "32318", + "data": { + "gtfs": { + "stop_id": "2318", + "stop_code": "32318", + "stop_name": "boul. de Mortagne et Marquis-De Tracy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Marquis-De Tracy", + "geography": { + "type": "Point", + "coordinates": [ + -73.443393832357, + 45.5859178993174 + ] + } + }, + { + "id": "3849", + "code": "33849", + "data": { + "gtfs": { + "stop_id": "3849", + "stop_code": "33849", + "stop_name": "boul. de Mortagne et Marquis-De Tracy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Marquis-De Tracy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4434682258164, + 45.5862879255116 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6032964708589 + }, + "name": "boul. de Mortagne et Marquis-De Tracy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443431029, + 45.586102912 + ] + }, + "is_frozen": false, + "integer_id": 734, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439985, + 45.589224 + ] + }, + "id": 735, + "properties": { + "id": "3e16b1bc-9549-49e4-bd1b-f0991b274b89", + "code": "32319", + "data": { + "stops": [ + { + "id": "2319", + "code": "32319", + "data": { + "gtfs": { + "stop_id": "2319", + "stop_code": "32319", + "stop_name": "boul. de Mortagne et Le Baron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Le Baron", + "geography": { + "type": "Point", + "coordinates": [ + -73.4402380672705, + 45.5888013052909 + ] + } + }, + { + "id": "2320", + "code": "32320", + "data": { + "gtfs": { + "stop_id": "2320", + "stop_code": "32320", + "stop_name": "boul. de Mortagne et De La Salle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et De La Salle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4395207943136, + 45.5893344366765 + ] + } + }, + { + "id": "2378", + "code": "32378", + "data": { + "gtfs": { + "stop_id": "2378", + "stop_code": "32378", + "stop_name": "De La Salle et boul. de Mortagne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Salle et boul. de Mortagne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4392925626985, + 45.589463178385 + ] + } + }, + { + "id": "2379", + "code": "32379", + "data": { + "gtfs": { + "stop_id": "2379", + "stop_code": "32379", + "stop_name": "boul. de Mortagne et Le Baron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Le Baron", + "geography": { + "type": "Point", + "coordinates": [ + -73.4403374576216, + 45.5891162975466 + ] + } + }, + { + "id": "2429", + "code": "32429", + "data": { + "gtfs": { + "stop_id": "2429", + "stop_code": "32429", + "stop_name": "Le Baron et boul. de Mortagne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Baron et boul. de Mortagne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4406777954335, + 45.5890762308141 + ] + } + }, + { + "id": "3848", + "code": "33848", + "data": { + "gtfs": { + "stop_id": "3848", + "stop_code": "33848", + "stop_name": "boul. de Mortagne et De La Salle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et De La Salle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4395691246001, + 45.589646793023 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 1257.506270748186 + }, + "name": "boul. de Mortagne et Le Baron", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439985179, + 45.589224049 + ] + }, + "is_frozen": false, + "integer_id": 735, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 66, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.438357, + 45.58773 + ] + }, + "id": 736, + "properties": { + "id": "5195ea00-9368-4dce-8167-c17b61cec6aa", + "code": "32321", + "data": { + "stops": [ + { + "id": "2321", + "code": "32321", + "data": { + "gtfs": { + "stop_id": "2321", + "stop_code": "32321", + "stop_name": "De La Salle et Christophe-Février", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Salle et Christophe-Février", + "geography": { + "type": "Point", + "coordinates": [ + -73.4384847838279, + 45.5878835599152 + ] + } + }, + { + "id": "2377", + "code": "32377", + "data": { + "gtfs": { + "stop_id": "2377", + "stop_code": "32377", + "stop_name": "De La Salle et Christophe-Février", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Salle et Christophe-Février", + "geography": { + "type": "Point", + "coordinates": [ + -73.438228495444, + 45.5875764681365 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6309091561229 + }, + "name": "De La Salle et Christophe-Février", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.43835664, + 45.587730014 + ] + }, + "is_frozen": false, + "integer_id": 736, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.438208, + 45.586295 + ] + }, + "id": 737, + "properties": { + "id": "39ff7687-30f4-4336-ad6e-7651a86ce308", + "code": "32322", + "data": { + "stops": [ + { + "id": "2322", + "code": "32322", + "data": { + "gtfs": { + "stop_id": "2322", + "stop_code": "32322", + "stop_name": "De La Salle et Émile-Nelligan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Salle et Émile-Nelligan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4383167118809, + 45.5864374798101 + ] + } + }, + { + "id": "2376", + "code": "32376", + "data": { + "gtfs": { + "stop_id": "2376", + "stop_code": "32376", + "stop_name": "De La Salle et Émile-Nelligan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Salle et Émile-Nelligan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4380991738384, + 45.5861531985713 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6065619239247 + }, + "name": "De La Salle et Émile-Nelligan", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438207943, + 45.586295339 + ] + }, + "is_frozen": false, + "integer_id": 737, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437137, + 45.585043 + ] + }, + "id": 738, + "properties": { + "id": "f2e35f7f-c43e-48a9-8610-6fc945acde4b", + "code": "32323", + "data": { + "stops": [ + { + "id": "2323", + "code": "32323", + "data": { + "gtfs": { + "stop_id": "2323", + "stop_code": "32323", + "stop_name": "De La Salle et civique 372", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Salle et civique 372", + "geography": { + "type": "Point", + "coordinates": [ + -73.4371736829557, + 45.5849888820393 + ] + } + }, + { + "id": "2375", + "code": "32375", + "data": { + "gtfs": { + "stop_id": "2375", + "stop_code": "32375", + "stop_name": "De La Salle et civique 363", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Salle et civique 363", + "geography": { + "type": "Point", + "coordinates": [ + -73.4370994741318, + 45.5850968208109 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5853080121609 + }, + "name": "De La Salle et civique 372", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437136579, + 45.585042851 + ] + }, + "is_frozen": false, + "integer_id": 738, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.434499, + 45.583518 + ] + }, + "id": 739, + "properties": { + "id": "a304bcbf-a90b-4a1c-90fd-af05d73c3bdb", + "code": "32325", + "data": { + "stops": [ + { + "id": "2325", + "code": "32325", + "data": { + "gtfs": { + "stop_id": "2325", + "stop_code": "32325", + "stop_name": "De La Salle et D'Avaugour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Salle et D'Avaugour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4346468752699, + 45.5835590218298 + ] + } + }, + { + "id": "3887", + "code": "33887", + "data": { + "gtfs": { + "stop_id": "3887", + "stop_code": "33887", + "stop_name": "D'Avaugour et De La Salle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "D'Avaugour et De La Salle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4343506752912, + 45.5834769665389 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5594340691028 + }, + "name": "De La Salle et D'Avaugour", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.434498775, + 45.583517994 + ] + }, + "is_frozen": false, + "integer_id": 739, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.438265, + 45.592807 + ] + }, + "id": 740, + "properties": { + "id": "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", + "code": "32328", + "data": { + "stops": [ + { + "id": "2328", + "code": "32328", + "data": { + "gtfs": { + "stop_id": "2328", + "stop_code": "32328", + "stop_name": "boul. De Montarville et ECOLE SECONDAIRE DE MORTAGNE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et ECOLE SECONDAIRE DE MORTAGNE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4381979657376, + 45.5929179909557 + ] + } + }, + { + "id": "2370", + "code": "32370", + "data": { + "gtfs": { + "stop_id": "2370", + "stop_code": "32370", + "stop_name": "boul. De Montarville et ECOLE SECONDAIRE DE MORTAGNE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et ECOLE SECONDAIRE DE MORTAGNE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4383329917252, + 45.5926962948086 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7170856513305 + }, + "name": "boul. De Montarville et ECOLE SECONDAIRE DE MORTAGNE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438265479, + 45.592807143 + ] + }, + "is_frozen": false, + "integer_id": 740, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439989, + 45.594049 + ] + }, + "id": 741, + "properties": { + "id": "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", + "code": "32329", + "data": { + "stops": [ + { + "id": "2329", + "code": "32329", + "data": { + "gtfs": { + "stop_id": "2329", + "stop_code": "32329", + "stop_name": "boul. De Montarville et Félix-Leclerc", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et Félix-Leclerc", + "geography": { + "type": "Point", + "coordinates": [ + -73.4399961939233, + 45.5941695531699 + ] + } + }, + { + "id": "2369", + "code": "32369", + "data": { + "gtfs": { + "stop_id": "2369", + "stop_code": "32369", + "stop_name": "boul. De Montarville et Victor-Bourgeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et Victor-Bourgeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.439981417542, + 45.5939284840154 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7381681080741 + }, + "name": "boul. De Montarville et Félix-Leclerc", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439988806, + 45.594049019 + ] + }, + "is_frozen": false, + "integer_id": 741, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.43859, + 45.598233 + ] + }, + "id": 742, + "properties": { + "id": "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", + "code": "32331", + "data": { + "stops": [ + { + "id": "2331", + "code": "32331", + "data": { + "gtfs": { + "stop_id": "2331", + "stop_code": "32331", + "stop_name": "Jacques-Cartier et Marsolais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jacques-Cartier et Marsolais", + "geography": { + "type": "Point", + "coordinates": [ + -73.4386620077424, + 45.5980911683009 + ] + } + }, + { + "id": "2366", + "code": "32366", + "data": { + "gtfs": { + "stop_id": "2366", + "stop_code": "32366", + "stop_name": "Jacques-Cartier et Marsolais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jacques-Cartier et Marsolais", + "geography": { + "type": "Point", + "coordinates": [ + -73.438517876129, + 45.598374569928 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8092045532488 + }, + "name": "Jacques-Cartier et Marsolais", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438589942, + 45.598232869 + ] + }, + "is_frozen": false, + "integer_id": 742, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437064, + 45.599091 + ] + }, + "id": 743, + "properties": { + "id": "47dc43f6-90db-4837-be84-0b5d8a2becb4", + "code": "32332", + "data": { + "stops": [ + { + "id": "2332", + "code": "32332", + "data": { + "gtfs": { + "stop_id": "2332", + "stop_code": "32332", + "stop_name": "Jacques-Cartier et Charcot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jacques-Cartier et Charcot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4369888035725, + 45.5990253390465 + ] + } + }, + { + "id": "2365", + "code": "32365", + "data": { + "gtfs": { + "stop_id": "2365", + "stop_code": "32365", + "stop_name": "Jacques-Cartier et Charcot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jacques-Cartier et Charcot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4371401424107, + 45.5991560072361 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8237709090554 + }, + "name": "Jacques-Cartier et Charcot", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437064473, + 45.599090673 + ] + }, + "is_frozen": false, + "integer_id": 743, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.436349, + 45.599781 + ] + }, + "id": 744, + "properties": { + "id": "628308c5-3a00-44cb-908b-068616e8e618", + "code": "32333", + "data": { + "stops": [ + { + "id": "2333", + "code": "32333", + "data": { + "gtfs": { + "stop_id": "2333", + "stop_code": "32333", + "stop_name": "Jacques-Cartier et De Sérigny", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jacques-Cartier et De Sérigny", + "geography": { + "type": "Point", + "coordinates": [ + -73.43635237784, + 45.5996405989319 + ] + } + }, + { + "id": "2364", + "code": "32364", + "data": { + "gtfs": { + "stop_id": "2364", + "stop_code": "32364", + "stop_name": "Jacques-Cartier et De Sérigny", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jacques-Cartier et De Sérigny", + "geography": { + "type": "Point", + "coordinates": [ + -73.4363462569547, + 45.5999206552051 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8354874848965 + }, + "name": "Jacques-Cartier et De Sérigny", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.436349317, + 45.599780627 + ] + }, + "is_frozen": false, + "integer_id": 744, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.434445, + 45.601522 + ] + }, + "id": 745, + "properties": { + "id": "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", + "code": "32334", + "data": { + "stops": [ + { + "id": "2334", + "code": "32334", + "data": { + "gtfs": { + "stop_id": "2334", + "stop_code": "32334", + "stop_name": "Jacques-Cartier et Christophe-Colomb", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jacques-Cartier et Christophe-Colomb", + "geography": { + "type": "Point", + "coordinates": [ + -73.4345736251999, + 45.6013463097107 + ] + } + }, + { + "id": "2363", + "code": "32363", + "data": { + "gtfs": { + "stop_id": "2363", + "stop_code": "32363", + "stop_name": "Jacques-Cartier et Christophe-Colomb", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jacques-Cartier et Christophe-Colomb", + "geography": { + "type": "Point", + "coordinates": [ + -73.4343154303236, + 45.6016974253926 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8650585724677 + }, + "name": "Jacques-Cartier et Christophe-Colomb", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.434444528, + 45.601521868 + ] + }, + "is_frozen": false, + "integer_id": 745, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.428099, + 45.605904 + ] + }, + "id": 746, + "properties": { + "id": "7d34a327-717a-432e-93f5-7310ac20c2c2", + "code": "32336", + "data": { + "stops": [ + { + "id": "2336", + "code": "32336", + "data": { + "gtfs": { + "stop_id": "2336", + "stop_code": "32336", + "stop_name": "Samuel-De Champlain et Marco-Polo", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et Marco-Polo", + "geography": { + "type": "Point", + "coordinates": [ + -73.427869813384, + 45.6058471061311 + ] + } + }, + { + "id": "2360", + "code": "32360", + "data": { + "gtfs": { + "stop_id": "2360", + "stop_code": "32360", + "stop_name": "Samuel-De Champlain et Marco-Polo", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et Marco-Polo", + "geography": { + "type": "Point", + "coordinates": [ + -73.4283276142117, + 45.6059613645231 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9394953023758 + }, + "name": "Samuel-De Champlain et Marco-Polo", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.428098714, + 45.605904235 + ] + }, + "is_frozen": false, + "integer_id": 746, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.428557, + 45.604494 + ] + }, + "id": 747, + "properties": { + "id": "abeb197b-490c-4d67-8abe-37d08d73ce70", + "code": "32337", + "data": { + "stops": [ + { + "id": "2337", + "code": "32337", + "data": { + "gtfs": { + "stop_id": "2337", + "stop_code": "32337", + "stop_name": "Jacques-Cartier et De La Richardière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jacques-Cartier et De La Richardière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4285893797483, + 45.604370644421 + ] + } + }, + { + "id": "2361", + "code": "32361", + "data": { + "gtfs": { + "stop_id": "2361", + "stop_code": "32361", + "stop_name": "Jacques-Cartier et De La Richardière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jacques-Cartier et De La Richardière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4285252635009, + 45.6046173134892 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9155395103639 + }, + "name": "Jacques-Cartier et De La Richardière", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.428557322, + 45.604493979 + ] + }, + "is_frozen": false, + "integer_id": 747, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.429948, + 45.606565 + ] + }, + "id": 748, + "properties": { + "id": "7ca4f3b1-99df-4499-964b-1702513ad59f", + "code": "32338", + "data": { + "stops": [ + { + "id": "2338", + "code": "32338", + "data": { + "gtfs": { + "stop_id": "2338", + "stop_code": "32338", + "stop_name": "Samuel-De Champlain et des Découvreurs", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et des Découvreurs", + "geography": { + "type": "Point", + "coordinates": [ + -73.4296078192134, + 45.606596853295 + ] + } + }, + { + "id": "2359", + "code": "32359", + "data": { + "gtfs": { + "stop_id": "2359", + "stop_code": "32359", + "stop_name": "Samuel-De Champlain et place des Découvreurs", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et place des Découvreurs", + "geography": { + "type": "Point", + "coordinates": [ + -73.4302885165377, + 45.6065338176198 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9507259152451 + }, + "name": "Samuel-De Champlain et des Découvreurs", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.429948168, + 45.606565335 + ] + }, + "is_frozen": false, + "integer_id": 748, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.432956, + 45.606443 + ] + }, + "id": 749, + "properties": { + "id": "e134e428-8d59-4d84-966a-ce83afff1c1c", + "code": "32339", + "data": { + "stops": [ + { + "id": "2339", + "code": "32339", + "data": { + "gtfs": { + "stop_id": "2339", + "stop_code": "32339", + "stop_name": "Samuel-De Champlain et Louis-Fornel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et Louis-Fornel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4329755150737, + 45.6065238880961 + ] + } + }, + { + "id": "2358", + "code": "32358", + "data": { + "gtfs": { + "stop_id": "2358", + "stop_code": "32358", + "stop_name": "Samuel-De Champlain et Louis-Fornel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et Louis-Fornel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4329360466785, + 45.6063618961312 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9486458525244 + }, + "name": "Samuel-De Champlain et Louis-Fornel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.432955781, + 45.606442892 + ] + }, + "is_frozen": false, + "integer_id": 749, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.436604, + 45.604774 + ] + }, + "id": 750, + "properties": { + "id": "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", + "code": "32340", + "data": { + "stops": [ + { + "id": "2340", + "code": "32340", + "data": { + "gtfs": { + "stop_id": "2340", + "stop_code": "32340", + "stop_name": "Samuel-De Champlain et De Verrazano", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et De Verrazano", + "geography": { + "type": "Point", + "coordinates": [ + -73.4368447642619, + 45.6047444355747 + ] + } + }, + { + "id": "2357", + "code": "32357", + "data": { + "gtfs": { + "stop_id": "2357", + "stop_code": "32357", + "stop_name": "Samuel-De Champlain et Des Groseilliers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et Des Groseilliers", + "geography": { + "type": "Point", + "coordinates": [ + -73.4363623588603, + 45.6048026566199 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9202883284643 + }, + "name": "Samuel-De Champlain et De Verrazano", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.436603562, + 45.604773546 + ] + }, + "is_frozen": false, + "integer_id": 750, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437994, + 45.604146 + ] + }, + "id": 751, + "properties": { + "id": "f7429ca8-1ccc-41e7-acab-a5d3915affbb", + "code": "32341", + "data": { + "stops": [ + { + "id": "2341", + "code": "32341", + "data": { + "gtfs": { + "stop_id": "2341", + "stop_code": "32341", + "stop_name": "Samuel-De Champlain et Christophe-Colomb", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et Christophe-Colomb", + "geography": { + "type": "Point", + "coordinates": [ + -73.4379401547177, + 45.6042542225581 + ] + } + }, + { + "id": "2356", + "code": "32356", + "data": { + "gtfs": { + "stop_id": "2356", + "stop_code": "32356", + "stop_name": "Samuel-De Champlain et Christophe-Colomb", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et Christophe-Colomb", + "geography": { + "type": "Point", + "coordinates": [ + -73.438048112304, + 45.6040384333431 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9096342924528 + }, + "name": "Samuel-De Champlain et Christophe-Colomb", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437994134, + 45.604146328 + ] + }, + "is_frozen": false, + "integer_id": 751, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443231, + 45.601599 + ] + }, + "id": 752, + "properties": { + "id": "494d9db6-32c6-4aa3-9c11-91eba915c58f", + "code": "32342", + "data": { + "stops": [ + { + "id": "2342", + "code": "32342", + "data": { + "gtfs": { + "stop_id": "2342", + "stop_code": "32342", + "stop_name": "Samuel-De Champlain et Albanel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et Albanel", + "geography": { + "type": "Point", + "coordinates": [ + -73.443229131108, + 45.6016383492015 + ] + } + }, + { + "id": "2355", + "code": "32355", + "data": { + "gtfs": { + "stop_id": "2355", + "stop_code": "32355", + "stop_name": "Samuel-De Champlain et Fraser", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et Fraser", + "geography": { + "type": "Point", + "coordinates": [ + -73.4427087748648, + 45.6017735980395 + ] + } + }, + { + "id": "4352", + "code": "34352", + "data": { + "gtfs": { + "stop_id": "4352", + "stop_code": "34352", + "stop_name": "Albanel et Samuel-De Champlain", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Albanel et Samuel-De Champlain", + "geography": { + "type": "Point", + "coordinates": [ + -73.4437525273516, + 45.6014242728015 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8663674460099 + }, + "name": "Samuel-De Champlain et Albanel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443230651, + 45.601598935 + ] + }, + "is_frozen": false, + "integer_id": 752, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448734, + 45.598315 + ] + }, + "id": 753, + "properties": { + "id": "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", + "code": "32344", + "data": { + "stops": [ + { + "id": "2344", + "code": "32344", + "data": { + "gtfs": { + "stop_id": "2344", + "stop_code": "32344", + "stop_name": "Samuel-De Champlain et Hélène-Boullé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et Hélène-Boullé", + "geography": { + "type": "Point", + "coordinates": [ + -73.4488293190208, + 45.5983548016878 + ] + } + }, + { + "id": "2351", + "code": "32351", + "data": { + "gtfs": { + "stop_id": "2351", + "stop_code": "32351", + "stop_name": "Samuel-De Champlain et Hélène-Boullé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et Hélène-Boullé", + "geography": { + "type": "Point", + "coordinates": [ + -73.4486383406716, + 45.5982760881174 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8106067463019 + }, + "name": "Samuel-De Champlain et Hélène-Boullé", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44873383, + 45.598315445 + ] + }, + "is_frozen": false, + "integer_id": 753, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451857, + 45.598077 + ] + }, + "id": 754, + "properties": { + "id": "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", + "code": "32345", + "data": { + "stops": [ + { + "id": "2345", + "code": "32345", + "data": { + "gtfs": { + "stop_id": "2345", + "stop_code": "32345", + "stop_name": "Samuel-De Champlain et de Brouage", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et de Brouage", + "geography": { + "type": "Point", + "coordinates": [ + -73.4517135744228, + 45.5982264099927 + ] + } + }, + { + "id": "2350", + "code": "32350", + "data": { + "gtfs": { + "stop_id": "2350", + "stop_code": "32350", + "stop_name": "Samuel-De Champlain et de Brouage", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et de Brouage", + "geography": { + "type": "Point", + "coordinates": [ + -73.4520010083534, + 45.5979266175518 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8065495625298 + }, + "name": "Samuel-De Champlain et de Brouage", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451857291, + 45.598076514 + ] + }, + "is_frozen": false, + "integer_id": 754, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454197, + 45.595055 + ] + }, + "id": 755, + "properties": { + "id": "b32eb408-e9c7-49ab-afd7-56523f4ec990", + "code": "32346", + "data": { + "stops": [ + { + "id": "2346", + "code": "32346", + "data": { + "gtfs": { + "stop_id": "2346", + "stop_code": "32346", + "stop_name": "Samuel-De Champlain et Monseigneur-Taché", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et Monseigneur-Taché", + "geography": { + "type": "Point", + "coordinates": [ + -73.454251829382, + 45.5952176156776 + ] + } + }, + { + "id": "2348", + "code": "32348", + "data": { + "gtfs": { + "stop_id": "2348", + "stop_code": "32348", + "stop_name": "Samuel-De Champlain et Monseigneur-Taché", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et Monseigneur-Taché", + "geography": { + "type": "Point", + "coordinates": [ + -73.4541416625248, + 45.5948925480635 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7552483454373 + }, + "name": "Samuel-De Champlain et Monseigneur-Taché", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454196746, + 45.595055082 + ] + }, + "is_frozen": false, + "integer_id": 755, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453963, + 45.596331 + ] + }, + "id": 756, + "properties": { + "id": "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", + "code": "32349", + "data": { + "stops": [ + { + "id": "2349", + "code": "32349", + "data": { + "gtfs": { + "stop_id": "2349", + "stop_code": "32349", + "stop_name": "Samuel-De Champlain et du Père-Marquette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et du Père-Marquette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4539310461066, + 45.5960948698261 + ] + } + }, + { + "id": "3873", + "code": "33873", + "data": { + "gtfs": { + "stop_id": "3873", + "stop_code": "33873", + "stop_name": "Samuel-De Champlain et du Père-Marquette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et du Père-Marquette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4539946314898, + 45.5965677525076 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7769165769953 + }, + "name": "Samuel-De Champlain et du Père-Marquette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453962839, + 45.596331311 + ] + }, + "is_frozen": false, + "integer_id": 756, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441253, + 45.596963 + ] + }, + "id": 757, + "properties": { + "id": "fc32be78-9480-4dfc-b10c-475dc000dd04", + "code": "32367", + "data": { + "stops": [ + { + "id": "2367", + "code": "32367", + "data": { + "gtfs": { + "stop_id": "2367", + "stop_code": "32367", + "stop_name": "Jacques-Cartier et D'Iberville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jacques-Cartier et D'Iberville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4412532324293, + 45.5969632792504 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7876468753634 + }, + "name": "Jacques-Cartier et D'Iberville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441253232, + 45.596963279 + ] + }, + "is_frozen": false, + "integer_id": 757, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441393, + 45.575997 + ] + }, + "id": 758, + "properties": { + "id": "d63304a9-15dd-4cf4-8ec7-3f7d0c080252", + "code": "32385", + "data": { + "stops": [ + { + "id": "2385", + "code": "32385", + "data": { + "gtfs": { + "stop_id": "2385", + "stop_code": "32385", + "stop_name": "du Perche et d'Igé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Perche et d'Igé", + "geography": { + "type": "Point", + "coordinates": [ + -73.4415705157072, + 45.5760182343504 + ] + } + }, + { + "id": "3552", + "code": "33552", + "data": { + "gtfs": { + "stop_id": "3552", + "stop_code": "33552", + "stop_name": "du Perche et d'Igé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Perche et d'Igé", + "geography": { + "type": "Point", + "coordinates": [ + -73.441214833067, + 45.5759759451594 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4318489620125 + }, + "name": "du Perche et d'Igé", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441392674, + 45.57599709 + ] + }, + "is_frozen": false, + "integer_id": 758, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446467, + 45.57745 + ] + }, + "id": 759, + "properties": { + "id": "18aabfcd-f4e1-4782-a757-80cdf1597763", + "code": "32388", + "data": { + "stops": [ + { + "id": "2388", + "code": "32388", + "data": { + "gtfs": { + "stop_id": "2388", + "stop_code": "32388", + "stop_name": "boul. de Mortagne et de Parfondeval", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et de Parfondeval", + "geography": { + "type": "Point", + "coordinates": [ + -73.4464674335286, + 45.5774501295558 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4564944848104 + }, + "name": "boul. de Mortagne et de Parfondeval", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446467434, + 45.57745013 + ] + }, + "is_frozen": false, + "integer_id": 759, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455611, + 45.582019 + ] + }, + "id": 760, + "properties": { + "id": "3370bd8e-b7b2-4aab-8679-28f57be8da19", + "code": "32392", + "data": { + "stops": [ + { + "id": "2392", + "code": "32392", + "data": { + "gtfs": { + "stop_id": "2392", + "stop_code": "32392", + "stop_name": "boul. Industriel et Louis-J.-Lafortune", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Industriel et Louis-J.-Lafortune", + "geography": { + "type": "Point", + "coordinates": [ + -73.4553162223547, + 45.5819396732859 + ] + } + }, + { + "id": "3451", + "code": "33451", + "data": { + "gtfs": { + "stop_id": "3451", + "stop_code": "33451", + "stop_name": "boul. Industriel et Louis-J.-Lafortune", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Industriel et Louis-J.-Lafortune", + "geography": { + "type": "Point", + "coordinates": [ + -73.4559066799542, + 45.5820980110387 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5339983192217 + }, + "name": "boul. Industriel et Louis-J.-Lafortune", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455611451, + 45.582018842 + ] + }, + "is_frozen": false, + "integer_id": 760, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448774, + 45.583168 + ] + }, + "id": 761, + "properties": { + "id": "aa89250f-af50-4115-bf1b-21a034e9dba5", + "code": "32396", + "data": { + "stops": [ + { + "id": "2396", + "code": "32396", + "data": { + "gtfs": { + "stop_id": "2396", + "stop_code": "32396", + "stop_name": "Calixa-Lavallée et Joseph-Lassonde", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Calixa-Lavallée et Joseph-Lassonde", + "geography": { + "type": "Point", + "coordinates": [ + -73.4484562964765, + 45.5830240735301 + ] + } + }, + { + "id": "2410", + "code": "32410", + "data": { + "gtfs": { + "stop_id": "2410", + "stop_code": "32410", + "stop_name": "Calixa-Lavallée et Thomas-Chapais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Calixa-Lavallée et Thomas-Chapais", + "geography": { + "type": "Point", + "coordinates": [ + -73.4490920943607, + 45.5833121324759 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5534973731528 + }, + "name": "Calixa-Lavallée et Joseph-Lassonde", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448774195, + 45.583168103 + ] + }, + "is_frozen": false, + "integer_id": 761, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451305, + 45.585038 + ] + }, + "id": 762, + "properties": { + "id": "f68b9483-e1df-4343-949f-67cf0f140f1c", + "code": "32397", + "data": { + "stops": [ + { + "id": "2397", + "code": "32397", + "data": { + "gtfs": { + "stop_id": "2397", + "stop_code": "32397", + "stop_name": "Calixa-Lavallée et Louis-J.-Lafortune", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Calixa-Lavallée et Louis-J.-Lafortune", + "geography": { + "type": "Point", + "coordinates": [ + -73.4512114820269, + 45.5849953870161 + ] + } + }, + { + "id": "4353", + "code": "34353", + "data": { + "gtfs": { + "stop_id": "4353", + "stop_code": "34353", + "stop_name": "Louis-J.-Lafortune et Calixa-Lavallée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Louis-J.-Lafortune et Calixa-Lavallée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4513991534427, + 45.5850802741955 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.58522282883 + }, + "name": "Calixa-Lavallée et Louis-J.-Lafortune", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451305318, + 45.585037831 + ] + }, + "is_frozen": false, + "integer_id": 762, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450328, + 45.586649 + ] + }, + "id": 763, + "properties": { + "id": "78a5cdb0-2073-4ddc-876e-4b4491cc4cd9", + "code": "32398", + "data": { + "stops": [ + { + "id": "2398", + "code": "32398", + "data": { + "gtfs": { + "stop_id": "2398", + "stop_code": "32398", + "stop_name": "Louis-J.-Lafortune et Tailhandier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Louis-J.-Lafortune et Tailhandier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4503615822431, + 45.5864577493561 + ] + } + }, + { + "id": "2408", + "code": "32408", + "data": { + "gtfs": { + "stop_id": "2408", + "stop_code": "32408", + "stop_name": "Louis-J.-Lafortune et Tailhandier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Louis-J.-Lafortune et Tailhandier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4502952121553, + 45.5868410254989 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.612570144101 + }, + "name": "Louis-J.-Lafortune et Tailhandier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450328397, + 45.586649387 + ] + }, + "is_frozen": false, + "integer_id": 763, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449449, + 45.588013 + ] + }, + "id": 764, + "properties": { + "id": "e57d7fe5-d3ac-4549-8c17-bc7891d2fb5c", + "code": "32399", + "data": { + "stops": [ + { + "id": "2399", + "code": "32399", + "data": { + "gtfs": { + "stop_id": "2399", + "stop_code": "32399", + "stop_name": "Louis-J.-Lafortune et des Îles-Percées", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Louis-J.-Lafortune et des Îles-Percées", + "geography": { + "type": "Point", + "coordinates": [ + -73.4493954160018, + 45.5879722220751 + ] + } + }, + { + "id": "4833", + "code": "34833", + "data": { + "gtfs": { + "stop_id": "4833", + "stop_code": "34833", + "stop_name": "Louis-J.-Lafortune et Louis-J.-Lafortune", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Louis-J.-Lafortune et Louis-J.-Lafortune", + "geography": { + "type": "Point", + "coordinates": [ + -73.4495021960582, + 45.5880539396589 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6357131780073 + }, + "name": "Louis-J.-Lafortune et des Îles-Percées", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449448806, + 45.588013081 + ] + }, + "is_frozen": false, + "integer_id": 764, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449871, + 45.58891 + ] + }, + "id": 765, + "properties": { + "id": "7556ee28-3088-47e4-8621-ee5ed1aeb9fd", + "code": "32400", + "data": { + "stops": [ + { + "id": "2400", + "code": "32400", + "data": { + "gtfs": { + "stop_id": "2400", + "stop_code": "32400", + "stop_name": "des Îles-Percées et De Jumonville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Îles-Percées et De Jumonville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4497053151413, + 45.5888698291027 + ] + } + }, + { + "id": "4206", + "code": "34206", + "data": { + "gtfs": { + "stop_id": "4206", + "stop_code": "34206", + "stop_name": "des Îles-Percées et De Jumonville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Îles-Percées et De Jumonville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4500365887002, + 45.5889499837038 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6509339594875 + }, + "name": "des Îles-Percées et De Jumonville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449870952, + 45.588909906 + ] + }, + "is_frozen": false, + "integer_id": 765, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451459, + 45.590195 + ] + }, + "id": 766, + "properties": { + "id": "aa3e9b29-cdbb-464c-8a8b-fae908f7b00f", + "code": "32401", + "data": { + "stops": [ + { + "id": "2401", + "code": "32401", + "data": { + "gtfs": { + "stop_id": "2401", + "stop_code": "32401", + "stop_name": "des Îles-Percées et Jacques-Le Tessier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Îles-Percées et Jacques-Le Tessier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4513799964149, + 45.5901968269951 + ] + } + }, + { + "id": "2406", + "code": "32406", + "data": { + "gtfs": { + "stop_id": "2406", + "stop_code": "32406", + "stop_name": "des Îles-Percées et Jacques-Le Tessier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Îles-Percées et Jacques-Le Tessier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4515390036394, + 45.5901923954117 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6727390371602 + }, + "name": "des Îles-Percées et Jacques-Le Tessier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.4514595, + 45.590194611 + ] + }, + "is_frozen": false, + "integer_id": 766, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453003, + 45.591401 + ] + }, + "id": 767, + "properties": { + "id": "7a859698-99f4-4c31-b351-953ef9867df6", + "code": "32402", + "data": { + "stops": [ + { + "id": "2402", + "code": "32402", + "data": { + "gtfs": { + "stop_id": "2402", + "stop_code": "32402", + "stop_name": "des Îles-Percées et Claude-Dauzat", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Îles-Percées et Claude-Dauzat", + "geography": { + "type": "Point", + "coordinates": [ + -73.4528472888194, + 45.591367219946 + ] + } + }, + { + "id": "2405", + "code": "32405", + "data": { + "gtfs": { + "stop_id": "2405", + "stop_code": "32405", + "stop_name": "des Îles-Percées et Claude-Dauzat", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Îles-Percées et Claude-Dauzat", + "geography": { + "type": "Point", + "coordinates": [ + -73.4531580353794, + 45.5914348349645 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6932166739692 + }, + "name": "des Îles-Percées et Claude-Dauzat", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453002662, + 45.591401027 + ] + }, + "is_frozen": false, + "integer_id": 767, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454428, + 45.592512 + ] + }, + "id": 768, + "properties": { + "id": "e4ed3729-d139-4568-882c-36c81b8c1d41", + "code": "32403", + "data": { + "stops": [ + { + "id": "2403", + "code": "32403", + "data": { + "gtfs": { + "stop_id": "2403", + "stop_code": "32403", + "stop_name": "des Îles-Percées et De La Saudrays", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Îles-Percées et De La Saudrays", + "geography": { + "type": "Point", + "coordinates": [ + -73.4542959027093, + 45.5924917391568 + ] + } + }, + { + "id": "2404", + "code": "32404", + "data": { + "gtfs": { + "stop_id": "2404", + "stop_code": "32404", + "stop_name": "des Îles-Percées et De La Saudrays", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Îles-Percées et De La Saudrays", + "geography": { + "type": "Point", + "coordinates": [ + -73.4545601697062, + 45.5925331926142 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7120833295033 + }, + "name": "des Îles-Percées et De La Saudrays", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454428036, + 45.592512466 + ] + }, + "is_frozen": false, + "integer_id": 768, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.433263, + 45.581904 + ] + }, + "id": 769, + "properties": { + "id": "c02424dc-f033-4be6-a66b-8712f3e4b064", + "code": "32419", + "data": { + "stops": [ + { + "id": "2419", + "code": "32419", + "data": { + "gtfs": { + "stop_id": "2419", + "stop_code": "32419", + "stop_name": "D'Avaugour et des Merles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "D'Avaugour et des Merles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4329416116411, + 45.5817507583107 + ] + } + }, + { + "id": "2430", + "code": "32430", + "data": { + "gtfs": { + "stop_id": "2430", + "stop_code": "32430", + "stop_name": "D'Avaugour et des Merles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "D'Avaugour et des Merles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4335848897453, + 45.5820579043421 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5320555213938 + }, + "name": "D'Avaugour et des Merles", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.433263251, + 45.581904331 + ] + }, + "is_frozen": false, + "integer_id": 769, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442225, + 45.590948 + ] + }, + "id": 770, + "properties": { + "id": "b87ee1fa-53a3-46fa-9d30-2da964c500aa", + "code": "32421", + "data": { + "stops": [ + { + "id": "2421", + "code": "32421", + "data": { + "gtfs": { + "stop_id": "2421", + "stop_code": "32421", + "stop_name": "Le Baron et Louis-Quévillon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Baron et Louis-Quévillon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4421074951135, + 45.590920463422 + ] + } + }, + { + "id": "2428", + "code": "32428", + "data": { + "gtfs": { + "stop_id": "2428", + "stop_code": "32428", + "stop_name": "Le Baron et Louis-Quévillon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Baron et Louis-Quévillon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4423424756174, + 45.5909754745369 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6855263404067 + }, + "name": "Le Baron et Louis-Quévillon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442224985, + 45.590947969 + ] + }, + "is_frozen": false, + "integer_id": 770, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.4436, + 45.593271 + ] + }, + "id": 771, + "properties": { + "id": "5aedd246-6893-494f-8756-0a623654ca1d", + "code": "32422", + "data": { + "stops": [ + { + "id": "2422", + "code": "32422", + "data": { + "gtfs": { + "stop_id": "2422", + "stop_code": "32422", + "stop_name": "Le Baron et De Lévis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Baron et De Lévis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4434988973688, + 45.593260753116 + ] + } + }, + { + "id": "2427", + "code": "32427", + "data": { + "gtfs": { + "stop_id": "2427", + "stop_code": "32427", + "stop_name": "Le Baron et De Lévis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Baron et De Lévis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4437008863372, + 45.5932811799701 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7249595041277 + }, + "name": "Le Baron et De Lévis", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443599892, + 45.593270967 + ] + }, + "is_frozen": false, + "integer_id": 771, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445169, + 45.595476 + ] + }, + "id": 772, + "properties": { + "id": "cbb95297-898f-493c-b22a-5755d4356a5c", + "code": "32423", + "data": { + "stops": [ + { + "id": "2423", + "code": "32423", + "data": { + "gtfs": { + "stop_id": "2423", + "stop_code": "32423", + "stop_name": "Le Baron et De Jumonville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Baron et De Jumonville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4452479683136, + 45.595195916858 + ] + } + }, + { + "id": "2426", + "code": "32426", + "data": { + "gtfs": { + "stop_id": "2426", + "stop_code": "32426", + "stop_name": "De Jumonville et Le Baron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Jumonville et Le Baron", + "geography": { + "type": "Point", + "coordinates": [ + -73.4454254431256, + 45.5953518394678 + ] + } + }, + { + "id": "5861", + "code": "30630", + "data": { + "gtfs": { + "stop_id": "5861", + "stop_code": "30630", + "stop_name": "De Jumonville et Hélène-Boullé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Jumonville et Hélène-Boullé", + "geography": { + "type": "Point", + "coordinates": [ + -73.4449134420886, + 45.5957555041984 + ] + } + }, + { + "id": "5864", + "code": "30633", + "data": { + "gtfs": { + "stop_id": "5864", + "stop_code": "30633", + "stop_name": "Hélène-Boullé et De Jumonville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Hélène-Boullé et De Jumonville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4451983967515, + 45.5956699325966 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7623897604635 + }, + "name": "Le Baron et De Jumonville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445169443, + 45.595475711 + ] + }, + "is_frozen": false, + "integer_id": 772, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443535, + 45.5965 + ] + }, + "id": 773, + "properties": { + "id": "49262d07-72b2-466f-bf49-88656466e4a4", + "code": "32424", + "data": { + "stops": [ + { + "id": "2424", + "code": "32424", + "data": { + "gtfs": { + "stop_id": "2424", + "stop_code": "32424", + "stop_name": "De Jumonville et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Jumonville et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.443557058664, + 45.5964097533377 + ] + } + }, + { + "id": "4014", + "code": "34014", + "data": { + "gtfs": { + "stop_id": "4014", + "stop_code": "34014", + "stop_name": "boul. De Montarville et François-Gravé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et François-Gravé", + "geography": { + "type": "Point", + "coordinates": [ + -73.443218784592, + 45.596550157773 + ] + } + }, + { + "id": "4160", + "code": "34160", + "data": { + "gtfs": { + "stop_id": "4160", + "stop_code": "34160", + "stop_name": "De Jumonville et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Jumonville et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4438518027616, + 45.5963933039506 + ] + } + }, + { + "id": "5129", + "code": "35129", + "data": { + "gtfs": { + "stop_id": "5129", + "stop_code": "35129", + "stop_name": "boul. De Montarville et De Jumonville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et De Jumonville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4436383353347, + 45.5966076665969 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7797889777256 + }, + "name": "De Jumonville et boul. De Montarville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443535294, + 45.596500485 + ] + }, + "is_frozen": false, + "integer_id": 773, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.42108, + 45.564051 + ] + }, + "id": 774, + "properties": { + "id": "072328a7-3894-4360-8b61-c1e252d6cd3a", + "code": "32442", + "data": { + "stops": [ + { + "id": "2442", + "code": "32442", + "data": { + "gtfs": { + "stop_id": "2442", + "stop_code": "32442", + "stop_name": "ch. Du Tremblay et Newton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Newton", + "geography": { + "type": "Point", + "coordinates": [ + -73.4210799828021, + 45.564050650682 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2292927590502 + }, + "name": "ch. Du Tremblay et Newton", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.421079983, + 45.564050651 + ] + }, + "is_frozen": false, + "integer_id": 774, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450335, + 45.460261 + ] + }, + "id": 775, + "properties": { + "id": "70f95ad2-eba4-4503-b7ff-17df9ce33ba4", + "code": "32449", + "data": { + "stops": [ + { + "id": "2449", + "code": "32449", + "data": { + "gtfs": { + "stop_id": "2449", + "stop_code": "32449", + "stop_name": "Bergerac et av. Beauchemin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bergerac et av. Beauchemin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4503345663146, + 45.460260860582 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4748550666709 + }, + "name": "Bergerac et av. Beauchemin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450334566, + 45.460260861 + ] + }, + "is_frozen": false, + "integer_id": 775, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448933, + 45.458985 + ] + }, + "id": 776, + "properties": { + "id": "e5e1c5c5-36d2-4221-83f3-658f6d4b6761", + "code": "32450", + "data": { + "stops": [ + { + "id": "2450", + "code": "32450", + "data": { + "gtfs": { + "stop_id": "2450", + "stop_code": "32450", + "stop_name": "Bergerac et civique 3850", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bergerac et civique 3850", + "geography": { + "type": "Point", + "coordinates": [ + -73.4489334301682, + 45.4589851446758 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4533502793415 + }, + "name": "Bergerac et civique 3850", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44893343, + 45.458985145 + ] + }, + "is_frozen": false, + "integer_id": 776, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445751, + 45.457487 + ] + }, + "id": 777, + "properties": { + "id": "ea0252a4-936b-49d7-8af7-57e55fff6184", + "code": "32452", + "data": { + "stops": [ + { + "id": "2452", + "code": "32452", + "data": { + "gtfs": { + "stop_id": "2452", + "stop_code": "32452", + "stop_name": "av. Beauchemin et civique 4055", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Beauchemin et civique 4055", + "geography": { + "type": "Point", + "coordinates": [ + -73.44575111422, + 45.4574874455723 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4281053602159 + }, + "name": "av. Beauchemin et civique 4055", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445751114, + 45.457487446 + ] + }, + "is_frozen": false, + "integer_id": 777, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445517, + 45.458615 + ] + }, + "id": 778, + "properties": { + "id": "5b6c9f4f-7b19-41d9-ad96-38e8e97fc190", + "code": "32453", + "data": { + "stops": [ + { + "id": "2453", + "code": "32453", + "data": { + "gtfs": { + "stop_id": "2453", + "stop_code": "32453", + "stop_name": "av. Beauchemin et av. Boniface", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Beauchemin et av. Boniface", + "geography": { + "type": "Point", + "coordinates": [ + -73.4455173024388, + 45.45861460267 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4471043111148 + }, + "name": "av. Beauchemin et av. Boniface", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445517302, + 45.458614603 + ] + }, + "is_frozen": false, + "integer_id": 778, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442738, + 45.460575 + ] + }, + "id": 779, + "properties": { + "id": "735e4ba2-6503-4586-98da-feccec61a212", + "code": "32454", + "data": { + "stops": [ + { + "id": "2454", + "code": "32454", + "data": { + "gtfs": { + "stop_id": "2454", + "stop_code": "32454", + "stop_name": "av. Boniface et av. Balzac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Boniface et av. Balzac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4426271079556, + 45.4604494069217 + ] + } + }, + { + "id": "4052", + "code": "34052", + "data": { + "gtfs": { + "stop_id": "4052", + "stop_code": "34052", + "stop_name": "av. Balzac et av. Boniface", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Balzac et av. Boniface", + "geography": { + "type": "Point", + "coordinates": [ + -73.4429188370163, + 45.4606996231211 + ] + } + }, + { + "id": "5083", + "code": "35083", + "data": { + "gtfs": { + "stop_id": "5083", + "stop_code": "35083", + "stop_name": "av. Boniface et av. Balzac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Boniface et av. Balzac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4425570692784, + 45.460675701932 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4801425638626 + }, + "name": "av. Boniface et av. Balzac", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442737953, + 45.460574515 + ] + }, + "is_frozen": false, + "integer_id": 779, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437973, + 45.463749 + ] + }, + "id": 780, + "properties": { + "id": "4bc3caff-ed56-497d-8ae6-f486cc6662a6", + "code": "32456", + "data": { + "stops": [ + { + "id": "2456", + "code": "32456", + "data": { + "gtfs": { + "stop_id": "2456", + "stop_code": "32456", + "stop_name": "av. Bienvenue et av. Boniface", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienvenue et av. Boniface", + "geography": { + "type": "Point", + "coordinates": [ + -73.4380697336037, + 45.4639089531722 + ] + } + }, + { + "id": "5124", + "code": "35124", + "data": { + "gtfs": { + "stop_id": "5124", + "stop_code": "35124", + "stop_name": "av. Bienvenue et av. Boniface", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienvenue et av. Boniface", + "geography": { + "type": "Point", + "coordinates": [ + -73.4378753195248, + 45.4635889187992 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5336610376773 + }, + "name": "av. Bienvenue et av. Boniface", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437972527, + 45.463748936 + ] + }, + "is_frozen": false, + "integer_id": 780, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452656, + 45.466868 + ] + }, + "id": 781, + "properties": { + "id": "4d470d17-22f9-4f20-a00b-2efca474c2fb", + "code": "32458", + "data": { + "stops": [ + { + "id": "2458", + "code": "32458", + "data": { + "gtfs": { + "stop_id": "2458", + "stop_code": "32458", + "stop_name": "boul. Milan et av. Barry", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Barry", + "geography": { + "type": "Point", + "coordinates": [ + -73.4525933805186, + 45.467040874381 + ] + } + }, + { + "id": "2665", + "code": "32665", + "data": { + "gtfs": { + "stop_id": "2665", + "stop_code": "32665", + "stop_name": "boul. Milan et av. Barry", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Barry", + "geography": { + "type": "Point", + "coordinates": [ + -73.4527183763124, + 45.4666959295749 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.586261723775 + }, + "name": "boul. Milan et av. Barry", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452655878, + 45.466868402 + ] + }, + "is_frozen": false, + "integer_id": 781, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454769, + 45.46582 + ] + }, + "id": 782, + "properties": { + "id": "4fc83229-a15e-48e1-aa4f-fae0073dacf9", + "code": "32459", + "data": { + "stops": [ + { + "id": "2459", + "code": "32459", + "data": { + "gtfs": { + "stop_id": "2459", + "stop_code": "32459", + "stop_name": "boul. Milan et av. Broadway", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Broadway", + "geography": { + "type": "Point", + "coordinates": [ + -73.4547693182451, + 45.4658198582903 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5685801267671 + }, + "name": "boul. Milan et av. Broadway", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454769318, + 45.465819858 + ] + }, + "is_frozen": false, + "integer_id": 782, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458845, + 45.465513 + ] + }, + "id": 783, + "properties": { + "id": "7d672010-5387-42b1-8ad3-257c7e6df63a", + "code": "32460", + "data": { + "stops": [ + { + "id": "2460", + "code": "32460", + "data": { + "gtfs": { + "stop_id": "2460", + "stop_code": "32460", + "stop_name": "boul. Lapinière et de Bourgogne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et de Bourgogne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4586520044014, + 45.4655150688354 + ] + } + }, + { + "id": "3816", + "code": "33816", + "data": { + "gtfs": { + "stop_id": "3816", + "stop_code": "33816", + "stop_name": "boul. Lapinière et de Bourgogne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et de Bourgogne", + "geography": { + "type": "Point", + "coordinates": [ + -73.459037565675, + 45.4655115822578 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5634112621788 + }, + "name": "boul. Lapinière et de Bourgogne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.458844785, + 45.465513326 + ] + }, + "is_frozen": false, + "integer_id": 783, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474043, + 45.471854 + ] + }, + "id": 784, + "properties": { + "id": "3a8b9936-4595-4770-a3f4-b31253602356", + "code": "32463", + "data": { + "stops": [ + { + "id": "2463", + "code": "32463", + "data": { + "gtfs": { + "stop_id": "2463", + "stop_code": "32463", + "stop_name": "boul. Pelletier et Palerme", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et Palerme", + "geography": { + "type": "Point", + "coordinates": [ + -73.4738642050081, + 45.4717038403101 + ] + } + }, + { + "id": "2494", + "code": "32494", + "data": { + "gtfs": { + "stop_id": "2494", + "stop_code": "32494", + "stop_name": "boul. Pelletier et Palerme", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et Palerme", + "geography": { + "type": "Point", + "coordinates": [ + -73.4742209231136, + 45.4720048926191 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6703533908806 + }, + "name": "boul. Pelletier et Palerme", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474042564, + 45.471854366 + ] + }, + "is_frozen": false, + "integer_id": 784, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474447, + 45.478985 + ] + }, + "id": 785, + "properties": { + "id": "784b0f22-55ff-44d1-a754-ddad81fb81cd", + "code": "32466", + "data": { + "stops": [ + { + "id": "2466", + "code": "32466", + "data": { + "gtfs": { + "stop_id": "2466", + "stop_code": "32466", + "stop_name": "Morley et Watson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Morley et Watson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4744763608378, + 45.4788780995577 + ] + } + }, + { + "id": "2490", + "code": "32490", + "data": { + "gtfs": { + "stop_id": "2490", + "stop_code": "32490", + "stop_name": "Morley et Watson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Morley et Watson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4744177370234, + 45.4790923093799 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7906581858753 + }, + "name": "Morley et Watson", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474447049, + 45.478985204 + ] + }, + "is_frozen": false, + "integer_id": 785, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.472109, + 45.480489 + ] + }, + "id": 786, + "properties": { + "id": "96e97125-39ff-47a9-b41d-043c4ca5c57e", + "code": "32467", + "data": { + "stops": [ + { + "id": "2467", + "code": "32467", + "data": { + "gtfs": { + "stop_id": "2467", + "stop_code": "32467", + "stop_name": "Morley et Miller", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Morley et Miller", + "geography": { + "type": "Point", + "coordinates": [ + -73.472182309357, + 45.4804198877287 + ] + } + }, + { + "id": "2489", + "code": "32489", + "data": { + "gtfs": { + "stop_id": "2489", + "stop_code": "32489", + "stop_name": "Miller et Morley", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Miller et Morley", + "geography": { + "type": "Point", + "coordinates": [ + -73.4720351719426, + 45.4805571971879 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8160268575397 + }, + "name": "Morley et Miller", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472108741, + 45.480488542 + ] + }, + "is_frozen": false, + "integer_id": 786, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469909, + 45.480632 + ] + }, + "id": 787, + "properties": { + "id": "c2e1b4a6-db9f-4050-848a-68486b390a21", + "code": "32468", + "data": { + "stops": [ + { + "id": "2468", + "code": "32468", + "data": { + "gtfs": { + "stop_id": "2468", + "stop_code": "32468", + "stop_name": "Miller et Campbell", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Miller et Campbell", + "geography": { + "type": "Point", + "coordinates": [ + -73.4698870746094, + 45.4805549737934 + ] + } + }, + { + "id": "2488", + "code": "32488", + "data": { + "gtfs": { + "stop_id": "2488", + "stop_code": "32488", + "stop_name": "Campbell et Miller", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Campbell et Miller", + "geography": { + "type": "Point", + "coordinates": [ + -73.4699314862794, + 45.4807094225606 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8184511426555 + }, + "name": "Miller et Campbell", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46990928, + 45.480632198 + ] + }, + "is_frozen": false, + "integer_id": 787, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.472945, + 45.483533 + ] + }, + "id": 788, + "properties": { + "id": "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", + "code": "32470", + "data": { + "stops": [ + { + "id": "2470", + "code": "32470", + "data": { + "gtfs": { + "stop_id": "2470", + "stop_code": "32470", + "stop_name": "Campbell et Sexton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Campbell et Sexton", + "geography": { + "type": "Point", + "coordinates": [ + -73.4727770968092, + 45.483498464824 + ] + } + }, + { + "id": "2487", + "code": "32487", + "data": { + "gtfs": { + "stop_id": "2487", + "stop_code": "32487", + "stop_name": "Campbell et Sexton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Campbell et Sexton", + "geography": { + "type": "Point", + "coordinates": [ + -73.4731128885043, + 45.4835665376278 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8673994981724 + }, + "name": "Campbell et Sexton", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472944993, + 45.483532501 + ] + }, + "is_frozen": false, + "integer_id": 788, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474546, + 45.484702 + ] + }, + "id": 789, + "properties": { + "id": "c229b499-645e-4877-8f57-0fc6de2a8d53", + "code": "32471", + "data": { + "stops": [ + { + "id": "2471", + "code": "32471", + "data": { + "gtfs": { + "stop_id": "2471", + "stop_code": "32471", + "stop_name": "Campbell et Emborne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Campbell et Emborne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4743912160624, + 45.4846938471118 + ] + } + }, + { + "id": "2486", + "code": "32486", + "data": { + "gtfs": { + "stop_id": "2486", + "stop_code": "32486", + "stop_name": "Campbell et Emborne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Campbell et Emborne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4747003707814, + 45.4847091854875 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8871310549381 + }, + "name": "Campbell et Emborne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474545793, + 45.484701516 + ] + }, + "is_frozen": false, + "integer_id": 789, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475634, + 45.48548 + ] + }, + "id": 790, + "properties": { + "id": "3c04c568-5ef2-4b47-8d34-b0d175358d60", + "code": "32472", + "data": { + "stops": [ + { + "id": "2472", + "code": "32472", + "data": { + "gtfs": { + "stop_id": "2472", + "stop_code": "32472", + "stop_name": "Campbell et Regent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Campbell et Regent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4755935324481, + 45.4855417417351 + ] + } + }, + { + "id": "3988", + "code": "33988", + "data": { + "gtfs": { + "stop_id": "3988", + "stop_code": "33988", + "stop_name": "Campbell et Regent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Campbell et Regent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4756737250619, + 45.4854176089149 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9002661094405 + }, + "name": "Campbell et Regent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475633629, + 45.485479675 + ] + }, + "is_frozen": false, + "integer_id": 790, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475557, + 45.486586 + ] + }, + "id": 791, + "properties": { + "id": "a5c03062-e324-4cb7-8c59-00c59a14b63e", + "code": "32473", + "data": { + "stops": [ + { + "id": "2473", + "code": "32473", + "data": { + "gtfs": { + "stop_id": "2473", + "stop_code": "32473", + "stop_name": "Laurie et Vivian", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Laurie et Vivian", + "geography": { + "type": "Point", + "coordinates": [ + -73.4757307011968, + 45.4868312732358 + ] + } + }, + { + "id": "3990", + "code": "33990", + "data": { + "gtfs": { + "stop_id": "3990", + "stop_code": "33990", + "stop_name": "Laurie et Regent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Laurie et Regent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4753840349421, + 45.4863398374504 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9189339070429 + }, + "name": "Laurie et Vivian", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475557368, + 45.486585555 + ] + }, + "is_frozen": false, + "integer_id": 791, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475324, + 45.48772 + ] + }, + "id": 792, + "properties": { + "id": "1e205a49-fad6-428c-9d0c-b4018473837d", + "code": "32474", + "data": { + "stops": [ + { + "id": "2474", + "code": "32474", + "data": { + "gtfs": { + "stop_id": "2474", + "stop_code": "32474", + "stop_name": "Dorothy et civique 578", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Dorothy et civique 578", + "geography": { + "type": "Point", + "coordinates": [ + -73.475347698462, + 45.4878118707577 + ] + } + }, + { + "id": "2483", + "code": "32483", + "data": { + "gtfs": { + "stop_id": "2483", + "stop_code": "32483", + "stop_name": "Dorothy et Vivian", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Dorothy et Vivian", + "geography": { + "type": "Point", + "coordinates": [ + -73.4753005373589, + 45.487628832905 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9380909680692 + }, + "name": "Dorothy et civique 578", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475324118, + 45.487720352 + ] + }, + "is_frozen": false, + "integer_id": 792, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.476862, + 45.488479 + ] + }, + "id": 793, + "properties": { + "id": "ac9a9c14-57c3-4a81-9316-ceca9586731d", + "code": "32475", + "data": { + "stops": [ + { + "id": "2475", + "code": "32475", + "data": { + "gtfs": { + "stop_id": "2475", + "stop_code": "32475", + "stop_name": "Margaret et de Verchères", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Margaret et de Verchères", + "geography": { + "type": "Point", + "coordinates": [ + -73.476766314736, + 45.4885110897106 + ] + } + }, + { + "id": "2482", + "code": "32482", + "data": { + "gtfs": { + "stop_id": "2482", + "stop_code": "32482", + "stop_name": "de Verchères et Margaret", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Verchères et Margaret", + "geography": { + "type": "Point", + "coordinates": [ + -73.476956960591, + 45.4884467497934 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9508973625158 + }, + "name": "Margaret et de Verchères", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.476861638, + 45.48847892 + ] + }, + "is_frozen": false, + "integer_id": 793, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481412, + 45.491908 + ] + }, + "id": 794, + "properties": { + "id": "c4f08e33-183e-41cf-9f96-5985f148bd11", + "code": "32477", + "data": { + "stops": [ + { + "id": "2477", + "code": "32477", + "data": { + "gtfs": { + "stop_id": "2477", + "stop_code": "32477", + "stop_name": "de Verchères et Gladstone", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Verchères et Gladstone", + "geography": { + "type": "Point", + "coordinates": [ + -73.4813469609855, + 45.4917537896772 + ] + } + }, + { + "id": "2480", + "code": "32480", + "data": { + "gtfs": { + "stop_id": "2480", + "stop_code": "32480", + "stop_name": "de Verchères et Gladstone", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Verchères et Gladstone", + "geography": { + "type": "Point", + "coordinates": [ + -73.4814760892735, + 45.4920628641822 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0088001246334 + }, + "name": "de Verchères et Gladstone", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481411525, + 45.491908327 + ] + }, + "is_frozen": false, + "integer_id": 794, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455899, + 45.528749 + ] + }, + "id": 795, + "properties": { + "id": "e8c367ff-94d4-4335-8cfa-cd40d1ea983f", + "code": "32496", + "data": { + "stops": [ + { + "id": "2496", + "code": "32496", + "data": { + "gtfs": { + "stop_id": "2496", + "stop_code": "32496", + "stop_name": "boul. Des Ormeaux et boul. Roland-Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Des Ormeaux et boul. Roland-Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4558985949941, + 45.528748989907 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6314850755227 + }, + "name": "boul. Des Ormeaux et boul. Roland-Therrien", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455898595, + 45.52874899 + ] + }, + "is_frozen": false, + "integer_id": 795, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458059, + 45.517326 + ] + }, + "id": 796, + "properties": { + "id": "329dac46-2c72-4ec4-aeeb-8492af5be014", + "code": "32501", + "data": { + "stops": [ + { + "id": "2501", + "code": "32501", + "data": { + "gtfs": { + "stop_id": "2501", + "stop_code": "32501", + "stop_name": "Racicot et de Fontainebleau sud", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Racicot et de Fontainebleau sud", + "geography": { + "type": "Point", + "coordinates": [ + -73.4580594836546, + 45.5173263366112 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4382888564406 + }, + "name": "Racicot et de Fontainebleau sud", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.458059484, + 45.517326337 + ] + }, + "is_frozen": false, + "integer_id": 796, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457412, + 45.518493 + ] + }, + "id": 797, + "properties": { + "id": "6fe3defb-8d6f-405c-8fb2-44b73532b240", + "code": "32502", + "data": { + "stops": [ + { + "id": "2502", + "code": "32502", + "data": { + "gtfs": { + "stop_id": "2502", + "stop_code": "32502", + "stop_name": "de Fontainebleau sud et de Fontainebleau sud", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Fontainebleau sud et de Fontainebleau sud", + "geography": { + "type": "Point", + "coordinates": [ + -73.4574119987126, + 45.5184934882573 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4580240481235 + }, + "name": "de Fontainebleau sud et de Fontainebleau sud", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457411999, + 45.518493488 + ] + }, + "is_frozen": false, + "integer_id": 797, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.447862, + 45.547564 + ] + }, + "id": 798, + "properties": { + "id": "92a52522-0981-490b-a541-e3514efa3ed8", + "code": "32504", + "data": { + "stops": [ + { + "id": "2504", + "code": "32504", + "data": { + "gtfs": { + "stop_id": "2504", + "stop_code": "32504", + "stop_name": "ch. Du Tremblay et Cantin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Cantin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4477275921516, + 45.5474609435468 + ] + } + }, + { + "id": "3955", + "code": "33955", + "data": { + "gtfs": { + "stop_id": "3955", + "stop_code": "33955", + "stop_name": "ch. Du Tremblay et Cantin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Cantin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4474582671964, + 45.5477279129057 + ] + } + }, + { + "id": "5796", + "code": "30565", + "data": { + "gtfs": { + "stop_id": "5796", + "stop_code": "30565", + "stop_name": "ch. Du Tremblay et ch. Du Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et ch. Du Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4483177405597, + 45.5473997325711 + ] + } + }, + { + "id": "5837", + "code": "30606", + "data": { + "gtfs": { + "stop_id": "5837", + "stop_code": "30606", + "stop_name": "Cantin et ch. Du Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Cantin et ch. Du Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4474055082359, + 45.5475142468696 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9499620191104 + }, + "name": "ch. Du Tremblay et Cantin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447861624, + 45.547563823 + ] + }, + "is_frozen": false, + "integer_id": 798, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44435, + 45.548637 + ] + }, + "id": 799, + "properties": { + "id": "e525780c-4598-49cd-b6ff-8b911e2c9385", + "code": "32506", + "data": { + "stops": [ + { + "id": "2506", + "code": "32506", + "data": { + "gtfs": { + "stop_id": "2506", + "stop_code": "32506", + "stop_name": "ch. Du Tremblay et civique 2255", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 2255", + "geography": { + "type": "Point", + "coordinates": [ + -73.4442997780179, + 45.5485730415112 + ] + } + }, + { + "id": "2943", + "code": "32943", + "data": { + "gtfs": { + "stop_id": "2943", + "stop_code": "32943", + "stop_name": "ch. Du Tremblay et civique 2255", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 2255", + "geography": { + "type": "Point", + "coordinates": [ + -73.4444005748255, + 45.5487000925423 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9681297751193 + }, + "name": "ch. Du Tremblay et civique 2255", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.444350176, + 45.548636567 + ] + }, + "is_frozen": false, + "integer_id": 799, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44183, + 45.549466 + ] + }, + "id": 800, + "properties": { + "id": "b567475e-2b46-4378-9adc-08b4cc99ad7e", + "code": "32507", + "data": { + "stops": [ + { + "id": "2507", + "code": "32507", + "data": { + "gtfs": { + "stop_id": "2507", + "stop_code": "32507", + "stop_name": "ch. Du Tremblay et de Toscane", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et de Toscane", + "geography": { + "type": "Point", + "coordinates": [ + -73.4417166872765, + 45.5494284720407 + ] + } + }, + { + "id": "2942", + "code": "32942", + "data": { + "gtfs": { + "stop_id": "2942", + "stop_code": "32942", + "stop_name": "ch. Du Tremblay et de Toscane", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et de Toscane", + "geography": { + "type": "Point", + "coordinates": [ + -73.4419424688543, + 45.5495038510692 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9821803175789 + }, + "name": "ch. Du Tremblay et de Toscane", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441829578, + 45.549466162 + ] + }, + "is_frozen": false, + "integer_id": 800, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.435866, + 45.55293 + ] + }, + "id": 801, + "properties": { + "id": "317463e6-5f58-49bb-9db5-183bfb37f7c6", + "code": "32509", + "data": { + "stops": [ + { + "id": "2509", + "code": "32509", + "data": { + "gtfs": { + "stop_id": "2509", + "stop_code": "32509", + "stop_name": "ch. Du Tremblay et civique 2790", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 2790", + "geography": { + "type": "Point", + "coordinates": [ + -73.4357845806832, + 45.5528585298063 + ] + } + }, + { + "id": "2573", + "code": "32573", + "data": { + "gtfs": { + "stop_id": "2573", + "stop_code": "32573", + "stop_name": "ch. Du Tremblay et civique 2790", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 2790", + "geography": { + "type": "Point", + "coordinates": [ + -73.4359482647772, + 45.5530019771373 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0408569794287 + }, + "name": "ch. Du Tremblay et civique 2790", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.435866423, + 45.552930253 + ] + }, + "is_frozen": false, + "integer_id": 801, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.427312, + 45.559768 + ] + }, + "id": 802, + "properties": { + "id": "fafd80b0-6ccf-4eb9-acda-4d93a4bf6736", + "code": "32510", + "data": { + "stops": [ + { + "id": "2510", + "code": "32510", + "data": { + "gtfs": { + "stop_id": "2510", + "stop_code": "32510", + "stop_name": "ch. Du Tremblay et civique 88", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 88", + "geography": { + "type": "Point", + "coordinates": [ + -73.4272351860175, + 45.559688886981 + ] + } + }, + { + "id": "2570", + "code": "32570", + "data": { + "gtfs": { + "stop_id": "2570", + "stop_code": "32570", + "stop_name": "ch. Du Tremblay et civique 115", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 115", + "geography": { + "type": "Point", + "coordinates": [ + -73.4273880761966, + 45.5598462725599 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1567027976015 + }, + "name": "ch. Du Tremblay et civique 88", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.427311631, + 45.55976758 + ] + }, + "is_frozen": false, + "integer_id": 802, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.417438, + 45.566156 + ] + }, + "id": 803, + "properties": { + "id": "0041d8ec-3bef-4a62-90da-3711f5d509d2", + "code": "32512", + "data": { + "stops": [ + { + "id": "2512", + "code": "32512", + "data": { + "gtfs": { + "stop_id": "2512", + "stop_code": "32512", + "stop_name": "ch. Du Tremblay et GROUPE CANAM INC.", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et GROUPE CANAM INC.", + "geography": { + "type": "Point", + "coordinates": [ + -73.4173959425412, + 45.5661068249963 + ] + } + }, + { + "id": "2940", + "code": "32940", + "data": { + "gtfs": { + "stop_id": "2940", + "stop_code": "32940", + "stop_name": "ch. Du Tremblay et GROUPE CANAM INC.", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et GROUPE CANAM INC.", + "geography": { + "type": "Point", + "coordinates": [ + -73.4174798688298, + 45.5662058672885 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2649863207556 + }, + "name": "ch. Du Tremblay et GROUPE CANAM INC.", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.417437906, + 45.566156346 + ] + }, + "is_frozen": false, + "integer_id": 803, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.415926, + 45.567711 + ] + }, + "id": 804, + "properties": { + "id": "1af3fbef-32b4-454e-9289-b300f3b4ddb1", + "code": "32513", + "data": { + "stops": [ + { + "id": "2513", + "code": "32513", + "data": { + "gtfs": { + "stop_id": "2513", + "stop_code": "32513", + "stop_name": "Nobel et ch. Du Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et ch. Du Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4160339390231, + 45.5678805913916 + ] + } + }, + { + "id": "2567", + "code": "32567", + "data": { + "gtfs": { + "stop_id": "2567", + "stop_code": "32567", + "stop_name": "Nobel et ch. Du Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et ch. Du Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4158180640992, + 45.5675409066991 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2913374931998 + }, + "name": "Nobel et ch. Du Tremblay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.415926002, + 45.567710749 + ] + }, + "is_frozen": false, + "integer_id": 804, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454205, + 45.567454 + ] + }, + "id": 805, + "properties": { + "id": "aff34f6b-5801-4e1a-bc66-3990844e0b4e", + "code": "32516", + "data": { + "stops": [ + { + "id": "2516", + "code": "32516", + "data": { + "gtfs": { + "stop_id": "2516", + "stop_code": "32516", + "stop_name": "ch. du Lac et civique 2604", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et civique 2604", + "geography": { + "type": "Point", + "coordinates": [ + -73.4543557641853, + 45.5674203390714 + ] + } + }, + { + "id": "4025", + "code": "34025", + "data": { + "gtfs": { + "stop_id": "4025", + "stop_code": "34025", + "stop_name": "ch. du Lac et civique 2604", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et civique 2604", + "geography": { + "type": "Point", + "coordinates": [ + -73.4540534087095, + 45.5674869350687 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2869786272419 + }, + "name": "ch. du Lac et civique 2604", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454204586, + 45.567453637 + ] + }, + "is_frozen": false, + "integer_id": 805, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456837, + 45.56517 + ] + }, + "id": 806, + "properties": { + "id": "bd467e22-a975-40b8-9a7a-9801529c3237", + "code": "32517", + "data": { + "stops": [ + { + "id": "2517", + "code": "32517", + "data": { + "gtfs": { + "stop_id": "2517", + "stop_code": "32517", + "stop_name": "ch. du Lac et Labadie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et Labadie", + "geography": { + "type": "Point", + "coordinates": [ + -73.45667515809, + 45.5654079999878 + ] + } + }, + { + "id": "2712", + "code": "32712", + "data": { + "gtfs": { + "stop_id": "2712", + "stop_code": "32712", + "stop_name": "ch. du Lac et Labadie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et Labadie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4569982572321, + 45.564932395552 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2482696675125 + }, + "name": "ch. du Lac et Labadie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456836708, + 45.565170198 + ] + }, + "is_frozen": false, + "integer_id": 806, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458986, + 45.563469 + ] + }, + "id": 807, + "properties": { + "id": "adc9bcc9-8f6d-49e9-b7de-68b4f56033f4", + "code": "32518", + "data": { + "stops": [ + { + "id": "2518", + "code": "32518", + "data": { + "gtfs": { + "stop_id": "2518", + "stop_code": "32518", + "stop_name": "ch. du Lac et civique 2350", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et civique 2350", + "geography": { + "type": "Point", + "coordinates": [ + -73.4590172396236, + 45.5635756194319 + ] + } + }, + { + "id": "2563", + "code": "32563", + "data": { + "gtfs": { + "stop_id": "2563", + "stop_code": "32563", + "stop_name": "ch. du Lac et civique 2350", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et civique 2350", + "geography": { + "type": "Point", + "coordinates": [ + -73.4589551868926, + 45.5633623294224 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2194334711048 + }, + "name": "ch. du Lac et civique 2350", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.458986213, + 45.563468974 + ] + }, + "is_frozen": false, + "integer_id": 807, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47277, + 45.564071 + ] + }, + "id": 808, + "properties": { + "id": "e01682ec-7470-4db5-8b9e-ac8823b81e39", + "code": "32520", + "data": { + "stops": [ + { + "id": "2520", + "code": "32520", + "data": { + "gtfs": { + "stop_id": "2520", + "stop_code": "32520", + "stop_name": "de la Province et Bériault", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et Bériault", + "geography": { + "type": "Point", + "coordinates": [ + -73.4729027965642, + 45.5639010758481 + ] + } + }, + { + "id": "2559", + "code": "32559", + "data": { + "gtfs": { + "stop_id": "2559", + "stop_code": "32559", + "stop_name": "de la Province et Bériault", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et Bériault", + "geography": { + "type": "Point", + "coordinates": [ + -73.4726374930419, + 45.5642406853098 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2296356582181 + }, + "name": "de la Province et Bériault", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472770145, + 45.564070881 + ] + }, + "is_frozen": false, + "integer_id": 808, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.470156, + 45.565741 + ] + }, + "id": 809, + "properties": { + "id": "5f1f8694-7622-42a2-a482-eb0612df0756", + "code": "32521", + "data": { + "stops": [ + { + "id": "2521", + "code": "32521", + "data": { + "gtfs": { + "stop_id": "2521", + "stop_code": "32521", + "stop_name": "de la Province et Le Breton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et Le Breton", + "geography": { + "type": "Point", + "coordinates": [ + -73.4702879840117, + 45.5655624789152 + ] + } + }, + { + "id": "2558", + "code": "32558", + "data": { + "gtfs": { + "stop_id": "2558", + "stop_code": "32558", + "stop_name": "de la Province et Le Breton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et Le Breton", + "geography": { + "type": "Point", + "coordinates": [ + -73.4700241479711, + 45.5659191677211 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2579424912524 + }, + "name": "de la Province et Le Breton", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.470156066, + 45.565740823 + ] + }, + "is_frozen": false, + "integer_id": 809, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468152, + 45.567015 + ] + }, + "id": 810, + "properties": { + "id": "7330c47a-92ea-4650-a95f-c6010983e0e2", + "code": "32522", + "data": { + "stops": [ + { + "id": "2522", + "code": "32522", + "data": { + "gtfs": { + "stop_id": "2522", + "stop_code": "32522", + "stop_name": "de la Province et boul. Guimond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et boul. Guimond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4682994851473, + 45.5668270052845 + ] + } + }, + { + "id": "2557", + "code": "32557", + "data": { + "gtfs": { + "stop_id": "2557", + "stop_code": "32557", + "stop_name": "de la Province et boul. Guimond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et boul. Guimond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4680223932078, + 45.5672034334412 + ] + } + }, + { + "id": "5237", + "code": "35237", + "data": { + "gtfs": { + "stop_id": "5237", + "stop_code": "35237", + "stop_name": "boul. Guimond et de la Province", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Guimond et de la Province", + "geography": { + "type": "Point", + "coordinates": [ + -73.4683357935038, + 45.5670493622689 + ] + } + }, + { + "id": "5255", + "code": "35255", + "data": { + "gtfs": { + "stop_id": "5255", + "stop_code": "35255", + "stop_name": "boul. Guimond et de la Province", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Guimond et de la Province", + "geography": { + "type": "Point", + "coordinates": [ + -73.4679678417512, + 45.5670081283251 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2795461843303 + }, + "name": "de la Province et boul. Guimond", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468151818, + 45.567015219 + ] + }, + "is_frozen": false, + "integer_id": 810, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46395, + 45.570404 + ] + }, + "id": 811, + "properties": { + "id": "ddf509a6-0c36-4863-8c49-8e568d69fa14", + "code": "32523", + "data": { + "stops": [ + { + "id": "2523", + "code": "32523", + "data": { + "gtfs": { + "stop_id": "2523", + "stop_code": "32523", + "stop_name": "de la Province et Giffard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et Giffard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4638580710992, + 45.5703221797271 + ] + } + }, + { + "id": "2555", + "code": "32555", + "data": { + "gtfs": { + "stop_id": "2555", + "stop_code": "32555", + "stop_name": "de la Province et Giffard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et Giffard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4640415111643, + 45.5704862212677 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3370036036492 + }, + "name": "de la Province et Giffard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463949791, + 45.5704042 + ] + }, + "is_frozen": false, + "integer_id": 811, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463389, + 45.571677 + ] + }, + "id": 812, + "properties": { + "id": "b00ce62b-a3af-454b-8eb4-951ab271a0e2", + "code": "32524", + "data": { + "stops": [ + { + "id": "2524", + "code": "32524", + "data": { + "gtfs": { + "stop_id": "2524", + "stop_code": "32524", + "stop_name": "de la Province et civique 2370", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et civique 2370", + "geography": { + "type": "Point", + "coordinates": [ + -73.4633007348799, + 45.5716089538677 + ] + } + }, + { + "id": "2554", + "code": "32554", + "data": { + "gtfs": { + "stop_id": "2554", + "stop_code": "32554", + "stop_name": "de la Province et civique 2375", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et civique 2375", + "geography": { + "type": "Point", + "coordinates": [ + -73.4634777736796, + 45.5717458075908 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.358592005826 + }, + "name": "de la Province et civique 2370", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463389254, + 45.571677381 + ] + }, + "is_frozen": false, + "integer_id": 812, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462349, + 45.574075 + ] + }, + "id": 813, + "properties": { + "id": "b5bdde0b-f4ea-4dda-8556-5a9c093cee1e", + "code": "32526", + "data": { + "stops": [ + { + "id": "2526", + "code": "32526", + "data": { + "gtfs": { + "stop_id": "2526", + "stop_code": "32526", + "stop_name": "de la Province et Talon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et Talon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4622805543407, + 45.5739752903973 + ] + } + }, + { + "id": "3934", + "code": "33934", + "data": { + "gtfs": { + "stop_id": "3934", + "stop_code": "33934", + "stop_name": "de la Province et Jean-Neveu", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et Jean-Neveu", + "geography": { + "type": "Point", + "coordinates": [ + -73.4624167490405, + 45.5741750097596 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3992531613627 + }, + "name": "de la Province et Talon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462348652, + 45.57407515 + ] + }, + "is_frozen": false, + "integer_id": 813, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464263, + 45.57508 + ] + }, + "id": 814, + "properties": { + "id": "1532a7e6-19bb-482a-881b-1cf8dd8416ed", + "code": "32527", + "data": { + "stops": [ + { + "id": "2527", + "code": "32527", + "data": { + "gtfs": { + "stop_id": "2527", + "stop_code": "32527", + "stop_name": "Jean-Neveu et civique 450", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jean-Neveu et civique 450", + "geography": { + "type": "Point", + "coordinates": [ + -73.4643132134085, + 45.5751474361745 + ] + } + }, + { + "id": "2551", + "code": "32551", + "data": { + "gtfs": { + "stop_id": "2551", + "stop_code": "32551", + "stop_name": "Jean-Neveu et civique 450", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jean-Neveu et civique 450", + "geography": { + "type": "Point", + "coordinates": [ + -73.4642127984574, + 45.5750124300169 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4162937112955 + }, + "name": "Jean-Neveu et civique 450", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464263006, + 45.575079933 + ] + }, + "is_frozen": false, + "integer_id": 814, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468728, + 45.575808 + ] + }, + "id": 815, + "properties": { + "id": "3be8bc80-2551-4dbe-a3e5-58d302899fd6", + "code": "32528", + "data": { + "stops": [ + { + "id": "2528", + "code": "32528", + "data": { + "gtfs": { + "stop_id": "2528", + "stop_code": "32528", + "stop_name": "de la Métropole et Jean-Neveu", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Métropole et Jean-Neveu", + "geography": { + "type": "Point", + "coordinates": [ + -73.4689207166583, + 45.5757696663861 + ] + } + }, + { + "id": "2550", + "code": "32550", + "data": { + "gtfs": { + "stop_id": "2550", + "stop_code": "32550", + "stop_name": "de la Métropole et Jean-Neveu", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Métropole et Jean-Neveu", + "geography": { + "type": "Point", + "coordinates": [ + -73.4685358823798, + 45.5758460467193 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4286394534531 + }, + "name": "de la Métropole et Jean-Neveu", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.4687283, + 45.575807857 + ] + }, + "is_frozen": false, + "integer_id": 815, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.471746, + 45.572423 + ] + }, + "id": 816, + "properties": { + "id": "ffb5020e-4dcf-4cee-9d46-621fd641098b", + "code": "32529", + "data": { + "stops": [ + { + "id": "2529", + "code": "32529", + "data": { + "gtfs": { + "stop_id": "2529", + "stop_code": "32529", + "stop_name": "de la Métropole et civique 2320", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Métropole et civique 2320", + "geography": { + "type": "Point", + "coordinates": [ + -73.4718025125951, + 45.5725003551802 + ] + } + }, + { + "id": "2549", + "code": "32549", + "data": { + "gtfs": { + "stop_id": "2549", + "stop_code": "32549", + "stop_name": "de la Métropole et civique 2320", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Métropole et civique 2320", + "geography": { + "type": "Point", + "coordinates": [ + -73.4716891754347, + 45.5723461409268 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3712398019757 + }, + "name": "de la Métropole et civique 2320", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.471745844, + 45.572423248 + ] + }, + "is_frozen": false, + "integer_id": 816, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.473073, + 45.570871 + ] + }, + "id": 817, + "properties": { + "id": "a0c45e7b-af06-4ea8-a82a-a658b829e198", + "code": "32530", + "data": { + "stops": [ + { + "id": "2530", + "code": "32530", + "data": { + "gtfs": { + "stop_id": "2530", + "stop_code": "32530", + "stop_name": "de la Métropole et boul. Guimond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Métropole et boul. Guimond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4730925996142, + 45.5710556240782 + ] + } + }, + { + "id": "2548", + "code": "32548", + "data": { + "gtfs": { + "stop_id": "2548", + "stop_code": "32548", + "stop_name": "de la Métropole et boul. Guimond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Métropole et boul. Guimond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4731618767937, + 45.5706866911367 + ] + } + }, + { + "id": "5257", + "code": "35257", + "data": { + "gtfs": { + "stop_id": "5257", + "stop_code": "35257", + "stop_name": "boul. Guimond et de la Métropole", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Guimond et de la Métropole", + "geography": { + "type": "Point", + "coordinates": [ + -73.4729834517432, + 45.5708578043837 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3449213018181 + }, + "name": "de la Métropole et boul. Guimond", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.473072664, + 45.570871158 + ] + }, + "is_frozen": false, + "integer_id": 817, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474496, + 45.569322 + ] + }, + "id": 818, + "properties": { + "id": "3fa535d7-2c06-4fc3-ac22-347da96e9a38", + "code": "32531", + "data": { + "stops": [ + { + "id": "2531", + "code": "32531", + "data": { + "gtfs": { + "stop_id": "2531", + "stop_code": "32531", + "stop_name": "de la Métropole et Le Breton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Métropole et Le Breton", + "geography": { + "type": "Point", + "coordinates": [ + -73.4743969304767, + 45.5695671286783 + ] + } + }, + { + "id": "2547", + "code": "32547", + "data": { + "gtfs": { + "stop_id": "2547", + "stop_code": "32547", + "stop_name": "de la Métropole et Le Breton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Métropole et Le Breton", + "geography": { + "type": "Point", + "coordinates": [ + -73.4745955170988, + 45.5690763188615 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3186499868095 + }, + "name": "de la Métropole et Le Breton", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474496224, + 45.569321724 + ] + }, + "is_frozen": false, + "integer_id": 818, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.476553, + 45.567075 + ] + }, + "id": 819, + "properties": { + "id": "cbdc89b0-549e-41a3-becc-56a1e8c831ce", + "code": "32532", + "data": { + "stops": [ + { + "id": "2532", + "code": "32532", + "data": { + "gtfs": { + "stop_id": "2532", + "stop_code": "32532", + "stop_name": "de la Métropole et Bériault", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Métropole et Bériault", + "geography": { + "type": "Point", + "coordinates": [ + -73.4765508375489, + 45.5672500765304 + ] + } + }, + { + "id": "2546", + "code": "32546", + "data": { + "gtfs": { + "stop_id": "2546", + "stop_code": "32546", + "stop_name": "de la Métropole et Bériault", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Métropole et Bériault", + "geography": { + "type": "Point", + "coordinates": [ + -73.4765557877045, + 45.5668991427169 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2805530221132 + }, + "name": "de la Métropole et Bériault", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.476553313, + 45.56707461 + ] + }, + "is_frozen": false, + "integer_id": 819, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478664, + 45.564739 + ] + }, + "id": 820, + "properties": { + "id": "3e6f6ee6-af44-48b8-9b96-431c0dfdb40c", + "code": "32533", + "data": { + "stops": [ + { + "id": "2533", + "code": "32533", + "data": { + "gtfs": { + "stop_id": "2533", + "stop_code": "32533", + "stop_name": "de la Métropole et boul. Jean-Paul-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Métropole et boul. Jean-Paul-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4788447404126, + 45.5646582537533 + ] + } + }, + { + "id": "2545", + "code": "32545", + "data": { + "gtfs": { + "stop_id": "2545", + "stop_code": "32545", + "stop_name": "de la Métropole et boul. Jean-Paul-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Métropole et boul. Jean-Paul-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4784834765671, + 45.5648202084583 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.24096441839 + }, + "name": "de la Métropole et boul. Jean-Paul-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.478664108, + 45.564739231 + ] + }, + "is_frozen": false, + "integer_id": 820, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482498, + 45.56733 + ] + }, + "id": 821, + "properties": { + "id": "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", + "code": "32534", + "data": { + "stops": [ + { + "id": "2534", + "code": "32534", + "data": { + "gtfs": { + "stop_id": "2534", + "stop_code": "32534", + "stop_name": "boul. Jean-Paul-Vincent et Kirouac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jean-Paul-Vincent et Kirouac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4824414991898, + 45.5672249297859 + ] + } + }, + { + "id": "2544", + "code": "32544", + "data": { + "gtfs": { + "stop_id": "2544", + "stop_code": "32544", + "stop_name": "Kirouac et boul. Jean-Paul-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Kirouac et boul. Jean-Paul-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4825535073807, + 45.5674341238921 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2848745892423 + }, + "name": "boul. Jean-Paul-Vincent et Kirouac", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482497503, + 45.567329527 + ] + }, + "is_frozen": false, + "integer_id": 821, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483781, + 45.568252 + ] + }, + "id": 822, + "properties": { + "id": "0e909db9-b45c-44fa-bfff-a89f751e1acf", + "code": "32535", + "data": { + "stops": [ + { + "id": "2535", + "code": "32535", + "data": { + "gtfs": { + "stop_id": "2535", + "stop_code": "32535", + "stop_name": "boul. Jean-Paul-Vincent et Coulonge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jean-Paul-Vincent et Coulonge", + "geography": { + "type": "Point", + "coordinates": [ + -73.4837813528615, + 45.5682524831615 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3005218004741 + }, + "name": "boul. Jean-Paul-Vincent et Coulonge", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483781353, + 45.568252483 + ] + }, + "is_frozen": false, + "integer_id": 822, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.48549, + 45.56956 + ] + }, + "id": 823, + "properties": { + "id": "1c1d06bf-7e76-429d-9eb4-4a4d4d2842d4", + "code": "32536", + "data": { + "stops": [ + { + "id": "2536", + "code": "32536", + "data": { + "gtfs": { + "stop_id": "2536", + "stop_code": "32536", + "stop_name": "boul. Marie-Victorin et boul. Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et boul. Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4854896048996, + 45.5695596324924 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3226836790767 + }, + "name": "boul. Marie-Victorin et boul. Marie-Victorin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.485489605, + 45.569559632 + ] + }, + "is_frozen": false, + "integer_id": 823, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481646, + 45.569927 + ] + }, + "id": 824, + "properties": { + "id": "ef393841-8a29-4383-a7b9-545addf087f6", + "code": "32538", + "data": { + "stops": [ + { + "id": "2538", + "code": "32538", + "data": { + "gtfs": { + "stop_id": "2538", + "stop_code": "32538", + "stop_name": "de l'Église et de l'Église", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de l'Église et de l'Église", + "geography": { + "type": "Point", + "coordinates": [ + -73.4819018644521, + 45.5701320680594 + ] + } + }, + { + "id": "2539", + "code": "32539", + "data": { + "gtfs": { + "stop_id": "2539", + "stop_code": "32539", + "stop_name": "de l'Église et Limoges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de l'Église et Limoges", + "geography": { + "type": "Point", + "coordinates": [ + -73.4813895327167, + 45.5697214173946 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3289080869035 + }, + "name": "de l'Église et de l'Église", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481645699, + 45.569926743 + ] + }, + "is_frozen": false, + "integer_id": 824, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479931, + 45.568601 + ] + }, + "id": 825, + "properties": { + "id": "281f350b-faae-4302-bcde-cc7831951682", + "code": "32540", + "data": { + "stops": [ + { + "id": "2540", + "code": "32540", + "data": { + "gtfs": { + "stop_id": "2540", + "stop_code": "32540", + "stop_name": "de l'Église et civique 166", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de l'Église et civique 166", + "geography": { + "type": "Point", + "coordinates": [ + -73.4799309918048, + 45.5686014116275 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.306437519974 + }, + "name": "de l'Église et civique 166", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479930992, + 45.568601412 + ] + }, + "is_frozen": false, + "integer_id": 825, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479053, + 45.567955 + ] + }, + "id": 826, + "properties": { + "id": "59b13438-eb20-4204-b1fd-fe2ed2a80258", + "code": "32541", + "data": { + "stops": [ + { + "id": "2541", + "code": "32541", + "data": { + "gtfs": { + "stop_id": "2541", + "stop_code": "32541", + "stop_name": "de l'Église et Claude", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de l'Église et Claude", + "geography": { + "type": "Point", + "coordinates": [ + -73.4790528137801, + 45.5679547322742 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2954738354921 + }, + "name": "de l'Église et Claude", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479052814, + 45.567954732 + ] + }, + "is_frozen": false, + "integer_id": 826, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479172, + 45.567264 + ] + }, + "id": 827, + "properties": { + "id": "bc413ffa-dc65-4fc7-93f0-58dddebb3024", + "code": "32542", + "data": { + "stops": [ + { + "id": "2542", + "code": "32542", + "data": { + "gtfs": { + "stop_id": "2542", + "stop_code": "32542", + "stop_name": "Claude et CENTRE D'HEBERGEMENT RENE-LEVESQUE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Claude et CENTRE D'HEBERGEMENT RENE-LEVESQUE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4791719704858, + 45.5672642880498 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2837685973803 + }, + "name": "Claude et CENTRE D'HEBERGEMENT RENE-LEVESQUE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47917197, + 45.567264288 + ] + }, + "is_frozen": false, + "integer_id": 827, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481648, + 45.567777 + ] + }, + "id": 828, + "properties": { + "id": "ce65fcd5-5449-4ede-b81b-9d2cd21731a7", + "code": "32543", + "data": { + "stops": [ + { + "id": "2543", + "code": "32543", + "data": { + "gtfs": { + "stop_id": "2543", + "stop_code": "32543", + "stop_name": "Coulonge et Kirouac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Coulonge et Kirouac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4816482918009, + 45.5677774113501 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2924676357145 + }, + "name": "Coulonge et Kirouac", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481648292, + 45.567777411 + ] + }, + "is_frozen": false, + "integer_id": 828, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466411, + 45.568158 + ] + }, + "id": 829, + "properties": { + "id": "e72de034-4bad-4c42-9f05-b66c808b840c", + "code": "32556", + "data": { + "stops": [ + { + "id": "2556", + "code": "32556", + "data": { + "gtfs": { + "stop_id": "2556", + "stop_code": "32556", + "stop_name": "de la Province et civique 2315", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et civique 2315", + "geography": { + "type": "Point", + "coordinates": [ + -73.4663185001744, + 45.5683408147268 + ] + } + }, + { + "id": "2597", + "code": "32597", + "data": { + "gtfs": { + "stop_id": "2597", + "stop_code": "32597", + "stop_name": "de la Province et civique 2270", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et civique 2270", + "geography": { + "type": "Point", + "coordinates": [ + -73.4665028962788, + 45.5679753145997 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2989210625688 + }, + "name": "de la Province et civique 2315", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466410698, + 45.568158065 + ] + }, + "is_frozen": false, + "integer_id": 829, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475673, + 45.5624 + ] + }, + "id": 830, + "properties": { + "id": "31d31773-be59-456e-bce3-a8671d3f0ded", + "code": "32560", + "data": { + "stops": [ + { + "id": "2560", + "code": "32560", + "data": { + "gtfs": { + "stop_id": "2560", + "stop_code": "32560", + "stop_name": "de la Province et boul. Jean-Paul-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et boul. Jean-Paul-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4756729669674, + 45.5623997917287 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2013118769063 + }, + "name": "de la Province et boul. Jean-Paul-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475672967, + 45.562399792 + ] + }, + "is_frozen": false, + "integer_id": 830, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459736, + 45.56267 + ] + }, + "id": 831, + "properties": { + "id": "bd99fd0e-cbdd-4d16-af5c-609bbef87ee4", + "code": "32562", + "data": { + "stops": [ + { + "id": "2562", + "code": "32562", + "data": { + "gtfs": { + "stop_id": "2562", + "stop_code": "32562", + "stop_name": "ch. du Lac et COLLEGE CHARLES LEMOYNE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et COLLEGE CHARLES LEMOYNE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4597363057002, + 45.5626697355793 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2058870685743 + }, + "name": "ch. du Lac et COLLEGE CHARLES LEMOYNE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459736306, + 45.562669736 + ] + }, + "is_frozen": false, + "integer_id": 831, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450301, + 45.567373 + ] + }, + "id": 832, + "properties": { + "id": "05e5d0a5-05a1-4d79-bb02-411b633ccf77", + "code": "32565", + "data": { + "stops": [ + { + "id": "2565", + "code": "32565", + "data": { + "gtfs": { + "stop_id": "2565", + "stop_code": "32565", + "stop_name": "ch. du Lac et boul. Jacques-Cartier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et boul. Jacques-Cartier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.450582396472, + 45.5674769063711 + ] + } + }, + { + "id": "4130", + "code": "34130", + "data": { + "gtfs": { + "stop_id": "4130", + "stop_code": "34130", + "stop_name": "boul. Jacques-Cartier est et ch. du Lac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et ch. du Lac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4504929561457, + 45.5676990129727 + ] + } + }, + { + "id": "5247", + "code": "35247", + "data": { + "gtfs": { + "stop_id": "5247", + "stop_code": "35247", + "stop_name": "boul. Jacques-Cartier est et ch. du Lac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et ch. du Lac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4500190501511, + 45.5673994205329 + ] + } + }, + { + "id": "5288", + "code": "35288", + "data": { + "gtfs": { + "stop_id": "5288", + "stop_code": "35288", + "stop_name": "boul. Jacques-Cartier est et ch. du Lac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et ch. du Lac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4504653486321, + 45.5670467013713 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2856091615768 + }, + "name": "ch. du Lac et boul. Jacques-Cartier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450300723, + 45.567372857 + ] + }, + "is_frozen": false, + "integer_id": 832, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449528, + 45.569161 + ] + }, + "id": 833, + "properties": { + "id": "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", + "code": "32566", + "data": { + "stops": [ + { + "id": "2566", + "code": "32566", + "data": { + "gtfs": { + "stop_id": "2566", + "stop_code": "32566", + "stop_name": "boul. de Mortagne et Jean-Neveu", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Jean-Neveu", + "geography": { + "type": "Point", + "coordinates": [ + -73.4495276451023, + 45.5691614827475 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3159331546761 + }, + "name": "boul. de Mortagne et Jean-Neveu", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449527645, + 45.569161483 + ] + }, + "is_frozen": false, + "integer_id": 833, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.425376, + 45.561862 + ] + }, + "id": 834, + "properties": { + "id": "b734f683-dc9f-47d6-a659-53e6bf9d2915", + "code": "32569", + "data": { + "stops": [ + { + "id": "2569", + "code": "32569", + "data": { + "gtfs": { + "stop_id": "2569", + "stop_code": "32569", + "stop_name": "ch. Du Tremblay et Graham-Bell", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Graham-Bell", + "geography": { + "type": "Point", + "coordinates": [ + -73.4249966861825, + 45.5619414700197 + ] + } + }, + { + "id": "3241", + "code": "33241", + "data": { + "gtfs": { + "stop_id": "3241", + "stop_code": "33241", + "stop_name": "Graham-Bell et civique 1468", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Graham-Bell et civique 1468", + "geography": { + "type": "Point", + "coordinates": [ + -73.4257543868024, + 45.5621045892322 + ] + } + }, + { + "id": "3893", + "code": "33893", + "data": { + "gtfs": { + "stop_id": "3893", + "stop_code": "33893", + "stop_name": "ch. Du Tremblay et Graham-Bell", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Graham-Bell", + "geography": { + "type": "Point", + "coordinates": [ + -73.4250976223237, + 45.5616191933024 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1921953646851 + }, + "name": "ch. Du Tremblay et Graham-Bell", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.425375536, + 45.561861891 + ] + }, + "is_frozen": false, + "integer_id": 834, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.430886, + 45.556489 + ] + }, + "id": 835, + "properties": { + "id": "52b4b9f4-5da9-4e8b-83a9-0be3d15c1d16", + "code": "32571", + "data": { + "stops": [ + { + "id": "2571", + "code": "32571", + "data": { + "gtfs": { + "stop_id": "2571", + "stop_code": "32571", + "stop_name": "ch. Du Tremblay et civique 40", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 40", + "geography": { + "type": "Point", + "coordinates": [ + -73.4309273437572, + 45.5565263610041 + ] + } + }, + { + "id": "2714", + "code": "32714", + "data": { + "gtfs": { + "stop_id": "2714", + "stop_code": "32714", + "stop_name": "ch. Du Tremblay et civique 40", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 40", + "geography": { + "type": "Point", + "coordinates": [ + -73.4308455854508, + 45.5564515433844 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1011473202786 + }, + "name": "ch. Du Tremblay et civique 40", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.430886465, + 45.556488952 + ] + }, + "is_frozen": false, + "integer_id": 835, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.431778, + 45.555659 + ] + }, + "id": 836, + "properties": { + "id": "c6e39e27-f6a2-4102-b237-b49f8c28ddda", + "code": "32572", + "data": { + "stops": [ + { + "id": "2572", + "code": "32572", + "data": { + "gtfs": { + "stop_id": "2572", + "stop_code": "32572", + "stop_name": "ch. Du Tremblay et civique 15", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 15", + "geography": { + "type": "Point", + "coordinates": [ + -73.4317738353711, + 45.5557727263907 + ] + } + }, + { + "id": "2713", + "code": "32713", + "data": { + "gtfs": { + "stop_id": "2713", + "stop_code": "32713", + "stop_name": "ch. Du Tremblay et civique 40", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 40", + "geography": { + "type": "Point", + "coordinates": [ + -73.4317826537318, + 45.5555453767191 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0870864086432 + }, + "name": "ch. Du Tremblay et civique 15", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431778245, + 45.555659052 + ] + }, + "is_frozen": false, + "integer_id": 836, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.39804, + 45.497226 + ] + }, + "id": 837, + "properties": { + "id": "2e7cf58e-8d32-4b71-acee-694db180235f", + "code": "32577", + "data": { + "stops": [ + { + "id": "2577", + "code": "32577", + "data": { + "gtfs": { + "stop_id": "2577", + "stop_code": "32577", + "stop_name": "boul. Jacques-Marcil et Talbot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Marcil et Talbot", + "geography": { + "type": "Point", + "coordinates": [ + -73.3980685753153, + 45.4973210559708 + ] + } + }, + { + "id": "5363", + "code": "30103", + "data": { + "gtfs": { + "stop_id": "5363", + "stop_code": "30103", + "stop_name": "boul. Jacques-Marcil et Talbot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Marcil et Talbot", + "geography": { + "type": "Point", + "coordinates": [ + -73.3980119788985, + 45.497131338142 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0986087415255 + }, + "name": "boul. Jacques-Marcil et Talbot", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.398040277, + 45.497226197 + ] + }, + "is_frozen": false, + "integer_id": 837, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.404955, + 45.500595 + ] + }, + "id": 838, + "properties": { + "id": "7414010b-fe1f-4d77-8cdd-701cc437e73a", + "code": "32578", + "data": { + "stops": [ + { + "id": "2578", + "code": "32578", + "data": { + "gtfs": { + "stop_id": "2578", + "stop_code": "32578", + "stop_name": "boul. Gaétan-Boucher et civique 1755", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et civique 1755", + "geography": { + "type": "Point", + "coordinates": [ + -73.4049545116081, + 45.5005949246998 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1555131073334 + }, + "name": "boul. Gaétan-Boucher et civique 1755", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.404954512, + 45.500594925 + ] + }, + "is_frozen": false, + "integer_id": 838, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465402, + 45.468251 + ] + }, + "id": 839, + "properties": { + "id": "cbfe7779-9081-4538-b1fe-f238be6c7969", + "code": "32579", + "data": { + "stops": [ + { + "id": "2579", + "code": "32579", + "data": { + "gtfs": { + "stop_id": "2579", + "stop_code": "32579", + "stop_name": "av. Auteuil et TOYS R US", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et TOYS R US", + "geography": { + "type": "Point", + "coordinates": [ + -73.4652155364931, + 45.46834306462 + ] + } + }, + { + "id": "3299", + "code": "33299", + "data": { + "gtfs": { + "stop_id": "3299", + "stop_code": "33299", + "stop_name": "av. Auteuil et TOYS R US", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auteuil et TOYS R US", + "geography": { + "type": "Point", + "coordinates": [ + -73.465588840542, + 45.4681591982559 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6095801747401 + }, + "name": "av. Auteuil et TOYS R US", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465402189, + 45.468251131 + ] + }, + "is_frozen": false, + "integer_id": 839, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.470482, + 45.473539 + ] + }, + "id": 840, + "properties": { + "id": "85f19be2-1f67-4673-b3b3-52d06ed31ae3", + "code": "32580", + "data": { + "stops": [ + { + "id": "2580", + "code": "32580", + "data": { + "gtfs": { + "stop_id": "2580", + "stop_code": "32580", + "stop_name": "boul. Lapinière et Alcide", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et Alcide", + "geography": { + "type": "Point", + "coordinates": [ + -73.4704819799363, + 45.4735387248673 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6987662377185 + }, + "name": "boul. Lapinière et Alcide", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47048198, + 45.473538725 + ] + }, + "is_frozen": false, + "integer_id": 840, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.429676, + 45.504125 + ] + }, + "id": 841, + "properties": { + "id": "74cb2351-ff1a-4938-8179-802bb3572f42", + "code": "32583", + "data": { + "stops": [ + { + "id": "2583", + "code": "32583", + "data": { + "gtfs": { + "stop_id": "2583", + "stop_code": "32583", + "stop_name": "boul. Cousineau et boul. Gareau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et boul. Gareau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4296759663019, + 45.5041252074039 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2151572704129 + }, + "name": "boul. Cousineau et boul. Gareau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.429675966, + 45.504125207 + ] + }, + "is_frozen": false, + "integer_id": 841, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.405284, + 45.500678 + ] + }, + "id": 842, + "properties": { + "id": "d2cca46c-df28-490b-b5de-9bc99956bc15", + "code": "32585", + "data": { + "stops": [ + { + "id": "2585", + "code": "32585", + "data": { + "gtfs": { + "stop_id": "2585", + "stop_code": "32585", + "stop_name": "boul. Gaétan-Boucher et civique 1760", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et civique 1760", + "geography": { + "type": "Point", + "coordinates": [ + -73.4052843459919, + 45.5006776000238 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1569097757748 + }, + "name": "boul. Gaétan-Boucher et civique 1760", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.405284346, + 45.5006776 + ] + }, + "is_frozen": false, + "integer_id": 842, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.422174, + 45.504246 + ] + }, + "id": 843, + "properties": { + "id": "1dee950f-860c-49ec-9656-8fcdc6bfa744", + "code": "32586", + "data": { + "stops": [ + { + "id": "2586", + "code": "32586", + "data": { + "gtfs": { + "stop_id": "2586", + "stop_code": "32586", + "stop_name": "ch. de Chambly et montée Saint-Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et montée Saint-Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4221736988065, + 45.5042463204259 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2172036730034 + }, + "name": "ch. de Chambly et montée Saint-Hubert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.422173699, + 45.50424632 + ] + }, + "is_frozen": false, + "integer_id": 843, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.48919, + 45.560781 + ] + }, + "id": 844, + "properties": { + "id": "eace6dbd-217a-421f-9a0e-ee6e7890671f", + "code": "32587", + "data": { + "stops": [ + { + "id": "2587", + "code": "32587", + "data": { + "gtfs": { + "stop_id": "2587", + "stop_code": "32587", + "stop_name": "Lapointe et Lalande", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lapointe et Lalande", + "geography": { + "type": "Point", + "coordinates": [ + -73.4891895752107, + 45.5607810242265 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1738772786035 + }, + "name": "Lapointe et Lalande", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.489189575, + 45.560781024 + ] + }, + "is_frozen": false, + "integer_id": 844, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.393695, + 45.521916 + ] + }, + "id": 845, + "properties": { + "id": "7b3cddda-c6ba-4d35-a936-01ff21d1501b", + "code": "32590", + "data": { + "stops": [ + { + "id": "2590", + "code": "32590", + "data": { + "gtfs": { + "stop_id": "2590", + "stop_code": "32590", + "stop_name": "AGENCE SPATIALE CANADIENNE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "AGENCE SPATIALE CANADIENNE", + "geography": { + "type": "Point", + "coordinates": [ + -73.3936950904874, + 45.5219159337163 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5159007019491 + }, + "name": "AGENCE SPATIALE CANADIENNE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.39369509, + 45.521915934 + ] + }, + "is_frozen": false, + "integer_id": 845, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.402752, + 45.517163 + ] + }, + "id": 846, + "properties": { + "id": "4012bfc4-334d-4b7d-9898-4cfd802d0479", + "code": "32591", + "data": { + "stops": [ + { + "id": "2591", + "code": "32591", + "data": { + "gtfs": { + "stop_id": "2591", + "stop_code": "32591", + "stop_name": "rte de l'Aéroport et civique 6200", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et civique 6200", + "geography": { + "type": "Point", + "coordinates": [ + -73.4027515011906, + 45.5171627174142 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4355223259153 + }, + "name": "rte de l'Aéroport et civique 6200", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.402751501, + 45.517162717 + ] + }, + "is_frozen": false, + "integer_id": 846, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.405225, + 45.515638 + ] + }, + "id": 847, + "properties": { + "id": "784dd9cc-281a-47d9-8014-a2e6add384f6", + "code": "32592", + "data": { + "stops": [ + { + "id": "2592", + "code": "32592", + "data": { + "gtfs": { + "stop_id": "2592", + "stop_code": "32592", + "stop_name": "rte de l'Aéroport et civique 6100", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et civique 6100", + "geography": { + "type": "Point", + "coordinates": [ + -73.4052250625876, + 45.5156378041652 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4097398376779 + }, + "name": "rte de l'Aéroport et civique 6100", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.405225063, + 45.515637804 + ] + }, + "is_frozen": false, + "integer_id": 847, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.406775, + 45.514611 + ] + }, + "id": 848, + "properties": { + "id": "3ce1139e-888c-4783-a57f-da50952eee26", + "code": "32593", + "data": { + "stops": [ + { + "id": "2593", + "code": "32593", + "data": { + "gtfs": { + "stop_id": "2593", + "stop_code": "32593", + "stop_name": "rte de l'Aéroport et civique 6000", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et civique 6000", + "geography": { + "type": "Point", + "coordinates": [ + -73.4067747571646, + 45.514610830926 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3923774442155 + }, + "name": "rte de l'Aéroport et civique 6000", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.406774757, + 45.514610831 + ] + }, + "is_frozen": false, + "integer_id": 848, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450852, + 45.457926 + ] + }, + "id": 849, + "properties": { + "id": "5781af67-07a2-4732-99f5-af7b2835e18a", + "code": "32595", + "data": { + "stops": [ + { + "id": "2595", + "code": "32595", + "data": { + "gtfs": { + "stop_id": "2595", + "stop_code": "32595", + "stop_name": "av. Malo et av. Maupassant", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et av. Maupassant", + "geography": { + "type": "Point", + "coordinates": [ + -73.4508518813947, + 45.457926123002 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4354994071335 + }, + "name": "av. Malo et av. Maupassant", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450851881, + 45.457926123 + ] + }, + "is_frozen": false, + "integer_id": 849, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442818, + 45.472144 + ] + }, + "id": 850, + "properties": { + "id": "8bc1fa43-5a96-4718-96d6-82d3768ab9f4", + "code": "32601", + "data": { + "stops": [ + { + "id": "2601", + "code": "32601", + "data": { + "gtfs": { + "stop_id": "2601", + "stop_code": "32601", + "stop_name": "av. Bienville et boul. Milan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et boul. Milan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4428049809671, + 45.4722510136314 + ] + } + }, + { + "id": "4294", + "code": "34294", + "data": { + "gtfs": { + "stop_id": "4294", + "stop_code": "34294", + "stop_name": "av. Bienville et boul. Milan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et boul. Milan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4428306158887, + 45.4720377418103 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6752453195317 + }, + "name": "av. Bienville et boul. Milan", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442817798, + 45.472144378 + ] + }, + "is_frozen": false, + "integer_id": 850, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443879, + 45.473014 + ] + }, + "id": 851, + "properties": { + "id": "f761f132-09f4-4a01-a76e-f9b0e50d8a9d", + "code": "32602", + "data": { + "stops": [ + { + "id": "2602", + "code": "32602", + "data": { + "gtfs": { + "stop_id": "2602", + "stop_code": "32602", + "stop_name": "av. Bienville et place Bruno", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et place Bruno", + "geography": { + "type": "Point", + "coordinates": [ + -73.4437090607246, + 45.4729248026822 + ] + } + }, + { + "id": "2626", + "code": "32626", + "data": { + "gtfs": { + "stop_id": "2626", + "stop_code": "32626", + "stop_name": "av. Bienville et place Bruno", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et place Bruno", + "geography": { + "type": "Point", + "coordinates": [ + -73.4440480824294, + 45.4731041316395 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.689922447759 + }, + "name": "av. Bienville et place Bruno", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443878572, + 45.473014467 + ] + }, + "is_frozen": false, + "integer_id": 851, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445402, + 45.474927 + ] + }, + "id": 852, + "properties": { + "id": "18d33d13-0d37-41d0-8a27-4c75ae6704a6", + "code": "32603", + "data": { + "stops": [ + { + "id": "2603", + "code": "32603", + "data": { + "gtfs": { + "stop_id": "2603", + "stop_code": "32603", + "stop_name": "av. Bienville et civique 5685", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et civique 5685", + "geography": { + "type": "Point", + "coordinates": [ + -73.4454042711009, + 45.4750151337799 + ] + } + }, + { + "id": "2625", + "code": "32625", + "data": { + "gtfs": { + "stop_id": "2625", + "stop_code": "32625", + "stop_name": "av. Bienville et civique 5685", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et civique 5685", + "geography": { + "type": "Point", + "coordinates": [ + -73.4453987671239, + 45.474839345044 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.722190476523 + }, + "name": "av. Bienville et civique 5685", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445401519, + 45.474927239 + ] + }, + "is_frozen": false, + "integer_id": 852, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448174, + 45.475051 + ] + }, + "id": 853, + "properties": { + "id": "ab44c70e-171d-4dd2-b074-2fbdab29c11d", + "code": "32604", + "data": { + "stops": [ + { + "id": "2604", + "code": "32604", + "data": { + "gtfs": { + "stop_id": "2604", + "stop_code": "32604", + "stop_name": "av. Bienville et place Brabant", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et place Brabant", + "geography": { + "type": "Point", + "coordinates": [ + -73.4483902176745, + 45.4750592907393 + ] + } + }, + { + "id": "2624", + "code": "32624", + "data": { + "gtfs": { + "stop_id": "2624", + "stop_code": "32624", + "stop_name": "av. Bienville et Bordeaux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et Bordeaux", + "geography": { + "type": "Point", + "coordinates": [ + -73.4479578119827, + 45.4750430052828 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7242809052702 + }, + "name": "av. Bienville et place Brabant", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448174015, + 45.475051148 + ] + }, + "is_frozen": false, + "integer_id": 853, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449385, + 45.47426 + ] + }, + "id": 854, + "properties": { + "id": "030a4337-a3e4-4cae-9b3c-548f03210dcf", + "code": "32605", + "data": { + "stops": [ + { + "id": "2605", + "code": "32605", + "data": { + "gtfs": { + "stop_id": "2605", + "stop_code": "32605", + "stop_name": "av. Bienville et civique 5840", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et civique 5840", + "geography": { + "type": "Point", + "coordinates": [ + -73.4494803293946, + 45.4743134310333 + ] + } + }, + { + "id": "2623", + "code": "32623", + "data": { + "gtfs": { + "stop_id": "2623", + "stop_code": "32623", + "stop_name": "av. Bienville et civique 5845", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et civique 5845", + "geography": { + "type": "Point", + "coordinates": [ + -73.4492899441342, + 45.4742067462292 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7109354386071 + }, + "name": "av. Bienville et civique 5840", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449385137, + 45.474260089 + ] + }, + "is_frozen": false, + "integer_id": 854, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45026, + 45.473134 + ] + }, + "id": 855, + "properties": { + "id": "014a3440-ffed-405b-9391-031896ce89b5", + "code": "32606", + "data": { + "stops": [ + { + "id": "2606", + "code": "32606", + "data": { + "gtfs": { + "stop_id": "2606", + "stop_code": "32606", + "stop_name": "av. Bienville et Bordeaux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et Bordeaux", + "geography": { + "type": "Point", + "coordinates": [ + -73.4503907151723, + 45.4731426072107 + ] + } + }, + { + "id": "2622", + "code": "32622", + "data": { + "gtfs": { + "stop_id": "2622", + "stop_code": "32622", + "stop_name": "av. Bienville et Bordeaux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et Bordeaux", + "geography": { + "type": "Point", + "coordinates": [ + -73.4501286792069, + 45.4731253393104 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6919383916276 + }, + "name": "av. Bienville et Bordeaux", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450259697, + 45.473133973 + ] + }, + "is_frozen": false, + "integer_id": 855, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452301, + 45.472305 + ] + }, + "id": 856, + "properties": { + "id": "de0dd837-0f5e-4afa-a1ce-1042af81def1", + "code": "32607", + "data": { + "stops": [ + { + "id": "2607", + "code": "32607", + "data": { + "gtfs": { + "stop_id": "2607", + "stop_code": "32607", + "stop_name": "av. Bienville et Brière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et Brière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4521885265737, + 45.47240767267 + ] + } + }, + { + "id": "2621", + "code": "32621", + "data": { + "gtfs": { + "stop_id": "2621", + "stop_code": "32621", + "stop_name": "av. Bienville et Brière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et Brière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4524127972945, + 45.4722014293988 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6779471531613 + }, + "name": "av. Bienville et Brière", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452300662, + 45.472304551 + ] + }, + "is_frozen": false, + "integer_id": 856, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453926, + 45.471087 + ] + }, + "id": 857, + "properties": { + "id": "4d428a9f-d12a-42d6-ab66-7ad0c7ad2850", + "code": "32608", + "data": { + "stops": [ + { + "id": "2608", + "code": "32608", + "data": { + "gtfs": { + "stop_id": "2608", + "stop_code": "32608", + "stop_name": "av. Bienville et Banff", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et Banff", + "geography": { + "type": "Point", + "coordinates": [ + -73.4540043705761, + 45.4711725238751 + ] + } + }, + { + "id": "2620", + "code": "32620", + "data": { + "gtfs": { + "stop_id": "2620", + "stop_code": "32620", + "stop_name": "av. Bienville et Banff", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et Banff", + "geography": { + "type": "Point", + "coordinates": [ + -73.4538478475778, + 45.4710009622944 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.657405470147 + }, + "name": "av. Bienville et Banff", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453926109, + 45.471086743 + ] + }, + "is_frozen": false, + "integer_id": 857, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453518, + 45.469875 + ] + }, + "id": 858, + "properties": { + "id": "ee666934-d186-4b8b-a152-1fdeb23a5242", + "code": "32609", + "data": { + "stops": [ + { + "id": "2609", + "code": "32609", + "data": { + "gtfs": { + "stop_id": "2609", + "stop_code": "32609", + "stop_name": "av. Bienville et place Byzance", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et place Byzance", + "geography": { + "type": "Point", + "coordinates": [ + -73.4535289983677, + 45.4697797939117 + ] + } + }, + { + "id": "2619", + "code": "32619", + "data": { + "gtfs": { + "stop_id": "2619", + "stop_code": "32619", + "stop_name": "av. Bienville et civique 6195", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et civique 6195", + "geography": { + "type": "Point", + "coordinates": [ + -73.4535070881417, + 45.4699696556822 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6369627591772 + }, + "name": "av. Bienville et place Byzance", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453518043, + 45.469874725 + ] + }, + "is_frozen": false, + "integer_id": 858, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449983, + 45.467998 + ] + }, + "id": 859, + "properties": { + "id": "1f913485-afaa-44ed-8d7c-7ee42e035fe5", + "code": "32610", + "data": { + "stops": [ + { + "id": "2610", + "code": "32610", + "data": { + "gtfs": { + "stop_id": "2610", + "stop_code": "32610", + "stop_name": "av. Bienville et boul. Milan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et boul. Milan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4501756115534, + 45.4679822793683 + ] + } + }, + { + "id": "2616", + "code": "32616", + "data": { + "gtfs": { + "stop_id": "2616", + "stop_code": "32616", + "stop_name": "boul. Milan et av. Bienville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Bienville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4497899140663, + 45.4680144492406 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6053173653027 + }, + "name": "av. Bienville et boul. Milan", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449982763, + 45.467998364 + ] + }, + "is_frozen": false, + "integer_id": 859, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446275, + 45.469265 + ] + }, + "id": 860, + "properties": { + "id": "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", + "code": "32611", + "data": { + "stops": [ + { + "id": "2611", + "code": "32611", + "data": { + "gtfs": { + "stop_id": "2611", + "stop_code": "32611", + "stop_name": "boul. Milan et av. Bienvenue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Bienvenue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4463772799216, + 45.4691213450707 + ] + } + }, + { + "id": "2615", + "code": "32615", + "data": { + "gtfs": { + "stop_id": "2615", + "stop_code": "32615", + "stop_name": "av. Bienvenue et boul. Milan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienvenue et boul. Milan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4460833275853, + 45.4691388032365 + ] + } + }, + { + "id": "4309", + "code": "34309", + "data": { + "gtfs": { + "stop_id": "4309", + "stop_code": "34309", + "stop_name": "boul. Milan et av. Bienvenue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Bienvenue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4464666509201, + 45.4694093456687 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6266850389824 + }, + "name": "boul. Milan et av. Bienvenue", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446274989, + 45.469265345 + ] + }, + "is_frozen": false, + "integer_id": 860, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.444531, + 45.467551 + ] + }, + "id": 861, + "properties": { + "id": "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", + "code": "32614", + "data": { + "stops": [ + { + "id": "2614", + "code": "32614", + "data": { + "gtfs": { + "stop_id": "2614", + "stop_code": "32614", + "stop_name": "av. Bienvenue et Brébeuf", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienvenue et Brébeuf", + "geography": { + "type": "Point", + "coordinates": [ + -73.4443615682821, + 45.4675230797196 + ] + } + }, + { + "id": "5073", + "code": "35073", + "data": { + "gtfs": { + "stop_id": "5073", + "stop_code": "35073", + "stop_name": "av. Bienvenue et Brébeuf", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienvenue et Brébeuf", + "geography": { + "type": "Point", + "coordinates": [ + -73.4447009813034, + 45.4675798846104 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5977810266196 + }, + "name": "av. Bienvenue et Brébeuf", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.444531275, + 45.467551482 + ] + }, + "is_frozen": false, + "integer_id": 861, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450945, + 45.468907 + ] + }, + "id": 862, + "properties": { + "id": "c9664cb0-d2ee-485f-8261-b02c66f8f9aa", + "code": "32617", + "data": { + "stops": [ + { + "id": "2617", + "code": "32617", + "data": { + "gtfs": { + "stop_id": "2617", + "stop_code": "32617", + "stop_name": "av. Bienville et Bélair", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et Bélair", + "geography": { + "type": "Point", + "coordinates": [ + -73.4509448540504, + 45.4689073641207 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6206475338874 + }, + "name": "av. Bienville et Bélair", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450944854, + 45.468907364 + ] + }, + "is_frozen": false, + "integer_id": 862, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452119, + 45.46916 + ] + }, + "id": 863, + "properties": { + "id": "e3925175-d7e8-4440-80a1-64bd3d7d9b18", + "code": "32618", + "data": { + "stops": [ + { + "id": "2618", + "code": "32618", + "data": { + "gtfs": { + "stop_id": "2618", + "stop_code": "32618", + "stop_name": "av. Bienville et Bélair", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienville et Bélair", + "geography": { + "type": "Point", + "coordinates": [ + -73.4521188145461, + 45.4691598197987 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6249053021821 + }, + "name": "av. Bienville et Bélair", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452118815, + 45.46915982 + ] + }, + "is_frozen": false, + "integer_id": 863, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486295, + 45.480438 + ] + }, + "id": 864, + "properties": { + "id": "a9e9d254-0411-40ff-8540-2c41b97aa285", + "code": "32629", + "data": { + "stops": [ + { + "id": "2629", + "code": "32629", + "data": { + "gtfs": { + "stop_id": "2629", + "stop_code": "32629", + "stop_name": "du Dauphiné et av. du Finistère", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Dauphiné et av. du Finistère", + "geography": { + "type": "Point", + "coordinates": [ + -73.4862235780256, + 45.4803829723706 + ] + } + }, + { + "id": "2647", + "code": "32647", + "data": { + "gtfs": { + "stop_id": "2647", + "stop_code": "32647", + "stop_name": "du Dauphiné et av. du Finistère", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Dauphiné et av. du Finistère", + "geography": { + "type": "Point", + "coordinates": [ + -73.4863671785879, + 45.4804935105585 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8151780009458 + }, + "name": "du Dauphiné et av. du Finistère", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486295378, + 45.480438241 + ] + }, + "is_frozen": false, + "integer_id": 864, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.488594, + 45.481207 + ] + }, + "id": 865, + "properties": { + "id": "b4a272ff-ad07-49f4-b3bf-37e38018a4d0", + "code": "32630", + "data": { + "stops": [ + { + "id": "2630", + "code": "32630", + "data": { + "gtfs": { + "stop_id": "2630", + "stop_code": "32630", + "stop_name": "du Dauphiné et av. des Pyrénées", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Dauphiné et av. des Pyrénées", + "geography": { + "type": "Point", + "coordinates": [ + -73.4884679480795, + 45.4812812192559 + ] + } + }, + { + "id": "3551", + "code": "33551", + "data": { + "gtfs": { + "stop_id": "3551", + "stop_code": "33551", + "stop_name": "du Dauphiné et av. des Pyrénées", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Dauphiné et av. des Pyrénées", + "geography": { + "type": "Point", + "coordinates": [ + -73.4887206123295, + 45.4811327698149 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8281513860991 + }, + "name": "du Dauphiné et av. des Pyrénées", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48859428, + 45.481206995 + ] + }, + "is_frozen": false, + "integer_id": 865, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490929, + 45.480805 + ] + }, + "id": 866, + "properties": { + "id": "8b87176c-4d30-4e5f-8750-8f2e6ea9737c", + "code": "32631", + "data": { + "stops": [ + { + "id": "2631", + "code": "32631", + "data": { + "gtfs": { + "stop_id": "2631", + "stop_code": "32631", + "stop_name": "du Dauphiné et av. du Béarn", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Dauphiné et av. du Béarn", + "geography": { + "type": "Point", + "coordinates": [ + -73.4906985313261, + 45.4808779800872 + ] + } + }, + { + "id": "2646", + "code": "32646", + "data": { + "gtfs": { + "stop_id": "2646", + "stop_code": "32646", + "stop_name": "av. du Béarn et du Dauphiné", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. du Béarn et du Dauphiné", + "geography": { + "type": "Point", + "coordinates": [ + -73.4911602722174, + 45.4807325529594 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8213718149535 + }, + "name": "du Dauphiné et av. du Béarn", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490929402, + 45.480805267 + ] + }, + "is_frozen": false, + "integer_id": 866, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492453, + 45.481908 + ] + }, + "id": 867, + "properties": { + "id": "c97bf2a0-4e35-4343-a821-fd37344059ce", + "code": "32632", + "data": { + "stops": [ + { + "id": "2632", + "code": "32632", + "data": { + "gtfs": { + "stop_id": "2632", + "stop_code": "32632", + "stop_name": "av. du Béarn et av. des Pyrénées", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. du Béarn et av. des Pyrénées", + "geography": { + "type": "Point", + "coordinates": [ + -73.4925090725875, + 45.4818687469304 + ] + } + }, + { + "id": "2645", + "code": "32645", + "data": { + "gtfs": { + "stop_id": "2645", + "stop_code": "32645", + "stop_name": "av. du Béarn et av. des Pyrénées", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. du Béarn et av. des Pyrénées", + "geography": { + "type": "Point", + "coordinates": [ + -73.4923960123941, + 45.4819464924855 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8399754932168 + }, + "name": "av. du Béarn et av. des Pyrénées", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492452542, + 45.48190762 + ] + }, + "is_frozen": false, + "integer_id": 867, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494727, + 45.48215 + ] + }, + "id": 868, + "properties": { + "id": "d0834662-f361-47c8-897d-090ca396cc80", + "code": "32633", + "data": { + "stops": [ + { + "id": "2633", + "code": "32633", + "data": { + "gtfs": { + "stop_id": "2633", + "stop_code": "32633", + "stop_name": "av. du Béarn et de Bourgogne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. du Béarn et de Bourgogne", + "geography": { + "type": "Point", + "coordinates": [ + -73.494600967006, + 45.4821995179985 + ] + } + }, + { + "id": "2644", + "code": "32644", + "data": { + "gtfs": { + "stop_id": "2644", + "stop_code": "32644", + "stop_name": "av. du Béarn et de Bourgogne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. du Béarn et de Bourgogne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4948520950827, + 45.4821005455957 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8440666641391 + }, + "name": "av. du Béarn et de Bourgogne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494726531, + 45.482150032 + ] + }, + "is_frozen": false, + "integer_id": 868, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.496361, + 45.481832 + ] + }, + "id": 869, + "properties": { + "id": "197613c4-818a-45ed-a120-7c785862199b", + "code": "32634", + "data": { + "stops": [ + { + "id": "2634", + "code": "32634", + "data": { + "gtfs": { + "stop_id": "2634", + "stop_code": "32634", + "stop_name": "av. du Béarn et av. de Charente", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. du Béarn et av. de Charente", + "geography": { + "type": "Point", + "coordinates": [ + -73.4963058583624, + 45.4819334401034 + ] + } + }, + { + "id": "2643", + "code": "32643", + "data": { + "gtfs": { + "stop_id": "2643", + "stop_code": "32643", + "stop_name": "av. du Béarn et av. de Charente", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. du Béarn et av. de Charente", + "geography": { + "type": "Point", + "coordinates": [ + -73.4964164779093, + 45.4817297741969 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8386926377148 + }, + "name": "av. du Béarn et av. de Charente", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.496361168, + 45.481831607 + ] + }, + "is_frozen": false, + "integer_id": 869, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.498097, + 45.481583 + ] + }, + "id": 870, + "properties": { + "id": "2f1abb54-e47c-4c4c-bf29-58794c82c9d7", + "code": "32635", + "data": { + "stops": [ + { + "id": "2635", + "code": "32635", + "data": { + "gtfs": { + "stop_id": "2635", + "stop_code": "32635", + "stop_name": "av. du Béarn et de Gascogne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. du Béarn et de Gascogne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4979445367806, + 45.4815202421828 + ] + } + }, + { + "id": "2642", + "code": "32642", + "data": { + "gtfs": { + "stop_id": "2642", + "stop_code": "32642", + "stop_name": "av. du Béarn et de Gascogne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. du Béarn et de Gascogne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4982503333622, + 45.481646225775 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8345009343462 + }, + "name": "av. du Béarn et de Gascogne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.498097435, + 45.481583234 + ] + }, + "is_frozen": false, + "integer_id": 870, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.501755, + 45.481857 + ] + }, + "id": 871, + "properties": { + "id": "ab2d66e0-27d7-4818-8e33-267927ea3fe2", + "code": "32636", + "data": { + "stops": [ + { + "id": "2636", + "code": "32636", + "data": { + "gtfs": { + "stop_id": "2636", + "stop_code": "32636", + "stop_name": "av. du Béarn et du Languedoc", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. du Béarn et du Languedoc", + "geography": { + "type": "Point", + "coordinates": [ + -73.5016007413971, + 45.481680003694 + ] + } + }, + { + "id": "2641", + "code": "32641", + "data": { + "gtfs": { + "stop_id": "2641", + "stop_code": "32641", + "stop_name": "du Languedoc et av. du Béarn", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Languedoc et av. du Béarn", + "geography": { + "type": "Point", + "coordinates": [ + -73.5019091756929, + 45.4820331571641 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.839114101246 + }, + "name": "av. du Béarn et du Languedoc", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.501754959, + 45.48185658 + ] + }, + "is_frozen": false, + "integer_id": 871, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.501781, + 45.482907 + ] + }, + "id": 872, + "properties": { + "id": "4f2dd8ac-70e9-487b-b0af-329673c88b03", + "code": "32637", + "data": { + "stops": [ + { + "id": "2637", + "code": "32637", + "data": { + "gtfs": { + "stop_id": "2637", + "stop_code": "32637", + "stop_name": "du Languedoc et av. de Normandie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Languedoc et av. de Normandie", + "geography": { + "type": "Point", + "coordinates": [ + -73.5016757486075, + 45.4828160270975 + ] + } + }, + { + "id": "2640", + "code": "32640", + "data": { + "gtfs": { + "stop_id": "2640", + "stop_code": "32640", + "stop_name": "av. de Normandie et du Languedoc", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. de Normandie et du Languedoc", + "geography": { + "type": "Point", + "coordinates": [ + -73.5018865574886, + 45.4829988626623 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8568498086179 + }, + "name": "du Languedoc et av. de Normandie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.501781153, + 45.482907445 + ] + }, + "is_frozen": false, + "integer_id": 872, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486375, + 45.47908 + ] + }, + "id": 873, + "properties": { + "id": "dfda995e-8686-4f89-a9b1-4109795a27c3", + "code": "32648", + "data": { + "stops": [ + { + "id": "2648", + "code": "32648", + "data": { + "gtfs": { + "stop_id": "2648", + "stop_code": "32648", + "stop_name": "du Dauphiné et boul. Simard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Dauphiné et boul. Simard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4864255104446, + 45.4791978498435 + ] + } + }, + { + "id": "3720", + "code": "33720", + "data": { + "gtfs": { + "stop_id": "3720", + "stop_code": "33720", + "stop_name": "boul. Simard et boul. Plamondon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Simard et boul. Plamondon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4866353960653, + 45.4789623630841 + ] + } + }, + { + "id": "3721", + "code": "33721", + "data": { + "gtfs": { + "stop_id": "3721", + "stop_code": "33721", + "stop_name": "boul. Simard et du Dauphiné", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Simard et du Dauphiné", + "geography": { + "type": "Point", + "coordinates": [ + -73.4861144399533, + 45.4791398560206 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7922595878216 + }, + "name": "du Dauphiné et boul. Simard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486374918, + 45.479080106 + ] + }, + "is_frozen": false, + "integer_id": 873, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491564, + 45.546182 + ] + }, + "id": 874, + "properties": { + "id": "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", + "code": "32649", + "data": { + "stops": [ + { + "id": "2649", + "code": "32649", + "data": { + "gtfs": { + "stop_id": "2649", + "stop_code": "32649", + "stop_name": "boul. Fernand-Lafontaine et boul. Roland-Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et boul. Roland-Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4915642089071, + 45.5461816912939 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9265560502773 + }, + "name": "boul. Fernand-Lafontaine et boul. Roland-Therrien", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491564209, + 45.546181691 + ] + }, + "is_frozen": false, + "integer_id": 874, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.485968, + 45.463555 + ] + }, + "id": 875, + "properties": { + "id": "1339471a-52fa-47e9-b0e4-753bf917ef08", + "code": "32654", + "data": { + "stops": [ + { + "id": "2654", + "code": "32654", + "data": { + "gtfs": { + "stop_id": "2654", + "stop_code": "32654", + "stop_name": "av. Tisserand et croiss. Turgeon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et croiss. Turgeon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4860429788422, + 45.4635930305832 + ] + } + }, + { + "id": "3831", + "code": "33831", + "data": { + "gtfs": { + "stop_id": "3831", + "stop_code": "33831", + "stop_name": "av. Tisserand et croiss. Turgeon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et croiss. Turgeon", + "geography": { + "type": "Point", + "coordinates": [ + -73.485893801995, + 45.4635170730784 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5303920352568 + }, + "name": "av. Tisserand et croiss. Turgeon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48596839, + 45.463555052 + ] + }, + "is_frozen": false, + "integer_id": 875, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.488671, + 45.461503 + ] + }, + "id": 876, + "properties": { + "id": "9c711698-0f65-4997-8a72-24f5d8ab8fb7", + "code": "32655", + "data": { + "stops": [ + { + "id": "2655", + "code": "32655", + "data": { + "gtfs": { + "stop_id": "2655", + "stop_code": "32655", + "stop_name": "av. Tisserand et av. Thérèse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et av. Thérèse", + "geography": { + "type": "Point", + "coordinates": [ + -73.4887583486341, + 45.461595749849 + ] + } + }, + { + "id": "2723", + "code": "32723", + "data": { + "gtfs": { + "stop_id": "2723", + "stop_code": "32723", + "stop_name": "av. Tisserand et av. Thérèse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et av. Thérèse", + "geography": { + "type": "Point", + "coordinates": [ + -73.4885834726749, + 45.4614112156451 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4958033759837 + }, + "name": "av. Tisserand et av. Thérèse", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.488670911, + 45.461503483 + ] + }, + "is_frozen": false, + "integer_id": 876, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.488829, + 45.459151 + ] + }, + "id": 877, + "properties": { + "id": "5a6d8067-b58d-4ab2-838e-422e8f003ee9", + "code": "32656", + "data": { + "stops": [ + { + "id": "2656", + "code": "32656", + "data": { + "gtfs": { + "stop_id": "2656", + "stop_code": "32656", + "stop_name": "av. Tisserand et place Thomas", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et place Thomas", + "geography": { + "type": "Point", + "coordinates": [ + -73.4889090952116, + 45.4593333623116 + ] + } + }, + { + "id": "2722", + "code": "32722", + "data": { + "gtfs": { + "stop_id": "2722", + "stop_code": "32722", + "stop_name": "av. Tisserand et place Thomas", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et place Thomas", + "geography": { + "type": "Point", + "coordinates": [ + -73.4887494369243, + 45.4589677619509 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4561386377532 + }, + "name": "av. Tisserand et place Thomas", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.488829266, + 45.459150562 + ] + }, + "is_frozen": false, + "integer_id": 877, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.489795, + 45.457508 + ] + }, + "id": 878, + "properties": { + "id": "e20e768c-bd5a-43fd-8842-af2717d6cb09", + "code": "32657", + "data": { + "stops": [ + { + "id": "2657", + "code": "32657", + "data": { + "gtfs": { + "stop_id": "2657", + "stop_code": "32657", + "stop_name": "av. Tisserand et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4897949853112, + 45.45750793072 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4284506379117 + }, + "name": "av. Tisserand et boul. de Rome", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.489794985, + 45.457507931 + ] + }, + "is_frozen": false, + "integer_id": 878, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456836, + 45.451747 + ] + }, + "id": 879, + "properties": { + "id": "242dd95d-36af-4ef6-b5c1-b4ed26c41804", + "code": "32659", + "data": { + "stops": [ + { + "id": "2659", + "code": "32659", + "data": { + "gtfs": { + "stop_id": "2659", + "stop_code": "32659", + "stop_name": "boul. Milan et av. Mirabeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Mirabeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4565788031788, + 45.4520104804466 + ] + } + }, + { + "id": "3789", + "code": "33789", + "data": { + "gtfs": { + "stop_id": "3789", + "stop_code": "33789", + "stop_name": "boul. de Rome et boul. Milan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et boul. Milan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4570924866552, + 45.4514830783342 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3313602430637 + }, + "name": "boul. Milan et av. Mirabeau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456835645, + 45.451746779 + ] + }, + "is_frozen": false, + "integer_id": 879, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455854, + 45.453019 + ] + }, + "id": 880, + "properties": { + "id": "59b4f87c-067e-4dc3-856a-07fb245d4fe3", + "code": "32660", + "data": { + "stops": [ + { + "id": "2660", + "code": "32660", + "data": { + "gtfs": { + "stop_id": "2660", + "stop_code": "32660", + "stop_name": "boul. Milan et Meilleur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et Meilleur", + "geography": { + "type": "Point", + "coordinates": [ + -73.4557378534538, + 45.4528806015834 + ] + } + }, + { + "id": "3450", + "code": "33450", + "data": { + "gtfs": { + "stop_id": "3450", + "stop_code": "33450", + "stop_name": "boul. Milan et Meilleur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et Meilleur", + "geography": { + "type": "Point", + "coordinates": [ + -73.455969936179, + 45.4531575430189 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3527991557864 + }, + "name": "boul. Milan et Meilleur", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455853895, + 45.453019072 + ] + }, + "is_frozen": false, + "integer_id": 880, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455089, + 45.454774 + ] + }, + "id": 881, + "properties": { + "id": "c77e59d9-5075-4e39-a183-6bacc1afd03e", + "code": "32661", + "data": { + "stops": [ + { + "id": "2661", + "code": "32661", + "data": { + "gtfs": { + "stop_id": "2661", + "stop_code": "32661", + "stop_name": "boul. Milan et av. Maupassant", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Maupassant", + "geography": { + "type": "Point", + "coordinates": [ + -73.454929804599, + 45.4546361123407 + ] + } + }, + { + "id": "3830", + "code": "33830", + "data": { + "gtfs": { + "stop_id": "3830", + "stop_code": "33830", + "stop_name": "boul. Milan et av. Maupassant", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Maupassant", + "geography": { + "type": "Point", + "coordinates": [ + -73.4552477791183, + 45.4549119714012 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3823738266933 + }, + "name": "boul. Milan et av. Maupassant", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455088792, + 45.454774042 + ] + }, + "is_frozen": false, + "integer_id": 881, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457158, + 45.460365 + ] + }, + "id": 882, + "properties": { + "id": "3b708726-0db1-43de-b014-b11ddc9fc24a", + "code": "32662", + "data": { + "stops": [ + { + "id": "2662", + "code": "32662", + "data": { + "gtfs": { + "stop_id": "2662", + "stop_code": "32662", + "stop_name": "boul. Milan et Marlequin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et Marlequin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4571580076182, + 45.4603651824173 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.476613673145 + }, + "name": "boul. Milan et Marlequin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457158008, + 45.460365182 + ] + }, + "is_frozen": false, + "integer_id": 882, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457395, + 45.462069 + ] + }, + "id": 883, + "properties": { + "id": "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", + "code": "32663", + "data": { + "stops": [ + { + "id": "2663", + "code": "32663", + "data": { + "gtfs": { + "stop_id": "2663", + "stop_code": "32663", + "stop_name": "boul. Milan et av. Malo", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Malo", + "geography": { + "type": "Point", + "coordinates": [ + -73.4575131442153, + 45.4619539672354 + ] + } + }, + { + "id": "3456", + "code": "33456", + "data": { + "gtfs": { + "stop_id": "3456", + "stop_code": "33456", + "stop_name": "av. Malo et boul. Milan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et boul. Milan", + "geography": { + "type": "Point", + "coordinates": [ + -73.457406018148, + 45.4621231953329 + ] + } + }, + { + "id": "4266", + "code": "34266", + "data": { + "gtfs": { + "stop_id": "4266", + "stop_code": "34266", + "stop_name": "boul. Milan et av. Malo", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Malo", + "geography": { + "type": "Point", + "coordinates": [ + -73.4577470955302, + 45.4622422020233 + ] + } + }, + { + "id": "5150", + "code": "35150", + "data": { + "gtfs": { + "stop_id": "5150", + "stop_code": "35150", + "stop_name": "av. Malo et boul. Milan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et boul. Milan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4579148611303, + 45.4620293649638 + ] + } + }, + { + "id": "5341", + "code": "30079", + "data": { + "gtfs": { + "stop_id": "5341", + "stop_code": "30079", + "stop_name": "av. Malo et Michel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et Michel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4568747201384, + 45.4618951126914 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.505331618037 + }, + "name": "boul. Milan et av. Malo", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457394791, + 45.462068657 + ] + }, + "is_frozen": false, + "integer_id": 883, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440954, + 45.472882 + ] + }, + "id": 884, + "properties": { + "id": "c8919560-2bb2-4063-8184-8e6c296badbe", + "code": "32668", + "data": { + "stops": [ + { + "id": "2668", + "code": "32668", + "data": { + "gtfs": { + "stop_id": "2668", + "stop_code": "32668", + "stop_name": "boul. Milan et boul. Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et boul. Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4409544574369, + 45.4728817022767 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.68768285301 + }, + "name": "boul. Milan et boul. Grande Allée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440954457, + 45.472881702 + ] + }, + "is_frozen": false, + "integer_id": 884, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.438221, + 45.474399 + ] + }, + "id": 885, + "properties": { + "id": "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", + "code": "32670", + "data": { + "stops": [ + { + "id": "2670", + "code": "32670", + "data": { + "gtfs": { + "stop_id": "2670", + "stop_code": "32670", + "stop_name": "boul. Gaétan-Boucher et civique 5395", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et civique 5395", + "geography": { + "type": "Point", + "coordinates": [ + -73.4382214514704, + 45.4743987867356 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7132752865119 + }, + "name": "boul. Gaétan-Boucher et civique 5395", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438221451, + 45.474398787 + ] + }, + "is_frozen": false, + "integer_id": 885, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.435234, + 45.475508 + ] + }, + "id": 886, + "properties": { + "id": "126ef269-cdfb-4230-9d48-8082f5180c1a", + "code": "32671", + "data": { + "stops": [ + { + "id": "2671", + "code": "32671", + "data": { + "gtfs": { + "stop_id": "2671", + "stop_code": "32671", + "stop_name": "boul. Gaétan-Boucher et av. Beauregard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et av. Beauregard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4353297715699, + 45.4753558954354 + ] + } + }, + { + "id": "2702", + "code": "32702", + "data": { + "gtfs": { + "stop_id": "2702", + "stop_code": "32702", + "stop_name": "boul. Gaétan-Boucher et av. Beauregard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et av. Beauregard", + "geography": { + "type": "Point", + "coordinates": [ + -73.435138774054, + 45.4756593047683 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7319816773094 + }, + "name": "boul. Gaétan-Boucher et av. Beauregard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.435234273, + 45.4755076 + ] + }, + "is_frozen": false, + "integer_id": 886, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.430414, + 45.476621 + ] + }, + "id": 887, + "properties": { + "id": "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", + "code": "32672", + "data": { + "stops": [ + { + "id": "2672", + "code": "32672", + "data": { + "gtfs": { + "stop_id": "2672", + "stop_code": "32672", + "stop_name": "boul. Gaétan-Boucher et boul. Payer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et boul. Payer", + "geography": { + "type": "Point", + "coordinates": [ + -73.4304138387388, + 45.4766209174801 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7507651523907 + }, + "name": "boul. Gaétan-Boucher et boul. Payer", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.430413839, + 45.476620917 + ] + }, + "is_frozen": false, + "integer_id": 887, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.427035, + 45.477697 + ] + }, + "id": 888, + "properties": { + "id": "0e293c4f-51c2-4ecd-9469-442389cb7915", + "code": "32673", + "data": { + "stops": [ + { + "id": "2673", + "code": "32673", + "data": { + "gtfs": { + "stop_id": "2673", + "stop_code": "32673", + "stop_name": "boul. Gaétan-Boucher et av. Normand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et av. Normand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4271185590031, + 45.4775196878036 + ] + } + }, + { + "id": "2700", + "code": "32700", + "data": { + "gtfs": { + "stop_id": "2700", + "stop_code": "32700", + "stop_name": "boul. Gaétan-Boucher et av. Normand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et av. Normand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4269514207225, + 45.4778750206257 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7689274487618 + }, + "name": "boul. Gaétan-Boucher et av. Normand", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.42703499, + 45.477697354 + ] + }, + "is_frozen": false, + "integer_id": 888, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.423476, + 45.479662 + ] + }, + "id": 889, + "properties": { + "id": "e865e27f-7453-42b2-9745-a8e5425a0276", + "code": "32674", + "data": { + "stops": [ + { + "id": "2674", + "code": "32674", + "data": { + "gtfs": { + "stop_id": "2674", + "stop_code": "32674", + "stop_name": "boul. Gaétan-Boucher et av. Grenier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et av. Grenier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4234541710989, + 45.4795069128674 + ] + } + }, + { + "id": "2699", + "code": "32699", + "data": { + "gtfs": { + "stop_id": "2699", + "stop_code": "32699", + "stop_name": "boul. Gaétan-Boucher et av. Grenier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et av. Grenier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4234969904717, + 45.4798163862481 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8020728929181 + }, + "name": "boul. Gaétan-Boucher et av. Grenier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.423475581, + 45.47966165 + ] + }, + "is_frozen": false, + "integer_id": 889, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.420944, + 45.481319 + ] + }, + "id": 890, + "properties": { + "id": "f7218298-f862-4f68-aabe-7a0d51011bc1", + "code": "32675", + "data": { + "stops": [ + { + "id": "2675", + "code": "32675", + "data": { + "gtfs": { + "stop_id": "2675", + "stop_code": "32675", + "stop_name": "boul. Gaétan-Boucher et av. Brabant", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et av. Brabant", + "geography": { + "type": "Point", + "coordinates": [ + -73.4210748680566, + 45.4812674606405 + ] + } + }, + { + "id": "2838", + "code": "32838", + "data": { + "gtfs": { + "stop_id": "2838", + "stop_code": "32838", + "stop_name": "av. Brabant et boul. Gaétan-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Brabant et boul. Gaétan-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4208124439787, + 45.4813697859318 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8300352483075 + }, + "name": "boul. Gaétan-Boucher et av. Brabant", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.420943656, + 45.481318623 + ] + }, + "is_frozen": false, + "integer_id": 890, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.417436, + 45.483981 + ] + }, + "id": 891, + "properties": { + "id": "7f82f5fb-e61e-43a9-957c-0c400fd3ecbd", + "code": "32676", + "data": { + "stops": [ + { + "id": "2676", + "code": "32676", + "data": { + "gtfs": { + "stop_id": "2676", + "stop_code": "32676", + "stop_name": "boul. Gaétan-Boucher et av. Sidney", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et av. Sidney", + "geography": { + "type": "Point", + "coordinates": [ + -73.4174363778569, + 45.4839813140543 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.874974774151 + }, + "name": "boul. Gaétan-Boucher et av. Sidney", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.417436378, + 45.483981314 + ] + }, + "is_frozen": false, + "integer_id": 891, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.415585, + 45.485669 + ] + }, + "id": 892, + "properties": { + "id": "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", + "code": "32677", + "data": { + "stops": [ + { + "id": "2677", + "code": "32677", + "data": { + "gtfs": { + "stop_id": "2677", + "stop_code": "32677", + "stop_name": "boul. Gaétan-Boucher et civique 3781", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et civique 3781", + "geography": { + "type": "Point", + "coordinates": [ + -73.4154693526488, + 45.4855850178466 + ] + } + }, + { + "id": "2696", + "code": "32696", + "data": { + "gtfs": { + "stop_id": "2696", + "stop_code": "32696", + "stop_name": "boul. Gaétan-Boucher et civique 3740", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et civique 3740", + "geography": { + "type": "Point", + "coordinates": [ + -73.4157001526865, + 45.4857524220475 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9034572048582 + }, + "name": "boul. Gaétan-Boucher et civique 3781", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.415584753, + 45.48566872 + ] + }, + "is_frozen": false, + "integer_id": 892, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.406716, + 45.493656 + ] + }, + "id": 893, + "properties": { + "id": "df4c6e14-8093-4f02-87d3-4b3d84466b04", + "code": "32679", + "data": { + "stops": [ + { + "id": "2679", + "code": "32679", + "data": { + "gtfs": { + "stop_id": "2679", + "stop_code": "32679", + "stop_name": "boul. Cousineau et LES PROMENADES DU PARC", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et LES PROMENADES DU PARC", + "geography": { + "type": "Point", + "coordinates": [ + -73.4067157745716, + 45.4936555749077 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0383050150227 + }, + "name": "boul. Cousineau et LES PROMENADES DU PARC", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.406715775, + 45.493655575 + ] + }, + "is_frozen": false, + "integer_id": 893, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.402534, + 45.491816 + ] + }, + "id": 894, + "properties": { + "id": "7c34d8fb-52d2-4cf7-8954-ff69847540ac", + "code": "32680", + "data": { + "stops": [ + { + "id": "2680", + "code": "32680", + "data": { + "gtfs": { + "stop_id": "2680", + "stop_code": "32680", + "stop_name": "boul. Cousineau et boul. Jacques-Marcil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et boul. Jacques-Marcil", + "geography": { + "type": "Point", + "coordinates": [ + -73.4028552363243, + 45.4918121962574 + ] + } + }, + { + "id": "4836", + "code": "34836", + "data": { + "gtfs": { + "stop_id": "4836", + "stop_code": "34836", + "stop_name": "boul. Cousineau et boul. Jacques-Marcil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et boul. Jacques-Marcil", + "geography": { + "type": "Point", + "coordinates": [ + -73.402212202487, + 45.4918205938487 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0072477907835 + }, + "name": "boul. Cousineau et boul. Jacques-Marcil", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.402533719, + 45.491816395 + ] + }, + "is_frozen": false, + "integer_id": 894, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.398603, + 45.488211 + ] + }, + "id": 895, + "properties": { + "id": "54d47023-e112-40d5-b44e-eafc96f238ef", + "code": "32681", + "data": { + "stops": [ + { + "id": "2681", + "code": "32681", + "data": { + "gtfs": { + "stop_id": "2681", + "stop_code": "32681", + "stop_name": "boul. Cousineau et Pierre-Thomas-Hurteau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Pierre-Thomas-Hurteau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3988669520354, + 45.488233334413 + ] + } + }, + { + "id": "2695", + "code": "32695", + "data": { + "gtfs": { + "stop_id": "2695", + "stop_code": "32695", + "stop_name": "boul. Cousineau et Cornwall", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Cornwall", + "geography": { + "type": "Point", + "coordinates": [ + -73.3983385147163, + 45.4881878730701 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.946367505085 + }, + "name": "boul. Cousineau et Pierre-Thomas-Hurteau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.398602733, + 45.488210604 + ] + }, + "is_frozen": false, + "integer_id": 895, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.3944, + 45.484164 + ] + }, + "id": 896, + "properties": { + "id": "9f7ffafe-2aab-4507-b571-cce792adfb7d", + "code": "32682", + "data": { + "stops": [ + { + "id": "2682", + "code": "32682", + "data": { + "gtfs": { + "stop_id": "2682", + "stop_code": "32682", + "stop_name": "boul. Cousineau et Ovila-Hamel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Ovila-Hamel", + "geography": { + "type": "Point", + "coordinates": [ + -73.3947338530318, + 45.4841889953117 + ] + } + }, + { + "id": "4168", + "code": "34168", + "data": { + "gtfs": { + "stop_id": "4168", + "stop_code": "34168", + "stop_name": "boul. Cousineau et Ovila-Hamel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Ovila-Hamel", + "geography": { + "type": "Point", + "coordinates": [ + -73.3940660745209, + 45.4841395739302 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.878063095744 + }, + "name": "boul. Cousineau et Ovila-Hamel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.394399964, + 45.484164285 + ] + }, + "is_frozen": false, + "integer_id": 896, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.396695, + 45.482506 + ] + }, + "id": 897, + "properties": { + "id": "968b7b22-34c3-4022-8ddb-f9483ac7dca5", + "code": "32683", + "data": { + "stops": [ + { + "id": "2683", + "code": "32683", + "data": { + "gtfs": { + "stop_id": "2683", + "stop_code": "32683", + "stop_name": "Ovila-Hamel et des Roses", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ovila-Hamel et des Roses", + "geography": { + "type": "Point", + "coordinates": [ + -73.3967203660109, + 45.4825968148945 + ] + } + }, + { + "id": "2692", + "code": "32692", + "data": { + "gtfs": { + "stop_id": "2692", + "stop_code": "32692", + "stop_name": "Ovila-Hamel et des Roses", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ovila-Hamel et des Roses", + "geography": { + "type": "Point", + "coordinates": [ + -73.3966699478607, + 45.4824149076619 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8500720606927 + }, + "name": "Ovila-Hamel et des Roses", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.396695157, + 45.482505861 + ] + }, + "is_frozen": false, + "integer_id": 897, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.398932, + 45.481635 + ] + }, + "id": 898, + "properties": { + "id": "b50ae6c0-de25-4d7f-a9d6-e6512b40be80", + "code": "32684", + "data": { + "stops": [ + { + "id": "2684", + "code": "32684", + "data": { + "gtfs": { + "stop_id": "2684", + "stop_code": "32684", + "stop_name": "Ovila-Hamel et Richard-Hogen", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ovila-Hamel et Richard-Hogen", + "geography": { + "type": "Point", + "coordinates": [ + -73.3989649750624, + 45.4816887635798 + ] + } + }, + { + "id": "2691", + "code": "32691", + "data": { + "gtfs": { + "stop_id": "2691", + "stop_code": "32691", + "stop_name": "Ovila-Hamel et des Jacinthes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ovila-Hamel et des Jacinthes", + "geography": { + "type": "Point", + "coordinates": [ + -73.3988983994674, + 45.4815806637127 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8353697396138 + }, + "name": "Ovila-Hamel et Richard-Hogen", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.398931687, + 45.481634714 + ] + }, + "is_frozen": false, + "integer_id": 898, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.401372, + 45.481645 + ] + }, + "id": 899, + "properties": { + "id": "df277747-60c8-4b3b-bafb-24f50e6b7964", + "code": "32685", + "data": { + "stops": [ + { + "id": "2685", + "code": "32685", + "data": { + "gtfs": { + "stop_id": "2685", + "stop_code": "32685", + "stop_name": "Ovila-Hamel et Pierre-Thomas-Hurteau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ovila-Hamel et Pierre-Thomas-Hurteau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4011581116707, + 45.4816169732216 + ] + } + }, + { + "id": "2690", + "code": "32690", + "data": { + "gtfs": { + "stop_id": "2690", + "stop_code": "32690", + "stop_name": "Pierre-Thomas-Hurteau et Ovila-Hamel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pierre-Thomas-Hurteau et Ovila-Hamel", + "geography": { + "type": "Point", + "coordinates": [ + -73.401472785354, + 45.48180171359 + ] + } + }, + { + "id": "5113", + "code": "35113", + "data": { + "gtfs": { + "stop_id": "5113", + "stop_code": "35113", + "stop_name": "Ovila-Hamel et Pierre-Thomas-Hurteau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ovila-Hamel et Pierre-Thomas-Hurteau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4015862155154, + 45.4814883480676 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8355438553583 + }, + "name": "Ovila-Hamel et Pierre-Thomas-Hurteau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.401372164, + 45.481645031 + ] + }, + "is_frozen": false, + "integer_id": 899, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.401275, + 45.484504 + ] + }, + "id": 900, + "properties": { + "id": "2d9ef136-ec60-4019-bd4d-d2df55cc0477", + "code": "32686", + "data": { + "stops": [ + { + "id": "2686", + "code": "32686", + "data": { + "gtfs": { + "stop_id": "2686", + "stop_code": "32686", + "stop_name": "Pierre-Thomas-Hurteau et des Orchidées", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pierre-Thomas-Hurteau et des Orchidées", + "geography": { + "type": "Point", + "coordinates": [ + -73.4011846483267, + 45.4844061730077 + ] + } + }, + { + "id": "4284", + "code": "34284", + "data": { + "gtfs": { + "stop_id": "4284", + "stop_code": "34284", + "stop_name": "Pierre-Thomas-Hurteau et des Orchidées", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pierre-Thomas-Hurteau et des Orchidées", + "geography": { + "type": "Point", + "coordinates": [ + -73.4013647267878, + 45.4846021873207 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.883800177139 + }, + "name": "Pierre-Thomas-Hurteau et des Orchidées", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.401274688, + 45.48450418 + ] + }, + "is_frozen": false, + "integer_id": 900, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.400225, + 45.48597 + ] + }, + "id": 901, + "properties": { + "id": "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6", + "code": "32687", + "data": { + "stops": [ + { + "id": "2687", + "code": "32687", + "data": { + "gtfs": { + "stop_id": "2687", + "stop_code": "32687", + "stop_name": "Pierre-Thomas-Hurteau et des Coquelicots", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pierre-Thomas-Hurteau et des Coquelicots", + "geography": { + "type": "Point", + "coordinates": [ + -73.400224740371, + 45.4861333890855 + ] + } + }, + { + "id": "2688", + "code": "32688", + "data": { + "gtfs": { + "stop_id": "2688", + "stop_code": "32688", + "stop_name": "Pierre-Thomas-Hurteau et Louis-Hébert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pierre-Thomas-Hurteau et Louis-Hébert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4002250253988, + 45.4858059867579 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.908537635432 + }, + "name": "Pierre-Thomas-Hurteau et des Coquelicots", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.400224883, + 45.485969688 + ] + }, + "is_frozen": false, + "integer_id": 901, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.394874, + 45.483755 + ] + }, + "id": 902, + "properties": { + "id": "33e21d89-c421-4efc-9bcf-2137e1092e00", + "code": "32693", + "data": { + "stops": [ + { + "id": "2693", + "code": "32693", + "data": { + "gtfs": { + "stop_id": "2693", + "stop_code": "32693", + "stop_name": "Ovila-Hamel et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ovila-Hamel et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3948744904862, + 45.4837554953068 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8711632729458 + }, + "name": "Ovila-Hamel et boul. Cousineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.39487449, + 45.483755495 + ] + }, + "is_frozen": false, + "integer_id": 902, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.396138, + 45.485951 + ] + }, + "id": 903, + "properties": { + "id": "819870cc-ffb6-4a2a-add6-5b056cc3e4c0", + "code": "32694", + "data": { + "stops": [ + { + "id": "2694", + "code": "32694", + "data": { + "gtfs": { + "stop_id": "2694", + "stop_code": "32694", + "stop_name": "boul. Cousineau et Joseph-Hardy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Joseph-Hardy", + "geography": { + "type": "Point", + "coordinates": [ + -73.3961376180779, + 45.4859510546509 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9082231024363 + }, + "name": "boul. Cousineau et Joseph-Hardy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.396137618, + 45.485951055 + ] + }, + "is_frozen": false, + "integer_id": 903, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.417957, + 45.483707 + ] + }, + "id": 904, + "properties": { + "id": "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", + "code": "32697", + "data": { + "stops": [ + { + "id": "2697", + "code": "32697", + "data": { + "gtfs": { + "stop_id": "2697", + "stop_code": "32697", + "stop_name": "boul. Gaétan-Boucher et av. Sidney", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et av. Sidney", + "geography": { + "type": "Point", + "coordinates": [ + -73.4178659598774, + 45.4839869544312 + ] + } + }, + { + "id": "2839", + "code": "32839", + "data": { + "gtfs": { + "stop_id": "2839", + "stop_code": "32839", + "stop_name": "av. Sidney et boul. Gaétan-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Sidney et boul. Gaétan-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4176208476545, + 45.4834261819046 + ] + } + }, + { + "id": "2854", + "code": "32854", + "data": { + "gtfs": { + "stop_id": "2854", + "stop_code": "32854", + "stop_name": "av. Sidney et boul. Gaétan-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Sidney et boul. Gaétan-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.418294149449, + 45.4838621343139 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8703374612542 + }, + "name": "boul. Gaétan-Boucher et av. Sidney", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.417957499, + 45.483706568 + ] + }, + "is_frozen": false, + "integer_id": 904, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.421352, + 45.481834 + ] + }, + "id": 905, + "properties": { + "id": "8131cbf3-211d-4b69-adcb-9af688489a49", + "code": "32698", + "data": { + "stops": [ + { + "id": "2698", + "code": "32698", + "data": { + "gtfs": { + "stop_id": "2698", + "stop_code": "32698", + "stop_name": "boul. Gaétan-Boucher et av. Brabant", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et av. Brabant", + "geography": { + "type": "Point", + "coordinates": [ + -73.4211203500764, + 45.4815882144315 + ] + } + }, + { + "id": "4115", + "code": "34115", + "data": { + "gtfs": { + "stop_id": "4115", + "stop_code": "34115", + "stop_name": "av. Brabant et Forgues", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Brabant et Forgues", + "geography": { + "type": "Point", + "coordinates": [ + -73.4215829761117, + 45.4820804213892 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8387383906064 + }, + "name": "boul. Gaétan-Boucher et av. Brabant", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.421351663, + 45.481834318 + ] + }, + "is_frozen": false, + "integer_id": 905, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.438242, + 45.474665 + ] + }, + "id": 906, + "properties": { + "id": "46c30d80-c93e-497b-a096-3a7c13e3723f", + "code": "32703", + "data": { + "stops": [ + { + "id": "2703", + "code": "32703", + "data": { + "gtfs": { + "stop_id": "2703", + "stop_code": "32703", + "stop_name": "boul. Gaétan-Boucher et civique 5385", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et civique 5385", + "geography": { + "type": "Point", + "coordinates": [ + -73.4382424577388, + 45.4746647291395 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7177618000941 + }, + "name": "boul. Gaétan-Boucher et civique 5385", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438242458, + 45.474664729 + ] + }, + "is_frozen": false, + "integer_id": 906, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440596, + 45.473424 + ] + }, + "id": 907, + "properties": { + "id": "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", + "code": "32704", + "data": { + "stops": [ + { + "id": "2704", + "code": "32704", + "data": { + "gtfs": { + "stop_id": "2704", + "stop_code": "32704", + "stop_name": "boul. Gaétan-Boucher et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4405957796086, + 45.4734236133976 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6968243745215 + }, + "name": "boul. Gaétan-Boucher et Grande Allée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44059578, + 45.473423613 + ] + }, + "is_frozen": false, + "integer_id": 907, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44259, + 45.472085 + ] + }, + "id": 908, + "properties": { + "id": "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", + "code": "32705", + "data": { + "stops": [ + { + "id": "2705", + "code": "32705", + "data": { + "gtfs": { + "stop_id": "2705", + "stop_code": "32705", + "stop_name": "boul. Milan et av. Bienville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Bienville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4425898491683, + 45.4720854866682 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.674251938833 + }, + "name": "boul. Milan et av. Bienville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442589849, + 45.472085487 + ] + }, + "is_frozen": false, + "integer_id": 908, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.444392, + 45.470637 + ] + }, + "id": 909, + "properties": { + "id": "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", + "code": "32706", + "data": { + "stops": [ + { + "id": "2706", + "code": "32706", + "data": { + "gtfs": { + "stop_id": "2706", + "stop_code": "32706", + "stop_name": "boul. Milan et civique 5730", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et civique 5730", + "geography": { + "type": "Point", + "coordinates": [ + -73.4447670344434, + 45.4705505744192 + ] + } + }, + { + "id": "3559", + "code": "33559", + "data": { + "gtfs": { + "stop_id": "3559", + "stop_code": "33559", + "stop_name": "boul. Milan et civique 5745", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et civique 5745", + "geography": { + "type": "Point", + "coordinates": [ + -73.4440173260678, + 45.4707240826123 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.649825199095 + }, + "name": "boul. Milan et civique 5730", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44439218, + 45.470637329 + ] + }, + "is_frozen": false, + "integer_id": 909, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454504, + 45.464827 + ] + }, + "id": 910, + "properties": { + "id": "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", + "code": "32715", + "data": { + "stops": [ + { + "id": "2715", + "code": "32715", + "data": { + "gtfs": { + "stop_id": "2715", + "stop_code": "32715", + "stop_name": "av. Broadway et boul. Milan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Broadway et boul. Milan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4545742371679, + 45.4649705025044 + ] + } + }, + { + "id": "3614", + "code": "33614", + "data": { + "gtfs": { + "stop_id": "3614", + "stop_code": "33614", + "stop_name": "av. Broadway et av. Bernard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Broadway et av. Bernard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4544332124106, + 45.464684018975 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5518428633741 + }, + "name": "av. Broadway et boul. Milan", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454503725, + 45.464827261 + ] + }, + "is_frozen": false, + "integer_id": 910, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457872, + 45.461167 + ] + }, + "id": 911, + "properties": { + "id": "ac84633b-6f3b-458c-8f4e-099cc310c05e", + "code": "32716", + "data": { + "stops": [ + { + "id": "2716", + "code": "32716", + "data": { + "gtfs": { + "stop_id": "2716", + "stop_code": "32716", + "stop_name": "boul. Milan et av. Manon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Manon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4578721737568, + 45.4611669279854 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4901295456491 + }, + "name": "boul. Milan et av. Manon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457872174, + 45.461166928 + ] + }, + "is_frozen": false, + "integer_id": 911, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456356, + 45.45861 + ] + }, + "id": 912, + "properties": { + "id": "d271cca7-cd7a-4e22-8728-7a598b88fe32", + "code": "32717", + "data": { + "stops": [ + { + "id": "2717", + "code": "32717", + "data": { + "gtfs": { + "stop_id": "2717", + "stop_code": "32717", + "stop_name": "boul. Milan et av. Manon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Manon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4565846009427, + 45.4586541271617 + ] + } + }, + { + "id": "3582", + "code": "33582", + "data": { + "gtfs": { + "stop_id": "3582", + "stop_code": "33582", + "stop_name": "boul. Milan et av. Manon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Manon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4561267564758, + 45.4585657048318 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4470253064028 + }, + "name": "boul. Milan et av. Manon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456355679, + 45.458609916 + ] + }, + "is_frozen": false, + "integer_id": 912, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455722, + 45.457479 + ] + }, + "id": 913, + "properties": { + "id": "f5f0a75d-b9e9-4575-845b-09748935c6e0", + "code": "32718", + "data": { + "stops": [ + { + "id": "2718", + "code": "32718", + "data": { + "gtfs": { + "stop_id": "2718", + "stop_code": "32718", + "stop_name": "boul. Milan et av. Mirabeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Mirabeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.455896536693, + 45.4574393070298 + ] + } + }, + { + "id": "3583", + "code": "33583", + "data": { + "gtfs": { + "stop_id": "3583", + "stop_code": "33583", + "stop_name": "boul. Milan et av. Mirabeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Mirabeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4555472252319, + 45.457519642533 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4279710079362 + }, + "name": "boul. Milan et av. Mirabeau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455721881, + 45.457479475 + ] + }, + "is_frozen": false, + "integer_id": 913, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457572, + 45.451641 + ] + }, + "id": 914, + "properties": { + "id": "415dd3cb-19bd-4480-8604-528a4ab43f5e", + "code": "32720", + "data": { + "stops": [ + { + "id": "2720", + "code": "32720", + "data": { + "gtfs": { + "stop_id": "2720", + "stop_code": "32720", + "stop_name": "boul. Milan et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4573826477943, + 45.4517575398823 + ] + } + }, + { + "id": "4399", + "code": "34399", + "data": { + "gtfs": { + "stop_id": "4399", + "stop_code": "34399", + "stop_name": "boul. de Rome et boul. Milan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et boul. Milan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4577623311601, + 45.4515249686 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3295821469638 + }, + "name": "boul. Milan et boul. de Rome", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457572489, + 45.451641254 + ] + }, + "is_frozen": false, + "integer_id": 914, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461737, + 45.457384 + ] + }, + "id": 915, + "properties": { + "id": "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", + "code": "32727", + "data": { + "stops": [ + { + "id": "2727", + "code": "32727", + "data": { + "gtfs": { + "stop_id": "2727", + "stop_code": "32727", + "stop_name": "av. Malo et Malherbe", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et Malherbe", + "geography": { + "type": "Point", + "coordinates": [ + -73.4618622579721, + 45.457465447331 + ] + } + }, + { + "id": "2753", + "code": "32753", + "data": { + "gtfs": { + "stop_id": "2753", + "stop_code": "32753", + "stop_name": "av. Malo et Malherbe", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et Malherbe", + "geography": { + "type": "Point", + "coordinates": [ + -73.4616126181221, + 45.457303390664 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4263688305836 + }, + "name": "av. Malo et Malherbe", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461737438, + 45.457384419 + ] + }, + "is_frozen": false, + "integer_id": 915, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461868, + 45.45621 + ] + }, + "id": 916, + "properties": { + "id": "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", + "code": "32728", + "data": { + "stops": [ + { + "id": "2728", + "code": "32728", + "data": { + "gtfs": { + "stop_id": "2728", + "stop_code": "32728", + "stop_name": "av. Malo et Montmartre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et Montmartre", + "geography": { + "type": "Point", + "coordinates": [ + -73.461926521958, + 45.4563496543621 + ] + } + }, + { + "id": "2752", + "code": "32752", + "data": { + "gtfs": { + "stop_id": "2752", + "stop_code": "32752", + "stop_name": "av. Malo et Montmartre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et Montmartre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4618100381314, + 45.4560706618412 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4065772180437 + }, + "name": "av. Malo et Montmartre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46186828, + 45.456210158 + ] + }, + "is_frozen": false, + "integer_id": 916, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463483, + 45.451788 + ] + }, + "id": 917, + "properties": { + "id": "90d9bb0e-4845-468b-af33-21831922eede", + "code": "32730", + "data": { + "stops": [ + { + "id": "2730", + "code": "32730", + "data": { + "gtfs": { + "stop_id": "2730", + "stop_code": "32730", + "stop_name": "av. Naples et Nassau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Naples et Nassau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4634413051326, + 45.451954378234 + ] + } + }, + { + "id": "2750", + "code": "32750", + "data": { + "gtfs": { + "stop_id": "2750", + "stop_code": "32750", + "stop_name": "av. Naples et Nassau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Naples et Nassau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4635250878761, + 45.4516209912747 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3320495117619 + }, + "name": "av. Naples et Nassau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463483197, + 45.451787685 + ] + }, + "is_frozen": false, + "integer_id": 917, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464666, + 45.450682 + ] + }, + "id": 918, + "properties": { + "id": "d300031f-a642-4e09-b48b-0e859400e1f7", + "code": "32731", + "data": { + "stops": [ + { + "id": "2731", + "code": "32731", + "data": { + "gtfs": { + "stop_id": "2731", + "stop_code": "32731", + "stop_name": "av. Naples et av. Neuville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Naples et av. Neuville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4646514553809, + 45.4508626331334 + ] + } + }, + { + "id": "2749", + "code": "32749", + "data": { + "gtfs": { + "stop_id": "2749", + "stop_code": "32749", + "stop_name": "av. Naples et av. Neuville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Naples et av. Neuville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4646805966219, + 45.4505005797732 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3134125328659 + }, + "name": "av. Naples et av. Neuville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464666026, + 45.450681606 + ] + }, + "is_frozen": false, + "integer_id": 918, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466001, + 45.448609 + ] + }, + "id": 919, + "properties": { + "id": "27cd912d-c30d-4955-977f-68eb1e010190", + "code": "32732", + "data": { + "stops": [ + { + "id": "2732", + "code": "32732", + "data": { + "gtfs": { + "stop_id": "2732", + "stop_code": "32732", + "stop_name": "av. Naples et Nicolas", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Naples et Nicolas", + "geography": { + "type": "Point", + "coordinates": [ + -73.4660737535976, + 45.4486874602618 + ] + } + }, + { + "id": "2748", + "code": "32748", + "data": { + "gtfs": { + "stop_id": "2748", + "stop_code": "32748", + "stop_name": "av. Naples et Nicolas", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Naples et Nicolas", + "geography": { + "type": "Point", + "coordinates": [ + -73.465927650735, + 45.4485312124282 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2784985515261 + }, + "name": "av. Naples et Nicolas", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466000702, + 45.448609336 + ] + }, + "is_frozen": false, + "integer_id": 919, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467212, + 45.446457 + ] + }, + "id": 920, + "properties": { + "id": "809d30b8-456e-4e86-b782-8a6448d546e0", + "code": "32733", + "data": { + "stops": [ + { + "id": "2733", + "code": "32733", + "data": { + "gtfs": { + "stop_id": "2733", + "stop_code": "32733", + "stop_name": "av. Naples et boul. Napoléon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Naples et boul. Napoléon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4672120685005, + 45.4464574298945 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2422468790597 + }, + "name": "av. Naples et boul. Napoléon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.467212069, + 45.44645743 + ] + }, + "is_frozen": false, + "integer_id": 920, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464241, + 45.444639 + ] + }, + "id": 921, + "properties": { + "id": "ae5cac19-c84c-4e41-ae57-bbf3b3bda217", + "code": "32734", + "data": { + "stops": [ + { + "id": "2734", + "code": "32734", + "data": { + "gtfs": { + "stop_id": "2734", + "stop_code": "32734", + "stop_name": "boul. Napoléon et Nadeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Napoléon et Nadeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4642411967974, + 45.4446387175192 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2116114971994 + }, + "name": "boul. Napoléon et Nadeau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464241197, + 45.444638718 + ] + }, + "is_frozen": false, + "integer_id": 921, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461217, + 45.439938 + ] + }, + "id": 922, + "properties": { + "id": "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", + "code": "32737", + "data": { + "stops": [ + { + "id": "2737", + "code": "32737", + "data": { + "gtfs": { + "stop_id": "2737", + "stop_code": "32737", + "stop_name": "av. Orient et Olympia", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orient et Olympia", + "geography": { + "type": "Point", + "coordinates": [ + -73.4612166460753, + 45.4399375807246 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1324365553271 + }, + "name": "av. Orient et Olympia", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461216646, + 45.439937581 + ] + }, + "is_frozen": false, + "integer_id": 922, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460758, + 45.439173 + ] + }, + "id": 923, + "properties": { + "id": "19a4f64a-0169-40b9-8b9c-84de3158151e", + "code": "32738", + "data": { + "stops": [ + { + "id": "2738", + "code": "32738", + "data": { + "gtfs": { + "stop_id": "2738", + "stop_code": "32738", + "stop_name": "av. Orient et Ovide", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orient et Ovide", + "geography": { + "type": "Point", + "coordinates": [ + -73.4608413150664, + 45.4391629806248 + ] + } + }, + { + "id": "4511", + "code": "34511", + "data": { + "gtfs": { + "stop_id": "4511", + "stop_code": "34511", + "stop_name": "av. Orient et Ovide", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orient et Ovide", + "geography": { + "type": "Point", + "coordinates": [ + -73.4606746057798, + 45.4391831358534 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1195625723669 + }, + "name": "av. Orient et Ovide", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46075796, + 45.439173058 + ] + }, + "is_frozen": false, + "integer_id": 923, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46149, + 45.437876 + ] + }, + "id": 924, + "properties": { + "id": "c7e2639a-bb94-426e-918b-714f0212d53b", + "code": "32739", + "data": { + "stops": [ + { + "id": "2739", + "code": "32739", + "data": { + "gtfs": { + "stop_id": "2739", + "stop_code": "32739", + "stop_name": "av. Orient et civique 3630", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orient et civique 3630", + "geography": { + "type": "Point", + "coordinates": [ + -73.4616061282694, + 45.4378290422526 + ] + } + }, + { + "id": "4512", + "code": "34512", + "data": { + "gtfs": { + "stop_id": "4512", + "stop_code": "34512", + "stop_name": "av. Orient et civique 3625", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orient et civique 3625", + "geography": { + "type": "Point", + "coordinates": [ + -73.461374013761, + 45.4379238247373 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0977295827465 + }, + "name": "av. Orient et civique 3630", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461490071, + 45.437876433 + ] + }, + "is_frozen": false, + "integer_id": 924, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462282, + 45.436793 + ] + }, + "id": 925, + "properties": { + "id": "83e9a566-c582-40a4-a0ab-5f8e5e35853a", + "code": "32740", + "data": { + "stops": [ + { + "id": "2740", + "code": "32740", + "data": { + "gtfs": { + "stop_id": "2740", + "stop_code": "32740", + "stop_name": "av. Orient et ch. des Prairies", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orient et ch. des Prairies", + "geography": { + "type": "Point", + "coordinates": [ + -73.4621484244661, + 45.4370280333604 + ] + } + }, + { + "id": "4713", + "code": "34713", + "data": { + "gtfs": { + "stop_id": "4713", + "stop_code": "34713", + "stop_name": "av. Orient et ch. des Prairies", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orient et ch. des Prairies", + "geography": { + "type": "Point", + "coordinates": [ + -73.4622492453955, + 45.4365572642685 + ] + } + }, + { + "id": "4837", + "code": "34837", + "data": { + "gtfs": { + "stop_id": "4837", + "stop_code": "34837", + "stop_name": "av. Orient et ch. des Prairies", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orient et ch. des Prairies", + "geography": { + "type": "Point", + "coordinates": [ + -73.4620714621601, + 45.4368090878745 + ] + } + }, + { + "id": "5374", + "code": "30114", + "data": { + "gtfs": { + "stop_id": "5374", + "stop_code": "30114", + "stop_name": "ch. des Prairies et av. Orient", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et av. Orient", + "geography": { + "type": "Point", + "coordinates": [ + -73.4620723568305, + 45.4366622347767 + ] + } + }, + { + "id": "5379", + "code": "30119", + "data": { + "gtfs": { + "stop_id": "5379", + "stop_code": "30119", + "stop_name": "ch. des Prairies et av. Orient", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et av. Orient", + "geography": { + "type": "Point", + "coordinates": [ + -73.4624922871062, + 45.4366423597964 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0794816216365 + }, + "name": "av. Orient et ch. des Prairies", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462281875, + 45.436792649 + ] + }, + "is_frozen": false, + "integer_id": 925, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467767, + 45.445616 + ] + }, + "id": 926, + "properties": { + "id": "e7ac28b2-1ac9-4d12-811f-8e49f5a7d7ab", + "code": "32747", + "data": { + "stops": [ + { + "id": "2747", + "code": "32747", + "data": { + "gtfs": { + "stop_id": "2747", + "stop_code": "32747", + "stop_name": "av. Océanie et boul. Napoléon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Océanie et boul. Napoléon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4677667439687, + 45.4456158661584 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2280707491734 + }, + "name": "av. Océanie et boul. Napoléon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.467766744, + 45.445615866 + ] + }, + "is_frozen": false, + "integer_id": 926, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491083, + 45.445305 + ] + }, + "id": 927, + "properties": { + "id": "56755a3d-6779-4355-8b48-27271fb6ce0b", + "code": "32755", + "data": { + "stops": [ + { + "id": "2755", + "code": "32755", + "data": { + "gtfs": { + "stop_id": "2755", + "stop_code": "32755", + "stop_name": "av. Stravinski et Rossignol", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et Rossignol", + "geography": { + "type": "Point", + "coordinates": [ + -73.4911418196042, + 45.4454224630651 + ] + } + }, + { + "id": "2774", + "code": "32774", + "data": { + "gtfs": { + "stop_id": "2774", + "stop_code": "32774", + "stop_name": "av. Stravinski et Rossignol", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et Rossignol", + "geography": { + "type": "Point", + "coordinates": [ + -73.491024560285, + 45.4451882142953 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2228400862551 + }, + "name": "av. Stravinski et Rossignol", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.49108319, + 45.445305339 + ] + }, + "is_frozen": false, + "integer_id": 927, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491552, + 45.443499 + ] + }, + "id": 928, + "properties": { + "id": "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", + "code": "32756", + "data": { + "stops": [ + { + "id": "2756", + "code": "32756", + "data": { + "gtfs": { + "stop_id": "2756", + "stop_code": "32756", + "stop_name": "av. Stravinski et av. San Francisco", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et av. San Francisco", + "geography": { + "type": "Point", + "coordinates": [ + -73.4916621670958, + 45.4433784022371 + ] + } + }, + { + "id": "2773", + "code": "32773", + "data": { + "gtfs": { + "stop_id": "2773", + "stop_code": "32773", + "stop_name": "av. Stravinski et av. San Francisco", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et av. San Francisco", + "geography": { + "type": "Point", + "coordinates": [ + -73.4914420128163, + 45.4436191936686 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1924115549755 + }, + "name": "av. Stravinski et av. San Francisco", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.49155209, + 45.443498798 + ] + }, + "is_frozen": false, + "integer_id": 928, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492684, + 45.443348 + ] + }, + "id": 929, + "properties": { + "id": "14d2c36b-50a3-4d98-8947-81016b2b2927", + "code": "32757", + "data": { + "stops": [ + { + "id": "2757", + "code": "32757", + "data": { + "gtfs": { + "stop_id": "2757", + "stop_code": "32757", + "stop_name": "av. San Francisco et boul. Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et boul. Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4926839771826, + 45.4433475578212 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.189864270439 + }, + "name": "av. San Francisco et boul. Marie-Victorin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492683977, + 45.443347558 + ] + }, + "is_frozen": false, + "integer_id": 929, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491392, + 45.454689 + ] + }, + "id": 930, + "properties": { + "id": "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", + "code": "32761", + "data": { + "stops": [ + { + "id": "2761", + "code": "32761", + "data": { + "gtfs": { + "stop_id": "2761", + "stop_code": "32761", + "stop_name": "av. Stravinski et av. Strauss", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et av. Strauss", + "geography": { + "type": "Point", + "coordinates": [ + -73.4912901888308, + 45.4545438669965 + ] + } + }, + { + "id": "3292", + "code": "33292", + "data": { + "gtfs": { + "stop_id": "3292", + "stop_code": "33292", + "stop_name": "av. Stravinski et av. Strauss", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Stravinski et av. Strauss", + "geography": { + "type": "Point", + "coordinates": [ + -73.4914935495955, + 45.4548349354236 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3809473978781 + }, + "name": "av. Stravinski et av. Strauss", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491391869, + 45.454689401 + ] + }, + "is_frozen": false, + "integer_id": 930, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479548, + 45.454814 + ] + }, + "id": 931, + "properties": { + "id": "87774b57-5ee3-418d-948c-ba4db73d3893", + "code": "32764", + "data": { + "stops": [ + { + "id": "2764", + "code": "32764", + "data": { + "gtfs": { + "stop_id": "2764", + "stop_code": "32764", + "stop_name": "boul. Pelletier et civique 7960", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et civique 7960", + "geography": { + "type": "Point", + "coordinates": [ + -73.4797094386084, + 45.4548492450976 + ] + } + }, + { + "id": "2779", + "code": "32779", + "data": { + "gtfs": { + "stop_id": "2779", + "stop_code": "32779", + "stop_name": "boul. Pelletier et civique 7985", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et civique 7985", + "geography": { + "type": "Point", + "coordinates": [ + -73.4793859615462, + 45.4547794010612 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3830526722651 + }, + "name": "boul. Pelletier et civique 7960", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.4795477, + 45.454814323 + ] + }, + "is_frozen": false, + "integer_id": 931, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478118, + 45.449899 + ] + }, + "id": 932, + "properties": { + "id": "4509b80b-76a5-49de-acb2-533a50bafac5", + "code": "32766", + "data": { + "stops": [ + { + "id": "2766", + "code": "32766", + "data": { + "gtfs": { + "stop_id": "2766", + "stop_code": "32766", + "stop_name": "boul. Pelletier et av. Sorbonne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et av. Sorbonne", + "geography": { + "type": "Point", + "coordinates": [ + -73.478079074235, + 45.450023492687 + ] + } + }, + { + "id": "3527", + "code": "33527", + "data": { + "gtfs": { + "stop_id": "3527", + "stop_code": "33527", + "stop_name": "av. Sorbonne et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Sorbonne et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.478157467727, + 45.4497754564574 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3002346002562 + }, + "name": "boul. Pelletier et av. Sorbonne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.478118271, + 45.449899475 + ] + }, + "is_frozen": false, + "integer_id": 932, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482157, + 45.447561 + ] + }, + "id": 933, + "properties": { + "id": "91b595a9-abca-41fb-9723-f6ca055bd16b", + "code": "32767", + "data": { + "stops": [ + { + "id": "2767", + "code": "32767", + "data": { + "gtfs": { + "stop_id": "2767", + "stop_code": "32767", + "stop_name": "av. Sorbonne et boul. Rivard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Sorbonne et boul. Rivard", + "geography": { + "type": "Point", + "coordinates": [ + -73.48236253003, + 45.4474246881454 + ] + } + }, + { + "id": "2777", + "code": "32777", + "data": { + "gtfs": { + "stop_id": "2777", + "stop_code": "32777", + "stop_name": "av. Sorbonne et boul. Rivard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Sorbonne et boul. Rivard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4819512194836, + 45.4476982184375 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2608450782266 + }, + "name": "av. Sorbonne et boul. Rivard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482156875, + 45.447561453 + ] + }, + "is_frozen": false, + "integer_id": 933, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481237, + 45.446326 + ] + }, + "id": 934, + "properties": { + "id": "8f4ce296-9511-42d4-a138-f52bb761830f", + "code": "32768", + "data": { + "stops": [ + { + "id": "2768", + "code": "32768", + "data": { + "gtfs": { + "stop_id": "2768", + "stop_code": "32768", + "stop_name": "boul. Rivard et Rimbaud", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Rivard et Rimbaud", + "geography": { + "type": "Point", + "coordinates": [ + -73.481236689094, + 45.4463256168008 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.240026450056 + }, + "name": "boul. Rivard et Rimbaud", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481236689, + 45.446325617 + ] + }, + "is_frozen": false, + "integer_id": 934, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481079, + 45.44377 + ] + }, + "id": 935, + "properties": { + "id": "0a5b3fec-6725-4b10-9b81-ad6506fe82d2", + "code": "32769", + "data": { + "stops": [ + { + "id": "2769", + "code": "32769", + "data": { + "gtfs": { + "stop_id": "2769", + "stop_code": "32769", + "stop_name": "boul. Rivard et Rostand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Rivard et Rostand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4810789447276, + 45.443770010525 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1969795552537 + }, + "name": "boul. Rivard et Rostand", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481078945, + 45.443770011 + ] + }, + "is_frozen": false, + "integer_id": 935, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481173, + 45.44123 + ] + }, + "id": 936, + "properties": { + "id": "a532b39a-66ec-444f-abc1-766787d9387c", + "code": "32770", + "data": { + "stops": [ + { + "id": "2770", + "code": "32770", + "data": { + "gtfs": { + "stop_id": "2770", + "stop_code": "32770", + "stop_name": "boul. Rivard et av. San Francisco", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Rivard et av. San Francisco", + "geography": { + "type": "Point", + "coordinates": [ + -73.481390882058, + 45.4414124371829 + ] + } + }, + { + "id": "2804", + "code": "32804", + "data": { + "gtfs": { + "stop_id": "2804", + "stop_code": "32804", + "stop_name": "av. San Francisco et boul. Rivard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et boul. Rivard", + "geography": { + "type": "Point", + "coordinates": [ + -73.480955115925, + 45.441371882782 + ] + } + }, + { + "id": "2814", + "code": "32814", + "data": { + "gtfs": { + "stop_id": "2814", + "stop_code": "32814", + "stop_name": "boul. Rivard et av. San Francisco", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Rivard et av. San Francisco", + "geography": { + "type": "Point", + "coordinates": [ + -73.4810658743394, + 45.4410479541835 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1542043823581 + }, + "name": "boul. Rivard et av. San Francisco", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481172999, + 45.441230196 + ] + }, + "is_frozen": false, + "integer_id": 936, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483726, + 45.441683 + ] + }, + "id": 937, + "properties": { + "id": "3518bfc1-7b5d-4295-9440-6fc17dd6b559", + "code": "32771", + "data": { + "stops": [ + { + "id": "2771", + "code": "32771", + "data": { + "gtfs": { + "stop_id": "2771", + "stop_code": "32771", + "stop_name": "av. San Francisco et Rio", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et Rio", + "geography": { + "type": "Point", + "coordinates": [ + -73.4837263324577, + 45.4416826929229 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1618248484749 + }, + "name": "av. San Francisco et Rio", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483726332, + 45.441682693 + ] + }, + "is_frozen": false, + "integer_id": 937, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.487349, + 45.443213 + ] + }, + "id": 938, + "properties": { + "id": "e9dbe1ee-244a-4556-8fa1-052d6f2dee5e", + "code": "32772", + "data": { + "stops": [ + { + "id": "2772", + "code": "32772", + "data": { + "gtfs": { + "stop_id": "2772", + "stop_code": "32772", + "stop_name": "av. San Francisco et Rigaud", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et Rigaud", + "geography": { + "type": "Point", + "coordinates": [ + -73.4873492027359, + 45.4432129685481 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1875974501564 + }, + "name": "av. San Francisco et Rigaud", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.487349203, + 45.443212969 + ] + }, + "is_frozen": false, + "integer_id": 938, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.485395, + 45.447318 + ] + }, + "id": 939, + "properties": { + "id": "601c2147-2f83-405b-be6a-8fe05117cb43", + "code": "32775", + "data": { + "stops": [ + { + "id": "2775", + "code": "32775", + "data": { + "gtfs": { + "stop_id": "2775", + "stop_code": "32775", + "stop_name": "boul. Rivard et Rembrandt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Rivard et Rembrandt", + "geography": { + "type": "Point", + "coordinates": [ + -73.4853946269896, + 45.4473175216976 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2567357616466 + }, + "name": "boul. Rivard et Rembrandt", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.485394627, + 45.447317522 + ] + }, + "is_frozen": false, + "integer_id": 939, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494621, + 45.4552 + ] + }, + "id": 940, + "properties": { + "id": "81232cdf-e1d4-440c-91bd-cfdc85007144", + "code": "32781", + "data": { + "stops": [ + { + "id": "2781", + "code": "32781", + "data": { + "gtfs": { + "stop_id": "2781", + "stop_code": "32781", + "stop_name": "boul. du Saint-Laurent et civique 8050", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Saint-Laurent et civique 8050", + "geography": { + "type": "Point", + "coordinates": [ + -73.4947861249578, + 45.4551780581414 + ] + } + }, + { + "id": "2790", + "code": "32790", + "data": { + "gtfs": { + "stop_id": "2790", + "stop_code": "32790", + "stop_name": "boul. du Saint-Laurent et civique 8050", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Saint-Laurent et civique 8050", + "geography": { + "type": "Point", + "coordinates": [ + -73.494456585233, + 45.455222053417 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3895534064883 + }, + "name": "boul. du Saint-Laurent et civique 8050", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494621355, + 45.455200056 + ] + }, + "is_frozen": false, + "integer_id": 940, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494696, + 45.454205 + ] + }, + "id": 941, + "properties": { + "id": "7ad52fd5-2149-40d5-ae51-5e78e11fdbc1", + "code": "32782", + "data": { + "stops": [ + { + "id": "2782", + "code": "32782", + "data": { + "gtfs": { + "stop_id": "2782", + "stop_code": "32782", + "stop_name": "boul. du Saint-Laurent et civique 8080", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Saint-Laurent et civique 8080", + "geography": { + "type": "Point", + "coordinates": [ + -73.4946960128706, + 45.4542052335255 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3727880020742 + }, + "name": "boul. du Saint-Laurent et civique 8080", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494696013, + 45.454205234 + ] + }, + "is_frozen": false, + "integer_id": 941, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494596, + 45.452726 + ] + }, + "id": 942, + "properties": { + "id": "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", + "code": "32783", + "data": { + "stops": [ + { + "id": "2783", + "code": "32783", + "data": { + "gtfs": { + "stop_id": "2783", + "stop_code": "32783", + "stop_name": "boul. du Saint-Laurent et Saint-François", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Saint-Laurent et Saint-François", + "geography": { + "type": "Point", + "coordinates": [ + -73.4947818378816, + 45.4526967175778 + ] + } + }, + { + "id": "2788", + "code": "32788", + "data": { + "gtfs": { + "stop_id": "2788", + "stop_code": "32788", + "stop_name": "boul. du Saint-Laurent et Saint-François", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Saint-Laurent et Saint-François", + "geography": { + "type": "Point", + "coordinates": [ + -73.494410393652, + 45.4527557347294 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3478643949326 + }, + "name": "boul. du Saint-Laurent et Saint-François", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494596116, + 45.452726226 + ] + }, + "is_frozen": false, + "integer_id": 942, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494521, + 45.451478 + ] + }, + "id": 943, + "properties": { + "id": "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", + "code": "32784", + "data": { + "stops": [ + { + "id": "2784", + "code": "32784", + "data": { + "gtfs": { + "stop_id": "2784", + "stop_code": "32784", + "stop_name": "boul. du Saint-Laurent et civique 8160", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Saint-Laurent et civique 8160", + "geography": { + "type": "Point", + "coordinates": [ + -73.4946963616604, + 45.4516435459399 + ] + } + }, + { + "id": "2787", + "code": "32787", + "data": { + "gtfs": { + "stop_id": "2787", + "stop_code": "32787", + "stop_name": "boul. du Saint-Laurent et civique 8145", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Saint-Laurent et civique 8145", + "geography": { + "type": "Point", + "coordinates": [ + -73.4943461044579, + 45.4513119510759 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3268271074548 + }, + "name": "boul. du Saint-Laurent et civique 8160", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494521233, + 45.451477749 + ] + }, + "is_frozen": false, + "integer_id": 943, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.49461, + 45.450314 + ] + }, + "id": 944, + "properties": { + "id": "c25e5964-dcb2-42c5-8dcb-381856954cdc", + "code": "32785", + "data": { + "stops": [ + { + "id": "2785", + "code": "32785", + "data": { + "gtfs": { + "stop_id": "2785", + "stop_code": "32785", + "stop_name": "boul. du Saint-Laurent et civique 8200", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Saint-Laurent et civique 8200", + "geography": { + "type": "Point", + "coordinates": [ + -73.4946101657361, + 45.4503142501241 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3072229745168 + }, + "name": "boul. du Saint-Laurent et civique 8200", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494610166, + 45.45031425 + ] + }, + "is_frozen": false, + "integer_id": 944, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494272, + 45.450502 + ] + }, + "id": 945, + "properties": { + "id": "a0c55e08-a29d-42c6-a917-251b8ca35935", + "code": "32786", + "data": { + "stops": [ + { + "id": "2786", + "code": "32786", + "data": { + "gtfs": { + "stop_id": "2786", + "stop_code": "32786", + "stop_name": "boul. du Saint-Laurent et CIVIQUE 8255", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Saint-Laurent et CIVIQUE 8255", + "geography": { + "type": "Point", + "coordinates": [ + -73.4942716699151, + 45.4505023259796 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3103918403662 + }, + "name": "boul. du Saint-Laurent et CIVIQUE 8255", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.49427167, + 45.450502326 + ] + }, + "is_frozen": false, + "integer_id": 945, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.49441, + 45.453826 + ] + }, + "id": 946, + "properties": { + "id": "a3a2d6d0-5008-4980-ba25-7b3a00feca26", + "code": "32789", + "data": { + "stops": [ + { + "id": "2789", + "code": "32789", + "data": { + "gtfs": { + "stop_id": "2789", + "stop_code": "32789", + "stop_name": "boul. du Saint-Laurent et civique 8075", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Saint-Laurent et civique 8075", + "geography": { + "type": "Point", + "coordinates": [ + -73.4944099555416, + 45.4538256151323 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3663906407264 + }, + "name": "boul. du Saint-Laurent et civique 8075", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494409956, + 45.453825615 + ] + }, + "is_frozen": false, + "integer_id": 946, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.493861, + 45.456525 + ] + }, + "id": 947, + "properties": { + "id": "3ebb53d0-1c64-4727-874b-d39ed1870cae", + "code": "32791", + "data": { + "stops": [ + { + "id": "2791", + "code": "32791", + "data": { + "gtfs": { + "stop_id": "2791", + "stop_code": "32791", + "stop_name": "boul. du Saint-Laurent et Saint-Maurice", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Saint-Laurent et Saint-Maurice", + "geography": { + "type": "Point", + "coordinates": [ + -73.4938610352065, + 45.4565253529131 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4118895602338 + }, + "name": "boul. du Saint-Laurent et Saint-Maurice", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493861035, + 45.456525353 + ] + }, + "is_frozen": false, + "integer_id": 947, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474078, + 45.46319 + ] + }, + "id": 948, + "properties": { + "id": "7389acbe-1784-4fea-a2ab-a4a9c9239e83", + "code": "32792", + "data": { + "stops": [ + { + "id": "2792", + "code": "32792", + "data": { + "gtfs": { + "stop_id": "2792", + "stop_code": "32792", + "stop_name": "Toulon et Tourigny", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Toulon et Tourigny", + "geography": { + "type": "Point", + "coordinates": [ + -73.4740737082108, + 45.4631109298984 + ] + } + }, + { + "id": "2826", + "code": "32826", + "data": { + "gtfs": { + "stop_id": "2826", + "stop_code": "32826", + "stop_name": "Toulon et Tourigny", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Toulon et Tourigny", + "geography": { + "type": "Point", + "coordinates": [ + -73.4740814630693, + 45.4632688912101 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5242356260267 + }, + "name": "Toulon et Tourigny", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474077586, + 45.463189911 + ] + }, + "is_frozen": false, + "integer_id": 948, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468349, + 45.456721 + ] + }, + "id": 949, + "properties": { + "id": "ca62a640-5508-4ced-94a0-1f22107c57c9", + "code": "32794", + "data": { + "stops": [ + { + "id": "2794", + "code": "32794", + "data": { + "gtfs": { + "stop_id": "2794", + "stop_code": "32794", + "stop_name": "av. Tisserand et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4684553262348, + 45.4564236319512 + ] + } + }, + { + "id": "4845", + "code": "34845", + "data": { + "gtfs": { + "stop_id": "4845", + "stop_code": "34845", + "stop_name": "av. Tisserand et civique 7660", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et civique 7660", + "geography": { + "type": "Point", + "coordinates": [ + -73.4682422533613, + 45.4570190128905 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4151924945891 + }, + "name": "av. Tisserand et boul. de Rome", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46834879, + 45.456721322 + ] + }, + "is_frozen": false, + "integer_id": 949, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469601, + 45.453081 + ] + }, + "id": 950, + "properties": { + "id": "e21c6436-090b-4893-a347-5a67018da073", + "code": "32796", + "data": { + "stops": [ + { + "id": "2796", + "code": "32796", + "data": { + "gtfs": { + "stop_id": "2796", + "stop_code": "32796", + "stop_name": "av. San Francisco et civique 7980", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et civique 7980", + "geography": { + "type": "Point", + "coordinates": [ + -73.4696613056517, + 45.4531673045972 + ] + } + }, + { + "id": "2823", + "code": "32823", + "data": { + "gtfs": { + "stop_id": "2823", + "stop_code": "32823", + "stop_name": "av. San Francisco et civique 7990", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et civique 7990", + "geography": { + "type": "Point", + "coordinates": [ + -73.4695413572081, + 45.4529955523228 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3538499293148 + }, + "name": "av. San Francisco et civique 7980", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469601331, + 45.453081428 + ] + }, + "is_frozen": false, + "integer_id": 950, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474298, + 45.446189 + ] + }, + "id": 951, + "properties": { + "id": "aebecb3d-b7f4-4a39-9b68-19a1c1a3b2b2", + "code": "32800", + "data": { + "stops": [ + { + "id": "2800", + "code": "32800", + "data": { + "gtfs": { + "stop_id": "2800", + "stop_code": "32800", + "stop_name": "av. San Francisco et Rimbaud", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et Rimbaud", + "geography": { + "type": "Point", + "coordinates": [ + -73.4743839377513, + 45.4462612959426 + ] + } + }, + { + "id": "2818", + "code": "32818", + "data": { + "gtfs": { + "stop_id": "2818", + "stop_code": "32818", + "stop_name": "av. San Francisco et Rimbaud", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et Rimbaud", + "geography": { + "type": "Point", + "coordinates": [ + -73.4742112269691, + 45.4461160866532 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2377199073677 + }, + "name": "av. San Francisco et Rimbaud", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474297582, + 45.446188691 + ] + }, + "is_frozen": false, + "integer_id": 951, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475836, + 45.441557 + ] + }, + "id": 952, + "properties": { + "id": "972f2e12-8185-4823-8ce3-2c965170ad9a", + "code": "32802", + "data": { + "stops": [ + { + "id": "2802", + "code": "32802", + "data": { + "gtfs": { + "stop_id": "2802", + "stop_code": "32802", + "stop_name": "av. San Francisco et croiss. Rouyn", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et croiss. Rouyn", + "geography": { + "type": "Point", + "coordinates": [ + -73.4757428184292, + 45.441693447937 + ] + } + }, + { + "id": "2816", + "code": "32816", + "data": { + "gtfs": { + "stop_id": "2816", + "stop_code": "32816", + "stop_name": "av. San Francisco et croiss. Rouyn", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et croiss. Rouyn", + "geography": { + "type": "Point", + "coordinates": [ + -73.4759293161609, + 45.4414205071579 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.159707673915 + }, + "name": "av. San Francisco et croiss. Rouyn", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475836067, + 45.441556978 + ] + }, + "is_frozen": false, + "integer_id": 952, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.477736, + 45.4412 + ] + }, + "id": 953, + "properties": { + "id": "ca880d29-2a91-4666-9ed1-c2825e5165f2", + "code": "32803", + "data": { + "stops": [ + { + "id": "2803", + "code": "32803", + "data": { + "gtfs": { + "stop_id": "2803", + "stop_code": "32803", + "stop_name": "av. San Francisco et croiss. Rimouski", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et croiss. Rimouski", + "geography": { + "type": "Point", + "coordinates": [ + -73.4777143711914, + 45.4412588148827 + ] + } + }, + { + "id": "2815", + "code": "32815", + "data": { + "gtfs": { + "stop_id": "2815", + "stop_code": "32815", + "stop_name": "av. San Francisco et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4777577415856, + 45.4411407338519 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1536920543784 + }, + "name": "av. San Francisco et croiss. Rimouski", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.477736056, + 45.441199774 + ] + }, + "is_frozen": false, + "integer_id": 953, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481671, + 45.438533 + ] + }, + "id": 954, + "properties": { + "id": "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", + "code": "32805", + "data": { + "stops": [ + { + "id": "2805", + "code": "32805", + "data": { + "gtfs": { + "stop_id": "2805", + "stop_code": "32805", + "stop_name": "boul. Rivard et ch. des Prairies", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Rivard et ch. des Prairies", + "geography": { + "type": "Point", + "coordinates": [ + -73.4816390809304, + 45.4386139453195 + ] + } + }, + { + "id": "2813", + "code": "32813", + "data": { + "gtfs": { + "stop_id": "2813", + "stop_code": "32813", + "stop_name": "ch. des Prairies et boul. Rivard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et boul. Rivard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4817034430882, + 45.4384525255765 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1087888402751 + }, + "name": "boul. Rivard et ch. des Prairies", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481671262, + 45.438533235 + ] + }, + "is_frozen": false, + "integer_id": 954, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481654, + 45.436684 + ] + }, + "id": 955, + "properties": { + "id": "52fa062f-ca90-4e1d-998a-7b658a499b52", + "code": "32806", + "data": { + "stops": [ + { + "id": "2806", + "code": "32806", + "data": { + "gtfs": { + "stop_id": "2806", + "stop_code": "32806", + "stop_name": "boul. Rivard et croiss. Roussel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Rivard et croiss. Roussel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4816536118257, + 45.4366841554049 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.077654936453 + }, + "name": "boul. Rivard et croiss. Roussel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481653612, + 45.436684155 + ] + }, + "is_frozen": false, + "integer_id": 955, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481699, + 45.435522 + ] + }, + "id": 956, + "properties": { + "id": "553f2fec-7dd4-475c-b1ed-ff9a62614e74", + "code": "32807", + "data": { + "stops": [ + { + "id": "2807", + "code": "32807", + "data": { + "gtfs": { + "stop_id": "2807", + "stop_code": "32807", + "stop_name": "boul. Rivard et boul. Matte", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Rivard et boul. Matte", + "geography": { + "type": "Point", + "coordinates": [ + -73.4816992060983, + 45.4355218092029 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0580854744572 + }, + "name": "boul. Rivard et boul. Matte", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481699206, + 45.435521809 + ] + }, + "is_frozen": false, + "integer_id": 956, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.487428, + 45.435447 + ] + }, + "id": 957, + "properties": { + "id": "23afb18c-7e9a-4c38-a0e7-59d1aa5f5f5f", + "code": "32808", + "data": { + "stops": [ + { + "id": "2808", + "code": "32808", + "data": { + "gtfs": { + "stop_id": "2808", + "stop_code": "32808", + "stop_name": "boul. Matte et Renaud", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Matte et Renaud", + "geography": { + "type": "Point", + "coordinates": [ + -73.4874283938018, + 45.4354471198997 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0568280382321 + }, + "name": "boul. Matte et Renaud", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.487428394, + 45.43544712 + ] + }, + "is_frozen": false, + "integer_id": 957, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490782, + 45.435808 + ] + }, + "id": 958, + "properties": { + "id": "8f8e9cec-3b4e-465e-9db7-a68a74d060d1", + "code": "32809", + "data": { + "stops": [ + { + "id": "2809", + "code": "32809", + "data": { + "gtfs": { + "stop_id": "2809", + "stop_code": "32809", + "stop_name": "boul. Marie-Victorin et boul. Matte", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et boul. Matte", + "geography": { + "type": "Point", + "coordinates": [ + -73.4907820782392, + 45.4358084016826 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0629104934867 + }, + "name": "boul. Marie-Victorin et boul. Matte", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490782078, + 45.435808402 + ] + }, + "is_frozen": false, + "integer_id": 958, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491094, + 45.437112 + ] + }, + "id": 959, + "properties": { + "id": "a755707e-dbca-49b2-ba36-d6e6ffe0de89", + "code": "32810", + "data": { + "stops": [ + { + "id": "2810", + "code": "32810", + "data": { + "gtfs": { + "stop_id": "2810", + "stop_code": "32810", + "stop_name": "boul. Marie-Victorin et Ravel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Ravel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4910943899071, + 45.4371123187677 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0848638827039 + }, + "name": "boul. Marie-Victorin et Ravel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.49109439, + 45.437112319 + ] + }, + "is_frozen": false, + "integer_id": 959, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.485025, + 45.43852 + ] + }, + "id": 960, + "properties": { + "id": "6195cfbf-10cd-4d7a-86f0-ca5dad76f9d9", + "code": "32812", + "data": { + "stops": [ + { + "id": "2812", + "code": "32812", + "data": { + "gtfs": { + "stop_id": "2812", + "stop_code": "32812", + "stop_name": "ch. des Prairies et Roger", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et Roger", + "geography": { + "type": "Point", + "coordinates": [ + -73.4850251334854, + 45.4385199548246 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1085652273334 + }, + "name": "ch. des Prairies et Roger", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.485025133, + 45.438519955 + ] + }, + "is_frozen": false, + "integer_id": 960, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474384, + 45.444509 + ] + }, + "id": 961, + "properties": { + "id": "eab0f5d6-db57-4bf2-a26d-a49e7fe11c54", + "code": "32817", + "data": { + "stops": [ + { + "id": "2817", + "code": "32817", + "data": { + "gtfs": { + "stop_id": "2817", + "stop_code": "32817", + "stop_name": "av. San Francisco et croiss. Roberval", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et croiss. Roberval", + "geography": { + "type": "Point", + "coordinates": [ + -73.4742908041796, + 45.4444075795738 + ] + } + }, + { + "id": "3837", + "code": "33837", + "data": { + "gtfs": { + "stop_id": "3837", + "stop_code": "33837", + "stop_name": "av. San Francisco et croiss. Roberval", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et croiss. Roberval", + "geography": { + "type": "Point", + "coordinates": [ + -73.4744776684929, + 45.4446100882438 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2094237721072 + }, + "name": "av. San Francisco et croiss. Roberval", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474384236, + 45.444508834 + ] + }, + "is_frozen": false, + "integer_id": 961, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.473016, + 45.448591 + ] + }, + "id": 962, + "properties": { + "id": "5847442f-86f3-431c-ac38-324378b56363", + "code": "32820", + "data": { + "stops": [ + { + "id": "2820", + "code": "32820", + "data": { + "gtfs": { + "stop_id": "2820", + "stop_code": "32820", + "stop_name": "av. San Francisco et place Sahara", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et place Sahara", + "geography": { + "type": "Point", + "coordinates": [ + -73.4729496487446, + 45.4486984775957 + ] + } + }, + { + "id": "4739", + "code": "34739", + "data": { + "gtfs": { + "stop_id": "4739", + "stop_code": "34739", + "stop_name": "av. San Francisco et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4730826160511, + 45.4484845098885 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2781979628061 + }, + "name": "av. San Francisco et place Sahara", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.473016132, + 45.448591494 + ] + }, + "is_frozen": false, + "integer_id": 962, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468546, + 45.455999 + ] + }, + "id": 963, + "properties": { + "id": "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", + "code": "32825", + "data": { + "stops": [ + { + "id": "2825", + "code": "32825", + "data": { + "gtfs": { + "stop_id": "2825", + "stop_code": "32825", + "stop_name": "av. San Francisco et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.468417181782, + 45.4559265305284 + ] + } + }, + { + "id": "3526", + "code": "33526", + "data": { + "gtfs": { + "stop_id": "3526", + "stop_code": "33526", + "stop_name": "boul. de Rome et av. San Francisco", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. San Francisco", + "geography": { + "type": "Point", + "coordinates": [ + -73.4686744185584, + 45.4560721080834 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4030237561979 + }, + "name": "av. San Francisco et boul. de Rome", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.4685458, + 45.455999319 + ] + }, + "is_frozen": false, + "integer_id": 963, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475041, + 45.462095 + ] + }, + "id": 964, + "properties": { + "id": "06992afa-6d7e-4650-bffc-5a747de5860c", + "code": "32827", + "data": { + "stops": [ + { + "id": "2827", + "code": "32827", + "data": { + "gtfs": { + "stop_id": "2827", + "stop_code": "32827", + "stop_name": "Toulon et Talleyrand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Toulon et Talleyrand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4750343724985, + 45.4622022959897 + ] + } + }, + { + "id": "3277", + "code": "33277", + "data": { + "gtfs": { + "stop_id": "3277", + "stop_code": "33277", + "stop_name": "Toulon et Talleyrand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Toulon et Talleyrand", + "geography": { + "type": "Point", + "coordinates": [ + -73.475046775068, + 45.461987437134 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.505773498081 + }, + "name": "Toulon et Talleyrand", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475040574, + 45.462094867 + ] + }, + "is_frozen": false, + "integer_id": 964, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443256, + 45.475093 + ] + }, + "id": 965, + "properties": { + "id": "d6d99976-b155-4a29-b088-e41bf69a502a", + "code": "32828", + "data": { + "stops": [ + { + "id": "2828", + "code": "32828", + "data": { + "gtfs": { + "stop_id": "2828", + "stop_code": "32828", + "stop_name": "Orchard et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Orchard et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4431290953308, + 45.4750542009888 + ] + } + }, + { + "id": "2865", + "code": "32865", + "data": { + "gtfs": { + "stop_id": "2865", + "stop_code": "32865", + "stop_name": "Orchard et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Orchard et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4433832241964, + 45.4751308142626 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7249786795177 + }, + "name": "Orchard et Grande Allée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44325616, + 45.475092508 + ] + }, + "is_frozen": false, + "integer_id": 965, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441045, + 45.476779 + ] + }, + "id": 966, + "properties": { + "id": "3753be88-b479-4ca1-bd8a-5ea694207952", + "code": "32829", + "data": { + "stops": [ + { + "id": "2829", + "code": "32829", + "data": { + "gtfs": { + "stop_id": "2829", + "stop_code": "32829", + "stop_name": "Orchard et av. Glenn", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Orchard et av. Glenn", + "geography": { + "type": "Point", + "coordinates": [ + -73.4410494009499, + 45.4766683726062 + ] + } + }, + { + "id": "2864", + "code": "32864", + "data": { + "gtfs": { + "stop_id": "2864", + "stop_code": "32864", + "stop_name": "Orchard et av. Glenn", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Orchard et av. Glenn", + "geography": { + "type": "Point", + "coordinates": [ + -73.4410406184556, + 45.4768896036033 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7534321574568 + }, + "name": "Orchard et av. Glenn", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44104501, + 45.476778988 + ] + }, + "is_frozen": false, + "integer_id": 966, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.438484, + 45.478698 + ] + }, + "id": 967, + "properties": { + "id": "cfc3e1d1-58b4-4975-b310-259719029f69", + "code": "32830", + "data": { + "stops": [ + { + "id": "2830", + "code": "32830", + "data": { + "gtfs": { + "stop_id": "2830", + "stop_code": "32830", + "stop_name": "Orchard et av. Irving", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Orchard et av. Irving", + "geography": { + "type": "Point", + "coordinates": [ + -73.4385100103144, + 45.47856121192 + ] + } + }, + { + "id": "2863", + "code": "32863", + "data": { + "gtfs": { + "stop_id": "2863", + "stop_code": "32863", + "stop_name": "Orchard et av. Irving", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Orchard et av. Irving", + "geography": { + "type": "Point", + "coordinates": [ + -73.4384581484502, + 45.4788356372908 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7858190483067 + }, + "name": "Orchard et av. Irving", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438484079, + 45.478698425 + ] + }, + "is_frozen": false, + "integer_id": 967, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.433235, + 45.482552 + ] + }, + "id": 968, + "properties": { + "id": "dd69c268-00e5-467c-8e8d-2b0301743114", + "code": "32832", + "data": { + "stops": [ + { + "id": "2832", + "code": "32832", + "data": { + "gtfs": { + "stop_id": "2832", + "stop_code": "32832", + "stop_name": "Orchard et av. Normand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Orchard et av. Normand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4333155496573, + 45.4823826456888 + ] + } + }, + { + "id": "2861", + "code": "32861", + "data": { + "gtfs": { + "stop_id": "2861", + "stop_code": "32861", + "stop_name": "Orchard et av. Normand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Orchard et av. Normand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4331540972828, + 45.4827220516248 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8508566561933 + }, + "name": "Orchard et av. Normand", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.433234823, + 45.482552349 + ] + }, + "is_frozen": false, + "integer_id": 968, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.427998, + 45.486457 + ] + }, + "id": 969, + "properties": { + "id": "f026582d-e34c-4c8f-97d3-a9902c9cf75e", + "code": "32833", + "data": { + "stops": [ + { + "id": "2833", + "code": "32833", + "data": { + "gtfs": { + "stop_id": "2833", + "stop_code": "32833", + "stop_name": "Orchard et boul. Maricourt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Orchard et boul. Maricourt", + "geography": { + "type": "Point", + "coordinates": [ + -73.4277095950625, + 45.486575896662 + ] + } + }, + { + "id": "2859", + "code": "32859", + "data": { + "gtfs": { + "stop_id": "2859", + "stop_code": "32859", + "stop_name": "Orchard et civique 4020", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Orchard et civique 4020", + "geography": { + "type": "Point", + "coordinates": [ + -73.4282860501249, + 45.4863378648068 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9167617708273 + }, + "name": "Orchard et boul. Maricourt", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.427997823, + 45.486456881 + ] + }, + "is_frozen": false, + "integer_id": 969, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.424916, + 45.485222 + ] + }, + "id": 970, + "properties": { + "id": "9b3c9288-610f-44d5-ac44-d6199a8a0d55", + "code": "32834", + "data": { + "stops": [ + { + "id": "2834", + "code": "32834", + "data": { + "gtfs": { + "stop_id": "2834", + "stop_code": "32834", + "stop_name": "boul. Maricourt et Dupras", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Maricourt et Dupras", + "geography": { + "type": "Point", + "coordinates": [ + -73.4248869600896, + 45.4851188665149 + ] + } + }, + { + "id": "2858", + "code": "32858", + "data": { + "gtfs": { + "stop_id": "2858", + "stop_code": "32858", + "stop_name": "boul. Maricourt et Dupras", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Maricourt et Dupras", + "geography": { + "type": "Point", + "coordinates": [ + -73.4249453573134, + 45.4853244485904 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8959108121622 + }, + "name": "boul. Maricourt et Dupras", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.424916159, + 45.485221658 + ] + }, + "is_frozen": false, + "integer_id": 970, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.422526, + 45.483921 + ] + }, + "id": 971, + "properties": { + "id": "335b9e5b-fca5-4f4b-8f3b-2277caa27d7a", + "code": "32835", + "data": { + "stops": [ + { + "id": "2835", + "code": "32835", + "data": { + "gtfs": { + "stop_id": "2835", + "stop_code": "32835", + "stop_name": "boul. Maricourt et Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Maricourt et Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4228032336446, + 45.4839867497881 + ] + } + }, + { + "id": "2857", + "code": "32857", + "data": { + "gtfs": { + "stop_id": "2857", + "stop_code": "32857", + "stop_name": "boul. Maricourt et Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Maricourt et Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4222495715275, + 45.4838555753546 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8739595070163 + }, + "name": "boul. Maricourt et Béliveau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.422526403, + 45.483921163 + ] + }, + "is_frozen": false, + "integer_id": 971, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.420873, + 45.482881 + ] + }, + "id": 972, + "properties": { + "id": "cb1c9669-6517-4a25-af17-321fc49ae537", + "code": "32836", + "data": { + "stops": [ + { + "id": "2836", + "code": "32836", + "data": { + "gtfs": { + "stop_id": "2836", + "stop_code": "32836", + "stop_name": "boul. Maricourt et Forgues", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Maricourt et Forgues", + "geography": { + "type": "Point", + "coordinates": [ + -73.4210237183205, + 45.4829822048837 + ] + } + }, + { + "id": "2856", + "code": "32856", + "data": { + "gtfs": { + "stop_id": "2856", + "stop_code": "32856", + "stop_name": "Forgues et boul. Maricourt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Forgues et boul. Maricourt", + "geography": { + "type": "Point", + "coordinates": [ + -73.4207213909113, + 45.482779530058 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8564012330692 + }, + "name": "boul. Maricourt et Forgues", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.420872555, + 45.482880867 + ] + }, + "is_frozen": false, + "integer_id": 972, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.419191, + 45.481972 + ] + }, + "id": 973, + "properties": { + "id": "d8baecf8-a12f-4e7f-9e2a-2cdfa71e72d0", + "code": "32837", + "data": { + "stops": [ + { + "id": "2837", + "code": "32837", + "data": { + "gtfs": { + "stop_id": "2837", + "stop_code": "32837", + "stop_name": "boul. Maricourt et Beauséjour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Maricourt et Beauséjour", + "geography": { + "type": "Point", + "coordinates": [ + -73.419191107897, + 45.4819719443946 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8410610799223 + }, + "name": "boul. Maricourt et Beauséjour", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.419191108, + 45.481971944 + ] + }, + "is_frozen": false, + "integer_id": 973, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.418144, + 45.482242 + ] + }, + "id": 974, + "properties": { + "id": "07f8e631-764d-44cf-ab3a-dcf1276de1d6", + "code": "32840", + "data": { + "stops": [ + { + "id": "2840", + "code": "32840", + "data": { + "gtfs": { + "stop_id": "2840", + "stop_code": "32840", + "stop_name": "av. Sidney et boul. Kimber", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Sidney et boul. Kimber", + "geography": { + "type": "Point", + "coordinates": [ + -73.4181437882355, + 45.4822423035 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8456239461631 + }, + "name": "av. Sidney et boul. Kimber", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.418143788, + 45.482242304 + ] + }, + "is_frozen": false, + "integer_id": 974, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.420246, + 45.483128 + ] + }, + "id": 975, + "properties": { + "id": "495fd0d8-631d-48a3-bc48-4ec746693d10", + "code": "32841", + "data": { + "stops": [ + { + "id": "2841", + "code": "32841", + "data": { + "gtfs": { + "stop_id": "2841", + "stop_code": "32841", + "stop_name": "boul. Kimber et Sirois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Sirois", + "geography": { + "type": "Point", + "coordinates": [ + -73.4200177818484, + 45.4830984849731 + ] + } + }, + { + "id": "2853", + "code": "32853", + "data": { + "gtfs": { + "stop_id": "2853", + "stop_code": "32853", + "stop_name": "boul. Kimber et Sirois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Sirois", + "geography": { + "type": "Point", + "coordinates": [ + -73.4204738145814, + 45.4831572933746 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8605704208311 + }, + "name": "boul. Kimber et Sirois", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.420245798, + 45.483127889 + ] + }, + "is_frozen": false, + "integer_id": 975, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.423559, + 45.484873 + ] + }, + "id": 976, + "properties": { + "id": "c4df5893-41b2-4d6a-81b5-7128fb72aba4", + "code": "32842", + "data": { + "stops": [ + { + "id": "2842", + "code": "32842", + "data": { + "gtfs": { + "stop_id": "2842", + "stop_code": "32842", + "stop_name": "boul. Kimber et Howard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Howard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4233803591504, + 45.484868297236 + ] + } + }, + { + "id": "2852", + "code": "32852", + "data": { + "gtfs": { + "stop_id": "2852", + "stop_code": "32852", + "stop_name": "boul. Kimber et Howard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Howard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4237382167749, + 45.4848782343485 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8900300891827 + }, + "name": "boul. Kimber et Howard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.423559288, + 45.484873266 + ] + }, + "is_frozen": false, + "integer_id": 976, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.425298, + 45.485856 + ] + }, + "id": 977, + "properties": { + "id": "5665bcec-62a1-4d01-9550-6900a57f083d", + "code": "32843", + "data": { + "stops": [ + { + "id": "2843", + "code": "32843", + "data": { + "gtfs": { + "stop_id": "2843", + "stop_code": "32843", + "stop_name": "boul. Kimber et Prince-Charles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Prince-Charles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4249919326717, + 45.4857744020859 + ] + } + }, + { + "id": "3470", + "code": "33470", + "data": { + "gtfs": { + "stop_id": "3470", + "stop_code": "33470", + "stop_name": "boul. Kimber et Prince-Charles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Prince-Charles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4256049663054, + 45.4859367752215 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.906611600437 + }, + "name": "boul. Kimber et Prince-Charles", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.425298449, + 45.485855589 + ] + }, + "is_frozen": false, + "integer_id": 977, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.423272, + 45.489044 + ] + }, + "id": 978, + "properties": { + "id": "0e836f4e-0231-42bf-9c3d-37ea2aef8934", + "code": "32844", + "data": { + "stops": [ + { + "id": "2844", + "code": "32844", + "data": { + "gtfs": { + "stop_id": "2844", + "stop_code": "32844", + "stop_name": "Prince-Charles et av. Trudeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Prince-Charles et av. Trudeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4232422483244, + 45.488931697545 + ] + } + }, + { + "id": "2849", + "code": "32849", + "data": { + "gtfs": { + "stop_id": "2849", + "stop_code": "32849", + "stop_name": "Prince-Charles et av. Trudeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Prince-Charles et av. Trudeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4233015113904, + 45.4891566986653 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9604409042987 + }, + "name": "Prince-Charles et av. Trudeau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.42327188, + 45.489044198 + ] + }, + "is_frozen": false, + "integer_id": 978, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.420988, + 45.492114 + ] + }, + "id": 979, + "properties": { + "id": "30c08115-a1b6-45b8-9122-c5fe99723d2e", + "code": "32845", + "data": { + "stops": [ + { + "id": "2845", + "code": "32845", + "data": { + "gtfs": { + "stop_id": "2845", + "stop_code": "32845", + "stop_name": "Prince-Charles et boul. Davis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Prince-Charles et boul. Davis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4211637198051, + 45.4918675462281 + ] + } + }, + { + "id": "2848", + "code": "32848", + "data": { + "gtfs": { + "stop_id": "2848", + "stop_code": "32848", + "stop_name": "Prince-Charles et boul. Davis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Prince-Charles et boul. Davis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4211295475598, + 45.4922236911007 + ] + } + }, + { + "id": "3498", + "code": "33498", + "data": { + "gtfs": { + "stop_id": "3498", + "stop_code": "33498", + "stop_name": "Prince-Charles et boul. Davis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Prince-Charles et boul. Davis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4208131950285, + 45.4923600092781 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0122693305618 + }, + "name": "Prince-Charles et boul. Davis", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.420988457, + 45.492113778 + ] + }, + "is_frozen": false, + "integer_id": 979, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.418909, + 45.495171 + ] + }, + "id": 980, + "properties": { + "id": "bf4259d8-23ae-478a-8a93-ec28083b908d", + "code": "32847", + "data": { + "stops": [ + { + "id": "2847", + "code": "32847", + "data": { + "gtfs": { + "stop_id": "2847", + "stop_code": "32847", + "stop_name": "Prince-Charles et av. Primot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Prince-Charles et av. Primot", + "geography": { + "type": "Point", + "coordinates": [ + -73.418922955331, + 45.4952951152384 + ] + } + }, + { + "id": "3417", + "code": "33417", + "data": { + "gtfs": { + "stop_id": "3417", + "stop_code": "33417", + "stop_name": "Prince-Charles et av. Primot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Prince-Charles et av. Primot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4188952921866, + 45.4950460924897 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0638907389498 + }, + "name": "Prince-Charles et av. Primot", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.418909124, + 45.495170604 + ] + }, + "is_frozen": false, + "integer_id": 980, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.425313, + 45.486328 + ] + }, + "id": 981, + "properties": { + "id": "037aae6d-413d-4b3d-8987-50e8714ef6c5", + "code": "32850", + "data": { + "stops": [ + { + "id": "2850", + "code": "32850", + "data": { + "gtfs": { + "stop_id": "2850", + "stop_code": "32850", + "stop_name": "Prince-Charles et boul. Kimber", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Prince-Charles et boul. Kimber", + "geography": { + "type": "Point", + "coordinates": [ + -73.4253130153994, + 45.4863280175929 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9145864588688 + }, + "name": "Prince-Charles et boul. Kimber", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.425313015, + 45.486328018 + ] + }, + "is_frozen": false, + "integer_id": 981, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.430695, + 45.484435 + ] + }, + "id": 982, + "properties": { + "id": "3b77dae0-2a5d-4b97-b5b6-65893df568aa", + "code": "32860", + "data": { + "stops": [ + { + "id": "2860", + "code": "32860", + "data": { + "gtfs": { + "stop_id": "2860", + "stop_code": "32860", + "stop_name": "Orchard et av. Grenier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Orchard et av. Grenier", + "geography": { + "type": "Point", + "coordinates": [ + -73.43069731342, + 45.4845393240766 + ] + } + }, + { + "id": "3322", + "code": "33322", + "data": { + "gtfs": { + "stop_id": "3322", + "stop_code": "33322", + "stop_name": "Orchard et av. Grenier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Orchard et av. Grenier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4306929845044, + 45.4843306579656 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8826323289682 + }, + "name": "Orchard et av. Grenier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.430695149, + 45.484434991 + ] + }, + "is_frozen": false, + "integer_id": 982, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466677, + 45.476031 + ] + }, + "id": 983, + "properties": { + "id": "1758013c-4193-42f0-a495-c36930003f5b", + "code": "32867", + "data": { + "stops": [ + { + "id": "2867", + "code": "32867", + "data": { + "gtfs": { + "stop_id": "2867", + "stop_code": "32867", + "stop_name": "boul. Taschereau et COMPLEXE 4 GLACES", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et COMPLEXE 4 GLACES", + "geography": { + "type": "Point", + "coordinates": [ + -73.4666766088138, + 45.476031499291 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7408205714422 + }, + "name": "boul. Taschereau et COMPLEXE 4 GLACES", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466676609, + 45.476031499 + ] + }, + "is_frozen": false, + "integer_id": 983, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465958, + 45.476365 + ] + }, + "id": 984, + "properties": { + "id": "7eaffbff-c86c-4810-b174-bda8780c04b4", + "code": "32869", + "data": { + "stops": [ + { + "id": "2869", + "code": "32869", + "data": { + "gtfs": { + "stop_id": "2869", + "stop_code": "32869", + "stop_name": "boul. Taschereau et Authier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Authier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4659576926653, + 45.4763651828334 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7464504049497 + }, + "name": "boul. Taschereau et Authier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465957693, + 45.476365183 + ] + }, + "is_frozen": false, + "integer_id": 984, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465198, + 45.478736 + ] + }, + "id": 985, + "properties": { + "id": "e76a6766-6730-419b-bd29-f65b80bb6721", + "code": "32870", + "data": { + "stops": [ + { + "id": "2870", + "code": "32870", + "data": { + "gtfs": { + "stop_id": "2870", + "stop_code": "32870", + "stop_name": "boul. Taschereau et Angèle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Angèle", + "geography": { + "type": "Point", + "coordinates": [ + -73.465198243234, + 45.478735758536 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7864490218243 + }, + "name": "boul. Taschereau et Angèle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465198243, + 45.478735759 + ] + }, + "is_frozen": false, + "integer_id": 985, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442031, + 45.495845 + ] + }, + "id": 986, + "properties": { + "id": "662f52e5-0ed5-4ba7-81cb-757051eefa2c", + "code": "32871", + "data": { + "stops": [ + { + "id": "2871", + "code": "32871", + "data": { + "gtfs": { + "stop_id": "2871", + "stop_code": "32871", + "stop_name": "boul. Gareau et boul. Kimber", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et boul. Kimber", + "geography": { + "type": "Point", + "coordinates": [ + -73.442031398439, + 45.495844586795 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0752735818361 + }, + "name": "boul. Gareau et boul. Kimber", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442031398, + 45.495844587 + ] + }, + "is_frozen": false, + "integer_id": 986, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441076, + 45.497544 + ] + }, + "id": 987, + "properties": { + "id": "015193c6-e760-4b43-b20c-28dc44f0558a", + "code": "32872", + "data": { + "stops": [ + { + "id": "2872", + "code": "32872", + "data": { + "gtfs": { + "stop_id": "2872", + "stop_code": "32872", + "stop_name": "boul. Gareau et av. Lapointe", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et av. Lapointe", + "geography": { + "type": "Point", + "coordinates": [ + -73.440961429071, + 45.4973692744731 + ] + } + }, + { + "id": "2936", + "code": "32936", + "data": { + "gtfs": { + "stop_id": "2936", + "stop_code": "32936", + "stop_name": "boul. Gareau et av. Lapointe", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et av. Lapointe", + "geography": { + "type": "Point", + "coordinates": [ + -73.4411907679762, + 45.4977180363941 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1039707934804 + }, + "name": "boul. Gareau et av. Lapointe", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441076099, + 45.497543655 + ] + }, + "is_frozen": false, + "integer_id": 987, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.436945, + 45.502141 + ] + }, + "id": 988, + "properties": { + "id": "3b96e6d6-e4f7-4e24-903e-8fb3993ff6c9", + "code": "32874", + "data": { + "stops": [ + { + "id": "2874", + "code": "32874", + "data": { + "gtfs": { + "stop_id": "2874", + "stop_code": "32874", + "stop_name": "boul. Gareau et Joseph-Payette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et Joseph-Payette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4365780264909, + 45.5019538990579 + ] + } + }, + { + "id": "2934", + "code": "32934", + "data": { + "gtfs": { + "stop_id": "2934", + "stop_code": "32934", + "stop_name": "boul. Gareau et av. Thibault", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et av. Thibault", + "geography": { + "type": "Point", + "coordinates": [ + -73.4366351336886, + 45.5022666046595 + ] + } + }, + { + "id": "3999", + "code": "33999", + "data": { + "gtfs": { + "stop_id": "3999", + "stop_code": "33999", + "stop_name": "av. Thibault et boul. Gareau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Thibault et boul. Gareau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4369717292483, + 45.5023277219554 + ] + } + }, + { + "id": "4031", + "code": "34031", + "data": { + "gtfs": { + "stop_id": "4031", + "stop_code": "34031", + "stop_name": "av. Thibault et boul. Gareau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Thibault et boul. Gareau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4373114390867, + 45.5022733693957 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1816295076366 + }, + "name": "boul. Gareau et Joseph-Payette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.436944733, + 45.502140811 + ] + }, + "is_frozen": false, + "integer_id": 988, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.433822, + 45.502706 + ] + }, + "id": 989, + "properties": { + "id": "22b915c8-bf8d-4e3f-9fa4-f7abce5fa7bb", + "code": "32875", + "data": { + "stops": [ + { + "id": "2875", + "code": "32875", + "data": { + "gtfs": { + "stop_id": "2875", + "stop_code": "32875", + "stop_name": "boul. Gareau et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4338220144619, + 45.5027061360548 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1911807131922 + }, + "name": "boul. Gareau et Passage piétonnier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.433822014, + 45.502706136 + ] + }, + "is_frozen": false, + "integer_id": 989, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.43165, + 45.502991 + ] + }, + "id": 990, + "properties": { + "id": "3c0bf327-9e6c-4db5-9401-9cdab070b521", + "code": "32876", + "data": { + "stops": [ + { + "id": "2876", + "code": "32876", + "data": { + "gtfs": { + "stop_id": "2876", + "stop_code": "32876", + "stop_name": "boul. Gareau et Plante", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et Plante", + "geography": { + "type": "Point", + "coordinates": [ + -73.4316502347375, + 45.5029905169028 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1959854576714 + }, + "name": "boul. Gareau et Plante", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431650235, + 45.502990517 + ] + }, + "is_frozen": false, + "integer_id": 990, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.429989, + 45.503612 + ] + }, + "id": 991, + "properties": { + "id": "959a039b-3225-4812-af55-0e181302cf5d", + "code": "32877", + "data": { + "stops": [ + { + "id": "2877", + "code": "32877", + "data": { + "gtfs": { + "stop_id": "2877", + "stop_code": "32877", + "stop_name": "boul. Gareau et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4299889461003, + 45.5036124891984 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2064942042824 + }, + "name": "boul. Gareau et boul. Cousineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.429988946, + 45.503612489 + ] + }, + "is_frozen": false, + "integer_id": 991, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.426944, + 45.501271 + ] + }, + "id": 992, + "properties": { + "id": "2b273df9-aa5e-4062-ae81-92ee60a67a5c", + "code": "32878", + "data": { + "stops": [ + { + "id": "2878", + "code": "32878", + "data": { + "gtfs": { + "stop_id": "2878", + "stop_code": "32878", + "stop_name": "Perras et Petit", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Perras et Petit", + "geography": { + "type": "Point", + "coordinates": [ + -73.4271682035333, + 45.5012557299046 + ] + } + }, + { + "id": "2929", + "code": "32929", + "data": { + "gtfs": { + "stop_id": "2929", + "stop_code": "32929", + "stop_name": "Perras et Petit", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Perras et Petit", + "geography": { + "type": "Point", + "coordinates": [ + -73.4271282979706, + 45.500969660453 + ] + } + }, + { + "id": "2930", + "code": "32930", + "data": { + "gtfs": { + "stop_id": "2930", + "stop_code": "32930", + "stop_name": "Perras et Pasteur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Perras et Pasteur", + "geography": { + "type": "Point", + "coordinates": [ + -73.4267203572867, + 45.5015715431392 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1669278213448 + }, + "name": "Perras et Petit", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.42694428, + 45.501270602 + ] + }, + "is_frozen": false, + "integer_id": 992, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.42807, + 45.499794 + ] + }, + "id": 993, + "properties": { + "id": "450e4ca7-36c4-47db-b1ed-be5672eba5df", + "code": "32879", + "data": { + "stops": [ + { + "id": "2879", + "code": "32879", + "data": { + "gtfs": { + "stop_id": "2879", + "stop_code": "32879", + "stop_name": "Perras et civique 3170", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Perras et civique 3170", + "geography": { + "type": "Point", + "coordinates": [ + -73.4282110814519, + 45.499778053482 + ] + } + }, + { + "id": "4013", + "code": "34013", + "data": { + "gtfs": { + "stop_id": "4013", + "stop_code": "34013", + "stop_name": "Perras et civique 3153", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Perras et civique 3153", + "geography": { + "type": "Point", + "coordinates": [ + -73.4279295335765, + 45.4998093707191 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1419781467882 + }, + "name": "Perras et civique 3170", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.428070308, + 45.499793712 + ] + }, + "is_frozen": false, + "integer_id": 993, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.429017, + 45.49851 + ] + }, + "id": 994, + "properties": { + "id": "467e0f7f-f932-4d5e-ba82-9bb0389d7158", + "code": "32880", + "data": { + "stops": [ + { + "id": "2880", + "code": "32880", + "data": { + "gtfs": { + "stop_id": "2880", + "stop_code": "32880", + "stop_name": "Perras et place Perras", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Perras et place Perras", + "geography": { + "type": "Point", + "coordinates": [ + -73.4290568167749, + 45.4985942238475 + ] + } + }, + { + "id": "2927", + "code": "32927", + "data": { + "gtfs": { + "stop_id": "2927", + "stop_code": "32927", + "stop_name": "Perras et place Perras", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Perras et place Perras", + "geography": { + "type": "Point", + "coordinates": [ + -73.4289765797052, + 45.4984263180339 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1202980572119 + }, + "name": "Perras et place Perras", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.429016698, + 45.498510271 + ] + }, + "is_frozen": false, + "integer_id": 994, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.430935, + 45.49851 + ] + }, + "id": 995, + "properties": { + "id": "747c9196-e225-4f37-90ad-0a4fef1b26af", + "code": "32881", + "data": { + "stops": [ + { + "id": "2881", + "code": "32881", + "data": { + "gtfs": { + "stop_id": "2881", + "stop_code": "32881", + "stop_name": "Perras et de Port-Royal", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Perras et de Port-Royal", + "geography": { + "type": "Point", + "coordinates": [ + -73.4308723290887, + 45.4986886876367 + ] + } + }, + { + "id": "2926", + "code": "32926", + "data": { + "gtfs": { + "stop_id": "2926", + "stop_code": "32926", + "stop_name": "de Port-Royal et Perras", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Port-Royal et Perras", + "geography": { + "type": "Point", + "coordinates": [ + -73.4309979385884, + 45.4983310225986 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1202910303113 + }, + "name": "Perras et de Port-Royal", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.430935134, + 45.498509855 + ] + }, + "is_frozen": false, + "integer_id": 995, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.431853, + 45.49437 + ] + }, + "id": 996, + "properties": { + "id": "f1d23184-1962-40c7-b052-f1f4b7010174", + "code": "32883", + "data": { + "stops": [ + { + "id": "2883", + "code": "32883", + "data": { + "gtfs": { + "stop_id": "2883", + "stop_code": "32883", + "stop_name": "Labrosse et tsse Labrosse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Labrosse et tsse Labrosse", + "geography": { + "type": "Point", + "coordinates": [ + -73.4318709270398, + 45.494491255003 + ] + } + }, + { + "id": "2924", + "code": "32924", + "data": { + "gtfs": { + "stop_id": "2924", + "stop_code": "32924", + "stop_name": "Labrosse et tsse Labrosse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Labrosse et tsse Labrosse", + "geography": { + "type": "Point", + "coordinates": [ + -73.4318350629011, + 45.4942490755789 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0503727160801 + }, + "name": "Labrosse et tsse Labrosse", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431852995, + 45.494370165 + ] + }, + "is_frozen": false, + "integer_id": 996, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.433551, + 45.493457 + ] + }, + "id": 997, + "properties": { + "id": "0de64186-5455-4222-b348-dab3af89fb3c", + "code": "32884", + "data": { + "stops": [ + { + "id": "2884", + "code": "32884", + "data": { + "gtfs": { + "stop_id": "2884", + "stop_code": "32884", + "stop_name": "Labrosse et de Lausanne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Labrosse et de Lausanne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4332832099654, + 45.4934399535349 + ] + } + }, + { + "id": "2923", + "code": "32923", + "data": { + "gtfs": { + "stop_id": "2923", + "stop_code": "32923", + "stop_name": "Labrosse et de Lausanne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Labrosse et de Lausanne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4338183886581, + 45.4934748683776 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0349585835979 + }, + "name": "Labrosse et de Lausanne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.433550799, + 45.493457411 + ] + }, + "is_frozen": false, + "integer_id": 997, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.435486, + 45.494092 + ] + }, + "id": 998, + "properties": { + "id": "648c28de-ca97-4dbf-950c-84a7af5578c7", + "code": "32885", + "data": { + "stops": [ + { + "id": "2885", + "code": "32885", + "data": { + "gtfs": { + "stop_id": "2885", + "stop_code": "32885", + "stop_name": "Labrosse et Limbourg", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Labrosse et Limbourg", + "geography": { + "type": "Point", + "coordinates": [ + -73.4353216763585, + 45.4941223154093 + ] + } + }, + { + "id": "2922", + "code": "32922", + "data": { + "gtfs": { + "stop_id": "2922", + "stop_code": "32922", + "stop_name": "Labrosse et Limbourg", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Labrosse et Limbourg", + "geography": { + "type": "Point", + "coordinates": [ + -73.4356509841092, + 45.4940621029326 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0456786558718 + }, + "name": "Labrosse et Limbourg", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.43548633, + 45.494092209 + ] + }, + "is_frozen": false, + "integer_id": 998, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437402, + 45.49459 + ] + }, + "id": 999, + "properties": { + "id": "20955fbd-1587-4ce3-bc7b-59e84c9c964d", + "code": "32886", + "data": { + "stops": [ + { + "id": "2886", + "code": "32886", + "data": { + "gtfs": { + "stop_id": "2886", + "stop_code": "32886", + "stop_name": "Labrosse et Labelle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Labrosse et Labelle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4372718044794, + 45.4946587770707 + ] + } + }, + { + "id": "2921", + "code": "32921", + "data": { + "gtfs": { + "stop_id": "2921", + "stop_code": "32921", + "stop_name": "Labelle et Labrosse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Labelle et Labrosse", + "geography": { + "type": "Point", + "coordinates": [ + -73.4375312730638, + 45.4945204728044 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0540789571673 + }, + "name": "Labrosse et Labelle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437401539, + 45.494589625 + ] + }, + "is_frozen": false, + "integer_id": 999, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.438363, + 45.493538 + ] + }, + "id": 1000, + "properties": { + "id": "3437d9a1-68b8-4d3b-8599-7f7b86a577b8", + "code": "32887", + "data": { + "stops": [ + { + "id": "2887", + "code": "32887", + "data": { + "gtfs": { + "stop_id": "2887", + "stop_code": "32887", + "stop_name": "Labelle et boul. Kimber", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Labelle et boul. Kimber", + "geography": { + "type": "Point", + "coordinates": [ + -73.4386156955795, + 45.4933438571536 + ] + } + }, + { + "id": "2920", + "code": "32920", + "data": { + "gtfs": { + "stop_id": "2920", + "stop_code": "32920", + "stop_name": "Labelle et Loiselle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Labelle et Loiselle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4381101826888, + 45.493732971413 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0363264917364 + }, + "name": "Labelle et boul. Kimber", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438362939, + 45.493538414 + ] + }, + "is_frozen": false, + "integer_id": 1000, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440838, + 45.494394 + ] + }, + "id": 1001, + "properties": { + "id": "f5c53aa7-466b-4eea-b3e2-5399d8d7f806", + "code": "32888", + "data": { + "stops": [ + { + "id": "2888", + "code": "32888", + "data": { + "gtfs": { + "stop_id": "2888", + "stop_code": "32888", + "stop_name": "boul. Kimber et civique 4938", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et civique 4938", + "geography": { + "type": "Point", + "coordinates": [ + -73.4407186004514, + 45.4944072630506 + ] + } + }, + { + "id": "2919", + "code": "32919", + "data": { + "gtfs": { + "stop_id": "2919", + "stop_code": "32919", + "stop_name": "boul. Kimber et civique 4934", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et civique 4934", + "geography": { + "type": "Point", + "coordinates": [ + -73.4409577853682, + 45.4943801927308 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0507706460367 + }, + "name": "boul. Kimber et civique 4938", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440838193, + 45.494393728 + ] + }, + "is_frozen": false, + "integer_id": 1001, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445745, + 45.49714 + ] + }, + "id": 1002, + "properties": { + "id": "e9e722ad-a155-4750-9a2a-a126be84e7ec", + "code": "32889", + "data": { + "stops": [ + { + "id": "2889", + "code": "32889", + "data": { + "gtfs": { + "stop_id": "2889", + "stop_code": "32889", + "stop_name": "boul. Kimber et boul. Losch", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et boul. Losch", + "geography": { + "type": "Point", + "coordinates": [ + -73.4455419594756, + 45.4971375905968 + ] + } + }, + { + "id": "2917", + "code": "32917", + "data": { + "gtfs": { + "stop_id": "2917", + "stop_code": "32917", + "stop_name": "boul. Kimber et boul. Losch", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et boul. Losch", + "geography": { + "type": "Point", + "coordinates": [ + -73.4459490028107, + 45.4971422831444 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0971517749852 + }, + "name": "boul. Kimber et boul. Losch", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445745481, + 45.497139937 + ] + }, + "is_frozen": false, + "integer_id": 1002, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455859, + 45.493566 + ] + }, + "id": 1003, + "properties": { + "id": "31cd9a31-1ee8-4458-8681-91c1c006b9aa", + "code": "32894", + "data": { + "stops": [ + { + "id": "2894", + "code": "32894", + "data": { + "gtfs": { + "stop_id": "2894", + "stop_code": "32894", + "stop_name": "8e Avenue et Robillard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "8e Avenue et Robillard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4557624675882, + 45.4935406789173 + ] + } + }, + { + "id": "2915", + "code": "32915", + "data": { + "gtfs": { + "stop_id": "2915", + "stop_code": "32915", + "stop_name": "Robillard et 8e Avenue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Robillard et 8e Avenue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4558826768216, + 45.4936610301207 + ] + } + }, + { + "id": "5762", + "code": "30531", + "data": { + "gtfs": { + "stop_id": "5762", + "stop_code": "30531", + "stop_name": "Robillard et 8e Avenue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Robillard et 8e Avenue", + "geography": { + "type": "Point", + "coordinates": [ + -73.4559562895052, + 45.4934707117144 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0367901629713 + }, + "name": "8e Avenue et Robillard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455859379, + 45.493565871 + ] + }, + "is_frozen": false, + "integer_id": 1003, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453227, + 45.495568 + ] + }, + "id": 1004, + "properties": { + "id": "c335387f-3250-40f6-a22d-cdf683517398", + "code": "32895", + "data": { + "stops": [ + { + "id": "2895", + "code": "32895", + "data": { + "gtfs": { + "stop_id": "2895", + "stop_code": "32895", + "stop_name": "7e Avenue et Murray", + "location_type": 0, + "parent_station": "" + } + }, + "name": "7e Avenue et Murray", + "geography": { + "type": "Point", + "coordinates": [ + -73.4533869297264, + 45.4958002935446 + ] + } + }, + { + "id": "2914", + "code": "32914", + "data": { + "gtfs": { + "stop_id": "2914", + "stop_code": "32914", + "stop_name": "7e Avenue et Robillard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "7e Avenue et Robillard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4530667267553, + 45.4953351553383 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0705976167321 + }, + "name": "7e Avenue et Murray", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453226828, + 45.495567724 + ] + }, + "is_frozen": false, + "integer_id": 1004, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450161, + 45.497913 + ] + }, + "id": 1005, + "properties": { + "id": "f46c44d6-0823-444d-9902-d03499774c08", + "code": "32896", + "data": { + "stops": [ + { + "id": "2896", + "code": "32896", + "data": { + "gtfs": { + "stop_id": "2896", + "stop_code": "32896", + "stop_name": "Murray et Montgomery", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Murray et Montgomery", + "geography": { + "type": "Point", + "coordinates": [ + -73.4504784176006, + 45.4976474581846 + ] + } + }, + { + "id": "2913", + "code": "32913", + "data": { + "gtfs": { + "stop_id": "2913", + "stop_code": "32913", + "stop_name": "Montgomery et Murray", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montgomery et Murray", + "geography": { + "type": "Point", + "coordinates": [ + -73.4504221385203, + 45.4980441560307 + ] + } + }, + { + "id": "5670", + "code": "30438", + "data": { + "gtfs": { + "stop_id": "5670", + "stop_code": "30438", + "stop_name": "Murray et Montgomery", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Murray et Montgomery", + "geography": { + "type": "Point", + "coordinates": [ + -73.4498429956954, + 45.4981785072419 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1102090730105 + }, + "name": "Murray et Montgomery", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450160707, + 45.497912983 + ] + }, + "is_frozen": false, + "integer_id": 1005, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462897, + 45.49595 + ] + }, + "id": 1006, + "properties": { + "id": "bfc273c8-ec5d-4e76-b6a3-3d443d9f65a2", + "code": "32898", + "data": { + "stops": [ + { + "id": "2898", + "code": "32898", + "data": { + "gtfs": { + "stop_id": "2898", + "stop_code": "32898", + "stop_name": "Montgomery et Lionel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montgomery et Lionel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4628405857623, + 45.496082711717 + ] + } + }, + { + "id": "2907", + "code": "32907", + "data": { + "gtfs": { + "stop_id": "2907", + "stop_code": "32907", + "stop_name": "Montgomery et Lionel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montgomery et Lionel", + "geography": { + "type": "Point", + "coordinates": [ + -73.462954315475, + 45.4958169049999 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0770506870285 + }, + "name": "Montgomery et Lionel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462897451, + 45.495949808 + ] + }, + "is_frozen": false, + "integer_id": 1006, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.470264, + 45.489791 + ] + }, + "id": 1007, + "properties": { + "id": "d5196968-9845-4e31-966a-0ac0f5f77b83", + "code": "32901", + "data": { + "stops": [ + { + "id": "2901", + "code": "32901", + "data": { + "gtfs": { + "stop_id": "2901", + "stop_code": "32901", + "stop_name": "Régent et Mance", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Régent et Mance", + "geography": { + "type": "Point", + "coordinates": [ + -73.4702565250695, + 45.4899119493419 + ] + } + }, + { + "id": "2904", + "code": "32904", + "data": { + "gtfs": { + "stop_id": "2904", + "stop_code": "32904", + "stop_name": "Régent et Mance", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Régent et Mance", + "geography": { + "type": "Point", + "coordinates": [ + -73.4702723325138, + 45.4896693264162 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9730434244625 + }, + "name": "Régent et Mance", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.470264429, + 45.489790638 + ] + }, + "is_frozen": false, + "integer_id": 1007, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.471381, + 45.488819 + ] + }, + "id": 1008, + "properties": { + "id": "e089008c-4123-4897-95b5-a61e5e049f48", + "code": "32902", + "data": { + "stops": [ + { + "id": "2902", + "code": "32902", + "data": { + "gtfs": { + "stop_id": "2902", + "stop_code": "32902", + "stop_name": "Régent et de Mont-Royal", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Régent et de Mont-Royal", + "geography": { + "type": "Point", + "coordinates": [ + -73.4714000451406, + 45.489054119319 + ] + } + }, + { + "id": "2903", + "code": "32903", + "data": { + "gtfs": { + "stop_id": "2903", + "stop_code": "32903", + "stop_name": "Régent et boul. Taschereau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Régent et boul. Taschereau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4712541796422, + 45.4889317199484 + ] + } + }, + { + "id": "3941", + "code": "33941", + "data": { + "gtfs": { + "stop_id": "3941", + "stop_code": "33941", + "stop_name": "boul. Taschereau et Régent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Régent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4715075838832, + 45.4885844917468 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9566440372063 + }, + "name": "Régent et de Mont-Royal", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.471380882, + 45.488819306 + ] + }, + "is_frozen": false, + "integer_id": 1008, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44296, + 45.495469 + ] + }, + "id": 1009, + "properties": { + "id": "a03c8e5e-b707-45da-b2b1-2e8109893679", + "code": "32918", + "data": { + "stops": [ + { + "id": "2918", + "code": "32918", + "data": { + "gtfs": { + "stop_id": "2918", + "stop_code": "32918", + "stop_name": "boul. Kimber et boul. Gareau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et boul. Gareau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4429601108449, + 45.4954689041406 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.068928653021 + }, + "name": "boul. Kimber et boul. Gareau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442960111, + 45.495468904 + ] + }, + "is_frozen": false, + "integer_id": 1009, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.431412, + 45.503343 + ] + }, + "id": 1010, + "properties": { + "id": "175e7e04-90a9-48d6-93fb-0788b2b7dc79", + "code": "32932", + "data": { + "stops": [ + { + "id": "2932", + "code": "32932", + "data": { + "gtfs": { + "stop_id": "2932", + "stop_code": "32932", + "stop_name": "boul. Gareau et Plante", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et Plante", + "geography": { + "type": "Point", + "coordinates": [ + -73.4314122226234, + 45.5033427203719 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2019361850121 + }, + "name": "boul. Gareau et Plante", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431412223, + 45.50334272 + ] + }, + "is_frozen": false, + "integer_id": 1010, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.433788, + 45.50298 + ] + }, + "id": 1011, + "properties": { + "id": "cb99f0c8-b0c6-47e9-9827-66190161063b", + "code": "32933", + "data": { + "stops": [ + { + "id": "2933", + "code": "32933", + "data": { + "gtfs": { + "stop_id": "2933", + "stop_code": "32933", + "stop_name": "boul. Gareau et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4337875033793, + 45.502980364827 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1958139338415 + }, + "name": "boul. Gareau et Passage piétonnier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.433787503, + 45.502980365 + ] + }, + "is_frozen": false, + "integer_id": 1011, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439907, + 45.49953 + ] + }, + "id": 1012, + "properties": { + "id": "2eba5ff6-a088-4286-aafa-5c6b0646f734", + "code": "32935", + "data": { + "stops": [ + { + "id": "2935", + "code": "32935", + "data": { + "gtfs": { + "stop_id": "2935", + "stop_code": "32935", + "stop_name": "boul. Gareau et boul. Davis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et boul. Davis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4399066619085, + 45.4995303381401 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1375290717557 + }, + "name": "boul. Gareau et boul. Davis", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439906662, + 45.499530338 + ] + }, + "is_frozen": false, + "integer_id": 1012, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442385, + 45.495955 + ] + }, + "id": 1013, + "properties": { + "id": "280e5a85-9e1a-4b2a-8fde-6cc3d439dfe9", + "code": "32937", + "data": { + "stops": [ + { + "id": "2937", + "code": "32937", + "data": { + "gtfs": { + "stop_id": "2937", + "stop_code": "32937", + "stop_name": "boul. Gareau et boul. Kimber", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et boul. Kimber", + "geography": { + "type": "Point", + "coordinates": [ + -73.4423853815047, + 45.4959550147894 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0771386296792 + }, + "name": "boul. Gareau et boul. Kimber", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442385382, + 45.495955015 + ] + }, + "is_frozen": false, + "integer_id": 1013, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448588, + 45.61849 + ] + }, + "id": 1014, + "properties": { + "id": "fe768f5e-31ce-413a-b9fa-a7bf91a912eb", + "code": "32938", + "data": { + "stops": [ + { + "id": "2938", + "code": "32938", + "data": { + "gtfs": { + "stop_id": "2938", + "stop_code": "32938", + "stop_name": "boul. du Fort-Saint-Louis et De Varennes sud", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et De Varennes sud", + "geography": { + "type": "Point", + "coordinates": [ + -73.4485878525848, + 45.6184898278935 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.1533636744894 + }, + "name": "boul. du Fort-Saint-Louis et De Varennes sud", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448587853, + 45.618489828 + ] + }, + "is_frozen": false, + "integer_id": 1014, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456431, + 45.611806 + ] + }, + "id": 1015, + "properties": { + "id": "204b558a-c106-4589-888d-4bd6528787b5", + "code": "32939", + "data": { + "stops": [ + { + "id": "2939", + "code": "32939", + "data": { + "gtfs": { + "stop_id": "2939", + "stop_code": "32939", + "stop_name": "boul. Marie-Victorin et Louis-H.-La Fontaine nord", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Louis-H.-La Fontaine nord", + "geography": { + "type": "Point", + "coordinates": [ + -73.4563532382431, + 45.611729748518 + ] + } + }, + { + "id": "3869", + "code": "33869", + "data": { + "gtfs": { + "stop_id": "3869", + "stop_code": "33869", + "stop_name": "boul. Marie-Victorin et Louis-H.-La Fontaine nord", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Louis-H.-La Fontaine nord", + "geography": { + "type": "Point", + "coordinates": [ + -73.4565084491443, + 45.611881425664 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.0397599512157 + }, + "name": "boul. Marie-Victorin et Louis-H.-La Fontaine nord", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456430844, + 45.611805587 + ] + }, + "is_frozen": false, + "integer_id": 1015, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437525, + 45.55133 + ] + }, + "id": 1016, + "properties": { + "id": "b1e0c9f3-01ed-4b74-ab1d-f413050d3022", + "code": "32941", + "data": { + "stops": [ + { + "id": "2941", + "code": "32941", + "data": { + "gtfs": { + "stop_id": "2941", + "stop_code": "32941", + "stop_name": "ch. Du Tremblay et Maurice-Savoie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Maurice-Savoie", + "geography": { + "type": "Point", + "coordinates": [ + -73.437601383143, + 45.5514100990904 + ] + } + }, + { + "id": "4071", + "code": "34071", + "data": { + "gtfs": { + "stop_id": "4071", + "stop_code": "34071", + "stop_name": "ch. Du Tremblay et Maurice-Savoie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Maurice-Savoie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4374481038679, + 45.5512496933892 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.013747928724 + }, + "name": "ch. Du Tremblay et Maurice-Savoie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437524744, + 45.551329896 + ] + }, + "is_frozen": false, + "integer_id": 1016, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440816, + 45.465756 + ] + }, + "id": 1017, + "properties": { + "id": "596478dc-5795-41d8-b76f-e8b99c5314f6", + "code": "32944", + "data": { + "stops": [ + { + "id": "2944", + "code": "32944", + "data": { + "gtfs": { + "stop_id": "2944", + "stop_code": "32944", + "stop_name": "av. Bienvenue et av. Baudelaire", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienvenue et av. Baudelaire", + "geography": { + "type": "Point", + "coordinates": [ + -73.4408157209786, + 45.4657561100834 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5675051757479 + }, + "name": "av. Bienvenue et av. Baudelaire", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440815721, + 45.46575611 + ] + }, + "is_frozen": false, + "integer_id": 1017, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.365336, + 45.477999 + ] + }, + "id": 1018, + "properties": { + "id": "d4214201-daf1-434d-b42f-8c8d41dcb39c", + "code": "32946", + "data": { + "stops": [ + { + "id": "2946", + "code": "32946", + "data": { + "gtfs": { + "stop_id": "2946", + "stop_code": "32946", + "stop_name": "ch. de Chambly et Boileau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Boileau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3654047004762, + 45.477936722678 + ] + } + }, + { + "id": "2967", + "code": "32967", + "data": { + "gtfs": { + "stop_id": "2967", + "stop_code": "32967", + "stop_name": "ch. de Chambly et Boileau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Boileau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3652665393575, + 45.478060387749 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7740096786159 + }, + "name": "ch. de Chambly et Boileau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.36533562, + 45.477998555 + ] + }, + "is_frozen": false, + "integer_id": 1018, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.358901, + 45.474997 + ] + }, + "id": 1019, + "properties": { + "id": "8a9ec4a8-34de-402b-ac5c-aa964c85104b", + "code": "32947", + "data": { + "stops": [ + { + "id": "2947", + "code": "32947", + "data": { + "gtfs": { + "stop_id": "2947", + "stop_code": "32947", + "stop_name": "ch. de Chambly et montée Daniel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et montée Daniel", + "geography": { + "type": "Point", + "coordinates": [ + -73.3590045045048, + 45.4749450400973 + ] + } + }, + { + "id": "2966", + "code": "32966", + "data": { + "gtfs": { + "stop_id": "2966", + "stop_code": "32966", + "stop_name": "ch. de Chambly et montée Daniel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et montée Daniel", + "geography": { + "type": "Point", + "coordinates": [ + -73.358797605013, + 45.4750485738391 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7233641341188 + }, + "name": "ch. de Chambly et montée Daniel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.358901055, + 45.474996807 + ] + }, + "is_frozen": false, + "integer_id": 1019, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.355145, + 45.472758 + ] + }, + "id": 1020, + "properties": { + "id": "e66f2736-29ec-4b36-b206-47f7af7309b0", + "code": "32948", + "data": { + "stops": [ + { + "id": "2948", + "code": "32948", + "data": { + "gtfs": { + "stop_id": "2948", + "stop_code": "32948", + "stop_name": "ch. de Chambly et Gagnon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Gagnon", + "geography": { + "type": "Point", + "coordinates": [ + -73.3549072023263, + 45.4724701340804 + ] + } + }, + { + "id": "2965", + "code": "32965", + "data": { + "gtfs": { + "stop_id": "2965", + "stop_code": "32965", + "stop_name": "ch. de Chambly et Gagnon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Gagnon", + "geography": { + "type": "Point", + "coordinates": [ + -73.3553837404539, + 45.4730466410154 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6856026999207 + }, + "name": "ch. de Chambly et Gagnon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.355145471, + 45.472758388 + ] + }, + "is_frozen": false, + "integer_id": 1020, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.351423, + 45.470284 + ] + }, + "id": 1021, + "properties": { + "id": "4dd490ae-1643-4ca9-948e-eb5c251b5754", + "code": "32949", + "data": { + "stops": [ + { + "id": "2949", + "code": "32949", + "data": { + "gtfs": { + "stop_id": "2949", + "stop_code": "32949", + "stop_name": "ch. de Chambly et Doyon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Doyon", + "geography": { + "type": "Point", + "coordinates": [ + -73.3515081965718, + 45.4702212534156 + ] + } + }, + { + "id": "2964", + "code": "32964", + "data": { + "gtfs": { + "stop_id": "2964", + "stop_code": "32964", + "stop_name": "ch. de Chambly et Doyon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Doyon", + "geography": { + "type": "Point", + "coordinates": [ + -73.3513375489041, + 45.4703462075442 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6438611668243 + }, + "name": "ch. de Chambly et Doyon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.351422873, + 45.47028373 + ] + }, + "is_frozen": false, + "integer_id": 1021, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.34938, + 45.468547 + ] + }, + "id": 1022, + "properties": { + "id": "387ad44c-0d6a-4a89-821b-3e0834eed8e2", + "code": "32950", + "data": { + "stops": [ + { + "id": "2950", + "code": "32950", + "data": { + "gtfs": { + "stop_id": "2950", + "stop_code": "32950", + "stop_name": "Pacific et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.3495496815334, + 45.4684190226183 + ] + } + }, + { + "id": "2963", + "code": "32963", + "data": { + "gtfs": { + "stop_id": "2963", + "stop_code": "32963", + "stop_name": "Pacific et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.3492100301201, + 45.4686755121066 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.614574456342 + }, + "name": "Pacific et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.349379856, + 45.468547267 + ] + }, + "is_frozen": false, + "integer_id": 1022, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.351145, + 45.466108 + ] + }, + "id": 1023, + "properties": { + "id": "b966dc8d-04a6-41da-9b2d-4c18b27bb13f", + "code": "32951", + "data": { + "stops": [ + { + "id": "2951", + "code": "32951", + "data": { + "gtfs": { + "stop_id": "2951", + "stop_code": "32951", + "stop_name": "Pacific et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3513037486787, + 45.4660765763984 + ] + } + }, + { + "id": "2962", + "code": "32962", + "data": { + "gtfs": { + "stop_id": "2962", + "stop_code": "32962", + "stop_name": "Pacific et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3509854776313, + 45.4661391510691 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5734366745805 + }, + "name": "Pacific et boul. Cousineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.351144613, + 45.466107864 + ] + }, + "is_frozen": false, + "integer_id": 1023, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.351685, + 45.465416 + ] + }, + "id": 1024, + "properties": { + "id": "e9563d31-b4cc-432d-bbf1-a6ee47aee4e9", + "code": "32952", + "data": { + "stops": [ + { + "id": "2952", + "code": "32952", + "data": { + "gtfs": { + "stop_id": "2952", + "stop_code": "32952", + "stop_name": "Pacific et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3518621996241, + 45.4654024152689 + ] + } + }, + { + "id": "2961", + "code": "32961", + "data": { + "gtfs": { + "stop_id": "2961", + "stop_code": "32961", + "stop_name": "Pacific et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3515080612179, + 45.4654289509215 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.561764784568 + }, + "name": "Pacific et boul. Cousineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.35168513, + 45.465415683 + ] + }, + "is_frozen": false, + "integer_id": 1024, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.35297, + 45.463855 + ] + }, + "id": 1025, + "properties": { + "id": "67c19007-add6-4dc0-8788-d8052cdf5468", + "code": "32953", + "data": { + "stops": [ + { + "id": "2953", + "code": "32953", + "data": { + "gtfs": { + "stop_id": "2953", + "stop_code": "32953", + "stop_name": "Pacific et civique 3170", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et civique 3170", + "geography": { + "type": "Point", + "coordinates": [ + -73.3529702184375, + 45.4638549958977 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5354492880451 + }, + "name": "Pacific et civique 3170", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.352970218, + 45.463854996 + ] + }, + "is_frozen": false, + "integer_id": 1025, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.357749, + 45.457532 + ] + }, + "id": 1026, + "properties": { + "id": "584e7592-5868-423c-a0f3-f7047fcc0c94", + "code": "32954", + "data": { + "stops": [ + { + "id": "2954", + "code": "32954", + "data": { + "gtfs": { + "stop_id": "2954", + "stop_code": "32954", + "stop_name": "Pacific et civique 3600", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et civique 3600", + "geography": { + "type": "Point", + "coordinates": [ + -73.3577493043033, + 45.4575317147045 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4288515212062 + }, + "name": "Pacific et civique 3600", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.357749304, + 45.457531715 + ] + }, + "is_frozen": false, + "integer_id": 1026, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.35517, + 45.46084 + ] + }, + "id": 1027, + "properties": { + "id": "6879e62e-b2af-404b-9ac0-810ced89b9c5", + "code": "32955", + "data": { + "stops": [ + { + "id": "2955", + "code": "32955", + "data": { + "gtfs": { + "stop_id": "2955", + "stop_code": "32955", + "stop_name": "Pacific et civique 3364", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et civique 3364", + "geography": { + "type": "Point", + "coordinates": [ + -73.3551703986787, + 45.4608399220239 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4846167939327 + }, + "name": "Pacific et civique 3364", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.355170399, + 45.460839922 + ] + }, + "is_frozen": false, + "integer_id": 1027, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.360226, + 45.453955 + ] + }, + "id": 1028, + "properties": { + "id": "ffb2037a-ed82-4fd2-9ba4-9740ffc9fc74", + "code": "32956", + "data": { + "stops": [ + { + "id": "2956", + "code": "32956", + "data": { + "gtfs": { + "stop_id": "2956", + "stop_code": "32956", + "stop_name": "Pacific et civique 3800", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et civique 3800", + "geography": { + "type": "Point", + "coordinates": [ + -73.360335279944, + 45.4539179205483 + ] + } + }, + { + "id": "2957", + "code": "32957", + "data": { + "gtfs": { + "stop_id": "2957", + "stop_code": "32957", + "stop_name": "Pacific et civique 3795", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et civique 3795", + "geography": { + "type": "Point", + "coordinates": [ + -73.3601175933966, + 45.4539930598764 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.368579287352 + }, + "name": "Pacific et civique 3800", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.360226437, + 45.45395549 + ] + }, + "is_frozen": false, + "integer_id": 1028, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.357842, + 45.457039 + ] + }, + "id": 1029, + "properties": { + "id": "9fdbce5a-94e4-48ab-912d-f3a78f30abc3", + "code": "32958", + "data": { + "stops": [ + { + "id": "2958", + "code": "32958", + "data": { + "gtfs": { + "stop_id": "2958", + "stop_code": "32958", + "stop_name": "Pacific et civique 3605", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et civique 3605", + "geography": { + "type": "Point", + "coordinates": [ + -73.3578422107644, + 45.4570385333286 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4205389588909 + }, + "name": "Pacific et civique 3605", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.357842211, + 45.457038533 + ] + }, + "is_frozen": false, + "integer_id": 1029, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.355459, + 45.460129 + ] + }, + "id": 1030, + "properties": { + "id": "13b8a3e4-2729-40dc-9d31-6c29415c10b5", + "code": "32959", + "data": { + "stops": [ + { + "id": "2959", + "code": "32959", + "data": { + "gtfs": { + "stop_id": "2959", + "stop_code": "32959", + "stop_name": "Pacific et civique 3365", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et civique 3365", + "geography": { + "type": "Point", + "coordinates": [ + -73.3554593469125, + 45.4601286759969 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4726267526253 + }, + "name": "Pacific et civique 3365", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.355459347, + 45.460128676 + ] + }, + "is_frozen": false, + "integer_id": 1030, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.35283, + 45.463797 + ] + }, + "id": 1031, + "properties": { + "id": "13ce318e-8a74-454a-940f-02135b69457c", + "code": "32960", + "data": { + "stops": [ + { + "id": "2960", + "code": "32960", + "data": { + "gtfs": { + "stop_id": "2960", + "stop_code": "32960", + "stop_name": "Pacific et civique 3165", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et civique 3165", + "geography": { + "type": "Point", + "coordinates": [ + -73.3528299619856, + 45.4637974300905 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5344786812933 + }, + "name": "Pacific et civique 3165", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.352829962, + 45.46379743 + ] + }, + "is_frozen": false, + "integer_id": 1031, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.389994, + 45.481622 + ] + }, + "id": 1032, + "properties": { + "id": "f7cea010-bc23-4b23-9787-ee1c97385691", + "code": "32971", + "data": { + "stops": [ + { + "id": "2971", + "code": "32971", + "data": { + "gtfs": { + "stop_id": "2971", + "stop_code": "32971", + "stop_name": "boul. Cousineau et boul. Moïse-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et boul. Moïse-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.3899938518832, + 45.4816223958078 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8351618539432 + }, + "name": "boul. Cousineau et boul. Moïse-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.389993852, + 45.481622396 + ] + }, + "is_frozen": false, + "integer_id": 1032, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.389048, + 45.479606 + ] + }, + "id": 1033, + "properties": { + "id": "bbd5aca7-7e7b-4d06-8311-2cf48d52f004", + "code": "32972", + "data": { + "stops": [ + { + "id": "2972", + "code": "32972", + "data": { + "gtfs": { + "stop_id": "2972", + "stop_code": "32972", + "stop_name": "2e Rue et 1re Rue", + "location_type": 0, + "parent_station": "" + } + }, + "name": "2e Rue et 1re Rue", + "geography": { + "type": "Point", + "coordinates": [ + -73.3890478819902, + 45.4796061601519 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.801136510044 + }, + "name": "2e Rue et 1re Rue", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.389047882, + 45.47960616 + ] + }, + "is_frozen": false, + "integer_id": 1033, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.388917, + 45.475358 + ] + }, + "id": 1034, + "properties": { + "id": "ed4d769a-a729-464c-9950-c3c85c6236e8", + "code": "32974", + "data": { + "stops": [ + { + "id": "2974", + "code": "32974", + "data": { + "gtfs": { + "stop_id": "2974", + "stop_code": "32974", + "stop_name": "2e Rue et civique 3360", + "location_type": 0, + "parent_station": "" + } + }, + "name": "2e Rue et civique 3360", + "geography": { + "type": "Point", + "coordinates": [ + -73.3889169139204, + 45.4753583838387 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7294642435036 + }, + "name": "2e Rue et civique 3360", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.388916914, + 45.475358384 + ] + }, + "is_frozen": false, + "integer_id": 1034, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.390027, + 45.480351 + ] + }, + "id": 1035, + "properties": { + "id": "fa4f53a1-c17d-439f-ba32-89d994d23052", + "code": "32979", + "data": { + "stops": [ + { + "id": "2979", + "code": "32979", + "data": { + "gtfs": { + "stop_id": "2979", + "stop_code": "32979", + "stop_name": "2e Rue et boul. Moïse-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "2e Rue et boul. Moïse-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.3900269277462, + 45.4803512432433 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8137098679266 + }, + "name": "2e Rue et boul. Moïse-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.390026928, + 45.480351243 + ] + }, + "is_frozen": false, + "integer_id": 1035, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513439, + 45.524442 + ] + }, + "id": 1036, + "properties": { + "id": "7c2cb131-4fec-4986-8542-841b59b571c8", + "code": "32980", + "data": { + "stops": [ + { + "id": "2980", + "code": "32980", + "data": { + "gtfs": { + "stop_id": "2980", + "stop_code": "32980", + "stop_name": "Saint-Laurent ouest et Cartier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Cartier", + "geography": { + "type": "Point", + "coordinates": [ + -73.5132754967204, + 45.5245004790426 + ] + } + }, + { + "id": "3020", + "code": "33020", + "data": { + "gtfs": { + "stop_id": "3020", + "stop_code": "33020", + "stop_name": "Saint-Laurent ouest et Cartier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Cartier", + "geography": { + "type": "Point", + "coordinates": [ + -73.5136021761018, + 45.5243836000328 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5586261312752 + }, + "name": "Saint-Laurent ouest et Cartier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.513438836, + 45.52444204 + ] + }, + "is_frozen": false, + "integer_id": 1036, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513301, + 45.525999 + ] + }, + "id": 1037, + "properties": { + "id": "474f6d90-0342-4671-a3ab-be4a9490140d", + "code": "32981", + "data": { + "stops": [ + { + "id": "2981", + "code": "32981", + "data": { + "gtfs": { + "stop_id": "2981", + "stop_code": "32981", + "stop_name": "Saint-Laurent ouest et Duvernay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Duvernay", + "geography": { + "type": "Point", + "coordinates": [ + -73.5133014257595, + 45.5259987214126 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5849579708732 + }, + "name": "Saint-Laurent ouest et Duvernay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.513301426, + 45.525998721 + ] + }, + "is_frozen": false, + "integer_id": 1037, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.511698, + 45.530824 + ] + }, + "id": 1038, + "properties": { + "id": "a38bb101-9e0e-47dc-b58f-8ec1437b1704", + "code": "32983", + "data": { + "stops": [ + { + "id": "2983", + "code": "32983", + "data": { + "gtfs": { + "stop_id": "2983", + "stop_code": "32983", + "stop_name": "Saint-Laurent ouest et Jean-Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Jean-Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.5116561705177, + 45.5306960608368 + ] + } + }, + { + "id": "3018", + "code": "33018", + "data": { + "gtfs": { + "stop_id": "3018", + "stop_code": "33018", + "stop_name": "Saint-Laurent ouest et Jean-Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Jean-Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.5117394422195, + 45.5309525063193 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6665930890462 + }, + "name": "Saint-Laurent ouest et Jean-Béliveau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.511698, + 45.530824 + ] + }, + "is_frozen": false, + "integer_id": 1038, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.51033, + 45.532867 + ] + }, + "id": 1039, + "properties": { + "id": "71c8be20-aaf2-429f-a16b-1898198bf831", + "code": "32984", + "data": { + "stops": [ + { + "id": "2984", + "code": "32984", + "data": { + "gtfs": { + "stop_id": "2984", + "stop_code": "32984", + "stop_name": "Saint-Laurent ouest et boul. Quinn", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et boul. Quinn", + "geography": { + "type": "Point", + "coordinates": [ + -73.5103294940642, + 45.532686512473 + ] + } + }, + { + "id": "3017", + "code": "33017", + "data": { + "gtfs": { + "stop_id": "3017", + "stop_code": "33017", + "stop_name": "Saint-Laurent ouest et boul. Quinn", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et boul. Quinn", + "geography": { + "type": "Point", + "coordinates": [ + -73.5102615267666, + 45.5330464899152 + ] + } + }, + { + "id": "3022", + "code": "33022", + "data": { + "gtfs": { + "stop_id": "3022", + "stop_code": "33022", + "stop_name": "boul. Quinn et Saint-Laurent ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Quinn et Saint-Laurent ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.5105353773622, + 45.5328317698686 + ] + } + }, + { + "id": "3056", + "code": "33056", + "data": { + "gtfs": { + "stop_id": "3056", + "stop_code": "33056", + "stop_name": "boul. Quinn et Saint-Laurent ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Quinn et Saint-Laurent ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.5101243560212, + 45.5328713153371 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7011632616394 + }, + "name": "Saint-Laurent ouest et boul. Quinn", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.51033, + 45.532867 + ] + }, + "is_frozen": false, + "integer_id": 1039, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.509058, + 45.534702 + ] + }, + "id": 1040, + "properties": { + "id": "65c1dd37-3015-432d-9f39-899ad6f7cc49", + "code": "32985", + "data": { + "stops": [ + { + "id": "2985", + "code": "32985", + "data": { + "gtfs": { + "stop_id": "2985", + "stop_code": "32985", + "stop_name": "Saint-Laurent ouest et Guilbault", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Guilbault", + "geography": { + "type": "Point", + "coordinates": [ + -73.5090541841099, + 45.5345691856414 + ] + } + }, + { + "id": "3016", + "code": "33016", + "data": { + "gtfs": { + "stop_id": "3016", + "stop_code": "33016", + "stop_name": "Saint-Laurent ouest et Guilbault", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Guilbault", + "geography": { + "type": "Point", + "coordinates": [ + -73.5090626632536, + 45.5348355523193 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7322232258151 + }, + "name": "Saint-Laurent ouest et Guilbault", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.509058424, + 45.534702369 + ] + }, + "is_frozen": false, + "integer_id": 1040, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.508253, + 45.535778 + ] + }, + "id": 1041, + "properties": { + "id": "400be995-0bb4-471e-9c4c-3e3721339f13", + "code": "32986", + "data": { + "stops": [ + { + "id": "2986", + "code": "32986", + "data": { + "gtfs": { + "stop_id": "2986", + "stop_code": "32986", + "stop_name": "Saint-Laurent ouest et Saint-Jean", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Saint-Jean", + "geography": { + "type": "Point", + "coordinates": [ + -73.5082551035419, + 45.5356264747926 + ] + } + }, + { + "id": "3015", + "code": "33015", + "data": { + "gtfs": { + "stop_id": "3015", + "stop_code": "33015", + "stop_name": "Saint-Laurent ouest et Saint-Jean", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Saint-Jean", + "geography": { + "type": "Point", + "coordinates": [ + -73.5082501836789, + 45.5359289169471 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7504223888012 + }, + "name": "Saint-Laurent ouest et Saint-Jean", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.508252644, + 45.535777696 + ] + }, + "is_frozen": false, + "integer_id": 1041, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.506579, + 45.537659 + ] + }, + "id": 1042, + "properties": { + "id": "04ab1113-dedd-49f1-b83b-245bc43e1753", + "code": "32987", + "data": { + "stops": [ + { + "id": "2987", + "code": "32987", + "data": { + "gtfs": { + "stop_id": "2987", + "stop_code": "32987", + "stop_name": "Saint-Laurent ouest et Saint-Alexandre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Saint-Alexandre", + "geography": { + "type": "Point", + "coordinates": [ + -73.5066181239081, + 45.5375193297163 + ] + } + }, + { + "id": "3014", + "code": "33014", + "data": { + "gtfs": { + "stop_id": "3014", + "stop_code": "33014", + "stop_name": "Saint-Laurent ouest et Saint-Alexandre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Saint-Alexandre", + "geography": { + "type": "Point", + "coordinates": [ + -73.5065405310817, + 45.5377987733371 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7822655136309 + }, + "name": "Saint-Laurent ouest et Saint-Alexandre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.506579327, + 45.537659052 + ] + }, + "is_frozen": false, + "integer_id": 1042, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.505054, + 45.539263 + ] + }, + "id": 1043, + "properties": { + "id": "7f65f816-23ac-464f-829f-09002e2fc4f7", + "code": "32988", + "data": { + "stops": [ + { + "id": "2988", + "code": "32988", + "data": { + "gtfs": { + "stop_id": "2988", + "stop_code": "32988", + "stop_name": "Saint-Laurent ouest et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.5050538816673, + 45.5392630012287 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8094158449503 + }, + "name": "Saint-Laurent ouest et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.505053882, + 45.539263001 + ] + }, + "is_frozen": false, + "integer_id": 1043, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.503724, + 45.540521 + ] + }, + "id": 1044, + "properties": { + "id": "337549aa-ba36-4710-9a0e-ef42ab0adcd5", + "code": "32989", + "data": { + "stops": [ + { + "id": "2989", + "code": "32989", + "data": { + "gtfs": { + "stop_id": "2989", + "stop_code": "32989", + "stop_name": "Saint-Laurent est et Sainte-Marie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent est et Sainte-Marie", + "geography": { + "type": "Point", + "coordinates": [ + -73.5037240346814, + 45.5405211417006 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8307142285701 + }, + "name": "Saint-Laurent est et Sainte-Marie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.503724035, + 45.540521142 + ] + }, + "is_frozen": false, + "integer_id": 1044, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.502184, + 45.542001 + ] + }, + "id": 1045, + "properties": { + "id": "840bd1e4-f448-41f0-a87f-5dae42946219", + "code": "32990", + "data": { + "stops": [ + { + "id": "2990", + "code": "32990", + "data": { + "gtfs": { + "stop_id": "2990", + "stop_code": "32990", + "stop_name": "Saint-Laurent est et de Normandie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent est et de Normandie", + "geography": { + "type": "Point", + "coordinates": [ + -73.5021702094401, + 45.5418879216926 + ] + } + }, + { + "id": "3011", + "code": "33011", + "data": { + "gtfs": { + "stop_id": "3011", + "stop_code": "33011", + "stop_name": "de Normandie et Saint-Laurent est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Normandie et Saint-Laurent est", + "geography": { + "type": "Point", + "coordinates": [ + -73.5021982645252, + 45.5421131755181 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8557601103273 + }, + "name": "Saint-Laurent est et de Normandie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.502184237, + 45.542000549 + ] + }, + "is_frozen": false, + "integer_id": 1045, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.500795, + 45.544172 + ] + }, + "id": 1046, + "properties": { + "id": "038fb8b8-8fc5-42c2-a9eb-69fdd39d83de", + "code": "32991", + "data": { + "stops": [ + { + "id": "2991", + "code": "32991", + "data": { + "gtfs": { + "stop_id": "2991", + "stop_code": "32991", + "stop_name": "d'Anjou et d'Île-de-France", + "location_type": 0, + "parent_station": "" + } + }, + "name": "d'Anjou et d'Île-de-France", + "geography": { + "type": "Point", + "coordinates": [ + -73.5007952183717, + 45.5441719329438 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8925244752511 + }, + "name": "d'Anjou et d'Île-de-France", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.500795218, + 45.544171933 + ] + }, + "is_frozen": false, + "integer_id": 1046, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.499931, + 45.545057 + ] + }, + "id": 1047, + "properties": { + "id": "29cae4d6-53eb-4c22-9faf-214af53be38b", + "code": "32992", + "data": { + "stops": [ + { + "id": "2992", + "code": "32992", + "data": { + "gtfs": { + "stop_id": "2992", + "stop_code": "32992", + "stop_name": "d'Anjou et d'Auvergne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "d'Anjou et d'Auvergne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4996979505748, + 45.5450632278132 + ] + } + }, + { + "id": "3009", + "code": "33009", + "data": { + "gtfs": { + "stop_id": "3009", + "stop_code": "33009", + "stop_name": "d'Anjou et d'Auvergne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "d'Anjou et d'Auvergne", + "geography": { + "type": "Point", + "coordinates": [ + -73.5001631118763, + 45.5448906016831 + ] + } + }, + { + "id": "4884", + "code": "34884", + "data": { + "gtfs": { + "stop_id": "4884", + "stop_code": "34884", + "stop_name": "d'Auvergne et d'Anjou", + "location_type": 0, + "parent_station": "" + } + }, + "name": "d'Auvergne et d'Anjou", + "geography": { + "type": "Point", + "coordinates": [ + -73.4998287437477, + 45.5452238965666 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.907515237904 + }, + "name": "d'Anjou et d'Auvergne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.499930531, + 45.545057249 + ] + }, + "is_frozen": false, + "integer_id": 1047, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.496218, + 45.543124 + ] + }, + "id": 1048, + "properties": { + "id": "0266ed3c-e279-4178-b7ea-9f611780869a", + "code": "32993", + "data": { + "stops": [ + { + "id": "2993", + "code": "32993", + "data": { + "gtfs": { + "stop_id": "2993", + "stop_code": "32993", + "stop_name": "d'Auvergne et de Picardie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "d'Auvergne et de Picardie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4964390602918, + 45.5431649108668 + ] + } + }, + { + "id": "3008", + "code": "33008", + "data": { + "gtfs": { + "stop_id": "3008", + "stop_code": "33008", + "stop_name": "d'Auvergne et de Picardie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "d'Auvergne et de Picardie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4959965219396, + 45.5430829795822 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8747801454701 + }, + "name": "d'Auvergne et de Picardie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.496217791, + 45.543123945 + ] + }, + "is_frozen": false, + "integer_id": 1048, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492449, + 45.540859 + ] + }, + "id": 1049, + "properties": { + "id": "c1b679f5-d94a-4515-826d-dd0fd3e8ca0c", + "code": "32994", + "data": { + "stops": [ + { + "id": "2994", + "code": "32994", + "data": { + "gtfs": { + "stop_id": "2994", + "stop_code": "32994", + "stop_name": "d'Auvergne et De Gentilly est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "d'Auvergne et De Gentilly est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4923582025991, + 45.5406941654385 + ] + } + }, + { + "id": "4413", + "code": "34413", + "data": { + "gtfs": { + "stop_id": "4413", + "stop_code": "34413", + "stop_name": "d'Auvergne et De Gentilly est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "d'Auvergne et De Gentilly est", + "geography": { + "type": "Point", + "coordinates": [ + -73.492539151349, + 45.5410234196753 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8364303787599 + }, + "name": "d'Auvergne et De Gentilly est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492448677, + 45.540858793 + ] + }, + "is_frozen": false, + "integer_id": 1049, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.49009, + 45.541615 + ] + }, + "id": 1050, + "properties": { + "id": "e44b3c5f-74b7-4e0a-acc8-bc0a05baf09f", + "code": "32995", + "data": { + "stops": [ + { + "id": "2995", + "code": "32995", + "data": { + "gtfs": { + "stop_id": "2995", + "stop_code": "32995", + "stop_name": "Bellerive et De Gentilly est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellerive et De Gentilly est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4900902974016, + 45.5416149536818 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8492319236127 + }, + "name": "Bellerive et De Gentilly est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490090297, + 45.541614954 + ] + }, + "is_frozen": false, + "integer_id": 1050, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.487913, + 45.543869 + ] + }, + "id": 1051, + "properties": { + "id": "b51729a5-1e80-46dd-9ed7-163c961e0d95", + "code": "32996", + "data": { + "stops": [ + { + "id": "2996", + "code": "32996", + "data": { + "gtfs": { + "stop_id": "2996", + "stop_code": "32996", + "stop_name": "Bellerive et Maple", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellerive et Maple", + "geography": { + "type": "Point", + "coordinates": [ + -73.4879130373091, + 45.5438693462115 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8874010301589 + }, + "name": "Bellerive et Maple", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.487913037, + 45.543869346 + ] + }, + "is_frozen": false, + "integer_id": 1051, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.485982, + 45.545858 + ] + }, + "id": 1052, + "properties": { + "id": "c4313974-2fe8-435a-a8ec-78bf1341b346", + "code": "32997", + "data": { + "stops": [ + { + "id": "2997", + "code": "32997", + "data": { + "gtfs": { + "stop_id": "2997", + "stop_code": "32997", + "stop_name": "Bellerive et Laviolette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellerive et Laviolette", + "geography": { + "type": "Point", + "coordinates": [ + -73.485982342051, + 45.5458580565241 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9210756570616 + }, + "name": "Bellerive et Laviolette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.485982342, + 45.545858057 + ] + }, + "is_frozen": false, + "integer_id": 1052, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.485575, + 45.547398 + ] + }, + "id": 1053, + "properties": { + "id": "1b5000a9-d080-4281-9d35-635cb0e911cd", + "code": "32998", + "data": { + "stops": [ + { + "id": "2998", + "code": "32998", + "data": { + "gtfs": { + "stop_id": "2998", + "stop_code": "32998", + "stop_name": "Bellerive et Le Caron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bellerive et Le Caron", + "geography": { + "type": "Point", + "coordinates": [ + -73.4855749959067, + 45.5473976983184 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.947148654563 + }, + "name": "Bellerive et Le Caron", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.485574996, + 45.547397698 + ] + }, + "is_frozen": false, + "integer_id": 1053, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482699, + 45.545412 + ] + }, + "id": 1054, + "properties": { + "id": "e3a6e93e-902a-4799-a8c4-465418843387", + "code": "32999", + "data": { + "stops": [ + { + "id": "2999", + "code": "32999", + "data": { + "gtfs": { + "stop_id": "2999", + "stop_code": "32999", + "stop_name": "Le Caron et Francis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Caron et Francis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4826988731526, + 45.5454121874611 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9135254819392 + }, + "name": "Le Caron et Francis", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482698873, + 45.545412187 + ] + }, + "is_frozen": false, + "integer_id": 1054, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482246, + 45.544413 + ] + }, + "id": 1055, + "properties": { + "id": "2e76faaa-8ff2-48d3-89f2-a3a048b7ecca", + "code": "33000", + "data": { + "stops": [ + { + "id": "3000", + "code": "33000", + "data": { + "gtfs": { + "stop_id": "3000", + "stop_code": "33000", + "stop_name": "Forant et Fréchette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Forant et Fréchette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4822457687195, + 45.5444132995326 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8966113933831 + }, + "name": "Forant et Fréchette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482245769, + 45.5444133 + ] + }, + "is_frozen": false, + "integer_id": 1055, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.480657, + 45.543594 + ] + }, + "id": 1056, + "properties": { + "id": "cdc9ba38-1ba1-4c7e-a7a9-ae7024ff0e4d", + "code": "33001", + "data": { + "stops": [ + { + "id": "3001", + "code": "33001", + "data": { + "gtfs": { + "stop_id": "3001", + "stop_code": "33001", + "stop_name": "Forant et Fabre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Forant et Fabre", + "geography": { + "type": "Point", + "coordinates": [ + -73.480657313101, + 45.5435941903558 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8827421214936 + }, + "name": "Forant et Fabre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.480657313, + 45.54359419 + ] + }, + "is_frozen": false, + "integer_id": 1056, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479037, + 45.542789 + ] + }, + "id": 1057, + "properties": { + "id": "d7cbf513-910d-43ce-9c34-aa1e924c7d28", + "code": "33002", + "data": { + "stops": [ + { + "id": "3002", + "code": "33002", + "data": { + "gtfs": { + "stop_id": "3002", + "stop_code": "33002", + "stop_name": "Forant et Saint-Michel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Forant et Saint-Michel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4790368846951, + 45.5427885506611 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8691015262443 + }, + "name": "Forant et Saint-Michel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479036885, + 45.542788551 + ] + }, + "is_frozen": false, + "integer_id": 1057, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483987, + 45.542291 + ] + }, + "id": 1058, + "properties": { + "id": "46596ba7-53c7-438c-8206-a65ed3391683", + "code": "33005", + "data": { + "stops": [ + { + "id": "3005", + "code": "33005", + "data": { + "gtfs": { + "stop_id": "3005", + "stop_code": "33005", + "stop_name": "Maple et Fréchette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maple et Fréchette", + "geography": { + "type": "Point", + "coordinates": [ + -73.483987116829, + 45.5422908296471 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.860674702883 + }, + "name": "Maple et Fréchette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483987117, + 45.54229083 + ] + }, + "is_frozen": false, + "integer_id": 1058, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.501846, + 45.543504 + ] + }, + "id": 1059, + "properties": { + "id": "8634d456-175f-4ee5-a685-5738fae49ba8", + "code": "33010", + "data": { + "stops": [ + { + "id": "3010", + "code": "33010", + "data": { + "gtfs": { + "stop_id": "3010", + "stop_code": "33010", + "stop_name": "d'Anjou et Pratt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "d'Anjou et Pratt", + "geography": { + "type": "Point", + "coordinates": [ + -73.5018458499639, + 45.5435038524336 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8812125439534 + }, + "name": "d'Anjou et Pratt", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.50184585, + 45.543503852 + ] + }, + "is_frozen": false, + "integer_id": 1059, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513623, + 45.526454 + ] + }, + "id": 1060, + "properties": { + "id": "5c162246-d3ef-4a9f-b99a-0c101155442e", + "code": "33019", + "data": { + "stops": [ + { + "id": "3019", + "code": "33019", + "data": { + "gtfs": { + "stop_id": "3019", + "stop_code": "33019", + "stop_name": "Saint-Laurent ouest et Duvernay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Duvernay", + "geography": { + "type": "Point", + "coordinates": [ + -73.5136234780666, + 45.5264538546 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5926571402464 + }, + "name": "Saint-Laurent ouest et Duvernay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.513623478, + 45.526453855 + ] + }, + "is_frozen": false, + "integer_id": 1060, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513096, + 45.533679 + ] + }, + "id": 1061, + "properties": { + "id": "7c6d588b-9971-4708-89a6-d92fb634eb39", + "code": "33021", + "data": { + "stops": [ + { + "id": "3021", + "code": "33021", + "data": { + "gtfs": { + "stop_id": "3021", + "stop_code": "33021", + "stop_name": "boul. Quinn et civique 136", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Quinn et civique 136", + "geography": { + "type": "Point", + "coordinates": [ + -73.5130963802449, + 45.5336788691471 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7149021566839 + }, + "name": "boul. Quinn et civique 136", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.51309638, + 45.533678869 + ] + }, + "is_frozen": false, + "integer_id": 1061, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.507865, + 45.532036 + ] + }, + "id": 1062, + "properties": { + "id": "2b80c3a0-2156-4dd8-b0cd-326bc34d2ed2", + "code": "33023", + "data": { + "stops": [ + { + "id": "3023", + "code": "33023", + "data": { + "gtfs": { + "stop_id": "3023", + "stop_code": "33023", + "stop_name": "boul. Quinn et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Quinn et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.5080943590879, + 45.5320034391287 + ] + } + }, + { + "id": "3055", + "code": "33055", + "data": { + "gtfs": { + "stop_id": "3055", + "stop_code": "33055", + "stop_name": "boul. Quinn et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Quinn et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.5076358689805, + 45.5320686540929 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6871012299393 + }, + "name": "boul. Quinn et Passage piétonnier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507865, + 45.532036 + ] + }, + "is_frozen": false, + "integer_id": 1062, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.501294, + 45.529804 + ] + }, + "id": 1063, + "properties": { + "id": "9cff00e1-2ab5-4f6d-8e36-32c660c30d08", + "code": "33025", + "data": { + "stops": [ + { + "id": "3025", + "code": "33025", + "data": { + "gtfs": { + "stop_id": "3025", + "stop_code": "33025", + "stop_name": "boul. Quinn et De Gentilly ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Quinn et De Gentilly ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.5015499786378, + 45.5297996434788 + ] + } + }, + { + "id": "3053", + "code": "33053", + "data": { + "gtfs": { + "stop_id": "3053", + "stop_code": "33053", + "stop_name": "boul. Quinn et De Gentilly ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Quinn et De Gentilly ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.5010371941685, + 45.5298078216215 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6493347774518 + }, + "name": "boul. Quinn et De Gentilly ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.501294, + 45.529804 + ] + }, + "is_frozen": false, + "integer_id": 1063, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.49852, + 45.528891 + ] + }, + "id": 1064, + "properties": { + "id": "477ced41-131e-4c2f-8fce-4f1ed3d08b09", + "code": "33026", + "data": { + "stops": [ + { + "id": "3026", + "code": "33026", + "data": { + "gtfs": { + "stop_id": "3026", + "stop_code": "33026", + "stop_name": "boul. Quinn et Sainte-Catherine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Quinn et Sainte-Catherine", + "geography": { + "type": "Point", + "coordinates": [ + -73.4987257239093, + 45.5288621209691 + ] + } + }, + { + "id": "3052", + "code": "33052", + "data": { + "gtfs": { + "stop_id": "3052", + "stop_code": "33052", + "stop_name": "boul. Quinn et Sainte-Catherine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Quinn et Sainte-Catherine", + "geography": { + "type": "Point", + "coordinates": [ + -73.4983148814239, + 45.5289194614829 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6338876832704 + }, + "name": "boul. Quinn et Sainte-Catherine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.49852, + 45.528891 + ] + }, + "is_frozen": false, + "integer_id": 1064, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.496608, + 45.528246 + ] + }, + "id": 1065, + "properties": { + "id": "823b1092-4711-483c-9263-9ad04625e16e", + "code": "33027", + "data": { + "stops": [ + { + "id": "3027", + "code": "33027", + "data": { + "gtfs": { + "stop_id": "3027", + "stop_code": "33027", + "stop_name": "boul. Quinn et Bienville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Quinn et Bienville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4968097982288, + 45.5282162510887 + ] + } + }, + { + "id": "3051", + "code": "33051", + "data": { + "gtfs": { + "stop_id": "3051", + "stop_code": "33051", + "stop_name": "Labonté et Bienville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Labonté et Bienville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4964057614715, + 45.5282760324948 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6229753428601 + }, + "name": "boul. Quinn et Bienville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.496608, + 45.528246 + ] + }, + "is_frozen": false, + "integer_id": 1065, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494126, + 45.528865 + ] + }, + "id": 1066, + "properties": { + "id": "b9fb2a74-12ac-47e5-aa61-be591a0ecc88", + "code": "33028", + "data": { + "stops": [ + { + "id": "3028", + "code": "33028", + "data": { + "gtfs": { + "stop_id": "3028", + "stop_code": "33028", + "stop_name": "Leblanc ouest et McGill", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Leblanc ouest et McGill", + "geography": { + "type": "Point", + "coordinates": [ + -73.4940816998461, + 45.5287348536176 + ] + } + }, + { + "id": "3050", + "code": "33050", + "data": { + "gtfs": { + "stop_id": "3050", + "stop_code": "33050", + "stop_name": "Leblanc ouest et McGill", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Leblanc ouest et McGill", + "geography": { + "type": "Point", + "coordinates": [ + -73.4941700899542, + 45.5289958114555 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6334477988089 + }, + "name": "Leblanc ouest et McGill", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494126, + 45.528865 + ] + }, + "is_frozen": false, + "integer_id": 1066, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.493112, + 45.530145 + ] + }, + "id": 1067, + "properties": { + "id": "26271fe7-0782-47bf-8004-074c0d15a687", + "code": "33029", + "data": { + "stops": [ + { + "id": "3029", + "code": "33029", + "data": { + "gtfs": { + "stop_id": "3029", + "stop_code": "33029", + "stop_name": "Leblanc ouest et Brébeuf", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Leblanc ouest et Brébeuf", + "geography": { + "type": "Point", + "coordinates": [ + -73.4931928205145, + 45.5300717729805 + ] + } + }, + { + "id": "4432", + "code": "34432", + "data": { + "gtfs": { + "stop_id": "4432", + "stop_code": "34432", + "stop_name": "Brébeuf et Leblanc ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brébeuf et Leblanc ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4930316485677, + 45.5302190821611 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6551043646834 + }, + "name": "Leblanc ouest et Brébeuf", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493112, + 45.530145 + ] + }, + "is_frozen": false, + "integer_id": 1067, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490669, + 45.529069 + ] + }, + "id": 1068, + "properties": { + "id": "37861c82-a45a-4026-bde0-eec4ce121a64", + "code": "33030", + "data": { + "stops": [ + { + "id": "3030", + "code": "33030", + "data": { + "gtfs": { + "stop_id": "3030", + "stop_code": "33030", + "stop_name": "Brébeuf et Briggs ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brébeuf et Briggs ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4906565748246, + 45.5292745281678 + ] + } + }, + { + "id": "3048", + "code": "33048", + "data": { + "gtfs": { + "stop_id": "3048", + "stop_code": "33048", + "stop_name": "Brébeuf et Briggs ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brébeuf et Briggs ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4903689362057, + 45.5293253433755 + ] + } + }, + { + "id": "4516", + "code": "34516", + "data": { + "gtfs": { + "stop_id": "4516", + "stop_code": "34516", + "stop_name": "Briggs ouest et Daniel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Briggs ouest et Daniel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4909683680228, + 45.5288117354975 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6368992161524 + }, + "name": "Brébeuf et Briggs ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490669, + 45.529069 + ] + }, + "is_frozen": false, + "integer_id": 1068, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.48868, + 45.528645 + ] + }, + "id": 1069, + "properties": { + "id": "280d705c-e41e-4a8f-8450-ac212bf84d99", + "code": "33031", + "data": { + "stops": [ + { + "id": "3031", + "code": "33031", + "data": { + "gtfs": { + "stop_id": "3031", + "stop_code": "33031", + "stop_name": "Brébeuf et ch. du Coteau-Rouge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brébeuf et ch. du Coteau-Rouge", + "geography": { + "type": "Point", + "coordinates": [ + -73.4887927343025, + 45.5286489724613 + ] + } + }, + { + "id": "4016", + "code": "34016", + "data": { + "gtfs": { + "stop_id": "4016", + "stop_code": "34016", + "stop_name": "ch. du Coteau-Rouge et Brébeuf", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Brébeuf", + "geography": { + "type": "Point", + "coordinates": [ + -73.4885953050244, + 45.5285298916259 + ] + } + }, + { + "id": "4474", + "code": "34474", + "data": { + "gtfs": { + "stop_id": "4474", + "stop_code": "34474", + "stop_name": "ch. du Coteau-Rouge et Brébeuf", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Brébeuf", + "geography": { + "type": "Point", + "coordinates": [ + -73.4885669743536, + 45.5287593144386 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6297257236433 + }, + "name": "Brébeuf et ch. du Coteau-Rouge", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48868, + 45.528645 + ] + }, + "is_frozen": false, + "integer_id": 1069, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486352, + 45.527881 + ] + }, + "id": 1070, + "properties": { + "id": "1d3f02c5-7aee-413f-85a4-ed64749a6a77", + "code": "33032", + "data": { + "stops": [ + { + "id": "3032", + "code": "33032", + "data": { + "gtfs": { + "stop_id": "3032", + "stop_code": "33032", + "stop_name": "Brébeuf et Front", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brébeuf et Front", + "geography": { + "type": "Point", + "coordinates": [ + -73.4865105037179, + 45.5278568674039 + ] + } + }, + { + "id": "3046", + "code": "33046", + "data": { + "gtfs": { + "stop_id": "3046", + "stop_code": "33046", + "stop_name": "Brébeuf et Front", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brébeuf et Front", + "geography": { + "type": "Point", + "coordinates": [ + -73.4861938541041, + 45.5279060561703 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6168003067855 + }, + "name": "Brébeuf et Front", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486352, + 45.527881 + ] + }, + "is_frozen": false, + "integer_id": 1070, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483063, + 45.526778 + ] + }, + "id": 1071, + "properties": { + "id": "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", + "code": "33033", + "data": { + "stops": [ + { + "id": "3033", + "code": "33033", + "data": { + "gtfs": { + "stop_id": "3033", + "stop_code": "33033", + "stop_name": "Brébeuf et boul. Curé-Poirier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brébeuf et boul. Curé-Poirier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4834170819455, + 45.5268171459691 + ] + } + }, + { + "id": "3109", + "code": "33109", + "data": { + "gtfs": { + "stop_id": "3109", + "stop_code": "33109", + "stop_name": "boul. Curé-Poirier ouest et Brébeuf", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Brébeuf", + "geography": { + "type": "Point", + "coordinates": [ + -73.4832737485699, + 45.5269432807357 + ] + } + }, + { + "id": "3411", + "code": "33411", + "data": { + "gtfs": { + "stop_id": "3411", + "stop_code": "33411", + "stop_name": "boul. Curé-Poirier ouest et Brébeuf", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Brébeuf", + "geography": { + "type": "Point", + "coordinates": [ + -73.4832060104917, + 45.5266129631967 + ] + } + }, + { + "id": "3634", + "code": "33634", + "data": { + "gtfs": { + "stop_id": "3634", + "stop_code": "33634", + "stop_name": "Brébeuf et boul. Curé-Poirier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brébeuf et boul. Curé-Poirier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4827087461703, + 45.5267181810039 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5981405769759 + }, + "name": "Brébeuf et boul. Curé-Poirier ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483063, + 45.526778 + ] + }, + "is_frozen": false, + "integer_id": 1071, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.480371, + 45.525854 + ] + }, + "id": 1072, + "properties": { + "id": "1926fe87-9eee-4758-bf0a-1f846178b541", + "code": "33034", + "data": { + "stops": [ + { + "id": "3034", + "code": "33034", + "data": { + "gtfs": { + "stop_id": "3034", + "stop_code": "33034", + "stop_name": "Brébeuf et Benoit ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brébeuf et Benoit ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4805904454762, + 45.5258325535712 + ] + } + }, + { + "id": "3045", + "code": "33045", + "data": { + "gtfs": { + "stop_id": "3045", + "stop_code": "33045", + "stop_name": "Brébeuf et Benoit ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brébeuf et Benoit ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4801525178144, + 45.5258762933035 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5825098701317 + }, + "name": "Brébeuf et Benoit ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.480371, + 45.525854 + ] + }, + "is_frozen": false, + "integer_id": 1072, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.477406, + 45.524853 + ] + }, + "id": 1073, + "properties": { + "id": "30b4855a-ec3f-4079-bee1-0b92e6c4e1b7", + "code": "33035", + "data": { + "stops": [ + { + "id": "3035", + "code": "33035", + "data": { + "gtfs": { + "stop_id": "3035", + "stop_code": "33035", + "stop_name": "Brébeuf et de Cherbourg", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brébeuf et de Cherbourg", + "geography": { + "type": "Point", + "coordinates": [ + -73.4776321814633, + 45.5248545097759 + ] + } + }, + { + "id": "3044", + "code": "33044", + "data": { + "gtfs": { + "stop_id": "3044", + "stop_code": "33044", + "stop_name": "Brébeuf et de Cherbourg", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brébeuf et de Cherbourg", + "geography": { + "type": "Point", + "coordinates": [ + -73.4771802588208, + 45.5248521096035 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5655774631028 + }, + "name": "Brébeuf et de Cherbourg", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.477406, + 45.524853 + ] + }, + "is_frozen": false, + "integer_id": 1073, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.473, + 45.522275 + ] + }, + "id": 1074, + "properties": { + "id": "1426b4ef-4dd9-466b-8c3e-012df230f19a", + "code": "33037", + "data": { + "stops": [ + { + "id": "3037", + "code": "33037", + "data": { + "gtfs": { + "stop_id": "3037", + "stop_code": "33037", + "stop_name": "boul. Wilson et McGill", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Wilson et McGill", + "geography": { + "type": "Point", + "coordinates": [ + -73.4732824951335, + 45.5222710350856 + ] + } + }, + { + "id": "3043", + "code": "33043", + "data": { + "gtfs": { + "stop_id": "3043", + "stop_code": "33043", + "stop_name": "McGill et boul. Wilson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "McGill et boul. Wilson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4727181042182, + 45.5222789165625 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5219730314014 + }, + "name": "boul. Wilson et McGill", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.4730003, + 45.522274976 + ] + }, + "is_frozen": false, + "integer_id": 1074, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469835, + 45.521439 + ] + }, + "id": 1075, + "properties": { + "id": "155dd6bc-ae76-4503-8b2b-d216841c4707", + "code": "33038", + "data": { + "stops": [ + { + "id": "3038", + "code": "33038", + "data": { + "gtfs": { + "stop_id": "3038", + "stop_code": "33038", + "stop_name": "McGill et Beaubien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "McGill et Beaubien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4699987875688, + 45.5212803958033 + ] + } + }, + { + "id": "3042", + "code": "33042", + "data": { + "gtfs": { + "stop_id": "3042", + "stop_code": "33042", + "stop_name": "Beaubien et McGill", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beaubien et McGill", + "geography": { + "type": "Point", + "coordinates": [ + -73.4696719159118, + 45.5215967076711 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5078271147189 + }, + "name": "McGill et Beaubien", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469835352, + 45.521438552 + ] + }, + "is_frozen": false, + "integer_id": 1075, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466949, + 45.51998 + ] + }, + "id": 1076, + "properties": { + "id": "fd80e727-4261-4c36-aabc-b0a2c48d1470", + "code": "33039", + "data": { + "stops": [ + { + "id": "3039", + "code": "33039", + "data": { + "gtfs": { + "stop_id": "3039", + "stop_code": "33039", + "stop_name": "McGill et boul. Perron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "McGill et boul. Perron", + "geography": { + "type": "Point", + "coordinates": [ + -73.4669490667678, + 45.5199803566919 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4831670641454 + }, + "name": "McGill et boul. Perron", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466949067, + 45.519980357 + ] + }, + "is_frozen": false, + "integer_id": 1076, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467145, + 45.521806 + ] + }, + "id": 1077, + "properties": { + "id": "a19868d7-c9fb-4897-bf6a-82b0033e3c99", + "code": "33040", + "data": { + "stops": [ + { + "id": "3040", + "code": "33040", + "data": { + "gtfs": { + "stop_id": "3040", + "stop_code": "33040", + "stop_name": "de Chatham et civique 2605", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Chatham et civique 2605", + "geography": { + "type": "Point", + "coordinates": [ + -73.4671451289808, + 45.5218060171546 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5140417439699 + }, + "name": "de Chatham et civique 2605", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.467145129, + 45.521806017 + ] + }, + "is_frozen": false, + "integer_id": 1077, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468765, + 45.522414 + ] + }, + "id": 1078, + "properties": { + "id": "04824713-a1de-4a19-8b1a-89e11d974239", + "code": "33041", + "data": { + "stops": [ + { + "id": "3041", + "code": "33041", + "data": { + "gtfs": { + "stop_id": "3041", + "stop_code": "33041", + "stop_name": "de Chatham et Beaubien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Chatham et Beaubien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4687652941455, + 45.5224138636544 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5243220177475 + }, + "name": "de Chatham et Beaubien", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468765294, + 45.522413864 + ] + }, + "is_frozen": false, + "integer_id": 1078, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.488166, + 45.528622 + ] + }, + "id": 1079, + "properties": { + "id": "db8d9e51-701d-47ce-b55e-d7d57227adcb", + "code": "33047", + "data": { + "stops": [ + { + "id": "3047", + "code": "33047", + "data": { + "gtfs": { + "stop_id": "3047", + "stop_code": "33047", + "stop_name": "Brébeuf et ch. du Coteau-Rouge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brébeuf et ch. du Coteau-Rouge", + "geography": { + "type": "Point", + "coordinates": [ + -73.4881662245341, + 45.528621914108 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6293366000947 + }, + "name": "Brébeuf et ch. du Coteau-Rouge", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.488166, + 45.528622 + ] + }, + "is_frozen": false, + "integer_id": 1079, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.512823, + 45.533779 + ] + }, + "id": 1080, + "properties": { + "id": "cab743f1-61f7-4321-bc18-32e2897e9a10", + "code": "33057", + "data": { + "stops": [ + { + "id": "3057", + "code": "33057", + "data": { + "gtfs": { + "stop_id": "3057", + "stop_code": "33057", + "stop_name": "boul. Quinn et civique 141", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Quinn et civique 141", + "geography": { + "type": "Point", + "coordinates": [ + -73.5128227282536, + 45.5337793068349 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7166018647758 + }, + "name": "boul. Quinn et civique 141", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.512822728, + 45.533779307 + ] + }, + "is_frozen": false, + "integer_id": 1080, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494482, + 45.524382 + ] + }, + "id": 1081, + "properties": { + "id": "afda06bb-9f3e-43a6-883f-96226fa884c5", + "code": "33063", + "data": { + "stops": [ + { + "id": "3063", + "code": "33063", + "data": { + "gtfs": { + "stop_id": "3063", + "stop_code": "33063", + "stop_name": "ch. du Coteau-Rouge et Jean-Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Jean-Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4942219572841, + 45.5243987097616 + ] + } + }, + { + "id": "3077", + "code": "33077", + "data": { + "gtfs": { + "stop_id": "3077", + "stop_code": "33077", + "stop_name": "ch. du Coteau-Rouge et Gardenville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Gardenville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4947419107445, + 45.5243660266067 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5576105755415 + }, + "name": "ch. du Coteau-Rouge et Jean-Béliveau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494482, + 45.524382 + ] + }, + "is_frozen": false, + "integer_id": 1081, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492847, + 45.525488 + ] + }, + "id": 1082, + "properties": { + "id": "16c6c90b-9ef2-4203-a4a2-74a27e23dc94", + "code": "33064", + "data": { + "stops": [ + { + "id": "3064", + "code": "33064", + "data": { + "gtfs": { + "stop_id": "3064", + "stop_code": "33064", + "stop_name": "ch. du Coteau-Rouge et Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4926714584417, + 45.5254953506678 + ] + } + }, + { + "id": "4740", + "code": "34740", + "data": { + "gtfs": { + "stop_id": "4740", + "stop_code": "34740", + "stop_name": "ch. du Coteau-Rouge et Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4930226221463, + 45.5254806404849 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5763186966603 + }, + "name": "ch. du Coteau-Rouge et Montarville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492847, + 45.525488 + ] + }, + "is_frozen": false, + "integer_id": 1082, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491386, + 45.526707 + ] + }, + "id": 1083, + "properties": { + "id": "dc7a6dd7-6fde-40ea-9f37-85aaefe35169", + "code": "33065", + "data": { + "stops": [ + { + "id": "3065", + "code": "33065", + "data": { + "gtfs": { + "stop_id": "3065", + "stop_code": "33065", + "stop_name": "ch. du Coteau-Rouge et Labonté", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Labonté", + "geography": { + "type": "Point", + "coordinates": [ + -73.4913634218829, + 45.526602640304 + ] + } + }, + { + "id": "3075", + "code": "33075", + "data": { + "gtfs": { + "stop_id": "3075", + "stop_code": "33075", + "stop_name": "ch. du Coteau-Rouge et Labonté", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Labonté", + "geography": { + "type": "Point", + "coordinates": [ + -73.4914083438999, + 45.5268117726395 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5969394891781 + }, + "name": "ch. du Coteau-Rouge et Labonté", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491386, + 45.526707 + ] + }, + "is_frozen": false, + "integer_id": 1083, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.48667, + 45.529797 + ] + }, + "id": 1084, + "properties": { + "id": "79974834-930d-4e4d-921b-dafd49580553", + "code": "33068", + "data": { + "stops": [ + { + "id": "3068", + "code": "33068", + "data": { + "gtfs": { + "stop_id": "3068", + "stop_code": "33068", + "stop_name": "ch. du Coteau-Rouge et Saint-Alexandre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Saint-Alexandre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4866703173163, + 45.5297966284886 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6492163412632 + }, + "name": "ch. du Coteau-Rouge et Saint-Alexandre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48667, + 45.529797 + ] + }, + "is_frozen": false, + "integer_id": 1084, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.485666, + 45.531033 + ] + }, + "id": 1085, + "properties": { + "id": "27c5df15-201f-4855-9f49-556fd659fd8e", + "code": "33069", + "data": { + "stops": [ + { + "id": "3069", + "code": "33069", + "data": { + "gtfs": { + "stop_id": "3069", + "stop_code": "33069", + "stop_name": "ch. de Chambly et PHARMAPRIX", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et PHARMAPRIX", + "geography": { + "type": "Point", + "coordinates": [ + -73.4857262309643, + 45.5311812581772 + ] + } + }, + { + "id": "3778", + "code": "33778", + "data": { + "gtfs": { + "stop_id": "3778", + "stop_code": "33778", + "stop_name": "ch. de Chambly et ch. du Coteau-Rouge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et ch. du Coteau-Rouge", + "geography": { + "type": "Point", + "coordinates": [ + -73.4856051767771, + 45.5308847146748 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6701294654349 + }, + "name": "ch. de Chambly et PHARMAPRIX", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.485666, + 45.531033 + ] + }, + "is_frozen": false, + "integer_id": 1085, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.498075, + 45.514982 + ] + }, + "id": 1086, + "properties": { + "id": "3760f02e-7f2c-4906-8d8a-455bbf644cec", + "code": "33085", + "data": { + "stops": [ + { + "id": "3085", + "code": "33085", + "data": { + "gtfs": { + "stop_id": "3085", + "stop_code": "33085", + "stop_name": "La Salle et ch. du Coteau-Rouge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Salle et ch. du Coteau-Rouge", + "geography": { + "type": "Point", + "coordinates": [ + -73.4980753573924, + 45.5149823600167 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3986585453837 + }, + "name": "La Salle et ch. du Coteau-Rouge", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.498075357, + 45.51498236 + ] + }, + "is_frozen": false, + "integer_id": 1086, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491697, + 45.513782 + ] + }, + "id": 1087, + "properties": { + "id": "5e6dbb10-5962-4ed1-802d-bc3c0e5d2742", + "code": "33086", + "data": { + "stops": [ + { + "id": "3086", + "code": "33086", + "data": { + "gtfs": { + "stop_id": "3086", + "stop_code": "33086", + "stop_name": "boul. Curé-Poirier ouest et Papineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Papineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4916974349597, + 45.5137818779717 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3783635367861 + }, + "name": "boul. Curé-Poirier ouest et Papineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491697435, + 45.513781878 + ] + }, + "is_frozen": false, + "integer_id": 1087, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.489617, + 45.517115 + ] + }, + "id": 1088, + "properties": { + "id": "e88f5f2a-b0b5-4bb5-afb4-833f49fbaeea", + "code": "33089", + "data": { + "stops": [ + { + "id": "3089", + "code": "33089", + "data": { + "gtfs": { + "stop_id": "3089", + "stop_code": "33089", + "stop_name": "boul. Curé-Poirier ouest et Cartier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Cartier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4895859974278, + 45.5169673466642 + ] + } + }, + { + "id": "3115", + "code": "33115", + "data": { + "gtfs": { + "stop_id": "3115", + "stop_code": "33115", + "stop_name": "boul. Curé-Poirier ouest et Cartier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Cartier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4896472577791, + 45.5172623641389 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4347155186657 + }, + "name": "boul. Curé-Poirier ouest et Cartier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.489617, + 45.517115 + ] + }, + "is_frozen": false, + "integer_id": 1088, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.488592, + 45.518664 + ] + }, + "id": 1089, + "properties": { + "id": "ee7545d3-966c-460d-94a1-5e0d16623919", + "code": "33090", + "data": { + "stops": [ + { + "id": "3090", + "code": "33090", + "data": { + "gtfs": { + "stop_id": "3090", + "stop_code": "33090", + "stop_name": "boul. Curé-Poirier ouest et Dollard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Dollard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4885604644316, + 45.5185012295078 + ] + } + }, + { + "id": "3114", + "code": "33114", + "data": { + "gtfs": { + "stop_id": "3114", + "stop_code": "33114", + "stop_name": "boul. Curé-Poirier ouest et Dollard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Dollard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4886238911109, + 45.5188260062949 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4609073130831 + }, + "name": "boul. Curé-Poirier ouest et Dollard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.488592, + 45.518664 + ] + }, + "is_frozen": false, + "integer_id": 1089, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486484, + 45.52186 + ] + }, + "id": 1090, + "properties": { + "id": "212f4608-5163-4f8c-b126-acfdafddd04a", + "code": "33091", + "data": { + "stops": [ + { + "id": "3091", + "code": "33091", + "data": { + "gtfs": { + "stop_id": "3091", + "stop_code": "33091", + "stop_name": "boul. Curé-Poirier ouest et Jean-Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Jean-Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4864472392488, + 45.5217202868828 + ] + } + }, + { + "id": "4015", + "code": "34015", + "data": { + "gtfs": { + "stop_id": "4015", + "stop_code": "34015", + "stop_name": "boul. Curé-Poirier ouest et Jean-Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Jean-Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4865207042784, + 45.5219989130495 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5149547235883 + }, + "name": "boul. Curé-Poirier ouest et Jean-Béliveau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486484, + 45.52186 + ] + }, + "is_frozen": false, + "integer_id": 1090, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.48524, + 45.523736 + ] + }, + "id": 1091, + "properties": { + "id": "a87339f4-b5b3-4402-b9ee-9ea1d8fcf569", + "code": "33092", + "data": { + "stops": [ + { + "id": "3092", + "code": "33092", + "data": { + "gtfs": { + "stop_id": "3092", + "stop_code": "33092", + "stop_name": "boul. Curé-Poirier ouest et boul. Quinn", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et boul. Quinn", + "geography": { + "type": "Point", + "coordinates": [ + -73.4852429026259, + 45.5235324755533 + ] + } + }, + { + "id": "3111", + "code": "33111", + "data": { + "gtfs": { + "stop_id": "3111", + "stop_code": "33111", + "stop_name": "boul. Curé-Poirier ouest et boul. Quinn", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et boul. Quinn", + "geography": { + "type": "Point", + "coordinates": [ + -73.4852376461787, + 45.5239397756401 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5466839132887 + }, + "name": "boul. Curé-Poirier ouest et boul. Quinn", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48524, + 45.523736 + ] + }, + "is_frozen": false, + "integer_id": 1091, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.484105, + 45.525473 + ] + }, + "id": 1092, + "properties": { + "id": "5bc0109e-fc2a-4d2a-8204-5be74af579b9", + "code": "33093", + "data": { + "stops": [ + { + "id": "3093", + "code": "33093", + "data": { + "gtfs": { + "stop_id": "3093", + "stop_code": "33093", + "stop_name": "boul. Curé-Poirier ouest et McGill", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et McGill", + "geography": { + "type": "Point", + "coordinates": [ + -73.4840607887272, + 45.5253684961999 + ] + } + }, + { + "id": "3110", + "code": "33110", + "data": { + "gtfs": { + "stop_id": "3110", + "stop_code": "33110", + "stop_name": "boul. Curé-Poirier ouest et McGill", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et McGill", + "geography": { + "type": "Point", + "coordinates": [ + -73.4841494094936, + 45.5255770868227 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5760649625894 + }, + "name": "boul. Curé-Poirier ouest et McGill", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.484105, + 45.525473 + ] + }, + "is_frozen": false, + "integer_id": 1092, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482433, + 45.527999 + ] + }, + "id": 1093, + "properties": { + "id": "250954ca-54cd-4e08-bea5-5c6ef0e42c4e", + "code": "33094", + "data": { + "stops": [ + { + "id": "3094", + "code": "33094", + "data": { + "gtfs": { + "stop_id": "3094", + "stop_code": "33094", + "stop_name": "boul. Curé-Poirier ouest et Saint-Alexandre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Saint-Alexandre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4823744842363, + 45.5278698556929 + ] + } + }, + { + "id": "3108", + "code": "33108", + "data": { + "gtfs": { + "stop_id": "3108", + "stop_code": "33108", + "stop_name": "boul. Curé-Poirier ouest et Saint-Alexandre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Saint-Alexandre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4824908179437, + 45.5281289246561 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6187966068275 + }, + "name": "boul. Curé-Poirier ouest et Saint-Alexandre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482433, + 45.527999 + ] + }, + "is_frozen": false, + "integer_id": 1093, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481573, + 45.529276 + ] + }, + "id": 1094, + "properties": { + "id": "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", + "code": "33095", + "data": { + "stops": [ + { + "id": "3095", + "code": "33095", + "data": { + "gtfs": { + "stop_id": "3095", + "stop_code": "33095", + "stop_name": "boul. Curé-Poirier ouest et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4816325013382, + 45.5291652828938 + ] + } + }, + { + "id": "3445", + "code": "33445", + "data": { + "gtfs": { + "stop_id": "3445", + "stop_code": "33445", + "stop_name": "ch. de Chambly et boul. Curé-Poirier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Curé-Poirier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4818184733451, + 45.529341994209 + ] + } + }, + { + "id": "3446", + "code": "33446", + "data": { + "gtfs": { + "stop_id": "3446", + "stop_code": "33446", + "stop_name": "ch. de Chambly et boul. Curé-Poirier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Curé-Poirier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4813279375199, + 45.5293876268956 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6404014275555 + }, + "name": "boul. Curé-Poirier ouest et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481573, + 45.529276 + ] + }, + "is_frozen": false, + "integer_id": 1094, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481319, + 45.529734 + ] + }, + "id": 1095, + "properties": { + "id": "48e0fb78-b91c-4eec-a77a-11ad01e61d0c", + "code": "33096", + "data": { + "stops": [ + { + "id": "3096", + "code": "33096", + "data": { + "gtfs": { + "stop_id": "3096", + "stop_code": "33096", + "stop_name": "boul. Curé-Poirier est et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier est et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4813187572476, + 45.5297344259796 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6481504175308 + }, + "name": "boul. Curé-Poirier est et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481319, + 45.529734 + ] + }, + "is_frozen": false, + "integer_id": 1095, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.480072, + 45.532735 + ] + }, + "id": 1096, + "properties": { + "id": "d488846f-abf4-41f2-9dd0-43b9cbb645a3", + "code": "33097", + "data": { + "stops": [ + { + "id": "3097", + "code": "33097", + "data": { + "gtfs": { + "stop_id": "3097", + "stop_code": "33097", + "stop_name": "boul. Curé-Poirier est et Lavallée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier est et Lavallée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4798008884738, + 45.5325516810443 + ] + } + }, + { + "id": "3107", + "code": "33107", + "data": { + "gtfs": { + "stop_id": "3107", + "stop_code": "33107", + "stop_name": "Frontenac et Lavallée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Frontenac et Lavallée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4803432908144, + 45.5329175653454 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6989231607563 + }, + "name": "boul. Curé-Poirier est et Lavallée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48007209, + 45.532734623 + ] + }, + "is_frozen": false, + "integer_id": 1096, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478645, + 45.534709 + ] + }, + "id": 1097, + "properties": { + "id": "24abc23f-a2cf-493e-ad62-b789edf9cd26", + "code": "33098", + "data": { + "stops": [ + { + "id": "3098", + "code": "33098", + "data": { + "gtfs": { + "stop_id": "3098", + "stop_code": "33098", + "stop_name": "boul. Curé-Poirier est et Laurier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier est et Laurier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4786449709997, + 45.5347089336393 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7323343307538 + }, + "name": "boul. Curé-Poirier est et Laurier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.478644971, + 45.534708934 + ] + }, + "is_frozen": false, + "integer_id": 1097, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.477878, + 45.536161 + ] + }, + "id": 1098, + "properties": { + "id": "41617015-5d74-4430-aee6-934b0fd13e70", + "code": "33099", + "data": { + "stops": [ + { + "id": "3099", + "code": "33099", + "data": { + "gtfs": { + "stop_id": "3099", + "stop_code": "33099", + "stop_name": "boul. Curé-Poirier est et Kent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier est et Kent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4778777793598, + 45.5361610306339 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.756910316907 + }, + "name": "boul. Curé-Poirier est et Kent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.477877779, + 45.536161031 + ] + }, + "is_frozen": false, + "integer_id": 1098, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478146, + 45.539347 + ] + }, + "id": 1099, + "properties": { + "id": "31db3d90-e07f-4dbc-995f-00186e6ce5e0", + "code": "33100", + "data": { + "stops": [ + { + "id": "3100", + "code": "33100", + "data": { + "gtfs": { + "stop_id": "3100", + "stop_code": "33100", + "stop_name": "ch. du Lac et Valade", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et Valade", + "geography": { + "type": "Point", + "coordinates": [ + -73.4781458517777, + 45.5393471090983 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8108396194197 + }, + "name": "ch. du Lac et Valade", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.478145852, + 45.539347109 + ] + }, + "is_frozen": false, + "integer_id": 1099, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475643, + 45.541401 + ] + }, + "id": 1100, + "properties": { + "id": "1396e79d-a217-431f-ba1d-6596c1924ac0", + "code": "33101", + "data": { + "stops": [ + { + "id": "3101", + "code": "33101", + "data": { + "gtfs": { + "stop_id": "3101", + "stop_code": "33101", + "stop_name": "ch. du Lac et Vianney", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et Vianney", + "geography": { + "type": "Point", + "coordinates": [ + -73.4756433860357, + 45.5414009661815 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8456091288443 + }, + "name": "ch. du Lac et Vianney", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475643386, + 45.541400966 + ] + }, + "is_frozen": false, + "integer_id": 1100, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.473906, + 45.543163 + ] + }, + "id": 1101, + "properties": { + "id": "3a5ea563-a764-4bb6-b2d3-d98a1c377161", + "code": "33102", + "data": { + "stops": [ + { + "id": "3102", + "code": "33102", + "data": { + "gtfs": { + "stop_id": "3102", + "stop_code": "33102", + "stop_name": "ch. du Lac et Adoncour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et Adoncour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4740249315249, + 45.5430080394582 + ] + } + }, + { + "id": "4093", + "code": "34093", + "data": { + "gtfs": { + "stop_id": "4093", + "stop_code": "34093", + "stop_name": "Adoncour et ch. du Lac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et ch. du Lac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4740690336769, + 45.5433013773392 + ] + } + }, + { + "id": "5046", + "code": "35046", + "data": { + "gtfs": { + "stop_id": "5046", + "stop_code": "35046", + "stop_name": "Adoncour et ch. du Lac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et ch. du Lac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4737438766759, + 45.5433182892832 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8754441763288 + }, + "name": "ch. du Lac et Adoncour", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.473906455, + 45.543163164 + ] + }, + "is_frozen": false, + "integer_id": 1101, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.471896, + 45.541938 + ] + }, + "id": 1102, + "properties": { + "id": "a1edad0a-8432-4850-b895-9d97092489b6", + "code": "33103", + "data": { + "stops": [ + { + "id": "3103", + "code": "33103", + "data": { + "gtfs": { + "stop_id": "3103", + "stop_code": "33103", + "stop_name": "Adoncour et boul. Curé-Poirier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et boul. Curé-Poirier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.471896255235, + 45.5419383387279 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8547068758297 + }, + "name": "Adoncour et boul. Curé-Poirier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.471896255, + 45.541938339 + ] + }, + "is_frozen": false, + "integer_id": 1102, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474241, + 45.540128 + ] + }, + "id": 1103, + "properties": { + "id": "f7649797-fc15-4753-8189-cbc65d444f77", + "code": "33104", + "data": { + "stops": [ + { + "id": "3104", + "code": "33104", + "data": { + "gtfs": { + "stop_id": "3104", + "stop_code": "33104", + "stop_name": "boul. Curé-Poirier est et civique 945", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier est et civique 945", + "geography": { + "type": "Point", + "coordinates": [ + -73.4742411683654, + 45.5401283456882 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8240646474461 + }, + "name": "boul. Curé-Poirier est et civique 945", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474241168, + 45.540128346 + ] + }, + "is_frozen": false, + "integer_id": 1103, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.477667, + 45.537657 + ] + }, + "id": 1104, + "properties": { + "id": "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", + "code": "33105", + "data": { + "stops": [ + { + "id": "3105", + "code": "33105", + "data": { + "gtfs": { + "stop_id": "3105", + "stop_code": "33105", + "stop_name": "boul. Curé-Poirier est et boul. Roland-Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier est et boul. Roland-Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4775003557298, + 45.5376399706067 + ] + } + }, + { + "id": "3448", + "code": "33448", + "data": { + "gtfs": { + "stop_id": "3448", + "stop_code": "33448", + "stop_name": "boul. Roland-Therrien et boul. Curé-Poirier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et boul. Curé-Poirier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4778327793239, + 45.537673511354 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7822263965766 + }, + "name": "boul. Curé-Poirier est et boul. Roland-Therrien", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.477666568, + 45.537656741 + ] + }, + "is_frozen": false, + "integer_id": 1104, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479486, + 45.535118 + ] + }, + "id": 1105, + "properties": { + "id": "4b62100a-5cde-4d2b-8815-1a60c1ba3220", + "code": "33106", + "data": { + "stops": [ + { + "id": "3106", + "code": "33106", + "data": { + "gtfs": { + "stop_id": "3106", + "stop_code": "33106", + "stop_name": "Frontenac et Laurier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Frontenac et Laurier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4794862684772, + 45.5351175188767 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7392492291567 + }, + "name": "Frontenac et Laurier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479486268, + 45.535117519 + ] + }, + "is_frozen": false, + "integer_id": 1105, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.487645, + 45.520342 + ] + }, + "id": 1106, + "properties": { + "id": "88e6eee9-3b8c-474d-aeb4-599447d404be", + "code": "33113", + "data": { + "stops": [ + { + "id": "3113", + "code": "33113", + "data": { + "gtfs": { + "stop_id": "3113", + "stop_code": "33113", + "stop_name": "boul. Curé-Poirier ouest et Joliette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Joliette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4875525962849, + 45.520448611872 + ] + } + }, + { + "id": "3132", + "code": "33132", + "data": { + "gtfs": { + "stop_id": "3132", + "stop_code": "33132", + "stop_name": "Joliette et boul. Curé-Poirier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et boul. Curé-Poirier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4876648459197, + 45.5202693101748 + ] + } + }, + { + "id": "3181", + "code": "33181", + "data": { + "gtfs": { + "stop_id": "3181", + "stop_code": "33181", + "stop_name": "Joliette et boul. Curé-Poirier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et boul. Curé-Poirier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4873496896454, + 45.5203265532429 + ] + } + }, + { + "id": "3410", + "code": "33410", + "data": { + "gtfs": { + "stop_id": "3410", + "stop_code": "33410", + "stop_name": "boul. Curé-Poirier ouest et Joliette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Joliette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4874944364686, + 45.5201515259457 + ] + } + }, + { + "id": "4902", + "code": "34902", + "data": { + "gtfs": { + "stop_id": "4902", + "stop_code": "34902", + "stop_name": "Joliette et boul. Curé-Poirier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et boul. Curé-Poirier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4879408151418, + 45.5205315620973 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4892827599605 + }, + "name": "boul. Curé-Poirier ouest et Joliette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.487645, + 45.520342 + ] + }, + "is_frozen": false, + "integer_id": 1106, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.512116, + 45.528594 + ] + }, + "id": 1107, + "properties": { + "id": "acba124b-c690-43dc-b717-ae889034a110", + "code": "33125", + "data": { + "stops": [ + { + "id": "3125", + "code": "33125", + "data": { + "gtfs": { + "stop_id": "3125", + "stop_code": "33125", + "stop_name": "Joliette et MCDONALD", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et MCDONALD", + "geography": { + "type": "Point", + "coordinates": [ + -73.5121164429419, + 45.5285943682996 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6288628851064 + }, + "name": "Joliette et MCDONALD", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.512116, + 45.528594 + ] + }, + "is_frozen": false, + "integer_id": 1107, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.505371, + 45.526502 + ] + }, + "id": 1108, + "properties": { + "id": "20a17f7f-4c8c-4119-ac8f-7160c6595370", + "code": "33126", + "data": { + "stops": [ + { + "id": "3126", + "code": "33126", + "data": { + "gtfs": { + "stop_id": "3126", + "stop_code": "33126", + "stop_name": "Joliette et Perrault", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Perrault", + "geography": { + "type": "Point", + "coordinates": [ + -73.5055322833962, + 45.5264681394774 + ] + } + }, + { + "id": "3187", + "code": "33187", + "data": { + "gtfs": { + "stop_id": "3187", + "stop_code": "33187", + "stop_name": "Joliette et Perrault", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Perrault", + "geography": { + "type": "Point", + "coordinates": [ + -73.5052089965098, + 45.5265361069423 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5934715848368 + }, + "name": "Joliette et Perrault", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.505371, + 45.526502 + ] + }, + "is_frozen": false, + "integer_id": 1108, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.493829, + 45.522509 + ] + }, + "id": 1109, + "properties": { + "id": "a76bf032-5164-44ff-92fb-30023319517e", + "code": "33130", + "data": { + "stops": [ + { + "id": "3130", + "code": "33130", + "data": { + "gtfs": { + "stop_id": "3130", + "stop_code": "33130", + "stop_name": "Joliette et Després", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Després", + "geography": { + "type": "Point", + "coordinates": [ + -73.4939807933325, + 45.5224877363243 + ] + } + }, + { + "id": "3183", + "code": "33183", + "data": { + "gtfs": { + "stop_id": "3183", + "stop_code": "33183", + "stop_name": "Joliette et Després", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Després", + "geography": { + "type": "Point", + "coordinates": [ + -73.4936777577783, + 45.5225305316398 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.525931044753 + }, + "name": "Joliette et Després", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493829, + 45.522509 + ] + }, + "is_frozen": false, + "integer_id": 1109, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490865, + 45.521479 + ] + }, + "id": 1110, + "properties": { + "id": "a63c10e3-b289-47b6-9867-4d82c043e2cb", + "code": "33131", + "data": { + "stops": [ + { + "id": "3131", + "code": "33131", + "data": { + "gtfs": { + "stop_id": "3131", + "stop_code": "33131", + "stop_name": "Joliette et Front", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Front", + "geography": { + "type": "Point", + "coordinates": [ + -73.4910376568319, + 45.5214532312036 + ] + } + }, + { + "id": "3182", + "code": "33182", + "data": { + "gtfs": { + "stop_id": "3182", + "stop_code": "33182", + "stop_name": "Joliette et Front", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Front", + "geography": { + "type": "Point", + "coordinates": [ + -73.490692263019, + 45.5215044170828 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5085111721352 + }, + "name": "Joliette et Front", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490865, + 45.521479 + ] + }, + "is_frozen": false, + "integer_id": 1110, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.484866, + 45.519398 + ] + }, + "id": 1111, + "properties": { + "id": "e31a1f56-4ede-4f4f-a7a7-2fdbee444a41", + "code": "33133", + "data": { + "stops": [ + { + "id": "3133", + "code": "33133", + "data": { + "gtfs": { + "stop_id": "3133", + "stop_code": "33133", + "stop_name": "Joliette et Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4850240976972, + 45.5193846907689 + ] + } + }, + { + "id": "3180", + "code": "33180", + "data": { + "gtfs": { + "stop_id": "3180", + "stop_code": "33180", + "stop_name": "Joliette et Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4847082301978, + 45.5194107424949 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4733191486512 + }, + "name": "Joliette et Hubert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.484866, + 45.519398 + ] + }, + "is_frozen": false, + "integer_id": 1111, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.48194, + 45.518366 + ] + }, + "id": 1112, + "properties": { + "id": "e9c79425-c47b-44ec-82ff-b480b97ceae7", + "code": "33134", + "data": { + "stops": [ + { + "id": "3134", + "code": "33134", + "data": { + "gtfs": { + "stop_id": "3134", + "stop_code": "33134", + "stop_name": "Joliette et Beauregard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Beauregard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4821249720519, + 45.5183549886231 + ] + } + }, + { + "id": "3179", + "code": "33179", + "data": { + "gtfs": { + "stop_id": "3179", + "stop_code": "33179", + "stop_name": "Joliette et Beauregard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Beauregard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4817549944169, + 45.518376681077 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4558683124708 + }, + "name": "Joliette et Beauregard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48194, + 45.518366 + ] + }, + "is_frozen": false, + "integer_id": 1112, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.472771, + 45.517293 + ] + }, + "id": 1113, + "properties": { + "id": "41c46bd6-8021-4abc-88c9-f9d4d32afe26", + "code": "33137", + "data": { + "stops": [ + { + "id": "3137", + "code": "33137", + "data": { + "gtfs": { + "stop_id": "3137", + "stop_code": "33137", + "stop_name": "Jean-Béliveau et boul. Perron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jean-Béliveau et boul. Perron", + "geography": { + "type": "Point", + "coordinates": [ + -73.4730455211852, + 45.5173294843936 + ] + } + }, + { + "id": "3177", + "code": "33177", + "data": { + "gtfs": { + "stop_id": "3177", + "stop_code": "33177", + "stop_name": "Jean-Béliveau et boul. Perron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jean-Béliveau et boul. Perron", + "geography": { + "type": "Point", + "coordinates": [ + -73.4724961234312, + 45.5172558499419 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4377195531671 + }, + "name": "Jean-Béliveau et boul. Perron", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472770822, + 45.517292667 + ] + }, + "is_frozen": false, + "integer_id": 1113, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469019, + 45.515854 + ] + }, + "id": 1114, + "properties": { + "id": "ddeef6c2-ef0f-4d9f-a765-534563936049", + "code": "33138", + "data": { + "stops": [ + { + "id": "3138", + "code": "33138", + "data": { + "gtfs": { + "stop_id": "3138", + "stop_code": "33138", + "stop_name": "Jean-Béliveau et Maréchal", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jean-Béliveau et Maréchal", + "geography": { + "type": "Point", + "coordinates": [ + -73.4690193127557, + 45.515854095715 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4133966716865 + }, + "name": "Jean-Béliveau et Maréchal", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469019313, + 45.515854096 + ] + }, + "is_frozen": false, + "integer_id": 1114, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463681, + 45.5128 + ] + }, + "id": 1115, + "properties": { + "id": "0751a485-9efa-4491-b69f-eed5163417d8", + "code": "33139", + "data": { + "stops": [ + { + "id": "3139", + "code": "33139", + "data": { + "gtfs": { + "stop_id": "3139", + "stop_code": "33139", + "stop_name": "Darveau et Dubuisson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Darveau et Dubuisson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4639207913406, + 45.5126266682665 + ] + } + }, + { + "id": "3174", + "code": "33174", + "data": { + "gtfs": { + "stop_id": "3174", + "stop_code": "33174", + "stop_name": "Darveau et Didace", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Darveau et Didace", + "geography": { + "type": "Point", + "coordinates": [ + -73.4634415646057, + 45.5129729251783 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.361761708093 + }, + "name": "Darveau et Dubuisson", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463681178, + 45.512799797 + ] + }, + "is_frozen": false, + "integer_id": 1115, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464965, + 45.511171 + ] + }, + "id": 1116, + "properties": { + "id": "5b565a57-bd7f-42f0-a279-0af0bf5f2a4d", + "code": "33140", + "data": { + "stops": [ + { + "id": "3140", + "code": "33140", + "data": { + "gtfs": { + "stop_id": "3140", + "stop_code": "33140", + "stop_name": "Darveau et Duvivier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Darveau et Duvivier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4650758581499, + 45.5113627497803 + ] + } + }, + { + "id": "3173", + "code": "33173", + "data": { + "gtfs": { + "stop_id": "3173", + "stop_code": "33173", + "stop_name": "Duvivier et Darveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Duvivier et Darveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4648550954387, + 45.5109800585661 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3342360327117 + }, + "name": "Darveau et Duvivier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464965477, + 45.511171404 + ] + }, + "is_frozen": false, + "integer_id": 1116, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463372, + 45.509936 + ] + }, + "id": 1117, + "properties": { + "id": "3d29747a-7b75-4b0e-ad8a-50eec4e70061", + "code": "33141", + "data": { + "stops": [ + { + "id": "3141", + "code": "33141", + "data": { + "gtfs": { + "stop_id": "3141", + "stop_code": "33141", + "stop_name": "Duvivier et Duhamel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Duvivier et Duhamel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4635797789234, + 45.5099090380349 + ] + } + }, + { + "id": "3172", + "code": "33172", + "data": { + "gtfs": { + "stop_id": "3172", + "stop_code": "33172", + "stop_name": "Duhamel et Duvivier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Duhamel et Duvivier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4631642915502, + 45.5099628953267 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.313354296719 + }, + "name": "Duvivier et Duhamel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463372035, + 45.509935967 + ] + }, + "is_frozen": false, + "integer_id": 1117, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461908, + 45.510871 + ] + }, + "id": 1118, + "properties": { + "id": "1f1dcc94-03fa-4333-b695-c1027c760604", + "code": "33142", + "data": { + "stops": [ + { + "id": "3142", + "code": "33142", + "data": { + "gtfs": { + "stop_id": "3142", + "stop_code": "33142", + "stop_name": "Duhamel et Denaut", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Duhamel et Denaut", + "geography": { + "type": "Point", + "coordinates": [ + -73.461907776015, + 45.5108713235145 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3291638633356 + }, + "name": "Duhamel et Denaut", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461907776, + 45.510871324 + ] + }, + "is_frozen": false, + "integer_id": 1118, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461081, + 45.512166 + ] + }, + "id": 1119, + "properties": { + "id": "7183eaac-7645-401f-919b-91209487af61", + "code": "33143", + "data": { + "stops": [ + { + "id": "3143", + "code": "33143", + "data": { + "gtfs": { + "stop_id": "3143", + "stop_code": "33143", + "stop_name": "Duhamel et tsse Decelles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Duhamel et tsse Decelles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4610627739694, + 45.5120296918793 + ] + } + }, + { + "id": "3170", + "code": "33170", + "data": { + "gtfs": { + "stop_id": "3170", + "stop_code": "33170", + "stop_name": "Duhamel et tsse Decelles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Duhamel et tsse Decelles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4610984354592, + 45.5123016541534 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3510424600364 + }, + "name": "Duhamel et tsse Decelles", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461080605, + 45.512165673 + ] + }, + "is_frozen": false, + "integer_id": 1119, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459805, + 45.513301 + ] + }, + "id": 1120, + "properties": { + "id": "d8f16090-e69f-45d8-b535-45f45ab1b739", + "code": "33144", + "data": { + "stops": [ + { + "id": "3144", + "code": "33144", + "data": { + "gtfs": { + "stop_id": "3144", + "stop_code": "33144", + "stop_name": "Duhamel et de Lyon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Duhamel et de Lyon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4601054761279, + 45.5133272758515 + ] + } + }, + { + "id": "3169", + "code": "33169", + "data": { + "gtfs": { + "stop_id": "3169", + "stop_code": "33169", + "stop_name": "de Lyon et Rouillard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Lyon et Rouillard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4595040817419, + 45.5132742894379 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3702306412571 + }, + "name": "Duhamel et de Lyon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459804779, + 45.513300783 + ] + }, + "is_frozen": false, + "integer_id": 1120, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458717, + 45.512818 + ] + }, + "id": 1121, + "properties": { + "id": "2f3f3f3e-941f-4165-a7c4-41af6cf1cc84", + "code": "33145", + "data": { + "stops": [ + { + "id": "3145", + "code": "33145", + "data": { + "gtfs": { + "stop_id": "3145", + "stop_code": "33145", + "stop_name": "de Lyon et Dumont", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Lyon et Dumont", + "geography": { + "type": "Point", + "coordinates": [ + -73.4587166806126, + 45.512817952643 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3620686228471 + }, + "name": "de Lyon et Dumont", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.458716681, + 45.512817953 + ] + }, + "is_frozen": false, + "integer_id": 1121, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456568, + 45.512115 + ] + }, + "id": 1122, + "properties": { + "id": "065b0112-1102-48ec-b10a-c88cde002f4f", + "code": "33146", + "data": { + "stops": [ + { + "id": "3146", + "code": "33146", + "data": { + "gtfs": { + "stop_id": "3146", + "stop_code": "33146", + "stop_name": "de Lyon et boul. Roberval ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Lyon et boul. Roberval ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.456805447611, + 45.512122564669 + ] + } + }, + { + "id": "3160", + "code": "33160", + "data": { + "gtfs": { + "stop_id": "3160", + "stop_code": "33160", + "stop_name": "boul. Roberval ouest et de Lyon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval ouest et de Lyon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4565949826773, + 45.5122866789851 + ] + } + }, + { + "id": "3168", + "code": "33168", + "data": { + "gtfs": { + "stop_id": "3168", + "stop_code": "33168", + "stop_name": "de Lyon et boul. Roberval ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Lyon et boul. Roberval ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4563305917144, + 45.5121149757286 + ] + } + }, + { + "id": "3520", + "code": "33520", + "data": { + "gtfs": { + "stop_id": "3520", + "stop_code": "33520", + "stop_name": "boul. Roberval ouest et de Lyon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval ouest et de Lyon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4565060207906, + 45.5119424143447 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3501782404446 + }, + "name": "de Lyon et boul. Roberval ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45656802, + 45.512114547 + ] + }, + "is_frozen": false, + "integer_id": 1122, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453384, + 45.510946 + ] + }, + "id": 1123, + "properties": { + "id": "b79429dc-e0f7-44a7-b564-ff6f9831d545", + "code": "33147", + "data": { + "stops": [ + { + "id": "3147", + "code": "33147", + "data": { + "gtfs": { + "stop_id": "3147", + "stop_code": "33147", + "stop_name": "de Lyon et Repentigny", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Lyon et Repentigny", + "geography": { + "type": "Point", + "coordinates": [ + -73.4535879317963, + 45.5109405673454 + ] + } + }, + { + "id": "3167", + "code": "33167", + "data": { + "gtfs": { + "stop_id": "3167", + "stop_code": "33167", + "stop_name": "de Lyon et Repentigny", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Lyon et Repentigny", + "geography": { + "type": "Point", + "coordinates": [ + -73.4531803013309, + 45.5109521682298 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3304323038265 + }, + "name": "de Lyon et Repentigny", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453384117, + 45.510946368 + ] + }, + "is_frozen": false, + "integer_id": 1123, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451519, + 45.509284 + ] + }, + "id": 1124, + "properties": { + "id": "e10756d4-095f-4fec-94fb-19ac7075bc43", + "code": "33149", + "data": { + "stops": [ + { + "id": "3149", + "code": "33149", + "data": { + "gtfs": { + "stop_id": "3149", + "stop_code": "33149", + "stop_name": "Richmond et civique 3333", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Richmond et civique 3333", + "geography": { + "type": "Point", + "coordinates": [ + -73.4516021682168, + 45.5091614108793 + ] + } + }, + { + "id": "3165", + "code": "33165", + "data": { + "gtfs": { + "stop_id": "3165", + "stop_code": "33165", + "stop_name": "Richmond et civique 3340", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Richmond et civique 3340", + "geography": { + "type": "Point", + "coordinates": [ + -73.4514361813647, + 45.5094071097912 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.302339492168 + }, + "name": "Richmond et civique 3333", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451519175, + 45.50928426 + ] + }, + "is_frozen": false, + "integer_id": 1124, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453579, + 45.508639 + ] + }, + "id": 1125, + "properties": { + "id": "3dcc9db5-75c0-46a8-8247-d3d2e0220e07", + "code": "33150", + "data": { + "stops": [ + { + "id": "3150", + "code": "33150", + "data": { + "gtfs": { + "stop_id": "3150", + "stop_code": "33150", + "stop_name": "Richmond et Rhéaume", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Richmond et Rhéaume", + "geography": { + "type": "Point", + "coordinates": [ + -73.4532710763347, + 45.5087309923255 + ] + } + }, + { + "id": "3164", + "code": "33164", + "data": { + "gtfs": { + "stop_id": "3164", + "stop_code": "33164", + "stop_name": "Richmond et civique 3256", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Richmond et civique 3256", + "geography": { + "type": "Point", + "coordinates": [ + -73.4538878580932, + 45.5085460968479 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2914263341519 + }, + "name": "Richmond et Rhéaume", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453579467, + 45.508638545 + ] + }, + "is_frozen": false, + "integer_id": 1125, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455826, + 45.508487 + ] + }, + "id": 1126, + "properties": { + "id": "98d2ace5-e4e8-4113-91e3-89c01d89a89f", + "code": "33151", + "data": { + "stops": [ + { + "id": "3151", + "code": "33151", + "data": { + "gtfs": { + "stop_id": "3151", + "stop_code": "33151", + "stop_name": "Richmond et Riverin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Richmond et Riverin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4556188072629, + 45.5085698751197 + ] + } + }, + { + "id": "3163", + "code": "33163", + "data": { + "gtfs": { + "stop_id": "3163", + "stop_code": "33163", + "stop_name": "Richmond et Riverin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Richmond et Riverin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4560327006965, + 45.5084043931291 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2888674072627 + }, + "name": "Richmond et Riverin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455825754, + 45.508487134 + ] + }, + "is_frozen": false, + "integer_id": 1126, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457859, + 45.508341 + ] + }, + "id": 1127, + "properties": { + "id": "1fdfd4f4-c553-4a7d-8963-4eb750e13bff", + "code": "33152", + "data": { + "stops": [ + { + "id": "3152", + "code": "33152", + "data": { + "gtfs": { + "stop_id": "3152", + "stop_code": "33152", + "stop_name": "Richmond et boul. Roberval ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Richmond et boul. Roberval ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4580300919595, + 45.5084044488773 + ] + } + }, + { + "id": "3162", + "code": "33162", + "data": { + "gtfs": { + "stop_id": "3162", + "stop_code": "33162", + "stop_name": "Richmond et boul. Roberval ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Richmond et boul. Roberval ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4576878704762, + 45.508278293431 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.286403953877 + }, + "name": "Richmond et boul. Roberval ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457858981, + 45.508341371 + ] + }, + "is_frozen": false, + "integer_id": 1127, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457751, + 45.509544 + ] + }, + "id": 1128, + "properties": { + "id": "77540404-5599-4bb2-b15d-add1fcb9fe20", + "code": "33153", + "data": { + "stops": [ + { + "id": "3153", + "code": "33153", + "data": { + "gtfs": { + "stop_id": "3153", + "stop_code": "33153", + "stop_name": "boul. Roberval ouest et Denaut", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval ouest et Denaut", + "geography": { + "type": "Point", + "coordinates": [ + -73.4576938345406, + 45.5093951319789 + ] + } + }, + { + "id": "3161", + "code": "33161", + "data": { + "gtfs": { + "stop_id": "3161", + "stop_code": "33161", + "stop_name": "boul. Roberval ouest et Denaut", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval ouest et Denaut", + "geography": { + "type": "Point", + "coordinates": [ + -73.4578090053475, + 45.5096926785376 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3067278283285 + }, + "name": "boul. Roberval ouest et Denaut", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45775142, + 45.509543905 + ] + }, + "is_frozen": false, + "integer_id": 1128, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454074, + 45.515409 + ] + }, + "id": 1129, + "properties": { + "id": "6716e17d-58d0-427c-a6f7-62e8d8197b2a", + "code": "33154", + "data": { + "stops": [ + { + "id": "3154", + "code": "33154", + "data": { + "gtfs": { + "stop_id": "3154", + "stop_code": "33154", + "stop_name": "boul. Roberval ouest et civique 390", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval ouest et civique 390", + "geography": { + "type": "Point", + "coordinates": [ + -73.4543111571838, + 45.5150800899929 + ] + } + }, + { + "id": "5750", + "code": "30519", + "data": { + "gtfs": { + "stop_id": "5750", + "stop_code": "30519", + "stop_name": "boul. Roberval ouest et Racicot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval ouest et Racicot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4538362271421, + 45.5157374246208 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.405867401186 + }, + "name": "boul. Roberval ouest et civique 390", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454073692, + 45.515408757 + ] + }, + "is_frozen": false, + "integer_id": 1129, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462875, + 45.51427 + ] + }, + "id": 1130, + "properties": { + "id": "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", + "code": "33155", + "data": { + "stops": [ + { + "id": "3155", + "code": "33155", + "data": { + "gtfs": { + "stop_id": "3155", + "stop_code": "33155", + "stop_name": "de Lyon et Darveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Lyon et Darveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4631257345796, + 45.5144413548353 + ] + } + }, + { + "id": "3175", + "code": "33175", + "data": { + "gtfs": { + "stop_id": "3175", + "stop_code": "33175", + "stop_name": "Darveau et de Lyon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Darveau et de Lyon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4626232807809, + 45.514098149556 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3866112415985 + }, + "name": "de Lyon et Darveau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462874508, + 45.514269752 + ] + }, + "is_frozen": false, + "integer_id": 1130, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455231, + 45.516315 + ] + }, + "id": 1131, + "properties": { + "id": "ff7f9dbf-a0e0-4bfa-86dc-2f9a0bdd5926", + "code": "33156", + "data": { + "stops": [ + { + "id": "3156", + "code": "33156", + "data": { + "gtfs": { + "stop_id": "3156", + "stop_code": "33156", + "stop_name": "Racicot et civique 3081", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Racicot et civique 3081", + "geography": { + "type": "Point", + "coordinates": [ + -73.4554583221836, + 45.5164608739824 + ] + } + }, + { + "id": "3158", + "code": "33158", + "data": { + "gtfs": { + "stop_id": "3158", + "stop_code": "33158", + "stop_name": "Racicot et Richard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Racicot et Richard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4550044559833, + 45.5161688785943 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4211871864849 + }, + "name": "Racicot et civique 3081", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455231389, + 45.516314876 + ] + }, + "is_frozen": false, + "integer_id": 1131, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457242, + 45.517204 + ] + }, + "id": 1132, + "properties": { + "id": "c5f578ca-60dd-46cb-8482-2978ed0e3898", + "code": "33157", + "data": { + "stops": [ + { + "id": "3157", + "code": "33157", + "data": { + "gtfs": { + "stop_id": "3157", + "stop_code": "33157", + "stop_name": "Racicot et de Fontainebleau sud", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Racicot et de Fontainebleau sud", + "geography": { + "type": "Point", + "coordinates": [ + -73.4572419897164, + 45.5172039053518 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4362187413401 + }, + "name": "Racicot et de Fontainebleau sud", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45724199, + 45.517203905 + ] + }, + "is_frozen": false, + "integer_id": 1132, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455209, + 45.514004 + ] + }, + "id": 1133, + "properties": { + "id": "4ecd13b4-71e4-4328-bc7f-b30325894d82", + "code": "33159", + "data": { + "stops": [ + { + "id": "3159", + "code": "33159", + "data": { + "gtfs": { + "stop_id": "3159", + "stop_code": "33159", + "stop_name": "boul. Roberval ouest et Soissons", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval ouest et Soissons", + "geography": { + "type": "Point", + "coordinates": [ + -73.4552692466869, + 45.5141488392881 + ] + } + }, + { + "id": "4194", + "code": "34194", + "data": { + "gtfs": { + "stop_id": "4194", + "stop_code": "34194", + "stop_name": "boul. Roberval ouest et Soissons", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval ouest et Soissons", + "geography": { + "type": "Point", + "coordinates": [ + -73.4551493298541, + 45.5138601393778 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3821268383501 + }, + "name": "boul. Roberval ouest et Soissons", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455209288, + 45.514004489 + ] + }, + "is_frozen": false, + "integer_id": 1133, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451716, + 45.510264 + ] + }, + "id": 1134, + "properties": { + "id": "e7cd0200-d7e2-4808-b4af-d251dcc23019", + "code": "33166", + "data": { + "stops": [ + { + "id": "3166", + "code": "33166", + "data": { + "gtfs": { + "stop_id": "3166", + "stop_code": "33166", + "stop_name": "Richmond et de Lyon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Richmond et de Lyon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4515638461822, + 45.5101938229345 + ] + } + }, + { + "id": "4370", + "code": "34370", + "data": { + "gtfs": { + "stop_id": "4370", + "stop_code": "34370", + "stop_name": "de Lyon et Richmond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Lyon et Richmond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4518676087982, + 45.5103343734575 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3189003352182 + }, + "name": "Richmond et de Lyon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451715727, + 45.510264098 + ] + }, + "is_frozen": false, + "integer_id": 1134, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46573, + 45.515598 + ] + }, + "id": 1135, + "properties": { + "id": "5ca73944-03b3-4fca-ab1f-781dd6f959a4", + "code": "33176", + "data": { + "stops": [ + { + "id": "3176", + "code": "33176", + "data": { + "gtfs": { + "stop_id": "3176", + "stop_code": "33176", + "stop_name": "de Lyon et boul. Jacques-Cartier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Lyon et boul. Jacques-Cartier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4657304696146, + 45.515598152262 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4090694485533 + }, + "name": "de Lyon et boul. Jacques-Cartier ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46573047, + 45.515598152 + ] + }, + "is_frozen": false, + "integer_id": 1135, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.502585, + 45.525591 + ] + }, + "id": 1136, + "properties": { + "id": "3166d228-f358-4741-9950-420cebd0aa4c", + "code": "33186", + "data": { + "stops": [ + { + "id": "3186", + "code": "33186", + "data": { + "gtfs": { + "stop_id": "3186", + "stop_code": "33186", + "stop_name": "Joliette et Crémazie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Crémazie", + "geography": { + "type": "Point", + "coordinates": [ + -73.502305120164, + 45.5255866316421 + ] + } + }, + { + "id": "3852", + "code": "33852", + "data": { + "gtfs": { + "stop_id": "3852", + "stop_code": "33852", + "stop_name": "Joliette et Crémazie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Crémazie", + "geography": { + "type": "Point", + "coordinates": [ + -73.5028646237838, + 45.5255960870924 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5780610093631 + }, + "name": "Joliette et Crémazie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.502585, + 45.525591 + ] + }, + "is_frozen": false, + "integer_id": 1136, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.512533, + 45.528988 + ] + }, + "id": 1137, + "properties": { + "id": "05160b93-3ef3-4dd9-83e8-740d2dc282d9", + "code": "33190", + "data": { + "stops": [ + { + "id": "3190", + "code": "33190", + "data": { + "gtfs": { + "stop_id": "3190", + "stop_code": "33190", + "stop_name": "Joliette et Saint-Laurent ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Saint-Laurent ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.512533105993, + 45.528988343026 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6355287960017 + }, + "name": "Joliette et Saint-Laurent ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.512533, + 45.528988 + ] + }, + "is_frozen": false, + "integer_id": 1137, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.49359, + 45.511273 + ] + }, + "id": 1138, + "properties": { + "id": "5d573c90-ed41-4ac1-9f58-abc862e00f93", + "code": "33202", + "data": { + "stops": [ + { + "id": "3202", + "code": "33202", + "data": { + "gtfs": { + "stop_id": "3202", + "stop_code": "33202", + "stop_name": "boul. Curé-Poirier ouest et Laval", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier ouest et Laval", + "geography": { + "type": "Point", + "coordinates": [ + -73.4935895918586, + 45.5112734252214 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3359604837666 + }, + "name": "boul. Curé-Poirier ouest et Laval", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493589592, + 45.511273425 + ] + }, + "is_frozen": false, + "integer_id": 1138, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.470223, + 45.447237 + ] + }, + "id": 1139, + "properties": { + "id": "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", + "code": "33203", + "data": { + "stops": [ + { + "id": "3203", + "code": "33203", + "data": { + "gtfs": { + "stop_id": "3203", + "stop_code": "33203", + "stop_name": "boul. Taschereau et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4702234304068, + 45.4472366265003 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2553729979028 + }, + "name": "boul. Taschereau et boul. Pelletier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47022343, + 45.447236627 + ] + }, + "is_frozen": false, + "integer_id": 1139, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474597, + 45.438325 + ] + }, + "id": 1140, + "properties": { + "id": "9d435e32-ad0d-41e2-bb28-30458533923f", + "code": "33204", + "data": { + "stops": [ + { + "id": "3204", + "code": "33204", + "data": { + "gtfs": { + "stop_id": "3204", + "stop_code": "33204", + "stop_name": "boul. Taschereau et ch. des Prairies", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et ch. des Prairies", + "geography": { + "type": "Point", + "coordinates": [ + -73.4745967384572, + 45.4383246431909 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1052765186671 + }, + "name": "boul. Taschereau et ch. des Prairies", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474596738, + 45.438324643 + ] + }, + "is_frozen": false, + "integer_id": 1140, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475361, + 45.434207 + ] + }, + "id": 1141, + "properties": { + "id": "46f71035-3e65-4e46-9e5d-154a9fb90fc8", + "code": "33205", + "data": { + "stops": [ + { + "id": "3205", + "code": "33205", + "data": { + "gtfs": { + "stop_id": "3205", + "stop_code": "33205", + "stop_name": "boul. Matte et boul. Taschereau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Matte et boul. Taschereau", + "geography": { + "type": "Point", + "coordinates": [ + -73.475360874842, + 45.4342066585042 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0359448209495 + }, + "name": "boul. Matte et boul. Taschereau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475360875, + 45.434206659 + ] + }, + "is_frozen": false, + "integer_id": 1141, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47206, + 45.43308 + ] + }, + "id": 1142, + "properties": { + "id": "c5dd3e08-dca5-473a-b3e2-b94affceddb5", + "code": "33207", + "data": { + "stops": [ + { + "id": "3207", + "code": "33207", + "data": { + "gtfs": { + "stop_id": "3207", + "stop_code": "33207", + "stop_name": "boul. Matte et civique 2755", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Matte et civique 2755", + "geography": { + "type": "Point", + "coordinates": [ + -73.4720595992023, + 45.4330804440881 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0169861210444 + }, + "name": "boul. Matte et civique 2755", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472059599, + 45.433080444 + ] + }, + "is_frozen": false, + "integer_id": 1142, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468671, + 45.429838 + ] + }, + "id": 1143, + "properties": { + "id": "f58a318f-2fac-4a22-b374-38335fe92155", + "code": "33209", + "data": { + "stops": [ + { + "id": "3209", + "code": "33209", + "data": { + "gtfs": { + "stop_id": "3209", + "stop_code": "33209", + "stop_name": "av. Illinois et Isabelle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Illinois et Isabelle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4686710239837, + 45.4298375489932 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.9624015123991 + }, + "name": "av. Illinois et Isabelle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468671024, + 45.429837549 + ] + }, + "is_frozen": false, + "integer_id": 1143, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467104, + 45.42925 + ] + }, + "id": 1144, + "properties": { + "id": "02173302-0d13-4f4c-b805-a10732912553", + "code": "33212", + "data": { + "stops": [ + { + "id": "3212", + "code": "33212", + "data": { + "gtfs": { + "stop_id": "3212", + "stop_code": "33212", + "stop_name": "Isabelle et civique 3530", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Isabelle et civique 3530", + "geography": { + "type": "Point", + "coordinates": [ + -73.4671036669977, + 45.4292496499406 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.9525069576446 + }, + "name": "Isabelle et civique 3530", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.467103667, + 45.42924965 + ] + }, + "is_frozen": false, + "integer_id": 1144, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468434, + 45.429674 + ] + }, + "id": 1145, + "properties": { + "id": "dd75840f-4ec8-4ee8-b04f-ae7639f6c994", + "code": "33213", + "data": { + "stops": [ + { + "id": "3213", + "code": "33213", + "data": { + "gtfs": { + "stop_id": "3213", + "stop_code": "33213", + "stop_name": "Isabelle et av. Illinois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Isabelle et av. Illinois", + "geography": { + "type": "Point", + "coordinates": [ + -73.4684341393885, + 45.4296740458807 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.9596496664992 + }, + "name": "Isabelle et av. Illinois", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468434139, + 45.429674046 + ] + }, + "is_frozen": false, + "integer_id": 1145, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467423, + 45.431381 + ] + }, + "id": 1146, + "properties": { + "id": "fbc5c4f7-343a-481e-867b-6e46cf998478", + "code": "33214", + "data": { + "stops": [ + { + "id": "3214", + "code": "33214", + "data": { + "gtfs": { + "stop_id": "3214", + "stop_code": "33214", + "stop_name": "av. Illinois et boul. Matte", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Illinois et boul. Matte", + "geography": { + "type": "Point", + "coordinates": [ + -73.4674231403547, + 45.4313807752104 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.9883760258317 + }, + "name": "av. Illinois et boul. Matte", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46742314, + 45.431380775 + ] + }, + "is_frozen": false, + "integer_id": 1146, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.472206, + 45.433443 + ] + }, + "id": 1147, + "properties": { + "id": "24ba4b22-45ca-4a49-b97e-fa35f5d53093", + "code": "33215", + "data": { + "stops": [ + { + "id": "3215", + "code": "33215", + "data": { + "gtfs": { + "stop_id": "3215", + "stop_code": "33215", + "stop_name": "boul. Matte et civique 2755", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Matte et civique 2755", + "geography": { + "type": "Point", + "coordinates": [ + -73.4722055599939, + 45.4334429616132 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0230886253182 + }, + "name": "boul. Matte et civique 2755", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47220556, + 45.433442962 + ] + }, + "is_frozen": false, + "integer_id": 1147, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474205, + 45.437933 + ] + }, + "id": 1148, + "properties": { + "id": "f673dd78-5910-4b73-a147-fdcaa1bf6a01", + "code": "33217", + "data": { + "stops": [ + { + "id": "3217", + "code": "33217", + "data": { + "gtfs": { + "stop_id": "3217", + "stop_code": "33217", + "stop_name": "boul. Taschereau et ch. des Prairies", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et ch. des Prairies", + "geography": { + "type": "Point", + "coordinates": [ + -73.4742047408929, + 45.4379328923924 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0986802265572 + }, + "name": "boul. Taschereau et ch. des Prairies", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474204741, + 45.437932892 + ] + }, + "is_frozen": false, + "integer_id": 1148, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464646, + 45.52069 + ] + }, + "id": 1149, + "properties": { + "id": "39c3eab5-6995-4187-aaec-6f0b6badd5cf", + "code": "33223", + "data": { + "stops": [ + { + "id": "3223", + "code": "33223", + "data": { + "gtfs": { + "stop_id": "3223", + "stop_code": "33223", + "stop_name": "de Chatham et boul. Jacques-Cartier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Chatham et boul. Jacques-Cartier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4643832603187, + 45.520677767095 + ] + } + }, + { + "id": "3224", + "code": "33224", + "data": { + "gtfs": { + "stop_id": "3224", + "stop_code": "33224", + "stop_name": "Maréchal et de Chatham", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maréchal et de Chatham", + "geography": { + "type": "Point", + "coordinates": [ + -73.46490896234, + 45.5207024306447 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4951695250865 + }, + "name": "de Chatham et boul. Jacques-Cartier ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464646111, + 45.520690099 + ] + }, + "is_frozen": false, + "integer_id": 1149, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468042, + 45.516271 + ] + }, + "id": 1150, + "properties": { + "id": "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9", + "code": "33226", + "data": { + "stops": [ + { + "id": "3226", + "code": "33226", + "data": { + "gtfs": { + "stop_id": "3226", + "stop_code": "33226", + "stop_name": "de Lyon et Maréchal", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Lyon et Maréchal", + "geography": { + "type": "Point", + "coordinates": [ + -73.4680583627286, + 45.516191271421 + ] + } + }, + { + "id": "3894", + "code": "33894", + "data": { + "gtfs": { + "stop_id": "3894", + "stop_code": "33894", + "stop_name": "Maréchal et Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maréchal et Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4680247694115, + 45.5163511331622 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4204487718798 + }, + "name": "de Lyon et Maréchal", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468041566, + 45.516271202 + ] + }, + "is_frozen": false, + "integer_id": 1150, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466738, + 45.518157 + ] + }, + "id": 1151, + "properties": { + "id": "dcd7d0e4-fcf8-4c5b-b660-50e4efaf9e01", + "code": "33227", + "data": { + "stops": [ + { + "id": "3227", + "code": "33227", + "data": { + "gtfs": { + "stop_id": "3227", + "stop_code": "33227", + "stop_name": "Maréchal et Labonté", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maréchal et Labonté", + "geography": { + "type": "Point", + "coordinates": [ + -73.4667380373582, + 45.5181569171551 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4523328920279 + }, + "name": "Maréchal et Labonté", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466738037, + 45.518156917 + ] + }, + "is_frozen": false, + "integer_id": 1151, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439654, + 45.564205 + ] + }, + "id": 1152, + "properties": { + "id": "f1fdc85c-124b-4428-8960-81d8b0fa863a", + "code": "33237", + "data": { + "stops": [ + { + "id": "3237", + "code": "33237", + "data": { + "gtfs": { + "stop_id": "3237", + "stop_code": "33237", + "stop_name": "Graham-Bell et civique 1260", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Graham-Bell et civique 1260", + "geography": { + "type": "Point", + "coordinates": [ + -73.4393938439678, + 45.5640851449722 + ] + } + }, + { + "id": "3452", + "code": "33452", + "data": { + "gtfs": { + "stop_id": "3452", + "stop_code": "33452", + "stop_name": "Graham-Bell et civique 1265", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Graham-Bell et civique 1265", + "geography": { + "type": "Point", + "coordinates": [ + -73.4399138626492, + 45.5643247618513 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2319081922875 + }, + "name": "Graham-Bell et civique 1260", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439653853, + 45.564204953 + ] + }, + "is_frozen": false, + "integer_id": 1152, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.436219, + 45.563451 + ] + }, + "id": 1153, + "properties": { + "id": "af75f57b-23de-436e-ac1d-d36a204dd0cd", + "code": "33238", + "data": { + "stops": [ + { + "id": "3238", + "code": "33238", + "data": { + "gtfs": { + "stop_id": "3238", + "stop_code": "33238", + "stop_name": "Graham-Bell et civique 1330", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Graham-Bell et civique 1330", + "geography": { + "type": "Point", + "coordinates": [ + -73.4363835028367, + 45.5633969812056 + ] + } + }, + { + "id": "3369", + "code": "33369", + "data": { + "gtfs": { + "stop_id": "3369", + "stop_code": "33369", + "stop_name": "Graham-Bell et civique 1331", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Graham-Bell et civique 1331", + "geography": { + "type": "Point", + "coordinates": [ + -73.4360539025828, + 45.5635055843486 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2191336175647 + }, + "name": "Graham-Bell et civique 1330", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.436218703, + 45.563451283 + ] + }, + "is_frozen": false, + "integer_id": 1153, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.432047, + 45.562626 + ] + }, + "id": 1154, + "properties": { + "id": "cb78d8bd-4b44-40b3-8301-c4501b063d48", + "code": "33239", + "data": { + "stops": [ + { + "id": "3239", + "code": "33239", + "data": { + "gtfs": { + "stop_id": "3239", + "stop_code": "33239", + "stop_name": "Graham-Bell et civique 1380", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Graham-Bell et civique 1380", + "geography": { + "type": "Point", + "coordinates": [ + -73.4320259663883, + 45.5625595482879 + ] + } + }, + { + "id": "3368", + "code": "33368", + "data": { + "gtfs": { + "stop_id": "3368", + "stop_code": "33368", + "stop_name": "Graham-Bell et civique 1380", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Graham-Bell et civique 1380", + "geography": { + "type": "Point", + "coordinates": [ + -73.4320682356094, + 45.5626925220478 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2051463903474 + }, + "name": "Graham-Bell et civique 1380", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.432047101, + 45.562626035 + ] + }, + "is_frozen": false, + "integer_id": 1154, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.428688, + 45.562438 + ] + }, + "id": 1155, + "properties": { + "id": "58c5658c-7476-4072-998b-0663b682b8a6", + "code": "33240", + "data": { + "stops": [ + { + "id": "3240", + "code": "33240", + "data": { + "gtfs": { + "stop_id": "3240", + "stop_code": "33240", + "stop_name": "Graham-Bell et civique 1445", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Graham-Bell et civique 1445", + "geography": { + "type": "Point", + "coordinates": [ + -73.4287172419834, + 45.5623703031943 + ] + } + }, + { + "id": "3367", + "code": "33367", + "data": { + "gtfs": { + "stop_id": "3367", + "stop_code": "33367", + "stop_name": "Graham-Bell et civique 1445", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Graham-Bell et civique 1445", + "geography": { + "type": "Point", + "coordinates": [ + -73.4286596057847, + 45.5625060053201 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2019620578011 + }, + "name": "Graham-Bell et civique 1445", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.428688424, + 45.562438154 + ] + }, + "is_frozen": false, + "integer_id": 1155, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.412973, + 45.567836 + ] + }, + "id": 1156, + "properties": { + "id": "494eea8e-2f4e-4123-9eb6-ab837bba3b5d", + "code": "33242", + "data": { + "stops": [ + { + "id": "3242", + "code": "33242", + "data": { + "gtfs": { + "stop_id": "3242", + "stop_code": "33242", + "stop_name": "ch. Du Tremblay et civique 300", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 300", + "geography": { + "type": "Point", + "coordinates": [ + -73.4132603768062, + 45.5677054623584 + ] + } + }, + { + "id": "3335", + "code": "33335", + "data": { + "gtfs": { + "stop_id": "3335", + "stop_code": "33335", + "stop_name": "ch. Du Tremblay et civique 300", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 300", + "geography": { + "type": "Point", + "coordinates": [ + -73.4126846695954, + 45.5679659752848 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2934561534129 + }, + "name": "ch. Du Tremblay et civique 300", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.412972523, + 45.567835719 + ] + }, + "is_frozen": false, + "integer_id": 1156, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.410874, + 45.567856 + ] + }, + "id": 1157, + "properties": { + "id": "4ff6fce9-ceb0-4a73-9642-e337dacfd9e4", + "code": "33243", + "data": { + "stops": [ + { + "id": "3243", + "code": "33243", + "data": { + "gtfs": { + "stop_id": "3243", + "stop_code": "33243", + "stop_name": "ch. Du Tremblay et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4108741726517, + 45.567856203947 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2938034441294 + }, + "name": "ch. Du Tremblay et boul. De Montarville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.410874173, + 45.567856204 + ] + }, + "is_frozen": false, + "integer_id": 1157, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.409269, + 45.499328 + ] + }, + "id": 1158, + "properties": { + "id": "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", + "code": "33273", + "data": { + "stops": [ + { + "id": "3273", + "code": "33273", + "data": { + "gtfs": { + "stop_id": "3273", + "stop_code": "33273", + "stop_name": "ch. de Chambly et Mauriat", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Mauriat", + "geography": { + "type": "Point", + "coordinates": [ + -73.4092707753898, + 45.4994132046956 + ] + } + }, + { + "id": "3274", + "code": "33274", + "data": { + "gtfs": { + "stop_id": "3274", + "stop_code": "33274", + "stop_name": "ch. de Chambly et tsse Georges-Jutras", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et tsse Georges-Jutras", + "geography": { + "type": "Point", + "coordinates": [ + -73.4092664274179, + 45.4992435006315 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1341170591544 + }, + "name": "ch. de Chambly et Mauriat", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.409268601, + 45.499328353 + ] + }, + "is_frozen": false, + "integer_id": 1158, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454269, + 45.460392 + ] + }, + "id": 1159, + "properties": { + "id": "47d3a0e8-5db6-4263-911d-0835de2b9cb0", + "code": "33276", + "data": { + "stops": [ + { + "id": "3276", + "code": "33276", + "data": { + "gtfs": { + "stop_id": "3276", + "stop_code": "33276", + "stop_name": "av. Malo et civique 3150", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et civique 3150", + "geography": { + "type": "Point", + "coordinates": [ + -73.4542685527791, + 45.4603919044105 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4770641447118 + }, + "name": "av. Malo et civique 3150", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454268553, + 45.460391904 + ] + }, + "is_frozen": false, + "integer_id": 1159, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.552784, + 45.497032 + ] + }, + "id": 1160, + "properties": { + "id": "72bc37a1-b03c-4149-8154-962f4512a12d", + "code": "33279", + "data": { + "stops": [ + { + "id": "3279", + "code": "33279", + "data": { + "gtfs": { + "stop_id": "3279", + "stop_code": "33279", + "stop_name": "de la Commune ouest et Queen", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Commune ouest et Queen", + "geography": { + "type": "Point", + "coordinates": [ + -73.5527835235992, + 45.4970315525516 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0953211344556 + }, + "name": "de la Commune ouest et Queen", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.552783524, + 45.497031553 + ] + }, + "is_frozen": false, + "integer_id": 1160, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.550726, + 45.524858 + ] + }, + "id": 1161, + "properties": { + "id": "c621a0b4-590c-49e4-a56e-dbf728939757", + "code": "33285", + "data": { + "stops": [ + { + "id": "3285", + "code": "33285", + "data": { + "gtfs": { + "stop_id": "3285", + "stop_code": "33285", + "stop_name": "av. De Lorimier et Sainte-Catherine est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. De Lorimier et Sainte-Catherine est", + "geography": { + "type": "Point", + "coordinates": [ + -73.5507256800974, + 45.5248578360801 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5656592642731 + }, + "name": "av. De Lorimier et Sainte-Catherine est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.55072568, + 45.524857836 + ] + }, + "is_frozen": false, + "integer_id": 1161, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.548382, + 45.521008 + ] + }, + "id": 1162, + "properties": { + "id": "40dfecad-5647-485d-a27b-e190661c773f", + "code": "33287", + "data": { + "stops": [ + { + "id": "3287", + "code": "33287", + "data": { + "gtfs": { + "stop_id": "3287", + "stop_code": "33287", + "stop_name": "av. Papineau et De La Gauchetière est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Papineau et De La Gauchetière est", + "geography": { + "type": "Point", + "coordinates": [ + -73.5483823150378, + 45.521008391872 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5005523300501 + }, + "name": "av. Papineau et De La Gauchetière est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.548382315, + 45.521008392 + ] + }, + "is_frozen": false, + "integer_id": 1162, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.552654, + 45.523965 + ] + }, + "id": 1163, + "properties": { + "id": "75f9df26-8a28-4cb0-870b-f121f95b87ff", + "code": "33289", + "data": { + "stops": [ + { + "id": "3289", + "code": "33289", + "data": { + "gtfs": { + "stop_id": "3289", + "stop_code": "33289", + "stop_name": "Cartier et METRO PAPINEAU", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Cartier et METRO PAPINEAU", + "geography": { + "type": "Point", + "coordinates": [ + -73.5527359006637, + 45.5238246404816 + ] + } + }, + { + "id": "5087", + "code": "35087", + "data": { + "gtfs": { + "stop_id": "5087", + "stop_code": "35087", + "stop_name": "Dorion et METRO PAPINEAU", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Dorion et METRO PAPINEAU", + "geography": { + "type": "Point", + "coordinates": [ + -73.5525728730792, + 45.5241054026318 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5505576262196 + }, + "name": "Cartier et METRO PAPINEAU", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.552654387, + 45.523965022 + ] + }, + "is_frozen": false, + "integer_id": 1163, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492709, + 45.489196 + ] + }, + "id": 1164, + "properties": { + "id": "fa220212-b6b2-4456-934f-7248f9884444", + "code": "33294", + "data": { + "stops": [ + { + "id": "3294", + "code": "33294", + "data": { + "gtfs": { + "stop_id": "3294", + "stop_code": "33294", + "stop_name": "av. Alexandra et av. Filion", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et av. Filion", + "geography": { + "type": "Point", + "coordinates": [ + -73.4928964698601, + 45.4890742455766 + ] + } + }, + { + "id": "5575", + "code": "30323", + "data": { + "gtfs": { + "stop_id": "5575", + "stop_code": "30323", + "stop_name": "av. Victoria et PROVIGO", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et PROVIGO", + "geography": { + "type": "Point", + "coordinates": [ + -73.4923188135975, + 45.4893858407876 + ] + } + }, + { + "id": "5623", + "code": "30372", + "data": { + "gtfs": { + "stop_id": "5623", + "stop_code": "30372", + "stop_name": "av. Alexandra et av. Filion", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Alexandra et av. Filion", + "geography": { + "type": "Point", + "coordinates": [ + -73.4930987622209, + 45.4890055772892 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9629989002788 + }, + "name": "av. Alexandra et av. Filion", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492708788, + 45.489195709 + ] + }, + "is_frozen": false, + "integer_id": 1164, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.472338, + 45.537303 + ] + }, + "id": 1165, + "properties": { + "id": "def08726-b847-4fc6-b901-78e04519a492", + "code": "33295", + "data": { + "stops": [ + { + "id": "3295", + "code": "33295", + "data": { + "gtfs": { + "stop_id": "3295", + "stop_code": "33295", + "stop_name": "boul. Roland-Therrien et TIM HORTON", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et TIM HORTON", + "geography": { + "type": "Point", + "coordinates": [ + -73.4723381866305, + 45.5373031852079 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7762420003879 + }, + "name": "boul. Roland-Therrien et TIM HORTON", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472338187, + 45.537303185 + ] + }, + "is_frozen": false, + "integer_id": 1165, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492276, + 45.456999 + ] + }, + "id": 1166, + "properties": { + "id": "16a4cfe7-4b02-454a-8a07-9501f3c5e0c5", + "code": "33296", + "data": { + "stops": [ + { + "id": "3296", + "code": "33296", + "data": { + "gtfs": { + "stop_id": "3296", + "stop_code": "33296", + "stop_name": "boul. de Rome et boul. Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et boul. Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4922755937622, + 45.4569992141809 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.419876248053 + }, + "name": "boul. de Rome et boul. Marie-Victorin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492275594, + 45.456999214 + ] + }, + "is_frozen": false, + "integer_id": 1166, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461348, + 45.591604 + ] + }, + "id": 1167, + "properties": { + "id": "6460b11a-31ec-4bbc-b7b7-22be32195079", + "code": "33297", + "data": { + "stops": [ + { + "id": "3297", + "code": "33297", + "data": { + "gtfs": { + "stop_id": "3297", + "stop_code": "33297", + "stop_name": "Sortie Marie-Victorin et boul. Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sortie Marie-Victorin et boul. Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4615220492566, + 45.5916705380248 + ] + } + }, + { + "id": "3377", + "code": "33377", + "data": { + "gtfs": { + "stop_id": "3377", + "stop_code": "33377", + "stop_name": "boul. Marie-Victorin et Sortie Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Sortie Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4611743768536, + 45.5914188164989 + ] + } + }, + { + "id": "4918", + "code": "34918", + "data": { + "gtfs": { + "stop_id": "4918", + "stop_code": "34918", + "stop_name": "boul. Marie-Victorin et rte 132 est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et rte 132 est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4612454678342, + 45.5917897807534 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6966671296173 + }, + "name": "Sortie Marie-Victorin et boul. Marie-Victorin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461348213, + 45.591604299 + ] + }, + "is_frozen": false, + "integer_id": 1167, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.405217, + 45.507198 + ] + }, + "id": 1168, + "properties": { + "id": "5228afc6-7e91-431f-8045-f41c542a77ea", + "code": "33300", + "data": { + "stops": [ + { + "id": "3300", + "code": "33300", + "data": { + "gtfs": { + "stop_id": "3300", + "stop_code": "33300", + "stop_name": "Maisonneuve et civique 795", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maisonneuve et civique 795", + "geography": { + "type": "Point", + "coordinates": [ + -73.4052337880996, + 45.5070788273136 + ] + } + }, + { + "id": "3301", + "code": "33301", + "data": { + "gtfs": { + "stop_id": "3301", + "stop_code": "33301", + "stop_name": "Maisonneuve et civique 776", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maisonneuve et civique 776", + "geography": { + "type": "Point", + "coordinates": [ + -73.4052011413355, + 45.5073161885455 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2670728652763 + }, + "name": "Maisonneuve et civique 795", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.405217465, + 45.507197508 + ] + }, + "is_frozen": false, + "integer_id": 1168, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463164, + 45.479392 + ] + }, + "id": 1169, + "properties": { + "id": "a2558ba6-6969-4ec2-a211-1170eb732a2b", + "code": "33305", + "data": { + "stops": [ + { + "id": "3305", + "code": "33305", + "data": { + "gtfs": { + "stop_id": "3305", + "stop_code": "33305", + "stop_name": "André et Alphonse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "André et Alphonse", + "geography": { + "type": "Point", + "coordinates": [ + -73.4630731892353, + 45.4791117015372 + ] + } + }, + { + "id": "3306", + "code": "33306", + "data": { + "gtfs": { + "stop_id": "3306", + "stop_code": "33306", + "stop_name": "Alphonse et André", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Alphonse et André", + "geography": { + "type": "Point", + "coordinates": [ + -73.4628048781125, + 45.4792600892077 + ] + } + }, + { + "id": "3983", + "code": "33983", + "data": { + "gtfs": { + "stop_id": "3983", + "stop_code": "33983", + "stop_name": "André et Angèle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "André et Angèle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4635238738729, + 45.4796719865579 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7975199952405 + }, + "name": "André et Alphonse", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463164376, + 45.479391844 + ] + }, + "is_frozen": false, + "integer_id": 1169, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459064, + 45.505584 + ] + }, + "id": 1170, + "properties": { + "id": "05522d17-41d4-4e98-a458-ec71ea1a802b", + "code": "33307", + "data": { + "stops": [ + { + "id": "3307", + "code": "33307", + "data": { + "gtfs": { + "stop_id": "3307", + "stop_code": "33307", + "stop_name": "boul. Sir-Wilfrid-Laurier et civique 3350", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier et civique 3350", + "geography": { + "type": "Point", + "coordinates": [ + -73.4590637119593, + 45.5055841131756 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2398087464152 + }, + "name": "boul. Sir-Wilfrid-Laurier et civique 3350", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459063712, + 45.505584113 + ] + }, + "is_frozen": false, + "integer_id": 1170, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448352, + 45.506602 + ] + }, + "id": 1171, + "properties": { + "id": "c9ccd441-872f-4e75-b699-0014386c3503", + "code": "33308", + "data": { + "stops": [ + { + "id": "3308", + "code": "33308", + "data": { + "gtfs": { + "stop_id": "3308", + "stop_code": "33308", + "stop_name": "boul. Sir-Wilfrid-Laurier et civique 3900", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier et civique 3900", + "geography": { + "type": "Point", + "coordinates": [ + -73.4483523577645, + 45.5066019251704 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2570080758069 + }, + "name": "boul. Sir-Wilfrid-Laurier et civique 3900", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448352358, + 45.506601925 + ] + }, + "is_frozen": false, + "integer_id": 1171, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.511295, + 45.540313 + ] + }, + "id": 1172, + "properties": { + "id": "52f97fd3-6c91-420e-82d2-2198f2064d40", + "code": "33314", + "data": { + "stops": [ + { + "id": "3314", + "code": "33314", + "data": { + "gtfs": { + "stop_id": "3314", + "stop_code": "33314", + "stop_name": "du Bord-de-l'Eau ouest et Grant", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau ouest et Grant", + "geography": { + "type": "Point", + "coordinates": [ + -73.5112683867253, + 45.54022088389 + ] + } + }, + { + "id": "3315", + "code": "33315", + "data": { + "gtfs": { + "stop_id": "3315", + "stop_code": "33315", + "stop_name": "du Bord-de-l'Eau ouest et Grant", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau ouest et Grant", + "geography": { + "type": "Point", + "coordinates": [ + -73.511322044622, + 45.5404053451959 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8271925553679 + }, + "name": "du Bord-de-l'Eau ouest et Grant", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.511295216, + 45.540313115 + ] + }, + "is_frozen": false, + "integer_id": 1172, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.498059, + 45.554437 + ] + }, + "id": 1173, + "properties": { + "id": "c879a803-d58b-4487-8291-391e9b516d3c", + "code": "33316", + "data": { + "stops": [ + { + "id": "3316", + "code": "33316", + "data": { + "gtfs": { + "stop_id": "3316", + "stop_code": "33316", + "stop_name": "boul. Marie-Victorin et PRATT & WHITNEY CANADA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et PRATT & WHITNEY CANADA", + "geography": { + "type": "Point", + "coordinates": [ + -73.4980589293826, + 45.5544373790335 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0663888458445 + }, + "name": "boul. Marie-Victorin et PRATT & WHITNEY CANADA", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.498058929, + 45.554437379 + ] + }, + "is_frozen": false, + "integer_id": 1173, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.495983, + 45.556797 + ] + }, + "id": 1174, + "properties": { + "id": "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", + "code": "33317", + "data": { + "stops": [ + { + "id": "3317", + "code": "33317", + "data": { + "gtfs": { + "stop_id": "3317", + "stop_code": "33317", + "stop_name": "boul. Marie-Victorin et civique 1100", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et civique 1100", + "geography": { + "type": "Point", + "coordinates": [ + -73.4959833017967, + 45.5567965997283 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1063599254471 + }, + "name": "boul. Marie-Victorin et civique 1100", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.495983302, + 45.5567966 + ] + }, + "is_frozen": false, + "integer_id": 1174, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.499241, + 45.551788 + ] + }, + "id": 1175, + "properties": { + "id": "66456437-f154-4a2f-a12f-2f54cf668687", + "code": "33318", + "data": { + "stops": [ + { + "id": "3318", + "code": "33318", + "data": { + "gtfs": { + "stop_id": "3318", + "stop_code": "33318", + "stop_name": "boul. Marie-Victorin et Geoffrion", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Geoffrion", + "geography": { + "type": "Point", + "coordinates": [ + -73.4992409953386, + 45.5517877205597 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0215029655382 + }, + "name": "boul. Marie-Victorin et Geoffrion", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.499240995, + 45.551787721 + ] + }, + "is_frozen": false, + "integer_id": 1175, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45595, + 45.483358 + ] + }, + "id": 1176, + "properties": { + "id": "1f1b5a64-7c8d-49de-8df3-369e30f799ef", + "code": "33319", + "data": { + "stops": [ + { + "id": "3319", + "code": "33319", + "data": { + "gtfs": { + "stop_id": "3319", + "stop_code": "33319", + "stop_name": "Grande Allée et Murdoch", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Murdoch", + "geography": { + "type": "Point", + "coordinates": [ + -73.4559503671858, + 45.4833583005423 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8644593172331 + }, + "name": "Grande Allée et Murdoch", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455950367, + 45.483358301 + ] + }, + "is_frozen": false, + "integer_id": 1176, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45531, + 45.463154 + ] + }, + "id": 1177, + "properties": { + "id": "1a441bab-41b8-447f-ba84-5034fae1da67", + "code": "33320", + "data": { + "stops": [ + { + "id": "3320", + "code": "33320", + "data": { + "gtfs": { + "stop_id": "3320", + "stop_code": "33320", + "stop_name": "boul. Lapinière et civique 3260", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et civique 3260", + "geography": { + "type": "Point", + "coordinates": [ + -73.4553096051266, + 45.4631543659848 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5236363308011 + }, + "name": "boul. Lapinière et civique 3260", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455309605, + 45.463154366 + ] + }, + "is_frozen": false, + "integer_id": 1177, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.396727, + 45.486049 + ] + }, + "id": 1178, + "properties": { + "id": "7b30134c-a936-4c6b-8038-780d1041baea", + "code": "33321", + "data": { + "stops": [ + { + "id": "3321", + "code": "33321", + "data": { + "gtfs": { + "stop_id": "3321", + "stop_code": "33321", + "stop_name": "boul. Cousineau et Joseph-Hardy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Joseph-Hardy", + "geography": { + "type": "Point", + "coordinates": [ + -73.3967272823633, + 45.486049294528 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9098814390579 + }, + "name": "boul. Cousineau et Joseph-Hardy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.396727282, + 45.486049295 + ] + }, + "is_frozen": false, + "integer_id": 1178, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.415336, + 45.567289 + ] + }, + "id": 1179, + "properties": { + "id": "2fb188f9-f7b1-471b-a5d6-51581b357b49", + "code": "33336", + "data": { + "stops": [ + { + "id": "3336", + "code": "33336", + "data": { + "gtfs": { + "stop_id": "3336", + "stop_code": "33336", + "stop_name": "ch. Du Tremblay et Nobel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Nobel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4153561919515, + 45.5674636332991 + ] + } + }, + { + "id": "3345", + "code": "33345", + "data": { + "gtfs": { + "stop_id": "3345", + "stop_code": "33345", + "stop_name": "ch. Du Tremblay et Nobel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Nobel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4153157741764, + 45.5671139417851 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2841839435922 + }, + "name": "ch. Du Tremblay et Nobel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.415335983, + 45.567288788 + ] + }, + "is_frozen": false, + "integer_id": 1179, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442267, + 45.564187 + ] + }, + "id": 1180, + "properties": { + "id": "68d70807-e1f4-4393-a156-0cb02f37fe17", + "code": "33337", + "data": { + "stops": [ + { + "id": "3337", + "code": "33337", + "data": { + "gtfs": { + "stop_id": "3337", + "stop_code": "33337", + "stop_name": "Graham-Bell et Volta", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Graham-Bell et Volta", + "geography": { + "type": "Point", + "coordinates": [ + -73.4420862646006, + 45.5643718347259 + ] + } + }, + { + "id": "3376", + "code": "33376", + "data": { + "gtfs": { + "stop_id": "3376", + "stop_code": "33376", + "stop_name": "Volta et Graham-Bell", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Volta et Graham-Bell", + "geography": { + "type": "Point", + "coordinates": [ + -73.4425600921533, + 45.5642420939305 + ] + } + }, + { + "id": "5280", + "code": "35280", + "data": { + "gtfs": { + "stop_id": "5280", + "stop_code": "35280", + "stop_name": "Volta et Graham-Bell", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Volta et Graham-Bell", + "geography": { + "type": "Point", + "coordinates": [ + -73.4419741899164, + 45.5640019895341 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2316023945629 + }, + "name": "Graham-Bell et Volta", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442267141, + 45.564186912 + ] + }, + "is_frozen": false, + "integer_id": 1180, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.471611, + 45.463562 + ] + }, + "id": 1181, + "properties": { + "id": "71ffac32-604a-4260-b51e-c427856a20c4", + "code": "33338", + "data": { + "stops": [ + { + "id": "3338", + "code": "33338", + "data": { + "gtfs": { + "stop_id": "3338", + "stop_code": "33338", + "stop_name": "av. Tisserand et civique 6940", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et civique 6940", + "geography": { + "type": "Point", + "coordinates": [ + -73.4717074208276, + 45.4635063020109 + ] + } + }, + { + "id": "3339", + "code": "33339", + "data": { + "gtfs": { + "stop_id": "3339", + "stop_code": "33339", + "stop_name": "av. Tisserand et civique 6845", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et civique 6845", + "geography": { + "type": "Point", + "coordinates": [ + -73.4715150995303, + 45.4636171021467 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5305041577575 + }, + "name": "av. Tisserand et civique 6940", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47161126, + 45.463561702 + ] + }, + "is_frozen": false, + "integer_id": 1181, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478435, + 45.464877 + ] + }, + "id": 1182, + "properties": { + "id": "eee98f97-7434-4d16-88a6-93a424bc6846", + "code": "33340", + "data": { + "stops": [ + { + "id": "3340", + "code": "33340", + "data": { + "gtfs": { + "stop_id": "3340", + "stop_code": "33340", + "stop_name": "av. Tisserand et civique 6590", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et civique 6590", + "geography": { + "type": "Point", + "coordinates": [ + -73.4787172294473, + 45.4648329005584 + ] + } + }, + { + "id": "3341", + "code": "33341", + "data": { + "gtfs": { + "stop_id": "3341", + "stop_code": "33341", + "stop_name": "av. Tisserand et civique 6630", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Tisserand et civique 6630", + "geography": { + "type": "Point", + "coordinates": [ + -73.4781528953789, + 45.4649220959397 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5526899433492 + }, + "name": "av. Tisserand et civique 6590", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.478435062, + 45.464877498 + ] + }, + "is_frozen": false, + "integer_id": 1182, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.493342, + 45.459351 + ] + }, + "id": 1183, + "properties": { + "id": "f5036251-0211-4905-a979-2d3d0f8db7ed", + "code": "33342", + "data": { + "stops": [ + { + "id": "3342", + "code": "33342", + "data": { + "gtfs": { + "stop_id": "3342", + "stop_code": "33342", + "stop_name": "boul. Marie-Victorin et civique 7680", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et civique 7680", + "geography": { + "type": "Point", + "coordinates": [ + -73.4933422024051, + 45.4593507885716 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4595138048361 + }, + "name": "boul. Marie-Victorin et civique 7680", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493342202, + 45.459350789 + ] + }, + "is_frozen": false, + "integer_id": 1183, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.444052, + 45.459468 + ] + }, + "id": 1184, + "properties": { + "id": "379600fc-81b2-40f5-8ddd-317a0b4fe4c0", + "code": "33343", + "data": { + "stops": [ + { + "id": "3343", + "code": "33343", + "data": { + "gtfs": { + "stop_id": "3343", + "stop_code": "33343", + "stop_name": "av. Boniface et civique 6720", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Boniface et civique 6720", + "geography": { + "type": "Point", + "coordinates": [ + -73.4440519900178, + 45.4594678241151 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4614866455545 + }, + "name": "av. Boniface et civique 6720", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44405199, + 45.459467824 + ] + }, + "is_frozen": false, + "integer_id": 1184, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.555535, + 45.524225 + ] + }, + "id": 1185, + "properties": { + "id": "966adf78-011a-4f07-b40a-1523cd7ecae5", + "code": "33344", + "data": { + "stops": [ + { + "id": "3344", + "code": "33344", + "data": { + "gtfs": { + "stop_id": "3344", + "stop_code": "33344", + "stop_name": "av. Papineau et Logan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Papineau et Logan", + "geography": { + "type": "Point", + "coordinates": [ + -73.5555352299266, + 45.5242252515671 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5549592527395 + }, + "name": "av. Papineau et Logan", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.55553523, + 45.524225252 + ] + }, + "is_frozen": false, + "integer_id": 1185, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445176, + 45.513993 + ] + }, + "id": 1186, + "properties": { + "id": "abd431b8-dcf2-4c7a-a458-732690905187", + "code": "33347", + "data": { + "stops": [ + { + "id": "3347", + "code": "33347", + "data": { + "gtfs": { + "stop_id": "3347", + "stop_code": "33347", + "stop_name": "ch. de Chambly et civique 3460", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et civique 3460", + "geography": { + "type": "Point", + "coordinates": [ + -73.4451758214418, + 45.5139931659811 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3819354187851 + }, + "name": "ch. de Chambly et civique 3460", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445175821, + 45.513993166 + ] + }, + "is_frozen": false, + "integer_id": 1186, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474527, + 45.537507 + ] + }, + "id": 1187, + "properties": { + "id": "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", + "code": "33352", + "data": { + "stops": [ + { + "id": "3352", + "code": "33352", + "data": { + "gtfs": { + "stop_id": "3352", + "stop_code": "33352", + "stop_name": "boul. Roland-Therrien et MAGASIN WAL-MART CANADA INC.", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et MAGASIN WAL-MART CANADA INC.", + "geography": { + "type": "Point", + "coordinates": [ + -73.4745268628356, + 45.537507286084 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7796966622709 + }, + "name": "boul. Roland-Therrien et MAGASIN WAL-MART CANADA INC.", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474526863, + 45.537507286 + ] + }, + "is_frozen": false, + "integer_id": 1187, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443381, + 45.564978 + ] + }, + "id": 1188, + "properties": { + "id": "a77f8bf1-6b13-445b-a79c-6b0770c935c0", + "code": "33370", + "data": { + "stops": [ + { + "id": "3370", + "code": "33370", + "data": { + "gtfs": { + "stop_id": "3370", + "stop_code": "33370", + "stop_name": "Volta et civique 1261", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Volta et civique 1261", + "geography": { + "type": "Point", + "coordinates": [ + -73.4432113948326, + 45.5649572912203 + ] + } + }, + { + "id": "3612", + "code": "33612", + "data": { + "gtfs": { + "stop_id": "3612", + "stop_code": "33612", + "stop_name": "Volta et civique 1260", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Volta et civique 1260", + "geography": { + "type": "Point", + "coordinates": [ + -73.4435509861762, + 45.5649993269721 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2450169688555 + }, + "name": "Volta et civique 1261", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443381191, + 45.564978309 + ] + }, + "is_frozen": false, + "integer_id": 1188, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443737, + 45.568129 + ] + }, + "id": 1189, + "properties": { + "id": "83669f2f-a25c-47b1-99a1-53a7c08fed91", + "code": "33371", + "data": { + "stops": [ + { + "id": "3371", + "code": "33371", + "data": { + "gtfs": { + "stop_id": "3371", + "stop_code": "33371", + "stop_name": "Volta et civique 1210", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Volta et civique 1210", + "geography": { + "type": "Point", + "coordinates": [ + -73.4436725774828, + 45.5681609249741 + ] + } + }, + { + "id": "3372", + "code": "33372", + "data": { + "gtfs": { + "stop_id": "3372", + "stop_code": "33372", + "stop_name": "Volta et civique 1210", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Volta et civique 1210", + "geography": { + "type": "Point", + "coordinates": [ + -73.4438007535519, + 45.5680979998112 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2984361364123 + }, + "name": "Volta et civique 1210", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443736666, + 45.568129462 + ] + }, + "is_frozen": false, + "integer_id": 1189, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446879, + 45.570122 + ] + }, + "id": 1190, + "properties": { + "id": "33622e57-d444-4916-a7fb-d1fa4643eb90", + "code": "33373", + "data": { + "stops": [ + { + "id": "3373", + "code": "33373", + "data": { + "gtfs": { + "stop_id": "3373", + "stop_code": "33373", + "stop_name": "Volta et place Nobel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Volta et place Nobel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4472647353973, + 45.5701062780682 + ] + } + }, + { + "id": "3403", + "code": "33403", + "data": { + "gtfs": { + "stop_id": "3403", + "stop_code": "33403", + "stop_name": "Volta et place Nobel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Volta et place Nobel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4464932874905, + 45.5701370364443 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3322129244059 + }, + "name": "Volta et place Nobel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446879011, + 45.570121657 + ] + }, + "is_frozen": false, + "integer_id": 1190, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44352, + 45.569071 + ] + }, + "id": 1191, + "properties": { + "id": "5573e81d-639b-42bb-a768-ad52df79de56", + "code": "33375", + "data": { + "stops": [ + { + "id": "3375", + "code": "33375", + "data": { + "gtfs": { + "stop_id": "3375", + "stop_code": "33375", + "stop_name": "Nobel et Volta", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et Volta", + "geography": { + "type": "Point", + "coordinates": [ + -73.4436209924607, + 45.5689153948246 + ] + } + }, + { + "id": "4201", + "code": "34201", + "data": { + "gtfs": { + "stop_id": "4201", + "stop_code": "34201", + "stop_name": "Nobel et MAXI & COMPAGNIE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et MAXI & COMPAGNIE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4434192839499, + 45.5692271014865 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3144032607723 + }, + "name": "Nobel et Volta", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443520138, + 45.569071248 + ] + }, + "is_frozen": false, + "integer_id": 1191, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445596, + 45.600121 + ] + }, + "id": 1192, + "properties": { + "id": "6b55fd05-7687-457e-ae9d-e87027c7100f", + "code": "33379", + "data": { + "stops": [ + { + "id": "3379", + "code": "33379", + "data": { + "gtfs": { + "stop_id": "3379", + "stop_code": "33379", + "stop_name": "Samuel-De Champlain et D'Iberville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et D'Iberville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4454264727339, + 45.6003338971441 + ] + } + }, + { + "id": "5499", + "code": "30246", + "data": { + "gtfs": { + "stop_id": "5499", + "stop_code": "30246", + "stop_name": "Samuel-De Champlain et D'Iberville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Samuel-De Champlain et D'Iberville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4457662892633, + 45.5999076324373 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8412637553749 + }, + "name": "Samuel-De Champlain et D'Iberville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445596381, + 45.600120765 + ] + }, + "is_frozen": false, + "integer_id": 1192, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441179, + 45.596802 + ] + }, + "id": 1193, + "properties": { + "id": "3d278b9f-fcbb-4681-9833-769bdbe48eaf", + "code": "33380", + "data": { + "stops": [ + { + "id": "3380", + "code": "33380", + "data": { + "gtfs": { + "stop_id": "3380", + "stop_code": "33380", + "stop_name": "Jacques-Cartier et D'Iberville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jacques-Cartier et D'Iberville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4411787841286, + 45.596802051119 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7849093221664 + }, + "name": "Jacques-Cartier et D'Iberville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441178784, + 45.596802051 + ] + }, + "is_frozen": false, + "integer_id": 1193, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494821, + 45.447888 + ] + }, + "id": 1194, + "properties": { + "id": "127a18dc-2231-401d-91c9-c547e1fe457d", + "code": "33381", + "data": { + "stops": [ + { + "id": "3381", + "code": "33381", + "data": { + "gtfs": { + "stop_id": "3381", + "stop_code": "33381", + "stop_name": "Saint-Charles et civique 8480", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles et civique 8480", + "geography": { + "type": "Point", + "coordinates": [ + -73.4948208508143, + 45.44788828346 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2663510127466 + }, + "name": "Saint-Charles et civique 8480", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494820851, + 45.447888283 + ] + }, + "is_frozen": false, + "integer_id": 1194, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.56686, + 45.498404 + ] + }, + "id": 1195, + "properties": { + "id": "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", + "code": "33382", + "data": { + "stops": [ + { + "id": "3382", + "code": "33382", + "data": { + "gtfs": { + "stop_id": "3382", + "stop_code": "33382", + "stop_name": "TERMINUS CENTRE-VILLE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "TERMINUS CENTRE-VILLE", + "geography": { + "type": "Point", + "coordinates": [ + -73.5668389536944, + 45.4984402900159 + ] + } + }, + { + "id": "5766", + "code": "30535", + "data": { + "gtfs": { + "stop_id": "5766", + "stop_code": "30535", + "stop_name": "TERMINUS CENTRE-VILLE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "TERMINUS CENTRE-VILLE", + "geography": { + "type": "Point", + "coordinates": [ + -73.5668819023177, + 45.4983672074619 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1184987365067 + }, + "name": "TERMINUS CENTRE-VILLE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.566860428, + 45.498403749 + ] + }, + "is_frozen": false, + "integer_id": 1195, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.436241, + 45.591474 + ] + }, + "id": 1196, + "properties": { + "id": "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", + "code": "33384", + "data": { + "stops": [ + { + "id": "3384", + "code": "33384", + "data": { + "gtfs": { + "stop_id": "3384", + "stop_code": "33384", + "stop_name": "boul. De Montarville et boul. de Mortagne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et boul. de Mortagne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4361017875589, + 45.5912687038172 + ] + } + }, + { + "id": "4973", + "code": "34973", + "data": { + "gtfs": { + "stop_id": "4973", + "stop_code": "34973", + "stop_name": "boul. De Montarville et boul. de Mortagne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et boul. de Mortagne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4367254931427, + 45.5914553902789 + ] + } + }, + { + "id": "5385", + "code": "30125", + "data": { + "gtfs": { + "stop_id": "5385", + "stop_code": "30125", + "stop_name": "boul. de Mortagne et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4362563095364, + 45.591678503903 + ] + } + }, + { + "id": "5386", + "code": "30126", + "data": { + "gtfs": { + "stop_id": "5386", + "stop_code": "30126", + "stop_name": "boul. de Mortagne et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4357558256142, + 45.5916786797571 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6944501271564 + }, + "name": "boul. De Montarville et boul. de Mortagne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.436240659, + 45.591473692 + ] + }, + "is_frozen": false, + "integer_id": 1196, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.435022, + 45.590332 + ] + }, + "id": 1197, + "properties": { + "id": "ebf7fd24-b756-481f-9a88-33b6362fcbda", + "code": "33385", + "data": { + "stops": [ + { + "id": "3385", + "code": "33385", + "data": { + "gtfs": { + "stop_id": "3385", + "stop_code": "33385", + "stop_name": "boul. De Montarville et PROVIGO", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et PROVIGO", + "geography": { + "type": "Point", + "coordinates": [ + -73.4348673683886, + 45.5903820169138 + ] + } + }, + { + "id": "3874", + "code": "33874", + "data": { + "gtfs": { + "stop_id": "3874", + "stop_code": "33874", + "stop_name": "boul. De Montarville et civique 1008", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et civique 1008", + "geography": { + "type": "Point", + "coordinates": [ + -73.4351756876498, + 45.5902813115298 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6750653014258 + }, + "name": "boul. De Montarville et PROVIGO", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.435021528, + 45.590331664 + ] + }, + "is_frozen": false, + "integer_id": 1197, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.43367, + 45.589203 + ] + }, + "id": 1198, + "properties": { + "id": "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", + "code": "33387", + "data": { + "stops": [ + { + "id": "3387", + "code": "33387", + "data": { + "gtfs": { + "stop_id": "3387", + "stop_code": "33387", + "stop_name": "boul. De Montarville et CANADIAN TIRE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et CANADIAN TIRE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4333748074838, + 45.5890813797275 + ] + } + }, + { + "id": "3388", + "code": "33388", + "data": { + "gtfs": { + "stop_id": "3388", + "stop_code": "33388", + "stop_name": "boul. De Montarville et CANADIAN TIRE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et CANADIAN TIRE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4339660269441, + 45.5893236835307 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.655900520499 + }, + "name": "boul. De Montarville et CANADIAN TIRE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.433670417, + 45.589202532 + ] + }, + "is_frozen": false, + "integer_id": 1198, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.431638, + 45.58735 + ] + }, + "id": 1199, + "properties": { + "id": "3613b472-6055-4b55-9c89-01a451d82804", + "code": "33389", + "data": { + "stops": [ + { + "id": "3389", + "code": "33389", + "data": { + "gtfs": { + "stop_id": "3389", + "stop_code": "33389", + "stop_name": "boul. De Montarville et D'Avaugour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et D'Avaugour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4319769327025, + 45.587176370765 + ] + } + }, + { + "id": "5390", + "code": "30130", + "data": { + "gtfs": { + "stop_id": "5390", + "stop_code": "30130", + "stop_name": "D'Avaugour et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "D'Avaugour et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4312989033404, + 45.5875233676728 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6244577048145 + }, + "name": "boul. De Montarville et D'Avaugour", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431637918, + 45.587349869 + ] + }, + "is_frozen": false, + "integer_id": 1199, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481682, + 45.448391 + ] + }, + "id": 1200, + "properties": { + "id": "3e4f29c9-7bf2-4ca4-9cb4-2a3c4710cea6", + "code": "33390", + "data": { + "stops": [ + { + "id": "3390", + "code": "33390", + "data": { + "gtfs": { + "stop_id": "3390", + "stop_code": "33390", + "stop_name": "av. Sorbonne et Santiago", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Sorbonne et Santiago", + "geography": { + "type": "Point", + "coordinates": [ + -73.4816824333049, + 45.4483912324533 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2748241172337 + }, + "name": "av. Sorbonne et Santiago", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481682433, + 45.448391232 + ] + }, + "is_frozen": false, + "integer_id": 1200, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479412, + 45.449402 + ] + }, + "id": 1201, + "properties": { + "id": "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", + "code": "33392", + "data": { + "stops": [ + { + "id": "3392", + "code": "33392", + "data": { + "gtfs": { + "stop_id": "3392", + "stop_code": "33392", + "stop_name": "av. Sorbonne et civique 8470", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Sorbonne et civique 8470", + "geography": { + "type": "Point", + "coordinates": [ + -73.4794761833129, + 45.4493018212183 + ] + } + }, + { + "id": "3915", + "code": "33915", + "data": { + "gtfs": { + "stop_id": "3915", + "stop_code": "33915", + "stop_name": "av. Sorbonne et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Sorbonne et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4793468985108, + 45.4495015964466 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2918481460248 + }, + "name": "av. Sorbonne et civique 8470", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479411541, + 45.449401709 + ] + }, + "is_frozen": false, + "integer_id": 1201, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.406596, + 45.5145 + ] + }, + "id": 1202, + "properties": { + "id": "6d909e49-9727-42dc-95db-42259425acbd", + "code": "33397", + "data": { + "stops": [ + { + "id": "3397", + "code": "33397", + "data": { + "gtfs": { + "stop_id": "3397", + "stop_code": "33397", + "stop_name": "rte de l'Aéroport et civique 6000", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et civique 6000", + "geography": { + "type": "Point", + "coordinates": [ + -73.406596387079, + 45.5144998841688 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.390501788547 + }, + "name": "rte de l'Aéroport et civique 6000", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.406596387, + 45.514499884 + ] + }, + "is_frozen": false, + "integer_id": 1202, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.40519, + 45.515418 + ] + }, + "id": 1203, + "properties": { + "id": "4ee012e8-fd5c-471a-bb0b-87721da74cf6", + "code": "33398", + "data": { + "stops": [ + { + "id": "3398", + "code": "33398", + "data": { + "gtfs": { + "stop_id": "3398", + "stop_code": "33398", + "stop_name": "rte de l'Aéroport et civique 6100", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et civique 6100", + "geography": { + "type": "Point", + "coordinates": [ + -73.4051899741276, + 45.5154183829968 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4060301444578 + }, + "name": "rte de l'Aéroport et civique 6100", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.405189974, + 45.515418383 + ] + }, + "is_frozen": false, + "integer_id": 1203, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.403033, + 45.516815 + ] + }, + "id": 1204, + "properties": { + "id": "02c6c49d-886b-440d-919e-7dc5515da70b", + "code": "33399", + "data": { + "stops": [ + { + "id": "3399", + "code": "33399", + "data": { + "gtfs": { + "stop_id": "3399", + "stop_code": "33399", + "stop_name": "rte de l'Aéroport et civique 6155", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et civique 6155", + "geography": { + "type": "Point", + "coordinates": [ + -73.4030329160333, + 45.5168150151849 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.429643367105 + }, + "name": "rte de l'Aéroport et civique 6155", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.403032916, + 45.516815015 + ] + }, + "is_frozen": false, + "integer_id": 1204, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.411118, + 45.530865 + ] + }, + "id": 1205, + "properties": { + "id": "aef95744-a773-4cb5-9474-7425de00e382", + "code": "33400", + "data": { + "stops": [ + { + "id": "3400", + "code": "33400", + "data": { + "gtfs": { + "stop_id": "3400", + "stop_code": "33400", + "stop_name": "ch. de la Savane et civique 6500", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et civique 6500", + "geography": { + "type": "Point", + "coordinates": [ + -73.4109599258795, + 45.5311560500358 + ] + } + }, + { + "id": "3539", + "code": "33539", + "data": { + "gtfs": { + "stop_id": "3539", + "stop_code": "33539", + "stop_name": "ch. de la Savane et PRATT & WHITNEY CANADA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et PRATT & WHITNEY CANADA", + "geography": { + "type": "Point", + "coordinates": [ + -73.4112768998967, + 45.5305735755567 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6672836607687 + }, + "name": "ch. de la Savane et civique 6500", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.411118413, + 45.530864813 + ] + }, + "is_frozen": false, + "integer_id": 1205, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.499922, + 45.49483 + ] + }, + "id": 1206, + "properties": { + "id": "16f75d06-f538-4735-a99f-9bc7eaa6eaab", + "code": "33409", + "data": { + "stops": [ + { + "id": "3409", + "code": "33409", + "data": { + "gtfs": { + "stop_id": "3409", + "stop_code": "33409", + "stop_name": "av. Victoria et Saint-Louis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et Saint-Louis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4997293100066, + 45.4948995545874 + ] + } + }, + { + "id": "4461", + "code": "34461", + "data": { + "gtfs": { + "stop_id": "4461", + "stop_code": "34461", + "stop_name": "av. Victoria et av. Victoria", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et av. Victoria", + "geography": { + "type": "Point", + "coordinates": [ + -73.500115351701, + 45.494761185788 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0581447086673 + }, + "name": "av. Victoria et Saint-Louis", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.499922331, + 45.49483037 + ] + }, + "is_frozen": false, + "integer_id": 1206, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481498, + 45.52999 + ] + }, + "id": 1207, + "properties": { + "id": "ec90d5a6-8d45-4327-b9de-7b521004b298", + "code": "33412", + "data": { + "stops": [ + { + "id": "3412", + "code": "33412", + "data": { + "gtfs": { + "stop_id": "3412", + "stop_code": "33412", + "stop_name": "boul. Curé-Poirier est et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier est et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4814975336019, + 45.5299897762323 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6524818121812 + }, + "name": "boul. Curé-Poirier est et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481498, + 45.52999 + ] + }, + "is_frozen": false, + "integer_id": 1207, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463727, + 45.522019 + ] + }, + "id": 1208, + "properties": { + "id": "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", + "code": "33413", + "data": { + "stops": [ + { + "id": "3413", + "code": "33413", + "data": { + "gtfs": { + "stop_id": "3413", + "stop_code": "33413", + "stop_name": "ch. de Chambly et boul. Jacques-Cartier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Jacques-Cartier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4637266365753, + 45.5220188405833 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.517641113908 + }, + "name": "ch. de Chambly et boul. Jacques-Cartier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463726637, + 45.522018841 + ] + }, + "is_frozen": false, + "integer_id": 1208, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.493534, + 45.559549 + ] + }, + "id": 1209, + "properties": { + "id": "0bcb0e97-db40-44bb-afe9-f6212a5b6387", + "code": "33415", + "data": { + "stops": [ + { + "id": "3415", + "code": "33415", + "data": { + "gtfs": { + "stop_id": "3415", + "stop_code": "33415", + "stop_name": "boul. Marie-Victorin et CENTRE ADMINISTRATIF DU RESEAU DE TRANSPORT DE LONGUEUIL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et CENTRE ADMINISTRATIF DU RESEAU DE TRANSPORT DE LONGUEUIL", + "geography": { + "type": "Point", + "coordinates": [ + -73.4935335357387, + 45.5595486296405 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1529924490484 + }, + "name": "boul. Marie-Victorin et CENTRE ADMINISTRATIF DU RESEAU DE TRANSPORT DE LONGUEUIL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493533536, + 45.55954863 + ] + }, + "is_frozen": false, + "integer_id": 1209, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513419, + 45.528617 + ] + }, + "id": 1210, + "properties": { + "id": "d3ebe7a8-432f-4ee4-be20-7363589d4629", + "code": "33416", + "data": { + "stops": [ + { + "id": "3416", + "code": "33416", + "data": { + "gtfs": { + "stop_id": "3416", + "stop_code": "33416", + "stop_name": "Saint-Laurent ouest et PLACE LONGUEUIL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et PLACE LONGUEUIL", + "geography": { + "type": "Point", + "coordinates": [ + -73.5134192023841, + 45.5286173125588 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.629252008081 + }, + "name": "Saint-Laurent ouest et PLACE LONGUEUIL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.513419, + 45.528617 + ] + }, + "is_frozen": false, + "integer_id": 1210, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.507625, + 45.541432 + ] + }, + "id": 1211, + "properties": { + "id": "2759f6fd-0d91-4292-9174-1b3724fde57a", + "code": "33418", + "data": { + "stops": [ + { + "id": "3418", + "code": "33418", + "data": { + "gtfs": { + "stop_id": "3418", + "stop_code": "33418", + "stop_name": "Saint-Charles est et SOEURS SAINTS-NOMS-DE-JESUS (LONGUEUIL)", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles est et SOEURS SAINTS-NOMS-DE-JESUS (LONGUEUIL)", + "geography": { + "type": "Point", + "coordinates": [ + -73.5076252326081, + 45.5414321291764 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8461367126785 + }, + "name": "Saint-Charles est et SOEURS SAINTS-NOMS-DE-JESUS (LONGUEUIL)", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507625233, + 45.541432129 + ] + }, + "is_frozen": false, + "integer_id": 1211, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.505532, + 45.544219 + ] + }, + "id": 1212, + "properties": { + "id": "cca1a0cf-beb4-489c-8f77-d54546a85821", + "code": "33419", + "data": { + "stops": [ + { + "id": "3419", + "code": "33419", + "data": { + "gtfs": { + "stop_id": "3419", + "stop_code": "33419", + "stop_name": "Saint-Charles est et de Normandie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles est et de Normandie", + "geography": { + "type": "Point", + "coordinates": [ + -73.5055556237265, + 45.5440871529952 + ] + } + }, + { + "id": "3426", + "code": "33426", + "data": { + "gtfs": { + "stop_id": "3426", + "stop_code": "33426", + "stop_name": "Saint-Charles est et de Normandie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles est et de Normandie", + "geography": { + "type": "Point", + "coordinates": [ + -73.5055081474805, + 45.5443515578556 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8933274385441 + }, + "name": "Saint-Charles est et de Normandie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.505531886, + 45.544219355 + ] + }, + "is_frozen": false, + "integer_id": 1212, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.504186, + 45.545327 + ] + }, + "id": 1213, + "properties": { + "id": "17f362e0-58a1-4091-a2cb-677491725ae9", + "code": "33420", + "data": { + "stops": [ + { + "id": "3420", + "code": "33420", + "data": { + "gtfs": { + "stop_id": "3420", + "stop_code": "33420", + "stop_name": "Saint-Charles est et Pratt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles est et Pratt", + "geography": { + "type": "Point", + "coordinates": [ + -73.5042120095185, + 45.5451839616918 + ] + } + }, + { + "id": "3425", + "code": "33425", + "data": { + "gtfs": { + "stop_id": "3425", + "stop_code": "33425", + "stop_name": "Saint-Charles est et Pratt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles est et Pratt", + "geography": { + "type": "Point", + "coordinates": [ + -73.5041605526874, + 45.5454710338644 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9120914140686 + }, + "name": "Saint-Charles est et Pratt", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.504186281, + 45.545327498 + ] + }, + "is_frozen": false, + "integer_id": 1213, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.502329, + 45.546724 + ] + }, + "id": 1214, + "properties": { + "id": "c5521133-14cc-4988-b8c2-4360698fa4ec", + "code": "33421", + "data": { + "stops": [ + { + "id": "3421", + "code": "33421", + "data": { + "gtfs": { + "stop_id": "3421", + "stop_code": "33421", + "stop_name": "Saint-Charles est et d'Auvergne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles est et d'Auvergne", + "geography": { + "type": "Point", + "coordinates": [ + -73.5025394011131, + 45.5467002639747 + ] + } + }, + { + "id": "4864", + "code": "34864", + "data": { + "gtfs": { + "stop_id": "4864", + "stop_code": "34864", + "stop_name": "d'Auvergne et Saint-Charles est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "d'Auvergne et Saint-Charles est", + "geography": { + "type": "Point", + "coordinates": [ + -73.5022334096662, + 45.5468520655194 + ] + } + }, + { + "id": "5148", + "code": "35148", + "data": { + "gtfs": { + "stop_id": "5148", + "stop_code": "35148", + "stop_name": "d'Auvergne et Saint-Charles est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "d'Auvergne et Saint-Charles est", + "geography": { + "type": "Point", + "coordinates": [ + -73.5021184694885, + 45.5465962209057 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9357421002874 + }, + "name": "Saint-Charles est et d'Auvergne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.502328935, + 45.546724143 + ] + }, + "is_frozen": false, + "integer_id": 1214, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.500043, + 45.549542 + ] + }, + "id": 1215, + "properties": { + "id": "a42ad0c8-61c2-4ea6-ba0d-de9a1cb40394", + "code": "33422", + "data": { + "stops": [ + { + "id": "3422", + "code": "33422", + "data": { + "gtfs": { + "stop_id": "3422", + "stop_code": "33422", + "stop_name": "Saint-Charles est et du Parc-Industriel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles est et du Parc-Industriel", + "geography": { + "type": "Point", + "coordinates": [ + -73.5000430613165, + 45.5495419712439 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9834642970959 + }, + "name": "Saint-Charles est et du Parc-Industriel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.500043061, + 45.549541971 + ] + }, + "is_frozen": false, + "integer_id": 1215, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.498851, + 45.551744 + ] + }, + "id": 1216, + "properties": { + "id": "bc056e84-1f20-4604-aad7-40427c6685a6", + "code": "33423", + "data": { + "stops": [ + { + "id": "3423", + "code": "33423", + "data": { + "gtfs": { + "stop_id": "3423", + "stop_code": "33423", + "stop_name": "Saint-Charles est et Geoffrion", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles est et Geoffrion", + "geography": { + "type": "Point", + "coordinates": [ + -73.4988509173767, + 45.5517438368327 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.020759612187 + }, + "name": "Saint-Charles est et Geoffrion", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.498850917, + 45.551743837 + ] + }, + "is_frozen": false, + "integer_id": 1216, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.502362, + 45.547282 + ] + }, + "id": 1217, + "properties": { + "id": "7fd25a62-c81c-42ae-bd39-f61c05418964", + "code": "33424", + "data": { + "stops": [ + { + "id": "3424", + "code": "33424", + "data": { + "gtfs": { + "stop_id": "3424", + "stop_code": "33424", + "stop_name": "Saint-Charles est et d'Auvergne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles est et d'Auvergne", + "geography": { + "type": "Point", + "coordinates": [ + -73.5023621917922, + 45.5472815222865 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9451812022935 + }, + "name": "Saint-Charles est et d'Auvergne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.502362192, + 45.547281522 + ] + }, + "is_frozen": false, + "integer_id": 1217, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.507003, + 45.542709 + ] + }, + "id": 1218, + "properties": { + "id": "a8133dc5-71bf-42ce-a22f-48f31a731720", + "code": "33427", + "data": { + "stops": [ + { + "id": "3427", + "code": "33427", + "data": { + "gtfs": { + "stop_id": "3427", + "stop_code": "33427", + "stop_name": "Saint-Charles est et civique 100", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles est et civique 100", + "geography": { + "type": "Point", + "coordinates": [ + -73.5070034345796, + 45.5427092741382 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8677592870349 + }, + "name": "Saint-Charles est et civique 100", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507003435, + 45.542709274 + ] + }, + "is_frozen": false, + "integer_id": 1218, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.418822, + 45.503007 + ] + }, + "id": 1219, + "properties": { + "id": "e460be07-05e4-49f8-a725-e63809c74139", + "code": "33429", + "data": { + "stops": [ + { + "id": "3429", + "code": "33429", + "data": { + "gtfs": { + "stop_id": "3429", + "stop_code": "33429", + "stop_name": "ch. de Chambly et Coderre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Coderre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4188223112104, + 45.50300670389 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1962589464576 + }, + "name": "ch. de Chambly et Coderre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.418822311, + 45.503006704 + ] + }, + "is_frozen": false, + "integer_id": 1219, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.419503, + 45.503142 + ] + }, + "id": 1220, + "properties": { + "id": "4a4fa494-b43c-4be6-b677-70874b8f73cc", + "code": "33430", + "data": { + "stops": [ + { + "id": "3430", + "code": "33430", + "data": { + "gtfs": { + "stop_id": "3430", + "stop_code": "33430", + "stop_name": "ch. de Chambly et Coderre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Coderre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4195027344594, + 45.5031421618582 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1985475973491 + }, + "name": "ch. de Chambly et Coderre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.419502734, + 45.503142162 + ] + }, + "is_frozen": false, + "integer_id": 1220, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.493232, + 45.446079 + ] + }, + "id": 1221, + "properties": { + "id": "4b68f075-e5fe-41d1-ab47-bccc21ae9421", + "code": "33432", + "data": { + "stops": [ + { + "id": "3432", + "code": "33432", + "data": { + "gtfs": { + "stop_id": "3432", + "stop_code": "33432", + "stop_name": "boul. Marie-Victorin et CENTRE D'ACCUEIL MARCELLE-FERRON", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et CENTRE D'ACCUEIL MARCELLE-FERRON", + "geography": { + "type": "Point", + "coordinates": [ + -73.4932318465564, + 45.4460794980505 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2358805438844 + }, + "name": "boul. Marie-Victorin et CENTRE D'ACCUEIL MARCELLE-FERRON", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493231847, + 45.446079498 + ] + }, + "is_frozen": false, + "integer_id": 1221, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461204, + 45.48679 + ] + }, + "id": 1222, + "properties": { + "id": "720107c1-f0c2-4f37-8e59-ce7f32cd9461", + "code": "33437", + "data": { + "stops": [ + { + "id": "3437", + "code": "33437", + "data": { + "gtfs": { + "stop_id": "3437", + "stop_code": "33437", + "stop_name": "Grande Allée et Louis-Lamarre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Louis-Lamarre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4609438277182, + 45.4867068525847 + ] + } + }, + { + "id": "3455", + "code": "33455", + "data": { + "gtfs": { + "stop_id": "3455", + "stop_code": "33455", + "stop_name": "Grande Allée et Louis-Lamarre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Louis-Lamarre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4614650096407, + 45.4868723438272 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9223783719142 + }, + "name": "Grande Allée et Louis-Lamarre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461204419, + 45.486789598 + ] + }, + "is_frozen": false, + "integer_id": 1222, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469718, + 45.585213 + ] + }, + "id": 1223, + "properties": { + "id": "064a6f97-fc69-48b1-8038-7d9a4eea77de", + "code": "33438", + "data": { + "stops": [ + { + "id": "3438", + "code": "33438", + "data": { + "gtfs": { + "stop_id": "3438", + "stop_code": "33438", + "stop_name": "boul. Marie-Victorin et GROUPE ROBERT TRANSPORT INC.", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et GROUPE ROBERT TRANSPORT INC.", + "geography": { + "type": "Point", + "coordinates": [ + -73.4697183841671, + 45.5852130430974 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5881959779853 + }, + "name": "boul. Marie-Victorin et GROUPE ROBERT TRANSPORT INC.", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469718384, + 45.585213043 + ] + }, + "is_frozen": false, + "integer_id": 1223, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.471001, + 45.582727 + ] + }, + "id": 1224, + "properties": { + "id": "da1ccd92-4d5e-4317-ad9f-7a8daa9e9230", + "code": "33440", + "data": { + "stops": [ + { + "id": "3440", + "code": "33440", + "data": { + "gtfs": { + "stop_id": "3440", + "stop_code": "33440", + "stop_name": "boul. Marie-Victorin et CIMETIERE PRES DU FLEUVE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et CIMETIERE PRES DU FLEUVE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4710012849983, + 45.5827271702441 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5460160987527 + }, + "name": "boul. Marie-Victorin et CIMETIERE PRES DU FLEUVE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.471001285, + 45.58272717 + ] + }, + "is_frozen": false, + "integer_id": 1224, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490477, + 45.564121 + ] + }, + "id": 1225, + "properties": { + "id": "2d4bab42-76d4-4d53-9416-1ff754c71d1d", + "code": "33442", + "data": { + "stops": [ + { + "id": "3442", + "code": "33442", + "data": { + "gtfs": { + "stop_id": "3442", + "stop_code": "33442", + "stop_name": "boul. Marie-Victorin et Passerelle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Passerelle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4904770524062, + 45.5641213005339 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2304902804743 + }, + "name": "boul. Marie-Victorin et Passerelle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490477052, + 45.564121301 + ] + }, + "is_frozen": false, + "integer_id": 1225, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445621, + 45.514457 + ] + }, + "id": 1226, + "properties": { + "id": "c4825963-416e-404b-a744-6ffe763e2d89", + "code": "33444", + "data": { + "stops": [ + { + "id": "3444", + "code": "33444", + "data": { + "gtfs": { + "stop_id": "3444", + "stop_code": "33444", + "stop_name": "ch. de Chambly et civique 3529", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et civique 3529", + "geography": { + "type": "Point", + "coordinates": [ + -73.4456207794861, + 45.5144574133083 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3897837822018 + }, + "name": "ch. de Chambly et civique 3529", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445620779, + 45.514457413 + ] + }, + "is_frozen": false, + "integer_id": 1226, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456342, + 45.538049 + ] + }, + "id": 1227, + "properties": { + "id": "f1d63efc-c02d-4bb9-828b-ddc2e062546b", + "code": "33449", + "data": { + "stops": [ + { + "id": "3449", + "code": "33449", + "data": { + "gtfs": { + "stop_id": "3449", + "stop_code": "33449", + "stop_name": "boul. Jacques-Cartier est et CENTRE HOSPITALIER PIERRE-BOUCHER", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et CENTRE HOSPITALIER PIERRE-BOUCHER", + "geography": { + "type": "Point", + "coordinates": [ + -73.4564000158553, + 45.5379050364653 + ] + } + }, + { + "id": "4105", + "code": "34105", + "data": { + "gtfs": { + "stop_id": "4105", + "stop_code": "34105", + "stop_name": "boul. Béliveau et boul. Jacques-Cartier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et boul. Jacques-Cartier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4562838627322, + 45.538192597233 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7888629243602 + }, + "name": "boul. Jacques-Cartier est et CENTRE HOSPITALIER PIERRE-BOUCHER", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456341939, + 45.538048817 + ] + }, + "is_frozen": false, + "integer_id": 1227, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466237, + 45.587905 + ] + }, + "id": 1228, + "properties": { + "id": "2f7a97d2-c790-4f58-9a63-010938bbaf69", + "code": "33453", + "data": { + "stops": [ + { + "id": "3453", + "code": "33453", + "data": { + "gtfs": { + "stop_id": "3453", + "stop_code": "33453", + "stop_name": "De La Barre et boul. Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Barre et boul. Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4661711190174, + 45.5877535486959 + ] + } + }, + { + "id": "3454", + "code": "33454", + "data": { + "gtfs": { + "stop_id": "3454", + "stop_code": "33454", + "stop_name": "De La Barre et boul. Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Barre et boul. Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4663030005369, + 45.5880566061915 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6338801986268 + }, + "name": "De La Barre et boul. Marie-Victorin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46623706, + 45.587905077 + ] + }, + "is_frozen": false, + "integer_id": 1228, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441816, + 45.495062 + ] + }, + "id": 1229, + "properties": { + "id": "2e1dd055-2856-439e-b231-cd2b626a492f", + "code": "33458", + "data": { + "stops": [ + { + "id": "3458", + "code": "33458", + "data": { + "gtfs": { + "stop_id": "3458", + "stop_code": "33458", + "stop_name": "boul. Kimber et boul. Gareau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et boul. Gareau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4418158912211, + 45.4950616127446 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0620500369613 + }, + "name": "boul. Kimber et boul. Gareau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441815891, + 45.495061613 + ] + }, + "is_frozen": false, + "integer_id": 1229, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465346, + 45.458887 + ] + }, + "id": 1230, + "properties": { + "id": "1e3a74d9-9d8a-467f-a82e-3dafee501e32", + "code": "33460", + "data": { + "stops": [ + { + "id": "3460", + "code": "33460", + "data": { + "gtfs": { + "stop_id": "3460", + "stop_code": "33460", + "stop_name": "boul. Taschereau et Mario", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Mario", + "geography": { + "type": "Point", + "coordinates": [ + -73.4653456852704, + 45.4588868473938 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.451693326595 + }, + "name": "boul. Taschereau et Mario", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465345685, + 45.458886847 + ] + }, + "is_frozen": false, + "integer_id": 1230, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.428429, + 45.487518 + ] + }, + "id": 1231, + "properties": { + "id": "a788cfe3-2037-44e7-ae51-cd0388e8e41f", + "code": "33466", + "data": { + "stops": [ + { + "id": "3466", + "code": "33466", + "data": { + "gtfs": { + "stop_id": "3466", + "stop_code": "33466", + "stop_name": "boul. Kimber et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4283185496905, + 45.4875627316168 + ] + } + }, + { + "id": "3469", + "code": "33469", + "data": { + "gtfs": { + "stop_id": "3469", + "stop_code": "33469", + "stop_name": "boul. Kimber et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.428539743806, + 45.4874728856571 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9346716570715 + }, + "name": "boul. Kimber et Passage piétonnier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.428429147, + 45.487517809 + ] + }, + "is_frozen": false, + "integer_id": 1231, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.43123, + 45.489078 + ] + }, + "id": 1232, + "properties": { + "id": "9346e734-c85a-4d09-88f4-23e94e4bdb4c", + "code": "33467", + "data": { + "stops": [ + { + "id": "3467", + "code": "33467", + "data": { + "gtfs": { + "stop_id": "3467", + "stop_code": "33467", + "stop_name": "boul. Kimber et Gélineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Gélineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4311650905612, + 45.4891472177147 + ] + } + }, + { + "id": "3468", + "code": "33468", + "data": { + "gtfs": { + "stop_id": "3468", + "stop_code": "33468", + "stop_name": "boul. Kimber et Gélineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Gélineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4312953865283, + 45.4890081224917 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9610060182198 + }, + "name": "boul. Kimber et Gélineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431230239, + 45.48907767 + ] + }, + "is_frozen": false, + "integer_id": 1232, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.504323, + 45.508614 + ] + }, + "id": 1233, + "properties": { + "id": "3f77d417-9b8e-4514-8337-8fa9008d2cc7", + "code": "33473", + "data": { + "stops": [ + { + "id": "3473", + "code": "33473", + "data": { + "gtfs": { + "stop_id": "3473", + "stop_code": "33473", + "stop_name": "av. de Brixton et École secondaire Saint-Lambert International High School", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. de Brixton et École secondaire Saint-Lambert International High School", + "geography": { + "type": "Point", + "coordinates": [ + -73.5043228617985, + 45.5086144903803 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2910197904212 + }, + "name": "av. de Brixton et École secondaire Saint-Lambert International High School", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.504322862, + 45.50861449 + ] + }, + "is_frozen": false, + "integer_id": 1233, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47513, + 45.454146 + ] + }, + "id": 1234, + "properties": { + "id": "e690066b-eb33-421c-89b1-e731dab9975f", + "code": "33488", + "data": { + "stops": [ + { + "id": "3488", + "code": "33488", + "data": { + "gtfs": { + "stop_id": "3488", + "stop_code": "33488", + "stop_name": "av. Saguenay et av. Sartre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Saguenay et av. Sartre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4751070867844, + 45.4540586681548 + ] + } + }, + { + "id": "4303", + "code": "34303", + "data": { + "gtfs": { + "stop_id": "4303", + "stop_code": "34303", + "stop_name": "av. Sartre et av. Saguenay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Sartre et av. Saguenay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4751532231305, + 45.4542334202195 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3717905203574 + }, + "name": "av. Saguenay et av. Sartre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475130155, + 45.454146044 + ] + }, + "is_frozen": false, + "integer_id": 1234, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.470281, + 45.46593 + ] + }, + "id": 1235, + "properties": { + "id": "c4ad0852-4be5-437b-8da5-934b6b309e04", + "code": "33492", + "data": { + "stops": [ + { + "id": "3492", + "code": "33492", + "data": { + "gtfs": { + "stop_id": "3492", + "stop_code": "33492", + "stop_name": "TERMINUS PANAMA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "TERMINUS PANAMA", + "geography": { + "type": "Point", + "coordinates": [ + -73.4702812779981, + 45.4659301819171 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5704404743803 + }, + "name": "TERMINUS PANAMA", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.470281278, + 45.465930182 + ] + }, + "is_frozen": false, + "integer_id": 1235, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479511, + 45.456411 + ] + }, + "id": 1236, + "properties": { + "id": "1ea7db5e-3ee6-4553-9276-7c24296c866d", + "code": "33493", + "data": { + "stops": [ + { + "id": "3493", + "code": "33493", + "data": { + "gtfs": { + "stop_id": "3493", + "stop_code": "33493", + "stop_name": "boul. Pelletier et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4795110395281, + 45.4564106969087 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4099571211998 + }, + "name": "boul. Pelletier et boul. de Rome", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47951104, + 45.456410697 + ] + }, + "is_frozen": false, + "integer_id": 1236, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467686, + 45.469707 + ] + }, + "id": 1237, + "properties": { + "id": "acb7092d-3b2a-4d79-a4e3-09e7e52af475", + "code": "33502", + "data": { + "stops": [ + { + "id": "3502", + "code": "33502", + "data": { + "gtfs": { + "stop_id": "3502", + "stop_code": "33502", + "stop_name": "boul. Taschereau et av. Auteuil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et av. Auteuil", + "geography": { + "type": "Point", + "coordinates": [ + -73.4676862156001, + 45.4697070696046 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6341350798681 + }, + "name": "boul. Taschereau et av. Auteuil", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.467686216, + 45.46970707 + ] + }, + "is_frozen": false, + "integer_id": 1237, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445267, + 45.506794 + ] + }, + "id": 1238, + "properties": { + "id": "92abcd2a-82ad-467f-8946-055423a9c2c9", + "code": "33516", + "data": { + "stops": [ + { + "id": "3516", + "code": "33516", + "data": { + "gtfs": { + "stop_id": "3516", + "stop_code": "33516", + "stop_name": "boul. Sir-Wilfrid-Laurier et PARC DE MAISONS MOBILES LE MARQUIS", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier et PARC DE MAISONS MOBILES LE MARQUIS", + "geography": { + "type": "Point", + "coordinates": [ + -73.4452674448215, + 45.5067938369753 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2602511726386 + }, + "name": "boul. Sir-Wilfrid-Laurier et PARC DE MAISONS MOBILES LE MARQUIS", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445267445, + 45.506793837 + ] + }, + "is_frozen": false, + "integer_id": 1238, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.420021, + 45.491793 + ] + }, + "id": 1239, + "properties": { + "id": "f4abcc97-51ec-431d-988f-977063b9070f", + "code": "33517", + "data": { + "stops": [ + { + "id": "3517", + "code": "33517", + "data": { + "gtfs": { + "stop_id": "3517", + "stop_code": "33517", + "stop_name": "boul. Davis et Park", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Davis et Park", + "geography": { + "type": "Point", + "coordinates": [ + -73.4200207094724, + 45.4917925036617 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0068443763588 + }, + "name": "boul. Davis et Park", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.420020709, + 45.491792504 + ] + }, + "is_frozen": false, + "integer_id": 1239, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491979, + 45.540365 + ] + }, + "id": 1240, + "properties": { + "id": "cae6ea67-63f0-47ac-84f1-96217eeb03b3", + "code": "33523", + "data": { + "stops": [ + { + "id": "3523", + "code": "33523", + "data": { + "gtfs": { + "stop_id": "3523", + "stop_code": "33523", + "stop_name": "De Gentilly est et d'Auvergne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Gentilly est et d'Auvergne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4919792570645, + 45.5403651320231 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.82807314357 + }, + "name": "De Gentilly est et d'Auvergne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491979257, + 45.540365132 + ] + }, + "is_frozen": false, + "integer_id": 1240, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464827, + 45.455139 + ] + }, + "id": 1241, + "properties": { + "id": "981ebecb-3dc2-4439-8648-8052a51df7ec", + "code": "33525", + "data": { + "stops": [ + { + "id": "3525", + "code": "33525", + "data": { + "gtfs": { + "stop_id": "3525", + "stop_code": "33525", + "stop_name": "boul. de Rome et boul. Taschereau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et boul. Taschereau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4648274358855, + 45.4551392335761 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3885283683444 + }, + "name": "boul. de Rome et boul. Taschereau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464827436, + 45.455139234 + ] + }, + "is_frozen": false, + "integer_id": 1241, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.480001, + 45.456542 + ] + }, + "id": 1242, + "properties": { + "id": "9c3366b7-c832-4b7b-8636-18bed8c1e2de", + "code": "33528", + "data": { + "stops": [ + { + "id": "3528", + "code": "33528", + "data": { + "gtfs": { + "stop_id": "3528", + "stop_code": "33528", + "stop_name": "boul. de Rome et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4800012671713, + 45.4565422762275 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4121747854207 + }, + "name": "boul. de Rome et boul. Pelletier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.480001267, + 45.456542276 + ] + }, + "is_frozen": false, + "integer_id": 1242, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474528, + 45.434221 + ] + }, + "id": 1243, + "properties": { + "id": "4c302a60-4ab3-44a3-be17-43359562aaf4", + "code": "33529", + "data": { + "stops": [ + { + "id": "3529", + "code": "33529", + "data": { + "gtfs": { + "stop_id": "3529", + "stop_code": "33529", + "stop_name": "boul. Matte et Ignace", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Matte et Ignace", + "geography": { + "type": "Point", + "coordinates": [ + -73.4745280297027, + 45.4342213162093 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0361915642507 + }, + "name": "boul. Matte et Ignace", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47452803, + 45.434221316 + ] + }, + "is_frozen": false, + "integer_id": 1243, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.471723, + 45.474872 + ] + }, + "id": 1244, + "properties": { + "id": "ece1943b-159a-42fa-a0c1-16e06714e25e", + "code": "33530", + "data": { + "stops": [ + { + "id": "3530", + "code": "33530", + "data": { + "gtfs": { + "stop_id": "3530", + "stop_code": "33530", + "stop_name": "boul. Lapinière et boul. Provencher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et boul. Provencher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4717234325451, + 45.4748720938434 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7212601474115 + }, + "name": "boul. Lapinière et boul. Provencher", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.471723433, + 45.474872094 + ] + }, + "is_frozen": false, + "integer_id": 1244, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46294, + 45.468601 + ] + }, + "id": 1245, + "properties": { + "id": "01153fa0-59fe-4f77-8e46-e418296b526d", + "code": "33532", + "data": { + "stops": [ + { + "id": "3532", + "code": "33532", + "data": { + "gtfs": { + "stop_id": "3532", + "stop_code": "33532", + "stop_name": "boul. Lapinière et av. Auteuil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et av. Auteuil", + "geography": { + "type": "Point", + "coordinates": [ + -73.4629398241127, + 45.4686011147907 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.615482601767 + }, + "name": "boul. Lapinière et av. Auteuil", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462939824, + 45.468601115 + ] + }, + "is_frozen": false, + "integer_id": 1245, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.431969, + 45.489833 + ] + }, + "id": 1246, + "properties": { + "id": "3b027d8b-1b72-4250-a270-dd0ef2d41870", + "code": "33533", + "data": { + "stops": [ + { + "id": "3533", + "code": "33533", + "data": { + "gtfs": { + "stop_id": "3533", + "stop_code": "33533", + "stop_name": "montée Saint-Hubert et boul. Kimber", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et boul. Kimber", + "geography": { + "type": "Point", + "coordinates": [ + -73.4319690633375, + 45.4898333039997 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9737637908663 + }, + "name": "montée Saint-Hubert et boul. Kimber", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431969063, + 45.489833304 + ] + }, + "is_frozen": false, + "integer_id": 1246, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440343, + 45.472948 + ] + }, + "id": 1247, + "properties": { + "id": "2881ced2-6a46-4738-a470-6ff64097e482", + "code": "33534", + "data": { + "stops": [ + { + "id": "3534", + "code": "33534", + "data": { + "gtfs": { + "stop_id": "3534", + "stop_code": "33534", + "stop_name": "Grande Allée et boul. Gaétan-Boucher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et boul. Gaétan-Boucher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4403428517356, + 45.4729480884138 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6888027074685 + }, + "name": "Grande Allée et boul. Gaétan-Boucher", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440342852, + 45.472948088 + ] + }, + "is_frozen": false, + "integer_id": 1247, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.399525, + 45.495314 + ] + }, + "id": 1248, + "properties": { + "id": "cb20b749-b55e-4251-94cd-215651864e8b", + "code": "33536", + "data": { + "stops": [ + { + "id": "3536", + "code": "33536", + "data": { + "gtfs": { + "stop_id": "3536", + "stop_code": "33536", + "stop_name": "ch. de Chambly et boul. Jacques-Marcil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Jacques-Marcil", + "geography": { + "type": "Point", + "coordinates": [ + -73.399524538563, + 45.4953138560436 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0663100762605 + }, + "name": "ch. de Chambly et boul. Jacques-Marcil", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.399524539, + 45.495313856 + ] + }, + "is_frozen": false, + "integer_id": 1248, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.406711, + 45.497683 + ] + }, + "id": 1249, + "properties": { + "id": "3e90658d-8898-49d9-be57-5b29936d4a9e", + "code": "33537", + "data": { + "stops": [ + { + "id": "3537", + "code": "33537", + "data": { + "gtfs": { + "stop_id": "3537", + "stop_code": "33537", + "stop_name": "boul. Gaétan-Boucher et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4067108509294, + 45.4976829676285 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1063239001272 + }, + "name": "boul. Gaétan-Boucher et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.406710851, + 45.497682968 + ] + }, + "is_frozen": false, + "integer_id": 1249, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452964, + 45.603762 + ] + }, + "id": 1250, + "properties": { + "id": "ca205394-9833-4e14-b4fa-653c28b9a37d", + "code": "33542", + "data": { + "stops": [ + { + "id": "3542", + "code": "33542", + "data": { + "gtfs": { + "stop_id": "3542", + "stop_code": "33542", + "stop_name": "boul. De Montarville et boul. du Fort-Saint-Louis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et boul. du Fort-Saint-Louis", + "geography": { + "type": "Point", + "coordinates": [ + -73.4530258639898, + 45.6039350193051 + ] + } + }, + { + "id": "3543", + "code": "33543", + "data": { + "gtfs": { + "stop_id": "3543", + "stop_code": "33543", + "stop_name": "boul. De Montarville et de la Rivière-aux-Pins", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et de la Rivière-aux-Pins", + "geography": { + "type": "Point", + "coordinates": [ + -73.4529014617499, + 45.6035882116146 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9030996636882 + }, + "name": "boul. De Montarville et boul. du Fort-Saint-Louis", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452963663, + 45.603761615 + ] + }, + "is_frozen": false, + "integer_id": 1250, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454835, + 45.605374 + ] + }, + "id": 1251, + "properties": { + "id": "dd170d68-d567-4a2d-8a93-47dec3a52cd1", + "code": "33544", + "data": { + "stops": [ + { + "id": "3544", + "code": "33544", + "data": { + "gtfs": { + "stop_id": "3544", + "stop_code": "33544", + "stop_name": "boul. De Montarville et allée des Pionniers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et allée des Pionniers", + "geography": { + "type": "Point", + "coordinates": [ + -73.4548354444733, + 45.6053738452906 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9304854436471 + }, + "name": "boul. De Montarville et allée des Pionniers", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454835444, + 45.605373845 + ] + }, + "is_frozen": false, + "integer_id": 1251, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454967, + 45.605234 + ] + }, + "id": 1252, + "properties": { + "id": "6e37aa2c-853a-4603-9807-c4f338ee1e72", + "code": "33545", + "data": { + "stops": [ + { + "id": "3545", + "code": "33545", + "data": { + "gtfs": { + "stop_id": "3545", + "stop_code": "33545", + "stop_name": "boul. De Montarville et civique 30", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et civique 30", + "geography": { + "type": "Point", + "coordinates": [ + -73.4549665589979, + 45.605234423889 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9281171084101 + }, + "name": "boul. De Montarville et civique 30", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454966559, + 45.605234424 + ] + }, + "is_frozen": false, + "integer_id": 1252, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465762, + 45.454662 + ] + }, + "id": 1253, + "properties": { + "id": "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", + "code": "33546", + "data": { + "stops": [ + { + "id": "3546", + "code": "33546", + "data": { + "gtfs": { + "stop_id": "3546", + "stop_code": "33546", + "stop_name": "boul. Taschereau et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4657620179955, + 45.4546616761379 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3804801583377 + }, + "name": "boul. Taschereau et boul. de Rome", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465762018, + 45.454661676 + ] + }, + "is_frozen": false, + "integer_id": 1253, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.496225, + 45.550414 + ] + }, + "id": 1254, + "properties": { + "id": "87d520cc-f77e-449c-88c9-cee424bbc329", + "code": "33549", + "data": { + "stops": [ + { + "id": "3549", + "code": "33549", + "data": { + "gtfs": { + "stop_id": "3549", + "stop_code": "33549", + "stop_name": "Geoffrion et PRATT & WHITNEY CANADA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Geoffrion et PRATT & WHITNEY CANADA", + "geography": { + "type": "Point", + "coordinates": [ + -73.4962254609091, + 45.550414234719 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9982382301517 + }, + "name": "Geoffrion et PRATT & WHITNEY CANADA", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.496225461, + 45.550414235 + ] + }, + "is_frozen": false, + "integer_id": 1254, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.49047, + 45.50176 + ] + }, + "id": 1255, + "properties": { + "id": "62e9a71c-d705-430b-ba91-a24283924f89", + "code": "33550", + "data": { + "stops": [ + { + "id": "3550", + "code": "33550", + "data": { + "gtfs": { + "stop_id": "3550", + "stop_code": "33550", + "stop_name": "Saint-Georges et René-Philippe", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Georges et René-Philippe", + "geography": { + "type": "Point", + "coordinates": [ + -73.4904702055647, + 45.5017595366118 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1751880172366 + }, + "name": "Saint-Georges et René-Philippe", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490470206, + 45.501759537 + ] + }, + "is_frozen": false, + "integer_id": 1255, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479586, + 45.45928 + ] + }, + "id": 1256, + "properties": { + "id": "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", + "code": "33554", + "data": { + "stops": [ + { + "id": "3554", + "code": "33554", + "data": { + "gtfs": { + "stop_id": "3554", + "stop_code": "33554", + "stop_name": "boul. Pelletier et civique 7520", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et civique 7520", + "geography": { + "type": "Point", + "coordinates": [ + -73.4797341293712, + 45.4593349843142 + ] + } + }, + { + "id": "3608", + "code": "33608", + "data": { + "gtfs": { + "stop_id": "3608", + "stop_code": "33608", + "stop_name": "boul. Pelletier et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.479438249224, + 45.4592240330291 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4583122549639 + }, + "name": "boul. Pelletier et civique 7520", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479586189, + 45.459279509 + ] + }, + "is_frozen": false, + "integer_id": 1256, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.500304, + 45.550002 + ] + }, + "id": 1257, + "properties": { + "id": "09bf17cd-9db1-41e3-b993-62146cb91158", + "code": "33555", + "data": { + "stops": [ + { + "id": "3555", + "code": "33555", + "data": { + "gtfs": { + "stop_id": "3555", + "stop_code": "33555", + "stop_name": "du Bord-de-l'Eau est et Saint-Charles est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau est et Saint-Charles est", + "geography": { + "type": "Point", + "coordinates": [ + -73.5003039201143, + 45.5500018759396 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9912538331168 + }, + "name": "du Bord-de-l'Eau est et Saint-Charles est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.50030392, + 45.550001876 + ] + }, + "is_frozen": false, + "integer_id": 1257, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.499077, + 45.514333 + ] + }, + "id": 1258, + "properties": { + "id": "09272548-09d5-4afa-a45f-80ba6dd656dd", + "code": "33557", + "data": { + "stops": [ + { + "id": "3557", + "code": "33557", + "data": { + "gtfs": { + "stop_id": "3557", + "stop_code": "33557", + "stop_name": "boul. La Fayette et ch. du Coteau-Rouge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et ch. du Coteau-Rouge", + "geography": { + "type": "Point", + "coordinates": [ + -73.4988985799002, + 45.514471861326 + ] + } + }, + { + "id": "4517", + "code": "34517", + "data": { + "gtfs": { + "stop_id": "4517", + "stop_code": "34517", + "stop_name": "boul. La Fayette et ch. du Coteau-Rouge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et ch. du Coteau-Rouge", + "geography": { + "type": "Point", + "coordinates": [ + -73.4989120358879, + 45.5141933164992 + ] + } + }, + { + "id": "4519", + "code": "34519", + "data": { + "gtfs": { + "stop_id": "4519", + "stop_code": "34519", + "stop_name": "ch. du Coteau-Rouge et boul. La Fayette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et boul. La Fayette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4992545498687, + 45.5142647261507 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3876735415885 + }, + "name": "boul. La Fayette et ch. du Coteau-Rouge", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.499076565, + 45.514332589 + ] + }, + "is_frozen": false, + "integer_id": 1258, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.518969, + 45.516876 + ] + }, + "id": 1259, + "properties": { + "id": "6250ca71-cb3c-4550-b402-0f2dd1999975", + "code": "33560", + "data": { + "stops": [ + { + "id": "3560", + "code": "33560", + "data": { + "gtfs": { + "stop_id": "3560", + "stop_code": "33560", + "stop_name": "Riverside et CEGEP CHAMPLAIN", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et CEGEP CHAMPLAIN", + "geography": { + "type": "Point", + "coordinates": [ + -73.519053366166, + 45.5166102868117 + ] + } + }, + { + "id": "3775", + "code": "33775", + "data": { + "gtfs": { + "stop_id": "3775", + "stop_code": "33775", + "stop_name": "Riverside et ch. Tiffin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et ch. Tiffin", + "geography": { + "type": "Point", + "coordinates": [ + -73.5188854362197, + 45.516770709533 + ] + } + }, + { + "id": "4397", + "code": "34397", + "data": { + "gtfs": { + "stop_id": "4397", + "stop_code": "34397", + "stop_name": "ch. Tiffin et Saint-Charles ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Tiffin et Saint-Charles ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.518974638877, + 45.5171416469322 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4306739380845 + }, + "name": "Riverside et CEGEP CHAMPLAIN", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.518969401, + 45.516875967 + ] + }, + "is_frozen": false, + "integer_id": 1259, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.42641, + 45.497393 + ] + }, + "id": 1260, + "properties": { + "id": "09a490f8-d473-4d53-8aa0-2df137afe453", + "code": "33564", + "data": { + "stops": [ + { + "id": "3564", + "code": "33564", + "data": { + "gtfs": { + "stop_id": "3564", + "stop_code": "33564", + "stop_name": "montée Saint-Hubert et av. Primot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Primot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4263797932728, + 45.4972741012009 + ] + } + }, + { + "id": "4410", + "code": "34410", + "data": { + "gtfs": { + "stop_id": "4410", + "stop_code": "34410", + "stop_name": "montée Saint-Hubert et av. Primot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et av. Primot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4264408020881, + 45.497511093707 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1014193240144 + }, + "name": "montée Saint-Hubert et av. Primot", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.426410298, + 45.497392597 + ] + }, + "is_frozen": false, + "integer_id": 1260, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479898, + 45.456892 + ] + }, + "id": 1261, + "properties": { + "id": "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", + "code": "33565", + "data": { + "stops": [ + { + "id": "3565", + "code": "33565", + "data": { + "gtfs": { + "stop_id": "3565", + "stop_code": "33565", + "stop_name": "boul. Pelletier et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4798984149116, + 45.4568917348565 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4180647263229 + }, + "name": "boul. Pelletier et boul. de Rome", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479898415, + 45.456891735 + ] + }, + "is_frozen": false, + "integer_id": 1261, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.408561, + 45.513332 + ] + }, + "id": 1262, + "properties": { + "id": "90f9f389-96b4-444b-8d1b-774cf89df3c1", + "code": "33567", + "data": { + "stops": [ + { + "id": "3567", + "code": "33567", + "data": { + "gtfs": { + "stop_id": "3567", + "stop_code": "33567", + "stop_name": "rte de l'Aéroport et civique 5799", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et civique 5799", + "geography": { + "type": "Point", + "coordinates": [ + -73.4085994204252, + 45.5132279796796 + ] + } + }, + { + "id": "5153", + "code": "35153", + "data": { + "gtfs": { + "stop_id": "5153", + "stop_code": "35153", + "stop_name": "rte de l'Aéroport et civique 5700", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et civique 5700", + "geography": { + "type": "Point", + "coordinates": [ + -73.4085226942965, + 45.5134354495885 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3707535395234 + }, + "name": "rte de l'Aéroport et civique 5799", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.408561057, + 45.513331715 + ] + }, + "is_frozen": false, + "integer_id": 1262, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.497893, + 45.512131 + ] + }, + "id": 1263, + "properties": { + "id": "fdecd410-1224-486a-a041-e5f802671456", + "code": "33569", + "data": { + "stops": [ + { + "id": "3569", + "code": "33569", + "data": { + "gtfs": { + "stop_id": "3569", + "stop_code": "33569", + "stop_name": "boul. Taschereau et Passerelle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Passerelle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4978928759444, + 45.5121314766932 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3504644201673 + }, + "name": "boul. Taschereau et Passerelle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.497892876, + 45.512131477 + ] + }, + "is_frozen": false, + "integer_id": 1263, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.430202, + 45.505584 + ] + }, + "id": 1264, + "properties": { + "id": "648a2d3d-42dd-4ea9-875b-0eb410b8b1e8", + "code": "33574", + "data": { + "stops": [ + { + "id": "3574", + "code": "33574", + "data": { + "gtfs": { + "stop_id": "3574", + "stop_code": "33574", + "stop_name": "boul. Cousineau et COSTCO", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et COSTCO", + "geography": { + "type": "Point", + "coordinates": [ + -73.4302022817049, + 45.5055835157193 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2397986583792 + }, + "name": "boul. Cousineau et COSTCO", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.430202282, + 45.505583516 + ] + }, + "is_frozen": false, + "integer_id": 1264, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.484198, + 45.555288 + ] + }, + "id": 1265, + "properties": { + "id": "6db4cc67-3620-48bd-9c7c-28ab936b1e0b", + "code": "33578", + "data": { + "stops": [ + { + "id": "3578", + "code": "33578", + "data": { + "gtfs": { + "stop_id": "3578", + "stop_code": "33578", + "stop_name": "Adoncour et civique 501", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et civique 501", + "geography": { + "type": "Point", + "coordinates": [ + -73.4841980281851, + 45.5552880997425 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0808016053845 + }, + "name": "Adoncour et civique 501", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.484198028, + 45.5552881 + ] + }, + "is_frozen": false, + "integer_id": 1265, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455315, + 45.48234 + ] + }, + "id": 1266, + "properties": { + "id": "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", + "code": "33589", + "data": { + "stops": [ + { + "id": "3589", + "code": "33589", + "data": { + "gtfs": { + "stop_id": "3589", + "stop_code": "33589", + "stop_name": "av. Auguste et Arthur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Auguste et Arthur", + "geography": { + "type": "Point", + "coordinates": [ + -73.4553149126929, + 45.4823397427476 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8472684402794 + }, + "name": "av. Auguste et Arthur", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455314913, + 45.482339743 + ] + }, + "is_frozen": false, + "integer_id": 1266, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.488284, + 45.438534 + ] + }, + "id": 1267, + "properties": { + "id": "b88e581a-07f9-428f-bbb4-ab3a41e2dfe7", + "code": "33591", + "data": { + "stops": [ + { + "id": "3591", + "code": "33591", + "data": { + "gtfs": { + "stop_id": "3591", + "stop_code": "33591", + "stop_name": "ch. des Prairies et Riel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et Riel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4882841306655, + 45.4385338333817 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1087989095964 + }, + "name": "ch. des Prairies et Riel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.488284131, + 45.438533833 + ] + }, + "is_frozen": false, + "integer_id": 1267, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.374459, + 45.473167 + ] + }, + "id": 1268, + "properties": { + "id": "00770ec2-f385-4c5e-86f3-1e107a204be7", + "code": "33592", + "data": { + "stops": [ + { + "id": "3592", + "code": "33592", + "data": { + "gtfs": { + "stop_id": "3592", + "stop_code": "33592", + "stop_name": "boul. Mountainview et civique 3090", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Mountainview et civique 3090", + "geography": { + "type": "Point", + "coordinates": [ + -73.3744591024988, + 45.4731674939874 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6925038588563 + }, + "name": "boul. Mountainview et civique 3090", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.374459102, + 45.473167494 + ] + }, + "is_frozen": false, + "integer_id": 1268, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455711, + 45.461414 + ] + }, + "id": 1269, + "properties": { + "id": "30d24143-abd0-4a47-955d-cdbc3943ae61", + "code": "33594", + "data": { + "stops": [ + { + "id": "3594", + "code": "33594", + "data": { + "gtfs": { + "stop_id": "3594", + "stop_code": "33594", + "stop_name": "av. Malo et civique 3060", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et civique 3060", + "geography": { + "type": "Point", + "coordinates": [ + -73.4557113634948, + 45.4614135692782 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4942875461999 + }, + "name": "av. Malo et civique 3060", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455711363, + 45.461413569 + ] + }, + "is_frozen": false, + "integer_id": 1269, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.438677, + 45.570111 + ] + }, + "id": 1270, + "properties": { + "id": "2017e3ec-fe66-4e73-9fb7-567ac5f8a472", + "code": "33595", + "data": { + "stops": [ + { + "id": "3595", + "code": "33595", + "data": { + "gtfs": { + "stop_id": "3595", + "stop_code": "33595", + "stop_name": "Nobel et civique 1250", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et civique 1250", + "geography": { + "type": "Point", + "coordinates": [ + -73.4386628205514, + 45.5700580084926 + ] + } + }, + { + "id": "3933", + "code": "33933", + "data": { + "gtfs": { + "stop_id": "3933", + "stop_code": "33933", + "stop_name": "Nobel et civique 1250", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et civique 1250", + "geography": { + "type": "Point", + "coordinates": [ + -73.4386911480359, + 45.5701645485608 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3320369607992 + }, + "name": "Nobel et civique 1250", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438676984, + 45.570111279 + ] + }, + "is_frozen": false, + "integer_id": 1270, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.434632, + 45.569267 + ] + }, + "id": 1271, + "properties": { + "id": "bd1fa046-c7cd-4878-bf5b-177b8bb772d6", + "code": "33596", + "data": { + "stops": [ + { + "id": "3596", + "code": "33596", + "data": { + "gtfs": { + "stop_id": "3596", + "stop_code": "33596", + "stop_name": "Nobel et Newton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et Newton", + "geography": { + "type": "Point", + "coordinates": [ + -73.4351236755353, + 45.5693261722695 + ] + } + }, + { + "id": "3602", + "code": "33602", + "data": { + "gtfs": { + "stop_id": "3602", + "stop_code": "33602", + "stop_name": "Nobel et Newton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et Newton", + "geography": { + "type": "Point", + "coordinates": [ + -73.4341409225654, + 45.5692086316937 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3177289730417 + }, + "name": "Nobel et Newton", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.434632299, + 45.569267402 + ] + }, + "is_frozen": false, + "integer_id": 1271, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.4232, + 45.568482 + ] + }, + "id": 1272, + "properties": { + "id": "ab684dee-c058-4d37-851f-c3b6a26b599d", + "code": "33598", + "data": { + "stops": [ + { + "id": "3598", + "code": "33598", + "data": { + "gtfs": { + "stop_id": "3598", + "stop_code": "33598", + "stop_name": "Nobel et civique 1450", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et civique 1450", + "geography": { + "type": "Point", + "coordinates": [ + -73.4231988737698, + 45.5684504391699 + ] + } + }, + { + "id": "3599", + "code": "33599", + "data": { + "gtfs": { + "stop_id": "3599", + "stop_code": "33599", + "stop_name": "Nobel et civique 1450", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et civique 1450", + "geography": { + "type": "Point", + "coordinates": [ + -73.4232019907796, + 45.5685134295535 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3044118855065 + }, + "name": "Nobel et civique 1450", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.423200432, + 45.568481934 + ] + }, + "is_frozen": false, + "integer_id": 1272, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.426976, + 45.568283 + ] + }, + "id": 1273, + "properties": { + "id": "8663e9fe-e135-44e5-ac98-e3cb896c6c45", + "code": "33600", + "data": { + "stops": [ + { + "id": "3600", + "code": "33600", + "data": { + "gtfs": { + "stop_id": "3600", + "stop_code": "33600", + "stop_name": "Nobel et civique 1350", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et civique 1350", + "geography": { + "type": "Point", + "coordinates": [ + -73.4267281967263, + 45.5683425315012 + ] + } + }, + { + "id": "3622", + "code": "33622", + "data": { + "gtfs": { + "stop_id": "3622", + "stop_code": "33622", + "stop_name": "Nobel et civique 1350", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et civique 1350", + "geography": { + "type": "Point", + "coordinates": [ + -73.4272247474419, + 45.5682236174769 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3010404339404 + }, + "name": "Nobel et civique 1350", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.426976472, + 45.568283074 + ] + }, + "is_frozen": false, + "integer_id": 1273, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.42918, + 45.568304 + ] + }, + "id": 1274, + "properties": { + "id": "26e46bda-74e3-4f09-b95f-139d0b7fb0af", + "code": "33601", + "data": { + "stops": [ + { + "id": "3601", + "code": "33601", + "data": { + "gtfs": { + "stop_id": "3601", + "stop_code": "33601", + "stop_name": "Nobel et civique 1330", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et civique 1330", + "geography": { + "type": "Point", + "coordinates": [ + -73.4290571820626, + 45.5683582855231 + ] + } + }, + { + "id": "4024", + "code": "34024", + "data": { + "gtfs": { + "stop_id": "4024", + "stop_code": "34024", + "stop_name": "Nobel et civique 1330", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et civique 1330", + "geography": { + "type": "Point", + "coordinates": [ + -73.4293034125429, + 45.568249281264 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.301391530504 + }, + "name": "Nobel et civique 1330", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.429180297, + 45.568303783 + ] + }, + "is_frozen": false, + "integer_id": 1274, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.507846, + 45.540708 + ] + }, + "id": 1275, + "properties": { + "id": "21e2e89a-3df0-4ff7-aa64-17a07fbd660e", + "code": "33615", + "data": { + "stops": [ + { + "id": "3615", + "code": "33615", + "data": { + "gtfs": { + "stop_id": "3615", + "stop_code": "33615", + "stop_name": "ch. de Chambly et COCATHEDRALE SAINT-ANTOINE-DE-PADOUE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et COCATHEDRALE SAINT-ANTOINE-DE-PADOUE", + "geography": { + "type": "Point", + "coordinates": [ + -73.5075581162964, + 45.5404374204891 + ] + } + }, + { + "id": "3872", + "code": "33872", + "data": { + "gtfs": { + "stop_id": "3872", + "stop_code": "33872", + "stop_name": "Saint-Charles est et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles est et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.5081337255498, + 45.5409786149535 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8338778710265 + }, + "name": "ch. de Chambly et COCATHEDRALE SAINT-ANTOINE-DE-PADOUE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507845921, + 45.540708018 + ] + }, + "is_frozen": false, + "integer_id": 1275, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494346, + 45.510415 + ] + }, + "id": 1276, + "properties": { + "id": "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", + "code": "33624", + "data": { + "stops": [ + { + "id": "3624", + "code": "33624", + "data": { + "gtfs": { + "stop_id": "3624", + "stop_code": "33624", + "stop_name": "boul. Taschereau et Saint-Thomas", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Saint-Thomas", + "geography": { + "type": "Point", + "coordinates": [ + -73.4943462896294, + 45.5104149342245 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3214497828989 + }, + "name": "boul. Taschereau et Saint-Thomas", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.49434629, + 45.510414934 + ] + }, + "is_frozen": false, + "integer_id": 1276, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513281, + 45.517423 + ] + }, + "id": 1277, + "properties": { + "id": "d3215c60-bb9e-40ac-89e4-1f922b39e266", + "code": "33629", + "data": { + "stops": [ + { + "id": "3629", + "code": "33629", + "data": { + "gtfs": { + "stop_id": "3629", + "stop_code": "33629", + "stop_name": "boul. Taschereau et de Wagram", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et de Wagram", + "geography": { + "type": "Point", + "coordinates": [ + -73.5132806060957, + 45.5174232479444 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4399274646777 + }, + "name": "boul. Taschereau et de Wagram", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.513280606, + 45.517423248 + ] + }, + "is_frozen": false, + "integer_id": 1277, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453469, + 45.46418 + ] + }, + "id": 1278, + "properties": { + "id": "b6dfeeab-9981-4db8-9a90-2e14691bf516", + "code": "33631", + "data": { + "stops": [ + { + "id": "3631", + "code": "33631", + "data": { + "gtfs": { + "stop_id": "3631", + "stop_code": "33631", + "stop_name": "av. Broadway et Belvédère", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Broadway et Belvédère", + "geography": { + "type": "Point", + "coordinates": [ + -73.4534693591613, + 45.4641795421278 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5409214366663 + }, + "name": "av. Broadway et Belvédère", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453469359, + 45.464179542 + ] + }, + "is_frozen": false, + "integer_id": 1278, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.512961, + 45.539137 + ] + }, + "id": 1279, + "properties": { + "id": "2d2815ee-443f-48d9-a68e-7f53a9aa6216", + "code": "33635", + "data": { + "stops": [ + { + "id": "3635", + "code": "33635", + "data": { + "gtfs": { + "stop_id": "3635", + "stop_code": "33635", + "stop_name": "du Bord-de-l'Eau ouest et Saint-Jacques", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau ouest et Saint-Jacques", + "geography": { + "type": "Point", + "coordinates": [ + -73.5128691506661, + 45.5390869198561 + ] + } + }, + { + "id": "3636", + "code": "33636", + "data": { + "gtfs": { + "stop_id": "3636", + "stop_code": "33636", + "stop_name": "du Bord-de-l'Eau ouest et Saint-Jacques", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau ouest et Saint-Jacques", + "geography": { + "type": "Point", + "coordinates": [ + -73.5130534019982, + 45.5391876807298 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8072879987856 + }, + "name": "du Bord-de-l'Eau ouest et Saint-Jacques", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.512961276, + 45.5391373 + ] + }, + "is_frozen": false, + "integer_id": 1279, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.419795, + 45.524002 + ] + }, + "id": 1280, + "properties": { + "id": "14f0cd5d-3ba1-4c3a-96f5-43862d47ec96", + "code": "33637", + "data": { + "stops": [ + { + "id": "3637", + "code": "33637", + "data": { + "gtfs": { + "stop_id": "3637", + "stop_code": "33637", + "stop_name": "de l'ENA et École Nationale d'Aérotechnique", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de l'ENA et École Nationale d'Aérotechnique", + "geography": { + "type": "Point", + "coordinates": [ + -73.419810238756, + 45.5239258939178 + ] + } + }, + { + "id": "3640", + "code": "33640", + "data": { + "gtfs": { + "stop_id": "3640", + "stop_code": "33640", + "stop_name": "de l'ENA et ECOLE NATIONALE D'AÉROTECHNIQUE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de l'ENA et ECOLE NATIONALE D'AÉROTECHNIQUE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4197803221772, + 45.5240780925001 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5511829637172 + }, + "name": "de l'ENA et École Nationale d'Aérotechnique", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.41979528, + 45.524001993 + ] + }, + "is_frozen": false, + "integer_id": 1280, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.416956, + 45.525677 + ] + }, + "id": 1281, + "properties": { + "id": "94a06ef0-fab6-48d9-b546-63c0a5523117", + "code": "33638", + "data": { + "stops": [ + { + "id": "3638", + "code": "33638", + "data": { + "gtfs": { + "stop_id": "3638", + "stop_code": "33638", + "stop_name": "de l'ENA et Viger", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de l'ENA et Viger", + "geography": { + "type": "Point", + "coordinates": [ + -73.4169558697289, + 45.5256768626474 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5795134456733 + }, + "name": "de l'ENA et Viger", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.41695587, + 45.525676863 + ] + }, + "is_frozen": false, + "integer_id": 1281, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.4656, + 45.522562 + ] + }, + "id": 1282, + "properties": { + "id": "4e3112b5-abc7-4db5-a6a8-19b4193263c2", + "code": "33641", + "data": { + "stops": [ + { + "id": "3641", + "code": "33641", + "data": { + "gtfs": { + "stop_id": "3641", + "stop_code": "33641", + "stop_name": "ch. de Chambly et boul. Jacques-Cartier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Jacques-Cartier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4655995432264, + 45.5225616689241 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5268218344995 + }, + "name": "ch. de Chambly et boul. Jacques-Cartier ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465599543, + 45.522561669 + ] + }, + "is_frozen": false, + "integer_id": 1282, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459286, + 45.491991 + ] + }, + "id": 1283, + "properties": { + "id": "1c6a64fd-3d5b-472f-bfe4-11a7479ddb48", + "code": "33646", + "data": { + "stops": [ + { + "id": "3646", + "code": "33646", + "data": { + "gtfs": { + "stop_id": "3646", + "stop_code": "33646", + "stop_name": "9e Avenue et Robillard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "9e Avenue et Robillard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4590775560882, + 45.4917456473959 + ] + } + }, + { + "id": "4752", + "code": "34752", + "data": { + "gtfs": { + "stop_id": "4752", + "stop_code": "34752", + "stop_name": "9e Avenue et Murray", + "location_type": 0, + "parent_station": "" + } + }, + "name": "9e Avenue et Murray", + "geography": { + "type": "Point", + "coordinates": [ + -73.4594953738634, + 45.4922358868731 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0101921860509 + }, + "name": "9e Avenue et Robillard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459286465, + 45.491990767 + ] + }, + "is_frozen": false, + "integer_id": 1283, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491295, + 45.489293 + ] + }, + "id": 1284, + "properties": { + "id": "1bded3cb-51a3-422d-8815-a9027023991e", + "code": "33647", + "data": { + "stops": [ + { + "id": "3647", + "code": "33647", + "data": { + "gtfs": { + "stop_id": "3647", + "stop_code": "33647", + "stop_name": "boul. Churchill et av. Victoria", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Churchill et av. Victoria", + "geography": { + "type": "Point", + "coordinates": [ + -73.4912946460981, + 45.4892929267 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9646402654732 + }, + "name": "boul. Churchill et av. Victoria", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491294646, + 45.489292927 + ] + }, + "is_frozen": false, + "integer_id": 1284, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.431689, + 45.506374 + ] + }, + "id": 1285, + "properties": { + "id": "2f531374-1848-411d-97c8-17a070d5c4b1", + "code": "33648", + "data": { + "stops": [ + { + "id": "3648", + "code": "33648", + "data": { + "gtfs": { + "stop_id": "3648", + "stop_code": "33648", + "stop_name": "boul. Sir-Wilfrid-Laurier et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4316887975062, + 45.50637394881 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2531555805656 + }, + "name": "boul. Sir-Wilfrid-Laurier et boul. Cousineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431688798, + 45.506373949 + ] + }, + "is_frozen": false, + "integer_id": 1285, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.436732, + 45.57388 + ] + }, + "id": 1286, + "properties": { + "id": "b09cf260-c832-4cf7-bb1b-ef1c96c3308c", + "code": "33649", + "data": { + "stops": [ + { + "id": "3649", + "code": "33649", + "data": { + "gtfs": { + "stop_id": "3649", + "stop_code": "33649", + "stop_name": "du Perche et de Normandie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Perche et de Normandie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4368350700266, + 45.5737498066257 + ] + } + }, + { + "id": "4222", + "code": "34222", + "data": { + "gtfs": { + "stop_id": "4222", + "stop_code": "34222", + "stop_name": "de Normandie et du Perche", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Normandie et du Perche", + "geography": { + "type": "Point", + "coordinates": [ + -73.4366293752699, + 45.5740106439364 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3959474484358 + }, + "name": "du Perche et de Normandie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.436732223, + 45.573880225 + ] + }, + "is_frozen": false, + "integer_id": 1286, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513788, + 45.495391 + ] + }, + "id": 1287, + "properties": { + "id": "27330ef0-4c59-4e22-a044-51b9d43c9719", + "code": "33663", + "data": { + "stops": [ + { + "id": "3663", + "code": "33663", + "data": { + "gtfs": { + "stop_id": "3663", + "stop_code": "33663", + "stop_name": "Riverside et boul. de l'Union", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et boul. de l'Union", + "geography": { + "type": "Point", + "coordinates": [ + -73.5137876182343, + 45.4953905444115 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0676052429197 + }, + "name": "Riverside et boul. de l'Union", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.513787618, + 45.495390544 + ] + }, + "is_frozen": false, + "integer_id": 1287, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461765, + 45.555432 + ] + }, + "id": 1288, + "properties": { + "id": "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", + "code": "33667", + "data": { + "stops": [ + { + "id": "3667", + "code": "33667", + "data": { + "gtfs": { + "stop_id": "3667", + "stop_code": "33667", + "stop_name": "du Caribou et Bédard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Caribou et Bédard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4619121968823, + 45.5553915962852 + ] + } + }, + { + "id": "4521", + "code": "34521", + "data": { + "gtfs": { + "stop_id": "4521", + "stop_code": "34521", + "stop_name": "Bédard et du Caribou", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bédard et du Caribou", + "geography": { + "type": "Point", + "coordinates": [ + -73.4616171858677, + 45.5554718671831 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0832350562184 + }, + "name": "du Caribou et Bédard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461764691, + 45.555431732 + ] + }, + "is_frozen": false, + "integer_id": 1288, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.519245, + 45.520636 + ] + }, + "id": 1289, + "properties": { + "id": "14ea82bb-e417-4012-bd05-27bf80d8ca20", + "code": "33668", + "data": { + "stops": [ + { + "id": "3668", + "code": "33668", + "data": { + "gtfs": { + "stop_id": "3668", + "stop_code": "33668", + "stop_name": "boul. La Fayette et Saint-Charles ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et Saint-Charles ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.5192449767288, + 45.5206358129215 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.49425147762 + }, + "name": "boul. La Fayette et Saint-Charles ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.519244977, + 45.520635813 + ] + }, + "is_frozen": false, + "integer_id": 1289, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.518828, + 45.520725 + ] + }, + "id": 1290, + "properties": { + "id": "24b6917b-6070-4fb2-a53e-3551153f56bd", + "code": "33669", + "data": { + "stops": [ + { + "id": "3669", + "code": "33669", + "data": { + "gtfs": { + "stop_id": "3669", + "stop_code": "33669", + "stop_name": "boul. La Fayette et civique 165", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et civique 165", + "geography": { + "type": "Point", + "coordinates": [ + -73.5188276255784, + 45.5207248829693 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4957577695328 + }, + "name": "boul. La Fayette et civique 165", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.518827626, + 45.520724883 + ] + }, + "is_frozen": false, + "integer_id": 1290, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.52011, + 45.519807 + ] + }, + "id": 1291, + "properties": { + "id": "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", + "code": "33685", + "data": { + "stops": [ + { + "id": "3685", + "code": "33685", + "data": { + "gtfs": { + "stop_id": "3685", + "stop_code": "33685", + "stop_name": "Saint-Charles ouest et Verchères", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et Verchères", + "geography": { + "type": "Point", + "coordinates": [ + -73.520239316534, + 45.5198828751711 + ] + } + }, + { + "id": "4540", + "code": "34540", + "data": { + "gtfs": { + "stop_id": "4540", + "stop_code": "34540", + "stop_name": "Saint-Charles ouest et Verchères", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et Verchères", + "geography": { + "type": "Point", + "coordinates": [ + -73.5199805674409, + 45.5197314406939 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4802381605695 + }, + "name": "Saint-Charles ouest et Verchères", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.520109942, + 45.519807158 + ] + }, + "is_frozen": false, + "integer_id": 1291, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.517979, + 45.531507 + ] + }, + "id": 1292, + "properties": { + "id": "649e6394-9376-40eb-bc0e-4a376a0044aa", + "code": "33690", + "data": { + "stops": [ + { + "id": "3690", + "code": "33690", + "data": { + "gtfs": { + "stop_id": "3690", + "stop_code": "33690", + "stop_name": "Saint-Charles ouest et Joliette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et Joliette", + "geography": { + "type": "Point", + "coordinates": [ + -73.5179790801823, + 45.5315070111543 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6781500944925 + }, + "name": "Saint-Charles ouest et Joliette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.51797908, + 45.531507011 + ] + }, + "is_frozen": false, + "integer_id": 1292, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.516692, + 45.530817 + ] + }, + "id": 1293, + "properties": { + "id": "75f8e698-ddc5-4206-bed4-8258ad166d7e", + "code": "33691", + "data": { + "stops": [ + { + "id": "3691", + "code": "33691", + "data": { + "gtfs": { + "stop_id": "3691", + "stop_code": "33691", + "stop_name": "Joliette et Saint-Charles ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Saint-Charles ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.5167225609502, + 45.5308975856697 + ] + } + }, + { + "id": "3692", + "code": "33692", + "data": { + "gtfs": { + "stop_id": "3692", + "stop_code": "33692", + "stop_name": "Joliette et Saint-Charles ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et Saint-Charles ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.5166622055084, + 45.5307366268555 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6664764400505 + }, + "name": "Joliette et Saint-Charles ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.516692383, + 45.530817106 + ] + }, + "is_frozen": false, + "integer_id": 1293, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.519036, + 45.531588 + ] + }, + "id": 1294, + "properties": { + "id": "2e804fba-75d7-4c69-a7f7-706998c1a6f1", + "code": "33695", + "data": { + "stops": [ + { + "id": "3695", + "code": "33695", + "data": { + "gtfs": { + "stop_id": "3695", + "stop_code": "33695", + "stop_name": "Joliette et place de la Louisiane", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et place de la Louisiane", + "geography": { + "type": "Point", + "coordinates": [ + -73.5188249216581, + 45.5315930911245 + ] + } + }, + { + "id": "3998", + "code": "33998", + "data": { + "gtfs": { + "stop_id": "3998", + "stop_code": "33998", + "stop_name": "Joliette et place de la Louisiane", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et place de la Louisiane", + "geography": { + "type": "Point", + "coordinates": [ + -73.5192466203429, + 45.5315826097214 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6795179722645 + }, + "name": "Joliette et place de la Louisiane", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.519035771, + 45.53158785 + ] + }, + "is_frozen": false, + "integer_id": 1294, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.431274, + 45.58031 + ] + }, + "id": 1295, + "properties": { + "id": "ba6e04e1-77fc-4b3f-86d2-fd956b418882", + "code": "33697", + "data": { + "stops": [ + { + "id": "3697", + "code": "33697", + "data": { + "gtfs": { + "stop_id": "3697", + "stop_code": "33697", + "stop_name": "D'Avaugour et de Normandie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "D'Avaugour et de Normandie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4314519800789, + 45.5803805991103 + ] + } + }, + { + "id": "3702", + "code": "33702", + "data": { + "gtfs": { + "stop_id": "3702", + "stop_code": "33702", + "stop_name": "de Normandie et D'Avaugour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Normandie et D'Avaugour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4312855184469, + 45.5801777924163 + ] + } + }, + { + "id": "3703", + "code": "33703", + "data": { + "gtfs": { + "stop_id": "3703", + "stop_code": "33703", + "stop_name": "de Normandie et D'Avaugour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Normandie et D'Avaugour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4310961833109, + 45.5804414988699 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5050012562145 + }, + "name": "D'Avaugour et de Normandie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431274082, + 45.580309646 + ] + }, + "is_frozen": false, + "integer_id": 1295, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.428715, + 45.581598 + ] + }, + "id": 1296, + "properties": { + "id": "3bd4e28f-2392-4d87-96de-a2ab53d75020", + "code": "33699", + "data": { + "stops": [ + { + "id": "3699", + "code": "33699", + "data": { + "gtfs": { + "stop_id": "3699", + "stop_code": "33699", + "stop_name": "de Normandie et des Rossignols", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Normandie et des Rossignols", + "geography": { + "type": "Point", + "coordinates": [ + -73.4286416724976, + 45.5817624785984 + ] + } + }, + { + "id": "3700", + "code": "33700", + "data": { + "gtfs": { + "stop_id": "3700", + "stop_code": "33700", + "stop_name": "de Normandie et des Rossignols", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Normandie et des Rossignols", + "geography": { + "type": "Point", + "coordinates": [ + -73.428787892123, + 45.5814325515651 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5268501276972 + }, + "name": "de Normandie et des Rossignols", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.428714782, + 45.581597515 + ] + }, + "is_frozen": false, + "integer_id": 1296, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451701, + 45.517167 + ] + }, + "id": 1297, + "properties": { + "id": "0039f884-0610-402a-b23b-498abb207283", + "code": "33704", + "data": { + "stops": [ + { + "id": "3704", + "code": "33704", + "data": { + "gtfs": { + "stop_id": "3704", + "stop_code": "33704", + "stop_name": "boul. Roberval est et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4517012978075, + 45.5171673249369 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4356002388799 + }, + "name": "boul. Roberval est et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451701298, + 45.517167325 + ] + }, + "is_frozen": false, + "integer_id": 1297, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451322, + 45.516819 + ] + }, + "id": 1298, + "properties": { + "id": "5636d204-312b-4d1e-bac7-614621da4bb5", + "code": "33705", + "data": { + "stops": [ + { + "id": "3705", + "code": "33705", + "data": { + "gtfs": { + "stop_id": "3705", + "stop_code": "33705", + "stop_name": "ch. de Chambly et boul. Roberval est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Roberval est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4513217560175, + 45.516819495932 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4297191313406 + }, + "name": "ch. de Chambly et boul. Roberval est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451321756, + 45.516819496 + ] + }, + "is_frozen": false, + "integer_id": 1298, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449887, + 45.517374 + ] + }, + "id": 1299, + "properties": { + "id": "9d7bed04-91bf-4977-b8f5-ead58bfa3d28", + "code": "33706", + "data": { + "stops": [ + { + "id": "3706", + "code": "33706", + "data": { + "gtfs": { + "stop_id": "3706", + "stop_code": "33706", + "stop_name": "boul. Roberval est et Masson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et Masson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4497797994026, + 45.5175333056353 + ] + } + }, + { + "id": "4169", + "code": "34169", + "data": { + "gtfs": { + "stop_id": "4169", + "stop_code": "34169", + "stop_name": "boul. Roberval est et Masson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et Masson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4499941137366, + 45.5172151097785 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4390982765643 + }, + "name": "boul. Roberval est et Masson", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449886957, + 45.517374208 + ] + }, + "is_frozen": false, + "integer_id": 1299, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446151, + 45.519139 + ] + }, + "id": 1300, + "properties": { + "id": "aa6137b4-b674-460f-91f8-a129c1cf46bc", + "code": "33707", + "data": { + "stops": [ + { + "id": "3707", + "code": "33707", + "data": { + "gtfs": { + "stop_id": "3707", + "stop_code": "33707", + "stop_name": "boul. Roberval est et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4461507488776, + 45.5191390216306 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.468939812719 + }, + "name": "boul. Roberval est et Passage piétonnier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446150749, + 45.519139022 + ] + }, + "is_frozen": false, + "integer_id": 1300, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.447492, + 45.518172 + ] + }, + "id": 1301, + "properties": { + "id": "96eb89e4-98b8-49ac-b938-d7bcff69fc98", + "code": "33708", + "data": { + "stops": [ + { + "id": "3708", + "code": "33708", + "data": { + "gtfs": { + "stop_id": "3708", + "stop_code": "33708", + "stop_name": "boul. Roberval est et du Major", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et du Major", + "geography": { + "type": "Point", + "coordinates": [ + -73.4474739436447, + 45.5183072852127 + ] + } + }, + { + "id": "4170", + "code": "34170", + "data": { + "gtfs": { + "stop_id": "4170", + "stop_code": "34170", + "stop_name": "boul. Roberval est et du Major", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et du Major", + "geography": { + "type": "Point", + "coordinates": [ + -73.4475093946638, + 45.5180373493167 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4525932919506 + }, + "name": "boul. Roberval est et du Major", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447491669, + 45.518172317 + ] + }, + "is_frozen": false, + "integer_id": 1301, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44475, + 45.525254 + ] + }, + "id": 1302, + "properties": { + "id": "2800446d-aebc-4882-a018-9ab217599d73", + "code": "33710", + "data": { + "stops": [ + { + "id": "3710", + "code": "33710", + "data": { + "gtfs": { + "stop_id": "3710", + "stop_code": "33710", + "stop_name": "boul. Roland-Therrien et Moquin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et Moquin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4447495344823, + 45.5252536219661 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.572354073969 + }, + "name": "boul. Roland-Therrien et Moquin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.444749534, + 45.525253622 + ] + }, + "is_frozen": false, + "integer_id": 1302, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446317, + 45.526 + ] + }, + "id": 1303, + "properties": { + "id": "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", + "code": "33711", + "data": { + "stops": [ + { + "id": "3711", + "code": "33711", + "data": { + "gtfs": { + "stop_id": "3711", + "stop_code": "33711", + "stop_name": "boul. Roland-Therrien et Brassard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et Brassard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4463186436785, + 45.5257537675257 + ] + } + }, + { + "id": "4174", + "code": "34174", + "data": { + "gtfs": { + "stop_id": "4174", + "stop_code": "34174", + "stop_name": "boul. Roland-Therrien et Brassard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et Brassard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4462538937672, + 45.5261370911636 + ] + } + }, + { + "id": "5797", + "code": "30566", + "data": { + "gtfs": { + "stop_id": "5797", + "stop_code": "30566", + "stop_name": "Brassard et boul. Roland-Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brassard et boul. Roland-Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4463806943607, + 45.5262460799074 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5849783209018 + }, + "name": "boul. Roland-Therrien et Brassard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446317294, + 45.525999924 + ] + }, + "is_frozen": false, + "integer_id": 1303, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450213, + 45.516095 + ] + }, + "id": 1304, + "properties": { + "id": "b8513e69-5eee-478d-b428-8f498c145b40", + "code": "33712", + "data": { + "stops": [ + { + "id": "3712", + "code": "33712", + "data": { + "gtfs": { + "stop_id": "3712", + "stop_code": "33712", + "stop_name": "ch. de Chambly et Bégin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Bégin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4502128406686, + 45.5160952516641 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4174739287674 + }, + "name": "ch. de Chambly et Bégin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450212841, + 45.516095252 + ] + }, + "is_frozen": false, + "integer_id": 1304, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.498201, + 45.479261 + ] + }, + "id": 1305, + "properties": { + "id": "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", + "code": "33714", + "data": { + "stops": [ + { + "id": "3714", + "code": "33714", + "data": { + "gtfs": { + "stop_id": "3714", + "stop_code": "33714", + "stop_name": "boul. Simard et de Gascogne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Simard et de Gascogne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4984502720319, + 45.4791581527916 + ] + } + }, + { + "id": "3715", + "code": "33715", + "data": { + "gtfs": { + "stop_id": "3715", + "stop_code": "33715", + "stop_name": "boul. Simard et de Gascogne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Simard et de Gascogne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4979510312277, + 45.4793644581998 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7953172108505 + }, + "name": "boul. Simard et de Gascogne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.498200652, + 45.479261305 + ] + }, + "is_frozen": false, + "integer_id": 1305, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.496094, + 45.479209 + ] + }, + "id": 1306, + "properties": { + "id": "6b54424b-6f85-4448-8e7d-a05da4ef5b95", + "code": "33716", + "data": { + "stops": [ + { + "id": "3716", + "code": "33716", + "data": { + "gtfs": { + "stop_id": "3716", + "stop_code": "33716", + "stop_name": "boul. Simard et du Pas-de-Calais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Simard et du Pas-de-Calais", + "geography": { + "type": "Point", + "coordinates": [ + -73.4964084995336, + 45.479115170653 + ] + } + }, + { + "id": "3717", + "code": "33717", + "data": { + "gtfs": { + "stop_id": "3717", + "stop_code": "33717", + "stop_name": "boul. Simard et du Pas-de-Calais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Simard et du Pas-de-Calais", + "geography": { + "type": "Point", + "coordinates": [ + -73.4957801094829, + 45.4793020608447 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7944281129808 + }, + "name": "boul. Simard et du Pas-de-Calais", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.496094305, + 45.479208616 + ] + }, + "is_frozen": false, + "integer_id": 1306, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491669, + 45.479139 + ] + }, + "id": 1307, + "properties": { + "id": "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", + "code": "33718", + "data": { + "stops": [ + { + "id": "3718", + "code": "33718", + "data": { + "gtfs": { + "stop_id": "3718", + "stop_code": "33718", + "stop_name": "boul. Simard et du Dauphiné", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Simard et du Dauphiné", + "geography": { + "type": "Point", + "coordinates": [ + -73.4918543087617, + 45.4790526204867 + ] + } + }, + { + "id": "3719", + "code": "33719", + "data": { + "gtfs": { + "stop_id": "3719", + "stop_code": "33719", + "stop_name": "boul. Simard et du Dauphiné", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Simard et du Dauphiné", + "geography": { + "type": "Point", + "coordinates": [ + -73.4914836548061, + 45.4792256393942 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7932555787548 + }, + "name": "boul. Simard et du Dauphiné", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491668982, + 45.47913913 + ] + }, + "is_frozen": false, + "integer_id": 1307, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482576, + 45.478987 + ] + }, + "id": 1308, + "properties": { + "id": "528dcb9e-5a83-46d3-8e03-42692ca57a5a", + "code": "33722", + "data": { + "stops": [ + { + "id": "3722", + "code": "33722", + "data": { + "gtfs": { + "stop_id": "3722", + "stop_code": "33722", + "stop_name": "boul. Simard et de Guyenne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Simard et de Guyenne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4828011384834, + 45.4789014587105 + ] + } + }, + { + "id": "3965", + "code": "33965", + "data": { + "gtfs": { + "stop_id": "3965", + "stop_code": "33965", + "stop_name": "boul. Simard et de Guyenne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Simard et de Guyenne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4823508231788, + 45.4790732958604 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.790694853574 + }, + "name": "boul. Simard et de Guyenne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482575981, + 45.478987377 + ] + }, + "is_frozen": false, + "integer_id": 1308, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479103, + 45.478944 + ] + }, + "id": 1309, + "properties": { + "id": "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", + "code": "33723", + "data": { + "stops": [ + { + "id": "3723", + "code": "33723", + "data": { + "gtfs": { + "stop_id": "3723", + "stop_code": "33723", + "stop_name": "boul. Simard et place de Chambord", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Simard et place de Chambord", + "geography": { + "type": "Point", + "coordinates": [ + -73.4792858962149, + 45.4788574289453 + ] + } + }, + { + "id": "4192", + "code": "34192", + "data": { + "gtfs": { + "stop_id": "4192", + "stop_code": "34192", + "stop_name": "boul. Simard et de Namur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Simard et de Namur", + "geography": { + "type": "Point", + "coordinates": [ + -73.4789210379, + 45.4790302398748 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7899600998411 + }, + "name": "boul. Simard et place de Chambord", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479103467, + 45.478943834 + ] + }, + "is_frozen": false, + "integer_id": 1309, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.419991, + 45.459106 + ] + }, + "id": 1310, + "properties": { + "id": "2b6f210c-4f28-43d1-b096-b48c582f5274", + "code": "33725", + "data": { + "stops": [ + { + "id": "3725", + "code": "33725", + "data": { + "gtfs": { + "stop_id": "3725", + "stop_code": "33725", + "stop_name": "boul. Grande Allée et boul. du Quartier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et boul. du Quartier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4199913724205, + 45.4591060318546 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4553880136024 + }, + "name": "boul. Grande Allée et boul. du Quartier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.419991372, + 45.459106032 + ] + }, + "is_frozen": false, + "integer_id": 1310, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462487, + 45.561447 + ] + }, + "id": 1311, + "properties": { + "id": "2b894d51-a427-4850-8fae-89ed3f29388d", + "code": "33727", + "data": { + "stops": [ + { + "id": "3727", + "code": "33727", + "data": { + "gtfs": { + "stop_id": "3727", + "stop_code": "33727", + "stop_name": "boul. Fernand-Lafontaine et du Cerf", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et du Cerf", + "geography": { + "type": "Point", + "coordinates": [ + -73.4624868834039, + 45.5614468981124 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1851621118345 + }, + "name": "boul. Fernand-Lafontaine et du Cerf", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462486883, + 45.561446898 + ] + }, + "is_frozen": false, + "integer_id": 1311, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461405, + 45.561714 + ] + }, + "id": 1312, + "properties": { + "id": "28b7e465-7627-4587-950e-0fe104f1bac7", + "code": "33728", + "data": { + "stops": [ + { + "id": "3728", + "code": "33728", + "data": { + "gtfs": { + "stop_id": "3728", + "stop_code": "33728", + "stop_name": "boul. Fernand-Lafontaine et boul. Guimond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et boul. Guimond", + "geography": { + "type": "Point", + "coordinates": [ + -73.4614049497989, + 45.5617136659528 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1896832470502 + }, + "name": "boul. Fernand-Lafontaine et boul. Guimond", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46140495, + 45.561713666 + ] + }, + "is_frozen": false, + "integer_id": 1312, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469617, + 45.559333 + ] + }, + "id": 1313, + "properties": { + "id": "5ed15359-4097-46e8-93c0-1b63029d1081", + "code": "33730", + "data": { + "stops": [ + { + "id": "3730", + "code": "33730", + "data": { + "gtfs": { + "stop_id": "3730", + "stop_code": "33730", + "stop_name": "boul. Fernand-Lafontaine et Gendron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et Gendron", + "geography": { + "type": "Point", + "coordinates": [ + -73.4696171894796, + 45.5593330952997 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1493400132504 + }, + "name": "boul. Fernand-Lafontaine et Gendron", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469617189, + 45.559333095 + ] + }, + "is_frozen": false, + "integer_id": 1313, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.431238, + 45.586798 + ] + }, + "id": 1314, + "properties": { + "id": "3e60c63a-1f50-42ff-98f0-f081a7dc4017", + "code": "33731", + "data": { + "stops": [ + { + "id": "3731", + "code": "33731", + "data": { + "gtfs": { + "stop_id": "3731", + "stop_code": "33731", + "stop_name": "boul. De Montarville et D'Avaugour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et D'Avaugour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4312375851767, + 45.5867980599204 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6150931691071 + }, + "name": "boul. De Montarville et D'Avaugour", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431237585, + 45.58679806 + ] + }, + "is_frozen": false, + "integer_id": 1314, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.429722, + 45.585631 + ] + }, + "id": 1315, + "properties": { + "id": "c4a07fb5-3745-472e-8e03-a61e6908d906", + "code": "33732", + "data": { + "stops": [ + { + "id": "3732", + "code": "33732", + "data": { + "gtfs": { + "stop_id": "3732", + "stop_code": "33732", + "stop_name": "boul. De Montarville et des Alouettes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et des Alouettes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4297221825392, + 45.5856312281434 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5952922147183 + }, + "name": "boul. De Montarville et des Alouettes", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.429722183, + 45.585631228 + ] + }, + "is_frozen": false, + "integer_id": 1315, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.430193, + 45.585704 + ] + }, + "id": 1316, + "properties": { + "id": "4cd6eb13-aeec-4716-a3d3-8e1a38389723", + "code": "33734", + "data": { + "stops": [ + { + "id": "3734", + "code": "33734", + "data": { + "gtfs": { + "stop_id": "3734", + "stop_code": "33734", + "stop_name": "boul. De Montarville et des Alouettes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et des Alouettes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4301928431104, + 45.5857042013828 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5965305192688 + }, + "name": "boul. De Montarville et des Alouettes", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.430192843, + 45.585704201 + ] + }, + "is_frozen": false, + "integer_id": 1316, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.428562, + 45.584453 + ] + }, + "id": 1317, + "properties": { + "id": "9ad04c6c-abc1-49fe-8f36-db6146dd5c5c", + "code": "33735", + "data": { + "stops": [ + { + "id": "3735", + "code": "33735", + "data": { + "gtfs": { + "stop_id": "3735", + "stop_code": "33735", + "stop_name": "boul. De Montarville et civique 1146", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et civique 1146", + "geography": { + "type": "Point", + "coordinates": [ + -73.4285617245368, + 45.584453199489 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5753024848045 + }, + "name": "boul. De Montarville et civique 1146", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.428561725, + 45.584453199 + ] + }, + "is_frozen": false, + "integer_id": 1317, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.426514, + 45.583018 + ] + }, + "id": 1318, + "properties": { + "id": "3dedf179-3478-4b4d-b706-36e0a8981094", + "code": "33737", + "data": { + "stops": [ + { + "id": "3737", + "code": "33737", + "data": { + "gtfs": { + "stop_id": "3737", + "stop_code": "33737", + "stop_name": "boul. De Montarville et de Normandie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et de Normandie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4267630717295, + 45.5830661419712 + ] + } + }, + { + "id": "4983", + "code": "34983", + "data": { + "gtfs": { + "stop_id": "4983", + "stop_code": "34983", + "stop_name": "boul. De Montarville et des Bois-Francs", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et des Bois-Francs", + "geography": { + "type": "Point", + "coordinates": [ + -73.4262647516836, + 45.5829695116702 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5509476329281 + }, + "name": "boul. De Montarville et de Normandie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.426513912, + 45.583017827 + ] + }, + "is_frozen": false, + "integer_id": 1318, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.426977, + 45.582595 + ] + }, + "id": 1319, + "properties": { + "id": "e0ad666d-6319-4692-a7ee-a3080772e28d", + "code": "33738", + "data": { + "stops": [ + { + "id": "3738", + "code": "33738", + "data": { + "gtfs": { + "stop_id": "3738", + "stop_code": "33738", + "stop_name": "de Normandie et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Normandie et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4269772094547, + 45.5825947301213 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5437690339953 + }, + "name": "de Normandie et boul. De Montarville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.426977209, + 45.58259473 + ] + }, + "is_frozen": false, + "integer_id": 1319, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.424503, + 45.569478 + ] + }, + "id": 1320, + "properties": { + "id": "9cf65cb9-0319-47f1-8406-ca3211a7ff12", + "code": "33747", + "data": { + "stops": [ + { + "id": "3747", + "code": "33747", + "data": { + "gtfs": { + "stop_id": "3747", + "stop_code": "33747", + "stop_name": "Gay-Lussac et Ampère", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gay-Lussac et Ampère", + "geography": { + "type": "Point", + "coordinates": [ + -73.4246461921544, + 45.5695354889597 + ] + } + }, + { + "id": "5093", + "code": "35093", + "data": { + "gtfs": { + "stop_id": "5093", + "stop_code": "35093", + "stop_name": "Ampère et Gay-Lussac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ampère et Gay-Lussac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4243600135041, + 45.5694198630142 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3212941224313 + }, + "name": "Gay-Lussac et Ampère", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.424503103, + 45.569477676 + ] + }, + "is_frozen": false, + "integer_id": 1320, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.428432, + 45.57135 + ] + }, + "id": 1321, + "properties": { + "id": "ab35419e-5bd1-4da1-bfdf-b33c65916d63", + "code": "33750", + "data": { + "stops": [ + { + "id": "3750", + "code": "33750", + "data": { + "gtfs": { + "stop_id": "3750", + "stop_code": "33750", + "stop_name": "Gay-Lussac et civique 1340", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gay-Lussac et civique 1340", + "geography": { + "type": "Point", + "coordinates": [ + -73.4284983796126, + 45.5712973496809 + ] + } + }, + { + "id": "5094", + "code": "35094", + "data": { + "gtfs": { + "stop_id": "5094", + "stop_code": "35094", + "stop_name": "Gay-Lussac et civique 1349", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gay-Lussac et civique 1349", + "geography": { + "type": "Point", + "coordinates": [ + -73.4283653535845, + 45.5714020428067 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3530355516575 + }, + "name": "Gay-Lussac et civique 1340", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.428431867, + 45.571349696 + ] + }, + "is_frozen": false, + "integer_id": 1321, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.436906, + 45.572819 + ] + }, + "id": 1322, + "properties": { + "id": "7f184ebf-41da-496f-9ed8-536b6fff9c3f", + "code": "33752", + "data": { + "stops": [ + { + "id": "3752", + "code": "33752", + "data": { + "gtfs": { + "stop_id": "3752", + "stop_code": "33752", + "stop_name": "de Normandie et Gay-Lussac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Normandie et Gay-Lussac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4370234210671, + 45.5726475742013 + ] + } + }, + { + "id": "5098", + "code": "35098", + "data": { + "gtfs": { + "stop_id": "5098", + "stop_code": "35098", + "stop_name": "Gay-Lussac et de Normandie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gay-Lussac et de Normandie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4367895592042, + 45.5729907129486 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3779532811955 + }, + "name": "de Normandie et Gay-Lussac", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.43690649, + 45.572819144 + ] + }, + "is_frozen": false, + "integer_id": 1322, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437806, + 45.571479 + ] + }, + "id": 1323, + "properties": { + "id": "c9b7f8d6-62a3-444a-bbd0-591def556854", + "code": "33754", + "data": { + "stops": [ + { + "id": "3754", + "code": "33754", + "data": { + "gtfs": { + "stop_id": "3754", + "stop_code": "33754", + "stop_name": "de Normandie et Ampère", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Normandie et Ampère", + "geography": { + "type": "Point", + "coordinates": [ + -73.437805662522, + 45.5714786916189 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3552228858596 + }, + "name": "de Normandie et Ampère", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437805663, + 45.571478692 + ] + }, + "is_frozen": false, + "integer_id": 1323, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.438224, + 45.57129 + ] + }, + "id": 1324, + "properties": { + "id": "7cc0727e-e69b-4711-8bea-f955d406f0ed", + "code": "33755", + "data": { + "stops": [ + { + "id": "3755", + "code": "33755", + "data": { + "gtfs": { + "stop_id": "3755", + "stop_code": "33755", + "stop_name": "de Normandie et Ampère", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Normandie et Ampère", + "geography": { + "type": "Point", + "coordinates": [ + -73.4382242268113, + 45.5712895139473 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3520150743519 + }, + "name": "de Normandie et Ampère", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438224227, + 45.571289514 + ] + }, + "is_frozen": false, + "integer_id": 1324, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.433836, + 45.572286 + ] + }, + "id": 1325, + "properties": { + "id": "64d79080-f253-4cae-bbde-03e1a26a3f9e", + "code": "33758", + "data": { + "stops": [ + { + "id": "3758", + "code": "33758", + "data": { + "gtfs": { + "stop_id": "3758", + "stop_code": "33758", + "stop_name": "Gay-Lussac et civique 1280", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gay-Lussac et civique 1280", + "geography": { + "type": "Point", + "coordinates": [ + -73.4336757958572, + 45.5721913067766 + ] + } + }, + { + "id": "5096", + "code": "35096", + "data": { + "gtfs": { + "stop_id": "5096", + "stop_code": "35096", + "stop_name": "Gay-Lussac et civique 1285", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gay-Lussac et civique 1285", + "geography": { + "type": "Point", + "coordinates": [ + -73.4339966815786, + 45.5723801919136 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3689081701824 + }, + "name": "Gay-Lussac et civique 1280", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.433836239, + 45.572285749 + ] + }, + "is_frozen": false, + "integer_id": 1325, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.431423, + 45.571753 + ] + }, + "id": 1326, + "properties": { + "id": "26830ba4-9f15-4574-ae58-812d3a6fc6d5", + "code": "33760", + "data": { + "stops": [ + { + "id": "3760", + "code": "33760", + "data": { + "gtfs": { + "stop_id": "3760", + "stop_code": "33760", + "stop_name": "Gay-Lussac et civique 1310", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gay-Lussac et civique 1310", + "geography": { + "type": "Point", + "coordinates": [ + -73.4315612173224, + 45.5717030910601 + ] + } + }, + { + "id": "5095", + "code": "35095", + "data": { + "gtfs": { + "stop_id": "5095", + "stop_code": "35095", + "stop_name": "Gay-Lussac et civique 1315", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gay-Lussac et civique 1315", + "geography": { + "type": "Point", + "coordinates": [ + -73.431284439449, + 45.5718027657867 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3598730467795 + }, + "name": "Gay-Lussac et civique 1310", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431422828, + 45.571752928 + ] + }, + "is_frozen": false, + "integer_id": 1326, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.422365, + 45.56947 + ] + }, + "id": 1327, + "properties": { + "id": "8b4e9db5-5481-4624-b5ab-e40bba2a2897", + "code": "33763", + "data": { + "stops": [ + { + "id": "3763", + "code": "33763", + "data": { + "gtfs": { + "stop_id": "3763", + "stop_code": "33763", + "stop_name": "Ampère et civique 1421", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ampère et civique 1421", + "geography": { + "type": "Point", + "coordinates": [ + -73.4223148152213, + 45.5694163174174 + ] + } + }, + { + "id": "5092", + "code": "35092", + "data": { + "gtfs": { + "stop_id": "5092", + "stop_code": "35092", + "stop_name": "Ampère et civique 1421", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ampère et civique 1421", + "geography": { + "type": "Point", + "coordinates": [ + -73.4224142227234, + 45.5695226911901 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3211555672319 + }, + "name": "Ampère et civique 1421", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.422364519, + 45.569469504 + ] + }, + "is_frozen": false, + "integer_id": 1327, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.418974, + 45.56967 + ] + }, + "id": 1328, + "properties": { + "id": "834b9411-0d78-496d-8fb2-7131e0c1ec41", + "code": "33765", + "data": { + "stops": [ + { + "id": "3765", + "code": "33765", + "data": { + "gtfs": { + "stop_id": "3765", + "stop_code": "33765", + "stop_name": "Ampère et civique 1471", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ampère et civique 1471", + "geography": { + "type": "Point", + "coordinates": [ + -73.4189473490047, + 45.5696143992833 + ] + } + }, + { + "id": "5091", + "code": "35091", + "data": { + "gtfs": { + "stop_id": "5091", + "stop_code": "35091", + "stop_name": "Ampère et civique 1471", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ampère et civique 1471", + "geography": { + "type": "Point", + "coordinates": [ + -73.4190011872576, + 45.5697259537114 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3245579522135 + }, + "name": "Ampère et civique 1471", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.418974268, + 45.569670176 + ] + }, + "is_frozen": false, + "integer_id": 1328, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.414972, + 45.571818 + ] + }, + "id": 1329, + "properties": { + "id": "ab419e3e-c877-4589-88de-b6df60ac6dd1", + "code": "33766", + "data": { + "stops": [ + { + "id": "3766", + "code": "33766", + "data": { + "gtfs": { + "stop_id": "3766", + "stop_code": "33766", + "stop_name": "Ampère et civique 1550", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ampère et civique 1550", + "geography": { + "type": "Point", + "coordinates": [ + -73.4148910057105, + 45.5717931602272 + ] + } + }, + { + "id": "5089", + "code": "35089", + "data": { + "gtfs": { + "stop_id": "5089", + "stop_code": "35089", + "stop_name": "Ampère et civique 1551", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ampère et civique 1551", + "geography": { + "type": "Point", + "coordinates": [ + -73.415052205881, + 45.5718431948009 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3609794869086 + }, + "name": "Ampère et civique 1550", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.414971606, + 45.571818178 + ] + }, + "is_frozen": false, + "integer_id": 1329, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.41454, + 45.572662 + ] + }, + "id": 1330, + "properties": { + "id": "ee85cfb1-201c-47a0-9d37-a01d18d76e92", + "code": "33768", + "data": { + "stops": [ + { + "id": "3768", + "code": "33768", + "data": { + "gtfs": { + "stop_id": "3768", + "stop_code": "33768", + "stop_name": "Ampère et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ampère et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4145402349053, + 45.5726621388632 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3752908232714 + }, + "name": "Ampère et boul. De Montarville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.414540235, + 45.572662139 + ] + }, + "is_frozen": false, + "integer_id": 1330, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.472535, + 45.475258 + ] + }, + "id": 1331, + "properties": { + "id": "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", + "code": "33774", + "data": { + "stops": [ + { + "id": "3774", + "code": "33774", + "data": { + "gtfs": { + "stop_id": "3774", + "stop_code": "33774", + "stop_name": "boul. Lapinière et boul. Provencher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et boul. Provencher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4725076369218, + 45.4750372534132 + ] + } + }, + { + "id": "4691", + "code": "34691", + "data": { + "gtfs": { + "stop_id": "4691", + "stop_code": "34691", + "stop_name": "boul. Lapinière et Allard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et Allard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4725617584907, + 45.475477854221 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7277631445627 + }, + "name": "boul. Lapinière et boul. Provencher", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472534698, + 45.475257554 + ] + }, + "is_frozen": false, + "integer_id": 1331, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452885, + 45.517198 + ] + }, + "id": 1332, + "properties": { + "id": "a873c2b7-5c8e-4dd4-9140-a7e8d042d038", + "code": "33780", + "data": { + "stops": [ + { + "id": "3780", + "code": "33780", + "data": { + "gtfs": { + "stop_id": "3780", + "stop_code": "33780", + "stop_name": "ch. de Chambly et boul. Roberval ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Roberval ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4528845902488, + 45.5171981491517 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4361214175825 + }, + "name": "ch. de Chambly et boul. Roberval ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45288459, + 45.517198149 + ] + }, + "is_frozen": false, + "integer_id": 1332, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443554, + 45.513303 + ] + }, + "id": 1333, + "properties": { + "id": "dcaa1460-3c81-4616-b65b-ed7fae894032", + "code": "33781", + "data": { + "stops": [ + { + "id": "3781", + "code": "33781", + "data": { + "gtfs": { + "stop_id": "3781", + "stop_code": "33781", + "stop_name": "ch. de Chambly et Cuvillier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Cuvillier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4435541431742, + 45.5133025811793 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3702610360056 + }, + "name": "ch. de Chambly et Cuvillier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443554143, + 45.513302581 + ] + }, + "is_frozen": false, + "integer_id": 1333, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.420653, + 45.500666 + ] + }, + "id": 1334, + "properties": { + "id": "bb148567-d18f-49e1-a388-f782610c5390", + "code": "33782", + "data": { + "stops": [ + { + "id": "3782", + "code": "33782", + "data": { + "gtfs": { + "stop_id": "3782", + "stop_code": "33782", + "stop_name": "boul. Cousineau et Coderre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Coderre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4206525972225, + 45.5006656196961 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.15670739151 + }, + "name": "boul. Cousineau et Coderre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.420652597, + 45.50066562 + ] + }, + "is_frozen": false, + "integer_id": 1334, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.498875, + 45.536729 + ] + }, + "id": 1335, + "properties": { + "id": "4d48f36b-2274-4392-afac-b2c2c64b98f0", + "code": "33783", + "data": { + "stops": [ + { + "id": "3783", + "code": "33783", + "data": { + "gtfs": { + "stop_id": "3783", + "stop_code": "33783", + "stop_name": "ch. de Chambly et Le Moyne est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Le Moyne est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4988749916403, + 45.5367294548449 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7665311094971 + }, + "name": "ch. de Chambly et Le Moyne est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.498874992, + 45.536729455 + ] + }, + "is_frozen": false, + "integer_id": 1335, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474153, + 45.525436 + ] + }, + "id": 1336, + "properties": { + "id": "f4167a64-c457-459d-9c74-9540f2c76889", + "code": "33793", + "data": { + "stops": [ + { + "id": "3793", + "code": "33793", + "data": { + "gtfs": { + "stop_id": "3793", + "stop_code": "33793", + "stop_name": "boul. Wilson et Saint-Alexandre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Wilson et Saint-Alexandre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4741526151705, + 45.5254359626293 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.575438460196 + }, + "name": "boul. Wilson et Saint-Alexandre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474152615, + 45.525435963 + ] + }, + "is_frozen": false, + "integer_id": 1336, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475531, + 45.561999 + ] + }, + "id": 1337, + "properties": { + "id": "3b263b94-6ffe-4e7f-87fe-8aae005ee725", + "code": "33798", + "data": { + "stops": [ + { + "id": "3798", + "code": "33798", + "data": { + "gtfs": { + "stop_id": "3798", + "stop_code": "33798", + "stop_name": "boul. Jean-Paul-Vincent et de la Province", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jean-Paul-Vincent et de la Province", + "geography": { + "type": "Point", + "coordinates": [ + -73.4755308576045, + 45.5619986911146 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1945138688108 + }, + "name": "boul. Jean-Paul-Vincent et de la Province", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475530858, + 45.561998691 + ] + }, + "is_frozen": false, + "integer_id": 1337, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478659, + 45.564363 + ] + }, + "id": 1338, + "properties": { + "id": "97fe5a5c-667d-4ae1-9235-722d5d8246f0", + "code": "33799", + "data": { + "stops": [ + { + "id": "3799", + "code": "33799", + "data": { + "gtfs": { + "stop_id": "3799", + "stop_code": "33799", + "stop_name": "boul. Jean-Paul-Vincent et de la Métropole", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jean-Paul-Vincent et de la Métropole", + "geography": { + "type": "Point", + "coordinates": [ + -73.4786589803492, + 45.5643628732159 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2345849729886 + }, + "name": "boul. Jean-Paul-Vincent et de la Métropole", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47865898, + 45.564362873 + ] + }, + "is_frozen": false, + "integer_id": 1338, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464934, + 45.524403 + ] + }, + "id": 1339, + "properties": { + "id": "74d09865-876b-4428-9441-1504fb3f52bd", + "code": "33801", + "data": { + "stops": [ + { + "id": "3801", + "code": "33801", + "data": { + "gtfs": { + "stop_id": "3801", + "stop_code": "33801", + "stop_name": "boul. Jacques-Cartier est et CENTRE MAXI", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et CENTRE MAXI", + "geography": { + "type": "Point", + "coordinates": [ + -73.4652162748441, + 45.5245029680001 + ] + } + }, + { + "id": "5138", + "code": "35138", + "data": { + "gtfs": { + "stop_id": "5138", + "stop_code": "35138", + "stop_name": "boul. Jacques-Cartier est et CENTRE MAXI", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et CENTRE MAXI", + "geography": { + "type": "Point", + "coordinates": [ + -73.4646516759616, + 45.5243026451519 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5579625183516 + }, + "name": "boul. Jacques-Cartier est et CENTRE MAXI", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464933975, + 45.524402807 + ] + }, + "is_frozen": false, + "integer_id": 1339, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513824, + 45.519372 + ] + }, + "id": 1340, + "properties": { + "id": "b412dc8e-18d6-40de-b77b-38439256c33f", + "code": "33804", + "data": { + "stops": [ + { + "id": "3804", + "code": "33804", + "data": { + "gtfs": { + "stop_id": "3804", + "stop_code": "33804", + "stop_name": "Saint-Laurent ouest et boul. La Fayette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et boul. La Fayette", + "geography": { + "type": "Point", + "coordinates": [ + -73.5138244956156, + 45.5193723839238 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4728859776526 + }, + "name": "Saint-Laurent ouest et boul. La Fayette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.513824496, + 45.519372384 + ] + }, + "is_frozen": false, + "integer_id": 1340, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.506505, + 45.517653 + ] + }, + "id": 1341, + "properties": { + "id": "85d8d9e6-1387-4893-85de-43bc3c6ef93c", + "code": "33805", + "data": { + "stops": [ + { + "id": "3805", + "code": "33805", + "data": { + "gtfs": { + "stop_id": "3805", + "stop_code": "33805", + "stop_name": "boul. Desaulniers et La Salle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Desaulniers et La Salle", + "geography": { + "type": "Point", + "coordinates": [ + -73.506505130888, + 45.5176532941083 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4438172038931 + }, + "name": "boul. Desaulniers et La Salle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.506505131, + 45.517653294 + ] + }, + "is_frozen": false, + "integer_id": 1341, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494762, + 45.470811 + ] + }, + "id": 1342, + "properties": { + "id": "e7a825d7-e677-4fe7-b1ef-b6db556d3c70", + "code": "33809", + "data": { + "stops": [ + { + "id": "3809", + "code": "33809", + "data": { + "gtfs": { + "stop_id": "3809", + "stop_code": "33809", + "stop_name": "av. Van Dyck et boul. Provencher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Van Dyck et boul. Provencher", + "geography": { + "type": "Point", + "coordinates": [ + -73.4947622002734, + 45.4708107962756 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.652751047702 + }, + "name": "av. Van Dyck et boul. Provencher", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.4947622, + 45.470810796 + ] + }, + "is_frozen": false, + "integer_id": 1342, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.495337, + 45.474673 + ] + }, + "id": 1343, + "properties": { + "id": "28d21225-939d-4260-9ed4-5c109f412ad9", + "code": "33810", + "data": { + "stops": [ + { + "id": "3810", + "code": "33810", + "data": { + "gtfs": { + "stop_id": "3810", + "stop_code": "33810", + "stop_name": "av. Victor-Hugo et place Van Gogh", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victor-Hugo et place Van Gogh", + "geography": { + "type": "Point", + "coordinates": [ + -73.4953437156493, + 45.4746087326883 + ] + } + }, + { + "id": "5716", + "code": "30485", + "data": { + "gtfs": { + "stop_id": "5716", + "stop_code": "30485", + "stop_name": "av. Victor-Hugo et place Van Gogh", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victor-Hugo et place Van Gogh", + "geography": { + "type": "Point", + "coordinates": [ + -73.4953293699034, + 45.4747368424934 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.717897758588 + }, + "name": "av. Victor-Hugo et place Van Gogh", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.495336543, + 45.474672788 + ] + }, + "is_frozen": false, + "integer_id": 1343, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481381, + 45.452549 + ] + }, + "id": 1344, + "properties": { + "id": "95a6ef09-da34-422a-81ec-389b0e0bb278", + "code": "33813", + "data": { + "stops": [ + { + "id": "3813", + "code": "33813", + "data": { + "gtfs": { + "stop_id": "3813", + "stop_code": "33813", + "stop_name": "av. Saguenay et Santiago", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Saguenay et Santiago", + "geography": { + "type": "Point", + "coordinates": [ + -73.4815203061686, + 45.452507642919 + ] + } + }, + { + "id": "3814", + "code": "33814", + "data": { + "gtfs": { + "stop_id": "3814", + "stop_code": "33814", + "stop_name": "av. Saguenay et Santiago", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Saguenay et Santiago", + "geography": { + "type": "Point", + "coordinates": [ + -73.4812424607957, + 45.4525898755087 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3448739277128 + }, + "name": "av. Saguenay et Santiago", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481381383, + 45.452548759 + ] + }, + "is_frozen": false, + "integer_id": 1344, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456621, + 45.463921 + ] + }, + "id": 1345, + "properties": { + "id": "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", + "code": "33817", + "data": { + "stops": [ + { + "id": "3817", + "code": "33817", + "data": { + "gtfs": { + "stop_id": "3817", + "stop_code": "33817", + "stop_name": "boul. Lapinière et Viaduc Milan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et Viaduc Milan", + "geography": { + "type": "Point", + "coordinates": [ + -73.4566206605227, + 45.4639211920425 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5365654068281 + }, + "name": "boul. Lapinière et Viaduc Milan", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456620661, + 45.463921192 + ] + }, + "is_frozen": false, + "integer_id": 1345, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.373631, + 45.473994 + ] + }, + "id": 1346, + "properties": { + "id": "2cd6db83-9a4e-4640-91da-759ec9e4a386", + "code": "33818", + "data": { + "stops": [ + { + "id": "3818", + "code": "33818", + "data": { + "gtfs": { + "stop_id": "3818", + "stop_code": "33818", + "stop_name": "boul. Mountainview et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Mountainview et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3737833683186, + 45.4737838325172 + ] + } + }, + { + "id": "5805", + "code": "30574", + "data": { + "gtfs": { + "stop_id": "5805", + "stop_code": "30574", + "stop_name": "boul. Cousineau et boul. Mountainview", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et boul. Mountainview", + "geography": { + "type": "Point", + "coordinates": [ + -73.3734795870627, + 45.4742044892759 + ] + } + }, + { + "id": "5806", + "code": "30575", + "data": { + "gtfs": { + "stop_id": "5806", + "stop_code": "30575", + "stop_name": "boul. Cousineau et boul. Mountainview", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et boul. Mountainview", + "geography": { + "type": "Point", + "coordinates": [ + -73.3737773419192, + 45.4740707764804 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7064492567941 + }, + "name": "boul. Mountainview et boul. Cousineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.373631478, + 45.473994161 + ] + }, + "is_frozen": false, + "integer_id": 1346, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460385, + 45.466639 + ] + }, + "id": 1347, + "properties": { + "id": "827d769c-823c-44fa-9c17-8d7db0bd4459", + "code": "33822", + "data": { + "stops": [ + { + "id": "3822", + "code": "33822", + "data": { + "gtfs": { + "stop_id": "3822", + "stop_code": "33822", + "stop_name": "boul. Lapinière et av. Barry", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et av. Barry", + "geography": { + "type": "Point", + "coordinates": [ + -73.4599989792098, + 45.4664994990341 + ] + } + }, + { + "id": "3950", + "code": "33950", + "data": { + "gtfs": { + "stop_id": "3950", + "stop_code": "33950", + "stop_name": "boul. Lapinière et av. Barry", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et av. Barry", + "geography": { + "type": "Point", + "coordinates": [ + -73.4607706000402, + 45.4667777218306 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5823866578586 + }, + "name": "boul. Lapinière et av. Barry", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46038479, + 45.46663861 + ] + }, + "is_frozen": false, + "integer_id": 1347, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461957, + 45.46776 + ] + }, + "id": 1348, + "properties": { + "id": "87719027-eaeb-4ca2-9916-48e459caa53b", + "code": "33823", + "data": { + "stops": [ + { + "id": "3823", + "code": "33823", + "data": { + "gtfs": { + "stop_id": "3823", + "stop_code": "33823", + "stop_name": "boul. Lapinière et Aline", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et Aline", + "geography": { + "type": "Point", + "coordinates": [ + -73.4618536557397, + 45.467816086604 + ] + } + }, + { + "id": "3911", + "code": "33911", + "data": { + "gtfs": { + "stop_id": "3911", + "stop_code": "33911", + "stop_name": "boul. Lapinière et Beaulac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et Beaulac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4620603854046, + 45.4677040649119 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6012987900775 + }, + "name": "boul. Lapinière et Aline", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461957021, + 45.467760076 + ] + }, + "is_frozen": false, + "integer_id": 1348, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468239, + 45.47066 + ] + }, + "id": 1349, + "properties": { + "id": "51e1600d-418e-4477-9b26-9e5507d72a03", + "code": "33825", + "data": { + "stops": [ + { + "id": "3825", + "code": "33825", + "data": { + "gtfs": { + "stop_id": "3825", + "stop_code": "33825", + "stop_name": "boul. Taschereau et boul. Lapinière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et boul. Lapinière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4682385863362, + 45.4706599604343 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6502069121407 + }, + "name": "boul. Taschereau et boul. Lapinière", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468238586, + 45.47065996 + ] + }, + "is_frozen": false, + "integer_id": 1349, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45459, + 45.465584 + ] + }, + "id": 1350, + "properties": { + "id": "bd9b4c12-08ed-4715-ae67-eb179ed7f974", + "code": "33826", + "data": { + "stops": [ + { + "id": "3826", + "code": "33826", + "data": { + "gtfs": { + "stop_id": "3826", + "stop_code": "33826", + "stop_name": "boul. Milan et av. Broadway", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Broadway", + "geography": { + "type": "Point", + "coordinates": [ + -73.4545899405896, + 45.465583930416 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5646018075337 + }, + "name": "boul. Milan et av. Broadway", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454589941, + 45.46558393 + ] + }, + "is_frozen": false, + "integer_id": 1350, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450959, + 45.467319 + ] + }, + "id": 1351, + "properties": { + "id": "ff779c9a-cd83-463a-8d0c-a93f3584a187", + "code": "33827", + "data": { + "stops": [ + { + "id": "3827", + "code": "33827", + "data": { + "gtfs": { + "stop_id": "3827", + "stop_code": "33827", + "stop_name": "boul. Milan et place Bonaventure", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et place Bonaventure", + "geography": { + "type": "Point", + "coordinates": [ + -73.4509590201345, + 45.4673191375 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5938627847462 + }, + "name": "boul. Milan et place Bonaventure", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45095902, + 45.467319138 + ] + }, + "is_frozen": false, + "integer_id": 1351, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442595, + 45.47172 + ] + }, + "id": 1352, + "properties": { + "id": "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", + "code": "33828", + "data": { + "stops": [ + { + "id": "3828", + "code": "33828", + "data": { + "gtfs": { + "stop_id": "3828", + "stop_code": "33828", + "stop_name": "boul. Milan et av. Bienville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Milan et av. Bienville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4425948909507, + 45.4717199979563 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.668086893891 + }, + "name": "boul. Milan et av. Bienville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442594891, + 45.471719998 + ] + }, + "is_frozen": false, + "integer_id": 1352, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46911, + 45.454251 + ] + }, + "id": 1353, + "properties": { + "id": "d5176685-5789-4135-ac00-ee677cfb093a", + "code": "33833", + "data": { + "stops": [ + { + "id": "3833", + "code": "33833", + "data": { + "gtfs": { + "stop_id": "3833", + "stop_code": "33833", + "stop_name": "av. San Francisco et av. Saguenay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et av. Saguenay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4691466555676, + 45.4543927023766 + ] + } + }, + { + "id": "3834", + "code": "33834", + "data": { + "gtfs": { + "stop_id": "3834", + "stop_code": "33834", + "stop_name": "av. San Francisco et av. Saguenay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et av. Saguenay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4690730870029, + 45.4541082972508 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.373550835856 + }, + "name": "av. San Francisco et av. Saguenay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469109871, + 45.4542505 + ] + }, + "is_frozen": false, + "integer_id": 1353, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.470677, + 45.450671 + ] + }, + "id": 1354, + "properties": { + "id": "23085815-2dff-4082-9402-38931522fb99", + "code": "33835", + "data": { + "stops": [ + { + "id": "3835", + "code": "33835", + "data": { + "gtfs": { + "stop_id": "3835", + "stop_code": "33835", + "stop_name": "av. San Francisco et civique 8170", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et civique 8170", + "geography": { + "type": "Point", + "coordinates": [ + -73.470763188593, + 45.4506956748359 + ] + } + }, + { + "id": "3838", + "code": "33838", + "data": { + "gtfs": { + "stop_id": "3838", + "stop_code": "33838", + "stop_name": "av. San Francisco et civique 8170", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et civique 8170", + "geography": { + "type": "Point", + "coordinates": [ + -73.4705905275689, + 45.4506458282412 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3132296527801 + }, + "name": "av. San Francisco et civique 8170", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.470676858, + 45.450670752 + ] + }, + "is_frozen": false, + "integer_id": 1354, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.473468, + 45.448062 + ] + }, + "id": 1355, + "properties": { + "id": "9d8d74b7-fc1f-4af5-a4a4-0cee1ee7b556", + "code": "33836", + "data": { + "stops": [ + { + "id": "3836", + "code": "33836", + "data": { + "gtfs": { + "stop_id": "3836", + "stop_code": "33836", + "stop_name": "av. San Francisco et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4734620877303, + 45.4482353937562 + ] + } + }, + { + "id": "4079", + "code": "34079", + "data": { + "gtfs": { + "stop_id": "4079", + "stop_code": "34079", + "stop_name": "av. San Francisco et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. San Francisco et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4734740758701, + 45.4478880654724 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2692730223516 + }, + "name": "av. San Francisco et boul. Pelletier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.473468082, + 45.44806173 + ] + }, + "is_frozen": false, + "integer_id": 1355, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465699, + 45.47881 + ] + }, + "id": 1356, + "properties": { + "id": "579043e1-54f7-411f-9a36-e7ee3324290f", + "code": "33839", + "data": { + "stops": [ + { + "id": "3839", + "code": "33839", + "data": { + "gtfs": { + "stop_id": "3839", + "stop_code": "33839", + "stop_name": "boul. Taschereau et Angèle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Angèle", + "geography": { + "type": "Point", + "coordinates": [ + -73.465699261969, + 45.4788100898573 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7877032860132 + }, + "name": "boul. Taschereau et Angèle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465699262, + 45.47881009 + ] + }, + "is_frozen": false, + "integer_id": 1356, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446948, + 45.575109 + ] + }, + "id": 1357, + "properties": { + "id": "c520acc8-980c-45c0-9195-152ad50ee471", + "code": "33843", + "data": { + "stops": [ + { + "id": "3843", + "code": "33843", + "data": { + "gtfs": { + "stop_id": "3843", + "stop_code": "33843", + "stop_name": "boul. de Mortagne et Ampère", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Ampère", + "geography": { + "type": "Point", + "coordinates": [ + -73.4469481392943, + 45.5751091975466 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4167900426298 + }, + "name": "boul. de Mortagne et Ampère", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446948139, + 45.575109198 + ] + }, + "is_frozen": false, + "integer_id": 1357, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446981, + 45.578977 + ] + }, + "id": 1358, + "properties": { + "id": "6c99422e-05cb-48dc-811f-162fee50cf80", + "code": "33844", + "data": { + "stops": [ + { + "id": "3844", + "code": "33844", + "data": { + "gtfs": { + "stop_id": "3844", + "stop_code": "33844", + "stop_name": "boul. de Mortagne et boul. Industriel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et boul. Industriel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4467693459884, + 45.5788121758829 + ] + } + }, + { + "id": "3850", + "code": "33850", + "data": { + "gtfs": { + "stop_id": "3850", + "stop_code": "33850", + "stop_name": "boul. de Mortagne et boul. Industriel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et boul. Industriel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4471929756217, + 45.5791410609684 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4823878186683 + }, + "name": "boul. de Mortagne et boul. Industriel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446981161, + 45.578976618 + ] + }, + "is_frozen": false, + "integer_id": 1358, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437801, + 45.590412 + ] + }, + "id": 1359, + "properties": { + "id": "617c5711-4aaa-4c7f-bebe-63268ac405bb", + "code": "33845", + "data": { + "stops": [ + { + "id": "3845", + "code": "33845", + "data": { + "gtfs": { + "stop_id": "3845", + "stop_code": "33845", + "stop_name": "boul. de Mortagne et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4378013238839, + 45.5904120704226 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6764300776581 + }, + "name": "boul. de Mortagne et boul. De Montarville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437801324, + 45.59041207 + ] + }, + "is_frozen": false, + "integer_id": 1359, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442056, + 45.59574 + ] + }, + "id": 1360, + "properties": { + "id": "4fcc129f-8015-4b36-a21f-2437aa91a265", + "code": "33846", + "data": { + "stops": [ + { + "id": "3846", + "code": "33846", + "data": { + "gtfs": { + "stop_id": "3846", + "stop_code": "33846", + "stop_name": "boul. De Montarville et Jacques-Cartier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et Jacques-Cartier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4420556093012, + 45.5957399225992 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7668756176403 + }, + "name": "boul. De Montarville et Jacques-Cartier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442055609, + 45.595739923 + ] + }, + "is_frozen": false, + "integer_id": 1360, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437324, + 45.591011 + ] + }, + "id": 1361, + "properties": { + "id": "e177b755-3bcf-4a35-afd7-a49fb240f250", + "code": "33847", + "data": { + "stops": [ + { + "id": "3847", + "code": "33847", + "data": { + "gtfs": { + "stop_id": "3847", + "stop_code": "33847", + "stop_name": "boul. de Mortagne et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4373242281698, + 45.5910111678765 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6865990869317 + }, + "name": "boul. de Mortagne et boul. De Montarville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437324228, + 45.591011168 + ] + }, + "is_frozen": false, + "integer_id": 1361, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.481468, + 45.541114 + ] + }, + "id": 1362, + "properties": { + "id": "05e26e6f-35ac-45f7-bc21-12a31eb161dc", + "code": "33855", + "data": { + "stops": [ + { + "id": "3855", + "code": "33855", + "data": { + "gtfs": { + "stop_id": "3855", + "stop_code": "33855", + "stop_name": "Maple et Forget", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Maple et Forget", + "geography": { + "type": "Point", + "coordinates": [ + -73.4814683516453, + 45.5411139696392 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8407503803057 + }, + "name": "Maple et Forget", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.481468352, + 45.54111397 + ] + }, + "is_frozen": false, + "integer_id": 1362, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486111, + 45.540374 + ] + }, + "id": 1363, + "properties": { + "id": "0d1ddd51-f4a3-4891-9182-dbefd8d042a9", + "code": "33856", + "data": { + "stops": [ + { + "id": "3856", + "code": "33856", + "data": { + "gtfs": { + "stop_id": "3856", + "stop_code": "33856", + "stop_name": "Fréchette et boul. Roland-Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Fréchette et boul. Roland-Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4861113683222, + 45.5403740841897 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8282246909151 + }, + "name": "Fréchette et boul. Roland-Therrien", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486111368, + 45.540374084 + ] + }, + "is_frozen": false, + "integer_id": 1363, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513092, + 45.528594 + ] + }, + "id": 1364, + "properties": { + "id": "1c9586e9-c28e-4ee4-84b8-583c2c8a23be", + "code": "33858", + "data": { + "stops": [ + { + "id": "3858", + "code": "33858", + "data": { + "gtfs": { + "stop_id": "3858", + "stop_code": "33858", + "stop_name": "Saint-Laurent ouest et PLACE LONGUEUIL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et PLACE LONGUEUIL", + "geography": { + "type": "Point", + "coordinates": [ + -73.5130923849202, + 45.528593913277 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6288628851064 + }, + "name": "Saint-Laurent ouest et PLACE LONGUEUIL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.513092, + 45.528594 + ] + }, + "is_frozen": false, + "integer_id": 1364, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467674, + 45.431535 + ] + }, + "id": 1365, + "properties": { + "id": "99ed9a7e-9c9a-49bd-8a93-0c7a4fc5376d", + "code": "33860", + "data": { + "stops": [ + { + "id": "3860", + "code": "33860", + "data": { + "gtfs": { + "stop_id": "3860", + "stop_code": "33860", + "stop_name": "boul. Matte et av. Illinois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Matte et av. Illinois", + "geography": { + "type": "Point", + "coordinates": [ + -73.4677321295377, + 45.4316724364194 + ] + } + }, + { + "id": "4735", + "code": "34735", + "data": { + "gtfs": { + "stop_id": "4735", + "stop_code": "34735", + "stop_name": "av. Illinois et boul. Matte", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Illinois et boul. Matte", + "geography": { + "type": "Point", + "coordinates": [ + -73.4676158770428, + 45.4313985346505 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.9909801308029 + }, + "name": "boul. Matte et av. Illinois", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.467674003, + 45.431535486 + ] + }, + "is_frozen": false, + "integer_id": 1365, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468837, + 45.428011 + ] + }, + "id": 1366, + "properties": { + "id": "bce84a67-72ba-4847-b756-b7ff7e256fb0", + "code": "33861", + "data": { + "stops": [ + { + "id": "3861", + "code": "33861", + "data": { + "gtfs": { + "stop_id": "3861", + "stop_code": "33861", + "stop_name": "Isabelle et civique 3905", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Isabelle et civique 3905", + "geography": { + "type": "Point", + "coordinates": [ + -73.4688373704226, + 45.4280108893443 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.9316591599545 + }, + "name": "Isabelle et civique 3905", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46883737, + 45.428010889 + ] + }, + "is_frozen": false, + "integer_id": 1366, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466324, + 45.427137 + ] + }, + "id": 1367, + "properties": { + "id": "46ee0c64-acf7-4889-b8c8-a5aa9e1d42ae", + "code": "33862", + "data": { + "stops": [ + { + "id": "3862", + "code": "33862", + "data": { + "gtfs": { + "stop_id": "3862", + "stop_code": "33862", + "stop_name": "Isabelle et civique 3800", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Isabelle et civique 3800", + "geography": { + "type": "Point", + "coordinates": [ + -73.4663239056928, + 45.4271373166536 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.9169581481528 + }, + "name": "Isabelle et civique 3800", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466323906, + 45.427137317 + ] + }, + "is_frozen": false, + "integer_id": 1367, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464794, + 45.427809 + ] + }, + "id": 1368, + "properties": { + "id": "a1ca7f00-0457-4527-945c-e70fcf3a2d14", + "code": "33863", + "data": { + "stops": [ + { + "id": "3863", + "code": "33863", + "data": { + "gtfs": { + "stop_id": "3863", + "stop_code": "33863", + "stop_name": "Isabelle et civique 3695", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Isabelle et civique 3695", + "geography": { + "type": "Point", + "coordinates": [ + -73.4647942535462, + 45.4278092477774 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.9282657600605 + }, + "name": "Isabelle et civique 3695", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464794254, + 45.427809248 + ] + }, + "is_frozen": false, + "integer_id": 1368, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469958, + 45.446692 + ] + }, + "id": 1369, + "properties": { + "id": "25804924-ba76-4ef4-b42b-ff451a0d33dc", + "code": "33864", + "data": { + "stops": [ + { + "id": "3864", + "code": "33864", + "data": { + "gtfs": { + "stop_id": "3864", + "stop_code": "33864", + "stop_name": "boul. Taschereau et boul. Napoléon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et boul. Napoléon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4699578535866, + 45.4466916417444 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2461922875382 + }, + "name": "boul. Taschereau et boul. Napoléon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469957854, + 45.446691642 + ] + }, + "is_frozen": false, + "integer_id": 1369, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465122, + 45.454801 + ] + }, + "id": 1370, + "properties": { + "id": "3481b163-efe1-4b08-b6af-eecb2141ddbe", + "code": "33865", + "data": { + "stops": [ + { + "id": "3865", + "code": "33865", + "data": { + "gtfs": { + "stop_id": "3865", + "stop_code": "33865", + "stop_name": "boul. Taschereau et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4651215557733, + 45.4548013965545 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3828348334781 + }, + "name": "boul. Taschereau et boul. de Rome", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465121556, + 45.454801397 + ] + }, + "is_frozen": false, + "integer_id": 1370, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46484, + 45.45911 + ] + }, + "id": 1371, + "properties": { + "id": "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", + "code": "33866", + "data": { + "stops": [ + { + "id": "3866", + "code": "33866", + "data": { + "gtfs": { + "stop_id": "3866", + "stop_code": "33866", + "stop_name": "boul. Taschereau et Mario", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Mario", + "geography": { + "type": "Point", + "coordinates": [ + -73.464839985295, + 45.4591096693856 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4554493209704 + }, + "name": "boul. Taschereau et Mario", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464839985, + 45.459109669 + ] + }, + "is_frozen": false, + "integer_id": 1371, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.485908, + 45.569949 + ] + }, + "id": 1372, + "properties": { + "id": "1b1077ca-8a37-46a1-a7be-751ea2f7f2ae", + "code": "33871", + "data": { + "stops": [ + { + "id": "3871", + "code": "33871", + "data": { + "gtfs": { + "stop_id": "3871", + "stop_code": "33871", + "stop_name": "boul. Marie-Victorin et boul. Jean-Paul-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et boul. Jean-Paul-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4859075733426, + 45.5699493941631 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3292921410728 + }, + "name": "boul. Marie-Victorin et boul. Jean-Paul-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.485907573, + 45.569949394 + ] + }, + "is_frozen": false, + "integer_id": 1372, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.428833, + 45.506571 + ] + }, + "id": 1373, + "properties": { + "id": "e5c099f9-8206-4175-8a7b-065df2f3b304", + "code": "33888", + "data": { + "stops": [ + { + "id": "3888", + "code": "33888", + "data": { + "gtfs": { + "stop_id": "3888", + "stop_code": "33888", + "stop_name": "ch. de Chambly et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4288326262406, + 45.5065710054928 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2564855656694 + }, + "name": "ch. de Chambly et boul. Cousineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.428832626, + 45.506571005 + ] + }, + "is_frozen": false, + "integer_id": 1373, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.415704, + 45.574533 + ] + }, + "id": 1374, + "properties": { + "id": "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", + "code": "33890", + "data": { + "stops": [ + { + "id": "3890", + "code": "33890", + "data": { + "gtfs": { + "stop_id": "3890", + "stop_code": "33890", + "stop_name": "de Gascogne et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Gascogne et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.416051523646, + 45.5744682907166 + ] + } + }, + { + "id": "4698", + "code": "34698", + "data": { + "gtfs": { + "stop_id": "4698", + "stop_code": "34698", + "stop_name": "boul. De Montarville et de Gascogne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et de Gascogne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4158981436855, + 45.574624260913 + ] + } + }, + { + "id": "4977", + "code": "34977", + "data": { + "gtfs": { + "stop_id": "4977", + "stop_code": "34977", + "stop_name": "boul. De Montarville et de Gascogne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et de Gascogne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4153573770187, + 45.5744407628581 + ] + } + }, + { + "id": "5088", + "code": "35088", + "data": { + "gtfs": { + "stop_id": "5088", + "stop_code": "35088", + "stop_name": "de Gascogne et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Gascogne et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4157488308068, + 45.5744564339539 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4070096496135 + }, + "name": "de Gascogne et boul. De Montarville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.41570445, + 45.574532512 + ] + }, + "is_frozen": false, + "integer_id": 1374, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.417304, + 45.573603 + ] + }, + "id": 1375, + "properties": { + "id": "80eb2b2c-3d80-431d-851d-8665038b93b7", + "code": "33891", + "data": { + "stops": [ + { + "id": "3891", + "code": "33891", + "data": { + "gtfs": { + "stop_id": "3891", + "stop_code": "33891", + "stop_name": "de Gascogne et de Picardie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Gascogne et de Picardie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4172363581245, + 45.5737428641217 + ] + } + }, + { + "id": "5035", + "code": "35035", + "data": { + "gtfs": { + "stop_id": "5035", + "stop_code": "35035", + "stop_name": "de Gascogne et de Picardie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Gascogne et de Picardie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4173720305307, + 45.5734625585238 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3912411758039 + }, + "name": "de Gascogne et de Picardie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.417304194, + 45.573602711 + ] + }, + "is_frozen": false, + "integer_id": 1375, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450571, + 45.537487 + ] + }, + "id": 1376, + "properties": { + "id": "231dda72-d4b5-48ae-b714-5ce9d3802c45", + "code": "33898", + "data": { + "stops": [ + { + "id": "3898", + "code": "33898", + "data": { + "gtfs": { + "stop_id": "3898", + "stop_code": "33898", + "stop_name": "boul. Béliveau et Bourgeoys", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et Bourgeoys", + "geography": { + "type": "Point", + "coordinates": [ + -73.4508156331248, + 45.5374726489131 + ] + } + }, + { + "id": "3899", + "code": "33899", + "data": { + "gtfs": { + "stop_id": "3899", + "stop_code": "33899", + "stop_name": "boul. Béliveau et Bourgeoys", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et Bourgeoys", + "geography": { + "type": "Point", + "coordinates": [ + -73.4503270554859, + 45.5375021294479 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7793598793 + }, + "name": "boul. Béliveau et Bourgeoys", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450571344, + 45.537487389 + ] + }, + "is_frozen": false, + "integer_id": 1376, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.420368, + 45.564669 + ] + }, + "id": 1377, + "properties": { + "id": "0d73df1c-f948-4c1f-ba36-487a91089d51", + "code": "33902", + "data": { + "stops": [ + { + "id": "3902", + "code": "33902", + "data": { + "gtfs": { + "stop_id": "3902", + "stop_code": "33902", + "stop_name": "ch. Du Tremblay et Newton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Newton", + "geography": { + "type": "Point", + "coordinates": [ + -73.420368084394, + 45.5646692266905 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2397778080302 + }, + "name": "ch. Du Tremblay et Newton", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.420368084, + 45.564669227 + ] + }, + "is_frozen": false, + "integer_id": 1377, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465314, + 45.470055 + ] + }, + "id": 1378, + "properties": { + "id": "8e9afee7-e1de-4794-a91d-f9db0ef29ed2", + "code": "33904", + "data": { + "stops": [ + { + "id": "3904", + "code": "33904", + "data": { + "gtfs": { + "stop_id": "3904", + "stop_code": "33904", + "stop_name": "boul. Lapinière et Alain", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et Alain", + "geography": { + "type": "Point", + "coordinates": [ + -73.4653136298634, + 45.4700545736789 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6399961309749 + }, + "name": "boul. Lapinière et Alain", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46531363, + 45.470054574 + ] + }, + "is_frozen": false, + "integer_id": 1378, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463912, + 45.468978 + ] + }, + "id": 1379, + "properties": { + "id": "ee43ab70-74a3-4a43-bfec-164062a98584", + "code": "33905", + "data": { + "stops": [ + { + "id": "3905", + "code": "33905", + "data": { + "gtfs": { + "stop_id": "3905", + "stop_code": "33905", + "stop_name": "boul. Lapinière et av. Auteuil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et av. Auteuil", + "geography": { + "type": "Point", + "coordinates": [ + -73.4639124434692, + 45.4689782827362 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6218436045953 + }, + "name": "boul. Lapinière et av. Auteuil", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463912443, + 45.468978283 + ] + }, + "is_frozen": false, + "integer_id": 1379, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474492, + 45.469572 + ] + }, + "id": 1380, + "properties": { + "id": "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", + "code": "33907", + "data": { + "stops": [ + { + "id": "3907", + "code": "33907", + "data": { + "gtfs": { + "stop_id": "3907", + "stop_code": "33907", + "stop_name": "boul. Pelletier et civique 6570", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et civique 6570", + "geography": { + "type": "Point", + "coordinates": [ + -73.4744915842199, + 45.4695719386072 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6318559704654 + }, + "name": "boul. Pelletier et civique 6570", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474491584, + 45.469571939 + ] + }, + "is_frozen": false, + "integer_id": 1380, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461151, + 45.462229 + ] + }, + "id": 1381, + "properties": { + "id": "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", + "code": "33913", + "data": { + "stops": [ + { + "id": "3913", + "code": "33913", + "data": { + "gtfs": { + "stop_id": "3913", + "stop_code": "33913", + "stop_name": "av. Malo et croiss. Marin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et croiss. Marin", + "geography": { + "type": "Point", + "coordinates": [ + -73.461010212605, + 45.4623108511546 + ] + } + }, + { + "id": "4897", + "code": "34897", + "data": { + "gtfs": { + "stop_id": "4897", + "stop_code": "34897", + "stop_name": "av. Malo et croiss. Marin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et croiss. Marin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4612921150536, + 45.4621475352627 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5080381386623 + }, + "name": "av. Malo et croiss. Marin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461151164, + 45.462229193 + ] + }, + "is_frozen": false, + "integer_id": 1381, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46523, + 45.437471 + ] + }, + "id": 1382, + "properties": { + "id": "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", + "code": "33914", + "data": { + "stops": [ + { + "id": "3914", + "code": "33914", + "data": { + "gtfs": { + "stop_id": "3914", + "stop_code": "33914", + "stop_name": "ch. des Prairies et civique 2970", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et civique 2970", + "geography": { + "type": "Point", + "coordinates": [ + -73.4651105516223, + 45.4375220836116 + ] + } + }, + { + "id": "5378", + "code": "30118", + "data": { + "gtfs": { + "stop_id": "5378", + "stop_code": "30118", + "stop_name": "ch. des Prairies et civique 2955", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et civique 2955", + "geography": { + "type": "Point", + "coordinates": [ + -73.4653490123246, + 45.4374205348541 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0909082797667 + }, + "name": "ch. des Prairies et civique 2970", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465229782, + 45.437471309 + ] + }, + "is_frozen": false, + "integer_id": 1382, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446775, + 45.576444 + ] + }, + "id": 1383, + "properties": { + "id": "a83efd44-0d7a-49ef-b344-ef523d875f87", + "code": "33920", + "data": { + "stops": [ + { + "id": "3920", + "code": "33920", + "data": { + "gtfs": { + "stop_id": "3920", + "stop_code": "33920", + "stop_name": "boul. de Mortagne et Station service Shell", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Station service Shell", + "geography": { + "type": "Point", + "coordinates": [ + -73.4467747845213, + 45.5764437281309 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4394243453359 + }, + "name": "boul. de Mortagne et Station service Shell", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446774785, + 45.576443728 + ] + }, + "is_frozen": false, + "integer_id": 1383, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.487136, + 45.500632 + ] + }, + "id": 1384, + "properties": { + "id": "6c42a8f6-a98f-4058-9992-d00706a03dff", + "code": "33939", + "data": { + "stops": [ + { + "id": "3939", + "code": "33939", + "data": { + "gtfs": { + "stop_id": "3939", + "stop_code": "33939", + "stop_name": "boul. Taschereau et Mance", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Mance", + "geography": { + "type": "Point", + "coordinates": [ + -73.4871356127573, + 45.5006322423787 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1561435205655 + }, + "name": "boul. Taschereau et Mance", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.487135613, + 45.500632242 + ] + }, + "is_frozen": false, + "integer_id": 1384, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466856, + 45.484578 + ] + }, + "id": 1385, + "properties": { + "id": "159a0fe9-bedb-40f2-9806-32ab49594978", + "code": "33940", + "data": { + "stops": [ + { + "id": "3940", + "code": "33940", + "data": { + "gtfs": { + "stop_id": "3940", + "stop_code": "33940", + "stop_name": "boul. Taschereau et Lawrence", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Lawrence", + "geography": { + "type": "Point", + "coordinates": [ + -73.466711390089, + 45.4847741977341 + ] + } + }, + { + "id": "4162", + "code": "34162", + "data": { + "gtfs": { + "stop_id": "4162", + "stop_code": "34162", + "stop_name": "Lawrence et boul. Taschereau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lawrence et boul. Taschereau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4670002339235, + 45.4843819883026 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8850477668879 + }, + "name": "boul. Taschereau et Lawrence", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466855812, + 45.484578093 + ] + }, + "is_frozen": false, + "integer_id": 1385, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.413168, + 45.496796 + ] + }, + "id": 1386, + "properties": { + "id": "5dd96d41-c4eb-4453-9e97-752999b1688d", + "code": "33943", + "data": { + "stops": [ + { + "id": "3943", + "code": "33943", + "data": { + "gtfs": { + "stop_id": "3943", + "stop_code": "33943", + "stop_name": "boul. Cousineau et Avon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Avon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4131684885907, + 45.4967957322226 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0913380782206 + }, + "name": "boul. Cousineau et Avon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.413168489, + 45.496795732 + ] + }, + "is_frozen": false, + "integer_id": 1386, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.429397, + 45.504395 + ] + }, + "id": 1387, + "properties": { + "id": "1b175835-d1cc-4713-943f-5472ffaa8fea", + "code": "33947", + "data": { + "stops": [ + { + "id": "3947", + "code": "33947", + "data": { + "gtfs": { + "stop_id": "3947", + "stop_code": "33947", + "stop_name": "boul. Cousineau et boul. Gareau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et boul. Gareau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4293970003726, + 45.5043951096555 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2197177417318 + }, + "name": "boul. Cousineau et boul. Gareau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.429397, + 45.50439511 + ] + }, + "is_frozen": false, + "integer_id": 1387, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.42984, + 45.505864 + ] + }, + "id": 1388, + "properties": { + "id": "b4fcda7a-779e-4762-b2e5-038988d405be", + "code": "33948", + "data": { + "stops": [ + { + "id": "3948", + "code": "33948", + "data": { + "gtfs": { + "stop_id": "3948", + "stop_code": "33948", + "stop_name": "boul. Cousineau et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4298396206986, + 45.5058641956186 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.244541591158 + }, + "name": "boul. Cousineau et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.429839621, + 45.505864196 + ] + }, + "is_frozen": false, + "integer_id": 1388, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.507496, + 45.520782 + ] + }, + "id": 1389, + "properties": { + "id": "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", + "code": "33949", + "data": { + "stops": [ + { + "id": "3949", + "code": "33949", + "data": { + "gtfs": { + "stop_id": "3949", + "stop_code": "33949", + "stop_name": "Sainte-Hélène et boul. Desaulniers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sainte-Hélène et boul. Desaulniers", + "geography": { + "type": "Point", + "coordinates": [ + -73.5074956939848, + 45.5207822027672 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4967271305454 + }, + "name": "Sainte-Hélène et boul. Desaulniers", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507495694, + 45.520782203 + ] + }, + "is_frozen": false, + "integer_id": 1389, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.436153, + 45.574433 + ] + }, + "id": 1390, + "properties": { + "id": "8a45829f-032b-46f2-a537-7925e71ca5d2", + "code": "33951", + "data": { + "stops": [ + { + "id": "3951", + "code": "33951", + "data": { + "gtfs": { + "stop_id": "3951", + "stop_code": "33951", + "stop_name": "de Normandie et de Rouen", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Normandie et de Rouen", + "geography": { + "type": "Point", + "coordinates": [ + -73.4361526293766, + 45.5744331320425 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4053242295823 + }, + "name": "de Normandie et de Rouen", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.436152629, + 45.574433132 + ] + }, + "is_frozen": false, + "integer_id": 1390, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.429027, + 45.558284 + ] + }, + "id": 1391, + "properties": { + "id": "3babd96f-413d-4615-8f50-ca3cd1b6b052", + "code": "33953", + "data": { + "stops": [ + { + "id": "3953", + "code": "33953", + "data": { + "gtfs": { + "stop_id": "3953", + "stop_code": "33953", + "stop_name": "ch. Du Tremblay et De Coulomb", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et De Coulomb", + "geography": { + "type": "Point", + "coordinates": [ + -73.42909114073, + 45.5580881665447 + ] + } + }, + { + "id": "3954", + "code": "33954", + "data": { + "gtfs": { + "stop_id": "3954", + "stop_code": "33954", + "stop_name": "ch. Du Tremblay et De Coulomb", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et De Coulomb", + "geography": { + "type": "Point", + "coordinates": [ + -73.4289221290267, + 45.5584794894297 + ] + } + }, + { + "id": "5265", + "code": "35265", + "data": { + "gtfs": { + "stop_id": "5265", + "stop_code": "35265", + "stop_name": "De Coulomb et ch. Du Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Coulomb et ch. Du Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4292563439533, + 45.5583077286612 + ] + } + }, + { + "id": "5277", + "code": "35277", + "data": { + "gtfs": { + "stop_id": "5277", + "stop_code": "35277", + "stop_name": "De Coulomb et ch. Du Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Coulomb et ch. Du Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4287970956223, + 45.5582753462466 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1315598262472 + }, + "name": "ch. Du Tremblay et De Coulomb", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.42902672, + 45.558283828 + ] + }, + "is_frozen": false, + "integer_id": 1391, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.517091, + 45.528342 + ] + }, + "id": 1392, + "properties": { + "id": "b19be6c8-c333-401a-98e4-d16876257831", + "code": "33958", + "data": { + "stops": [ + { + "id": "3958", + "code": "33958", + "data": { + "gtfs": { + "stop_id": "3958", + "stop_code": "33958", + "stop_name": "Saint-Charles ouest et PLACE LONGUEUIL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Charles ouest et PLACE LONGUEUIL", + "geography": { + "type": "Point", + "coordinates": [ + -73.5170909884666, + 45.5283421886531 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6246026791938 + }, + "name": "Saint-Charles ouest et PLACE LONGUEUIL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.517090988, + 45.528342189 + ] + }, + "is_frozen": false, + "integer_id": 1392, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.514762, + 45.53016 + ] + }, + "id": 1393, + "properties": { + "id": "1f0868f3-8164-4687-b1c9-c08ae88ce2f3", + "code": "33959", + "data": { + "stops": [ + { + "id": "3959", + "code": "33959", + "data": { + "gtfs": { + "stop_id": "3959", + "stop_code": "33959", + "stop_name": "Joliette et PLACE LONGUEUIL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et PLACE LONGUEUIL", + "geography": { + "type": "Point", + "coordinates": [ + -73.5148557076831, + 45.5302591877062 + ] + } + }, + { + "id": "3960", + "code": "33960", + "data": { + "gtfs": { + "stop_id": "3960", + "stop_code": "33960", + "stop_name": "Joliette et PLACE LONGUEUIL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joliette et PLACE LONGUEUIL", + "geography": { + "type": "Point", + "coordinates": [ + -73.5146682691789, + 45.530061327492 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6553581612236 + }, + "name": "Joliette et PLACE LONGUEUIL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.514762, + 45.53016 + ] + }, + "is_frozen": false, + "integer_id": 1393, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479207, + 45.490133 + ] + }, + "id": 1394, + "properties": { + "id": "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", + "code": "33967", + "data": { + "stops": [ + { + "id": "3967", + "code": "33967", + "data": { + "gtfs": { + "stop_id": "3967", + "stop_code": "33967", + "stop_name": "de Verchères et Maple", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Verchères et Maple", + "geography": { + "type": "Point", + "coordinates": [ + -73.4794115234883, + 45.4901630083027 + ] + } + }, + { + "id": "3989", + "code": "33989", + "data": { + "gtfs": { + "stop_id": "3989", + "stop_code": "33989", + "stop_name": "de Verchères et Maple", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Verchères et Maple", + "geography": { + "type": "Point", + "coordinates": [ + -73.4790028646141, + 45.4901028593595 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.978822744861 + }, + "name": "de Verchères et Maple", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479207194, + 45.490132934 + ] + }, + "is_frozen": false, + "integer_id": 1394, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464744, + 45.469943 + ] + }, + "id": 1395, + "properties": { + "id": "977065eb-9054-495e-befc-5f3b6e0e6046", + "code": "33968", + "data": { + "stops": [ + { + "id": "3968", + "code": "33968", + "data": { + "gtfs": { + "stop_id": "3968", + "stop_code": "33968", + "stop_name": "boul. Lapinière et Alain", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et Alain", + "geography": { + "type": "Point", + "coordinates": [ + -73.4647441529114, + 45.4699427830552 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6381106366201 + }, + "name": "boul. Lapinière et Alain", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464744153, + 45.469942783 + ] + }, + "is_frozen": false, + "integer_id": 1395, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455944, + 45.616814 + ] + }, + "id": 1396, + "properties": { + "id": "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", + "code": "33970", + "data": { + "stops": [ + { + "id": "3970", + "code": "33970", + "data": { + "gtfs": { + "stop_id": "3970", + "stop_code": "33970", + "stop_name": "boul. Marie-Victorin et Sainte-Catherine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Sainte-Catherine", + "geography": { + "type": "Point", + "coordinates": [ + -73.4560842027268, + 45.6166311547953 + ] + } + }, + { + "id": "4167", + "code": "34167", + "data": { + "gtfs": { + "stop_id": "4167", + "stop_code": "34167", + "stop_name": "boul. Marie-Victorin et De Muy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et De Muy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4558042271886, + 45.616997403389 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.124882692107 + }, + "name": "boul. Marie-Victorin et Sainte-Catherine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455944215, + 45.616814279 + ] + }, + "is_frozen": false, + "integer_id": 1396, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.428795, + 45.517717 + ] + }, + "id": 1397, + "properties": { + "id": "feb4de14-0e62-4e9e-a6c1-ea3c1270d98e", + "code": "33971", + "data": { + "stops": [ + { + "id": "3971", + "code": "33971", + "data": { + "gtfs": { + "stop_id": "3971", + "stop_code": "33971", + "stop_name": "ch. de la Savane et Leckie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et Leckie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4290103802336, + 45.5176899206319 + ] + } + }, + { + "id": "4395", + "code": "34395", + "data": { + "gtfs": { + "stop_id": "4395", + "stop_code": "34395", + "stop_name": "ch. de la Savane et Leckie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et Leckie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4285804846486, + 45.5177437879817 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.44489191824 + }, + "name": "ch. de la Savane et Leckie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.428795432, + 45.517716854 + ] + }, + "is_frozen": false, + "integer_id": 1397, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.484875, + 45.530861 + ] + }, + "id": 1398, + "properties": { + "id": "65175945-c54c-4732-85a9-890393a0975c", + "code": "33986", + "data": { + "stops": [ + { + "id": "3986", + "code": "33986", + "data": { + "gtfs": { + "stop_id": "3986", + "stop_code": "33986", + "stop_name": "ch. de Chambly et ch. du Coteau-Rouge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et ch. du Coteau-Rouge", + "geography": { + "type": "Point", + "coordinates": [ + -73.4848748935735, + 45.5308609590591 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6672191432733 + }, + "name": "ch. de Chambly et ch. du Coteau-Rouge", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.484875, + 45.530861 + ] + }, + "is_frozen": false, + "integer_id": 1398, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.473024, + 45.468462 + ] + }, + "id": 1399, + "properties": { + "id": "a1799b5f-9add-43c2-89ac-80ade94b6634", + "code": "34009", + "data": { + "stops": [ + { + "id": "4009", + "code": "34009", + "data": { + "gtfs": { + "stop_id": "4009", + "stop_code": "34009", + "stop_name": "av. Panama et LOBLAW'S (ancien)", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et LOBLAW'S (ancien)", + "geography": { + "type": "Point", + "coordinates": [ + -73.4732288986819, + 45.4682488724684 + ] + } + }, + { + "id": "4010", + "code": "34010", + "data": { + "gtfs": { + "stop_id": "4010", + "stop_code": "34010", + "stop_name": "av. Panama et civique 1650", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et civique 1650", + "geography": { + "type": "Point", + "coordinates": [ + -73.4724335786909, + 45.4682981749736 + ] + } + }, + { + "id": "4271", + "code": "34271", + "data": { + "gtfs": { + "stop_id": "4271", + "stop_code": "34271", + "stop_name": "av. Panama et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Panama et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4736151557681, + 45.4686751557852 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 988.6376621383557 + }, + "name": "av. Panama et LOBLAW'S (ancien)", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.473024367, + 45.468462014 + ] + }, + "is_frozen": false, + "integer_id": 1399, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 52, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467166, + 45.472538 + ] + }, + "id": 1400, + "properties": { + "id": "47d29e21-b442-4f1e-bc41-0d7871af14e8", + "code": "34012", + "data": { + "stops": [ + { + "id": "4012", + "code": "34012", + "data": { + "gtfs": { + "stop_id": "4012", + "stop_code": "34012", + "stop_name": "boul. Taschereau et boul. Lapinière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et boul. Lapinière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4671660377524, + 45.4725379207098 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6818837307814 + }, + "name": "boul. Taschereau et boul. Lapinière", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.467166038, + 45.472537921 + ] + }, + "is_frozen": false, + "integer_id": 1400, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494613, + 45.558458 + ] + }, + "id": 1401, + "properties": { + "id": "261a087b-9323-4696-9046-146a299af43d", + "code": "34021", + "data": { + "stops": [ + { + "id": "4021", + "code": "34021", + "data": { + "gtfs": { + "stop_id": "4021", + "stop_code": "34021", + "stop_name": "boul. Marie-Victorin et ch. Écocentre Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et ch. Écocentre Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4947882048005, + 45.5584284704126 + ] + } + }, + { + "id": "4023", + "code": "34023", + "data": { + "gtfs": { + "stop_id": "4023", + "stop_code": "34023", + "stop_name": "boul. Marie-Victorin et ch. Écocentre Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et ch. Écocentre Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4944374454966, + 45.5584881920681 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1345167708971 + }, + "name": "boul. Marie-Victorin et ch. Écocentre Marie-Victorin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494612825, + 45.558458331 + ] + }, + "is_frozen": false, + "integer_id": 1401, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469441, + 45.559132 + ] + }, + "id": 1402, + "properties": { + "id": "b070e296-b686-4ba3-bf68-049018a7af21", + "code": "34026", + "data": { + "stops": [ + { + "id": "4026", + "code": "34026", + "data": { + "gtfs": { + "stop_id": "4026", + "stop_code": "34026", + "stop_name": "boul. Fernand-Lafontaine et Gendron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et Gendron", + "geography": { + "type": "Point", + "coordinates": [ + -73.4694410614399, + 45.5591318975971 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1459305852957 + }, + "name": "boul. Fernand-Lafontaine et Gendron", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469441061, + 45.559131898 + ] + }, + "is_frozen": false, + "integer_id": 1402, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491564, + 45.438511 + ] + }, + "id": 1403, + "properties": { + "id": "70846d21-918c-4542-969d-4e5cccbc6e50", + "code": "34029", + "data": { + "stops": [ + { + "id": "4029", + "code": "34029", + "data": { + "gtfs": { + "stop_id": "4029", + "stop_code": "34029", + "stop_name": "boul. Marie-Victorin et ch. des Prairies", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et ch. des Prairies", + "geography": { + "type": "Point", + "coordinates": [ + -73.4915643939003, + 45.4385108750215 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1084123354423 + }, + "name": "boul. Marie-Victorin et ch. des Prairies", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491564394, + 45.438510875 + ] + }, + "is_frozen": false, + "integer_id": 1403, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.473371, + 45.473995 + ] + }, + "id": 1404, + "properties": { + "id": "82735dcc-3897-4e4c-87e8-45ee1dacedaa", + "code": "34030", + "data": { + "stops": [ + { + "id": "4030", + "code": "34030", + "data": { + "gtfs": { + "stop_id": "4030", + "stop_code": "34030", + "stop_name": "boul. Provencher et PLACE DU COMMERCE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Provencher et PLACE DU COMMERCE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4733278276202, + 45.4741852355734 + ] + } + }, + { + "id": "4690", + "code": "34690", + "data": { + "gtfs": { + "stop_id": "4690", + "stop_code": "34690", + "stop_name": "boul. Provencher et PLACE DU COMMERCE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Provencher et PLACE DU COMMERCE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4734137894272, + 45.4738042637287 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7064591931024 + }, + "name": "boul. Provencher et PLACE DU COMMERCE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.473370809, + 45.47399475 + ] + }, + "is_frozen": false, + "integer_id": 1404, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.444131, + 45.5224 + ] + }, + "id": 1405, + "properties": { + "id": "59ce5dad-a6de-46b9-a19c-e11dc5bfb727", + "code": "34033", + "data": { + "stops": [ + { + "id": "4033", + "code": "34033", + "data": { + "gtfs": { + "stop_id": "4033", + "stop_code": "34033", + "stop_name": "boul. Roberval est et Marcille", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et Marcille", + "geography": { + "type": "Point", + "coordinates": [ + -73.4442002415184, + 45.5226079737451 + ] + } + }, + { + "id": "4172", + "code": "34172", + "data": { + "gtfs": { + "stop_id": "4172", + "stop_code": "34172", + "stop_name": "boul. Roberval est et Marcille", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et Marcille", + "geography": { + "type": "Point", + "coordinates": [ + -73.4440608903119, + 45.5221929749829 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5240955544738 + }, + "name": "boul. Roberval est et Marcille", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.444130566, + 45.522400474 + ] + }, + "is_frozen": false, + "integer_id": 1405, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454578, + 45.545279 + ] + }, + "id": 1406, + "properties": { + "id": "86d2a168-d8d6-4528-80ff-833432ddaf2d", + "code": "34048", + "data": { + "stops": [ + { + "id": "4048", + "code": "34048", + "data": { + "gtfs": { + "stop_id": "4048", + "stop_code": "34048", + "stop_name": "boul. Jacques-Cartier est et boul. Jean-Paul-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et boul. Jean-Paul-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4545783459419, + 45.5452790986024 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9112718600834 + }, + "name": "boul. Jacques-Cartier est et boul. Jean-Paul-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454578346, + 45.545279099 + ] + }, + "is_frozen": false, + "integer_id": 1406, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44424, + 45.461616 + ] + }, + "id": 1407, + "properties": { + "id": "a77f6afe-a859-4856-8bf5-ab032add56af", + "code": "34051", + "data": { + "stops": [ + { + "id": "4051", + "code": "34051", + "data": { + "gtfs": { + "stop_id": "4051", + "stop_code": "34051", + "stop_name": "av. Balzac et Beaumont", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Balzac et Beaumont", + "geography": { + "type": "Point", + "coordinates": [ + -73.4442395074026, + 45.4616155107327 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.497692028271 + }, + "name": "av. Balzac et Beaumont", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.444239507, + 45.461615511 + ] + }, + "is_frozen": false, + "integer_id": 1407, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483374, + 45.550568 + ] + }, + "id": 1408, + "properties": { + "id": "221d32b3-ef8a-416e-a402-91b2f0007208", + "code": "34064", + "data": { + "stops": [ + { + "id": "4064", + "code": "34064", + "data": { + "gtfs": { + "stop_id": "4064", + "stop_code": "34064", + "stop_name": "Adoncour et boul. Fernand-Lafontaine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et boul. Fernand-Lafontaine", + "geography": { + "type": "Point", + "coordinates": [ + -73.48337447908, + 45.5505683475779 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0008485828992 + }, + "name": "Adoncour et boul. Fernand-Lafontaine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483374479, + 45.550568348 + ] + }, + "is_frozen": false, + "integer_id": 1408, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.484125, + 45.550847 + ] + }, + "id": 1409, + "properties": { + "id": "cd788179-2c9b-4e1e-9ba3-10b35bfde3fa", + "code": "34065", + "data": { + "stops": [ + { + "id": "4065", + "code": "34065", + "data": { + "gtfs": { + "stop_id": "4065", + "stop_code": "34065", + "stop_name": "boul. Fernand-Lafontaine et Adoncour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et Adoncour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4841252304993, + 45.5508474033739 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0055752464583 + }, + "name": "boul. Fernand-Lafontaine et Adoncour", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48412523, + 45.550847403 + ] + }, + "is_frozen": false, + "integer_id": 1409, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482002, + 45.549054 + ] + }, + "id": 1410, + "properties": { + "id": "06cdca3a-f2d1-4f41-837c-693f8619463c", + "code": "34066", + "data": { + "stops": [ + { + "id": "4066", + "code": "34066", + "data": { + "gtfs": { + "stop_id": "4066", + "stop_code": "34066", + "stop_name": "Adoncour et des Perdrix", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et des Perdrix", + "geography": { + "type": "Point", + "coordinates": [ + -73.4822211949517, + 45.5491150581586 + ] + } + }, + { + "id": "4125", + "code": "34125", + "data": { + "gtfs": { + "stop_id": "4125", + "stop_code": "34125", + "stop_name": "Adoncour et des Perdrix", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et des Perdrix", + "geography": { + "type": "Point", + "coordinates": [ + -73.48178197621, + 45.548992060596 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9751921369914 + }, + "name": "Adoncour et des Perdrix", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482001586, + 45.549053559 + ] + }, + "is_frozen": false, + "integer_id": 1410, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478209, + 45.545853 + ] + }, + "id": 1411, + "properties": { + "id": "0e8b7968-4242-43b0-a1a6-300cb3c93219", + "code": "34067", + "data": { + "stops": [ + { + "id": "4067", + "code": "34067", + "data": { + "gtfs": { + "stop_id": "4067", + "stop_code": "34067", + "stop_name": "Adoncour et des Mouettes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et des Mouettes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4784102125825, + 45.5459290621556 + ] + } + }, + { + "id": "4124", + "code": "34124", + "data": { + "gtfs": { + "stop_id": "4124", + "stop_code": "34124", + "stop_name": "Adoncour et des Mouettes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et des Mouettes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4780080071927, + 45.5457774935003 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9209947305443 + }, + "name": "Adoncour et des Mouettes", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47820911, + 45.545853278 + ] + }, + "is_frozen": false, + "integer_id": 1411, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.511864, + 45.516909 + ] + }, + "id": 1412, + "properties": { + "id": "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", + "code": "34072", + "data": { + "stops": [ + { + "id": "4072", + "code": "34072", + "data": { + "gtfs": { + "stop_id": "4072", + "stop_code": "34072", + "stop_name": "boul. Taschereau et civique 799", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et civique 799", + "geography": { + "type": "Point", + "coordinates": [ + -73.5118638658643, + 45.5169087624241 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4312284343888 + }, + "name": "boul. Taschereau et civique 799", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.511863866, + 45.516908762 + ] + }, + "is_frozen": false, + "integer_id": 1412, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46473, + 45.479216 + ] + }, + "id": 1413, + "properties": { + "id": "bf51d692-a22e-42e9-a495-2d1955e0c462", + "code": "34075", + "data": { + "stops": [ + { + "id": "4075", + "code": "34075", + "data": { + "gtfs": { + "stop_id": "4075", + "stop_code": "34075", + "stop_name": "Angèle et civique 6185", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Angèle et civique 6185", + "geography": { + "type": "Point", + "coordinates": [ + -73.4644822701663, + 45.4790621303741 + ] + } + }, + { + "id": "4332", + "code": "34332", + "data": { + "gtfs": { + "stop_id": "4332", + "stop_code": "34332", + "stop_name": "boul. Taschereau et Angèle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Angèle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4649783573863, + 45.4793696532167 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7945508913286 + }, + "name": "Angèle et civique 6185", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464730314, + 45.479215892 + ] + }, + "is_frozen": false, + "integer_id": 1413, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.404629, + 45.565824 + ] + }, + "id": 1414, + "properties": { + "id": "0681e3d4-c5fd-4f85-982e-d5d26960784a", + "code": "34080", + "data": { + "stops": [ + { + "id": "4080", + "code": "34080", + "data": { + "gtfs": { + "stop_id": "4080", + "stop_code": "34080", + "stop_name": "boul. De Montarville et J.-A.-Bombardier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et J.-A.-Bombardier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4045096736474, + 45.5658824210294 + ] + } + }, + { + "id": "5271", + "code": "35271", + "data": { + "gtfs": { + "stop_id": "5271", + "stop_code": "35271", + "stop_name": "J.-A.-Bombardier et boul. De Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et boul. De Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.404748669657, + 45.5657664305051 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2593596934917 + }, + "name": "boul. De Montarville et J.-A.-Bombardier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.404629172, + 45.565824426 + ] + }, + "is_frozen": false, + "integer_id": 1414, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.405656, + 45.566819 + ] + }, + "id": 1415, + "properties": { + "id": "2260ef06-cda3-48e1-919a-84c2b44c938b", + "code": "34081", + "data": { + "stops": [ + { + "id": "4081", + "code": "34081", + "data": { + "gtfs": { + "stop_id": "4081", + "stop_code": "34081", + "stop_name": "boul. De Montarville et Dépanneur Couche-Tard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et Dépanneur Couche-Tard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4056562149985, + 45.5668189255739 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2762185104912 + }, + "name": "boul. De Montarville et Dépanneur Couche-Tard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.405656215, + 45.566818926 + ] + }, + "is_frozen": false, + "integer_id": 1415, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.398537, + 45.569213 + ] + }, + "id": 1416, + "properties": { + "id": "a93c22b5-170a-45a8-a2c1-143c975239a9", + "code": "34083", + "data": { + "stops": [ + { + "id": "4083", + "code": "34083", + "data": { + "gtfs": { + "stop_id": "4083", + "stop_code": "34083", + "stop_name": "Louis-Pasteur et Eiffel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Louis-Pasteur et Eiffel", + "geography": { + "type": "Point", + "coordinates": [ + -73.3985128457128, + 45.5691030256837 + ] + } + }, + { + "id": "4917", + "code": "34917", + "data": { + "gtfs": { + "stop_id": "4917", + "stop_code": "34917", + "stop_name": "Louis-Pasteur et Eiffel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Louis-Pasteur et Eiffel", + "geography": { + "type": "Point", + "coordinates": [ + -73.39856179382, + 45.5693234930476 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3168109967912 + }, + "name": "Louis-Pasteur et Eiffel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.39853732, + 45.569213259 + ] + }, + "is_frozen": false, + "integer_id": 1416, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.408531, + 45.567966 + ] + }, + "id": 1417, + "properties": { + "id": "0be77fd1-e022-43e1-8779-3871b7711e4b", + "code": "34087", + "data": { + "stops": [ + { + "id": "4087", + "code": "34087", + "data": { + "gtfs": { + "stop_id": "4087", + "stop_code": "34087", + "stop_name": "boul. De Montarville et civique 1550", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et civique 1550", + "geography": { + "type": "Point", + "coordinates": [ + -73.4085309472523, + 45.5679662864626 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2956697164379 + }, + "name": "boul. De Montarville et civique 1550", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.408530947, + 45.567966286 + ] + }, + "is_frozen": false, + "integer_id": 1417, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439879, + 45.462217 + ] + }, + "id": 1418, + "properties": { + "id": "af14ce12-74fa-4edf-a439-c058d0014323", + "code": "34089", + "data": { + "stops": [ + { + "id": "4089", + "code": "34089", + "data": { + "gtfs": { + "stop_id": "4089", + "stop_code": "34089", + "stop_name": "av. Boniface et Beethoven", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Boniface et Beethoven", + "geography": { + "type": "Point", + "coordinates": [ + -73.4399064944011, + 45.4621397253651 + ] + } + }, + { + "id": "5082", + "code": "35082", + "data": { + "gtfs": { + "stop_id": "5082", + "stop_code": "35082", + "stop_name": "av. Boniface et Beethoven", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Boniface et Beethoven", + "geography": { + "type": "Point", + "coordinates": [ + -73.4398510508336, + 45.4622952333687 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5078406483374 + }, + "name": "av. Boniface et Beethoven", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439878773, + 45.462217479 + ] + }, + "is_frozen": false, + "integer_id": 1418, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454481, + 45.545787 + ] + }, + "id": 1419, + "properties": { + "id": "19d70945-d3db-430f-90e2-ad67901fda8d", + "code": "34094", + "data": { + "stops": [ + { + "id": "4094", + "code": "34094", + "data": { + "gtfs": { + "stop_id": "4094", + "stop_code": "34094", + "stop_name": "boul. Jacques-Cartier est et boul. Jean-Paul-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et boul. Jean-Paul-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4544809898778, + 45.5457868590752 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9198700081603 + }, + "name": "boul. Jacques-Cartier est et boul. Jean-Paul-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45448099, + 45.545786859 + ] + }, + "is_frozen": false, + "integer_id": 1419, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.421263, + 45.471827 + ] + }, + "id": 1420, + "properties": { + "id": "34963af0-6d55-47fa-9de8-fb99aa68c762", + "code": "34095", + "data": { + "stops": [ + { + "id": "4095", + "code": "34095", + "data": { + "gtfs": { + "stop_id": "4095", + "stop_code": "34095", + "stop_name": "boul. Payer et Ramsay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Ramsay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4215516636185, + 45.4718175997572 + ] + } + }, + { + "id": "4096", + "code": "34096", + "data": { + "gtfs": { + "stop_id": "4096", + "stop_code": "34096", + "stop_name": "boul. Payer et allée des Sorbiers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et allée des Sorbiers", + "geography": { + "type": "Point", + "coordinates": [ + -73.4209746193204, + 45.4718354140279 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6698834686024 + }, + "name": "boul. Payer et Ramsay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.421263141, + 45.471826507 + ] + }, + "is_frozen": false, + "integer_id": 1420, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.416805, + 45.469383 + ] + }, + "id": 1421, + "properties": { + "id": "b184f86a-a7af-4949-9957-882509c0c182", + "code": "34097", + "data": { + "stops": [ + { + "id": "4097", + "code": "34097", + "data": { + "gtfs": { + "stop_id": "4097", + "stop_code": "34097", + "stop_name": "boul. Payer et Cornwall", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Cornwall", + "geography": { + "type": "Point", + "coordinates": [ + -73.4170637024107, + 45.4693429028085 + ] + } + }, + { + "id": "4098", + "code": "34098", + "data": { + "gtfs": { + "stop_id": "4098", + "stop_code": "34098", + "stop_name": "boul. Payer et Cornwall", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Cornwall", + "geography": { + "type": "Point", + "coordinates": [ + -73.416546558284, + 45.4694223562092 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6286631262132 + }, + "name": "boul. Payer et Cornwall", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.41680513, + 45.46938263 + ] + }, + "is_frozen": false, + "integer_id": 1421, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452841, + 45.538358 + ] + }, + "id": 1422, + "properties": { + "id": "74325106-fd46-4be2-9872-2d362cabf10d", + "code": "34102", + "data": { + "stops": [ + { + "id": "4102", + "code": "34102", + "data": { + "gtfs": { + "stop_id": "4102", + "stop_code": "34102", + "stop_name": "Beauharnois et Berthon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauharnois et Berthon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4528411972646, + 45.538358040654 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7940971432059 + }, + "name": "Beauharnois et Berthon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452841197, + 45.538358041 + ] + }, + "is_frozen": false, + "integer_id": 1422, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450148, + 45.541742 + ] + }, + "id": 1423, + "properties": { + "id": "ed2d86bc-14d2-40cc-9b3c-fcf430af3d76", + "code": "34103", + "data": { + "stops": [ + { + "id": "4103", + "code": "34103", + "data": { + "gtfs": { + "stop_id": "4103", + "stop_code": "34103", + "stop_name": "Beauharnois et Boucault", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauharnois et Boucault", + "geography": { + "type": "Point", + "coordinates": [ + -73.4506382458982, + 45.5417494961293 + ] + } + }, + { + "id": "5827", + "code": "30596", + "data": { + "gtfs": { + "stop_id": "5827", + "stop_code": "30596", + "stop_name": "Beauharnois et Brunet", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauharnois et Brunet", + "geography": { + "type": "Point", + "coordinates": [ + -73.4496573106131, + 45.5417345590758 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8513832926596 + }, + "name": "Beauharnois et Boucault", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450147778, + 45.541742028 + ] + }, + "is_frozen": false, + "integer_id": 1423, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448812, + 45.543215 + ] + }, + "id": 1424, + "properties": { + "id": "8990dfff-c24e-4da1-938f-d3124a8df164", + "code": "34104", + "data": { + "stops": [ + { + "id": "4104", + "code": "34104", + "data": { + "gtfs": { + "stop_id": "4104", + "stop_code": "34104", + "stop_name": "Boucault et Robin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Boucault et Robin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4488117562721, + 45.5432154262548 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8763290449994 + }, + "name": "Boucault et Robin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448811756, + 45.543215426 + ] + }, + "is_frozen": false, + "integer_id": 1424, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456023, + 45.542936 + ] + }, + "id": 1425, + "properties": { + "id": "f8690123-add8-4e85-bbf6-f84c4b712589", + "code": "34106", + "data": { + "stops": [ + { + "id": "4106", + "code": "34106", + "data": { + "gtfs": { + "stop_id": "4106", + "stop_code": "34106", + "stop_name": "boul. Jacques-Cartier est et ch. Du Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et ch. Du Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4560229336692, + 45.5429359235317 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8715967140085 + }, + "name": "boul. Jacques-Cartier est et ch. Du Tremblay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456022934, + 45.542935924 + ] + }, + "is_frozen": false, + "integer_id": 1425, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.41684, + 45.457729 + ] + }, + "id": 1426, + "properties": { + "id": "cdda3c7c-b577-49de-afc0-aa4c4e60c34b", + "code": "34107", + "data": { + "stops": [ + { + "id": "4107", + "code": "34107", + "data": { + "gtfs": { + "stop_id": "4107", + "stop_code": "34107", + "stop_name": "J.-A.-Bombardier et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4167564475196, + 45.4576889407744 + ] + } + }, + { + "id": "4108", + "code": "34108", + "data": { + "gtfs": { + "stop_id": "4108", + "stop_code": "34108", + "stop_name": "J.-A.-Bombardier et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4169234826074, + 45.4577698590301 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4321835543401 + }, + "name": "J.-A.-Bombardier et Grande Allée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.416839965, + 45.4577294 + ] + }, + "is_frozen": false, + "integer_id": 1426, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.414486, + 45.458319 + ] + }, + "id": 1427, + "properties": { + "id": "dc623539-3b98-4807-a5d5-f66507b8bc4c", + "code": "34109", + "data": { + "stops": [ + { + "id": "4109", + "code": "34109", + "data": { + "gtfs": { + "stop_id": "4109", + "stop_code": "34109", + "stop_name": "J.-A.-Bombardier et Armand-Frappier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et Armand-Frappier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4147328204277, + 45.4583138743186 + ] + } + }, + { + "id": "4110", + "code": "34110", + "data": { + "gtfs": { + "stop_id": "4110", + "stop_code": "34110", + "stop_name": "Armand-Frappier et J.-A.-Bombardier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Armand-Frappier et J.-A.-Bombardier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4142390720385, + 45.458324183205 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4421221135709 + }, + "name": "J.-A.-Bombardier et Armand-Frappier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.414485946, + 45.458319029 + ] + }, + "is_frozen": false, + "integer_id": 1427, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.422187, + 45.460955 + ] + }, + "id": 1428, + "properties": { + "id": "d8582feb-8d83-457a-8a52-dc395b1f7390", + "code": "34111", + "data": { + "stops": [ + { + "id": "4111", + "code": "34111", + "data": { + "gtfs": { + "stop_id": "4111", + "stop_code": "34111", + "stop_name": "Grande Allée et Belmont", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Belmont", + "geography": { + "type": "Point", + "coordinates": [ + -73.4221873276419, + 45.4609547255289 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4865521786436 + }, + "name": "Grande Allée et Belmont", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.422187328, + 45.460954726 + ] + }, + "is_frozen": false, + "integer_id": 1428, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456814, + 45.538357 + ] + }, + "id": 1429, + "properties": { + "id": "c77b3ec3-667e-4b8e-a8ba-613daafce3d4", + "code": "34113", + "data": { + "stops": [ + { + "id": "4113", + "code": "34113", + "data": { + "gtfs": { + "stop_id": "4113", + "stop_code": "34113", + "stop_name": "boul. Jacques-Cartier est et CENTRE HOSPITALIER PIERRE-BOUCHER", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et CENTRE HOSPITALIER PIERRE-BOUCHER", + "geography": { + "type": "Point", + "coordinates": [ + -73.4568141281936, + 45.5383573486054 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7940854296618 + }, + "name": "boul. Jacques-Cartier est et CENTRE HOSPITALIER PIERRE-BOUCHER", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456814128, + 45.538357349 + ] + }, + "is_frozen": false, + "integer_id": 1429, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455457, + 45.537823 + ] + }, + "id": 1430, + "properties": { + "id": "fce7a113-2e0c-4a0f-922a-957670252ea1", + "code": "34118", + "data": { + "stops": [ + { + "id": "4118", + "code": "34118", + "data": { + "gtfs": { + "stop_id": "4118", + "stop_code": "34118", + "stop_name": "boul. Béliveau et boul. Jacques-Cartier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et boul. Jacques-Cartier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4554568832888, + 45.5378234775652 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7850486763464 + }, + "name": "boul. Béliveau et boul. Jacques-Cartier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455456883, + 45.537823478 + ] + }, + "is_frozen": false, + "integer_id": 1430, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.404417, + 45.46153 + ] + }, + "id": 1431, + "properties": { + "id": "28acd503-64ba-4c57-925c-1acd27dd7dde", + "code": "34120", + "data": { + "stops": [ + { + "id": "4120", + "code": "34120", + "data": { + "gtfs": { + "stop_id": "4120", + "stop_code": "34120", + "stop_name": "Armand-Frappier et boul. Payer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Armand-Frappier et boul. Payer", + "geography": { + "type": "Point", + "coordinates": [ + -73.4042525995358, + 45.461588219085 + ] + } + }, + { + "id": "5141", + "code": "35141", + "data": { + "gtfs": { + "stop_id": "5141", + "stop_code": "35141", + "stop_name": "boul. Payer et Armand-Frappier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Payer et Armand-Frappier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4045816629216, + 45.4614725002228 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4962564876499 + }, + "name": "Armand-Frappier et boul. Payer", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.404417131, + 45.46153036 + ] + }, + "is_frozen": false, + "integer_id": 1431, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.408806, + 45.458475 + ] + }, + "id": 1432, + "properties": { + "id": "fcd51ec2-f1b1-4630-8f4f-bbfd7b67c91f", + "code": "34122", + "data": { + "stops": [ + { + "id": "4122", + "code": "34122", + "data": { + "gtfs": { + "stop_id": "4122", + "stop_code": "34122", + "stop_name": "Armand-Frappier et civique 5250", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Armand-Frappier et civique 5250", + "geography": { + "type": "Point", + "coordinates": [ + -73.4088057029642, + 45.4584747380759 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4447467359707 + }, + "name": "Armand-Frappier et civique 5250", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.408805703, + 45.458474738 + ] + }, + "is_frozen": false, + "integer_id": 1432, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452159, + 45.547048 + ] + }, + "id": 1433, + "properties": { + "id": "c7d234f2-22e5-4459-8628-1d01e7ca4dc0", + "code": "34128", + "data": { + "stops": [ + { + "id": "4128", + "code": "34128", + "data": { + "gtfs": { + "stop_id": "4128", + "stop_code": "34128", + "stop_name": "Lebrun et Bédard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lebrun et Bédard", + "geography": { + "type": "Point", + "coordinates": [ + -73.452017860271, + 45.5471131093803 + ] + } + }, + { + "id": "5440", + "code": "30183", + "data": { + "gtfs": { + "stop_id": "5440", + "stop_code": "30183", + "stop_name": "boul. Jacques-Cartier est et Bédard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et Bédard", + "geography": { + "type": "Point", + "coordinates": [ + -73.452300346138, + 45.5469825669874 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9412237766854 + }, + "name": "Lebrun et Bédard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452159103, + 45.547047838 + ] + }, + "is_frozen": false, + "integer_id": 1433, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.419445, + 45.459061 + ] + }, + "id": 1434, + "properties": { + "id": "0b9048bd-dd82-42d8-ba47-b3d93d735fe8", + "code": "34129", + "data": { + "stops": [ + { + "id": "4129", + "code": "34129", + "data": { + "gtfs": { + "stop_id": "4129", + "stop_code": "34129", + "stop_name": "Grande Allée et boul. Moïse-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et boul. Moïse-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4194451442371, + 45.4590607589356 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4546248668056 + }, + "name": "Grande Allée et boul. Moïse-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.419445144, + 45.459060759 + ] + }, + "is_frozen": false, + "integer_id": 1434, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.435306, + 45.510035 + ] + }, + "id": 1435, + "properties": { + "id": "53ead0f5-ebe4-4285-9d12-aa867ff0e782", + "code": "34132", + "data": { + "stops": [ + { + "id": "4132", + "code": "34132", + "data": { + "gtfs": { + "stop_id": "4132", + "stop_code": "34132", + "stop_name": "ch. de Chambly et ch. de la Savane", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et ch. de la Savane", + "geography": { + "type": "Point", + "coordinates": [ + -73.4353058176157, + 45.5100347104287 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3150232312933 + }, + "name": "ch. de Chambly et ch. de la Savane", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.435305818, + 45.51003471 + ] + }, + "is_frozen": false, + "integer_id": 1435, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442652, + 45.573028 + ] + }, + "id": 1436, + "properties": { + "id": "36054208-e9c6-4e5a-99d2-bfca0679b681", + "code": "34137", + "data": { + "stops": [ + { + "id": "4137", + "code": "34137", + "data": { + "gtfs": { + "stop_id": "4137", + "stop_code": "34137", + "stop_name": "Ampère et civique 1205", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ampère et civique 1205", + "geography": { + "type": "Point", + "coordinates": [ + -73.4426522089097, + 45.5730277301363 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3814904730074 + }, + "name": "Ampère et civique 1205", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442652209, + 45.57302773 + ] + }, + "is_frozen": false, + "integer_id": 1436, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442461, + 45.572465 + ] + }, + "id": 1437, + "properties": { + "id": "c75630d1-5494-4596-bc82-707a62fa5988", + "code": "34138", + "data": { + "stops": [ + { + "id": "4138", + "code": "34138", + "data": { + "gtfs": { + "stop_id": "4138", + "stop_code": "34138", + "stop_name": "Ampère et civique 1205", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ampère et civique 1205", + "geography": { + "type": "Point", + "coordinates": [ + -73.4424611248015, + 45.5724650392847 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3719484739282 + }, + "name": "Ampère et civique 1205", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442461125, + 45.572465039 + ] + }, + "is_frozen": false, + "integer_id": 1437, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44341, + 45.573591 + ] + }, + "id": 1438, + "properties": { + "id": "f983c876-3e85-4820-8de6-e993255f2434", + "code": "34139", + "data": { + "stops": [ + { + "id": "4139", + "code": "34139", + "data": { + "gtfs": { + "stop_id": "4139", + "stop_code": "34139", + "stop_name": "Ampère et WELCOMINNS", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ampère et WELCOMINNS", + "geography": { + "type": "Point", + "coordinates": [ + -73.4434100969923, + 45.5735912831889 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3910473734231 + }, + "name": "Ampère et WELCOMINNS", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443410097, + 45.573591283 + ] + }, + "is_frozen": false, + "integer_id": 1438, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486759, + 45.500779 + ] + }, + "id": 1439, + "properties": { + "id": "59a23245-0190-4421-8038-2ea1cbdc6419", + "code": "34165", + "data": { + "stops": [ + { + "id": "4165", + "code": "34165", + "data": { + "gtfs": { + "stop_id": "4165", + "stop_code": "34165", + "stop_name": "Mance et boul. Taschereau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Mance et boul. Taschereau", + "geography": { + "type": "Point", + "coordinates": [ + -73.48675857715, + 45.5007794361713 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1586301485422 + }, + "name": "Mance et boul. Taschereau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486758577, + 45.500779436 + ] + }, + "is_frozen": false, + "integer_id": 1439, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445332, + 45.519791 + ] + }, + "id": 1440, + "properties": { + "id": "71e321c3-bad2-413b-8558-79185b044654", + "code": "34171", + "data": { + "stops": [ + { + "id": "4171", + "code": "34171", + "data": { + "gtfs": { + "stop_id": "4171", + "stop_code": "34171", + "stop_name": "boul. Roberval est et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4453321052113, + 45.5197910171026 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.479965207511 + }, + "name": "boul. Roberval est et Passage piétonnier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445332105, + 45.519791017 + ] + }, + "is_frozen": false, + "integer_id": 1440, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44431, + 45.5255 + ] + }, + "id": 1441, + "properties": { + "id": "37e0037c-1e13-45e4-a410-24f20d2177f9", + "code": "34173", + "data": { + "stops": [ + { + "id": "4173", + "code": "34173", + "data": { + "gtfs": { + "stop_id": "4173", + "stop_code": "34173", + "stop_name": "boul. Roland-Therrien et Moquin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et Moquin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4443100445362, + 45.5255000077698 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5765218193864 + }, + "name": "boul. Roland-Therrien et Moquin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.444310045, + 45.525500008 + ] + }, + "is_frozen": false, + "integer_id": 1441, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464734, + 45.481112 + ] + }, + "id": 1442, + "properties": { + "id": "2acecbbf-b213-4db7-b710-c8999ce71fbf", + "code": "34178", + "data": { + "stops": [ + { + "id": "4178", + "code": "34178", + "data": { + "gtfs": { + "stop_id": "4178", + "stop_code": "34178", + "stop_name": "boul. Taschereau et MAIL CARNAVAL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et MAIL CARNAVAL", + "geography": { + "type": "Point", + "coordinates": [ + -73.4649789481293, + 45.4812096813796 + ] + } + }, + { + "id": "4532", + "code": "34532", + "data": { + "gtfs": { + "stop_id": "4532", + "stop_code": "34532", + "stop_name": "boul. Taschereau et Adam", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Adam", + "geography": { + "type": "Point", + "coordinates": [ + -73.4644895794287, + 45.4810142843043 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8265479484105 + }, + "name": "boul. Taschereau et MAIL CARNAVAL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464734264, + 45.481111983 + ] + }, + "is_frozen": false, + "integer_id": 1442, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443098, + 45.524116 + ] + }, + "id": 1443, + "properties": { + "id": "e4177123-f532-4426-8afb-b9c8199723e1", + "code": "34180", + "data": { + "stops": [ + { + "id": "4180", + "code": "34180", + "data": { + "gtfs": { + "stop_id": "4180", + "stop_code": "34180", + "stop_name": "boul. Roberval est et civique 656", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et civique 656", + "geography": { + "type": "Point", + "coordinates": [ + -73.4430981534212, + 45.5241162949916 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.553116306377 + }, + "name": "boul. Roberval est et civique 656", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443098153, + 45.524116295 + ] + }, + "is_frozen": false, + "integer_id": 1443, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448121, + 45.543026 + ] + }, + "id": 1444, + "properties": { + "id": "b6aea660-191f-4c6f-a40e-a9dfada559a0", + "code": "34184", + "data": { + "stops": [ + { + "id": "4184", + "code": "34184", + "data": { + "gtfs": { + "stop_id": "4184", + "stop_code": "34184", + "stop_name": "Robin et Brunet", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Robin et Brunet", + "geography": { + "type": "Point", + "coordinates": [ + -73.4481212248143, + 45.5430261490368 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8731243325377 + }, + "name": "Robin et Brunet", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448121225, + 45.543026149 + ] + }, + "is_frozen": false, + "integer_id": 1444, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.410612, + 45.473983 + ] + }, + "id": 1445, + "properties": { + "id": "0ff0280b-6f85-4d12-b102-cc4b8609d72a", + "code": "34185", + "data": { + "stops": [ + { + "id": "4185", + "code": "34185", + "data": { + "gtfs": { + "stop_id": "4185", + "stop_code": "34185", + "stop_name": "Cornwall et civique 4190", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Cornwall et civique 4190", + "geography": { + "type": "Point", + "coordinates": [ + -73.4106124948844, + 45.4739828262405 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7062580377435 + }, + "name": "Cornwall et civique 4190", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.410612495, + 45.473982826 + ] + }, + "is_frozen": false, + "integer_id": 1445, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.388373, + 45.482624 + ] + }, + "id": 1446, + "properties": { + "id": "ff83e3ed-db76-4049-b206-f6a7eb53237f", + "code": "34187", + "data": { + "stops": [ + { + "id": "4187", + "code": "34187", + "data": { + "gtfs": { + "stop_id": "4187", + "stop_code": "34187", + "stop_name": "boul. Moïse-Vincent et civique 2995", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Moïse-Vincent et civique 2995", + "geography": { + "type": "Point", + "coordinates": [ + -73.3883734931773, + 45.4826239635863 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8520653333036 + }, + "name": "boul. Moïse-Vincent et civique 2995", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.388373493, + 45.482623964 + ] + }, + "is_frozen": false, + "integer_id": 1446, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.389176, + 45.482083 + ] + }, + "id": 1447, + "properties": { + "id": "6d96a7b5-b2cd-4cb0-a3d1-b914f081bde3", + "code": "34188", + "data": { + "stops": [ + { + "id": "4188", + "code": "34188", + "data": { + "gtfs": { + "stop_id": "4188", + "stop_code": "34188", + "stop_name": "boul. Moïse-Vincent et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Moïse-Vincent et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3891757702035, + 45.4820828951027 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8429335923034 + }, + "name": "boul. Moïse-Vincent et boul. Cousineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.38917577, + 45.482082895 + ] + }, + "is_frozen": false, + "integer_id": 1447, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.471931, + 45.53767 + ] + }, + "id": 1448, + "properties": { + "id": "abdcf999-0861-4881-a478-42fa957c7f17", + "code": "34190", + "data": { + "stops": [ + { + "id": "4190", + "code": "34190", + "data": { + "gtfs": { + "stop_id": "4190", + "stop_code": "34190", + "stop_name": "boul. Roland-Therrien et TIM HORTON", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et TIM HORTON", + "geography": { + "type": "Point", + "coordinates": [ + -73.4719314119809, + 45.5376696933098 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7824456281776 + }, + "name": "boul. Roland-Therrien et TIM HORTON", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.471931412, + 45.537669693 + ] + }, + "is_frozen": false, + "integer_id": 1448, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445258, + 45.597945 + ] + }, + "id": 1449, + "properties": { + "id": "9e857d67-44b9-48aa-aa36-d1284504d820", + "code": "34197", + "data": { + "stops": [ + { + "id": "4197", + "code": "34197", + "data": { + "gtfs": { + "stop_id": "4197", + "stop_code": "34197", + "stop_name": "boul. De Montarville et François-Gravé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et François-Gravé", + "geography": { + "type": "Point", + "coordinates": [ + -73.4452581334295, + 45.5979449383831 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8043153493181 + }, + "name": "boul. De Montarville et François-Gravé", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445258133, + 45.597944938 + ] + }, + "is_frozen": false, + "integer_id": 1449, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.470702, + 45.582768 + ] + }, + "id": 1450, + "properties": { + "id": "49a50701-87e7-4e72-af25-0a8ac3f9cb08", + "code": "34198", + "data": { + "stops": [ + { + "id": "4198", + "code": "34198", + "data": { + "gtfs": { + "stop_id": "4198", + "stop_code": "34198", + "stop_name": "boul. Marie-Victorin et CIMETIERE PRES DU FLEUVE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et CIMETIERE PRES DU FLEUVE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4707020291749, + 45.582767662742 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5467031329422 + }, + "name": "boul. Marie-Victorin et CIMETIERE PRES DU FLEUVE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.470702029, + 45.582767663 + ] + }, + "is_frozen": false, + "integer_id": 1450, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.501589, + 45.512873 + ] + }, + "id": 1451, + "properties": { + "id": "f4f29738-df3f-4d69-8632-9088ded0dc5a", + "code": "34200", + "data": { + "stops": [ + { + "id": "4200", + "code": "34200", + "data": { + "gtfs": { + "stop_id": "4200", + "stop_code": "34200", + "stop_name": "boul. Taschereau et Saint-Paul", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et Saint-Paul", + "geography": { + "type": "Point", + "coordinates": [ + -73.5015890365608, + 45.5128726899416 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.362993916147 + }, + "name": "boul. Taschereau et Saint-Paul", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.501589037, + 45.51287269 + ] + }, + "is_frozen": false, + "integer_id": 1451, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.513564, + 45.522087 + ] + }, + "id": 1452, + "properties": { + "id": "234e805d-82ab-4d93-bec5-6c8c331d4f7b", + "code": "34202", + "data": { + "stops": [ + { + "id": "4202", + "code": "34202", + "data": { + "gtfs": { + "stop_id": "4202", + "stop_code": "34202", + "stop_name": "Saint-Laurent ouest et Sainte-Hélène", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Sainte-Hélène", + "geography": { + "type": "Point", + "coordinates": [ + -73.5135639137731, + 45.5220865969425 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5187870406463 + }, + "name": "Saint-Laurent ouest et Sainte-Hélène", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.513563914, + 45.522086597 + ] + }, + "is_frozen": false, + "integer_id": 1452, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.384915, + 45.488284 + ] + }, + "id": 1453, + "properties": { + "id": "d664171d-6b67-486f-b850-92d7b923ec60", + "code": "34203", + "data": { + "stops": [ + { + "id": "4203", + "code": "34203", + "data": { + "gtfs": { + "stop_id": "4203", + "stop_code": "34203", + "stop_name": "ch. de Chambly et boul. Moïse-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Moïse-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.3852441634478, + 45.4884394016706 + ] + } + }, + { + "id": "4227", + "code": "34227", + "data": { + "gtfs": { + "stop_id": "4227", + "stop_code": "34227", + "stop_name": "boul. Moïse-Vincent et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Moïse-Vincent et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.3848886458237, + 45.4881283426468 + ] + } + }, + { + "id": "4351", + "code": "34351", + "data": { + "gtfs": { + "stop_id": "4351", + "stop_code": "34351", + "stop_name": "ch. de Chambly et boul. Moïse-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Moïse-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.3845867231281, + 45.4883531775131 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9476044491716 + }, + "name": "ch. de Chambly et boul. Moïse-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.384915443, + 45.488283872 + ] + }, + "is_frozen": false, + "integer_id": 1453, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445268, + 45.531722 + ] + }, + "id": 1454, + "properties": { + "id": "51637772-6b85-4c49-a14a-4de104a8f1f5", + "code": "34204", + "data": { + "stops": [ + { + "id": "4204", + "code": "34204", + "data": { + "gtfs": { + "stop_id": "4204", + "stop_code": "34204", + "stop_name": "Belcourt et Bariteau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et Bariteau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4453125341915, + 45.5318514260197 + ] + } + }, + { + "id": "4888", + "code": "34888", + "data": { + "gtfs": { + "stop_id": "4888", + "stop_code": "34888", + "stop_name": "Belcourt et Bariteau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et Bariteau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4452235732434, + 45.531591588325 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6817795968833 + }, + "name": "Belcourt et Bariteau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445268054, + 45.531721507 + ] + }, + "is_frozen": false, + "integer_id": 1454, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.495177, + 45.528047 + ] + }, + "id": 1455, + "properties": { + "id": "b698a0cc-85d5-482c-b2a6-121d92347ec2", + "code": "34208", + "data": { + "stops": [ + { + "id": "4208", + "code": "34208", + "data": { + "gtfs": { + "stop_id": "4208", + "stop_code": "34208", + "stop_name": "Labonté et de Newhaven", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Labonté et de Newhaven", + "geography": { + "type": "Point", + "coordinates": [ + -73.4955084236162, + 45.5279970506293 + ] + } + }, + { + "id": "4209", + "code": "34209", + "data": { + "gtfs": { + "stop_id": "4209", + "stop_code": "34209", + "stop_name": "Leblanc ouest et Labonté", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Leblanc ouest et Labonté", + "geography": { + "type": "Point", + "coordinates": [ + -73.4948455007259, + 45.5280960049377 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6196086646331 + }, + "name": "Labonté et de Newhaven", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.495177, + 45.528047 + ] + }, + "is_frozen": false, + "integer_id": 1455, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.551585, + 45.490871 + ] + }, + "id": 1456, + "properties": { + "id": "f0399757-57fe-401c-85d1-a8835da56bb7", + "code": "34212", + "data": { + "stops": [ + { + "id": "4212", + "code": "34212", + "data": { + "gtfs": { + "stop_id": "4212", + "stop_code": "34212", + "stop_name": "Mill et Riverside", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Mill et Riverside", + "geography": { + "type": "Point", + "coordinates": [ + -73.5515848521515, + 45.4908709802386 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9912842566822 + }, + "name": "Mill et Riverside", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.551584852, + 45.49087098 + ] + }, + "is_frozen": false, + "integer_id": 1456, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459343, + 45.582574 + ] + }, + "id": 1457, + "properties": { + "id": "6841469f-681d-47f3-a552-9c9ea4973966", + "code": "34223", + "data": { + "stops": [ + { + "id": "4223", + "code": "34223", + "data": { + "gtfs": { + "stop_id": "4223", + "stop_code": "34223", + "stop_name": "De La Barre et De Vaudreuil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Barre et De Vaudreuil", + "geography": { + "type": "Point", + "coordinates": [ + -73.4594117829616, + 45.5825125501106 + ] + } + }, + { + "id": "4706", + "code": "34706", + "data": { + "gtfs": { + "stop_id": "4706", + "stop_code": "34706", + "stop_name": "De La Barre et De Vaudreuil", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Barre et De Vaudreuil", + "geography": { + "type": "Point", + "coordinates": [ + -73.4592739740579, + 45.5826358705184 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5434208794884 + }, + "name": "De La Barre et De Vaudreuil", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459342879, + 45.58257421 + ] + }, + "is_frozen": false, + "integer_id": 1457, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.410823, + 45.496039 + ] + }, + "id": 1458, + "properties": { + "id": "df19b328-a961-4b0c-b128-99b5bcce3403", + "code": "34230", + "data": { + "stops": [ + { + "id": "4230", + "code": "34230", + "data": { + "gtfs": { + "stop_id": "4230", + "stop_code": "34230", + "stop_name": "boul. Cousineau et CARREFOUR SAINT-HUBERT", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et CARREFOUR SAINT-HUBERT", + "geography": { + "type": "Point", + "coordinates": [ + -73.4105599718381, + 45.4960868209741 + ] + } + }, + { + "id": "4231", + "code": "34231", + "data": { + "gtfs": { + "stop_id": "4231", + "stop_code": "34231", + "stop_name": "boul. Cousineau et civique 5925", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et civique 5925", + "geography": { + "type": "Point", + "coordinates": [ + -73.4110854458206, + 45.4959911620395 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0785569468142 + }, + "name": "boul. Cousineau et CARREFOUR SAINT-HUBERT", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.410822709, + 45.496038992 + ] + }, + "is_frozen": false, + "integer_id": 1458, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.425382, + 45.582006 + ] + }, + "id": 1459, + "properties": { + "id": "91fae16f-d2f7-4af8-a4e7-3156976c0aae", + "code": "34232", + "data": { + "stops": [ + { + "id": "4232", + "code": "34232", + "data": { + "gtfs": { + "stop_id": "4232", + "stop_code": "34232", + "stop_name": "boul. De Montarville et civique 1230", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et civique 1230", + "geography": { + "type": "Point", + "coordinates": [ + -73.4253819891378, + 45.5820061594673 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5337831384008 + }, + "name": "boul. De Montarville et civique 1230", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.425381989, + 45.582006159 + ] + }, + "is_frozen": false, + "integer_id": 1459, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.424068, + 45.58114 + ] + }, + "id": 1460, + "properties": { + "id": "cc142acd-cd00-4b27-8c30-0fb03b101fb8", + "code": "34233", + "data": { + "stops": [ + { + "id": "4233", + "code": "34233", + "data": { + "gtfs": { + "stop_id": "4233", + "stop_code": "34233", + "stop_name": "boul. De Montarville et civique 1260", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et civique 1260", + "geography": { + "type": "Point", + "coordinates": [ + -73.4242175122991, + 45.5811522437169 + ] + } + }, + { + "id": "4981", + "code": "34981", + "data": { + "gtfs": { + "stop_id": "4981", + "stop_code": "34981", + "stop_name": "boul. De Montarville et civique 1260", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et civique 1260", + "geography": { + "type": "Point", + "coordinates": [ + -73.4239190765778, + 45.5811275483619 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.519086389647 + }, + "name": "boul. De Montarville et civique 1260", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.424068294, + 45.581139896 + ] + }, + "is_frozen": false, + "integer_id": 1460, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.422922, + 45.58012 + ] + }, + "id": 1461, + "properties": { + "id": "38f108ec-7ce2-4f60-84c9-81ee447773a8", + "code": "34234", + "data": { + "stops": [ + { + "id": "4234", + "code": "34234", + "data": { + "gtfs": { + "stop_id": "4234", + "stop_code": "34234", + "stop_name": "boul. De Montarville et civique 1280", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et civique 1280", + "geography": { + "type": "Point", + "coordinates": [ + -73.4229220043986, + 45.5801203688713 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5017902713935 + }, + "name": "boul. De Montarville et civique 1280", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.422922004, + 45.580120369 + ] + }, + "is_frozen": false, + "integer_id": 1461, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.421819, + 45.579387 + ] + }, + "id": 1462, + "properties": { + "id": "ed651d5d-88ba-4ece-bfe1-02e5832cfee7", + "code": "34235", + "data": { + "stops": [ + { + "id": "4235", + "code": "34235", + "data": { + "gtfs": { + "stop_id": "4235", + "stop_code": "34235", + "stop_name": "boul. De Montarville et de Dijon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et de Dijon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4220662786305, + 45.5794411178336 + ] + } + }, + { + "id": "4979", + "code": "34979", + "data": { + "gtfs": { + "stop_id": "4979", + "stop_code": "34979", + "stop_name": "boul. De Montarville et de Dijon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et de Dijon", + "geography": { + "type": "Point", + "coordinates": [ + -73.421572286344, + 45.579332434714 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4893455544913 + }, + "name": "boul. De Montarville et de Dijon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.421819282, + 45.579386776 + ] + }, + "is_frozen": false, + "integer_id": 1462, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.493912, + 45.496075 + ] + }, + "id": 1463, + "properties": { + "id": "7e2aa9ad-30a3-4e26-acfb-1e284e4a4e01", + "code": "34241", + "data": { + "stops": [ + { + "id": "4241", + "code": "34241", + "data": { + "gtfs": { + "stop_id": "4241", + "stop_code": "34241", + "stop_name": "André-Charpentier et Jeannette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "André-Charpentier et Jeannette", + "geography": { + "type": "Point", + "coordinates": [ + -73.4939119905894, + 45.4960750958404 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0791667219164 + }, + "name": "André-Charpentier et Jeannette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493911991, + 45.496075096 + ] + }, + "is_frozen": false, + "integer_id": 1463, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492252, + 45.497326 + ] + }, + "id": 1464, + "properties": { + "id": "f8a2b8d6-3974-492f-9494-9a40d49bc027", + "code": "34242", + "data": { + "stops": [ + { + "id": "4242", + "code": "34242", + "data": { + "gtfs": { + "stop_id": "4242", + "stop_code": "34242", + "stop_name": "Jeannette et Henri-Sicotte", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jeannette et Henri-Sicotte", + "geography": { + "type": "Point", + "coordinates": [ + -73.4922517976479, + 45.4973256678146 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1002888554557 + }, + "name": "Jeannette et Henri-Sicotte", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492251798, + 45.497325668 + ] + }, + "is_frozen": false, + "integer_id": 1464, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491292, + 45.498224 + ] + }, + "id": 1465, + "properties": { + "id": "5605c306-59ee-41b1-bafb-ef890fa7662b", + "code": "34243", + "data": { + "stops": [ + { + "id": "4243", + "code": "34243", + "data": { + "gtfs": { + "stop_id": "4243", + "stop_code": "34243", + "stop_name": "Jeannette et Bernard-Darche", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jeannette et Bernard-Darche", + "geography": { + "type": "Point", + "coordinates": [ + -73.4912915643952, + 45.4982237588981 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1154584510256 + }, + "name": "Jeannette et Bernard-Darche", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491291564, + 45.498223759 + ] + }, + "is_frozen": false, + "integer_id": 1465, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.489979, + 45.499458 + ] + }, + "id": 1466, + "properties": { + "id": "c90494b0-6ef5-43d3-912f-c60109ccace2", + "code": "34244", + "data": { + "stops": [ + { + "id": "4244", + "code": "34244", + "data": { + "gtfs": { + "stop_id": "4244", + "stop_code": "34244", + "stop_name": "Jeannette et Albert-Bélanger", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jeannette et Albert-Bélanger", + "geography": { + "type": "Point", + "coordinates": [ + -73.4899789340346, + 45.4994582314319 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1363110068787 + }, + "name": "Jeannette et Albert-Bélanger", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.489978934, + 45.499458231 + ] + }, + "is_frozen": false, + "integer_id": 1466, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45741, + 45.450706 + ] + }, + "id": 1467, + "properties": { + "id": "44eacee6-a348-48cf-aeda-c9ddae958f8e", + "code": "34256", + "data": { + "stops": [ + { + "id": "4256", + "code": "34256", + "data": { + "gtfs": { + "stop_id": "4256", + "stop_code": "34256", + "stop_name": "ECOLE SECONDAIRE ANTOINE-BROSSARD", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ECOLE SECONDAIRE ANTOINE-BROSSARD", + "geography": { + "type": "Point", + "coordinates": [ + -73.457409607609, + 45.4507058272198 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3138206351914 + }, + "name": "ECOLE SECONDAIRE ANTOINE-BROSSARD", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457409608, + 45.450705827 + ] + }, + "is_frozen": false, + "integer_id": 1467, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462719, + 45.572965 + ] + }, + "id": 1468, + "properties": { + "id": "6d171932-b1c9-4deb-8ccf-3f09a5ce25f5", + "code": "34267", + "data": { + "stops": [ + { + "id": "4267", + "code": "34267", + "data": { + "gtfs": { + "stop_id": "4267", + "stop_code": "34267", + "stop_name": "de la Province et civique 2412", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Province et civique 2412", + "geography": { + "type": "Point", + "coordinates": [ + -73.4627190492308, + 45.5729648349481 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3804238983888 + }, + "name": "de la Province et civique 2412", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462719049, + 45.572964835 + ] + }, + "is_frozen": false, + "integer_id": 1468, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.420614, + 45.503639 + ] + }, + "id": 1469, + "properties": { + "id": "235a92b0-53e1-410c-b264-d57c7814303c", + "code": "34269", + "data": { + "stops": [ + { + "id": "4269", + "code": "34269", + "data": { + "gtfs": { + "stop_id": "4269", + "stop_code": "34269", + "stop_name": "ch. de Chambly et Gélineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Gélineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4205867484012, + 45.503536774686 + ] + } + }, + { + "id": "4355", + "code": "34355", + "data": { + "gtfs": { + "stop_id": "4355", + "stop_code": "34355", + "stop_name": "ch. de Chambly et Gélineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Gélineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4206410735758, + 45.5037402480331 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2069338756364 + }, + "name": "ch. de Chambly et Gélineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.420613911, + 45.503638511 + ] + }, + "is_frozen": false, + "integer_id": 1469, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445469, + 45.597833 + ] + }, + "id": 1470, + "properties": { + "id": "4c25cc73-ac26-4e31-9812-bc4ad7f583b5", + "code": "34273", + "data": { + "stops": [ + { + "id": "4273", + "code": "34273", + "data": { + "gtfs": { + "stop_id": "4273", + "stop_code": "34273", + "stop_name": "boul. De Montarville et François-Gravé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et François-Gravé", + "geography": { + "type": "Point", + "coordinates": [ + -73.4454691701956, + 45.5978330368193 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8024152376905 + }, + "name": "boul. De Montarville et François-Gravé", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44546917, + 45.597833037 + ] + }, + "is_frozen": false, + "integer_id": 1470, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.409921, + 45.461851 + ] + }, + "id": 1471, + "properties": { + "id": "fee943f3-e127-46e6-bc62-d6c4c320bd7a", + "code": "34278", + "data": { + "stops": [ + { + "id": "4278", + "code": "34278", + "data": { + "gtfs": { + "stop_id": "4278", + "stop_code": "34278", + "stop_name": "J.-A.-Bombardier et civique 5130", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et civique 5130", + "geography": { + "type": "Point", + "coordinates": [ + -73.4099207686587, + 45.4618506635022 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5016564506499 + }, + "name": "J.-A.-Bombardier et civique 5130", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.409920769, + 45.461850664 + ] + }, + "is_frozen": false, + "integer_id": 1471, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446193, + 45.490943 + ] + }, + "id": 1472, + "properties": { + "id": "33d857b4-2e13-426f-b28c-1e46e90fee90", + "code": "34281", + "data": { + "stops": [ + { + "id": "4281", + "code": "34281", + "data": { + "gtfs": { + "stop_id": "4281", + "stop_code": "34281", + "stop_name": "ECOLE SECONDAIRE CENTENNIAL REGIONAL HIGH SCHOOL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ECOLE SECONDAIRE CENTENNIAL REGIONAL HIGH SCHOOL", + "geography": { + "type": "Point", + "coordinates": [ + -73.4461933085387, + 45.4909428589139 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9924979210233 + }, + "name": "ECOLE SECONDAIRE CENTENNIAL REGIONAL HIGH SCHOOL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446193309, + 45.490942859 + ] + }, + "is_frozen": false, + "integer_id": 1472, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.50968, + 45.533792 + ] + }, + "id": 1473, + "properties": { + "id": "0cafd6f5-a2c7-4cf8-830a-6909e29ea5a5", + "code": "34298", + "data": { + "stops": [ + { + "id": "4298", + "code": "34298", + "data": { + "gtfs": { + "stop_id": "4298", + "stop_code": "34298", + "stop_name": "Saint-Laurent ouest et Labonté", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Labonté", + "geography": { + "type": "Point", + "coordinates": [ + -73.5097032687618, + 45.5336143933144 + ] + } + }, + { + "id": "4299", + "code": "34299", + "data": { + "gtfs": { + "stop_id": "4299", + "stop_code": "34299", + "stop_name": "Saint-Laurent ouest et Labonté", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Laurent ouest et Labonté", + "geography": { + "type": "Point", + "coordinates": [ + -73.5096576160345, + 45.5339698332566 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7168166685267 + }, + "name": "Saint-Laurent ouest et Labonté", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.50968, + 45.533792 + ] + }, + "is_frozen": false, + "integer_id": 1473, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.480949, + 45.563558 + ] + }, + "id": 1474, + "properties": { + "id": "9d19395e-81cd-4b78-af4a-b6c8e4259c9c", + "code": "34300", + "data": { + "stops": [ + { + "id": "4300", + "code": "34300", + "data": { + "gtfs": { + "stop_id": "4300", + "stop_code": "34300", + "stop_name": "Adoncour et des Corbeaux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et des Corbeaux", + "geography": { + "type": "Point", + "coordinates": [ + -73.4809490570639, + 45.5635578795072 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2209403872621 + }, + "name": "Adoncour et des Corbeaux", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.480949057, + 45.56355788 + ] + }, + "is_frozen": false, + "integer_id": 1474, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.483569, + 45.561044 + ] + }, + "id": 1475, + "properties": { + "id": "527ca44e-8da2-49e9-b2e4-033371d02c50", + "code": "34301", + "data": { + "stops": [ + { + "id": "4301", + "code": "34301", + "data": { + "gtfs": { + "stop_id": "4301", + "stop_code": "34301", + "stop_name": "Adoncour / PISTE CYCLABLE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour / PISTE CYCLABLE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4835688334894, + 45.5610441619397 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1783367362899 + }, + "name": "Adoncour / PISTE CYCLABLE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.483568833, + 45.561044162 + ] + }, + "is_frozen": false, + "integer_id": 1475, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.41616, + 45.527421 + ] + }, + "id": 1476, + "properties": { + "id": "d488b16d-4bf0-4526-8c06-e8192c180e3b", + "code": "34305", + "data": { + "stops": [ + { + "id": "4305", + "code": "34305", + "data": { + "gtfs": { + "stop_id": "4305", + "stop_code": "34305", + "stop_name": "ch. de la Savane et civique 6155", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et civique 6155", + "geography": { + "type": "Point", + "coordinates": [ + -73.4163992238381, + 45.5274341865589 + ] + } + }, + { + "id": "4306", + "code": "34306", + "data": { + "gtfs": { + "stop_id": "4306", + "stop_code": "34306", + "stop_name": "ch. de la Savane et civique 6155", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et civique 6155", + "geography": { + "type": "Point", + "coordinates": [ + -73.4159216101693, + 45.5274083624743 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6090228909513 + }, + "name": "ch. de la Savane et civique 6155", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.416160417, + 45.527421275 + ] + }, + "is_frozen": false, + "integer_id": 1476, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.501251, + 45.534713 + ] + }, + "id": 1477, + "properties": { + "id": "ba31b8f9-0d39-4bdd-b821-6bb787db72e9", + "code": "34333", + "data": { + "stops": [ + { + "id": "4333", + "code": "34333", + "data": { + "gtfs": { + "stop_id": "4333", + "stop_code": "34333", + "stop_name": "Le Moyne ouest et Saint-Jacques", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne ouest et Saint-Jacques", + "geography": { + "type": "Point", + "coordinates": [ + -73.5012869221639, + 45.5348063871746 + ] + } + }, + { + "id": "4813", + "code": "34813", + "data": { + "gtfs": { + "stop_id": "4813", + "stop_code": "34813", + "stop_name": "Le Moyne ouest et Saint-Jacques", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne ouest et Saint-Jacques", + "geography": { + "type": "Point", + "coordinates": [ + -73.5012160186326, + 45.5346202033676 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7324031430629 + }, + "name": "Le Moyne ouest et Saint-Jacques", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.501251, + 45.534713 + ] + }, + "is_frozen": false, + "integer_id": 1477, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46372, + 45.459418 + ] + }, + "id": 1478, + "properties": { + "id": "80775ca9-8434-48d9-a65d-5f3eace6e2d8", + "code": "34339", + "data": { + "stops": [ + { + "id": "4339", + "code": "34339", + "data": { + "gtfs": { + "stop_id": "4339", + "stop_code": "34339", + "stop_name": "Mario et civique 2100", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Mario et civique 2100", + "geography": { + "type": "Point", + "coordinates": [ + -73.463719505439, + 45.4594175005112 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4606383571124 + }, + "name": "Mario et civique 2100", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463719505, + 45.459417501 + ] + }, + "is_frozen": false, + "integer_id": 1478, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491657, + 45.501727 + ] + }, + "id": 1479, + "properties": { + "id": "800c7491-9914-4c1b-98fa-05ef8ea6fc69", + "code": "34342", + "data": { + "stops": [ + { + "id": "4342", + "code": "34342", + "data": { + "gtfs": { + "stop_id": "4342", + "stop_code": "34342", + "stop_name": "Charron et civique 289", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Charron et civique 289", + "geography": { + "type": "Point", + "coordinates": [ + -73.4916567848488, + 45.5017268913437 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1746364805379 + }, + "name": "Charron et civique 289", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491656785, + 45.501726891 + ] + }, + "is_frozen": false, + "integer_id": 1479, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.493878, + 45.49968 + ] + }, + "id": 1480, + "properties": { + "id": "eeaa7f8b-2fd2-49cc-ba6a-d6a6a5274e6b", + "code": "34343", + "data": { + "stops": [ + { + "id": "4343", + "code": "34343", + "data": { + "gtfs": { + "stop_id": "4343", + "stop_code": "34343", + "stop_name": "Charron et Bernard-Darche", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Charron et Bernard-Darche", + "geography": { + "type": "Point", + "coordinates": [ + -73.4938783433032, + 45.4996798108875 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1400540537111 + }, + "name": "Charron et Bernard-Darche", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493878343, + 45.499679811 + ] + }, + "is_frozen": false, + "integer_id": 1480, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.495037, + 45.498581 + ] + }, + "id": 1481, + "properties": { + "id": "038ad1c0-bc4e-4528-8949-777db666b0b5", + "code": "34344", + "data": { + "stops": [ + { + "id": "4344", + "code": "34344", + "data": { + "gtfs": { + "stop_id": "4344", + "stop_code": "34344", + "stop_name": "Charron et civique 165", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Charron et civique 165", + "geography": { + "type": "Point", + "coordinates": [ + -73.4950373316814, + 45.4985811823239 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.121495858856 + }, + "name": "Charron et civique 165", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.495037332, + 45.498581182 + ] + }, + "is_frozen": false, + "integer_id": 1481, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.496232, + 45.497463 + ] + }, + "id": 1482, + "properties": { + "id": "6bf17878-7313-4796-a2ad-a20a58f89e02", + "code": "34345", + "data": { + "stops": [ + { + "id": "4345", + "code": "34345", + "data": { + "gtfs": { + "stop_id": "4345", + "stop_code": "34345", + "stop_name": "Charron et André-Charpentier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Charron et André-Charpentier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4962322425974, + 45.4974627176186 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1026037115282 + }, + "name": "Charron et André-Charpentier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.496232243, + 45.497462718 + ] + }, + "is_frozen": false, + "integer_id": 1482, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.49491, + 45.496552 + ] + }, + "id": 1483, + "properties": { + "id": "b3c7372b-3c0a-4cb2-bef2-6f11825f858a", + "code": "34346", + "data": { + "stops": [ + { + "id": "4346", + "code": "34346", + "data": { + "gtfs": { + "stop_id": "4346", + "stop_code": "34346", + "stop_name": "André-Charpentier et Roy", + "location_type": 0, + "parent_station": "" + } + }, + "name": "André-Charpentier et Roy", + "geography": { + "type": "Point", + "coordinates": [ + -73.4949095028271, + 45.4965515734009 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.087214243894 + }, + "name": "André-Charpentier et Roy", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494909503, + 45.496551573 + ] + }, + "is_frozen": false, + "integer_id": 1483, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.488286, + 45.501025 + ] + }, + "id": 1484, + "properties": { + "id": "71e7c9ac-fe80-497a-a057-1eb12ce8ef13", + "code": "34347", + "data": { + "stops": [ + { + "id": "4347", + "code": "34347", + "data": { + "gtfs": { + "stop_id": "4347", + "stop_code": "34347", + "stop_name": "Jeannette et Saint-Georges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jeannette et Saint-Georges", + "geography": { + "type": "Point", + "coordinates": [ + -73.4882856519609, + 45.5010245079492 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1627703253647 + }, + "name": "Jeannette et Saint-Georges", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.488285652, + 45.501024508 + ] + }, + "is_frozen": false, + "integer_id": 1484, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.518164, + 45.515326 + ] + }, + "id": 1485, + "properties": { + "id": "2259b112-2e60-4bcc-ad14-9e0e577f2909", + "code": "34349", + "data": { + "stops": [ + { + "id": "4349", + "code": "34349", + "data": { + "gtfs": { + "stop_id": "4349", + "stop_code": "34349", + "stop_name": "Riverside et av. Durocher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Riverside et av. Durocher", + "geography": { + "type": "Point", + "coordinates": [ + -73.518164148157, + 45.5153263828832 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4044747373796 + }, + "name": "Riverside et av. Durocher", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.518164148, + 45.515326383 + ] + }, + "is_frozen": false, + "integer_id": 1485, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465119, + 45.522601 + ] + }, + "id": 1486, + "properties": { + "id": "130245ae-209b-4e27-b903-ff57832b92eb", + "code": "34354", + "data": { + "stops": [ + { + "id": "4354", + "code": "34354", + "data": { + "gtfs": { + "stop_id": "4354", + "stop_code": "34354", + "stop_name": "ch. de Chambly et boul. Jacques-Cartier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Jacques-Cartier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4651188612063, + 45.5226012942839 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5274920129636 + }, + "name": "ch. de Chambly et boul. Jacques-Cartier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465118861, + 45.522601294 + ] + }, + "is_frozen": false, + "integer_id": 1486, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469066, + 45.503106 + ] + }, + "id": 1487, + "properties": { + "id": "c17cc951-65ff-4617-a096-ccd1fe6cc26f", + "code": "34358", + "data": { + "stops": [ + { + "id": "4358", + "code": "34358", + "data": { + "gtfs": { + "stop_id": "4358", + "stop_code": "34358", + "stop_name": "Elizabeth et boul. Édouard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Elizabeth et boul. Édouard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4690104406636, + 45.5028233161761 + ] + } + }, + { + "id": "4407", + "code": "34407", + "data": { + "gtfs": { + "stop_id": "4407", + "stop_code": "34407", + "stop_name": "boul. Édouard et Elizabeth", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Édouard et Elizabeth", + "geography": { + "type": "Point", + "coordinates": [ + -73.4691211169917, + 45.503388613134 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1979360239251 + }, + "name": "Elizabeth et boul. Édouard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469065779, + 45.503105965 + ] + }, + "is_frozen": false, + "integer_id": 1487, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443222, + 45.524514 + ] + }, + "id": 1488, + "properties": { + "id": "02782fd4-ecd8-4615-9b7e-14ae16ac51bd", + "code": "34363", + "data": { + "stops": [ + { + "id": "4363", + "code": "34363", + "data": { + "gtfs": { + "stop_id": "4363", + "stop_code": "34363", + "stop_name": "boul. Roberval est et boul. Roland-Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et boul. Roland-Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4432223658282, + 45.5245135280294 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5598353301402 + }, + "name": "boul. Roberval est et boul. Roland-Therrien", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443222366, + 45.524513528 + ] + }, + "is_frozen": false, + "integer_id": 1488, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464661, + 45.488945 + ] + }, + "id": 1489, + "properties": { + "id": "e49dac95-6777-4527-88d9-43533c4c81ab", + "code": "34365", + "data": { + "stops": [ + { + "id": "4365", + "code": "34365", + "data": { + "gtfs": { + "stop_id": "4365", + "stop_code": "34365", + "stop_name": "Grande Allée et Murray", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Murray", + "geography": { + "type": "Point", + "coordinates": [ + -73.4646799263347, + 45.4891482867991 + ] + } + }, + { + "id": "4366", + "code": "34366", + "data": { + "gtfs": { + "stop_id": "4366", + "stop_code": "34366", + "stop_name": "Grande Allée et Murray", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Murray", + "geography": { + "type": "Point", + "coordinates": [ + -73.4649487213269, + 45.4891373527896 + ] + } + }, + { + "id": "4929", + "code": "34929", + "data": { + "gtfs": { + "stop_id": "4929", + "stop_code": "34929", + "stop_name": "Robillard et Grande Allée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Robillard et Grande Allée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4643741551755, + 45.4887420385887 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9587688840459 + }, + "name": "Grande Allée et Murray", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464661438, + 45.488945163 + ] + }, + "is_frozen": false, + "integer_id": 1489, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462635, + 45.455194 + ] + }, + "id": 1490, + "properties": { + "id": "5b030db6-8eaf-4505-a2c0-5a5290886d5b", + "code": "34367", + "data": { + "stops": [ + { + "id": "4367", + "code": "34367", + "data": { + "gtfs": { + "stop_id": "4367", + "stop_code": "34367", + "stop_name": "av. Malo et place Marengo", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Malo et place Marengo", + "geography": { + "type": "Point", + "coordinates": [ + -73.4626351571765, + 45.4551939529973 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3894505519817 + }, + "name": "av. Malo et place Marengo", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462635157, + 45.455193953 + ] + }, + "is_frozen": false, + "integer_id": 1490, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.41627, + 45.56992 + ] + }, + "id": 1491, + "properties": { + "id": "fb50e5b2-5326-4cb9-9888-65bcbf9b9592", + "code": "34371", + "data": { + "stops": [ + { + "id": "4371", + "code": "34371", + "data": { + "gtfs": { + "stop_id": "4371", + "stop_code": "34371", + "stop_name": "Ampère et civique 1501", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ampère et civique 1501", + "geography": { + "type": "Point", + "coordinates": [ + -73.4165667826554, + 45.5697748910395 + ] + } + }, + { + "id": "5090", + "code": "35090", + "data": { + "gtfs": { + "stop_id": "5090", + "stop_code": "35090", + "stop_name": "Ampère et civique 1501", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ampère et civique 1501", + "geography": { + "type": "Point", + "coordinates": [ + -73.4159729214655, + 45.5700647876114 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3287910277044 + }, + "name": "Ampère et civique 1501", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.416269852, + 45.569919839 + ] + }, + "is_frozen": false, + "integer_id": 1491, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.377512, + 45.496197 + ] + }, + "id": 1492, + "properties": { + "id": "afdaecf9-9edf-499b-a1d1-693abc0ee347", + "code": "34374", + "data": { + "stops": [ + { + "id": "4374", + "code": "34374", + "data": { + "gtfs": { + "stop_id": "4374", + "stop_code": "34374", + "stop_name": "boul. des Promenades et Brault et Martineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. des Promenades et Brault et Martineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3776308542124, + 45.4963213095156 + ] + } + }, + { + "id": "4375", + "code": "34375", + "data": { + "gtfs": { + "stop_id": "4375", + "stop_code": "34375", + "stop_name": "boul. des Promenades et Brault et Martineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. des Promenades et Brault et Martineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3773941104527, + 45.4960724215237 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0812233533956 + }, + "name": "boul. des Promenades et Brault et Martineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.377512482, + 45.496196866 + ] + }, + "is_frozen": false, + "integer_id": 1492, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.402742, + 45.473607 + ] + }, + "id": 1493, + "properties": { + "id": "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", + "code": "34376", + "data": { + "stops": [ + { + "id": "4376", + "code": "34376", + "data": { + "gtfs": { + "stop_id": "4376", + "stop_code": "34376", + "stop_name": "boul. Maricourt et boul. Moïse-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Maricourt et boul. Moïse-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4031174631615, + 45.4732123414164 + ] + } + }, + { + "id": "4377", + "code": "34377", + "data": { + "gtfs": { + "stop_id": "4377", + "stop_code": "34377", + "stop_name": "boul. Maricourt et boul. Moïse-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Maricourt et boul. Moïse-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.40262952815, + 45.4731976297525 + ] + } + }, + { + "id": "4673", + "code": "34673", + "data": { + "gtfs": { + "stop_id": "4673", + "stop_code": "34673", + "stop_name": "boul. Moïse-Vincent et des Pâquerettes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Moïse-Vincent et des Pâquerettes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4024824859123, + 45.4735546169902 + ] + } + }, + { + "id": "4689", + "code": "34689", + "data": { + "gtfs": { + "stop_id": "4689", + "stop_code": "34689", + "stop_name": "boul. Moïse-Vincent et des Pâquerettes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Moïse-Vincent et des Pâquerettes", + "geography": { + "type": "Point", + "coordinates": [ + -73.402367187658, + 45.4740153700887 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 1045.769900518842 + }, + "name": "boul. Maricourt et boul. Moïse-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.402742325, + 45.4736065 + ] + }, + "is_frozen": false, + "integer_id": 1493, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 55, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468927, + 45.585918 + ] + }, + "id": 1494, + "properties": { + "id": "294d6510-b687-486c-b1aa-a7e5b91bdac4", + "code": "34379", + "data": { + "stops": [ + { + "id": "4379", + "code": "34379", + "data": { + "gtfs": { + "stop_id": "4379", + "stop_code": "34379", + "stop_name": "boul. Marie-Victorin et GROUPE ROBERT TRANSPORT INC.", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et GROUPE ROBERT TRANSPORT INC.", + "geography": { + "type": "Point", + "coordinates": [ + -73.4689271299144, + 45.5859184961767 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6001669941757 + }, + "name": "boul. Marie-Victorin et GROUPE ROBERT TRANSPORT INC.", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46892713, + 45.585918496 + ] + }, + "is_frozen": false, + "integer_id": 1494, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.431919, + 45.594557 + ] + }, + "id": 1495, + "properties": { + "id": "dbda0ea8-08e6-4d52-b455-3b21aae9d561", + "code": "34381", + "data": { + "stops": [ + { + "id": "4381", + "code": "34381", + "data": { + "gtfs": { + "stop_id": "4381", + "stop_code": "34381", + "stop_name": "boul. de Mortagne et Charcot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Charcot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4319694046179, + 45.5944105616647 + ] + } + }, + { + "id": "4963", + "code": "34963", + "data": { + "gtfs": { + "stop_id": "4963", + "stop_code": "34963", + "stop_name": "boul. de Mortagne et Charcot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Charcot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4318691984058, + 45.5947044120494 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7468004106119 + }, + "name": "boul. de Mortagne et Charcot", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431919302, + 45.594557487 + ] + }, + "is_frozen": false, + "integer_id": 1495, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.429071, + 45.597131 + ] + }, + "id": 1496, + "properties": { + "id": "92d27f4f-1792-4dbb-8e38-aef6410a23d1", + "code": "34383", + "data": { + "stops": [ + { + "id": "4383", + "code": "34383", + "data": { + "gtfs": { + "stop_id": "4383", + "stop_code": "34383", + "stop_name": "boul. de Mortagne et Emma-Lajeunesse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Emma-Lajeunesse", + "geography": { + "type": "Point", + "coordinates": [ + -73.429213457439, + 45.5970459764531 + ] + } + }, + { + "id": "4962", + "code": "34962", + "data": { + "gtfs": { + "stop_id": "4962", + "stop_code": "34962", + "stop_name": "Emma-Lajeunesse et boul. de Mortagne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Emma-Lajeunesse et boul. de Mortagne", + "geography": { + "type": "Point", + "coordinates": [ + -73.428928966175, + 45.5972159096315 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7904937326065 + }, + "name": "boul. de Mortagne et Emma-Lajeunesse", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.429071212, + 45.597130943 + ] + }, + "is_frozen": false, + "integer_id": 1496, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.497216, + 45.535742 + ] + }, + "id": 1497, + "properties": { + "id": "25e9b688-116d-4828-87b8-e7d0946c452f", + "code": "34388", + "data": { + "stops": [ + { + "id": "4388", + "code": "34388", + "data": { + "gtfs": { + "stop_id": "4388", + "stop_code": "34388", + "stop_name": "ch. de Chambly et De Gentilly ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et De Gentilly ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4972162162563, + 45.5357420110802 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7498184284053 + }, + "name": "ch. de Chambly et De Gentilly ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.497216216, + 45.535742011 + ] + }, + "is_frozen": false, + "integer_id": 1497, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.407368, + 45.475753 + ] + }, + "id": 1498, + "properties": { + "id": "7c3e8b4c-c373-431f-8a27-ba6c2f349e5b", + "code": "34389", + "data": { + "stops": [ + { + "id": "4389", + "code": "34389", + "data": { + "gtfs": { + "stop_id": "4389", + "stop_code": "34389", + "stop_name": "boul. Maricourt et Cornwall", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Maricourt et Cornwall", + "geography": { + "type": "Point", + "coordinates": [ + -73.4073681927755, + 45.4757530597565 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7361228935531 + }, + "name": "boul. Maricourt et Cornwall", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.407368193, + 45.47575306 + ] + }, + "is_frozen": false, + "integer_id": 1498, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.515377, + 45.537322 + ] + }, + "id": 1499, + "properties": { + "id": "28d90293-1261-41be-a75c-5fc82c3acd49", + "code": "34390", + "data": { + "stops": [ + { + "id": "4390", + "code": "34390", + "data": { + "gtfs": { + "stop_id": "4390", + "stop_code": "34390", + "stop_name": "du Bord-de-l'Eau ouest et Saint-Sylvestre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau ouest et Saint-Sylvestre", + "geography": { + "type": "Point", + "coordinates": [ + -73.5153700890574, + 45.5371964067391 + ] + } + }, + { + "id": "4391", + "code": "34391", + "data": { + "gtfs": { + "stop_id": "4391", + "stop_code": "34391", + "stop_name": "du Bord-de-l'Eau ouest et Saint-Sylvestre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Bord-de-l'Eau ouest et Saint-Sylvestre", + "geography": { + "type": "Point", + "coordinates": [ + -73.515383415362, + 45.5374484818519 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7765679811973 + }, + "name": "du Bord-de-l'Eau ouest et Saint-Sylvestre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.515376752, + 45.537322444 + ] + }, + "is_frozen": false, + "integer_id": 1499, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.427557, + 45.520443 + ] + }, + "id": 1500, + "properties": { + "id": "d8268f60-1558-45f9-8a7a-1fd3cd695326", + "code": "34393", + "data": { + "stops": [ + { + "id": "4393", + "code": "34393", + "data": { + "gtfs": { + "stop_id": "4393", + "stop_code": "34393", + "stop_name": "ch. de la Savane et civique 4797", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et civique 4797", + "geography": { + "type": "Point", + "coordinates": [ + -73.4275568271271, + 45.5204425470061 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4909831173683 + }, + "name": "ch. de la Savane et civique 4797", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.427556827, + 45.520442547 + ] + }, + "is_frozen": false, + "integer_id": 1500, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.427421, + 45.520429 + ] + }, + "id": 1501, + "properties": { + "id": "23054239-a5b5-43b6-a4dd-70fd7b62e6fb", + "code": "34394", + "data": { + "stops": [ + { + "id": "4394", + "code": "34394", + "data": { + "gtfs": { + "stop_id": "4394", + "stop_code": "34394", + "stop_name": "ch. de la Savane et civique 4797", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et civique 4797", + "geography": { + "type": "Point", + "coordinates": [ + -73.427420845301, + 45.5204292753294 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4907586731243 + }, + "name": "ch. de la Savane et civique 4797", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.427420845, + 45.520429275 + ] + }, + "is_frozen": false, + "integer_id": 1501, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.499366, + 45.537054 + ] + }, + "id": 1502, + "properties": { + "id": "02ddb4e4-c9f0-483c-9ae1-3f0d44c6367b", + "code": "34401", + "data": { + "stops": [ + { + "id": "4401", + "code": "34401", + "data": { + "gtfs": { + "stop_id": "4401", + "stop_code": "34401", + "stop_name": "Le Moyne est et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne est et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4993656561675, + 45.5370542154376 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7720279254867 + }, + "name": "Le Moyne est et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.499365656, + 45.537054215 + ] + }, + "is_frozen": false, + "integer_id": 1502, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.509489, + 45.515308 + ] + }, + "id": 1503, + "properties": { + "id": "f9358f54-8643-47f5-b0df-4a20b46cc22d", + "code": "34402", + "data": { + "stops": [ + { + "id": "4402", + "code": "34402", + "data": { + "gtfs": { + "stop_id": "4402", + "stop_code": "34402", + "stop_name": "boul. Taschereau et COLLEGE CHARLES-LEMOYNE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et COLLEGE CHARLES-LEMOYNE", + "geography": { + "type": "Point", + "coordinates": [ + -73.5094892569121, + 45.5153077236766 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4041592780743 + }, + "name": "boul. Taschereau et COLLEGE CHARLES-LEMOYNE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.509489257, + 45.515307724 + ] + }, + "is_frozen": false, + "integer_id": 1503, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.398276, + 45.567725 + ] + }, + "id": 1504, + "properties": { + "id": "a913c5ce-8de0-458e-a9ee-4ae555d41e98", + "code": "34404", + "data": { + "stops": [ + { + "id": "4404", + "code": "34404", + "data": { + "gtfs": { + "stop_id": "4404", + "stop_code": "34404", + "stop_name": "Louis-Pasteur et GROUPE V. A. INC.", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Louis-Pasteur et GROUPE V. A. INC.", + "geography": { + "type": "Point", + "coordinates": [ + -73.3981465799693, + 45.5678825391699 + ] + } + }, + { + "id": "4916", + "code": "34916", + "data": { + "gtfs": { + "stop_id": "4916", + "stop_code": "34916", + "stop_name": "Louis-Pasteur et GROUPE V. A. INC.", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Louis-Pasteur et GROUPE V. A. INC.", + "geography": { + "type": "Point", + "coordinates": [ + -73.3984045295029, + 45.5675678489764 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2915823836342 + }, + "name": "Louis-Pasteur et GROUPE V. A. INC.", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.398275555, + 45.567725194 + ] + }, + "is_frozen": false, + "integer_id": 1504, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.430911, + 45.603004 + ] + }, + "id": 1505, + "properties": { + "id": "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", + "code": "34405", + "data": { + "stops": [ + { + "id": "4405", + "code": "34405", + "data": { + "gtfs": { + "stop_id": "4405", + "stop_code": "34405", + "stop_name": "Jacques-Cartier et Étienne-Brûlé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jacques-Cartier et Étienne-Brûlé", + "geography": { + "type": "Point", + "coordinates": [ + -73.4312944431089, + 45.6028736952212 + ] + } + }, + { + "id": "4423", + "code": "34423", + "data": { + "gtfs": { + "stop_id": "4423", + "stop_code": "34423", + "stop_name": "Jacques-Cartier et Radisson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jacques-Cartier et Radisson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4305283709595, + 45.6031344499693 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8902326520713 + }, + "name": "Jacques-Cartier et Étienne-Brûlé", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.430911407, + 45.603004073 + ] + }, + "is_frozen": false, + "integer_id": 1505, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.462698, + 45.505084 + ] + }, + "id": 1506, + "properties": { + "id": "d283f176-a2d6-456a-b4b2-f380ae924031", + "code": "34408", + "data": { + "stops": [ + { + "id": "4408", + "code": "34408", + "data": { + "gtfs": { + "stop_id": "4408", + "stop_code": "34408", + "stop_name": "boul. Édouard et Viaduc rte 116", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Édouard et Viaduc rte 116", + "geography": { + "type": "Point", + "coordinates": [ + -73.4626981226385, + 45.5050838727809 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2313558606769 + }, + "name": "boul. Édouard et Viaduc rte 116", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462698123, + 45.505083873 + ] + }, + "is_frozen": false, + "integer_id": 1506, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453497, + 45.506247 + ] + }, + "id": 1507, + "properties": { + "id": "a4e1d210-6aad-44a6-b6a6-31d75e66d6c9", + "code": "34409", + "data": { + "stops": [ + { + "id": "4409", + "code": "34409", + "data": { + "gtfs": { + "stop_id": "4409", + "stop_code": "34409", + "stop_name": "boul. Sir-Wilfrid-Laurier et civique 3590", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier et civique 3590", + "geography": { + "type": "Point", + "coordinates": [ + -73.4534974754888, + 45.5062471014656 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2510120358528 + }, + "name": "boul. Sir-Wilfrid-Laurier et civique 3590", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453497475, + 45.506247101 + ] + }, + "is_frozen": false, + "integer_id": 1507, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.419489, + 45.481272 + ] + }, + "id": 1508, + "properties": { + "id": "784376eb-c666-4a01-b5d4-f21e9880ab84", + "code": "34411", + "data": { + "stops": [ + { + "id": "4411", + "code": "34411", + "data": { + "gtfs": { + "stop_id": "4411", + "stop_code": "34411", + "stop_name": "Beauséjour et av. Brabant", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauséjour et av. Brabant", + "geography": { + "type": "Point", + "coordinates": [ + -73.4194894110944, + 45.481272248182 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.829252610797 + }, + "name": "Beauséjour et av. Brabant", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.419489411, + 45.481272248 + ] + }, + "is_frozen": false, + "integer_id": 1508, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.520803, + 45.523528 + ] + }, + "id": 1509, + "properties": { + "id": "acabc807-b0f5-4579-b183-cef0484a7cc2", + "code": "34417", + "data": { + "stops": [ + { + "id": "4417", + "code": "34417", + "data": { + "gtfs": { + "stop_id": "4417", + "stop_code": "34417", + "stop_name": "TERMINUS LONGUEUIL", + "location_type": 0, + "parent_station": "9999" + } + }, + "name": "TERMINUS LONGUEUIL", + "geography": { + "type": "Point", + "coordinates": [ + -73.5208026778995, + 45.5235276580726 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5431600256238 + }, + "name": "TERMINUS LONGUEUIL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.520802678, + 45.523527658 + ] + }, + "is_frozen": false, + "integer_id": 1509, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.522603, + 45.524046 + ] + }, + "id": 1510, + "properties": { + "id": "4c755ece-2475-4915-941e-37859f0f391f", + "code": "34418", + "data": { + "stops": [ + { + "id": "4418", + "code": "34418", + "data": { + "gtfs": { + "stop_id": "4418", + "stop_code": "34418", + "stop_name": "TERMINUS LONGUEUIL", + "location_type": 0, + "parent_station": "9999" + } + }, + "name": "TERMINUS LONGUEUIL", + "geography": { + "type": "Point", + "coordinates": [ + -73.5226031192278, + 45.5240462355937 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5519313033911 + }, + "name": "TERMINUS LONGUEUIL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.522603119, + 45.524046236 + ] + }, + "is_frozen": false, + "integer_id": 1510, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.476317, + 45.46211 + ] + }, + "id": 1511, + "properties": { + "id": "ff23cabb-ca11-421b-a582-f6413aa21fa0", + "code": "34426", + "data": { + "stops": [ + { + "id": "4426", + "code": "34426", + "data": { + "gtfs": { + "stop_id": "4426", + "stop_code": "34426", + "stop_name": "Tunisie et boul. Pelletier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Tunisie et boul. Pelletier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4763171114811, + 45.4621100079241 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5060287637441 + }, + "name": "Tunisie et boul. Pelletier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.476317111, + 45.462110008 + ] + }, + "is_frozen": false, + "integer_id": 1511, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.494413, + 45.504599 + ] + }, + "id": 1512, + "properties": { + "id": "36bd50e2-1478-4fd8-8def-c1c8e0359032", + "code": "34427", + "data": { + "stops": [ + { + "id": "4427", + "code": "34427", + "data": { + "gtfs": { + "stop_id": "4427", + "stop_code": "34427", + "stop_name": "Saint-Georges et Saint-Gérald", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Georges et Saint-Gérald", + "geography": { + "type": "Point", + "coordinates": [ + -73.494203293817, + 45.5042801897836 + ] + } + }, + { + "id": "4526", + "code": "34526", + "data": { + "gtfs": { + "stop_id": "4526", + "stop_code": "34526", + "stop_name": "Saint-Georges et av. Saint-Charles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Saint-Georges et av. Saint-Charles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4946218110926, + 45.5049184777367 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2231684974662 + }, + "name": "Saint-Georges et Saint-Gérald", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.494412552, + 45.504599334 + ] + }, + "is_frozen": false, + "integer_id": 1512, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469178, + 45.466071 + ] + }, + "id": 1513, + "properties": { + "id": "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", + "code": "34429", + "data": { + "stops": [ + { + "id": "4429", + "code": "34429", + "data": { + "gtfs": { + "stop_id": "4429", + "stop_code": "34429", + "stop_name": "TERMINUS PANAMA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "TERMINUS PANAMA", + "geography": { + "type": "Point", + "coordinates": [ + -73.4691926705555, + 45.4658981396387 + ] + } + }, + { + "id": "5900", + "code": "30778", + "data": { + "gtfs": { + "stop_id": "5900", + "stop_code": "30778", + "stop_name": "TERMINUS PANAMA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "TERMINUS PANAMA", + "geography": { + "type": "Point", + "coordinates": [ + -73.4691623542268, + 45.4662442871241 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5728186370685 + }, + "name": "TERMINUS PANAMA", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469177512, + 45.466071213 + ] + }, + "is_frozen": false, + "integer_id": 1513, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466363, + 45.455438 + ] + }, + "id": 1514, + "properties": { + "id": "8443a69f-fccf-4a19-8d08-6da77269e686", + "code": "34430", + "data": { + "stops": [ + { + "id": "4430", + "code": "34430", + "data": { + "gtfs": { + "stop_id": "4430", + "stop_code": "34430", + "stop_name": "boul. de Rome et boul. Taschereau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et boul. Taschereau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4663632624513, + 45.4554380776142 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3935648422898 + }, + "name": "boul. de Rome et boul. Taschereau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466363262, + 45.455438078 + ] + }, + "is_frozen": false, + "integer_id": 1514, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469053, + 45.443163 + ] + }, + "id": 1515, + "properties": { + "id": "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", + "code": "34431", + "data": { + "stops": [ + { + "id": "4431", + "code": "34431", + "data": { + "gtfs": { + "stop_id": "4431", + "stop_code": "34431", + "stop_name": "av. Océanie et Orsini", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Océanie et Orsini", + "geography": { + "type": "Point", + "coordinates": [ + -73.4690435398486, + 45.4429880359397 + ] + } + }, + { + "id": "5375", + "code": "30115", + "data": { + "gtfs": { + "stop_id": "5375", + "stop_code": "30115", + "stop_name": "av. Océanie et Orsini", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Océanie et Orsini", + "geography": { + "type": "Point", + "coordinates": [ + -73.4690627407246, + 45.4433372927946 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1867501904293 + }, + "name": "av. Océanie et Orsini", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46905314, + 45.443162664 + ] + }, + "is_frozen": false, + "integer_id": 1515, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457751, + 45.536226 + ] + }, + "id": 1516, + "properties": { + "id": "8a5c9ba1-a597-4c12-90c9-b58f8d4f8d95", + "code": "34434", + "data": { + "stops": [ + { + "id": "4434", + "code": "34434", + "data": { + "gtfs": { + "stop_id": "4434", + "stop_code": "34434", + "stop_name": "boul. Jacques-Cartier est et CLSC SIMONNE-MONET-CHARTRAND", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et CLSC SIMONNE-MONET-CHARTRAND", + "geography": { + "type": "Point", + "coordinates": [ + -73.4577514431974, + 45.5362261160847 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7580118906998 + }, + "name": "boul. Jacques-Cartier est et CLSC SIMONNE-MONET-CHARTRAND", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457751443, + 45.536226116 + ] + }, + "is_frozen": false, + "integer_id": 1516, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461097, + 45.594586 + ] + }, + "id": 1517, + "properties": { + "id": "0c601e52-04e5-43e0-9137-7225c37d4cdc", + "code": "34435", + "data": { + "stops": [ + { + "id": "4435", + "code": "34435", + "data": { + "gtfs": { + "stop_id": "4435", + "stop_code": "34435", + "stop_name": "boul. Marie-Victorin et rte 132 ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et rte 132 ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4610242534824, + 45.5944569284663 + ] + } + }, + { + "id": "5471", + "code": "30218", + "data": { + "gtfs": { + "stop_id": "5471", + "stop_code": "30218", + "stop_name": "boul. Marie-Victorin et rte 132 ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et rte 132 ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4611689278219, + 45.5947149792745 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7472837040252 + }, + "name": "boul. Marie-Victorin et rte 132 ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461096591, + 45.594585954 + ] + }, + "is_frozen": false, + "integer_id": 1517, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.390664, + 45.473736 + ] + }, + "id": 1518, + "properties": { + "id": "b9093d84-9af5-4f2a-93ad-1688b71ea956", + "code": "34438", + "data": { + "stops": [ + { + "id": "4438", + "code": "34438", + "data": { + "gtfs": { + "stop_id": "4438", + "stop_code": "34438", + "stop_name": "1re Rue et civique 3500", + "location_type": 0, + "parent_station": "" + } + }, + "name": "1re Rue et civique 3500", + "geography": { + "type": "Point", + "coordinates": [ + -73.3906643156183, + 45.4737357405302 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.702089794459 + }, + "name": "1re Rue et civique 3500", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.390664316, + 45.473735741 + ] + }, + "is_frozen": false, + "integer_id": 1518, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.387485, + 45.477639 + ] + }, + "id": 1519, + "properties": { + "id": "7a57d6b0-c7c3-4126-8d8e-15b73700298c", + "code": "34439", + "data": { + "stops": [ + { + "id": "4439", + "code": "34439", + "data": { + "gtfs": { + "stop_id": "4439", + "stop_code": "34439", + "stop_name": "2e Rue et civique 3200", + "location_type": 0, + "parent_station": "" + } + }, + "name": "2e Rue et civique 3200", + "geography": { + "type": "Point", + "coordinates": [ + -73.387485035331, + 45.4776391309232 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7679450487411 + }, + "name": "2e Rue et civique 3200", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.387485035, + 45.477639131 + ] + }, + "is_frozen": false, + "integer_id": 1519, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.392877, + 45.474682 + ] + }, + "id": 1520, + "properties": { + "id": "bc2d979c-1e8c-4c22-b201-faf3b0883de7", + "code": "34440", + "data": { + "stops": [ + { + "id": "4440", + "code": "34440", + "data": { + "gtfs": { + "stop_id": "4440", + "stop_code": "34440", + "stop_name": "1re Rue et civique 3415", + "location_type": 0, + "parent_station": "" + } + }, + "name": "1re Rue et civique 3415", + "geography": { + "type": "Point", + "coordinates": [ + -73.3928768016093, + 45.4746815663999 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.71804584696 + }, + "name": "1re Rue et civique 3415", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.392876802, + 45.474681566 + ] + }, + "is_frozen": false, + "integer_id": 1520, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.391376, + 45.477244 + ] + }, + "id": 1521, + "properties": { + "id": "4e8e590f-c7fc-411e-a553-507fa178df0d", + "code": "34441", + "data": { + "stops": [ + { + "id": "4441", + "code": "34441", + "data": { + "gtfs": { + "stop_id": "4441", + "stop_code": "34441", + "stop_name": "1re Rue et civique 3275", + "location_type": 0, + "parent_station": "" + } + }, + "name": "1re Rue et civique 3275", + "geography": { + "type": "Point", + "coordinates": [ + -73.3913764253784, + 45.4772440737111 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7612793088593 + }, + "name": "1re Rue et civique 3275", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.391376425, + 45.477244074 + ] + }, + "is_frozen": false, + "integer_id": 1521, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441888, + 45.458311 + ] + }, + "id": 1522, + "properties": { + "id": "1449efa8-6a20-4d2f-bc23-aca981e0e0f6", + "code": "34444", + "data": { + "stops": [ + { + "id": "4444", + "code": "34444", + "data": { + "gtfs": { + "stop_id": "4444", + "stop_code": "34444", + "stop_name": "STATIONNEMENT INCITATIF CHEVRIER", + "location_type": 0, + "parent_station": "" + } + }, + "name": "STATIONNEMENT INCITATIF CHEVRIER", + "geography": { + "type": "Point", + "coordinates": [ + -73.4418689636485, + 45.4581913018884 + ] + } + }, + { + "id": "4445", + "code": "34445", + "data": { + "gtfs": { + "stop_id": "4445", + "stop_code": "34445", + "stop_name": "STATIONNEMENT INCITATIF CHEVRIER", + "location_type": 0, + "parent_station": "" + } + }, + "name": "STATIONNEMENT INCITATIF CHEVRIER", + "geography": { + "type": "Point", + "coordinates": [ + -73.441907270874, + 45.4584312025192 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4419910254478 + }, + "name": "STATIONNEMENT INCITATIF CHEVRIER", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441888117, + 45.458311252 + ] + }, + "is_frozen": false, + "integer_id": 1522, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468117, + 45.468818 + ] + }, + "id": 1523, + "properties": { + "id": "ca949fb8-c954-4a87-ab5c-c758f36efd09", + "code": "34454", + "data": { + "stops": [ + { + "id": "4454", + "code": "34454", + "data": { + "gtfs": { + "stop_id": "4454", + "stop_code": "34454", + "stop_name": "boul. Taschereau et BURGER KING", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et BURGER KING", + "geography": { + "type": "Point", + "coordinates": [ + -73.468116862315, + 45.4688180846348 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6191418224934 + }, + "name": "boul. Taschereau et BURGER KING", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468116862, + 45.468818085 + ] + }, + "is_frozen": false, + "integer_id": 1523, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.510039, + 45.49412 + ] + }, + "id": 1524, + "properties": { + "id": "5d15d6e1-5f1d-4e9c-8c3a-63a3b3f11da3", + "code": "34458", + "data": { + "stops": [ + { + "id": "4458", + "code": "34458", + "data": { + "gtfs": { + "stop_id": "4458", + "stop_code": "34458", + "stop_name": "boul. Sir-Wilfrid-Laurier et Osborne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier et Osborne", + "geography": { + "type": "Point", + "coordinates": [ + -73.5100391088492, + 45.4941202840608 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0461527772187 + }, + "name": "boul. Sir-Wilfrid-Laurier et Osborne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.510039109, + 45.494120284 + ] + }, + "is_frozen": false, + "integer_id": 1524, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.508091, + 45.494108 + ] + }, + "id": 1525, + "properties": { + "id": "17130fb5-7835-48a4-911b-07c08af792bb", + "code": "34459", + "data": { + "stops": [ + { + "id": "4459", + "code": "34459", + "data": { + "gtfs": { + "stop_id": "4459", + "stop_code": "34459", + "stop_name": "boul. Sir-Wilfrid-Laurier et du Prince-Arthur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier et du Prince-Arthur", + "geography": { + "type": "Point", + "coordinates": [ + -73.5080909449178, + 45.4941077859495 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0459417150272 + }, + "name": "boul. Sir-Wilfrid-Laurier et du Prince-Arthur", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.508090945, + 45.494107786 + ] + }, + "is_frozen": false, + "integer_id": 1525, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.505483, + 45.494097 + ] + }, + "id": 1526, + "properties": { + "id": "f09bea25-9e7f-4f46-8a1e-1137fbe57059", + "code": "34460", + "data": { + "stops": [ + { + "id": "4460", + "code": "34460", + "data": { + "gtfs": { + "stop_id": "4460", + "stop_code": "34460", + "stop_name": "boul. Sir-Wilfrid-Laurier et boul. Queen", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier et boul. Queen", + "geography": { + "type": "Point", + "coordinates": [ + -73.5054827148706, + 45.4940966676626 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0457539579472 + }, + "name": "boul. Sir-Wilfrid-Laurier et boul. Queen", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.505482715, + 45.494096668 + ] + }, + "is_frozen": false, + "integer_id": 1526, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.510565, + 45.49441 + ] + }, + "id": 1527, + "properties": { + "id": "c56a5ffb-5390-4f94-8172-c9ab40c1a523", + "code": "34462", + "data": { + "stops": [ + { + "id": "4462", + "code": "34462", + "data": { + "gtfs": { + "stop_id": "4462", + "stop_code": "34462", + "stop_name": "Osborne et boul. Sir-Wilfrid-Laurier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Osborne et boul. Sir-Wilfrid-Laurier", + "geography": { + "type": "Point", + "coordinates": [ + -73.5105651398047, + 45.4944095941889 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0510385899843 + }, + "name": "Osborne et boul. Sir-Wilfrid-Laurier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.51056514, + 45.494409594 + ] + }, + "is_frozen": false, + "integer_id": 1527, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.510563, + 45.493427 + ] + }, + "id": 1528, + "properties": { + "id": "b1a22815-cfc5-4e07-95ed-3ff84f5dc613", + "code": "34463", + "data": { + "stops": [ + { + "id": "4463", + "code": "34463", + "data": { + "gtfs": { + "stop_id": "4463", + "stop_code": "34463", + "stop_name": "Osborne et av. Macaulay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Osborne et av. Macaulay", + "geography": { + "type": "Point", + "coordinates": [ + -73.5105630458339, + 45.4934267725548 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0344411972501 + }, + "name": "Osborne et av. Macaulay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.510563046, + 45.493426773 + ] + }, + "is_frozen": false, + "integer_id": 1528, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.498363, + 45.516108 + ] + }, + "id": 1529, + "properties": { + "id": "d32c5a5b-6e6f-48c3-9f4e-37b94ed6e20d", + "code": "34468", + "data": { + "stops": [ + { + "id": "4468", + "code": "34468", + "data": { + "gtfs": { + "stop_id": "4468", + "stop_code": "34468", + "stop_name": "ch. du Coteau-Rouge et Papineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Papineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4983107877699, + 45.515939786531 + ] + } + }, + { + "id": "4479", + "code": "34479", + "data": { + "gtfs": { + "stop_id": "4479", + "stop_code": "34479", + "stop_name": "ch. du Coteau-Rouge et Papineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Papineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4984156150158, + 45.5162757769491 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4176857765865 + }, + "name": "ch. du Coteau-Rouge et Papineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.498363201, + 45.516107782 + ] + }, + "is_frozen": false, + "integer_id": 1529, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.497116, + 45.519558 + ] + }, + "id": 1530, + "properties": { + "id": "161f72ac-926f-49be-80a4-a3cb10884d02", + "code": "34470", + "data": { + "stops": [ + { + "id": "4470", + "code": "34470", + "data": { + "gtfs": { + "stop_id": "4470", + "stop_code": "34470", + "stop_name": "ch. du Coteau-Rouge et Cartier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Cartier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4970200318191, + 45.5194149116805 + ] + } + }, + { + "id": "4477", + "code": "34477", + "data": { + "gtfs": { + "stop_id": "4477", + "stop_code": "34477", + "stop_name": "ch. du Coteau-Rouge et Cartier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Cartier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4972126386367, + 45.5197009956064 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4760247896039 + }, + "name": "ch. du Coteau-Rouge et Cartier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.497116, + 45.519558 + ] + }, + "is_frozen": false, + "integer_id": 1530, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.497258, + 45.521659 + ] + }, + "id": 1531, + "properties": { + "id": "6c8872a8-685f-49ed-9246-92743dd113de", + "code": "34471", + "data": { + "stops": [ + { + "id": "4471", + "code": "34471", + "data": { + "gtfs": { + "stop_id": "4471", + "stop_code": "34471", + "stop_name": "ch. du Coteau-Rouge et Dollard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Dollard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4971048909342, + 45.5215161497718 + ] + } + }, + { + "id": "4476", + "code": "34476", + "data": { + "gtfs": { + "stop_id": "4476", + "stop_code": "34476", + "stop_name": "ch. du Coteau-Rouge et Dollard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Coteau-Rouge et Dollard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4974109524996, + 45.5218021172978 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5115553535529 + }, + "name": "ch. du Coteau-Rouge et Dollard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.497258, + 45.521659 + ] + }, + "is_frozen": false, + "integer_id": 1531, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.552109, + 45.487253 + ] + }, + "id": 1532, + "properties": { + "id": "b622f016-a8e6-4f2a-835d-417fa16ddd32", + "code": "34484", + "data": { + "stops": [ + { + "id": "4484", + "code": "34484", + "data": { + "gtfs": { + "stop_id": "4484", + "stop_code": "34484", + "stop_name": "Mill et Bridge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Mill et Bridge", + "geography": { + "type": "Point", + "coordinates": [ + -73.5521089002176, + 45.4872525591423 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.930193787828 + }, + "name": "Mill et Bridge", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.5521089, + 45.487252559 + ] + }, + "is_frozen": false, + "integer_id": 1532, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.555184, + 45.499089 + ] + }, + "id": 1533, + "properties": { + "id": "8e6eba9f-71d7-47ba-ab56-7f4eadc64281", + "code": "34486", + "data": { + "stops": [ + { + "id": "4486", + "code": "34486", + "data": { + "gtfs": { + "stop_id": "4486", + "stop_code": "34486", + "stop_name": "Wellington et des Soeurs-Grises", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Wellington et des Soeurs-Grises", + "geography": { + "type": "Point", + "coordinates": [ + -73.5551838299467, + 45.4990893526477 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.130079821037 + }, + "name": "Wellington et des Soeurs-Grises", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.55518383, + 45.499089353 + ] + }, + "is_frozen": false, + "integer_id": 1533, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.405356, + 45.47876 + ] + }, + "id": 1534, + "properties": { + "id": "9a8dc92f-8883-4536-8459-08c71c110b3b", + "code": "34498", + "data": { + "stops": [ + { + "id": "4498", + "code": "34498", + "data": { + "gtfs": { + "stop_id": "4498", + "stop_code": "34498", + "stop_name": "boul. Julien-Bouthillier et Ovila-Hamel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Julien-Bouthillier et Ovila-Hamel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4052541556409, + 45.4787015925445 + ] + } + }, + { + "id": "5115", + "code": "35115", + "data": { + "gtfs": { + "stop_id": "5115", + "stop_code": "35115", + "stop_name": "Ovila-Hamel et boul. Julien-Bouthillier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ovila-Hamel et boul. Julien-Bouthillier", + "geography": { + "type": "Point", + "coordinates": [ + -73.405457094099, + 45.4788180883953 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7868553650186 + }, + "name": "boul. Julien-Bouthillier et Ovila-Hamel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.405355625, + 45.47875984 + ] + }, + "is_frozen": false, + "integer_id": 1534, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.402121, + 45.477478 + ] + }, + "id": 1535, + "properties": { + "id": "15f5258e-a1ce-4027-8766-29bb39d270b4", + "code": "34499", + "data": { + "stops": [ + { + "id": "4499", + "code": "34499", + "data": { + "gtfs": { + "stop_id": "4499", + "stop_code": "34499", + "stop_name": "boul. Julien-Bouthillier et des Pervenches", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Julien-Bouthillier et des Pervenches", + "geography": { + "type": "Point", + "coordinates": [ + -73.4023670280232, + 45.4774816341888 + ] + } + }, + { + "id": "4500", + "code": "34500", + "data": { + "gtfs": { + "stop_id": "4500", + "stop_code": "34500", + "stop_name": "boul. Julien-Bouthillier et Pierre-Thomas-Hurteau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Julien-Bouthillier et Pierre-Thomas-Hurteau", + "geography": { + "type": "Point", + "coordinates": [ + -73.401874922734, + 45.4774748299043 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7652302063426 + }, + "name": "boul. Julien-Bouthillier et des Pervenches", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.402120975, + 45.477478232 + ] + }, + "is_frozen": false, + "integer_id": 1535, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.399993, + 45.476192 + ] + }, + "id": 1536, + "properties": { + "id": "5b05f00d-fd81-4604-b07f-a519f2a652e9", + "code": "34501", + "data": { + "stops": [ + { + "id": "4501", + "code": "34501", + "data": { + "gtfs": { + "stop_id": "4501", + "stop_code": "34501", + "stop_name": "boul. Julien-Bouthillier et boul. Moïse-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Julien-Bouthillier et boul. Moïse-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.3998839314492, + 45.476434643515 + ] + } + }, + { + "id": "4502", + "code": "34502", + "data": { + "gtfs": { + "stop_id": "4502", + "stop_code": "34502", + "stop_name": "boul. Moïse-Vincent et civique 3809", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Moïse-Vincent et civique 3809", + "geography": { + "type": "Point", + "coordinates": [ + -73.4001014708142, + 45.4759485906869 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7435220301942 + }, + "name": "boul. Julien-Bouthillier et boul. Moïse-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.399992701, + 45.476191617 + ] + }, + "is_frozen": false, + "integer_id": 1536, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465502, + 45.43359 + ] + }, + "id": 1537, + "properties": { + "id": "1d638a17-5a2b-40f7-a0cc-6db81666104e", + "code": "34506", + "data": { + "stops": [ + { + "id": "4506", + "code": "34506", + "data": { + "gtfs": { + "stop_id": "4506", + "stop_code": "34506", + "stop_name": "Oméga et av. Oligny", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Oméga et av. Oligny", + "geography": { + "type": "Point", + "coordinates": [ + -73.4654294796751, + 45.4336504142552 + ] + } + }, + { + "id": "4704", + "code": "34704", + "data": { + "gtfs": { + "stop_id": "4704", + "stop_code": "34704", + "stop_name": "av. Oligny et Oméga", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Oligny et Oméga", + "geography": { + "type": "Point", + "coordinates": [ + -73.4655735705364, + 45.4335294409061 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0255626339672 + }, + "name": "Oméga et av. Oligny", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465501525, + 45.433589928 + ] + }, + "is_frozen": false, + "integer_id": 1537, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469022, + 45.434768 + ] + }, + "id": 1538, + "properties": { + "id": "f36c7de3-84dd-4573-ac69-91ccd87efd4f", + "code": "34507", + "data": { + "stops": [ + { + "id": "4507", + "code": "34507", + "data": { + "gtfs": { + "stop_id": "4507", + "stop_code": "34507", + "stop_name": "av. Oligny et Othello", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Oligny et Othello", + "geography": { + "type": "Point", + "coordinates": [ + -73.4688650860553, + 45.4347902772926 + ] + } + }, + { + "id": "4716", + "code": "34716", + "data": { + "gtfs": { + "stop_id": "4716", + "stop_code": "34716", + "stop_name": "av. Oligny et Othello", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Oligny et Othello", + "geography": { + "type": "Point", + "coordinates": [ + -73.4691786400623, + 45.4347458141651 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0453956277055 + }, + "name": "av. Oligny et Othello", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469021863, + 45.434768046 + ] + }, + "is_frozen": false, + "integer_id": 1538, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.471462, + 45.435559 + ] + }, + "id": 1539, + "properties": { + "id": "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", + "code": "34508", + "data": { + "stops": [ + { + "id": "4508", + "code": "34508", + "data": { + "gtfs": { + "stop_id": "4508", + "stop_code": "34508", + "stop_name": "av. Oligny et civique 9085", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Oligny et civique 9085", + "geography": { + "type": "Point", + "coordinates": [ + -73.4712708339572, + 45.4355736715947 + ] + } + }, + { + "id": "4717", + "code": "34717", + "data": { + "gtfs": { + "stop_id": "4717", + "stop_code": "34717", + "stop_name": "av. Oligny et civique 9080", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Oligny et civique 9080", + "geography": { + "type": "Point", + "coordinates": [ + -73.4716530014631, + 45.4355448700732 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0587161726176 + }, + "name": "av. Oligny et civique 9085", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.471461918, + 45.435559271 + ] + }, + "is_frozen": false, + "integer_id": 1539, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.470607, + 45.437793 + ] + }, + "id": 1540, + "properties": { + "id": "3eb5b313-c26d-472e-a3c1-397c7596c769", + "code": "34509", + "data": { + "stops": [ + { + "id": "4509", + "code": "34509", + "data": { + "gtfs": { + "stop_id": "4509", + "stop_code": "34509", + "stop_name": "av. Oligny et ch. des Prairies", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Oligny et ch. des Prairies", + "geography": { + "type": "Point", + "coordinates": [ + -73.4705221049227, + 45.4377942284454 + ] + } + }, + { + "id": "4718", + "code": "34718", + "data": { + "gtfs": { + "stop_id": "4718", + "stop_code": "34718", + "stop_name": "av. Oligny et ch. des Prairies", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Oligny et ch. des Prairies", + "geography": { + "type": "Point", + "coordinates": [ + -73.4709171949647, + 45.4376607041971 + ] + } + }, + { + "id": "4862", + "code": "34862", + "data": { + "gtfs": { + "stop_id": "4862", + "stop_code": "34862", + "stop_name": "ch. des Prairies et av. Oligny", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et av. Oligny", + "geography": { + "type": "Point", + "coordinates": [ + -73.4702972351565, + 45.4379250295651 + ] + } + }, + { + "id": "5425", + "code": "30168", + "data": { + "gtfs": { + "stop_id": "5425", + "stop_code": "30168", + "stop_name": "ch. des Prairies et av. Oligny", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et av. Oligny", + "geography": { + "type": "Point", + "coordinates": [ + -73.4709055238611, + 45.4378349461297 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0963225226155 + }, + "name": "av. Oligny et ch. des Prairies", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.470607215, + 45.437792867 + ] + }, + "is_frozen": false, + "integer_id": 1540, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.489796, + 45.528075 + ] + }, + "id": 1541, + "properties": { + "id": "ec8a892d-b1ec-472d-a26a-5b38c3ac6966", + "code": "34513", + "data": { + "stops": [ + { + "id": "4513", + "code": "34513", + "data": { + "gtfs": { + "stop_id": "4513", + "stop_code": "34513", + "stop_name": "Daniel et ch. du Coteau-Rouge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Daniel et ch. du Coteau-Rouge", + "geography": { + "type": "Point", + "coordinates": [ + -73.4897959105022, + 45.5280754919884 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6200823659682 + }, + "name": "Daniel et ch. du Coteau-Rouge", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.489796, + 45.528075 + ] + }, + "is_frozen": false, + "integer_id": 1541, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.488921, + 45.531747 + ] + }, + "id": 1542, + "properties": { + "id": "a484746b-f716-4eab-ae1c-c7c08714d651", + "code": "34514", + "data": { + "stops": [ + { + "id": "4514", + "code": "34514", + "data": { + "gtfs": { + "stop_id": "4514", + "stop_code": "34514", + "stop_name": "Briggs ouest et Grant", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Briggs ouest et Grant", + "geography": { + "type": "Point", + "coordinates": [ + -73.488920600236, + 45.5317473294445 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.682210968515 + }, + "name": "Briggs ouest et Grant", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.488921, + 45.531747 + ] + }, + "is_frozen": false, + "integer_id": 1542, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.489656, + 45.530527 + ] + }, + "id": 1543, + "properties": { + "id": "17183bd2-c06f-4999-9774-43fb48004315", + "code": "34515", + "data": { + "stops": [ + { + "id": "4515", + "code": "34515", + "data": { + "gtfs": { + "stop_id": "4515", + "stop_code": "34515", + "stop_name": "Briggs ouest et Saint-Jacques", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Briggs ouest et Saint-Jacques", + "geography": { + "type": "Point", + "coordinates": [ + -73.4896738435897, + 45.5306514524279 + ] + } + }, + { + "id": "4885", + "code": "34885", + "data": { + "gtfs": { + "stop_id": "4885", + "stop_code": "34885", + "stop_name": "Briggs ouest et Saint-Jacques", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Briggs ouest et Saint-Jacques", + "geography": { + "type": "Point", + "coordinates": [ + -73.4896379133201, + 45.5304029272292 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6615677790663 + }, + "name": "Briggs ouest et Saint-Jacques", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.489656, + 45.530527 + ] + }, + "is_frozen": false, + "integer_id": 1543, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.493044, + 45.512579 + ] + }, + "id": 1544, + "properties": { + "id": "7095ff94-e6bf-4956-8b59-9e66be631584", + "code": "34518", + "data": { + "stops": [ + { + "id": "4518", + "code": "34518", + "data": { + "gtfs": { + "stop_id": "4518", + "stop_code": "34518", + "stop_name": "boul. La Fayette et boul. Curé-Poirier ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. La Fayette et boul. Curé-Poirier ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.4930444910582, + 45.5125785065202 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3580209756864 + }, + "name": "boul. La Fayette et boul. Curé-Poirier ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493044491, + 45.512578507 + ] + }, + "is_frozen": false, + "integer_id": 1544, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.408318, + 45.495441 + ] + }, + "id": 1545, + "properties": { + "id": "d1cd707b-8ed5-4d1d-b1cb-7633cade451b", + "code": "34527", + "data": { + "stops": [ + { + "id": "4527", + "code": "34527", + "data": { + "gtfs": { + "stop_id": "4527", + "stop_code": "34527", + "stop_name": "boul. Gaétan-Boucher et TIM HORTON", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et TIM HORTON", + "geography": { + "type": "Point", + "coordinates": [ + -73.4083181447784, + 45.4954408344137 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.06845458244 + }, + "name": "boul. Gaétan-Boucher et TIM HORTON", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.408318145, + 45.495440834 + ] + }, + "is_frozen": false, + "integer_id": 1545, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448011, + 45.600023 + ] + }, + "id": 1546, + "properties": { + "id": "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", + "code": "34533", + "data": { + "stops": [ + { + "id": "4533", + "code": "34533", + "data": { + "gtfs": { + "stop_id": "4533", + "stop_code": "34533", + "stop_name": "boul. De Montarville et rte 132 est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et rte 132 est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4480109655655, + 45.6000229100392 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8396019576376 + }, + "name": "boul. De Montarville et rte 132 est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448010966, + 45.60002291 + ] + }, + "is_frozen": false, + "integer_id": 1546, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.484576, + 45.435426 + ] + }, + "id": 1547, + "properties": { + "id": "7a321951-38aa-4886-b297-59c69bcf3448", + "code": "34541", + "data": { + "stops": [ + { + "id": "4541", + "code": "34541", + "data": { + "gtfs": { + "stop_id": "4541", + "stop_code": "34541", + "stop_name": "boul. Matte et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Matte et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4845758698136, + 45.4354262104774 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0564760061347 + }, + "name": "boul. Matte et Passage piétonnier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48457587, + 45.43542621 + ] + }, + "is_frozen": false, + "integer_id": 1547, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.330795, + 45.530165 + ] + }, + "id": 1548, + "properties": { + "id": "93fcd4a5-ee80-4c79-b0bc-547231801133", + "code": "34542", + "data": { + "stops": [ + { + "id": "4542", + "code": "34542", + "data": { + "gtfs": { + "stop_id": "4542", + "stop_code": "34542", + "stop_name": "boul. De Boucherville et du Parc", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et du Parc", + "geography": { + "type": "Point", + "coordinates": [ + -73.3305776486232, + 45.5302245802101 + ] + } + }, + { + "id": "4570", + "code": "34570", + "data": { + "gtfs": { + "stop_id": "4570", + "stop_code": "34570", + "stop_name": "boul. De Boucherville et boul. Seigneurial est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et boul. Seigneurial est", + "geography": { + "type": "Point", + "coordinates": [ + -73.3310117653349, + 45.5302969619837 + ] + } + }, + { + "id": "5349", + "code": "30087", + "data": { + "gtfs": { + "stop_id": "5349", + "stop_code": "30087", + "stop_name": "boul. Seigneurial est et boul. De Boucherville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial est et boul. De Boucherville", + "geography": { + "type": "Point", + "coordinates": [ + -73.3309892894893, + 45.5300321466661 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6554352138929 + }, + "name": "boul. De Boucherville et du Parc", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.330794707, + 45.530164554 + ] + }, + "is_frozen": false, + "integer_id": 1548, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.33592, + 45.533677 + ] + }, + "id": 1549, + "properties": { + "id": "59449548-0d0c-41e2-b094-c40114d0f9ce", + "code": "34543", + "data": { + "stops": [ + { + "id": "4543", + "code": "34543", + "data": { + "gtfs": { + "stop_id": "4543", + "stop_code": "34543", + "stop_name": "boul. De Boucherville et ch. De La Rabastalière est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et ch. De La Rabastalière est", + "geography": { + "type": "Point", + "coordinates": [ + -73.3357965342755, + 45.5337218919974 + ] + } + }, + { + "id": "4569", + "code": "34569", + "data": { + "gtfs": { + "stop_id": "4569", + "stop_code": "34569", + "stop_name": "boul. De Boucherville et ch. De La Rabastalière est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et ch. De La Rabastalière est", + "geography": { + "type": "Point", + "coordinates": [ + -73.336043381986, + 45.533631612152 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7148663308777 + }, + "name": "boul. De Boucherville et ch. De La Rabastalière est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.335919958, + 45.533676752 + ] + }, + "is_frozen": false, + "integer_id": 1549, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.341555, + 45.522773 + ] + }, + "id": 1550, + "properties": { + "id": "60ea8a19-f195-4f9b-b60e-122a63bd86bd", + "code": "34550", + "data": { + "stops": [ + { + "id": "4550", + "code": "34550", + "data": { + "gtfs": { + "stop_id": "4550", + "stop_code": "34550", + "stop_name": "boul. Seigneurial ouest et du Verger", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et du Verger", + "geography": { + "type": "Point", + "coordinates": [ + -73.3415761335763, + 45.5229021729207 + ] + } + }, + { + "id": "4562", + "code": "34562", + "data": { + "gtfs": { + "stop_id": "4562", + "stop_code": "34562", + "stop_name": "boul. Seigneurial ouest et du Verger", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et du Verger", + "geography": { + "type": "Point", + "coordinates": [ + -73.3415340749793, + 45.5226443509277 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5304005276017 + }, + "name": "boul. Seigneurial ouest et du Verger", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.341555104, + 45.522773262 + ] + }, + "is_frozen": false, + "integer_id": 1550, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.343181, + 45.521679 + ] + }, + "id": 1551, + "properties": { + "id": "9f67f31c-9015-4b9c-b5eb-210a53be617b", + "code": "34551", + "data": { + "stops": [ + { + "id": "4551", + "code": "34551", + "data": { + "gtfs": { + "stop_id": "4551", + "stop_code": "34551", + "stop_name": "boul. Seigneurial ouest et de Cambrai", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et de Cambrai", + "geography": { + "type": "Point", + "coordinates": [ + -73.3431872849153, + 45.5218155895616 + ] + } + }, + { + "id": "4597", + "code": "34597", + "data": { + "gtfs": { + "stop_id": "4597", + "stop_code": "34597", + "stop_name": "boul. Seigneurial ouest et de Cambrai", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et de Cambrai", + "geography": { + "type": "Point", + "coordinates": [ + -73.343175560203, + 45.52154160274 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5118867651795 + }, + "name": "boul. Seigneurial ouest et de Cambrai", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.343181423, + 45.521678596 + ] + }, + "is_frozen": false, + "integer_id": 1551, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.34439, + 45.519742 + ] + }, + "id": 1552, + "properties": { + "id": "106469e3-38d2-4015-b627-c243c3d7f8cd", + "code": "34552", + "data": { + "stops": [ + { + "id": "4552", + "code": "34552", + "data": { + "gtfs": { + "stop_id": "4552", + "stop_code": "34552", + "stop_name": "boul. Seigneurial ouest et civique 305", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et civique 305", + "geography": { + "type": "Point", + "coordinates": [ + -73.3443897993265, + 45.519741794686 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4791328382447 + }, + "name": "boul. Seigneurial ouest et civique 305", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.344389799, + 45.519741795 + ] + }, + "is_frozen": false, + "integer_id": 1552, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.356468, + 45.523377 + ] + }, + "id": 1553, + "properties": { + "id": "68d27bd7-271c-4390-8856-6b37460af70f", + "code": "34554", + "data": { + "stops": [ + { + "id": "4554", + "code": "34554", + "data": { + "gtfs": { + "stop_id": "4554", + "stop_code": "34554", + "stop_name": "boul. Clairevue ouest et Buies", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et Buies", + "geography": { + "type": "Point", + "coordinates": [ + -73.3565114408288, + 45.5234797384078 + ] + } + }, + { + "id": "4560", + "code": "34560", + "data": { + "gtfs": { + "stop_id": "4560", + "stop_code": "34560", + "stop_name": "boul. Clairevue ouest et Buies", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et Buies", + "geography": { + "type": "Point", + "coordinates": [ + -73.3564240650243, + 45.5232744183421 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5406131460352 + }, + "name": "boul. Clairevue ouest et Buies", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.356467753, + 45.523377078 + ] + }, + "is_frozen": false, + "integer_id": 1553, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.358454, + 45.522112 + ] + }, + "id": 1554, + "properties": { + "id": "e7e2dd97-2e08-4a19-b024-ea6b319bdef6", + "code": "34555", + "data": { + "stops": [ + { + "id": "4555", + "code": "34555", + "data": { + "gtfs": { + "stop_id": "4555", + "stop_code": "34555", + "stop_name": "boul. Clairevue ouest et Deslières", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et Deslières", + "geography": { + "type": "Point", + "coordinates": [ + -73.3583919774638, + 45.5223352372998 + ] + } + }, + { + "id": "4559", + "code": "34559", + "data": { + "gtfs": { + "stop_id": "4559", + "stop_code": "34559", + "stop_name": "boul. Clairevue ouest et Deslières", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et Deslières", + "geography": { + "type": "Point", + "coordinates": [ + -73.3585160139818, + 45.5218886186075 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5192154535011 + }, + "name": "boul. Clairevue ouest et Deslières", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.358453996, + 45.522111928 + ] + }, + "is_frozen": false, + "integer_id": 1554, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.34636, + 45.51864 + ] + }, + "id": 1555, + "properties": { + "id": "5c28c22e-79f1-4a2c-9171-d9cc96f1af7d", + "code": "34556", + "data": { + "stops": [ + { + "id": "4556", + "code": "34556", + "data": { + "gtfs": { + "stop_id": "4556", + "stop_code": "34556", + "stop_name": "De Chambly et ch. De La Rabastalière ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Chambly et ch. De La Rabastalière ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3462130241681, + 45.5186133325114 + ] + } + }, + { + "id": "4591", + "code": "34591", + "data": { + "gtfs": { + "stop_id": "4591", + "stop_code": "34591", + "stop_name": "ch. De La Rabastalière ouest et De Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. De La Rabastalière ouest et De Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.3465062648606, + 45.5186661570285 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4604971726765 + }, + "name": "De Chambly et ch. De La Rabastalière ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.346359645, + 45.518639745 + ] + }, + "is_frozen": false, + "integer_id": 1555, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.368542, + 45.520282 + ] + }, + "id": 1556, + "properties": { + "id": "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", + "code": "34558", + "data": { + "stops": [ + { + "id": "4558", + "code": "34558", + "data": { + "gtfs": { + "stop_id": "4558", + "stop_code": "34558", + "stop_name": "boul. Clairevue ouest et CIVIQUE 1250", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et CIVIQUE 1250", + "geography": { + "type": "Point", + "coordinates": [ + -73.3685424609813, + 45.5202818600141 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4882657324843 + }, + "name": "boul. Clairevue ouest et CIVIQUE 1250", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.368542461, + 45.52028186 + ] + }, + "is_frozen": false, + "integer_id": 1556, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.342627, + 45.531642 + ] + }, + "id": 1557, + "properties": { + "id": "6a18cdcb-7d78-46ad-a358-7895b3877421", + "code": "34566", + "data": { + "stops": [ + { + "id": "4566", + "code": "34566", + "data": { + "gtfs": { + "stop_id": "4566", + "stop_code": "34566", + "stop_name": "boul. Clairevue est et Goyer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue est et Goyer", + "geography": { + "type": "Point", + "coordinates": [ + -73.342688049745, + 45.5315105893067 + ] + } + }, + { + "id": "4680", + "code": "34680", + "data": { + "gtfs": { + "stop_id": "4680", + "stop_code": "34680", + "stop_name": "Goyer et boul. Clairevue est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Goyer et boul. Clairevue est", + "geography": { + "type": "Point", + "coordinates": [ + -73.3425111202574, + 45.5315898012639 + ] + } + }, + { + "id": "5170", + "code": "35170", + "data": { + "gtfs": { + "stop_id": "5170", + "stop_code": "35170", + "stop_name": "boul. Clairevue est et Goyer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue est et Goyer", + "geography": { + "type": "Point", + "coordinates": [ + -73.3427437037752, + 45.5317736050605 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.680435889725 + }, + "name": "boul. Clairevue est et Goyer", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.342627412, + 45.531642097 + ] + }, + "is_frozen": false, + "integer_id": 1557, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.34158, + 45.532406 + ] + }, + "id": 1558, + "properties": { + "id": "b96762ce-57d1-4d28-bc37-afabeacae179", + "code": "34567", + "data": { + "stops": [ + { + "id": "4567", + "code": "34567", + "data": { + "gtfs": { + "stop_id": "4567", + "stop_code": "34567", + "stop_name": "boul. Clairevue est et Mignault", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue est et Mignault", + "geography": { + "type": "Point", + "coordinates": [ + -73.3413686878926, + 45.532411054447 + ] + } + }, + { + "id": "5169", + "code": "35169", + "data": { + "gtfs": { + "stop_id": "5169", + "stop_code": "35169", + "stop_name": "boul. Clairevue est et Lionel-H.-Grisé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue est et Lionel-H.-Grisé", + "geography": { + "type": "Point", + "coordinates": [ + -73.3417916774507, + 45.5324007098157 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6933602302032 + }, + "name": "boul. Clairevue est et Mignault", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.341580183, + 45.532405882 + ] + }, + "is_frozen": false, + "integer_id": 1558, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.337192, + 45.534222 + ] + }, + "id": 1559, + "properties": { + "id": "3860f604-02bd-44a8-9d62-54ba0366b85f", + "code": "34568", + "data": { + "stops": [ + { + "id": "4568", + "code": "34568", + "data": { + "gtfs": { + "stop_id": "4568", + "stop_code": "34568", + "stop_name": "boul. Clairevue est et civique 352", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue est et civique 352", + "geography": { + "type": "Point", + "coordinates": [ + -73.3373459279378, + 45.5340901430333 + ] + } + }, + { + "id": "4661", + "code": "34661", + "data": { + "gtfs": { + "stop_id": "4661", + "stop_code": "34661", + "stop_name": "boul. De Boucherville et boul. Clairevue est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et boul. Clairevue est", + "geography": { + "type": "Point", + "coordinates": [ + -73.3370380288371, + 45.5343533081966 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7240890101777 + }, + "name": "boul. Clairevue est et civique 352", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.337191978, + 45.534221726 + ] + }, + "is_frozen": false, + "integer_id": 1559, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.324495, + 45.525507 + ] + }, + "id": 1560, + "properties": { + "id": "4f0816d5-67e0-4d4d-9413-6e045052da5f", + "code": "34571", + "data": { + "stops": [ + { + "id": "4571", + "code": "34571", + "data": { + "gtfs": { + "stop_id": "4571", + "stop_code": "34571", + "stop_name": "boul. De Boucherville et Beaumont ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et Beaumont ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3246611254036, + 45.525508443053 + ] + } + }, + { + "id": "4668", + "code": "34668", + "data": { + "gtfs": { + "stop_id": "4668", + "stop_code": "34668", + "stop_name": "boul. De Boucherville et Beaumont est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et Beaumont est", + "geography": { + "type": "Point", + "coordinates": [ + -73.324329196658, + 45.5255059579361 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5766434765636 + }, + "name": "boul. De Boucherville et Beaumont ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.324495161, + 45.5255072 + ] + }, + "is_frozen": false, + "integer_id": 1560, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.321159, + 45.522677 + ] + }, + "id": 1561, + "properties": { + "id": "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", + "code": "34572", + "data": { + "stops": [ + { + "id": "4572", + "code": "34572", + "data": { + "gtfs": { + "stop_id": "4572", + "stop_code": "34572", + "stop_name": "boul. De Boucherville et Raymond", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et Raymond", + "geography": { + "type": "Point", + "coordinates": [ + -73.3211631709335, + 45.5225260147522 + ] + } + }, + { + "id": "5165", + "code": "35165", + "data": { + "gtfs": { + "stop_id": "5165", + "stop_code": "35165", + "stop_name": "boul. De Boucherville et De Salaberry", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et De Salaberry", + "geography": { + "type": "Point", + "coordinates": [ + -73.3211548388392, + 45.5228273923149 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5287674277557 + }, + "name": "boul. De Boucherville et Raymond", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.321159005, + 45.522676704 + ] + }, + "is_frozen": false, + "integer_id": 1561, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.318874, + 45.520748 + ] + }, + "id": 1562, + "properties": { + "id": "5f32a25e-7895-498c-b5cd-182adcfb40dd", + "code": "34573", + "data": { + "stops": [ + { + "id": "4573", + "code": "34573", + "data": { + "gtfs": { + "stop_id": "4573", + "stop_code": "34573", + "stop_name": "boul. De Boucherville et civique 2177", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et civique 2177", + "geography": { + "type": "Point", + "coordinates": [ + -73.3192134199117, + 45.5208766854226 + ] + } + }, + { + "id": "4667", + "code": "34667", + "data": { + "gtfs": { + "stop_id": "4667", + "stop_code": "34667", + "stop_name": "boul. De Boucherville et De Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et De Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.3185337660496, + 45.5206193755396 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4961492171803 + }, + "name": "boul. De Boucherville et civique 2177", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.318873593, + 45.52074803 + ] + }, + "is_frozen": false, + "integer_id": 1562, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.353599, + 45.54455 + ] + }, + "id": 1563, + "properties": { + "id": "a09525fc-24fb-44bc-87d9-67be178e23ec", + "code": "34576", + "data": { + "stops": [ + { + "id": "4576", + "code": "34576", + "data": { + "gtfs": { + "stop_id": "4576", + "stop_code": "34576", + "stop_name": "Yvonne-Duckett et Laure-Conan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Yvonne-Duckett et Laure-Conan", + "geography": { + "type": "Point", + "coordinates": [ + -73.3535990680045, + 45.544550370076 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8989323380633 + }, + "name": "Yvonne-Duckett et Laure-Conan", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.353599068, + 45.54455037 + ] + }, + "is_frozen": false, + "integer_id": 1563, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.352815, + 45.542465 + ] + }, + "id": 1564, + "properties": { + "id": "83499710-5b26-4bfd-b649-c008d0b7fde7", + "code": "34577", + "data": { + "stops": [ + { + "id": "4577", + "code": "34577", + "data": { + "gtfs": { + "stop_id": "4577", + "stop_code": "34577", + "stop_name": "Yvonne-Duckett et Marcelle-Barthe", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Yvonne-Duckett et Marcelle-Barthe", + "geography": { + "type": "Point", + "coordinates": [ + -73.3528145501872, + 45.5424651449529 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8636259731661 + }, + "name": "Yvonne-Duckett et Marcelle-Barthe", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.35281455, + 45.542465145 + ] + }, + "is_frozen": false, + "integer_id": 1564, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.354096, + 45.53614 + ] + }, + "id": 1565, + "properties": { + "id": "ab32c22a-056a-40bc-bb99-58c049d50498", + "code": "34578", + "data": { + "stops": [ + { + "id": "4578", + "code": "34578", + "data": { + "gtfs": { + "stop_id": "4578", + "stop_code": "34578", + "stop_name": "Montarville et De Pontbriand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et De Pontbriand", + "geography": { + "type": "Point", + "coordinates": [ + -73.3543847324697, + 45.5362357315602 + ] + } + }, + { + "id": "5701", + "code": "30469", + "data": { + "gtfs": { + "stop_id": "5701", + "stop_code": "30469", + "stop_name": "Montarville et De Pontbriand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et De Pontbriand", + "geography": { + "type": "Point", + "coordinates": [ + -73.353806747721, + 45.5360433440699 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7565465453542 + }, + "name": "Montarville et De Pontbriand", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.35409574, + 45.536139538 + ] + }, + "is_frozen": false, + "integer_id": 1565, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.348763, + 45.532409 + ] + }, + "id": 1566, + "properties": { + "id": "c144cdde-b47b-40cf-b640-e6399771f99b", + "code": "34579", + "data": { + "stops": [ + { + "id": "4579", + "code": "34579", + "data": { + "gtfs": { + "stop_id": "4579", + "stop_code": "34579", + "stop_name": "Montarville et Caillé ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et Caillé ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3489335213585, + 45.5324273747654 + ] + } + }, + { + "id": "5698", + "code": "30466", + "data": { + "gtfs": { + "stop_id": "5698", + "stop_code": "30466", + "stop_name": "Montarville et Caillé est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et Caillé est", + "geography": { + "type": "Point", + "coordinates": [ + -73.3485933614719, + 45.532389745794 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.693405546729 + }, + "name": "Montarville et Caillé ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.348763441, + 45.53240856 + ] + }, + "is_frozen": false, + "integer_id": 1566, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.345329, + 45.530009 + ] + }, + "id": 1567, + "properties": { + "id": "16815d0a-9758-4c90-a572-66e1110e9895", + "code": "34580", + "data": { + "stops": [ + { + "id": "4580", + "code": "34580", + "data": { + "gtfs": { + "stop_id": "4580", + "stop_code": "34580", + "stop_name": "Montarville et boul. Clairevue ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et boul. Clairevue ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.345627098135, + 45.5299849558976 + ] + } + }, + { + "id": "5367", + "code": "30107", + "data": { + "gtfs": { + "stop_id": "5367", + "stop_code": "30107", + "stop_name": "Montarville et boul. Clairevue est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et boul. Clairevue est", + "geography": { + "type": "Point", + "coordinates": [ + -73.3451186044609, + 45.529815653995 + ] + } + }, + { + "id": "5598", + "code": "30347", + "data": { + "gtfs": { + "stop_id": "5598", + "stop_code": "30347", + "stop_name": "boul. Clairevue est et civique 7", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue est et civique 7", + "geography": { + "type": "Point", + "coordinates": [ + -73.3450312427308, + 45.5302032382654 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6528108313674 + }, + "name": "Montarville et boul. Clairevue ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.34532917, + 45.530009446 + ] + }, + "is_frozen": false, + "integer_id": 1567, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.34728, + 45.528687 + ] + }, + "id": 1568, + "properties": { + "id": "bb60f9d1-ae1a-4b44-81e5-f918c5a03052", + "code": "34581", + "data": { + "stops": [ + { + "id": "4581", + "code": "34581", + "data": { + "gtfs": { + "stop_id": "4581", + "stop_code": "34581", + "stop_name": "boul. Clairevue ouest et Roberval", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et Roberval", + "geography": { + "type": "Point", + "coordinates": [ + -73.3472797540022, + 45.5286869100791 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6304347756356 + }, + "name": "boul. Clairevue ouest et Roberval", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.347279754, + 45.52868691 + ] + }, + "is_frozen": false, + "integer_id": 1568, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.328159, + 45.528326 + ] + }, + "id": 1569, + "properties": { + "id": "6b369192-79e8-4382-aaa0-abddf0da08d7", + "code": "34584", + "data": { + "stops": [ + { + "id": "4584", + "code": "34584", + "data": { + "gtfs": { + "stop_id": "4584", + "stop_code": "34584", + "stop_name": "boul. De Boucherville et Orchard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et Orchard", + "geography": { + "type": "Point", + "coordinates": [ + -73.327983150921, + 45.5283224205314 + ] + } + }, + { + "id": "5187", + "code": "35187", + "data": { + "gtfs": { + "stop_id": "5187", + "stop_code": "35187", + "stop_name": "boul. De Boucherville et Orchard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et Orchard", + "geography": { + "type": "Point", + "coordinates": [ + -73.3283354669253, + 45.5283301087409 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6243332745989 + }, + "name": "boul. De Boucherville et Orchard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.328159309, + 45.528326265 + ] + }, + "is_frozen": false, + "integer_id": 1569, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.333064, + 45.52869 + ] + }, + "id": 1570, + "properties": { + "id": "3bbcea32-d474-49cc-8cd8-d77d2bac6158", + "code": "34585", + "data": { + "stops": [ + { + "id": "4585", + "code": "34585", + "data": { + "gtfs": { + "stop_id": "4585", + "stop_code": "34585", + "stop_name": "boul. Seigneurial est et civique 301", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial est et civique 301", + "geography": { + "type": "Point", + "coordinates": [ + -73.3329559402519, + 45.5288617637853 + ] + } + }, + { + "id": "5348", + "code": "30086", + "data": { + "gtfs": { + "stop_id": "5348", + "stop_code": "30086", + "stop_name": "boul. Seigneurial est et civique 201", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial est et civique 201", + "geography": { + "type": "Point", + "coordinates": [ + -73.3331715566829, + 45.5285189216659 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6304928567237 + }, + "name": "boul. Seigneurial est et civique 301", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.333063748, + 45.528690343 + ] + }, + "is_frozen": false, + "integer_id": 1570, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.334653, + 45.527644 + ] + }, + "id": 1571, + "properties": { + "id": "b476282d-aa8d-4826-8ad2-39123a162025", + "code": "34586", + "data": { + "stops": [ + { + "id": "4586", + "code": "34586", + "data": { + "gtfs": { + "stop_id": "4586", + "stop_code": "34586", + "stop_name": "boul. Seigneurial est et Lakeview", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial est et Lakeview", + "geography": { + "type": "Point", + "coordinates": [ + -73.3346487322883, + 45.5277554143084 + ] + } + }, + { + "id": "5347", + "code": "30085", + "data": { + "gtfs": { + "stop_id": "5347", + "stop_code": "30085", + "stop_name": "boul. Seigneurial est et Lakeview", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial est et Lakeview", + "geography": { + "type": "Point", + "coordinates": [ + -73.3346579519299, + 45.5275322819302 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6127882549391 + }, + "name": "boul. Seigneurial est et Lakeview", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.334653342, + 45.527643848 + ] + }, + "is_frozen": false, + "integer_id": 1571, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.336218, + 45.526452 + ] + }, + "id": 1572, + "properties": { + "id": "39a7153a-bac3-4ac2-84e3-79ec24465317", + "code": "34587", + "data": { + "stops": [ + { + "id": "4587", + "code": "34587", + "data": { + "gtfs": { + "stop_id": "4587", + "stop_code": "34587", + "stop_name": "boul. Seigneurial est et De Bienville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial est et De Bienville", + "geography": { + "type": "Point", + "coordinates": [ + -73.3361909840282, + 45.5265891680098 + ] + } + }, + { + "id": "5346", + "code": "30084", + "data": { + "gtfs": { + "stop_id": "5346", + "stop_code": "30084", + "stop_name": "boul. Seigneurial est et De Bienville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial est et De Bienville", + "geography": { + "type": "Point", + "coordinates": [ + -73.3362452188763, + 45.5263148577461 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5926259801059 + }, + "name": "boul. Seigneurial est et De Bienville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.336218101, + 45.526452013 + ] + }, + "is_frozen": false, + "integer_id": 1572, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.338372, + 45.524901 + ] + }, + "id": 1573, + "properties": { + "id": "2c952684-5d97-4238-ae18-51cba6c9775e", + "code": "34588", + "data": { + "stops": [ + { + "id": "4588", + "code": "34588", + "data": { + "gtfs": { + "stop_id": "4588", + "stop_code": "34588", + "stop_name": "boul. Seigneurial est et Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial est et Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.3381668097258, + 45.525094581164 + ] + } + }, + { + "id": "4681", + "code": "34681", + "data": { + "gtfs": { + "stop_id": "4681", + "stop_code": "34681", + "stop_name": "boul. Seigneurial ouest et Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.3384583135075, + 45.5247064844067 + ] + } + }, + { + "id": "5195", + "code": "35195", + "data": { + "gtfs": { + "stop_id": "5195", + "stop_code": "35195", + "stop_name": "Montarville et boul. Seigneurial ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et boul. Seigneurial ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3385764897183, + 45.5249089822072 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5663814869657 + }, + "name": "boul. Seigneurial est et Montarville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.33837165, + 45.524900533 + ] + }, + "is_frozen": false, + "integer_id": 1573, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.351671, + 45.525576 + ] + }, + "id": 1574, + "properties": { + "id": "72167429-f4d5-4eda-870a-b71c9c47ec5e", + "code": "34589", + "data": { + "stops": [ + { + "id": "4589", + "code": "34589", + "data": { + "gtfs": { + "stop_id": "4589", + "stop_code": "34589", + "stop_name": "De Rigaud et Durham", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Rigaud et Durham", + "geography": { + "type": "Point", + "coordinates": [ + -73.351620442305, + 45.5253560914889 + ] + } + }, + { + "id": "5176", + "code": "35176", + "data": { + "gtfs": { + "stop_id": "5176", + "stop_code": "35176", + "stop_name": "De Rigaud et boul. Clairevue ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Rigaud et boul. Clairevue ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3517206149817, + 45.5257951038857 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5778004738081 + }, + "name": "De Rigaud et Durham", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.351670529, + 45.525575598 + ] + }, + "is_frozen": false, + "integer_id": 1574, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.349586, + 45.524 + ] + }, + "id": 1575, + "properties": { + "id": "515b8790-77c6-4a3b-8347-a621b1167870", + "code": "34590", + "data": { + "stops": [ + { + "id": "4590", + "code": "34590", + "data": { + "gtfs": { + "stop_id": "4590", + "stop_code": "34590", + "stop_name": "De Rigaud et Cicot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Rigaud et Cicot", + "geography": { + "type": "Point", + "coordinates": [ + -73.3497318914203, + 45.523997499646 + ] + } + }, + { + "id": "5175", + "code": "35175", + "data": { + "gtfs": { + "stop_id": "5175", + "stop_code": "35175", + "stop_name": "De Rigaud et Cicot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Rigaud et Cicot", + "geography": { + "type": "Point", + "coordinates": [ + -73.3494397980833, + 45.5240021370419 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5511461751449 + }, + "name": "De Rigaud et Cicot", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.349585845, + 45.523999818 + ] + }, + "is_frozen": false, + "integer_id": 1575, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.344088, + 45.516564 + ] + }, + "id": 1576, + "properties": { + "id": "0910a11d-1b83-4a5b-9c01-30b9a6d926ef", + "code": "34592", + "data": { + "stops": [ + { + "id": "4592", + "code": "34592", + "data": { + "gtfs": { + "stop_id": "4592", + "stop_code": "34592", + "stop_name": "boul. Seigneurial ouest et Dunant", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et Dunant", + "geography": { + "type": "Point", + "coordinates": [ + -73.3440883946436, + 45.5165642468953 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4254034389425 + }, + "name": "boul. Seigneurial ouest et Dunant", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.344088395, + 45.516564247 + ] + }, + "is_frozen": false, + "integer_id": 1576, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.343885, + 45.514316 + ] + }, + "id": 1577, + "properties": { + "id": "4c4fb532-1ed3-4dc8-ab02-b2a6e87e7b90", + "code": "34593", + "data": { + "stops": [ + { + "id": "4593", + "code": "34593", + "data": { + "gtfs": { + "stop_id": "4593", + "stop_code": "34593", + "stop_name": "boul. Seigneurial ouest et STATIONNEMENT INCITATIF SEIGNEURIAL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et STATIONNEMENT INCITATIF SEIGNEURIAL", + "geography": { + "type": "Point", + "coordinates": [ + -73.343884501811, + 45.5143164262652 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3874002953188 + }, + "name": "boul. Seigneurial ouest et STATIONNEMENT INCITATIF SEIGNEURIAL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.343884502, + 45.514316426 + ] + }, + "is_frozen": false, + "integer_id": 1577, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.343472, + 45.514373 + ] + }, + "id": 1578, + "properties": { + "id": "4d3db5af-874a-4a4c-8a87-68ecc590af13", + "code": "34594", + "data": { + "stops": [ + { + "id": "4594", + "code": "34594", + "data": { + "gtfs": { + "stop_id": "4594", + "stop_code": "34594", + "stop_name": "boul. Seigneurial ouest et STATIONNEMENT INCITATIF SEIGNEURIAL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et STATIONNEMENT INCITATIF SEIGNEURIAL", + "geography": { + "type": "Point", + "coordinates": [ + -73.3434715672451, + 45.5143730163986 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.388356987942 + }, + "name": "boul. Seigneurial ouest et STATIONNEMENT INCITATIF SEIGNEURIAL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.343471567, + 45.514373016 + ] + }, + "is_frozen": false, + "integer_id": 1578, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.343796, + 45.51695 + ] + }, + "id": 1579, + "properties": { + "id": "f20c1a67-6c7e-41a3-a85d-9c7b49ac0386", + "code": "34595", + "data": { + "stops": [ + { + "id": "4595", + "code": "34595", + "data": { + "gtfs": { + "stop_id": "4595", + "stop_code": "34595", + "stop_name": "boul. Seigneurial ouest et Dunant", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et Dunant", + "geography": { + "type": "Point", + "coordinates": [ + -73.3437957445346, + 45.5169503989501 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4319324321899 + }, + "name": "boul. Seigneurial ouest et Dunant", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.343795745, + 45.516950399 + ] + }, + "is_frozen": false, + "integer_id": 1579, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.3439, + 45.518396 + ] + }, + "id": 1580, + "properties": { + "id": "652ad35d-f3c9-49c6-b2de-8d15cab5cafb", + "code": "34596", + "data": { + "stops": [ + { + "id": "4596", + "code": "34596", + "data": { + "gtfs": { + "stop_id": "4596", + "stop_code": "34596", + "stop_name": "boul. Seigneurial ouest et De Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et De Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.343899505955, + 45.5183958929226 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4563737815361 + }, + "name": "boul. Seigneurial ouest et De Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.343899506, + 45.518395893 + ] + }, + "is_frozen": false, + "integer_id": 1580, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.339761, + 45.52591 + ] + }, + "id": 1581, + "properties": { + "id": "819e2afa-bfef-47b3-8a41-a55f4c2f9156", + "code": "34598", + "data": { + "stops": [ + { + "id": "4598", + "code": "34598", + "data": { + "gtfs": { + "stop_id": "4598", + "stop_code": "34598", + "stop_name": "Montarville et Saint-Jacques", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et Saint-Jacques", + "geography": { + "type": "Point", + "coordinates": [ + -73.3397610466884, + 45.5259096050494 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5834504822208 + }, + "name": "Montarville et Saint-Jacques", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.339761047, + 45.525909605 + ] + }, + "is_frozen": false, + "integer_id": 1581, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.342043, + 45.527388 + ] + }, + "id": 1582, + "properties": { + "id": "0dae6aad-c792-48fd-a50b-e498ec730741", + "code": "34599", + "data": { + "stops": [ + { + "id": "4599", + "code": "34599", + "data": { + "gtfs": { + "stop_id": "4599", + "stop_code": "34599", + "stop_name": "Montarville et ch. De La Rabastalière est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et ch. De La Rabastalière est", + "geography": { + "type": "Point", + "coordinates": [ + -73.3418415916375, + 45.5273408429683 + ] + } + }, + { + "id": "5193", + "code": "35193", + "data": { + "gtfs": { + "stop_id": "5193", + "stop_code": "35193", + "stop_name": "Montarville et ch. De La Rabastalière ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et ch. De La Rabastalière ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3422447568356, + 45.5274347065794 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6084561607433 + }, + "name": "Montarville et ch. De La Rabastalière est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.342043174, + 45.527387775 + ] + }, + "is_frozen": false, + "integer_id": 1582, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.336331, + 45.509236 + ] + }, + "id": 1583, + "properties": { + "id": "a1087eae-a20b-4cd0-b8e7-26440d382937", + "code": "34602", + "data": { + "stops": [ + { + "id": "4602", + "code": "34602", + "data": { + "gtfs": { + "stop_id": "4602", + "stop_code": "34602", + "stop_name": "montée Sabourin et Grand Boulevard ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Sabourin et Grand Boulevard ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3364975587708, + 45.5091438818778 + ] + } + }, + { + "id": "4616", + "code": "34616", + "data": { + "gtfs": { + "stop_id": "4616", + "stop_code": "34616", + "stop_name": "Grand Boulevard ouest et Grand Boulevard ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grand Boulevard ouest et Grand Boulevard ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3361650562339, + 45.5093271622299 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3015157636519 + }, + "name": "montée Sabourin et Grand Boulevard ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.336331308, + 45.509235522 + ] + }, + "is_frozen": false, + "integer_id": 1583, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.332959, + 45.511342 + ] + }, + "id": 1584, + "properties": { + "id": "1d0cf396-f4ae-4977-a367-c4cf2be5bc83", + "code": "34603", + "data": { + "stops": [ + { + "id": "4603", + "code": "34603", + "data": { + "gtfs": { + "stop_id": "4603", + "stop_code": "34603", + "stop_name": "Grand Boulevard ouest et de la Savoyane", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grand Boulevard ouest et de la Savoyane", + "geography": { + "type": "Point", + "coordinates": [ + -73.3330049133188, + 45.5112485061274 + ] + } + }, + { + "id": "5210", + "code": "35210", + "data": { + "gtfs": { + "stop_id": "5210", + "stop_code": "35210", + "stop_name": "Grand Boulevard ouest et de la Savoyane", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grand Boulevard ouest et de la Savoyane", + "geography": { + "type": "Point", + "coordinates": [ + -73.3329128336734, + 45.5114349860652 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3371153121759 + }, + "name": "Grand Boulevard ouest et de la Savoyane", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.332958873, + 45.511341746 + ] + }, + "is_frozen": false, + "integer_id": 1584, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.328495, + 45.514243 + ] + }, + "id": 1585, + "properties": { + "id": "23cec068-5e76-484b-b2ab-203e4ea55358", + "code": "34604", + "data": { + "stops": [ + { + "id": "4604", + "code": "34604", + "data": { + "gtfs": { + "stop_id": "4604", + "stop_code": "34604", + "stop_name": "Grand Boulevard est et de l'Orchidée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grand Boulevard est et de l'Orchidée", + "geography": { + "type": "Point", + "coordinates": [ + -73.3286044683747, + 45.514149685991 + ] + } + }, + { + "id": "4861", + "code": "34861", + "data": { + "gtfs": { + "stop_id": "4861", + "stop_code": "34861", + "stop_name": "Grand Boulevard est et de l'Orchidée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grand Boulevard est et de l'Orchidée", + "geography": { + "type": "Point", + "coordinates": [ + -73.3283857988658, + 45.5143362088356 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.386158086865 + }, + "name": "Grand Boulevard est et de l'Orchidée", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.328495134, + 45.514242947 + ] + }, + "is_frozen": false, + "integer_id": 1585, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.362189, + 45.515042 + ] + }, + "id": 1586, + "properties": { + "id": "4f54f52f-b62c-4341-a4d5-24c02344f25b", + "code": "34607", + "data": { + "stops": [ + { + "id": "4607", + "code": "34607", + "data": { + "gtfs": { + "stop_id": "4607", + "stop_code": "34607", + "stop_name": "Marie-Victorin et civique 1700", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Marie-Victorin et civique 1700", + "geography": { + "type": "Point", + "coordinates": [ + -73.3621893737397, + 45.5150415571174 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3996593463023 + }, + "name": "Marie-Victorin et civique 1700", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.362189374, + 45.515041557 + ] + }, + "is_frozen": false, + "integer_id": 1586, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.369013, + 45.517385 + ] + }, + "id": 1587, + "properties": { + "id": "b3d09d08-d2e3-4276-8b7a-d3d07d979e6c", + "code": "34608", + "data": { + "stops": [ + { + "id": "4608", + "code": "34608", + "data": { + "gtfs": { + "stop_id": "4608", + "stop_code": "34608", + "stop_name": "Marie-Victorin et Sagard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Marie-Victorin et Sagard", + "geography": { + "type": "Point", + "coordinates": [ + -73.3690131995661, + 45.5173849141432 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4392792977504 + }, + "name": "Marie-Victorin et Sagard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.3690132, + 45.517384914 + ] + }, + "is_frozen": false, + "integer_id": 1587, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.369104, + 45.519594 + ] + }, + "id": 1588, + "properties": { + "id": "635ebffd-b274-4e79-9618-a0203ceaa811", + "code": "34609", + "data": { + "stops": [ + { + "id": "4609", + "code": "34609", + "data": { + "gtfs": { + "stop_id": "4609", + "stop_code": "34609", + "stop_name": "Marie-Victorin et civique 1250", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Marie-Victorin et civique 1250", + "geography": { + "type": "Point", + "coordinates": [ + -73.3691036752221, + 45.5195941265766 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.476635709577 + }, + "name": "Marie-Victorin et civique 1250", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.369103675, + 45.519594127 + ] + }, + "is_frozen": false, + "integer_id": 1588, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.356271, + 45.53925 + ] + }, + "id": 1589, + "properties": { + "id": "4511e120-86db-4b9f-bbc5-ef3d3a1627fd", + "code": "34611", + "data": { + "stops": [ + { + "id": "4611", + "code": "34611", + "data": { + "gtfs": { + "stop_id": "4611", + "stop_code": "34611", + "stop_name": "De La Vérendrye et place De La Vérendrye", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Vérendrye et place De La Vérendrye", + "geography": { + "type": "Point", + "coordinates": [ + -73.3562708705961, + 45.5392504255702 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8092029767529 + }, + "name": "De La Vérendrye et place De La Vérendrye", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.356270871, + 45.539250426 + ] + }, + "is_frozen": false, + "integer_id": 1589, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.346165, + 45.520498 + ] + }, + "id": 1590, + "properties": { + "id": "1903cbec-a898-4d1e-aa47-0930a7af3bd5", + "code": "34612", + "data": { + "stops": [ + { + "id": "4612", + "code": "34612", + "data": { + "gtfs": { + "stop_id": "4612", + "stop_code": "34612", + "stop_name": "ch. De La Rabastalière ouest et Albani", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. De La Rabastalière ouest et Albani", + "geography": { + "type": "Point", + "coordinates": [ + -73.3462449707743, + 45.5204710664685 + ] + } + }, + { + "id": "5172", + "code": "35172", + "data": { + "gtfs": { + "stop_id": "5172", + "stop_code": "35172", + "stop_name": "ch. De La Rabastalière ouest et Costain", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. De La Rabastalière ouest et Costain", + "geography": { + "type": "Point", + "coordinates": [ + -73.3460859046518, + 45.5205243549626 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.491916003489 + }, + "name": "ch. De La Rabastalière ouest et Albani", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.346165438, + 45.520497711 + ] + }, + "is_frozen": false, + "integer_id": 1590, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.340818, + 45.528396 + ] + }, + "id": 1591, + "properties": { + "id": "664c0430-a4fa-4f7d-aa9b-f0bfd0ecd1e4", + "code": "34613", + "data": { + "stops": [ + { + "id": "4613", + "code": "34613", + "data": { + "gtfs": { + "stop_id": "4613", + "stop_code": "34613", + "stop_name": "ch. De La Rabastalière est et Saint-Jacques", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. De La Rabastalière est et Saint-Jacques", + "geography": { + "type": "Point", + "coordinates": [ + -73.3408184262684, + 45.5283961802937 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6255161086257 + }, + "name": "ch. De La Rabastalière est et Saint-Jacques", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.340818426, + 45.52839618 + ] + }, + "is_frozen": false, + "integer_id": 1591, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.339764, + 45.529346 + ] + }, + "id": 1592, + "properties": { + "id": "87b33360-b2b6-4448-85dd-00bcc2d6204c", + "code": "34614", + "data": { + "stops": [ + { + "id": "4614", + "code": "34614", + "data": { + "gtfs": { + "stop_id": "4614", + "stop_code": "34614", + "stop_name": "ch. De La Rabastalière est et Goyer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. De La Rabastalière est et Goyer", + "geography": { + "type": "Point", + "coordinates": [ + -73.3397640937222, + 45.529346276077 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.641590428553 + }, + "name": "ch. De La Rabastalière est et Goyer", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.339764094, + 45.529346276 + ] + }, + "is_frozen": false, + "integer_id": 1592, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.352566, + 45.541268 + ] + }, + "id": 1593, + "properties": { + "id": "25f62569-60d2-41e7-8610-c3538fe230bf", + "code": "34641", + "data": { + "stops": [ + { + "id": "4641", + "code": "34641", + "data": { + "gtfs": { + "stop_id": "4641", + "stop_code": "34641", + "stop_name": "Yvonne-Duckett et Juliette-Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Yvonne-Duckett et Juliette-Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3525658439736, + 45.541267928633 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8433568467512 + }, + "name": "Yvonne-Duckett et Juliette-Béliveau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.352565844, + 45.541267929 + ] + }, + "is_frozen": false, + "integer_id": 1593, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.357078, + 45.537872 + ] + }, + "id": 1594, + "properties": { + "id": "cecd1a42-805e-4b1f-971e-5486564ef354", + "code": "34643", + "data": { + "stops": [ + { + "id": "4643", + "code": "34643", + "data": { + "gtfs": { + "stop_id": "4643", + "stop_code": "34643", + "stop_name": "Montarville et Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.3572170255715, + 45.5378826830878 + ] + } + }, + { + "id": "5702", + "code": "30470", + "data": { + "gtfs": { + "stop_id": "5702", + "stop_code": "30470", + "stop_name": "Montarville et Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.356938984572, + 45.5378609487814 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7858668758619 + }, + "name": "Montarville et Montarville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.357078005, + 45.537871816 + ] + }, + "is_frozen": false, + "integer_id": 1594, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.346331, + 45.522932 + ] + }, + "id": 1595, + "properties": { + "id": "d6901f53-cd66-4086-8fc5-2643b6cfcce0", + "code": "34645", + "data": { + "stops": [ + { + "id": "4645", + "code": "34645", + "data": { + "gtfs": { + "stop_id": "4645", + "stop_code": "34645", + "stop_name": "De Rigaud et ch. De La Rabastalière ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Rigaud et ch. De La Rabastalière ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3464363057355, + 45.522995246708 + ] + } + }, + { + "id": "5173", + "code": "35173", + "data": { + "gtfs": { + "stop_id": "5173", + "stop_code": "35173", + "stop_name": "ch. De La Rabastalière ouest et De Rigaud", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. De La Rabastalière ouest et De Rigaud", + "geography": { + "type": "Point", + "coordinates": [ + -73.3462262575614, + 45.5228680606194 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5330794530989 + }, + "name": "De Rigaud et ch. De La Rabastalière ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.346331282, + 45.522931654 + ] + }, + "is_frozen": false, + "integer_id": 1595, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.382321, + 45.506268 + ] + }, + "id": 1596, + "properties": { + "id": "c4c03f6a-b2dc-4fb8-87cd-df1a4417beae", + "code": "34649", + "data": { + "stops": [ + { + "id": "4649", + "code": "34649", + "data": { + "gtfs": { + "stop_id": "4649", + "stop_code": "34649", + "stop_name": "boul. Saint-Bruno et CINEMA CINEPLEX ODEON SAINT-BRUNO", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Saint-Bruno et CINEMA CINEPLEX ODEON SAINT-BRUNO", + "geography": { + "type": "Point", + "coordinates": [ + -73.3823205659396, + 45.5062683568164 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.251371230004 + }, + "name": "boul. Saint-Bruno et CINEMA CINEPLEX ODEON SAINT-BRUNO", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.382320566, + 45.506268357 + ] + }, + "is_frozen": false, + "integer_id": 1596, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.358053, + 45.515289 + ] + }, + "id": 1597, + "properties": { + "id": "f9418d0c-9ee7-44b5-a2f0-bb6a76a0df3e", + "code": "34654", + "data": { + "stops": [ + { + "id": "4654", + "code": "34654", + "data": { + "gtfs": { + "stop_id": "4654", + "stop_code": "34654", + "stop_name": "Marie-Victorin et civique 1800", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Marie-Victorin et civique 1800", + "geography": { + "type": "Point", + "coordinates": [ + -73.3580526363863, + 45.5152886882866 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4038374453195 + }, + "name": "Marie-Victorin et civique 1800", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.358052636, + 45.515288688 + ] + }, + "is_frozen": false, + "integer_id": 1597, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.350599, + 45.537669 + ] + }, + "id": 1598, + "properties": { + "id": "202ead47-deaa-405e-b65f-b1c0ac914072", + "code": "34655", + "data": { + "stops": [ + { + "id": "4655", + "code": "34655", + "data": { + "gtfs": { + "stop_id": "4655", + "stop_code": "34655", + "stop_name": "Goyer et Jolliet", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Goyer et Jolliet", + "geography": { + "type": "Point", + "coordinates": [ + -73.3505990363788, + 45.5376685894514 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.782426941352 + }, + "name": "Goyer et Jolliet", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.350599036, + 45.537668589 + ] + }, + "is_frozen": false, + "integer_id": 1598, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.351644, + 45.540278 + ] + }, + "id": 1599, + "properties": { + "id": "b8cfafe3-b6a4-49f2-a7bb-9ae8933f001e", + "code": "34656", + "data": { + "stops": [ + { + "id": "4656", + "code": "34656", + "data": { + "gtfs": { + "stop_id": "4656", + "stop_code": "34656", + "stop_name": "La Salle et De La Vérendrye", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Salle et De La Vérendrye", + "geography": { + "type": "Point", + "coordinates": [ + -73.3516436924559, + 45.5402780765233 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8265994035397 + }, + "name": "La Salle et De La Vérendrye", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.351643692, + 45.540278077 + ] + }, + "is_frozen": false, + "integer_id": 1599, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.35647, + 45.537889 + ] + }, + "id": 1600, + "properties": { + "id": "57420416-a1c5-4dd0-bce2-fccdbb41630a", + "code": "34657", + "data": { + "stops": [ + { + "id": "4657", + "code": "34657", + "data": { + "gtfs": { + "stop_id": "4657", + "stop_code": "34657", + "stop_name": "De La Vérendrye et Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Vérendrye et Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.3564703963255, + 45.5378893051576 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7861629062345 + }, + "name": "De La Vérendrye et Montarville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.356470396, + 45.537889305 + ] + }, + "is_frozen": false, + "integer_id": 1600, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.431417, + 45.50809 + ] + }, + "id": 1601, + "properties": { + "id": "2c8a6d09-2eb8-47e3-86bb-ac6501351f3b", + "code": "34663", + "data": { + "stops": [ + { + "id": "4663", + "code": "34663", + "data": { + "gtfs": { + "stop_id": "4663", + "stop_code": "34663", + "stop_name": "Sortie 116 et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Sortie 116 et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4314173461676, + 45.5080895678015 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.28214842636 + }, + "name": "Sortie 116 et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431417346, + 45.508089568 + ] + }, + "is_frozen": false, + "integer_id": 1601, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.429955, + 45.50758 + ] + }, + "id": 1602, + "properties": { + "id": "4aea3348-4995-4fc9-b06f-6698460c1f1d", + "code": "34664", + "data": { + "stops": [ + { + "id": "4664", + "code": "34664", + "data": { + "gtfs": { + "stop_id": "4664", + "stop_code": "34664", + "stop_name": "boul. Sir-Wilfrid-Laurier - (116) est et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier - (116) est et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4299550821669, + 45.5075801193624 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2735387959364 + }, + "name": "boul. Sir-Wilfrid-Laurier - (116) est et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.429955082, + 45.507580119 + ] + }, + "is_frozen": false, + "integer_id": 1602, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.353114, + 45.525562 + ] + }, + "id": 1603, + "properties": { + "id": "57dc3582-89e5-4ef0-a1fc-ba8d7e551866", + "code": "34666", + "data": { + "stops": [ + { + "id": "4666", + "code": "34666", + "data": { + "gtfs": { + "stop_id": "4666", + "stop_code": "34666", + "stop_name": "boul. Clairevue ouest et Cadieux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et Cadieux", + "geography": { + "type": "Point", + "coordinates": [ + -73.3530278482365, + 45.5257044625257 + ] + } + }, + { + "id": "5182", + "code": "35182", + "data": { + "gtfs": { + "stop_id": "5182", + "stop_code": "35182", + "stop_name": "boul. Clairevue ouest et Cadieux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et Cadieux", + "geography": { + "type": "Point", + "coordinates": [ + -73.3532009168142, + 45.5254204905517 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5775785231231 + }, + "name": "boul. Clairevue ouest et Cadieux", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.353114383, + 45.525562477 + ] + }, + "is_frozen": false, + "integer_id": 1603, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.348197, + 45.528068 + ] + }, + "id": 1604, + "properties": { + "id": "a4342529-2476-4d58-89df-3af5cc46b2ed", + "code": "34669", + "data": { + "stops": [ + { + "id": "4669", + "code": "34669", + "data": { + "gtfs": { + "stop_id": "4669", + "stop_code": "34669", + "stop_name": "boul. Clairevue ouest et civique 105", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et civique 105", + "geography": { + "type": "Point", + "coordinates": [ + -73.3481967790403, + 45.5280675799679 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6199568350463 + }, + "name": "boul. Clairevue ouest et civique 105", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.348196779, + 45.52806758 + ] + }, + "is_frozen": false, + "integer_id": 1604, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.368013, + 45.520585 + ] + }, + "id": 1605, + "properties": { + "id": "4087f6e1-342c-4090-94e9-c90c43ab2560", + "code": "34670", + "data": { + "stops": [ + { + "id": "4670", + "code": "34670", + "data": { + "gtfs": { + "stop_id": "4670", + "stop_code": "34670", + "stop_name": "boul. Clairevue ouest et Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.3680128482317, + 45.5205846295747 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4933859083585 + }, + "name": "boul. Clairevue ouest et Marie-Victorin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.368012848, + 45.52058463 + ] + }, + "is_frozen": false, + "integer_id": 1605, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.351089, + 45.526285 + ] + }, + "id": 1606, + "properties": { + "id": "847391f5-cdd6-49af-ac72-f7b987f65b7f", + "code": "34671", + "data": { + "stops": [ + { + "id": "4671", + "code": "34671", + "data": { + "gtfs": { + "stop_id": "4671", + "stop_code": "34671", + "stop_name": "boul. Clairevue ouest et de Carillon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et de Carillon", + "geography": { + "type": "Point", + "coordinates": [ + -73.3510894484828, + 45.526284613467 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5897941754117 + }, + "name": "boul. Clairevue ouest et de Carillon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.351089448, + 45.526284613 + ] + }, + "is_frozen": false, + "integer_id": 1606, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465932, + 45.561082 + ] + }, + "id": 1607, + "properties": { + "id": "83389414-0049-46f6-a04b-557250511611", + "code": "34674", + "data": { + "stops": [ + { + "id": "4674", + "code": "34674", + "data": { + "gtfs": { + "stop_id": "4674", + "stop_code": "34674", + "stop_name": "boul. Fernand-Lafontaine et Delage", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et Delage", + "geography": { + "type": "Point", + "coordinates": [ + -73.4657645424304, + 45.5611918203168 + ] + } + }, + { + "id": "4675", + "code": "34675", + "data": { + "gtfs": { + "stop_id": "4675", + "stop_code": "34675", + "stop_name": "boul. Fernand-Lafontaine et Delage", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et Delage", + "geography": { + "type": "Point", + "coordinates": [ + -73.4660986842994, + 45.5609731055712 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1789858369358 + }, + "name": "boul. Fernand-Lafontaine et Delage", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465931613, + 45.561082463 + ] + }, + "is_frozen": false, + "integer_id": 1607, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.348963, + 45.536007 + ] + }, + "id": 1608, + "properties": { + "id": "5ee81343-27a6-4a75-a9d6-cfd2443e5ca4", + "code": "34677", + "data": { + "stops": [ + { + "id": "4677", + "code": "34677", + "data": { + "gtfs": { + "stop_id": "4677", + "stop_code": "34677", + "stop_name": "Goyer et Chassé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Goyer et Chassé", + "geography": { + "type": "Point", + "coordinates": [ + -73.3489634216163, + 45.5360071675144 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.754306176618 + }, + "name": "Goyer et Chassé", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.348963422, + 45.536007168 + ] + }, + "is_frozen": false, + "integer_id": 1608, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.347413, + 45.535112 + ] + }, + "id": 1609, + "properties": { + "id": "33779f20-bdd2-4c97-8c57-e7f88093dfb0", + "code": "34678", + "data": { + "stops": [ + { + "id": "4678", + "code": "34678", + "data": { + "gtfs": { + "stop_id": "4678", + "stop_code": "34678", + "stop_name": "Goyer et De Tonty", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Goyer et De Tonty", + "geography": { + "type": "Point", + "coordinates": [ + -73.3474132695358, + 45.535111521566 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7391477347661 + }, + "name": "Goyer et De Tonty", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.34741327, + 45.535111522 + ] + }, + "is_frozen": false, + "integer_id": 1609, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.345721, + 45.533933 + ] + }, + "id": 1610, + "properties": { + "id": "bc16cbaa-5a30-48f3-9330-5ee7ec0441a1", + "code": "34679", + "data": { + "stops": [ + { + "id": "4679", + "code": "34679", + "data": { + "gtfs": { + "stop_id": "4679", + "stop_code": "34679", + "stop_name": "Goyer et Caillé est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Goyer et Caillé est", + "geography": { + "type": "Point", + "coordinates": [ + -73.3457206364148, + 45.5339331543048 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7192054285941 + }, + "name": "Goyer et Caillé est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.345720636, + 45.533933154 + ] + }, + "is_frozen": false, + "integer_id": 1610, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.350783, + 45.533895 + ] + }, + "id": 1611, + "properties": { + "id": "a5fa3371-93c4-47f9-8972-32a538fcab1f", + "code": "34682", + "data": { + "stops": [ + { + "id": "4682", + "code": "34682", + "data": { + "gtfs": { + "stop_id": "4682", + "stop_code": "34682", + "stop_name": "Montarville et Contrecoeur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et Contrecoeur", + "geography": { + "type": "Point", + "coordinates": [ + -73.3509079103832, + 45.5338932209851 + ] + } + }, + { + "id": "5699", + "code": "30467", + "data": { + "gtfs": { + "stop_id": "5699", + "stop_code": "30467", + "stop_name": "Montarville et Contrecoeur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et Contrecoeur", + "geography": { + "type": "Point", + "coordinates": [ + -73.3506573164083, + 45.5338962527428 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7185552929698 + }, + "name": "Montarville et Contrecoeur", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.350782613, + 45.533894737 + ] + }, + "is_frozen": false, + "integer_id": 1611, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.35489, + 45.540172 + ] + }, + "id": 1612, + "properties": { + "id": "ea96e923-e899-4f40-b55b-0ec5bd72c618", + "code": "34683", + "data": { + "stops": [ + { + "id": "4683", + "code": "34683", + "data": { + "gtfs": { + "stop_id": "4683", + "stop_code": "34683", + "stop_name": "De La Vérendrye et place De La Vérendrye", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De La Vérendrye et place De La Vérendrye", + "geography": { + "type": "Point", + "coordinates": [ + -73.3548902558419, + 45.5401722794146 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8248083753917 + }, + "name": "De La Vérendrye et place De La Vérendrye", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.354890256, + 45.540172279 + ] + }, + "is_frozen": false, + "integer_id": 1612, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.351544, + 45.53818 + ] + }, + "id": 1613, + "properties": { + "id": "a559ed96-e206-444a-b3b1-e1eedefb1ccd", + "code": "34684", + "data": { + "stops": [ + { + "id": "4684", + "code": "34684", + "data": { + "gtfs": { + "stop_id": "4684", + "stop_code": "34684", + "stop_name": "La Salle et Hudson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Salle et Hudson", + "geography": { + "type": "Point", + "coordinates": [ + -73.3515442964246, + 45.5381803482397 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7910893324514 + }, + "name": "La Salle et Hudson", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.351544296, + 45.538180348 + ] + }, + "is_frozen": false, + "integer_id": 1613, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.344055, + 45.519448 + ] + }, + "id": 1614, + "properties": { + "id": "7ac3961a-0b0e-47c8-a264-69b6edbbd2b9", + "code": "34686", + "data": { + "stops": [ + { + "id": "4686", + "code": "34686", + "data": { + "gtfs": { + "stop_id": "4686", + "stop_code": "34686", + "stop_name": "boul. Seigneurial ouest et civique 315", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et civique 315", + "geography": { + "type": "Point", + "coordinates": [ + -73.3440549140848, + 45.5194476264792 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4741583345731 + }, + "name": "boul. Seigneurial ouest et civique 315", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.344054914, + 45.519447626 + ] + }, + "is_frozen": false, + "integer_id": 1614, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.493956, + 45.456865 + ] + }, + "id": 1615, + "properties": { + "id": "d8eae8f7-d8ed-4c6f-8280-28fd4b885b03", + "code": "34688", + "data": { + "stops": [ + { + "id": "4688", + "code": "34688", + "data": { + "gtfs": { + "stop_id": "4688", + "stop_code": "34688", + "stop_name": "boul. du Saint-Laurent et Saint-Maurice", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Saint-Laurent et Saint-Maurice", + "geography": { + "type": "Point", + "coordinates": [ + -73.493955945366, + 45.4568654339214 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4176214335378 + }, + "name": "boul. du Saint-Laurent et Saint-Maurice", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493955945, + 45.456865434 + ] + }, + "is_frozen": false, + "integer_id": 1615, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.416828, + 45.45739 + ] + }, + "id": 1616, + "properties": { + "id": "be2e580d-0de3-4edf-8ee4-890565699c8a", + "code": "34693", + "data": { + "stops": [ + { + "id": "4693", + "code": "34693", + "data": { + "gtfs": { + "stop_id": "4693", + "stop_code": "34693", + "stop_name": "Grande Allée et J.-A.-Bombardier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et J.-A.-Bombardier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4168277321012, + 45.4573899364726 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4264618198912 + }, + "name": "Grande Allée et J.-A.-Bombardier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.416827732, + 45.457389936 + ] + }, + "is_frozen": false, + "integer_id": 1616, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.4177, + 45.457581 + ] + }, + "id": 1617, + "properties": { + "id": "4d7b837b-dc9e-45a8-8586-b51c6fcd4545", + "code": "34696", + "data": { + "stops": [ + { + "id": "4696", + "code": "34696", + "data": { + "gtfs": { + "stop_id": "4696", + "stop_code": "34696", + "stop_name": "boul. Grande Allée et J.-A.-Bombardier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et J.-A.-Bombardier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4177000199196, + 45.457580596856 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4296754370607 + }, + "name": "boul. Grande Allée et J.-A.-Bombardier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.41770002, + 45.457580597 + ] + }, + "is_frozen": false, + "integer_id": 1617, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.419034, + 45.577213 + ] + }, + "id": 1618, + "properties": { + "id": "88dc439b-1c69-4b99-b3d0-d19592029cc1", + "code": "34697", + "data": { + "stops": [ + { + "id": "4697", + "code": "34697", + "data": { + "gtfs": { + "stop_id": "4697", + "stop_code": "34697", + "stop_name": "boul. De Montarville et des Vosges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et des Vosges", + "geography": { + "type": "Point", + "coordinates": [ + -73.4192993902718, + 45.5772989367099 + ] + } + }, + { + "id": "4978", + "code": "34978", + "data": { + "gtfs": { + "stop_id": "4978", + "stop_code": "34978", + "stop_name": "boul. De Montarville et des Vosges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et des Vosges", + "geography": { + "type": "Point", + "coordinates": [ + -73.4187692323194, + 45.5771278071727 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4524786202965 + }, + "name": "boul. De Montarville et des Vosges", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.419034311, + 45.577213372 + ] + }, + "is_frozen": false, + "integer_id": 1618, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.400919, + 45.56616 + ] + }, + "id": 1619, + "properties": { + "id": "a4120eb1-d1f9-43e5-8720-90115641165b", + "code": "34708", + "data": { + "stops": [ + { + "id": "4708", + "code": "34708", + "data": { + "gtfs": { + "stop_id": "4708", + "stop_code": "34708", + "stop_name": "Louis-Pasteur et civique 525", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Louis-Pasteur et civique 525", + "geography": { + "type": "Point", + "coordinates": [ + -73.4009189260835, + 45.5661604106554 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2650552302591 + }, + "name": "Louis-Pasteur et civique 525", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.400918926, + 45.566160411 + ] + }, + "is_frozen": false, + "integer_id": 1619, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.42468, + 45.462531 + ] + }, + "id": 1620, + "properties": { + "id": "c8bdc9d9-6d86-478d-91a7-b7196c447016", + "code": "34710", + "data": { + "stops": [ + { + "id": "4710", + "code": "34710", + "data": { + "gtfs": { + "stop_id": "4710", + "stop_code": "34710", + "stop_name": "Grande Allée et boul. Westley", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et boul. Westley", + "geography": { + "type": "Point", + "coordinates": [ + -73.4244362252152, + 45.4623672768917 + ] + } + }, + { + "id": "4711", + "code": "34711", + "data": { + "gtfs": { + "stop_id": "4711", + "stop_code": "34711", + "stop_name": "boul. Grande Allée et boul. Westley", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et boul. Westley", + "geography": { + "type": "Point", + "coordinates": [ + -73.4249228183191, + 45.462371171048 + ] + } + }, + { + "id": "5720", + "code": "30489", + "data": { + "gtfs": { + "stop_id": "5720", + "stop_code": "30489", + "stop_name": "Grande Allée et boul. Westley", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et boul. Westley", + "geography": { + "type": "Point", + "coordinates": [ + -73.4249157612854, + 45.4626946244918 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5131256217809 + }, + "name": "Grande Allée et boul. Westley", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.424679522, + 45.462530951 + ] + }, + "is_frozen": false, + "integer_id": 1620, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.343259, + 45.512039 + ] + }, + "id": 1621, + "properties": { + "id": "784a98f8-f964-4b51-9a84-d7aa241d6aab", + "code": "34714", + "data": { + "stops": [ + { + "id": "4714", + "code": "34714", + "data": { + "gtfs": { + "stop_id": "4714", + "stop_code": "34714", + "stop_name": "montée Sabourin et boul. Seigneurial ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Sabourin et boul. Seigneurial ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3430508885836, + 45.5121281742753 + ] + } + }, + { + "id": "5162", + "code": "35162", + "data": { + "gtfs": { + "stop_id": "5162", + "stop_code": "35162", + "stop_name": "boul. Seigneurial ouest et montée Sabourin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et montée Sabourin", + "geography": { + "type": "Point", + "coordinates": [ + -73.3434530592749, + 45.5121157612139 + ] + } + }, + { + "id": "5692", + "code": "30460", + "data": { + "gtfs": { + "stop_id": "5692", + "stop_code": "30460", + "stop_name": "montée Sabourin et boul. Seigneurial ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Sabourin et boul. Seigneurial ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3434662090729, + 45.5119493715163 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3488973822422 + }, + "name": "montée Sabourin et boul. Seigneurial ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.343258549, + 45.512038773 + ] + }, + "is_frozen": false, + "integer_id": 1621, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463961, + 45.436104 + ] + }, + "id": 1622, + "properties": { + "id": "e990ec2d-e586-4b2f-884d-4124f22426b3", + "code": "34715", + "data": { + "stops": [ + { + "id": "4715", + "code": "34715", + "data": { + "gtfs": { + "stop_id": "4715", + "stop_code": "34715", + "stop_name": "Oméga et Outremont", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Oméga et Outremont", + "geography": { + "type": "Point", + "coordinates": [ + -73.463797776136, + 45.436201518918 + ] + } + }, + { + "id": "4719", + "code": "34719", + "data": { + "gtfs": { + "stop_id": "4719", + "stop_code": "34719", + "stop_name": "Oméga et Outremont", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Oméga et Outremont", + "geography": { + "type": "Point", + "coordinates": [ + -73.4641248173184, + 45.4360058967398 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.067882278871 + }, + "name": "Oméga et Outremont", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463961297, + 45.436103708 + ] + }, + "is_frozen": false, + "integer_id": 1622, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459158, + 45.424962 + ] + }, + "id": 1623, + "properties": { + "id": "c231ce0f-25f6-4aeb-9a45-f6162e368fe7", + "code": "34720", + "data": { + "stops": [ + { + "id": "4720", + "code": "34720", + "data": { + "gtfs": { + "stop_id": "4720", + "stop_code": "34720", + "stop_name": "place Jade et civique 9550", + "location_type": 0, + "parent_station": "" + } + }, + "name": "place Jade et civique 9550", + "geography": { + "type": "Point", + "coordinates": [ + -73.459157881299, + 45.4249621194855 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.8803555025949 + }, + "name": "place Jade et civique 9550", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459157881, + 45.424962119 + ] + }, + "is_frozen": false, + "integer_id": 1623, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.416766, + 45.455296 + ] + }, + "id": 1624, + "properties": { + "id": "24b525eb-f42e-4817-8122-95b424e3e4fc", + "code": "34721", + "data": { + "stops": [ + { + "id": "4721", + "code": "34721", + "data": { + "gtfs": { + "stop_id": "4721", + "stop_code": "34721", + "stop_name": "place de la Couronne et Entrepôt Ikea Brossard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "place de la Couronne et Entrepôt Ikea Brossard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4167655416056, + 45.4552959743206 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.391169927062 + }, + "name": "place de la Couronne et Entrepôt Ikea Brossard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.416765542, + 45.455295974 + ] + }, + "is_frozen": false, + "integer_id": 1624, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.378916, + 45.493373 + ] + }, + "id": 1625, + "properties": { + "id": "c7be2a86-2a63-43b1-993a-6ba9a80be235", + "code": "34725", + "data": { + "stops": [ + { + "id": "4725", + "code": "34725", + "data": { + "gtfs": { + "stop_id": "4725", + "stop_code": "34725", + "stop_name": "boul. des Promenades et Laure-L.-Hosson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. des Promenades et Laure-L.-Hosson", + "geography": { + "type": "Point", + "coordinates": [ + -73.3789976744494, + 45.4935498502182 + ] + } + }, + { + "id": "4726", + "code": "34726", + "data": { + "gtfs": { + "stop_id": "4726", + "stop_code": "34726", + "stop_name": "boul. des Promenades et Laure-L.-Hosson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. des Promenades et Laure-L.-Hosson", + "geography": { + "type": "Point", + "coordinates": [ + -73.378834644253, + 45.4931954679821 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0335273718589 + }, + "name": "boul. des Promenades et Laure-L.-Hosson", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.378916159, + 45.493372659 + ] + }, + "is_frozen": false, + "integer_id": 1625, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.380891, + 45.489372 + ] + }, + "id": 1626, + "properties": { + "id": "8a7f5b7c-86e5-412e-a099-1a9d5ca8dce9", + "code": "34727", + "data": { + "stops": [ + { + "id": "4727", + "code": "34727", + "data": { + "gtfs": { + "stop_id": "4727", + "stop_code": "34727", + "stop_name": "boul. des Promenades et Robert-Guinard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. des Promenades et Robert-Guinard", + "geography": { + "type": "Point", + "coordinates": [ + -73.3810077358963, + 45.4895148347179 + ] + } + }, + { + "id": "4728", + "code": "34728", + "data": { + "gtfs": { + "stop_id": "4728", + "stop_code": "34728", + "stop_name": "boul. des Promenades et Robert-Guinard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. des Promenades et Robert-Guinard", + "geography": { + "type": "Point", + "coordinates": [ + -73.3807747000218, + 45.4892291644245 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9659752885406 + }, + "name": "boul. des Promenades et Robert-Guinard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.380891218, + 45.489372 + ] + }, + "is_frozen": false, + "integer_id": 1626, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.433005, + 45.510921 + ] + }, + "id": 1627, + "properties": { + "id": "789f4442-496b-49a8-9269-68c86839ee71", + "code": "34729", + "data": { + "stops": [ + { + "id": "4729", + "code": "34729", + "data": { + "gtfs": { + "stop_id": "4729", + "stop_code": "34729", + "stop_name": "ch. de la Savane et rte de l'Aéroport", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et rte de l'Aéroport", + "geography": { + "type": "Point", + "coordinates": [ + -73.4331772110339, + 45.5107764125217 + ] + } + }, + { + "id": "4816", + "code": "34816", + "data": { + "gtfs": { + "stop_id": "4816", + "stop_code": "34816", + "stop_name": "ch. de la Savane et rte de l'Aéroport", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et rte de l'Aéroport", + "geography": { + "type": "Point", + "coordinates": [ + -73.4328320253035, + 45.5110658880434 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3300060529033 + }, + "name": "ch. de la Savane et rte de l'Aéroport", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.433004618, + 45.51092115 + ] + }, + "is_frozen": false, + "integer_id": 1627, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463184, + 45.430404 + ] + }, + "id": 1628, + "properties": { + "id": "4b0fd39d-15a0-46ea-89e7-d0952ab5c888", + "code": "34731", + "data": { + "stops": [ + { + "id": "4731", + "code": "34731", + "data": { + "gtfs": { + "stop_id": "4731", + "stop_code": "34731", + "stop_name": "boul. Matte et civique 3700", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Matte et civique 3700", + "geography": { + "type": "Point", + "coordinates": [ + -73.4631167320075, + 45.4302532728058 + ] + } + }, + { + "id": "4736", + "code": "34736", + "data": { + "gtfs": { + "stop_id": "4736", + "stop_code": "34736", + "stop_name": "boul. Matte et civique 3755", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Matte et civique 3755", + "geography": { + "type": "Point", + "coordinates": [ + -73.4632505216615, + 45.4305546610099 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.9719348236481 + }, + "name": "boul. Matte et civique 3700", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463183627, + 45.430403967 + ] + }, + "is_frozen": false, + "integer_id": 1628, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458898, + 45.428372 + ] + }, + "id": 1629, + "properties": { + "id": "4e38482f-be48-4cee-bcb2-e6dee0843574", + "code": "34732", + "data": { + "stops": [ + { + "id": "4732", + "code": "34732", + "data": { + "gtfs": { + "stop_id": "4732", + "stop_code": "34732", + "stop_name": "boul. Matte et civique 3900", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Matte et civique 3900", + "geography": { + "type": "Point", + "coordinates": [ + -73.4588982467922, + 45.4283718905296 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.9377345230254 + }, + "name": "boul. Matte et civique 3900", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.458898247, + 45.428371891 + ] + }, + "is_frozen": false, + "integer_id": 1629, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457377, + 45.426473 + ] + }, + "id": 1630, + "properties": { + "id": "5ed225d6-d1a5-4cf8-b496-0bdeecc5f50f", + "code": "34733", + "data": { + "stops": [ + { + "id": "4733", + "code": "34733", + "data": { + "gtfs": { + "stop_id": "4733", + "stop_code": "34733", + "stop_name": "place Jade et boul. Matte", + "location_type": 0, + "parent_station": "" + } + }, + "name": "place Jade et boul. Matte", + "geography": { + "type": "Point", + "coordinates": [ + -73.4573774991956, + 45.4264734607247 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.9057868192986 + }, + "name": "place Jade et boul. Matte", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457377499, + 45.426473461 + ] + }, + "is_frozen": false, + "integer_id": 1630, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458925, + 45.428749 + ] + }, + "id": 1631, + "properties": { + "id": "65e410b8-04ff-4ccd-883a-8d764b8c7d37", + "code": "34734", + "data": { + "stops": [ + { + "id": "4734", + "code": "34734", + "data": { + "gtfs": { + "stop_id": "4734", + "stop_code": "34734", + "stop_name": "boul. Matte et civique 4105", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Matte et civique 4105", + "geography": { + "type": "Point", + "coordinates": [ + -73.4589253012588, + 45.4287490960031 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.9440826924053 + }, + "name": "boul. Matte et civique 4105", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.458925301, + 45.428749096 + ] + }, + "is_frozen": false, + "integer_id": 1631, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.558408, + 45.497415 + ] + }, + "id": 1632, + "properties": { + "id": "461a5d33-406e-481a-b773-6e450c48b670", + "code": "34743", + "data": { + "stops": [ + { + "id": "4743", + "code": "34743", + "data": { + "gtfs": { + "stop_id": "4743", + "stop_code": "34743", + "stop_name": "boul. Robert-Bourassa et William", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Robert-Bourassa et William", + "geography": { + "type": "Point", + "coordinates": [ + -73.5584081118068, + 45.4974146870575 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1017924374481 + }, + "name": "boul. Robert-Bourassa et William", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.558408112, + 45.497414687 + ] + }, + "is_frozen": false, + "integer_id": 1632, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.558206, + 45.496464 + ] + }, + "id": 1633, + "properties": { + "id": "0f8ef5e7-ff7c-4097-8d8a-9727f12190ea", + "code": "34744", + "data": { + "stops": [ + { + "id": "4744", + "code": "34744", + "data": { + "gtfs": { + "stop_id": "4744", + "stop_code": "34744", + "stop_name": "boul. Robert-Bourassa et Ottawa", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Robert-Bourassa et Ottawa", + "geography": { + "type": "Point", + "coordinates": [ + -73.558206080303, + 45.4964641706852 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0857380410074 + }, + "name": "boul. Robert-Bourassa et Ottawa", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.55820608, + 45.496464171 + ] + }, + "is_frozen": false, + "integer_id": 1633, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482478, + 45.473581 + ] + }, + "id": 1634, + "properties": { + "id": "a9b02686-8465-48b9-89ba-773a03aed1e8", + "code": "34761", + "data": { + "stops": [ + { + "id": "4761", + "code": "34761", + "data": { + "gtfs": { + "stop_id": "4761", + "stop_code": "34761", + "stop_name": "boul. Provencher et av. Panneton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Provencher et av. Panneton", + "geography": { + "type": "Point", + "coordinates": [ + -73.4824781535434, + 45.4735807279148 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6994748034393 + }, + "name": "boul. Provencher et av. Panneton", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482478154, + 45.473580728 + ] + }, + "is_frozen": false, + "integer_id": 1634, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.393044, + 45.489466 + ] + }, + "id": 1635, + "properties": { + "id": "87ac0337-2ebc-4670-a2d4-e0f4a5b3c627", + "code": "34775", + "data": { + "stops": [ + { + "id": "4775", + "code": "34775", + "data": { + "gtfs": { + "stop_id": "4775", + "stop_code": "34775", + "stop_name": "HERITAGE REGIONAL HIGH SCHOOL", + "location_type": 0, + "parent_station": "" + } + }, + "name": "HERITAGE REGIONAL HIGH SCHOOL", + "geography": { + "type": "Point", + "coordinates": [ + -73.393043650199, + 45.4894659816993 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9675620338222 + }, + "name": "HERITAGE REGIONAL HIGH SCHOOL", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.39304365, + 45.489465982 + ] + }, + "is_frozen": false, + "integer_id": 1635, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.42258, + 45.502952 + ] + }, + "id": 1636, + "properties": { + "id": "588e4aef-6d38-4fb0-95ae-8ac520e753f3", + "code": "34777", + "data": { + "stops": [ + { + "id": "4777", + "code": "34777", + "data": { + "gtfs": { + "stop_id": "4777", + "stop_code": "34777", + "stop_name": "montée Saint-Hubert et Duvernay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Saint-Hubert et Duvernay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4225796952279, + 45.5029520066563 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1953348097445 + }, + "name": "montée Saint-Hubert et Duvernay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.422579695, + 45.502952007 + ] + }, + "is_frozen": false, + "integer_id": 1636, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.40746, + 45.57374 + ] + }, + "id": 1637, + "properties": { + "id": "33427dde-b7ac-44e3-ba8b-3d835422c2dc", + "code": "34779", + "data": { + "stops": [ + { + "id": "4779", + "code": "34779", + "data": { + "gtfs": { + "stop_id": "4779", + "stop_code": "34779", + "stop_name": "ch. de Touraine et Mc Donald's", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Touraine et Mc Donald's", + "geography": { + "type": "Point", + "coordinates": [ + -73.4074604607026, + 45.5737401036142 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.393571171867 + }, + "name": "ch. de Touraine et Mc Donald's", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.407460461, + 45.573740104 + ] + }, + "is_frozen": false, + "integer_id": 1637, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486824, + 45.47426 + ] + }, + "id": 1638, + "properties": { + "id": "f2aa277d-e5f8-429d-bc46-2a1c844da636", + "code": "34781", + "data": { + "stops": [ + { + "id": "4781", + "code": "34781", + "data": { + "gtfs": { + "stop_id": "4781", + "stop_code": "34781", + "stop_name": "boul. Plamondon et Perrier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Plamondon et Perrier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4868235438932, + 45.4742604448204 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7109414443375 + }, + "name": "boul. Plamondon et Perrier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.486823544, + 45.474260445 + ] + }, + "is_frozen": false, + "integer_id": 1638, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.433455, + 45.509202 + ] + }, + "id": 1639, + "properties": { + "id": "80008949-5a0f-4c5e-b778-592c2ee8487f", + "code": "34782", + "data": { + "stops": [ + { + "id": "4782", + "code": "34782", + "data": { + "gtfs": { + "stop_id": "4782", + "stop_code": "34782", + "stop_name": "ch. de Chambly et Gare Longueuil/ Saint-Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Gare Longueuil/ Saint-Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.433454661098, + 45.5092021183507 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3009511986754 + }, + "name": "ch. de Chambly et Gare Longueuil/ Saint-Hubert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.433454661, + 45.509202118 + ] + }, + "is_frozen": false, + "integer_id": 1639, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439312, + 45.52399 + ] + }, + "id": 1640, + "properties": { + "id": "3d39c5de-3cd5-4fd7-925f-37e3d32bd66c", + "code": "34784", + "data": { + "stops": [ + { + "id": "4784", + "code": "34784", + "data": { + "gtfs": { + "stop_id": "4784", + "stop_code": "34784", + "stop_name": "boul. Roland-Therrien et du Capricorne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et du Capricorne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4393919614675, + 45.5238640623228 + ] + } + }, + { + "id": "5627", + "code": "30376", + "data": { + "gtfs": { + "stop_id": "5627", + "stop_code": "30376", + "stop_name": "boul. Roland-Therrien et de Sancerre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et de Sancerre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4392312268419, + 45.5241154569356 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5509760513104 + }, + "name": "boul. Roland-Therrien et du Capricorne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439311594, + 45.52398976 + ] + }, + "is_frozen": false, + "integer_id": 1640, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443998, + 45.534162 + ] + }, + "id": 1641, + "properties": { + "id": "210e532b-2acc-4a3e-b173-3471add098b1", + "code": "34788", + "data": { + "stops": [ + { + "id": "4788", + "code": "34788", + "data": { + "gtfs": { + "stop_id": "4788", + "stop_code": "34788", + "stop_name": "Belcourt et boul. Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et boul. Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4443141868841, + 45.5337803977413 + ] + } + }, + { + "id": "4889", + "code": "34889", + "data": { + "gtfs": { + "stop_id": "4889", + "stop_code": "34889", + "stop_name": "Belcourt et boul. Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et boul. Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4440570347323, + 45.533948060419 + ] + } + }, + { + "id": "5040", + "code": "35040", + "data": { + "gtfs": { + "stop_id": "5040", + "stop_code": "35040", + "stop_name": "Belcourt et boul. Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et boul. Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4440260570158, + 45.5342921568374 + ] + } + }, + { + "id": "5163", + "code": "35163", + "data": { + "gtfs": { + "stop_id": "5163", + "stop_code": "35163", + "stop_name": "boul. Béliveau et Belcourt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et Belcourt", + "geography": { + "type": "Point", + "coordinates": [ + -73.4438420917834, + 45.5342316757132 + ] + } + }, + { + "id": "5164", + "code": "35164", + "data": { + "gtfs": { + "stop_id": "5164", + "stop_code": "35164", + "stop_name": "boul. Béliveau et Belcourt", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et Belcourt", + "geography": { + "type": "Point", + "coordinates": [ + -73.4442133391311, + 45.5340609234696 + ] + } + }, + { + "id": "5801", + "code": "30570", + "data": { + "gtfs": { + "stop_id": "5801", + "stop_code": "30570", + "stop_name": "Belcourt et boul. Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et boul. Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4436820958769, + 45.5345426214774 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.72306995248 + }, + "name": "Belcourt et boul. Béliveau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443998141, + 45.53416151 + ] + }, + "is_frozen": false, + "integer_id": 1641, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.435753, + 45.517876 + ] + }, + "id": 1642, + "properties": { + "id": "9a101899-eb7e-4980-897e-cfb842bca005", + "code": "34791", + "data": { + "stops": [ + { + "id": "4791", + "code": "34791", + "data": { + "gtfs": { + "stop_id": "4791", + "stop_code": "34791", + "stop_name": "boul. Vauquelin et Alphonse-Dulude", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Vauquelin et Alphonse-Dulude", + "geography": { + "type": "Point", + "coordinates": [ + -73.4357530147, + 45.51787646703 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4475907758472 + }, + "name": "boul. Vauquelin et Alphonse-Dulude", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.435753015, + 45.517876467 + ] + }, + "is_frozen": false, + "integer_id": 1642, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.434964, + 45.519454 + ] + }, + "id": 1643, + "properties": { + "id": "3d1e4353-a4d7-45de-bd72-c906526806e2", + "code": "34792", + "data": { + "stops": [ + { + "id": "4792", + "code": "34792", + "data": { + "gtfs": { + "stop_id": "4792", + "stop_code": "34792", + "stop_name": "boul. Vauquelin et des Hussards", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Vauquelin et des Hussards", + "geography": { + "type": "Point", + "coordinates": [ + -73.4349641909722, + 45.5194537687028 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4742622141262 + }, + "name": "boul. Vauquelin et des Hussards", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.434964191, + 45.519453769 + ] + }, + "is_frozen": false, + "integer_id": 1643, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.435982, + 45.518276 + ] + }, + "id": 1644, + "properties": { + "id": "f1517eba-215d-4b2a-b591-160be878e090", + "code": "34794", + "data": { + "stops": [ + { + "id": "4794", + "code": "34794", + "data": { + "gtfs": { + "stop_id": "4794", + "stop_code": "34794", + "stop_name": "boul. Vauquelin et civique 309", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Vauquelin et civique 309", + "geography": { + "type": "Point", + "coordinates": [ + -73.4359823984343, + 45.5182758110177 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4543432863666 + }, + "name": "boul. Vauquelin et civique 309", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.435982398, + 45.518275811 + ] + }, + "is_frozen": false, + "integer_id": 1644, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.436293, + 45.510146 + ] + }, + "id": 1645, + "properties": { + "id": "686bdc34-3602-4c31-b05f-c41f9ebe2543", + "code": "34815", + "data": { + "stops": [ + { + "id": "4815", + "code": "34815", + "data": { + "gtfs": { + "stop_id": "4815", + "stop_code": "34815", + "stop_name": "ch. de Chambly et Patrick", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Patrick", + "geography": { + "type": "Point", + "coordinates": [ + -73.4362934928193, + 45.5101464661858 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3169121194817 + }, + "name": "ch. de Chambly et Patrick", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.436293493, + 45.510146466 + ] + }, + "is_frozen": false, + "integer_id": 1645, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.435404, + 45.510438 + ] + }, + "id": 1646, + "properties": { + "id": "0f06220e-c086-4a85-9d80-5c4d5410f93e", + "code": "34817", + "data": { + "stops": [ + { + "id": "4817", + "code": "34817", + "data": { + "gtfs": { + "stop_id": "4817", + "stop_code": "34817", + "stop_name": "ch. de la Savane et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4354035716906, + 45.5104380694882 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3218408151613 + }, + "name": "ch. de la Savane et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.435403572, + 45.510438069 + ] + }, + "is_frozen": false, + "integer_id": 1646, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.435841, + 45.510314 + ] + }, + "id": 1647, + "properties": { + "id": "0c9c2b52-ead4-4bb7-9085-39aca76f0358", + "code": "34818", + "data": { + "stops": [ + { + "id": "4818", + "code": "34818", + "data": { + "gtfs": { + "stop_id": "4818", + "stop_code": "34818", + "stop_name": "ch. de la Savane et ch. de Chambly", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et ch. de Chambly", + "geography": { + "type": "Point", + "coordinates": [ + -73.4358412819094, + 45.5103137024666 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3197387455815 + }, + "name": "ch. de la Savane et ch. de Chambly", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.435841282, + 45.510313702 + ] + }, + "is_frozen": false, + "integer_id": 1647, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490871, + 45.456884 + ] + }, + "id": 1648, + "properties": { + "id": "117181e4-9af2-4572-89ec-28895ad235ae", + "code": "34820", + "data": { + "stops": [ + { + "id": "4820", + "code": "34820", + "data": { + "gtfs": { + "stop_id": "4820", + "stop_code": "34820", + "stop_name": "boul. de Rome et civique 1205", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et civique 1205", + "geography": { + "type": "Point", + "coordinates": [ + -73.4908712164263, + 45.4568842563841 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4179386707211 + }, + "name": "boul. de Rome et civique 1205", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490871216, + 45.456884256 + ] + }, + "is_frozen": false, + "integer_id": 1648, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453959, + 45.449105 + ] + }, + "id": 1649, + "properties": { + "id": "b5853393-4072-4255-b507-e9c4b6659c5b", + "code": "34822", + "data": { + "stops": [ + { + "id": "4822", + "code": "34822", + "data": { + "gtfs": { + "stop_id": "4822", + "stop_code": "34822", + "stop_name": "boul. de Rome et av. Niagara", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. Niagara", + "geography": { + "type": "Point", + "coordinates": [ + -73.4539590847587, + 45.4491049135335 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2868477931869 + }, + "name": "boul. de Rome et av. Niagara", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453959085, + 45.449104914 + ] + }, + "is_frozen": false, + "integer_id": 1649, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.447215, + 45.445286 + ] + }, + "id": 1650, + "properties": { + "id": "d306b992-8d43-4ba8-8460-68d87b486222", + "code": "34823", + "data": { + "stops": [ + { + "id": "4823", + "code": "34823", + "data": { + "gtfs": { + "stop_id": "4823", + "stop_code": "34823", + "stop_name": "boul. de Rome et av. de Lugano", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. de Lugano", + "geography": { + "type": "Point", + "coordinates": [ + -73.4475016055684, + 45.4452648277999 + ] + } + }, + { + "id": "4824", + "code": "34824", + "data": { + "gtfs": { + "stop_id": "4824", + "stop_code": "34824", + "stop_name": "boul. de Rome et av. de Lugano", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et av. de Lugano", + "geography": { + "type": "Point", + "coordinates": [ + -73.4469278321013, + 45.4453079733212 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2225210884372 + }, + "name": "boul. de Rome et av. de Lugano", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447214719, + 45.445286401 + ] + }, + "is_frozen": false, + "integer_id": 1650, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.444701, + 45.443498 + ] + }, + "id": 1651, + "properties": { + "id": "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", + "code": "34825", + "data": { + "stops": [ + { + "id": "4825", + "code": "34825", + "data": { + "gtfs": { + "stop_id": "4825", + "stop_code": "34825", + "stop_name": "boul. de Rome et Laffite", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et Laffite", + "geography": { + "type": "Point", + "coordinates": [ + -73.4449700210856, + 45.443485321093 + ] + } + }, + { + "id": "4826", + "code": "34826", + "data": { + "gtfs": { + "stop_id": "4826", + "stop_code": "34826", + "stop_name": "boul. de Rome et Laffite", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et Laffite", + "geography": { + "type": "Point", + "coordinates": [ + -73.4444316053505, + 45.4435100268417 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.192392623746 + }, + "name": "boul. de Rome et Laffite", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.444700813, + 45.443497674 + ] + }, + "is_frozen": false, + "integer_id": 1651, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44243, + 45.441673 + ] + }, + "id": 1652, + "properties": { + "id": "88486643-e9da-4936-905d-86d1e3882217", + "code": "34827", + "data": { + "stops": [ + { + "id": "4827", + "code": "34827", + "data": { + "gtfs": { + "stop_id": "4827", + "stop_code": "34827", + "stop_name": "boul. de Rome et boul. du Quartier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et boul. du Quartier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4424301643403, + 45.441673061901 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1616626516768 + }, + "name": "boul. de Rome et boul. du Quartier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442430164, + 45.441673062 + ] + }, + "is_frozen": false, + "integer_id": 1652, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441626, + 45.441748 + ] + }, + "id": 1653, + "properties": { + "id": "13dab893-0384-46f9-a2e5-e504a47de39a", + "code": "34828", + "data": { + "stops": [ + { + "id": "4828", + "code": "34828", + "data": { + "gtfs": { + "stop_id": "4828", + "stop_code": "34828", + "stop_name": "boul. de Rome et boul. du Quartier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et boul. du Quartier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4417325304363, + 45.4415889408716 + ] + } + }, + { + "id": "5558", + "code": "30306", + "data": { + "gtfs": { + "stop_id": "5558", + "stop_code": "30306", + "stop_name": "boul. du Quartier et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4415191792981, + 45.4419078620283 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1629314467872 + }, + "name": "boul. de Rome et boul. du Quartier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441625855, + 45.441748401 + ] + }, + "is_frozen": false, + "integer_id": 1653, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467803, + 45.437684 + ] + }, + "id": 1654, + "properties": { + "id": "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", + "code": "34830", + "data": { + "stops": [ + { + "id": "4830", + "code": "34830", + "data": { + "gtfs": { + "stop_id": "4830", + "stop_code": "34830", + "stop_name": "ch. des Prairies et Ontario", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et Ontario", + "geography": { + "type": "Point", + "coordinates": [ + -73.4676531041964, + 45.4377423340522 + ] + } + }, + { + "id": "5377", + "code": "30117", + "data": { + "gtfs": { + "stop_id": "5377", + "stop_code": "30117", + "stop_name": "ch. des Prairies et Outremont", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et Outremont", + "geography": { + "type": "Point", + "coordinates": [ + -73.467953160544, + 45.4376247520029 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0944817660766 + }, + "name": "ch. des Prairies et Ontario", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.467803132, + 45.437683543 + ] + }, + "is_frozen": false, + "integer_id": 1654, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449444, + 45.446582 + ] + }, + "id": 1655, + "properties": { + "id": "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", + "code": "34834", + "data": { + "stops": [ + { + "id": "4834", + "code": "34834", + "data": { + "gtfs": { + "stop_id": "4834", + "stop_code": "34834", + "stop_name": "boul. de Rome et Lautrec", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et Lautrec", + "geography": { + "type": "Point", + "coordinates": [ + -73.4491523709854, + 45.4466000371803 + ] + } + }, + { + "id": "4835", + "code": "34835", + "data": { + "gtfs": { + "stop_id": "4835", + "stop_code": "34835", + "stop_name": "boul. de Rome et Lautrec", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et Lautrec", + "geography": { + "type": "Point", + "coordinates": [ + -73.4497353454319, + 45.4465648554324 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2443528248217 + }, + "name": "boul. de Rome et Lautrec", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449443858, + 45.446582446 + ] + }, + "is_frozen": false, + "integer_id": 1655, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.438449, + 45.452534 + ] + }, + "id": 1656, + "properties": { + "id": "c46f92e7-e692-49ea-b12f-0df7099ee6d5", + "code": "34842", + "data": { + "stops": [ + { + "id": "4842", + "code": "34842", + "data": { + "gtfs": { + "stop_id": "4842", + "stop_code": "34842", + "stop_name": "boul. Lapinière et av. du Chemin-du-Golf", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et av. du Chemin-du-Golf", + "geography": { + "type": "Point", + "coordinates": [ + -73.4386838895284, + 45.4525363262282 + ] + } + }, + { + "id": "4924", + "code": "34924", + "data": { + "gtfs": { + "stop_id": "4924", + "stop_code": "34924", + "stop_name": "boul. Lapinière et av. du Chemin-du-Golf", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et av. du Chemin-du-Golf", + "geography": { + "type": "Point", + "coordinates": [ + -73.4382147332415, + 45.4525313249116 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3446222954609 + }, + "name": "boul. Lapinière et av. du Chemin-du-Golf", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438449311, + 45.452533826 + ] + }, + "is_frozen": false, + "integer_id": 1656, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482142, + 45.500682 + ] + }, + "id": 1657, + "properties": { + "id": "36289bfc-a55e-4b55-a0d2-14f7b26cd739", + "code": "34846", + "data": { + "stops": [ + { + "id": "4846", + "code": "34846", + "data": { + "gtfs": { + "stop_id": "4846", + "stop_code": "34846", + "stop_name": "Grande Allée et Bonaparte", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grande Allée et Bonaparte", + "geography": { + "type": "Point", + "coordinates": [ + -73.482142149379, + 45.5006821546831 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.156986725752 + }, + "name": "Grande Allée et Bonaparte", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482142149, + 45.500682155 + ] + }, + "is_frozen": false, + "integer_id": 1657, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.375145, + 45.500948 + ] + }, + "id": 1658, + "properties": { + "id": "284a178b-f032-40f4-9bf0-0ba74e13d985", + "code": "34849", + "data": { + "stops": [ + { + "id": "4849", + "code": "34849", + "data": { + "gtfs": { + "stop_id": "4849", + "stop_code": "34849", + "stop_name": "boul. des Promenades et Entrée Rona", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. des Promenades et Entrée Rona", + "geography": { + "type": "Point", + "coordinates": [ + -73.3750530986327, + 45.5007855927426 + ] + } + }, + { + "id": "4850", + "code": "34850", + "data": { + "gtfs": { + "stop_id": "4850", + "stop_code": "34850", + "stop_name": "boul. des Promenades et Entrée Rona", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. des Promenades et Entrée Rona", + "geography": { + "type": "Point", + "coordinates": [ + -73.3752371445701, + 45.5011098356097 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1614729835713 + }, + "name": "boul. des Promenades et Entrée Rona", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.375145122, + 45.500947714 + ] + }, + "is_frozen": false, + "integer_id": 1658, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491757, + 45.434107 + ] + }, + "id": 1659, + "properties": { + "id": "23aabe88-4903-4450-a13c-36afbe3bd891", + "code": "34851", + "data": { + "stops": [ + { + "id": "4851", + "code": "34851", + "data": { + "gtfs": { + "stop_id": "4851", + "stop_code": "34851", + "stop_name": "des Rubaniers et des Roselières", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Rubaniers et des Roselières", + "geography": { + "type": "Point", + "coordinates": [ + -73.4917574252596, + 45.4341071289504 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0342692879627 + }, + "name": "des Rubaniers et des Roselières", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491757425, + 45.434107129 + ] + }, + "is_frozen": false, + "integer_id": 1659, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.555689, + 45.496551 + ] + }, + "id": 1660, + "properties": { + "id": "587bca45-e028-437b-8c17-3d0fa1f4d9bd", + "code": "34852", + "data": { + "stops": [ + { + "id": "4852", + "code": "34852", + "data": { + "gtfs": { + "stop_id": "4852", + "stop_code": "34852", + "stop_name": "Wellington et boul. Robert-Bourassa", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Wellington et boul. Robert-Bourassa", + "geography": { + "type": "Point", + "coordinates": [ + -73.5556892524819, + 45.4965507873147 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0872009684757 + }, + "name": "Wellington et boul. Robert-Bourassa", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.555689252, + 45.496550787 + ] + }, + "is_frozen": false, + "integer_id": 1660, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.545601, + 45.487937 + ] + }, + "id": 1661, + "properties": { + "id": "92af9da4-27c5-4709-ac8c-743f6f7a85c2", + "code": "34853", + "data": { + "stops": [ + { + "id": "4853", + "code": "34853", + "data": { + "gtfs": { + "stop_id": "4853", + "stop_code": "34853", + "stop_name": "des Irlandais et STATIONNEMENT CASINO", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Irlandais et STATIONNEMENT CASINO", + "geography": { + "type": "Point", + "coordinates": [ + -73.5456013870666, + 45.4879373244404 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9417539084893 + }, + "name": "des Irlandais et STATIONNEMENT CASINO", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.545601387, + 45.487937324 + ] + }, + "is_frozen": false, + "integer_id": 1661, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.31766, + 45.515156 + ] + }, + "id": 1662, + "properties": { + "id": "e39d2286-4090-4933-a88a-16d850b1afef", + "code": "34858", + "data": { + "stops": [ + { + "id": "4858", + "code": "34858", + "data": { + "gtfs": { + "stop_id": "4858", + "stop_code": "34858", + "stop_name": "Grand Boulevard est et boul. De Boucherville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grand Boulevard est et boul. De Boucherville", + "geography": { + "type": "Point", + "coordinates": [ + -73.3176770464506, + 45.5150852513819 + ] + } + }, + { + "id": "5298", + "code": "30024", + "data": { + "gtfs": { + "stop_id": "5298", + "stop_code": "30024", + "stop_name": "boul. De Boucherville et Grand Boulevard est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et Grand Boulevard est", + "geography": { + "type": "Point", + "coordinates": [ + -73.3176427310378, + 45.5152276828587 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4016020555779 + }, + "name": "Grand Boulevard est et boul. De Boucherville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.317659889, + 45.515156467 + ] + }, + "is_frozen": false, + "integer_id": 1662, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.323797, + 45.514726 + ] + }, + "id": 1663, + "properties": { + "id": "57a91181-2fc4-4e39-a5bf-0ff47bbe6e9b", + "code": "34859", + "data": { + "stops": [ + { + "id": "4859", + "code": "34859", + "data": { + "gtfs": { + "stop_id": "4859", + "stop_code": "34859", + "stop_name": "Grand Boulevard est et de la Fougère", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grand Boulevard est et de la Fougère", + "geography": { + "type": "Point", + "coordinates": [ + -73.3236677865515, + 45.514781369978 + ] + } + }, + { + "id": "4860", + "code": "34860", + "data": { + "gtfs": { + "stop_id": "4860", + "stop_code": "34860", + "stop_name": "Grand Boulevard est et de la Fougère", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grand Boulevard est et de la Fougère", + "geography": { + "type": "Point", + "coordinates": [ + -73.3239255705685, + 45.5146700973133 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3943199910663 + }, + "name": "Grand Boulevard est et de la Fougère", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.323796679, + 45.514725734 + ] + }, + "is_frozen": false, + "integer_id": 1663, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.471798, + 45.438554 + ] + }, + "id": 1664, + "properties": { + "id": "e13d482c-ee57-4f7d-bc38-264ca460deda", + "code": "34866", + "data": { + "stops": [ + { + "id": "4866", + "code": "34866", + "data": { + "gtfs": { + "stop_id": "4866", + "stop_code": "34866", + "stop_name": "av. Océanie et Occident", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Océanie et Occident", + "geography": { + "type": "Point", + "coordinates": [ + -73.4717981078777, + 45.4385538270223 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1091355753501 + }, + "name": "av. Océanie et Occident", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.471798108, + 45.438553827 + ] + }, + "is_frozen": false, + "integer_id": 1664, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.470252, + 45.440971 + ] + }, + "id": 1665, + "properties": { + "id": "daacedd2-0b84-4f73-9f01-d9072ec32dce", + "code": "34867", + "data": { + "stops": [ + { + "id": "4867", + "code": "34867", + "data": { + "gtfs": { + "stop_id": "4867", + "stop_code": "34867", + "stop_name": "av. Océanie et av. Orégon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Océanie et av. Orégon", + "geography": { + "type": "Point", + "coordinates": [ + -73.470272535289, + 45.4408611115207 + ] + } + }, + { + "id": "5376", + "code": "30116", + "data": { + "gtfs": { + "stop_id": "5376", + "stop_code": "30116", + "stop_name": "av. Océanie et av. Orégon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Océanie et av. Orégon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4703650712818, + 45.4410814096447 + ] + } + }, + { + "id": "5570", + "code": "30318", + "data": { + "gtfs": { + "stop_id": "5570", + "stop_code": "30318", + "stop_name": "av. Orégon et av. Océanie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orégon et av. Océanie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4701398606085, + 45.4410115521089 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1498437601887 + }, + "name": "av. Océanie et av. Orégon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.470252466, + 45.440971261 + ] + }, + "is_frozen": false, + "integer_id": 1665, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.4722, + 45.438027 + ] + }, + "id": 1666, + "properties": { + "id": "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", + "code": "34868", + "data": { + "stops": [ + { + "id": "4868", + "code": "34868", + "data": { + "gtfs": { + "stop_id": "4868", + "stop_code": "34868", + "stop_name": "ch. des Prairies et av. Océanie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et av. Océanie", + "geography": { + "type": "Point", + "coordinates": [ + -73.47242545771, + 45.4379412062021 + ] + } + }, + { + "id": "4891", + "code": "34891", + "data": { + "gtfs": { + "stop_id": "4891", + "stop_code": "34891", + "stop_name": "av. Océanie et ch. des Prairies", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Océanie et ch. des Prairies", + "geography": { + "type": "Point", + "coordinates": [ + -73.4723126971334, + 45.438112202347 + ] + } + }, + { + "id": "5663", + "code": "30431", + "data": { + "gtfs": { + "stop_id": "5663", + "stop_code": "30431", + "stop_name": "ch. des Prairies et av. Océanie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et av. Océanie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4719737227769, + 45.4380537515949 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1002598179392 + }, + "name": "ch. des Prairies et av. Océanie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47219959, + 45.438026704 + ] + }, + "is_frozen": false, + "integer_id": 1666, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.425908, + 45.594896 + ] + }, + "id": 1667, + "properties": { + "id": "7cfada17-2082-416d-b64c-984a57776abe", + "code": "34872", + "data": { + "stops": [ + { + "id": "4872", + "code": "34872", + "data": { + "gtfs": { + "stop_id": "4872", + "stop_code": "34872", + "stop_name": "Jean-Deslauriers et Emma-Lajeunesse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jean-Deslauriers et Emma-Lajeunesse", + "geography": { + "type": "Point", + "coordinates": [ + -73.4257744181892, + 45.5949699584901 + ] + } + }, + { + "id": "4953", + "code": "34953", + "data": { + "gtfs": { + "stop_id": "4953", + "stop_code": "34953", + "stop_name": "Emma-Lajeunesse et Jean-Deslauriers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Emma-Lajeunesse et Jean-Deslauriers", + "geography": { + "type": "Point", + "coordinates": [ + -73.4260409142681, + 45.5948217163173 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7525447343018 + }, + "name": "Jean-Deslauriers et Emma-Lajeunesse", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.425907666, + 45.594895837 + ] + }, + "is_frozen": false, + "integer_id": 1667, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466668, + 45.501263 + ] + }, + "id": 1668, + "properties": { + "id": "a3062aba-92b8-419f-9d8e-4f21713f9dcc", + "code": "34893", + "data": { + "stops": [ + { + "id": "4893", + "code": "34893", + "data": { + "gtfs": { + "stop_id": "4893", + "stop_code": "34893", + "stop_name": "Georges et Elizabeth", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Georges et Elizabeth", + "geography": { + "type": "Point", + "coordinates": [ + -73.4666676471084, + 45.5012629673823 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1667988353429 + }, + "name": "Georges et Elizabeth", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466667647, + 45.501262967 + ] + }, + "is_frozen": false, + "integer_id": 1668, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467214, + 45.501117 + ] + }, + "id": 1669, + "properties": { + "id": "ef559a5c-0885-4ac5-a0dc-bdf67aea0546", + "code": "34894", + "data": { + "stops": [ + { + "id": "4894", + "code": "34894", + "data": { + "gtfs": { + "stop_id": "4894", + "stop_code": "34894", + "stop_name": "Elizabeth et Georges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Elizabeth et Georges", + "geography": { + "type": "Point", + "coordinates": [ + -73.467214340017, + 45.5011167714809 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1643290041524 + }, + "name": "Elizabeth et Georges", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46721434, + 45.501116771 + ] + }, + "is_frozen": false, + "integer_id": 1669, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445185, + 45.56924 + ] + }, + "id": 1670, + "properties": { + "id": "e979db3f-26cd-41d5-8708-f07b7090bef0", + "code": "34898", + "data": { + "stops": [ + { + "id": "4898", + "code": "34898", + "data": { + "gtfs": { + "stop_id": "4898", + "stop_code": "34898", + "stop_name": "Volta et des Frères-Lumière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Volta et des Frères-Lumière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4454124204008, + 45.569294426738 + ] + } + }, + { + "id": "4899", + "code": "34899", + "data": { + "gtfs": { + "stop_id": "4899", + "stop_code": "34899", + "stop_name": "Volta et des Frères-Lumière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Volta et des Frères-Lumière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4449575480837, + 45.5691849337074 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3172589555817 + }, + "name": "Volta et des Frères-Lumière", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445184984, + 45.56923968 + ] + }, + "is_frozen": false, + "integer_id": 1670, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.37617, + 45.498595 + ] + }, + "id": 1671, + "properties": { + "id": "88be8076-6606-4cc2-82bf-848c6a92b1c2", + "code": "34900", + "data": { + "stops": [ + { + "id": "4900", + "code": "34900", + "data": { + "gtfs": { + "stop_id": "4900", + "stop_code": "34900", + "stop_name": "boul. des Promenades et civique 1251", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. des Promenades et civique 1251", + "geography": { + "type": "Point", + "coordinates": [ + -73.3761695463308, + 45.4985951098315 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1217311258606 + }, + "name": "boul. des Promenades et civique 1251", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.376169546, + 45.49859511 + ] + }, + "is_frozen": false, + "integer_id": 1671, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.376583, + 45.498415 + ] + }, + "id": 1672, + "properties": { + "id": "324bc409-bf97-4fef-8e16-0521305ba7b1", + "code": "34901", + "data": { + "stops": [ + { + "id": "4901", + "code": "34901", + "data": { + "gtfs": { + "stop_id": "4901", + "stop_code": "34901", + "stop_name": "boul. des Promenades et civique 1251", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. des Promenades et civique 1251", + "geography": { + "type": "Point", + "coordinates": [ + -73.3765825166737, + 45.4984150858933 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1186902354244 + }, + "name": "boul. des Promenades et civique 1251", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.376582517, + 45.498415086 + ] + }, + "is_frozen": false, + "integer_id": 1672, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461191, + 45.484483 + ] + }, + "id": 1673, + "properties": { + "id": "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", + "code": "34903", + "data": { + "stops": [ + { + "id": "4903", + "code": "34903", + "data": { + "gtfs": { + "stop_id": "4903", + "stop_code": "34903", + "stop_name": "Adam et FUTURE SHOP", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adam et FUTURE SHOP", + "geography": { + "type": "Point", + "coordinates": [ + -73.4611908572188, + 45.4844831487795 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8834451923001 + }, + "name": "Adam et FUTURE SHOP", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461190857, + 45.484483149 + ] + }, + "is_frozen": false, + "integer_id": 1673, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.387828, + 45.571269 + ] + }, + "id": 1674, + "properties": { + "id": "35827d6c-59cb-43b0-bfdd-eaa586fe772c", + "code": "34908", + "data": { + "stops": [ + { + "id": "4908", + "code": "34908", + "data": { + "gtfs": { + "stop_id": "4908", + "stop_code": "34908", + "stop_name": "Eiffel et civique 1690", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Eiffel et civique 1690", + "geography": { + "type": "Point", + "coordinates": [ + -73.387778684466, + 45.5712090545741 + ] + } + }, + { + "id": "4909", + "code": "34909", + "data": { + "gtfs": { + "stop_id": "4909", + "stop_code": "34909", + "stop_name": "Eiffel et civique 1690", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Eiffel et civique 1690", + "geography": { + "type": "Point", + "coordinates": [ + -73.3878782329702, + 45.5713280012682 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3516592255776 + }, + "name": "Eiffel et civique 1690", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.387828459, + 45.571268528 + ] + }, + "is_frozen": false, + "integer_id": 1674, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.394092, + 45.570404 + ] + }, + "id": 1675, + "properties": { + "id": "7335aafe-31d7-4598-a3ca-7bfa36ca76b3", + "code": "34910", + "data": { + "stops": [ + { + "id": "4910", + "code": "34910", + "data": { + "gtfs": { + "stop_id": "4910", + "stop_code": "34910", + "stop_name": "Eiffel et ch. de Lorraine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Eiffel et ch. de Lorraine", + "geography": { + "type": "Point", + "coordinates": [ + -73.3940836546869, + 45.570326518667 + ] + } + }, + { + "id": "4911", + "code": "34911", + "data": { + "gtfs": { + "stop_id": "4911", + "stop_code": "34911", + "stop_name": "Eiffel et ch. de Lorraine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Eiffel et ch. de Lorraine", + "geography": { + "type": "Point", + "coordinates": [ + -73.3940999889769, + 45.5704823748833 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3370077917076 + }, + "name": "Eiffel et ch. de Lorraine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.394091822, + 45.570404447 + ] + }, + "is_frozen": false, + "integer_id": 1675, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.401527, + 45.565635 + ] + }, + "id": 1676, + "properties": { + "id": "334d379f-12a2-4d6f-b070-272e37ff00dd", + "code": "34915", + "data": { + "stops": [ + { + "id": "4915", + "code": "34915", + "data": { + "gtfs": { + "stop_id": "4915", + "stop_code": "34915", + "stop_name": "Louis-Pasteur et civique 525", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Louis-Pasteur et civique 525", + "geography": { + "type": "Point", + "coordinates": [ + -73.401526832932, + 45.5656347093966 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2561437011798 + }, + "name": "Louis-Pasteur et civique 525", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.401526833, + 45.565634709 + ] + }, + "is_frozen": false, + "integer_id": 1676, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446221, + 45.436045 + ] + }, + "id": 1677, + "properties": { + "id": "c7ecdf81-e322-4f7b-837f-23d0dbe48d4e", + "code": "34920", + "data": { + "stops": [ + { + "id": "4920", + "code": "34920", + "data": { + "gtfs": { + "stop_id": "4920", + "stop_code": "34920", + "stop_name": "boul. du Quartier et DISTRIBUTION FÉLISOL INC.", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et DISTRIBUTION FÉLISOL INC.", + "geography": { + "type": "Point", + "coordinates": [ + -73.4462214790462, + 45.4360453067855 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0668990308218 + }, + "name": "boul. du Quartier et DISTRIBUTION FÉLISOL INC.", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446221479, + 45.436045307 + ] + }, + "is_frozen": false, + "integer_id": 1677, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445815, + 45.435999 + ] + }, + "id": 1678, + "properties": { + "id": "639f03d6-fbc0-4032-b293-79460cff8a75", + "code": "34923", + "data": { + "stops": [ + { + "id": "4923", + "code": "34923", + "data": { + "gtfs": { + "stop_id": "4923", + "stop_code": "34923", + "stop_name": "boul. du Quartier et DISTRIBUTION FÉLISOL INC.", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et DISTRIBUTION FÉLISOL INC.", + "geography": { + "type": "Point", + "coordinates": [ + -73.4458149480834, + 45.4359991456406 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0661218593984 + }, + "name": "boul. du Quartier et DISTRIBUTION FÉLISOL INC.", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445814948, + 45.435999146 + ] + }, + "is_frozen": false, + "integer_id": 1678, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.424499, + 45.453003 + ] + }, + "id": 1679, + "properties": { + "id": "657fc71f-da59-4e3a-8872-f83480cde10d", + "code": "34925", + "data": { + "stops": [ + { + "id": "4925", + "code": "34925", + "data": { + "gtfs": { + "stop_id": "4925", + "stop_code": "34925", + "stop_name": "boul. du Quartier et de Châteauneuf", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et de Châteauneuf", + "geography": { + "type": "Point", + "coordinates": [ + -73.4244987924118, + 45.453002798455 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3525249198988 + }, + "name": "boul. du Quartier et de Châteauneuf", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.424498792, + 45.453002798 + ] + }, + "is_frozen": false, + "integer_id": 1679, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.425329, + 45.452801 + ] + }, + "id": 1680, + "properties": { + "id": "94721b0b-0bae-4300-ab61-58dc9d3fe85b", + "code": "34926", + "data": { + "stops": [ + { + "id": "4926", + "code": "34926", + "data": { + "gtfs": { + "stop_id": "4926", + "stop_code": "34926", + "stop_name": "boul. du Quartier et de Châteauneuf", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et de Châteauneuf", + "geography": { + "type": "Point", + "coordinates": [ + -73.4253287700665, + 45.4528012905977 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3491293113053 + }, + "name": "boul. du Quartier et de Châteauneuf", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.42532877, + 45.452801291 + ] + }, + "is_frozen": false, + "integer_id": 1680, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.479883, + 45.483016 + ] + }, + "id": 1681, + "properties": { + "id": "a3997372-5a39-4bfb-8751-2c107b865fce", + "code": "34930", + "data": { + "stops": [ + { + "id": "4930", + "code": "34930", + "data": { + "gtfs": { + "stop_id": "4930", + "stop_code": "34930", + "stop_name": "Regent et Queen", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Regent et Queen", + "geography": { + "type": "Point", + "coordinates": [ + -73.4799240158683, + 45.4828852775634 + ] + } + }, + { + "id": "4931", + "code": "34931", + "data": { + "gtfs": { + "stop_id": "4931", + "stop_code": "34931", + "stop_name": "Regent et Queen", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Regent et Queen", + "geography": { + "type": "Point", + "coordinates": [ + -73.4798416947336, + 45.4831458990169 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8586750203577 + }, + "name": "Regent et Queen", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.479882855, + 45.483015588 + ] + }, + "is_frozen": false, + "integer_id": 1681, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.477618, + 45.484567 + ] + }, + "id": 1682, + "properties": { + "id": "2d362ed7-6d89-4629-988c-787207ccdc69", + "code": "34932", + "data": { + "stops": [ + { + "id": "4932", + "code": "34932", + "data": { + "gtfs": { + "stop_id": "4932", + "stop_code": "34932", + "stop_name": "Regent et Miller", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Regent et Miller", + "geography": { + "type": "Point", + "coordinates": [ + -73.4776746418294, + 45.4844394881869 + ] + } + }, + { + "id": "4933", + "code": "34933", + "data": { + "gtfs": { + "stop_id": "4933", + "stop_code": "34933", + "stop_name": "Regent et Empire", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Regent et Empire", + "geography": { + "type": "Point", + "coordinates": [ + -73.4775605451749, + 45.4846952533407 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8848667881757 + }, + "name": "Regent et Miller", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.477617594, + 45.484567371 + ] + }, + "is_frozen": false, + "integer_id": 1682, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.400242, + 45.490179 + ] + }, + "id": 1683, + "properties": { + "id": "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", + "code": "34934", + "data": { + "stops": [ + { + "id": "4934", + "code": "34934", + "data": { + "gtfs": { + "stop_id": "4934", + "stop_code": "34934", + "stop_name": "boul. Cousineau et Racine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Racine", + "geography": { + "type": "Point", + "coordinates": [ + -73.4002417140546, + 45.4901794921719 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9796088374661 + }, + "name": "boul. Cousineau et Racine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.400241714, + 45.490179492 + ] + }, + "is_frozen": false, + "integer_id": 1683, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.438635, + 45.440492 + ] + }, + "id": 1684, + "properties": { + "id": "c1bf220e-ad95-40e3-900b-3dda32780f07", + "code": "34938", + "data": { + "stops": [ + { + "id": "4938", + "code": "34938", + "data": { + "gtfs": { + "stop_id": "4938", + "stop_code": "34938", + "stop_name": "boul. Leduc et BANQUE TD", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et BANQUE TD", + "geography": { + "type": "Point", + "coordinates": [ + -73.4386351508234, + 45.4404916778594 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1417674490817 + }, + "name": "boul. Leduc et BANQUE TD", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438635151, + 45.440491678 + ] + }, + "is_frozen": false, + "integer_id": 1684, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437272, + 45.441482 + ] + }, + "id": 1685, + "properties": { + "id": "fb79a3c6-17e7-4bc7-88f4-d17bcc5467ca", + "code": "34940", + "data": { + "stops": [ + { + "id": "4940", + "code": "34940", + "data": { + "gtfs": { + "stop_id": "4940", + "stop_code": "34940", + "stop_name": "boul. Leduc et EB GAMES", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et EB GAMES", + "geography": { + "type": "Point", + "coordinates": [ + -73.4372720611011, + 45.4414820677692 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1584461163532 + }, + "name": "boul. Leduc et EB GAMES", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437272061, + 45.441482068 + ] + }, + "is_frozen": false, + "integer_id": 1685, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.436322, + 45.443764 + ] + }, + "id": 1686, + "properties": { + "id": "1336b6ed-25ac-4ba0-b4d2-c273e4f51d74", + "code": "34942", + "data": { + "stops": [ + { + "id": "4942", + "code": "34942", + "data": { + "gtfs": { + "stop_id": "4942", + "stop_code": "34942", + "stop_name": "boul. Leduc et allée des Lumières", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et allée des Lumières", + "geography": { + "type": "Point", + "coordinates": [ + -73.4363220871634, + 45.4437644717636 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1968862620472 + }, + "name": "boul. Leduc et allée des Lumières", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.436322087, + 45.443764472 + ] + }, + "is_frozen": false, + "integer_id": 1686, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439983, + 45.443721 + ] + }, + "id": 1687, + "properties": { + "id": "936850f5-3268-43bc-97bf-4daf0894fdc7", + "code": "34944", + "data": { + "stops": [ + { + "id": "4944", + "code": "34944", + "data": { + "gtfs": { + "stop_id": "4944", + "stop_code": "34944", + "stop_name": "boul. du Quartier et BANQUE SCOTIA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et BANQUE SCOTIA", + "geography": { + "type": "Point", + "coordinates": [ + -73.4399833848357, + 45.4437208559334 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.196151640051 + }, + "name": "boul. du Quartier et BANQUE SCOTIA", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439983385, + 45.443720856 + ] + }, + "is_frozen": false, + "integer_id": 1687, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441373, + 45.44248 + ] + }, + "id": 1688, + "properties": { + "id": "00c8e0cb-91d0-48ff-97f2-5154a17a68bc", + "code": "34946", + "data": { + "stops": [ + { + "id": "4946", + "code": "34946", + "data": { + "gtfs": { + "stop_id": "4946", + "stop_code": "34946", + "stop_name": "boul. du Quartier et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4413734093575, + 45.4424801133933 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1752545772625 + }, + "name": "boul. du Quartier et boul. de Rome", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441373409, + 45.442480113 + ] + }, + "is_frozen": false, + "integer_id": 1688, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466559, + 45.515403 + ] + }, + "id": 1689, + "properties": { + "id": "ad783725-7edb-4c18-8b1a-a064301b213d", + "code": "34950", + "data": { + "stops": [ + { + "id": "4950", + "code": "34950", + "data": { + "gtfs": { + "stop_id": "4950", + "stop_code": "34950", + "stop_name": "boul. Jacques-Cartier ouest et de Lyon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier ouest et de Lyon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4665589701273, + 45.5154028020559 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4057667222137 + }, + "name": "boul. Jacques-Cartier ouest et de Lyon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46655897, + 45.515402802 + ] + }, + "is_frozen": false, + "integer_id": 1689, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.418134, + 45.568729 + ] + }, + "id": 1690, + "properties": { + "id": "b9a0be89-8d55-4f3c-ae5f-e8c732f903dc", + "code": "34951", + "data": { + "stops": [ + { + "id": "4951", + "code": "34951", + "data": { + "gtfs": { + "stop_id": "4951", + "stop_code": "34951", + "stop_name": "Nobel et civique 1500", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et civique 1500", + "geography": { + "type": "Point", + "coordinates": [ + -73.4179595599303, + 45.5687807668381 + ] + } + }, + { + "id": "4952", + "code": "34952", + "data": { + "gtfs": { + "stop_id": "4952", + "stop_code": "34952", + "stop_name": "Nobel et civique 1500", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et civique 1500", + "geography": { + "type": "Point", + "coordinates": [ + -73.4183079725501, + 45.5686777157351 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.308604751734 + }, + "name": "Nobel et civique 1500", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.418133766, + 45.568729241 + ] + }, + "is_frozen": false, + "integer_id": 1690, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.423243, + 45.595789 + ] + }, + "id": 1691, + "properties": { + "id": "81683acf-4f7f-4881-9c66-76f73077f14f", + "code": "34954", + "data": { + "stops": [ + { + "id": "4954", + "code": "34954", + "data": { + "gtfs": { + "stop_id": "4954", + "stop_code": "34954", + "stop_name": "Jean-Deslauriers et Dominique-Ducharme", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jean-Deslauriers et Dominique-Ducharme", + "geography": { + "type": "Point", + "coordinates": [ + -73.4233866898867, + 45.5957262590411 + ] + } + }, + { + "id": "4961", + "code": "34961", + "data": { + "gtfs": { + "stop_id": "4961", + "stop_code": "34961", + "stop_name": "Jean-Deslauriers et Dominique-Ducharme", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jean-Deslauriers et Dominique-Ducharme", + "geography": { + "type": "Point", + "coordinates": [ + -73.4230984879385, + 45.5958515869563 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7677075587216 + }, + "name": "Jean-Deslauriers et Dominique-Ducharme", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.423242589, + 45.595788923 + ] + }, + "is_frozen": false, + "integer_id": 1691, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.420645, + 45.594652 + ] + }, + "id": 1692, + "properties": { + "id": "89a9cd80-8390-4b5d-ae70-b79c4f2755a8", + "code": "34955", + "data": { + "stops": [ + { + "id": "4955", + "code": "34955", + "data": { + "gtfs": { + "stop_id": "4955", + "stop_code": "34955", + "stop_name": "Jean-Deslauriers et Paul-Doyon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jean-Deslauriers et Paul-Doyon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4207990606059, + 45.5946912069523 + ] + } + }, + { + "id": "4960", + "code": "34960", + "data": { + "gtfs": { + "stop_id": "4960", + "stop_code": "34960", + "stop_name": "Jean-Deslauriers et Paul-Doyon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jean-Deslauriers et Paul-Doyon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4204906313009, + 45.5946121479278 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7483995073022 + }, + "name": "Jean-Deslauriers et Paul-Doyon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.420644846, + 45.594651677 + ] + }, + "is_frozen": false, + "integer_id": 1692, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.419225, + 45.592269 + ] + }, + "id": 1693, + "properties": { + "id": "47288795-8cf7-4a4f-a6d6-27f1d0029236", + "code": "34956", + "data": { + "stops": [ + { + "id": "4956", + "code": "34956", + "data": { + "gtfs": { + "stop_id": "4956", + "stop_code": "34956", + "stop_name": "Jean-Deslauriers et Charles-Goulet", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jean-Deslauriers et Charles-Goulet", + "geography": { + "type": "Point", + "coordinates": [ + -73.419298255746, + 45.5923706779908 + ] + } + }, + { + "id": "4959", + "code": "34959", + "data": { + "gtfs": { + "stop_id": "4959", + "stop_code": "34959", + "stop_name": "Jean-Deslauriers et Charles-Goulet", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jean-Deslauriers et Charles-Goulet", + "geography": { + "type": "Point", + "coordinates": [ + -73.4191511126309, + 45.5921667321039 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7079453965794 + }, + "name": "Jean-Deslauriers et Charles-Goulet", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.419224684, + 45.592268705 + ] + }, + "is_frozen": false, + "integer_id": 1693, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.420701, + 45.590974 + ] + }, + "id": 1694, + "properties": { + "id": "e6bd25b8-5158-4fce-9b9d-3a004cbf9ea1", + "code": "34957", + "data": { + "stops": [ + { + "id": "4957", + "code": "34957", + "data": { + "gtfs": { + "stop_id": "4957", + "stop_code": "34957", + "stop_name": "Jean-Deslauriers et du Boisé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Jean-Deslauriers et du Boisé", + "geography": { + "type": "Point", + "coordinates": [ + -73.4207417628061, + 45.5910756315872 + ] + } + }, + { + "id": "4958", + "code": "34958", + "data": { + "gtfs": { + "stop_id": "4958", + "stop_code": "34958", + "stop_name": "du Boisé et Jean-Deslauriers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Boisé et Jean-Deslauriers", + "geography": { + "type": "Point", + "coordinates": [ + -73.42065985047, + 45.5908731500663 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6859748298004 + }, + "name": "Jean-Deslauriers et du Boisé", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.420700807, + 45.590974391 + ] + }, + "is_frozen": false, + "integer_id": 1694, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.421132, + 45.45759 + ] + }, + "id": 1695, + "properties": { + "id": "3947066a-3681-4f55-8693-0a5fac46c728", + "code": "34966", + "data": { + "stops": [ + { + "id": "4966", + "code": "34966", + "data": { + "gtfs": { + "stop_id": "4966", + "stop_code": "34966", + "stop_name": "boul. du Quartier et du Cormoran", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et du Cormoran", + "geography": { + "type": "Point", + "coordinates": [ + -73.4211318035412, + 45.4575902049841 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4298373820654 + }, + "name": "boul. du Quartier et du Cormoran", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.421131804, + 45.457590205 + ] + }, + "is_frozen": false, + "integer_id": 1695, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.420725, + 45.457387 + ] + }, + "id": 1696, + "properties": { + "id": "2091533d-ae73-45a6-ae28-00a869c29f04", + "code": "34967", + "data": { + "stops": [ + { + "id": "4967", + "code": "34967", + "data": { + "gtfs": { + "stop_id": "4967", + "stop_code": "34967", + "stop_name": "boul. du Quartier et du Cormoran", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et du Cormoran", + "geography": { + "type": "Point", + "coordinates": [ + -73.4207253204757, + 45.4573866411354 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4264062825001 + }, + "name": "boul. du Quartier et du Cormoran", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.42072532, + 45.457386641 + ] + }, + "is_frozen": false, + "integer_id": 1696, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.422929, + 45.454445 + ] + }, + "id": 1697, + "properties": { + "id": "006d28ae-a3cc-4f45-8689-daa6cf9386f5", + "code": "34968", + "data": { + "stops": [ + { + "id": "4968", + "code": "34968", + "data": { + "gtfs": { + "stop_id": "4968", + "stop_code": "34968", + "stop_name": "boul. du Quartier et du Cygne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et du Cygne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4229293026161, + 45.4544447285906 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3768240514396 + }, + "name": "boul. du Quartier et du Cygne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.422929303, + 45.454444729 + ] + }, + "is_frozen": false, + "integer_id": 1697, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.421733, + 45.454912 + ] + }, + "id": 1698, + "properties": { + "id": "812fffe8-cc71-4dbc-93c9-b4301abed6c9", + "code": "34969", + "data": { + "stops": [ + { + "id": "4969", + "code": "34969", + "data": { + "gtfs": { + "stop_id": "4969", + "stop_code": "34969", + "stop_name": "boul. du Quartier et du Cygne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et du Cygne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4217332232856, + 45.4549119078634 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3846972537183 + }, + "name": "boul. du Quartier et du Cygne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.421733223, + 45.454911908 + ] + }, + "is_frozen": false, + "integer_id": 1698, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.406412, + 45.574632 + ] + }, + "id": 1699, + "properties": { + "id": "0f2d673a-8365-425e-adb1-c97927e1fe04", + "code": "34971", + "data": { + "stops": [ + { + "id": "4971", + "code": "34971", + "data": { + "gtfs": { + "stop_id": "4971", + "stop_code": "34971", + "stop_name": "ch. de Touraine et Descartes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Touraine et Descartes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4064120946857, + 45.5746321823408 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4086999967253 + }, + "name": "ch. de Touraine et Descartes", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.406412095, + 45.574632182 + ] + }, + "is_frozen": false, + "integer_id": 1699, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.404376, + 45.573155 + ] + }, + "id": 1700, + "properties": { + "id": "2f7dafc2-f82c-429d-8ce9-0ab21c7cde49", + "code": "34972", + "data": { + "stops": [ + { + "id": "4972", + "code": "34972", + "data": { + "gtfs": { + "stop_id": "4972", + "stop_code": "34972", + "stop_name": "ch. Carrefour de la Rive-Sud et Restaurant Bâton Rouge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Carrefour de la Rive-Sud et Restaurant Bâton Rouge", + "geography": { + "type": "Point", + "coordinates": [ + -73.4043756872488, + 45.5731551243988 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3836508337436 + }, + "name": "ch. Carrefour de la Rive-Sud et Restaurant Bâton Rouge", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.404375687, + 45.573155124 + ] + }, + "is_frozen": false, + "integer_id": 1700, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.413956, + 45.573179 + ] + }, + "id": 1701, + "properties": { + "id": "c6549833-3800-4d1f-a789-747fc95c595a", + "code": "34974", + "data": { + "stops": [ + { + "id": "4974", + "code": "34974", + "data": { + "gtfs": { + "stop_id": "4974", + "stop_code": "34974", + "stop_name": "boul. De Montarville et Ampère", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et Ampère", + "geography": { + "type": "Point", + "coordinates": [ + -73.4141675302313, + 45.5732128364613 + ] + } + }, + { + "id": "4976", + "code": "34976", + "data": { + "gtfs": { + "stop_id": "4976", + "stop_code": "34976", + "stop_name": "boul. De Montarville et Ampère", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et Ampère", + "geography": { + "type": "Point", + "coordinates": [ + -73.4137438470354, + 45.5731459351747 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3840622729143 + }, + "name": "boul. De Montarville et Ampère", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.413955689, + 45.573179386 + ] + }, + "is_frozen": false, + "integer_id": 1701, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.422713, + 45.580211 + ] + }, + "id": 1702, + "properties": { + "id": "31ed7f59-0c7b-45ae-b437-8270ad7f8e62", + "code": "34980", + "data": { + "stops": [ + { + "id": "4980", + "code": "34980", + "data": { + "gtfs": { + "stop_id": "4980", + "stop_code": "34980", + "stop_name": "boul. De Montarville et civique 1280", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et civique 1280", + "geography": { + "type": "Point", + "coordinates": [ + -73.4227129657077, + 45.5802113328114 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5033334238434 + }, + "name": "boul. De Montarville et civique 1280", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.422712966, + 45.580211333 + ] + }, + "is_frozen": false, + "integer_id": 1702, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.425082, + 45.58202 + ] + }, + "id": 1703, + "properties": { + "id": "8602485c-23c0-44fe-9b32-fa177f723a3a", + "code": "34982", + "data": { + "stops": [ + { + "id": "4982", + "code": "34982", + "data": { + "gtfs": { + "stop_id": "4982", + "stop_code": "34982", + "stop_name": "boul. De Montarville et civique 1230", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et civique 1230", + "geography": { + "type": "Point", + "coordinates": [ + -73.4250815132207, + 45.5820201711315 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5340208671536 + }, + "name": "boul. De Montarville et civique 1230", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.425081513, + 45.582020171 + ] + }, + "is_frozen": false, + "integer_id": 1703, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.493332, + 45.449084 + ] + }, + "id": 1704, + "properties": { + "id": "af7f8c95-5bbb-4774-8d27-80767d1525b7", + "code": "34984", + "data": { + "stops": [ + { + "id": "4984", + "code": "34984", + "data": { + "gtfs": { + "stop_id": "4984", + "stop_code": "34984", + "stop_name": "boul. du Saint-Laurent et boul. Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Saint-Laurent et boul. Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4933319517336, + 45.4490841531943 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2864980182326 + }, + "name": "boul. du Saint-Laurent et boul. Marie-Victorin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.493331952, + 45.449084153 + ] + }, + "is_frozen": false, + "integer_id": 1704, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.387848, + 45.483962 + ] + }, + "id": 1705, + "properties": { + "id": "2ccb6d20-bc23-4c70-b31c-28503c25783e", + "code": "34985", + "data": { + "stops": [ + { + "id": "4985", + "code": "34985", + "data": { + "gtfs": { + "stop_id": "4985", + "stop_code": "34985", + "stop_name": "boul. Moïse-Vincent et civique 2980", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Moïse-Vincent et civique 2980", + "geography": { + "type": "Point", + "coordinates": [ + -73.3878478116623, + 45.4839622164188 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8746524255168 + }, + "name": "boul. Moïse-Vincent et civique 2980", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.387847812, + 45.483962216 + ] + }, + "is_frozen": false, + "integer_id": 1705, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.406173, + 45.507503 + ] + }, + "id": 1706, + "properties": { + "id": "6212287c-a903-4f14-b932-9fa7dcb13f7b", + "code": "34986", + "data": { + "stops": [ + { + "id": "4986", + "code": "34986", + "data": { + "gtfs": { + "stop_id": "4986", + "stop_code": "34986", + "stop_name": "Moreau et tsse Moreau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Moreau et tsse Moreau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4061378192165, + 45.5074199408998 + ] + } + }, + { + "id": "4997", + "code": "34997", + "data": { + "gtfs": { + "stop_id": "4997", + "stop_code": "34997", + "stop_name": "Moreau et tsse Moreau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Moreau et tsse Moreau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4062087744625, + 45.5075868407485 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2722421214428 + }, + "name": "Moreau et tsse Moreau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.406173297, + 45.507503391 + ] + }, + "is_frozen": false, + "integer_id": 1706, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.405374, + 45.50931 + ] + }, + "id": 1707, + "properties": { + "id": "0ea4fa54-ee0f-4999-90e6-2b0f71f6030e", + "code": "34987", + "data": { + "stops": [ + { + "id": "4987", + "code": "34987", + "data": { + "gtfs": { + "stop_id": "4987", + "stop_code": "34987", + "stop_name": "Moreau et av. Raoul", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Moreau et av. Raoul", + "geography": { + "type": "Point", + "coordinates": [ + -73.4053787923092, + 45.5092489125681 + ] + } + }, + { + "id": "4996", + "code": "34996", + "data": { + "gtfs": { + "stop_id": "4996", + "stop_code": "34996", + "stop_name": "av. Raoul et Moreau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Raoul et Moreau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4053690377222, + 45.5093710994392 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3027746301708 + }, + "name": "Moreau et av. Raoul", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.405373915, + 45.509310006 + ] + }, + "is_frozen": false, + "integer_id": 1707, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.399439, + 45.509509 + ] + }, + "id": 1708, + "properties": { + "id": "c22b0880-b3ca-4797-aa47-0cda85146514", + "code": "34988", + "data": { + "stops": [ + { + "id": "4988", + "code": "34988", + "data": { + "gtfs": { + "stop_id": "4988", + "stop_code": "34988", + "stop_name": "av. Raoul et Lucien-Milette", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Raoul et Lucien-Milette", + "geography": { + "type": "Point", + "coordinates": [ + -73.3995622644947, + 45.5095104877981 + ] + } + }, + { + "id": "4995", + "code": "34995", + "data": { + "gtfs": { + "stop_id": "4995", + "stop_code": "34995", + "stop_name": "Lucien-Milette et av. Raoul", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lucien-Milette et av. Raoul", + "geography": { + "type": "Point", + "coordinates": [ + -73.3993148128512, + 45.5095072635866 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3061357894416 + }, + "name": "av. Raoul et Lucien-Milette", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.399438539, + 45.509508876 + ] + }, + "is_frozen": false, + "integer_id": 1708, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.399301, + 45.508473 + ] + }, + "id": 1709, + "properties": { + "id": "ff0214aa-5a67-4237-87c2-863aa17e8087", + "code": "34989", + "data": { + "stops": [ + { + "id": "4989", + "code": "34989", + "data": { + "gtfs": { + "stop_id": "4989", + "stop_code": "34989", + "stop_name": "Lucien-Milette et Léontine-Marsolais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lucien-Milette et Léontine-Marsolais", + "geography": { + "type": "Point", + "coordinates": [ + -73.3994098128085, + 45.5085637332623 + ] + } + }, + { + "id": "4994", + "code": "34994", + "data": { + "gtfs": { + "stop_id": "4994", + "stop_code": "34994", + "stop_name": "Lucien-Milette et Léontine-Marsolais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lucien-Milette et Léontine-Marsolais", + "geography": { + "type": "Point", + "coordinates": [ + -73.3991920785873, + 45.5083823679954 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2886293980674 + }, + "name": "Lucien-Milette et Léontine-Marsolais", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.399300946, + 45.508473051 + ] + }, + "is_frozen": false, + "integer_id": 1709, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.399139, + 45.506918 + ] + }, + "id": 1710, + "properties": { + "id": "6765611d-305b-41e3-b519-b65e608494ba", + "code": "34990", + "data": { + "stops": [ + { + "id": "4990", + "code": "34990", + "data": { + "gtfs": { + "stop_id": "4990", + "stop_code": "34990", + "stop_name": "Lucien-Milette et Henri-Massé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lucien-Milette et Henri-Massé", + "geography": { + "type": "Point", + "coordinates": [ + -73.3992304288977, + 45.5070200468726 + ] + } + }, + { + "id": "4993", + "code": "34993", + "data": { + "gtfs": { + "stop_id": "4993", + "stop_code": "34993", + "stop_name": "Lucien-Milette et Henri-Massé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lucien-Milette et Henri-Massé", + "geography": { + "type": "Point", + "coordinates": [ + -73.3990484786876, + 45.506816620812 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2623550493688 + }, + "name": "Lucien-Milette et Henri-Massé", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.399139454, + 45.506918334 + ] + }, + "is_frozen": false, + "integer_id": 1710, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446832, + 45.434547 + ] + }, + "id": 1711, + "properties": { + "id": "6780d4e6-8fc6-40a2-9f96-57ee1360cc41", + "code": "35000", + "data": { + "stops": [ + { + "id": "5000", + "code": "35000", + "data": { + "gtfs": { + "stop_id": "5000", + "stop_code": "35000", + "stop_name": "boul. du Quartier et ch. des Prairies", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et ch. des Prairies", + "geography": { + "type": "Point", + "coordinates": [ + -73.4468321664127, + 45.4345471589052 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0416770181594 + }, + "name": "boul. du Quartier et ch. des Prairies", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446832166, + 45.434547159 + ] + }, + "is_frozen": false, + "integer_id": 1711, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442901, + 45.525147 + ] + }, + "id": 1712, + "properties": { + "id": "5b35096e-2561-4a9f-8bf4-a3e7609358bf", + "code": "35002", + "data": { + "stops": [ + { + "id": "5002", + "code": "35002", + "data": { + "gtfs": { + "stop_id": "5002", + "stop_code": "35002", + "stop_name": "boul. Roland-Therrien et boul. Roberval est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et boul. Roberval est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4425590786379, + 45.5250677441722 + ] + } + }, + { + "id": "5574", + "code": "30322", + "data": { + "gtfs": { + "stop_id": "5574", + "stop_code": "30322", + "stop_name": "boul. Roland-Therrien et boul. Roberval est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et boul. Roberval est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4432431601423, + 45.5252267431152 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5705546523229 + }, + "name": "boul. Roland-Therrien et boul. Roberval est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442901119, + 45.525147244 + ] + }, + "is_frozen": false, + "integer_id": 1712, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.418782, + 45.589327 + ] + }, + "id": 1713, + "properties": { + "id": "b34b9d4c-8a10-4c6f-8680-e94a58cb3557", + "code": "35003", + "data": { + "stops": [ + { + "id": "5003", + "code": "35003", + "data": { + "gtfs": { + "stop_id": "5003", + "stop_code": "35003", + "stop_name": "du Boisé et des Bois-Francs", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Boisé et des Bois-Francs", + "geography": { + "type": "Point", + "coordinates": [ + -73.4189164194388, + 45.5893628015719 + ] + } + }, + { + "id": "5012", + "code": "35012", + "data": { + "gtfs": { + "stop_id": "5012", + "stop_code": "35012", + "stop_name": "du Boisé et des Bois-Francs", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Boisé et des Bois-Francs", + "geography": { + "type": "Point", + "coordinates": [ + -73.4186477236328, + 45.5892909409314 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6580108730252 + }, + "name": "du Boisé et des Bois-Francs", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.418782072, + 45.589326871 + ] + }, + "is_frozen": false, + "integer_id": 1713, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.417278, + 45.588071 + ] + }, + "id": 1714, + "properties": { + "id": "80ef4305-1848-4e04-a328-9a6224dacc70", + "code": "35004", + "data": { + "stops": [ + { + "id": "5004", + "code": "35004", + "data": { + "gtfs": { + "stop_id": "5004", + "stop_code": "35004", + "stop_name": "du Boisé et de Normandie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Boisé et de Normandie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4174602701575, + 45.5881243519414 + ] + } + }, + { + "id": "5011", + "code": "35011", + "data": { + "gtfs": { + "stop_id": "5011", + "stop_code": "35011", + "stop_name": "du Boisé et de Normandie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Boisé et de Normandie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4170961679076, + 45.5880177752233 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6366972351583 + }, + "name": "du Boisé et de Normandie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.417278219, + 45.588071064 + ] + }, + "is_frozen": false, + "integer_id": 1714, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.41589, + 45.586721 + ] + }, + "id": 1715, + "properties": { + "id": "560a4184-8ee9-4ea1-b3fb-4093c9ece9d5", + "code": "35005", + "data": { + "stops": [ + { + "id": "5005", + "code": "35005", + "data": { + "gtfs": { + "stop_id": "5005", + "stop_code": "35005", + "stop_name": "du Boisé et des Châtaigniers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Boisé et des Châtaigniers", + "geography": { + "type": "Point", + "coordinates": [ + -73.4158898551987, + 45.5867214868862 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.613793700064 + }, + "name": "du Boisé et des Châtaigniers", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.415889855, + 45.586721487 + ] + }, + "is_frozen": false, + "integer_id": 1715, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.414031, + 45.585074 + ] + }, + "id": 1716, + "properties": { + "id": "144cb85b-88dc-4e09-90a2-f3d4d4c951bd", + "code": "35006", + "data": { + "stops": [ + { + "id": "5006", + "code": "35006", + "data": { + "gtfs": { + "stop_id": "5006", + "stop_code": "35006", + "stop_name": "du Boisé et des Châtaigniers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Boisé et des Châtaigniers", + "geography": { + "type": "Point", + "coordinates": [ + -73.4140311877583, + 45.5850739256084 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5858353178442 + }, + "name": "du Boisé et des Châtaigniers", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.414031188, + 45.585073926 + ] + }, + "is_frozen": false, + "integer_id": 1716, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.411561, + 45.583215 + ] + }, + "id": 1717, + "properties": { + "id": "4941bea8-570f-4adc-b6d4-2b2cbff2bc03", + "code": "35007", + "data": { + "stops": [ + { + "id": "5007", + "code": "35007", + "data": { + "gtfs": { + "stop_id": "5007", + "stop_code": "35007", + "stop_name": "du Boisé et du Bosquet", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Boisé et du Bosquet", + "geography": { + "type": "Point", + "coordinates": [ + -73.4117669650833, + 45.5832936794475 + ] + } + }, + { + "id": "5008", + "code": "35008", + "data": { + "gtfs": { + "stop_id": "5008", + "stop_code": "35008", + "stop_name": "du Boisé et du Bosquet", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Boisé et du Bosquet", + "geography": { + "type": "Point", + "coordinates": [ + -73.4113559357988, + 45.5831360583004 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5542908582786 + }, + "name": "du Boisé et du Bosquet", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.41156145, + 45.583214869 + ] + }, + "is_frozen": false, + "integer_id": 1717, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.413924, + 45.585161 + ] + }, + "id": 1718, + "properties": { + "id": "b7599023-7f7b-498e-8d55-1e94246bf9e4", + "code": "35009", + "data": { + "stops": [ + { + "id": "5009", + "code": "35009", + "data": { + "gtfs": { + "stop_id": "5009", + "stop_code": "35009", + "stop_name": "du Boisé et des Châtaigniers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Boisé et des Châtaigniers", + "geography": { + "type": "Point", + "coordinates": [ + -73.4139240818239, + 45.585160633566 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5873066537462 + }, + "name": "du Boisé et des Châtaigniers", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.413924082, + 45.585160634 + ] + }, + "is_frozen": false, + "integer_id": 1718, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.41556, + 45.586549 + ] + }, + "id": 1719, + "properties": { + "id": "1c1a55d1-8af4-4a8f-95a9-7af3f3207400", + "code": "35010", + "data": { + "stops": [ + { + "id": "5010", + "code": "35010", + "data": { + "gtfs": { + "stop_id": "5010", + "stop_code": "35010", + "stop_name": "du Boisé et des Châtaigniers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Boisé et des Châtaigniers", + "geography": { + "type": "Point", + "coordinates": [ + -73.4155598187324, + 45.5865488783128 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6108644876977 + }, + "name": "du Boisé et des Châtaigniers", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.415559819, + 45.586548878 + ] + }, + "is_frozen": false, + "integer_id": 1719, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.368641, + 45.526444 + ] + }, + "id": 1720, + "properties": { + "id": "24a322e0-f890-4138-9c97-136b5a2cdd60", + "code": "35014", + "data": { + "stops": [ + { + "id": "5014", + "code": "35014", + "data": { + "gtfs": { + "stop_id": "5014", + "stop_code": "35014", + "stop_name": "Parent et civique 1100", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Parent et civique 1100", + "geography": { + "type": "Point", + "coordinates": [ + -73.368580983029, + 45.5265138108704 + ] + } + }, + { + "id": "5015", + "code": "35015", + "data": { + "gtfs": { + "stop_id": "5015", + "stop_code": "35015", + "stop_name": "Parent et civique 1100", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Parent et civique 1100", + "geography": { + "type": "Point", + "coordinates": [ + -73.368700751177, + 45.5263745013885 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5924930674237 + }, + "name": "Parent et civique 1100", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.368640867, + 45.526444156 + ] + }, + "is_frozen": false, + "integer_id": 1720, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.369776, + 45.529776 + ] + }, + "id": 1721, + "properties": { + "id": "4d10c33d-a086-4248-8e97-1236a7069436", + "code": "35016", + "data": { + "stops": [ + { + "id": "5016", + "code": "35016", + "data": { + "gtfs": { + "stop_id": "5016", + "stop_code": "35016", + "stop_name": "Parent et civique 1041", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Parent et civique 1041", + "geography": { + "type": "Point", + "coordinates": [ + -73.3696819717362, + 45.5298023256698 + ] + } + }, + { + "id": "5017", + "code": "35017", + "data": { + "gtfs": { + "stop_id": "5017", + "stop_code": "35017", + "stop_name": "Parent et civique 1041", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Parent et civique 1041", + "geography": { + "type": "Point", + "coordinates": [ + -73.3698694399151, + 45.529748733518 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6488530808256 + }, + "name": "Parent et civique 1041", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.369775706, + 45.52977553 + ] + }, + "is_frozen": false, + "integer_id": 1721, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.367137, + 45.51472 + ] + }, + "id": 1722, + "properties": { + "id": "d3614ff1-08ff-435f-b8f7-1a76f68a0071", + "code": "35018", + "data": { + "stops": [ + { + "id": "5018", + "code": "35018", + "data": { + "gtfs": { + "stop_id": "5018", + "stop_code": "35018", + "stop_name": "Marie-Victorin et civique 1450", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Marie-Victorin et civique 1450", + "geography": { + "type": "Point", + "coordinates": [ + -73.3671365225516, + 45.5147204789891 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.394231149929 + }, + "name": "Marie-Victorin et civique 1450", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.367136523, + 45.514720479 + ] + }, + "is_frozen": false, + "integer_id": 1722, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.355721, + 45.515605 + ] + }, + "id": 1723, + "properties": { + "id": "6cc3ca76-cd11-4240-ac37-33142410aacb", + "code": "35021", + "data": { + "stops": [ + { + "id": "5021", + "code": "35021", + "data": { + "gtfs": { + "stop_id": "5021", + "stop_code": "35021", + "stop_name": "Marie-Victorin et civique 1890", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Marie-Victorin et civique 1890", + "geography": { + "type": "Point", + "coordinates": [ + -73.3557210638422, + 45.5156054519727 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4091928682152 + }, + "name": "Marie-Victorin et civique 1890", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.355721064, + 45.515605452 + ] + }, + "is_frozen": false, + "integer_id": 1723, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482395, + 45.562673 + ] + }, + "id": 1724, + "properties": { + "id": "e6df12e3-4f2f-4277-aa8e-a04daab48336", + "code": "35022", + "data": { + "stops": [ + { + "id": "5022", + "code": "35022", + "data": { + "gtfs": { + "stop_id": "5022", + "stop_code": "35022", + "stop_name": "Adoncour et des Pinsons", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et des Pinsons", + "geography": { + "type": "Point", + "coordinates": [ + -73.4823948383334, + 45.5626731458953 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2059448639543 + }, + "name": "Adoncour et des Pinsons", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482394838, + 45.562673146 + ] + }, + "is_frozen": false, + "integer_id": 1724, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.369294, + 45.522995 + ] + }, + "id": 1725, + "properties": { + "id": "dca87cea-ccf9-454c-a18b-6489a3e1ab68", + "code": "35023", + "data": { + "stops": [ + { + "id": "5023", + "code": "35023", + "data": { + "gtfs": { + "stop_id": "5023", + "stop_code": "35023", + "stop_name": "Marie-Victorin et aut. de l'Acier - (30) est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Marie-Victorin et aut. de l'Acier - (30) est", + "geography": { + "type": "Point", + "coordinates": [ + -73.3691332054207, + 45.5230208156851 + ] + } + }, + { + "id": "5024", + "code": "35024", + "data": { + "gtfs": { + "stop_id": "5024", + "stop_code": "35024", + "stop_name": "Marie-Victorin et aut. de l'Acier - (30) est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Marie-Victorin et aut. de l'Acier - (30) est", + "geography": { + "type": "Point", + "coordinates": [ + -73.3694546556265, + 45.5229694912884 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5341534346414 + }, + "name": "Marie-Victorin et aut. de l'Acier - (30) est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.369293931, + 45.522995153 + ] + }, + "is_frozen": false, + "integer_id": 1725, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.428042, + 45.519411 + ] + }, + "id": 1726, + "properties": { + "id": "3abeeed6-00fe-4697-9dbf-87d5c2515aac", + "code": "35025", + "data": { + "stops": [ + { + "id": "5025", + "code": "35025", + "data": { + "gtfs": { + "stop_id": "5025", + "stop_code": "35025", + "stop_name": "ch. de la Savane et Suzor", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et Suzor", + "geography": { + "type": "Point", + "coordinates": [ + -73.428126782292, + 45.5194943196233 + ] + } + }, + { + "id": "5026", + "code": "35026", + "data": { + "gtfs": { + "stop_id": "5026", + "stop_code": "35026", + "stop_name": "ch. de la Savane et Suzor", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et Suzor", + "geography": { + "type": "Point", + "coordinates": [ + -73.4279577219011, + 45.519327326919 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4735359880226 + }, + "name": "ch. de la Savane et Suzor", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.428042252, + 45.519410823 + ] + }, + "is_frozen": false, + "integer_id": 1726, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456296, + 45.592579 + ] + }, + "id": 1727, + "properties": { + "id": "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", + "code": "35027", + "data": { + "stops": [ + { + "id": "5027", + "code": "35027", + "data": { + "gtfs": { + "stop_id": "5027", + "stop_code": "35027", + "stop_name": "boul. du Fort-Saint-Louis et Cicot sud", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Cicot sud", + "geography": { + "type": "Point", + "coordinates": [ + -73.4563751050039, + 45.5926353738084 + ] + } + }, + { + "id": "5028", + "code": "35028", + "data": { + "gtfs": { + "stop_id": "5028", + "stop_code": "35028", + "stop_name": "boul. du Fort-Saint-Louis et Cicot sud", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Fort-Saint-Louis et Cicot sud", + "geography": { + "type": "Point", + "coordinates": [ + -73.4562161744837, + 45.5925228883881 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7132150017403 + }, + "name": "boul. du Fort-Saint-Louis et Cicot sud", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45629564, + 45.592579131 + ] + }, + "is_frozen": false, + "integer_id": 1727, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455507, + 45.566131 + ] + }, + "id": 1728, + "properties": { + "id": "6150abd1-c8f6-4045-8e3e-f50bbef79a53", + "code": "35029", + "data": { + "stops": [ + { + "id": "5029", + "code": "35029", + "data": { + "gtfs": { + "stop_id": "5029", + "stop_code": "35029", + "stop_name": "ch. du Lac et Labadie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et Labadie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4555074115116, + 45.566131105146 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2645584379925 + }, + "name": "ch. du Lac et Labadie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455507412, + 45.566131105 + ] + }, + "is_frozen": false, + "integer_id": 1728, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.40601, + 45.572072 + ] + }, + "id": 1729, + "properties": { + "id": "9adb2d51-794e-405a-84b9-dacf33a046bb", + "code": "35031", + "data": { + "stops": [ + { + "id": "5031", + "code": "35031", + "data": { + "gtfs": { + "stop_id": "5031", + "stop_code": "35031", + "stop_name": "ch. Carrefour de la Rive-Sud et Sports Experts", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Carrefour de la Rive-Sud et Sports Experts", + "geography": { + "type": "Point", + "coordinates": [ + -73.4060096822792, + 45.572071778845 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.365279819192 + }, + "name": "ch. Carrefour de la Rive-Sud et Sports Experts", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.406009682, + 45.572071779 + ] + }, + "is_frozen": false, + "integer_id": 1729, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456362, + 45.545085 + ] + }, + "id": 1730, + "properties": { + "id": "7297ee1d-b36d-46fd-b6df-e9807a5791cf", + "code": "35034", + "data": { + "stops": [ + { + "id": "5034", + "code": "35034", + "data": { + "gtfs": { + "stop_id": "5034", + "stop_code": "35034", + "stop_name": "boul. Curé-Poirier est et boul. Jacques-Cartier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier est et boul. Jacques-Cartier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4563624709877, + 45.5450852287507 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9079890253802 + }, + "name": "boul. Curé-Poirier est et boul. Jacques-Cartier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456362471, + 45.545085229 + ] + }, + "is_frozen": false, + "integer_id": 1730, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.384825, + 45.506619 + ] + }, + "id": 1731, + "properties": { + "id": "71f7bbc9-363a-40ba-86f7-7f9ec638da55", + "code": "35036", + "data": { + "stops": [ + { + "id": "5036", + "code": "35036", + "data": { + "gtfs": { + "stop_id": "5036", + "stop_code": "35036", + "stop_name": "de l'Étang et HOME DEPOT", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de l'Étang et HOME DEPOT", + "geography": { + "type": "Point", + "coordinates": [ + -73.3850680051723, + 45.5065323316444 + ] + } + }, + { + "id": "5037", + "code": "35037", + "data": { + "gtfs": { + "stop_id": "5037", + "stop_code": "35037", + "stop_name": "de l'Étang et CANADIAN TIRE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de l'Étang et CANADIAN TIRE", + "geography": { + "type": "Point", + "coordinates": [ + -73.3845819816273, + 45.5067055858926 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.257295929912 + }, + "name": "de l'Étang et HOME DEPOT", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.384824993, + 45.506618959 + ] + }, + "is_frozen": false, + "integer_id": 1731, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440015, + 45.45364 + ] + }, + "id": 1732, + "properties": { + "id": "06cee1c3-abcc-4982-b889-e73356b844e0", + "code": "35038", + "data": { + "stops": [ + { + "id": "5038", + "code": "35038", + "data": { + "gtfs": { + "stop_id": "5038", + "stop_code": "35038", + "stop_name": "boul. Lapinière et av. Colomb", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et av. Colomb", + "geography": { + "type": "Point", + "coordinates": [ + -73.4402668210031, + 45.4536701492791 + ] + } + }, + { + "id": "5039", + "code": "35039", + "data": { + "gtfs": { + "stop_id": "5039", + "stop_code": "35039", + "stop_name": "boul. Lapinière et av. Colomb", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et av. Colomb", + "geography": { + "type": "Point", + "coordinates": [ + -73.4397625754951, + 45.4536091040535 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3632564068533 + }, + "name": "boul. Lapinière et av. Colomb", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440014698, + 45.453639627 + ] + }, + "is_frozen": false, + "integer_id": 1732, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.381496, + 45.50717 + ] + }, + "id": 1733, + "properties": { + "id": "f20e2154-4487-4d25-8e73-57adbf7414bd", + "code": "35041", + "data": { + "stops": [ + { + "id": "5041", + "code": "35041", + "data": { + "gtfs": { + "stop_id": "5041", + "stop_code": "35041", + "stop_name": "boul. Saint-Bruno et CINEMA CINEPLEX ODEON SAINT-BRUNO", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Saint-Bruno et CINEMA CINEPLEX ODEON SAINT-BRUNO", + "geography": { + "type": "Point", + "coordinates": [ + -73.3814963812537, + 45.5071703374305 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2666136941973 + }, + "name": "boul. Saint-Bruno et CINEMA CINEPLEX ODEON SAINT-BRUNO", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.381496381, + 45.507170337 + ] + }, + "is_frozen": false, + "integer_id": 1733, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.379104, + 45.508141 + ] + }, + "id": 1734, + "properties": { + "id": "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", + "code": "35042", + "data": { + "stops": [ + { + "id": "5042", + "code": "35042", + "data": { + "gtfs": { + "stop_id": "5042", + "stop_code": "35042", + "stop_name": "Stationnement des Promenades et SIMONS", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Stationnement des Promenades et SIMONS", + "geography": { + "type": "Point", + "coordinates": [ + -73.3791852985931, + 45.5080596107945 + ] + } + }, + { + "id": "5044", + "code": "35044", + "data": { + "gtfs": { + "stop_id": "5044", + "stop_code": "35044", + "stop_name": "Stationnement des Promenades et TOYS R US", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Stationnement des Promenades et TOYS R US", + "geography": { + "type": "Point", + "coordinates": [ + -73.3790234539514, + 45.5082232683874 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2830250702481 + }, + "name": "Stationnement des Promenades et SIMONS", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.379104376, + 45.50814144 + ] + }, + "is_frozen": false, + "integer_id": 1734, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.471152, + 45.541741 + ] + }, + "id": 1735, + "properties": { + "id": "d179e57e-d1e0-4e92-9205-bca60d3115b1", + "code": "35047", + "data": { + "stops": [ + { + "id": "5047", + "code": "35047", + "data": { + "gtfs": { + "stop_id": "5047", + "stop_code": "35047", + "stop_name": "Adoncour et boul. Curé-Poirier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et boul. Curé-Poirier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4711519666641, + 45.5417414893433 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8513741673329 + }, + "name": "Adoncour et boul. Curé-Poirier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.471151967, + 45.541741489 + ] + }, + "is_frozen": false, + "integer_id": 1735, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468303, + 45.539996 + ] + }, + "id": 1736, + "properties": { + "id": "248781a4-a949-4c45-bc5a-1de80211510e", + "code": "35048", + "data": { + "stops": [ + { + "id": "5048", + "code": "35048", + "data": { + "gtfs": { + "stop_id": "5048", + "stop_code": "35048", + "stop_name": "Adoncour et King-George", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et King-George", + "geography": { + "type": "Point", + "coordinates": [ + -73.4685095591159, + 45.5399674709211 + ] + } + }, + { + "id": "5049", + "code": "35049", + "data": { + "gtfs": { + "stop_id": "5049", + "stop_code": "35049", + "stop_name": "Adoncour et King-George", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et King-George", + "geography": { + "type": "Point", + "coordinates": [ + -73.468096401864, + 45.5401347817848 + ] + } + }, + { + "id": "5496", + "code": "30243", + "data": { + "gtfs": { + "stop_id": "5496", + "stop_code": "30243", + "stop_name": "King-George et Adoncour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "King-George et Adoncour", + "geography": { + "type": "Point", + "coordinates": [ + -73.468166353493, + 45.5398567705071 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8218204220296 + }, + "name": "Adoncour et King-George", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46830298, + 45.539995776 + ] + }, + "is_frozen": false, + "integer_id": 1736, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465619, + 45.539927 + ] + }, + "id": 1737, + "properties": { + "id": "8e9d3a93-2217-4362-8631-6cc69bd428bc", + "code": "35050", + "data": { + "stops": [ + { + "id": "5050", + "code": "35050", + "data": { + "gtfs": { + "stop_id": "5050", + "stop_code": "35050", + "stop_name": "Adoncour et du Petit-Bois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et du Petit-Bois", + "geography": { + "type": "Point", + "coordinates": [ + -73.465921690757, + 45.539846994985 + ] + } + }, + { + "id": "5051", + "code": "35051", + "data": { + "gtfs": { + "stop_id": "5051", + "stop_code": "35051", + "stop_name": "Adoncour et du Petit-Bois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et du Petit-Bois", + "geography": { + "type": "Point", + "coordinates": [ + -73.4653169516021, + 45.5400066771545 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.820653370067 + }, + "name": "Adoncour et du Petit-Bois", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465619321, + 45.539926836 + ] + }, + "is_frozen": false, + "integer_id": 1737, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463854, + 45.539491 + ] + }, + "id": 1738, + "properties": { + "id": "497c7cbc-7c2a-4684-ae90-71dc2a66863f", + "code": "35052", + "data": { + "stops": [ + { + "id": "5052", + "code": "35052", + "data": { + "gtfs": { + "stop_id": "5052", + "stop_code": "35052", + "stop_name": "Adoncour et du Faubourg", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et du Faubourg", + "geography": { + "type": "Point", + "coordinates": [ + -73.4640704478145, + 45.5395797951541 + ] + } + }, + { + "id": "5053", + "code": "35053", + "data": { + "gtfs": { + "stop_id": "5053", + "stop_code": "35053", + "stop_name": "Adoncour et du Sentier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et du Sentier", + "geography": { + "type": "Point", + "coordinates": [ + -73.463636630429, + 45.5394024844261 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8132777809898 + }, + "name": "Adoncour et du Faubourg", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463853539, + 45.53949114 + ] + }, + "is_frozen": false, + "integer_id": 1738, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461903, + 45.538193 + ] + }, + "id": 1739, + "properties": { + "id": "a392bf4c-9790-451e-a9bc-51428fa10a69", + "code": "35054", + "data": { + "stops": [ + { + "id": "5054", + "code": "35054", + "data": { + "gtfs": { + "stop_id": "5054", + "stop_code": "35054", + "stop_name": "Adoncour et ch. Du Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Adoncour et ch. Du Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4620343082524, + 45.538150571892 + ] + } + }, + { + "id": "5055", + "code": "35055", + "data": { + "gtfs": { + "stop_id": "5055", + "stop_code": "35055", + "stop_name": "ch. Du Tremblay et Adoncour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et Adoncour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4617710198014, + 45.5382347943563 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7912981261801 + }, + "name": "Adoncour et ch. Du Tremblay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461902664, + 45.538192683 + ] + }, + "is_frozen": false, + "integer_id": 1739, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460733, + 45.538864 + ] + }, + "id": 1740, + "properties": { + "id": "3f5db866-fafa-412d-a611-8e8ceedc9d66", + "code": "35056", + "data": { + "stops": [ + { + "id": "5056", + "code": "35056", + "data": { + "gtfs": { + "stop_id": "5056", + "stop_code": "35056", + "stop_name": "ch. Du Tremblay et civique 1235", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 1235", + "geography": { + "type": "Point", + "coordinates": [ + -73.4606777482433, + 45.5387986870046 + ] + } + }, + { + "id": "5057", + "code": "35057", + "data": { + "gtfs": { + "stop_id": "5057", + "stop_code": "35057", + "stop_name": "ch. Du Tremblay et civique 1235", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 1235", + "geography": { + "type": "Point", + "coordinates": [ + -73.4607876363569, + 45.5389297932884 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8026657319068 + }, + "name": "ch. Du Tremblay et civique 1235", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.460732692, + 45.53886424 + ] + }, + "is_frozen": false, + "integer_id": 1740, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457922, + 45.541296 + ] + }, + "id": 1741, + "properties": { + "id": "aa7a5ed8-9a21-492a-a960-c6b24bbf08aa", + "code": "35058", + "data": { + "stops": [ + { + "id": "5058", + "code": "35058", + "data": { + "gtfs": { + "stop_id": "5058", + "stop_code": "35058", + "stop_name": "du Colisée et ch. Du Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Colisée et ch. Du Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4579947681846, + 45.5414280342666 + ] + } + }, + { + "id": "5059", + "code": "35059", + "data": { + "gtfs": { + "stop_id": "5059", + "stop_code": "35059", + "stop_name": "du Colisée et ch. Du Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Colisée et ch. Du Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4578482498863, + 45.5411631213804 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8438249358895 + }, + "name": "du Colisée et ch. Du Tremblay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457921509, + 45.541295578 + ] + }, + "is_frozen": false, + "integer_id": 1741, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459772, + 45.542308 + ] + }, + "id": 1742, + "properties": { + "id": "c7d03075-5044-4f36-93d3-b0ab9d315d42", + "code": "35060", + "data": { + "stops": [ + { + "id": "5060", + "code": "35060", + "data": { + "gtfs": { + "stop_id": "5060", + "stop_code": "35060", + "stop_name": "du Colisée et du Jardin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Colisée et du Jardin", + "geography": { + "type": "Point", + "coordinates": [ + -73.459772321414, + 45.5423076419323 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8609593401782 + }, + "name": "du Colisée et du Jardin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459772321, + 45.542307642 + ] + }, + "is_frozen": false, + "integer_id": 1742, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459385, + 45.542092 + ] + }, + "id": 1743, + "properties": { + "id": "e11daa5e-3189-4684-b63e-0ec15544872f", + "code": "35061", + "data": { + "stops": [ + { + "id": "5061", + "code": "35061", + "data": { + "gtfs": { + "stop_id": "5061", + "stop_code": "35061", + "stop_name": "du Colisée et du Jardin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Colisée et du Jardin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4593853601806, + 45.5420917250354 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8573037543827 + }, + "name": "du Colisée et du Jardin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45938536, + 45.542091725 + ] + }, + "is_frozen": false, + "integer_id": 1743, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46099, + 45.543008 + ] + }, + "id": 1744, + "properties": { + "id": "b42cc3ff-2da3-4535-b070-1150cc42c135", + "code": "35062", + "data": { + "stops": [ + { + "id": "5062", + "code": "35062", + "data": { + "gtfs": { + "stop_id": "5062", + "stop_code": "35062", + "stop_name": "du Colisée et Champêtre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Colisée et Champêtre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4607450612792, + 45.5427932920106 + ] + } + }, + { + "id": "5063", + "code": "35063", + "data": { + "gtfs": { + "stop_id": "5063", + "stop_code": "35063", + "stop_name": "du Colisée et du Jardin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Colisée et du Jardin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4612348885784, + 45.5432234210567 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8728230918532 + }, + "name": "du Colisée et Champêtre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.460989975, + 45.543008357 + ] + }, + "is_frozen": false, + "integer_id": 1744, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.461384, + 45.544691 + ] + }, + "id": 1745, + "properties": { + "id": "81ceaeba-df2d-476d-a80e-d7112cda70cb", + "code": "35064", + "data": { + "stops": [ + { + "id": "5064", + "code": "35064", + "data": { + "gtfs": { + "stop_id": "5064", + "stop_code": "35064", + "stop_name": "du Colisée et boul. Curé-Poirier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Colisée et boul. Curé-Poirier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4613222858408, + 45.5446597059074 + ] + } + }, + { + "id": "5065", + "code": "35065", + "data": { + "gtfs": { + "stop_id": "5065", + "stop_code": "35065", + "stop_name": "du Colisée et boul. Curé-Poirier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Colisée et boul. Curé-Poirier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4614684665429, + 45.5444624454677 + ] + } + }, + { + "id": "5841", + "code": "30610", + "data": { + "gtfs": { + "stop_id": "5841", + "stop_code": "30610", + "stop_name": "boul. Curé-Poirier est et du Colisée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier est et du Colisée", + "geography": { + "type": "Point", + "coordinates": [ + -73.4612743339484, + 45.5449187462693 + ] + } + }, + { + "id": "5844", + "code": "30613", + "data": { + "gtfs": { + "stop_id": "5844", + "stop_code": "30613", + "stop_name": "boul. Curé-Poirier est et du Colisée", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier est et du Colisée", + "geography": { + "type": "Point", + "coordinates": [ + -73.461493679319, + 45.5447375600685 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9013067392222 + }, + "name": "du Colisée et boul. Curé-Poirier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.461384007, + 45.544690596 + ] + }, + "is_frozen": false, + "integer_id": 1745, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.459211, + 45.544895 + ] + }, + "id": 1746, + "properties": { + "id": "ed9c5edc-a8fc-42c1-8283-02b881c76ff4", + "code": "35066", + "data": { + "stops": [ + { + "id": "5066", + "code": "35066", + "data": { + "gtfs": { + "stop_id": "5066", + "stop_code": "35066", + "stop_name": "boul. Curé-Poirier est et COLISEE JEAN BELIVEAU", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier est et COLISEE JEAN BELIVEAU", + "geography": { + "type": "Point", + "coordinates": [ + -73.459552842856, + 45.5448140620337 + ] + } + }, + { + "id": "5067", + "code": "35067", + "data": { + "gtfs": { + "stop_id": "5067", + "stop_code": "35067", + "stop_name": "boul. Curé-Poirier est et COLISEE JEAN BELIVEAU", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier est et COLISEE JEAN BELIVEAU", + "geography": { + "type": "Point", + "coordinates": [ + -73.4588701048839, + 45.5449755854462 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9047648967771 + }, + "name": "boul. Curé-Poirier est et COLISEE JEAN BELIVEAU", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.459211474, + 45.544894824 + ] + }, + "is_frozen": false, + "integer_id": 1746, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443628, + 45.54008 + ] + }, + "id": 1747, + "properties": { + "id": "1f21bce0-b8ed-434c-ade7-9416eb8a180a", + "code": "35068", + "data": { + "stops": [ + { + "id": "5068", + "code": "35068", + "data": { + "gtfs": { + "stop_id": "5068", + "stop_code": "35068", + "stop_name": "Belcourt et Arcand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et Arcand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4439039133605, + 45.5400633945433 + ] + } + }, + { + "id": "5833", + "code": "30602", + "data": { + "gtfs": { + "stop_id": "5833", + "stop_code": "30602", + "stop_name": "Belcourt et Arcand", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et Arcand", + "geography": { + "type": "Point", + "coordinates": [ + -73.4433526010583, + 45.5400968807757 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8232485513506 + }, + "name": "Belcourt et Arcand", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443628257, + 45.540080138 + ] + }, + "is_frozen": false, + "integer_id": 1747, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441951, + 45.539699 + ] + }, + "id": 1748, + "properties": { + "id": "6ad75842-382c-44ee-b7d6-fd3532656bb0", + "code": "35069", + "data": { + "stops": [ + { + "id": "5069", + "code": "35069", + "data": { + "gtfs": { + "stop_id": "5069", + "stop_code": "35069", + "stop_name": "Belcourt et Asselin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et Asselin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4421970583287, + 45.5397048457332 + ] + } + }, + { + "id": "5832", + "code": "30601", + "data": { + "gtfs": { + "stop_id": "5832", + "stop_code": "30601", + "stop_name": "Belcourt et Asselin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et Asselin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4417047636596, + 45.5396936922416 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8168010283331 + }, + "name": "Belcourt et Asselin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441950911, + 45.539699269 + ] + }, + "is_frozen": false, + "integer_id": 1748, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442825, + 45.536598 + ] + }, + "id": 1749, + "properties": { + "id": "5360d4c3-b5aa-452d-a69b-73fcfc24260f", + "code": "35071", + "data": { + "stops": [ + { + "id": "5071", + "code": "35071", + "data": { + "gtfs": { + "stop_id": "5071", + "stop_code": "35071", + "stop_name": "Belcourt et Asselin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et Asselin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4428661940098, + 45.5366925112083 + ] + } + }, + { + "id": "5830", + "code": "30599", + "data": { + "gtfs": { + "stop_id": "5830", + "stop_code": "30599", + "stop_name": "Belcourt et Asselin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et Asselin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4427846922371, + 45.5365036952598 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7643079012913 + }, + "name": "Belcourt et Asselin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442825443, + 45.536598103 + ] + }, + "is_frozen": false, + "integer_id": 1749, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.438743, + 45.464175 + ] + }, + "id": 1750, + "properties": { + "id": "a02ece0d-dd7f-42ce-ab40-b24192e1114e", + "code": "35081", + "data": { + "stops": [ + { + "id": "5081", + "code": "35081", + "data": { + "gtfs": { + "stop_id": "5081", + "stop_code": "35081", + "stop_name": "av. Bienvenue et civique 3990", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Bienvenue et civique 3990", + "geography": { + "type": "Point", + "coordinates": [ + -73.4387433640359, + 45.4641745325596 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5408369795383 + }, + "name": "av. Bienvenue et civique 3990", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438743364, + 45.464174533 + ] + }, + "is_frozen": false, + "integer_id": 1750, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443918, + 45.461574 + ] + }, + "id": 1751, + "properties": { + "id": "b78c0741-766d-4707-a3b0-36a0477adc73", + "code": "35084", + "data": { + "stops": [ + { + "id": "5084", + "code": "35084", + "data": { + "gtfs": { + "stop_id": "5084", + "stop_code": "35084", + "stop_name": "av. Balzac et Beaumont", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Balzac et Beaumont", + "geography": { + "type": "Point", + "coordinates": [ + -73.44391834869, + 45.4615739955199 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4969921358759 + }, + "name": "av. Balzac et Beaumont", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443918349, + 45.461573996 + ] + }, + "is_frozen": false, + "integer_id": 1751, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442482, + 45.454872 + ] + }, + "id": 1752, + "properties": { + "id": "9159ff88-d9d5-4cda-a7ee-41b416c49163", + "code": "35086", + "data": { + "stops": [ + { + "id": "5086", + "code": "35086", + "data": { + "gtfs": { + "stop_id": "5086", + "stop_code": "35086", + "stop_name": "boul. Lapinière et boul. Chevrier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et boul. Chevrier", + "geography": { + "type": "Point", + "coordinates": [ + -73.442482355973, + 45.4548719194313 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3840233256819 + }, + "name": "boul. Lapinière et boul. Chevrier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442482356, + 45.454871919 + ] + }, + "is_frozen": false, + "integer_id": 1752, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.418563, + 45.572823 + ] + }, + "id": 1753, + "properties": { + "id": "8c73c7f2-6a19-4272-8988-4cd9987871b8", + "code": "35099", + "data": { + "stops": [ + { + "id": "5099", + "code": "35099", + "data": { + "gtfs": { + "stop_id": "5099", + "stop_code": "35099", + "stop_name": "de Gascogne et de Reims", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Gascogne et de Reims", + "geography": { + "type": "Point", + "coordinates": [ + -73.4185399929447, + 45.572926595398 + ] + } + }, + { + "id": "5111", + "code": "35111", + "data": { + "gtfs": { + "stop_id": "5111", + "stop_code": "35111", + "stop_name": "de Gascogne et de Reims", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Gascogne et de Reims", + "geography": { + "type": "Point", + "coordinates": [ + -73.4185857618033, + 45.5727188559165 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3780140242586 + }, + "name": "de Gascogne et de Reims", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.418562877, + 45.572822726 + ] + }, + "is_frozen": false, + "integer_id": 1753, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.42035, + 45.572242 + ] + }, + "id": 1754, + "properties": { + "id": "0b2fb021-eaa4-4107-8980-c7b3bc7fd9a9", + "code": "35100", + "data": { + "stops": [ + { + "id": "5100", + "code": "35100", + "data": { + "gtfs": { + "stop_id": "5100", + "stop_code": "35100", + "stop_name": "de Gascogne et civique 407", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Gascogne et civique 407", + "geography": { + "type": "Point", + "coordinates": [ + -73.4203335038899, + 45.5723233818675 + ] + } + }, + { + "id": "5110", + "code": "35110", + "data": { + "gtfs": { + "stop_id": "5110", + "stop_code": "35110", + "stop_name": "de Gascogne et civique 394", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Gascogne et civique 394", + "geography": { + "type": "Point", + "coordinates": [ + -73.4203671929499, + 45.5721607796022 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.36816767599 + }, + "name": "de Gascogne et civique 407", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.420350348, + 45.572242081 + ] + }, + "is_frozen": false, + "integer_id": 1754, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.423917, + 45.572694 + ] + }, + "id": 1755, + "properties": { + "id": "90388705-b26a-4b3b-a643-8ef39d04ff02", + "code": "35101", + "data": { + "stops": [ + { + "id": "5101", + "code": "35101", + "data": { + "gtfs": { + "stop_id": "5101", + "stop_code": "35101", + "stop_name": "de Gascogne et du Limousin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Gascogne et du Limousin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4237615366903, + 45.5727058749148 + ] + } + }, + { + "id": "5109", + "code": "35109", + "data": { + "gtfs": { + "stop_id": "5109", + "stop_code": "35109", + "stop_name": "de Gascogne et du Limousin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Gascogne et du Limousin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4240717345675, + 45.5726819093229 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3758292822206 + }, + "name": "de Gascogne et du Limousin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.423916636, + 45.572693892 + ] + }, + "is_frozen": false, + "integer_id": 1755, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.425717, + 45.574177 + ] + }, + "id": 1756, + "properties": { + "id": "25b68a02-d85c-4b7b-b822-bc26c51b07b7", + "code": "35102", + "data": { + "stops": [ + { + "id": "5102", + "code": "35102", + "data": { + "gtfs": { + "stop_id": "5102", + "stop_code": "35102", + "stop_name": "de Gascogne et d'Épinal", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Gascogne et d'Épinal", + "geography": { + "type": "Point", + "coordinates": [ + -73.4255614546025, + 45.5741841468099 + ] + } + }, + { + "id": "5108", + "code": "35108", + "data": { + "gtfs": { + "stop_id": "5108", + "stop_code": "35108", + "stop_name": "d'Épinal et de Gascogne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "d'Épinal et de Gascogne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4258723631833, + 45.5741690122461 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4009733156865 + }, + "name": "de Gascogne et d'Épinal", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.425716909, + 45.57417658 + ] + }, + "is_frozen": false, + "integer_id": 1756, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.427262, + 45.57467 + ] + }, + "id": 1757, + "properties": { + "id": "0a48a466-5f09-4ad5-911d-e79d40ef78d2", + "code": "35103", + "data": { + "stops": [ + { + "id": "5103", + "code": "35103", + "data": { + "gtfs": { + "stop_id": "5103", + "stop_code": "35103", + "stop_name": "d'Épinal et de Rouen", + "location_type": 0, + "parent_station": "" + } + }, + "name": "d'Épinal et de Rouen", + "geography": { + "type": "Point", + "coordinates": [ + -73.4271925897574, + 45.5745687873124 + ] + } + }, + { + "id": "5403", + "code": "30143", + "data": { + "gtfs": { + "stop_id": "5403", + "stop_code": "30143", + "stop_name": "de Rouen et de Lisieux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Rouen et de Lisieux", + "geography": { + "type": "Point", + "coordinates": [ + -73.4273323064145, + 45.5747717604282 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4093460179553 + }, + "name": "d'Épinal et de Rouen", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.427262448, + 45.574670274 + ] + }, + "is_frozen": false, + "integer_id": 1757, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.40416, + 45.480516 + ] + }, + "id": 1758, + "properties": { + "id": "d15a4dea-557a-47a7-943e-d1e1a44d1a5a", + "code": "35112", + "data": { + "stops": [ + { + "id": "5112", + "code": "35112", + "data": { + "gtfs": { + "stop_id": "5112", + "stop_code": "35112", + "stop_name": "Ovila-Hamel et des Pivoines", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ovila-Hamel et des Pivoines", + "geography": { + "type": "Point", + "coordinates": [ + -73.4041509945043, + 45.480390835491 + ] + } + }, + { + "id": "5114", + "code": "35114", + "data": { + "gtfs": { + "stop_id": "5114", + "stop_code": "35114", + "stop_name": "Ovila-Hamel et des Pivoines", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ovila-Hamel et des Pivoines", + "geography": { + "type": "Point", + "coordinates": [ + -73.4041694413487, + 45.4806419072722 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8164964879396 + }, + "name": "Ovila-Hamel et des Pivoines", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.404160218, + 45.480516371 + ] + }, + "is_frozen": false, + "integer_id": 1758, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441893, + 45.454908 + ] + }, + "id": 1759, + "properties": { + "id": "9e4bc046-2878-4cee-af77-934e179aa77f", + "code": "35116", + "data": { + "stops": [ + { + "id": "5116", + "code": "35116", + "data": { + "gtfs": { + "stop_id": "5116", + "stop_code": "35116", + "stop_name": "boul. Lapinière et boul. Chevrier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et boul. Chevrier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4418932521177, + 45.4549077232845 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3846267245356 + }, + "name": "boul. Lapinière et boul. Chevrier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441893252, + 45.454907723 + ] + }, + "is_frozen": false, + "integer_id": 1759, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450355, + 45.600769 + ] + }, + "id": 1760, + "properties": { + "id": "bbe875bc-cb85-4a61-923d-53ee4746a213", + "code": "35117", + "data": { + "stops": [ + { + "id": "5117", + "code": "35117", + "data": { + "gtfs": { + "stop_id": "5117", + "stop_code": "35117", + "stop_name": "TERMINUS DE MONTARVILLE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "TERMINUS DE MONTARVILLE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4503549968615, + 45.6007686545747 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.8522665994603 + }, + "name": "TERMINUS DE MONTARVILLE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450354997, + 45.600768655 + ] + }, + "is_frozen": false, + "integer_id": 1760, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440914, + 45.538585 + ] + }, + "id": 1761, + "properties": { + "id": "90aff802-7f58-4407-a26e-45f80682eeaf", + "code": "35121", + "data": { + "stops": [ + { + "id": "5121", + "code": "35121", + "data": { + "gtfs": { + "stop_id": "5121", + "stop_code": "35121", + "stop_name": "Belcourt et civique 3611", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et civique 3611", + "geography": { + "type": "Point", + "coordinates": [ + -73.4410015384797, + 45.5386675769603 + ] + } + }, + { + "id": "5831", + "code": "30600", + "data": { + "gtfs": { + "stop_id": "5831", + "stop_code": "30600", + "stop_name": "Belcourt et civique 3616", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Belcourt et civique 3616", + "geography": { + "type": "Point", + "coordinates": [ + -73.4408268373883, + 45.5385025904935 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7979403427676 + }, + "name": "Belcourt et civique 3611", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440914188, + 45.538585084 + ] + }, + "is_frozen": false, + "integer_id": 1761, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.421063, + 45.568593 + ] + }, + "id": 1762, + "properties": { + "id": "ff4a3e03-c804-4002-b3d4-f9bc873fc550", + "code": "35122", + "data": { + "stops": [ + { + "id": "5122", + "code": "35122", + "data": { + "gtfs": { + "stop_id": "5122", + "stop_code": "35122", + "stop_name": "Nobel et civique 1470", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et civique 1470", + "geography": { + "type": "Point", + "coordinates": [ + -73.4208881375739, + 45.5686636073645 + ] + } + }, + { + "id": "5123", + "code": "35123", + "data": { + "gtfs": { + "stop_id": "5123", + "stop_code": "35123", + "stop_name": "Nobel et civique 1470", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Nobel et civique 1470", + "geography": { + "type": "Point", + "coordinates": [ + -73.4212384152664, + 45.5685224820919 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3062956651286 + }, + "name": "Nobel et civique 1470", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.421063276, + 45.568593045 + ] + }, + "is_frozen": false, + "integer_id": 1762, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.421821, + 45.572167 + ] + }, + "id": 1763, + "properties": { + "id": "dba0b7ad-62f7-4b47-ac93-15546ef421d6", + "code": "35125", + "data": { + "stops": [ + { + "id": "5125", + "code": "35125", + "data": { + "gtfs": { + "stop_id": "5125", + "stop_code": "35125", + "stop_name": "de Gascogne et civique 357", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Gascogne et civique 357", + "geography": { + "type": "Point", + "coordinates": [ + -73.4216613286756, + 45.572234008296 + ] + } + }, + { + "id": "5127", + "code": "35127", + "data": { + "gtfs": { + "stop_id": "5127", + "stop_code": "35127", + "stop_name": "de Gascogne et civique 354", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Gascogne et civique 354", + "geography": { + "type": "Point", + "coordinates": [ + -73.4219815234486, + 45.5721009100975 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3669022874832 + }, + "name": "de Gascogne et civique 357", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.421821426, + 45.572167459 + ] + }, + "is_frozen": false, + "integer_id": 1763, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458503, + 45.540302 + ] + }, + "id": 1764, + "properties": { + "id": "6fd0bc88-4e0d-40ae-bdaa-413bd47146b0", + "code": "35128", + "data": { + "stops": [ + { + "id": "5128", + "code": "35128", + "data": { + "gtfs": { + "stop_id": "5128", + "stop_code": "35128", + "stop_name": "ch. Du Tremblay et civique 1250", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 1250", + "geography": { + "type": "Point", + "coordinates": [ + -73.4585026938715, + 45.5403018560841 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8270019537177 + }, + "name": "ch. Du Tremblay et civique 1250", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.458502694, + 45.540301856 + ] + }, + "is_frozen": false, + "integer_id": 1764, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.400194, + 45.476872 + ] + }, + "id": 1765, + "properties": { + "id": "69493295-4b3e-4f92-babc-7684f8cd988a", + "code": "35130", + "data": { + "stops": [ + { + "id": "5130", + "code": "35130", + "data": { + "gtfs": { + "stop_id": "5130", + "stop_code": "35130", + "stop_name": "boul. Julien-Bouthillier et des Oeillets", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Julien-Bouthillier et des Oeillets", + "geography": { + "type": "Point", + "coordinates": [ + -73.4001944093133, + 45.4768719728073 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7550010290734 + }, + "name": "boul. Julien-Bouthillier et des Oeillets", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.400194409, + 45.476871973 + ] + }, + "is_frozen": false, + "integer_id": 1765, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.438704, + 45.444663 + ] + }, + "id": 1766, + "properties": { + "id": "9a91df5e-7976-4b04-a1ed-26fb34f4f58f", + "code": "35137", + "data": { + "stops": [ + { + "id": "5137", + "code": "35137", + "data": { + "gtfs": { + "stop_id": "5137", + "stop_code": "35137", + "stop_name": "boul. du Quartier et SOCIÉTÉ DES ALCOOLS DU QUÉBEC", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et SOCIÉTÉ DES ALCOOLS DU QUÉBEC", + "geography": { + "type": "Point", + "coordinates": [ + -73.4387044544132, + 45.4446634785149 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2120285653639 + }, + "name": "boul. du Quartier et SOCIÉTÉ DES ALCOOLS DU QUÉBEC", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438704454, + 45.444663479 + ] + }, + "is_frozen": false, + "integer_id": 1766, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.401706, + 45.463363 + ] + }, + "id": 1767, + "properties": { + "id": "3950239b-5631-4d11-8c79-64fecfa361ca", + "code": "35139", + "data": { + "stops": [ + { + "id": "5139", + "code": "35139", + "data": { + "gtfs": { + "stop_id": "5139", + "stop_code": "35139", + "stop_name": "Armand-Frappier et civique 4800", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Armand-Frappier et civique 4800", + "geography": { + "type": "Point", + "coordinates": [ + -73.401705900905, + 45.463266083974 + ] + } + }, + { + "id": "5140", + "code": "35140", + "data": { + "gtfs": { + "stop_id": "5140", + "stop_code": "35140", + "stop_name": "Armand-Frappier et civique 4800", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Armand-Frappier et civique 4800", + "geography": { + "type": "Point", + "coordinates": [ + -73.4017055647853, + 45.4634595035972 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5271504811379 + }, + "name": "Armand-Frappier et civique 4800", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.401705733, + 45.463362794 + ] + }, + "is_frozen": false, + "integer_id": 1767, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.480429, + 45.565716 + ] + }, + "id": 1768, + "properties": { + "id": "84f7a7c0-b176-49cc-89e3-6756a3c3e4cc", + "code": "35142", + "data": { + "stops": [ + { + "id": "5142", + "code": "35142", + "data": { + "gtfs": { + "stop_id": "5142", + "stop_code": "35142", + "stop_name": "boul. Jean-Paul-Vincent et Passage piétonnier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jean-Paul-Vincent et Passage piétonnier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4804289005583, + 45.565716091194 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2575232461809 + }, + "name": "boul. Jean-Paul-Vincent et Passage piétonnier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.480428901, + 45.565716091 + ] + }, + "is_frozen": false, + "integer_id": 1768, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.420471, + 45.458693 + ] + }, + "id": 1769, + "properties": { + "id": "57b5655a-03f7-4fb9-a3a9-26c2523cb5bf", + "code": "35144", + "data": { + "stops": [ + { + "id": "5144", + "code": "35144", + "data": { + "gtfs": { + "stop_id": "5144", + "stop_code": "35144", + "stop_name": "boul. du Quartier et du Chardonneret", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et du Chardonneret", + "geography": { + "type": "Point", + "coordinates": [ + -73.4204708671905, + 45.4586926228603 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4484194297482 + }, + "name": "boul. du Quartier et du Chardonneret", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.420470867, + 45.458692623 + ] + }, + "is_frozen": false, + "integer_id": 1769, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455859, + 45.546224 + ] + }, + "id": 1770, + "properties": { + "id": "10018cb4-bab7-4531-9c02-bb0d227ab19c", + "code": "35155", + "data": { + "stops": [ + { + "id": "5155", + "code": "35155", + "data": { + "gtfs": { + "stop_id": "5155", + "stop_code": "35155", + "stop_name": "Joyal et boul. Jean-Paul-Vincent", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Joyal et boul. Jean-Paul-Vincent", + "geography": { + "type": "Point", + "coordinates": [ + -73.4558593044273, + 45.546224028411 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9272729886866 + }, + "name": "Joyal et boul. Jean-Paul-Vincent", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455859304, + 45.546224028 + ] + }, + "is_frozen": false, + "integer_id": 1770, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.377331, + 45.519836 + ] + }, + "id": 1771, + "properties": { + "id": "fc3ccf33-4026-4d4e-b0bc-03451e1ebb2d", + "code": "35156", + "data": { + "stops": [ + { + "id": "5156", + "code": "35156", + "data": { + "gtfs": { + "stop_id": "5156", + "stop_code": "35156", + "stop_name": "Graham-Bell et boul. Clairevue ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Graham-Bell et boul. Clairevue ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3772183708381, + 45.5200169959116 + ] + } + }, + { + "id": "5157", + "code": "35157", + "data": { + "gtfs": { + "stop_id": "5157", + "stop_code": "35157", + "stop_name": "Graham-Bell et boul. Clairevue ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Graham-Bell et boul. Clairevue ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3774445670967, + 45.5196548091939 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4807242546748 + }, + "name": "Graham-Bell et boul. Clairevue ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.377331469, + 45.519835903 + ] + }, + "is_frozen": false, + "integer_id": 1771, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.344046, + 45.513467 + ] + }, + "id": 1772, + "properties": { + "id": "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d", + "code": "35159", + "data": { + "stops": [ + { + "id": "5159", + "code": "35159", + "data": { + "gtfs": { + "stop_id": "5159", + "stop_code": "35159", + "stop_name": "boul. Sir-Wilfrid-Laurier - (116) ouest et boul. Seigneurial ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier - (116) ouest et boul. Seigneurial ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3443100029684, + 45.5137719946836 + ] + } + }, + { + "id": "5292", + "code": "30018", + "data": { + "gtfs": { + "stop_id": "5292", + "stop_code": "30018", + "stop_name": "boul. Seigneurial ouest et boul. Sir-Wilfrid-Laurier - (116) est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et boul. Sir-Wilfrid-Laurier - (116) est", + "geography": { + "type": "Point", + "coordinates": [ + -73.3437828524065, + 45.5131618096962 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3730388543197 + }, + "name": "boul. Sir-Wilfrid-Laurier - (116) ouest et boul. Seigneurial ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.344046428, + 45.513466902 + ] + }, + "is_frozen": false, + "integer_id": 1772, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.369628, + 45.531188 + ] + }, + "id": 1773, + "properties": { + "id": "1cb5ae0c-b01a-4888-87b4-f35cbbb956cf", + "code": "35160", + "data": { + "stops": [ + { + "id": "5160", + "code": "35160", + "data": { + "gtfs": { + "stop_id": "5160", + "stop_code": "35160", + "stop_name": "Parent et civique 1041", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Parent et civique 1041", + "geography": { + "type": "Point", + "coordinates": [ + -73.369627603228, + 45.5311875491478 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6727445308387 + }, + "name": "Parent et civique 1041", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.369627603, + 45.531187549 + ] + }, + "is_frozen": false, + "integer_id": 1773, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.369998, + 45.531176 + ] + }, + "id": 1774, + "properties": { + "id": "525aaea9-a48f-4335-b4bb-4f671d4d9a31", + "code": "35161", + "data": { + "stops": [ + { + "id": "5161", + "code": "35161", + "data": { + "gtfs": { + "stop_id": "5161", + "stop_code": "35161", + "stop_name": "Parent et civique 1041", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Parent et civique 1041", + "geography": { + "type": "Point", + "coordinates": [ + -73.3699976445673, + 45.5311761496902 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6725516519267 + }, + "name": "Parent et civique 1041", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.369997645, + 45.53117615 + ] + }, + "is_frozen": false, + "integer_id": 1774, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.322823, + 45.524234 + ] + }, + "id": 1775, + "properties": { + "id": "0893f164-19ee-46d7-888c-b2f0ceb4c706", + "code": "35166", + "data": { + "stops": [ + { + "id": "5166", + "code": "35166", + "data": { + "gtfs": { + "stop_id": "5166", + "stop_code": "35166", + "stop_name": "boul. De Boucherville et civique 1996", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et civique 1996", + "geography": { + "type": "Point", + "coordinates": [ + -73.3228230356489, + 45.5242335666124 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5550998967216 + }, + "name": "boul. De Boucherville et civique 1996", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.322823036, + 45.524233567 + ] + }, + "is_frozen": false, + "integer_id": 1775, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.326362, + 45.527152 + ] + }, + "id": 1776, + "properties": { + "id": "e3c142cf-278c-41ec-b9f5-dff43803109b", + "code": "35167", + "data": { + "stops": [ + { + "id": "5167", + "code": "35167", + "data": { + "gtfs": { + "stop_id": "5167", + "stop_code": "35167", + "stop_name": "boul. De Boucherville et civique 1834", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et civique 1834", + "geography": { + "type": "Point", + "coordinates": [ + -73.3263622596711, + 45.527151603523 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.60446080883 + }, + "name": "boul. De Boucherville et civique 1834", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.32636226, + 45.527151604 + ] + }, + "is_frozen": false, + "integer_id": 1776, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.333468, + 45.532127 + ] + }, + "id": 1777, + "properties": { + "id": "a6331a68-3ea7-48f7-8560-80cafa791eb3", + "code": "35168", + "data": { + "stops": [ + { + "id": "5168", + "code": "35168", + "data": { + "gtfs": { + "stop_id": "5168", + "stop_code": "35168", + "stop_name": "boul. De Boucherville et civique 1570", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et civique 1570", + "geography": { + "type": "Point", + "coordinates": [ + -73.3336825128369, + 45.532389839917 + ] + } + }, + { + "id": "5186", + "code": "35186", + "data": { + "gtfs": { + "stop_id": "5186", + "stop_code": "35186", + "stop_name": "boul. De Boucherville et civique 1591", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et civique 1591", + "geography": { + "type": "Point", + "coordinates": [ + -73.3332541817186, + 45.5318637844959 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6886379042106 + }, + "name": "boul. De Boucherville et civique 1570", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.333468347, + 45.532126812 + ] + }, + "is_frozen": false, + "integer_id": 1777, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.347554, + 45.523226 + ] + }, + "id": 1778, + "properties": { + "id": "9f66e075-701a-442d-9c89-3fee641e6ceb", + "code": "35174", + "data": { + "stops": [ + { + "id": "5174", + "code": "35174", + "data": { + "gtfs": { + "stop_id": "5174", + "stop_code": "35174", + "stop_name": "De Rigaud et Lansdowne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Rigaud et Lansdowne", + "geography": { + "type": "Point", + "coordinates": [ + -73.3474434580715, + 45.5232853269201 + ] + } + }, + { + "id": "5183", + "code": "35183", + "data": { + "gtfs": { + "stop_id": "5183", + "stop_code": "35183", + "stop_name": "De Rigaud et Lansdowne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Rigaud et Lansdowne", + "geography": { + "type": "Point", + "coordinates": [ + -73.3476649855683, + 45.5231672675131 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5380628870194 + }, + "name": "De Rigaud et Lansdowne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.347554222, + 45.523226297 + ] + }, + "is_frozen": false, + "integer_id": 1778, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.361223, + 45.52101 + ] + }, + "id": 1779, + "properties": { + "id": "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", + "code": "35177", + "data": { + "stops": [ + { + "id": "5177", + "code": "35177", + "data": { + "gtfs": { + "stop_id": "5177", + "stop_code": "35177", + "stop_name": "boul. Clairevue ouest et Hocquart", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et Hocquart", + "geography": { + "type": "Point", + "coordinates": [ + -73.3609673176514, + 45.5211311923869 + ] + } + }, + { + "id": "5181", + "code": "35181", + "data": { + "gtfs": { + "stop_id": "5181", + "stop_code": "35181", + "stop_name": "boul. Clairevue ouest et Hocquart", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et Hocquart", + "geography": { + "type": "Point", + "coordinates": [ + -73.3614784499765, + 45.5208882580897 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5005748732399 + }, + "name": "boul. Clairevue ouest et Hocquart", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.361222884, + 45.521009725 + ] + }, + "is_frozen": false, + "integer_id": 1779, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.365208, + 45.520782 + ] + }, + "id": 1780, + "properties": { + "id": "8a70da04-d6f7-409c-846d-927fd9f23d96", + "code": "35178", + "data": { + "stops": [ + { + "id": "5178", + "code": "35178", + "data": { + "gtfs": { + "stop_id": "5178", + "stop_code": "35178", + "stop_name": "boul. Clairevue ouest et civique 635", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et civique 635", + "geography": { + "type": "Point", + "coordinates": [ + -73.3652077185452, + 45.5207817682355 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4967197740788 + }, + "name": "boul. Clairevue ouest et civique 635", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.365207719, + 45.520781768 + ] + }, + "is_frozen": false, + "integer_id": 1780, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.366823, + 45.520539 + ] + }, + "id": 1781, + "properties": { + "id": "36c85e4a-3286-45d4-878d-41eda74eb078", + "code": "35179", + "data": { + "stops": [ + { + "id": "5179", + "code": "35179", + "data": { + "gtfs": { + "stop_id": "5179", + "stop_code": "35179", + "stop_name": "boul. Clairevue ouest et civique 711", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et civique 711", + "geography": { + "type": "Point", + "coordinates": [ + -73.3665746669201, + 45.5206748468979 + ] + } + }, + { + "id": "5180", + "code": "35180", + "data": { + "gtfs": { + "stop_id": "5180", + "stop_code": "35180", + "stop_name": "boul. Clairevue ouest et civique 650", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et civique 650", + "geography": { + "type": "Point", + "coordinates": [ + -73.3670720848466, + 45.5204041204587 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4926224343393 + }, + "name": "boul. Clairevue ouest et civique 711", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.366823376, + 45.520539484 + ] + }, + "is_frozen": false, + "integer_id": 1781, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.326565, + 45.527021 + ] + }, + "id": 1782, + "properties": { + "id": "02c05e36-6f59-42fd-b6c5-b158e3d119a0", + "code": "35188", + "data": { + "stops": [ + { + "id": "5188", + "code": "35188", + "data": { + "gtfs": { + "stop_id": "5188", + "stop_code": "35188", + "stop_name": "boul. De Boucherville et civique 1829", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et civique 1829", + "geography": { + "type": "Point", + "coordinates": [ + -73.3265649730933, + 45.5270208498818 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6022488387147 + }, + "name": "boul. De Boucherville et civique 1829", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.326564973, + 45.52702085 + ] + }, + "is_frozen": false, + "integer_id": 1782, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.323, + 45.524085 + ] + }, + "id": 1783, + "properties": { + "id": "7464372f-e710-4dc5-a76c-a68144e67289", + "code": "35189", + "data": { + "stops": [ + { + "id": "5189", + "code": "35189", + "data": { + "gtfs": { + "stop_id": "5189", + "stop_code": "35189", + "stop_name": "boul. De Boucherville et civique 1989", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et civique 1989", + "geography": { + "type": "Point", + "coordinates": [ + -73.323000423508, + 45.5240847471577 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.552582691679 + }, + "name": "boul. De Boucherville et civique 1989", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.323000424, + 45.524084747 + ] + }, + "is_frozen": false, + "integer_id": 1783, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.356068, + 45.54484 + ] + }, + "id": 1784, + "properties": { + "id": "cda3afce-794c-43b8-9347-1b384d64a116", + "code": "35191", + "data": { + "stops": [ + { + "id": "5191", + "code": "35191", + "data": { + "gtfs": { + "stop_id": "5191", + "stop_code": "35191", + "stop_name": "rang des Vingt-Cinq est et Thérèse-Casgrain", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rang des Vingt-Cinq est et Thérèse-Casgrain", + "geography": { + "type": "Point", + "coordinates": [ + -73.3560681832423, + 45.5448398096436 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9038333505258 + }, + "name": "rang des Vingt-Cinq est et Thérèse-Casgrain", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.356068183, + 45.54483981 + ] + }, + "is_frozen": false, + "integer_id": 1784, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.352702, + 45.535138 + ] + }, + "id": 1785, + "properties": { + "id": "d4b97f89-0d15-4037-9293-a46292a3b826", + "code": "35192", + "data": { + "stops": [ + { + "id": "5192", + "code": "35192", + "data": { + "gtfs": { + "stop_id": "5192", + "stop_code": "35192", + "stop_name": "Montarville et Noyan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et Noyan", + "geography": { + "type": "Point", + "coordinates": [ + -73.3529563006161, + 45.5352083061344 + ] + } + }, + { + "id": "5700", + "code": "30468", + "data": { + "gtfs": { + "stop_id": "5700", + "stop_code": "30468", + "stop_name": "Montarville et Noyan", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et Noyan", + "geography": { + "type": "Point", + "coordinates": [ + -73.3524477299565, + 45.5350675086904 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7395942798612 + }, + "name": "Montarville et Noyan", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.352702015, + 45.535137907 + ] + }, + "is_frozen": false, + "integer_id": 1785, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.340406, + 45.526153 + ] + }, + "id": 1786, + "properties": { + "id": "4451201f-23d0-4b66-a2ac-a72029810b3b", + "code": "35194", + "data": { + "stops": [ + { + "id": "5194", + "code": "35194", + "data": { + "gtfs": { + "stop_id": "5194", + "stop_code": "35194", + "stop_name": "Montarville et de l'Hôtel-de-Ville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et de l'Hôtel-de-Ville", + "geography": { + "type": "Point", + "coordinates": [ + -73.3404058333703, + 45.5261530846171 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5875692131974 + }, + "name": "Montarville et de l'Hôtel-de-Ville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.340405833, + 45.526153085 + ] + }, + "is_frozen": false, + "integer_id": 1786, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.340442, + 45.523536 + ] + }, + "id": 1787, + "properties": { + "id": "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", + "code": "35196", + "data": { + "stops": [ + { + "id": "5196", + "code": "35196", + "data": { + "gtfs": { + "stop_id": "5196", + "stop_code": "35196", + "stop_name": "boul. Seigneurial ouest et Roberval", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et Roberval", + "geography": { + "type": "Point", + "coordinates": [ + -73.3403208084336, + 45.5237537144271 + ] + } + }, + { + "id": "5205", + "code": "35205", + "data": { + "gtfs": { + "stop_id": "5205", + "stop_code": "35205", + "stop_name": "boul. Seigneurial ouest et Roberval", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Seigneurial ouest et Roberval", + "geography": { + "type": "Point", + "coordinates": [ + -73.3405625546715, + 45.5233182839552 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5433011041973 + }, + "name": "boul. Seigneurial ouest et Roberval", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.340441682, + 45.523535999 + ] + }, + "is_frozen": false, + "integer_id": 1787, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.380568, + 45.50765 + ] + }, + "id": 1788, + "properties": { + "id": "01e0bcb2-ac63-4c88-b110-c273905a1d5c", + "code": "35203", + "data": { + "stops": [ + { + "id": "5203", + "code": "35203", + "data": { + "gtfs": { + "stop_id": "5203", + "stop_code": "35203", + "stop_name": "Stationnement des Promenades et Sortie Yellow", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Stationnement des Promenades et Sortie Yellow", + "geography": { + "type": "Point", + "coordinates": [ + -73.3805675854144, + 45.507650280975 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2747245120739 + }, + "name": "Stationnement des Promenades et Sortie Yellow", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.380567585, + 45.507650281 + ] + }, + "is_frozen": false, + "integer_id": 1788, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.358799, + 45.519802 + ] + }, + "id": 1789, + "properties": { + "id": "9b7439c4-a8e6-4ce8-8c94-dcac4e29b500", + "code": "35206", + "data": { + "stops": [ + { + "id": "5206", + "code": "35206", + "data": { + "gtfs": { + "stop_id": "5206", + "stop_code": "35206", + "stop_name": "Hocquart et civique 1381", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Hocquart et civique 1381", + "geography": { + "type": "Point", + "coordinates": [ + -73.358799308872, + 45.5198023151717 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4801562627903 + }, + "name": "Hocquart et civique 1381", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.358799309, + 45.519802315 + ] + }, + "is_frozen": false, + "integer_id": 1789, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.356729, + 45.519029 + ] + }, + "id": 1790, + "properties": { + "id": "d58c68b9-bb4a-45d1-90ea-403c9b830625", + "code": "35207", + "data": { + "stops": [ + { + "id": "5207", + "code": "35207", + "data": { + "gtfs": { + "stop_id": "5207", + "stop_code": "35207", + "stop_name": "Hocquart et Sagard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Hocquart et Sagard", + "geography": { + "type": "Point", + "coordinates": [ + -73.3567293529746, + 45.5190288363376 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4670765779404 + }, + "name": "Hocquart et Sagard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.356729353, + 45.519028836 + ] + }, + "is_frozen": false, + "integer_id": 1790, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.354036, + 45.517434 + ] + }, + "id": 1791, + "properties": { + "id": "15f81e09-81b0-4df0-aa79-d4603e691ccd", + "code": "35208", + "data": { + "stops": [ + { + "id": "5208", + "code": "35208", + "data": { + "gtfs": { + "stop_id": "5208", + "stop_code": "35208", + "stop_name": "Hocquart et Marie-Victorin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Hocquart et Marie-Victorin", + "geography": { + "type": "Point", + "coordinates": [ + -73.3540364681546, + 45.5174342407063 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4401133390527 + }, + "name": "Hocquart et Marie-Victorin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.354036468, + 45.517434241 + ] + }, + "is_frozen": false, + "integer_id": 1791, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.381489, + 45.507962 + ] + }, + "id": 1792, + "properties": { + "id": "a6d38dbd-ef0c-4533-9d2c-7149d1941078", + "code": "35209", + "data": { + "stops": [ + { + "id": "5209", + "code": "35209", + "data": { + "gtfs": { + "stop_id": "5209", + "stop_code": "35209", + "stop_name": "boul. Saint-Bruno et de l'Étang", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Saint-Bruno et de l'Étang", + "geography": { + "type": "Point", + "coordinates": [ + -73.3814893537541, + 45.5079615201177 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2799844079178 + }, + "name": "boul. Saint-Bruno et de l'Étang", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.381489354, + 45.50796152 + ] + }, + "is_frozen": false, + "integer_id": 1792, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449901, + 45.578653 + ] + }, + "id": 1793, + "properties": { + "id": "5d689515-eb8c-46f5-b76c-9783188effbb", + "code": "35214", + "data": { + "stops": [ + { + "id": "5214", + "code": "35214", + "data": { + "gtfs": { + "stop_id": "5214", + "stop_code": "35214", + "stop_name": "boul. Industriel et civique 250", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Industriel et civique 250", + "geography": { + "type": "Point", + "coordinates": [ + -73.4498044433561, + 45.578566726149 + ] + } + }, + { + "id": "5215", + "code": "35215", + "data": { + "gtfs": { + "stop_id": "5215", + "stop_code": "35215", + "stop_name": "boul. Industriel et civique 250", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Industriel et civique 250", + "geography": { + "type": "Point", + "coordinates": [ + -73.449998461553, + 45.578738989411 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4768958059121 + }, + "name": "boul. Industriel et civique 250", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449901452, + 45.578652858 + ] + }, + "is_frozen": false, + "integer_id": 1793, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441651, + 45.527397 + ] + }, + "id": 1794, + "properties": { + "id": "e36c087c-d78e-48bb-9430-6af9d10493cf", + "code": "35216", + "data": { + "stops": [ + { + "id": "5216", + "code": "35216", + "data": { + "gtfs": { + "stop_id": "5216", + "stop_code": "35216", + "stop_name": "boul. Roberval est et civique 1252", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et civique 1252", + "geography": { + "type": "Point", + "coordinates": [ + -73.4415377587294, + 45.5272833891479 + ] + } + }, + { + "id": "5217", + "code": "35217", + "data": { + "gtfs": { + "stop_id": "5217", + "stop_code": "35217", + "stop_name": "boul. Roberval est et civique 1175", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et civique 1175", + "geography": { + "type": "Point", + "coordinates": [ + -73.4417651767709, + 45.5275105518317 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6086117153977 + }, + "name": "boul. Roberval est et civique 1252", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441651468, + 45.52739697 + ] + }, + "is_frozen": false, + "integer_id": 1794, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44093, + 45.529011 + ] + }, + "id": 1795, + "properties": { + "id": "de69f95c-e485-42da-bcac-5eeb8a8928ad", + "code": "35218", + "data": { + "stops": [ + { + "id": "5218", + "code": "35218", + "data": { + "gtfs": { + "stop_id": "5218", + "stop_code": "35218", + "stop_name": "boul. Roberval est et Boismenu", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et Boismenu", + "geography": { + "type": "Point", + "coordinates": [ + -73.4408216079009, + 45.5288940634692 + ] + } + }, + { + "id": "5219", + "code": "35219", + "data": { + "gtfs": { + "stop_id": "5219", + "stop_code": "35219", + "stop_name": "boul. Roberval est et Boismenu", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et Boismenu", + "geography": { + "type": "Point", + "coordinates": [ + -73.4410388797006, + 45.5291286243527 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6359237471055 + }, + "name": "boul. Roberval est et Boismenu", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440930244, + 45.529011344 + ] + }, + "is_frozen": false, + "integer_id": 1795, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440086, + 45.530895 + ] + }, + "id": 1796, + "properties": { + "id": "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", + "code": "35220", + "data": { + "stops": [ + { + "id": "5220", + "code": "35220", + "data": { + "gtfs": { + "stop_id": "5220", + "stop_code": "35220", + "stop_name": "boul. Roberval est et des Renards", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et des Renards", + "geography": { + "type": "Point", + "coordinates": [ + -73.4399802612776, + 45.5307635453203 + ] + } + }, + { + "id": "5221", + "code": "35221", + "data": { + "gtfs": { + "stop_id": "5221", + "stop_code": "35221", + "stop_name": "boul. Roberval est et de Bavière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et de Bavière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4401913876159, + 45.5310258186389 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6677890567258 + }, + "name": "boul. Roberval est et des Renards", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440085824, + 45.530894682 + ] + }, + "is_frozen": false, + "integer_id": 1796, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439361, + 45.53209 + ] + }, + "id": 1797, + "properties": { + "id": "0e37f239-15e7-41c5-a31a-ce2ad3dc4eae", + "code": "35222", + "data": { + "stops": [ + { + "id": "5222", + "code": "35222", + "data": { + "gtfs": { + "stop_id": "5222", + "stop_code": "35222", + "stop_name": "boul. Roberval est et civique 1600", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval est et civique 1600", + "geography": { + "type": "Point", + "coordinates": [ + -73.4393612204724, + 45.5320900510193 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6880158524626 + }, + "name": "boul. Roberval est et civique 1600", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.43936122, + 45.532090051 + ] + }, + "is_frozen": false, + "integer_id": 1797, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439493, + 45.532997 + ] + }, + "id": 1798, + "properties": { + "id": "2dda318d-8bf9-4860-b60d-6fcb1dd29156", + "code": "35223", + "data": { + "stops": [ + { + "id": "5223", + "code": "35223", + "data": { + "gtfs": { + "stop_id": "5223", + "stop_code": "35223", + "stop_name": "boul. Béliveau et boul. Roberval est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et boul. Roberval est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4394746605677, + 45.5328654974109 + ] + } + }, + { + "id": "5563", + "code": "30311", + "data": { + "gtfs": { + "stop_id": "5563", + "stop_code": "30311", + "stop_name": "boul. Béliveau et boul. Roberval est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et boul. Roberval est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4395121234587, + 45.5331290852897 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7033680782165 + }, + "name": "boul. Béliveau et boul. Roberval est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439493392, + 45.532997291 + ] + }, + "is_frozen": false, + "integer_id": 1798, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440975, + 45.533365 + ] + }, + "id": 1799, + "properties": { + "id": "576ef8c5-693c-4ae9-bb41-68685f43e174", + "code": "35224", + "data": { + "stops": [ + { + "id": "5224", + "code": "35224", + "data": { + "gtfs": { + "stop_id": "5224", + "stop_code": "35224", + "stop_name": "boul. Béliveau et du Bordelais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et du Bordelais", + "geography": { + "type": "Point", + "coordinates": [ + -73.4407952059855, + 45.5334354298432 + ] + } + }, + { + "id": "5225", + "code": "35225", + "data": { + "gtfs": { + "stop_id": "5225", + "stop_code": "35225", + "stop_name": "boul. Béliveau et du Bordelais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Béliveau et du Bordelais", + "geography": { + "type": "Point", + "coordinates": [ + -73.4411548057192, + 45.5332946154975 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.709591011866 + }, + "name": "boul. Béliveau et du Bordelais", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440975006, + 45.533365023 + ] + }, + "is_frozen": false, + "integer_id": 1799, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.425783, + 45.57135 + ] + }, + "id": 1800, + "properties": { + "id": "08debed2-a767-4e18-9342-678b9ff106e2", + "code": "35226", + "data": { + "stops": [ + { + "id": "5226", + "code": "35226", + "data": { + "gtfs": { + "stop_id": "5226", + "stop_code": "35226", + "stop_name": "Gay-Lussac et civique 1375", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gay-Lussac et civique 1375", + "geography": { + "type": "Point", + "coordinates": [ + -73.4255070807711, + 45.5713614805328 + ] + } + }, + { + "id": "5227", + "code": "35227", + "data": { + "gtfs": { + "stop_id": "5227", + "stop_code": "35227", + "stop_name": "Gay-Lussac et civique 1380", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gay-Lussac et civique 1380", + "geography": { + "type": "Point", + "coordinates": [ + -73.426059375583, + 45.5713378696131 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3530351955699 + }, + "name": "Gay-Lussac et civique 1375", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.425783228, + 45.571349675 + ] + }, + "is_frozen": false, + "integer_id": 1800, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.433992, + 45.450594 + ] + }, + "id": 1801, + "properties": { + "id": "27e1da8c-287d-4c6b-9905-9c8c3d07097d", + "code": "35229", + "data": { + "stops": [ + { + "id": "5229", + "code": "35229", + "data": { + "gtfs": { + "stop_id": "5229", + "stop_code": "35229", + "stop_name": "boul. Lapinière et civique 4805", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et civique 4805", + "geography": { + "type": "Point", + "coordinates": [ + -73.4341498753525, + 45.4505183256356 + ] + } + }, + { + "id": "5230", + "code": "35230", + "data": { + "gtfs": { + "stop_id": "5230", + "stop_code": "35230", + "stop_name": "boul. Lapinière et civique 4805", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et civique 4805", + "geography": { + "type": "Point", + "coordinates": [ + -73.4338343359672, + 45.4506689061879 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3119299839384 + }, + "name": "boul. Lapinière et civique 4805", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.433992106, + 45.450593616 + ] + }, + "is_frozen": false, + "integer_id": 1801, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460882, + 45.561423 + ] + }, + "id": 1802, + "properties": { + "id": "fe1423a8-e632-40f2-9b1e-93314e069a43", + "code": "35234", + "data": { + "stops": [ + { + "id": "5234", + "code": "35234", + "data": { + "gtfs": { + "stop_id": "5234", + "stop_code": "35234", + "stop_name": "boul. Fernand-Lafontaine et ch. du Lac", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et ch. du Lac", + "geography": { + "type": "Point", + "coordinates": [ + -73.4608822974192, + 45.5614232530938 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1847613837715 + }, + "name": "boul. Fernand-Lafontaine et ch. du Lac", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.460882297, + 45.561423253 + ] + }, + "is_frozen": false, + "integer_id": 1802, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.471079, + 45.569279 + ] + }, + "id": 1803, + "properties": { + "id": "41fd6b6d-a514-49a6-acf5-1a39152b0c5f", + "code": "35236", + "data": { + "stops": [ + { + "id": "5236", + "code": "35236", + "data": { + "gtfs": { + "stop_id": "5236", + "stop_code": "35236", + "stop_name": "boul. Guimond et Garneau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Guimond et Garneau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4712852621303, + 45.5693258582722 + ] + } + }, + { + "id": "5256", + "code": "35256", + "data": { + "gtfs": { + "stop_id": "5256", + "stop_code": "35256", + "stop_name": "boul. Guimond et Garneau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Guimond et Garneau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4708720674761, + 45.5692319857132 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3179242910829 + }, + "name": "boul. Guimond et Garneau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.471078665, + 45.569278922 + ] + }, + "is_frozen": false, + "integer_id": 1803, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465735, + 45.565159 + ] + }, + "id": 1804, + "properties": { + "id": "efdd0b14-8e79-4a0f-85cb-f5ec3d032eec", + "code": "35238", + "data": { + "stops": [ + { + "id": "5238", + "code": "35238", + "data": { + "gtfs": { + "stop_id": "5238", + "stop_code": "35238", + "stop_name": "boul. Guimond et civique 770", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Guimond et civique 770", + "geography": { + "type": "Point", + "coordinates": [ + -73.4658009291323, + 45.5650946809405 + ] + } + }, + { + "id": "5254", + "code": "35254", + "data": { + "gtfs": { + "stop_id": "5254", + "stop_code": "35254", + "stop_name": "boul. Guimond et civique 785", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Guimond et civique 785", + "geography": { + "type": "Point", + "coordinates": [ + -73.4656692267468, + 45.5652231250202 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2480782057496 + }, + "name": "boul. Guimond et civique 770", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465735078, + 45.565158903 + ] + }, + "is_frozen": false, + "integer_id": 1804, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.463779, + 45.563639 + ] + }, + "id": 1805, + "properties": { + "id": "a09356f2-d06c-43dd-b67b-b970ca63de4c", + "code": "35241", + "data": { + "stops": [ + { + "id": "5241", + "code": "35241", + "data": { + "gtfs": { + "stop_id": "5241", + "stop_code": "35241", + "stop_name": "boul. Guimond et Hérelle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Guimond et Hérelle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4640186070098, + 45.5637124843891 + ] + } + }, + { + "id": "5289", + "code": "35289", + "data": { + "gtfs": { + "stop_id": "5289", + "stop_code": "35289", + "stop_name": "boul. Guimond et Hérelle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Guimond et Hérelle", + "geography": { + "type": "Point", + "coordinates": [ + -73.463539207875, + 45.5635656046445 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2223161031659 + }, + "name": "boul. Guimond et Hérelle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.463778907, + 45.563639045 + ] + }, + "is_frozen": false, + "integer_id": 1805, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.46229, + 45.562524 + ] + }, + "id": 1806, + "properties": { + "id": "9ce474bd-b957-414c-a2bb-a8fbae6720a2", + "code": "35242", + "data": { + "stops": [ + { + "id": "5242", + "code": "35242", + "data": { + "gtfs": { + "stop_id": "5242", + "stop_code": "35242", + "stop_name": "boul. Guimond et Hérelle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Guimond et Hérelle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4624853723064, + 45.5625452562286 + ] + } + }, + { + "id": "5253", + "code": "35253", + "data": { + "gtfs": { + "stop_id": "5253", + "stop_code": "35253", + "stop_name": "boul. Guimond et Hérelle", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Guimond et Hérelle", + "geography": { + "type": "Point", + "coordinates": [ + -73.4620947954946, + 45.5625026083592 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2034158766656 + }, + "name": "boul. Guimond et Hérelle", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.462290084, + 45.562523932 + ] + }, + "is_frozen": false, + "integer_id": 1806, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455895, + 45.561695 + ] + }, + "id": 1807, + "properties": { + "id": "0bacad01-6fc4-40da-8f15-64bf9bb6a474", + "code": "35243", + "data": { + "stops": [ + { + "id": "5243", + "code": "35243", + "data": { + "gtfs": { + "stop_id": "5243", + "stop_code": "35243", + "stop_name": "boul. Fernand-Lafontaine et civique 2405", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et civique 2405", + "geography": { + "type": "Point", + "coordinates": [ + -73.4558951400035, + 45.5616947501986 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1893626600518 + }, + "name": "boul. Fernand-Lafontaine et civique 2405", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45589514, + 45.56169475 + ] + }, + "is_frozen": false, + "integer_id": 1807, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450792, + 45.56183 + ] + }, + "id": 1808, + "properties": { + "id": "f52f270d-1079-4b27-a78b-f9321a1c3b1f", + "code": "35244", + "data": { + "stops": [ + { + "id": "5244", + "code": "35244", + "data": { + "gtfs": { + "stop_id": "5244", + "stop_code": "35244", + "stop_name": "boul. Fernand-Lafontaine et boul. Jacques-Cartier est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et boul. Jacques-Cartier est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4507915021443, + 45.561830280029 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.191659619739 + }, + "name": "boul. Fernand-Lafontaine et boul. Jacques-Cartier est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450791502, + 45.56183028 + ] + }, + "is_frozen": false, + "integer_id": 1808, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45018, + 45.56359 + ] + }, + "id": 1809, + "properties": { + "id": "bf606954-197a-4c94-b8d0-fda71ab755ca", + "code": "35245", + "data": { + "stops": [ + { + "id": "5245", + "code": "35245", + "data": { + "gtfs": { + "stop_id": "5245", + "stop_code": "35245", + "stop_name": "boul. Jacques-Cartier est et civique 2676", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et civique 2676", + "geography": { + "type": "Point", + "coordinates": [ + -73.450180242486, + 45.5635895091992 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2214764860918 + }, + "name": "boul. Jacques-Cartier est et civique 2676", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450180242, + 45.563589509 + ] + }, + "is_frozen": false, + "integer_id": 1809, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45011, + 45.565328 + ] + }, + "id": 1810, + "properties": { + "id": "804d8b1f-4ada-4e34-bf79-888a34e590ac", + "code": "35246", + "data": { + "stops": [ + { + "id": "5246", + "code": "35246", + "data": { + "gtfs": { + "stop_id": "5246", + "stop_code": "35246", + "stop_name": "boul. Jacques-Cartier est et civique 2700", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et civique 2700", + "geography": { + "type": "Point", + "coordinates": [ + -73.4501099530612, + 45.5653283893077 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2509511781835 + }, + "name": "boul. Jacques-Cartier est et civique 2700", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450109953, + 45.565328389 + ] + }, + "is_frozen": false, + "integer_id": 1810, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.405459, + 45.567999 + ] + }, + "id": 1811, + "properties": { + "id": "bd49edea-1c3c-4a69-a5c6-0057e6bf7cb0", + "code": "35248", + "data": { + "stops": [ + { + "id": "5248", + "code": "35248", + "data": { + "gtfs": { + "stop_id": "5248", + "stop_code": "35248", + "stop_name": "Eiffel et civique 1560", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Eiffel et civique 1560", + "geography": { + "type": "Point", + "coordinates": [ + -73.4054586639491, + 45.5679987643783 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2962203334306 + }, + "name": "Eiffel et civique 1560", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.405458664, + 45.567998764 + ] + }, + "is_frozen": false, + "integer_id": 1811, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.401132, + 45.569609 + ] + }, + "id": 1812, + "properties": { + "id": "3ec963de-e577-4386-969b-85a9eb8b7aaf", + "code": "35249", + "data": { + "stops": [ + { + "id": "5249", + "code": "35249", + "data": { + "gtfs": { + "stop_id": "5249", + "stop_code": "35249", + "stop_name": "Eiffel et civique 1600", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Eiffel et civique 1600", + "geography": { + "type": "Point", + "coordinates": [ + -73.401131578922, + 45.5696087352573 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3235162189231 + }, + "name": "Eiffel et civique 1600", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.401131579, + 45.569608735 + ] + }, + "is_frozen": false, + "integer_id": 1812, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450524, + 45.565562 + ] + }, + "id": 1813, + "properties": { + "id": "911acdc7-e82a-4bb1-aecd-7f8fbf39cc16", + "code": "35250", + "data": { + "stops": [ + { + "id": "5250", + "code": "35250", + "data": { + "gtfs": { + "stop_id": "5250", + "stop_code": "35250", + "stop_name": "boul. Jacques-Cartier est et civique 2727", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et civique 2727", + "geography": { + "type": "Point", + "coordinates": [ + -73.450524244074, + 45.5655621517787 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2549137579426 + }, + "name": "boul. Jacques-Cartier est et civique 2727", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450524244, + 45.565562152 + ] + }, + "is_frozen": false, + "integer_id": 1813, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45063, + 45.563062 + ] + }, + "id": 1814, + "properties": { + "id": "50e25e6e-b3a0-49ca-b0a6-22261b688cbf", + "code": "35251", + "data": { + "stops": [ + { + "id": "5251", + "code": "35251", + "data": { + "gtfs": { + "stop_id": "5251", + "stop_code": "35251", + "stop_name": "boul. Jacques-Cartier est et boul. Fernand-Lafontaine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et boul. Fernand-Lafontaine", + "geography": { + "type": "Point", + "coordinates": [ + -73.4506300509245, + 45.5630622769758 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2125402324588 + }, + "name": "boul. Jacques-Cartier est et boul. Fernand-Lafontaine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450630051, + 45.563062277 + ] + }, + "is_frozen": false, + "integer_id": 1814, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455958, + 45.561814 + ] + }, + "id": 1815, + "properties": { + "id": "767c22ba-e4bc-43df-94bc-025afee14810", + "code": "35252", + "data": { + "stops": [ + { + "id": "5252", + "code": "35252", + "data": { + "gtfs": { + "stop_id": "5252", + "stop_code": "35252", + "stop_name": "boul. Fernand-Lafontaine et civique 2405", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Fernand-Lafontaine et civique 2405", + "geography": { + "type": "Point", + "coordinates": [ + -73.4559584054428, + 45.5618143184193 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1913890952347 + }, + "name": "boul. Fernand-Lafontaine et civique 2405", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455958405, + 45.561814318 + ] + }, + "is_frozen": false, + "integer_id": 1815, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475818, + 45.573021 + ] + }, + "id": 1816, + "properties": { + "id": "fb348def-00b5-4574-9848-5f275a3fa42d", + "code": "35258", + "data": { + "stops": [ + { + "id": "5258", + "code": "35258", + "data": { + "gtfs": { + "stop_id": "5258", + "stop_code": "35258", + "stop_name": "boul. Guimond et Limoges", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Guimond et Limoges", + "geography": { + "type": "Point", + "coordinates": [ + -73.4758179735616, + 45.5730206119929 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3813697656491 + }, + "name": "boul. Guimond et Limoges", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475817974, + 45.573020612 + ] + }, + "is_frozen": false, + "integer_id": 1816, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44015, + 45.562459 + ] + }, + "id": 1817, + "properties": { + "id": "bdfd6a86-57e8-4208-bd34-2b30f1846e4b", + "code": "35259", + "data": { + "stops": [ + { + "id": "5259", + "code": "35259", + "data": { + "gtfs": { + "stop_id": "5259", + "stop_code": "35259", + "stop_name": "Volta et civique 1340", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Volta et civique 1340", + "geography": { + "type": "Point", + "coordinates": [ + -73.4402591786919, + 45.562438207195 + ] + } + }, + { + "id": "5260", + "code": "35260", + "data": { + "gtfs": { + "stop_id": "5260", + "stop_code": "35260", + "stop_name": "Volta et civique 1340", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Volta et civique 1340", + "geography": { + "type": "Point", + "coordinates": [ + -73.44004053256, + 45.5624797882339 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2023153342653 + }, + "name": "Volta et civique 1340", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440149856, + 45.562458998 + ] + }, + "is_frozen": false, + "integer_id": 1817, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439059, + 45.560911 + ] + }, + "id": 1818, + "properties": { + "id": "891bcf48-145c-4536-a871-eba463dca9a2", + "code": "35261", + "data": { + "stops": [ + { + "id": "5261", + "code": "35261", + "data": { + "gtfs": { + "stop_id": "5261", + "stop_code": "35261", + "stop_name": "Volta et De Coulomb", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Volta et De Coulomb", + "geography": { + "type": "Point", + "coordinates": [ + -73.4390591639634, + 45.5609113284032 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1760855614818 + }, + "name": "Volta et De Coulomb", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439059164, + 45.560911328 + ] + }, + "is_frozen": false, + "integer_id": 1818, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437746, + 45.560466 + ] + }, + "id": 1819, + "properties": { + "id": "288f625b-dae5-465b-9986-818da198e5d5", + "code": "35262", + "data": { + "stops": [ + { + "id": "5262", + "code": "35262", + "data": { + "gtfs": { + "stop_id": "5262", + "stop_code": "35262", + "stop_name": "De Coulomb et civique 1385", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Coulomb et civique 1385", + "geography": { + "type": "Point", + "coordinates": [ + -73.4377460167636, + 45.5604655354897 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1685306985179 + }, + "name": "De Coulomb et civique 1385", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437746017, + 45.560465535 + ] + }, + "is_frozen": false, + "integer_id": 1819, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.435716, + 45.559953 + ] + }, + "id": 1820, + "properties": { + "id": "5406ad55-4f73-400c-be4e-2a11bd2e7e9a", + "code": "35263", + "data": { + "stops": [ + { + "id": "5263", + "code": "35263", + "data": { + "gtfs": { + "stop_id": "5263", + "stop_code": "35263", + "stop_name": "De Coulomb et Joliot-Curie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Coulomb et Joliot-Curie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4361698644796, + 45.5599777052172 + ] + } + }, + { + "id": "5279", + "code": "35279", + "data": { + "gtfs": { + "stop_id": "5279", + "stop_code": "35279", + "stop_name": "De Coulomb et Joliot-Curie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Coulomb et Joliot-Curie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4352612731698, + 45.5599275860721 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1598389779026 + }, + "name": "De Coulomb et Joliot-Curie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.435715569, + 45.559952646 + ] + }, + "is_frozen": false, + "integer_id": 1820, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.431489, + 45.559049 + ] + }, + "id": 1821, + "properties": { + "id": "ca8a495a-977a-4942-bdad-b75787da5697", + "code": "35264", + "data": { + "stops": [ + { + "id": "5264", + "code": "35264", + "data": { + "gtfs": { + "stop_id": "5264", + "stop_code": "35264", + "stop_name": "De Coulomb et Joliot-Curie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Coulomb et Joliot-Curie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4316449133473, + 45.5590068711526 + ] + } + }, + { + "id": "5278", + "code": "35278", + "data": { + "gtfs": { + "stop_id": "5278", + "stop_code": "35278", + "stop_name": "De Coulomb et Joliot-Curie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Coulomb et Joliot-Curie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4313331574675, + 45.5590903381666 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1445191360525 + }, + "name": "De Coulomb et Joliot-Curie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431489035, + 45.559048605 + ] + }, + "is_frozen": false, + "integer_id": 1821, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.426488, + 45.556426 + ] + }, + "id": 1822, + "properties": { + "id": "eba2d290-ee5d-4bce-bdc1-d2b8c52db23b", + "code": "35266", + "data": { + "stops": [ + { + "id": "5266", + "code": "35266", + "data": { + "gtfs": { + "stop_id": "5266", + "stop_code": "35266", + "stop_name": "De Coulomb et De Montgolfier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Coulomb et De Montgolfier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4267941349807, + 45.5565343844362 + ] + } + }, + { + "id": "5276", + "code": "35276", + "data": { + "gtfs": { + "stop_id": "5276", + "stop_code": "35276", + "stop_name": "De Coulomb et De Montgolfier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Coulomb et De Montgolfier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4261822552205, + 45.5563169658787 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1000752028166 + }, + "name": "De Coulomb et De Montgolfier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.426488195, + 45.556425675 + ] + }, + "is_frozen": false, + "integer_id": 1822, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.424053, + 45.554591 + ] + }, + "id": 1823, + "properties": { + "id": "2bc51500-8df7-434b-a2d7-e073aed7d6fc", + "code": "35267", + "data": { + "stops": [ + { + "id": "5267", + "code": "35267", + "data": { + "gtfs": { + "stop_id": "5267", + "stop_code": "35267", + "stop_name": "De Coulomb et De Montgolfier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Coulomb et De Montgolfier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4242818603226, + 45.5545487165581 + ] + } + }, + { + "id": "5275", + "code": "35275", + "data": { + "gtfs": { + "stop_id": "5275", + "stop_code": "35275", + "stop_name": "J.-A.-Bombardier et De Coulomb", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et De Coulomb", + "geography": { + "type": "Point", + "coordinates": [ + -73.4238245248929, + 45.5546326001611 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0689856228896 + }, + "name": "De Coulomb et De Montgolfier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.424053193, + 45.554590658 + ] + }, + "is_frozen": false, + "integer_id": 1823, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.421667, + 45.555895 + ] + }, + "id": 1824, + "properties": { + "id": "9d7899a8-defc-4e0a-81af-a591f5887bd8", + "code": "35268", + "data": { + "stops": [ + { + "id": "5268", + "code": "35268", + "data": { + "gtfs": { + "stop_id": "5268", + "stop_code": "35268", + "stop_name": "J.-A.-Bombardier et civique 95", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et civique 95", + "geography": { + "type": "Point", + "coordinates": [ + -73.4217008743359, + 45.5557848775851 + ] + } + }, + { + "id": "5274", + "code": "35274", + "data": { + "gtfs": { + "stop_id": "5274", + "stop_code": "35274", + "stop_name": "J.-A.-Bombardier et civique 90", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et civique 90", + "geography": { + "type": "Point", + "coordinates": [ + -73.4216326570785, + 45.556005375788 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0910861408593 + }, + "name": "J.-A.-Bombardier et civique 95", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.421666766, + 45.555895127 + ] + }, + "is_frozen": false, + "integer_id": 1824, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.418478, + 45.557886 + ] + }, + "id": 1825, + "properties": { + "id": "d3be8a5e-1a82-4082-9319-940ad42306fa", + "code": "35269", + "data": { + "stops": [ + { + "id": "5269", + "code": "35269", + "data": { + "gtfs": { + "stop_id": "5269", + "stop_code": "35269", + "stop_name": "J.-A.-Bombardier et civique 145", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et civique 145", + "geography": { + "type": "Point", + "coordinates": [ + -73.4183848567452, + 45.5578523173004 + ] + } + }, + { + "id": "5273", + "code": "35273", + "data": { + "gtfs": { + "stop_id": "5273", + "stop_code": "35273", + "stop_name": "J.-A.-Bombardier et civique 145", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et civique 145", + "geography": { + "type": "Point", + "coordinates": [ + -73.4185704082326, + 45.5579202765309 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1248237847905 + }, + "name": "J.-A.-Bombardier et civique 145", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.418477632, + 45.557886297 + ] + }, + "is_frozen": false, + "integer_id": 1825, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.411807, + 45.561566 + ] + }, + "id": 1826, + "properties": { + "id": "d41fd5d6-e4c4-4145-9ae3-6c1c4eaf93df", + "code": "35270", + "data": { + "stops": [ + { + "id": "5270", + "code": "35270", + "data": { + "gtfs": { + "stop_id": "5270", + "stop_code": "35270", + "stop_name": "J.-A.-Bombardier et Louis-Blériot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et Louis-Blériot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4119603694368, + 45.5613991369801 + ] + } + }, + { + "id": "5272", + "code": "35272", + "data": { + "gtfs": { + "stop_id": "5272", + "stop_code": "35272", + "stop_name": "J.-A.-Bombardier et Louis-Blériot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et Louis-Blériot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4116534019411, + 45.5617325853562 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1871782671209 + }, + "name": "J.-A.-Bombardier et Louis-Blériot", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.411806886, + 45.561565861 + ] + }, + "is_frozen": false, + "integer_id": 1826, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.43586, + 45.462043 + ] + }, + "id": 1827, + "properties": { + "id": "1a929515-9cf9-46e2-a23e-d4a14e85a95d", + "code": "35281", + "data": { + "stops": [ + { + "id": "5281", + "code": "35281", + "data": { + "gtfs": { + "stop_id": "5281", + "stop_code": "35281", + "stop_name": "boul. Chevrier et Christophe", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Chevrier et Christophe", + "geography": { + "type": "Point", + "coordinates": [ + -73.435883334293, + 45.4621770314862 + ] + } + }, + { + "id": "5286", + "code": "35286", + "data": { + "gtfs": { + "stop_id": "5286", + "stop_code": "35286", + "stop_name": "boul. Chevrier et Christophe", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Chevrier et Christophe", + "geography": { + "type": "Point", + "coordinates": [ + -73.4358370698373, + 45.4619098401856 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.504906412333 + }, + "name": "boul. Chevrier et Christophe", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.435860202, + 45.462043436 + ] + }, + "is_frozen": false, + "integer_id": 1827, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437619, + 45.460218 + ] + }, + "id": 1828, + "properties": { + "id": "eeae68ef-a789-47cd-b1a9-a6fc5c2bb689", + "code": "35282", + "data": { + "stops": [ + { + "id": "5282", + "code": "35282", + "data": { + "gtfs": { + "stop_id": "5282", + "stop_code": "35282", + "stop_name": "boul. Chevrier et Chopin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Chevrier et Chopin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4376490557059, + 45.4603762553084 + ] + } + }, + { + "id": "5285", + "code": "35285", + "data": { + "gtfs": { + "stop_id": "5285", + "stop_code": "35285", + "stop_name": "boul. Chevrier et Chopin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Chevrier et Chopin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4375887865885, + 45.4600592565984 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4741284206659 + }, + "name": "boul. Chevrier et Chopin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437618921, + 45.460217756 + ] + }, + "is_frozen": false, + "integer_id": 1828, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441529, + 45.456841 + ] + }, + "id": 1829, + "properties": { + "id": "1f87e3a1-2127-4357-9fd4-016c6c31e011", + "code": "35283", + "data": { + "stops": [ + { + "id": "5283", + "code": "35283", + "data": { + "gtfs": { + "stop_id": "5283", + "stop_code": "35283", + "stop_name": "boul. Chevrier et av. Cousin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Chevrier et av. Cousin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4415388370335, + 45.4570227777788 + ] + } + }, + { + "id": "5284", + "code": "35284", + "data": { + "gtfs": { + "stop_id": "5284", + "stop_code": "35284", + "stop_name": "boul. Chevrier et av. Cousin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Chevrier et av. Cousin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4415194130058, + 45.4566584517267 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4172031198299 + }, + "name": "boul. Chevrier et av. Cousin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441529125, + 45.456840615 + ] + }, + "is_frozen": false, + "integer_id": 1829, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.436581, + 45.451382 + ] + }, + "id": 1830, + "properties": { + "id": "9fe6df14-62d0-4a44-8e19-85300b42de89", + "code": "35290", + "data": { + "stops": [ + { + "id": "5290", + "code": "35290", + "data": { + "gtfs": { + "stop_id": "5290", + "stop_code": "35290", + "stop_name": "boul. Lapinière et CIVIQUE 4605", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et CIVIQUE 4605", + "geography": { + "type": "Point", + "coordinates": [ + -73.436580781832, + 45.4513821645068 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3252165395787 + }, + "name": "boul. Lapinière et CIVIQUE 4605", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.436580782, + 45.451382165 + ] + }, + "is_frozen": false, + "integer_id": 1830, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437269, + 45.45146 + ] + }, + "id": 1831, + "properties": { + "id": "fdc86629-6768-46ce-9ee0-1d935d00516c", + "code": "35291", + "data": { + "stops": [ + { + "id": "5291", + "code": "35291", + "data": { + "gtfs": { + "stop_id": "5291", + "stop_code": "35291", + "stop_name": "boul. Lapinière et civique 4605", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et civique 4605", + "geography": { + "type": "Point", + "coordinates": [ + -73.4372694445897, + 45.4514598518957 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3265255466057 + }, + "name": "boul. Lapinière et civique 4605", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437269445, + 45.451459852 + ] + }, + "is_frozen": false, + "integer_id": 1831, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.472132, + 45.559415 + ] + }, + "id": 1832, + "properties": { + "id": "9f5e5ee3-42e0-4ee9-9cdb-c35f8f1ab271", + "code": "30019", + "data": { + "stops": [ + { + "id": "5293", + "code": "30019", + "data": { + "gtfs": { + "stop_id": "5293", + "stop_code": "30019", + "stop_name": "boul. Jean-Paul-Vincent et civique 877", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jean-Paul-Vincent et civique 877", + "geography": { + "type": "Point", + "coordinates": [ + -73.4721315056675, + 45.5594148177035 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1507248786229 + }, + "name": "boul. Jean-Paul-Vincent et civique 877", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472131506, + 45.559414818 + ] + }, + "is_frozen": false, + "integer_id": 1832, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456349, + 45.505913 + ] + }, + "id": 1833, + "properties": { + "id": "a2cddc2b-b7ec-4035-951f-7045ea83427b", + "code": "30020", + "data": { + "stops": [ + { + "id": "5294", + "code": "30020", + "data": { + "gtfs": { + "stop_id": "5294", + "stop_code": "30020", + "stop_name": "boul. Sir-Wilfrid-Laurier et civique 3400", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier et civique 3400", + "geography": { + "type": "Point", + "coordinates": [ + -73.4563490179495, + 45.5059125674435 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2453589717685 + }, + "name": "boul. Sir-Wilfrid-Laurier et civique 3400", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456349018, + 45.505912567 + ] + }, + "is_frozen": false, + "integer_id": 1833, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.387109, + 45.484379 + ] + }, + "id": 1834, + "properties": { + "id": "897e999c-9046-44e1-af66-78d190574a64", + "code": "35299", + "data": { + "stops": [ + { + "id": "5299", + "code": "35299", + "data": { + "gtfs": { + "stop_id": "5299", + "stop_code": "35299", + "stop_name": "boul. Moïse-Vincent et civique 2975", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Moïse-Vincent et civique 2975", + "geography": { + "type": "Point", + "coordinates": [ + -73.3871085555789, + 45.4843788098105 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.8816840472833 + }, + "name": "boul. Moïse-Vincent et civique 2975", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.387108556, + 45.48437881 + ] + }, + "is_frozen": false, + "integer_id": 1834, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455044, + 45.429439 + ] + }, + "id": 1835, + "properties": { + "id": "dca1f1af-a3cf-4dc0-9b7c-88db3f7a9ff7", + "code": "30051", + "data": { + "stops": [ + { + "id": "5313", + "code": "30051", + "data": { + "gtfs": { + "stop_id": "5313", + "stop_code": "30051", + "stop_name": "boul. du Quartier et place de Java", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et place de Java", + "geography": { + "type": "Point", + "coordinates": [ + -73.4550534583078, + 45.4292047166106 + ] + } + }, + { + "id": "5520", + "code": "30268", + "data": { + "gtfs": { + "stop_id": "5520", + "stop_code": "30268", + "stop_name": "boul. du Quartier et place de Java", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et place de Java", + "geography": { + "type": "Point", + "coordinates": [ + -73.4548819817629, + 45.4296734067041 + ] + } + }, + { + "id": "5521", + "code": "30269", + "data": { + "gtfs": { + "stop_id": "5521", + "stop_code": "30269", + "stop_name": "place de Java et boul. du Quartier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "place de Java et boul. du Quartier", + "geography": { + "type": "Point", + "coordinates": [ + -73.455205041147, + 45.429563826274 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.9556947973135 + }, + "name": "boul. du Quartier et place de Java", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455043511, + 45.429439062 + ] + }, + "is_frozen": false, + "integer_id": 1835, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.43991, + 45.458017 + ] + }, + "id": 1836, + "properties": { + "id": "b7b9e437-9aed-4216-8c9e-6ac432328b58", + "code": "30052", + "data": { + "stops": [ + { + "id": "5314", + "code": "30052", + "data": { + "gtfs": { + "stop_id": "5314", + "stop_code": "30052", + "stop_name": "boul. Chevrier et civique 6535", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Chevrier et civique 6535", + "geography": { + "type": "Point", + "coordinates": [ + -73.4399264663976, + 45.4581774721589 + ] + } + }, + { + "id": "5316", + "code": "30054", + "data": { + "gtfs": { + "stop_id": "5316", + "stop_code": "30054", + "stop_name": "boul. Chevrier et civique 6535", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Chevrier et civique 6535", + "geography": { + "type": "Point", + "coordinates": [ + -73.4398940781069, + 45.4578564524743 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4370305500702 + }, + "name": "boul. Chevrier et civique 6535", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439910272, + 45.458016962 + ] + }, + "is_frozen": false, + "integer_id": 1836, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.434431, + 45.463438 + ] + }, + "id": 1837, + "properties": { + "id": "7c6202a7-3f19-4943-97ae-2c6baa7cb485", + "code": "30053", + "data": { + "stops": [ + { + "id": "5315", + "code": "30053", + "data": { + "gtfs": { + "stop_id": "5315", + "stop_code": "30053", + "stop_name": "boul. Chevrier et Corbière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Chevrier et Corbière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4344339929609, + 45.4634688073341 + ] + } + }, + { + "id": "5318", + "code": "30056", + "data": { + "gtfs": { + "stop_id": "5318", + "stop_code": "30056", + "stop_name": "boul. Chevrier et Corbière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Chevrier et Corbière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4344276933709, + 45.4634073971018 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5284202031054 + }, + "name": "boul. Chevrier et Corbière", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.434430843, + 45.463438102 + ] + }, + "is_frozen": false, + "integer_id": 1837, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450248, + 45.561685 + ] + }, + "id": 1838, + "properties": { + "id": "6d4dc817-4368-4ece-aeda-37df1213d699", + "code": "30058", + "data": { + "stops": [ + { + "id": "5320", + "code": "30058", + "data": { + "gtfs": { + "stop_id": "5320", + "stop_code": "30058", + "stop_name": "boul. Jacques-Cartier est et boul. Fernand-Lafontaine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et boul. Fernand-Lafontaine", + "geography": { + "type": "Point", + "coordinates": [ + -73.4502475010988, + 45.5616845538808 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1891898591145 + }, + "name": "boul. Jacques-Cartier est et boul. Fernand-Lafontaine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450247501, + 45.561684554 + ] + }, + "is_frozen": false, + "integer_id": 1838, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449731, + 45.555697 + ] + }, + "id": 1839, + "properties": { + "id": "b66a9525-9dd9-49fa-b088-bde983b8c260", + "code": "30059", + "data": { + "stops": [ + { + "id": "5321", + "code": "30059", + "data": { + "gtfs": { + "stop_id": "5321", + "stop_code": "30059", + "stop_name": "boul. Jacques-Cartier est et Jean-Paul-Lemieux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et Jean-Paul-Lemieux", + "geography": { + "type": "Point", + "coordinates": [ + -73.449596258152, + 45.5555440694921 + ] + } + }, + { + "id": "5322", + "code": "30060", + "data": { + "gtfs": { + "stop_id": "5322", + "stop_code": "30060", + "stop_name": "boul. Jacques-Cartier est et Jean-Paul-Lemieux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et Jean-Paul-Lemieux", + "geography": { + "type": "Point", + "coordinates": [ + -73.4498658060264, + 45.5558507257949 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0877360874839 + }, + "name": "boul. Jacques-Cartier est et Jean-Paul-Lemieux", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449731032, + 45.555697398 + ] + }, + "is_frozen": false, + "integer_id": 1839, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.449183, + 45.551725 + ] + }, + "id": 1840, + "properties": { + "id": "95cc31bb-b82e-4ab9-921f-e5a8cd8454c3", + "code": "30061", + "data": { + "stops": [ + { + "id": "5323", + "code": "30061", + "data": { + "gtfs": { + "stop_id": "5323", + "stop_code": "30061", + "stop_name": "boul. Jacques-Cartier est et des Primevères", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et des Primevères", + "geography": { + "type": "Point", + "coordinates": [ + -73.4490163355558, + 45.5516035541933 + ] + } + }, + { + "id": "5324", + "code": "30062", + "data": { + "gtfs": { + "stop_id": "5324", + "stop_code": "30062", + "stop_name": "boul. Jacques-Cartier est et des Primevères", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et des Primevères", + "geography": { + "type": "Point", + "coordinates": [ + -73.4493494285997, + 45.5518471762126 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.0204467145356 + }, + "name": "boul. Jacques-Cartier est et des Primevères", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.449182882, + 45.551725365 + ] + }, + "is_frozen": false, + "integer_id": 1840, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44889, + 45.434145 + ] + }, + "id": 1841, + "properties": { + "id": "d26ce5e1-6c58-4e66-9161-bd0bb569b92f", + "code": "30073", + "data": { + "stops": [ + { + "id": "5335", + "code": "30073", + "data": { + "gtfs": { + "stop_id": "5335", + "stop_code": "30073", + "stop_name": "ch. des Prairies et croiss. du Louvre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et croiss. du Louvre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4487170641068, + 45.4341943898209 + ] + } + }, + { + "id": "5336", + "code": "30074", + "data": { + "gtfs": { + "stop_id": "5336", + "stop_code": "30074", + "stop_name": "ch. des Prairies et croiss. du Louvre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et croiss. du Louvre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4490636975318, + 45.4340959857187 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0349099893269 + }, + "name": "ch. des Prairies et croiss. du Louvre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448890381, + 45.434145188 + ] + }, + "is_frozen": false, + "integer_id": 1841, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.34724, + 45.531266 + ] + }, + "id": 1842, + "properties": { + "id": "a34242f1-b39e-4075-8b98-da7cc20aa985", + "code": "30075", + "data": { + "stops": [ + { + "id": "5337", + "code": "30075", + "data": { + "gtfs": { + "stop_id": "5337", + "stop_code": "30075", + "stop_name": "Montarville et civique 1237", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et civique 1237", + "geography": { + "type": "Point", + "coordinates": [ + -73.3473160053663, + 45.5312216776221 + ] + } + }, + { + "id": "5697", + "code": "30465", + "data": { + "gtfs": { + "stop_id": "5697", + "stop_code": "30465", + "stop_name": "Montarville et civique 1250", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montarville et civique 1250", + "geography": { + "type": "Point", + "coordinates": [ + -73.3471632552154, + 45.531311310542 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6740803376591 + }, + "name": "Montarville et civique 1237", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.34723963, + 45.531266494 + ] + }, + "is_frozen": false, + "integer_id": 1842, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.320371, + 45.515013 + ] + }, + "id": 1843, + "properties": { + "id": "a701238b-1e29-4dd9-946e-0536ece5b28c", + "code": "30089", + "data": { + "stops": [ + { + "id": "5351", + "code": "30089", + "data": { + "gtfs": { + "stop_id": "5351", + "stop_code": "30089", + "stop_name": "Grand Boulevard est et civique 245", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grand Boulevard est et civique 245", + "geography": { + "type": "Point", + "coordinates": [ + -73.3203711015017, + 45.5150131464199 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3991790216581 + }, + "name": "Grand Boulevard est et civique 245", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.320371102, + 45.515013146 + ] + }, + "is_frozen": false, + "integer_id": 1843, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.331085, + 45.512718 + ] + }, + "id": 1844, + "properties": { + "id": "826d09a9-1b78-4dbe-b959-454ea9c14e84", + "code": "30091", + "data": { + "stops": [ + { + "id": "5353", + "code": "30091", + "data": { + "gtfs": { + "stop_id": "5353", + "stop_code": "30091", + "stop_name": "Grand Boulevard ouest et civique 83", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grand Boulevard ouest et civique 83", + "geography": { + "type": "Point", + "coordinates": [ + -73.3310853254725, + 45.5127176537605 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3603731405649 + }, + "name": "Grand Boulevard ouest et civique 83", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.331085325, + 45.512717654 + ] + }, + "is_frozen": false, + "integer_id": 1844, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.331009, + 45.512584 + ] + }, + "id": 1845, + "properties": { + "id": "2b4013fd-f01f-46a6-a43b-07ee39c8fae1", + "code": "30094", + "data": { + "stops": [ + { + "id": "5356", + "code": "30094", + "data": { + "gtfs": { + "stop_id": "5356", + "stop_code": "30094", + "stop_name": "Grand Boulevard ouest et civique 80", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grand Boulevard ouest et civique 80", + "geography": { + "type": "Point", + "coordinates": [ + -73.3310087207947, + 45.5125843396112 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3581195773777 + }, + "name": "Grand Boulevard ouest et civique 80", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.331008721, + 45.51258434 + ] + }, + "is_frozen": false, + "integer_id": 1845, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.320299, + 45.514885 + ] + }, + "id": 1846, + "properties": { + "id": "b1b9e3d8-602d-45b4-ae3c-162955cba188", + "code": "30096", + "data": { + "stops": [ + { + "id": "5358", + "code": "30096", + "data": { + "gtfs": { + "stop_id": "5358", + "stop_code": "30096", + "stop_name": "Grand Boulevard est et civique 228", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Grand Boulevard est et civique 228", + "geography": { + "type": "Point", + "coordinates": [ + -73.3202986877126, + 45.5148850670073 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3970136896918 + }, + "name": "Grand Boulevard est et civique 228", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.320298688, + 45.514885067 + ] + }, + "is_frozen": false, + "integer_id": 1846, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.31743, + 45.518444 + ] + }, + "id": 1847, + "properties": { + "id": "44828ff3-a75f-403d-9e17-7e902c4620b9", + "code": "30097", + "data": { + "stops": [ + { + "id": "5359", + "code": "30097", + "data": { + "gtfs": { + "stop_id": "5359", + "stop_code": "30097", + "stop_name": "boul. De Boucherville et civique 3050", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et civique 3050", + "geography": { + "type": "Point", + "coordinates": [ + -73.3172516037979, + 45.5182955945595 + ] + } + }, + { + "id": "5369", + "code": "30109", + "data": { + "gtfs": { + "stop_id": "5369", + "stop_code": "30109", + "stop_name": "boul. De Boucherville et civique 3001", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Boucherville et civique 3001", + "geography": { + "type": "Point", + "coordinates": [ + -73.3176079206616, + 45.5185914323563 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4571790030274 + }, + "name": "boul. De Boucherville et civique 3050", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.317429762, + 45.518443513 + ] + }, + "is_frozen": false, + "integer_id": 1847, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442995, + 45.448665 + ] + }, + "id": 1848, + "properties": { + "id": "52770c2f-36d3-4ae3-81c7-657d2436c44e", + "code": "30101", + "data": { + "stops": [ + { + "id": "5361", + "code": "30101", + "data": { + "gtfs": { + "stop_id": "5361", + "stop_code": "30101", + "stop_name": "boul. Leduc et Entrée & Sortie Aut. 10", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et Entrée & Sortie Aut. 10", + "geography": { + "type": "Point", + "coordinates": [ + -73.4429953455619, + 45.4486649772967 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2794359514432 + }, + "name": "boul. Leduc et Entrée & Sortie Aut. 10", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442995346, + 45.448664977 + ] + }, + "is_frozen": false, + "integer_id": 1848, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.429379, + 45.506736 + ] + }, + "id": 1849, + "properties": { + "id": "eb6126b3-b137-4dad-bcdc-63a4afe577c5", + "code": "30108", + "data": { + "stops": [ + { + "id": "5368", + "code": "30108", + "data": { + "gtfs": { + "stop_id": "5368", + "stop_code": "30108", + "stop_name": "ch. de Chambly et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4293785446512, + 45.5067358229064 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2592707978672 + }, + "name": "ch. de Chambly et boul. Cousineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.429378545, + 45.506735823 + ] + }, + "is_frozen": false, + "integer_id": 1849, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.40036, + 45.4644 + ] + }, + "id": 1850, + "properties": { + "id": "079e9464-8795-42f3-bc7f-526d1ec5de83", + "code": "30110", + "data": { + "stops": [ + { + "id": "5370", + "code": "30110", + "data": { + "gtfs": { + "stop_id": "5370", + "stop_code": "30110", + "stop_name": "Armand-Frappier et civique 4700", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Armand-Frappier et civique 4700", + "geography": { + "type": "Point", + "coordinates": [ + -73.4002467464703, + 45.4643863956426 + ] + } + }, + { + "id": "5371", + "code": "30111", + "data": { + "gtfs": { + "stop_id": "5371", + "stop_code": "30111", + "stop_name": "Armand-Frappier et civique 4700", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Armand-Frappier et civique 4700", + "geography": { + "type": "Point", + "coordinates": [ + -73.4004730296844, + 45.4644137639732 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5446399666424 + }, + "name": "Armand-Frappier et civique 4700", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.400359888, + 45.46440008 + ] + }, + "is_frozen": false, + "integer_id": 1850, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.45605, + 45.434594 + ] + }, + "id": 1851, + "properties": { + "id": "75a6ca63-e257-4bc0-9a35-e9f67206fdfb", + "code": "30113", + "data": { + "stops": [ + { + "id": "5373", + "code": "30113", + "data": { + "gtfs": { + "stop_id": "5373", + "stop_code": "30113", + "stop_name": "ch. des Prairies et de Louisbourg", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et de Louisbourg", + "geography": { + "type": "Point", + "coordinates": [ + -73.4559847676381, + 45.4346156412279 + ] + } + }, + { + "id": "5380", + "code": "30120", + "data": { + "gtfs": { + "stop_id": "5380", + "stop_code": "30120", + "stop_name": "ch. des Prairies et de Louisbourg", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et de Louisbourg", + "geography": { + "type": "Point", + "coordinates": [ + -73.4561157108102, + 45.4345731141248 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0424719414535 + }, + "name": "ch. des Prairies et de Louisbourg", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456050239, + 45.434594378 + ] + }, + "is_frozen": false, + "integer_id": 1851, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.428985, + 45.588762 + ] + }, + "id": 1852, + "properties": { + "id": "de3d06d6-88af-49e3-b183-9464b2f111c8", + "code": "30122", + "data": { + "stops": [ + { + "id": "5382", + "code": "30122", + "data": { + "gtfs": { + "stop_id": "5382", + "stop_code": "30122", + "stop_name": "D'Avaugour et Lionel-Daunais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "D'Avaugour et Lionel-Daunais", + "geography": { + "type": "Point", + "coordinates": [ + -73.4287857153829, + 45.5885634992691 + ] + } + }, + { + "id": "5389", + "code": "30129", + "data": { + "gtfs": { + "stop_id": "5389", + "stop_code": "30129", + "stop_name": "Lionel-Daunais et D'Avaugour", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lionel-Daunais et D'Avaugour", + "geography": { + "type": "Point", + "coordinates": [ + -73.4291836371442, + 45.5889610465424 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6484283045185 + }, + "name": "D'Avaugour et Lionel-Daunais", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.428984676, + 45.588762273 + ] + }, + "is_frozen": false, + "integer_id": 1852, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.430763, + 45.591706 + ] + }, + "id": 1853, + "properties": { + "id": "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", + "code": "30123", + "data": { + "stops": [ + { + "id": "5383", + "code": "30123", + "data": { + "gtfs": { + "stop_id": "5383", + "stop_code": "30123", + "stop_name": "Lionel-Daunais et Jean-Deslauriers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lionel-Daunais et Jean-Deslauriers", + "geography": { + "type": "Point", + "coordinates": [ + -73.4305942768248, + 45.5916574164362 + ] + } + }, + { + "id": "5388", + "code": "30128", + "data": { + "gtfs": { + "stop_id": "5388", + "stop_code": "30128", + "stop_name": "Lionel-Daunais et Jean-Deslauriers", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lionel-Daunais et Jean-Deslauriers", + "geography": { + "type": "Point", + "coordinates": [ + -73.4309315519116, + 45.5917542714834 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6983908266081 + }, + "name": "Lionel-Daunais et Jean-Deslauriers", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.430762914, + 45.591705844 + ] + }, + "is_frozen": false, + "integer_id": 1853, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.433279, + 45.593602 + ] + }, + "id": 1854, + "properties": { + "id": "ed16ff8f-f2f4-4914-b93b-f48229e580b7", + "code": "30124", + "data": { + "stops": [ + { + "id": "5384", + "code": "30124", + "data": { + "gtfs": { + "stop_id": "5384", + "stop_code": "30124", + "stop_name": "Lionel-Daunais et boul. de Mortagne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lionel-Daunais et boul. de Mortagne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4331034918599, + 45.5936461853866 + ] + } + }, + { + "id": "5387", + "code": "30127", + "data": { + "gtfs": { + "stop_id": "5387", + "stop_code": "30127", + "stop_name": "boul. de Mortagne et Lionel-Daunais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Mortagne et Lionel-Daunais", + "geography": { + "type": "Point", + "coordinates": [ + -73.4334554125379, + 45.5935577002064 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7305782537316 + }, + "name": "Lionel-Daunais et boul. de Mortagne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.433279452, + 45.593601943 + ] + }, + "is_frozen": false, + "integer_id": 1854, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.43466, + 45.577028 + ] + }, + "id": 1855, + "properties": { + "id": "dda3c3c1-6952-475f-8547-789fb757f7c6", + "code": "30131", + "data": { + "stops": [ + { + "id": "5391", + "code": "30131", + "data": { + "gtfs": { + "stop_id": "5391", + "stop_code": "30131", + "stop_name": "de Normandie et de Nantes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Normandie et de Nantes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4346366374143, + 45.5768534271501 + ] + } + }, + { + "id": "5394", + "code": "30134", + "data": { + "gtfs": { + "stop_id": "5394", + "stop_code": "30134", + "stop_name": "de Normandie et de Nantes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Normandie et de Nantes", + "geography": { + "type": "Point", + "coordinates": [ + -73.4346830162761, + 45.5772017297947 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.449327236941 + }, + "name": "de Normandie et de Nantes", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.434659827, + 45.577027578 + ] + }, + "is_frozen": false, + "integer_id": 1855, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.433355, + 45.579106 + ] + }, + "id": 1856, + "properties": { + "id": "3ff2d59e-aa78-4d80-b1c5-f7852a289411", + "code": "30132", + "data": { + "stops": [ + { + "id": "5392", + "code": "30132", + "data": { + "gtfs": { + "stop_id": "5392", + "stop_code": "30132", + "stop_name": "de Normandie et de Caen", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Normandie et de Caen", + "geography": { + "type": "Point", + "coordinates": [ + -73.4333500253481, + 45.5789618313686 + ] + } + }, + { + "id": "5393", + "code": "30133", + "data": { + "gtfs": { + "stop_id": "5393", + "stop_code": "30133", + "stop_name": "de Normandie et de Caen", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Normandie et de Caen", + "geography": { + "type": "Point", + "coordinates": [ + -73.4333591911461, + 45.5792509677142 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4845893658681 + }, + "name": "de Normandie et de Caen", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.433354608, + 45.5791064 + ] + }, + "is_frozen": false, + "integer_id": 1856, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.426516, + 45.57757 + ] + }, + "id": 1857, + "properties": { + "id": "8680b7f3-dcb9-422f-a458-e2745493c66f", + "code": "30135", + "data": { + "stops": [ + { + "id": "5395", + "code": "30135", + "data": { + "gtfs": { + "stop_id": "5395", + "stop_code": "30135", + "stop_name": "de Rouen et de Dijon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Rouen et de Dijon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4263649446439, + 45.577518093415 + ] + } + }, + { + "id": "5396", + "code": "30136", + "data": { + "gtfs": { + "stop_id": "5396", + "stop_code": "30136", + "stop_name": "de Rouen et de Dijon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Rouen et de Dijon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4266662541209, + 45.5776226739587 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4585342398183 + }, + "name": "de Rouen et de Dijon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.426515599, + 45.577570384 + ] + }, + "is_frozen": false, + "integer_id": 1857, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.428355, + 45.579154 + ] + }, + "id": 1858, + "properties": { + "id": "9f16d6ec-8397-4d95-9ce8-1980aa76ecbc", + "code": "30137", + "data": { + "stops": [ + { + "id": "5397", + "code": "30137", + "data": { + "gtfs": { + "stop_id": "5397", + "stop_code": "30137", + "stop_name": "de Rouen et civique 1382", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Rouen et civique 1382", + "geography": { + "type": "Point", + "coordinates": [ + -73.4283274643576, + 45.5792323221632 + ] + } + }, + { + "id": "5398", + "code": "30138", + "data": { + "gtfs": { + "stop_id": "5398", + "stop_code": "30138", + "stop_name": "de Rouen et civique 1383", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de Rouen et civique 1383", + "geography": { + "type": "Point", + "coordinates": [ + -73.4283833216603, + 45.5790757353105 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4853973206076 + }, + "name": "de Rouen et civique 1382", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.428355393, + 45.579154029 + ] + }, + "is_frozen": false, + "integer_id": 1858, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.404291, + 45.578094 + ] + }, + "id": 1859, + "properties": { + "id": "7b448eb1-37a4-4d74-be5a-f8938cae8304", + "code": "30140", + "data": { + "stops": [ + { + "id": "5400", + "code": "30140", + "data": { + "gtfs": { + "stop_id": "5400", + "stop_code": "30140", + "stop_name": "Lavoisier et COSTCO", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lavoisier et COSTCO", + "geography": { + "type": "Point", + "coordinates": [ + -73.4044674345232, + 45.5780957839582 + ] + } + }, + { + "id": "5401", + "code": "30141", + "data": { + "gtfs": { + "stop_id": "5401", + "stop_code": "30141", + "stop_name": "Lavoisier et COSTCO", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lavoisier et COSTCO", + "geography": { + "type": "Point", + "coordinates": [ + -73.404114822035, + 45.5780915004858 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4674099215576 + }, + "name": "Lavoisier et COSTCO", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.404291128, + 45.578093642 + ] + }, + "is_frozen": false, + "integer_id": 1859, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.382757, + 45.571594 + ] + }, + "id": 1860, + "properties": { + "id": "b195cac8-133e-4e85-98b4-0a7ab23c800c", + "code": "30144", + "data": { + "stops": [ + { + "id": "5404", + "code": "30144", + "data": { + "gtfs": { + "stop_id": "5404", + "stop_code": "30144", + "stop_name": "AFFI", + "location_type": 0, + "parent_station": "" + } + }, + "name": "AFFI", + "geography": { + "type": "Point", + "coordinates": [ + -73.3827570294535, + 45.5715937491911 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3571738744973 + }, + "name": "AFFI", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.382757029, + 45.571593749 + ] + }, + "is_frozen": false, + "integer_id": 1860, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.408976, + 45.581035 + ] + }, + "id": 1861, + "properties": { + "id": "35c1782c-662d-401b-9699-beb9fbc05ba4", + "code": "30145", + "data": { + "stops": [ + { + "id": "5405", + "code": "30145", + "data": { + "gtfs": { + "stop_id": "5405", + "stop_code": "30145", + "stop_name": "du Boisé et de la Futaie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Boisé et de la Futaie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4088121959957, + 45.5809870919552 + ] + } + }, + { + "id": "5406", + "code": "30147", + "data": { + "gtfs": { + "stop_id": "5406", + "stop_code": "30147", + "stop_name": "du Boisé et de la Futaie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "du Boisé et de la Futaie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4091404626613, + 45.5810838855536 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5173150982698 + }, + "name": "du Boisé et de la Futaie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.408976329, + 45.581035489 + ] + }, + "is_frozen": false, + "integer_id": 1861, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.431878, + 45.46528 + ] + }, + "id": 1862, + "properties": { + "id": "2dc5436a-aaba-417a-8f15-4777cfa70bbf", + "code": "30148", + "data": { + "stops": [ + { + "id": "5407", + "code": "30148", + "data": { + "gtfs": { + "stop_id": "5407", + "stop_code": "30148", + "stop_name": "boul. Chevrier et Claudel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Chevrier et Claudel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4319067745763, + 45.4651473282628 + ] + } + }, + { + "id": "5408", + "code": "30149", + "data": { + "gtfs": { + "stop_id": "5408", + "stop_code": "30149", + "stop_name": "boul. Chevrier et Claudel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Chevrier et Claudel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4318485998827, + 45.4654123404956 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.559474083114 + }, + "name": "boul. Chevrier et Claudel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431877687, + 45.465279834 + ] + }, + "is_frozen": false, + "integer_id": 1862, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.374382, + 45.512781 + ] + }, + "id": 1863, + "properties": { + "id": "0bb0f4a3-6434-4d59-afee-258bc8cd81e4", + "code": "30160", + "data": { + "stops": [ + { + "id": "5417", + "code": "30160", + "data": { + "gtfs": { + "stop_id": "5417", + "stop_code": "30160", + "stop_name": "GARE SAINT-BRUNO", + "location_type": 0, + "parent_station": "" + } + }, + "name": "GARE SAINT-BRUNO", + "geography": { + "type": "Point", + "coordinates": [ + -73.3743816931576, + 45.5127806302333 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3614377033942 + }, + "name": "GARE SAINT-BRUNO", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.374381693, + 45.51278063 + ] + }, + "is_frozen": false, + "integer_id": 1863, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.512896, + 45.501759 + ] + }, + "id": 1864, + "properties": { + "id": "46687bb1-1189-4edc-bbd4-c90db18d4ff5", + "code": "30161", + "data": { + "stops": [ + { + "id": "5418", + "code": "30161", + "data": { + "gtfs": { + "stop_id": "5418", + "stop_code": "30161", + "stop_name": "av. Argyle et av. Victoria", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Argyle et av. Victoria", + "geography": { + "type": "Point", + "coordinates": [ + -73.5124746870508, + 45.5018070148509 + ] + } + }, + { + "id": "5768", + "code": "30537", + "data": { + "gtfs": { + "stop_id": "5768", + "stop_code": "30537", + "stop_name": "av. Argyle et HOTEL DE VILLE DE SAINT-LAMBERT", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Argyle et HOTEL DE VILLE DE SAINT-LAMBERT", + "geography": { + "type": "Point", + "coordinates": [ + -73.5133165505173, + 45.5017111566961 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1751803978265 + }, + "name": "av. Argyle et av. Victoria", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.512895619, + 45.501759086 + ] + }, + "is_frozen": false, + "integer_id": 1864, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.433604, + 45.499603 + ] + }, + "id": 1865, + "properties": { + "id": "aa6eb326-370c-4562-8a0f-6ee973ad147e", + "code": "30164", + "data": { + "stops": [ + { + "id": "5421", + "code": "30164", + "data": { + "gtfs": { + "stop_id": "5421", + "stop_code": "30164", + "stop_name": "Perras et Plante", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Perras et Plante", + "geography": { + "type": "Point", + "coordinates": [ + -73.4337563396072, + 45.4995838503776 + ] + } + }, + { + "id": "5422", + "code": "30165", + "data": { + "gtfs": { + "stop_id": "5422", + "stop_code": "30165", + "stop_name": "Perras et Plante", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Perras et Plante", + "geography": { + "type": "Point", + "coordinates": [ + -73.433451978679, + 45.4996214003117 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1387501819199 + }, + "name": "Perras et Plante", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.433604159, + 45.499602625 + ] + }, + "is_frozen": false, + "integer_id": 1865, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453648, + 45.433955 + ] + }, + "id": 1866, + "properties": { + "id": "8162eb5c-436c-4cc2-b9dd-2d13a57dd8d8", + "code": "30169", + "data": { + "stops": [ + { + "id": "5426", + "code": "30169", + "data": { + "gtfs": { + "stop_id": "5426", + "stop_code": "30169", + "stop_name": "ch. des Prairies et civique 4405", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et civique 4405", + "geography": { + "type": "Point", + "coordinates": [ + -73.4536001450913, + 45.4339717896333 + ] + } + }, + { + "id": "5431", + "code": "30174", + "data": { + "gtfs": { + "stop_id": "5431", + "stop_code": "30174", + "stop_name": "ch. des Prairies et civique 4405", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et civique 4405", + "geography": { + "type": "Point", + "coordinates": [ + -73.4536955358461, + 45.4339386642246 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0317121179864 + }, + "name": "ch. des Prairies et civique 4405", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45364784, + 45.433955227 + ] + }, + "is_frozen": false, + "integer_id": 1866, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458325, + 45.435413 + ] + }, + "id": 1867, + "properties": { + "id": "dc444f91-de90-48b4-9750-8ab69f40baf5", + "code": "30170", + "data": { + "stops": [ + { + "id": "5427", + "code": "30170", + "data": { + "gtfs": { + "stop_id": "5427", + "stop_code": "30170", + "stop_name": "ch. des Prairies et civique 4160", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et civique 4160", + "geography": { + "type": "Point", + "coordinates": [ + -73.4582755733424, + 45.4354650163163 + ] + } + }, + { + "id": "5428", + "code": "30171", + "data": { + "gtfs": { + "stop_id": "5428", + "stop_code": "30171", + "stop_name": "ch. des Prairies et civique 4095", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et civique 4095", + "geography": { + "type": "Point", + "coordinates": [ + -73.4583746694526, + 45.4353602231111 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0562472107326 + }, + "name": "ch. des Prairies et civique 4160", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.458325121, + 45.43541262 + ] + }, + "is_frozen": false, + "integer_id": 1867, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451464, + 45.433975 + ] + }, + "id": 1868, + "properties": { + "id": "95267540-c736-4584-b843-23c799e4aa83", + "code": "30172", + "data": { + "stops": [ + { + "id": "5429", + "code": "30172", + "data": { + "gtfs": { + "stop_id": "5429", + "stop_code": "30172", + "stop_name": "ch. des Prairies et croiss. du Louvre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et croiss. du Louvre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4515932508963, + 45.4339043918806 + ] + } + }, + { + "id": "5430", + "code": "30173", + "data": { + "gtfs": { + "stop_id": "5430", + "stop_code": "30173", + "stop_name": "ch. des Prairies et croiss. du Louvre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. des Prairies et croiss. du Louvre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4513354924034, + 45.4340448512427 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0320386188802 + }, + "name": "ch. des Prairies et croiss. du Louvre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451464372, + 45.433974622 + ] + }, + "is_frozen": false, + "integer_id": 1868, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439119, + 45.500532 + ] + }, + "id": 1869, + "properties": { + "id": "a39b7f03-1a32-4d28-9091-59543b1980d1", + "code": "30178", + "data": { + "stops": [ + { + "id": "5435", + "code": "30178", + "data": { + "gtfs": { + "stop_id": "5435", + "stop_code": "30178", + "stop_name": "boul. Gareau et civique 3447", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gareau et civique 3447", + "geography": { + "type": "Point", + "coordinates": [ + -73.4391190320216, + 45.500532218969 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1544537888458 + }, + "name": "boul. Gareau et civique 3447", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439119032, + 45.500532219 + ] + }, + "is_frozen": false, + "integer_id": 1869, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.35414, + 45.462164 + ] + }, + "id": 1870, + "properties": { + "id": "88e03d45-747f-4e6b-aeb6-97810526c65b", + "code": "30181", + "data": { + "stops": [ + { + "id": "5438", + "code": "30181", + "data": { + "gtfs": { + "stop_id": "5438", + "stop_code": "30181", + "stop_name": "Pacific et De La Brisardière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et De La Brisardière", + "geography": { + "type": "Point", + "coordinates": [ + -73.3540959608306, + 45.4620801483313 + ] + } + }, + { + "id": "5439", + "code": "30182", + "data": { + "gtfs": { + "stop_id": "5439", + "stop_code": "30182", + "stop_name": "Pacific et De La Brisardière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Pacific et De La Brisardière", + "geography": { + "type": "Point", + "coordinates": [ + -73.3541835979149, + 45.4622480344839 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5069405633618 + }, + "name": "Pacific et De La Brisardière", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.354139779, + 45.462164091 + ] + }, + "is_frozen": false, + "integer_id": 1870, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468579, + 45.467028 + ] + }, + "id": 1871, + "properties": { + "id": "0efa9d7f-9938-46ee-97f6-a92cc9c04c7d", + "code": "30191", + "data": { + "stops": [ + { + "id": "5447", + "code": "30191", + "data": { + "gtfs": { + "stop_id": "5447", + "stop_code": "30191", + "stop_name": "TERMINUS PANAMA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "TERMINUS PANAMA", + "geography": { + "type": "Point", + "coordinates": [ + -73.4685789341712, + 45.4670282653633 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5889575792322 + }, + "name": "TERMINUS PANAMA", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468578934, + 45.467028265 + ] + }, + "is_frozen": false, + "integer_id": 1871, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.430948, + 45.513379 + ] + }, + "id": 1872, + "properties": { + "id": "4d0b0e5c-93dc-4d99-84e1-62026882c424", + "code": "30192", + "data": { + "stops": [ + { + "id": "5448", + "code": "30192", + "data": { + "gtfs": { + "stop_id": "5448", + "stop_code": "30192", + "stop_name": "ch. de la Savane et Bishop", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et Bishop", + "geography": { + "type": "Point", + "coordinates": [ + -73.4310007447585, + 45.5134779314252 + ] + } + }, + { + "id": "5449", + "code": "30193", + "data": { + "gtfs": { + "stop_id": "5449", + "stop_code": "30193", + "stop_name": "ch. de la Savane et Bishop", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et Bishop", + "geography": { + "type": "Point", + "coordinates": [ + -73.4308945326625, + 45.5132805005071 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3715565345408 + }, + "name": "ch. de la Savane et Bishop", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.430947639, + 45.513379216 + ] + }, + "is_frozen": false, + "integer_id": 1872, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454758, + 45.449644 + ] + }, + "id": 1873, + "properties": { + "id": "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", + "code": "30196", + "data": { + "stops": [ + { + "id": "5452", + "code": "30196", + "data": { + "gtfs": { + "stop_id": "5452", + "stop_code": "30196", + "stop_name": "boul. de Rome et Mondor", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et Mondor", + "geography": { + "type": "Point", + "coordinates": [ + -73.4547584940101, + 45.4496439632584 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2959296590657 + }, + "name": "boul. de Rome et Mondor", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454758494, + 45.449643963 + ] + }, + "is_frozen": false, + "integer_id": 1873, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.434158, + 45.521093 + ] + }, + "id": 1874, + "properties": { + "id": "f8e89dfa-b651-418d-b1ab-5c9f2ffb0cf1", + "code": "30199", + "data": { + "stops": [ + { + "id": "5455", + "code": "30199", + "data": { + "gtfs": { + "stop_id": "5455", + "stop_code": "30199", + "stop_name": "boul. Vauquelin et des Graminées", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Vauquelin et des Graminées", + "geography": { + "type": "Point", + "coordinates": [ + -73.4341582012757, + 45.5210933793297 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5019896010721 + }, + "name": "boul. Vauquelin et des Graminées", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.434158201, + 45.521093379 + ] + }, + "is_frozen": false, + "integer_id": 1874, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.357347, + 45.540939 + ] + }, + "id": 1875, + "properties": { + "id": "066272d0-7f9d-4ef7-82d0-25ad68986874", + "code": "30202", + "data": { + "stops": [ + { + "id": "5458", + "code": "30202", + "data": { + "gtfs": { + "stop_id": "5458", + "stop_code": "30202", + "stop_name": "rang des Vingt-Cinq est et montée Montarville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rang des Vingt-Cinq est et montée Montarville", + "geography": { + "type": "Point", + "coordinates": [ + -73.35734718209, + 45.5409394490994 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8377958327092 + }, + "name": "rang des Vingt-Cinq est et montée Montarville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.357347182, + 45.540939449 + ] + }, + "is_frozen": false, + "integer_id": 1875, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.405609, + 45.579259 + ] + }, + "id": 1876, + "properties": { + "id": "1a872bc7-948e-475a-8527-ec3c2b61fd79", + "code": "30204", + "data": { + "stops": [ + { + "id": "5460", + "code": "30204", + "data": { + "gtfs": { + "stop_id": "5460", + "stop_code": "30204", + "stop_name": "Lavoisier et des Sureaux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lavoisier et des Sureaux", + "geography": { + "type": "Point", + "coordinates": [ + -73.4053814190433, + 45.5791211328071 + ] + } + }, + { + "id": "5462", + "code": "30209", + "data": { + "gtfs": { + "stop_id": "5462", + "stop_code": "30209", + "stop_name": "Lavoisier et des Sureaux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lavoisier et des Sureaux", + "geography": { + "type": "Point", + "coordinates": [ + -73.4058365455262, + 45.5792415238236 + ] + } + }, + { + "id": "5607", + "code": "30356", + "data": { + "gtfs": { + "stop_id": "5607", + "stop_code": "30356", + "stop_name": "des Sureaux et Lavoisier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Sureaux et Lavoisier", + "geography": { + "type": "Point", + "coordinates": [ + -73.4056288983788, + 45.5793960127257 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4871707603 + }, + "name": "Lavoisier et des Sureaux", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.405608982, + 45.579258573 + ] + }, + "is_frozen": false, + "integer_id": 1876, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.356356, + 45.540781 + ] + }, + "id": 1877, + "properties": { + "id": "57edc028-e6a8-4a6f-9b5c-85f95b27233f", + "code": "30208", + "data": { + "stops": [ + { + "id": "5461", + "code": "30208", + "data": { + "gtfs": { + "stop_id": "5461", + "stop_code": "30208", + "stop_name": "montée Montarville et rang des Vingt-Cinq est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Montarville et rang des Vingt-Cinq est", + "geography": { + "type": "Point", + "coordinates": [ + -73.3563561145693, + 45.540780634006 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.835107202944 + }, + "name": "montée Montarville et rang des Vingt-Cinq est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.356356115, + 45.540780634 + ] + }, + "is_frozen": false, + "integer_id": 1877, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.355184, + 45.545471 + ] + }, + "id": 1878, + "properties": { + "id": "b46cca05-fe3c-4c2a-ae1b-28c207027915", + "code": "30211", + "data": { + "stops": [ + { + "id": "5464", + "code": "30211", + "data": { + "gtfs": { + "stop_id": "5464", + "stop_code": "30211", + "stop_name": "Yvonne-Duckett et rang des Vingt-Cinq est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Yvonne-Duckett et rang des Vingt-Cinq est", + "geography": { + "type": "Point", + "coordinates": [ + -73.3550915391522, + 45.5455469306463 + ] + } + }, + { + "id": "5704", + "code": "30473", + "data": { + "gtfs": { + "stop_id": "5704", + "stop_code": "30473", + "stop_name": "rang des Vingt-Cinq est et Yvonne-Duckett", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rang des Vingt-Cinq est et Yvonne-Duckett", + "geography": { + "type": "Point", + "coordinates": [ + -73.355277314707, + 45.5453952386832 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9145228257388 + }, + "name": "Yvonne-Duckett et rang des Vingt-Cinq est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.355184427, + 45.545471085 + ] + }, + "is_frozen": false, + "integer_id": 1878, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.447244, + 45.434506 + ] + }, + "id": 1879, + "properties": { + "id": "7086213c-6c6f-4acd-ad80-070f91d1eae3", + "code": "30215", + "data": { + "stops": [ + { + "id": "5468", + "code": "30215", + "data": { + "gtfs": { + "stop_id": "5468", + "stop_code": "30215", + "stop_name": "boul. du Quartier et ch. des Prairies", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et ch. des Prairies", + "geography": { + "type": "Point", + "coordinates": [ + -73.4472442718243, + 45.4345055373717 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0409763209824 + }, + "name": "boul. du Quartier et ch. des Prairies", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447244272, + 45.434505537 + ] + }, + "is_frozen": false, + "integer_id": 1879, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.40763, + 45.496638 + ] + }, + "id": 1880, + "properties": { + "id": "590769f9-bd2c-482c-8bd5-e3724936b683", + "code": "30219", + "data": { + "stops": [ + { + "id": "5472", + "code": "30219", + "data": { + "gtfs": { + "stop_id": "5472", + "stop_code": "30219", + "stop_name": "boul. Gaétan-Boucher et PHARMACIE JEAN COUTU #180", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et PHARMACIE JEAN COUTU #180", + "geography": { + "type": "Point", + "coordinates": [ + -73.4077312136788, + 45.4967783076908 + ] + } + }, + { + "id": "5473", + "code": "30220", + "data": { + "gtfs": { + "stop_id": "5473", + "stop_code": "30220", + "stop_name": "boul. Gaétan-Boucher et Lise-Charbonneau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Gaétan-Boucher et Lise-Charbonneau", + "geography": { + "type": "Point", + "coordinates": [ + -73.407529011184, + 45.4964974720246 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0886721280103 + }, + "name": "boul. Gaétan-Boucher et PHARMACIE JEAN COUTU #180", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.407630112, + 45.49663789 + ] + }, + "is_frozen": false, + "integer_id": 1880, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.35743, + 45.542337 + ] + }, + "id": 1881, + "properties": { + "id": "ce2fb937-41be-4394-bf3f-6bb0d8d6413a", + "code": "30221", + "data": { + "stops": [ + { + "id": "5474", + "code": "30221", + "data": { + "gtfs": { + "stop_id": "5474", + "stop_code": "30221", + "stop_name": "rang des Vingt-Cinq est et Eulalie-Durocher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rang des Vingt-Cinq est et Eulalie-Durocher", + "geography": { + "type": "Point", + "coordinates": [ + -73.3574301788264, + 45.5423372244832 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8614601818836 + }, + "name": "rang des Vingt-Cinq est et Eulalie-Durocher", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.357430179, + 45.542337224 + ] + }, + "is_frozen": false, + "integer_id": 1881, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.468698, + 45.537554 + ] + }, + "id": 1882, + "properties": { + "id": "7173d99c-f55d-41f4-8d2d-0266835b40ee", + "code": "30242", + "data": { + "stops": [ + { + "id": "5495", + "code": "30242", + "data": { + "gtfs": { + "stop_id": "5495", + "stop_code": "30242", + "stop_name": "King-George et Bâtiment Bell", + "location_type": 0, + "parent_station": "" + } + }, + "name": "King-George et Bâtiment Bell", + "geography": { + "type": "Point", + "coordinates": [ + -73.4686984032842, + 45.5375541733757 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7804902879898 + }, + "name": "King-George et Bâtiment Bell", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.468698403, + 45.537554173 + ] + }, + "is_frozen": false, + "integer_id": 1882, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.379801, + 45.520266 + ] + }, + "id": 1883, + "properties": { + "id": "71285487-65b1-4a9b-965b-e8b969ec642e", + "code": "30249", + "data": { + "stops": [ + { + "id": "5501", + "code": "30249", + "data": { + "gtfs": { + "stop_id": "5501", + "stop_code": "30249", + "stop_name": "boul. Clairevue ouest et René-Descartes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et René-Descartes", + "geography": { + "type": "Point", + "coordinates": [ + -73.3796833332615, + 45.5203824703804 + ] + } + }, + { + "id": "5502", + "code": "30250", + "data": { + "gtfs": { + "stop_id": "5502", + "stop_code": "30250", + "stop_name": "boul. Clairevue ouest et René-Descartes", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et René-Descartes", + "geography": { + "type": "Point", + "coordinates": [ + -73.3799182893268, + 45.5201505084122 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.488005794037 + }, + "name": "boul. Clairevue ouest et René-Descartes", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.379800811, + 45.520266489 + ] + }, + "is_frozen": false, + "integer_id": 1883, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.373283, + 45.474626 + ] + }, + "id": 1884, + "properties": { + "id": "c5d63249-9c53-468b-a75e-33839919bc02", + "code": "30252", + "data": { + "stops": [ + { + "id": "5504", + "code": "30252", + "data": { + "gtfs": { + "stop_id": "5504", + "stop_code": "30252", + "stop_name": "boul. Mountainview et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Mountainview et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3734724229609, + 45.4744921617181 + ] + } + }, + { + "id": "5505", + "code": "30253", + "data": { + "gtfs": { + "stop_id": "5505", + "stop_code": "30253", + "stop_name": "boul. Mountainview et civique 2705", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Mountainview et civique 2705", + "geography": { + "type": "Point", + "coordinates": [ + -73.3730935706602, + 45.4747603639384 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7171128643673 + }, + "name": "boul. Mountainview et boul. Cousineau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.373282997, + 45.474626263 + ] + }, + "is_frozen": false, + "integer_id": 1884, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.464209, + 45.536659 + ] + }, + "id": 1885, + "properties": { + "id": "faaa7c6f-4c6c-443c-99d4-d4c617571545", + "code": "30255", + "data": { + "stops": [ + { + "id": "5507", + "code": "30255", + "data": { + "gtfs": { + "stop_id": "5507", + "stop_code": "30255", + "stop_name": "ch. Du Tremblay et civique 1195", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Du Tremblay et civique 1195", + "geography": { + "type": "Point", + "coordinates": [ + -73.4642090451849, + 45.5366587520442 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7653344186135 + }, + "name": "ch. Du Tremblay et civique 1195", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.464209045, + 45.536658752 + ] + }, + "is_frozen": false, + "integer_id": 1885, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.425624, + 45.524029 + ] + }, + "id": 1886, + "properties": { + "id": "ed42da21-6b05-4077-96ea-1a113eaf4850", + "code": "30256", + "data": { + "stops": [ + { + "id": "5508", + "code": "30256", + "data": { + "gtfs": { + "stop_id": "5508", + "stop_code": "30256", + "stop_name": "ch. de la Savane et civique 4925", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et civique 4925", + "geography": { + "type": "Point", + "coordinates": [ + -73.4255338966696, + 45.5240055664505 + ] + } + }, + { + "id": "5509", + "code": "30257", + "data": { + "gtfs": { + "stop_id": "5509", + "stop_code": "30257", + "stop_name": "ch. de la Savane et civique 4925", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de la Savane et civique 4925", + "geography": { + "type": "Point", + "coordinates": [ + -73.4257145086792, + 45.5240515362779 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5516321736669 + }, + "name": "ch. de la Savane et civique 4925", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.425624203, + 45.524028551 + ] + }, + "is_frozen": false, + "integer_id": 1886, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.457437, + 45.432007 + ] + }, + "id": 1887, + "properties": { + "id": "ba9dbeb6-b197-4bf3-9ae7-2251eb9f3485", + "code": "30258", + "data": { + "stops": [ + { + "id": "5510", + "code": "30258", + "data": { + "gtfs": { + "stop_id": "5510", + "stop_code": "30258", + "stop_name": "place de Java et civique 4055", + "location_type": 0, + "parent_station": "" + } + }, + "name": "place de Java et civique 4055", + "geography": { + "type": "Point", + "coordinates": [ + -73.45748092465, + 45.4321647760582 + ] + } + }, + { + "id": "5511", + "code": "30259", + "data": { + "gtfs": { + "stop_id": "5511", + "stop_code": "30259", + "stop_name": "place de Java et civique 4100", + "location_type": 0, + "parent_station": "" + } + }, + "name": "place de Java et civique 4100", + "geography": { + "type": "Point", + "coordinates": [ + -73.4573925630696, + 45.431849982208 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.9989231934788 + }, + "name": "place de Java et civique 4055", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.457436744, + 45.432007379 + ] + }, + "is_frozen": false, + "integer_id": 1887, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.369698, + 45.527686 + ] + }, + "id": 1888, + "properties": { + "id": "7d066d0e-6085-4155-a554-6e1116a797c6", + "code": "30260", + "data": { + "stops": [ + { + "id": "5512", + "code": "30260", + "data": { + "gtfs": { + "stop_id": "5512", + "stop_code": "30260", + "stop_name": "Parent et civique 1081", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Parent et civique 1081", + "geography": { + "type": "Point", + "coordinates": [ + -73.3698110342022, + 45.5276860623063 + ] + } + }, + { + "id": "5513", + "code": "30261", + "data": { + "gtfs": { + "stop_id": "5513", + "stop_code": "30261", + "stop_name": "Parent et civique 1081", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Parent et civique 1081", + "geography": { + "type": "Point", + "coordinates": [ + -73.3695858938416, + 45.5276863337021 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6135047132599 + }, + "name": "Parent et civique 1081", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.369698464, + 45.527686198 + ] + }, + "is_frozen": false, + "integer_id": 1888, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443006, + 45.438435 + ] + }, + "id": 1889, + "properties": { + "id": "d3ead48f-87a1-4905-af00-10546937b61d", + "code": "30262", + "data": { + "stops": [ + { + "id": "5514", + "code": "30262", + "data": { + "gtfs": { + "stop_id": "5514", + "stop_code": "30262", + "stop_name": "boul. Leduc et CANADIAN-TIRE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et CANADIAN-TIRE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4427629846718, + 45.4384160177566 + ] + } + }, + { + "id": "5515", + "code": "30263", + "data": { + "gtfs": { + "stop_id": "5515", + "stop_code": "30263", + "stop_name": "boul. Leduc et CANADIAN-TIRE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et CANADIAN-TIRE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4432493917228, + 45.4384549172487 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1071426115216 + }, + "name": "boul. Leduc et CANADIAN-TIRE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443006188, + 45.438435468 + ] + }, + "is_frozen": false, + "integer_id": 1889, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440079, + 45.439896 + ] + }, + "id": 1890, + "properties": { + "id": "c5b32d48-73e8-4193-bbcc-f643b32c6ad7", + "code": "30264", + "data": { + "stops": [ + { + "id": "5516", + "code": "30264", + "data": { + "gtfs": { + "stop_id": "5516", + "stop_code": "30264", + "stop_name": "boul. de Rome et boul. Leduc", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et boul. Leduc", + "geography": { + "type": "Point", + "coordinates": [ + -73.4400786726832, + 45.4398955366574 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1317285530417 + }, + "name": "boul. de Rome et boul. Leduc", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440078673, + 45.439895537 + ] + }, + "is_frozen": false, + "integer_id": 1890, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440367, + 45.439197 + ] + }, + "id": 1891, + "properties": { + "id": "fb801cfe-4d06-4f1b-8a43-460434286646", + "code": "30265", + "data": { + "stops": [ + { + "id": "5517", + "code": "30265", + "data": { + "gtfs": { + "stop_id": "5517", + "stop_code": "30265", + "stop_name": "boul. Leduc et boul. de Rome", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et boul. de Rome", + "geography": { + "type": "Point", + "coordinates": [ + -73.4403670990911, + 45.4391970209705 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1199660831064 + }, + "name": "boul. Leduc et boul. de Rome", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440367099, + 45.439197021 + ] + }, + "is_frozen": false, + "integer_id": 1891, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451832, + 45.431037 + ] + }, + "id": 1892, + "properties": { + "id": "601fc633-4aed-4e9a-b678-52e4dedfe19d", + "code": "30266", + "data": { + "stops": [ + { + "id": "5518", + "code": "30266", + "data": { + "gtfs": { + "stop_id": "5518", + "stop_code": "30266", + "stop_name": "boul. du Quartier et de Lancaster", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et de Lancaster", + "geography": { + "type": "Point", + "coordinates": [ + -73.4518316600576, + 45.4310374222184 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.982596762976 + }, + "name": "boul. du Quartier et de Lancaster", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45183166, + 45.431037422 + ] + }, + "is_frozen": false, + "integer_id": 1892, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.451414, + 45.430923 + ] + }, + "id": 1893, + "properties": { + "id": "1e5e280b-187c-453e-ae50-34515416c146", + "code": "30267", + "data": { + "stops": [ + { + "id": "5519", + "code": "30267", + "data": { + "gtfs": { + "stop_id": "5519", + "stop_code": "30267", + "stop_name": "boul. du Quartier et de Lancaster", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et de Lancaster", + "geography": { + "type": "Point", + "coordinates": [ + -73.451414341882, + 45.4309228550795 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.980668412767 + }, + "name": "boul. du Quartier et de Lancaster", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.451414342, + 45.430922855 + ] + }, + "is_frozen": false, + "integer_id": 1893, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.456454, + 45.430997 + ] + }, + "id": 1894, + "properties": { + "id": "772e5e9c-3d69-4a70-b583-9525616f4a61", + "code": "30270", + "data": { + "stops": [ + { + "id": "5522", + "code": "30270", + "data": { + "gtfs": { + "stop_id": "5522", + "stop_code": "30270", + "stop_name": "place de Java et civique 4150", + "location_type": 0, + "parent_station": "" + } + }, + "name": "place de Java et civique 4150", + "geography": { + "type": "Point", + "coordinates": [ + -73.4565244360677, + 45.4309467277198 + ] + } + }, + { + "id": "5523", + "code": "30271", + "data": { + "gtfs": { + "stop_id": "5523", + "stop_code": "30271", + "stop_name": "place de Java et civique 4200", + "location_type": 0, + "parent_station": "" + } + }, + "name": "place de Java et civique 4200", + "geography": { + "type": "Point", + "coordinates": [ + -73.4563836710642, + 45.4310472633836 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 949.9819163258725 + }, + "name": "place de Java et civique 4150", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.456454054, + 45.430996996 + ] + }, + "is_frozen": false, + "integer_id": 1894, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437758, + 45.444877 + ] + }, + "id": 1895, + "properties": { + "id": "6a7293d7-c2a9-4a56-ac00-3470ede84ecb", + "code": "30272", + "data": { + "stops": [ + { + "id": "5524", + "code": "30272", + "data": { + "gtfs": { + "stop_id": "5524", + "stop_code": "30272", + "stop_name": "boul. Leduc et boul. du Quartier", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et boul. du Quartier", + "geography": { + "type": "Point", + "coordinates": [ + -73.437757534957, + 45.4448767281616 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2156205013171 + }, + "name": "boul. Leduc et boul. du Quartier", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437757535, + 45.444876728 + ] + }, + "is_frozen": false, + "integer_id": 1895, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439674, + 45.44632 + ] + }, + "id": 1896, + "properties": { + "id": "9bb9e4f0-3571-429e-bd1b-989f4196b247", + "code": "30273", + "data": { + "stops": [ + { + "id": "5525", + "code": "30273", + "data": { + "gtfs": { + "stop_id": "5525", + "stop_code": "30273", + "stop_name": "boul. Leduc et Banque CIBC", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et Banque CIBC", + "geography": { + "type": "Point", + "coordinates": [ + -73.43967418511, + 45.4463198828788 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2399298594781 + }, + "name": "boul. Leduc et Banque CIBC", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439674185, + 45.446319883 + ] + }, + "is_frozen": false, + "integer_id": 1896, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440448, + 45.446554 + ] + }, + "id": 1897, + "properties": { + "id": "bc708643-7ab2-41eb-a233-30eac22a0a3d", + "code": "30274", + "data": { + "stops": [ + { + "id": "5526", + "code": "30274", + "data": { + "gtfs": { + "stop_id": "5526", + "stop_code": "30274", + "stop_name": "boul. Leduc et Banque CIBC", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et Banque CIBC", + "geography": { + "type": "Point", + "coordinates": [ + -73.4404476795497, + 45.4465544113518 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2438805625502 + }, + "name": "boul. Leduc et Banque CIBC", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44044768, + 45.446554411 + ] + }, + "is_frozen": false, + "integer_id": 1897, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443127, + 45.449097 + ] + }, + "id": 1898, + "properties": { + "id": "708749bc-6754-4d22-849f-c5632030ae08", + "code": "30275", + "data": { + "stops": [ + { + "id": "5527", + "code": "30275", + "data": { + "gtfs": { + "stop_id": "5527", + "stop_code": "30275", + "stop_name": "boul. Leduc et Caisse Desjardins de Brossard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et Caisse Desjardins de Brossard", + "geography": { + "type": "Point", + "coordinates": [ + -73.443126679693, + 45.449097268483 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2867189756818 + }, + "name": "boul. Leduc et Caisse Desjardins de Brossard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44312668, + 45.449097268 + ] + }, + "is_frozen": false, + "integer_id": 1898, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.444281, + 45.449629 + ] + }, + "id": 1899, + "properties": { + "id": "bffdb17e-eb32-4d5e-9070-23ef35e6d825", + "code": "30276", + "data": { + "stops": [ + { + "id": "5528", + "code": "30276", + "data": { + "gtfs": { + "stop_id": "5528", + "stop_code": "30276", + "stop_name": "boul. Leduc et Résidence l'Avantage", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et Résidence l'Avantage", + "geography": { + "type": "Point", + "coordinates": [ + -73.4442805102019, + 45.449628899821 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2956758750267 + }, + "name": "boul. Leduc et Résidence l'Avantage", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44428051, + 45.4496289 + ] + }, + "is_frozen": false, + "integer_id": 1899, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446783, + 45.451686 + ] + }, + "id": 1900, + "properties": { + "id": "23bba49e-4054-4c02-89b3-a6043c3d4d67", + "code": "30277", + "data": { + "stops": [ + { + "id": "5529", + "code": "30277", + "data": { + "gtfs": { + "stop_id": "5529", + "stop_code": "30277", + "stop_name": "boul. Leduc et Complexe sportif Bell", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et Complexe sportif Bell", + "geography": { + "type": "Point", + "coordinates": [ + -73.4467825256436, + 45.4516857492436 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3303318864461 + }, + "name": "boul. Leduc et Complexe sportif Bell", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446782526, + 45.451685749 + ] + }, + "is_frozen": false, + "integer_id": 1900, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.446241, + 45.451632 + ] + }, + "id": 1901, + "properties": { + "id": "65ac05d1-7282-4065-a1b1-3364a3426c7e", + "code": "30278", + "data": { + "stops": [ + { + "id": "5530", + "code": "30278", + "data": { + "gtfs": { + "stop_id": "5530", + "stop_code": "30278", + "stop_name": "boul. Leduc et Complexe sportif Bell", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et Complexe sportif Bell", + "geography": { + "type": "Point", + "coordinates": [ + -73.4462406109673, + 45.4516315395086 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.329418466574 + }, + "name": "boul. Leduc et Complexe sportif Bell", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.446240611, + 45.45163154 + ] + }, + "is_frozen": false, + "integer_id": 1901, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.447454, + 45.453517 + ] + }, + "id": 1902, + "properties": { + "id": "55fda563-44c0-4720-b1a4-2ef0e89eddae", + "code": "30279", + "data": { + "stops": [ + { + "id": "5531", + "code": "30279", + "data": { + "gtfs": { + "stop_id": "5531", + "stop_code": "30279", + "stop_name": "boul. Leduc et Stationnement complexe sportif Bell", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et Stationnement complexe sportif Bell", + "geography": { + "type": "Point", + "coordinates": [ + -73.4474535441453, + 45.4535169462561 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3611890271202 + }, + "name": "boul. Leduc et Stationnement complexe sportif Bell", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447453544, + 45.453516946 + ] + }, + "is_frozen": false, + "integer_id": 1902, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445995, + 45.45636 + ] + }, + "id": 1903, + "properties": { + "id": "94c39e43-404d-41dd-8452-81a760a980e9", + "code": "30282", + "data": { + "stops": [ + { + "id": "5534", + "code": "30282", + "data": { + "gtfs": { + "stop_id": "5534", + "stop_code": "30282", + "stop_name": "boul. Leduc et boul. Lapinière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Leduc et boul. Lapinière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4459947644904, + 45.4563602294353 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4091065254238 + }, + "name": "boul. Leduc et boul. Lapinière", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445994764, + 45.456360229 + ] + }, + "is_frozen": false, + "integer_id": 1903, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.486996, + 45.499224 + ] + }, + "id": 1904, + "properties": { + "id": "fdd9bfef-c8dc-4f65-9008-847050729854", + "code": "30284", + "data": { + "stops": [ + { + "id": "5536", + "code": "30284", + "data": { + "gtfs": { + "stop_id": "5536", + "stop_code": "30284", + "stop_name": "boul. Taschereau et ch. Saint-Charles", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et ch. Saint-Charles", + "geography": { + "type": "Point", + "coordinates": [ + -73.4869959204675, + 45.4992239552572 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1323535399949 + }, + "name": "boul. Taschereau et ch. Saint-Charles", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48699592, + 45.499223955 + ] + }, + "is_frozen": false, + "integer_id": 1904, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.458033, + 45.564414 + ] + }, + "id": 1905, + "properties": { + "id": "9ff5cf2b-10c7-49b1-8a66-4ecc0e2b17d7", + "code": "30285", + "data": { + "stops": [ + { + "id": "5537", + "code": "30285", + "data": { + "gtfs": { + "stop_id": "5537", + "stop_code": "30285", + "stop_name": "ch. du Lac et civique 2457", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et civique 2457", + "geography": { + "type": "Point", + "coordinates": [ + -73.4580331401192, + 45.5644138438712 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.2354489480412 + }, + "name": "ch. du Lac et civique 2457", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.45803314, + 45.564413844 + ] + }, + "is_frozen": false, + "integer_id": 1905, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.423507, + 45.461455 + ] + }, + "id": 1906, + "properties": { + "id": "bfb03303-2ee6-40dd-8e8f-859a06b338a6", + "code": "30286", + "data": { + "stops": [ + { + "id": "5538", + "code": "30286", + "data": { + "gtfs": { + "stop_id": "5538", + "stop_code": "30286", + "stop_name": "boul. Grande Allée et du Chardonneret", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Grande Allée et du Chardonneret", + "geography": { + "type": "Point", + "coordinates": [ + -73.423506893839, + 45.4614551728414 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4949889331043 + }, + "name": "boul. Grande Allée et du Chardonneret", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.423506894, + 45.461455173 + ] + }, + "is_frozen": false, + "integer_id": 1906, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.440119, + 45.440353 + ] + }, + "id": 1907, + "properties": { + "id": "49b9afd3-56d8-4495-8b7a-642e5568568e", + "code": "30307", + "data": { + "stops": [ + { + "id": "5559", + "code": "30307", + "data": { + "gtfs": { + "stop_id": "5559", + "stop_code": "30307", + "stop_name": "boul. de Rome et boul. Leduc", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de Rome et boul. Leduc", + "geography": { + "type": "Point", + "coordinates": [ + -73.4401187255114, + 45.4403527063754 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1394271600464 + }, + "name": "boul. de Rome et boul. Leduc", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.440118726, + 45.440352706 + ] + }, + "is_frozen": false, + "integer_id": 1907, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490645, + 45.540628 + ] + }, + "id": 1908, + "properties": { + "id": "202e0c51-51fb-47b1-ab1b-286b443f8a35", + "code": "30308", + "data": { + "stops": [ + { + "id": "5560", + "code": "30308", + "data": { + "gtfs": { + "stop_id": "5560", + "stop_code": "30308", + "stop_name": "boul. Roland-Therrien et De Gentilly est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et De Gentilly est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4906454633552, + 45.5406278001168 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8325198486813 + }, + "name": "boul. Roland-Therrien et De Gentilly est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490645463, + 45.5406278 + ] + }, + "is_frozen": false, + "integer_id": 1908, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.3792, + 45.513906 + ] + }, + "id": 1909, + "properties": { + "id": "d22226db-b31b-4480-a3d1-49a68d17d471", + "code": "30309", + "data": { + "stops": [ + { + "id": "5561", + "code": "30309", + "data": { + "gtfs": { + "stop_id": "5561", + "stop_code": "30309", + "stop_name": "Graham-Bell et rang du Canal", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Graham-Bell et rang du Canal", + "geography": { + "type": "Point", + "coordinates": [ + -73.3794042914625, + 45.5138654460549 + ] + } + }, + { + "id": "5562", + "code": "30310", + "data": { + "gtfs": { + "stop_id": "5562", + "stop_code": "30310", + "stop_name": "Graham-Bell et rang du Canal", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Graham-Bell et rang du Canal", + "geography": { + "type": "Point", + "coordinates": [ + -73.3789948722804, + 45.5139458035481 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.380455509177 + }, + "name": "Graham-Bell et rang du Canal", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.379199582, + 45.513905625 + ] + }, + "is_frozen": false, + "integer_id": 1909, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.466737, + 45.439819 + ] + }, + "id": 1910, + "properties": { + "id": "bd0ab07f-3423-4348-a03c-133d6cccab2d", + "code": "30319", + "data": { + "stops": [ + { + "id": "5571", + "code": "30319", + "data": { + "gtfs": { + "stop_id": "5571", + "stop_code": "30319", + "stop_name": "av. Orégon et Ontario", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orégon et Ontario", + "geography": { + "type": "Point", + "coordinates": [ + -73.4671374229611, + 45.4398607616179 + ] + } + }, + { + "id": "5572", + "code": "30320", + "data": { + "gtfs": { + "stop_id": "5572", + "stop_code": "30320", + "stop_name": "av. Orégon et Ontario", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Orégon et Ontario", + "geography": { + "type": "Point", + "coordinates": [ + -73.4663367554822, + 45.4397778031727 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.1304444567099 + }, + "name": "av. Orégon et Ontario", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.466737089, + 45.439819282 + ] + }, + "is_frozen": false, + "integer_id": 1910, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.39037, + 45.466817 + ] + }, + "id": 1911, + "properties": { + "id": "78e9801c-50c9-4092-905b-26f4c2c9691f", + "code": "30325", + "data": { + "stops": [ + { + "id": "5577", + "code": "30325", + "data": { + "gtfs": { + "stop_id": "5577", + "stop_code": "30325", + "stop_name": "boul. Kimber et Régina-Gagnon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Régina-Gagnon", + "geography": { + "type": "Point", + "coordinates": [ + -73.3905086467741, + 45.4668359574056 + ] + } + }, + { + "id": "5578", + "code": "30326", + "data": { + "gtfs": { + "stop_id": "5578", + "stop_code": "30326", + "stop_name": "boul. Kimber et Régina-Gagnon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Kimber et Régina-Gagnon", + "geography": { + "type": "Point", + "coordinates": [ + -73.3902320399191, + 45.466798272622 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5853968484112 + }, + "name": "boul. Kimber et Régina-Gagnon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.390370343, + 45.466817115 + ] + }, + "is_frozen": false, + "integer_id": 1911, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.387934, + 45.489795 + ] + }, + "id": 1912, + "properties": { + "id": "8d50e155-65e6-4b67-8d83-f347e12cf6d7", + "code": "30327", + "data": { + "stops": [ + { + "id": "5579", + "code": "30327", + "data": { + "gtfs": { + "stop_id": "5579", + "stop_code": "30327", + "stop_name": "ch. de Chambly et av. Roméo", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et av. Roméo", + "geography": { + "type": "Point", + "coordinates": [ + -73.3879175497046, + 45.4898678968787 + ] + } + }, + { + "id": "5580", + "code": "30328", + "data": { + "gtfs": { + "stop_id": "5580", + "stop_code": "30328", + "stop_name": "ch. de Chambly et av. Roméo", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et av. Roméo", + "geography": { + "type": "Point", + "coordinates": [ + -73.3879510745455, + 45.4897211425286 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.9731089675066 + }, + "name": "ch. de Chambly et av. Roméo", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.387934312, + 45.48979452 + ] + }, + "is_frozen": false, + "integer_id": 1912, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.358789, + 45.453187 + ] + }, + "id": 1913, + "properties": { + "id": "391ee800-682d-4882-8762-f7283ff37556", + "code": "30329", + "data": { + "stops": [ + { + "id": "5581", + "code": "30329", + "data": { + "gtfs": { + "stop_id": "5581", + "stop_code": "30329", + "stop_name": "La Fredière et La Durantaye", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Fredière et La Durantaye", + "geography": { + "type": "Point", + "coordinates": [ + -73.3590247599804, + 45.453211650927 + ] + } + }, + { + "id": "5585", + "code": "30333", + "data": { + "gtfs": { + "stop_id": "5585", + "stop_code": "30333", + "stop_name": "La Fredière et La Durantaye", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Fredière et La Durantaye", + "geography": { + "type": "Point", + "coordinates": [ + -73.3585526442622, + 45.4531620676968 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3556265761997 + }, + "name": "La Fredière et La Durantaye", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.358788702, + 45.453186859 + ] + }, + "is_frozen": false, + "integer_id": 1913, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.302406, + 45.525069 + ] + }, + "id": 1914, + "properties": { + "id": "26fb8877-5e09-4777-bcb0-88e1fd0fc274", + "code": "30330", + "data": { + "stops": [ + { + "id": "5582", + "code": "30330", + "data": { + "gtfs": { + "stop_id": "5582", + "stop_code": "30330", + "stop_name": "boul. Sir-Wilfrid-Laurier - (116) ouest et boul. du Millénaire", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier - (116) ouest et boul. du Millénaire", + "geography": { + "type": "Point", + "coordinates": [ + -73.3023082633461, + 45.5250434648852 + ] + } + }, + { + "id": "5622", + "code": "30371", + "data": { + "gtfs": { + "stop_id": "5622", + "stop_code": "30371", + "stop_name": "boul. du Millénaire et boul. Sir-Wilfrid-Laurier - (116) ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Millénaire et boul. Sir-Wilfrid-Laurier - (116) ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3025039552483, + 45.5250954595775 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5692389485546 + }, + "name": "boul. Sir-Wilfrid-Laurier - (116) ouest et boul. du Millénaire", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.302406109, + 45.525069462 + ] + }, + "is_frozen": false, + "integer_id": 1914, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.362507, + 45.450931 + ] + }, + "id": 1915, + "properties": { + "id": "79ae40e4-ac61-4b2e-a0be-b4970ad0e618", + "code": "30334", + "data": { + "stops": [ + { + "id": "5586", + "code": "30334", + "data": { + "gtfs": { + "stop_id": "5586", + "stop_code": "30334", + "stop_name": "La Fredière et Parc Carignan-Salières", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Fredière et Parc Carignan-Salières", + "geography": { + "type": "Point", + "coordinates": [ + -73.3623143762237, + 45.4507286657101 + ] + } + }, + { + "id": "5587", + "code": "30336", + "data": { + "gtfs": { + "stop_id": "5587", + "stop_code": "30336", + "stop_name": "La Fredière et Pacific", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Fredière et Pacific", + "geography": { + "type": "Point", + "coordinates": [ + -73.3626990652355, + 45.4511325446947 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.317607969559 + }, + "name": "La Fredière et Parc Carignan-Salières", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.362506721, + 45.450930605 + ] + }, + "is_frozen": false, + "integer_id": 1915, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.36031, + 45.449858 + ] + }, + "id": 1916, + "properties": { + "id": "21eee29a-2e1c-4976-998c-3e4733f522e7", + "code": "30337", + "data": { + "stops": [ + { + "id": "5588", + "code": "30337", + "data": { + "gtfs": { + "stop_id": "5588", + "stop_code": "30337", + "stop_name": "La Fredière et civique 4110", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Fredière et civique 4110", + "geography": { + "type": "Point", + "coordinates": [ + -73.3605840474714, + 45.4496659417352 + ] + } + }, + { + "id": "5589", + "code": "30338", + "data": { + "gtfs": { + "stop_id": "5589", + "stop_code": "30338", + "stop_name": "La Fredière et civique 4041", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Fredière et civique 4041", + "geography": { + "type": "Point", + "coordinates": [ + -73.3600350636187, + 45.4500506848565 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2995410868831 + }, + "name": "La Fredière et civique 4110", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.360309556, + 45.449858313 + ] + }, + "is_frozen": false, + "integer_id": 1916, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.358947, + 45.451385 + ] + }, + "id": 1917, + "properties": { + "id": "35bbf632-18f8-44dd-ab04-b98a1c0d6a9e", + "code": "30339", + "data": { + "stops": [ + { + "id": "5590", + "code": "30339", + "data": { + "gtfs": { + "stop_id": "5590", + "stop_code": "30339", + "stop_name": "La Fredière et civique 3950", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Fredière et civique 3950", + "geography": { + "type": "Point", + "coordinates": [ + -73.3587352664732, + 45.4515345557634 + ] + } + }, + { + "id": "5591", + "code": "30340", + "data": { + "gtfs": { + "stop_id": "5591", + "stop_code": "30340", + "stop_name": "La Fredière et civique 3961", + "location_type": 0, + "parent_station": "" + } + }, + "name": "La Fredière et civique 3961", + "geography": { + "type": "Point", + "coordinates": [ + -73.3591592830275, + 45.451235009567 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3252606521538 + }, + "name": "La Fredière et civique 3950", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.358947275, + 45.451384783 + ] + }, + "is_frozen": false, + "integer_id": 1917, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.34679, + 45.512369 + ] + }, + "id": 1918, + "properties": { + "id": "71e14567-ffe9-47f4-8913-115ccc452daf", + "code": "30342", + "data": { + "stops": [ + { + "id": "5593", + "code": "30342", + "data": { + "gtfs": { + "stop_id": "5593", + "stop_code": "30342", + "stop_name": "montée Sabourin et Gardenvale", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Sabourin et Gardenvale", + "geography": { + "type": "Point", + "coordinates": [ + -73.346931416679, + 45.5123165614082 + ] + } + }, + { + "id": "5594", + "code": "30343", + "data": { + "gtfs": { + "stop_id": "5594", + "stop_code": "30343", + "stop_name": "montée Sabourin et Gardenvale", + "location_type": 0, + "parent_station": "" + } + }, + "name": "montée Sabourin et Gardenvale", + "geography": { + "type": "Point", + "coordinates": [ + -73.3466486624695, + 45.5124216157125 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3544809702104 + }, + "name": "montée Sabourin et Gardenvale", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.34679004, + 45.512369089 + ] + }, + "is_frozen": false, + "integer_id": 1918, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.510856, + 45.495901 + ] + }, + "id": 1919, + "properties": { + "id": "144dbf94-6da5-4246-8207-b5ee6c953066", + "code": "30346", + "data": { + "stops": [ + { + "id": "5597", + "code": "30346", + "data": { + "gtfs": { + "stop_id": "5597", + "stop_code": "30346", + "stop_name": "av. Hickson et Osborne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Hickson et Osborne", + "geography": { + "type": "Point", + "coordinates": [ + -73.5108564369429, + 45.4959009210834 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0762250203801 + }, + "name": "av. Hickson et Osborne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.510856437, + 45.495900921 + ] + }, + "is_frozen": false, + "integer_id": 1919, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.405574, + 45.574879 + ] + }, + "id": 1920, + "properties": { + "id": "e2e77ab6-27d8-4ca8-9f93-36a4bfb46efb", + "code": "30351", + "data": { + "stops": [ + { + "id": "5602", + "code": "30351", + "data": { + "gtfs": { + "stop_id": "5602", + "stop_code": "30351", + "stop_name": "ch. Carrefour de la Rive-Sud et ch. de Touraine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. Carrefour de la Rive-Sud et ch. de Touraine", + "geography": { + "type": "Point", + "coordinates": [ + -73.4055738629754, + 45.5748792261172 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4128897622357 + }, + "name": "ch. Carrefour de la Rive-Sud et ch. de Touraine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.405573863, + 45.574879226 + ] + }, + "is_frozen": false, + "integer_id": 1920, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.404707, + 45.576017 + ] + }, + "id": 1921, + "properties": { + "id": "d3a6dc19-15b0-45f0-a45a-d0eca5d46fd7", + "code": "30352", + "data": { + "stops": [ + { + "id": "5603", + "code": "30352", + "data": { + "gtfs": { + "stop_id": "5603", + "stop_code": "30352", + "stop_name": "ch. de Touraine et COSTCO", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Touraine et COSTCO", + "geography": { + "type": "Point", + "coordinates": [ + -73.4048204514988, + 45.5757946699508 + ] + } + }, + { + "id": "5608", + "code": "30357", + "data": { + "gtfs": { + "stop_id": "5608", + "stop_code": "30357", + "stop_name": "ch. de Touraine et COSTCO", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Touraine et COSTCO", + "geography": { + "type": "Point", + "coordinates": [ + -73.4045934848874, + 45.576239448201 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4321876504544 + }, + "name": "ch. de Touraine et COSTCO", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.404706968, + 45.576017059 + ] + }, + "is_frozen": false, + "integer_id": 1921, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.403486, + 45.580854 + ] + }, + "id": 1922, + "properties": { + "id": "44406260-256d-49c7-a91f-d8d2be15f526", + "code": "30353", + "data": { + "stops": [ + { + "id": "5604", + "code": "30353", + "data": { + "gtfs": { + "stop_id": "5604", + "stop_code": "30353", + "stop_name": "des Sureaux et civique 658", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Sureaux et civique 658", + "geography": { + "type": "Point", + "coordinates": [ + -73.4034859564902, + 45.58085443997 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5142435789342 + }, + "name": "des Sureaux et civique 658", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.403485956, + 45.58085444 + ] + }, + "is_frozen": false, + "integer_id": 1922, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.401842, + 45.582389 + ] + }, + "id": 1923, + "properties": { + "id": "758aaf15-550c-4ca9-b023-6270ea96c95b", + "code": "30354", + "data": { + "stops": [ + { + "id": "5605", + "code": "30354", + "data": { + "gtfs": { + "stop_id": "5605", + "stop_code": "30354", + "stop_name": "des Sureaux et civique 718", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Sureaux et civique 718", + "geography": { + "type": "Point", + "coordinates": [ + -73.4015314795572, + 45.58255791861 + ] + } + }, + { + "id": "5620", + "code": "30369", + "data": { + "gtfs": { + "stop_id": "5620", + "stop_code": "30369", + "stop_name": "des Sureaux et civique 714", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Sureaux et civique 714", + "geography": { + "type": "Point", + "coordinates": [ + -73.4021534741762, + 45.5822197370556 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5402755954514 + }, + "name": "des Sureaux et civique 718", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.401842477, + 45.582388828 + ] + }, + "is_frozen": false, + "integer_id": 1923, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.403725, + 45.580852 + ] + }, + "id": 1924, + "properties": { + "id": "ac37fcc5-ab7a-4274-84f7-80a37a395c91", + "code": "30355", + "data": { + "stops": [ + { + "id": "5606", + "code": "30355", + "data": { + "gtfs": { + "stop_id": "5606", + "stop_code": "30355", + "stop_name": "des Sureaux et civique 658", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Sureaux et civique 658", + "geography": { + "type": "Point", + "coordinates": [ + -73.4037247706525, + 45.5808517845204 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5141985367392 + }, + "name": "des Sureaux et civique 658", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.403724771, + 45.580851785 + ] + }, + "is_frozen": false, + "integer_id": 1924, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.465577, + 45.461127 + ] + }, + "id": 1925, + "properties": { + "id": "74887516-47d5-4269-9513-84672d18e287", + "code": "30366", + "data": { + "stops": [ + { + "id": "5617", + "code": "30366", + "data": { + "gtfs": { + "stop_id": "5617", + "stop_code": "30366", + "stop_name": "boul. Taschereau et PLACE PORTOBELLO", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et PLACE PORTOBELLO", + "geography": { + "type": "Point", + "coordinates": [ + -73.4655767130588, + 45.4611265760057 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4894492760645 + }, + "name": "boul. Taschereau et PLACE PORTOBELLO", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.465576713, + 45.461126576 + ] + }, + "is_frozen": false, + "integer_id": 1925, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.495978, + 45.549954 + ] + }, + "id": 1926, + "properties": { + "id": "86b1f9fa-fc35-4bee-a9b9-a70269091ef1", + "code": "30367", + "data": { + "stops": [ + { + "id": "5618", + "code": "30367", + "data": { + "gtfs": { + "stop_id": "5618", + "stop_code": "30367", + "stop_name": "Geoffrion et Charland", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Geoffrion et Charland", + "geography": { + "type": "Point", + "coordinates": [ + -73.4959775572487, + 45.5499537345074 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9904384470641 + }, + "name": "Geoffrion et Charland", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.495977557, + 45.549953735 + ] + }, + "is_frozen": false, + "integer_id": 1926, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.436545, + 45.508102 + ] + }, + "id": 1927, + "properties": { + "id": "4f05d74f-7126-4527-951d-20bf28624a4f", + "code": "30373", + "data": { + "stops": [ + { + "id": "5624", + "code": "30373", + "data": { + "gtfs": { + "stop_id": "5624", + "stop_code": "30373", + "stop_name": "Gare Longueuil / St-Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gare Longueuil / St-Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4365445738991, + 45.5081017553201 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.28235438811 + }, + "name": "Gare Longueuil / St-Hubert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.436544574, + 45.508101755 + ] + }, + "is_frozen": false, + "integer_id": 1927, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.413744, + 45.560866 + ] + }, + "id": 1928, + "properties": { + "id": "1fe4d00f-490a-4b9c-a4fc-f708161d232c", + "code": "30374", + "data": { + "stops": [ + { + "id": "5625", + "code": "30374", + "data": { + "gtfs": { + "stop_id": "5625", + "stop_code": "30374", + "stop_name": "J.-A.-Bombardier et civique 165", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et civique 165", + "geography": { + "type": "Point", + "coordinates": [ + -73.4136719394462, + 45.560807279953 + ] + } + }, + { + "id": "5860", + "code": "30629", + "data": { + "gtfs": { + "stop_id": "5860", + "stop_code": "30629", + "stop_name": "J.-A.-Bombardier et civique 165", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et civique 165", + "geography": { + "type": "Point", + "coordinates": [ + -73.4138155043624, + 45.5609249939453 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1753197006071 + }, + "name": "J.-A.-Bombardier et civique 165", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.413743722, + 45.560866137 + ] + }, + "is_frozen": false, + "integer_id": 1928, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.495503, + 45.537159 + ] + }, + "id": 1929, + "properties": { + "id": "081e45a0-31c3-487c-996e-66d1b824569d", + "code": "30375", + "data": { + "stops": [ + { + "id": "5626", + "code": "30375", + "data": { + "gtfs": { + "stop_id": "5626", + "stop_code": "30375", + "stop_name": "De Gentilly est et Thurber", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Gentilly est et Thurber", + "geography": { + "type": "Point", + "coordinates": [ + -73.4955030642438, + 45.5371588121969 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7737983312212 + }, + "name": "De Gentilly est et Thurber", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.495503064, + 45.537158812 + ] + }, + "is_frozen": false, + "integer_id": 1929, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482949, + 45.53878 + ] + }, + "id": 1930, + "properties": { + "id": "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", + "code": "30403", + "data": { + "stops": [ + { + "id": "5636", + "code": "30403", + "data": { + "gtfs": { + "stop_id": "5636", + "stop_code": "30403", + "stop_name": "boul. Roland-Therrien et Saint-Michel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et Saint-Michel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4829486862647, + 45.5387802033975 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8012431955162 + }, + "name": "boul. Roland-Therrien et Saint-Michel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482948686, + 45.538780203 + ] + }, + "is_frozen": false, + "integer_id": 1930, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.482406, + 45.53897 + ] + }, + "id": 1931, + "properties": { + "id": "31e8057b-0fb0-44bd-83cf-3acad24654ec", + "code": "30404", + "data": { + "stops": [ + { + "id": "5637", + "code": "30404", + "data": { + "gtfs": { + "stop_id": "5637", + "stop_code": "30404", + "stop_name": "boul. Roland-Therrien et Saint-Michel", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et Saint-Michel", + "geography": { + "type": "Point", + "coordinates": [ + -73.4824062269379, + 45.5389698329488 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8044531664373 + }, + "name": "boul. Roland-Therrien et Saint-Michel", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.482406227, + 45.538969833 + ] + }, + "is_frozen": false, + "integer_id": 1931, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.491923, + 45.540812 + ] + }, + "id": 1932, + "properties": { + "id": "411bafbe-bac8-4586-9af4-bc0b3163bdde", + "code": "30411", + "data": { + "stops": [ + { + "id": "5644", + "code": "30411", + "data": { + "gtfs": { + "stop_id": "5644", + "stop_code": "30411", + "stop_name": "De Gentilly est et d'Auvergne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Gentilly est et d'Auvergne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4919226320046, + 45.5408122102895 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8356417613222 + }, + "name": "De Gentilly est et d'Auvergne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.491922632, + 45.54081221 + ] + }, + "is_frozen": false, + "integer_id": 1932, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.433937, + 45.522328 + ] + }, + "id": 1933, + "properties": { + "id": "9b519782-0187-4aff-8d16-ed5c874d6b88", + "code": "30412", + "data": { + "stops": [ + { + "id": "5645", + "code": "30412", + "data": { + "gtfs": { + "stop_id": "5645", + "stop_code": "30412", + "stop_name": "boul. Roland-Therrien et boul. Vauquelin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et boul. Vauquelin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4339369886825, + 45.5223278340044 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5228670066829 + }, + "name": "boul. Roland-Therrien et boul. Vauquelin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.433936989, + 45.522327834 + ] + }, + "is_frozen": false, + "integer_id": 1933, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.442183, + 45.524607 + ] + }, + "id": 1934, + "properties": { + "id": "f902a061-c5e9-4964-8e41-eba87bfc63fc", + "code": "30413", + "data": { + "stops": [ + { + "id": "5646", + "code": "30413", + "data": { + "gtfs": { + "stop_id": "5646", + "stop_code": "30413", + "stop_name": "boul. Roland-Therrien et du Châtelet", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et du Châtelet", + "geography": { + "type": "Point", + "coordinates": [ + -73.442182583732, + 45.5246067418842 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.561412024859 + }, + "name": "boul. Roland-Therrien et du Châtelet", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442182584, + 45.524606742 + ] + }, + "is_frozen": false, + "integer_id": 1934, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.383358, + 45.504181 + ] + }, + "id": 1935, + "properties": { + "id": "f5878f34-f127-426a-b40a-4b944c9b826c", + "code": "30415", + "data": { + "stops": [ + { + "id": "5647", + "code": "30415", + "data": { + "gtfs": { + "stop_id": "5647", + "stop_code": "30415", + "stop_name": "boul. Saint-Bruno et HOME DEPOT", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Saint-Bruno et HOME DEPOT", + "geography": { + "type": "Point", + "coordinates": [ + -73.3833576156395, + 45.5041813840462 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2161064712561 + }, + "name": "boul. Saint-Bruno et HOME DEPOT", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.383357616, + 45.504181384 + ] + }, + "is_frozen": false, + "integer_id": 1935, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.556016, + 45.49566 + ] + }, + "id": 1936, + "properties": { + "id": "41c5e691-5e17-40ab-889a-89c7787b0afb", + "code": "30418", + "data": { + "stops": [ + { + "id": "5650", + "code": "30418", + "data": { + "gtfs": { + "stop_id": "5650", + "stop_code": "30418", + "stop_name": "boul. Robert-Bourassa et Wellington", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Robert-Bourassa et Wellington", + "geography": { + "type": "Point", + "coordinates": [ + -73.5560158238316, + 45.4956601967783 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.0721593942951 + }, + "name": "boul. Robert-Bourassa et Wellington", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.556015824, + 45.495660197 + ] + }, + "is_frozen": false, + "integer_id": 1936, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.477522, + 45.44917 + ] + }, + "id": 1937, + "properties": { + "id": "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", + "code": "30428", + "data": { + "stops": [ + { + "id": "5660", + "code": "30428", + "data": { + "gtfs": { + "stop_id": "5660", + "stop_code": "30428", + "stop_name": "ECOLE SECONDAIRE LUCILLE-TEASDALE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ECOLE SECONDAIRE LUCILLE-TEASDALE", + "geography": { + "type": "Point", + "coordinates": [ + -73.477522088085, + 45.4491704917061 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2879526337093 + }, + "name": "ECOLE SECONDAIRE LUCILLE-TEASDALE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.477522088, + 45.449170492 + ] + }, + "is_frozen": false, + "integer_id": 1937, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47593, + 45.435269 + ] + }, + "id": 1938, + "properties": { + "id": "a09465ea-562d-48bd-b60a-ae948c06a28a", + "code": "30432", + "data": { + "stops": [ + { + "id": "5664", + "code": "30432", + "data": { + "gtfs": { + "stop_id": "5664", + "stop_code": "30432", + "stop_name": "boul. Taschereau et boul. Matte", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Taschereau et boul. Matte", + "geography": { + "type": "Point", + "coordinates": [ + -73.4759299774336, + 45.4352686046701 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.0538226461122 + }, + "name": "boul. Taschereau et boul. Matte", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475929977, + 45.435268605 + ] + }, + "is_frozen": false, + "integer_id": 1938, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.474016, + 45.47633 + ] + }, + "id": 1939, + "properties": { + "id": "d73e4ff6-4502-4376-9cf1-5410d307a82f", + "code": "30433", + "data": { + "stops": [ + { + "id": "5665", + "code": "30433", + "data": { + "gtfs": { + "stop_id": "5665", + "stop_code": "30433", + "stop_name": "boul. Lapinière et civique 2101", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et civique 2101", + "geography": { + "type": "Point", + "coordinates": [ + -73.4742657566518, + 45.4762963398144 + ] + } + }, + { + "id": "5666", + "code": "30434", + "data": { + "gtfs": { + "stop_id": "5666", + "stop_code": "30434", + "stop_name": "av. Victoria et civique 2124", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Victoria et civique 2124", + "geography": { + "type": "Point", + "coordinates": [ + -73.4737659510707, + 45.4763629443962 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7458507613248 + }, + "name": "boul. Lapinière et civique 2101", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474015854, + 45.476329642 + ] + }, + "is_frozen": false, + "integer_id": 1939, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.375668, + 45.503417 + ] + }, + "id": 1940, + "properties": { + "id": "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", + "code": "30437", + "data": { + "stops": [ + { + "id": "5669", + "code": "30437", + "data": { + "gtfs": { + "stop_id": "5669", + "stop_code": "30437", + "stop_name": "Stationnement des Promenades et civique 1155", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Stationnement des Promenades et civique 1155", + "geography": { + "type": "Point", + "coordinates": [ + -73.3756683938396, + 45.5034168405425 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2031885275923 + }, + "name": "Stationnement des Promenades et civique 1155", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.375668394, + 45.503416841 + ] + }, + "is_frozen": false, + "integer_id": 1940, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492893, + 45.560462 + ] + }, + "id": 1941, + "properties": { + "id": "b16a31c8-203c-44e6-a193-88731a47056e", + "code": "30439", + "data": { + "stops": [ + { + "id": "5671", + "code": "30439", + "data": { + "gtfs": { + "stop_id": "5671", + "stop_code": "30439", + "stop_name": "boul. Marie-Victorin et Lumenpulse Group Inc.", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Lumenpulse Group Inc.", + "geography": { + "type": "Point", + "coordinates": [ + -73.4928930773956, + 45.5604620391935 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1684714524371 + }, + "name": "boul. Marie-Victorin et Lumenpulse Group Inc.", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492893077, + 45.560462039 + ] + }, + "is_frozen": false, + "integer_id": 1941, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.434312, + 45.522773 + ] + }, + "id": 1942, + "properties": { + "id": "455644f9-4a24-446b-b548-a53bc406a4d8", + "code": "30440", + "data": { + "stops": [ + { + "id": "5672", + "code": "30440", + "data": { + "gtfs": { + "stop_id": "5672", + "stop_code": "30440", + "stop_name": "boul. Roland-Therrien et boul. Vauquelin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roland-Therrien et boul. Vauquelin", + "geography": { + "type": "Point", + "coordinates": [ + -73.4343116006921, + 45.5227728067287 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5303928320998 + }, + "name": "boul. Roland-Therrien et boul. Vauquelin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.434311601, + 45.522772807 + ] + }, + "is_frozen": false, + "integer_id": 1942, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.31752, + 45.520055 + ] + }, + "id": 1943, + "properties": { + "id": "a94f1c18-1655-455b-9813-9178e8c9257e", + "code": "30441", + "data": { + "stops": [ + { + "id": "5673", + "code": "30441", + "data": { + "gtfs": { + "stop_id": "5673", + "stop_code": "30441", + "stop_name": "boul. Sir-Wilfrid-Laurier - (116) est et boul. De Boucherville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier - (116) est et boul. De Boucherville", + "geography": { + "type": "Point", + "coordinates": [ + -73.317520310678, + 45.5200545735066 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4844221282823 + }, + "name": "boul. Sir-Wilfrid-Laurier - (116) est et boul. De Boucherville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.317520311, + 45.520054574 + ] + }, + "is_frozen": false, + "integer_id": 1943, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.436784, + 45.516231 + ] + }, + "id": 1944, + "properties": { + "id": "64e79ef5-e499-4b0b-96e8-a047e210960b", + "code": "30445", + "data": { + "stops": [ + { + "id": "5677", + "code": "30445", + "data": { + "gtfs": { + "stop_id": "5677", + "stop_code": "30445", + "stop_name": "boul. Vauquelin et Louis-Dufresne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Vauquelin et Louis-Dufresne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4366391335285, + 45.5160666189918 + ] + } + }, + { + "id": "5679", + "code": "30447", + "data": { + "gtfs": { + "stop_id": "5679", + "stop_code": "30447", + "stop_name": "boul. Vauquelin et Chateaufort", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Vauquelin et Chateaufort", + "geography": { + "type": "Point", + "coordinates": [ + -73.4369298408102, + 45.5163945010413 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4197616220946 + }, + "name": "boul. Vauquelin et Louis-Dufresne", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.436784487, + 45.51623056 + ] + }, + "is_frozen": false, + "integer_id": 1944, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.460814, + 45.532838 + ] + }, + "id": 1945, + "properties": { + "id": "85594754-b583-4735-aac6-bc45902705ca", + "code": "30449", + "data": { + "stops": [ + { + "id": "5681", + "code": "30449", + "data": { + "gtfs": { + "stop_id": "5681", + "stop_code": "30449", + "stop_name": "boul. Jacques-Cartier est et boul. Roland-Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et boul. Roland-Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.460814379677, + 45.532837722166 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7006678141536 + }, + "name": "boul. Jacques-Cartier est et boul. Roland-Therrien", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46081438, + 45.532837722 + ] + }, + "is_frozen": false, + "integer_id": 1945, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.439402, + 45.512425 + ] + }, + "id": 1946, + "properties": { + "id": "fd832741-dd18-4c66-bea3-40a37c4cdb9c", + "code": "30450", + "data": { + "stops": [ + { + "id": "5682", + "code": "30450", + "data": { + "gtfs": { + "stop_id": "5682", + "stop_code": "30450", + "stop_name": "boul. Vauquelin et civique 12", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Vauquelin et civique 12", + "geography": { + "type": "Point", + "coordinates": [ + -73.4392098952403, + 45.5123395578828 + ] + } + }, + { + "id": "5683", + "code": "30451", + "data": { + "gtfs": { + "stop_id": "5683", + "stop_code": "30451", + "stop_name": "boul. Vauquelin et civique 15", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Vauquelin et civique 15", + "geography": { + "type": "Point", + "coordinates": [ + -73.4395950759844, + 45.5125095164214 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3554182603552 + }, + "name": "boul. Vauquelin et civique 12", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.439402486, + 45.512424537 + ] + }, + "is_frozen": false, + "integer_id": 1946, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.363105, + 45.476797 + ] + }, + "id": 1947, + "properties": { + "id": "97664706-d6c8-4052-8818-e52a0be48a3e", + "code": "30456", + "data": { + "stops": [ + { + "id": "5688", + "code": "30456", + "data": { + "gtfs": { + "stop_id": "5688", + "stop_code": "30456", + "stop_name": "ch. de Chambly et civique 8755", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et civique 8755", + "geography": { + "type": "Point", + "coordinates": [ + -73.3629725600358, + 45.4766294953762 + ] + } + }, + { + "id": "5689", + "code": "30457", + "data": { + "gtfs": { + "stop_id": "5689", + "stop_code": "30457", + "stop_name": "ch. de Chambly et civique 8750", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et civique 8750", + "geography": { + "type": "Point", + "coordinates": [ + -73.3632366635097, + 45.4769642581015 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7537339855886 + }, + "name": "ch. de Chambly et civique 8755", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.363104612, + 45.476796877 + ] + }, + "is_frozen": false, + "integer_id": 1947, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.406333, + 45.460118 + ] + }, + "id": 1948, + "properties": { + "id": "abd6e1bb-b826-4462-87f2-3bae5c6594ea", + "code": "30458", + "data": { + "stops": [ + { + "id": "5690", + "code": "30458", + "data": { + "gtfs": { + "stop_id": "5690", + "stop_code": "30458", + "stop_name": "Armand-Frappier et civique 5100", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Armand-Frappier et civique 5100", + "geography": { + "type": "Point", + "coordinates": [ + -73.4063328877372, + 45.4601175260776 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4724387917531 + }, + "name": "Armand-Frappier et civique 5100", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.406332888, + 45.460117526 + ] + }, + "is_frozen": false, + "integer_id": 1948, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.336953, + 45.560577 + ] + }, + "id": 1949, + "properties": { + "id": "0016b55f-c207-48df-a47e-555a19e3c2d7", + "code": "30461", + "data": { + "stops": [ + { + "id": "5693", + "code": "30461", + "data": { + "gtfs": { + "stop_id": "5693", + "stop_code": "30461", + "stop_name": "Ski Saint-Bruno", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Ski Saint-Bruno", + "geography": { + "type": "Point", + "coordinates": [ + -73.3369529253996, + 45.5605773034506 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1704248163936 + }, + "name": "Ski Saint-Bruno", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.336952925, + 45.560577303 + ] + }, + "is_frozen": false, + "integer_id": 1949, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448032, + 45.599704 + ] + }, + "id": 1950, + "properties": { + "id": "96c08dfd-d2e7-4584-a6b3-36c3a2e1abcc", + "code": "30464", + "data": { + "stops": [ + { + "id": "5696", + "code": "30464", + "data": { + "gtfs": { + "stop_id": "5696", + "stop_code": "30464", + "stop_name": "boul. De Montarville et rte 132 est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. De Montarville et rte 132 est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4480318623391, + 45.5997036282802 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.83417989163 + }, + "name": "boul. De Montarville et rte 132 est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.448031862, + 45.599703628 + ] + }, + "is_frozen": false, + "integer_id": 1950, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.357151, + 45.541958 + ] + }, + "id": 1951, + "properties": { + "id": "d966dcb1-f630-4c07-ab42-a7b1e296ff4f", + "code": "30471", + "data": { + "stops": [ + { + "id": "5703", + "code": "30471", + "data": { + "gtfs": { + "stop_id": "5703", + "stop_code": "30471", + "stop_name": "rang des Vingt-Cinq est et Eulalie-Durocher", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rang des Vingt-Cinq est et Eulalie-Durocher", + "geography": { + "type": "Point", + "coordinates": [ + -73.3571511911758, + 45.5419580176278 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8550400469994 + }, + "name": "rang des Vingt-Cinq est et Eulalie-Durocher", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.357151191, + 45.541958018 + ] + }, + "is_frozen": false, + "integer_id": 1951, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.432871, + 45.523629 + ] + }, + "id": 1952, + "properties": { + "id": "6b5e798b-1890-48ed-a234-04c622fd13ea", + "code": "30474", + "data": { + "stops": [ + { + "id": "5705", + "code": "30474", + "data": { + "gtfs": { + "stop_id": "5705", + "stop_code": "30474", + "stop_name": "boul. Vauquelin et des Escadrons", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Vauquelin et des Escadrons", + "geography": { + "type": "Point", + "coordinates": [ + -73.4328713315838, + 45.5236285602804 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5448666728997 + }, + "name": "boul. Vauquelin et des Escadrons", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.432871332, + 45.52362856 + ] + }, + "is_frozen": false, + "integer_id": 1952, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.431364, + 45.526635 + ] + }, + "id": 1953, + "properties": { + "id": "186b2759-8d28-41b8-beae-bac2adf7b3f9", + "code": "30475", + "data": { + "stops": [ + { + "id": "5706", + "code": "30475", + "data": { + "gtfs": { + "stop_id": "5706", + "stop_code": "30475", + "stop_name": "boul. Vauquelin et des Dirigeables", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Vauquelin et des Dirigeables", + "geography": { + "type": "Point", + "coordinates": [ + -73.4313644791534, + 45.5266353506158 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5957274269779 + }, + "name": "boul. Vauquelin et des Dirigeables", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431364479, + 45.526635351 + ] + }, + "is_frozen": false, + "integer_id": 1953, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.430898, + 45.448972 + ] + }, + "id": 1954, + "properties": { + "id": "1f1619c9-3302-430c-9ade-aab4bf9e1e55", + "code": "30476", + "data": { + "stops": [ + { + "id": "5707", + "code": "30476", + "data": { + "gtfs": { + "stop_id": "5707", + "stop_code": "30476", + "stop_name": "boul. du Quartier et boul. Lapinière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et boul. Lapinière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4308976046759, + 45.4489718678943 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2846062816483 + }, + "name": "boul. du Quartier et boul. Lapinière", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.430897605, + 45.448971868 + ] + }, + "is_frozen": false, + "integer_id": 1954, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.432775, + 45.449725 + ] + }, + "id": 1955, + "properties": { + "id": "0b421cac-8896-468a-9252-ce5f1fee4e84", + "code": "30477", + "data": { + "stops": [ + { + "id": "5708", + "code": "30477", + "data": { + "gtfs": { + "stop_id": "5708", + "stop_code": "30477", + "stop_name": "boul. Lapinière et civique 5005", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Lapinière et civique 5005", + "geography": { + "type": "Point", + "coordinates": [ + -73.4327750213972, + 45.4497246279088 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2972887204132 + }, + "name": "boul. Lapinière et civique 5005", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.432775021, + 45.449724628 + ] + }, + "is_frozen": false, + "integer_id": 1955, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.308635, + 45.523128 + ] + }, + "id": 1956, + "properties": { + "id": "c3cf866f-d115-4fc2-9f1e-f70f34283f5f", + "code": "30478", + "data": { + "stops": [ + { + "id": "5709", + "code": "30478", + "data": { + "gtfs": { + "stop_id": "5709", + "stop_code": "30478", + "stop_name": "boul. Sir-Wilfrid-Laurier - (116) ouest", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Sir-Wilfrid-Laurier - (116) ouest", + "geography": { + "type": "Point", + "coordinates": [ + -73.3086351596155, + 45.5231283380721 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5364060523659 + }, + "name": "boul. Sir-Wilfrid-Laurier - (116) ouest", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.30863516, + 45.523128338 + ] + }, + "is_frozen": false, + "integer_id": 1956, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450278, + 45.568512 + ] + }, + "id": 1957, + "properties": { + "id": "ae6e0f03-aee3-4f3b-9a79-98bb90a35a7a", + "code": "30479", + "data": { + "stops": [ + { + "id": "5710", + "code": "30479", + "data": { + "gtfs": { + "stop_id": "5710", + "stop_code": "30479", + "stop_name": "boul. Jacques-Cartier est et Jean-Neveu", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et Jean-Neveu", + "geography": { + "type": "Point", + "coordinates": [ + -73.4502784223728, + 45.5685116451278 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3049156057167 + }, + "name": "boul. Jacques-Cartier est et Jean-Neveu", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450278422, + 45.568511645 + ] + }, + "is_frozen": false, + "integer_id": 1957, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475477, + 45.448582 + ] + }, + "id": 1958, + "properties": { + "id": "8f39e220-8ec5-4425-b9f8-90e418e7d6d3", + "code": "30480", + "data": { + "stops": [ + { + "id": "5711", + "code": "30480", + "data": { + "gtfs": { + "stop_id": "5711", + "stop_code": "30480", + "stop_name": "boul. Pelletier et av. Sartre", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et av. Sartre", + "geography": { + "type": "Point", + "coordinates": [ + -73.4754769366219, + 45.4485816777833 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2780325902733 + }, + "name": "boul. Pelletier et av. Sartre", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.475476937, + 45.448581678 + ] + }, + "is_frozen": false, + "integer_id": 1958, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.425115, + 45.507905 + ] + }, + "id": 1959, + "properties": { + "id": "b989758c-7e40-49d2-b551-b6f0e525013b", + "code": "30482", + "data": { + "stops": [ + { + "id": "5713", + "code": "30482", + "data": { + "gtfs": { + "stop_id": "5713", + "stop_code": "30482", + "stop_name": "av. Raoul et Jean-Baptiste-Charron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "av. Raoul et Jean-Baptiste-Charron", + "geography": { + "type": "Point", + "coordinates": [ + -73.4251149299942, + 45.5079046787935 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2790237964813 + }, + "name": "av. Raoul et Jean-Baptiste-Charron", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.42511493, + 45.507904679 + ] + }, + "is_frozen": false, + "integer_id": 1959, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.435117, + 45.509626 + ] + }, + "id": 1960, + "properties": { + "id": "48cbd834-3690-4d56-af66-277be54f9820", + "code": "30483", + "data": { + "stops": [ + { + "id": "5714", + "code": "30483", + "data": { + "gtfs": { + "stop_id": "5714", + "stop_code": "30483", + "stop_name": "ch. de Chambly et Gare Longueuil / St-Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. de Chambly et Gare Longueuil / St-Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4351170042204, + 45.5096258249332 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3081123946881 + }, + "name": "ch. de Chambly et Gare Longueuil / St-Hubert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.435117004, + 45.509625825 + ] + }, + "is_frozen": false, + "integer_id": 1960, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.455788, + 45.541561 + ] + }, + "id": 1961, + "properties": { + "id": "6f622956-b7a2-452d-975a-9f37d3afce01", + "code": "30486", + "data": { + "stops": [ + { + "id": "5717", + "code": "30486", + "data": { + "gtfs": { + "stop_id": "5717", + "stop_code": "30486", + "stop_name": "boul. Jacques-Cartier est et ch. Du Tremblay", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Jacques-Cartier est et ch. Du Tremblay", + "geography": { + "type": "Point", + "coordinates": [ + -73.4557877790503, + 45.5415606058396 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8483118137079 + }, + "name": "boul. Jacques-Cartier est et ch. Du Tremblay", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.455787779, + 45.541560606 + ] + }, + "is_frozen": false, + "integer_id": 1961, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.496988, + 45.538917 + ] + }, + "id": 1962, + "properties": { + "id": "5917d490-78cc-4191-a19b-92a11e1dbb54", + "code": "30487", + "data": { + "stops": [ + { + "id": "5718", + "code": "30487", + "data": { + "gtfs": { + "stop_id": "5718", + "stop_code": "30487", + "stop_name": "Le Moyne est et de Normandie", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Le Moyne est et de Normandie", + "geography": { + "type": "Point", + "coordinates": [ + -73.4969884267732, + 45.5389173432299 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8035646362338 + }, + "name": "Le Moyne est et de Normandie", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.496988427, + 45.538917343 + ] + }, + "is_frozen": false, + "integer_id": 1962, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.431293, + 45.449156 + ] + }, + "id": 1963, + "properties": { + "id": "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", + "code": "30488", + "data": { + "stops": [ + { + "id": "5719", + "code": "30488", + "data": { + "gtfs": { + "stop_id": "5719", + "stop_code": "30488", + "stop_name": "boul. du Quartier et boul. Lapinière", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et boul. Lapinière", + "geography": { + "type": "Point", + "coordinates": [ + -73.4312927243921, + 45.4491563130582 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.2877137494042 + }, + "name": "boul. du Quartier et boul. Lapinière", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.431292724, + 45.449156313 + ] + }, + "is_frozen": false, + "integer_id": 1963, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.454038, + 45.516006 + ] + }, + "id": 1964, + "properties": { + "id": "5f1eb6f1-dc45-44fc-bc07-9e965049da7f", + "code": "30523", + "data": { + "stops": [ + { + "id": "5754", + "code": "30523", + "data": { + "gtfs": { + "stop_id": "5754", + "stop_code": "30523", + "stop_name": "boul. Roberval ouest et Racicot", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Roberval ouest et Racicot", + "geography": { + "type": "Point", + "coordinates": [ + -73.4540378193876, + 45.516006372103 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4159712165689 + }, + "name": "boul. Roberval ouest et Racicot", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.454037819, + 45.516006372 + ] + }, + "is_frozen": false, + "integer_id": 1964, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.49887, + 45.476144 + ] + }, + "id": 1965, + "properties": { + "id": "aa2b19e6-8fc9-4313-8ff2-0087861c575d", + "code": "30527", + "data": { + "stops": [ + { + "id": "5758", + "code": "30527", + "data": { + "gtfs": { + "stop_id": "5758", + "stop_code": "30527", + "stop_name": "boul. Marie-Victorin et Verdure", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Verdure", + "geography": { + "type": "Point", + "coordinates": [ + -73.4986269529974, + 45.4760747841472 + ] + } + }, + { + "id": "5759", + "code": "30528", + "data": { + "gtfs": { + "stop_id": "5759", + "stop_code": "30528", + "stop_name": "boul. Marie-Victorin et Verdure", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et Verdure", + "geography": { + "type": "Point", + "coordinates": [ + -73.4991132526401, + 45.4762133546407 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7427198134451 + }, + "name": "boul. Marie-Victorin et Verdure", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.498870103, + 45.476144069 + ] + }, + "is_frozen": false, + "integer_id": 1965, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.427413, + 45.450937 + ] + }, + "id": 1966, + "properties": { + "id": "c74e0c90-a5ea-4788-9b1d-7bf05f50a1c4", + "code": "30532", + "data": { + "stops": [ + { + "id": "5763", + "code": "30532", + "data": { + "gtfs": { + "stop_id": "5763", + "stop_code": "30532", + "stop_name": "boul. du Quartier et des Éléments", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et des Éléments", + "geography": { + "type": "Point", + "coordinates": [ + -73.4274128432806, + 45.45093691412 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3177142719459 + }, + "name": "boul. du Quartier et des Éléments", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.427412843, + 45.450936914 + ] + }, + "is_frozen": false, + "integer_id": 1966, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.427754, + 45.451145 + ] + }, + "id": 1967, + "properties": { + "id": "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", + "code": "30533", + "data": { + "stops": [ + { + "id": "5764", + "code": "30533", + "data": { + "gtfs": { + "stop_id": "5764", + "stop_code": "30533", + "stop_name": "boul. du Quartier et des Éléments", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. du Quartier et des Éléments", + "geography": { + "type": "Point", + "coordinates": [ + -73.4277538867517, + 45.4511445028555 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.3212120260071 + }, + "name": "boul. du Quartier et des Éléments", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.427753887, + 45.451144503 + ] + }, + "is_frozen": false, + "integer_id": 1967, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.381337, + 45.571513 + ] + }, + "id": 1968, + "properties": { + "id": "c7077046-1c3c-45a5-980c-e3cf3605f303", + "code": "30534", + "data": { + "stops": [ + { + "id": "5765", + "code": "30534", + "data": { + "gtfs": { + "stop_id": "5765", + "stop_code": "30534", + "stop_name": "HONDA CANADA INC.", + "location_type": 0, + "parent_station": "" + } + }, + "name": "HONDA CANADA INC.", + "geography": { + "type": "Point", + "coordinates": [ + -73.3813371147524, + 45.5715131995339 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3558080269025 + }, + "name": "HONDA CANADA INC.", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.381337115, + 45.5715132 + ] + }, + "is_frozen": false, + "integer_id": 1968, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.4429, + 45.613941 + ] + }, + "id": 1969, + "properties": { + "id": "d69b600d-72ec-426a-9838-289c3d328f0c", + "code": "30539", + "data": { + "stops": [ + { + "id": "5770", + "code": "30539", + "data": { + "gtfs": { + "stop_id": "5770", + "stop_code": "30539", + "stop_name": "De Montbrun et Marché public de Montbrun", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Montbrun et Marché public de Montbrun", + "geography": { + "type": "Point", + "coordinates": [ + -73.4428996474752, + 45.6139411981679 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.076051918733 + }, + "name": "De Montbrun et Marché public de Montbrun", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.442899647, + 45.613941198 + ] + }, + "is_frozen": false, + "integer_id": 1969, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.50702, + 45.507013 + ] + }, + "id": 1970, + "properties": { + "id": "bca5df0b-3970-4f0e-8644-3802bdd029df", + "code": "30543", + "data": { + "stops": [ + { + "id": "5774", + "code": "30543", + "data": { + "gtfs": { + "stop_id": "5774", + "stop_code": "30543", + "stop_name": "Green et av. de Merton", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Green et av. de Merton", + "geography": { + "type": "Point", + "coordinates": [ + -73.5070200405425, + 45.5070126750197 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2639493285775 + }, + "name": "Green et av. de Merton", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.507020041, + 45.507012675 + ] + }, + "is_frozen": false, + "integer_id": 1970, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.504709, + 45.510072 + ] + }, + "id": 1971, + "properties": { + "id": "3035cba8-14ef-4eb7-b986-fc36588b4fe9", + "code": "30544", + "data": { + "stops": [ + { + "id": "5775", + "code": "30544", + "data": { + "gtfs": { + "stop_id": "5775", + "stop_code": "30544", + "stop_name": "Green et civique 684", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Green et civique 684", + "geography": { + "type": "Point", + "coordinates": [ + -73.5047093507144, + 45.5100721687962 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3156563581425 + }, + "name": "Green et civique 684", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.504709351, + 45.510072169 + ] + }, + "is_frozen": false, + "integer_id": 1971, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.447935, + 45.614686 + ] + }, + "id": 1972, + "properties": { + "id": "b4102d0e-df60-40ed-b546-4997ce08cc57", + "code": "30555", + "data": { + "stops": [ + { + "id": "5786", + "code": "30555", + "data": { + "gtfs": { + "stop_id": "5786", + "stop_code": "30555", + "stop_name": "De Montbrun et Jacques-Lamoureux", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Montbrun et Jacques-Lamoureux", + "geography": { + "type": "Point", + "coordinates": [ + -73.4479349717419, + 45.6146860310346 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.0887103610081 + }, + "name": "De Montbrun et Jacques-Lamoureux", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447934972, + 45.614686031 + ] + }, + "is_frozen": false, + "integer_id": 1972, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.44354, + 45.609727 + ] + }, + "id": 1973, + "properties": { + "id": "f9a06f2c-0cbe-4c5b-b4ae-045860bd63ac", + "code": "30556", + "data": { + "stops": [ + { + "id": "5787", + "code": "30556", + "data": { + "gtfs": { + "stop_id": "5787", + "stop_code": "30556", + "stop_name": "ch. du Lac et Travaux publics de Boucherville", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et Travaux publics de Boucherville", + "geography": { + "type": "Point", + "coordinates": [ + -73.4435399089505, + 45.6097273693175 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.0044472285254 + }, + "name": "ch. du Lac et Travaux publics de Boucherville", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443539909, + 45.609727369 + ] + }, + "is_frozen": false, + "integer_id": 1973, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.445689, + 45.606072 + ] + }, + "id": 1974, + "properties": { + "id": "a3ecc5af-4217-4c29-8096-6f8e97684bf2", + "code": "30557", + "data": { + "stops": [ + { + "id": "5788", + "code": "30557", + "data": { + "gtfs": { + "stop_id": "5788", + "stop_code": "30557", + "stop_name": "ch. du Lac et Centre de répit-dépannage Aux Quatre Poches!", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et Centre de répit-dépannage Aux Quatre Poches!", + "geography": { + "type": "Point", + "coordinates": [ + -73.4456889869634, + 45.606072222918 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9423490062967 + }, + "name": "ch. du Lac et Centre de répit-dépannage Aux Quatre Poches!", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.445688987, + 45.606072223 + ] + }, + "is_frozen": false, + "integer_id": 1974, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.448213, + 45.604186 + ] + }, + "id": 1975, + "properties": { + "id": "7bb8c836-af43-4b8c-bf40-7cf79ce04ef2", + "code": "30558", + "data": { + "stops": [ + { + "id": "5789", + "code": "30558", + "data": { + "gtfs": { + "stop_id": "5789", + "stop_code": "30558", + "stop_name": "ch. du Lac et BIBLIOTHEQUE MONTARVILLE-BOUCHER-DE-LA-BRUÈRE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et BIBLIOTHEQUE MONTARVILLE-BOUCHER-DE-LA-BRUÈRE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4482129803019, + 45.604185899205 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.91030644205 + }, + "name": "ch. du Lac et BIBLIOTHEQUE MONTARVILLE-BOUCHER-DE-LA-BRUÈRE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.44821298, + 45.604185899 + ] + }, + "is_frozen": false, + "integer_id": 1975, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.342751, + 45.546008 + ] + }, + "id": 1976, + "properties": { + "id": "b1e10293-5bab-4099-bc2f-f533b141b0c5", + "code": "30562", + "data": { + "stops": [ + { + "id": "5793", + "code": "30562", + "data": { + "gtfs": { + "stop_id": "5793", + "stop_code": "30562", + "stop_name": "ch. St-Gabriel et SEPAQ St-Bruno", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. St-Gabriel et SEPAQ St-Bruno", + "geography": { + "type": "Point", + "coordinates": [ + -73.3427420183192, + 45.5460581328661 + ] + } + }, + { + "id": "5872", + "code": "30641", + "data": { + "gtfs": { + "stop_id": "5872", + "stop_code": "30641", + "stop_name": "ch. St-Gabriel et SEPAQ St-Bruno", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. St-Gabriel et SEPAQ St-Bruno", + "geography": { + "type": "Point", + "coordinates": [ + -73.342760861039, + 45.5459572511627 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.9236095530023 + }, + "name": "ch. St-Gabriel et SEPAQ St-Bruno", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.34275144, + 45.546007692 + ] + }, + "is_frozen": false, + "integer_id": 1976, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.490673, + 45.539717 + ] + }, + "id": 1977, + "properties": { + "id": "1c85a97d-9927-406a-a2ae-6f738750a95d", + "code": "30563", + "data": { + "stops": [ + { + "id": "5794", + "code": "30563", + "data": { + "gtfs": { + "stop_id": "5794", + "stop_code": "30563", + "stop_name": "ECOLE SECONDAIRE JACQUES-ROUSSEAU", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ECOLE SECONDAIRE JACQUES-ROUSSEAU", + "geography": { + "type": "Point", + "coordinates": [ + -73.4906727260906, + 45.5397173093232 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.817106414708 + }, + "name": "ECOLE SECONDAIRE JACQUES-ROUSSEAU", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.490672726, + 45.539717309 + ] + }, + "is_frozen": false, + "integer_id": 1977, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.43806, + 45.524135 + ] + }, + "id": 1978, + "properties": { + "id": "908faba3-76b8-49ef-bcfd-e4970978a82f", + "code": "30572", + "data": { + "stops": [ + { + "id": "5803", + "code": "30572", + "data": { + "gtfs": { + "stop_id": "5803", + "stop_code": "30572", + "stop_name": "des Samares et boul. Roland-Therrien", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Samares et boul. Roland-Therrien", + "geography": { + "type": "Point", + "coordinates": [ + -73.4380603007293, + 45.5241352049032 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.5534361576307 + }, + "name": "des Samares et boul. Roland-Therrien", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.438060301, + 45.524135205 + ] + }, + "is_frozen": false, + "integer_id": 1978, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.378481, + 45.476106 + ] + }, + "id": 1979, + "properties": { + "id": "0d06d238-233e-42a1-9804-43854d3b5184", + "code": "30576", + "data": { + "stops": [ + { + "id": "5807", + "code": "30576", + "data": { + "gtfs": { + "stop_id": "5807", + "stop_code": "30576", + "stop_name": "boul. Cousineau et Chagnon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Chagnon", + "geography": { + "type": "Point", + "coordinates": [ + -73.3784811657631, + 45.4761055526384 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7420699835828 + }, + "name": "boul. Cousineau et Chagnon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.378481166, + 45.476105553 + ] + }, + "is_frozen": false, + "integer_id": 1979, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.378946, + 45.475882 + ] + }, + "id": 1980, + "properties": { + "id": "021fa80e-da9f-408b-be90-bb5e978d84f8", + "code": "30577", + "data": { + "stops": [ + { + "id": "5808", + "code": "30577", + "data": { + "gtfs": { + "stop_id": "5808", + "stop_code": "30577", + "stop_name": "boul. Cousineau et Bernard-Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Cousineau et Bernard-Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.3790218213424, + 45.4760085119814 + ] + } + }, + { + "id": "5914", + "code": "30792", + "data": { + "gtfs": { + "stop_id": "5914", + "stop_code": "30792", + "stop_name": "Bernard-Hubert et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bernard-Hubert et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3790707924144, + 45.4758427102716 + ] + } + }, + { + "id": "5916", + "code": "30794", + "data": { + "gtfs": { + "stop_id": "5916", + "stop_code": "30794", + "stop_name": "Bernard-Hubert et boul. Cousineau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bernard-Hubert et boul. Cousineau", + "geography": { + "type": "Point", + "coordinates": [ + -73.3788208914225, + 45.4757554256988 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.7382977705455 + }, + "name": "boul. Cousineau et Bernard-Hubert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.378945842, + 45.475881969 + ] + }, + "is_frozen": false, + "integer_id": 1980, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47416, + 45.469564 + ] + }, + "id": 1981, + "properties": { + "id": "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", + "code": "30579", + "data": { + "stops": [ + { + "id": "5810", + "code": "30579", + "data": { + "gtfs": { + "stop_id": "5810", + "stop_code": "30579", + "stop_name": "boul. Pelletier et MAIL CHAMPLAIN", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Pelletier et MAIL CHAMPLAIN", + "geography": { + "type": "Point", + "coordinates": [ + -73.4741600976739, + 45.469563705177 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6317170969576 + }, + "name": "boul. Pelletier et MAIL CHAMPLAIN", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.474160098, + 45.469563705 + ] + }, + "is_frozen": false, + "integer_id": 1981, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.475283, + 45.473445 + ] + }, + "id": 1982, + "properties": { + "id": "80a85fd6-8b7e-4c4c-b616-26338ab496f1", + "code": "30580", + "data": { + "stops": [ + { + "id": "5811", + "code": "30580", + "data": { + "gtfs": { + "stop_id": "5811", + "stop_code": "30580", + "stop_name": "boul. Provencher et civique 1520", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Provencher et civique 1520", + "geography": { + "type": "Point", + "coordinates": [ + -73.4752835000107, + 45.4734447436211 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6971808396136 + }, + "name": "boul. Provencher et civique 1520", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.4752835, + 45.473444744 + ] + }, + "is_frozen": false, + "integer_id": 1982, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.485926, + 45.47325 + ] + }, + "id": 1983, + "properties": { + "id": "17fd1ec9-db8e-4d18-a174-72ce7cb4c434", + "code": "30581", + "data": { + "stops": [ + { + "id": "5812", + "code": "30581", + "data": { + "gtfs": { + "stop_id": "5812", + "stop_code": "30581", + "stop_name": "boul. Provencher et boul. Plamondon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Provencher et boul. Plamondon", + "geography": { + "type": "Point", + "coordinates": [ + -73.4859261943133, + 45.4732501310084 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.6938978703209 + }, + "name": "boul. Provencher et boul. Plamondon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.485926194, + 45.473250131 + ] + }, + "is_frozen": false, + "integer_id": 1983, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.430682, + 45.508612 + ] + }, + "id": 1984, + "properties": { + "id": "d0283e5b-f03b-432a-aa08-aa7137cbe6e7", + "code": "30582", + "data": { + "stops": [ + { + "id": "5813", + "code": "30582", + "data": { + "gtfs": { + "stop_id": "5813", + "stop_code": "30582", + "stop_name": "rte de l'Aéroport et Gare Longueuil/ Saint-Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et Gare Longueuil/ Saint-Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.4307812897398, + 45.5085515833654 + ] + } + }, + { + "id": "5814", + "code": "30583", + "data": { + "gtfs": { + "stop_id": "5814", + "stop_code": "30583", + "stop_name": "rte de l'Aéroport et Gare Longueuil/ Saint-Hubert", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et Gare Longueuil/ Saint-Hubert", + "geography": { + "type": "Point", + "coordinates": [ + -73.430582169952, + 45.5086724058199 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.2909776234748 + }, + "name": "rte de l'Aéroport et Gare Longueuil/ Saint-Hubert", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.43068173, + 45.508611995 + ] + }, + "is_frozen": false, + "integer_id": 1984, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.420389, + 45.509246 + ] + }, + "id": 1985, + "properties": { + "id": "083eddb0-b4a8-4368-8265-1cf0ef37b9f6", + "code": "30584", + "data": { + "stops": [ + { + "id": "5815", + "code": "30584", + "data": { + "gtfs": { + "stop_id": "5815", + "stop_code": "30584", + "stop_name": "rte de l'Aéroport et civique 4900", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et civique 4900", + "geography": { + "type": "Point", + "coordinates": [ + -73.4203885244329, + 45.5092462049221 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.301696318515 + }, + "name": "rte de l'Aéroport et civique 4900", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.420388524, + 45.509246205 + ] + }, + "is_frozen": false, + "integer_id": 1985, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.420424, + 45.509439 + ] + }, + "id": 1986, + "properties": { + "id": "0af40567-79a9-4b30-b572-639f90fb42b3", + "code": "30585", + "data": { + "stops": [ + { + "id": "5816", + "code": "30585", + "data": { + "gtfs": { + "stop_id": "5816", + "stop_code": "30585", + "stop_name": "rte de l'Aéroport et civique 4900", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et civique 4900", + "geography": { + "type": "Point", + "coordinates": [ + -73.4204238079452, + 45.5094390773546 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3049560923856 + }, + "name": "rte de l'Aéroport et civique 4900", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.420423808, + 45.509439077 + ] + }, + "is_frozen": false, + "integer_id": 1986, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.400527, + 45.518486 + ] + }, + "id": 1987, + "properties": { + "id": "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", + "code": "30586", + "data": { + "stops": [ + { + "id": "5817", + "code": "30586", + "data": { + "gtfs": { + "stop_id": "5817", + "stop_code": "30586", + "stop_name": "rte de l'Aéroport et John-Molson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et John-Molson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4006636488066, + 45.5183084418791 + ] + } + }, + { + "id": "5818", + "code": "30587", + "data": { + "gtfs": { + "stop_id": "5818", + "stop_code": "30587", + "stop_name": "rte de l'Aéroport et John-Molson", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et John-Molson", + "geography": { + "type": "Point", + "coordinates": [ + -73.4005986838564, + 45.51866306564 + ] + } + }, + { + "id": "5879", + "code": "30671", + "data": { + "gtfs": { + "stop_id": "5879", + "stop_code": "30671", + "stop_name": "John-Molson et rte de l'Aéroport", + "location_type": 0, + "parent_station": "" + } + }, + "name": "John-Molson et rte de l'Aéroport", + "geography": { + "type": "Point", + "coordinates": [ + -73.4003898938127, + 45.5184599535159 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4578932710142 + }, + "name": "rte de l'Aéroport et John-Molson", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.400526771, + 45.518485754 + ] + }, + "is_frozen": false, + "integer_id": 1987, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.382585, + 45.520091 + ] + }, + "id": 1988, + "properties": { + "id": "889d971d-ea3a-412a-a3be-b3ac0f562d0a", + "code": "30588", + "data": { + "stops": [ + { + "id": "5819", + "code": "30588", + "data": { + "gtfs": { + "stop_id": "5819", + "stop_code": "30588", + "stop_name": "boul. Clairevue ouest et civique 1300", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et civique 1300", + "geography": { + "type": "Point", + "coordinates": [ + -73.382585244929, + 45.5200909623555 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.485037477958 + }, + "name": "boul. Clairevue ouest et civique 1300", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.382585245, + 45.520090962 + ] + }, + "is_frozen": false, + "integer_id": 1988, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.375111, + 45.520208 + ] + }, + "id": 1989, + "properties": { + "id": "4fd9bafc-afe7-46d0-b43c-1a1438691ab1", + "code": "30589", + "data": { + "stops": [ + { + "id": "5820", + "code": "30589", + "data": { + "gtfs": { + "stop_id": "5820", + "stop_code": "30589", + "stop_name": "boul. Clairevue ouest et Jean-Talon", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et Jean-Talon", + "geography": { + "type": "Point", + "coordinates": [ + -73.3751110294408, + 45.5202083939547 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4870233534092 + }, + "name": "boul. Clairevue ouest et Jean-Talon", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.375111029, + 45.520208394 + ] + }, + "is_frozen": false, + "integer_id": 1989, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.376368, + 45.520405 + ] + }, + "id": 1990, + "properties": { + "id": "79d0e96e-c3af-4a6c-9c91-73d01e93e557", + "code": "30590", + "data": { + "stops": [ + { + "id": "5821", + "code": "30590", + "data": { + "gtfs": { + "stop_id": "5821", + "stop_code": "30590", + "stop_name": "boul. Clairevue ouest et Graham-Bell", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Clairevue ouest et Graham-Bell", + "geography": { + "type": "Point", + "coordinates": [ + -73.3763677767783, + 45.5204049417962 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4903471755068 + }, + "name": "boul. Clairevue ouest et Graham-Bell", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.376367777, + 45.520404942 + ] + }, + "is_frozen": false, + "integer_id": 1990, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.447641, + 45.538185 + ] + }, + "id": 1991, + "properties": { + "id": "4923c68b-ab12-4ac9-b43c-35ae6563b694", + "code": "30592", + "data": { + "stops": [ + { + "id": "5823", + "code": "30592", + "data": { + "gtfs": { + "stop_id": "5823", + "stop_code": "30592", + "stop_name": "Braille et Bossé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Braille et Bossé", + "geography": { + "type": "Point", + "coordinates": [ + -73.4475774770938, + 45.5381516335502 + ] + } + }, + { + "id": "5824", + "code": "30593", + "data": { + "gtfs": { + "stop_id": "5824", + "stop_code": "30593", + "stop_name": "Braille et Bossé", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Braille et Bossé", + "geography": { + "type": "Point", + "coordinates": [ + -73.4477049682267, + 45.5382188711515 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.7911723421187 + }, + "name": "Braille et Bossé", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447641223, + 45.538185252 + ] + }, + "is_frozen": false, + "integer_id": 1991, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.447199, + 45.539681 + ] + }, + "id": 1992, + "properties": { + "id": "3d4b782b-1f81-40fc-b6e4-db01a1a8f864", + "code": "30594", + "data": { + "stops": [ + { + "id": "5825", + "code": "30594", + "data": { + "gtfs": { + "stop_id": "5825", + "stop_code": "30594", + "stop_name": "Braille et Beauharnois", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Braille et Beauharnois", + "geography": { + "type": "Point", + "coordinates": [ + -73.4471412506441, + 45.539639487274 + ] + } + }, + { + "id": "5826", + "code": "30595", + "data": { + "gtfs": { + "stop_id": "5826", + "stop_code": "30595", + "stop_name": "Beauharnois et Braille", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Beauharnois et Braille", + "geography": { + "type": "Point", + "coordinates": [ + -73.4472563638616, + 45.5397228699087 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.816494795835 + }, + "name": "Braille et Beauharnois", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447198807, + 45.539681179 + ] + }, + "is_frozen": false, + "integer_id": 1992, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.441446, + 45.543789 + ] + }, + "id": 1993, + "properties": { + "id": "146c0089-3caf-43e6-be7c-9f8a4573762c", + "code": "30604", + "data": { + "stops": [ + { + "id": "5835", + "code": "30604", + "data": { + "gtfs": { + "stop_id": "5835", + "stop_code": "30604", + "stop_name": "Braille et Cantin", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Braille et Cantin", + "geography": { + "type": "Point", + "coordinates": [ + -73.441356693819, + 45.5437254385521 + ] + } + }, + { + "id": "5839", + "code": "30608", + "data": { + "gtfs": { + "stop_id": "5839", + "stop_code": "30608", + "stop_name": "Cantin et Braille", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Cantin et Braille", + "geography": { + "type": "Point", + "coordinates": [ + -73.4415354579288, + 45.5438534095591 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.886047793399 + }, + "name": "Braille et Cantin", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.441446076, + 45.543789424 + ] + }, + "is_frozen": false, + "integer_id": 1993, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.444045, + 45.545882 + ] + }, + "id": 1994, + "properties": { + "id": "5f232e4f-49b4-4ca7-8ee6-3aec9ca49e66", + "code": "30605", + "data": { + "stops": [ + { + "id": "5836", + "code": "30605", + "data": { + "gtfs": { + "stop_id": "5836", + "stop_code": "30605", + "stop_name": "Cantin et Barbeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Cantin et Barbeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4439004484148, + 45.5458779073417 + ] + } + }, + { + "id": "5838", + "code": "30607", + "data": { + "gtfs": { + "stop_id": "5838", + "stop_code": "30607", + "stop_name": "Cantin et Barbeau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Cantin et Barbeau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4441887870342, + 45.5458866195184 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.921485556366 + }, + "name": "Cantin et Barbeau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.444044618, + 45.545882263 + ] + }, + "is_frozen": false, + "integer_id": 1994, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467627, + 45.543919 + ] + }, + "id": 1995, + "properties": { + "id": "50390f49-dc4e-4a3a-8b7e-5dae5f17aa70", + "code": "30611", + "data": { + "stops": [ + { + "id": "5842", + "code": "30611", + "data": { + "gtfs": { + "stop_id": "5842", + "stop_code": "30611", + "stop_name": "boul. Curé-Poirier est et des Cervidés", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier est et des Cervidés", + "geography": { + "type": "Point", + "coordinates": [ + -73.4676075566559, + 45.5439818795909 + ] + } + }, + { + "id": "5843", + "code": "30612", + "data": { + "gtfs": { + "stop_id": "5843", + "stop_code": "30612", + "stop_name": "boul. Curé-Poirier est et des Cervidés", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Curé-Poirier est et des Cervidés", + "geography": { + "type": "Point", + "coordinates": [ + -73.4676459153808, + 45.5438566593074 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.8882463276976 + }, + "name": "boul. Curé-Poirier est et des Cervidés", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.467626736, + 45.543919269 + ] + }, + "is_frozen": false, + "integer_id": 1995, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437534, + 45.527073 + ] + }, + "id": 1996, + "properties": { + "id": "b3ae6488-015e-46a3-b034-181cc02048d1", + "code": "30614", + "data": { + "stops": [ + { + "id": "5845", + "code": "30614", + "data": { + "gtfs": { + "stop_id": "5845", + "stop_code": "30614", + "stop_name": "des Samares et de la Sauge", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Samares et de la Sauge", + "geography": { + "type": "Point", + "coordinates": [ + -73.4375342014527, + 45.5270733855941 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6031375902825 + }, + "name": "des Samares et de la Sauge", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437534201, + 45.527073386 + ] + }, + "is_frozen": false, + "integer_id": 1996, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.437839, + 45.52839 + ] + }, + "id": 1997, + "properties": { + "id": "0f82a749-1250-41a6-a638-43db1b5bd1a7", + "code": "30616", + "data": { + "stops": [ + { + "id": "5847", + "code": "30616", + "data": { + "gtfs": { + "stop_id": "5847", + "stop_code": "30616", + "stop_name": "des Samares et des Semis", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Samares et des Semis", + "geography": { + "type": "Point", + "coordinates": [ + -73.437838955049, + 45.5283896736414 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6254060388119 + }, + "name": "des Samares et des Semis", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.437838955, + 45.528389674 + ] + }, + "is_frozen": false, + "integer_id": 1997, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.43639, + 45.531589 + ] + }, + "id": 1998, + "properties": { + "id": "dd7e143a-63db-4b4e-82d6-e5e80de82672", + "code": "30618", + "data": { + "stops": [ + { + "id": "5849", + "code": "30618", + "data": { + "gtfs": { + "stop_id": "5849", + "stop_code": "30618", + "stop_name": "des Samares et boul. Béliveau", + "location_type": 0, + "parent_station": "" + } + }, + "name": "des Samares et boul. Béliveau", + "geography": { + "type": "Point", + "coordinates": [ + -73.4363898262118, + 45.5315885900853 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.679530493841 + }, + "name": "des Samares et boul. Béliveau", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.436389826, + 45.53158859 + ] + }, + "is_frozen": false, + "integer_id": 1998, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.47776, + 45.531975 + ] + }, + "id": 1999, + "properties": { + "id": "621204a0-8cdd-445a-a8e4-bf8b08e16eba", + "code": "30620", + "data": { + "stops": [ + { + "id": "5851", + "code": "30620", + "data": { + "gtfs": { + "stop_id": "5851", + "stop_code": "30620", + "stop_name": "Lavallée et Brault", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Lavallée et Brault", + "geography": { + "type": "Point", + "coordinates": [ + -73.4777602670194, + 45.5319751534562 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6860716122039 + }, + "name": "Lavallée et Brault", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.477760267, + 45.531975153 + ] + }, + "is_frozen": false, + "integer_id": 1999, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.478716, + 45.530068 + ] + }, + "id": 2000, + "properties": { + "id": "af70f982-a652-4cf9-9be4-d543d75ad805", + "code": "30621", + "data": { + "stops": [ + { + "id": "5852", + "code": "30621", + "data": { + "gtfs": { + "stop_id": "5852", + "stop_code": "30621", + "stop_name": "Brault et Gamache", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Brault et Gamache", + "geography": { + "type": "Point", + "coordinates": [ + -73.4787162598447, + 45.5300682932326 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6538065030724 + }, + "name": "Brault et Gamache", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.47871626, + 45.530068293 + ] + }, + "is_frozen": false, + "integer_id": 2000, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.476092, + 45.529179 + ] + }, + "id": 2001, + "properties": { + "id": "48d7eace-3f37-4246-9aea-13944ac3b50c", + "code": "30622", + "data": { + "stops": [ + { + "id": "5853", + "code": "30622", + "data": { + "gtfs": { + "stop_id": "5853", + "stop_code": "30622", + "stop_name": "Gamache et Dubuc", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gamache et Dubuc", + "geography": { + "type": "Point", + "coordinates": [ + -73.4760917540327, + 45.5291792489427 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6387645027263 + }, + "name": "Gamache et Dubuc", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.476091754, + 45.529179249 + ] + }, + "is_frozen": false, + "integer_id": 2001, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.472089, + 45.528161 + ] + }, + "id": 2002, + "properties": { + "id": "10a8a297-0790-40e2-901e-24be7500f796", + "code": "30624", + "data": { + "stops": [ + { + "id": "5855", + "code": "30624", + "data": { + "gtfs": { + "stop_id": "5855", + "stop_code": "30624", + "stop_name": "Gamache et Desmarchais", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gamache et Desmarchais", + "geography": { + "type": "Point", + "coordinates": [ + -73.4720892245959, + 45.5281608068087 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6215340449799 + }, + "name": "Gamache et Desmarchais", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.472089225, + 45.528160807 + ] + }, + "is_frozen": false, + "integer_id": 2002, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469181, + 45.52735 + ] + }, + "id": 2003, + "properties": { + "id": "979368fb-58ae-4231-bd7c-716ca91bbb6f", + "code": "30625", + "data": { + "stops": [ + { + "id": "5856", + "code": "30625", + "data": { + "gtfs": { + "stop_id": "5856", + "stop_code": "30625", + "stop_name": "Gamache et Poincaré", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gamache et Poincaré", + "geography": { + "type": "Point", + "coordinates": [ + -73.4691811042121, + 45.5273498036113 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6078137944086 + }, + "name": "Gamache et Poincaré", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469181104, + 45.527349804 + ] + }, + "is_frozen": false, + "integer_id": 2003, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467326, + 45.526908 + ] + }, + "id": 2004, + "properties": { + "id": "b6b773c1-84a4-412e-a7be-7f535298ece2", + "code": "30626", + "data": { + "stops": [ + { + "id": "5857", + "code": "30626", + "data": { + "gtfs": { + "stop_id": "5857", + "stop_code": "30626", + "stop_name": "Gamache et Jules-Roches est", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Gamache et Jules-Roches est", + "geography": { + "type": "Point", + "coordinates": [ + -73.4673261797765, + 45.5269076434247 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6003337241372 + }, + "name": "Gamache et Jules-Roches est", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.46732618, + 45.526907643 + ] + }, + "is_frozen": false, + "integer_id": 2004, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.416278, + 45.559261 + ] + }, + "id": 2005, + "properties": { + "id": "4987f1ae-bfd4-4242-9f97-87bf5101bd17", + "code": "30627", + "data": { + "stops": [ + { + "id": "5858", + "code": "30627", + "data": { + "gtfs": { + "stop_id": "5858", + "stop_code": "30627", + "stop_name": "J.-A.-Bombardier et civique 155", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et civique 155", + "geography": { + "type": "Point", + "coordinates": [ + -73.4161422918691, + 45.5591648983478 + ] + } + }, + { + "id": "5859", + "code": "30628", + "data": { + "gtfs": { + "stop_id": "5859", + "stop_code": "30628", + "stop_name": "J.-A.-Bombardier et civique 155", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et civique 155", + "geography": { + "type": "Point", + "coordinates": [ + -73.4164127982652, + 45.5593567756704 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.1481155452796 + }, + "name": "J.-A.-Bombardier et civique 155", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.416277545, + 45.559260837 + ] + }, + "is_frozen": false, + "integer_id": 2005, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.447567, + 45.597646 + ] + }, + "id": 2006, + "properties": { + "id": "e25e89c1-c193-4379-979a-303ee641d87e", + "code": "30631", + "data": { + "stops": [ + { + "id": "5862", + "code": "30631", + "data": { + "gtfs": { + "stop_id": "5862", + "stop_code": "30631", + "stop_name": "Hélène-Boullé et Darontal", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Hélène-Boullé et Darontal", + "geography": { + "type": "Point", + "coordinates": [ + -73.4473331210368, + 45.5976065274971 + ] + } + }, + { + "id": "5863", + "code": "30632", + "data": { + "gtfs": { + "stop_id": "5863", + "stop_code": "30632", + "stop_name": "Hélène-Boullé et Darontal", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Hélène-Boullé et Darontal", + "geography": { + "type": "Point", + "coordinates": [ + -73.4478010676278, + 45.5976853080602 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.7992379275291 + }, + "name": "Hélène-Boullé et Darontal", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.447567094, + 45.597645918 + ] + }, + "is_frozen": false, + "integer_id": 2006, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.453966, + 45.61565 + ] + }, + "id": 2007, + "properties": { + "id": "4bdfb37a-ee1d-4a02-9192-c3692c2485ed", + "code": "30634", + "data": { + "stops": [ + { + "id": "5865", + "code": "30634", + "data": { + "gtfs": { + "stop_id": "5865", + "stop_code": "30634", + "stop_name": "De Muy et Le Laboureur", + "location_type": 0, + "parent_station": "" + } + }, + "name": "De Muy et Le Laboureur", + "geography": { + "type": "Point", + "coordinates": [ + -73.4539660814811, + 45.6156501018127 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 953.1050954931461 + }, + "name": "De Muy et Le Laboureur", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.453966081, + 45.615650102 + ] + }, + "is_frozen": false, + "integer_id": 2007, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.450903, + 45.604275 + ] + }, + "id": 2008, + "properties": { + "id": "15a24cda-ef8f-47ad-bb52-21eaf857234b", + "code": "30636", + "data": { + "stops": [ + { + "id": "5867", + "code": "30636", + "data": { + "gtfs": { + "stop_id": "5867", + "stop_code": "30636", + "stop_name": "ch. du Lac et de la Rivière-aux-Pins", + "location_type": 0, + "parent_station": "" + } + }, + "name": "ch. du Lac et de la Rivière-aux-Pins", + "geography": { + "type": "Point", + "coordinates": [ + -73.4509026267092, + 45.6042752932491 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9118248859969 + }, + "name": "ch. du Lac et de la Rivière-aux-Pins", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.450902627, + 45.604275293 + ] + }, + "is_frozen": false, + "integer_id": 2008, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.538052, + 45.589764 + ] + }, + "id": 2009, + "properties": { + "id": "b49806f2-28c3-484e-bd5a-b46e80d9eb6f", + "code": "30638", + "data": { + "stops": [ + { + "id": "5869", + "code": "30638", + "data": { + "gtfs": { + "stop_id": "5869", + "stop_code": "30638", + "stop_name": "METRO RADISSON", + "location_type": 0, + "parent_station": "" + } + }, + "name": "METRO RADISSON", + "geography": { + "type": "Point", + "coordinates": [ + -73.5380524686115, + 45.5897638129818 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6654270119611 + }, + "name": "METRO RADISSON", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.538052469, + 45.589763813 + ] + }, + "is_frozen": false, + "integer_id": 2009, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.411783, + 45.57104 + ] + }, + "id": 2010, + "properties": { + "id": "9c784932-945b-47d8-afa8-e5b73889acfb", + "code": "30639", + "data": { + "stops": [ + { + "id": "5870", + "code": "30639", + "data": { + "gtfs": { + "stop_id": "5870", + "stop_code": "30639", + "stop_name": "Stationnement de Tourraine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Stationnement de Tourraine", + "geography": { + "type": "Point", + "coordinates": [ + -73.4119825964554, + 45.570870038368 + ] + } + }, + { + "id": "5924", + "code": "30802", + "data": { + "gtfs": { + "stop_id": "5924", + "stop_code": "30802", + "stop_name": "Stationnement de Tourraine", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Stationnement de Tourraine", + "geography": { + "type": "Point", + "coordinates": [ + -73.4115841999583, + 45.5712097278469 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3477822357956 + }, + "name": "Stationnement de Tourraine", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.411783398, + 45.571039883 + ] + }, + "is_frozen": false, + "integer_id": 2010, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.443939, + 45.573194 + ] + }, + "id": 2011, + "properties": { + "id": "1eda157c-9c83-48cb-a3bc-ea8bb271b287", + "code": "30640", + "data": { + "stops": [ + { + "id": "5871", + "code": "30640", + "data": { + "gtfs": { + "stop_id": "5871", + "stop_code": "30640", + "stop_name": "STATIONNEMENT INCITATIF DE MORTAGNE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "STATIONNEMENT INCITATIF DE MORTAGNE", + "geography": { + "type": "Point", + "coordinates": [ + -73.4443299153394, + 45.5732381983831 + ] + } + }, + { + "id": "5875", + "code": "30644", + "data": { + "gtfs": { + "stop_id": "5875", + "stop_code": "30644", + "stop_name": "Stationnement de Mortagne", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Stationnement de Mortagne", + "geography": { + "type": "Point", + "coordinates": [ + -73.4435481064377, + 45.5731499164339 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3843110665122 + }, + "name": "STATIONNEMENT INCITATIF DE MORTAGNE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.443939011, + 45.573194057 + ] + }, + "is_frozen": false, + "integer_id": 2011, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.444892, + 45.528942 + ] + }, + "id": 2012, + "properties": { + "id": "c37c473f-58f7-42cd-82b8-4282dea696a3", + "code": "30642", + "data": { + "stops": [ + { + "id": "5873", + "code": "30642", + "data": { + "gtfs": { + "stop_id": "5873", + "stop_code": "30642", + "stop_name": "Boismenu et Brassard", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Boismenu et Brassard", + "geography": { + "type": "Point", + "coordinates": [ + -73.4448916346388, + 45.5289417050734 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.6347455442967 + }, + "name": "Boismenu et Brassard", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.444891635, + 45.528941705 + ] + }, + "is_frozen": false, + "integer_id": 2012, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452126, + 45.604113 + ] + }, + "id": 2013, + "properties": { + "id": "be43b4d2-5b5a-47b0-86d2-d58ce9d9b1eb", + "code": "30643", + "data": { + "stops": [ + { + "id": "5874", + "code": "30643", + "data": { + "gtfs": { + "stop_id": "5874", + "stop_code": "30643", + "stop_name": "de la Rivière-aux-Pins et HOTEL DE VILLE DE BOUCHERVILLE", + "location_type": 0, + "parent_station": "" + } + }, + "name": "de la Rivière-aux-Pins et HOTEL DE VILLE DE BOUCHERVILLE", + "geography": { + "type": "Point", + "coordinates": [ + -73.452125676858, + 45.604112819468 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.9090651125625 + }, + "name": "de la Rivière-aux-Pins et HOTEL DE VILLE DE BOUCHERVILLE", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452125677, + 45.604112819 + ] + }, + "is_frozen": false, + "integer_id": 2013, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.38867, + 45.518692 + ] + }, + "id": 2014, + "properties": { + "id": "59f3ce33-037e-4929-8dad-491a01b3dda7", + "code": "30669", + "data": { + "stops": [ + { + "id": "5877", + "code": "30669", + "data": { + "gtfs": { + "stop_id": "5877", + "stop_code": "30669", + "stop_name": "John-Molson et Wiptec", + "location_type": 0, + "parent_station": "" + } + }, + "name": "John-Molson et Wiptec", + "geography": { + "type": "Point", + "coordinates": [ + -73.3885771071828, + 45.5186445081 + ] + } + }, + { + "id": "5878", + "code": "30670", + "data": { + "gtfs": { + "stop_id": "5878", + "stop_code": "30670", + "stop_name": "John-Molson et Wiptec", + "location_type": 0, + "parent_station": "" + } + }, + "name": "John-Molson et Wiptec", + "geography": { + "type": "Point", + "coordinates": [ + -73.3887631873739, + 45.5187399222802 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.4613844158483 + }, + "name": "John-Molson et Wiptec", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.388670147, + 45.518692215 + ] + }, + "is_frozen": false, + "integer_id": 2014, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.412211, + 45.51087 + ] + }, + "id": 2015, + "properties": { + "id": "eb8bc90f-a856-480f-ac1f-7bb1795b4dab", + "code": "30694", + "data": { + "stops": [ + { + "id": "5890", + "code": "30694", + "data": { + "gtfs": { + "stop_id": "5890", + "stop_code": "30694", + "stop_name": "rte de l'Aéroport et civique 5555", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et civique 5555", + "geography": { + "type": "Point", + "coordinates": [ + -73.4121467389943, + 45.5108325338329 + ] + } + }, + { + "id": "5892", + "code": "30696", + "data": { + "gtfs": { + "stop_id": "5892", + "stop_code": "30696", + "stop_name": "rte de l'Aéroport et civique 5555", + "location_type": 0, + "parent_station": "" + } + }, + "name": "rte de l'Aéroport et civique 5555", + "geography": { + "type": "Point", + "coordinates": [ + -73.4122749427975, + 45.5109071950515 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.3291391855547 + }, + "name": "rte de l'Aéroport et civique 5555", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.412210841, + 45.510869864 + ] + }, + "is_frozen": false, + "integer_id": 2015, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.492488, + 45.461538 + ] + }, + "id": 2016, + "properties": { + "id": "bb980dda-615f-4aa9-85c9-d336582cf2ed", + "code": "30772", + "data": { + "stops": [ + { + "id": "5894", + "code": "30772", + "data": { + "gtfs": { + "stop_id": "5894", + "stop_code": "30772", + "stop_name": "boul. Marie-Victorin et av. Thérèse", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. Marie-Victorin et av. Thérèse", + "geography": { + "type": "Point", + "coordinates": [ + -73.4924881781486, + 45.4615382316891 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4963891995711 + }, + "name": "boul. Marie-Victorin et av. Thérèse", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.492488178, + 45.461538232 + ] + }, + "is_frozen": false, + "integer_id": 2016, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.452639, + 45.499341 + ] + }, + "id": 2017, + "properties": { + "id": "69ce0958-621c-4e07-9f8c-41bd64014240", + "code": "30774", + "data": { + "stops": [ + { + "id": "5896", + "code": "30774", + "data": { + "gtfs": { + "stop_id": "5896", + "stop_code": "30774", + "stop_name": "Montgomery et Gendron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montgomery et Gendron", + "geography": { + "type": "Point", + "coordinates": [ + -73.4529390452219, + 45.4994113418081 + ] + } + }, + { + "id": "5898", + "code": "30776", + "data": { + "gtfs": { + "stop_id": "5898", + "stop_code": "30776", + "stop_name": "Montgomery et Gendron", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Montgomery et Gendron", + "geography": { + "type": "Point", + "coordinates": [ + -73.4523392468116, + 45.4992700282432 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 951.1343253752631 + }, + "name": "Montgomery et Gendron", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.452639146, + 45.499340685 + ] + }, + "is_frozen": false, + "integer_id": 2017, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.469111, + 45.466768 + ] + }, + "id": 2018, + "properties": { + "id": "131616ed-8c78-458b-a65e-78f1aeac1fc7", + "code": "30780", + "data": { + "stops": [ + { + "id": "5902", + "code": "30780", + "data": { + "gtfs": { + "stop_id": "5902", + "stop_code": "30780", + "stop_name": "TERMINUS PANAMA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "TERMINUS PANAMA", + "geography": { + "type": "Point", + "coordinates": [ + -73.4691113155387, + 45.4667680609279 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5845696312992 + }, + "name": "TERMINUS PANAMA", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.469111316, + 45.466768061 + ] + }, + "is_frozen": false, + "integer_id": 2018, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.412383, + 45.460059 + ] + }, + "id": 2019, + "properties": { + "id": "84fd1601-f65a-4eb9-beba-06ee8c2970d2", + "code": "30782", + "data": { + "stops": [ + { + "id": "5904", + "code": "30782", + "data": { + "gtfs": { + "stop_id": "5904", + "stop_code": "30782", + "stop_name": "J.-A.-Bombardier et civique 5275", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et civique 5275", + "geography": { + "type": "Point", + "coordinates": [ + -73.412382632799, + 45.4600593965954 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.4714588852418 + }, + "name": "J.-A.-Bombardier et civique 5275", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.412382633, + 45.460059397 + ] + }, + "is_frozen": false, + "integer_id": 2019, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.407717, + 45.463529 + ] + }, + "id": 2020, + "properties": { + "id": "22c42fca-2f2b-42d3-9449-3b9e7c474f2e", + "code": "30784", + "data": { + "stops": [ + { + "id": "5906", + "code": "30784", + "data": { + "gtfs": { + "stop_id": "5906", + "stop_code": "30784", + "stop_name": "J.-A.-Bombardier et boul. Payer", + "location_type": 0, + "parent_station": "" + } + }, + "name": "J.-A.-Bombardier et boul. Payer", + "geography": { + "type": "Point", + "coordinates": [ + -73.4077173346167, + 45.4635292933547 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5299577253268 + }, + "name": "J.-A.-Bombardier et boul. Payer", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.407717335, + 45.463529293 + ] + }, + "is_frozen": false, + "integer_id": 2020, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.467816, + 45.466048 + ] + }, + "id": 2021, + "properties": { + "id": "7b9bfdae-7d0d-4463-a7d7-1a62138b83b5", + "code": "30798", + "data": { + "stops": [ + { + "id": "5920", + "code": "30798", + "data": { + "gtfs": { + "stop_id": "5920", + "stop_code": "30798", + "stop_name": "TERMINUS PANAMA", + "location_type": 0, + "parent_station": "" + } + }, + "name": "TERMINUS PANAMA", + "geography": { + "type": "Point", + "coordinates": [ + -73.4678159132405, + 45.466047750443 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 950.5724229864395 + }, + "name": "TERMINUS PANAMA", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.467815913, + 45.46604775 + ] + }, + "is_frozen": false, + "integer_id": 2021, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.521664, + 45.586133 + ] + }, + "id": 2022, + "properties": { + "id": "e3b3b7c9-8cf4-450f-95eb-c8f9836e391d", + "code": "30833", + "data": { + "stops": [ + { + "id": "6095", + "code": "30833", + "data": { + "gtfs": { + "stop_id": "6095", + "stop_code": "30833", + "stop_name": "Tellier et Statiionnement SAQ", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Tellier et Statiionnement SAQ", + "geography": { + "type": "Point", + "coordinates": [ + -73.521664351067, + 45.5861332220778 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.6038108241429 + }, + "name": "Tellier et Statiionnement SAQ", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.521664351, + 45.586133222 + ] + }, + "is_frozen": false, + "integer_id": 2022, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.55762, + 45.572646 + ] + }, + "id": 2023, + "properties": { + "id": "171b05ae-a95b-4adb-882d-8ac87dc4790f", + "code": "30835", + "data": { + "stops": [ + { + "id": "6096", + "code": "30835", + "data": { + "gtfs": { + "stop_id": "6096", + "stop_code": "30835", + "stop_name": "boul. de l'Assomption et Hôp. Maisonneuve-Rosement", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de l'Assomption et Hôp. Maisonneuve-Rosement", + "geography": { + "type": "Point", + "coordinates": [ + -73.557412190991, + 45.5726751103219 + ] + } + }, + { + "id": "6102", + "code": "30810", + "data": { + "gtfs": { + "stop_id": "6102", + "stop_code": "30810", + "stop_name": "boul. de l'Assomption et Hôp. Maisonneuve-Rosement", + "location_type": 0, + "parent_station": "" + } + }, + "name": "boul. de l'Assomption et Hôp. Maisonneuve-Rosement", + "geography": { + "type": "Point", + "coordinates": [ + -73.557828459181, + 45.5726162358108 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.3750115975669 + }, + "name": "boul. de l'Assomption et Hôp. Maisonneuve-Rosement", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.557620325, + 45.572645673 + ] + }, + "is_frozen": false, + "integer_id": 2023, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.578049, + 45.575536 + ] + }, + "id": 2024, + "properties": { + "id": "b92809dc-fe83-4c8b-86e3-0a17f3b710ba", + "code": "30806", + "data": { + "stops": [ + { + "id": "6098", + "code": "30806", + "data": { + "gtfs": { + "stop_id": "6098", + "stop_code": "30806", + "stop_name": "Bélanger et Institut de cardiologie de Montréal", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bélanger et Institut de cardiologie de Montréal", + "geography": { + "type": "Point", + "coordinates": [ + -73.5780492556561, + 45.575535502227 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.4240202006398 + }, + "name": "Bélanger et Institut de cardiologie de Montréal", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.578049256, + 45.575535502 + ] + }, + "is_frozen": false, + "integer_id": 2024, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.573287, + 45.581612 + ] + }, + "id": 2025, + "properties": { + "id": "30a1fc98-889c-4ed9-b389-c33a3f70398a", + "code": "30808", + "data": { + "stops": [ + { + "id": "6100", + "code": "30808", + "data": { + "gtfs": { + "stop_id": "6100", + "stop_code": "30808", + "stop_name": "Bélanger et Hôpital Santa Cabrini", + "location_type": 0, + "parent_station": "" + } + }, + "name": "Bélanger et Hôpital Santa Cabrini", + "geography": { + "type": "Point", + "coordinates": [ + -73.5732872679448, + 45.5816120978886 + ] + } + } + ], + "accessiblePlaces": { + "walking": { + "mode": "walking", + "placesByTravelTimeByCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "placesByTravelTimeByDetailedCategory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + }, + "routingRadiusPixelsAtMaxZoom": 952.5270975387562 + }, + "name": "Bélanger et Hôpital Santa Cabrini", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.573287268, + 45.581612098 + ] + }, + "is_frozen": false, + "integer_id": 2025, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.502355, + 45.527911 + ] + }, + "id": 2026, + "properties": { + "id": "e78a8532-2400-4eec-9dfd-450e95e7cf8d", + "code": "2", + "data": { + "routingRadiusPixelsAtMaxZoom": 951.6173078395179 + }, + "name": "2", + "color": "#0086FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.502355, + 45.527911 + ] + }, + "is_frozen": false, + "integer_id": 2026, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.489116, + 45.524255 + ] + }, + "id": 2027, + "properties": { + "id": "5028b3b2-5608-471b-9b03-da721b62dd6e", + "code": "n100", + "data": { + "routingRadiusPixelsAtMaxZoom": 951.5554558204434 + }, + "name": "n100", + "color": "#FF86FF", + "geography": { + "type": "Point", + "coordinates": [ + -73.48911612, + 45.52425461 + ] + }, + "is_frozen": false, + "integer_id": 2027, + "is_enabled": true, + "station_id": null, + "description": null, + "internal_id": null, + "routing_radius_meters": 50, + "default_dwell_time_seconds": 20 + } + } + ] +} \ No newline at end of file diff --git a/deck-gl-pow/package-lock.json b/deck-gl-pow/package-lock.json new file mode 100644 index 00000000..230e280d --- /dev/null +++ b/deck-gl-pow/package-lock.json @@ -0,0 +1,18457 @@ +{ + "name": "maplibre-custom-layer", + "version": "0.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "maplibre-custom-layer", + "version": "0.0.0", + "license": "MIT", + "dependencies": { + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.19.6", + "@babel/preset-env": "^7.20.2", + "@loaders.gl/csv": "^3.2.10", + "@loaders.gl/json": "^3.2.13", + "d3-request": "^1.0.5", + "d3-scale": "^2.0.0", + "deck.gl": "^8.8.0", + "maplibre-gl": "^2.4.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-map-gl": "^7.0.16" + }, + "devDependencies": { + "@babel/core": "^7.4.0", + "@babel/preset-react": "^7.0.0", + "babel-loader": "^8.0.5", + "webpack": "^4.20.2", + "webpack-cli": "^3.1.2", + "webpack-dev-server": "^3.1.1" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "dependencies": { + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.20.14", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.14.tgz", + "integrity": "sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.20.12", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz", + "integrity": "sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==", + "dependencies": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.7", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helpers": "^7.20.7", + "@babel/parser": "^7.20.7", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.12", + "@babel/types": "^7.20.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.20.14", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.14.tgz", + "integrity": "sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==", + "dependencies": { + "@babel/types": "^7.20.7", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.18.6", + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz", + "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==", + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.20.12", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz", + "integrity": "sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-member-expression-to-functions": "^7.20.7", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/helper-split-export-declaration": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz", + "integrity": "sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "regexpu-core": "^5.2.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-explode-assignable-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", + "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "dependencies": { + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz", + "integrity": "sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==", + "dependencies": { + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz", + "integrity": "sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.10", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", + "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz", + "integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.20.7", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "dependencies": { + "@babel/types": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", + "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", + "dependencies": { + "@babel/types": "^7.20.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", + "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", + "dependencies": { + "@babel/helper-function-name": "^7.19.0", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.13.tgz", + "integrity": "sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==", + "dependencies": { + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.13", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.20.15", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.15.tgz", + "integrity": "sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", + "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz", + "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-proposal-optional-chaining": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz", + "integrity": "sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", + "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz", + "integrity": "sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz", + "integrity": "sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", + "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", + "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz", + "integrity": "sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", + "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", + "dependencies": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", + "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.20.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.15.tgz", + "integrity": "sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz", + "integrity": "sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-split-export-declaration": "^7.18.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz", + "integrity": "sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/template": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz", + "integrity": "sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", + "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", + "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", + "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz", + "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==", + "dependencies": { + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz", + "integrity": "sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==", + "dependencies": { + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-simple-access": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz", + "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==", + "dependencies": { + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-validator-identifier": "^7.19.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", + "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "dependencies": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", + "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", + "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", + "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz", + "integrity": "sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", + "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", + "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.13.tgz", + "integrity": "sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-jsx": "^7.18.6", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", + "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", + "dev": true, + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", + "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz", + "integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "regenerator-transform": "^0.15.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", + "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz", + "integrity": "sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==", + "dependencies": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.19.0", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", + "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz", + "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", + "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", + "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", + "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz", + "integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==", + "dependencies": { + "@babel/compat-data": "^7.20.1", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-async-generator-functions": "^7.20.1", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-class-static-block": "^7.18.6", + "@babel/plugin-proposal-dynamic-import": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", + "@babel/plugin-proposal-json-strings": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.20.2", + "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.18.6", + "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.18.6", + "@babel/plugin-transform-async-to-generator": "^7.18.6", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.20.2", + "@babel/plugin-transform-classes": "^7.20.2", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.20.2", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.19.6", + "@babel/plugin-transform-modules-commonjs": "^7.19.6", + "@babel/plugin-transform-modules-systemjs": "^7.19.6", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", + "@babel/plugin-transform-new-target": "^7.18.6", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.20.1", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.18.6", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.19.0", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", + "@babel/plugin-transform-unicode-escapes": "^7.18.10", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.20.2", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "core-js-compat": "^3.25.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", + "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-transform-react-display-name": "^7.18.6", + "@babel/plugin-transform-react-jsx": "^7.18.6", + "@babel/plugin-transform-react-jsx-development": "^7.18.6", + "@babel/plugin-transform-react-pure-annotations": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + }, + "node_modules/@babel/runtime": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", + "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.13.tgz", + "integrity": "sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==", + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.7", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.20.13", + "@babel/types": "^7.20.7", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz", + "integrity": "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==", + "dependencies": { + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@deck.gl/aggregation-layers": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/aggregation-layers/-/aggregation-layers-8.8.24.tgz", + "integrity": "sha512-Cqd8lD5wtDrsYHHha0wVD4RY0A7/KbmdK/7Cl+gBYP9Nf2ERE65IqXSlsijvtT3a4fi++c3doosKMSDYy08nEw==", + "dependencies": { + "@luma.gl/constants": "^8.5.16", + "@luma.gl/shadertools": "^8.5.16", + "@math.gl/web-mercator": "^3.6.2", + "d3-hexbin": "^0.2.1" + }, + "peerDependencies": { + "@deck.gl/core": "^8.0.0", + "@deck.gl/layers": "^8.0.0", + "@luma.gl/core": "^8.0.0" + } + }, + "node_modules/@deck.gl/carto": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/carto/-/carto-8.8.24.tgz", + "integrity": "sha512-vRD0GNftnxfMal2ia7OyaterFY2aZtaYdGPnWV8RL205D2pTR4ZeNX//bQEvovLK5TJG7+kQgopaALDQN1+aBQ==", + "dependencies": { + "@loaders.gl/gis": "^3.2.10", + "@loaders.gl/loader-utils": "^3.2.10", + "@loaders.gl/mvt": "^3.2.10", + "@loaders.gl/tiles": "^3.2.10", + "@luma.gl/constants": "^8.5.16", + "@math.gl/web-mercator": "^3.6.2", + "cartocolor": "^4.0.2", + "d3-array": "^3.2.0", + "d3-color": "^3.1.0", + "d3-format": "^3.1.0", + "d3-scale": "^4.0.0", + "h3-js": "^3.7.0", + "moment-timezone": "^0.5.33", + "pbf": "^3.2.1", + "quadbin": "^0.1.2" + }, + "peerDependencies": { + "@deck.gl/aggregation-layers": "^8.0.0", + "@deck.gl/core": "^8.0.0", + "@deck.gl/extensions": "^8.0.0", + "@deck.gl/geo-layers": "^8.0.0", + "@deck.gl/layers": "^8.0.0", + "@loaders.gl/core": "^3.0.0" + } + }, + "node_modules/@deck.gl/carto/node_modules/d3-array": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.2.tgz", + "integrity": "sha512-yEEyEAbDrF8C6Ob2myOBLjwBLck1Z89jMGFee0oPsn95GqjerpaOA4ch+vc2l0FNFFwMD5N7OCSEN5eAlsUbgQ==", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@deck.gl/carto/node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/@deck.gl/carto/node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/@deck.gl/carto/node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@deck.gl/carto/node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "dependencies": { + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@deck.gl/core": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/core/-/core-8.8.24.tgz", + "integrity": "sha512-/W1ldv80UkFb+V0AEpcJcjSWANV9iWeMZgiLdnZbmttahSB1poWg2K8TxEYSwKJipSzA/e43iJjOYbaa7Yfs5g==", + "dependencies": { + "@loaders.gl/core": "^3.2.10", + "@loaders.gl/images": "^3.2.10", + "@luma.gl/constants": "^8.5.16", + "@luma.gl/core": "^8.5.16", + "@math.gl/core": "^3.6.2", + "@math.gl/sun": "^3.6.2", + "@math.gl/web-mercator": "^3.6.2", + "@probe.gl/env": "^3.5.0", + "@probe.gl/log": "^3.5.0", + "@probe.gl/stats": "^3.5.0", + "gl-matrix": "^3.0.0", + "math.gl": "^3.6.2", + "mjolnir.js": "^2.7.0" + } + }, + "node_modules/@deck.gl/extensions": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/extensions/-/extensions-8.8.24.tgz", + "integrity": "sha512-mBZvxMxP5Et69nW7ZKxLWYSWYvdWEsA+nikA+n3Z6Jb8kZsZWCEFFqp6CeJ8vZ9d6eNiZMQMOUyxGLEFhil+Eg==", + "dependencies": { + "@luma.gl/shadertools": "^8.5.16" + }, + "peerDependencies": { + "@deck.gl/core": "^8.0.0", + "@luma.gl/constants": "^8.0.0", + "@luma.gl/core": "^8.0.0", + "gl-matrix": "^3.0.0" + } + }, + "node_modules/@deck.gl/geo-layers": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/geo-layers/-/geo-layers-8.8.24.tgz", + "integrity": "sha512-c9mkBQtCHPI7o6QxhWmA6l5XkqhnbgoMhJSnHUgoCkMNuWbSAzTC5YLbqVLbTylIGHwTxeFNjr9AIWehwkPvqQ==", + "dependencies": { + "@loaders.gl/3d-tiles": "^3.2.10", + "@loaders.gl/gis": "^3.2.10", + "@loaders.gl/loader-utils": "^3.2.10", + "@loaders.gl/mvt": "^3.2.10", + "@loaders.gl/schema": "^3.2.10", + "@loaders.gl/terrain": "^3.2.10", + "@loaders.gl/tiles": "^3.2.10", + "@luma.gl/constants": "^8.5.16", + "@luma.gl/experimental": "^8.5.16", + "@math.gl/core": "^3.6.2", + "@math.gl/culling": "^3.6.2", + "@math.gl/web-mercator": "^3.6.2", + "@types/geojson": "^7946.0.8", + "h3-js": "^3.7.0", + "long": "^3.2.0" + }, + "peerDependencies": { + "@deck.gl/core": "^8.0.0", + "@deck.gl/extensions": "^8.0.0", + "@deck.gl/layers": "^8.0.0", + "@deck.gl/mesh-layers": "^8.0.0", + "@loaders.gl/core": "^3.0.0", + "@luma.gl/core": "^8.0.0" + } + }, + "node_modules/@deck.gl/google-maps": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/google-maps/-/google-maps-8.8.24.tgz", + "integrity": "sha512-GUHIKycVgTsSD3ej49U1r+CjpjAv2IszzkMMysYxSKWBsUklyosN2XZRoKuQWFmhowUhuwPlKliXHj/QAOcYAw==", + "peerDependencies": { + "@deck.gl/core": "^8.0.0", + "@luma.gl/constants": "^8.5.16", + "@luma.gl/core": "^8.5.16", + "@math.gl/core": "^3.6.0" + } + }, + "node_modules/@deck.gl/json": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/json/-/json-8.8.24.tgz", + "integrity": "sha512-H3uP9544O3NNnn10vjz5fU2mSldOUWTokwBz+uZNSJNFCK5zxO1+E5lR6xBXAAa4SlfuANvMT0aRQwDnekv0MQ==", + "dependencies": { + "d3-dsv": "^1.0.8", + "expression-eval": "^2.0.0" + }, + "peerDependencies": { + "@deck.gl/core": "^8.0.0" + } + }, + "node_modules/@deck.gl/layers": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/layers/-/layers-8.8.24.tgz", + "integrity": "sha512-t8o23fUSmS34YVs0fGvp4d0Et6iJo6O7hRpdGf49WyOL+yBsywOanFGdAcxW84HA4cPngHHvfLplF2Gx/qeUow==", + "dependencies": { + "@loaders.gl/images": "^3.2.10", + "@loaders.gl/schema": "^3.2.10", + "@luma.gl/constants": "^8.5.16", + "@mapbox/tiny-sdf": "^1.1.0", + "@math.gl/core": "^3.6.2", + "@math.gl/polygon": "^3.6.2", + "@math.gl/web-mercator": "^3.6.2", + "earcut": "^2.0.6" + }, + "peerDependencies": { + "@deck.gl/core": "^8.0.0", + "@loaders.gl/core": "^3.0.0", + "@luma.gl/core": "^8.0.0" + } + }, + "node_modules/@deck.gl/mapbox": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/mapbox/-/mapbox-8.8.24.tgz", + "integrity": "sha512-yJnt2sNbE7EeNstfh0G6yLz5owNT5GzHZE8JroHljVaoftBzWrh/ERf97akcxevCFXR6TIBoBUzx4Yip23incg==", + "dependencies": { + "@types/mapbox-gl": "^2.6.3" + }, + "peerDependencies": { + "@deck.gl/core": "^8.0.0" + } + }, + "node_modules/@deck.gl/mesh-layers": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/mesh-layers/-/mesh-layers-8.8.24.tgz", + "integrity": "sha512-HsFTU7cX1hcBmQu5s9cNBkQQ1v0ESVSnx5C9eOUI8lWlpw8n6pq3+DFXdS3lhYmusitUGV/BWuCJbUbQS8HJjw==", + "dependencies": { + "@loaders.gl/gltf": "^3.2.10", + "@luma.gl/constants": "^8.5.16", + "@luma.gl/experimental": "^8.5.16", + "@luma.gl/shadertools": "^8.5.16" + }, + "peerDependencies": { + "@deck.gl/core": "^8.0.0", + "@luma.gl/core": "^8.0.0" + } + }, + "node_modules/@deck.gl/react": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/react/-/react-8.8.24.tgz", + "integrity": "sha512-nj3nvjG9mS3Wkbm0GaHjw8o8ktaSCVMCPkbqemrGqrZrUPR3Af0q8HAOjVL3ScTDLPZI8yanirj61EypYyzRzQ==", + "peerDependencies": { + "@deck.gl/core": "^8.0.0", + "@types/react": ">= 16.3", + "react": ">=16.3", + "react-dom": ">=16.3" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dependencies": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@loaders.gl/3d-tiles": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/3d-tiles/-/3d-tiles-3.2.13.tgz", + "integrity": "sha512-e9LLOBMupbdhApbTJQZ0IPNWVX0ybTYKlVBu8QpdlK0PgRnrZymXScaD46RusUlg4Jmh2VjnSch7pB1yvx2xvg==", + "dependencies": { + "@loaders.gl/draco": "3.2.13", + "@loaders.gl/gltf": "3.2.13", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/math": "3.2.13", + "@loaders.gl/tiles": "3.2.13", + "@math.gl/core": "^3.5.1", + "@math.gl/geospatial": "^3.5.1" + }, + "peerDependencies": { + "@loaders.gl/core": "^3.2.0" + } + }, + "node_modules/@loaders.gl/core": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/core/-/core-3.2.13.tgz", + "integrity": "sha512-vkrjlsqJvXGuS3WyhNbQLASnRZUNIwA+oNQQx+d1qNU5sxVRcIRphBzWNOMmgzK+C/eYK/Set43TwsGaRRQuJA==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/worker-utils": "3.2.13", + "@probe.gl/log": "^3.5.0", + "probe.gl": "^3.4.0" + } + }, + "node_modules/@loaders.gl/csv": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/csv/-/csv-3.2.13.tgz", + "integrity": "sha512-VP0B7ZamEIc737HcUMoPlpfRsF6Z6bjD55pUhOdGwDpiup3uSoKXnykdlCPk39gcK2usOwEWvCfrBHAvwsKJ7w==", + "dependencies": { + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/schema": "3.2.13" + } + }, + "node_modules/@loaders.gl/draco": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/draco/-/draco-3.2.13.tgz", + "integrity": "sha512-r+dHWzRPd1cRP6vL2YFDsyJZQrbqp7J0iZEpGt1KEdjQmyxdtVZ23vSqhx4yUR9lcod6Yo/vqmrUXejki+/vUQ==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/schema": "3.2.13", + "@loaders.gl/worker-utils": "3.2.13", + "draco3d": "1.4.1" + } + }, + "node_modules/@loaders.gl/gis": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/gis/-/gis-3.2.13.tgz", + "integrity": "sha512-Po9u+iwkji84Pj7Vkdc6Lx1ePeG3ynHaDFQKXR8BLr2XcjZPhyFnUAaWgEFwckTMg/PhwG4NHJzYHq9ztMDPpA==", + "dependencies": { + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/schema": "3.2.13", + "@mapbox/vector-tile": "^1.3.1", + "@math.gl/polygon": "^3.5.1", + "pbf": "^3.2.1" + } + }, + "node_modules/@loaders.gl/gltf": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/gltf/-/gltf-3.2.13.tgz", + "integrity": "sha512-S+K7MNWxpWqpypITD4B8ycYtX9bRbcLGDafs9j+B5g0EadElvRcrHalvC2KsSkmNajyBKmlxFk2BoN0thzeQbw==", + "dependencies": { + "@loaders.gl/draco": "3.2.13", + "@loaders.gl/images": "3.2.13", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/textures": "3.2.13" + } + }, + "node_modules/@loaders.gl/images": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/images/-/images-3.2.13.tgz", + "integrity": "sha512-s3aPA/gQH30MaUexlw5HqYA5Zl59yPgO4lZP9YM5s9tb42Mj1IZ6seImOiHHDihAmoUj6NBPLSFVrxq99Qz4Hg==", + "dependencies": { + "@loaders.gl/loader-utils": "3.2.13" + } + }, + "node_modules/@loaders.gl/json": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/json/-/json-3.2.13.tgz", + "integrity": "sha512-Wi97qjvDrXML1cr6Sw0sdFNjRVN7L5M5GLExKFjth7gED3KX4iUpNFVM9P941ZjT9cSIdGmktbVvIaWHmXaUSw==", + "dependencies": { + "@loaders.gl/gis": "3.2.13", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/schema": "3.2.13" + } + }, + "node_modules/@loaders.gl/loader-utils": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/loader-utils/-/loader-utils-3.2.13.tgz", + "integrity": "sha512-ldQUYvKBYGQaQM7hJClXBTv64jWLkabW0Ilb6Yz9bJ6Km04+3VyvSXwTn9GMYdadzH0Txs5kMiQygOU3oekcew==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "@loaders.gl/worker-utils": "3.2.13", + "@probe.gl/stats": "^3.5.0" + } + }, + "node_modules/@loaders.gl/math": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/math/-/math-3.2.13.tgz", + "integrity": "sha512-vXuib466Q7MWqhQ7YiP9irOpNHA2IqKM1fa+/YE09ROg6g0JDDir2YKZCtsmfN/mOSzX3FxsewDzGJqear6VsQ==", + "dependencies": { + "@loaders.gl/images": "3.2.13", + "@loaders.gl/loader-utils": "3.2.13", + "@math.gl/core": "^3.5.1" + } + }, + "node_modules/@loaders.gl/mvt": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/mvt/-/mvt-3.2.13.tgz", + "integrity": "sha512-JoPx0p2J+TDfYZXSeoLmy7WgLO6fn0Fjf0GowrvH+ntt+vMtUNgNBlCTX7tpauqKk6+1FaQlu2aMuYiwMwcCnA==", + "dependencies": { + "@loaders.gl/gis": "3.2.13", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/schema": "3.2.13", + "@math.gl/polygon": "^3.5.1", + "pbf": "^3.2.1" + } + }, + "node_modules/@loaders.gl/schema": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/schema/-/schema-3.2.13.tgz", + "integrity": "sha512-hXtml5wJKapHxIEW2mV391oBBKtKjF5X+uP9DhqtZxwXPcOC4Yb93ssFL33YvJWGG+Vfvllpy6ispoR2LAx9+g==", + "dependencies": { + "@types/geojson": "^7946.0.7", + "apache-arrow": "^4.0.0" + } + }, + "node_modules/@loaders.gl/terrain": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/terrain/-/terrain-3.2.13.tgz", + "integrity": "sha512-rvlsPT6+94AZryoxRl1QEmyOrdYkfnjJUtNMKmZip73XjquKnJJ795zjlzo73DghK3KwZc/8vgrkuE/3z8oWJQ==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/schema": "3.2.13", + "@mapbox/martini": "^0.2.0" + } + }, + "node_modules/@loaders.gl/textures": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/textures/-/textures-3.2.13.tgz", + "integrity": "sha512-e5KcKdMy1mhNdBWcNKtOLMxd7z9/tDI4/87rD3GRTUFvdPtODhdKFGT8KprCupQu0Ob/1RKr78UZ3XFnU8C6Cw==", + "dependencies": { + "@loaders.gl/images": "3.2.13", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/schema": "3.2.13", + "@loaders.gl/worker-utils": "3.2.13", + "ktx-parse": "^0.0.4", + "texture-compressor": "^1.0.2" + } + }, + "node_modules/@loaders.gl/tiles": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/tiles/-/tiles-3.2.13.tgz", + "integrity": "sha512-Obr3gugRcmn68S5ekDp+ZjvE/JOhnr0RCDN3R0p40whV0fuoe8kVcsUVoR2zqccvpcxeBeUMEyRk+3xLtnR/eQ==", + "dependencies": { + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/math": "3.2.13", + "@math.gl/core": "^3.5.1", + "@math.gl/culling": "^3.5.1", + "@math.gl/geospatial": "^3.5.1", + "@math.gl/web-mercator": "^3.5.1", + "@probe.gl/stats": "^3.5.0" + }, + "peerDependencies": { + "@loaders.gl/core": "^3.2.0" + } + }, + "node_modules/@loaders.gl/worker-utils": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/worker-utils/-/worker-utils-3.2.13.tgz", + "integrity": "sha512-YgF7JC7lFY/+ykSrVSrnt3erPXQWjewu6Vl8PBh96ehMCi7zeI6167zQt3hfyJHrLcBojNUZY45UoxzqWdUwAA==", + "dependencies": { + "@babel/runtime": "^7.3.1" + } + }, + "node_modules/@luma.gl/constants": { + "version": "8.5.18", + "resolved": "https://registry.npmjs.org/@luma.gl/constants/-/constants-8.5.18.tgz", + "integrity": "sha512-lQLGAlroQaeJkAUwrb1fRiHlMBP9/ukyjnZ1QlYgXYyeC7/9XhLx4rqBlOzQ2sxcTHHwi73nHD0P2XmVuAccBg==" + }, + "node_modules/@luma.gl/core": { + "version": "8.5.18", + "resolved": "https://registry.npmjs.org/@luma.gl/core/-/core-8.5.18.tgz", + "integrity": "sha512-XvxE2WE9jFEweJftczQ4QPd8FD23H8mWJoQej7llnyta0Xqb18Cx2VOzuyQ4uN7Uab42YkwXTu25uAq0SdAehA==", + "dependencies": { + "@babel/runtime": "^7.0.0", + "@luma.gl/constants": "8.5.18", + "@luma.gl/engine": "8.5.18", + "@luma.gl/gltools": "8.5.18", + "@luma.gl/shadertools": "8.5.18", + "@luma.gl/webgl": "8.5.18" + } + }, + "node_modules/@luma.gl/engine": { + "version": "8.5.18", + "resolved": "https://registry.npmjs.org/@luma.gl/engine/-/engine-8.5.18.tgz", + "integrity": "sha512-hLdtEPk3yt8ikL3g9qVc5FuMPMdhnj1ykPgmG6Mh4lRlCProgGSlwqWuAkzPYwYqIBqKlPNMv8DavRfsKAKc3g==", + "dependencies": { + "@babel/runtime": "^7.0.0", + "@luma.gl/constants": "8.5.18", + "@luma.gl/gltools": "8.5.18", + "@luma.gl/shadertools": "8.5.18", + "@luma.gl/webgl": "8.5.18", + "@math.gl/core": "^3.5.0", + "@probe.gl/env": "^3.5.0", + "@probe.gl/stats": "^3.5.0", + "@types/offscreencanvas": "^2019.7.0" + } + }, + "node_modules/@luma.gl/experimental": { + "version": "8.5.18", + "resolved": "https://registry.npmjs.org/@luma.gl/experimental/-/experimental-8.5.18.tgz", + "integrity": "sha512-Bw8mwO3NVYGwzYr1Edl4LVbT7JORIpymdXpmmoqP9SpWAh5HJmNSS8wt1FDaQGVCgSA/5QpmmZb1NjIKX4B40g==", + "dependencies": { + "@luma.gl/constants": "8.5.18", + "@math.gl/core": "^3.5.0", + "earcut": "^2.0.6" + }, + "peerDependencies": { + "@loaders.gl/gltf": "^3.0.0", + "@loaders.gl/images": "^3.0.0", + "@luma.gl/engine": "^8.4.0", + "@luma.gl/gltools": "^8.4.0", + "@luma.gl/shadertools": "^8.4.0", + "@luma.gl/webgl": "^8.4.0" + } + }, + "node_modules/@luma.gl/gltools": { + "version": "8.5.18", + "resolved": "https://registry.npmjs.org/@luma.gl/gltools/-/gltools-8.5.18.tgz", + "integrity": "sha512-AnZ8fxsJz/wRdUJazsFvTXbh8ypYX9rATPJj8YlDv08DGGFTQiq8MurzbEjXaEYshAu5w9rXd22nQXkQziUhmQ==", + "dependencies": { + "@babel/runtime": "^7.0.0", + "@luma.gl/constants": "8.5.18", + "@probe.gl/env": "^3.5.0", + "@probe.gl/log": "^3.5.0", + "@types/offscreencanvas": "^2019.7.0" + } + }, + "node_modules/@luma.gl/shadertools": { + "version": "8.5.18", + "resolved": "https://registry.npmjs.org/@luma.gl/shadertools/-/shadertools-8.5.18.tgz", + "integrity": "sha512-orkdnlVLB8AO4yf9jXXZqEG/UuwVg/v3Gmo4/F2vdrwkUMN+wUZFUdhssDGEGWvuauZWK9Mbz8XrxC0gmLbWzw==", + "dependencies": { + "@babel/runtime": "^7.0.0", + "@math.gl/core": "^3.5.0" + } + }, + "node_modules/@luma.gl/webgl": { + "version": "8.5.18", + "resolved": "https://registry.npmjs.org/@luma.gl/webgl/-/webgl-8.5.18.tgz", + "integrity": "sha512-8pRMq4olLzEv7ToDtCagGDklkIu1iFFBEXT4Rh11ohrfUiDAPfGz5hJrr3m0XtsVfS1CQ5QPWN2tQclmXOL+cQ==", + "dependencies": { + "@babel/runtime": "^7.0.0", + "@luma.gl/constants": "8.5.18", + "@luma.gl/gltools": "8.5.18", + "@probe.gl/env": "^3.5.0", + "@probe.gl/stats": "^3.5.0" + } + }, + "node_modules/@mapbox/geojson-rewind": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz", + "integrity": "sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==", + "dependencies": { + "get-stream": "^6.0.1", + "minimist": "^1.2.6" + }, + "bin": { + "geojson-rewind": "geojson-rewind" + } + }, + "node_modules/@mapbox/geojson-types": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz", + "integrity": "sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw==", + "peer": true + }, + "node_modules/@mapbox/jsonlint-lines-primitives": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz", + "integrity": "sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@mapbox/mapbox-gl-supported": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.5.0.tgz", + "integrity": "sha512-/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg==", + "peer": true, + "peerDependencies": { + "mapbox-gl": ">=0.32.1 <2.0.0" + } + }, + "node_modules/@mapbox/martini": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@mapbox/martini/-/martini-0.2.0.tgz", + "integrity": "sha512-7hFhtkb0KTLEls+TRw/rWayq5EeHtTaErgm/NskVoXmtgAQu/9D299aeyj6mzAR/6XUnYRp2lU+4IcrYRFjVsQ==" + }, + "node_modules/@mapbox/point-geometry": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz", + "integrity": "sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ==" + }, + "node_modules/@mapbox/tile-cover": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@mapbox/tile-cover/-/tile-cover-3.0.2.tgz", + "integrity": "sha512-A6qvtttsYI66BYi8JMD0v7BzxeuXJf6qSzufmdvvYxDJyXqATZ7ig6OKHFCW7/OsUjpfFu3rB54JM/yHUOVB9g==", + "dependencies": { + "@mapbox/tilebelt": "^1.0.1" + } + }, + "node_modules/@mapbox/tilebelt": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@mapbox/tilebelt/-/tilebelt-1.0.2.tgz", + "integrity": "sha512-tGJN2VIgWrXqBTPIxFVklklIpcy6ss8W5ouq+cjNLXPXFraRaDR4Ice+5Q8/uLX+6aH23lWBMydOIn8PcdVcpA==" + }, + "node_modules/@mapbox/tiny-sdf": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-1.2.5.tgz", + "integrity": "sha512-cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw==" + }, + "node_modules/@mapbox/unitbezier": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz", + "integrity": "sha512-HPnRdYO0WjFjRTSwO3frz1wKaU649OBFPX3Zo/2WZvuRi6zMiRGui8SnPQiQABgqCf8YikDe5t3HViTVw1WUzA==", + "peer": true + }, + "node_modules/@mapbox/vector-tile": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz", + "integrity": "sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==", + "dependencies": { + "@mapbox/point-geometry": "~0.1.0" + } + }, + "node_modules/@mapbox/whoots-js": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz", + "integrity": "sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@math.gl/core": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-3.6.3.tgz", + "integrity": "sha512-jBABmDkj5uuuE0dTDmwwss7Cup5ZwQ6Qb7h1pgvtkEutTrhkcv8SuItQNXmF45494yIHeoGue08NlyeY6wxq2A==", + "dependencies": { + "@babel/runtime": "^7.12.0", + "@math.gl/types": "3.6.3", + "gl-matrix": "^3.4.0" + } + }, + "node_modules/@math.gl/culling": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/culling/-/culling-3.6.3.tgz", + "integrity": "sha512-3UERXHbaPlM6pnTk2MI7LeQ5CoelDZzDzghTTcv+HdQCZsT/EOEuEdYimETHtSxiyiOmsX2Un65UBLYT/rbKZg==", + "dependencies": { + "@babel/runtime": "^7.12.0", + "@math.gl/core": "3.6.3", + "gl-matrix": "^3.4.0" + } + }, + "node_modules/@math.gl/geospatial": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/geospatial/-/geospatial-3.6.3.tgz", + "integrity": "sha512-6xf657lJnaecSarSzn02t0cnsCSkWb+39m4+im96v20dZTrLCWZ2glDQVzfuL91meDnDXjH4oyvynp12Mj5MFg==", + "dependencies": { + "@babel/runtime": "^7.12.0", + "@math.gl/core": "3.6.3", + "gl-matrix": "^3.4.0" + } + }, + "node_modules/@math.gl/polygon": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/polygon/-/polygon-3.6.3.tgz", + "integrity": "sha512-FivQ1ZnYcAss1wVifOkHP/ZnlfQy1IL/769uzNtiHxwUbW0kZG3yyOZ9I7fwyzR5Hvqt3ErJKHjSYZr0uVlz5g==", + "dependencies": { + "@math.gl/core": "3.6.3" + } + }, + "node_modules/@math.gl/sun": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/sun/-/sun-3.6.3.tgz", + "integrity": "sha512-mrx6CGYYeTNSQttvcw0KVUy+35YDmnjMqpO/o0t06Vcghrt0HNruB/ScRgUSbJrgkbOg1Vcqm23HBd++clzQzw==", + "dependencies": { + "@babel/runtime": "^7.12.0" + } + }, + "node_modules/@math.gl/types": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/types/-/types-3.6.3.tgz", + "integrity": "sha512-3uWLVXHY3jQxsXCr/UCNPSc2BG0hNUljhmOBt9l+lNFDp7zHgm0cK2Tw4kj2XfkJy4TgwZTBGwRDQgWEbLbdTA==" + }, + "node_modules/@math.gl/web-mercator": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/web-mercator/-/web-mercator-3.6.3.tgz", + "integrity": "sha512-UVrkSOs02YLehKaehrxhAejYMurehIHPfFQvPFZmdJHglHOU4V2cCUApTVEwOksvCp161ypEqVp+9H6mGhTTcw==", + "dependencies": { + "@babel/runtime": "^7.12.0", + "gl-matrix": "^3.4.0" + } + }, + "node_modules/@probe.gl/env": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@probe.gl/env/-/env-3.6.0.tgz", + "integrity": "sha512-4tTZYUg/8BICC3Yyb9rOeoKeijKbZHRXBEKObrfPmX4sQmYB15ZOUpoVBhAyJkOYVAM8EkPci6Uw5dLCwx2BEQ==", + "dependencies": { + "@babel/runtime": "^7.0.0" + } + }, + "node_modules/@probe.gl/log": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@probe.gl/log/-/log-3.6.0.tgz", + "integrity": "sha512-hjpyenpEvOdowgZ1qMeCJxfRD4JkKdlXz0RC14m42Un62NtOT+GpWyKA4LssT0+xyLULCByRAtG2fzZorpIAcA==", + "dependencies": { + "@babel/runtime": "^7.0.0", + "@probe.gl/env": "3.6.0" + } + }, + "node_modules/@probe.gl/stats": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@probe.gl/stats/-/stats-3.6.0.tgz", + "integrity": "sha512-JdALQXB44OP4kUBN/UrQgzbJe4qokbVF4Y8lkIA8iVCFnjVowWIgkD/z/0QO65yELT54tTrtepw1jScjKB+rhQ==", + "dependencies": { + "@babel/runtime": "^7.0.0" + } + }, + "node_modules/@types/flatbuffers": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@types/flatbuffers/-/flatbuffers-1.10.0.tgz", + "integrity": "sha512-7btbphLrKvo5yl/5CC2OCxUSMx1wV1wvGT1qDXkSt7yi00/YW7E8k6qzXqJHsp+WU0eoG7r6MTQQXI9lIvd0qA==" + }, + "node_modules/@types/geojson": { + "version": "7946.0.10", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz", + "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==" + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/hammerjs": { + "version": "2.0.41", + "resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.41.tgz", + "integrity": "sha512-ewXv/ceBaJprikMcxCmWU1FKyMAQ2X7a9Gtmzw8fcg2kIePI1crERDM818W+XYrxqdBBOdlf2rm137bU+BltCA==" + }, + "node_modules/@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true + }, + "node_modules/@types/mapbox__point-geometry": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.2.tgz", + "integrity": "sha512-D0lgCq+3VWV85ey1MZVkE8ZveyuvW5VAfuahVTQRpXFQTxw03SuIf1/K4UQ87MMIXVKzpFjXFiFMZzLj2kU+iA==" + }, + "node_modules/@types/mapbox__vector-tile": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@types/mapbox__vector-tile/-/mapbox__vector-tile-1.3.0.tgz", + "integrity": "sha512-kDwVreQO5V4c8yAxzZVQLE5tyWF+IPToAanloQaSnwfXmIcJ7cyOrv8z4Ft4y7PsLYmhWXmON8MBV8RX0Rgr8g==", + "dependencies": { + "@types/geojson": "*", + "@types/mapbox__point-geometry": "*", + "@types/pbf": "*" + } + }, + "node_modules/@types/mapbox-gl": { + "version": "2.7.10", + "resolved": "https://registry.npmjs.org/@types/mapbox-gl/-/mapbox-gl-2.7.10.tgz", + "integrity": "sha512-nMVEcu9bAcenvx6oPWubQSPevsekByjOfKjlkr+8P91vawtkxTnopDoXXq1Qn/f4cg3zt0Z2W9DVsVsKRNXJTw==", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "dev": true + }, + "node_modules/@types/node": { + "version": "14.18.36", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.36.tgz", + "integrity": "sha512-FXKWbsJ6a1hIrRxv+FoukuHnGTgEzKYGi7kilfMae96AL9UNkPFNWJEEYWzdRI9ooIkbr4AKldyuSTLql06vLQ==" + }, + "node_modules/@types/offscreencanvas": { + "version": "2019.7.0", + "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.0.tgz", + "integrity": "sha512-PGcyveRIpL1XIqK8eBsmRBt76eFgtzuPiSTyKHZxnGemp2yzGzWpjYKAfK3wIMiU7eH+851yEpiuP8JZerTmWg==" + }, + "node_modules/@types/pbf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/pbf/-/pbf-3.0.2.tgz", + "integrity": "sha512-EDrLIPaPXOZqDjrkzxxbX7UlJSeQVgah3i0aA4pOSzmK9zq3BIh7/MZIQxED7slJByvKM4Gc6Hypyu2lJzh3SQ==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", + "peer": true + }, + "node_modules/@types/react": { + "version": "18.0.28", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.28.tgz", + "integrity": "sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==", + "peer": true, + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", + "peer": true + }, + "node_modules/@types/text-encoding-utf-8": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@types/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz", + "integrity": "sha512-AQ6zewa0ucLJvtUi5HsErbOFKAcQfRLt9zFLlUOvcXBy2G36a+ZDpCHSGdzJVUD8aNURtIjh9aSjCStNMRCcRQ==" + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "dev": true, + "dependencies": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", + "dev": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true, + "peerDependencies": { + "ajv": ">=5.0.0" + } + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "optional": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/apache-arrow": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/apache-arrow/-/apache-arrow-4.0.1.tgz", + "integrity": "sha512-DyF7GXCbSjsw4P5C8b+qW7OnJKa6w9mJI0mhV0+EfZbVZCmhfiF6ffqcnrI/kzBrRqn9hH/Ft9n5+m4DTbBJpg==", + "dependencies": { + "@types/flatbuffers": "^1.10.0", + "@types/node": "^14.14.37", + "@types/text-encoding-utf-8": "^1.0.1", + "command-line-args": "5.1.1", + "command-line-usage": "6.1.1", + "flatbuffers": "1.12.0", + "json-bignum": "^0.0.3", + "pad-left": "^2.1.0", + "text-encoding-utf-8": "^1.0.2", + "tslib": "^2.2.0" + }, + "bin": { + "arrow2csv": "bin/arrow2csv.js" + } + }, + "node_modules/aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "dev": true + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-back": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", + "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==", + "engines": { + "node": ">=6" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dev": true, + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/asn1.js/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, + "dependencies": { + "object-assign": "^4.1.1", + "util": "0.10.3" + } + }, + "node_modules/assert/node_modules/inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==", + "dev": true + }, + "node_modules/assert/node_modules/util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==", + "dev": true, + "dependencies": { + "inherits": "2.0.1" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/async-each": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", + "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ] + }, + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true, + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "dev": true, + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/babel-loader/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/babel-loader/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-loader/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-loader/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-loader/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "dependencies": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", + "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.3", + "core-js-compat": "^3.25.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "node_modules/bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", + "dev": true + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", + "dev": true, + "dependencies": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/braces/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", + "dev": true + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dev": true, + "dependencies": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "node_modules/browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dev": true, + "dependencies": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + } + }, + "node_modules/browserify-sign/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "dependencies": { + "pako": "~1.0.5" + } + }, + "node_modules/browserslist": { + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dev": true, + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", + "dev": true + }, + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", + "dev": true + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "dev": true, + "dependencies": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001453", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001453.tgz", + "integrity": "sha512-R9o/uySW38VViaTrOtwfbFEiBFUh7ST3uIG4OEymIG3/uKdHDO4xk/FaqfUw0d+irSUyFPy3dZszf9VvSTPnsA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ] + }, + "node_modules/cartocolor": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/cartocolor/-/cartocolor-4.0.2.tgz", + "integrity": "sha512-+Gh9mb6lFxsDOLQlBLPxAHCnWXlg2W8q3AcVwqRcy95TdBbcOU89Wrb6h2Hd/6Ww1Kc1pzXmUdpnWD+xeCG0dg==", + "dependencies": { + "colorbrewer": "1.0.0" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "optional": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "optional": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "optional": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/chokidar/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "optional": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dev": true, + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/colorbrewer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/colorbrewer/-/colorbrewer-1.0.0.tgz", + "integrity": "sha512-NZuIOVdErK/C6jDH3jWT/roxWJbJAinMiqEpbuWniKvQAoWdg6lGra3pPrSHvaIf8PlX8wLs/RAC6nULFJbgmg==" + }, + "node_modules/command-line-args": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.1.1.tgz", + "integrity": "sha512-hL/eG8lrll1Qy1ezvkant+trihbGnaKaeEjj6Scyr3DN+RC7iQ5Rz84IeLERfAWDGo0HBSNAakczwgCilDXnWg==", + "dependencies": { + "array-back": "^3.0.1", + "find-replace": "^3.0.0", + "lodash.camelcase": "^4.3.0", + "typical": "^4.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/command-line-usage": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.1.tgz", + "integrity": "sha512-F59pEuAR9o1SF/bD0dQBDluhpT4jJQNWUHEuVBqpDmCUo6gPjCi+m9fCWnWZVR/oG6cMTUms4h+3NPl74wGXvA==", + "dependencies": { + "array-back": "^4.0.1", + "chalk": "^2.4.2", + "table-layout": "^1.0.1", + "typical": "^5.2.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/command-line-usage/node_modules/array-back": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", + "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/command-line-usage/node_modules/typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", + "dev": true + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dev": true, + "dependencies": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/core-js-compat": { + "version": "3.28.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.28.0.tgz", + "integrity": "sha512-myzPgE7QodMg4nnd3K1TDoES/nADRStM8Gpz0D6nhkwbmwEnE0ZGJgoWsvQ722FR8D7xS0n0LV556RcEicjTyg==", + "dependencies": { + "browserslist": "^4.21.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + } + }, + "node_modules/create-ecdh/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/cross-spawn/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "dependencies": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "engines": { + "node": "*" + } + }, + "node_modules/csscolorparser": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/csscolorparser/-/csscolorparser-1.0.3.tgz", + "integrity": "sha512-umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w==" + }, + "node_modules/csstype": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", + "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==", + "peer": true + }, + "node_modules/cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==", + "dev": true + }, + "node_modules/d3-array": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", + "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" + }, + "node_modules/d3-collection": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz", + "integrity": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==" + }, + "node_modules/d3-color": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-1.4.1.tgz", + "integrity": "sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==" + }, + "node_modules/d3-dispatch": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.6.tgz", + "integrity": "sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA==" + }, + "node_modules/d3-dsv": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.2.0.tgz", + "integrity": "sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g==", + "dependencies": { + "commander": "2", + "iconv-lite": "0.4", + "rw": "1" + }, + "bin": { + "csv2json": "bin/dsv2json", + "csv2tsv": "bin/dsv2dsv", + "dsv2dsv": "bin/dsv2dsv", + "dsv2json": "bin/dsv2json", + "json2csv": "bin/json2dsv", + "json2dsv": "bin/json2dsv", + "json2tsv": "bin/json2dsv", + "tsv2csv": "bin/dsv2dsv", + "tsv2json": "bin/dsv2json" + } + }, + "node_modules/d3-format": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-1.4.5.tgz", + "integrity": "sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==" + }, + "node_modules/d3-hexbin": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/d3-hexbin/-/d3-hexbin-0.2.2.tgz", + "integrity": "sha512-KS3fUT2ReD4RlGCjvCEm1RgMtp2NFZumdMu4DBzQK8AZv3fXRM6Xm8I4fSU07UXvH4xxg03NwWKWdvxfS/yc4w==" + }, + "node_modules/d3-interpolate": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.4.0.tgz", + "integrity": "sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==", + "dependencies": { + "d3-color": "1" + } + }, + "node_modules/d3-request": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/d3-request/-/d3-request-1.0.6.tgz", + "integrity": "sha512-FJj8ySY6GYuAJHZMaCQ83xEYE4KbkPkmxZ3Hu6zA1xxG2GD+z6P+Lyp+zjdsHf0xEbp2xcluDI50rCS855EQ6w==", + "dependencies": { + "d3-collection": "1", + "d3-dispatch": "1", + "d3-dsv": "1", + "xmlhttprequest": "1" + } + }, + "node_modules/d3-scale": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz", + "integrity": "sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==", + "dependencies": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + }, + "node_modules/d3-time": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-1.1.0.tgz", + "integrity": "sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==" + }, + "node_modules/d3-time-format": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.3.0.tgz", + "integrity": "sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ==", + "dependencies": { + "d3-time": "1" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/deck.gl": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/deck.gl/-/deck.gl-8.8.24.tgz", + "integrity": "sha512-2EysFdxSenBh1NUZQRwp1V8XdCsG2vFWHpRUysHhcZGgfC4m5CZwulLE1gL5Wpcki1p30IGUZG7a6hyIbM9Gtg==", + "dependencies": { + "@deck.gl/aggregation-layers": "8.8.24", + "@deck.gl/carto": "8.8.24", + "@deck.gl/core": "8.8.24", + "@deck.gl/extensions": "8.8.24", + "@deck.gl/geo-layers": "8.8.24", + "@deck.gl/google-maps": "8.8.24", + "@deck.gl/json": "8.8.24", + "@deck.gl/layers": "8.8.24", + "@deck.gl/mapbox": "8.8.24", + "@deck.gl/mesh-layers": "8.8.24", + "@deck.gl/react": "8.8.24" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "dependencies": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dev": true, + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "dev": true, + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "dependencies": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "node_modules/diffie-hellman/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "dev": true + }, + "node_modules/dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dev": true, + "dependencies": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", + "dev": true, + "dependencies": { + "buffer-indexof": "^1.0.0" + } + }, + "node_modules/domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true, + "engines": { + "node": ">=0.4", + "npm": ">=1.2" + } + }, + "node_modules/draco3d": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/draco3d/-/draco3d-1.4.1.tgz", + "integrity": "sha512-9Rxonc70xiovBC+Bq1h57SNZIHzWTibU1VfIGp5z3Xx8dPtv4yT5uGhiH7P5uvJRR2jkrvHafRxR7bTANkvfpg==" + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/earcut": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz", + "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.299", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.299.tgz", + "integrity": "sha512-lQ7ijJghH6pCGbfWXr6EY+KYCMaRSjgsY925r1p/TlpSfVM1VjHTcn1gAc15VM4uwti283X6QtjPTXdpoSGiZQ==" + }, + "node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dev": true, + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/enhanced-resolve/node_modules/memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/eventsource": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-2.0.2.tgz", + "integrity": "sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==", + "dev": true, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/execa/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dev": true, + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/expression-eval": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/expression-eval/-/expression-eval-2.1.0.tgz", + "integrity": "sha512-FUJO/Akvl/JOWkvlqZaqbkhsEWlCJWDeZG4tzX96UH68D9FeRgYgtb55C2qtqbORC0Q6x5419EDjWu4IT9kQfg==", + "dependencies": { + "jsep": "^0.3.0" + } + }, + "node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", + "dev": true + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fill-range/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-replace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", + "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", + "dependencies": { + "array-back": "^3.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/flatbuffers": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/flatbuffers/-/flatbuffers-1.12.0.tgz", + "integrity": "sha512-c7CZADjRcl6j0PlvFy0ZqXQ67qSEZfrVPynmnL+2zPc+NtMvrF8Y0QceMo7QqnSPc7+uWjUIAbvCQ5WIKlMVdQ==" + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dev": true, + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/geojson-vt": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-3.2.1.tgz", + "integrity": "sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==" + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", + "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gl-matrix": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.3.tgz", + "integrity": "sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==" + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "optional": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dev": true, + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "node_modules/grid-index": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/grid-index/-/grid-index-1.1.0.tgz", + "integrity": "sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA==", + "peer": true + }, + "node_modules/h3-js": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/h3-js/-/h3-js-3.7.2.tgz", + "integrity": "sha512-LPjlHSwB9zQZrMqKloCZmmmt3yZzIK7nqPcXqwU93zT3TtYG6jP4tZBzAPouxut7lLjdFbMQ75wRBiKfpsnY7w==", + "engines": { + "node": ">=4", + "npm": ">=3", + "yarn": ">=1.3.0" + } + }, + "node_modules/hammerjs": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/hammerjs/-/hammerjs-2.0.8.tgz", + "integrity": "sha512-tSQXBXS/MWQOn/RKckawJ61vvsDpCom87JgxiYdGwHdOa0ht0vzUWDlfioofFCRU0L+6NGDt6XzbgoJvZkMeRQ==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dev": true, + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash-base/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "dev": true, + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "dependencies": { + "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "dev": true + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, + "dependencies": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", + "dev": true + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==", + "dev": true + }, + "node_modules/image-size": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.7.5.tgz", + "integrity": "sha512-Hiyv+mXHfFEP7LzUL/llg9RwFxxY+o9N3JVLIeG5E7iFIFAalxvRU9UZthBdYDEVnzHMgjnKJPPpay5BWf1g9g==", + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "engines": { + "node": ">=12" + } + }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/ip": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "dev": true + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "optional": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/jsep": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/jsep/-/jsep-0.3.5.tgz", + "integrity": "sha512-AoRLBDc6JNnKjNcmonituEABS5bcfqDhQAWWXNTFrqu6nVXBpBAGfcoTGZMFlIrh9FjmE1CQyX9CTNwZrXMMDA==", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-bignum": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/json-bignum/-/json-bignum-0.0.3.tgz", + "integrity": "sha512-2WHyXj3OfHSgNyuzDbSxI1w2jgw5gkWSWhS7Qg4bWXx1nLk3jnbwfUeS0PSba3IzpTUWdHxBieELUzXRjQB2zg==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/kdbush": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-3.0.0.tgz", + "integrity": "sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew==" + }, + "node_modules/killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ktx-parse": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/ktx-parse/-/ktx-parse-0.0.4.tgz", + "integrity": "sha512-LY3nrmfXl+wZZdPxgJ3ZmLvG+wkOZZP3/dr4RbQj1Pk3Qwz44esOOSFFVQJcNWpXAtiNIC66WgXufX/SYgYz6A==" + }, + "node_modules/loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "dev": true, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/loader-utils/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + }, + "node_modules/loglevel": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.1.tgz", + "integrity": "sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" + } + }, + "node_modules/long": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz", + "integrity": "sha512-ZYvPPOMqUwPoDsbJaR10iQJYnMuZhRTvHYl62ErLIEX7RgFlziSBUUvrt3OVfc47QlHHpzPZYP17g3Fv7oeJkg==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dev": true, + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mapbox-gl": { + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/mapbox-gl/-/mapbox-gl-1.13.3.tgz", + "integrity": "sha512-p8lJFEiqmEQlyv+DQxFAOG/XPWN0Wp7j/Psq93Zywz7qt9CcUKFYDBOoOEKzqe6gudHVJY8/Bhqw6VDpX2lSBg==", + "peer": true, + "dependencies": { + "@mapbox/geojson-rewind": "^0.5.2", + "@mapbox/geojson-types": "^1.0.2", + "@mapbox/jsonlint-lines-primitives": "^2.0.2", + "@mapbox/mapbox-gl-supported": "^1.5.0", + "@mapbox/point-geometry": "^0.1.0", + "@mapbox/tiny-sdf": "^1.1.1", + "@mapbox/unitbezier": "^0.0.0", + "@mapbox/vector-tile": "^1.3.1", + "@mapbox/whoots-js": "^3.1.0", + "csscolorparser": "~1.0.3", + "earcut": "^2.2.2", + "geojson-vt": "^3.2.1", + "gl-matrix": "^3.2.1", + "grid-index": "^1.1.0", + "murmurhash-js": "^1.0.0", + "pbf": "^3.2.1", + "potpack": "^1.0.1", + "quickselect": "^2.0.0", + "rw": "^1.3.3", + "supercluster": "^7.1.0", + "tinyqueue": "^2.0.3", + "vt-pbf": "^3.1.1" + }, + "engines": { + "node": ">=6.4.0" + } + }, + "node_modules/maplibre-gl": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/maplibre-gl/-/maplibre-gl-2.4.0.tgz", + "integrity": "sha512-csNFylzntPmHWidczfgCZpvbTSmhaWvLRj9e1ezUDBEPizGgshgm3ea1T5TCNEEBq0roauu7BPuRZjA3wO4KqA==", + "hasInstallScript": true, + "dependencies": { + "@mapbox/geojson-rewind": "^0.5.2", + "@mapbox/jsonlint-lines-primitives": "^2.0.2", + "@mapbox/mapbox-gl-supported": "^2.0.1", + "@mapbox/point-geometry": "^0.1.0", + "@mapbox/tiny-sdf": "^2.0.5", + "@mapbox/unitbezier": "^0.0.1", + "@mapbox/vector-tile": "^1.3.1", + "@mapbox/whoots-js": "^3.1.0", + "@types/geojson": "^7946.0.10", + "@types/mapbox__point-geometry": "^0.1.2", + "@types/mapbox__vector-tile": "^1.3.0", + "@types/pbf": "^3.0.2", + "csscolorparser": "~1.0.3", + "earcut": "^2.2.4", + "geojson-vt": "^3.2.1", + "gl-matrix": "^3.4.3", + "global-prefix": "^3.0.0", + "murmurhash-js": "^1.0.0", + "pbf": "^3.2.1", + "potpack": "^1.0.2", + "quickselect": "^2.0.0", + "supercluster": "^7.1.5", + "tinyqueue": "^2.0.3", + "vt-pbf": "^3.1.3" + } + }, + "node_modules/maplibre-gl/node_modules/@mapbox/mapbox-gl-supported": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-2.0.1.tgz", + "integrity": "sha512-HP6XvfNIzfoMVfyGjBckjiAOQK9WfX0ywdLubuPMPv+Vqf5fj0uCbgBQYpiqcWZT6cbyyRnTSXDheT1ugvF6UQ==" + }, + "node_modules/maplibre-gl/node_modules/@mapbox/tiny-sdf": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz", + "integrity": "sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==" + }, + "node_modules/maplibre-gl/node_modules/@mapbox/unitbezier": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz", + "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==" + }, + "node_modules/math.gl": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/math.gl/-/math.gl-3.6.3.tgz", + "integrity": "sha512-Yq9CyECvSDox9+5ETi2+x1bGTY5WvGUGL3rJfC4KPoCZAM51MGfrCm6rIn4yOJUVfMPs2a5RwMD+yGS/n1g3gg==", + "dependencies": { + "@math.gl/core": "3.6.3" + } + }, + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", + "dev": true, + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "dev": true, + "dependencies": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mjolnir.js": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/mjolnir.js/-/mjolnir.js-2.7.1.tgz", + "integrity": "sha512-72BeUWgTv2cj5aZQKpwL8caNUFhXZ9bDm1hxpNj70XJQ62IBnTZmtv/WPxJvtaVNhzNo+D2U8O6ryNI0zImYcw==", + "dependencies": { + "@types/hammerjs": "^2.0.41", + "hammerjs": "^2.0.8" + }, + "engines": { + "node": ">= 4", + "npm": ">= 3" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/moment": { + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", + "engines": { + "node": "*" + } + }, + "node_modules/moment-timezone": { + "version": "0.5.40", + "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.40.tgz", + "integrity": "sha512-tWfmNkRYmBkPJz5mr9GVDn9vRlVZOTe6yqY92rFxiOdWXbjaR0+9LwQnZGGuNR63X456NqmEkbskte8tWL5ePg==", + "dependencies": { + "moment": ">= 2.9.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", + "dev": true, + "dependencies": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "dependencies": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", + "dev": true + }, + "node_modules/murmurhash-js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/murmurhash-js/-/murmurhash-js-1.0.0.tgz", + "integrity": "sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==" + }, + "node_modules/nan": { + "version": "2.17.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", + "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", + "dev": true, + "optional": true + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node_modules/node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dev": true, + "dependencies": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dev": true, + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dev": true, + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", + "dev": true + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "dependencies": { + "retry": "^0.12.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pad-left": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pad-left/-/pad-left-2.1.0.tgz", + "integrity": "sha512-HJxs9K9AztdIQIAIa/OIazRAUW/L6B9hbQDxO4X07roW3eo9XqZc2ur9bn1StH9CnbbI9EgvejHQX7CBpCF1QA==", + "dependencies": { + "repeat-string": "^1.5.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + }, + "node_modules/parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "dev": true, + "dependencies": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "node_modules/parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dev": true, + "dependencies": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "dev": true + }, + "node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "dev": true + }, + "node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "node_modules/pbf": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/pbf/-/pbf-3.2.1.tgz", + "integrity": "sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==", + "dependencies": { + "ieee754": "^1.1.12", + "resolve-protobuf-schema": "^2.1.0" + }, + "bin": { + "pbf": "bin/pbf" + } + }, + "node_modules/pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "dev": true, + "dependencies": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/portfinder": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "dev": true, + "dependencies": { + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/potpack": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/potpack/-/potpack-1.0.2.tgz", + "integrity": "sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==" + }, + "node_modules/probe.gl": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/probe.gl/-/probe.gl-3.6.0.tgz", + "integrity": "sha512-19JydJWI7+DtR4feV+pu4Mn1I5TAc0xojuxVgZdXIyfmTLfUaFnk4OloWK1bKbPtkgGKLr2lnbnCXmpZEcEp9g==", + "dependencies": { + "@babel/runtime": "^7.0.0", + "@probe.gl/env": "3.6.0", + "@probe.gl/log": "3.6.0", + "@probe.gl/stats": "3.6.0" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "dev": true + }, + "node_modules/protocol-buffers-schema": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz", + "integrity": "sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true + }, + "node_modules/public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/public-encrypt/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "dev": true + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/quadbin": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/quadbin/-/quadbin-0.1.5.tgz", + "integrity": "sha512-/MQnN7V73myA+31gTxldTGN8ixqrUCXtUoDvRKSI9QZJOaq0cS9SNQkdToMxjC3ZSM2hN7mleOAn+9QVNlPZOg==", + "dependencies": { + "@mapbox/tile-cover": "^3.0.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "node_modules/quickselect": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz", + "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==" + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "dependencies": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-map-gl": { + "version": "7.0.21", + "resolved": "https://registry.npmjs.org/react-map-gl/-/react-map-gl-7.0.21.tgz", + "integrity": "sha512-Cmokphv6VHfRJsHVjCtn7nw5mf8rl89CHdvPSaif0OWZZqe+pxM2/5hEr4EvPWeTokRPCo1XTrBpGbShkEuktQ==", + "dependencies": { + "@types/mapbox-gl": "^2.6.0" + }, + "peerDependencies": { + "mapbox-gl": "*", + "react": ">=16.3.0" + } + }, + "node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/readable-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "optional": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/reduce-flatten": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", + "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/regenerator-transform": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.0.tgz", + "integrity": "sha512-ZdhUQlng0RoscyW7jADnUZ25F5eVtHdMyXSb2PiwafvteRAOJUjFoUPEYZSIfP99fBIs3maLIRfpEddT78wAAQ==", + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", + "dev": true + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", + "dev": true, + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-protobuf-schema": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz", + "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==", + "dependencies": { + "protocol-buffers-schema": "^3.3.1" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", + "dev": true + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", + "dev": true, + "dependencies": { + "aproba": "^1.1.1" + } + }, + "node_modules/rw": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", + "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==" + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dev": true, + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "node_modules/selfsigned": { + "version": "1.10.14", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", + "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", + "dev": true, + "dependencies": { + "node-forge": "^0.10.0" + } + }, + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dev": true, + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "dev": true + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/sockjs-client": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.1.tgz", + "integrity": "sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "eventsource": "^2.0.2", + "faye-websocket": "^0.11.4", + "inherits": "^2.0.4", + "url-parse": "^1.5.10" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://tidelift.com/funding/github/npm/sockjs-client" + } + }, + "node_modules/sockjs-client/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "dev": true, + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", + "dev": true + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/ssri": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", + "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", + "dev": true, + "dependencies": { + "figgy-pudding": "^3.5.1" + } + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dev": true, + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dev": true, + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "node_modules/stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, + "dependencies": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/supercluster": { + "version": "7.1.5", + "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-7.1.5.tgz", + "integrity": "sha512-EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg==", + "dependencies": { + "kdbush": "^3.0.0" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/table-layout": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-1.0.2.tgz", + "integrity": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==", + "dependencies": { + "array-back": "^4.0.1", + "deep-extend": "~0.6.0", + "typical": "^5.2.0", + "wordwrapjs": "^4.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/table-layout/node_modules/array-back": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", + "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/table-layout/node_modules/typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/terser": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", + "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", + "dev": true, + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "dev": true, + "dependencies": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/terser/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/text-encoding-utf-8": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz", + "integrity": "sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==" + }, + "node_modules/texture-compressor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/texture-compressor/-/texture-compressor-1.0.2.tgz", + "integrity": "sha512-dStVgoaQ11mA5htJ+RzZ51ZxIZqNOgWKAIvtjLrW1AliQQLCmrDqNzQZ8Jh91YealQ95DXt4MEduLzJmbs6lig==", + "dependencies": { + "argparse": "^1.0.10", + "image-size": "^0.7.4" + }, + "bin": { + "texture-compressor": "bin/texture-compressor.js" + } + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "node_modules/timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dev": true, + "dependencies": { + "setimmediate": "^1.0.4" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/tinyqueue": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-2.0.3.tgz", + "integrity": "sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==" + }, + "node_modules/to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==", + "dev": true + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "node_modules/typical": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", + "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "engines": { + "node": ">=4" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/union-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dev": true, + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dev": true, + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true, + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist-lint": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/uri-js/node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", + "dev": true + }, + "node_modules/url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", + "dev": true, + "dependencies": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==", + "dev": true + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dev": true, + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "dev": true + }, + "node_modules/vt-pbf": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/vt-pbf/-/vt-pbf-3.1.3.tgz", + "integrity": "sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==", + "dependencies": { + "@mapbox/point-geometry": "0.1.0", + "@mapbox/vector-tile": "^1.3.1", + "pbf": "^3.2.1" + } + }, + "node_modules/watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0" + }, + "optionalDependencies": { + "chokidar": "^3.4.1", + "watchpack-chokidar2": "^2.0.1" + } + }, + "node_modules/watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "dev": true, + "optional": true, + "dependencies": { + "chokidar": "^2.1.8" + } + }, + "node_modules/watchpack-chokidar2/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "optional": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/watchpack-chokidar2/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "optional": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", + "dev": true, + "optional": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "optional": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "optional": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "optional": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "optional": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/webpack": { + "version": "4.46.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.46.0.tgz", + "integrity": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.5.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + }, + "webpack-command": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.12.tgz", + "integrity": "sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==", + "dev": true, + "dependencies": { + "chalk": "^2.4.2", + "cross-spawn": "^6.0.5", + "enhanced-resolve": "^4.1.1", + "findup-sync": "^3.0.0", + "global-modules": "^2.0.0", + "import-local": "^2.0.0", + "interpret": "^1.4.0", + "loader-utils": "^1.4.0", + "supports-color": "^6.1.0", + "v8-compile-cache": "^2.1.1", + "yargs": "^13.3.2" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=6.11.5" + }, + "peerDependencies": { + "webpack": "4.x.x" + } + }, + "node_modules/webpack-cli/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dev": true, + "dependencies": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack-dev-server": { + "version": "3.11.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", + "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", + "dev": true, + "dependencies": { + "ansi-html-community": "0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 6.11.5" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/webpack-dev-server/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", + "dev": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/webpack-dev-server/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/webpack-dev-server/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/webpack-dev-server/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/webpack-dev-server/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dev": true, + "dependencies": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/webpack-log/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "dev": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack-sources/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==", + "dev": true + }, + "node_modules/wordwrapjs": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz", + "integrity": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==", + "dependencies": { + "reduce-flatten": "^2.0.0", + "typical": "^5.2.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/wordwrapjs/node_modules/typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dev": true, + "dependencies": { + "errno": "~0.1.7" + } + }, + "node_modules/wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dev": true, + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/xmlhttprequest": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz", + "integrity": "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "dependencies": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "node_modules/yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + }, + "dependencies": { + "@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "requires": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "requires": { + "@babel/highlight": "^7.18.6" + } + }, + "@babel/compat-data": { + "version": "7.20.14", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.14.tgz", + "integrity": "sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==" + }, + "@babel/core": { + "version": "7.20.12", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz", + "integrity": "sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==", + "requires": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.7", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helpers": "^7.20.7", + "@babel/parser": "^7.20.7", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.12", + "@babel/types": "^7.20.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + } + }, + "@babel/generator": { + "version": "7.20.14", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.14.tgz", + "integrity": "sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==", + "requires": { + "@babel/types": "^7.20.7", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + } + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", + "requires": { + "@babel/helper-explode-assignable-expression": "^7.18.6", + "@babel/types": "^7.18.9" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz", + "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==", + "requires": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.20.12", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz", + "integrity": "sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-member-expression-to-functions": "^7.20.7", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/helper-split-export-declaration": "^7.18.6" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz", + "integrity": "sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "regexpu-core": "^5.2.1" + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "requires": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + } + }, + "@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", + "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-function-name": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "requires": { + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz", + "integrity": "sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==", + "requires": { + "@babel/types": "^7.20.7" + } + }, + "@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-module-transforms": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz", + "integrity": "sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==", + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.10", + "@babel/types": "^7.20.7" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", + "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==" + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" + } + }, + "@babel/helper-replace-supers": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz", + "integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==", + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.20.7", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.7", + "@babel/types": "^7.20.7" + } + }, + "@babel/helper-simple-access": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "requires": { + "@babel/types": "^7.20.2" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", + "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", + "requires": { + "@babel/types": "^7.20.0" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-string-parser": { + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==" + }, + "@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==" + }, + "@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" + }, + "@babel/helper-wrap-function": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", + "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", + "requires": { + "@babel/helper-function-name": "^7.19.0", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5" + } + }, + "@babel/helpers": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.13.tgz", + "integrity": "sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==", + "requires": { + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.13", + "@babel/types": "^7.20.7" + } + }, + "@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.20.15", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.15.tgz", + "integrity": "sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==" + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", + "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz", + "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-proposal-optional-chaining": "^7.20.7" + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz", + "integrity": "sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", + "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "requires": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz", + "integrity": "sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz", + "integrity": "sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-import-assertions": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", + "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.19.0" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", + "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz", + "integrity": "sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", + "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", + "requires": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", + "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.20.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.15.tgz", + "integrity": "sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz", + "integrity": "sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-split-export-declaration": "^7.18.6", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz", + "integrity": "sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/template": "^7.20.7" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz", + "integrity": "sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", + "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", + "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", + "requires": { + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", + "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz", + "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==", + "requires": { + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz", + "integrity": "sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==", + "requires": { + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-simple-access": "^7.20.2" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz", + "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==", + "requires": { + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-validator-identifier": "^7.19.1" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", + "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "requires": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", + "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", + "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", + "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz", + "integrity": "sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", + "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", + "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.13.tgz", + "integrity": "sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-jsx": "^7.18.6", + "@babel/types": "^7.20.7" + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", + "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", + "dev": true, + "requires": { + "@babel/plugin-transform-react-jsx": "^7.18.6" + } + }, + "@babel/plugin-transform-react-pure-annotations": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", + "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz", + "integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "regenerator-transform": "^0.15.1" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", + "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz", + "integrity": "sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==", + "requires": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.19.0", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "semver": "^6.3.0" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", + "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz", + "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", + "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", + "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", + "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/preset-env": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz", + "integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==", + "requires": { + "@babel/compat-data": "^7.20.1", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-async-generator-functions": "^7.20.1", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-class-static-block": "^7.18.6", + "@babel/plugin-proposal-dynamic-import": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", + "@babel/plugin-proposal-json-strings": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.20.2", + "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.18.6", + "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.18.6", + "@babel/plugin-transform-async-to-generator": "^7.18.6", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.20.2", + "@babel/plugin-transform-classes": "^7.20.2", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.20.2", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.19.6", + "@babel/plugin-transform-modules-commonjs": "^7.19.6", + "@babel/plugin-transform-modules-systemjs": "^7.19.6", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", + "@babel/plugin-transform-new-target": "^7.18.6", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.20.1", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.18.6", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.19.0", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", + "@babel/plugin-transform-unicode-escapes": "^7.18.10", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.20.2", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "core-js-compat": "^3.25.1", + "semver": "^6.3.0" + } + }, + "@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/preset-react": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", + "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-transform-react-display-name": "^7.18.6", + "@babel/plugin-transform-react-jsx": "^7.18.6", + "@babel/plugin-transform-react-jsx-development": "^7.18.6", + "@babel/plugin-transform-react-pure-annotations": "^7.18.6" + } + }, + "@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + }, + "@babel/runtime": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", + "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "requires": { + "regenerator-runtime": "^0.13.11" + } + }, + "@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + } + }, + "@babel/traverse": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.13.tgz", + "integrity": "sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==", + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.7", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.20.13", + "@babel/types": "^7.20.7", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz", + "integrity": "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==", + "requires": { + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + } + }, + "@deck.gl/aggregation-layers": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/aggregation-layers/-/aggregation-layers-8.8.24.tgz", + "integrity": "sha512-Cqd8lD5wtDrsYHHha0wVD4RY0A7/KbmdK/7Cl+gBYP9Nf2ERE65IqXSlsijvtT3a4fi++c3doosKMSDYy08nEw==", + "requires": { + "@luma.gl/constants": "^8.5.16", + "@luma.gl/shadertools": "^8.5.16", + "@math.gl/web-mercator": "^3.6.2", + "d3-hexbin": "^0.2.1" + } + }, + "@deck.gl/carto": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/carto/-/carto-8.8.24.tgz", + "integrity": "sha512-vRD0GNftnxfMal2ia7OyaterFY2aZtaYdGPnWV8RL205D2pTR4ZeNX//bQEvovLK5TJG7+kQgopaALDQN1+aBQ==", + "requires": { + "@loaders.gl/gis": "^3.2.10", + "@loaders.gl/loader-utils": "^3.2.10", + "@loaders.gl/mvt": "^3.2.10", + "@loaders.gl/tiles": "^3.2.10", + "@luma.gl/constants": "^8.5.16", + "@math.gl/web-mercator": "^3.6.2", + "cartocolor": "^4.0.2", + "d3-array": "^3.2.0", + "d3-color": "^3.1.0", + "d3-format": "^3.1.0", + "d3-scale": "^4.0.0", + "h3-js": "^3.7.0", + "moment-timezone": "^0.5.33", + "pbf": "^3.2.1", + "quadbin": "^0.1.2" + }, + "dependencies": { + "d3-array": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.2.tgz", + "integrity": "sha512-yEEyEAbDrF8C6Ob2myOBLjwBLck1Z89jMGFee0oPsn95GqjerpaOA4ch+vc2l0FNFFwMD5N7OCSEN5eAlsUbgQ==", + "requires": { + "internmap": "1 - 2" + } + }, + "d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==" + }, + "d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==" + }, + "d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "requires": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + } + }, + "d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "requires": { + "d3-array": "2 - 3" + } + } + } + }, + "@deck.gl/core": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/core/-/core-8.8.24.tgz", + "integrity": "sha512-/W1ldv80UkFb+V0AEpcJcjSWANV9iWeMZgiLdnZbmttahSB1poWg2K8TxEYSwKJipSzA/e43iJjOYbaa7Yfs5g==", + "requires": { + "@loaders.gl/core": "^3.2.10", + "@loaders.gl/images": "^3.2.10", + "@luma.gl/constants": "^8.5.16", + "@luma.gl/core": "^8.5.16", + "@math.gl/core": "^3.6.2", + "@math.gl/sun": "^3.6.2", + "@math.gl/web-mercator": "^3.6.2", + "@probe.gl/env": "^3.5.0", + "@probe.gl/log": "^3.5.0", + "@probe.gl/stats": "^3.5.0", + "gl-matrix": "^3.0.0", + "math.gl": "^3.6.2", + "mjolnir.js": "^2.7.0" + } + }, + "@deck.gl/extensions": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/extensions/-/extensions-8.8.24.tgz", + "integrity": "sha512-mBZvxMxP5Et69nW7ZKxLWYSWYvdWEsA+nikA+n3Z6Jb8kZsZWCEFFqp6CeJ8vZ9d6eNiZMQMOUyxGLEFhil+Eg==", + "requires": { + "@luma.gl/shadertools": "^8.5.16" + } + }, + "@deck.gl/geo-layers": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/geo-layers/-/geo-layers-8.8.24.tgz", + "integrity": "sha512-c9mkBQtCHPI7o6QxhWmA6l5XkqhnbgoMhJSnHUgoCkMNuWbSAzTC5YLbqVLbTylIGHwTxeFNjr9AIWehwkPvqQ==", + "requires": { + "@loaders.gl/3d-tiles": "^3.2.10", + "@loaders.gl/gis": "^3.2.10", + "@loaders.gl/loader-utils": "^3.2.10", + "@loaders.gl/mvt": "^3.2.10", + "@loaders.gl/schema": "^3.2.10", + "@loaders.gl/terrain": "^3.2.10", + "@loaders.gl/tiles": "^3.2.10", + "@luma.gl/constants": "^8.5.16", + "@luma.gl/experimental": "^8.5.16", + "@math.gl/core": "^3.6.2", + "@math.gl/culling": "^3.6.2", + "@math.gl/web-mercator": "^3.6.2", + "@types/geojson": "^7946.0.8", + "h3-js": "^3.7.0", + "long": "^3.2.0" + } + }, + "@deck.gl/google-maps": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/google-maps/-/google-maps-8.8.24.tgz", + "integrity": "sha512-GUHIKycVgTsSD3ej49U1r+CjpjAv2IszzkMMysYxSKWBsUklyosN2XZRoKuQWFmhowUhuwPlKliXHj/QAOcYAw==", + "requires": {} + }, + "@deck.gl/json": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/json/-/json-8.8.24.tgz", + "integrity": "sha512-H3uP9544O3NNnn10vjz5fU2mSldOUWTokwBz+uZNSJNFCK5zxO1+E5lR6xBXAAa4SlfuANvMT0aRQwDnekv0MQ==", + "requires": { + "d3-dsv": "^1.0.8", + "expression-eval": "^2.0.0" + } + }, + "@deck.gl/layers": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/layers/-/layers-8.8.24.tgz", + "integrity": "sha512-t8o23fUSmS34YVs0fGvp4d0Et6iJo6O7hRpdGf49WyOL+yBsywOanFGdAcxW84HA4cPngHHvfLplF2Gx/qeUow==", + "requires": { + "@loaders.gl/images": "^3.2.10", + "@loaders.gl/schema": "^3.2.10", + "@luma.gl/constants": "^8.5.16", + "@mapbox/tiny-sdf": "^1.1.0", + "@math.gl/core": "^3.6.2", + "@math.gl/polygon": "^3.6.2", + "@math.gl/web-mercator": "^3.6.2", + "earcut": "^2.0.6" + } + }, + "@deck.gl/mapbox": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/mapbox/-/mapbox-8.8.24.tgz", + "integrity": "sha512-yJnt2sNbE7EeNstfh0G6yLz5owNT5GzHZE8JroHljVaoftBzWrh/ERf97akcxevCFXR6TIBoBUzx4Yip23incg==", + "requires": { + "@types/mapbox-gl": "^2.6.3" + } + }, + "@deck.gl/mesh-layers": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/mesh-layers/-/mesh-layers-8.8.24.tgz", + "integrity": "sha512-HsFTU7cX1hcBmQu5s9cNBkQQ1v0ESVSnx5C9eOUI8lWlpw8n6pq3+DFXdS3lhYmusitUGV/BWuCJbUbQS8HJjw==", + "requires": { + "@loaders.gl/gltf": "^3.2.10", + "@luma.gl/constants": "^8.5.16", + "@luma.gl/experimental": "^8.5.16", + "@luma.gl/shadertools": "^8.5.16" + } + }, + "@deck.gl/react": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/@deck.gl/react/-/react-8.8.24.tgz", + "integrity": "sha512-nj3nvjG9mS3Wkbm0GaHjw8o8ktaSCVMCPkbqemrGqrZrUPR3Af0q8HAOjVL3ScTDLPZI8yanirj61EypYyzRzQ==", + "requires": {} + }, + "@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "requires": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + }, + "@jridgewell/trace-mapping": { + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "requires": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "@loaders.gl/3d-tiles": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/3d-tiles/-/3d-tiles-3.2.13.tgz", + "integrity": "sha512-e9LLOBMupbdhApbTJQZ0IPNWVX0ybTYKlVBu8QpdlK0PgRnrZymXScaD46RusUlg4Jmh2VjnSch7pB1yvx2xvg==", + "requires": { + "@loaders.gl/draco": "3.2.13", + "@loaders.gl/gltf": "3.2.13", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/math": "3.2.13", + "@loaders.gl/tiles": "3.2.13", + "@math.gl/core": "^3.5.1", + "@math.gl/geospatial": "^3.5.1" + } + }, + "@loaders.gl/core": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/core/-/core-3.2.13.tgz", + "integrity": "sha512-vkrjlsqJvXGuS3WyhNbQLASnRZUNIwA+oNQQx+d1qNU5sxVRcIRphBzWNOMmgzK+C/eYK/Set43TwsGaRRQuJA==", + "requires": { + "@babel/runtime": "^7.3.1", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/worker-utils": "3.2.13", + "@probe.gl/log": "^3.5.0", + "probe.gl": "^3.4.0" + } + }, + "@loaders.gl/csv": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/csv/-/csv-3.2.13.tgz", + "integrity": "sha512-VP0B7ZamEIc737HcUMoPlpfRsF6Z6bjD55pUhOdGwDpiup3uSoKXnykdlCPk39gcK2usOwEWvCfrBHAvwsKJ7w==", + "requires": { + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/schema": "3.2.13" + } + }, + "@loaders.gl/draco": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/draco/-/draco-3.2.13.tgz", + "integrity": "sha512-r+dHWzRPd1cRP6vL2YFDsyJZQrbqp7J0iZEpGt1KEdjQmyxdtVZ23vSqhx4yUR9lcod6Yo/vqmrUXejki+/vUQ==", + "requires": { + "@babel/runtime": "^7.3.1", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/schema": "3.2.13", + "@loaders.gl/worker-utils": "3.2.13", + "draco3d": "1.4.1" + } + }, + "@loaders.gl/gis": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/gis/-/gis-3.2.13.tgz", + "integrity": "sha512-Po9u+iwkji84Pj7Vkdc6Lx1ePeG3ynHaDFQKXR8BLr2XcjZPhyFnUAaWgEFwckTMg/PhwG4NHJzYHq9ztMDPpA==", + "requires": { + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/schema": "3.2.13", + "@mapbox/vector-tile": "^1.3.1", + "@math.gl/polygon": "^3.5.1", + "pbf": "^3.2.1" + } + }, + "@loaders.gl/gltf": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/gltf/-/gltf-3.2.13.tgz", + "integrity": "sha512-S+K7MNWxpWqpypITD4B8ycYtX9bRbcLGDafs9j+B5g0EadElvRcrHalvC2KsSkmNajyBKmlxFk2BoN0thzeQbw==", + "requires": { + "@loaders.gl/draco": "3.2.13", + "@loaders.gl/images": "3.2.13", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/textures": "3.2.13" + } + }, + "@loaders.gl/images": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/images/-/images-3.2.13.tgz", + "integrity": "sha512-s3aPA/gQH30MaUexlw5HqYA5Zl59yPgO4lZP9YM5s9tb42Mj1IZ6seImOiHHDihAmoUj6NBPLSFVrxq99Qz4Hg==", + "requires": { + "@loaders.gl/loader-utils": "3.2.13" + } + }, + "@loaders.gl/json": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/json/-/json-3.2.13.tgz", + "integrity": "sha512-Wi97qjvDrXML1cr6Sw0sdFNjRVN7L5M5GLExKFjth7gED3KX4iUpNFVM9P941ZjT9cSIdGmktbVvIaWHmXaUSw==", + "requires": { + "@loaders.gl/gis": "3.2.13", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/schema": "3.2.13" + } + }, + "@loaders.gl/loader-utils": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/loader-utils/-/loader-utils-3.2.13.tgz", + "integrity": "sha512-ldQUYvKBYGQaQM7hJClXBTv64jWLkabW0Ilb6Yz9bJ6Km04+3VyvSXwTn9GMYdadzH0Txs5kMiQygOU3oekcew==", + "requires": { + "@babel/runtime": "^7.3.1", + "@loaders.gl/worker-utils": "3.2.13", + "@probe.gl/stats": "^3.5.0" + } + }, + "@loaders.gl/math": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/math/-/math-3.2.13.tgz", + "integrity": "sha512-vXuib466Q7MWqhQ7YiP9irOpNHA2IqKM1fa+/YE09ROg6g0JDDir2YKZCtsmfN/mOSzX3FxsewDzGJqear6VsQ==", + "requires": { + "@loaders.gl/images": "3.2.13", + "@loaders.gl/loader-utils": "3.2.13", + "@math.gl/core": "^3.5.1" + } + }, + "@loaders.gl/mvt": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/mvt/-/mvt-3.2.13.tgz", + "integrity": "sha512-JoPx0p2J+TDfYZXSeoLmy7WgLO6fn0Fjf0GowrvH+ntt+vMtUNgNBlCTX7tpauqKk6+1FaQlu2aMuYiwMwcCnA==", + "requires": { + "@loaders.gl/gis": "3.2.13", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/schema": "3.2.13", + "@math.gl/polygon": "^3.5.1", + "pbf": "^3.2.1" + } + }, + "@loaders.gl/schema": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/schema/-/schema-3.2.13.tgz", + "integrity": "sha512-hXtml5wJKapHxIEW2mV391oBBKtKjF5X+uP9DhqtZxwXPcOC4Yb93ssFL33YvJWGG+Vfvllpy6ispoR2LAx9+g==", + "requires": { + "@types/geojson": "^7946.0.7", + "apache-arrow": "^4.0.0" + } + }, + "@loaders.gl/terrain": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/terrain/-/terrain-3.2.13.tgz", + "integrity": "sha512-rvlsPT6+94AZryoxRl1QEmyOrdYkfnjJUtNMKmZip73XjquKnJJ795zjlzo73DghK3KwZc/8vgrkuE/3z8oWJQ==", + "requires": { + "@babel/runtime": "^7.3.1", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/schema": "3.2.13", + "@mapbox/martini": "^0.2.0" + } + }, + "@loaders.gl/textures": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/textures/-/textures-3.2.13.tgz", + "integrity": "sha512-e5KcKdMy1mhNdBWcNKtOLMxd7z9/tDI4/87rD3GRTUFvdPtODhdKFGT8KprCupQu0Ob/1RKr78UZ3XFnU8C6Cw==", + "requires": { + "@loaders.gl/images": "3.2.13", + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/schema": "3.2.13", + "@loaders.gl/worker-utils": "3.2.13", + "ktx-parse": "^0.0.4", + "texture-compressor": "^1.0.2" + } + }, + "@loaders.gl/tiles": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/tiles/-/tiles-3.2.13.tgz", + "integrity": "sha512-Obr3gugRcmn68S5ekDp+ZjvE/JOhnr0RCDN3R0p40whV0fuoe8kVcsUVoR2zqccvpcxeBeUMEyRk+3xLtnR/eQ==", + "requires": { + "@loaders.gl/loader-utils": "3.2.13", + "@loaders.gl/math": "3.2.13", + "@math.gl/core": "^3.5.1", + "@math.gl/culling": "^3.5.1", + "@math.gl/geospatial": "^3.5.1", + "@math.gl/web-mercator": "^3.5.1", + "@probe.gl/stats": "^3.5.0" + } + }, + "@loaders.gl/worker-utils": { + "version": "3.2.13", + "resolved": "https://registry.npmjs.org/@loaders.gl/worker-utils/-/worker-utils-3.2.13.tgz", + "integrity": "sha512-YgF7JC7lFY/+ykSrVSrnt3erPXQWjewu6Vl8PBh96ehMCi7zeI6167zQt3hfyJHrLcBojNUZY45UoxzqWdUwAA==", + "requires": { + "@babel/runtime": "^7.3.1" + } + }, + "@luma.gl/constants": { + "version": "8.5.18", + "resolved": "https://registry.npmjs.org/@luma.gl/constants/-/constants-8.5.18.tgz", + "integrity": "sha512-lQLGAlroQaeJkAUwrb1fRiHlMBP9/ukyjnZ1QlYgXYyeC7/9XhLx4rqBlOzQ2sxcTHHwi73nHD0P2XmVuAccBg==" + }, + "@luma.gl/core": { + "version": "8.5.18", + "resolved": "https://registry.npmjs.org/@luma.gl/core/-/core-8.5.18.tgz", + "integrity": "sha512-XvxE2WE9jFEweJftczQ4QPd8FD23H8mWJoQej7llnyta0Xqb18Cx2VOzuyQ4uN7Uab42YkwXTu25uAq0SdAehA==", + "requires": { + "@babel/runtime": "^7.0.0", + "@luma.gl/constants": "8.5.18", + "@luma.gl/engine": "8.5.18", + "@luma.gl/gltools": "8.5.18", + "@luma.gl/shadertools": "8.5.18", + "@luma.gl/webgl": "8.5.18" + } + }, + "@luma.gl/engine": { + "version": "8.5.18", + "resolved": "https://registry.npmjs.org/@luma.gl/engine/-/engine-8.5.18.tgz", + "integrity": "sha512-hLdtEPk3yt8ikL3g9qVc5FuMPMdhnj1ykPgmG6Mh4lRlCProgGSlwqWuAkzPYwYqIBqKlPNMv8DavRfsKAKc3g==", + "requires": { + "@babel/runtime": "^7.0.0", + "@luma.gl/constants": "8.5.18", + "@luma.gl/gltools": "8.5.18", + "@luma.gl/shadertools": "8.5.18", + "@luma.gl/webgl": "8.5.18", + "@math.gl/core": "^3.5.0", + "@probe.gl/env": "^3.5.0", + "@probe.gl/stats": "^3.5.0", + "@types/offscreencanvas": "^2019.7.0" + } + }, + "@luma.gl/experimental": { + "version": "8.5.18", + "resolved": "https://registry.npmjs.org/@luma.gl/experimental/-/experimental-8.5.18.tgz", + "integrity": "sha512-Bw8mwO3NVYGwzYr1Edl4LVbT7JORIpymdXpmmoqP9SpWAh5HJmNSS8wt1FDaQGVCgSA/5QpmmZb1NjIKX4B40g==", + "requires": { + "@luma.gl/constants": "8.5.18", + "@math.gl/core": "^3.5.0", + "earcut": "^2.0.6" + } + }, + "@luma.gl/gltools": { + "version": "8.5.18", + "resolved": "https://registry.npmjs.org/@luma.gl/gltools/-/gltools-8.5.18.tgz", + "integrity": "sha512-AnZ8fxsJz/wRdUJazsFvTXbh8ypYX9rATPJj8YlDv08DGGFTQiq8MurzbEjXaEYshAu5w9rXd22nQXkQziUhmQ==", + "requires": { + "@babel/runtime": "^7.0.0", + "@luma.gl/constants": "8.5.18", + "@probe.gl/env": "^3.5.0", + "@probe.gl/log": "^3.5.0", + "@types/offscreencanvas": "^2019.7.0" + } + }, + "@luma.gl/shadertools": { + "version": "8.5.18", + "resolved": "https://registry.npmjs.org/@luma.gl/shadertools/-/shadertools-8.5.18.tgz", + "integrity": "sha512-orkdnlVLB8AO4yf9jXXZqEG/UuwVg/v3Gmo4/F2vdrwkUMN+wUZFUdhssDGEGWvuauZWK9Mbz8XrxC0gmLbWzw==", + "requires": { + "@babel/runtime": "^7.0.0", + "@math.gl/core": "^3.5.0" + } + }, + "@luma.gl/webgl": { + "version": "8.5.18", + "resolved": "https://registry.npmjs.org/@luma.gl/webgl/-/webgl-8.5.18.tgz", + "integrity": "sha512-8pRMq4olLzEv7ToDtCagGDklkIu1iFFBEXT4Rh11ohrfUiDAPfGz5hJrr3m0XtsVfS1CQ5QPWN2tQclmXOL+cQ==", + "requires": { + "@babel/runtime": "^7.0.0", + "@luma.gl/constants": "8.5.18", + "@luma.gl/gltools": "8.5.18", + "@probe.gl/env": "^3.5.0", + "@probe.gl/stats": "^3.5.0" + } + }, + "@mapbox/geojson-rewind": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz", + "integrity": "sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==", + "requires": { + "get-stream": "^6.0.1", + "minimist": "^1.2.6" + } + }, + "@mapbox/geojson-types": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz", + "integrity": "sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw==", + "peer": true + }, + "@mapbox/jsonlint-lines-primitives": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz", + "integrity": "sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ==" + }, + "@mapbox/mapbox-gl-supported": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.5.0.tgz", + "integrity": "sha512-/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg==", + "peer": true, + "requires": {} + }, + "@mapbox/martini": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@mapbox/martini/-/martini-0.2.0.tgz", + "integrity": "sha512-7hFhtkb0KTLEls+TRw/rWayq5EeHtTaErgm/NskVoXmtgAQu/9D299aeyj6mzAR/6XUnYRp2lU+4IcrYRFjVsQ==" + }, + "@mapbox/point-geometry": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz", + "integrity": "sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ==" + }, + "@mapbox/tile-cover": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@mapbox/tile-cover/-/tile-cover-3.0.2.tgz", + "integrity": "sha512-A6qvtttsYI66BYi8JMD0v7BzxeuXJf6qSzufmdvvYxDJyXqATZ7ig6OKHFCW7/OsUjpfFu3rB54JM/yHUOVB9g==", + "requires": { + "@mapbox/tilebelt": "^1.0.1" + } + }, + "@mapbox/tilebelt": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@mapbox/tilebelt/-/tilebelt-1.0.2.tgz", + "integrity": "sha512-tGJN2VIgWrXqBTPIxFVklklIpcy6ss8W5ouq+cjNLXPXFraRaDR4Ice+5Q8/uLX+6aH23lWBMydOIn8PcdVcpA==" + }, + "@mapbox/tiny-sdf": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-1.2.5.tgz", + "integrity": "sha512-cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw==" + }, + "@mapbox/unitbezier": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz", + "integrity": "sha512-HPnRdYO0WjFjRTSwO3frz1wKaU649OBFPX3Zo/2WZvuRi6zMiRGui8SnPQiQABgqCf8YikDe5t3HViTVw1WUzA==", + "peer": true + }, + "@mapbox/vector-tile": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz", + "integrity": "sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==", + "requires": { + "@mapbox/point-geometry": "~0.1.0" + } + }, + "@mapbox/whoots-js": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz", + "integrity": "sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==" + }, + "@math.gl/core": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-3.6.3.tgz", + "integrity": "sha512-jBABmDkj5uuuE0dTDmwwss7Cup5ZwQ6Qb7h1pgvtkEutTrhkcv8SuItQNXmF45494yIHeoGue08NlyeY6wxq2A==", + "requires": { + "@babel/runtime": "^7.12.0", + "@math.gl/types": "3.6.3", + "gl-matrix": "^3.4.0" + } + }, + "@math.gl/culling": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/culling/-/culling-3.6.3.tgz", + "integrity": "sha512-3UERXHbaPlM6pnTk2MI7LeQ5CoelDZzDzghTTcv+HdQCZsT/EOEuEdYimETHtSxiyiOmsX2Un65UBLYT/rbKZg==", + "requires": { + "@babel/runtime": "^7.12.0", + "@math.gl/core": "3.6.3", + "gl-matrix": "^3.4.0" + } + }, + "@math.gl/geospatial": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/geospatial/-/geospatial-3.6.3.tgz", + "integrity": "sha512-6xf657lJnaecSarSzn02t0cnsCSkWb+39m4+im96v20dZTrLCWZ2glDQVzfuL91meDnDXjH4oyvynp12Mj5MFg==", + "requires": { + "@babel/runtime": "^7.12.0", + "@math.gl/core": "3.6.3", + "gl-matrix": "^3.4.0" + } + }, + "@math.gl/polygon": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/polygon/-/polygon-3.6.3.tgz", + "integrity": "sha512-FivQ1ZnYcAss1wVifOkHP/ZnlfQy1IL/769uzNtiHxwUbW0kZG3yyOZ9I7fwyzR5Hvqt3ErJKHjSYZr0uVlz5g==", + "requires": { + "@math.gl/core": "3.6.3" + } + }, + "@math.gl/sun": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/sun/-/sun-3.6.3.tgz", + "integrity": "sha512-mrx6CGYYeTNSQttvcw0KVUy+35YDmnjMqpO/o0t06Vcghrt0HNruB/ScRgUSbJrgkbOg1Vcqm23HBd++clzQzw==", + "requires": { + "@babel/runtime": "^7.12.0" + } + }, + "@math.gl/types": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/types/-/types-3.6.3.tgz", + "integrity": "sha512-3uWLVXHY3jQxsXCr/UCNPSc2BG0hNUljhmOBt9l+lNFDp7zHgm0cK2Tw4kj2XfkJy4TgwZTBGwRDQgWEbLbdTA==" + }, + "@math.gl/web-mercator": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/web-mercator/-/web-mercator-3.6.3.tgz", + "integrity": "sha512-UVrkSOs02YLehKaehrxhAejYMurehIHPfFQvPFZmdJHglHOU4V2cCUApTVEwOksvCp161ypEqVp+9H6mGhTTcw==", + "requires": { + "@babel/runtime": "^7.12.0", + "gl-matrix": "^3.4.0" + } + }, + "@probe.gl/env": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@probe.gl/env/-/env-3.6.0.tgz", + "integrity": "sha512-4tTZYUg/8BICC3Yyb9rOeoKeijKbZHRXBEKObrfPmX4sQmYB15ZOUpoVBhAyJkOYVAM8EkPci6Uw5dLCwx2BEQ==", + "requires": { + "@babel/runtime": "^7.0.0" + } + }, + "@probe.gl/log": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@probe.gl/log/-/log-3.6.0.tgz", + "integrity": "sha512-hjpyenpEvOdowgZ1qMeCJxfRD4JkKdlXz0RC14m42Un62NtOT+GpWyKA4LssT0+xyLULCByRAtG2fzZorpIAcA==", + "requires": { + "@babel/runtime": "^7.0.0", + "@probe.gl/env": "3.6.0" + } + }, + "@probe.gl/stats": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@probe.gl/stats/-/stats-3.6.0.tgz", + "integrity": "sha512-JdALQXB44OP4kUBN/UrQgzbJe4qokbVF4Y8lkIA8iVCFnjVowWIgkD/z/0QO65yELT54tTrtepw1jScjKB+rhQ==", + "requires": { + "@babel/runtime": "^7.0.0" + } + }, + "@types/flatbuffers": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@types/flatbuffers/-/flatbuffers-1.10.0.tgz", + "integrity": "sha512-7btbphLrKvo5yl/5CC2OCxUSMx1wV1wvGT1qDXkSt7yi00/YW7E8k6qzXqJHsp+WU0eoG7r6MTQQXI9lIvd0qA==" + }, + "@types/geojson": { + "version": "7946.0.10", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz", + "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==" + }, + "@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/hammerjs": { + "version": "2.0.41", + "resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.41.tgz", + "integrity": "sha512-ewXv/ceBaJprikMcxCmWU1FKyMAQ2X7a9Gtmzw8fcg2kIePI1crERDM818W+XYrxqdBBOdlf2rm137bU+BltCA==" + }, + "@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true + }, + "@types/mapbox__point-geometry": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.2.tgz", + "integrity": "sha512-D0lgCq+3VWV85ey1MZVkE8ZveyuvW5VAfuahVTQRpXFQTxw03SuIf1/K4UQ87MMIXVKzpFjXFiFMZzLj2kU+iA==" + }, + "@types/mapbox__vector-tile": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@types/mapbox__vector-tile/-/mapbox__vector-tile-1.3.0.tgz", + "integrity": "sha512-kDwVreQO5V4c8yAxzZVQLE5tyWF+IPToAanloQaSnwfXmIcJ7cyOrv8z4Ft4y7PsLYmhWXmON8MBV8RX0Rgr8g==", + "requires": { + "@types/geojson": "*", + "@types/mapbox__point-geometry": "*", + "@types/pbf": "*" + } + }, + "@types/mapbox-gl": { + "version": "2.7.10", + "resolved": "https://registry.npmjs.org/@types/mapbox-gl/-/mapbox-gl-2.7.10.tgz", + "integrity": "sha512-nMVEcu9bAcenvx6oPWubQSPevsekByjOfKjlkr+8P91vawtkxTnopDoXXq1Qn/f4cg3zt0Z2W9DVsVsKRNXJTw==", + "requires": { + "@types/geojson": "*" + } + }, + "@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "dev": true + }, + "@types/node": { + "version": "14.18.36", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.36.tgz", + "integrity": "sha512-FXKWbsJ6a1hIrRxv+FoukuHnGTgEzKYGi7kilfMae96AL9UNkPFNWJEEYWzdRI9ooIkbr4AKldyuSTLql06vLQ==" + }, + "@types/offscreencanvas": { + "version": "2019.7.0", + "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.0.tgz", + "integrity": "sha512-PGcyveRIpL1XIqK8eBsmRBt76eFgtzuPiSTyKHZxnGemp2yzGzWpjYKAfK3wIMiU7eH+851yEpiuP8JZerTmWg==" + }, + "@types/pbf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/pbf/-/pbf-3.0.2.tgz", + "integrity": "sha512-EDrLIPaPXOZqDjrkzxxbX7UlJSeQVgah3i0aA4pOSzmK9zq3BIh7/MZIQxED7slJByvKM4Gc6Hypyu2lJzh3SQ==" + }, + "@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", + "peer": true + }, + "@types/react": { + "version": "18.0.28", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.28.tgz", + "integrity": "sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==", + "peer": true, + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "@types/scheduler": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", + "peer": true + }, + "@types/text-encoding-utf-8": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@types/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz", + "integrity": "sha512-AQ6zewa0ucLJvtUi5HsErbOFKAcQfRLt9zFLlUOvcXBy2G36a+ZDpCHSGdzJVUD8aNURtIjh9aSjCStNMRCcRQ==" + }, + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dev": true, + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", + "dev": true + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "dev": true, + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", + "dev": true + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true, + "requires": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true + }, + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "optional": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "apache-arrow": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/apache-arrow/-/apache-arrow-4.0.1.tgz", + "integrity": "sha512-DyF7GXCbSjsw4P5C8b+qW7OnJKa6w9mJI0mhV0+EfZbVZCmhfiF6ffqcnrI/kzBrRqn9hH/Ft9n5+m4DTbBJpg==", + "requires": { + "@types/flatbuffers": "^1.10.0", + "@types/node": "^14.14.37", + "@types/text-encoding-utf-8": "^1.0.1", + "command-line-args": "5.1.1", + "command-line-usage": "6.1.1", + "flatbuffers": "1.12.0", + "json-bignum": "^0.0.3", + "pad-left": "^2.1.0", + "text-encoding-utf-8": "^1.0.2", + "tslib": "^2.2.0" + } + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true + }, + "array-back": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", + "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==" + }, + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true + }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==", + "dev": true + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==", + "dev": true, + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "dev": true + }, + "async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "async-each": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", + "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", + "dev": true + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "dev": true, + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "requires": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", + "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.3", + "core-js-compat": "^3.25.1" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.3" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "optional": true + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", + "dev": true + }, + "body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", + "dev": true, + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true + } + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", + "dev": true + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dev": true, + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dev": true, + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "requires": { + "pako": "~1.0.5" + } + }, + "browserslist": { + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "requires": { + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" + } + }, + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dev": true, + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", + "dev": true + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", + "dev": true + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true + }, + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "dev": true, + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001453", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001453.tgz", + "integrity": "sha512-R9o/uySW38VViaTrOtwfbFEiBFUh7ST3uIG4OEymIG3/uKdHDO4xk/FaqfUw0d+irSUyFPy3dZszf9VvSTPnsA==" + }, + "cartocolor": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/cartocolor/-/cartocolor-4.0.2.tgz", + "integrity": "sha512-+Gh9mb6lFxsDOLQlBLPxAHCnWXlg2W8q3AcVwqRcy95TdBbcOU89Wrb6h2Hd/6Ww1Kc1pzXmUdpnWD+xeCG0dg==", + "requires": { + "colorbrewer": "1.0.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "optional": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "dependencies": { + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "optional": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "optional": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "optional": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "optional": true, + "requires": { + "is-number": "^7.0.0" + } + } + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "colorbrewer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/colorbrewer/-/colorbrewer-1.0.0.tgz", + "integrity": "sha512-NZuIOVdErK/C6jDH3jWT/roxWJbJAinMiqEpbuWniKvQAoWdg6lGra3pPrSHvaIf8PlX8wLs/RAC6nULFJbgmg==" + }, + "command-line-args": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.1.1.tgz", + "integrity": "sha512-hL/eG8lrll1Qy1ezvkant+trihbGnaKaeEjj6Scyr3DN+RC7iQ5Rz84IeLERfAWDGo0HBSNAakczwgCilDXnWg==", + "requires": { + "array-back": "^3.0.1", + "find-replace": "^3.0.0", + "lodash.camelcase": "^4.3.0", + "typical": "^4.0.0" + } + }, + "command-line-usage": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.1.tgz", + "integrity": "sha512-F59pEuAR9o1SF/bD0dQBDluhpT4jJQNWUHEuVBqpDmCUo6gPjCi+m9fCWnWZVR/oG6cMTUms4h+3NPl74wGXvA==", + "requires": { + "array-back": "^4.0.1", + "chalk": "^2.4.2", + "table-layout": "^1.0.1", + "typical": "^5.2.0" + }, + "dependencies": { + "array-back": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", + "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==" + }, + "typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==" + } + } + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", + "dev": true + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true + }, + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dev": true, + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "dev": true + }, + "core-js-compat": { + "version": "3.28.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.28.0.tgz", + "integrity": "sha512-myzPgE7QodMg4nnd3K1TDoES/nADRStM8Gpz0D6nhkwbmwEnE0ZGJgoWsvQ722FR8D7xS0n0LV556RcEicjTyg==", + "requires": { + "browserslist": "^4.21.5" + } + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "csscolorparser": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/csscolorparser/-/csscolorparser-1.0.3.tgz", + "integrity": "sha512-umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w==" + }, + "csstype": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", + "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==", + "peer": true + }, + "cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==", + "dev": true + }, + "d3-array": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", + "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" + }, + "d3-collection": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz", + "integrity": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==" + }, + "d3-color": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-1.4.1.tgz", + "integrity": "sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==" + }, + "d3-dispatch": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.6.tgz", + "integrity": "sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA==" + }, + "d3-dsv": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.2.0.tgz", + "integrity": "sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g==", + "requires": { + "commander": "2", + "iconv-lite": "0.4", + "rw": "1" + } + }, + "d3-format": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-1.4.5.tgz", + "integrity": "sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==" + }, + "d3-hexbin": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/d3-hexbin/-/d3-hexbin-0.2.2.tgz", + "integrity": "sha512-KS3fUT2ReD4RlGCjvCEm1RgMtp2NFZumdMu4DBzQK8AZv3fXRM6Xm8I4fSU07UXvH4xxg03NwWKWdvxfS/yc4w==" + }, + "d3-interpolate": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.4.0.tgz", + "integrity": "sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==", + "requires": { + "d3-color": "1" + } + }, + "d3-request": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/d3-request/-/d3-request-1.0.6.tgz", + "integrity": "sha512-FJj8ySY6GYuAJHZMaCQ83xEYE4KbkPkmxZ3Hu6zA1xxG2GD+z6P+Lyp+zjdsHf0xEbp2xcluDI50rCS855EQ6w==", + "requires": { + "d3-collection": "1", + "d3-dispatch": "1", + "d3-dsv": "1", + "xmlhttprequest": "1" + } + }, + "d3-scale": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz", + "integrity": "sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==", + "requires": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + }, + "d3-time": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-1.1.0.tgz", + "integrity": "sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==" + }, + "d3-time-format": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.3.0.tgz", + "integrity": "sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ==", + "requires": { + "d3-time": "1" + } + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true + }, + "deck.gl": { + "version": "8.8.24", + "resolved": "https://registry.npmjs.org/deck.gl/-/deck.gl-8.8.24.tgz", + "integrity": "sha512-2EysFdxSenBh1NUZQRwp1V8XdCsG2vFWHpRUysHhcZGgfC4m5CZwulLE1gL5Wpcki1p30IGUZG7a6hyIbM9Gtg==", + "requires": { + "@deck.gl/aggregation-layers": "8.8.24", + "@deck.gl/carto": "8.8.24", + "@deck.gl/core": "8.8.24", + "@deck.gl/extensions": "8.8.24", + "@deck.gl/geo-layers": "8.8.24", + "@deck.gl/google-maps": "8.8.24", + "@deck.gl/json": "8.8.24", + "@deck.gl/layers": "8.8.24", + "@deck.gl/mapbox": "8.8.24", + "@deck.gl/mesh-layers": "8.8.24", + "@deck.gl/react": "8.8.24" + } + }, + "decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "dev": true + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + }, + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + } + }, + "define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "dev": true, + "requires": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + } + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true + }, + "des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true + }, + "detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "dev": true + }, + "dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dev": true, + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", + "dev": true, + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true + }, + "draco3d": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/draco3d/-/draco3d-1.4.1.tgz", + "integrity": "sha512-9Rxonc70xiovBC+Bq1h57SNZIHzWTibU1VfIGp5z3Xx8dPtv4yT5uGhiH7P5uvJRR2jkrvHafRxR7bTANkvfpg==" + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "earcut": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz", + "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==" + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.4.299", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.299.tgz", + "integrity": "sha512-lQ7ijJghH6pCGbfWXr6EY+KYCMaRSjgsY925r1p/TlpSfVM1VjHTcn1gAc15VM4uwti283X6QtjPTXdpoSGiZQ==" + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dev": true, + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + } + } + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dev": true, + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true + }, + "eventsource": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-2.0.2.tgz", + "integrity": "sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==", + "dev": true + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + } + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dev": true, + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "expression-eval": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/expression-eval/-/expression-eval-2.1.0.tgz", + "integrity": "sha512-FUJO/Akvl/JOWkvlqZaqbkhsEWlCJWDeZG4tzX96UH68D9FeRgYgtb55C2qtqbORC0Q6x5419EDjWu4IT9kQfg==", + "requires": { + "jsep": "^0.3.0" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true + } + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", + "dev": true + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true + } + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + } + }, + "find-replace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", + "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", + "requires": { + "array-back": "^3.0.1" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + } + }, + "flatbuffers": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/flatbuffers/-/flatbuffers-1.12.0.tgz", + "integrity": "sha512-c7CZADjRcl6j0PlvFy0ZqXQ67qSEZfrVPynmnL+2zPc+NtMvrF8Y0QceMo7QqnSPc7+uWjUIAbvCQ5WIKlMVdQ==" + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "dev": true + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + }, + "geojson-vt": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-3.2.1.tgz", + "integrity": "sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==" + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", + "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true + }, + "gl-matrix": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.3.tgz", + "integrity": "sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==" + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "optional": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, + "requires": { + "global-prefix": "^3.0.0" + } + }, + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true + } + } + }, + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "grid-index": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/grid-index/-/grid-index-1.1.0.tgz", + "integrity": "sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA==", + "peer": true + }, + "h3-js": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/h3-js/-/h3-js-3.7.2.tgz", + "integrity": "sha512-LPjlHSwB9zQZrMqKloCZmmmt3yZzIK7nqPcXqwU93zT3TtYG6jP4tZBzAPouxut7lLjdFbMQ75wRBiKfpsnY7w==" + }, + "hammerjs": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/hammerjs/-/hammerjs-2.0.8.tgz", + "integrity": "sha512-tSQXBXS/MWQOn/RKckawJ61vvsDpCom87JgxiYdGwHdOa0ht0vzUWDlfioofFCRU0L+6NGDt6XzbgoJvZkMeRQ==" + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + }, + "has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dev": true, + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "dev": true, + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "requires": { + "parse-passwd": "^1.0.0" + } + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "dev": true + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==", + "dev": true + }, + "image-size": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.7.5.tgz", + "integrity": "sha512-Hiyv+mXHfFEP7LzUL/llg9RwFxxY+o9N3JVLIeG5E7iFIFAalxvRU9UZthBdYDEVnzHMgjnKJPPpay5BWf1g9g==" + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + } + }, + "internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==" + }, + "interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true + }, + "ip": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "dev": true + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", + "dev": true + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "optional": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-core-module": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "requires": { + "is-path-inside": "^2.1.0" + } + }, + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "requires": { + "path-is-inside": "^1.0.2" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "jsep": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/jsep/-/jsep-0.3.5.tgz", + "integrity": "sha512-AoRLBDc6JNnKjNcmonituEABS5bcfqDhQAWWXNTFrqu6nVXBpBAGfcoTGZMFlIrh9FjmE1CQyX9CTNwZrXMMDA==" + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + }, + "json-bignum": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/json-bignum/-/json-bignum-0.0.3.tgz", + "integrity": "sha512-2WHyXj3OfHSgNyuzDbSxI1w2jgw5gkWSWhS7Qg4bWXx1nLk3jnbwfUeS0PSba3IzpTUWdHxBieELUzXRjQB2zg==" + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + }, + "kdbush": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-3.0.0.tgz", + "integrity": "sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew==" + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, + "ktx-parse": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/ktx-parse/-/ktx-parse-0.0.4.tgz", + "integrity": "sha512-LY3nrmfXl+wZZdPxgJ3ZmLvG+wkOZZP3/dr4RbQj1Pk3Qwz44esOOSFFVQJcNWpXAtiNIC66WgXufX/SYgYz6A==" + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "dev": true + }, + "loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + }, + "loglevel": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.1.tgz", + "integrity": "sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==", + "dev": true + }, + "long": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz", + "integrity": "sha512-ZYvPPOMqUwPoDsbJaR10iQJYnMuZhRTvHYl62ErLIEX7RgFlziSBUUvrt3OVfc47QlHHpzPZYP17g3Fv7oeJkg==" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "requires": { + "yallist": "^3.0.2" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "mapbox-gl": { + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/mapbox-gl/-/mapbox-gl-1.13.3.tgz", + "integrity": "sha512-p8lJFEiqmEQlyv+DQxFAOG/XPWN0Wp7j/Psq93Zywz7qt9CcUKFYDBOoOEKzqe6gudHVJY8/Bhqw6VDpX2lSBg==", + "peer": true, + "requires": { + "@mapbox/geojson-rewind": "^0.5.2", + "@mapbox/geojson-types": "^1.0.2", + "@mapbox/jsonlint-lines-primitives": "^2.0.2", + "@mapbox/mapbox-gl-supported": "^1.5.0", + "@mapbox/point-geometry": "^0.1.0", + "@mapbox/tiny-sdf": "^1.1.1", + "@mapbox/unitbezier": "^0.0.0", + "@mapbox/vector-tile": "^1.3.1", + "@mapbox/whoots-js": "^3.1.0", + "csscolorparser": "~1.0.3", + "earcut": "^2.2.2", + "geojson-vt": "^3.2.1", + "gl-matrix": "^3.2.1", + "grid-index": "^1.1.0", + "murmurhash-js": "^1.0.0", + "pbf": "^3.2.1", + "potpack": "^1.0.1", + "quickselect": "^2.0.0", + "rw": "^1.3.3", + "supercluster": "^7.1.0", + "tinyqueue": "^2.0.3", + "vt-pbf": "^3.1.1" + } + }, + "maplibre-gl": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/maplibre-gl/-/maplibre-gl-2.4.0.tgz", + "integrity": "sha512-csNFylzntPmHWidczfgCZpvbTSmhaWvLRj9e1ezUDBEPizGgshgm3ea1T5TCNEEBq0roauu7BPuRZjA3wO4KqA==", + "requires": { + "@mapbox/geojson-rewind": "^0.5.2", + "@mapbox/jsonlint-lines-primitives": "^2.0.2", + "@mapbox/mapbox-gl-supported": "^2.0.1", + "@mapbox/point-geometry": "^0.1.0", + "@mapbox/tiny-sdf": "^2.0.5", + "@mapbox/unitbezier": "^0.0.1", + "@mapbox/vector-tile": "^1.3.1", + "@mapbox/whoots-js": "^3.1.0", + "@types/geojson": "^7946.0.10", + "@types/mapbox__point-geometry": "^0.1.2", + "@types/mapbox__vector-tile": "^1.3.0", + "@types/pbf": "^3.0.2", + "csscolorparser": "~1.0.3", + "earcut": "^2.2.4", + "geojson-vt": "^3.2.1", + "gl-matrix": "^3.4.3", + "global-prefix": "^3.0.0", + "murmurhash-js": "^1.0.0", + "pbf": "^3.2.1", + "potpack": "^1.0.2", + "quickselect": "^2.0.0", + "supercluster": "^7.1.5", + "tinyqueue": "^2.0.3", + "vt-pbf": "^3.1.3" + }, + "dependencies": { + "@mapbox/mapbox-gl-supported": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-2.0.1.tgz", + "integrity": "sha512-HP6XvfNIzfoMVfyGjBckjiAOQK9WfX0ywdLubuPMPv+Vqf5fj0uCbgBQYpiqcWZT6cbyyRnTSXDheT1ugvF6UQ==" + }, + "@mapbox/tiny-sdf": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz", + "integrity": "sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==" + }, + "@mapbox/unitbezier": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz", + "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==" + } + } + }, + "math.gl": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/math.gl/-/math.gl-3.6.3.tgz", + "integrity": "sha512-Yq9CyECvSDox9+5ETi2+x1bGTY5WvGUGL3rJfC4KPoCZAM51MGfrCm6rIn4yOJUVfMPs2a5RwMD+yGS/n1g3gg==", + "requires": { + "@math.gl/core": "3.6.3" + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "requires": { + "mime-db": "1.52.0" + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", + "dev": true + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "dev": true, + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + } + }, + "mjolnir.js": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/mjolnir.js/-/mjolnir.js-2.7.1.tgz", + "integrity": "sha512-72BeUWgTv2cj5aZQKpwL8caNUFhXZ9bDm1hxpNj70XJQ62IBnTZmtv/WPxJvtaVNhzNo+D2U8O6ryNI0zImYcw==", + "requires": { + "@types/hammerjs": "^2.0.41", + "hammerjs": "^2.0.8" + } + }, + "mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "requires": { + "minimist": "^1.2.6" + } + }, + "moment": { + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" + }, + "moment-timezone": { + "version": "0.5.40", + "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.40.tgz", + "integrity": "sha512-tWfmNkRYmBkPJz5mr9GVDn9vRlVZOTe6yqY92rFxiOdWXbjaR0+9LwQnZGGuNR63X456NqmEkbskte8tWL5ePg==", + "requires": { + "moment": ">= 2.9.0" + } + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", + "dev": true, + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", + "dev": true + }, + "murmurhash-js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/murmurhash-js/-/murmurhash-js-1.0.0.tgz", + "integrity": "sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==" + }, + "nan": { + "version": "2.17.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", + "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", + "dev": true, + "optional": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dev": true, + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + } + }, + "node-releases": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "dev": true + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "requires": { + "is-wsl": "^1.1.0" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", + "dev": true + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "requires": { + "retry": "^0.12.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "pad-left": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pad-left/-/pad-left-2.1.0.tgz", + "integrity": "sha512-HJxs9K9AztdIQIAIa/OIazRAUW/L6B9hbQDxO4X07roW3eo9XqZc2ur9bn1StH9CnbbI9EgvejHQX7CBpCF1QA==", + "requires": { + "repeat-string": "^1.5.4" + } + }, + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + }, + "parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "dev": true, + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dev": true, + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "dev": true + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "dev": true + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "pbf": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/pbf/-/pbf-3.2.1.tgz", + "integrity": "sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==", + "requires": { + "ieee754": "^1.1.12", + "resolve-protobuf-schema": "^2.1.0" + } + }, + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "dev": true, + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "optional": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + }, + "portfinder": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "dev": true, + "requires": { + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true + }, + "potpack": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/potpack/-/potpack-1.0.2.tgz", + "integrity": "sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==" + }, + "probe.gl": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/probe.gl/-/probe.gl-3.6.0.tgz", + "integrity": "sha512-19JydJWI7+DtR4feV+pu4Mn1I5TAc0xojuxVgZdXIyfmTLfUaFnk4OloWK1bKbPtkgGKLr2lnbnCXmpZEcEp9g==", + "requires": { + "@babel/runtime": "^7.0.0", + "@probe.gl/env": "3.6.0", + "@probe.gl/log": "3.6.0", + "@probe.gl/stats": "3.6.0" + } + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "dev": true + }, + "protocol-buffers-schema": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz", + "integrity": "sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==" + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "dev": true + }, + "qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } + }, + "quadbin": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/quadbin/-/quadbin-0.1.5.tgz", + "integrity": "sha512-/MQnN7V73myA+31gTxldTGN8ixqrUCXtUoDvRKSI9QZJOaq0cS9SNQkdToMxjC3ZSM2hN7mleOAn+9QVNlPZOg==", + "requires": { + "@mapbox/tile-cover": "^3.0.2" + } + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", + "dev": true + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "dev": true + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "quickselect": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz", + "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==" + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true + }, + "raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true + } + } + }, + "react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "requires": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + } + }, + "react-map-gl": { + "version": "7.0.21", + "resolved": "https://registry.npmjs.org/react-map-gl/-/react-map-gl-7.0.21.tgz", + "integrity": "sha512-Cmokphv6VHfRJsHVjCtn7nw5mf8rl89CHdvPSaif0OWZZqe+pxM2/5hEr4EvPWeTokRPCo1XTrBpGbShkEuktQ==", + "requires": { + "@types/mapbox-gl": "^2.6.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "optional": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "reduce-flatten": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", + "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==" + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "requires": { + "regenerate": "^1.4.2" + } + }, + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "regenerator-transform": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "regexp.prototype.flags": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + } + }, + "regexpu-core": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.0.tgz", + "integrity": "sha512-ZdhUQlng0RoscyW7jADnUZ25F5eVtHdMyXSb2PiwafvteRAOJUjFoUPEYZSIfP99fBIs3maLIRfpEddT78wAAQ==", + "requires": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + } + }, + "regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" + } + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", + "dev": true + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==" + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "requires": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + } + }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "dependencies": { + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + } + } + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "dev": true + }, + "resolve-protobuf-schema": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz", + "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==", + "requires": { + "protocol-buffers-schema": "^3.3.1" + } + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "dev": true + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", + "dev": true, + "requires": { + "aproba": "^1.1.1" + } + }, + "rw": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", + "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "selfsigned": { + "version": "1.10.14", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", + "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", + "dev": true, + "requires": { + "node-forge": "^0.10.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + } + } + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dev": true, + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true + } + } + }, + "serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true + } + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "dev": true + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "sockjs-client": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.1.tgz", + "integrity": "sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==", + "dev": true, + "requires": { + "debug": "^3.2.7", + "eventsource": "^2.0.2", + "faye-websocket": "^0.11.4", + "inherits": "^2.0.4", + "url-parse": "^1.5.10" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "dev": true + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "ssri": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", + "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", + "dev": true, + "requires": { + "figgy-pudding": "^3.5.1" + } + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dev": true, + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true + }, + "supercluster": { + "version": "7.1.5", + "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-7.1.5.tgz", + "integrity": "sha512-EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg==", + "requires": { + "kdbush": "^3.0.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + }, + "table-layout": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-1.0.2.tgz", + "integrity": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==", + "requires": { + "array-back": "^4.0.1", + "deep-extend": "~0.6.0", + "typical": "^5.2.0", + "wordwrapjs": "^4.0.0" + }, + "dependencies": { + "array-back": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", + "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==" + }, + "typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==" + } + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true + }, + "terser": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", + "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "dev": true, + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "text-encoding-utf-8": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz", + "integrity": "sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==" + }, + "texture-compressor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/texture-compressor/-/texture-compressor-1.0.2.tgz", + "integrity": "sha512-dStVgoaQ11mA5htJ+RzZ51ZxIZqNOgWKAIvtjLrW1AliQQLCmrDqNzQZ8Jh91YealQ95DXt4MEduLzJmbs6lig==", + "requires": { + "argparse": "^1.0.10", + "image-size": "^0.7.4" + } + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dev": true, + "requires": { + "setimmediate": "^1.0.4" + } + }, + "tinyqueue": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-2.0.3.tgz", + "integrity": "sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==" + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true + }, + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==", + "dev": true + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "typical": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", + "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==" + }, + "unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" + }, + "unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "requires": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" + }, + "unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true + } + } + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "dev": true + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true + }, + "update-browserslist-db": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true + } + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", + "dev": true, + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==", + "dev": true + } + } + }, + "url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dev": true, + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true + }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "dev": true + }, + "vt-pbf": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/vt-pbf/-/vt-pbf-3.1.3.tgz", + "integrity": "sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==", + "requires": { + "@mapbox/point-geometry": "0.1.0", + "@mapbox/vector-tile": "^1.3.1", + "pbf": "^3.2.1" + } + }, + "watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "dev": true, + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + } + }, + "watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "dev": true, + "optional": true, + "requires": { + "chokidar": "^2.1.8" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "optional": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "optional": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "optional": true + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "optional": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "optional": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "optional": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "optional": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "optional": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + } + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "webpack": { + "version": "4.46.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.46.0.tgz", + "integrity": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.5.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + } + }, + "webpack-cli": { + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.12.tgz", + "integrity": "sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "cross-spawn": "^6.0.5", + "enhanced-resolve": "^4.1.1", + "findup-sync": "^3.0.0", + "global-modules": "^2.0.0", + "import-local": "^2.0.0", + "interpret": "^1.4.0", + "loader-utils": "^1.4.0", + "supports-color": "^6.1.0", + "v8-compile-cache": "^2.1.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dev": true, + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true + } + } + }, + "webpack-dev-server": { + "version": "3.11.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", + "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", + "dev": true, + "requires": { + "ansi-html-community": "0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dev": true, + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "dev": true + } + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==", + "dev": true + }, + "wordwrapjs": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz", + "integrity": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==", + "requires": { + "reduce-flatten": "^2.0.0", + "typical": "^5.2.0" + }, + "dependencies": { + "typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==" + } + } + }, + "worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dev": true, + "requires": { + "errno": "~0.1.7" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dev": true, + "requires": { + "async-limiter": "~1.0.0" + } + }, + "xmlhttprequest": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz", + "integrity": "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } +} diff --git a/deck-gl-pow/package.json b/deck-gl-pow/package.json new file mode 100644 index 00000000..923e1d6d --- /dev/null +++ b/deck-gl-pow/package.json @@ -0,0 +1,32 @@ +{ + "name": "maplibre-custom-layer", + "version": "0.0.0", + "license": "MIT", + "scripts": { + "start": "webpack-dev-server --progress --hot --open", + "start-local": "webpack-dev-server --env.local --progress --hot --open" + }, + "dependencies": { + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.19.6", + "@babel/preset-env": "^7.20.2", + "@loaders.gl/csv": "^3.2.10", + "@loaders.gl/json": "^3.2.13", + "d3-request": "^1.0.5", + "d3-scale": "^2.0.0", + "deck.gl": "^8.8.0", + "maplibre-gl": "^2.4.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-map-gl": "^7.0.16" + }, + "devDependencies": { + "@babel/core": "^7.4.0", + "@babel/preset-react": "^7.0.0", + "babel-loader": "^8.0.5", + "webpack": "^4.20.2", + "webpack-cli": "^3.1.2", + "webpack-dev-server": "^3.1.1" + } +} diff --git a/deck-gl-pow/scatter-plot-custom-layer.js b/deck-gl-pow/scatter-plot-custom-layer.js new file mode 100644 index 00000000..303f7bb3 --- /dev/null +++ b/deck-gl-pow/scatter-plot-custom-layer.js @@ -0,0 +1,216 @@ +import {LayerExtension} from '@deck.gl/core'; + +class ScatterplotCustomLayer extends LayerExtension { + initializeState(params) { + super.initializeState(params); + + const attributeManager = this.getAttributeManager(); + attributeManager.addInstanced({ + radius: { + size: 1, + accessor: 'getRadius', + defaultValue: 3 + }, + stroke_width: { + size: 1, + accessor: 'getRadius', + defaultValue: 3 + }, + a_stroke_color: { + size: 3, + accessor: 'getLineColor', + defaultValue: [255,255,255,255] + }, + a_stroke_opacity: { + size: 1, + accessor: 'getRadius', + defaultValue: 3 + }, + a_color: { + size: 3, + accessor: 'getFillColor', + defaultValue: [255,255,255,255] + } + }); + } + + getShaders() { + return { + inject: { + 'vs:#decl': `\ + uniform highp float u_time; + attribute float radius; + attribute float stroke_width; + attribute vec4 a_stroke_color; + attribute float a_stroke_opacity; + attribute vec4 a_color; + + varying vec4 v_color; + varying vec4 v_stroke_color; + varying float v_stroke_opacity; + varying vec3 v_data; + varying float v_visibility; + `, + + 'vs:#main-end': `\ + vec2 extrude = vec2(geometry.uv); + lowp float antialiasblur = 1.0 / project_uDevicePixelRatio / (radius + stroke_width); + v_data = vec3(extrude.x, extrude.y, antialiasblur); + v_stroke_color = a_stroke_color; + v_stroke_opacity = a_stroke_opacity; + v_color = a_color; + `, + + 'fs:#decl': `\ + uniform highp float u_time; + + varying vec4 v_color; + varying vec4 v_stroke_color; + varying float v_stroke_opacity; + varying vec3 v_data; + varying float v_visibility; + + #define TPI 6.28318530718 + #define PI 3.141562843 + #define HPI 1.57079632679 + `, + + 'fs:#main-end': `\ + vec2 extrude = v_data.xy; + float extrude_length = length(extrude); + + lowp float antialiasblur = v_data.z; + float antialiased_blur = -max(1.0, antialiasblur); + + float opacity_t = smoothstep(0.0, antialiased_blur, extrude_length - 1.0); + + int u_integer = int(u_time/2.0); + int u_integer_angle = int(u_time/5.0); + float decimal_time = u_time/2.0 - float(u_integer); + float angle_decimal_time = u_time/5.0 - float(u_integer_angle); + + + float angle = 0.0; + //vec4 test_color = vec4(0.0,0.0,0.0,1.0); + vec2 vtx = vec2(extrude[0], -extrude[1]); + + float arc = TPI / 3.0; + + if (vtx.x >= 0.0 && vtx.y >= 0.0) // red, first quadrant + { + //test_color = vec4(1.0,0.0,0.0,1.0); + if (vtx.y == 0.0) + { + angle = 0.0; + } + else + { + angle = atan( vtx.y / vtx.x ); + } + } + else if (vtx.x <= 0.0 && vtx.y >= 0.0) // green + { + //test_color = vec4(0.0,1.0,0.0,1.0); + if (vtx.y == 0.0) + { + angle = PI; + } + else + { + angle = PI + atan( vtx.y / vtx.x ); + } + } + else if (vtx.x <= 0.0 && vtx.y < 0.0) // blue + { + //test_color = vec4(0.0,0.0,1.0,1.0); + if (vtx.y == 0.0) + { + angle = PI; + } + else + { + angle = PI + atan( vtx.y / vtx.x ); + } + } + else if(vtx.x >= 0.0 && vtx.y < 0.0) // yellow + { + //test_color = vec4(1.0,1.0,0.0,1.0); + if (vtx.y == 0.0) + { + angle = 0.0; + } + else + { + angle = TPI + atan( vtx.y / vtx.x ); + } + } + + float main_rotating_angle_min = TPI * angle_decimal_time; + float rotating_angle_min = 0.0; + float rotating_angle_max = 0.0; + + int draw_border = 0; + float f_stroke_opacity = v_stroke_opacity; + + for (int i = 0; i < 3; i++) + { + rotating_angle_min = (TPI * float(i) / 3.0) + main_rotating_angle_min; + if (rotating_angle_min > TPI) + { + rotating_angle_min = rotating_angle_min - TPI; + } + rotating_angle_max = arc + rotating_angle_min; + + + if ((rotating_angle_max > TPI && angle >= 0.0 && angle < rotating_angle_max - TPI) || (angle >= rotating_angle_min && angle < rotating_angle_max)) + { + if (angle < rotating_angle_min) + { + f_stroke_opacity = v_stroke_opacity * (angle + TPI - rotating_angle_min) / (arc); + } + else + { + f_stroke_opacity = v_stroke_opacity * (angle - rotating_angle_min) / (arc); + } + draw_border = 1; + } + } + + if (draw_border == 0) + { + f_stroke_opacity = 0.0; + } + + float first_step = 0.40 + 0.05 * sin(main_rotating_angle_min); + float second_step = 0.8;//0.65 + 0.05 * sin(main_rotating_angle_min); + float third_step = 1.0;//0.9 + 0.05 * sin(main_rotating_angle_min); + if (extrude_length <= first_step) + { + opacity_t = smoothstep(1.0 - first_step, 1.0 - first_step - antialiased_blur, -extrude_length + 1.0); + gl_FragColor = opacity_t * v_color; + } + else if (extrude_length <= second_step) + { + opacity_t = smoothstep(1.0 - second_step, 1.0 - second_step - antialiased_blur, -extrude_length + 1.0) - smoothstep(1.0 - first_step + antialiased_blur, 1.0 - first_step, -extrude_length + 1.0); + gl_FragColor = opacity_t * vec4(1.0,1.0,1.0,1.0); + } + else if (extrude_length <= third_step) + { + opacity_t = smoothstep(0.0, 0.0 - antialiased_blur, -extrude_length + 1.0) - smoothstep(1.0 - second_step + antialiased_blur, 1.0 - second_step, -extrude_length + 1.0); + gl_FragColor = opacity_t * v_stroke_color * f_stroke_opacity * 0.5; + } + else + { + gl_FragColor = vec4(0.0);//opacity_t * test_color; + } + `} + } + } + + draw(params) { + params.uniforms.u_time = (performance.now() / 500) % 100000; + super.draw(params); + } +} + +export default ScatterplotCustomLayer; \ No newline at end of file diff --git a/deck-gl-pow/webpack.config.js b/deck-gl-pow/webpack.config.js new file mode 100644 index 00000000..6e37b556 --- /dev/null +++ b/deck-gl-pow/webpack.config.js @@ -0,0 +1,32 @@ +// NOTE: To use this example standalone (e.g. outside of deck.gl repo) +// delete the local development overrides at the bottom of this file + +const CONFIG = { + mode: 'development', + + entry: { + app: './app.js' + }, + + output: { + library: 'App' + }, + devtool: 'eval-source-map', + module: { + rules: [ + { + // Transpile ES6 to ES5 with babel + // Remove if your app does not use JSX or you don't need to support old browsers + test: /\.js$/, + loader: 'babel-loader', + exclude: [/node_modules/], + options: { + presets: ['@babel/preset-react'] + } + } + ] + } +}; + +// This line enables bundling against src in this repo rather than installed module +module.exports = env => (env ? require('../../webpack.config.local')(CONFIG)(env) : CONFIG); From cab1aef0e9b8c2106dfc5d3b1c436b3a4821df85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Fri, 10 Nov 2023 08:39:22 -0500 Subject: [PATCH 02/23] Replace main map with a Deck.gl layer Current state: no background, simple geometries are displayed. All enabled layers are displayed, with proper color if that color is in the properties, otherwise, it is a default color. There is no interaction with the layers and the circles are very small when zoomed out. The selected shaders do not work. The original layer descriptions in the layers.config.ts file have not been changed or updated yet. The information they contain may be useful for the Deck.gl data, but we'll need to take each field and see how to define/type it for best Deck.gl support --- .../src/config/defaultPreferences.config.ts | 18 +- .../src/services/map/MapLayerManager.ts | 165 ++-- .../services/map/layers/LayerDescription.ts | 21 + packages/transition-frontend/package.json | 6 +- .../dashboard/TransitionToolbar.tsx | 12 +- .../transitRouting/RoutingResultComponent.tsx | 7 +- .../src/components/map/TransitionMainMap.tsx | 166 ++-- .../map/layers/TransitionMapLayer.tsx | 141 ++++ yarn.lock | 788 +++++++++++++++++- 9 files changed, 1077 insertions(+), 247 deletions(-) create mode 100644 packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts create mode 100644 packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx diff --git a/packages/chaire-lib-common/src/config/defaultPreferences.config.ts b/packages/chaire-lib-common/src/config/defaultPreferences.config.ts index 76b996c7..352dde30 100644 --- a/packages/chaire-lib-common/src/config/defaultPreferences.config.ts +++ b/packages/chaire-lib-common/src/config/defaultPreferences.config.ts @@ -564,20 +564,20 @@ const defaultPreferences: PreferencesModel = { maxTotalTravelTimeSeconds: 10800, walkingSpeedMps: 1.3888888888, walkingSpeedFactor: 1.0, // walking travel times are weighted using this factor: Example: > 1.0 means faster walking, < 1.0 means slower walking - originLocationColor: 'rgba(140, 212, 0, 1.0)', - destinationLocationColor: 'rgba(212, 35, 14, 1.0)', - walkingSegmentsColor: 'rgba(160,160,160,1.0)', + originLocationColor: '#8cd400', + destinationLocationColor: '#d4230e', + walkingSegmentsColor: '#a0a0a0', walking: { - color: 'rgba(255, 238, 0,1.0)' + color: '#ffee00' }, cycling: { - color: 'rgba(0, 204, 51,1.0)' + color: '#00cc33' }, driving: { - color: 'rgba(229, 45, 0,1.0)' + color: '#e52d00' }, default: { - color: 'rgba(160,160,160,1.0)' + color: '#a0a0a0' } }, transitAccessibilityMap: { @@ -594,8 +594,8 @@ const defaultPreferences: PreferencesModel = { walkingSpeedMps: 1.3888888888, walkingSpeedFactor: 1.0, // walking travel times are weighted using this factor: Example: > 1.0 means faster walking, < 1.0 means slower walking maxTotalTravelTimeSeconds: 1800, - locationColor: 'rgba(47, 138, 243, 1.0)', - polygonColor: 'rgba(47, 138, 243, 0.4)' + locationColor: '#2f8af3', + polygonColor: '#2f8af366' }, transitOdTrips: { minWaitingTimeSeconds: 180, diff --git a/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts b/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts index 9bb986a6..bcaf6d8c 100644 --- a/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts +++ b/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts @@ -4,13 +4,13 @@ * This file is licensed under the MIT License. * License text available at https://opensource.org/licenses/MIT */ -import MapboxGL from 'mapbox-gl'; import { featureCollection as turfFeatureCollection } from '@turf/turf'; import _uniq from 'lodash/uniq'; import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; +import { LayerDescription } from './layers/LayerDescription'; -const defaultGeojson = turfFeatureCollection([]); +const defaultGeojson = turfFeatureCollection([]) as GeoJSON.FeatureCollection; /** * Layer manager for Mapbox-gl maps @@ -20,58 +20,37 @@ const defaultGeojson = turfFeatureCollection([]); * TODO: If we want to support multiple map implementation, this layer management will have to be updated */ class MapboxLayerManager { - private _map: MapboxGL.Map | undefined; - private _layersByName: { [key: string]: any } = {}; + private _layersByName: { [key: string]: LayerDescription } = {}; private _enabledLayers: string[] = []; private _defaultFilterByLayer = {}; private _filtersByLayer = {}; - constructor(layersConfig: any, map = undefined) { - this._map = map; - + constructor(layersConfig: any) { for (const layerName in layersConfig) { - const source = { - type: 'geojson', - data: defaultGeojson - }; - - const layer = layersConfig[layerName]; - layer.id = layerName; - layer.source = layerName; - - if (layersConfig[layerName].layout) { - layer.layout = layersConfig[layerName].layout; - } - if (layersConfig[layerName].defaultFilter) { - layer.filter = layersConfig[layerName].defaultFilter; - this._defaultFilterByLayer[layerName] = layersConfig[layerName].defaultFilter; - this._filtersByLayer[layerName] = layersConfig[layerName].defaultFilter; - } else { - this._filtersByLayer[layerName] = undefined; - this._defaultFilterByLayer[layerName] = undefined; - } - this._layersByName[layerName] = { - layer, - source + id: layerName, + visible: false, + layerDescription: layersConfig[layerName], + layerData: defaultGeojson }; + this._enabledLayers = []; } } - // TODO Consider deprecating and adding the map on the constructor only - setMap(map: MapboxGL.Map) { - this._map = map; - } - showLayer(layerName: string) { - this._map?.setLayoutProperty(layerName, 'visibility', 'visible'); + if (this._layersByName[layerName] !== undefined) { + this._layersByName[layerName].visible = true; + } } hideLayer(layerName: string) { - this._map?.setLayoutProperty(layerName, 'visibility', 'none'); + if (this._layersByName[layerName] !== undefined) { + this._layersByName[layerName].visible = false; + } } getFilter(layerName: string) { + // TODO Re-implement return this._filtersByLayer[layerName] || null; } @@ -81,47 +60,24 @@ class MapboxLayerManager { } this._filtersByLayer[layerName] = filter; if (this.layerIsEnabled(layerName)) { - this._map?.setFilter(layerName, this._filtersByLayer[layerName]); + // this._map?.setFilter(layerName, this._filtersByLayer[layerName]); } } clearFilter(layerName: string) { this._filtersByLayer[layerName] = this._defaultFilterByLayer[layerName]; if (this.layerIsEnabled(layerName)) { - this._map?.setFilter(layerName, this._defaultFilterByLayer[layerName]); + //this._map?.setFilter(layerName, this._defaultFilterByLayer[layerName]); } } updateEnabledLayers(enabledLayers: string[] = []) { - if (!this._map) { - return; - } - enabledLayers = _uniq(enabledLayers); // make sure we do not have the same layer twice (can happen with user prefs not replaced correctly after updates) - const previousEnabledLayers: string[] = this._enabledLayers || []; - previousEnabledLayers.forEach((previousEnabledLayer) => { - this._map?.removeLayer(previousEnabledLayer); // we need to remove all layers so we can keep the right z-index: TODO: make this more efficient by recalculating z-index in mapbox order instead of reloading everything. - if (!enabledLayers.includes(previousEnabledLayer)) { - this._map?.removeSource(previousEnabledLayer); - } - }); - const enabledAndActiveLayers: string[] = []; - enabledLayers.forEach((enabledLayer) => { - if (!this._layersByName[enabledLayer]) { - // Layer not defined - return; - } - if (!previousEnabledLayers.includes(enabledLayer)) { - this._map?.addSource(enabledLayer, this._layersByName[enabledLayer].source); - } - this._map?.addLayer(this._layersByName[enabledLayer].layer); - this._map?.setFilter(enabledLayer, this._filtersByLayer[enabledLayer]); - enabledAndActiveLayers.push(enabledLayer); - }); - this._enabledLayers = enabledAndActiveLayers; - serviceLocator.eventManager.emit('map.updatedEnabledLayers', enabledLayers); + this._enabledLayers = _uniq(enabledLayers).filter((layerName) => this._layersByName[layerName] !== undefined); // make sure we do not have the same layer twice (can happen with user prefs not replaced correctly after updates) + serviceLocator.eventManager.emit('map.updatedEnabledLayers', this._enabledLayers); } showLayerObjectByAttribute(layerName: string, attribute: string, value: any) { + // TODO Reimplement const existingFilter = this.getFilter(layerName); let values: any[] = []; if ( @@ -138,13 +94,15 @@ class MapboxLayerManager { values = [value]; } existingFilter[2] = values; - this._map?.setFilter(layerName, existingFilter); + // TODO Map needs updating at this point + // this._map?.setFilter(layerName, existingFilter); } else { - this._map?.setFilter(layerName, ['match', ['get', attribute], values, true, false]); + // this._map?.setFilter(layerName, ['match', ['get', attribute], values, true, false]); } } hideLayerObjectByAttribute(layerName, attribute, value) { + // TODO Reimplement const existingFilter = this.getFilter(layerName); let values: any[] = []; if ( @@ -164,19 +122,20 @@ class MapboxLayerManager { values = [value]; } existingFilter[2] = values; - this._map?.setFilter(layerName, existingFilter); + // TODO Map needs updating at this point + // this._map?.setFilter(layerName, existingFilter); } else { - this._map?.setFilter(layerName, ['match', ['get', attribute], values, true, false]); + // this._map?.setFilter(layerName, ['match', ['get', attribute], values, true, false]); } } getLayer(layerName: string) { - return this._map?.getLayer(layerName); + return this._layersByName[layerName]; } getNextLayerName(layerName: string) { // to be able to add a layer before another (see mapbox map.addLayer attribute beforeId) - const enabledLayers = this._enabledLayers || []; + /* const enabledLayers = this._enabledLayers || []; const enabledLayersCount = enabledLayers.length; for (let i = 0; i < enabledLayersCount - 1; i++) { // return undefined is already last (i < length - 1) @@ -184,7 +143,7 @@ class MapboxLayerManager { if (enabledLayerName === layerName) { return this._enabledLayers[i + 1]; } - } + } */ return undefined; } @@ -197,75 +156,53 @@ class MapboxLayerManager { console.error('newShaderName is undefined or empty'); return null; } - this._layersByName[layerName].layer['custom-shader'] = newShaderName; + // TODO Re-implement this + /* this._layersByName[layerName].layer['custom-shader'] = newShaderName; this._map?.removeLayer(layerName); if (this._map && repaint === true) { this._map.repaint = true; } - this._map?.addLayer(this._layersByName[layerName].layer, this.getNextLayerName(layerName)); + this._map?.addLayer(this._layersByName[layerName].layer, this.getNextLayerName(layerName)); */ } updateLayer( layerName: string, geojson: GeoJSON.FeatureCollection | ((original: GeoJSON.FeatureCollection) => GeoJSON.FeatureCollection) ) { - const newGeojson = - typeof geojson === 'function' - ? geojson(this._layersByName[layerName].source.data) - : geojson - ? geojson - : defaultGeojson; - this._layersByName[layerName].source.data = newGeojson; - - if (this._map && this.layerIsEnabled(layerName)) { - (this._map.getSource(layerName) as MapboxGL.GeoJSONSource).setData( - this._layersByName[layerName].source.data - ); - if (this._layersByName[layerName].layer.repaint === true) { - // activate repaint for animated shaders: - this._map.repaint = newGeojson.features && newGeojson.features.length > 0; - } + // FIXME: In original code, geojson can be a function. Do we need to support this? It took the source data as parameter + if (this._layersByName[layerName] !== undefined) { + const geojsonData = + typeof geojson === 'function' ? geojson(this._layersByName[layerName].layerData) : geojson; + this._layersByName[layerName].layerData = geojsonData; + } else { + console.log('layer does not exist', layerName); } - serviceLocator.eventManager.emit('map.updatedLayer', layerName); } updateLayers(geojsonByLayerName) { for (const layerName in geojsonByLayerName) { - const geojson = geojsonByLayerName[layerName]; - const newGeojson = - typeof geojson === 'function' - ? geojson(this._layersByName[layerName].source.data) - : geojson - ? geojson - : defaultGeojson; - this._layersByName[layerName].source.data = newGeojson; - if (this._map && this.layerIsEnabled(layerName)) { - (this._map.getSource(layerName) as MapboxGL.GeoJSONSource).setData( - this._layersByName[layerName].source.data - ); - if (this._layersByName[layerName].layer.repaint === true) { - // activate repaint for animated shaders: - this._map.repaint = newGeojson.features && newGeojson.features.length > 0; + if (this._layersByName[layerName] !== undefined) { + this._layersByName[layerName].layerData = geojsonByLayerName[layerName]; + if (this._layersByName[layerName].visible && this._enabledLayers.includes(layerName)) { + serviceLocator.eventManager.emit('map.updatedLayer', layerName); } + } else { + console.log('layer does not exist', layerName); } } serviceLocator.eventManager.emit('map.updatedLayers', Object.keys(geojsonByLayerName)); } layerIsEnabled(layerName: string) { - return this.getEnabledLayers().includes(layerName); + return this._enabledLayers.includes(layerName); } layerIsVisible(layerName: string) { - if (!this._map) { - return null; - } - const layerVisibility = this._map.getLayoutProperty(layerName, 'visibility'); - return layerVisibility === 'visible' || layerVisibility === undefined; + return this._layersByName[layerName]?.visible; } - getEnabledLayers() { - return this._enabledLayers; + getEnabledLayers(): LayerDescription[] { + return this._enabledLayers.map((layerName) => this._layersByName[layerName]); } getLayerNames() { diff --git a/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts new file mode 100644 index 00000000..a69e8f27 --- /dev/null +++ b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts @@ -0,0 +1,21 @@ +/* + * Copyright 2023, Polytechnique Montreal and contributors + * + * This file is licensed under the MIT License. + * License text available at https://opensource.org/licenses/MIT + */ + +export type LayerDescription = { + /** Unique identifier for this layer */ + id: string; + /** Whether the layer is visible, if enabled */ + visible: boolean; + /** + * Description of the current layer + * + * TODO Type this properly + */ + layerDescription: { [key: string]: any }; + /** Features contained in this layer */ + layerData: GeoJSON.FeatureCollection; +}; diff --git a/packages/transition-frontend/package.json b/packages/transition-frontend/package.json index 96fb74be..21904918 100644 --- a/packages/transition-frontend/package.json +++ b/packages/transition-frontend/package.json @@ -24,6 +24,7 @@ }, "dependencies": { "@alienfast/i18next-loader": "^1.1.4", + "@deck.gl/react": "^8.9.32", "@fortawesome/fontawesome-svg-core": "^1.2.32", "@fortawesome/free-solid-svg-icons": "^5.15.1", "@fortawesome/react-fontawesome": "^0.1.11", @@ -37,6 +38,7 @@ "chaire-lib-frontend": "^0.2.2", "child_process": "^1.0.2", "date-fns": "^2.30.0", + "deck.gl": "^8.9.32", "element-resize-event": "^3.0.6", "history": "^4.9.0", "i18next": "^22.4.15", @@ -113,10 +115,10 @@ "style-loader": "^1.2.1", "ts-jest": "^27.0.7", "ts-loader": "^7.0.5", + "ts-shader-loader": "^2.0.2", "url-loader": "^4.1.0", "webpack": "^4.43.0", "webpack-cdn-plugin": "^3.3.1", - "webpack-cli": "^3.3.12", - "ts-shader-loader": "^2.0.2" + "webpack-cli": "^3.3.12" } } diff --git a/packages/transition-frontend/src/components/dashboard/TransitionToolbar.tsx b/packages/transition-frontend/src/components/dashboard/TransitionToolbar.tsx index 8a2e5101..2fefa820 100644 --- a/packages/transition-frontend/src/components/dashboard/TransitionToolbar.tsx +++ b/packages/transition-frontend/src/components/dashboard/TransitionToolbar.tsx @@ -74,7 +74,7 @@ class Toolbar extends React.Component { - const layersVisibility = {}; + /* const layersVisibility = {}; serviceLocator.layerManager._enabledLayers.forEach((layerName) => { layersVisibility[layerName] = serviceLocator.layerManager.layerIsVisible(layerName); }); @@ -82,29 +82,29 @@ class Toolbar extends React.Component { - if (this.state.layersVisibility[layerName] === false) { + /* if (this.state.layersVisibility[layerName] === false) { this.setState((oldState) => { oldState.layersVisibility[layerName] = true; return { layersVisibility: oldState.layersVisibility }; }); - } + } */ }; onHideLayer = (layerName: string) => { - if (this.state.layersVisibility[layerName] === true) { + /* if (this.state.layersVisibility[layerName] === true) { this.setState((oldState) => { oldState.layersVisibility[layerName] = false; return { layersVisibility: oldState.layersVisibility }; }); - } + } */ }; onUpdateCoordinates = (coordinates: [number, number]) => { diff --git a/packages/transition-frontend/src/components/forms/transitRouting/RoutingResultComponent.tsx b/packages/transition-frontend/src/components/forms/transitRouting/RoutingResultComponent.tsx index 88d46417..582c18b9 100644 --- a/packages/transition-frontend/src/components/forms/transitRouting/RoutingResultComponent.tsx +++ b/packages/transition-frontend/src/components/forms/transitRouting/RoutingResultComponent.tsx @@ -20,8 +20,6 @@ import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; import { TransitRoutingResult } from 'transition-common/lib/services/transitRouting/TransitRoutingResult'; import { default as FormErrors } from 'chaire-lib-frontend/lib/components/pageParts/FormErrors'; import { TransitRoutingAttributes } from 'transition-common/lib/services/transitRouting/TransitRouting'; -import { EventManager } from 'chaire-lib-common/lib/services/events/EventManager'; -import { MapUpdateLayerEventType } from 'chaire-lib-frontend/lib/services/map/events/MapEventsCallbacks'; export interface RoutingResultStatus { routingResult: UnimodalRouteCalculationResult | TransitRoutingResult; alternativeIndex: number; @@ -35,11 +33,8 @@ export interface TransitRoutingResultsProps extends WithTranslation { const showCurrentAlternative = async (result, alternativeIndex) => { const pathGeojson = await result.getPathGeojson(alternativeIndex, {}); - (serviceLocator.eventManager as EventManager).emitEvent('map.updateLayer', { - layerName: 'routingPoints', - data: result.originDestinationToGeojson() - }); serviceLocator.eventManager.emit('map.updateLayers', { + routingPoints: result.originDestinationToGeojson(), routingPaths: pathGeojson, routingPathsStrokes: pathGeojson }); diff --git a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx index a31a8e10..8d84db21 100644 --- a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx +++ b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx @@ -7,6 +7,10 @@ import React from 'react'; import ReactDom from 'react-dom'; import { withTranslation } from 'react-i18next'; +import DeckGL from '@deck.gl/react/typed'; +import { DeckProps, Viewport, FilterContext, Layer } from '@deck.gl/core/typed'; +import { ScatterplotLayer } from 'deck.gl'; +import { TripsLayer } from '@deck.gl/geo-layers'; import MapboxGL from 'mapbox-gl'; import MapboxDraw from '@mapbox/mapbox-gl-draw'; import { default as elementResizedEvent, unbind as removeResizeListener } from 'element-resize-event'; @@ -23,6 +27,7 @@ import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; import { getMapBoxDraw, removeMapBoxDraw } from 'chaire-lib-frontend/lib/services/map/MapPolygonService'; import { findOverlappingFeatures } from 'chaire-lib-common/lib/services/geodata/FindOverlappingFeatures'; import Node from 'transition-common/lib/services/nodes/Node'; + import ConfirmModal from 'chaire-lib-frontend/lib/components/modal/ConfirmModal'; import _cloneDeep from 'lodash/cloneDeep'; import { featureCollection as turfFeatureCollection } from '@turf/turf'; @@ -31,12 +36,14 @@ import { MapEventHandlerDescription } from 'chaire-lib-frontend/lib/services/map import { deleteUnusedNodes } from '../../services/transitNodes/transitNodesUtils'; import { MapUpdateLayerEventType } from 'chaire-lib-frontend/lib/services/map/events/MapEventsCallbacks'; import { EventManager } from 'chaire-lib-common/lib/services/events/EventManager'; +import getLayer from './layers/TransitionMapLayer'; MapboxGL.accessToken = process.env.MAPBOX_ACCESS_TOKEN || ''; export interface MainMapProps extends LayoutSectionProps { zoom: number; center: [number, number]; + //onMapDataChange: () => void; // TODO : put layers and events together in an application configuration received as props here // layersConfig: { [key: string]: any }; // mapEvents: MapEventHandlerDescription[]; @@ -44,9 +51,14 @@ export interface MainMapProps extends LayoutSectionProps { } interface MainMapState { - layers: string[]; - confirmModalDeleteIsOpen: boolean; - mapLoaded: boolean; + viewState: { + longitude: number; + latitude: number; + zoom: number; + pitch: number; + bearing: number; + }; + enabledLayers: string[]; } /** @@ -69,14 +81,20 @@ class MainMap extends React.Component { super(props); this.state = { - layers: Preferences.current.map.layers[this.props.activeSection], - confirmModalDeleteIsOpen: false, - mapLoaded: false + viewState: { + longitude: props.center[0], + latitude: props.center[1], + zoom: props.zoom, + pitch: 0, + bearing: 0 + }, + enabledLayers: [] }; this.defaultZoomArray = [props.zoom]; this.defaultCenter = props.center; this.layerManager = new MapLayerManager(layersConfig); + this.pathLayerManager = new PathMapLayerManager(this.layerManager); this.popupManager = new MapPopupManager(); @@ -126,59 +144,6 @@ class MainMap extends React.Component { this.map?.dragPan.disable(); }; - onMapError = (e: any) => { - console.log('Map error:', e); - if (!this.state.mapLoaded) { - // Even if there was a map error, call the map.loaded event so the - // application can continue loading - this.setState({ mapLoaded: true }); - serviceLocator.eventManager.emit('map.loaded'); - } - }; - - setMap = (e: MapboxGL.MapboxEvent) => { - this.layerManager.setMap(e.target); - this.popupManager.setMap(e.target); - this.layerManager.updateEnabledLayers(this.state.layers); - if (process.env.CUSTOM_RASTER_TILES_XYZ_URL && this.map) { - const mapLayers = this.map.getStyle().layers || []; - let beforeLayerId = mapLayers.length > 0 ? mapLayers[0].id : undefined; - - for (let i = 0, count = mapLayers.length; i < count; i++) { - const layer = mapLayers[i]; - if (layer.type === 'background') { - beforeLayerId = layer.id; - break; - } - } - - if (beforeLayerId) { - this.map.addSource('custom_tiles', { - type: 'raster', - tiles: [process.env.CUSTOM_RASTER_TILES_XYZ_URL], - tileSize: 256 - }); - this.map?.addLayer( - { - id: 'custom_tiles', - type: 'raster', - source: 'custom_tiles', - minzoom: process.env.CUSTOM_RASTER_TILES_MIN_ZOOM - ? parseFloat(process.env.CUSTOM_RASTER_TILES_MIN_ZOOM) - : 0, - maxzoom: process.env.CUSTOM_RASTER_TILES_MAX_ZOOM - ? parseFloat(process.env.CUSTOM_RASTER_TILES_MAX_ZOOM) - : 22 - }, - beforeLayerId - ); - } - } - - this.setState({ mapLoaded: true }); - serviceLocator.eventManager.emit('map.loaded'); - }; - showPathsByAttribute = (attribute: string, value: any) => { // attribute must be agency_id or line_id if (attribute === 'agency_id') { @@ -202,36 +167,12 @@ class MainMap extends React.Component { }; componentDidMount = () => { - this.map = new MapboxGL.Map({ - container: this.mapContainer, - style: `mapbox://styles/${process.env.MAPBOX_USER_ID}/${process.env.MAPBOX_STYLE_ID}?fresh=true`, - center: this.defaultCenter, - zoom: this.defaultZoomArray[0], - maxZoom: 20, - hash: true - }); - - this.map.addControl(new MapboxGL.ScaleControl(), 'bottom-right'); - - for (const eventName in this.mapEvents) { - for (const layerName in this.mapEvents[eventName]) { - if (layerName === 'map') { - this.map.on(eventName, this.getEventHandler(this.mapEvents[eventName][layerName])); - } else { - this.map.on( - eventName as any, - layerName, - this.getEventHandler(this.mapEvents[eventName][layerName]) - ); - } - } - } - this.map.on('load', this.setMap); - this.map.on('error', this.onMapError); serviceLocator.addService('layerManager', this.layerManager); serviceLocator.addService('pathLayerManager', this.pathLayerManager); + this.layerManager.updateEnabledLayers(Preferences.current.map.layers[this.props.activeSection]); mapCustomEvents.addEvents(serviceLocator.eventManager); - elementResizedEvent(this.mapContainer, this.onResizeContainer); + //elementResizedEvent(this.mapContainer, this.onResizeContainer); + // TODO Are those events all ours? Or are some mapbox's? In any case, they should all be documented in a map API file: who should use when, and which parameters are expected serviceLocator.eventManager.on('map.updateEnabledLayers', this.updateEnabledLayers); (serviceLocator.eventManager as EventManager).onEvent( 'map.updateLayer', @@ -256,15 +197,16 @@ class MainMap extends React.Component { serviceLocator.eventManager.on('map.showContextMenu', this.showContextMenu); serviceLocator.eventManager.on('map.hideContextMenu', this.hideContextMenu); serviceLocator.eventManager.on('map.handleDrawControl', this.handleDrawControl); - serviceLocator.eventManager.on('map.deleteSelectedNodes', this.deleteSelectedNodes); + //serviceLocator.eventManager.on('map.deleteSelectedNodes', this.deleteSelectedNodes); serviceLocator.eventManager.on('map.deleteSelectedPolygon', this.deleteSelectedPolygon); + serviceLocator.eventManager.emit('map.loaded'); }; componentWillUnmount = () => { serviceLocator.removeService('layerManager'); serviceLocator.removeService('pathLayerManager'); mapCustomEvents.removeEvents(serviceLocator.eventManager); - removeResizeListener(this.mapContainer, this.onResizeContainer); + // removeResizeListener(this.mapContainer, this.onResizeContainer); serviceLocator.eventManager.off('map.updateEnabledLayers', this.updateEnabledLayers); serviceLocator.eventManager.off('map.updateLayer', this.updateLayer); serviceLocator.eventManager.off('map.updateLayers', this.updateLayers); @@ -286,7 +228,7 @@ class MainMap extends React.Component { serviceLocator.eventManager.off('map.showContextMenu', this.showContextMenu); serviceLocator.eventManager.off('map.hideContextMenu', this.hideContextMenu); serviceLocator.eventManager.off('map.handleDrawControl', this.handleDrawControl); - serviceLocator.eventManager.off('map.deleteSelectedNodes', this.deleteSelectedNodes); + //serviceLocator.eventManager.off('map.deleteSelectedNodes', this.deleteSelectedNodes); serviceLocator.eventManager.off('map.deleteSelectedPolygon', this.deleteSelectedPolygon); this.map?.remove(); // this will clean up everything including events }; @@ -417,12 +359,6 @@ class MainMap extends React.Component { }); }; - deleteSelectedNodes = () => { - this.setState({ - confirmModalDeleteIsOpen: true - }); - }; - onDeleteSelectedNodes = () => { serviceLocator.eventManager.emit('progress', { name: 'DeletingNodes', progress: 0.0 }); const selectedNodes = serviceLocator.selectedObjectsManager.get('selectedNodes'); @@ -491,15 +427,17 @@ class MainMap extends React.Component { data: GeoJSON.FeatureCollection | ((original: GeoJSON.FeatureCollection) => GeoJSON.FeatureCollection); }) => { this.layerManager.updateLayer(args.layerName, args.data); + this.setState({ enabledLayers: Object.keys(this.layerManager.getEnabledLayers()) }); }; updateLayers = (geojsonByLayerName) => { - //console.log('updating map layers', Object.keys(geojsonByLayerName)); this.layerManager.updateLayers(geojsonByLayerName); + this.setState({ enabledLayers: Object.keys(this.layerManager.getEnabledLayers()) }); }; updateEnabledLayers = (enabledLayers: string[]) => { this.layerManager.updateEnabledLayers(enabledLayers); + this.setState({ enabledLayers }); }; showContextMenu = (e, elements) => { @@ -540,22 +478,36 @@ class MainMap extends React.Component { ReactDom.render(, contextMenu); }; + onLayerFilter = (context: FilterContext): boolean => { + return true; + }; + + // FIXME: Find the type for this + onViewStateChange = (viewStateChange) => { + this.setState({ viewState: viewStateChange.viewState }); + // TODO Save map prefs + viewStateChange.viewState.latitude; + viewStateChange.viewState.longitude; + viewStateChange.viewState.zoom; + }; + render() { + const enabledLayers = this.layerManager.getEnabledLayers(); + + const layers: Layer[] = enabledLayers + .map((layer) => getLayer({ layerDescription: layer, viewState: this.state.viewState })) + .filter((layer) => layer !== undefined) as Layer[]; + // return (
{this.props.children} -
- {this.state.confirmModalDeleteIsOpen && ( - this.setState({ confirmModalDeleteIsOpen: false })} - /> - )} +
); } diff --git a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx new file mode 100644 index 00000000..7ca7f5b8 --- /dev/null +++ b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx @@ -0,0 +1,141 @@ +/* + * Copyright 2023, Polytechnique Montreal and contributors + * + * This file is licensed under the MIT License. + * License text available at https://opensource.org/licenses/MIT + */ +import { Layer, LayerProps } from '@deck.gl/core/typed'; +import { LayerDescription } from 'chaire-lib-frontend/lib/services/map/layers/LayerDescription'; +import { ScatterplotLayer, TripsLayer, PolygonLayer, GeoJsonLayer } from 'deck.gl/typed'; + +// FIXME default color should probably be a app/user/theme preference? +const DEFAULT_COLOR = '#0086FF'; +const defaultRGBA = [ + parseInt(DEFAULT_COLOR.substring(1, 3), 16), + parseInt(DEFAULT_COLOR.substring(3, 5), 16), + parseInt(DEFAULT_COLOR.substring(5), 16), + 255 +] as [number, number, number, number]; + +type TransitionMapLayerProps = { + layerDescription: LayerDescription; + // TODO Find the right type for this + viewState; +}; + +const stringToColor = (hexStringColor: string): [number, number, number] | [number, number, number, number] => [ + parseInt(hexStringColor.substring(1, 3), 16), + parseInt(hexStringColor.substring(3, 5), 16), + parseInt(hexStringColor.substring(5, 7), 16), + hexStringColor.length === 9 ? parseInt(hexStringColor.substring(7, 9), 16) : 255 +]; + +const propertyToColor = ( + feature: GeoJSON.Feature, + property: string, + defaultColor?: string +): [number, number, number] | [number, number, number, number] => { + if (!feature.properties || !feature.properties[property]) { + return defaultRGBA; + } + const colorValue = feature.properties[property]; + return typeof colorValue === 'string' && colorValue.startsWith('#') + ? stringToColor(colorValue) + : Array.isArray(colorValue) + ? [ + parseInt(colorValue[0]), + parseInt(colorValue[1]), + parseInt(colorValue[2]), + colorValue[3] !== undefined ? parseInt(colorValue[3]) : 255 + ] + : defaultColor + ? stringToColor(defaultColor) + : defaultRGBA; +}; + +const getLineLayer = (props: TransitionMapLayerProps): TripsLayer => + new TripsLayer({ + id: props.layerDescription.id, + data: props.layerDescription.layerData.features, + getPath: (d) => d.geometry.coordinates, + //getTimestamps: d => setTimestamps(d), + getColor: (d) => propertyToColor(d, 'color'), + opacity: 0.8, + widthMinPixels: 2, + rounded: true, + fadeTrail: true, + trailLength: 400, + currentTime: 0, + shadowEnabled: false, + pickable: true + /*updateTriggers: { + getWidth: routeIndex + }, + onHover: (line) => { + routeIndex = line.index; + }, + onClick: ({object}) => { + nodeSelected = null + routeSelected = [object] + } */ + }); + +const getPolygonLayer = (props: TransitionMapLayerProps): GeoJsonLayer => + new GeoJsonLayer({ + id: props.layerDescription.id, + data: props.layerDescription.layerData.features, + pickable: true, + stroked: true, + filled: true, + wireframe: true, + lineWidthMinPixels: 1, + /* getElevation: d => { + console.log('elevation', d.properties); + return 0; + }, */ + getFillColor: (d) => propertyToColor(d, 'color'), + getLineColor: [80, 80, 80], + getLineWidth: 1 + }); + +const getScatterLayer = (props: TransitionMapLayerProps): ScatterplotLayer => + new ScatterplotLayer({ + id: props.layerDescription.id, + data: props.layerDescription.layerData.features, + filled: true, + stroked: true, + getPosition: (d) => d.geometry.coordinates, + getFillColor: (d) => propertyToColor(d, 'color'), + getLineColor: [255, 255, 255, 255], + getRadius: (d, i) => 10, + /* updateTriggers: { + getRadius: nodeIndex + }, */ + pickable: true + /*onHover: (node) => { + nodeIndex = node.index; + }, + onClick: ({object}) => { + routeSelected = null + nodeSelected = [object] + } */ + }); + +const getLayer = (props: TransitionMapLayerProps): Layer | undefined => { + if (props.layerDescription.layerData === undefined) { + console.log('layer data is undefined', props.layerDescription.id); + return undefined; + } + if (props.layerDescription.layerDescription.type === 'circle') { + // FIXME Try not to type as any + return getScatterLayer(props) as any; + } else if (props.layerDescription.layerDescription.type === 'line') { + return getLineLayer(props) as any; + } else if (props.layerDescription.layerDescription.type === 'fill') { + return getPolygonLayer(props) as any; + } + console.log('unknown layer', props.layerDescription.layerDescription); + return undefined; +}; + +export default getLayer; diff --git a/yarn.lock b/yarn.lock index 773c5035..87180c25 100644 --- a/yarn.lock +++ b/yarn.lock @@ -503,6 +503,13 @@ core-js-pure "^3.0.0" regenerator-runtime "^0.13.4" +"@babel/runtime@^7.0.0", "@babel/runtime@^7.3.1": + version "7.23.2" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.2.tgz#062b0ac103261d68a966c4c7baf2ae3e62ec3885" + integrity sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg== + dependencies: + regenerator-runtime "^0.14.0" + "@babel/runtime@^7.1.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.7": version "7.9.2" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.2.tgz#d90df0583a3a252f09aaa619665367bae518db06" @@ -681,6 +688,148 @@ enabled "2.0.x" kuler "^2.0.0" +"@deck.gl/aggregation-layers@8.9.32": + version "8.9.32" + resolved "https://registry.yarnpkg.com/@deck.gl/aggregation-layers/-/aggregation-layers-8.9.32.tgz#ebb633399bc169efd2541d113019f01720b52bdd" + integrity sha512-hNbQDmfFzSnoWGNic5bwaIXTGEORl3eKIJH/9/frWoUXr43ADGDP+QlIp68OOEXoJr/Ory15SzO+BWiD+aWNyw== + dependencies: + "@babel/runtime" "^7.0.0" + "@luma.gl/constants" "^8.5.21" + "@luma.gl/shadertools" "^8.5.21" + "@math.gl/web-mercator" "^3.6.2" + d3-hexbin "^0.2.1" + +"@deck.gl/carto@8.9.32": + version "8.9.32" + resolved "https://registry.yarnpkg.com/@deck.gl/carto/-/carto-8.9.32.tgz#ffd57e392c036c8bbcdff24b07a19dab516d8fb1" + integrity sha512-eMM6wnTLMjg/2lOKlCpNx7vua/RsBXY7JZgsQ2QBeXQEx7yUUhdcEWO2ZyjhPArPpIh+suFsZMEYNWKcrf+xMQ== + dependencies: + "@babel/runtime" "^7.0.0" + "@loaders.gl/gis" "^3.4.13" + "@loaders.gl/loader-utils" "^3.4.13" + "@loaders.gl/mvt" "^3.4.13" + "@loaders.gl/tiles" "^3.4.13" + "@luma.gl/constants" "^8.5.21" + "@math.gl/web-mercator" "^3.6.2" + cartocolor "^4.0.2" + d3-array "^3.2.0" + d3-color "^3.1.0" + d3-format "^3.1.0" + d3-scale "^4.0.0" + h3-js "^3.7.0" + moment-timezone "^0.5.33" + pbf "^3.2.1" + quadbin "^0.1.9" + +"@deck.gl/core@8.9.32": + version "8.9.32" + resolved "https://registry.yarnpkg.com/@deck.gl/core/-/core-8.9.32.tgz#45285a662068b08ebf04bf4509597c97adb923b4" + integrity sha512-LQA2wPYxuWqZyxrlFZMsLOr3tBHdOFXMMVz4wBNATCyObbc9THly8FgW2N48tHT6OY2fM2N5wmbw9uRLsCg1kw== + dependencies: + "@babel/runtime" "^7.0.0" + "@loaders.gl/core" "^3.4.13" + "@loaders.gl/images" "^3.4.13" + "@luma.gl/constants" "^8.5.21" + "@luma.gl/core" "^8.5.21" + "@luma.gl/webgl" "^8.5.21" + "@math.gl/core" "^3.6.2" + "@math.gl/sun" "^3.6.2" + "@math.gl/web-mercator" "^3.6.2" + "@probe.gl/env" "^3.5.0" + "@probe.gl/log" "^3.5.0" + "@probe.gl/stats" "^3.5.0" + gl-matrix "^3.0.0" + math.gl "^3.6.2" + mjolnir.js "^2.7.0" + +"@deck.gl/extensions@8.9.32": + version "8.9.32" + resolved "https://registry.yarnpkg.com/@deck.gl/extensions/-/extensions-8.9.32.tgz#34d64cb4b7374e1ae1960be2c559c8aa7d7814d4" + integrity sha512-v2ALtHRnIj8F4MA6jwDq+rqZIl/1gU2d+kA9+MgLMiO2GW4o+IcR8IuCfL/wXe2e10Wjhmc7LlhpVc13ljOWlw== + dependencies: + "@babel/runtime" "^7.0.0" + "@luma.gl/shadertools" "^8.5.21" + +"@deck.gl/geo-layers@8.9.32": + version "8.9.32" + resolved "https://registry.yarnpkg.com/@deck.gl/geo-layers/-/geo-layers-8.9.32.tgz#175863836c30d5b264ba9441dc2b19360553cc7d" + integrity sha512-yJe96Z47qhdvnkN0u2DkDIAS2SGBS9XxWWT06lQpRIJnJl8PXStcHK0rvcZgdfMBW8INtcAfF8LnkEhqzbWnAQ== + dependencies: + "@babel/runtime" "^7.0.0" + "@loaders.gl/3d-tiles" "^3.4.13" + "@loaders.gl/gis" "^3.4.13" + "@loaders.gl/loader-utils" "^3.4.13" + "@loaders.gl/mvt" "^3.4.13" + "@loaders.gl/schema" "^3.4.13" + "@loaders.gl/terrain" "^3.4.13" + "@loaders.gl/tiles" "^3.4.13" + "@loaders.gl/wms" "^3.4.13" + "@luma.gl/constants" "^8.5.21" + "@luma.gl/experimental" "^8.5.21" + "@math.gl/core" "^3.6.2" + "@math.gl/culling" "^3.6.2" + "@math.gl/web-mercator" "^3.6.2" + "@types/geojson" "^7946.0.8" + h3-js "^3.7.0" + long "^3.2.0" + +"@deck.gl/google-maps@8.9.32": + version "8.9.32" + resolved "https://registry.yarnpkg.com/@deck.gl/google-maps/-/google-maps-8.9.32.tgz#40432e7105873d5ef5f1239575e2d011e8f00358" + integrity sha512-vJkXyoAoeLG2MBE+U78YAak3ZJvkb76NVu9wMS75ujkRZTYnbMQbceOaWEs+F39rJtGVdXc4Cjfd23Y9r5hGiw== + dependencies: + "@babel/runtime" "^7.0.0" + +"@deck.gl/json@8.9.32": + version "8.9.32" + resolved "https://registry.yarnpkg.com/@deck.gl/json/-/json-8.9.32.tgz#d1293656f8e0fdf46168c0a4e4c00e00e495e5bd" + integrity sha512-XZjneBNuXuMZdU0mgpT4+h7TD9L8zjw6MUvCH5SL+29AMpUf7x9b8Dia+YSspOyOGSii6eFFTqSKUAscYP4TNA== + dependencies: + "@babel/runtime" "^7.0.0" + d3-dsv "^1.0.8" + expression-eval "^2.0.0" + +"@deck.gl/layers@8.9.32": + version "8.9.32" + resolved "https://registry.yarnpkg.com/@deck.gl/layers/-/layers-8.9.32.tgz#0c0b1909e7aba52ab156766c57f93c6d3d6af771" + integrity sha512-UuUBbRvBnL42pG70YY12YLspl6t/OacP4f/E3Ty0lliXe0m/5jJFW+moubsz3goBV0adMI+CQf57cdlqlfQ4AQ== + dependencies: + "@babel/runtime" "^7.0.0" + "@loaders.gl/images" "^3.4.13" + "@loaders.gl/schema" "^3.4.13" + "@luma.gl/constants" "^8.5.21" + "@mapbox/tiny-sdf" "^2.0.5" + "@math.gl/core" "^3.6.2" + "@math.gl/polygon" "^3.6.2" + "@math.gl/web-mercator" "^3.6.2" + earcut "^2.2.4" + +"@deck.gl/mapbox@8.9.32": + version "8.9.32" + resolved "https://registry.yarnpkg.com/@deck.gl/mapbox/-/mapbox-8.9.32.tgz#76dd5ac80aefe7e8b7964d2ed9b6079fcc1f1ac4" + integrity sha512-SFUiHIHnonEloiz4702oO4t91nqhgV7fcrYtu5RPY5Jvq1DsXo2xEU+E9QpNZLtoB8doS56RdS6eCSZV5LtVOA== + dependencies: + "@babel/runtime" "^7.0.0" + "@types/mapbox-gl" "^2.6.3" + +"@deck.gl/mesh-layers@8.9.32": + version "8.9.32" + resolved "https://registry.yarnpkg.com/@deck.gl/mesh-layers/-/mesh-layers-8.9.32.tgz#51fa85c469b61116c3cb64c6d39c999d6bba5e25" + integrity sha512-6bsy54PrBHjZriEe3Rf1iBVAI8Afy3L1qAXqKemxYaH56rc5EYlrmD0E/zKcACikIRFmE7bgQz/i6hlSt7dBHg== + dependencies: + "@babel/runtime" "^7.0.0" + "@loaders.gl/gltf" "^3.4.13" + "@luma.gl/constants" "^8.5.21" + "@luma.gl/experimental" "^8.5.21" + "@luma.gl/shadertools" "^8.5.21" + +"@deck.gl/react@8.9.32", "@deck.gl/react@^8.9.32": + version "8.9.32" + resolved "https://registry.yarnpkg.com/@deck.gl/react/-/react-8.9.32.tgz#9111801def2ad28c90292fbbbdea3de65288891a" + integrity sha512-FGBry/W8lCokSarKXhK7iWwdAG1cjJwEwlAv6nI/rmG28e7uElyVvOsMzzoIEFrQTovN4Xzs4RZrxliFk8CaWg== + dependencies: + "@babel/runtime" "^7.0.0" + "@emotion/babel-plugin@^11.10.5": version "11.10.5" resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.10.5.tgz#65fa6e1790ddc9e23cc22658a4c5dea423c55c3c" @@ -1234,6 +1383,244 @@ "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" +"@loaders.gl/3d-tiles@^3.4.13": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/3d-tiles/-/3d-tiles-3.4.14.tgz#c04781acf377e13c16b41eeaa14e46dfc96c90ca" + integrity sha512-cxStTSLIJgRZnkTBYTcp9FPVBQWQlJMzW1LRlaKWiwAHkOKBElszzApIIEvRvZGSrs8k8TUi6BJ1Y41iiANF7w== + dependencies: + "@loaders.gl/draco" "3.4.14" + "@loaders.gl/gltf" "3.4.14" + "@loaders.gl/loader-utils" "3.4.14" + "@loaders.gl/math" "3.4.14" + "@loaders.gl/tiles" "3.4.14" + "@math.gl/core" "^3.5.1" + "@math.gl/geospatial" "^3.5.1" + long "^5.2.1" + +"@loaders.gl/core@^3.4.13": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/core/-/core-3.4.14.tgz#79e5c54112f5bfe398da1718dc4fb661ffa213fd" + integrity sha512-5PFcjv7xC8AYL17juDMrvo8n0Fcwg9s8F4BaM2YCNUsb9RCI2SmLuIFJMcx1GgHO5vL0WiTIKO+JT4n1FuNR6w== + dependencies: + "@babel/runtime" "^7.3.1" + "@loaders.gl/loader-utils" "3.4.14" + "@loaders.gl/worker-utils" "3.4.14" + "@probe.gl/log" "^4.0.1" + +"@loaders.gl/draco@3.4.14": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/draco/-/draco-3.4.14.tgz#8555d9179db334faaded00d2902c318478a93b07" + integrity sha512-HwNFFt+dKZqFtzI0uVGvRkudFEZXxybJ+ZRsNkBbzAWoMM5L1TpuLs6DPsqPQUIT9HXNHzov18cZI0gK5bTJpg== + dependencies: + "@babel/runtime" "^7.3.1" + "@loaders.gl/loader-utils" "3.4.14" + "@loaders.gl/schema" "3.4.14" + "@loaders.gl/worker-utils" "3.4.14" + draco3d "1.5.5" + +"@loaders.gl/gis@3.4.14", "@loaders.gl/gis@^3.4.13": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/gis/-/gis-3.4.14.tgz#a9b3eed45e2a4465a754e3404061222c51b1334a" + integrity sha512-5cmhIwioPpSkfNzFRM3PbFDecjpYIhtEOFbryu3rE37npKHLTD2tF4ocQxUPB+QVED6GLwWBdzJIs64UWGrqjw== + dependencies: + "@loaders.gl/loader-utils" "3.4.14" + "@loaders.gl/schema" "3.4.14" + "@mapbox/vector-tile" "^1.3.1" + "@math.gl/polygon" "^3.5.1" + pbf "^3.2.1" + +"@loaders.gl/gltf@3.4.14", "@loaders.gl/gltf@^3.4.13": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/gltf/-/gltf-3.4.14.tgz#8677d6793cf0827dee52711e55fbdc445e9f9bb8" + integrity sha512-jv+B5S/taiwzXAOu5D9nk1jjU9+JCCr/6/nGguCE2Ya3IX7CI1Nlnp20eKKhW8ZCEokZavMNT0bNbiJ5ahEFjA== + dependencies: + "@loaders.gl/draco" "3.4.14" + "@loaders.gl/images" "3.4.14" + "@loaders.gl/loader-utils" "3.4.14" + "@loaders.gl/textures" "3.4.14" + "@math.gl/core" "^3.5.1" + +"@loaders.gl/images@3.4.14", "@loaders.gl/images@^3.4.13": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/images/-/images-3.4.14.tgz#d7a4950f11b48d028cf3719cf6498945f4a05c14" + integrity sha512-tL447hTWhOKBOB87SE4hvlC8OkbRT0mEaW1a/wIS9f4HnYDa/ycRLMV+nvdvYMZur4isNPam44oiRqi7GcILkg== + dependencies: + "@loaders.gl/loader-utils" "3.4.14" + +"@loaders.gl/loader-utils@3.4.14", "@loaders.gl/loader-utils@^3.4.13": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/loader-utils/-/loader-utils-3.4.14.tgz#d94decc279fd2304b8762c87d8d9626058d91f21" + integrity sha512-HCTY2/F83RLbZWcTvWLVJ1vke3dl6Bye20HU1AqkA37J2vzHwOZ8kj6eee8eeSkIkf7VIFwjyhVJxe0flQE/Bw== + dependencies: + "@babel/runtime" "^7.3.1" + "@loaders.gl/worker-utils" "3.4.14" + "@probe.gl/stats" "^4.0.1" + +"@loaders.gl/math@3.4.14": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/math/-/math-3.4.14.tgz#c27993f0dbe5a88f3ffa07e5240ce27ea5e92392" + integrity sha512-OBEVX6Q5pMipbCAiZyX2+q1zRd0nw8M2dclpny05on8700OaKMwfs47wEUnbfCU3iyHad3sgsAxN3EIh+kuo9Q== + dependencies: + "@loaders.gl/images" "3.4.14" + "@loaders.gl/loader-utils" "3.4.14" + "@math.gl/core" "^3.5.1" + +"@loaders.gl/mvt@^3.4.13": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/mvt/-/mvt-3.4.14.tgz#fee16db321301e94b329c6be9db9420db0be17c8" + integrity sha512-tozGmWvsJacjaLavjX4S/5yNDV9S4wJb7+vPG/nXWX2gTtgZ1mxcFQAtAJjokqpy37d1ZhLt+TXh0HrLoTmRgw== + dependencies: + "@loaders.gl/gis" "3.4.14" + "@loaders.gl/loader-utils" "3.4.14" + "@loaders.gl/schema" "3.4.14" + "@math.gl/polygon" "^3.5.1" + pbf "^3.2.1" + +"@loaders.gl/schema@3.4.14", "@loaders.gl/schema@^3.4.13": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/schema/-/schema-3.4.14.tgz#6f145065a2abaf402aa419cfa25ec7f1fdeed487" + integrity sha512-r6BEDfUvbvzgUnh/MtkR5RzrkIwo1x1jtPFRTSJVsIZO7arXXlu3blffuv5ppEkKpNZ1Xzd9WtHp/JIkuctsmw== + dependencies: + "@types/geojson" "^7946.0.7" + +"@loaders.gl/terrain@^3.4.13": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/terrain/-/terrain-3.4.14.tgz#8cd469b356b94c0d31ffc987c9166ccd33fe1d86" + integrity sha512-vhchEVkPaWXnqd2ofujG2AEnBsk4hEw6LWSaFY7E3VMzNhI9l2EHvyU3+Hs03jYbXM4oLlQPGqd/T7x+5IMtig== + dependencies: + "@babel/runtime" "^7.3.1" + "@loaders.gl/images" "3.4.14" + "@loaders.gl/loader-utils" "3.4.14" + "@loaders.gl/schema" "3.4.14" + "@mapbox/martini" "^0.2.0" + +"@loaders.gl/textures@3.4.14": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/textures/-/textures-3.4.14.tgz#a229ff70592b7a90af96fdd361cda48b9c95bec9" + integrity sha512-iKDHL2ZlOUud4/e3g0p0SyvkukznopYy6La3O6I9vDfKp8peuKMRRcTfFfd/zH0OqQC0hIhCXNz46vRLu7h6ng== + dependencies: + "@loaders.gl/images" "3.4.14" + "@loaders.gl/loader-utils" "3.4.14" + "@loaders.gl/schema" "3.4.14" + "@loaders.gl/worker-utils" "3.4.14" + ktx-parse "^0.0.4" + texture-compressor "^1.0.2" + +"@loaders.gl/tiles@3.4.14", "@loaders.gl/tiles@^3.4.13": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/tiles/-/tiles-3.4.14.tgz#8513426ae4965a9c6200f9d61902ce7af4f276cf" + integrity sha512-an3scxl65r74LW4WoIGgluBmQpMY9eb381y9mZmREphTP6bWEj96fL/tiR+G6TiE6HJqTv8O3PH6xwI9OQmEJg== + dependencies: + "@loaders.gl/loader-utils" "3.4.14" + "@loaders.gl/math" "3.4.14" + "@math.gl/core" "^3.5.1" + "@math.gl/culling" "^3.5.1" + "@math.gl/geospatial" "^3.5.1" + "@math.gl/web-mercator" "^3.5.1" + "@probe.gl/stats" "^4.0.1" + +"@loaders.gl/wms@^3.4.13": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/wms/-/wms-3.4.14.tgz#1bfde56078409fb41a749c1ef9e22a870fa59e3e" + integrity sha512-D1pObPSUj885zGPyHIb7GtcwpHQNk0T8nK/4EHb0SHLe0y1b4qwqSOswdS9geXT9Q61hyhl/L0zqyTgwjiMStg== + dependencies: + "@babel/runtime" "^7.3.1" + "@loaders.gl/images" "3.4.14" + "@loaders.gl/loader-utils" "3.4.14" + "@loaders.gl/schema" "3.4.14" + "@loaders.gl/xml" "3.4.14" + "@turf/rewind" "^5.1.5" + deep-strict-equal "^0.2.0" + lerc "^4.0.1" + +"@loaders.gl/worker-utils@3.4.14": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/worker-utils/-/worker-utils-3.4.14.tgz#5391a416a3d60e03b9edcedb285af44312d40d2e" + integrity sha512-PUSwxoAYbskisXd0KfYEQ902b0igBA2UAWdP6PzPvY+tJmobfh74dTNwrrBQ1rGXQxxmGx6zc6/ksX6mlIzIrg== + dependencies: + "@babel/runtime" "^7.3.1" + +"@loaders.gl/xml@3.4.14": + version "3.4.14" + resolved "https://registry.yarnpkg.com/@loaders.gl/xml/-/xml-3.4.14.tgz#8bfdbed0440cabdc891f152c80b05128cb019d24" + integrity sha512-SNMGOHz4p8Cw+M6kxXhFEjXdNddJPOZY1rzNmRq7NYdGQlQYYeJdqV5HWzHx9BkoQYyrDXkrweGN0mY9QxCfeA== + dependencies: + "@babel/runtime" "^7.3.1" + "@loaders.gl/loader-utils" "3.4.14" + "@loaders.gl/schema" "3.4.14" + fast-xml-parser "^4.2.5" + +"@luma.gl/constants@8.5.21", "@luma.gl/constants@^8.5.21": + version "8.5.21" + resolved "https://registry.yarnpkg.com/@luma.gl/constants/-/constants-8.5.21.tgz#81825e9bd9bdf4a9449bcface8b504389f65f634" + integrity sha512-aJxayGxTT+IRd1vfpcgD/cKSCiVJjBNiuiChS96VulrmCvkzUOLvYXr42y5qKB4RyR7vOIda5uQprNzoHrhQAA== + +"@luma.gl/core@^8.5.21": + version "8.5.21" + resolved "https://registry.yarnpkg.com/@luma.gl/core/-/core-8.5.21.tgz#dc630f1ea18900287ac8da60724d0d8f783b31b1" + integrity sha512-11jQJQEMoR/IN2oIsd4zFxiQJk6FE+xgVIMUcsCTBuzafTtQZ8Po9df8mt+MVewpDyBlTVs6g8nxHRH4np1ukA== + dependencies: + "@babel/runtime" "^7.0.0" + "@luma.gl/constants" "8.5.21" + "@luma.gl/engine" "8.5.21" + "@luma.gl/gltools" "8.5.21" + "@luma.gl/shadertools" "8.5.21" + "@luma.gl/webgl" "8.5.21" + +"@luma.gl/engine@8.5.21": + version "8.5.21" + resolved "https://registry.yarnpkg.com/@luma.gl/engine/-/engine-8.5.21.tgz#bc8e55371fb95e33fec195c08abf35598c55da42" + integrity sha512-IG3WQSKXFNUEs8QG7ZjHtGiOtsakUu+BAxtJ6997A6/F06yynZ44tPe5NU70jG9Yfu3kV0LykPZg7hO3vXZDiA== + dependencies: + "@babel/runtime" "^7.0.0" + "@luma.gl/constants" "8.5.21" + "@luma.gl/gltools" "8.5.21" + "@luma.gl/shadertools" "8.5.21" + "@luma.gl/webgl" "8.5.21" + "@math.gl/core" "^3.5.0" + "@probe.gl/env" "^3.5.0" + "@probe.gl/stats" "^3.5.0" + "@types/offscreencanvas" "^2019.7.0" + +"@luma.gl/experimental@^8.5.21": + version "8.5.21" + resolved "https://registry.yarnpkg.com/@luma.gl/experimental/-/experimental-8.5.21.tgz#1ab5ad084202ae3c05e16b7e4b430c791f86a50d" + integrity sha512-uFKPChGofyihOKxtqJy78QCQCDFnuMTK4QHrUX/qiTnvFSO8BgtTUevKvWGN9lBvq+uDD0lSieeF9yBzhQfAzw== + dependencies: + "@luma.gl/constants" "8.5.21" + "@math.gl/core" "^3.5.0" + earcut "^2.0.6" + +"@luma.gl/gltools@8.5.21": + version "8.5.21" + resolved "https://registry.yarnpkg.com/@luma.gl/gltools/-/gltools-8.5.21.tgz#1077305a30712f20cd904c2e4cbe5b9263b7d138" + integrity sha512-6qZ0LaT2Mxa4AJT5F44TFoaziokYiHUwO45vnM/NYUOIu9xevcmS6VtToawytMEACGL6PDeDyVqP3Y80SDzq5g== + dependencies: + "@babel/runtime" "^7.0.0" + "@luma.gl/constants" "8.5.21" + "@probe.gl/env" "^3.5.0" + "@probe.gl/log" "^3.5.0" + "@types/offscreencanvas" "^2019.7.0" + +"@luma.gl/shadertools@8.5.21", "@luma.gl/shadertools@^8.5.21": + version "8.5.21" + resolved "https://registry.yarnpkg.com/@luma.gl/shadertools/-/shadertools-8.5.21.tgz#9a8e087e39e34f055f9fdda9fac527c04f637b4e" + integrity sha512-WQah7yFDJ8cNCLPYpIm3r0wSlXLvjoA279fcknmATvvkW3/i8PcCJ/nYEBJO3hHEwwMQxD16+YZu/uwGiifLMg== + dependencies: + "@babel/runtime" "^7.0.0" + "@math.gl/core" "^3.5.0" + +"@luma.gl/webgl@8.5.21", "@luma.gl/webgl@^8.5.21": + version "8.5.21" + resolved "https://registry.yarnpkg.com/@luma.gl/webgl/-/webgl-8.5.21.tgz#fe67bf19a41231840ca677ae702969c7a9a5d7a0" + integrity sha512-ZVLO4W5UuaOlzZIwmFWhnmZ1gYoU97a+heMqxLrSSmCUAsSu3ZETUex9gOmzdM1WWxcdWaa3M68rvKCNEgwz0Q== + dependencies: + "@babel/runtime" "^7.0.0" + "@luma.gl/constants" "8.5.21" + "@luma.gl/gltools" "8.5.21" + "@probe.gl/env" "^3.5.0" + "@probe.gl/stats" "^3.5.0" + "@mapbox/extent@0.4.0": version "0.4.0" resolved "https://registry.yarnpkg.com/@mapbox/extent/-/extent-0.4.0.tgz#3e591f32e1f0c3981c864239f7b0ac06e610f8a9" @@ -1313,6 +1700,11 @@ resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-2.0.0.tgz#bb133cd91e562c006713fbc83f21e4b6f711a388" integrity sha512-zu4udqYiBrKMQKwpKJ4hhPON7tz0QR/JZ3iGpHnNWFmH3Sv/ysxlICATUtGCFpsyJf2v1WpFhlzaZ3GhhKmPMA== +"@mapbox/martini@^0.2.0": + version "0.2.0" + resolved "https://registry.yarnpkg.com/@mapbox/martini/-/martini-0.2.0.tgz#1af70211fbe994abf26e37f1388ca69c02cd43b4" + integrity sha512-7hFhtkb0KTLEls+TRw/rWayq5EeHtTaErgm/NskVoXmtgAQu/9D299aeyj6mzAR/6XUnYRp2lU+4IcrYRFjVsQ== + "@mapbox/point-geometry@0.1.0", "@mapbox/point-geometry@^0.1.0", "@mapbox/point-geometry@~0.1.0": version "0.1.0" resolved "https://registry.yarnpkg.com/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz#8a83f9335c7860effa2eeeca254332aa0aeed8f2" @@ -1325,11 +1717,23 @@ dependencies: meow "^6.1.1" +"@mapbox/tile-cover@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@mapbox/tile-cover/-/tile-cover-3.0.1.tgz#ad0dbe69d02e4e9ff74bf228b3ee8fa533034210" + integrity sha512-R8aoFY/87HWBOL9E2eBqzOY2lpfWYXCcTNgBpIxAv67rqQeD4IfnHD0iPXg/Z1cqXrklegEYZCp/7ZR/RsWqBQ== + dependencies: + tilebelt "^1.0.1" + "@mapbox/tiny-sdf@^1.2.5": version "1.2.5" resolved "https://registry.yarnpkg.com/@mapbox/tiny-sdf/-/tiny-sdf-1.2.5.tgz#424c620a96442b20402552be70a7f62a8407cc59" integrity sha512-cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw== +"@mapbox/tiny-sdf@^2.0.5": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz#9a1d33e5018093e88f6a4df2343e886056287282" + integrity sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA== + "@mapbox/unitbezier@^0.0.0": version "0.0.0" resolved "https://registry.yarnpkg.com/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz#15651bd553a67b8581fb398810c98ad86a34524e" @@ -1347,6 +1751,60 @@ resolved "https://registry.yarnpkg.com/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz#497c67a1cef50d1a2459ba60f315e448d2ad87fe" integrity sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q== +"@math.gl/core@3.6.3", "@math.gl/core@^3.5.0", "@math.gl/core@^3.5.1", "@math.gl/core@^3.6.2": + version "3.6.3" + resolved "https://registry.yarnpkg.com/@math.gl/core/-/core-3.6.3.tgz#a6bf796ed421093099749d609de8d99a3ac20a53" + integrity sha512-jBABmDkj5uuuE0dTDmwwss7Cup5ZwQ6Qb7h1pgvtkEutTrhkcv8SuItQNXmF45494yIHeoGue08NlyeY6wxq2A== + dependencies: + "@babel/runtime" "^7.12.0" + "@math.gl/types" "3.6.3" + gl-matrix "^3.4.0" + +"@math.gl/culling@^3.5.1", "@math.gl/culling@^3.6.2": + version "3.6.3" + resolved "https://registry.yarnpkg.com/@math.gl/culling/-/culling-3.6.3.tgz#91cdfa496748e8873a2e6261415a27a27b6af5f2" + integrity sha512-3UERXHbaPlM6pnTk2MI7LeQ5CoelDZzDzghTTcv+HdQCZsT/EOEuEdYimETHtSxiyiOmsX2Un65UBLYT/rbKZg== + dependencies: + "@babel/runtime" "^7.12.0" + "@math.gl/core" "3.6.3" + gl-matrix "^3.4.0" + +"@math.gl/geospatial@^3.5.1": + version "3.6.3" + resolved "https://registry.yarnpkg.com/@math.gl/geospatial/-/geospatial-3.6.3.tgz#011ebbe8d1660ff79020a81ed218886c353a62e1" + integrity sha512-6xf657lJnaecSarSzn02t0cnsCSkWb+39m4+im96v20dZTrLCWZ2glDQVzfuL91meDnDXjH4oyvynp12Mj5MFg== + dependencies: + "@babel/runtime" "^7.12.0" + "@math.gl/core" "3.6.3" + gl-matrix "^3.4.0" + +"@math.gl/polygon@^3.5.1", "@math.gl/polygon@^3.6.2": + version "3.6.3" + resolved "https://registry.yarnpkg.com/@math.gl/polygon/-/polygon-3.6.3.tgz#0c19c0b059cedde1cd760cc3796e9180f75bcbde" + integrity sha512-FivQ1ZnYcAss1wVifOkHP/ZnlfQy1IL/769uzNtiHxwUbW0kZG3yyOZ9I7fwyzR5Hvqt3ErJKHjSYZr0uVlz5g== + dependencies: + "@math.gl/core" "3.6.3" + +"@math.gl/sun@^3.6.2": + version "3.6.3" + resolved "https://registry.yarnpkg.com/@math.gl/sun/-/sun-3.6.3.tgz#30c15612313b56349c568f21f39c0e0f0e77b2df" + integrity sha512-mrx6CGYYeTNSQttvcw0KVUy+35YDmnjMqpO/o0t06Vcghrt0HNruB/ScRgUSbJrgkbOg1Vcqm23HBd++clzQzw== + dependencies: + "@babel/runtime" "^7.12.0" + +"@math.gl/types@3.6.3": + version "3.6.3" + resolved "https://registry.yarnpkg.com/@math.gl/types/-/types-3.6.3.tgz#9fa9866feabcbb76de107d78ff3a89c0243ac374" + integrity sha512-3uWLVXHY3jQxsXCr/UCNPSc2BG0hNUljhmOBt9l+lNFDp7zHgm0cK2Tw4kj2XfkJy4TgwZTBGwRDQgWEbLbdTA== + +"@math.gl/web-mercator@^3.5.1", "@math.gl/web-mercator@^3.6.2": + version "3.6.3" + resolved "https://registry.yarnpkg.com/@math.gl/web-mercator/-/web-mercator-3.6.3.tgz#ef91168e030eecffc788618d686e8a6c1d7a0bf8" + integrity sha512-UVrkSOs02YLehKaehrxhAejYMurehIHPfFQvPFZmdJHglHOU4V2cCUApTVEwOksvCp161ypEqVp+9H6mGhTTcw== + dependencies: + "@babel/runtime" "^7.12.0" + gl-matrix "^3.4.0" + "@messageformat/core@^3.0.1": version "3.0.1" resolved "https://registry.yarnpkg.com/@messageformat/core/-/core-3.0.1.tgz#191e12cf9643704d1fd32e592a3fbdc194dd588e" @@ -1611,6 +2069,50 @@ typescript "^4.5.4" vue-eslint-parser "^8.0.1" +"@probe.gl/env@3.6.0", "@probe.gl/env@^3.5.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@probe.gl/env/-/env-3.6.0.tgz#33343fd9041a14d21374c1911826d4a2f9d9a35d" + integrity sha512-4tTZYUg/8BICC3Yyb9rOeoKeijKbZHRXBEKObrfPmX4sQmYB15ZOUpoVBhAyJkOYVAM8EkPci6Uw5dLCwx2BEQ== + dependencies: + "@babel/runtime" "^7.0.0" + +"@probe.gl/env@4.0.4": + version "4.0.4" + resolved "https://registry.yarnpkg.com/@probe.gl/env/-/env-4.0.4.tgz#ea4e7d16f143faaf1e863316c6ccfe68db8b66a4" + integrity sha512-sYNGqesDfWD6dFP5oNZtTeFA4Z6ak5T4a8BNPdNhoqy7PK9w70JHrb6mv+RKWqKXq33KiwCDWL7fYxx2HuEH2w== + dependencies: + "@babel/runtime" "^7.0.0" + +"@probe.gl/log@^3.5.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@probe.gl/log/-/log-3.6.0.tgz#c645bfd22b4769dc65161caa17f13bd2b231e413" + integrity sha512-hjpyenpEvOdowgZ1qMeCJxfRD4JkKdlXz0RC14m42Un62NtOT+GpWyKA4LssT0+xyLULCByRAtG2fzZorpIAcA== + dependencies: + "@babel/runtime" "^7.0.0" + "@probe.gl/env" "3.6.0" + +"@probe.gl/log@^4.0.1": + version "4.0.4" + resolved "https://registry.yarnpkg.com/@probe.gl/log/-/log-4.0.4.tgz#e42d1d0e22981c4010521c350cad2305bce02976" + integrity sha512-WpmXl6njlBMwrm8HBh/b4kSp/xnY1VVmeT4PWUKF+RkVbFuKQbsU11dA1IxoMd7gSY+5DGIwxGfAv1H5OMzA4A== + dependencies: + "@babel/runtime" "^7.0.0" + "@probe.gl/env" "4.0.4" + +"@probe.gl/stats@^3.5.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@probe.gl/stats/-/stats-3.6.0.tgz#a1bb12860fa6f40b9c028f9eb575d7ada0b4dbdd" + integrity sha512-JdALQXB44OP4kUBN/UrQgzbJe4qokbVF4Y8lkIA8iVCFnjVowWIgkD/z/0QO65yELT54tTrtepw1jScjKB+rhQ== + dependencies: + "@babel/runtime" "^7.0.0" + +"@probe.gl/stats@^4.0.1": + version "4.0.4" + resolved "https://registry.yarnpkg.com/@probe.gl/stats/-/stats-4.0.4.tgz#b33a47bf192951d0789dfd2044b295c3709386bd" + integrity sha512-SDuSY/D4yDL6LQDa69l/GCcnZLRiGYdyvYkxWb0CgnzTPdPrcdrzGkzkvpC3zsA4fEFw2smlDje370QGHwlisg== + dependencies: + "@babel/runtime" "^7.0.0" + "@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": version "1.1.2" resolved "https://registry.yarnpkg.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" @@ -1810,6 +2312,14 @@ "@turf/helpers" "^6.3.0" "@turf/invariant" "^6.3.0" +"@turf/boolean-clockwise@^5.1.5": + version "5.1.5" + resolved "https://registry.yarnpkg.com/@turf/boolean-clockwise/-/boolean-clockwise-5.1.5.tgz#3302b7dac62c5e291a0789e29af7283387fa9deb" + integrity sha512-FqbmEEOJ4rU4/2t7FKx0HUWmjFEVqR+NJrFP7ymGSjja2SQ7Q91nnBihGuT+yuHHl6ElMjQ3ttsB/eTmyCycxA== + dependencies: + "@turf/helpers" "^5.1.5" + "@turf/invariant" "^5.1.5" + "@turf/boolean-clockwise@^6.3.0": version "6.3.0" resolved "https://registry.yarnpkg.com/@turf/boolean-clockwise/-/boolean-clockwise-6.3.0.tgz#78652068d138ab8b12fa7c1250f15e0cdeb14d1d" @@ -2619,6 +3129,17 @@ "@turf/distance" "^6.3.0" "@turf/helpers" "^6.3.0" +"@turf/rewind@^5.1.5": + version "5.1.5" + resolved "https://registry.yarnpkg.com/@turf/rewind/-/rewind-5.1.5.tgz#9ea3db4a68b73c1fd1dd11f57631b143cfefa1c9" + integrity sha512-Gdem7JXNu+G4hMllQHXRFRihJl3+pNl7qY+l4qhQFxq+hiU1cQoVFnyoleIqWKIrdK/i2YubaSwc3SCM7N5mMw== + dependencies: + "@turf/boolean-clockwise" "^5.1.5" + "@turf/clone" "^5.1.5" + "@turf/helpers" "^5.1.5" + "@turf/invariant" "^5.1.5" + "@turf/meta" "^5.1.5" + "@turf/rewind@^6.3.0": version "6.3.0" resolved "https://registry.yarnpkg.com/@turf/rewind/-/rewind-6.3.0.tgz#f52fcbad79c0e932965a2346f5e6d3dda22aac5f" @@ -3193,6 +3714,11 @@ resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.10.tgz#6dfbf5ea17142f7f9a043809f1cd4c448cb68249" integrity sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA== +"@types/geojson@^7946.0.8": + version "7946.0.13" + resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.13.tgz#e6e77ea9ecf36564980a861e24e62a095988775e" + integrity sha512-bmrNrgKMOhM3WsafmbGmC+6dsF2Z308vLFsQ3a/bT8X8Sv5clVYpPars/UPq+sAaJP+5OoLAYgwbkS5QEJdLUQ== + "@types/geokdbush@^1.1.2": version "1.1.2" resolved "https://registry.yarnpkg.com/@types/geokdbush/-/geokdbush-1.1.2.tgz#143b9e891f83259b54d1885691e77ebfda3f8e2f" @@ -3215,6 +3741,11 @@ dependencies: "@types/node" "*" +"@types/hammerjs@^2.0.41": + version "2.0.44" + resolved "https://registry.yarnpkg.com/@types/hammerjs/-/hammerjs-2.0.44.tgz#d90637ee049c4cf44cd8fa0072afca2124f947be" + integrity sha512-pdGBkAh4ggfXAkiwgmTdROJe3mwvLWJYm6JiaAwCtskAU0Weh+JQyyMTbhvxjxD2n8sr8PrxVwyDzmpnK4pUrQ== + "@types/hast@^2.0.0": version "2.3.4" resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.4.tgz#8aa5ef92c117d20d974a82bdfb6a648b08c0bafc" @@ -3389,6 +3920,13 @@ dependencies: "@types/geojson" "*" +"@types/mapbox-gl@^2.6.3": + version "2.7.18" + resolved "https://registry.yarnpkg.com/@types/mapbox-gl/-/mapbox-gl-2.7.18.tgz#6425ac6854b3a2161752a013f086955387613192" + integrity sha512-3Yq4v8IdigSs2oD70dRJuWY/6PoW9i6MyXOx8DvJNc6CuSXRMleVdNiFYa5E0w6tSCfL+b+cGau5Em09MIujtQ== + dependencies: + "@types/geojson" "*" + "@types/mdast@^3.0.0": version "3.0.3" resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.3.tgz#2d7d671b1cd1ea3deb306ea75036c2a0407d2deb" @@ -3438,6 +3976,11 @@ resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== +"@types/offscreencanvas@^2019.7.0": + version "2019.7.3" + resolved "https://registry.yarnpkg.com/@types/offscreencanvas/-/offscreencanvas-2019.7.3.tgz#90267db13f64d6e9ccb5ae3eac92786a7c77a516" + integrity sha512-ieXiYmgSRXUDeOntE1InxjWyvEelZGP63M+cGuquuRLuIKKT1osnkXjxev9B7d1nXSug5vpunx+gNlbVxMlC9A== + "@types/osmtogeojson@^2.2.29": version "2.2.29" resolved "https://registry.yarnpkg.com/@types/osmtogeojson/-/osmtogeojson-2.2.29.tgz#20f1af9febe7527752e8f8c9e0abc6205d24185f" @@ -4327,7 +4870,7 @@ aproba@^1.1.1: resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== -argparse@^1.0.7: +argparse@^1.0.10, argparse@^1.0.7: version "1.0.10" resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== @@ -4940,6 +5483,11 @@ bser@2.1.1: dependencies: node-int64 "^0.4.0" +buf-compare@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" + integrity sha512-Bvx4xH00qweepGc43xFvMs5BKASXTbHaHm6+kDYIK9p/4iFwjATQkmPKHQSgJZzKbAymhztRbXUf1Nqhzl73/Q== + buffer-equal-constant-time@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" @@ -5117,6 +5665,13 @@ capnp-ts@^0.4.0: tslib "^1.7.1" utf8-encoding "^0.1.2" +cartocolor@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/cartocolor/-/cartocolor-4.0.2.tgz#ef1aa12860f6eeedc8d2420e2b9d7337937c4993" + integrity sha512-+Gh9mb6lFxsDOLQlBLPxAHCnWXlg2W8q3AcVwqRcy95TdBbcOU89Wrb6h2Hd/6Ww1Kc1pzXmUdpnWD+xeCG0dg== + dependencies: + colorbrewer "1.0.0" + caseless@~0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" @@ -5454,6 +6009,11 @@ color@3.0.x: color-convert "^1.9.1" color-string "^1.5.2" +colorbrewer@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/colorbrewer/-/colorbrewer-1.0.0.tgz#4f97333b969ba7612382be4bc3394b341fb4c8a2" + integrity sha512-NZuIOVdErK/C6jDH3jWT/roxWJbJAinMiqEpbuWniKvQAoWdg6lGra3pPrSHvaIf8PlX8wLs/RAC6nULFJbgmg== + colorette@2.0.19: version "2.0.19" resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798" @@ -5697,6 +6257,14 @@ copyfiles@^2.4.1: untildify "^4.0.0" yargs "^16.1.0" +core-assert@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" + integrity sha512-IG97qShIP+nrJCXMCgkNZgH7jZQ4n8RpPyPeXX++T6avR/KhLhgLiHKoEn5Rc1KjfycSfA9DMa6m+4C4eguHhw== + dependencies: + buf-compare "^1.0.0" + is-error "^2.2.0" + core-js-pure@^3.0.0: version "3.6.5" resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.5.tgz#c79e75f5e38dbc85a662d91eea52b8256d53b813" @@ -5942,6 +6510,32 @@ d3-array@1: resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-1.2.4.tgz#635ce4d5eea759f6f605863dbcfc30edc737f71f" integrity sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw== +"d3-array@2 - 3", "d3-array@2.10.0 - 3", d3-array@^3.2.0: + version "3.2.4" + resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.4.tgz#15fec33b237f97ac5d7c986dc77da273a8ed0bb5" + integrity sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg== + dependencies: + internmap "1 - 2" + +"d3-color@1 - 3", d3-color@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-3.1.0.tgz#395b2833dfac71507f12ac2f7af23bf819de24e2" + integrity sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA== + +d3-dsv@^1.0.8: + version "1.2.0" + resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-1.2.0.tgz#9d5f75c3a5f8abd611f74d3f5847b0d4338b885c" + integrity sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g== + dependencies: + commander "2" + iconv-lite "0.4" + rw "1" + +"d3-format@1 - 3", d3-format@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.0.tgz#9260e23a28ea5cb109e93b21a06e24e2ebd55641" + integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA== + d3-geo@1.7.1: version "1.7.1" resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-1.7.1.tgz#44bbc7a218b1fd859f3d8fd7c443ca836569ce99" @@ -5949,6 +6543,43 @@ d3-geo@1.7.1: dependencies: d3-array "1" +d3-hexbin@^0.2.1: + version "0.2.2" + resolved "https://registry.yarnpkg.com/d3-hexbin/-/d3-hexbin-0.2.2.tgz#9c5837dacfd471ab05337a9e91ef10bfc4f98831" + integrity sha512-KS3fUT2ReD4RlGCjvCEm1RgMtp2NFZumdMu4DBzQK8AZv3fXRM6Xm8I4fSU07UXvH4xxg03NwWKWdvxfS/yc4w== + +"d3-interpolate@1.2.0 - 3": + version "3.0.1" + resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz#3c47aa5b32c5b3dfb56ef3fd4342078a632b400d" + integrity sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g== + dependencies: + d3-color "1 - 3" + +d3-scale@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-4.0.2.tgz#82b38e8e8ff7080764f8dcec77bd4be393689396" + integrity sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ== + dependencies: + d3-array "2.10.0 - 3" + d3-format "1 - 3" + d3-interpolate "1.2.0 - 3" + d3-time "2.1.1 - 3" + d3-time-format "2 - 4" + +"d3-time-format@2 - 4": + version "4.1.0" + resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a" + integrity sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg== + dependencies: + d3-time "1 - 3" + +"d3-time@1 - 3", "d3-time@2.1.1 - 3": + version "3.1.0" + resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-3.1.0.tgz#9310db56e992e3c0175e1ef385e545e48a9bb5c7" + integrity sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q== + dependencies: + d3-array "2 - 3" + d3-voronoi@1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/d3-voronoi/-/d3-voronoi-1.1.2.tgz#1687667e8f13a2d158c80c1480c5a29cb0d8973c" @@ -6030,6 +6661,24 @@ decimal.js@^10.2.1: resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ== +deck.gl@^8.9.32: + version "8.9.32" + resolved "https://registry.yarnpkg.com/deck.gl/-/deck.gl-8.9.32.tgz#bb9b6f99b987a542678693ee60c7424ba08943fe" + integrity sha512-3CL4oVbo5N1SXuSdFMqA2H2nT4KSzeYRqjuk0Wi6+POA+Yr6oaEHR7v/JaAz/7Vk4UQSpMLaPbApsEctmNUFUA== + dependencies: + "@babel/runtime" "^7.0.0" + "@deck.gl/aggregation-layers" "8.9.32" + "@deck.gl/carto" "8.9.32" + "@deck.gl/core" "8.9.32" + "@deck.gl/extensions" "8.9.32" + "@deck.gl/geo-layers" "8.9.32" + "@deck.gl/google-maps" "8.9.32" + "@deck.gl/json" "8.9.32" + "@deck.gl/layers" "8.9.32" + "@deck.gl/mapbox" "8.9.32" + "@deck.gl/mesh-layers" "8.9.32" + "@deck.gl/react" "8.9.32" + decode-uri-component@^0.2.0: version "0.2.2" resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" @@ -6057,6 +6706,13 @@ deep-is@^0.1.3, deep-is@~0.1.3: resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= +deep-strict-equal@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/deep-strict-equal/-/deep-strict-equal-0.2.0.tgz#4a078147a8ab57f6a0d4f5547243cd22f44eb4e4" + integrity sha512-3daSWyvZ/zwJvuMGlzG1O+Ow0YSadGfb3jsh9xoCutv2tWyB9dA4YvR9L9/fSdDZa2dByYQe+TqapSGUrjnkoA== + dependencies: + core-assert "^0.2.0" + deepmerge@^4.2.2: version "4.2.2" resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" @@ -6360,6 +7016,11 @@ dotenv@^8.2.0: resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== +draco3d@1.5.5: + version "1.5.5" + resolved "https://registry.yarnpkg.com/draco3d/-/draco3d-1.5.5.tgz#6bf4bbdd65950e6153e991cb0dcb8a10323f610e" + integrity sha512-JVuNV0EJzD3LBYhGyIXJLeBID/EVtmFO1ZNhAYflTgiMiAJlbhXQmRRda/azjc8MRVMHh0gqGhiqHUo5dIXM8Q== + duplexify@^3.4.2, duplexify@^3.6.0: version "3.7.1" resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" @@ -6375,6 +7036,11 @@ earcut@^2.0.0, earcut@^2.2.2: resolved "https://registry.yarnpkg.com/earcut/-/earcut-2.2.2.tgz#41b0bc35f63e0fe80da7cddff28511e7e2e80d11" integrity sha512-eZoZPPJcUHnfRZ0PjLvx2qBordSiO8ofC3vt+qACLM95u+4DovnbYNpQtJh0DNsWj8RnxrQytD4WA8gj5cRIaQ== +earcut@^2.0.6, earcut@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/earcut/-/earcut-2.2.4.tgz#6d02fd4d68160c114825d06890a92ecaae60343a" + integrity sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ== + ecc-jsbn@~0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" @@ -7129,6 +7795,13 @@ express@^4.19.2: utils-merge "1.0.1" vary "~1.1.2" +expression-eval@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/expression-eval/-/expression-eval-2.1.0.tgz#422915caa46140a7c5b5f248650dea8bf8236e62" + integrity sha512-FUJO/Akvl/JOWkvlqZaqbkhsEWlCJWDeZG4tzX96UH68D9FeRgYgtb55C2qtqbORC0Q6x5419EDjWu4IT9kQfg== + dependencies: + jsep "^0.3.0" + extend-shallow@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" @@ -7237,6 +7910,13 @@ fast-safe-stringify@^2.0.7: resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz#124aa885899261f68aedb42a7c080de9da608743" integrity sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA== +fast-xml-parser@^4.2.5: + version "4.3.2" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.3.2.tgz#761e641260706d6e13251c4ef8e3f5694d4b0d79" + integrity sha512-rmrXUXwbJedoXkStenj1kkljNF7ugn5ZjR9FJcwmCfcCbtOMDghPajbc+Tck6vE6F5XsDmx+Pr2le9fw8+pXBg== + dependencies: + strnum "^1.0.5" + fastq@^1.6.0: version "1.8.0" resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.8.0.tgz#550e1f9f59bbc65fe185cb6a9b4d95357107f481" @@ -7708,6 +8388,11 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" +gl-matrix@^3.0.0, gl-matrix@^3.4.0: + version "3.4.3" + resolved "https://registry.yarnpkg.com/gl-matrix/-/gl-matrix-3.4.3.tgz#fc1191e8320009fd4d20e9339595c6041ddc22c9" + integrity sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA== + gl-matrix@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/gl-matrix/-/gl-matrix-3.3.0.tgz#232eef60b1c8b30a28cbbe75b2caf6c48fd6358b" @@ -7870,6 +8555,16 @@ gud@^1.0.0: resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0" integrity sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw== +h3-js@^3.7.0: + version "3.7.2" + resolved "https://registry.yarnpkg.com/h3-js/-/h3-js-3.7.2.tgz#61d4feb7bb42868ca9cdb2d5cf9d9dda94f9e5a3" + integrity sha512-LPjlHSwB9zQZrMqKloCZmmmt3yZzIK7nqPcXqwU93zT3TtYG6jP4tZBzAPouxut7lLjdFbMQ75wRBiKfpsnY7w== + +hammerjs@^2.0.8: + version "2.0.8" + resolved "https://registry.yarnpkg.com/hammerjs/-/hammerjs-2.0.8.tgz#04ef77862cff2bb79d30f7692095930222bf60f1" + integrity sha512-tSQXBXS/MWQOn/RKckawJ61vvsDpCom87JgxiYdGwHdOa0ht0vzUWDlfioofFCRU0L+6NGDt6XzbgoJvZkMeRQ== + har-schema@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" @@ -8220,7 +8915,7 @@ i18next@^22.4.15: dependencies: "@babel/runtime" "^7.20.6" -iconv-lite@0.4.24, iconv-lite@^0.4.24: +iconv-lite@0.4, iconv-lite@0.4.24, iconv-lite@^0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== @@ -8261,6 +8956,11 @@ ignore@^5.2.0: resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.1.tgz#c2b1f76cb999ede1502f3a226a9310fdfe88d46c" integrity sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA== +image-size@^0.7.4: + version "0.7.5" + resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.7.5.tgz#269f357cf5797cb44683dfa99790e54c705ead04" + integrity sha512-Hiyv+mXHfFEP7LzUL/llg9RwFxxY+o9N3JVLIeG5E7iFIFAalxvRU9UZthBdYDEVnzHMgjnKJPPpay5BWf1g9g== + immediate@~3.0.5: version "3.0.6" resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b" @@ -8427,6 +9127,11 @@ internal-slot@^1.0.3: has "^1.0.3" side-channel "^1.0.4" +"internmap@1 - 2": + version "2.0.3" + resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009" + integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg== + interpret@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" @@ -8611,6 +9316,11 @@ is-descriptor@^1.0.0, is-descriptor@^1.0.2: is-data-descriptor "^1.0.0" kind-of "^6.0.2" +is-error@^2.2.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.2.tgz#c10ade187b3c93510c5470a5567833ee25649843" + integrity sha512-IOQqts/aHWbiisY5DuPJQ0gcbvaLFCa7fBa9xoLfxBZvQ+ZI/Zh9xoI7Gk+G64N0FdK4AbibytHht2tWgpJWLg== + is-extendable@^0.1.0, is-extendable@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" @@ -9478,6 +10188,11 @@ jsdom@^16.6.0: ws "^7.4.6" xml-name-validator "^3.0.0" +jsep@^0.3.0: + version "0.3.5" + resolved "https://registry.yarnpkg.com/jsep/-/jsep-0.3.5.tgz#3fd79ebd92f6f434e4857d5272aaeef7d948264d" + integrity sha512-AoRLBDc6JNnKjNcmonituEABS5bcfqDhQAWWXNTFrqu6nVXBpBAGfcoTGZMFlIrh9FjmE1CQyX9CTNwZrXMMDA== + jsesc@^2.5.1: version "2.5.2" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" @@ -9674,11 +10389,21 @@ knex@3, knex@^3.1.0: tarn "^3.0.2" tildify "2.0.0" +ktx-parse@^0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/ktx-parse/-/ktx-parse-0.0.4.tgz#6fd3eca82490de8a1e48cb8367a9980451fa1ac4" + integrity sha512-LY3nrmfXl+wZZdPxgJ3ZmLvG+wkOZZP3/dr4RbQj1Pk3Qwz44esOOSFFVQJcNWpXAtiNIC66WgXufX/SYgYz6A== + kuler@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/kuler/-/kuler-2.0.0.tgz#e2c570a3800388fb44407e851531c1d670b061b3" integrity sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A== +lerc@^4.0.1: + version "4.0.4" + resolved "https://registry.yarnpkg.com/lerc/-/lerc-4.0.4.tgz#1034f132104123c1d22469e382fb2c57a2bf8f84" + integrity sha512-nHZH+ffiGPkgKUQtiZrljGUGV2GddvPcVTV5E345ZFncbKz+/rBIjDPrSxkiqW0EAtg1Jw7qAgRdaCwV+95Fow== + leven@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" @@ -9869,6 +10594,11 @@ loglevel@^1.4.1: resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.1.tgz#005fde2f5e6e47068f935ff28573e125ef72f197" integrity sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw== +long@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/long/-/long-3.2.0.tgz#d821b7138ca1cb581c172990ef14db200b5c474b" + integrity sha512-ZYvPPOMqUwPoDsbJaR10iQJYnMuZhRTvHYl62ErLIEX7RgFlziSBUUvrt3OVfc47QlHHpzPZYP17g3Fv7oeJkg== + long@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" @@ -9879,6 +10609,11 @@ long@^5.0.0: resolved "https://registry.yarnpkg.com/long/-/long-5.2.1.tgz#e27595d0083d103d2fa2c20c7699f8e0c92b897f" integrity sha512-GKSNGeNAtw8IryjjkhZxuKB3JzlcLTwjtiQCHKvqQet81I93kXslhDQruGI/QsddO83mcDToBVy7GqGS/zYf/A== +long@^5.2.1: + version "5.2.3" + resolved "https://registry.yarnpkg.com/long/-/long-5.2.3.tgz#a3ba97f3877cf1d778eccbcb048525ebb77499e1" + integrity sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q== + longest-streak@^2.0.0: version "2.0.4" resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4" @@ -10011,6 +10746,13 @@ material-colors@^1.2.1: resolved "https://registry.yarnpkg.com/material-colors/-/material-colors-1.2.6.tgz#6d1958871126992ceecc72f4bcc4d8f010865f46" integrity sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg== +math.gl@^3.6.2: + version "3.6.3" + resolved "https://registry.yarnpkg.com/math.gl/-/math.gl-3.6.3.tgz#f87e0d24cb33c1a215185ae3a4e16839f1ce6db2" + integrity sha512-Yq9CyECvSDox9+5ETi2+x1bGTY5WvGUGL3rJfC4KPoCZAM51MGfrCm6rIn4yOJUVfMPs2a5RwMD+yGS/n1g3gg== + dependencies: + "@math.gl/core" "3.6.3" + md5.js@^1.3.4: version "1.3.5" resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" @@ -10442,6 +11184,14 @@ mixin-deep@^1.2.0: for-in "^1.0.2" is-extendable "^1.0.1" +mjolnir.js@^2.7.0: + version "2.7.1" + resolved "https://registry.yarnpkg.com/mjolnir.js/-/mjolnir.js-2.7.1.tgz#4e12590fe168b377c9c669b9c31aa5a62f8b8460" + integrity sha512-72BeUWgTv2cj5aZQKpwL8caNUFhXZ9bDm1hxpNj70XJQ62IBnTZmtv/WPxJvtaVNhzNo+D2U8O6ryNI0zImYcw== + dependencies: + "@types/hammerjs" "^2.0.41" + hammerjs "^2.0.8" + mkdirp@^0.5.1, mkdirp@^0.5.3: version "0.5.5" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" @@ -10476,6 +11226,13 @@ moment-business-days@^1.2.0: resolved "https://registry.yarnpkg.com/moment-business-days/-/moment-business-days-1.2.0.tgz#6172f9f38dbf443c2f859baabeabbd2935f63d65" integrity sha512-QJlceLfMSxy/jZSOgJYCKeKw+qGYHj8W0jMa/fYruyoJ85+bJuLRiYv5DIaflyuRipmYRfD4kDlSwVYteLN+Jw== +moment-timezone@^0.5.33: + version "0.5.43" + resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.43.tgz#3dd7f3d0c67f78c23cd1906b9b2137a09b3c4790" + integrity sha512-72j3aNyuIsDxdF1i7CEgV2FfxM1r6aaqJyLB2vwb33mXYyoyLly+F1zbWqhA3/bVIoJ4szlUoMbUnVdid32NUQ== + dependencies: + moment "^2.29.4" + moment@^2.29.4: version "2.29.4" resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108" @@ -12021,6 +12778,13 @@ qs@~6.5.2: resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad" integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA== +quadbin@^0.1.9: + version "0.1.9" + resolved "https://registry.yarnpkg.com/quadbin/-/quadbin-0.1.9.tgz#322bd5f8b63960ef0a31a8b69863b0a0ab0b2e22" + integrity sha512-5V6m6+cL/6+uBl3hYL+CWF06rRvlHkIepYKGQjTLYaHhu9InPppql0+0ROiCaOQdz8gPNlgge3glk5Qg1mWOYw== + dependencies: + "@mapbox/tile-cover" "3.0.1" + query-string@^4.1.0: version "4.3.4" resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" @@ -12984,7 +13748,7 @@ run-queue@^1.0.0, run-queue@^1.0.3: dependencies: aproba "^1.1.1" -rw@^1.3.3: +rw@1, rw@^1.3.3: version "1.3.3" resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q= @@ -13938,6 +14702,11 @@ strip-json-comments@^3.1.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== +strnum@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db" + integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA== + style-loader@^1.2.1: version "1.3.0" resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.3.0.tgz#828b4a3b3b7e7aa5847ce7bae9e874512114249e" @@ -14133,6 +14902,14 @@ text-table@^0.2.0: resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= +texture-compressor@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/texture-compressor/-/texture-compressor-1.0.2.tgz#b5a54a9e5f9eb884d7c33b149f1f23a429465cd4" + integrity sha512-dStVgoaQ11mA5htJ+RzZ51ZxIZqNOgWKAIvtjLrW1AliQQLCmrDqNzQZ8Jh91YealQ95DXt4MEduLzJmbs6lig== + dependencies: + argparse "^1.0.10" + image-size "^0.7.4" + throat@^4.0.0, throat@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" @@ -14166,6 +14943,11 @@ tildify@2.0.0: resolved "https://registry.yarnpkg.com/tildify/-/tildify-2.0.0.tgz#f205f3674d677ce698b7067a99e949ce03b4754a" integrity sha512-Cc+OraorugtXNfs50hU9KS369rFXCfgGLpfCfvlc+Ud5u6VWmUQsOAa9HbTvheQdYnrdJqqv1e5oIqXppMYnSw== +tilebelt@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tilebelt/-/tilebelt-1.0.1.tgz#3bbf7113b3fec468efb0d9148f4bb71ef126a21a" + integrity sha512-cxHzpa5JgsugY9NUVRH43gPaGJw/29LecAn4X7UGOP64+kB8pU4VQ3bIhSyfb5Mk4jDxwl3yk330L/EIhbJ5aw== + timers-browserify@^2.0.4: version "2.0.11" resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz#800b1f3eee272e5bc53ee465a04d0e804c31211f" From fdae15d031ca22f8f9ccb48ad11efcc704319868 Mon Sep 17 00:00:00 2001 From: davidmurray Date: Wed, 15 Nov 2023 11:12:16 -0500 Subject: [PATCH 03/23] Add MapLibre as the base map --- packages/transition-frontend/package.json | 2 + .../src/components/map/TransitionMainMap.tsx | 9 +- yarn.lock | 189 +++++++++++++++++- 3 files changed, 186 insertions(+), 14 deletions(-) diff --git a/packages/transition-frontend/package.json b/packages/transition-frontend/package.json index 21904918..9815bc37 100644 --- a/packages/transition-frontend/package.json +++ b/packages/transition-frontend/package.json @@ -44,6 +44,7 @@ "i18next": "^22.4.15", "lodash": "^4.17.21", "mapbox-gl": "chairemobilite/mapbox-gl-js#39bbf9aeb1859424e29cff2584715fddc9d018b9", + "maplibre-gl": "^3.6.1", "moment": "^2.29.4", "moment-business-days": "^1.2.0", "papaparse": "^5.3.0", @@ -54,6 +55,7 @@ "react-datepicker": "^3.1.3", "react-dom": "^16.13.1", "react-i18next": "^12.2.2", + "react-map-gl": "^7.1.6", "react-mathjax": "^1.0.1", "react-redux": "^7.2.0", "react-router-dom": "^5.2.0", diff --git a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx index 8d84db21..fbc4fe3e 100644 --- a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx +++ b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx @@ -11,6 +11,7 @@ import DeckGL from '@deck.gl/react/typed'; import { DeckProps, Viewport, FilterContext, Layer } from '@deck.gl/core/typed'; import { ScatterplotLayer } from 'deck.gl'; import { TripsLayer } from '@deck.gl/geo-layers'; +import {Map as MapLibreMap } from 'react-map-gl/maplibre'; import MapboxGL from 'mapbox-gl'; import MapboxDraw from '@mapbox/mapbox-gl-draw'; import { default as elementResizedEvent, unbind as removeResizeListener } from 'element-resize-event'; @@ -38,7 +39,7 @@ import { MapUpdateLayerEventType } from 'chaire-lib-frontend/lib/services/map/ev import { EventManager } from 'chaire-lib-common/lib/services/events/EventManager'; import getLayer from './layers/TransitionMapLayer'; -MapboxGL.accessToken = process.env.MAPBOX_ACCESS_TOKEN || ''; +import 'maplibre-gl/dist/maplibre-gl.css'; export interface MainMapProps extends LayoutSectionProps { zoom: number; @@ -497,7 +498,7 @@ class MainMap extends React.Component { const layers: Layer[] = enabledLayers .map((layer) => getLayer({ layerDescription: layer, viewState: this.state.viewState })) .filter((layer) => layer !== undefined) as Layer[]; - // + return (
@@ -507,7 +508,9 @@ class MainMap extends React.Component { controller={{ scrollZoom: true, dragPan: true }} layers={layers} onViewStateChange={this.onViewStateChange} - > + > + +
); } diff --git a/yarn.lock b/yarn.lock index 87180c25..b0917d6b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1656,7 +1656,7 @@ resolved "https://registry.yarnpkg.com/@mapbox/geojson-normalize/-/geojson-normalize-0.0.1.tgz#1da1e6b3a7add3ad29909b30f438f60581b7cd80" integrity sha1-HaHms6et060pkJsw9Dj2BYG3zYA= -"@mapbox/geojson-rewind@0.5.2": +"@mapbox/geojson-rewind@0.5.2", "@mapbox/geojson-rewind@^0.5.2": version "0.5.2" resolved "https://registry.yarnpkg.com/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz#591a5d71a9cd1da1a0bf3420b3bea31b0fc7946a" integrity sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA== @@ -1677,7 +1677,7 @@ resolved "https://registry.yarnpkg.com/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz#9aecf642cb00eab1080a57c4f949a65b4a5846d6" integrity sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw== -"@mapbox/jsonlint-lines-primitives@^2.0.2": +"@mapbox/jsonlint-lines-primitives@^2.0.2", "@mapbox/jsonlint-lines-primitives@~2.0.2": version "2.0.2" resolved "https://registry.yarnpkg.com/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz#ce56e539f83552b58d10d672ea4d6fc9adc7b234" integrity sha1-zlblOfg1UrWNENZy6k1vya3HsjQ= @@ -1729,7 +1729,7 @@ resolved "https://registry.yarnpkg.com/@mapbox/tiny-sdf/-/tiny-sdf-1.2.5.tgz#424c620a96442b20402552be70a7f62a8407cc59" integrity sha512-cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw== -"@mapbox/tiny-sdf@^2.0.5": +"@mapbox/tiny-sdf@^2.0.5", "@mapbox/tiny-sdf@^2.0.6": version "2.0.6" resolved "https://registry.yarnpkg.com/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz#9a1d33e5018093e88f6a4df2343e886056287282" integrity sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA== @@ -1739,6 +1739,11 @@ resolved "https://registry.yarnpkg.com/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz#15651bd553a67b8581fb398810c98ad86a34524e" integrity sha1-FWUb1VOme4WB+zmIEMmK2Go0Uk4= +"@mapbox/unitbezier@^0.0.1": + version "0.0.1" + resolved "https://registry.yarnpkg.com/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz#d32deb66c7177e9e9dfc3bbd697083e2e657ff01" + integrity sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw== + "@mapbox/vector-tile@^1.3.1": version "1.3.1" resolved "https://registry.yarnpkg.com/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz#d3a74c90402d06e89ec66de49ec817ff53409666" @@ -1751,6 +1756,18 @@ resolved "https://registry.yarnpkg.com/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz#497c67a1cef50d1a2459ba60f315e448d2ad87fe" integrity sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q== +"@maplibre/maplibre-gl-style-spec@^19.2.1", "@maplibre/maplibre-gl-style-spec@^19.3.3": + version "19.3.3" + resolved "https://registry.yarnpkg.com/@maplibre/maplibre-gl-style-spec/-/maplibre-gl-style-spec-19.3.3.tgz#a106248bd2e25e77c963a362aeaf630e00f924e9" + integrity sha512-cOZZOVhDSulgK0meTsTkmNXb1ahVvmTmWmfx9gRBwc6hq98wS9JP35ESIoNq3xqEan+UN+gn8187Z6E4NKhLsw== + dependencies: + "@mapbox/jsonlint-lines-primitives" "~2.0.2" + "@mapbox/unitbezier" "^0.0.1" + json-stringify-pretty-compact "^3.0.0" + minimist "^1.2.8" + rw "^1.3.3" + sort-object "^3.0.3" + "@math.gl/core@3.6.3", "@math.gl/core@^3.5.0", "@math.gl/core@^3.5.1", "@math.gl/core@^3.6.2": version "3.6.3" resolved "https://registry.yarnpkg.com/@math.gl/core/-/core-3.6.3.tgz#a6bf796ed421093099749d609de8d99a3ac20a53" @@ -3714,7 +3731,7 @@ resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.10.tgz#6dfbf5ea17142f7f9a043809f1cd4c448cb68249" integrity sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA== -"@types/geojson@^7946.0.8": +"@types/geojson@^7946.0.13", "@types/geojson@^7946.0.8": version "7946.0.13" resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.13.tgz#e6e77ea9ecf36564980a861e24e62a095988775e" integrity sha512-bmrNrgKMOhM3WsafmbGmC+6dsF2Z308vLFsQ3a/bT8X8Sv5clVYpPars/UPq+sAaJP+5OoLAYgwbkS5QEJdLUQ== @@ -3913,6 +3930,13 @@ resolved "https://registry.yarnpkg.com/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== +"@types/mapbox-gl@>=1.0.0", "@types/mapbox-gl@^2.6.3": + version "2.7.18" + resolved "https://registry.yarnpkg.com/@types/mapbox-gl/-/mapbox-gl-2.7.18.tgz#6425ac6854b3a2161752a013f086955387613192" + integrity sha512-3Yq4v8IdigSs2oD70dRJuWY/6PoW9i6MyXOx8DvJNc6CuSXRMleVdNiFYa5E0w6tSCfL+b+cGau5Em09MIujtQ== + dependencies: + "@types/geojson" "*" + "@types/mapbox-gl@^2.3.1": version "2.4.2" resolved "https://registry.yarnpkg.com/@types/mapbox-gl/-/mapbox-gl-2.4.2.tgz#b2d5d6572a49561eef0eb361afd92365027efc50" @@ -3920,12 +3944,19 @@ dependencies: "@types/geojson" "*" -"@types/mapbox-gl@^2.6.3": - version "2.7.18" - resolved "https://registry.yarnpkg.com/@types/mapbox-gl/-/mapbox-gl-2.7.18.tgz#6425ac6854b3a2161752a013f086955387613192" - integrity sha512-3Yq4v8IdigSs2oD70dRJuWY/6PoW9i6MyXOx8DvJNc6CuSXRMleVdNiFYa5E0w6tSCfL+b+cGau5Em09MIujtQ== +"@types/mapbox__point-geometry@*", "@types/mapbox__point-geometry@^0.1.4": + version "0.1.4" + resolved "https://registry.yarnpkg.com/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.4.tgz#0ef017b75eedce02ff6243b4189210e2e6d5e56d" + integrity sha512-mUWlSxAmYLfwnRBmgYV86tgYmMIICX4kza8YnE/eIlywGe2XoOxlpVnXWwir92xRLjwyarqwpu2EJKD2pk0IUA== + +"@types/mapbox__vector-tile@^1.3.3": + version "1.3.4" + resolved "https://registry.yarnpkg.com/@types/mapbox__vector-tile/-/mapbox__vector-tile-1.3.4.tgz#ad757441ef1d34628d9e098afd9c91423c1f8734" + integrity sha512-bpd8dRn9pr6xKvuEBQup8pwQfD4VUyqO/2deGjfpe6AwC8YRlyEipvefyRJUSiCJTZuCb8Pl1ciVV5ekqJ96Bg== dependencies: "@types/geojson" "*" + "@types/mapbox__point-geometry" "*" + "@types/pbf" "*" "@types/mdast@^3.0.0": version "3.0.3" @@ -4045,6 +4076,11 @@ dependencies: "@types/express" "*" +"@types/pbf@*", "@types/pbf@^3.0.4": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@types/pbf/-/pbf-3.0.5.tgz#a9495a58d8c75be4ffe9a0bd749a307715c07404" + integrity sha512-j3pOPiEcWZ34R6a6mN07mUkM4o4Lwf6hPNt8eilOeZhTFbxFXmKhvXl9Y28jotFPaI1bpPDJsbCprUoNke6OrA== + "@types/prettier@^2.1.5": version "2.4.1" resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.4.1.tgz#e1303048d5389563e130f5bdd89d37a99acb75eb" @@ -4244,6 +4280,13 @@ "@types/node" "*" "@types/stream-chain" "*" +"@types/supercluster@^7.1.3": + version "7.1.3" + resolved "https://registry.yarnpkg.com/@types/supercluster/-/supercluster-7.1.3.tgz#1a1bc2401b09174d9c9e44124931ec7874a72b27" + integrity sha512-Z0pOY34GDFl3Q6hUFYf3HkTwKEE02e7QgtJppBt+beEAxnyOpJua+voGFvxINBHa06GwLFFym7gRPY2SiKIfIA== + dependencies: + "@types/geojson" "*" + "@types/tapable@*": version "1.0.6" resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.6.tgz#a9ca4b70a18b270ccb2bc0aaafefd1d486b7ea74" @@ -5535,6 +5578,21 @@ bytes@3.1.2, bytes@^3.1.2: resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== +bytewise-core@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/bytewise-core/-/bytewise-core-1.2.3.tgz#3fb410c7e91558eb1ab22a82834577aa6bd61d42" + integrity sha512-nZD//kc78OOxeYtRlVk8/zXqTB4gf/nlguL1ggWA8FuchMyOxcyHR4QPQZMUmA7czC+YnaBrPUCubqAWe50DaA== + dependencies: + typewise-core "^1.2" + +bytewise@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/bytewise/-/bytewise-1.1.0.tgz#1d13cbff717ae7158094aa881b35d081b387253e" + integrity sha512-rHuuseJ9iQ0na6UDhnrRVDh8YnWVlU6xM3VH6q/+yHDeUH2zIhUzP+2/h3LIrhLDBtTqzWpE3p3tP/boefskKQ== + dependencies: + bytewise-core "^1.2.2" + typewise "^1.0.3" + cacache@^12.0.2: version "12.0.4" resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c" @@ -8371,7 +8429,7 @@ get-symbol-description@^1.0.0: call-bind "^1.0.2" get-intrinsic "^1.1.1" -get-value@^2.0.3, get-value@^2.0.6: +get-value@^2.0.2, get-value@^2.0.3, get-value@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= @@ -8388,7 +8446,7 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" -gl-matrix@^3.0.0, gl-matrix@^3.4.0: +gl-matrix@^3.0.0, gl-matrix@^3.4.0, gl-matrix@^3.4.3: version "3.4.3" resolved "https://registry.yarnpkg.com/gl-matrix/-/gl-matrix-3.4.3.tgz#fc1191e8320009fd4d20e9339595c6041ddc22c9" integrity sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA== @@ -10223,6 +10281,11 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= +json-stringify-pretty-compact@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/json-stringify-pretty-compact/-/json-stringify-pretty-compact-3.0.0.tgz#f71ef9d82ef16483a407869556588e91b681d9ab" + integrity sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA== + json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" @@ -10327,6 +10390,11 @@ kdbush@^3.0.0: resolved "https://registry.yarnpkg.com/kdbush/-/kdbush-3.0.0.tgz#f8484794d47004cc2d85ed3a79353dbe0abc2bf0" integrity sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew== +kdbush@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/kdbush/-/kdbush-4.0.2.tgz#2f7b7246328b4657dd122b6c7f025fbc2c868e39" + integrity sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA== + kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: version "3.2.2" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" @@ -10734,6 +10802,37 @@ mapbox-gl@chairemobilite/mapbox-gl-js#39bbf9aeb1859424e29cff2584715fddc9d018b9: tinyqueue "^2.0.3" vt-pbf "^3.1.1" +maplibre-gl@^3.6.1: + version "3.6.1" + resolved "https://registry.yarnpkg.com/maplibre-gl/-/maplibre-gl-3.6.1.tgz#44d55c6376fc500569933a1037a1ac5500eb1909" + integrity sha512-XQpLkNTD6WYJXqF7vTxgHbAyShoZMm5o8fohXCn9PC/S/g3zBk92m7GUsN6KfuECh2rO01uiYbSNCSURkOODyQ== + dependencies: + "@mapbox/geojson-rewind" "^0.5.2" + "@mapbox/jsonlint-lines-primitives" "^2.0.2" + "@mapbox/point-geometry" "^0.1.0" + "@mapbox/tiny-sdf" "^2.0.6" + "@mapbox/unitbezier" "^0.0.1" + "@mapbox/vector-tile" "^1.3.1" + "@mapbox/whoots-js" "^3.1.0" + "@maplibre/maplibre-gl-style-spec" "^19.3.3" + "@types/geojson" "^7946.0.13" + "@types/mapbox__point-geometry" "^0.1.4" + "@types/mapbox__vector-tile" "^1.3.3" + "@types/pbf" "^3.0.4" + "@types/supercluster" "^7.1.3" + earcut "^2.2.4" + geojson-vt "^3.2.1" + gl-matrix "^3.4.3" + global-prefix "^3.0.0" + kdbush "^4.0.2" + murmurhash-js "^1.0.0" + pbf "^3.2.1" + potpack "^2.0.0" + quickselect "^2.0.0" + supercluster "^8.0.1" + tinyqueue "^2.0.3" + vt-pbf "^3.1.3" + markdown-table@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-2.0.0.tgz#194a90ced26d31fe753d8b9434430214c011865b" @@ -11124,6 +11223,11 @@ minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6: resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== +minimist@^1.2.8: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + minipass-collect@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" @@ -12479,6 +12583,11 @@ potpack@^1.0.1: resolved "https://registry.yarnpkg.com/potpack/-/potpack-1.0.1.tgz#d1b1afd89e4c8f7762865ec30bd112ab767e2ebf" integrity sha512-15vItUAbViaYrmaB/Pbw7z6qX2xENbFSTA7Ii4tgbPtasxm5v6ryKhKtL91tpWovDJzTiZqdwzhcFBCwiMVdVw== +potpack@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/potpack/-/potpack-2.0.0.tgz#61f4dd2dc4b3d5e996e3698c0ec9426d0e169104" + integrity sha512-Q+/tYsFU9r7xoOJ+y/ZTtdVQwTWfzjbiXBDMM/JKUux3+QPP02iUuIoeBQ+Ot6oEDlC+/PGjB/5A3K7KKb7hcw== + prelude-ls@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" @@ -13074,6 +13183,14 @@ react-loadable@^5.5.0: dependencies: prop-types "^15.5.0" +react-map-gl@^7.1.6: + version "7.1.6" + resolved "https://registry.yarnpkg.com/react-map-gl/-/react-map-gl-7.1.6.tgz#4ea239cd49493cfc9ed15aa52436b024c757c0a9" + integrity sha512-9XbrvpFF67Fyi+e6vRLJFnGpo3UF6ZHifIa8cS/wUYSsnv9sVyzGsN++FJy57zkz3Jh3kmf0xKZemR8K0FZLVw== + dependencies: + "@maplibre/maplibre-gl-style-spec" "^19.2.1" + "@types/mapbox-gl" ">=1.0.0" + react-markdown@^6.0.3: version "6.0.3" resolved "https://registry.yarnpkg.com/react-markdown/-/react-markdown-6.0.3.tgz#625ec767fa321d91801129387e7d31ee0cb99254" @@ -14237,6 +14354,16 @@ socketio-wildcard@^2.0.0: resolved "https://registry.yarnpkg.com/socketio-wildcard/-/socketio-wildcard-2.0.0.tgz#2466e832276b19163563bee772388747f912475b" integrity sha1-JGboMidrGRY1Y77ncjiHR/kSR1s= +sort-asc@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/sort-asc/-/sort-asc-0.2.0.tgz#00a49e947bc25d510bfde2cbb8dffda9f50eb2fc" + integrity sha512-umMGhjPeHAI6YjABoSTrFp2zaBtXBej1a0yKkuMUyjjqu6FJsTF+JYwCswWDg+zJfk/5npWUUbd33HH/WLzpaA== + +sort-desc@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/sort-desc/-/sort-desc-0.2.0.tgz#280c1bdafc6577887cedbad1ed2e41c037976646" + integrity sha512-NqZqyvL4VPW+RAxxXnB8gvE1kyikh8+pR+T+CXLksVRN9eiQqkQlPwqWYU0mF9Jm7UnctShlxLyAt1CaBOTL1w== + sort-keys@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" @@ -14244,6 +14371,18 @@ sort-keys@^1.0.0: dependencies: is-plain-obj "^1.0.0" +sort-object@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/sort-object/-/sort-object-3.0.3.tgz#945727165f244af9dc596ad4c7605a8dee80c269" + integrity sha512-nK7WOY8jik6zaG9CRwZTaD5O7ETWDLZYMM12pqY8htll+7dYeqGfEUPcUBHOpSJg2vJOrvFIY2Dl5cX2ih1hAQ== + dependencies: + bytewise "^1.1.0" + get-value "^2.0.2" + is-extendable "^0.1.1" + sort-asc "^0.2.0" + sort-desc "^0.2.0" + union-value "^1.0.1" + source-list-map@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" @@ -14751,6 +14890,13 @@ supercluster@^7.1.3: dependencies: kdbush "^3.0.0" +supercluster@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/supercluster/-/supercluster-8.0.1.tgz#9946ba123538e9e9ab15de472531f604e7372df5" + integrity sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ== + dependencies: + kdbush "^4.0.2" + supertest-session@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/supertest-session/-/supertest-session-4.1.0.tgz#81d851ca311e12cc0b34c294012615649a55c159" @@ -15314,6 +15460,18 @@ typescript@^4.5.4, typescript@^4.9.4: resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78" integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg== +typewise-core@^1.2, typewise-core@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/typewise-core/-/typewise-core-1.2.0.tgz#97eb91805c7f55d2f941748fa50d315d991ef195" + integrity sha512-2SCC/WLzj2SbUwzFOzqMCkz5amXLlxtJqDKTICqg30x+2DZxcfZN2MvQZmGfXWKNWaKK9pBPsvkcwv8bF/gxKg== + +typewise@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/typewise/-/typewise-1.0.3.tgz#1067936540af97937cc5dcf9922486e9fa284651" + integrity sha512-aXofE06xGhaQSPzt8hlTY+/YWQhm9P0jYUp1f2XtmW/3Bk0qzXcyFWAtPoo2uTGQj1ZwbDuSyuxicq+aDo8lCQ== + dependencies: + typewise-core "^1.2.0" + uid-safe@~2.1.5: version "2.1.5" resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.5.tgz#2b3d5c7240e8fc2e58f8aa269e5ee49c0857bd3a" @@ -15358,7 +15516,7 @@ unified@^9.0.0: trough "^1.0.0" vfile "^4.0.0" -union-value@^1.0.0: +union-value@^1.0.0, union-value@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== @@ -15641,6 +15799,15 @@ vt-pbf@^3.1.1: "@mapbox/vector-tile" "^1.3.1" pbf "^3.0.5" +vt-pbf@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/vt-pbf/-/vt-pbf-3.1.3.tgz#68fd150756465e2edae1cc5c048e063916dcfaac" + integrity sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA== + dependencies: + "@mapbox/point-geometry" "0.1.0" + "@mapbox/vector-tile" "^1.3.1" + pbf "^3.2.1" + vue-eslint-parser@^8.0.1: version "8.3.0" resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz#5d31129a1b3dd89c0069ca0a1c88f970c360bd0d" From 8f6d94d296f4632955717e0f290552cf8de3d6b2 Mon Sep 17 00:00:00 2001 From: davidmurray Date: Wed, 15 Nov 2023 11:40:58 -0500 Subject: [PATCH 04/23] Allow showing an XYZ tile layer --- .../src/components/map/TransitionMainMap.tsx | 37 ++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx index fbc4fe3e..3bc4de60 100644 --- a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx +++ b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx @@ -39,6 +39,8 @@ import { MapUpdateLayerEventType } from 'chaire-lib-frontend/lib/services/map/ev import { EventManager } from 'chaire-lib-common/lib/services/events/EventManager'; import getLayer from './layers/TransitionMapLayer'; +import { BitmapLayer } from '@deck.gl/layers'; +import { TileLayer } from '@deck.gl/geo-layers'; import 'maplibre-gl/dist/maplibre-gl.css'; export interface MainMapProps extends LayoutSectionProps { @@ -60,6 +62,7 @@ interface MainMapState { bearing: number; }; enabledLayers: string[]; + xyzTileLayer?: Layer; // Temporary! Move this somewhere else } /** @@ -81,6 +84,33 @@ class MainMap extends React.Component { constructor(props: MainMapProps) { super(props); + // TODO: This should not be here + var xyzTileLayer = undefined; + if (process.env.CUSTOM_RASTER_TILES_XYZ_URL) { + xyzTileLayer = new TileLayer({ + data: process.env.CUSTOM_RASTER_TILES_XYZ_URL, + minZoom: process.env.CUSTOM_RASTER_TILES_MIN_ZOOM + ? parseFloat(process.env.CUSTOM_RASTER_TILES_MIN_ZOOM) + : 0, + maxZoom: process.env.CUSTOM_RASTER_TILES_MAX_ZOOM + ? parseFloat(process.env.CUSTOM_RASTER_TILES_MAX_ZOOM) + : 22, + opacity: 0.5, + tileSize: 256, + renderSubLayers: props => { + const { + bbox: {west, south, east, north} + } = props.tile; + + return new BitmapLayer(props, { + data: null, + image: props.data, + bounds: [west, south, east, north] + }); + } + }); + } + this.state = { viewState: { longitude: props.center[0], @@ -89,7 +119,8 @@ class MainMap extends React.Component { pitch: 0, bearing: 0 }, - enabledLayers: [] + enabledLayers: [], + xyzTileLayer: xyzTileLayer }; this.defaultZoomArray = [props.zoom]; @@ -499,6 +530,10 @@ class MainMap extends React.Component { .map((layer) => getLayer({ layerDescription: layer, viewState: this.state.viewState })) .filter((layer) => layer !== undefined) as Layer[]; + if (this.state.xyzTileLayer) { + layers.unshift(this.state.xyzTileLayer); + } + return (
From e0fb537f8a7549f46e985122d1b5f7407b7d0259 Mon Sep 17 00:00:00 2001 From: davidmurray Date: Fri, 27 Oct 2023 14:06:11 -0400 Subject: [PATCH 05/23] Allow changing map background via the preferences For now, only three styles are available: OSM, positron and dark matter from CartoDB. Eventually, we can extend to also use MapTiler's tiles, but his requires an API key. --- locales/en/main.json | 6 ++++ locales/fr/main.json | 6 ++++ .../src/config/defaultPreferences.config.ts | 2 ++ .../sections/PreferencesSectionGeneral.tsx | 28 +++++++++++++++++++ .../src/components/map/TransitionMainMap.tsx | 9 +++++- .../transition-frontend/webpack.config.js | 1 - 6 files changed, 50 insertions(+), 2 deletions(-) diff --git a/locales/en/main.json b/locales/en/main.json index 21365b2e..bb6a7b72 100644 --- a/locales/en/main.json +++ b/locales/en/main.json @@ -265,11 +265,17 @@ "General": "General preferences", "DefaultSection": "Default section at opening", "InfoPanelPosition": "Info panel position", + "MapStyle": "Map background", "DefaultColor": "Default color", "DefaultWalkingSpeedKph": "Default walking speed (km/h)", "DefaultWalkingSpeedKphHelp": "Walking speed varies according to age and gender between 3 km/h (elderly people and young children) and 7 km/h (young and/or very active people). Men are on average a little faster than women and in general, walking speed decreases with age. The speed of a person in a manual wheelchair varies between 2 and 3 km/h depending on physical strength.", "ExperimentalFeatures": "Experimental features", "MapPrettyDisplay": "Display pretty lines and nodes on map", + "mapStyles": { + "osmBright": "OpenStreetMap", + "positron": "Light (positron)", + "darkMatter": "Dark (dark matter)" + }, "transit": { "nodes": {} }, diff --git a/locales/fr/main.json b/locales/fr/main.json index c46d2cb2..b327d265 100644 --- a/locales/fr/main.json +++ b/locales/fr/main.json @@ -265,11 +265,17 @@ "General": "Préférences générales", "DefaultSection": "Section par défaut lors de l'ouverture", "InfoPanelPosition": "Position du panneau d'information", + "MapStyle": "Fond de carte", "DefaultColor": "Couleur par défaut", "DefaultWalkingSpeedKph": "Vitesse de marche par défaut (km/h)", "DefaultWalkingSpeedKphHelp": "La vitesse de marche varie selon l'âge et le genre entre 3 km/h (personnes âges et jeunes enfants) et 7 km/h (personnes jeunes et/ou très actives). Les hommes sont en moyenne un peu plus rapides que les femmes et de manière générale, la vitesse de marche diminue avec l'âge. La vitesse d'une personne en chaise roulante manuelle varie entre 2 et 3 km/h selon la force physique.", "ExperimentalFeatures": "Fonctionnalités expérimentales", "MapPrettyDisplay": "Affichage esthétique des lignes et noeuds sur la carte", + "mapStyles": { + "osmBright": "OpenStreetMap", + "positron": "Clair (positron)", + "darkMatter": "Foncé (dark matter)" + }, "transit": { "nodes": {} }, diff --git a/packages/chaire-lib-common/src/config/defaultPreferences.config.ts b/packages/chaire-lib-common/src/config/defaultPreferences.config.ts index 352dde30..99c537b3 100644 --- a/packages/chaire-lib-common/src/config/defaultPreferences.config.ts +++ b/packages/chaire-lib-common/src/config/defaultPreferences.config.ts @@ -20,6 +20,7 @@ export interface PreferencesModel { defaultSection: string; infoPanelPosition: string; dateTimeFormat: string; + mapStyleURL: string; sections: { [key: string]: { [key: string]: SectionDescription; @@ -37,6 +38,7 @@ const defaultPreferences: PreferencesModel = { defaultSection: 'agencies', infoPanelPosition: 'right', dateTimeFormat: 'YYYY-MM-DD HH:mm', + mapStyleURL: 'https://basemaps.cartocdn.com/gl/dark-matter-nolabels-gl-style/style.json', sections: { transition: { agencies: { diff --git a/packages/transition-frontend/src/components/forms/preferences/sections/PreferencesSectionGeneral.tsx b/packages/transition-frontend/src/components/forms/preferences/sections/PreferencesSectionGeneral.tsx index ea13644f..e93dd899 100644 --- a/packages/transition-frontend/src/components/forms/preferences/sections/PreferencesSectionGeneral.tsx +++ b/packages/transition-frontend/src/components/forms/preferences/sections/PreferencesSectionGeneral.tsx @@ -34,6 +34,20 @@ const PreferencesSectionGeneral: React.FunctionComponent
@@ -75,6 +89,20 @@ const PreferencesSectionGeneral: React.FunctionComponent + + props.onValueChange('mapStyleURL', { value: e.target.value })} + /> + + { bearing: 0 }, enabledLayers: [], + mapStyleURL: Preferences.get('mapStyleURL'), xyzTileLayer: xyzTileLayer }; @@ -232,8 +234,13 @@ class MainMap extends React.Component { //serviceLocator.eventManager.on('map.deleteSelectedNodes', this.deleteSelectedNodes); serviceLocator.eventManager.on('map.deleteSelectedPolygon', this.deleteSelectedPolygon); serviceLocator.eventManager.emit('map.loaded'); + Preferences.addChangeListener(this.onPreferencesChange); }; + onPreferencesChange = (updates: any) => { + this.setState({ mapStyleURL: Preferences.get('mapStyleURL') }) + } + componentWillUnmount = () => { serviceLocator.removeService('layerManager'); serviceLocator.removeService('pathLayerManager'); @@ -544,7 +551,7 @@ class MainMap extends React.Component { layers={layers} onViewStateChange={this.onViewStateChange} > - +
); diff --git a/packages/transition-frontend/webpack.config.js b/packages/transition-frontend/webpack.config.js index 3c058ab7..ff4605cc 100644 --- a/packages/transition-frontend/webpack.config.js +++ b/packages/transition-frontend/webpack.config.js @@ -140,7 +140,6 @@ module.exports = (env) => { 'GOOGLE_API_KEY' : JSON.stringify(process.env.GOOGLE_API_KEY), 'MAPBOX_ACCESS_TOKEN' : JSON.stringify(process.env.MAPBOX_ACCESS_TOKEN), 'MAPBOX_USER_ID' : JSON.stringify(process.env.MAPBOX_USER_ID || config.mapboxUserId), - 'MAPBOX_STYLE_ID' : JSON.stringify(process.env.MAPBOX_STYLE_ID || config.mapboxStyleId), 'CUSTOM_RASTER_TILES_XYZ_URL' : JSON.stringify(process.env.CUSTOM_RASTER_TILES_XYZ_URL || config.customRasterTilesXyzUrl), 'CUSTOM_RASTER_TILES_MIN_ZOOM': JSON.stringify(process.env.CUSTOM_RASTER_TILES_MIN_ZOOM || config.customRasterTilesMinZoom), 'CUSTOM_RASTER_TILES_MAX_ZOOM': JSON.stringify(process.env.CUSTOM_RASTER_TILES_MAX_ZOOM || config.customRasterTilesMaxZoom) From c82a2850a3808a9d4a3819c6be4e0cd782f37f39 Mon Sep 17 00:00:00 2001 From: davidmurray Date: Wed, 15 Nov 2023 14:03:24 -0500 Subject: [PATCH 06/23] Remove references to mapbox in .env file READMEs remain to be updated --- .env.docker | 4 ---- .env.example | 4 ---- packages/transition-frontend/webpack.config.js | 2 -- 3 files changed, 10 deletions(-) diff --git a/.env.docker b/.env.docker index 3f2cb740..aa927ea3 100644 --- a/.env.docker +++ b/.env.docker @@ -12,10 +12,6 @@ EXPRESS_SESSION_SECRET_KEY=DefaultDockerSessionKey # Host and port for the trRouting server #TR_ROUTING_HOST_URL=http://locahost #TR_ROUTING_HOST_PORT=4000 -# Required for the mapbox map -MAPBOX_ACCESS_TOKEN=MYMAPBOXACCESSTOKEN -MAPBOX_USER_ID=mapbox -MAPBOX_STYLE_ID=dark-v10 #MAGIC_LINK_SECRET_KEY=MYVERYLONGSECRETKEYTOENCRYPTTOKENTOSENDTOUSERFORPASSWORDLESSLOGIN #CUSTOM_RASTER_TILES_XYZ_URL=https://exampltest/{z}/{x}/{y} #CUSTOM_RASTER_TILES_MIN_ZOOM=8 diff --git a/.env.example b/.env.example index ecd9f471..18c195d6 100644 --- a/.env.example +++ b/.env.example @@ -20,10 +20,6 @@ GOOGLE_OAUTH_SECRET_KEY=GOOGLEOAUTHSECRETKEY # To support Facebook login FACEBOOK_APP_ID=FACEBOOKAPPID FACEBOOK_APP_SECRET=FACEBOOKAPPSECRET -# Required for the mapbox map -MAPBOX_ACCESS_TOKEN=MYMAPBOXACCESSTOKEN -MAPBOX_USER_ID=mapbox -MAPBOX_STYLE_ID=dark-v10 #MAGIC_LINK_SECRET_KEY=MYVERYLONGSECRETKEYTOENCRYPTTOKENTOSENDTOUSERFORPASSWORDLESSLOGIN #CUSTOM_RASTER_TILES_XYZ_URL=https://exampltest/{z}/{x}/{y} #CUSTOM_RASTER_TILES_MIN_ZOOM=8 diff --git a/packages/transition-frontend/webpack.config.js b/packages/transition-frontend/webpack.config.js index ff4605cc..a7018783 100644 --- a/packages/transition-frontend/webpack.config.js +++ b/packages/transition-frontend/webpack.config.js @@ -138,8 +138,6 @@ module.exports = (env) => { 'NODE_ENV' : JSON.stringify(process.env.NODE_ENV), 'IS_TESTING' : JSON.stringify(env === 'test'), 'GOOGLE_API_KEY' : JSON.stringify(process.env.GOOGLE_API_KEY), - 'MAPBOX_ACCESS_TOKEN' : JSON.stringify(process.env.MAPBOX_ACCESS_TOKEN), - 'MAPBOX_USER_ID' : JSON.stringify(process.env.MAPBOX_USER_ID || config.mapboxUserId), 'CUSTOM_RASTER_TILES_XYZ_URL' : JSON.stringify(process.env.CUSTOM_RASTER_TILES_XYZ_URL || config.customRasterTilesXyzUrl), 'CUSTOM_RASTER_TILES_MIN_ZOOM': JSON.stringify(process.env.CUSTOM_RASTER_TILES_MIN_ZOOM || config.customRasterTilesMinZoom), 'CUSTOM_RASTER_TILES_MAX_ZOOM': JSON.stringify(process.env.CUSTOM_RASTER_TILES_MAX_ZOOM || config.customRasterTilesMaxZoom) From 55c230ecea6c00171a67c1eb7d5477e8f0ac2902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Wed, 15 Nov 2023 14:52:20 -0500 Subject: [PATCH 07/23] deck.gl: Change types of the map layer The type is named `MapLayer` and another type `LayerConfiguration` is used to configure the layer by the application. The configuration is meant to be fixed by the application and does not change, except through Preferences, if necessary. --- .../src/services/map/MapLayerManager.ts | 8 ++++---- .../services/map/layers/LayerDescription.ts | 20 +++++++++++++------ .../map/layers/TransitionMapLayer.tsx | 12 +++++------ 3 files changed, 24 insertions(+), 16 deletions(-) diff --git a/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts b/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts index bcaf6d8c..e19ed810 100644 --- a/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts +++ b/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts @@ -8,7 +8,7 @@ import { featureCollection as turfFeatureCollection } from '@turf/turf'; import _uniq from 'lodash/uniq'; import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; -import { LayerDescription } from './layers/LayerDescription'; +import { MapLayer } from './layers/LayerDescription'; const defaultGeojson = turfFeatureCollection([]) as GeoJSON.FeatureCollection; @@ -20,7 +20,7 @@ const defaultGeojson = turfFeatureCollection([]) as GeoJSON.FeatureCollection this._layersByName[layerName]); } diff --git a/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts index a69e8f27..6f2de5bd 100644 --- a/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts +++ b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts @@ -5,17 +5,25 @@ * License text available at https://opensource.org/licenses/MIT */ -export type LayerDescription = { +export type LayerConfiguration = { + // TODO Type this properly. When the data in layers.config.ts is used by the new API, add it here + [key: string]: any +}; + +export type MapLayer = { /** Unique identifier for this layer */ id: string; - /** Whether the layer is visible, if enabled */ + /** + * Whether the layer is visible. The layer visibility is typically defined + * by the user. It does not mean it is always visible. It is only visible + * when it is enabled by the application. + */ visible: boolean; /** - * Description of the current layer - * - * TODO Type this properly + * Configuration of the current layer. It should be fixed and not require + * updates, except through Preferences if any */ - layerDescription: { [key: string]: any }; + configuration: LayerConfiguration; /** Features contained in this layer */ layerData: GeoJSON.FeatureCollection; }; diff --git a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx index 7ca7f5b8..17791a0e 100644 --- a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx +++ b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx @@ -5,7 +5,7 @@ * License text available at https://opensource.org/licenses/MIT */ import { Layer, LayerProps } from '@deck.gl/core/typed'; -import { LayerDescription } from 'chaire-lib-frontend/lib/services/map/layers/LayerDescription'; +import { MapLayer } from 'chaire-lib-frontend/lib/services/map/layers/LayerDescription'; import { ScatterplotLayer, TripsLayer, PolygonLayer, GeoJsonLayer } from 'deck.gl/typed'; // FIXME default color should probably be a app/user/theme preference? @@ -18,7 +18,7 @@ const defaultRGBA = [ ] as [number, number, number, number]; type TransitionMapLayerProps = { - layerDescription: LayerDescription; + layerDescription: MapLayer; // TODO Find the right type for this viewState; }; @@ -126,15 +126,15 @@ const getLayer = (props: TransitionMapLayerProps): Layer | undefined console.log('layer data is undefined', props.layerDescription.id); return undefined; } - if (props.layerDescription.layerDescription.type === 'circle') { + if (props.layerDescription.configuration.type === 'circle') { // FIXME Try not to type as any return getScatterLayer(props) as any; - } else if (props.layerDescription.layerDescription.type === 'line') { + } else if (props.layerDescription.configuration.type === 'line') { return getLineLayer(props) as any; - } else if (props.layerDescription.layerDescription.type === 'fill') { + } else if (props.layerDescription.configuration.type === 'fill') { return getPolygonLayer(props) as any; } - console.log('unknown layer', props.layerDescription.layerDescription); + console.log('unknown layer', props.layerDescription.configuration); return undefined; }; From 2cc3086909553476ce3cdd91c46094308c1bf527 Mon Sep 17 00:00:00 2001 From: davidmurray Date: Wed, 15 Nov 2023 16:43:07 -0500 Subject: [PATCH 08/23] Make AnimatedArrowPathLayer work Performance could be improved, but it works sufficiently well for now --- .../map/layers/AnimatedArrowPathLayer.tsx | 168 ++++++++++++++++++ .../map/layers/TransitionMapLayer.tsx | 19 ++ .../src/config/layers.config.ts | 2 +- 3 files changed, 188 insertions(+), 1 deletion(-) create mode 100644 packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx diff --git a/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx b/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx new file mode 100644 index 00000000..dfe18cbf --- /dev/null +++ b/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx @@ -0,0 +1,168 @@ +/* + * Copyright 2023, Polytechnique Montreal and contributors + * + * This file is licensed under the MIT License. + * License text available at https://opensource.org/licenses/MIT + */ +import { PathLayer, PathLayerProps } from '@deck.gl/layers/typed'; +import { AccessorFunction, DefaultProps } from '@deck.gl/core'; +import * as vec3 from 'gl-matrix/vec3'; + +export type AnimatedArrowPathLayerProps = _AnimatedArrowPathLayerProps & PathLayerProps; + +type _AnimatedArrowPathLayerProps = { + /** + * [solid length, gap length] accessor. + * @default [4, 4] + */ + getSizeArray?: AccessorFunction; + + /** + * Arrow path speed scaling. The larger the number, the slower the path movement. + * @default 3 + */ + speedDivider?: number; + }; + +const defaultProps: DefaultProps = { + getSizeArray: {type: 'accessor', value: [4, 4]}, + speedDivider: 3 +} + +export default class AnimatedArrowPathLayer extends PathLayer< + DataT, + Required<_AnimatedArrowPathLayerProps> & ExtraProps +> { + static layerName = 'AnimatedArrowPathLayer'; + static defaultProps = defaultProps; + + state!: { + animationID: number; + time: number; + pathTesselator: any; // From PathLayer + }; + + constructor(props: any) { + super(props); + } + + initializeState() { + super.initializeState(); + + const animate = () => { + const currentTime = this.state.time || 0; + this.setState({ + time: (currentTime + 1),// % loopLength, + animationID: window.requestAnimationFrame(animate) // draw next frame + }) + }; + const animationID = window.requestAnimationFrame(animate); + this.setState({ + animationID: animationID + }); + + const attributeManager = this.getAttributeManager(); + attributeManager?.addInstanced({ + instanceArrowPathArrays: {size: 2, accessor: 'getSizeArray'}, + instanceArrowPathOffsets: { + size: 1, + accessor: 'getPath', + transform: this.getArrowPathOffsets.bind(this) // TODO: Check if this is executed multiple times or just at layer creation + } + }); + } + + draw(opts) { + opts.uniforms.arrowPathTimeStep = this.state.time || 0; + opts.uniforms.speedDivider = this.props.speedDivider; + super.draw(opts); + } + + getArrowPathOffsets(path) { + const result = [0]; + if (path === undefined) { + return result; + } + const positionSize = this.props.positionFormat === 'XY' ? 2 : 3; + const isNested = Array.isArray(path[0]); + const geometrySize = isNested ? path.length : path.length / positionSize; + + let p; + let prevP; + for (let i = 0; i < geometrySize - 1; i++) { + p = isNested ? path[i] : path.slice(i * positionSize, i * positionSize + positionSize); + p = this.projectPosition(p); + + if (i > 0) { + result[i] = result[i - 1] + vec3.dist(prevP, p); + } + + prevP = p; + } + return result; + } + + getShaders() { + return Object.assign({}, super.getShaders(), { + // Code here is largely inspired by / copied from https://github.com/visgl/deck.gl/blob/master/modules/extensions/src/path-style/path-style-extension.ts + + inject: { + 'vs:#decl': ` + attribute vec2 instanceArrowPathArrays; + attribute float instanceArrowPathOffsets; + varying vec2 vArrowPathArray; + varying float vArrowPathOffset; + uniform float arrowPathTimeStep; + uniform float speedDivider; + `, + + 'vs:#main-end': ` + vArrowPathArray = instanceArrowPathArrays; + vArrowPathOffset = instanceArrowPathOffsets / width.x; + vArrowPathOffset += (arrowPathTimeStep / speedDivider); + `, + + 'fs:#decl': ` + varying vec2 vArrowPathArray; + varying float vArrowPathOffset; + + float round(float x) { + return floor(x + 0.5); + } + `, + 'fs:#main-start': ` + float solidLength = vArrowPathArray.x; + float gapLength = vArrowPathArray.y; + float unitLength = solidLength + gapLength; + + float offset = 0.0; + float unitOffset = 0.0; + if (unitLength > 0.0) { + offset = vArrowPathOffset; + unitOffset = mod(vPathPosition.y + offset, unitLength); + } + `, + 'fs:#main-end': `\ + float relY = unitOffset / unitLength; + + // See this link for info about vPathPosition variable + // https://github.com/visgl/deck.gl/blob/b7c9fcc2b6e8693b5574a498fd128919b9780b49/modules/layers/src/path-layer/path-layer-fragment.glsl.ts#L31-L35 + + // Draw a white arrow for the first 12% of the arrow length. + float arrowEnd = 0.12; + if (relY < arrowEnd && abs(vPathPosition.x) <= 10.0*relY) { + gl_FragColor = vec4(255/255, 255/255, 255/255, 1.0); // white + } else { + // TODO : Can this be simplified? + // This is to make the fade start at the end of the white arrow rather than at the top. + float alpha = 1.0 - relY; + if (relY < arrowEnd) { + alpha = 1.0 - alpha - arrowEnd; + } + gl_FragColor = vec4(vColor.r, vColor.g, vColor.b, mix(0.5, 1.0, alpha)); + } + ` + } + }); + } +} diff --git a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx index 17791a0e..3745e704 100644 --- a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx +++ b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx @@ -7,6 +7,7 @@ import { Layer, LayerProps } from '@deck.gl/core/typed'; import { MapLayer } from 'chaire-lib-frontend/lib/services/map/layers/LayerDescription'; import { ScatterplotLayer, TripsLayer, PolygonLayer, GeoJsonLayer } from 'deck.gl/typed'; +import AnimatedArrowPathLayer from './AnimatedArrowPathLayer' // FIXME default color should probably be a app/user/theme preference? const DEFAULT_COLOR = '#0086FF'; @@ -80,6 +81,22 @@ const getLineLayer = (props: TransitionMapLayerProps): TripsLayer => } */ }); +const getAnimatedArrowPathLayer = (props: TransitionMapLayerProps): AnimatedArrowPathLayer => + new AnimatedArrowPathLayer({ + id: props.layerDescription.id, + data: props.layerDescription.layerData.features, + getPath: d => d.geometry.coordinates, + pickable: true, + getWidth: 100, + /* + getWidth: (d, i) => { + return 70; + },*/ + getColor: (d) => propertyToColor(d, 'color'), + getSizeArray: [4, 4], + speedDivider: 10, + }); + const getPolygonLayer = (props: TransitionMapLayerProps): GeoJsonLayer => new GeoJsonLayer({ id: props.layerDescription.id, @@ -133,6 +150,8 @@ const getLayer = (props: TransitionMapLayerProps): Layer | undefined return getLineLayer(props) as any; } else if (props.layerDescription.configuration.type === 'fill') { return getPolygonLayer(props) as any; + } else if (props.layerDescription.configuration.type === 'animatedArrowPath') { + return getAnimatedArrowPathLayer(props) as any; } console.log('unknown layer', props.layerDescription.configuration); return undefined; diff --git a/packages/transition-frontend/src/config/layers.config.ts b/packages/transition-frontend/src/config/layers.config.ts index ab371ed8..18d4225d 100644 --- a/packages/transition-frontend/src/config/layers.config.ts +++ b/packages/transition-frontend/src/config/layers.config.ts @@ -331,7 +331,7 @@ const layersConfig = { }, transitPathsSelected: { - type: 'line', + type: 'animatedArrowPath', repaint: true, //"shaders": [transitPathsSelectedFragmentShader, transitPathsSelectedVertexShader], layout: { From adc0f5bb9d32cd8c21a8184d8fdd6022401b2360 Mon Sep 17 00:00:00 2001 From: davidmurray Date: Thu, 16 Nov 2023 11:25:07 -0500 Subject: [PATCH 09/23] LineLayer's should just be PathLayer, not TripsLayer TripsLayer is for animating a fading path, but we don't need that for general transit lines. --- .../src/components/map/layers/TransitionMapLayer.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx index 3745e704..616ef54f 100644 --- a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx +++ b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx @@ -6,7 +6,7 @@ */ import { Layer, LayerProps } from '@deck.gl/core/typed'; import { MapLayer } from 'chaire-lib-frontend/lib/services/map/layers/LayerDescription'; -import { ScatterplotLayer, TripsLayer, PolygonLayer, GeoJsonLayer } from 'deck.gl/typed'; +import { ScatterplotLayer, PathLayer, GeoJsonLayer } from 'deck.gl/typed'; import AnimatedArrowPathLayer from './AnimatedArrowPathLayer' // FIXME default color should probably be a app/user/theme preference? @@ -54,8 +54,8 @@ const propertyToColor = ( : defaultRGBA; }; -const getLineLayer = (props: TransitionMapLayerProps): TripsLayer => - new TripsLayer({ +const getLineLayer = (props: TransitionMapLayerProps): PathLayer => + new PathLayer({ id: props.layerDescription.id, data: props.layerDescription.layerData.features, getPath: (d) => d.geometry.coordinates, From d3320acbb066c6740f7e7d3cb742a330e80973d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Wed, 15 Nov 2023 12:15:55 -0500 Subject: [PATCH 10/23] deck.gl: Support events on map and map layers * Change the API of the event handlers * Drop support of mapbox types in event handling * Change the events to use the new API * mouseDown/Move/Up are now onDrag and onDragEnd events, which happen only with a specific feature, these are easier * There are simple tooltip events, which simplify popup management when only a simple text is required * The `click` event is separate in `leftClick` and `rightClick` TODO: The `path.hoverNode` and `path.unhoverNode` are not yet functional, as they programatically need to create a popup or menu at a specific location. TODO2: Aesthetic changes are not taken into account, as zoom events (and other layout events) are not yet properly handled TODO3: Not all layers are refreshed, even though the collection they display has elements that have changed. For example, saving a path does not show the updated path. Deck.GL does a shallow comparison to determine if the layer needs to be refreshed and probably the shallow comparison does not show any change if the coordinates changed. --- .../src/services/geodata/GeoJSONUtils.ts | 2 + packages/chaire-lib-frontend/package.json | 4 + .../src/services/map/IMapEventHandler.ts | 153 +++++-- .../src/services/map/MapLayerManager.ts | 4 +- .../services/map/events/GlobalMapEvents.ts | 18 +- .../services/map/layers/LayerDescription.ts | 4 +- packages/transition-frontend/package.json | 7 + .../components/forms/node/TransitNodeEdit.tsx | 2 +- .../components/forms/path/TransitPathEdit.tsx | 52 +-- .../sections/PreferencesSectionGeneral.tsx | 12 +- .../transitRouting/TransitRoutingForm.tsx | 5 +- .../src/components/map/TransitionMainMap.tsx | 282 +++++++++--- .../map/layers/AnimatedArrowPathLayer.tsx | 28 +- .../map/layers/TransitionMapLayer.tsx | 107 +++-- .../AccessibilityMapSectionMapEvents.ts | 56 ++- .../services/map/events/NodeLayerMapEvents.ts | 93 +--- .../map/events/NodeSectionMapEvents.ts | 225 +++++----- .../services/map/events/PathLayerMapEvents.ts | 127 +----- .../map/events/PathSectionMapEvents.ts | 400 +++++++++--------- .../map/events/RoutingLayerMapEvents.ts | 27 -- .../map/events/RoutingSectionMapEvents.ts | 87 ++-- .../map/events/ScenarioSectionMapEvents.ts | 5 +- .../src/services/map/events/index.ts | 2 - 23 files changed, 881 insertions(+), 821 deletions(-) delete mode 100644 packages/transition-frontend/src/services/map/events/RoutingLayerMapEvents.ts diff --git a/packages/chaire-lib-common/src/services/geodata/GeoJSONUtils.ts b/packages/chaire-lib-common/src/services/geodata/GeoJSONUtils.ts index 4c4829b3..b1d58fae 100644 --- a/packages/chaire-lib-common/src/services/geodata/GeoJSONUtils.ts +++ b/packages/chaire-lib-common/src/services/geodata/GeoJSONUtils.ts @@ -45,3 +45,5 @@ export const getPointCoordinates = (geojson: GeoJSON.GeoJSON): number[] | undefi } return undefined; }; + +export const emptyFeatureCollection = { type: 'FeatureCollection', features: [] } as GeoJSON.FeatureCollection; diff --git a/packages/chaire-lib-frontend/package.json b/packages/chaire-lib-frontend/package.json index c710205a..f7c6cd26 100644 --- a/packages/chaire-lib-frontend/package.json +++ b/packages/chaire-lib-frontend/package.json @@ -38,6 +38,7 @@ "chaire-lib-common": "^0.2.2", "child_process": "^1.0.2", "date-fns": "^2.30.0", + "deck.gl": "^8.9.32", "font-awesome": "^4.7.0", "geojson": "^0.5.0", "history": "^4.9.0", @@ -47,6 +48,7 @@ "json-loader": "^0.5.7", "lodash": "^4.17.21", "mapbox-gl": "chairemobilite/mapbox-gl-js#39bbf9aeb1859424e29cff2584715fddc9d018b9", + "mjolnir.js": "^2.7.0", "moment": "^2.29.4", "moment-business-days": "^1.2.0", "papaparse": "^5.3.1", @@ -91,6 +93,7 @@ "@typescript-eslint/parser": "^5.45.1", "copyfiles": "^2.4.1", "cross-env": "^7.0.2", + "deck.gl": "^8.9.32", "dotenv": "^8.2.0", "enzyme": "^3.11.0", "enzyme-adapter-react-16": "^1.15.4", @@ -101,6 +104,7 @@ "jest": "^27.3.1", "jest-each": "^27.3.1", "jest-fetch-mock": "^3.0.3", + "mjolnir.js": "^2.7.0", "mockdate": "^3.0.2", "prettier-eslint-cli": "^7.1.0", "react-select-event": "^5.0.0", diff --git a/packages/chaire-lib-frontend/src/services/map/IMapEventHandler.ts b/packages/chaire-lib-frontend/src/services/map/IMapEventHandler.ts index 23228eba..0cb0c2f5 100644 --- a/packages/chaire-lib-frontend/src/services/map/IMapEventHandler.ts +++ b/packages/chaire-lib-frontend/src/services/map/IMapEventHandler.ts @@ -4,51 +4,114 @@ * This file is licensed under the MIT License. * License text available at https://opensource.org/licenses/MIT */ -import MapboxGL from 'mapbox-gl'; +import { MjolnirEvent } from 'mjolnir.js'; +import { PickingInfo, Deck } from 'deck.gl/typed'; -// TODO: Make this independent of mapbox eventually. For now, we use mapbox -// types, as they are already defined, when we have more implementations, we can -// review this -type MapEventHandler = (e: MapboxGL.MapMouseEvent) => void; -type MapLayerEventHandler = (e: MapboxGL.MapLayerMouseEvent & MapboxGL.EventData) => void; +export type MapCallbacks = { pickMultipleObjects: typeof Deck.prototype.pickMultipleObjects }; +export type PointInfo = { coordinates: number[]; pixel: [number, number] }; +export type MapEventHandler = (pointInfo: PointInfo, e: MjolnirEvent, mapCallbacks: MapCallbacks) => void; +export type MapSelectEventHandler = (pickInfo: PickingInfo[], e: MjolnirEvent, mapCallbacks: MapCallbacks) => void; +export type MapLayerEventHandler = (pickInfo: PickingInfo, e: MjolnirEvent, mapCallbacks: MapCallbacks) => void; +export type TooltipEventHandler = ( + pickInfo: PickingInfo, + mapCallbacks: MapCallbacks +) => string | undefined | { text: string; containsHtml: boolean }; + +export type layerEventNames = 'onLeftClick' | 'onRightClick' | 'onDragStart' | 'onDrag' | 'onDragEnd' | 'onHover'; +export type tooltipEventNames = 'onTooltip'; +export type mapEventNames = 'onLeftClick' | 'onRightClick'; + +export type MapEventHandlerDescriptor = { + /** Type for handlers that only require the layer to be active */ + type: 'map'; + eventName: mapEventNames; + /** + * Condition function for which this handler applies. It will be checked + * before actually calling the handler, so the handler can assume this is + * true. + * + * TODO: This should depend on some application's state or context, that + * should be passed here. For now, we pass the active section and the rest + * can be accessed through the serviceLocator + * */ + condition?: (activeSection: string) => boolean; + /** + * The event handler + */ + handler: MapEventHandler; +}; + +/** + * Type of event called when no layer event was handled on a specific element, + * but there might be features under the event location. Ideal to handle + * multiple features, as `MapLayerEventHandlerDescriptor` will only handle the + * top-most selected element + */ +export type MapSelectEventHandlerDescriptor = { + /** Type for handlers that only require the layer to be active */ + type: 'mapSelect'; + layerName: string; + eventName: mapEventNames; + /** + * Condition function for which this handler applies. It will be checked + * before actually calling the handler, so the handler can assume this is + * true. + * + * TODO: This should depend on some application's state or context, that + * should be passed here. For now, we pass the active section and the rest + * can be accessed through the serviceLocator + * */ + condition?: (activeSection: string) => boolean; + /** + * The event handler + */ + handler: MapSelectEventHandler; +}; + +export type MapLayerEventHandlerDescriptor = { + /** Type for handler that require selected features */ + type: 'layer'; + layerName: string; + eventName: layerEventNames; + /** + * Condition function for which this handler applies. It will be checked + * before actually calling the handler, so the handler can assume this is + * true. + * + * TODO: This should depend on some application's state or context, that + * should be passed here. For now, we pass the active section and the rest + * can be accessed through the serviceLocator + * */ + condition?: (activeSection: string) => boolean; + /** + * The event handler + */ + handler: MapLayerEventHandler; +}; + +export type TooltipEventHandlerDescriptor = { + /** Type for handler that require selected features */ + type: 'tooltip'; + layerName: string; + eventName: tooltipEventNames; + /** + * Condition function for which this handler applies. It will be checked + * before actually calling the handler, so the handler can assume this is + * true. + * + * TODO: This should depend on some application's state or context, that + * should be passed here. For now, we pass the active section and the rest + * can be accessed through the serviceLocator + * */ + condition?: (activeSection: string) => boolean; + /** + * The event handler + */ + handler: TooltipEventHandler; +}; export type MapEventHandlerDescription = - | { - /** Type for handler that require selected features */ - type: 'layer'; - layerName: string; - eventName: keyof MapboxGL.MapLayerEventType; - /** - * Condition function for which this handler applies. It will be checked - * before actually calling the handler, so the handler can assume this is - * true. - * - * TODO: This should depend on some application's state or context, that - * should be passed here. For now, we pass the active section and the rest - * can be accessed through the serviceLocator - * */ - condition?: (activeSection: string) => boolean; - /** - * The event handler - */ - handler: MapLayerEventHandler; - } - | { - /** Type for handlers that only require the layer to be active */ - type: 'map'; - eventName: keyof MapboxGL.MapEventType; - /** - * Condition function for which this handler applies. It will be checked - * before actually calling the handler, so the handler can assume this is - * true. - * - * TODO: This should depend on some application's state or context, that - * should be passed here. For now, we pass the active section and the rest - * can be accessed through the serviceLocator - * */ - condition?: (activeSection: string) => boolean; - /** - * The event handler - */ - handler: MapEventHandler; - }; + | MapEventHandlerDescriptor + | MapLayerEventHandlerDescriptor + | TooltipEventHandlerDescriptor + | MapSelectEventHandlerDescriptor; diff --git a/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts b/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts index e19ed810..acd52bf5 100644 --- a/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts +++ b/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts @@ -202,7 +202,9 @@ class MapboxLayerManager { } getEnabledLayers(): MapLayer[] { - return this._enabledLayers.map((layerName) => this._layersByName[layerName]); + return this._enabledLayers + .filter((layerName) => this._layersByName[layerName].layerData.features.length > 0) + .map((layerName) => this._layersByName[layerName]); } getLayerNames() { diff --git a/packages/chaire-lib-frontend/src/services/map/events/GlobalMapEvents.ts b/packages/chaire-lib-frontend/src/services/map/events/GlobalMapEvents.ts index b5c14b69..1395d5aa 100644 --- a/packages/chaire-lib-frontend/src/services/map/events/GlobalMapEvents.ts +++ b/packages/chaire-lib-frontend/src/services/map/events/GlobalMapEvents.ts @@ -4,9 +4,9 @@ * This file is licensed under the MIT License. * License text available at https://opensource.org/licenses/MIT */ -import MapboxGL from 'mapbox-gl'; import _debounce from 'lodash/debounce'; import { lineString, bboxPolygon, bbox, feature } from '@turf/turf'; +import { MjolnirEvent } from 'mjolnir.js'; import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; import Preferences from 'chaire-lib-common/lib/config/Preferences'; @@ -19,10 +19,10 @@ import { MapUpdateLayerEventType } from './MapEventsCallbacks'; // TODO: Make zoomLimit modifiable by user const zoomLimit = 14; //Zoom levels smaller than this will not apply line separation // eslint-disable-next-line @typescript-eslint/ban-types -let applyAestheticChangesNonce: Object = new Object(); +const applyAestheticChangesNonce: Object = new Object(); /* This file encapsulates global map events, that do not require a specific context */ - +/* const onMouseOut = (_e: MapboxGL.MapMouseEvent) => { serviceLocator.eventManager.emit('map.updateMouseCoordinates', null); }; @@ -69,18 +69,20 @@ const onDragStart = (e: MapboxGL.MapMouseEvent) => { map._draggingEventsOrder = ['dragstart']; }; -const onMouseMove = (e: MapboxGL.MapMouseEvent) => { +const onMouseMove = (e: MjolnirEvent) => { serviceLocator.eventManager.emit('map.updateMouseCoordinates', e.lngLat.toArray()); }; - +*/ const globalEventDescriptors: MapEventHandlerDescription[] = [ - { type: 'map', eventName: 'mouseout', handler: onMouseOut }, + /* { type: 'map', eventName: 'mouseout', handler: onMouseOut }, { type: 'map', eventName: 'zoomend', handler: onZoomEnd }, { type: 'map', eventName: 'dragend', handler: onDragEnd }, { type: 'map', eventName: 'dragstart', handler: onDragStart }, - { type: 'map', eventName: 'mousemove', handler: onMouseMove } + { type: 'map', eventName: 'mousemove', handler: onMouseMove } */ ]; +// TODO Move to Transition +/* const applyAestheticChanges = async (boundsGL: MapboxGL.LngLatBounds, zoom: number): Promise => { if (!Preferences.get('features.map.prettyDisplay', false)) { return; @@ -128,6 +130,6 @@ const applyAestheticChanges = async (boundsGL: MapboxGL.LngLatBounds, zoom: numb serviceLocator.eventManager.emit('map.updateLayers', { transitNodes: transitNodes }); -}; +}; */ export default globalEventDescriptors; diff --git a/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts index 6f2de5bd..bb97bdf5 100644 --- a/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts +++ b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts @@ -7,13 +7,13 @@ export type LayerConfiguration = { // TODO Type this properly. When the data in layers.config.ts is used by the new API, add it here - [key: string]: any + [key: string]: any; }; export type MapLayer = { /** Unique identifier for this layer */ id: string; - /** + /** * Whether the layer is visible. The layer visibility is typically defined * by the user. It does not mean it is always visible. It is only visible * when it is enabled by the application. diff --git a/packages/transition-frontend/package.json b/packages/transition-frontend/package.json index 9815bc37..c2196a7e 100644 --- a/packages/transition-frontend/package.json +++ b/packages/transition-frontend/package.json @@ -24,6 +24,10 @@ }, "dependencies": { "@alienfast/i18next-loader": "^1.1.4", + "@deck.gl/core": "8.9.32", + "@deck.gl/extensions": "8.9.32", + "@deck.gl/geo-layers": "8.9.32", + "@deck.gl/layers": "8.9.32", "@deck.gl/react": "^8.9.32", "@fortawesome/fontawesome-svg-core": "^1.2.32", "@fortawesome/free-solid-svg-icons": "^5.15.1", @@ -40,11 +44,13 @@ "date-fns": "^2.30.0", "deck.gl": "^8.9.32", "element-resize-event": "^3.0.6", + "gl-matrix": "^3.4.3", "history": "^4.9.0", "i18next": "^22.4.15", "lodash": "^4.17.21", "mapbox-gl": "chairemobilite/mapbox-gl-js#39bbf9aeb1859424e29cff2584715fddc9d018b9", "maplibre-gl": "^3.6.1", + "mjolnir.js": "^2.7.0", "moment": "^2.29.4", "moment-business-days": "^1.2.0", "papaparse": "^5.3.0", @@ -106,6 +112,7 @@ "jest-fetch-mock": "^3.0.3", "json-loader": "^0.5.7", "mini-css-extract-plugin": "^0.9.0", + "mjolnir.js": "^2.7.0", "mockdate": "^3.0.2", "prettier-eslint-cli": "^7.1.0", "react-test-renderer": "^16.13.1", diff --git a/packages/transition-frontend/src/components/forms/node/TransitNodeEdit.tsx b/packages/transition-frontend/src/components/forms/node/TransitNodeEdit.tsx index 50f20a58..21009a2a 100644 --- a/packages/transition-frontend/src/components/forms/node/TransitNodeEdit.tsx +++ b/packages/transition-frontend/src/components/forms/node/TransitNodeEdit.tsx @@ -180,7 +180,7 @@ class TransitNodeEdit extends SaveableObjectForm { (oldGeojson.features[0].geometry as GeoJSON.Point).coordinates = coordinates; - return oldGeojson; + return turfFeatureCollection([oldGeojson.features[0]]); } }); } diff --git a/packages/transition-frontend/src/components/forms/path/TransitPathEdit.tsx b/packages/transition-frontend/src/components/forms/path/TransitPathEdit.tsx index d000648b..923673d5 100644 --- a/packages/transition-frontend/src/components/forms/path/TransitPathEdit.tsx +++ b/packages/transition-frontend/src/components/forms/path/TransitPathEdit.tsx @@ -56,8 +56,6 @@ interface PathFormProps extends WithTranslation { interface PathFormState extends SaveableObjectState { pathErrors: string[]; confirmModalSchedulesAffectedlIsOpen: boolean; - waypointDraggingAfterNodeIndex?: number; - waypointDraggingIndex?: number; } class TransitPathEdit extends SaveableObjectForm { @@ -97,7 +95,6 @@ class TransitPathEdit extends SaveableObjectForm) => { - if (this.props.path.isFrozen()) { - (serviceLocator.eventManager as EventManager).emitEvent('map.updateLayer', { - layerName: 'transitPathWaypointsSelected', - data: turfFeatureCollection([]) - }); - return true; - } - (serviceLocator.eventManager as EventManager).emitEvent('map.updateLayer', { - layerName: 'transitPathWaypointsSelected', - data: turfFeatureCollection([waypointGeojson]) - }); - this.setState((oldState) => { - return { - waypointDraggingAfterNodeIndex: waypointGeojson.properties.afterNodeIndex, - waypointDraggingIndex: waypointGeojson.properties.waypointIndex - }; - }); - }; - onDragWaypoint = (coordinates: [number, number]) => { if (this.props.path.isFrozen()) { (serviceLocator.eventManager as EventManager).emitEvent('map.updateLayer', { @@ -258,7 +233,12 @@ class TransitPathEdit extends SaveableObjectForm { + onReplaceWaypointByNodeId = async ( + nodeId: string, + waypointType = 'engine', + waypointIndex: number, + afterNodeIndex: number + ) => { if (this.props.path.isFrozen()) { (serviceLocator.eventManager as EventManager).emitEvent('map.updateLayer', { layerName: 'transitPathWaypointsSelected', @@ -266,12 +246,7 @@ class TransitPathEdit extends SaveableObjectForm('map.updateLayer', { @@ -281,19 +256,14 @@ class TransitPathEdit extends SaveableObjectForm { + onUpdateWaypoint = (coordinates: [number, number], waypointIndex: number, afterNodeIndex: number) => { (serviceLocator.eventManager as EventManager).emitEvent('map.updateLayer', { layerName: 'transitPathWaypointsSelected', data: turfFeatureCollection([]) }); if (!this.props.path.isFrozen()) { this.props.path - .updateWaypoint( - coordinates, - waypointType, - this.state.waypointDraggingAfterNodeIndex || 0, - this.state.waypointDraggingIndex || 0 - ) + .updateWaypoint(coordinates, undefined, afterNodeIndex, waypointIndex) .then((response) => { this.props.path.validate(); serviceLocator.selectedObjectsManager.update('path', this.props.path); @@ -305,10 +275,6 @@ class TransitPathEdit extends SaveableObjectForm { mapStyleChoices.push({ label: props.t(`main:preferences:mapStyles:${key}`), value: mapStyles[key] diff --git a/packages/transition-frontend/src/components/forms/transitRouting/TransitRoutingForm.tsx b/packages/transition-frontend/src/components/forms/transitRouting/TransitRoutingForm.tsx index 73d39264..b0180a43 100644 --- a/packages/transition-frontend/src/components/forms/transitRouting/TransitRoutingForm.tsx +++ b/packages/transition-frontend/src/components/forms/transitRouting/TransitRoutingForm.tsx @@ -40,6 +40,7 @@ import TimeOfTripComponent from './widgets/TimeOfTripComponent'; import { RoutingOrTransitMode } from 'chaire-lib-common/lib/config/routingModes'; import { EventManager } from 'chaire-lib-common/lib/services/events/EventManager'; import { MapUpdateLayerEventType } from 'chaire-lib-frontend/lib/services/map/events/MapEventsCallbacks'; +import { emptyFeatureCollection } from 'chaire-lib-common/lib/services/geodata/GeoJSONUtils'; export interface TransitRoutingFormProps extends WithTranslation { // TODO tahini batch routing @@ -121,8 +122,8 @@ class TransitRoutingForm extends ChangeEventsForm { private pathLayerManager: PathMapLayerManager; private defaultZoomArray: [number]; private defaultCenter: [number, number]; - private mapEvents: { [key: string]: { [key: string]: MapEventHandlerDescription[] } }; + private mapEvents: { + map: { [evtName in mapEventNames]?: MapEventHandlerDescriptor[] }; + layers: { + [layerName: string]: { + [evtName in layerEventNames]?: MapLayerEventHandlerDescriptor[]; + }; + }; + tooltips: { + [layerName: string]: { + [evtName in tooltipEventNames]?: TooltipEventHandlerDescriptor[]; + }; + }; + mapSelect: { + [layerName: string]: { + [evtName in mapEventNames]?: MapSelectEventHandlerDescriptor[]; + }; + }; + }; private map: MapboxGL.Map | undefined; private popupManager: MapPopupManager; private mapContainer; private draw: MapboxDraw | undefined; + private mapCallbacks: MapCallbacks; constructor(props: MainMapProps) { super(props); // TODO: This should not be here - var xyzTileLayer = undefined; + let xyzTileLayer = undefined; if (process.env.CUSTOM_RASTER_TILES_XYZ_URL) { xyzTileLayer = new TileLayer({ data: process.env.CUSTOM_RASTER_TILES_XYZ_URL, minZoom: process.env.CUSTOM_RASTER_TILES_MIN_ZOOM - ? parseFloat(process.env.CUSTOM_RASTER_TILES_MIN_ZOOM) - : 0, + ? parseFloat(process.env.CUSTOM_RASTER_TILES_MIN_ZOOM) + : 0, maxZoom: process.env.CUSTOM_RASTER_TILES_MAX_ZOOM ? parseFloat(process.env.CUSTOM_RASTER_TILES_MAX_ZOOM) : 22, opacity: 0.5, tileSize: 256, - renderSubLayers: props => { + renderSubLayers: (props) => { const { - bbox: {west, south, east, north} + bbox: { west, south, east, north } } = props.tile; - + return new BitmapLayer(props, { data: null, image: props.data, @@ -122,7 +150,8 @@ class MainMap extends React.Component { }, enabledLayers: [], mapStyleURL: Preferences.get('mapStyleURL'), - xyzTileLayer: xyzTileLayer + xyzTileLayer: xyzTileLayer, + isDragging: false }; this.defaultZoomArray = [props.zoom]; @@ -132,23 +161,39 @@ class MainMap extends React.Component { this.pathLayerManager = new PathMapLayerManager(this.layerManager); this.popupManager = new MapPopupManager(); - this.mapContainer = HTMLElement; + this.mapContainer = createRef(); - this.mapEvents = {}; + this.mapEvents = { map: {}, layers: {}, tooltips: {}, mapSelect: {} }; const newEvents = [globalMapEvents, transitionMapEvents]; const newEventsArr = newEvents.flatMap((ev) => ev); newEventsArr.forEach((eventDescriptor) => { - this.mapEvents[eventDescriptor.eventName] = this.mapEvents[eventDescriptor.eventName] || {}; if (eventDescriptor.type === 'layer') { - const events = this.mapEvents[eventDescriptor.eventName][eventDescriptor.layerName] || []; + this.mapEvents.layers[eventDescriptor.layerName] = + this.mapEvents.layers[eventDescriptor.layerName] || {}; + const events = this.mapEvents.layers[eventDescriptor.layerName][eventDescriptor.eventName] || []; + events.push(eventDescriptor); + this.mapEvents.layers[eventDescriptor.layerName][eventDescriptor.eventName] = events; + } else if (eventDescriptor.type === 'tooltip') { + this.mapEvents.tooltips[eventDescriptor.layerName] = + this.mapEvents.tooltips[eventDescriptor.layerName] || {}; + const events = this.mapEvents.tooltips[eventDescriptor.layerName][eventDescriptor.eventName] || []; events.push(eventDescriptor); - this.mapEvents[eventDescriptor.eventName][eventDescriptor.layerName] = events; + this.mapEvents.tooltips[eventDescriptor.layerName][eventDescriptor.eventName] = events; + } else if (eventDescriptor.type === 'mapSelect') { + this.mapEvents.mapSelect[eventDescriptor.layerName] = + this.mapEvents.mapSelect[eventDescriptor.layerName] || {}; + const events = this.mapEvents.mapSelect[eventDescriptor.layerName][eventDescriptor.eventName] || []; + events.push(eventDescriptor); + this.mapEvents.mapSelect[eventDescriptor.layerName][eventDescriptor.eventName] = events; } else { - const events = this.mapEvents[eventDescriptor.eventName]['map'] || []; + const events = this.mapEvents.map[eventDescriptor.eventName] || []; events.push(eventDescriptor); - this.mapEvents[eventDescriptor.eventName]['map'] = events; + this.mapEvents.map[eventDescriptor.eventName] = events; } }); + this.mapCallbacks = { + pickMultipleObjects: this.pickMultipleObjects + }; } fitBounds = (coordinates: [number, number]) => { @@ -170,14 +215,6 @@ class MainMap extends React.Component { this.map?.boxZoom.disable(); }; - onEnableDragPan = () => { - this.map?.dragPan.enable(); - }; - - onDisableDragPan = () => { - this.map?.dragPan.disable(); - }; - showPathsByAttribute = (attribute: string, value: any) => { // attribute must be agency_id or line_id if (attribute === 'agency_id') { @@ -226,8 +263,6 @@ class MainMap extends React.Component { serviceLocator.eventManager.on('map.setCenter', this.setCenter); serviceLocator.eventManager.on('map.enableBoxZoom', this.onEnableBoxZoom); serviceLocator.eventManager.on('map.disableBoxZoom', this.onDisableBoxZoom); - serviceLocator.eventManager.on('map.enableDragPan', this.onEnableDragPan); - serviceLocator.eventManager.on('map.disableDragPan', this.onDisableDragPan); serviceLocator.eventManager.on('map.showContextMenu', this.showContextMenu); serviceLocator.eventManager.on('map.hideContextMenu', this.hideContextMenu); serviceLocator.eventManager.on('map.handleDrawControl', this.handleDrawControl); @@ -238,8 +273,8 @@ class MainMap extends React.Component { }; onPreferencesChange = (updates: any) => { - this.setState({ mapStyleURL: Preferences.get('mapStyleURL') }) - } + this.setState({ mapStyleURL: Preferences.get('mapStyleURL') }); + }; componentWillUnmount = () => { serviceLocator.removeService('layerManager'); @@ -262,8 +297,6 @@ class MainMap extends React.Component { serviceLocator.eventManager.off('map.setCenter', this.setCenter); serviceLocator.eventManager.off('map.enableBoxZoom', this.onEnableBoxZoom); serviceLocator.eventManager.off('map.disableBoxZoom', this.onDisableBoxZoom); - serviceLocator.eventManager.off('map.enableDragPan', this.onEnableDragPan); - serviceLocator.eventManager.off('map.disableDragPan', this.onDisableDragPan); serviceLocator.eventManager.off('map.showContextMenu', this.showContextMenu); serviceLocator.eventManager.off('map.hideContextMenu', this.hideContextMenu); serviceLocator.eventManager.off('map.handleDrawControl', this.handleDrawControl); @@ -278,25 +311,37 @@ class MainMap extends React.Component { } }; - private executeEvents = (e, events: MapEventHandlerDescription[]) => { - if (e.originalEvent && e.originalEvent.cancelBubble === true) { - return; + private executeEvent = (event: MapEventHandlerDescriptor, pointInfo: PointInfo, e: MjolnirEvent) => { + if (event.condition === undefined || event.condition(this.props.activeSection)) { + event.handler(pointInfo, e, this.mapCallbacks); } - for (let eventIndex = 0; eventIndex < events.length; eventIndex++) { - const event = events[eventIndex]; - if (event.condition === undefined || event.condition(this.props.activeSection)) { - event.handler(e); - } - if (e.originalEvent && e.originalEvent.cancelBubble === true) { - break; - } + }; + + private executeTooltipEvent = ( + event: TooltipEventHandlerDescriptor, + pickInfo: PickingInfo + ): string | undefined | { text: string; containsHtml: boolean } => { + if (event.condition === undefined || event.condition(this.props.activeSection)) { + return event.handler(pickInfo, this.mapCallbacks); } + return undefined; }; - getEventHandler = (events: MapEventHandlerDescription[]) => { - return (e) => this.executeEvents(e, events); + private executeMapSelectEvent = ( + event: MapSelectEventHandlerDescriptor, + pickInfo: PickingInfo[], + e: MjolnirEvent + ) => { + if (event.condition === undefined || event.condition(this.props.activeSection)) { + return event.handler(pickInfo, e, this.mapCallbacks); + } + return undefined; }; + /* getEventHandler = (events: MapEventHandlerDescription[]) => { + return (e) => this.executeEvents(e, events); + }; */ + showLayer = (layerName: string) => { this.layerManager.showLayer(layerName); }; @@ -466,12 +511,12 @@ class MainMap extends React.Component { data: GeoJSON.FeatureCollection | ((original: GeoJSON.FeatureCollection) => GeoJSON.FeatureCollection); }) => { this.layerManager.updateLayer(args.layerName, args.data); - this.setState({ enabledLayers: Object.keys(this.layerManager.getEnabledLayers()) }); + this.setState({ enabledLayers: this.layerManager.getEnabledLayers().map((layer) => layer.id) }); }; updateLayers = (geojsonByLayerName) => { this.layerManager.updateLayers(geojsonByLayerName); - this.setState({ enabledLayers: Object.keys(this.layerManager.getEnabledLayers()) }); + this.setState({ enabledLayers: this.layerManager.getEnabledLayers().map((layer) => layer.id) }); }; updateEnabledLayers = (enabledLayers: string[]) => { @@ -479,13 +524,16 @@ class MainMap extends React.Component { this.setState({ enabledLayers }); }; - showContextMenu = (e, elements) => { + showContextMenu = ( + position: [number, number], + elements: { key?: string; title: string; onClick: () => void; onHover?: () => void }[] + ) => { const contextMenu = document.getElementById('tr__main-map-context-menu'); if (!contextMenu) { return; } - contextMenu.style.left = e.point.x + 'px'; - contextMenu.style.top = e.point.y + 'px'; + contextMenu.style.left = position[0] + 'px'; + contextMenu.style.top = position[1] + 'px'; contextMenu.style.display = 'block'; ReactDom.render( @@ -530,11 +578,112 @@ class MainMap extends React.Component { viewStateChange.viewState.zoom; }; + onClick = (pickInfo: PickingInfo, event: MjolnirGestureEvent) => { + if (event.handled) return; + if (pickInfo.picked === false) { + if (event.leftButton) { + // Do the map's click events + const events = this.mapEvents.map.onLeftClick || []; + events.forEach((ev) => + this.executeEvent( + ev, + { coordinates: pickInfo.coordinate as number[], pixel: pickInfo.pixel as [number, number] }, + event + ) + ); + } else if (event.rightButton) { + // Do the map's right click events + const events = this.mapEvents.map.onRightClick || []; + events.forEach((ev) => + this.executeEvent( + ev, + { coordinates: pickInfo.coordinate as number[], pixel: pickInfo.pixel as [number, number] }, + event + ) + ); + } + } else { + const eventName = event.leftButton ? 'onLeftClick' : event.rightButton ? 'onRightClick' : undefined; + if (!eventName) return; + + // See if there are multiple picks to call proper mapSelect events + // TODO Update the radius to not have an hard-coded value, fine-tune as necessary + const objects: PickingInfo[] = (this.mapContainer.current as Deck).pickMultipleObjects({ + x: pickInfo.x, + y: pickInfo.y, + radius: 4, + layerIds: this.state.enabledLayers + }); + const objectsByLayer: { [layerName: string]: PickingInfo[] } = {}; + objects.forEach((picked) => { + if (picked.layer && picked.object) { + const allPicked = objectsByLayer[picked.layer.id] || []; + allPicked.push(picked); + objectsByLayer[picked.layer.id] = allPicked; + } + }); + Object.keys(objectsByLayer).forEach((layerName) => { + if (this.mapEvents.mapSelect[layerName] && this.mapEvents.mapSelect[layerName][eventName]) { + (this.mapEvents.mapSelect[layerName][eventName] as MapSelectEventHandlerDescriptor[]).forEach( + (ev) => { + this.executeMapSelectEvent(ev, objectsByLayer[layerName], event); + } + ); + } + }); + } + }; + + onTooltip = (pickInfo: PickingInfo) => { + if (pickInfo.picked === true && pickInfo.layer) { + if (pickInfo.layer && !pickInfo.object) { + console.log('it is indeed possible to have a layer and no object', pickInfo.layer.id); + return null; + } + const tooltipEvents = (this.mapEvents.tooltips[pickInfo.layer.id] || {}).onTooltip; + if (tooltipEvents) { + for (let i = 0; i < tooltipEvents.length; i++) { + const tooltip = this.executeTooltipEvent(tooltipEvents[i], pickInfo); + if (tooltip !== undefined) { + return typeof tooltip === 'string' + ? tooltip + : tooltip.containsHtml === true + ? { html: tooltip.text } + : tooltip.text; + } + } + } + } + return null; + }; + + setDragging = (dragging: boolean) => { + this.setState({ isDragging: dragging }); + }; + + pickMultipleObjects: typeof Deck.prototype.pickMultipleObjects = (opts: { + x: number; + y: number; + radius?: number | undefined; + depth?: number | undefined; + layerIds?: string[] | undefined; + unproject3D?: boolean | undefined; + }): PickingInfo[] => (this.mapContainer.current as Deck).pickMultipleObjects(opts); + render() { + // TODO: Deck.gl Migration: Should this be a state? To avoid recalculating for every render? See how often we render when the migration is complete const enabledLayers = this.layerManager.getEnabledLayers(); - const layers: Layer[] = enabledLayers - .map((layer) => getLayer({ layerDescription: layer, viewState: this.state.viewState })) + .map((layer) => + getLayer({ + layerDescription: layer, + viewState: this.state.viewState, + events: this.mapEvents.layers[layer.id], + activeSection: this.props.activeSection, + setDragging: this.setDragging, + mapCallbacks: this.mapCallbacks + }) + ) .filter((layer) => layer !== undefined) as Layer[]; if (this.state.xyzTileLayer) { @@ -545,14 +694,19 @@ class MainMap extends React.Component {
{this.props.children} - - - +
evt.preventDefault()}> + + + +
); } diff --git a/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx b/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx index dfe18cbf..e56b38bb 100644 --- a/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx +++ b/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx @@ -22,12 +22,12 @@ type _AnimatedArrowPathLayerProps = { * @default 3 */ speedDivider?: number; - }; +}; const defaultProps: DefaultProps = { - getSizeArray: {type: 'accessor', value: [4, 4]}, + getSizeArray: { type: 'accessor', value: [4, 4] }, speedDivider: 3 -} +}; export default class AnimatedArrowPathLayer extends PathLayer< DataT, @@ -52,9 +52,9 @@ export default class AnimatedArrowPathLayer { const currentTime = this.state.time || 0; this.setState({ - time: (currentTime + 1),// % loopLength, + time: currentTime + 1, // % loopLength, animationID: window.requestAnimationFrame(animate) // draw next frame - }) + }); }; const animationID = window.requestAnimationFrame(animate); this.setState({ @@ -63,7 +63,7 @@ export default class AnimatedArrowPathLayer void; + mapCallbacks: MapCallbacks; }; const stringToColor = (hexStringColor: string): [number, number, number] | [number, number, number, number] => [ @@ -54,7 +64,7 @@ const propertyToColor = ( : defaultRGBA; }; -const getLineLayer = (props: TransitionMapLayerProps): PathLayer => +const getLineLayer = (props: TransitionMapLayerProps, eventsToAdd): PathLayer => new PathLayer({ id: props.layerDescription.id, data: props.layerDescription.layerData.features, @@ -63,29 +73,24 @@ const getLineLayer = (props: TransitionMapLayerProps): PathLayer => getColor: (d) => propertyToColor(d, 'color'), opacity: 0.8, widthMinPixels: 2, + widthScale: 4, rounded: true, fadeTrail: true, trailLength: 400, currentTime: 0, shadowEnabled: false, - pickable: true + pickable: true, /*updateTriggers: { getWidth: routeIndex - }, - onHover: (line) => { - routeIndex = line.index; - }, - onClick: ({object}) => { - nodeSelected = null - routeSelected = [object] - } */ + },*/ + ...eventsToAdd }); -const getAnimatedArrowPathLayer = (props: TransitionMapLayerProps): AnimatedArrowPathLayer => +const getAnimatedArrowPathLayer = (props: TransitionMapLayerProps, eventsToAdd): AnimatedArrowPathLayer => new AnimatedArrowPathLayer({ id: props.layerDescription.id, data: props.layerDescription.layerData.features, - getPath: d => d.geometry.coordinates, + getPath: (d) => d.geometry.coordinates, pickable: true, getWidth: 100, /* @@ -95,9 +100,10 @@ const getAnimatedArrowPathLayer = (props: TransitionMapLayerProps): AnimatedArro getColor: (d) => propertyToColor(d, 'color'), getSizeArray: [4, 4], speedDivider: 10, + ...eventsToAdd }); -const getPolygonLayer = (props: TransitionMapLayerProps): GeoJsonLayer => +const getPolygonLayer = (props: TransitionMapLayerProps, eventsToAdd): GeoJsonLayer => new GeoJsonLayer({ id: props.layerDescription.id, data: props.layerDescription.layerData.features, @@ -112,10 +118,11 @@ const getPolygonLayer = (props: TransitionMapLayerProps): GeoJsonLayer => }, */ getFillColor: (d) => propertyToColor(d, 'color'), getLineColor: [80, 80, 80], - getLineWidth: 1 + getLineWidth: 1, + ...eventsToAdd }); -const getScatterLayer = (props: TransitionMapLayerProps): ScatterplotLayer => +const getScatterLayer = (props: TransitionMapLayerProps, eventsToAdd): ScatterplotLayer => new ScatterplotLayer({ id: props.layerDescription.id, data: props.layerDescription.layerData.features, @@ -125,33 +132,75 @@ const getScatterLayer = (props: TransitionMapLayerProps): ScatterplotLayer getFillColor: (d) => propertyToColor(d, 'color'), getLineColor: [255, 255, 255, 255], getRadius: (d, i) => 10, + radiusScale: 6, /* updateTriggers: { getRadius: nodeIndex }, */ - pickable: true - /*onHover: (node) => { - nodeIndex = node.index; - }, - onClick: ({object}) => { - routeSelected = null - nodeSelected = [object] - } */ + pickable: true, + ...eventsToAdd }); +const addEvents = ( + events: { [evtName in layerEventNames]?: MapLayerEventHandlerDescriptor[] }, + props: TransitionMapLayerProps +) => { + const layerEvents: any = {}; + const leftClickEvents = events.onLeftClick; + const rightClickEvents = events.onRightClick; + const checkHandler = (handlerDes: MapLayerEventHandlerDescriptor) => + handlerDes.condition === undefined || handlerDes.condition(props.activeSection); + const onLeftClickEvt = leftClickEvents === undefined ? [] : leftClickEvents; + const onRightClickEvt = rightClickEvents === undefined ? [] : rightClickEvents; + layerEvents.onClick = (info: PickingInfo, e: MjolnirGestureEvent) => { + if (e.leftButton) { + onLeftClickEvt.filter(checkHandler).forEach((ev) => ev.handler(info, e, props.mapCallbacks)); + } else if (e.rightButton) { + onRightClickEvt.filter(checkHandler).forEach((ev) => ev.handler(info, e, props.mapCallbacks)); + } + }; + const onDragEvt = events.onDrag; + const onDragEndEvt = events.onDragEnd; + const onDragStartEvt = events.onDragStart; + if (onDragStartEvt || onDragEvt || onDragEndEvt) { + const onDragStartArr = onDragStartEvt === undefined ? [] : onDragStartEvt; + layerEvents.onDragStart = (info: PickingInfo, e: MjolnirGestureEvent) => { + props.setDragging(true); + onDragStartArr.filter(checkHandler).forEach((ev) => ev.handler(info, e, props.mapCallbacks)); + }; + } + + if (onDragEvt) { + layerEvents.onDrag = (info: PickingInfo, e: MjolnirGestureEvent) => { + onDragEvt.filter(checkHandler).forEach((ev) => ev.handler(info, e, props.mapCallbacks)); + }; + } + + if (onDragStartEvt || onDragEvt || onDragEndEvt) { + const onDragEndArr = onDragEndEvt === undefined ? [] : onDragEndEvt; + layerEvents.onDragEnd = (info: PickingInfo, e: MjolnirGestureEvent) => { + props.setDragging(false); + onDragEndArr.filter(checkHandler).forEach((ev) => ev.handler(info, e, props.mapCallbacks)); + }; + } + + return layerEvents; +}; + const getLayer = (props: TransitionMapLayerProps): Layer | undefined => { if (props.layerDescription.layerData === undefined) { console.log('layer data is undefined', props.layerDescription.id); return undefined; } + const eventsToAdd = props.events !== undefined ? addEvents(props.events, props) : {}; if (props.layerDescription.configuration.type === 'circle') { // FIXME Try not to type as any - return getScatterLayer(props) as any; + return getScatterLayer(props, eventsToAdd) as any; } else if (props.layerDescription.configuration.type === 'line') { - return getLineLayer(props) as any; + return getLineLayer(props, eventsToAdd) as any; } else if (props.layerDescription.configuration.type === 'fill') { - return getPolygonLayer(props) as any; + return getPolygonLayer(props, eventsToAdd) as any; } else if (props.layerDescription.configuration.type === 'animatedArrowPath') { - return getAnimatedArrowPathLayer(props) as any; + return getAnimatedArrowPathLayer(props, eventsToAdd) as any; } console.log('unknown layer', props.layerDescription.configuration); return undefined; diff --git a/packages/transition-frontend/src/services/map/events/AccessibilityMapSectionMapEvents.ts b/packages/transition-frontend/src/services/map/events/AccessibilityMapSectionMapEvents.ts index cfc8c8ef..435c0836 100644 --- a/packages/transition-frontend/src/services/map/events/AccessibilityMapSectionMapEvents.ts +++ b/packages/transition-frontend/src/services/map/events/AccessibilityMapSectionMapEvents.ts @@ -4,60 +4,52 @@ * This file is licensed under the MIT License. * License text available at https://opensource.org/licenses/MIT */ -import MapboxGL from 'mapbox-gl'; +import { MjolnirEvent } from 'mjolnir.js'; +import { PickingInfo } from 'deck.gl/typed'; -import { MapEventHandlerDescription } from 'chaire-lib-frontend/lib/services/map/IMapEventHandler'; +import { MapEventHandlerDescription, PointInfo } from 'chaire-lib-frontend/lib/services/map/IMapEventHandler'; import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; /* This file encapsulates map events specific for the 'accessibilityMap' section */ const isAccessMapActiveSection = (activeSection: string) => activeSection === 'accessibilityMap'; -const onAccessMapSectionMapClick = (e: MapboxGL.MapMouseEvent) => { - serviceLocator.eventManager.emit('routing.transitAccessibilityMap.clickedOnMap', e.lngLat.toArray()); - e.originalEvent.stopPropagation(); +const onAccessMapSectionMapClick = (pointInfo: PointInfo, event: MjolnirEvent) => { + serviceLocator.eventManager.emit('routing.transitAccessibilityMap.clickedOnMap', pointInfo.coordinates); }; -const onAccessMapMouseDown = (e: MapboxGL.MapLayerMouseEvent) => { - if (!e.features || e.features.length === 0) { +const onLocationDrag = (info: PickingInfo, e: MjolnirEvent) => { + const location = info.object?.properties?.location; + if (!location) { return; } - // start drag: - const map = e.target as any; - serviceLocator.eventManager.emit('map.disableDragPan'); - map._currentDraggingFeature = 'accessibilityMapLocation'; - e.originalEvent.stopPropagation(); + serviceLocator.eventManager.emit('routing.transitAccessibilityMap.dragLocation', info.coordinate); }; -const onAccessMapMouseUp = (e: MapboxGL.MapMouseEvent) => { - const map = e.target as any; - if (map._currentDraggingFeature === 'accessibilityMapLocation') { - serviceLocator.eventManager.emit('routing.transitAccessibilityMap.dragLocation', e.lngLat.toArray()); - map._currentDraggingFeature = null; - serviceLocator.eventManager.emit('map.enableDragPan'); - e.originalEvent.stopPropagation(); - } -}; - -const onAccessMapMouseMove = (e: MapboxGL.MapMouseEvent) => { - const map = e.target as any; - if (map._currentDraggingFeature === 'accessibilityMapLocation') { - serviceLocator.eventManager.emit('routing.transitAccessibilityMap.dragLocation', e.lngLat.toArray()); - e.originalEvent.stopPropagation(); +const onLocationDragEnd = (info: PickingInfo, e: MjolnirEvent) => { + const location = info.object?.properties?.location; + if (!location) { + return; } + serviceLocator.eventManager.emit('routing.transitAccessibilityMap.dragLocation', info.coordinate); }; const accessMapSectionEventDescriptors: MapEventHandlerDescription[] = [ - { type: 'map', eventName: 'click', condition: isAccessMapActiveSection, handler: onAccessMapSectionMapClick }, + { type: 'map', eventName: 'onLeftClick', condition: isAccessMapActiveSection, handler: onAccessMapSectionMapClick }, { type: 'layer', - eventName: 'mousedown', layerName: 'accessibilityMapPoints', + eventName: 'onDrag', condition: isAccessMapActiveSection, - handler: onAccessMapMouseDown + handler: onLocationDrag }, - { type: 'map', eventName: 'mouseup', condition: isAccessMapActiveSection, handler: onAccessMapMouseUp }, - { type: 'map', eventName: 'mousemove', condition: isAccessMapActiveSection, handler: onAccessMapMouseMove } + { + type: 'layer', + layerName: 'accessibilityMapPoints', + eventName: 'onDragEnd', + condition: isAccessMapActiveSection, + handler: onLocationDragEnd + } ]; export default accessMapSectionEventDescriptors; diff --git a/packages/transition-frontend/src/services/map/events/NodeLayerMapEvents.ts b/packages/transition-frontend/src/services/map/events/NodeLayerMapEvents.ts index 2dd54045..9498b015 100644 --- a/packages/transition-frontend/src/services/map/events/NodeLayerMapEvents.ts +++ b/packages/transition-frontend/src/services/map/events/NodeLayerMapEvents.ts @@ -5,93 +5,36 @@ * License text available at https://opensource.org/licenses/MIT */ /** This file encapsulates map events that apply to the nodes layer, in any section */ -import MapboxGL from 'mapbox-gl'; -import { Popup } from 'mapbox-gl'; - import { MapEventHandlerDescription } from 'chaire-lib-frontend/lib/services/map/IMapEventHandler'; import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; -import Node from 'transition-common/lib/services/nodes/Node'; +import TransitNode from 'transition-common/lib/services/nodes/Node'; +import { PickingInfo } from 'deck.gl/typed'; -const hoverNode = (node: Node, nodeTitle = node.toString(false)) => { - const popup = new Popup({ - offset: 10, - anchor: 'bottom' - }); - const nodeId = node.get('id'); - popup.setLngLat(serviceLocator.collectionManager.get('nodes').getById(nodeId).geometry.coordinates); +const hoverNode = (node: TransitNode, nodeTitle = node.toString(false)) => { if (serviceLocator && serviceLocator.keyboardManager && serviceLocator.keyboardManager.keyIsPressed('alt')) { - popup.setHTML( - `

${nodeTitle}
${nodeId}${ + return { + text: `

${nodeTitle}
${node.getId()}${ node.getAttributes().data.weight ? `
w${Math.round(node.getAttributes().data.weight)}` : '' - }

` - ); - } else { - popup.setHTML(`

${nodeTitle}

`); - } - serviceLocator.eventManager.emit('map.addPopup', nodeId, popup); -}; - -const unhoverNode = (nodeId: string) => { - if (serviceLocator && serviceLocator.keyboardManager && serviceLocator.keyboardManager.keyIsPressed('alt')) { - // keep popup for now when alt is pressed + }

`, + containsHtml: true + }; } else { - serviceLocator.eventManager.emit('map.removePopup', nodeId); + return `${nodeTitle}`; } }; -const onNodeMouseEnter = (e: MapboxGL.MapLayerMouseEvent) => { - // TODO Adding a custom field to the map. Legal, but not clean... figure out how to do this, implementation-independent - const map = e.target as any; - if (e.features && e.features[0]) { - e.target.getCanvas().style.cursor = 'pointer'; - const nodeGeojson = e.features[0]; - const hoverNodeIntegerId = nodeGeojson.id; - const hoverNodeId = nodeGeojson.properties?.id; - const node = new Node( - serviceLocator.collectionManager.get('nodes').getById(hoverNodeId).properties, - false, - serviceLocator.collectionManager - ); - - // unhover previous node: - if (map._hoverNodeIntegerId) { - serviceLocator.eventManager.emit('node.unhover', map._hoverNodeId); - e.target.setFeatureState( - { source: map._hoverNodeSource, id: map._hoverNodeIntegerId }, - { size: 1, hover: false } - ); - } - e.target.setFeatureState({ source: nodeGeojson.source, id: hoverNodeIntegerId }, { size: 1.5, hover: true }); - - // See https://github.com/alex3165/react-mapbox-gl/issues/506 - map._hoverNodeIntegerId = hoverNodeIntegerId; - map._hoverNodeId = hoverNodeId; - map._hoverNodeSource = nodeGeojson.source; - - hoverNode(node); - } -}; - -const onNodeMouseLeave = (e: MapboxGL.MapLayerMouseEvent) => { - const map = e.target as any; - e.target.getCanvas().style.cursor = ''; - - if (map._hoverNodeIntegerId) { - unhoverNode(map._hoverNodeId); - e.target.setFeatureState( - { source: map._hoverNodeSource, id: map._hoverNodeIntegerId }, - { size: 1, hover: false } - ); - } - - map._hoverNodeIntegerId = null; - map._hoverNodeId = null; - map._hoverNodeSource = null; +const onTooltip = (info: PickingInfo): string | undefined | { text: string; containsHtml: boolean } => { + const nodeId = info.object!.properties.id; + const node = new TransitNode( + serviceLocator.collectionManager.get('nodes').getById(nodeId).properties, + false, + serviceLocator.collectionManager + ); + return hoverNode(node); }; const nodeLayerEventDescriptors: MapEventHandlerDescription[] = [ - { type: 'layer', layerName: 'transitNodes', eventName: 'mouseenter', handler: onNodeMouseEnter }, - { type: 'layer', layerName: 'transitNodes', eventName: 'mouseleave', handler: onNodeMouseLeave } + { type: 'tooltip', layerName: 'transitNodes', eventName: 'onTooltip', handler: onTooltip } ]; export default nodeLayerEventDescriptors; diff --git a/packages/transition-frontend/src/services/map/events/NodeSectionMapEvents.ts b/packages/transition-frontend/src/services/map/events/NodeSectionMapEvents.ts index 14a09ac2..f576715e 100644 --- a/packages/transition-frontend/src/services/map/events/NodeSectionMapEvents.ts +++ b/packages/transition-frontend/src/services/map/events/NodeSectionMapEvents.ts @@ -4,13 +4,12 @@ * This file is licensed under the MIT License. * License text available at https://opensource.org/licenses/MIT */ -import MapboxGL from 'mapbox-gl'; import _uniq from 'lodash/uniq'; +import { PickingInfo } from 'deck.gl/typed'; +import { MjolnirEvent } from 'mjolnir.js'; -import { MapEventHandlerDescription } from 'chaire-lib-frontend/lib/services/map/IMapEventHandler'; +import { MapEventHandlerDescription, PointInfo } from 'chaire-lib-frontend/lib/services/map/IMapEventHandler'; import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; -import { metersToPixels } from 'chaire-lib-common/lib/utils/geometry/ConversionUtils'; -import { permutationsWithRepetition } from 'chaire-lib-common/lib/utils/MathUtils'; import TransitNode from 'transition-common/lib/services/nodes/Node'; import Preferences from 'chaire-lib-common/lib/config/Preferences'; @@ -18,30 +17,89 @@ import Preferences from 'chaire-lib-common/lib/config/Preferences'; const isNodeActiveSection = (activeSection: string) => activeSection === 'nodes'; +const onSelectedNodeDrag = (info: PickingInfo, e: MjolnirEvent) => { + const selectedNode = serviceLocator.selectedObjectsManager.get('node'); + const selectedFeature = info.object; + if ( + selectedNode && + selectedFeature.properties?.id === selectedNode.get('id') && + selectedNode.get('is_frozen') !== true + ) { + serviceLocator.eventManager.emit('selected.drag.node', info.coordinate); + } +}; + +const onSelectedNodeDragEnd = (info: PickingInfo, e: MjolnirEvent) => { + const selectedNode = serviceLocator.selectedObjectsManager.get('node'); + const selectedFeature = info.object; + if ( + selectedNode && + selectedFeature.properties?.id === selectedNode.get('id') && + selectedNode.get('is_frozen') !== true + ) { + // TODO Re-implement this with deck gl/openstreetmap + // serviceLocator.eventManager.emit('selected.updateAutocompleteNameChoices.node', getRoadLabelAround(map, e)); + serviceLocator.eventManager.emit('selected.dragEnd.node', info.coordinate); + } +}; + +const onNodeSectionContextMenu = (pointInfo: PointInfo, event: MjolnirEvent) => { + const selectedNodes = serviceLocator.selectedObjectsManager.get('selectedNodes'); + const menu: { title: string; onClick: () => void }[] = []; + + if ( + selectedNodes !== undefined && + typeof selectedNodes === 'object' && + Array.isArray(selectedNodes) && + selectedNodes.length > 0 + ) { + menu.push( + { + title: 'transit:transitNode:editSelectedNodes', + onClick: () => { + serviceLocator.eventManager.emit('map.editUpdateMultipleNodes'); + } + }, + { + title: 'transit:transitNode:deleteSelectedNodes', + onClick: () => { + serviceLocator.eventManager.emit('map.deleteSelectedNodes'); + } + } + ); + } + + menu.push({ + title: 'transit:transitNode:deleteSelectedPolygon', + onClick: () => { + serviceLocator.eventManager.emit('map.deleteSelectedPolygon'); + } + }); + + serviceLocator.eventManager.emit('map.showContextMenu', pointInfo.pixel, menu); +}; + // TODO Should we split this in individual functions with conditions instead? // Test the performances first // TODO Original code in click.events.js had a _draggingEventsOrder check. Is // it still needed? If we have problems, there should be an event handler of // higher priority to check it before running any other -const onNodeSectionMapClick = (e: MapboxGL.MapMouseEvent) => { +/** + * Event handler called when a node in the node layer and section was clicked. + * It should edit the selected node if there are no current modifications and it + * is not a multiple selection. + * @param info + * @param e + * @returns + */ +const onNodeSelected = (info: PickingInfo, e: MjolnirEvent) => { const selectedNodes = serviceLocator.selectedObjectsManager.get('selectedNodes'); const selectedNode = serviceLocator.selectedObjectsManager.get('node'); + // Ignore the event if there is a multiple selection if (selectedNodes) return; - const features = e.target.queryRenderedFeatures( - [ - [e.point.x - 1, e.point.y - 1], - [e.point.x + 1, e.point.y + 1] - ], - { layers: ['transitNodes'] } - ); - - const map = e.target; - // TODO: If there are multiple selected features, offer the choice instead of editing the first one - const selectedFeature = features.length > 0 ? features[0] : undefined; - - const needsShiftKeyToCreateNode = Preferences.current?.transit?.nodes?.shiftClickToCreateNodes === true; + const selectedFeature = info.object; if (selectedFeature) { // Clicked on a feature, edit it if possible, ignore if a node is selected and has changed @@ -59,12 +117,30 @@ const onNodeSectionMapClick = (e: MapboxGL.MapMouseEvent) => { serviceLocator.selectedObjectsManager.select('node', transitNodeEdit); }); }); - } else if (!selectedNode && (!needsShiftKeyToCreateNode || e.originalEvent.shiftKey)) { + e.handled = true; + } +}; + +// TODO Should we split this in individual functions with conditions instead? +// Test the performances first +// TODO Original code in click.events.js had a _draggingEventsOrder check. Is +// it still needed? If we have problems, there should be an event handler of +// higher priority to check it before running any other +const onMapClicked = (pointInfo: PointInfo, e: MjolnirEvent) => { + const selectedNodes = serviceLocator.selectedObjectsManager.get('selectedNodes'); + // Ignore the event if there is a multiple selection + if (selectedNodes) return; + + const selectedNode = serviceLocator.selectedObjectsManager.get('node'); + + const needsShiftKeyToCreateNode = Preferences.current?.transit?.nodes?.shiftClickToCreateNodes === true; + + if (!selectedNode && (!needsShiftKeyToCreateNode || e.srcEvent.shiftKey)) { // If there is no selected node, create a new one const newTransitNode = new TransitNode( { - geography: { type: 'Point', coordinates: e.lngLat.toArray() }, + geography: { type: 'Point', coordinates: pointInfo.coordinates }, color: Preferences.get('transit.nodes.defaultColor'), routing_radius_meters: Preferences.get('transit.nodes.defaultRoutingRadiusMeters') }, @@ -73,103 +149,48 @@ const onNodeSectionMapClick = (e: MapboxGL.MapMouseEvent) => { ); newTransitNode.startEditing(); serviceLocator.selectedObjectsManager.select('node', newTransitNode); + // FIXME Migration to DeckGL: reimplement this + // serviceLocator.eventManager.emit('selected.updateAutocompleteNameChoices.node', getRoadLabelAround(map, e)); } else if (selectedNode) { const selectedTransitNode = selectedNode as TransitNode; if (!selectedTransitNode.isFrozen()) { // Otherwise, update the position of the current node - selectedTransitNode.set('geography.coordinates', e.lngLat.toArray()); - serviceLocator.eventManager.emit('selected.dragEnd.node', e.lngLat.toArray()); + // FIXME Migration to DeckGL: Reimplement + // serviceLocator.eventManager.emit('selected.updateAutocompleteNameChoices.node', getRoadLabelAround(map, e)); + selectedTransitNode.set('geography.coordinates', pointInfo.coordinates); + // FIXME Migration to DeckGL: Do we need to call this event? + // serviceLocator.eventManager.emit('selected.dragEnd.node', coordinates); serviceLocator.selectedObjectsManager.update('node', selectedNode); } } - e.originalEvent.stopPropagation(); -}; - -const onSelectedNodeMouseDown = (e: MapboxGL.MapLayerMouseEvent) => { - const features = e.features; - if (!features || features.length === 0) { - return; - } - const selectedNode = serviceLocator.selectedObjectsManager.get('node'); - if ( - selectedNode && - e.features && - e.features[0].properties?.id === selectedNode.get('id') && - selectedNode.get('is_frozen') !== true - ) { - // TODO Adding a custom field to the map. Legal, but not clean... figure out how to do this, implementation-independent - const map = e.target as any; - serviceLocator.eventManager.emit('map.disableDragPan'); - map._currentDraggingFeature = 'node'; - } -}; - -const onSelectedNodeMouseUp = (e: MapboxGL.MapMouseEvent) => { - const map = e.target as any; - // stop drag if on edit node: - if (map._currentDraggingFeature === 'node') { - serviceLocator.eventManager.emit('selected.dragEnd.node', e.lngLat.toArray()); - map._currentDraggingFeature = null; - e.originalEvent.stopPropagation(); - } -}; - -const onSelectedNodeMouseMove = (e: MapboxGL.MapMouseEvent) => { - const map = e.target as any; - if (map._currentDraggingFeature === 'node') { - serviceLocator.eventManager.emit('selected.drag.node', e.lngLat.toArray()); - e.originalEvent.stopPropagation(); - } -}; - -const onNodeSectionContextMenu = (e: MapboxGL.MapMouseEvent) => { - const selectedNodes = serviceLocator.selectedObjectsManager.get('selectedNodes'); - const menu: { title: string; onClick: () => void }[] = []; - - if ( - selectedNodes !== undefined && - typeof selectedNodes === 'object' && - Array.isArray(selectedNodes) && - selectedNodes.length > 0 - ) { - menu.push( - { - title: 'transit:transitNode:editSelectedNodes', - onClick: () => { - serviceLocator.eventManager.emit('map.editUpdateMultipleNodes'); - } - }, - { - title: 'transit:transitNode:deleteSelectedNodes', - onClick: () => { - serviceLocator.eventManager.emit('map.deleteSelectedNodes'); - } - } - ); - } - - menu.push({ - title: 'transit:transitNode:deleteSelectedPolygon', - onClick: () => { - serviceLocator.eventManager.emit('map.deleteSelectedPolygon'); - } - }); - - serviceLocator.eventManager.emit('map.showContextMenu', e, menu); + // TODO Migration to DeckGL: Do we need to stop propagation? + e.handled = true; }; const nodeSectionEventDescriptors: MapEventHandlerDescription[] = [ - { type: 'map', eventName: 'click', condition: isNodeActiveSection, handler: onNodeSectionMapClick }, { type: 'layer', - eventName: 'mousedown', + layerName: 'transitNodes', + eventName: 'onLeftClick', + condition: isNodeActiveSection, + handler: onNodeSelected + }, + { type: 'map', eventName: 'onLeftClick', condition: isNodeActiveSection, handler: onMapClicked }, + { + type: 'layer', + layerName: 'transitNodesSelected', + eventName: 'onDrag', + condition: isNodeActiveSection, + handler: onSelectedNodeDrag + }, + { + type: 'layer', layerName: 'transitNodesSelected', + eventName: 'onDragEnd', condition: isNodeActiveSection, - handler: onSelectedNodeMouseDown + handler: onSelectedNodeDragEnd }, - { type: 'map', eventName: 'mouseup', condition: isNodeActiveSection, handler: onSelectedNodeMouseUp }, - { type: 'map', eventName: 'mousemove', condition: isNodeActiveSection, handler: onSelectedNodeMouseMove }, - { type: 'map', eventName: 'contextmenu', condition: isNodeActiveSection, handler: onNodeSectionContextMenu } + { type: 'map', eventName: 'onRightClick', condition: isNodeActiveSection, handler: onNodeSectionContextMenu } ]; export default nodeSectionEventDescriptors; diff --git a/packages/transition-frontend/src/services/map/events/PathLayerMapEvents.ts b/packages/transition-frontend/src/services/map/events/PathLayerMapEvents.ts index aae7d6c0..50e63b63 100644 --- a/packages/transition-frontend/src/services/map/events/PathLayerMapEvents.ts +++ b/packages/transition-frontend/src/services/map/events/PathLayerMapEvents.ts @@ -5,128 +5,29 @@ * License text available at https://opensource.org/licenses/MIT */ /** This file encapsulates map events that apply to the path* layer, in any section */ -import MapboxGL, { Popup } from 'mapbox-gl'; +import { PickingInfo } from 'deck.gl/typed'; import { MapEventHandlerDescription } from 'chaire-lib-frontend/lib/services/map/IMapEventHandler'; import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; import Path from 'transition-common/lib/services/path/Path'; -const hoverPath = (pathId: string, coordinates: [number, number], pathName: string) => { - const popup = new Popup({ - offset: 10, - anchor: 'bottom' - }); - popup.setLngLat(coordinates); - popup.setHTML(`

${pathName}

`); - serviceLocator.eventManager.emit('map.addPopup', pathId, popup); -}; - -export const unhoverPath = (pathId: string) => { - serviceLocator.eventManager.emit('map.removePopup', pathId); -}; - -const onTransitPathSelectedMouseEnter = (e: MapboxGL.MapLayerMouseEvent) => { - if (e.features && e.features[0]) { - e.target.getCanvas().style.cursor = 'pointer'; - } -}; - -const onTransitPathSelectedMouseLeave = (e: MapboxGL.MapLayerMouseEvent) => { - e.target.getCanvas().style.cursor = ''; -}; - -const onTransitPathWaypointMouseEnter = (e: MapboxGL.MapLayerMouseEvent) => { - if (e.features && e.features[0]) { - e.target.getCanvas().style.cursor = 'pointer'; - } -}; - -const onTransitPathWaypointMouseLeave = (e: MapboxGL.MapLayerMouseEvent) => { - e.target.getCanvas().style.cursor = ''; -}; - -export const onTransitPathsMouseEnter = (e: MapboxGL.MapLayerMouseEvent) => { - if (e.target.getZoom() >= 12 && e.features && e.features[0]) { - const map = e.target as any; - e.target.getCanvas().style.cursor = 'pointer'; - const pathGeojson = e.features[0]; - const path = new Path( - serviceLocator.collectionManager.get('paths').getById(pathGeojson.properties?.id).properties, - false, - serviceLocator.collectionManager - ); - const line = path.getLine(); - - if (map._hoverPathIntegerId) { - unhoverPath(map._hoverPathId); - e.target.setFeatureState( - { source: map._hoverPathSource, id: map._hoverPathIntegerId }, - { size: 2, hover: false } - ); - } - - e.target.setFeatureState({ source: pathGeojson.source, id: pathGeojson.id }, { size: 3, hover: true }); - - // See https://github.com/alex3165/react-mapbox-gl/issues/506 - map._hoverPathIntegerId = pathGeojson.id; - map._hoverPathId = pathGeojson.properties?.id; - map._hoverPathSource = pathGeojson.source; - - hoverPath( - path.getId(), - e.lngLat.toArray() as [number, number], - `${line ? line.toString() : ''} • ${path.toString(false)} (${path.getAttributes().direction})` - ); - - e.originalEvent.stopPropagation(); - } -}; - -export const onTransitPathsMouseLeave = (e: MapboxGL.MapLayerMouseEvent) => { - e.target.getCanvas().style.cursor = ''; - - const map = e.target as any; - - if (map._hoverPathIntegerId) { - unhoverPath(map._hoverPathId); - e.target.setFeatureState( - { source: map._hoverPathSource, id: map._hoverPathIntegerId }, - { size: 2, hover: false } - ); - } +export const onPathTooltip = (info: PickingInfo): string | undefined | { text: string; containsHtml: boolean } => { + const pathId = info.object!.properties.id; + const path = new Path( + serviceLocator.collectionManager.get('paths').getById(pathId).properties, + false, + serviceLocator.collectionManager + ); + const line = path.getLine(); - map._hoverPathIntegerId = null; - map._hoverPathId = null; - map._hoverPathSource = null; + return { + text: `${line ? line.toString() : ''} • ${path.toString(false)} (${path.getAttributes().direction})`, + containsHtml: true + }; }; const nodeLayerEventDescriptors: MapEventHandlerDescription[] = [ - { - type: 'layer', - layerName: 'transitPathsSelected', - eventName: 'mouseenter', - handler: onTransitPathSelectedMouseEnter - }, - { - type: 'layer', - layerName: 'transitPathsSelected', - eventName: 'mouseleave', - handler: onTransitPathSelectedMouseLeave - }, - { - type: 'layer', - layerName: 'transitPathWaypoints', - eventName: 'mouseenter', - handler: onTransitPathWaypointMouseEnter - }, - { - type: 'layer', - layerName: 'transitPathWaypoints', - eventName: 'mouseleave', - handler: onTransitPathWaypointMouseLeave - }, - { type: 'layer', layerName: 'transitPaths', eventName: 'mouseenter', handler: onTransitPathsMouseEnter }, - { type: 'layer', layerName: 'transitPaths', eventName: 'mouseleave', handler: onTransitPathsMouseLeave } + { type: 'tooltip', layerName: 'transitPaths', eventName: 'onTooltip', handler: onPathTooltip } ]; export default nodeLayerEventDescriptors; diff --git a/packages/transition-frontend/src/services/map/events/PathSectionMapEvents.ts b/packages/transition-frontend/src/services/map/events/PathSectionMapEvents.ts index aa5844da..f9f04f5c 100644 --- a/packages/transition-frontend/src/services/map/events/PathSectionMapEvents.ts +++ b/packages/transition-frontend/src/services/map/events/PathSectionMapEvents.ts @@ -4,67 +4,43 @@ * This file is licensed under the MIT License. * License text available at https://opensource.org/licenses/MIT */ -import MapboxGL from 'mapbox-gl'; +import { MjolnirEvent } from 'mjolnir.js'; +import { PickingInfo } from 'deck.gl/typed'; -import { MapEventHandlerDescription } from 'chaire-lib-frontend/lib/services/map/IMapEventHandler'; +import { + MapCallbacks, + MapEventHandlerDescription, + PointInfo +} from 'chaire-lib-frontend/lib/services/map/IMapEventHandler'; import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; import TransitPath from 'transition-common/lib/services/path/Path'; import TransitLine from 'transition-common/lib/services/line/Line'; -import { unhoverPath } from './PathLayerMapEvents'; /* This file encapsulates map events specific for the 'nodes' section */ const isAgenciesActiveSection = (activeSection: string) => activeSection === 'agencies'; -const onPathWaypointMouseDown = (e: MapboxGL.MapLayerMouseEvent) => { - // start drag: - const removingWaypoint = serviceLocator.keyboardManager.keyIsPressed('alt'); - if (e.features && e.features[0] && !removingWaypoint) { - const map = e.target as any; - serviceLocator.eventManager.emit('map.disableDragPan'); - map._currentDraggingFeature = 'waypoint'; - serviceLocator.eventManager.emit('waypoint.startDrag', e.features[0]); - e.originalEvent.stopPropagation(); +const isNotEditingPathOrLine = (activeSection: string): boolean => { + if (!isAgenciesActiveSection(activeSection)) { + return false; } -}; -const onPathWaypointMouseUp = (e: MapboxGL.MapMouseEvent) => { - const map = e.target as any; - // stop drag if on edit node: - if (map._currentDraggingFeature === 'waypoint') { - const features = e.target.queryRenderedFeatures(e.point); - const featureSources = features.map((feature) => feature.source); - const hoverNodeIndex = featureSources.indexOf('transitNodes'); - if (hoverNodeIndex >= 0) { - // replace waypoint by node - const nodeGeojson = features[hoverNodeIndex]; - const path = serviceLocator.selectedObjectsManager.get('path'); - const nodeIds = path.get('nodes'); - const hoveredNodeId = nodeGeojson.properties?.id; - if (!nodeIds.includes(hoveredNodeId)) { - //path.replaceWaypointByNodeId(nodeGeojson.properties.id, null); - serviceLocator.eventManager.emit( - 'waypoint.replaceByNodeId', - hoveredNodeId, - serviceLocator.keyboardManager.keyIsPressed('cmd') ? 'manual' : 'engine' - ); - } - // TODO What about the else? if the waypoint is _on_ an existing node, should it be removed? Now it does nothing, no even update it, so there are 2 waypoints drawn on the map... - } else { - serviceLocator.eventManager.emit('waypoint.update', e.lngLat.toArray()); - } - map._currentDraggingFeature = null; - serviceLocator.eventManager.emit('map.enableDragPan'); - e.originalEvent.stopPropagation(); - } + const selectedPath = serviceLocator.selectedObjectsManager.get('path'); + const selectedLine = serviceLocator.selectedObjectsManager.get('line'); + const path = selectedPath ? (selectedPath as TransitPath) : undefined; + + return !selectedLine || (!selectedLine.hasChanged() && (!path || !path.hasChanged())); }; -const onPathWaypointMouseMove = (e: MapboxGL.MapMouseEvent) => { - const map = e.target as any; - if (map._currentDraggingFeature === 'waypoint') { - serviceLocator.eventManager.emit('waypoint.drag', e.lngLat.toArray()); - e.originalEvent.stopPropagation(); +const isEditingPath = (activeSection: string): boolean => { + if (!isAgenciesActiveSection(activeSection)) { + return false; } + + const selectedPath = serviceLocator.selectedObjectsManager.get('path'); + const path = selectedPath ? (selectedPath as TransitPath) : undefined; + + return path !== undefined && !path.isFrozen(); }; const selectPath = (pathGeojson) => { @@ -87,180 +63,202 @@ const selectPath = (pathGeojson) => { }); }; -const hoverPath = (pathGeojson, map: any) => { - if (map._hoverPathIntegerId) { - unhoverPath(map._hoverPathId); - map.setFeatureState({ source: map._hoverPathSource, id: map._hoverPathIntegerId }, { size: 2, hover: false }); +const onSelectedPathMapClicked = (pointInfo: PointInfo, e: MjolnirEvent) => { + // Add a waypoint at the location of the click + const selectedPath = serviceLocator.selectedObjectsManager.get('path'); + const path = selectedPath ? (selectedPath as TransitPath) : undefined; + if (!path) { + return; } + const waypointType = path.getAttributes().data.temporaryManualRouting + ? 'manual' + : (path.getData('routingEngine', 'engine') as string); + + // Add the waypoint at the end of the path. TODO: This should be automatic once finding the insert location is not done by the path anymore + const insertIndex = path.attributes.nodes.length === 0 ? undefined : path.attributes.nodes.length - 1; + path.insertWaypoint(pointInfo.coordinates as [number, number], waypointType, insertIndex, undefined).then( + (response) => { + path.validate(); + serviceLocator.selectedObjectsManager.update('path', path); + serviceLocator.eventManager.emit('selected.updateLayers.path'); + } + ); +}; - map.setFeatureState({ source: pathGeojson.source, id: pathGeojson.id }, { size: 4, hover: true }); +const onPathsClicked = (pickInfo: PickingInfo[], e: MjolnirEvent) => { + if (pickInfo.length === 1) { + selectPath(pickInfo[0].object); + } else { + const paths = pickInfo.map((picked) => picked.object); + const menu: any[] = []; - // See https://github.com/alex3165/react-mapbox-gl/issues/506 - map._hoverPathIntegerId = pathGeojson.id; - map._hoverPathId = pathGeojson.properties.id; - map._hoverPathSource = pathGeojson.source; + paths.forEach((pathGeojson) => { + const pathById = serviceLocator.collectionManager.get('paths').getById(pathGeojson.properties?.id); + if (!pathById) return; + const path = new TransitPath(pathById.properties, false, serviceLocator.collectionManager); + const line = path.getLine() as TransitLine; + menu.push({ + key: path.getId(), + title: `${line.toString(false)} • ${path.toString(false)}`, + onClick: () => selectPath(pathGeojson) + // onHover: () => hoverPath(pathGeojson, e.target) + }); + }); + serviceLocator.eventManager.emit('map.showContextMenu', pickInfo[0].pixel, menu); + } + e.handled = true; }; -// TODO Should we split this in individual functions with conditions instead? -// Test the performances first -// TODO Original code in click.events.js had a _draggingEventsOrder check. Is -// it still needed? If we have problems, there should be an event handler of -// higher priority to check it before running any other -const onPathSectionMapClick = async (e: MapboxGL.MapMouseEvent) => { - const features = e.target.queryRenderedFeatures([ - [e.point.x - 1, e.point.y - 1], - [e.point.x + 1, e.point.y + 1] - ]); +const onSelectedWaypointDrag = (info: PickingInfo, e: MjolnirEvent) => { + const selectedPath = serviceLocator.selectedObjectsManager.get('path'); + const path = selectedPath ? (selectedPath as TransitPath) : undefined; + if (!path) { + return; + } + const selectedFeature = info.object; + const waypointIndex = selectedFeature.properties?.waypointIndex; + const afterNodeIndex = selectedFeature.properties?.afterNodeIndex; + if (waypointIndex === undefined || afterNodeIndex === undefined) { + // Not a proper waypoint, ignore + return; + } + // Drag the waypoint + serviceLocator.eventManager.emit('waypoint.drag', info.coordinate, waypointIndex, afterNodeIndex); +}; - const map = e.target; - const featureSources = features.map((feature) => { - return feature.source; - }); - const clickedNodeIndex = featureSources.indexOf('transitNodes'); - const clickedWaypointIndex = featureSources.indexOf('transitPathWaypoints'); - const clickedSelectedNodeIndex = featureSources.indexOf('transitNodesSelected'); - const clickedPathIndex = featureSources.indexOf('transitPaths'); - const clickedSelectedPathIndex = featureSources.indexOf('transitPathsSelected'); +const onSelectedWaypointDragEnd = (info: PickingInfo, e: MjolnirEvent, mapCallbacks: MapCallbacks) => { + const selectedPath = serviceLocator.selectedObjectsManager.get('path'); + const path = selectedPath ? (selectedPath as TransitPath) : undefined; + if (!path) { + return; + } + const selectedFeature = info.object; + const waypointIndex = selectedFeature.properties?.waypointIndex; + const afterNodeIndex = selectedFeature.properties?.afterNodeIndex; + if (waypointIndex === undefined || afterNodeIndex === undefined) { + // Not a proper waypoint, ignore + return; + } + // Update the waypoint convert to node + const nodes = mapCallbacks.pickMultipleObjects({ x: info.x, y: info.y, layerIds: ['transitNodes'] }); + const nodeIds = path.attributes.nodes; + const selectedNodeId = nodes.length === 0 ? undefined : nodes[0].object?.properties?.id; + if (selectedNodeId !== undefined && !nodeIds.includes(selectedNodeId)) { + //path.replaceWaypointByNodeId(nodeGeojson.properties.id, null); + serviceLocator.eventManager.emit( + 'waypoint.replaceByNodeId', + selectedNodeId, + serviceLocator.keyboardManager.keyIsPressed('cmd') ? 'manual' : 'engine', + waypointIndex, + afterNodeIndex + ); + } else { + serviceLocator.eventManager.emit('waypoint.update', info.coordinate, waypointIndex, afterNodeIndex); + } +}; +const onSelectedPathClicked = (info: PickingInfo, e: MjolnirEvent) => { const selectedPath = serviceLocator.selectedObjectsManager.get('path'); - const selectedLine = serviceLocator.selectedObjectsManager.get('line'); + const path = selectedPath ? (selectedPath as TransitPath) : undefined; + if (!path) { + return; + } - serviceLocator.eventManager.emit('map.hideContextMenu'); + const waypointType = path.getAttributes().data.temporaryManualRouting + ? 'manual' + : path.getData('routingEngine', 'engine'); + // TODO Here is where we should determine where to insert the point. Call a method which validates if the point is at distance x of path. + path.insertWaypoint(info.coordinate as [number, number], waypointType as string, undefined, undefined).then( + (response) => { + path.validate(); + serviceLocator.selectedObjectsManager.update('path', path); + serviceLocator.eventManager.emit('selected.updateLayers.path'); + } + ); +}; +const removeNode = async (path: TransitPath, nodeId: string) => path.removeNodeId(nodeId); + +const addNode = (path: TransitPath, nodeId: string, atEnd = true) => { + // TODO Should not be determined here, the default value should be provided by the functions themselves + const waypointType = path.getAttributes().data.temporaryManualRouting + ? 'manual' + : path.getAttributes().data.routingEngine || 'engine'; + return path.insertNodeId(nodeId, atEnd ? null : 0, waypointType); +}; + +const onNodeClickedForPath = (info: PickingInfo, e: MjolnirEvent) => { + const selectedPath = serviceLocator.selectedObjectsManager.get('path'); const path = selectedPath ? (selectedPath as TransitPath) : undefined; - if (path && !path.isFrozen()) { - e.originalEvent.stopPropagation(); - if ( - // clicked on waypoint (remove) - clickedWaypointIndex >= 0 && - clickedNodeIndex < 0 - //&& serviceLocator.keyboardManager.keyIsPressed('alt') - ) { - const attributes = features[clickedWaypointIndex].properties || {}; - const path = selectedPath as TransitPath; - path.removeWaypoint(attributes.afterNodeIndex, attributes.waypointIndex).then((response) => { - serviceLocator.selectedObjectsManager.update('path', path); - serviceLocator.eventManager.emit('selected.updateLayers.path'); - }); - } else if ( - // insert waypoint in path at click - clickedWaypointIndex < 0 && - clickedSelectedPathIndex >= 0 && - clickedNodeIndex < 0 - ) { - const path = selectedPath; - const waypointType = path.getAttributes().data.temporaryManualRouting - ? 'manual' - : path.getData('routingEngine', 'engine'); - path.insertWaypoint(e.lngLat.toArray(), waypointType, null, null).then((response) => { - path.validate(); - serviceLocator.selectedObjectsManager.update('path', path); - serviceLocator.eventManager.emit('selected.updateLayers.path'); - }); - } else if ( - // add or remove node or add waypoint to path - clickedWaypointIndex < 0 - ) { - // TODO Should not be determined here, the default value should be provided by the functions themselves - const waypointType = path.getAttributes().data.temporaryManualRouting - ? 'manual' - : path.getAttributes().data.routingEngine || 'engine'; - let insertOrRemoveNodePromise: Promise<{ path: TransitPath }> | undefined = undefined; - if (clickedNodeIndex >= 0 || clickedSelectedNodeIndex >= 0) { - // add node - // TODO Is it possible to have the selectedNode layer on at this time? - const nodeGeojson = features[clickedNodeIndex] || features[clickedSelectedNodeIndex]; - const nodeId = nodeGeojson.properties?.id; - if (nodeId && e.originalEvent.shiftKey) { - insertOrRemoveNodePromise = path.insertNodeId(nodeId, 0, waypointType); - } else if (nodeId && e.originalEvent.altKey) { - insertOrRemoveNodePromise = path.removeNodeId(nodeId); - } else if (nodeId) { - insertOrRemoveNodePromise = path.insertNodeId(nodeId, null, waypointType); - } - } else { - // add waypoint - const lastNodeIndex = path.getAttributes().nodes.length - 1; - if (lastNodeIndex < 0) { - return; - } - insertOrRemoveNodePromise = path.insertWaypoint( - e.lngLat.toArray() as [number, number], - waypointType, - lastNodeIndex, - undefined - ); - } + if (e.srcEvent.ctrlKey === true) { + return; + } + const nodeId = (info.object.properties || {}).id; + if (!nodeId || !path) { + return; + } - if (insertOrRemoveNodePromise) { - try { - const response = await insertOrRemoveNodePromise; - if (response.path) { - serviceLocator.selectedObjectsManager.update('path', response.path); - serviceLocator.eventManager.emit('selected.updateLayers.path'); - } else { - console.error('error', (response as any).error); // todo: better error handling - } - } catch (error) { - console.error('error', error); // todo: better error handling - } - } - } else if ( - // add waypoint to selected path or insert node - clickedNodeIndex < 0 && - clickedSelectedPathIndex >= 0 - ) { - // TODO Can this be part of the previous if? And not use an emit, but call a path function? - map.getCanvas().style.cursor = 'pointer'; - serviceLocator.eventManager.emit('waypoint.insert', e.lngLat.toArray()); - } - } else if ( - // select unique path, or show all paths - (!path || (!path.hasChanged() && !selectedLine.hasChanged())) && - clickedPathIndex >= 0 - ) { - if ( - !selectedLine || - (path && !path.hasChanged() && !selectedLine.hasChanged()) || - (selectedLine && !path && !selectedLine.hasChanged()) - ) { - const paths = features.filter((feature) => feature.source === 'transitPaths'); - if (paths.length === 1) { - selectPath(paths[0]); + const nodeAddOrRemovePromise = + e.srcEvent.altKey === true ? removeNode(path, nodeId) : addNode(path, nodeId, e.srcEvent.shiftKey !== true); + nodeAddOrRemovePromise + .then((response) => { + if (response.path) { + serviceLocator.selectedObjectsManager.update('path', response.path); + serviceLocator.eventManager.emit('selected.updateLayers.path'); } else { - const menu: any[] = []; - - paths.forEach((pathGeojson) => { - const pathById = serviceLocator.collectionManager.get('paths').getById(pathGeojson.properties?.id); - if (!pathById) return; - const path = new TransitPath(pathById.properties, false, serviceLocator.collectionManager); - const line = path.getLine() as TransitLine; - menu.push({ - key: path.getId(), - title: `${line.toString(false)} • ${path.toString(false)}`, - onClick: () => selectPath(pathGeojson), - onHover: () => hoverPath(pathGeojson, e.target) - }); - }); - serviceLocator.eventManager.emit('map.showContextMenu', e, menu); + console.error('error', (response as any).error); // todo: better error handling } - e.originalEvent.stopPropagation(); - } - } + }) + .catch((error) => console.error('error adding node to path:', error)); }; -const nodeSectionEventDescriptors: MapEventHandlerDescription[] = [ - { type: 'map', eventName: 'click', condition: isAgenciesActiveSection, handler: onPathSectionMapClick }, +const pathSectionEventDescriptors: MapEventHandlerDescription[] = [ + // These events are for the agencies panel, when no path is selected + { + type: 'mapSelect', + layerName: 'transitPaths', + eventName: 'onLeftClick', + condition: isNotEditingPathOrLine, + handler: onPathsClicked + }, + // The following events are for path editing + { + type: 'layer', + layerName: 'transitPathsSelected', + eventName: 'onLeftClick', + condition: isEditingPath, + handler: onSelectedPathClicked + }, + { + type: 'layer', + layerName: 'transitNodes', + eventName: 'onLeftClick', + condition: isEditingPath, + handler: onNodeClickedForPath + }, + { + type: 'layer', + layerName: 'transitNodesSelected', + eventName: 'onLeftClick', + condition: isEditingPath, + handler: onNodeClickedForPath + }, + { + type: 'layer', + layerName: 'transitPathWaypoints', + eventName: 'onDrag', + condition: isEditingPath, + handler: onSelectedWaypointDrag + }, { type: 'layer', - eventName: 'mousedown', layerName: 'transitPathWaypoints', - condition: isAgenciesActiveSection, - handler: onPathWaypointMouseDown + eventName: 'onDragEnd', + condition: isEditingPath, + handler: onSelectedWaypointDragEnd }, - { type: 'map', eventName: 'mouseup', condition: isAgenciesActiveSection, handler: onPathWaypointMouseUp }, - { type: 'map', eventName: 'mousemove', condition: isAgenciesActiveSection, handler: onPathWaypointMouseMove } + { type: 'map', eventName: 'onLeftClick', condition: isEditingPath, handler: onSelectedPathMapClicked } ]; -export default nodeSectionEventDescriptors; +export default pathSectionEventDescriptors; diff --git a/packages/transition-frontend/src/services/map/events/RoutingLayerMapEvents.ts b/packages/transition-frontend/src/services/map/events/RoutingLayerMapEvents.ts deleted file mode 100644 index 088be1ba..00000000 --- a/packages/transition-frontend/src/services/map/events/RoutingLayerMapEvents.ts +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright 2022, Polytechnique Montreal and contributors - * - * This file is licensed under the MIT License. - * License text available at https://opensource.org/licenses/MIT - */ -/** This file encapsulates map events that apply to the routingPoints layer, in any section */ -import MapboxGL from 'mapbox-gl'; - -import { MapEventHandlerDescription } from 'chaire-lib-frontend/lib/services/map/IMapEventHandler'; - -const onRoutingPointMouseEnter = (e: MapboxGL.MapLayerMouseEvent) => { - if (e.features && e.features[0]) { - e.target.getCanvas().style.cursor = 'pointer'; - } -}; - -const onRoutingPointMouseLeave = (e: MapboxGL.MapLayerMouseEvent) => { - e.target.getCanvas().style.cursor = ''; -}; - -const nodeLayerEventDescriptors: MapEventHandlerDescription[] = [ - { type: 'layer', layerName: 'routingPoints', eventName: 'mouseenter', handler: onRoutingPointMouseEnter }, - { type: 'layer', layerName: 'routingPoints', eventName: 'mouseleave', handler: onRoutingPointMouseLeave } -]; - -export default nodeLayerEventDescriptors; diff --git a/packages/transition-frontend/src/services/map/events/RoutingSectionMapEvents.ts b/packages/transition-frontend/src/services/map/events/RoutingSectionMapEvents.ts index f5b0ab82..fa5adae5 100644 --- a/packages/transition-frontend/src/services/map/events/RoutingSectionMapEvents.ts +++ b/packages/transition-frontend/src/services/map/events/RoutingSectionMapEvents.ts @@ -4,88 +4,73 @@ * This file is licensed under the MIT License. * License text available at https://opensource.org/licenses/MIT */ -import MapboxGL from 'mapbox-gl'; +import { MjolnirEvent } from 'mjolnir.js'; -import { MapEventHandlerDescription } from 'chaire-lib-frontend/lib/services/map/IMapEventHandler'; +import { MapEventHandlerDescription, PointInfo } from 'chaire-lib-frontend/lib/services/map/IMapEventHandler'; import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; +import { PickingInfo } from 'deck.gl/typed'; /* This file encapsulates map events specific for the 'routing' section */ const isRoutingActiveSection = (activeSection: string) => activeSection === 'routing'; -const onRoutingSectionMapClick = (e: MapboxGL.MapMouseEvent) => { - serviceLocator.eventManager.emit('routing.transit.clickedOnMap', e.lngLat.toArray()); - e.originalEvent.stopPropagation(); +const onRoutingSectionMapClick = (pointInfo: PointInfo, event: MjolnirEvent) => { + serviceLocator.eventManager.emit('routing.transit.clickedOnMap', pointInfo.coordinates); }; -const onRoutingPointMouseDown = (e: MapboxGL.MapLayerMouseEvent) => { - const features = e.features; - if (!features || features.length === 0) { +const onRoutingPointDrag = (info: PickingInfo, e: MjolnirEvent) => { + const location = info.object?.properties?.location; + if (!location) { return; } - // start drag: - if (e.features && e.features[0]) { - const feature = e.features[0]; - const map = e.target as any; - const location = feature.properties?.location; - if (location) { - // TODO Do not hardcode those strings - map._currentDraggingFeature = location === 'origin' ? 'routingOrigin' : 'routingDestination'; - serviceLocator.eventManager.emit('map.disableDragPan'); - } - } -}; - -const onRoutingPointMouseUp = (e: MapboxGL.MapMouseEvent) => { - const map = e.target as any; - if (map._currentDraggingFeature === 'routingOrigin' || map._currentDraggingFeature === 'routingDestination') { - serviceLocator.eventManager.emit( - map._currentDraggingFeature === 'routingOrigin' - ? 'routing.transit.updateOrigin' - : 'routing.transit.updateDestination', - e.lngLat.toArray() - ); - map._currentDraggingFeature = null; - serviceLocator.eventManager.emit('map.enableDragPan'); - } + serviceLocator.eventManager.emit( + `routing.transit.drag${location === 'origin' ? 'Origin' : 'Destination'}`, + info.coordinate + ); }; -const onRoutingPointMouseMove = (e: MapboxGL.MapMouseEvent) => { - const map = e.target as any; - if (map._currentDraggingFeature === 'routingOrigin') { - serviceLocator.eventManager.emit('routing.transit.dragOrigin', e.lngLat.toArray()); - e.originalEvent.stopPropagation(); - } else if (map._currentDraggingFeature === 'routingDestination') { - serviceLocator.eventManager.emit('routing.transit.dragDestination', e.lngLat.toArray()); - e.originalEvent.stopPropagation(); +const onRoutingPointDragEnd = (info: PickingInfo, e: MjolnirEvent) => { + const location = info.object?.properties?.location; + if (!location) { + return; } + serviceLocator.eventManager.emit( + `routing.transit.update${location === 'origin' ? 'Origin' : 'Destination'}`, + info.coordinate + ); }; -const onRoutingSectionContextMenu = (e: MapboxGL.MapMouseEvent) => { - serviceLocator.eventManager.emit('map.showContextMenu', e, [ +const onRoutingSectionContextMenu = (pointInfo: PointInfo, event: MjolnirEvent) => { + serviceLocator.eventManager.emit('map.showContextMenu', pointInfo.pixel, [ { title: 'transit:transitRouting:contextMenu:SetAsOrigin', - onClick: () => serviceLocator.eventManager.emit('routing.transit.clickedOnMap', e.lngLat.toArray(), true) + onClick: () => serviceLocator.eventManager.emit('routing.transit.clickedOnMap', pointInfo.coordinates, true) }, { title: 'transit:transitRouting:contextMenu:SetAsDestination', - onClick: () => serviceLocator.eventManager.emit('routing.transit.clickedOnMap', e.lngLat.toArray(), false) + onClick: () => + serviceLocator.eventManager.emit('routing.transit.clickedOnMap', pointInfo.coordinates, false) } ]); }; const routingSectionEventDescriptors: MapEventHandlerDescription[] = [ - { type: 'map', eventName: 'click', condition: isRoutingActiveSection, handler: onRoutingSectionMapClick }, - { type: 'map', eventName: 'contextmenu', condition: isRoutingActiveSection, handler: onRoutingSectionContextMenu }, + { type: 'map', eventName: 'onRightClick', condition: isRoutingActiveSection, handler: onRoutingSectionContextMenu }, + { type: 'map', eventName: 'onLeftClick', condition: isRoutingActiveSection, handler: onRoutingSectionMapClick }, { type: 'layer', - eventName: 'mousedown', layerName: 'routingPoints', + eventName: 'onDrag', condition: isRoutingActiveSection, - handler: onRoutingPointMouseDown + handler: onRoutingPointDrag }, - { type: 'map', eventName: 'mouseup', condition: isRoutingActiveSection, handler: onRoutingPointMouseUp }, - { type: 'map', eventName: 'mousemove', condition: isRoutingActiveSection, handler: onRoutingPointMouseMove } + { + type: 'layer', + layerName: 'routingPoints', + eventName: 'onDragEnd', + condition: isRoutingActiveSection, + handler: onRoutingPointDragEnd + } ]; export default routingSectionEventDescriptors; diff --git a/packages/transition-frontend/src/services/map/events/ScenarioSectionMapEvents.ts b/packages/transition-frontend/src/services/map/events/ScenarioSectionMapEvents.ts index 068ca265..de70416d 100644 --- a/packages/transition-frontend/src/services/map/events/ScenarioSectionMapEvents.ts +++ b/packages/transition-frontend/src/services/map/events/ScenarioSectionMapEvents.ts @@ -5,13 +5,12 @@ * License text available at https://opensource.org/licenses/MIT */ import { MapEventHandlerDescription } from 'chaire-lib-frontend/lib/services/map/IMapEventHandler'; -import { onTransitPathsMouseLeave, onTransitPathsMouseEnter } from './PathLayerMapEvents'; +import { onPathTooltip } from './PathLayerMapEvents'; /* This file encapsulates map events specific for the 'scenarios' section */ const scenarioSectionEventDescriptors: MapEventHandlerDescription[] = [ - { type: 'layer', layerName: 'transitPathsForServices', eventName: 'mouseenter', handler: onTransitPathsMouseEnter }, - { type: 'layer', layerName: 'transitPathsForServices', eventName: 'mouseleave', handler: onTransitPathsMouseLeave } + { type: 'tooltip', layerName: 'transitPathsForServices', eventName: 'onTooltip', handler: onPathTooltip } ]; export default scenarioSectionEventDescriptors; diff --git a/packages/transition-frontend/src/services/map/events/index.ts b/packages/transition-frontend/src/services/map/events/index.ts index d204ae9a..66ea655e 100644 --- a/packages/transition-frontend/src/services/map/events/index.ts +++ b/packages/transition-frontend/src/services/map/events/index.ts @@ -7,7 +7,6 @@ import nodeSectionMapEvents from './NodeSectionMapEvents'; import nodeLayerMapEvents from './NodeLayerMapEvents'; import routingSectionMapEvents from './RoutingSectionMapEvents'; -import routingLayerMapEvents from './RoutingLayerMapEvents'; import pathLayerMapEvents from './PathLayerMapEvents'; import pathSectionMapEvents from './PathSectionMapEvents'; import scenarioSectionMapEvents from './ScenarioSectionMapEvents'; @@ -17,7 +16,6 @@ const transitionEvents = [ nodeSectionMapEvents, nodeLayerMapEvents, routingSectionMapEvents, - routingLayerMapEvents, accessMapSectionMapEvents, pathLayerMapEvents, pathSectionMapEvents, From 09371d32311982229885b2fc558a8ea9e531cbae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Mon, 4 Dec 2023 11:12:28 -0500 Subject: [PATCH 11/23] deck.gl: Save zoom and center to user preferences --- .../src/components/map/TransitionMainMap.tsx | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx index 9e8440e4..d7138759 100644 --- a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx +++ b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx @@ -9,9 +9,11 @@ import ReactDom from 'react-dom'; import { withTranslation } from 'react-i18next'; import DeckGL from '@deck.gl/react/typed'; import { FilterContext, Layer, Deck } from '@deck.gl/core/typed'; + import { Map as MapLibreMap } from 'react-map-gl/maplibre'; import MapboxGL from 'mapbox-gl'; import MapboxDraw from '@mapbox/mapbox-gl-draw'; +import _debounce from 'lodash/debounce'; import Preferences from 'chaire-lib-common/lib/config/Preferences'; import layersConfig from '../../config/layers.config'; @@ -569,13 +571,21 @@ class MainMap extends React.Component { return true; }; + private updateUserPrefs = _debounce((viewStateChange) => { + // Save map zoom and center to user preferences + Preferences.update( + { + 'map.zoom': viewStateChange.viewState.zoom, + 'map.center': [viewStateChange.viewState.longitude, viewStateChange.viewState.latitude] + }, + serviceLocator.socketEventManager + ); + }, 500); + // FIXME: Find the type for this onViewStateChange = (viewStateChange) => { this.setState({ viewState: viewStateChange.viewState }); - // TODO Save map prefs - viewStateChange.viewState.latitude; - viewStateChange.viewState.longitude; - viewStateChange.viewState.zoom; + this.updateUserPrefs(viewStateChange); }; onClick = (pickInfo: PickingInfo, event: MjolnirGestureEvent) => { From 21eeb0a7316d297eeff6dcd86b199cbbe15c9190 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Mon, 18 Dec 2023 11:48:19 -0500 Subject: [PATCH 12/23] deck.gl: Add an updateCount to trigger map updates on layers Deck gl does a shallow comparison of the data to determine if the layer needs to be updated. So the data is not refreshed by default if one of the features in the collection changed position. We could add a `dataComparator` function, but this will be executed for every re-render of the map. We instead use an updateCount to save the number of times a layer has been updated throught the `map.updateLayer[s]` event. This will cause the data to be refreshed whenever the count is incremented. --- .../src/components/map/TransitionMainMap.tsx | 8 +++++++- .../map/layers/TransitionMapLayer.tsx | 19 ++++++++++++++++--- 2 files changed, 23 insertions(+), 4 deletions(-) diff --git a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx index d7138759..0c124022 100644 --- a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx +++ b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx @@ -111,6 +111,7 @@ class MainMap extends React.Component { private mapContainer; private draw: MapboxDraw | undefined; private mapCallbacks: MapCallbacks; + private updateCounts: { [layerName: string]: number } = {}; constructor(props: MainMapProps) { super(props); @@ -513,11 +514,15 @@ class MainMap extends React.Component { data: GeoJSON.FeatureCollection | ((original: GeoJSON.FeatureCollection) => GeoJSON.FeatureCollection); }) => { this.layerManager.updateLayer(args.layerName, args.data); + this.updateCounts[args.layerName] = (this.updateCounts[args.layerName] || 0) + 1; this.setState({ enabledLayers: this.layerManager.getEnabledLayers().map((layer) => layer.id) }); }; updateLayers = (geojsonByLayerName) => { this.layerManager.updateLayers(geojsonByLayerName); + Object.keys(geojsonByLayerName).forEach( + (layerName) => (this.updateCounts[layerName] = (this.updateCounts[layerName] || 0) + 1) + ); this.setState({ enabledLayers: this.layerManager.getEnabledLayers().map((layer) => layer.id) }); }; @@ -691,7 +696,8 @@ class MainMap extends React.Component { events: this.mapEvents.layers[layer.id], activeSection: this.props.activeSection, setDragging: this.setDragging, - mapCallbacks: this.mapCallbacks + mapCallbacks: this.mapCallbacks, + updateCount: this.updateCounts[layer.id] || 0 }) ) .filter((layer) => layer !== undefined) as Layer[]; diff --git a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx index cc22c29e..d85dbac0 100644 --- a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx +++ b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx @@ -32,6 +32,7 @@ type TransitionMapLayerProps = { activeSection: string; setDragging: (dragging: boolean) => void; mapCallbacks: MapCallbacks; + updateCount: number; }; const stringToColor = (hexStringColor: string): [number, number, number] | [number, number, number, number] => [ @@ -80,6 +81,10 @@ const getLineLayer = (props: TransitionMapLayerProps, eventsToAdd): PathLayer => currentTime: 0, shadowEnabled: false, pickable: true, + updateTriggers: { + getPath: props.updateCount, + getColor: props.updateCount + }, /*updateTriggers: { getWidth: routeIndex },*/ @@ -97,6 +102,10 @@ const getAnimatedArrowPathLayer = (props: TransitionMapLayerProps, eventsToAdd): getWidth: (d, i) => { return 70; },*/ + updateTriggers: { + getPath: props.updateCount, + getColor: props.updateCount + }, getColor: (d) => propertyToColor(d, 'color'), getSizeArray: [4, 4], speedDivider: 10, @@ -118,6 +127,9 @@ const getPolygonLayer = (props: TransitionMapLayerProps, eventsToAdd): GeoJsonLa }, */ getFillColor: (d) => propertyToColor(d, 'color'), getLineColor: [80, 80, 80], + updateTriggers: { + getFillColor: props.updateCount + }, getLineWidth: 1, ...eventsToAdd }); @@ -133,9 +145,10 @@ const getScatterLayer = (props: TransitionMapLayerProps, eventsToAdd): Scatterpl getLineColor: [255, 255, 255, 255], getRadius: (d, i) => 10, radiusScale: 6, - /* updateTriggers: { - getRadius: nodeIndex - }, */ + updateTriggers: { + getPosition: props.updateCount, + getFillColor: props.updateCount + }, pickable: true, ...eventsToAdd }); From 1ca5d7c721174742d377d7155b62a625126fe604 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Mon, 18 Dec 2023 14:51:40 -0500 Subject: [PATCH 13/23] deck.gl: Set styles for circle layers Bring back all mapbox styles for circle-type layers. Type the layer description for circle layers, with fields being either a number/color, a function receiving the feature in parameter, or a property getter to retrieve the value from a geojson property. --- .../services/map/layers/LayerDescription.ts | 64 ++- .../src/components/map/TransitionMainMap.tsx | 1 - .../map/layers/TransitionMapLayer.tsx | 146 ++++++- .../src/config/layers.config.ts | 367 +++++------------- .../map/events/NodeSectionMapEvents.ts | 4 +- 5 files changed, 298 insertions(+), 284 deletions(-) diff --git a/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts index bb97bdf5..bcca467b 100644 --- a/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts +++ b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts @@ -5,11 +5,69 @@ * License text available at https://opensource.org/licenses/MIT */ -export type LayerConfiguration = { - // TODO Type this properly. When the data in layers.config.ts is used by the new API, add it here - [key: string]: any; +/** + * A type to describe how to get the value of some configuration. `property` is + * the name of the property in a geojson feature + */ +export type ConfigurationGetter = { type: 'property'; property: string }; +/** + * A color for map features, either a string starting with `#` with hexadecimal + * colors, or an array of rgb or rgba numbers + */ +export type FeatureColor = + | string + | [number, number, number] + | [number, number, number, number] + | ConfigurationGetter + | ((feature: GeoJSON.Feature) => string | [number, number, number] | [number, number, number, number]); +export type FeatureNumber = number | ConfigurationGetter | ((feature: GeoJSON.Feature) => number); + +export type CommonLayerConfiguration = { + /** + * Color of the feature + */ + color?: FeatureColor; + pickable?: boolean | (() => boolean); }; +export type PointLayerConfiguration = CommonLayerConfiguration & { + type: 'circle'; + /** + * Radius of the feature + */ + radius?: FeatureNumber; + radiusScale?: FeatureNumber; + /** + * Color of the contour of the feature + */ + strokeColor?: FeatureColor; + /** + * Width of the contour of the feature + */ + strokeWidth?: FeatureNumber; + strokeWidthScale?: FeatureNumber; + minRadiusPixels?: FeatureNumber; + maxRadiusPixels?: FeatureNumber; + /** + * Minimal zoom level at which a feature should be displayed + */ + minZoom?: FeatureNumber; + /** + * Maximum zoom level at which a feature should be displayed + */ + maxZoom?: FeatureNumber; +}; +export const layerIsCircle = (layer: LayerConfiguration): layer is PointLayerConfiguration => { + return layer.type === 'circle'; +}; + +export type LayerConfiguration = + | PointLayerConfiguration + | { + // TODO Type this properly. When the data in layers.config.ts is used by the new API, add it here + [key: string]: any; + }; + export type MapLayer = { /** Unique identifier for this layer */ id: string; diff --git a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx index 0c124022..672ee9c0 100644 --- a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx +++ b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx @@ -31,7 +31,6 @@ import Node from 'transition-common/lib/services/nodes/Node'; import _cloneDeep from 'lodash/cloneDeep'; import { featureCollection as turfFeatureCollection } from '@turf/turf'; import { LayoutSectionProps } from 'chaire-lib-frontend/lib/services/dashboard/DashboardContribution'; -import { MapEventHandlerDescription } from 'chaire-lib-frontend/lib/services/map/IMapEventHandler'; import { deleteUnusedNodes } from '../../services/transitNodes/transitNodesUtils'; import { MapUpdateLayerEventType } from 'chaire-lib-frontend/lib/services/map/events/MapEventsCallbacks'; import { EventManager } from 'chaire-lib-common/lib/services/events/EventManager'; diff --git a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx index d85dbac0..101857fc 100644 --- a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx +++ b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx @@ -5,12 +5,13 @@ * License text available at https://opensource.org/licenses/MIT */ import { Layer, LayerProps } from '@deck.gl/core/typed'; +import { propertiesContainsFilter } from '@turf/turf'; import { layerEventNames, MapCallbacks, MapLayerEventHandlerDescriptor } from 'chaire-lib-frontend/lib/services/map/IMapEventHandler'; -import { MapLayer } from 'chaire-lib-frontend/lib/services/map/layers/LayerDescription'; +import * as LayerDescription from 'chaire-lib-frontend/lib/services/map/layers/LayerDescription'; import { ScatterplotLayer, PathLayer, GeoJsonLayer, PickingInfo, Deck } from 'deck.gl/typed'; import { MjolnirEvent, MjolnirGestureEvent } from 'mjolnir.js'; import AnimatedArrowPathLayer from './AnimatedArrowPathLayer'; @@ -24,10 +25,19 @@ const defaultRGBA = [ 255 ] as [number, number, number, number]; +// FIXME Deck.gl types the viewState as `any`, as if it could change depending +// on... what?. Here we just type the parameters that we know are available to +// our map, but maybe it is wrong to do so? +export type ViewState = { + zoom: number; + latitude: number; + longitude: number; + [key: string]: any; +}; + type TransitionMapLayerProps = { - layerDescription: MapLayer; - // TODO Find the right type for this - viewState; + layerDescription: LayerDescription.MapLayer; + viewState: ViewState; events?: { [evtName in layerEventNames]?: MapLayerEventHandlerDescriptor[] }; activeSection: string; setDragging: (dragging: boolean) => void; @@ -65,6 +75,63 @@ const propertyToColor = ( : defaultRGBA; }; +const layerColorGetter = ( + getter: LayerDescription.FeatureColor | undefined, + defaultValue: string +): + | undefined + | [number, number, number] + | [number, number, number, number] + | ((feature: GeoJSON.Feature) => [number, number, number] | [number, number, number, number]) => { + if (getter === undefined) { + return stringToColor(defaultValue); + } + if (typeof getter === 'string') { + return stringToColor(getter); + } + if (Array.isArray(getter)) { + return getter; + } + if (typeof getter === 'function') { + return (feature: GeoJSON.Feature) => { + const color = getter(feature); + return typeof color === 'string' ? stringToColor(color) : color; + }; + } + if (getter.type === 'property') { + return (feature: GeoJSON.Feature) => propertyToColor(feature, getter.property, defaultValue); + } + return undefined; +}; + +const propertytoNumber = (feature: GeoJSON.Feature, property: string, defaultNumber = 0): number => { + if (!feature.properties || !feature.properties[property]) { + return 0; + } + const numberValue = feature.properties[property]; + return typeof numberValue === 'number' + ? numberValue + : typeof numberValue === 'string' + ? parseInt(numberValue) + : defaultNumber; +}; + +const layerNumberGetter = ( + getter: LayerDescription.FeatureNumber | undefined, + defaultValue: number | undefined +): undefined | number | ((feature: GeoJSON.Feature) => number) => { + if (getter === undefined) { + return defaultValue; + } + if (typeof getter === 'number' || typeof getter === 'function') { + return getter; + } + if (getter.type === 'property') { + return (feature: GeoJSON.Feature) => propertytoNumber(feature, getter.property, defaultValue); + } + return undefined; +}; + const getLineLayer = (props: TransitionMapLayerProps, eventsToAdd): PathLayer => new PathLayer({ id: props.layerDescription.id, @@ -134,24 +201,71 @@ const getPolygonLayer = (props: TransitionMapLayerProps, eventsToAdd): GeoJsonLa ...eventsToAdd }); -const getScatterLayer = (props: TransitionMapLayerProps, eventsToAdd): ScatterplotLayer => - new ScatterplotLayer({ +const getScatterLayer = ( + props: TransitionMapLayerProps, + config: LayerDescription.PointLayerConfiguration, + eventsToAdd +): ScatterplotLayer | undefined => { + const layerProperties: any = {}; + const minZoom = config.minZoom === undefined ? undefined : layerNumberGetter(config.minZoom, undefined); + if (typeof minZoom === 'number' && props.viewState.zoom <= minZoom) { + return undefined; + } else if (typeof minZoom === 'function') { + console.log('Function for minZoom level not supported yet'); + } + const maxZoom = config.maxZoom === undefined ? undefined : layerNumberGetter(config.maxZoom, undefined); + if (typeof maxZoom === 'number' && props.viewState.zoom >= maxZoom) { + return undefined; + } else if (typeof maxZoom === 'function') { + console.log('Function for maxZoom level not supported yet'); + } + const contourWidth = + config.strokeWidth === undefined ? undefined : layerNumberGetter(config.strokeWidth, undefined); + if (contourWidth !== undefined) { + layerProperties.getLineWidth = contourWidth; + } + const circleRadius = config.radius === undefined ? undefined : layerNumberGetter(config.radius, 10); + if (circleRadius !== undefined) { + layerProperties.getRadius = circleRadius; + } + const color = config.color === undefined ? undefined : layerColorGetter(config.color, '#ffffff'); + if (color !== undefined) { + layerProperties.getFillColor = color; + } + const contourColor = config.strokeColor === undefined ? undefined : layerColorGetter(config.strokeColor, '#ffffff'); + if (contourColor !== undefined) { + layerProperties.getLineColor = contourColor; + } + const radiusScale = config.radiusScale === undefined ? undefined : layerNumberGetter(config.radiusScale, 1); + if (radiusScale !== undefined) { + layerProperties.radiusScale = radiusScale; + } + const lineWidthScale = + config.strokeWidthScale === undefined ? undefined : layerNumberGetter(config.strokeWidthScale, 1); + if (lineWidthScale !== undefined) { + layerProperties.lineWidthScale = lineWidthScale; + } + const pickable = + config.pickable === undefined + ? true + : typeof config.pickable === 'function' + ? config.pickable() + : config.pickable; + return new ScatterplotLayer({ id: props.layerDescription.id, data: props.layerDescription.layerData.features, - filled: true, - stroked: true, + filled: color !== undefined, + stroked: contourColor !== undefined || contourWidth !== undefined, getPosition: (d) => d.geometry.coordinates, - getFillColor: (d) => propertyToColor(d, 'color'), - getLineColor: [255, 255, 255, 255], - getRadius: (d, i) => 10, - radiusScale: 6, updateTriggers: { getPosition: props.updateCount, getFillColor: props.updateCount }, - pickable: true, - ...eventsToAdd + pickable, + ...eventsToAdd, + ...layerProperties }); +}; const addEvents = ( events: { [evtName in layerEventNames]?: MapLayerEventHandlerDescriptor[] }, @@ -205,9 +319,9 @@ const getLayer = (props: TransitionMapLayerProps): Layer | undefined return undefined; } const eventsToAdd = props.events !== undefined ? addEvents(props.events, props) : {}; - if (props.layerDescription.configuration.type === 'circle') { + if (LayerDescription.layerIsCircle(props.layerDescription.configuration)) { // FIXME Try not to type as any - return getScatterLayer(props, eventsToAdd) as any; + return getScatterLayer(props, props.layerDescription.configuration, eventsToAdd) as any; } else if (props.layerDescription.configuration.type === 'line') { return getLineLayer(props, eventsToAdd) as any; } else if (props.layerDescription.configuration.type === 'fill') { diff --git a/packages/transition-frontend/src/config/layers.config.ts b/packages/transition-frontend/src/config/layers.config.ts index 18d4225d..752a1d6b 100644 --- a/packages/transition-frontend/src/config/layers.config.ts +++ b/packages/transition-frontend/src/config/layers.config.ts @@ -4,68 +4,28 @@ * This file is licensed under the MIT License. * License text available at https://opensource.org/licenses/MIT */ +import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; + const layersConfig = { routingPoints: { // for routing origin, destination and waypoints type: 'circle', - paint: { - 'circle-radius': { - base: 1, - stops: [ - [5, 1], - [10, 2], - [15, 10] - ] - }, - 'circle-color': { - property: 'color', - type: 'identity' - }, - 'circle-opacity': 1.0, - 'circle-stroke-width': { - base: 1, - stops: [ - [5, 1], - [11, 1], - [12, 2], - [14, 3], - [15, 4] - ] - }, - 'circle-stroke-opacity': 1.0, - 'circle-stroke-color': 'rgba(255,255,255,1.0)' - } + color: { type: 'property', property: 'color' }, + strokeColor: [255, 255, 255], + strokeWidth: 1, + radius: 5, + radiusScale: 3, + strokeWidthScale: 3 }, accessibilityMapPoints: { type: 'circle', - paint: { - 'circle-radius': { - base: 1, - stops: [ - [5, 1], - [10, 2], - [15, 10] - ] - }, - 'circle-color': { - property: 'color', - type: 'identity' - }, - 'circle-opacity': 1.0, - 'circle-stroke-width': { - base: 1, - stops: [ - [5, 1], - [11, 1], - [12, 2], - [14, 3], - [15, 4] - ] - }, - 'circle-stroke-opacity': 1.0, - 'circle-stroke-color': 'rgba(255,255,255,1.0)' - } + color: { type: 'property', property: 'color' }, + strokeColor: [255, 255, 255], + strokeWidth: 1, + radius: 5, + radiusScale: 3, + strokeWidthScale: 3 }, accessibilityMapPolygons: { @@ -375,85 +335,32 @@ const layersConfig = { transitPathWaypoints: { type: 'circle', - paint: { - 'circle-radius': { - base: 1, - stops: [ - [5, 1], - [10, 2], - [15, 5] - ] - }, - 'circle-color': 'rgba(0,0,0,1.0)', - 'circle-opacity': 0.5, - 'circle-stroke-width': { - base: 1, - stops: [ - [5, 1], - [11, 1], - [12, 2], - [14, 2], - [15, 3] - ] - }, - 'circle-stroke-opacity': 0.7, - 'circle-stroke-color': 'rgba(255,255,255,1.0)' - } + color: [0, 0, 0, 128], + strokeColor: [255, 255, 255, 180], + strokeWidth: 1, + radius: 4, + radiusScale: 3, + strokeWidthScale: 3 }, transitPathWaypointsSelected: { type: 'circle', - paint: { - 'circle-radius': { - base: 1, - stops: [ - [5, 1], - [10, 3], - [15, 6] - ] - }, - 'circle-color': 'rgba(0,0,0,1.0)', - 'circle-opacity': 0.5, - 'circle-stroke-width': { - base: 1, - stops: [ - [5, 1], - [11, 1], - [12, 2], - [14, 2], - [15, 3] - ] - }, - 'circle-stroke-opacity': 0.85, - 'circle-stroke-color': 'rgba(255,255,255,1.0)' - } + color: [0, 0, 0, 128], + strokeColor: [255, 255, 255, 220], + strokeWidth: 1, + radius: 4, + radiusScale: 3, + strokeWidthScale: 3 }, transitPathWaypointsErrors: { type: 'circle', - paint: { - 'circle-radius': { - base: 1, - stops: [ - [5, 1], - [10, 2], - [15, 5] - ] - }, - 'circle-opacity': 0, - 'circle-stroke-width': { - base: 1, - stops: [ - [5, 2], - [11, 2], - [12, 4], - [14, 4], - [15, 6] - ] - }, - 'circle-stroke-opacity': 0.7, - 'circle-stroke-color': 'rgba(255,0,0,1.0)' - } + color: [0, 0, 0, 128], + strokeColor: [255, 0, 0, 180], + strokeWidth: 1, + radius: 4, + radiusScale: 3, + strokeWidthScale: 3 }, transitPathsForServices: { @@ -637,138 +544,62 @@ const layersConfig = { transitNodes: { type: 'circle', - minzoom: 11, - paint: { - 'circle-radius': [ - 'interpolate', - ['exponential', 2], - ['zoom'], - 0, - ['*', ['number', ['feature-state', 'size'], 1], 0], - 10, - ['*', ['number', ['feature-state', 'size'], 1], 1.5], - 15, - ['*', ['number', ['feature-state', 'size'], 1], 8], - 20, - ['*', ['number', ['feature-state', 'size'], 1], 15] - ], - 'circle-color': { - property: 'color', - type: 'identity' - }, - 'circle-opacity': [ - 'interpolate', - ['linear'], - ['zoom'], - 10, - ['case', ['boolean', ['feature-state', 'hover'], false], 1.0, 0.1], - 15, - ['case', ['boolean', ['feature-state', 'hover'], false], 1.0, 0.8], - 20, - ['case', ['boolean', ['feature-state', 'hover'], false], 1.0, 0.9] - ], - 'circle-stroke-width': [ - 'interpolate', - ['exponential', 2], - ['zoom'], - 0, - ['*', ['number', ['feature-state', 'size'], 1], 0], - 10, - ['*', ['number', ['feature-state', 'size'], 1], 0.2], - 15, - ['*', ['number', ['feature-state', 'size'], 1], 3], - 20, - ['*', ['number', ['feature-state', 'size'], 1], 5] - ], - 'circle-stroke-opacity': [ - 'interpolate', - ['linear'], - ['zoom'], - 10, - ['case', ['boolean', ['feature-state', 'hover'], false], 1.0, 0.1], - 15, - ['case', ['boolean', ['feature-state', 'hover'], false], 1.0, 0.8], - 20, - ['case', ['boolean', ['feature-state', 'hover'], false], 1.0, 0.9] - ], - 'circle-stroke-color': 'rgba(255,255,255,1.0)' - } + minZoom: 11, + color: { type: 'property', property: 'color' }, + strokeColor: [255, 255, 255], + strokeWidth: 2, + radius: 5, + radiusScale: 3, + strokeWidthScale: 3, + autoHighlight: true, + pickable: () => serviceLocator.selectedObjectsManager.get('node') === undefined }, transitNodes250mRadius: { type: 'circle', - paint: { - 'circle-radius': [ - 'interpolate', - ['exponential', 2], - ['zoom'], - 0, - 0, - 20, - ['get', '_250mRadiusPixelsAtMaxZoom'] - ], - 'circle-color': 'hsla(93, 100%, 63%, 0.08)', - 'circle-stroke-width': 3, - 'circle-stroke-color': 'hsla(93, 100%, 63%, 0.10)' - } + color: [151, 255, 66, 20], + strokeColor: [151, 255, 66, 25], + strokeWidth: 3, + radius: 250, + pickable: false }, transitNodes500mRadius: { type: 'circle', - paint: { - 'circle-radius': [ - 'interpolate', - ['exponential', 2], - ['zoom'], - 0, - 0, - 20, - ['get', '_500mRadiusPixelsAtMaxZoom'] - ], - 'circle-color': 'hsla(74, 100%, 63%, 0.06)', - 'circle-stroke-width': 2, - 'circle-stroke-color': 'hsla(74, 100%, 63%, 0.075)' - } + color: [211, 255, 66, 16], + strokeColor: [211, 255, 66, 20], + strokeWidth: 3, + radius: 500, + pickable: false }, transitNodes750mRadius: { type: 'circle', - paint: { - 'circle-radius': [ - 'interpolate', - ['exponential', 2], - ['zoom'], - 0, - 0, - 20, - ['get', '_750mRadiusPixelsAtMaxZoom'] - ], - 'circle-color': 'hsla(49, 100%, 63%, 0.025)', - 'circle-stroke-width': 1, - 'circle-stroke-color': 'hsla(49, 100%, 63%, 0.075)' - } + color: [255, 220, 66, 6], + strokeColor: [255, 220, 66, 10], + strokeWidth: 3, + radius: 750, + pickable: false }, transitNodes1000mRadius: { type: 'circle', - paint: { - 'circle-radius': [ - 'interpolate', - ['exponential', 2], - ['zoom'], - 0, - 0, - 20, - ['get', '_1000mRadiusPixelsAtMaxZoom'] - ], - 'circle-color': 'hsla(6, 100%, 63%, 0.02)', - 'circle-stroke-width': 1, - 'circle-stroke-color': 'hsla(6, 100%, 63%, 0.075)' - } + color: [255, 85, 66, 16], + strokeColor: [255, 85, 66, 20], + strokeWidth: 3, + radius: 1000, + pickable: false }, transitNodesSelected: { type: 'circle', + minZoom: 11, + color: { type: 'property', property: 'color' }, + strokeColor: [255, 255, 255], + strokeWidth: 2, + radius: 7, + radiusScale: 3, + strokeWidthScale: 3, 'custom-shader': 'circleSpinner', repaint: true, paint: { @@ -801,32 +632,44 @@ const layersConfig = { transitNodesRoutingRadius: { type: 'circle', - paint: { - 'circle-radius': [ - 'interpolate', - ['exponential', 2], - ['zoom'], - 0, - 0, - 20, - ['get', '_routingRadiusPixelsAtMaxZoom'] - ], - 'circle-color': { - property: 'color', - type: 'identity' - }, - 'circle-opacity': 0.2, - //"circle-color" : { - // property: 'color', - // type: 'identity' - //}, - 'circle-stroke-width': 1, - 'circle-stroke-opacity': 0.3, - 'circle-stroke-color': { - property: 'color', - type: 'identity' + color: (node: GeoJSON.Feature) => { + const opacity = Math.floor(0.2 * 255); // 20% + const color = node.properties?.color; + if (typeof color === 'string' && color.startsWith('#')) { + return `${color.substring(0, 7)}${opacity.toString(16)}`; } - } + if (Array.isArray(color)) { + if (color.length === 3) { + color.push(opacity); + } else if (color.length > 3) { + color[3] = opacity; + } + return color; + } + return '#0086FF33'; + }, + strokeColor: (node: GeoJSON.Feature) => { + const opacity = Math.floor(0.3 * 255); // 30% + const color = node.properties?.color; + if (typeof color === 'string' && color.startsWith('#')) { + return `${color.substring(0, 7)}${opacity.toString(16)}`; + } + if (Array.isArray(color)) { + if (color.length === 3) { + color.push(opacity); + } else if (color.length > 3) { + color[3] = opacity; + } + return color; + } + return '#0086FF4C'; + }, + strokeWidth: 3, + radius: { + type: 'property', + property: 'routing_radius_meters' + }, + pickable: false }, transitNodesStationSelected: { diff --git a/packages/transition-frontend/src/services/map/events/NodeSectionMapEvents.ts b/packages/transition-frontend/src/services/map/events/NodeSectionMapEvents.ts index f576715e..e777cea0 100644 --- a/packages/transition-frontend/src/services/map/events/NodeSectionMapEvents.ts +++ b/packages/transition-frontend/src/services/map/events/NodeSectionMapEvents.ts @@ -158,8 +158,8 @@ const onMapClicked = (pointInfo: PointInfo, e: MjolnirEvent) => { // FIXME Migration to DeckGL: Reimplement // serviceLocator.eventManager.emit('selected.updateAutocompleteNameChoices.node', getRoadLabelAround(map, e)); selectedTransitNode.set('geography.coordinates', pointInfo.coordinates); - // FIXME Migration to DeckGL: Do we need to call this event? - // serviceLocator.eventManager.emit('selected.dragEnd.node', coordinates); + // This updates the position on the map. + serviceLocator.eventManager.emit('selected.drag.node', pointInfo.coordinates); serviceLocator.selectedObjectsManager.update('node', selectedNode); } } From fa2fca6f99946c1bc6e507a4f903647baf957f8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Wed, 10 Jan 2024 14:52:51 -0500 Subject: [PATCH 14/23] deck.gl: Add comments and fix direction of animated path --- .../map/layers/AnimatedArrowPathLayer.tsx | 59 +++++++++++-------- .../map/layers/TransitionMapLayer.tsx | 6 +- .../src/config/layers.config.ts | 2 +- 3 files changed, 39 insertions(+), 28 deletions(-) diff --git a/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx b/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx index e56b38bb..923d5189 100644 --- a/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx +++ b/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx @@ -5,27 +5,27 @@ * License text available at https://opensource.org/licenses/MIT */ import { PathLayer, PathLayerProps } from '@deck.gl/layers/typed'; -import { AccessorFunction, DefaultProps } from '@deck.gl/core'; -import * as vec3 from 'gl-matrix/vec3'; +import { Accessor, DefaultProps } from '@deck.gl/core/typed'; +import * as vec3 from 'gl-matrix/vec3/'; export type AnimatedArrowPathLayerProps = _AnimatedArrowPathLayerProps & PathLayerProps; type _AnimatedArrowPathLayerProps = { /** * [solid length, gap length] accessor. - * @default [4, 4] + * @default 8 */ - getSizeArray?: AccessorFunction; + getDistanceBetweenArrows?: Accessor; /** - * Arrow path speed scaling. The larger the number, the slower the path movement. + * Arrow path speed scaling. The larger the number, the slower the path movement. 0 prevents movement * @default 3 */ speedDivider?: number; }; const defaultProps: DefaultProps = { - getSizeArray: { type: 'accessor', value: [4, 4] }, + getDistanceBetweenArrows: { type: 'accessor', value: 8 }, speedDivider: 3 }; @@ -63,11 +63,11 @@ export default class AnimatedArrowPathLayer { const result = [0]; if (path === undefined) { return result; @@ -100,7 +106,7 @@ export default class AnimatedArrowPathLayer 0.0) { offset = vArrowPathOffset; - unitOffset = mod(vPathPosition.y + offset, unitLength); + // The offset needs to be subtracted, otherwise the path goes in the wrong direction + unitOffset = mod(vPathPosition.y - offset, unitLength); } `, 'fs:#main-end': `\ @@ -148,16 +155,18 @@ export default class AnimatedArrowPathLayer arrowStart && abs(vPathPosition.x) <= absX * (1.0 - relY)) { gl_FragColor = vec4(255/255, 255/255, 255/255, 1.0); // white } else { // TODO : Can this be simplified? // This is to make the fade start at the end of the white arrow rather than at the top. - float alpha = 1.0 - relY; - if (relY < arrowEnd) { - alpha = 1.0 - alpha - arrowEnd; + float alpha = relY; + if (relY > arrowStart) { + alpha = alpha - arrowStart; } gl_FragColor = vec4(vColor.r, vColor.g, vColor.b, mix(0.5, 1.0, alpha)); } diff --git a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx index 101857fc..08aa3d67 100644 --- a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx +++ b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx @@ -164,7 +164,7 @@ const getAnimatedArrowPathLayer = (props: TransitionMapLayerProps, eventsToAdd): data: props.layerDescription.layerData.features, getPath: (d) => d.geometry.coordinates, pickable: true, - getWidth: 100, + getWidth: 50, /* getWidth: (d, i) => { return 70; @@ -174,8 +174,10 @@ const getAnimatedArrowPathLayer = (props: TransitionMapLayerProps, eventsToAdd): getColor: props.updateCount }, getColor: (d) => propertyToColor(d, 'color'), - getSizeArray: [4, 4], + getDistanceBetweenArrows: 8, speedDivider: 10, + capRounded: true, + jointRounded: true, ...eventsToAdd }); diff --git a/packages/transition-frontend/src/config/layers.config.ts b/packages/transition-frontend/src/config/layers.config.ts index 752a1d6b..3d8e9614 100644 --- a/packages/transition-frontend/src/config/layers.config.ts +++ b/packages/transition-frontend/src/config/layers.config.ts @@ -69,8 +69,8 @@ const layersConfig = { }, routingPaths: { + type: 'animatedArrowPath', repaint: true, - type: 'line', layout: { 'line-join': 'round', 'line-cap': 'round' From 7a27614414fde0fcfebcf2cd5de9c00a0b1900ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Tue, 9 Jan 2024 15:18:49 -0500 Subject: [PATCH 15/23] deck.gl: Set styles for line layers Bring back most of mapbox styles for line-type layers. The highlight uses autoHighlight instead of changing the line width. The 'animatedArrowPath' also share a good part of the configuration and re-use the same logic for the PathLayer's data. --- .../services/map/layers/LayerDescription.ts | 51 ++++- .../map/layers/TransitionMapLayer.tsx | 149 ++++++++----- .../src/config/layers.config.ts | 203 ++++-------------- 3 files changed, 183 insertions(+), 220 deletions(-) diff --git a/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts index bcca467b..02e90407 100644 --- a/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts +++ b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts @@ -28,6 +28,16 @@ export type CommonLayerConfiguration = { */ color?: FeatureColor; pickable?: boolean | (() => boolean); + opacity?: FeatureNumber; + /** + * Minimal zoom level at which a feature should be displayed + */ + minZoom?: FeatureNumber; + /** + * Maximum zoom level at which a feature should be displayed + */ + maxZoom?: FeatureNumber; + autoHighlight?: boolean; }; export type PointLayerConfiguration = CommonLayerConfiguration & { @@ -48,21 +58,50 @@ export type PointLayerConfiguration = CommonLayerConfiguration & { strokeWidthScale?: FeatureNumber; minRadiusPixels?: FeatureNumber; maxRadiusPixels?: FeatureNumber; +}; + +export const layerIsCircle = (layer: LayerConfiguration): layer is PointLayerConfiguration => { + return layer.type === 'circle'; +}; + +export type BaseLineLayerConfiguration = CommonLayerConfiguration & { /** - * Minimal zoom level at which a feature should be displayed + * The line's width and scale */ - minZoom?: FeatureNumber; + width?: FeatureNumber; + widthScale?: FeatureNumber; + widthMinPixels?: FeatureNumber; + widthMaxPixels?: FeatureNumber; /** - * Maximum zoom level at which a feature should be displayed + * Whether the end of the lines should be rounded */ - maxZoom?: FeatureNumber; + capRounded?: boolean; + /** + * Whether the line joints should be rounded + */ + jointRounded?: boolean; }; -export const layerIsCircle = (layer: LayerConfiguration): layer is PointLayerConfiguration => { - return layer.type === 'circle'; + +export type LineLayerConfiguration = BaseLineLayerConfiguration & { + type: 'line'; +}; + +export const layerIsLine = (layer: LayerConfiguration): layer is LineLayerConfiguration => { + return layer.type === 'line'; +}; + +export type AnimatedPathLayerConfiguration = BaseLineLayerConfiguration & { + type: 'animatedArrowPath'; +}; + +export const layerIsAnimatedPath = (layer: LayerConfiguration): layer is AnimatedPathLayerConfiguration => { + return layer.type === 'animatedArrowPath'; }; export type LayerConfiguration = | PointLayerConfiguration + | LineLayerConfiguration + | AnimatedPathLayerConfiguration | { // TODO Type this properly. When the data in layers.config.ts is used by the new API, add it here [key: string]: any; diff --git a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx index 08aa3d67..f797a158 100644 --- a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx +++ b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx @@ -6,6 +6,7 @@ */ import { Layer, LayerProps } from '@deck.gl/core/typed'; import { propertiesContainsFilter } from '@turf/turf'; +import Preferences from 'chaire-lib-common/lib/config/Preferences'; import { layerEventNames, MapCallbacks, @@ -132,53 +133,115 @@ const layerNumberGetter = ( return undefined; }; -const getLineLayer = (props: TransitionMapLayerProps, eventsToAdd): PathLayer => - new PathLayer({ +const getCommonProperties = (props: TransitionMapLayerProps, config: LayerDescription.CommonLayerConfiguration) => { + const layerProperties: any = {}; + const minZoom = config.minZoom === undefined ? undefined : layerNumberGetter(config.minZoom, undefined); + if (typeof minZoom === 'number' && props.viewState.zoom <= minZoom) { + return undefined; + } else if (typeof minZoom === 'function') { + console.log('Function for minZoom level not supported yet'); + } + const maxZoom = config.maxZoom === undefined ? undefined : layerNumberGetter(config.maxZoom, undefined); + if (typeof maxZoom === 'number' && props.viewState.zoom >= maxZoom) { + return undefined; + } else if (typeof maxZoom === 'function') { + console.log('Function for maxZoom level not supported yet'); + } + const color = config.color === undefined ? undefined : layerColorGetter(config.color, '#ffffff'); + if (color !== undefined) { + layerProperties.getColor = color; + } + const opacity = config.opacity === undefined ? undefined : layerNumberGetter(config.opacity, 1); + if (opacity !== undefined) { + layerProperties.opacity = opacity; + } + const autoHighlight = config.autoHighlight === undefined ? undefined : config.autoHighlight; + if (autoHighlight !== undefined) { + layerProperties.autoHighlight = autoHighlight; + } + return layerProperties; +}; + +const getCommonLineProperties = ( + props: TransitionMapLayerProps, + config: LayerDescription.BaseLineLayerConfiguration +) => { + const layerProperties: any = getCommonProperties(props, config); + + const lineWidth = config.width === undefined ? undefined : layerNumberGetter(config.width, 10); + if (lineWidth !== undefined) { + layerProperties.getWidth = lineWidth; + } + const widthScale = config.widthScale === undefined ? undefined : layerNumberGetter(config.widthScale, 1); + if (widthScale !== undefined) { + layerProperties.lineWidthScale = widthScale; + } + const widthMinPixels = + config.widthMinPixels === undefined ? undefined : layerNumberGetter(config.widthMinPixels, 1); + if (widthMinPixels !== undefined) { + layerProperties.widthMinPixels = widthMinPixels; + } + const widthMaxPixels = + config.widthMaxPixels === undefined ? undefined : layerNumberGetter(config.widthMaxPixels, 10); + if (widthMaxPixels !== undefined) { + layerProperties.widthMaxPixels = widthMaxPixels; + } + const capRounded = config.capRounded === undefined ? undefined : config.capRounded; + if (capRounded !== undefined) { + layerProperties.capRounded = capRounded; + } + const jointRounded = config.jointRounded === undefined ? undefined : config.jointRounded; + if (jointRounded !== undefined) { + layerProperties.jointRounded = jointRounded; + } + + const pickable = + config.pickable === undefined + ? true + : typeof config.pickable === 'function' + ? config.pickable() + : config.pickable; + layerProperties.pickable = pickable; + return layerProperties; +}; + +const getLineLayer = ( + props: TransitionMapLayerProps, + config: LayerDescription.LineLayerConfiguration, + eventsToAdd +): PathLayer | undefined => { + const layerProperties: any = getCommonLineProperties(props, config); + + return new PathLayer({ id: props.layerDescription.id, data: props.layerDescription.layerData.features, getPath: (d) => d.geometry.coordinates, - //getTimestamps: d => setTimestamps(d), - getColor: (d) => propertyToColor(d, 'color'), - opacity: 0.8, - widthMinPixels: 2, - widthScale: 4, - rounded: true, - fadeTrail: true, - trailLength: 400, - currentTime: 0, - shadowEnabled: false, - pickable: true, updateTriggers: { getPath: props.updateCount, getColor: props.updateCount }, - /*updateTriggers: { - getWidth: routeIndex - },*/ - ...eventsToAdd + ...eventsToAdd, + ...layerProperties }); +}; -const getAnimatedArrowPathLayer = (props: TransitionMapLayerProps, eventsToAdd): AnimatedArrowPathLayer => +const getAnimatedArrowPathLayer = ( + props: TransitionMapLayerProps, + config: LayerDescription.AnimatedPathLayerConfiguration, + eventsToAdd +): AnimatedArrowPathLayer => new AnimatedArrowPathLayer({ id: props.layerDescription.id, data: props.layerDescription.layerData.features, getPath: (d) => d.geometry.coordinates, - pickable: true, - getWidth: 50, - /* - getWidth: (d, i) => { - return 70; - },*/ updateTriggers: { getPath: props.updateCount, getColor: props.updateCount }, - getColor: (d) => propertyToColor(d, 'color'), getDistanceBetweenArrows: 8, - speedDivider: 10, - capRounded: true, - jointRounded: true, - ...eventsToAdd + speedDivider: Preferences.get('enableMapAnimations', true) ? 10 : 0, + ...eventsToAdd, + ...getCommonLineProperties(props, config) }); const getPolygonLayer = (props: TransitionMapLayerProps, eventsToAdd): GeoJsonLayer => @@ -208,19 +271,7 @@ const getScatterLayer = ( config: LayerDescription.PointLayerConfiguration, eventsToAdd ): ScatterplotLayer | undefined => { - const layerProperties: any = {}; - const minZoom = config.minZoom === undefined ? undefined : layerNumberGetter(config.minZoom, undefined); - if (typeof minZoom === 'number' && props.viewState.zoom <= minZoom) { - return undefined; - } else if (typeof minZoom === 'function') { - console.log('Function for minZoom level not supported yet'); - } - const maxZoom = config.maxZoom === undefined ? undefined : layerNumberGetter(config.maxZoom, undefined); - if (typeof maxZoom === 'number' && props.viewState.zoom >= maxZoom) { - return undefined; - } else if (typeof maxZoom === 'function') { - console.log('Function for maxZoom level not supported yet'); - } + const layerProperties: any = getCommonProperties(props, config); const contourWidth = config.strokeWidth === undefined ? undefined : layerNumberGetter(config.strokeWidth, undefined); if (contourWidth !== undefined) { @@ -230,10 +281,6 @@ const getScatterLayer = ( if (circleRadius !== undefined) { layerProperties.getRadius = circleRadius; } - const color = config.color === undefined ? undefined : layerColorGetter(config.color, '#ffffff'); - if (color !== undefined) { - layerProperties.getFillColor = color; - } const contourColor = config.strokeColor === undefined ? undefined : layerColorGetter(config.strokeColor, '#ffffff'); if (contourColor !== undefined) { layerProperties.getLineColor = contourColor; @@ -256,7 +303,7 @@ const getScatterLayer = ( return new ScatterplotLayer({ id: props.layerDescription.id, data: props.layerDescription.layerData.features, - filled: color !== undefined, + filled: layerProperties.getColor !== undefined, stroked: contourColor !== undefined || contourWidth !== undefined, getPosition: (d) => d.geometry.coordinates, updateTriggers: { @@ -324,12 +371,12 @@ const getLayer = (props: TransitionMapLayerProps): Layer | undefined if (LayerDescription.layerIsCircle(props.layerDescription.configuration)) { // FIXME Try not to type as any return getScatterLayer(props, props.layerDescription.configuration, eventsToAdd) as any; - } else if (props.layerDescription.configuration.type === 'line') { - return getLineLayer(props, eventsToAdd) as any; + } else if (LayerDescription.layerIsLine(props.layerDescription.configuration)) { + return getLineLayer(props, props.layerDescription.configuration, eventsToAdd) as any; } else if (props.layerDescription.configuration.type === 'fill') { return getPolygonLayer(props, eventsToAdd) as any; - } else if (props.layerDescription.configuration.type === 'animatedArrowPath') { - return getAnimatedArrowPathLayer(props, eventsToAdd) as any; + } else if (LayerDescription.layerIsAnimatedPath(props.layerDescription.configuration)) { + return getAnimatedArrowPathLayer(props, props.layerDescription.configuration, eventsToAdd) as any; } console.log('unknown layer', props.layerDescription.configuration); return undefined; diff --git a/packages/transition-frontend/src/config/layers.config.ts b/packages/transition-frontend/src/config/layers.config.ts index 3d8e9614..5dbeb83b 100644 --- a/packages/transition-frontend/src/config/layers.config.ts +++ b/packages/transition-frontend/src/config/layers.config.ts @@ -41,56 +41,29 @@ const layersConfig = { accessibilityMapPolygonStrokes: { type: 'line', - paint: { - 'line-color': 'rgba(255,255,255,1.0)', - 'line-opacity': 0.2, - 'line-width': 1.5 - } + color: '#ffffff', + opacity: 0.2, + width: 1.5 }, routingPathsStrokes: { type: 'line', - layout: { - 'line-join': 'round', - 'line-cap': 'round' - }, - paint: { - 'line-color': 'rgba(255,255,255,1.0)', - 'line-opacity': 0.7, - 'line-width': { - base: 6, - stops: [ - [6, 6], - [12, 10], - [13, 12] - ] - } - } + color: { type: 'property', property: 'color' }, //'#ffffffff', + opacity: 0.7, + width: 6, + widthScale: 1.5, + capRounded: true, + jointRounded: true }, routingPaths: { type: 'animatedArrowPath', - repaint: true, - layout: { - 'line-join': 'round', - 'line-cap': 'round' - }, - 'custom-shader': 'lineArrow', - paint: { - 'line-color': { - property: 'color', - type: 'identity' - }, - 'line-opacity': 1.0, - 'line-width': { - base: 3, - stops: [ - [6, 3], - [12, 5], - [13, 7] - ] - } - } + color: { type: 'property', property: 'color' }, + width: 50, + widthScale: 4, + widthMinPixels: 10, + capRounded: true, + jointRounded: true }, isochronePolygons: { @@ -106,7 +79,7 @@ const layersConfig = { transitPaths: { type: 'line', - minzoom: 9, + minZoom: 9, defaultFilter: [ 'any', ['all', ['==', ['string', ['get', 'mode']], 'bus'], ['>=', ['zoom'], 11]], @@ -124,42 +97,19 @@ const layersConfig = { ['all', ['==', ['string', ['get', 'mode']], 'horse'], ['>=', ['zoom'], 11]], ['all', ['==', ['string', ['get', 'mode']], 'other'], ['>=', ['zoom'], 11]] ], - layout: { - 'line-join': 'miter', - 'line-cap': 'butt' - }, - paint: { - 'line-offset': { - // we should use turf.js to offset beforehand, - //but turf offset is not based on zoom and 180 degrees turns creates random coordinates - base: 1, - stops: [ - [13, 0], - [16, 4], - [20, 20] - ] - }, - 'line-color': { - property: 'color', - type: 'identity' - }, - 'line-opacity': 0.8 /*{ // not working??? - 'base': 0, - 'stops': [ - [0, 0.0], - [7, 0.05], - [10, 0.2], - [15, 0.5], - [20, 0.8] - ] - }*/, - 'line-width': ['case', ['boolean', ['feature-state', 'hover'], false], 6, 2] - } + color: { type: 'property', property: 'color' }, + opacity: 0.8, + widthScale: 4, + widthMinPixels: 2, + capRounded: true, + jointRounded: true, + autoHighlight: true }, + // TODO Port to deck.gl: try to use a custom layer type to include stroked offset on a line. See https://deck.gl/docs/api-reference/extensions/path-style-extension for an example, with source code https://github.com/visgl/deck.gl/blob/master/modules/extensions/src/path-style/path-style-extension.ts transitPathsStroke: { type: 'line', - minzoom: 15, + minZoom: 15, layout: { 'line-join': 'miter', 'line-cap': 'butt' @@ -260,6 +210,7 @@ const layersConfig = { } }, + // TODO Port to deck.gl: Same comment as above transitPathsHoverStroke: { type: 'line', repaint: true, @@ -292,45 +243,12 @@ const layersConfig = { transitPathsSelected: { type: 'animatedArrowPath', - repaint: true, - //"shaders": [transitPathsSelectedFragmentShader, transitPathsSelectedVertexShader], - layout: { - 'line-join': 'miter', - 'line-cap': 'butt' - }, - 'custom-shader': 'lineArrow', - paint: { - //"line-arrow": true, - 'line-offset': { - base: 1, - stops: [ - [13, 0], - [16, 4], - [20, 20] - ] - }, - //"line-color": "rgba(0,0,255,1.0)", - 'line-color': { - property: 'color', - type: 'identity' - }, - 'line-opacity': 1.0, - 'line-width': { - base: 1, - stops: [ - [6, 5], - [12, 7], - [13, 9] - ] - } //, - //'line-gradient': [ - // 'interpolate', - // ['linear'], - // ['line-progress'], - // 0, "blue", - // 1.0, "red" - //] - } + color: { type: 'property', property: 'color' }, + width: 50, + widthScale: 4, + widthMinPixels: 10, + capRounded: true, + jointRounded: true }, transitPathWaypoints: { @@ -365,55 +283,14 @@ const layersConfig = { transitPathsForServices: { type: 'line', - minzoom: 9, - defaultFilter: [ - 'any', - ['all', ['==', ['string', ['get', 'mode']], 'bus'], ['>=', ['zoom'], 11]], - ['all', ['==', ['string', ['get', 'mode']], 'rail'], ['>=', ['zoom'], 9]], - ['all', ['==', ['string', ['get', 'mode']], 'highSpeedRail'], ['>=', ['zoom'], 9]], - ['all', ['==', ['string', ['get', 'mode']], 'metro'], ['>=', ['zoom'], 9]], - ['all', ['==', ['string', ['get', 'mode']], 'monorail'], ['>=', ['zoom'], 10]], - ['all', ['==', ['string', ['get', 'mode']], 'tram'], ['>=', ['zoom'], 10]], - ['all', ['==', ['string', ['get', 'mode']], 'tramTrain'], ['>=', ['zoom'], 10]], - ['all', ['==', ['string', ['get', 'mode']], 'water'], ['>=', ['zoom'], 9]], - ['all', ['==', ['string', ['get', 'mode']], 'gondola'], ['>=', ['zoom'], 10]], - ['all', ['==', ['string', ['get', 'mode']], 'funicular'], ['>=', ['zoom'], 10]], - ['all', ['==', ['string', ['get', 'mode']], 'taxi'], ['>=', ['zoom'], 11]], - ['all', ['==', ['string', ['get', 'mode']], 'cableCar'], ['>=', ['zoom'], 10]], - ['all', ['==', ['string', ['get', 'mode']], 'horse'], ['>=', ['zoom'], 11]], - ['all', ['==', ['string', ['get', 'mode']], 'other'], ['>=', ['zoom'], 11]] - ], - layout: { - 'line-join': 'miter', - 'line-cap': 'butt' - }, - paint: { - 'line-offset': { - // we should use turf.js to offset beforehand, - //but turf offset is not based on zoom and 180 degrees turns creates random coordinates - base: 1, - stops: [ - [13, 0], - [16, 4], - [20, 20] - ] - }, - 'line-color': { - property: 'color', - type: 'identity' - }, - 'line-opacity': 0.8 /*{ // not working??? - 'base': 0, - 'stops': [ - [0, 0.0], - [7, 0.05], - [10, 0.2], - [15, 0.5], - [20, 0.8] - ] - }*/, - 'line-width': ['case', ['boolean', ['feature-state', 'hover'], false], 6, 2] - } + minZoom: 9, + color: { type: 'property', property: 'color' }, + opacity: 0.8, + widthScale: 4, + widthMinPixels: 2, + capRounded: true, + jointRounded: true, + autoHighlight: true }, transitStations: { From 31b7eb995de8916de9272665441708f8580d91fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Fri, 12 Jan 2024 13:56:35 -0500 Subject: [PATCH 16/23] deck.gl: Set styles for polygon layers Bring back the mapbox styles for the polygon layers. With the lineColor and fillColor, it is not necessary to have both a polygon and a stroke layer, one layer does them all. --- .../services/map/layers/LayerDescription.ts | 20 +++++-- .../map/layers/TransitionMapLayer.tsx | 54 +++++++++++++------ .../src/config/layers.config.ts | 17 ++---- 3 files changed, 57 insertions(+), 34 deletions(-) diff --git a/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts index 02e90407..bbc34c6a 100644 --- a/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts +++ b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts @@ -98,14 +98,26 @@ export const layerIsAnimatedPath = (layer: LayerConfiguration): layer is Animate return layer.type === 'animatedArrowPath'; }; +export type PolygonLayerConfiguration = CommonLayerConfiguration & { + type: 'fill'; + /** + * fill and contour's color + */ + color?: FeatureColor; + lineColor?: FeatureColor; + lineWidth?: FeatureNumber; + lineWidthMinPixels?: FeatureNumber; +}; + +export const layerIsPolygon = (layer: LayerConfiguration): layer is PolygonLayerConfiguration => { + return layer.type === 'fill'; +}; + export type LayerConfiguration = | PointLayerConfiguration | LineLayerConfiguration | AnimatedPathLayerConfiguration - | { - // TODO Type this properly. When the data in layers.config.ts is used by the new API, add it here - [key: string]: any; - }; + | PolygonLayerConfiguration; export type MapLayer = { /** Unique identifier for this layer */ diff --git a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx index f797a158..27de7568 100644 --- a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx +++ b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx @@ -244,27 +244,47 @@ const getAnimatedArrowPathLayer = ( ...getCommonLineProperties(props, config) }); -const getPolygonLayer = (props: TransitionMapLayerProps, eventsToAdd): GeoJsonLayer => - new GeoJsonLayer({ +const getPolygonLayer = (props: TransitionMapLayerProps, config: LayerDescription.PolygonLayerConfiguration, eventsToAdd): GeoJsonLayer => { + const layerProperties: any = getCommonProperties(props, config); + if (layerProperties.getColor) { + layerProperties.getFillColor = layerProperties.getColor; + delete layerProperties.getColor; + } + + const lineColor = config.lineColor === undefined ? undefined : layerColorGetter(config.lineColor, '#ffffff'); + layerProperties.getLineColor = lineColor !== undefined ? lineColor : [80, 80, 80]; + + const lineWidth = config.lineWidth === undefined ? 1 : layerNumberGetter(config.lineWidth, 10); + layerProperties.getLineWidth = lineWidth; + + const widthMinPixels = + config.lineWidthMinPixels === undefined ? undefined : layerNumberGetter(config.lineWidthMinPixels, 1); + if (widthMinPixels !== undefined) { + layerProperties.lineWidthMinPixels = widthMinPixels; + } + + const pickable = + config.pickable === undefined + ? true + : typeof config.pickable === 'function' + ? config.pickable() + : config.pickable; + layerProperties.pickable = pickable; + + return new GeoJsonLayer({ id: props.layerDescription.id, data: props.layerDescription.layerData.features, - pickable: true, - stroked: true, - filled: true, - wireframe: true, - lineWidthMinPixels: 1, - /* getElevation: d => { - console.log('elevation', d.properties); - return 0; - }, */ - getFillColor: (d) => propertyToColor(d, 'color'), - getLineColor: [80, 80, 80], updateTriggers: { getFillColor: props.updateCount }, - getLineWidth: 1, - ...eventsToAdd + stroked: true, + filled: layerProperties.getFillColor !== undefined, + wireframe: true, + lineWidthMinPixels: 1, + ...eventsToAdd, + ...layerProperties }); +}; const getScatterLayer = ( props: TransitionMapLayerProps, @@ -373,8 +393,8 @@ const getLayer = (props: TransitionMapLayerProps): Layer | undefined return getScatterLayer(props, props.layerDescription.configuration, eventsToAdd) as any; } else if (LayerDescription.layerIsLine(props.layerDescription.configuration)) { return getLineLayer(props, props.layerDescription.configuration, eventsToAdd) as any; - } else if (props.layerDescription.configuration.type === 'fill') { - return getPolygonLayer(props, eventsToAdd) as any; + } else if (LayerDescription.layerIsPolygon(props.layerDescription.configuration)) { + return getPolygonLayer(props, props.layerDescription.configuration, eventsToAdd) as any; } else if (LayerDescription.layerIsAnimatedPath(props.layerDescription.configuration)) { return getAnimatedArrowPathLayer(props, props.layerDescription.configuration, eventsToAdd) as any; } diff --git a/packages/transition-frontend/src/config/layers.config.ts b/packages/transition-frontend/src/config/layers.config.ts index 5dbeb83b..9dedfbf2 100644 --- a/packages/transition-frontend/src/config/layers.config.ts +++ b/packages/transition-frontend/src/config/layers.config.ts @@ -30,20 +30,11 @@ const layersConfig = { accessibilityMapPolygons: { type: 'fill', - paint: { - 'fill-color': { - property: 'color', - type: 'identity' - }, - 'fill-opacity': 0.2 - } - }, - - accessibilityMapPolygonStrokes: { - type: 'line', - color: '#ffffff', + color: { type: 'property', property: 'color' }, + lineColor: '#ffffff33', + lineWidth: 4, opacity: 0.2, - width: 1.5 + pickable: false }, routingPathsStrokes: { From bac414796ae1ab6d5973a7fdbd2f057e3fd6e19a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Wed, 17 Jan 2024 15:50:17 -0500 Subject: [PATCH 17/23] deck.gl: Remove the original proof of concept Deck.gl is now implemented in mainline Transition and the poc is not necessary anymore. --- deck-gl-pow/README.md | 7 - deck-gl-pow/app.js | 178 - deck-gl-pow/babel.config.js | 31 - deck-gl-pow/geojson-route.geojson | 623715 -------------------- deck-gl-pow/index.html | 28 - deck-gl-pow/nodes.geojson | 229198 ------- deck-gl-pow/package-lock.json | 18457 - deck-gl-pow/package.json | 32 - deck-gl-pow/scatter-plot-custom-layer.js | 216 - deck-gl-pow/webpack.config.js | 32 - 10 files changed, 871894 deletions(-) delete mode 100644 deck-gl-pow/README.md delete mode 100644 deck-gl-pow/app.js delete mode 100644 deck-gl-pow/babel.config.js delete mode 100644 deck-gl-pow/geojson-route.geojson delete mode 100644 deck-gl-pow/index.html delete mode 100644 deck-gl-pow/nodes.geojson delete mode 100644 deck-gl-pow/package-lock.json delete mode 100644 deck-gl-pow/package.json delete mode 100644 deck-gl-pow/scatter-plot-custom-layer.js delete mode 100644 deck-gl-pow/webpack.config.js diff --git a/deck-gl-pow/README.md b/deck-gl-pow/README.md deleted file mode 100644 index 3d514ad0..00000000 --- a/deck-gl-pow/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Deck.gl proof of work - -This is a proof of work for Deck.gl with [transition](https://github.com/chairemobilite/transition). It verifies that deck.gl can be used with the geojson data present, can have custom shaders, can handle different events. - -To install, run ``npm install`` - -To run the project, run ``npm start`` diff --git a/deck-gl-pow/app.js b/deck-gl-pow/app.js deleted file mode 100644 index d3db50e4..00000000 --- a/deck-gl-pow/app.js +++ /dev/null @@ -1,178 +0,0 @@ -import React, {useState, useEffect} from 'react'; -import DeckGL from '@deck.gl/react'; -import {Map} from 'react-map-gl'; -import {TripsLayer} from '@deck.gl/geo-layers'; -import {createRoot} from 'react-dom/client'; -import { ScatterplotLayer } from 'deck.gl'; -import ScatterplotCustomLayer from './scatter-plot-custom-layer' - -function getTooltip({object}) { - return object && object.properties.name; -} - -function setTimestamps(data) { - var sum = 0; - data.properties.data.segments.forEach((value) => { - sum += value.travelTimeSeconds; - }); - - var times = [] - const interval = sum/data.geometry.coordinates.length; - for(var i = 0; i < data.geometry.coordinates.length; i+=interval) { - times.push(i); - } - return times -} - -var routeIndex = -1; -var nodeIndex = -1; - -var routeSelected = null; -var nodeSelected = null; - -export default function Counter({routeData, nodeData}) { - const [time, setTime] = useState(0); - const [animation] = useState({}); - - const animate = () => { - setTime(t => (t + 1) % 700); - animation.id = window.requestAnimationFrame(animate); - }; - - useEffect(() => { - animation.id = window.requestAnimationFrame(animate); - return () => window.cancelAnimationFrame(animation.id); - }, [animation]); - - - const layer = [ - new TripsLayer({ - id: 'trips-layer', - data: routeData, - getPath: d => d.geometry.coordinates, - getTimestamps: d => setTimestamps(d), - getColor: d => { - const rgb = d.properties.color - return [parseInt(rgb.substring(1,3), 16), parseInt(rgb.substring(3,5), 16), parseInt(rgb.substring(5), 16)] - }, - opacity: 0.8, - widthMinPixels: 2, - rounded: true, - fadeTrail: true, - trailLength: 400, - currentTime: 0, - shadowEnabled: false, - pickable: true, - updateTriggers: { - getWidth: routeIndex - }, - onHover: (line) => { - routeIndex = line.index; - }, - onClick: ({object}) => { - nodeSelected = null - routeSelected = [object] - } - }), - - new TripsLayer({ - id: 'trips-layer-selected', - data: routeSelected, - getPath: d => d.geometry.coordinates, - getTimestamps: d => {setTimestamps(d);}, - opacity: 0.8, - widthMinPixels: 2, - rounded: true, - fadeTrail: true, - trailLength: 400, - currentTime: parseFloat(Math.cos(time/20)*100 + 200), - shadowEnabled: false, - pickable: true, - getColor: d => { - const rgb = d.properties.color - return [200, 200, 0] - }, - getWidth: (d, i) => { - if(i.index === routeIndex) { - return 70; - } - return 20; - }, - }), - - new ScatterplotLayer({ - id: 'nodes-layer-selected', - data: nodeSelected, - filled: true, - stroked: true, - getPosition: d => d.geometry.coordinates, - getFillColor: d => { - const rgb = d.properties.color - return [parseInt(rgb.substring(1,3), 16), parseInt(rgb.substring(3,5), 16), parseInt(rgb.substring(5), 16),255] - }, - getLineColor: [255,255,255,255], - getRadius: 100, - extensions: [new ScatterplotCustomLayer()] - }), - - new ScatterplotLayer({ - id: 'nodes-layer', - data: nodeData, - filled: true, - stroked: true, - getPosition: d => d.geometry.coordinates, - getFillColor: d => { - const rgb = d.properties.color - return [parseInt(rgb.substring(1,3), 16), parseInt(rgb.substring(3,5), 16), parseInt(rgb.substring(5), 16),255] - }, - getLineColor: [255,255,255,255], - getRadius: (d, i) => { - if(i.index === nodeIndex) { - return 20; - } - return 10; - }, - updateTriggers: { - getRadius: nodeIndex - }, - pickable: true, - onHover: (node) => { - nodeIndex = node.index; - }, - onClick: ({object}) => { - routeSelected = null - nodeSelected = [object] - } - }), - ]; - - const INITIAL_VIEW_STATE = { - longitude: -73.463591, - latitude: 45.533242, - zoom: 12, - pitch: 0, - bearing: 0 - }; - - return ( - - - - ); -} - -const root = createRoot(document.getElementById("root")); -fetch('./geojson-route.geojson') - .then(response => response.json()) - .then((routes) => { - fetch('./nodes.geojson') - .then(response => response.json()) - .then((nodes) => { - root.render(); - }); - }); \ No newline at end of file diff --git a/deck-gl-pow/babel.config.js b/deck-gl-pow/babel.config.js deleted file mode 100644 index 1892f3cc..00000000 --- a/deck-gl-pow/babel.config.js +++ /dev/null @@ -1,31 +0,0 @@ -module.exports = { - presets: [ - [ - "@babel/preset-env", - { - modules: false - } - ], - "@babel/preset-react" - ], - plugins: [ - "@babel/plugin-transform-runtime", - "@babel/plugin-syntax-dynamic-import", - "@babel/plugin-proposal-class-properties" - ], - env: { - production: { - only: ["src"], - plugins: [ - [ - "transform-react-remove-prop-types", - { - removeImport: true - } - ], - "@babel/plugin-transform-react-inline-elements", - "@babel/plugin-transform-react-constant-elements" - ] - } - } - }; \ No newline at end of file diff --git a/deck-gl-pow/geojson-route.geojson b/deck-gl-pow/geojson-route.geojson deleted file mode 100644 index 391d8210..00000000 --- a/deck-gl-pow/geojson-route.geojson +++ /dev/null @@ -1,623715 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.508312, - 45.520939 - ], - [ - -73.508376, - 45.521052 - ], - [ - -73.50882, - 45.521847 - ], - [ - -73.508911, - 45.52201 - ], - [ - -73.509196, - 45.52252 - ], - [ - -73.509298, - 45.522709 - ], - [ - -73.509687, - 45.52343 - ], - [ - -73.509754, - 45.523555 - ], - [ - -73.509977, - 45.524041 - ], - [ - -73.51018, - 45.524458 - ], - [ - -73.510426, - 45.525377 - ], - [ - -73.510431, - 45.525413 - ], - [ - -73.510485, - 45.52576 - ], - [ - -73.510566, - 45.526288 - ], - [ - -73.508382, - 45.525568 - ], - [ - -73.507854, - 45.526365 - ], - [ - -73.507334, - 45.52715 - ], - [ - -73.506781, - 45.526968 - ], - [ - -73.505571, - 45.526568 - ], - [ - -73.505375, - 45.526503 - ], - [ - -73.50361, - 45.525921 - ], - [ - -73.502701, - 45.52562 - ], - [ - -73.500486, - 45.524902 - ], - [ - -73.500131, - 45.52476 - ], - [ - -73.500093, - 45.524745 - ], - [ - -73.500017, - 45.524714 - ], - [ - -73.500072, - 45.524631 - ], - [ - -73.500403, - 45.524121 - ], - [ - -73.500517, - 45.523949 - ], - [ - -73.500601, - 45.523821 - ], - [ - -73.500601, - 45.523754 - ], - [ - -73.500561, - 45.523716 - ], - [ - -73.500255, - 45.523604 - ], - [ - -73.500367, - 45.52342 - ], - [ - -73.50062, - 45.523008 - ], - [ - -73.500708, - 45.522863 - ], - [ - -73.501099, - 45.522224 - ], - [ - -73.500653, - 45.522073 - ], - [ - -73.500256, - 45.521939 - ], - [ - -73.500549, - 45.521509 - ], - [ - -73.501004, - 45.52084 - ], - [ - -73.501434, - 45.520208 - ], - [ - -73.501844, - 45.519605 - ], - [ - -73.502258, - 45.518996 - ], - [ - -73.505549, - 45.520069 - ], - [ - -73.508192, - 45.520901 - ], - [ - -73.508254, - 45.52092 - ], - [ - -73.508312, - 45.520939 - ] - ] - }, - "id": 1, - "properties": { - "id": "e9c2034a-811d-4cbd-bd7e-ca274a312679", - "data": { - "segments": [ - { - "distanceMeters": 624, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 1005, - "travelTimeSeconds": 121 - }, - { - "distanceMeters": 1282, - "travelTimeSeconds": 180 - } - ], - "from_gtfs": false, - "nodeTypes": [ - "engine", - "engine", - "engine", - "engine" - ], - "variables": { - "d_p": 2911, - "T_o_p": 480, - "n_q_p": 4, - "n_s_p": 4, - "d_l_avg": 970, - "d_l_max": 1282, - "d_l_med": 1005, - "d_l_min": 624 - }, - "waypoints": [ - [], - [], - [], - [] - ], - "routingMode": "bus_urban", - "routingEngine": "engine", - "routingFailed": false, - "waypointTypes": [ - [], - [], - [], - [] - ], - "dwellTimeSeconds": [ - 0, - 20, - 20, - 20 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 2911, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 60, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.06, - "travelTimeWithoutDwellTimesSeconds": 360, - "operatingTimeWithLayoverTimeSeconds": 660, - "totalTravelTimeWithReturnBackSeconds": 660, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 480, - "operatingSpeedWithLayoverMetersPerSecond": 4.41, - "directRouteBetweenTerminalsDistanceMeters": 0, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.09, - "directRouteBetweenTerminalsTravelTimeSeconds": 0 - }, - "mode": "bus", - "name": null, - "color": "#ff0000", - "nodes": [ - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", - "d41672d0-e186-418e-b20f-1d82b60c3365", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4" - ], - "stops": [], - "line_id": "d588df8d-ce36-45e0-acfc-2cdff070ec00", - "segments": [ - 0, - 13, - 23 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-13T15:44:54.009579+00:00", - "integer_id": 1, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.512964, - 45.521048 - ], - [ - -73.510954, - 45.520386 - ], - [ - -73.510243, - 45.521449 - ], - [ - -73.508774, - 45.520998 - ], - [ - -73.50874, - 45.520987 - ], - [ - -73.508656, - 45.520959 - ], - [ - -73.50864, - 45.520954 - ], - [ - -73.508495, - 45.520945 - ], - [ - -73.508312, - 45.520939 - ], - [ - -73.508376, - 45.521052 - ], - [ - -73.50882, - 45.521847 - ], - [ - -73.508911, - 45.52201 - ], - [ - -73.509196, - 45.52252 - ], - [ - -73.509298, - 45.522709 - ], - [ - -73.509687, - 45.52343 - ], - [ - -73.509754, - 45.523555 - ], - [ - -73.509977, - 45.524041 - ], - [ - -73.509884, - 45.524165 - ], - [ - -73.509793, - 45.524217 - ], - [ - -73.509653, - 45.524285 - ], - [ - -73.50872, - 45.523979 - ], - [ - -73.508141, - 45.523971 - ], - [ - -73.507828, - 45.524421 - ], - [ - -73.507784, - 45.524484 - ], - [ - -73.504015, - 45.52321 - ], - [ - -73.503676, - 45.523095 - ], - [ - -73.502184, - 45.522591 - ], - [ - -73.501625, - 45.522402 - ], - [ - -73.501184, - 45.522253 - ], - [ - -73.501099, - 45.522224 - ], - [ - -73.500708, - 45.522863 - ], - [ - -73.50062, - 45.523008 - ], - [ - -73.500367, - 45.52342 - ], - [ - -73.498736, - 45.522873 - ], - [ - -73.49744, - 45.522428 - ], - [ - -73.497432, - 45.522704 - ], - [ - -73.497389, - 45.522847 - ], - [ - -73.497258, - 45.523041 - ], - [ - -73.496826, - 45.523476 - ], - [ - -73.496796, - 45.523506 - ], - [ - -73.49677, - 45.523532 - ], - [ - -73.496869, - 45.523566 - ], - [ - -73.499678, - 45.524544 - ], - [ - -73.499916, - 45.524664 - ], - [ - -73.500017, - 45.524714 - ], - [ - -73.500093, - 45.524745 - ], - [ - -73.500486, - 45.524902 - ], - [ - -73.502701, - 45.52562 - ], - [ - -73.50361, - 45.525921 - ], - [ - -73.505375, - 45.526503 - ], - [ - -73.505571, - 45.526568 - ], - [ - -73.506781, - 45.526968 - ], - [ - -73.507334, - 45.52715 - ], - [ - -73.5103, - 45.52813 - ], - [ - -73.510401, - 45.528159 - ], - [ - -73.51047, - 45.528232 - ], - [ - -73.510527, - 45.528147 - ], - [ - -73.510568, - 45.528082 - ], - [ - -73.510675, - 45.527879 - ], - [ - -73.510698, - 45.527819 - ], - [ - -73.510721, - 45.527758 - ], - [ - -73.510836, - 45.527394 - ], - [ - -73.510855, - 45.527335 - ], - [ - -73.510915, - 45.526403 - ], - [ - -73.510801, - 45.525535 - ], - [ - -73.510795, - 45.525489 - ], - [ - -73.510551, - 45.524579 - ], - [ - -73.511523, - 45.524887 - ], - [ - -73.511946, - 45.524236 - ], - [ - -73.512455, - 45.523454 - ], - [ - -73.51306, - 45.523637 - ], - [ - -73.513348, - 45.523723 - ], - [ - -73.513525, - 45.523724 - ], - [ - -73.513512, - 45.522963 - ], - [ - -73.513511, - 45.522924 - ], - [ - -73.513514, - 45.522659 - ], - [ - -73.513513, - 45.522529 - ], - [ - -73.513495, - 45.521155 - ] - ] - }, - "id": 2, - "properties": { - "id": "f6914ae0-c474-47c6-945d-43d4612d434c", - "data": { - "segments": [ - { - "distanceMeters": 440, - "travelTimeSeconds": 94 - }, - { - "distanceMeters": 615, - "travelTimeSeconds": 90 - }, - { - "distanceMeters": 1120, - "travelTimeSeconds": 162 - }, - { - "distanceMeters": 1207, - "travelTimeSeconds": 160 - }, - { - "distanceMeters": 1037, - "travelTimeSeconds": 148 - } - ], - "from_gtfs": false, - "nodeTypes": [ - "engine", - "engine", - "engine", - "engine", - "engine", - "engine" - ], - "variables": { - "d_p": 4419, - "T_o_p": 780, - "n_q_p": 6, - "n_s_p": 6, - "d_l_avg": 884, - "d_l_max": 1207, - "d_l_med": 1037, - "d_l_min": 440 - }, - "waypoints": [ - [], - [], - [], - [], - [], - [] - ], - "routingMode": "bus_urban", - "routingEngine": "engine", - "routingFailed": false, - "waypointTypes": [ - [], - [], - [], - [], - [], - [] - ], - "dwellTimeSeconds": [ - 0, - 20, - 20, - 20, - 20, - 20 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 4419, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 100, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.67, - "travelTimeWithoutDwellTimesSeconds": 660, - "operatingTimeWithLayoverTimeSeconds": 960, - "totalTravelTimeWithReturnBackSeconds": 960, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 780, - "operatingSpeedWithLayoverMetersPerSecond": 4.6, - "directRouteBetweenTerminalsDistanceMeters": 0, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.7, - "directRouteBetweenTerminalsTravelTimeSeconds": 0 - }, - "mode": "bus", - "name": "allo", - "color": "#0086FF", - "nodes": [ - "9db6aff2-2175-49e9-984e-3eb4c8dd470c", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "1da8599d-038c-4242-b6d8-ab011dd7f5a1", - "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "0abd44bc-ce59-4161-a0a7-b31176db0e89", - "9db6aff2-2175-49e9-984e-3eb4c8dd470c" - ], - "stops": [], - "line_id": "cf66dea8-0e94-4329-ae6d-58a607e07bc2", - "segments": [ - 0, - 5, - 22, - 39, - 56 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-13T16:01:05.481124+00:00", - "integer_id": 2, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.508365, - 45.521033 - ], - [ - -73.508376, - 45.521052 - ], - [ - -73.50882, - 45.521847 - ], - [ - -73.508911, - 45.52201 - ], - [ - -73.509196, - 45.52252 - ], - [ - -73.509298, - 45.522709 - ], - [ - -73.509687, - 45.52343 - ], - [ - -73.509754, - 45.523555 - ], - [ - -73.509977, - 45.524041 - ], - [ - -73.509884, - 45.524165 - ], - [ - -73.509793, - 45.524217 - ], - [ - -73.509653, - 45.524285 - ], - [ - -73.50872, - 45.523979 - ], - [ - -73.508141, - 45.523971 - ], - [ - -73.507828, - 45.524421 - ], - [ - -73.507784, - 45.524484 - ], - [ - -73.504015, - 45.52321 - ], - [ - -73.503676, - 45.523095 - ], - [ - -73.502184, - 45.522591 - ], - [ - -73.501625, - 45.522402 - ], - [ - -73.501184, - 45.522253 - ], - [ - -73.501099, - 45.522224 - ], - [ - -73.500708, - 45.522863 - ], - [ - -73.50062, - 45.523008 - ], - [ - -73.500367, - 45.52342 - ], - [ - -73.500255, - 45.523604 - ], - [ - -73.500561, - 45.523716 - ], - [ - -73.500601, - 45.523754 - ], - [ - -73.500601, - 45.523821 - ], - [ - -73.500517, - 45.523949 - ], - [ - -73.500403, - 45.524121 - ], - [ - -73.500072, - 45.524631 - ], - [ - -73.500017, - 45.524714 - ], - [ - -73.500072, - 45.524631 - ], - [ - -73.500403, - 45.524121 - ], - [ - -73.500517, - 45.523949 - ], - [ - -73.500601, - 45.523821 - ], - [ - -73.500601, - 45.523754 - ], - [ - -73.500561, - 45.523716 - ], - [ - -73.500255, - 45.523604 - ], - [ - -73.500367, - 45.52342 - ], - [ - -73.50062, - 45.523008 - ], - [ - -73.500708, - 45.522863 - ], - [ - -73.501099, - 45.522224 - ], - [ - -73.500653, - 45.522073 - ], - [ - -73.500256, - 45.521939 - ], - [ - -73.500549, - 45.521509 - ], - [ - -73.501004, - 45.52084 - ], - [ - -73.501434, - 45.520208 - ], - [ - -73.501844, - 45.519605 - ], - [ - -73.502258, - 45.518996 - ], - [ - -73.505549, - 45.520069 - ], - [ - -73.508192, - 45.520901 - ], - [ - -73.508254, - 45.52092 - ], - [ - -73.508312, - 45.520939 - ], - [ - -73.508254, - 45.52092 - ], - [ - -73.508192, - 45.520901 - ], - [ - -73.505549, - 45.520069 - ], - [ - -73.502258, - 45.518996 - ], - [ - -73.501844, - 45.519605 - ], - [ - -73.501434, - 45.520208 - ], - [ - -73.501004, - 45.52084 - ], - [ - -73.500549, - 45.521509 - ], - [ - -73.500256, - 45.521939 - ], - [ - -73.49828, - 45.52128 - ], - [ - -73.498031, - 45.521197 - ], - [ - -73.497423, - 45.520994 - ], - [ - -73.497117, - 45.520892 - ], - [ - -73.497203, - 45.521307 - ], - [ - -73.497284, - 45.521694 - ], - [ - -73.49744, - 45.522428 - ], - [ - -73.497432, - 45.522704 - ], - [ - -73.497389, - 45.522847 - ], - [ - -73.497258, - 45.523041 - ], - [ - -73.496826, - 45.523476 - ], - [ - -73.496796, - 45.523506 - ], - [ - -73.49677, - 45.523532 - ], - [ - -73.496869, - 45.523566 - ], - [ - -73.499678, - 45.524544 - ], - [ - -73.499916, - 45.524664 - ], - [ - -73.500017, - 45.524714 - ], - [ - -73.500072, - 45.524631 - ], - [ - -73.500403, - 45.524121 - ], - [ - -73.500517, - 45.523949 - ], - [ - -73.500601, - 45.523821 - ], - [ - -73.500601, - 45.523754 - ], - [ - -73.500561, - 45.523716 - ], - [ - -73.500255, - 45.523604 - ], - [ - -73.500367, - 45.52342 - ], - [ - -73.50062, - 45.523008 - ], - [ - -73.500708, - 45.522863 - ], - [ - -73.501099, - 45.522224 - ], - [ - -73.501184, - 45.522253 - ], - [ - -73.501625, - 45.522402 - ], - [ - -73.502184, - 45.522591 - ], - [ - -73.503676, - 45.523095 - ], - [ - -73.504015, - 45.52321 - ], - [ - -73.507784, - 45.524484 - ], - [ - -73.507817, - 45.524495 - ], - [ - -73.510426, - 45.525377 - ], - [ - -73.510431, - 45.525413 - ], - [ - -73.510485, - 45.52576 - ], - [ - -73.510566, - 45.526288 - ], - [ - -73.510584, - 45.526294 - ], - [ - -73.510651, - 45.526316 - ], - [ - -73.510752, - 45.52635 - ], - [ - -73.510915, - 45.526403 - ], - [ - -73.510801, - 45.525535 - ], - [ - -73.510795, - 45.525489 - ], - [ - -73.510551, - 45.524579 - ], - [ - -73.511523, - 45.524887 - ], - [ - -73.511946, - 45.524236 - ], - [ - -73.512455, - 45.523454 - ], - [ - -73.51306, - 45.523637 - ], - [ - -73.513348, - 45.523723 - ], - [ - -73.513525, - 45.523724 - ], - [ - -73.513512, - 45.522963 - ], - [ - -73.513511, - 45.522924 - ], - [ - -73.513514, - 45.522659 - ], - [ - -73.513513, - 45.522529 - ], - [ - -73.513495, - 45.521155 - ], - [ - -73.513358, - 45.521154 - ], - [ - -73.513322, - 45.521154 - ], - [ - -73.513357, - 45.522351 - ], - [ - -73.51336, - 45.522467 - ], - [ - -73.513348, - 45.523723 - ], - [ - -73.513359, - 45.524687 - ], - [ - -73.513374, - 45.525191 - ], - [ - -73.513373, - 45.525354 - ], - [ - -73.513373, - 45.525372 - ], - [ - -73.513371, - 45.525418 - ], - [ - -73.513376, - 45.525513 - ], - [ - -73.513379, - 45.52557 - ], - [ - -73.513381, - 45.525604 - ], - [ - -73.513382, - 45.526303 - ], - [ - -73.513405, - 45.527064 - ], - [ - -73.513406, - 45.527095 - ], - [ - -73.513408, - 45.527175 - ], - [ - -73.513407, - 45.527251 - ], - [ - -73.513402, - 45.528015 - ], - [ - -73.513401, - 45.528029 - ], - [ - -73.513396, - 45.528104 - ], - [ - -73.513371, - 45.528191 - ], - [ - -73.513322, - 45.528359 - ], - [ - -73.513033, - 45.528805 - ], - [ - -73.512983, - 45.528882 - ], - [ - -73.512972, - 45.528899 - ], - [ - -73.512944, - 45.528941 - ], - [ - -73.512892, - 45.528922 - ], - [ - -73.512846, - 45.528906 - ], - [ - -73.512775, - 45.528882 - ], - [ - -73.512563, - 45.528812 - ], - [ - -73.511781, - 45.528556 - ], - [ - -73.510651, - 45.528184 - ], - [ - -73.510627, - 45.528177 - ], - [ - -73.510624, - 45.528176 - ], - [ - -73.510527, - 45.528147 - ], - [ - -73.510568, - 45.528082 - ], - [ - -73.510675, - 45.527879 - ], - [ - -73.510698, - 45.527819 - ], - [ - -73.510721, - 45.527758 - ], - [ - -73.510836, - 45.527394 - ], - [ - -73.510855, - 45.527335 - ], - [ - -73.510915, - 45.526403 - ], - [ - -73.510801, - 45.525535 - ], - [ - -73.510795, - 45.525489 - ], - [ - -73.510551, - 45.524579 - ], - [ - -73.510123, - 45.523669 - ], - [ - -73.510067, - 45.523566 - ], - [ - -73.509497, - 45.522526 - ], - [ - -73.509183, - 45.52195 - ], - [ - -73.50871, - 45.521082 - ], - [ - -73.508694, - 45.521054 - ], - [ - -73.508664, - 45.520999 - ], - [ - -73.508641, - 45.520956 - ] - ] - }, - "id": 3, - "properties": { - "id": "7a82e032-63c7-40ce-8321-7a6f00a6568d", - "data": { - "segments": [ - { - "distanceMeters": 577, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 904, - "travelTimeSeconds": 130 - }, - { - "distanceMeters": 1272, - "travelTimeSeconds": 184 - }, - { - "distanceMeters": 1461, - "travelTimeSeconds": 201 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 899, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 330, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 878, - "travelTimeSeconds": 151 - }, - { - "distanceMeters": 1076, - "travelTimeSeconds": 203 - }, - { - "distanceMeters": 841, - "travelTimeSeconds": 103 - } - ], - "from_gtfs": false, - "nodeTypes": [ - "engine", - "engine", - "engine", - "engine", - "engine", - "engine", - "engine", - "engine", - "engine", - "engine", - "engine" - ], - "variables": { - "d_p": 8528, - "T_o_p": 1500, - "n_q_p": 11, - "n_s_p": 11, - "d_l_avg": 853, - "d_l_max": 1461, - "d_l_med": 889, - "d_l_min": 290 - }, - "waypoints": [ - [], - [], - [], - [], - [], - [], - [], - [], - [], - [], - [] - ], - "routingMode": "bus_urban", - "routingEngine": "engine", - "routingFailed": false, - "waypointTypes": [ - [], - [], - [], - [], - [], - [], - [], - [], - [], - [], - [] - ], - "dwellTimeSeconds": [ - 0, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8528, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 200, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.69, - "travelTimeWithoutDwellTimesSeconds": 1260, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": 1680, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 5.08, - "directRouteBetweenTerminalsDistanceMeters": 0, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.77, - "directRouteBetweenTerminalsTravelTimeSeconds": 0 - }, - "mode": "bus", - "name": null, - "color": "#fff600", - "nodes": [ - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "1da8599d-038c-4242-b6d8-ab011dd7f5a1", - "d41672d0-e186-418e-b20f-1d82b60c3365", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "d41672d0-e186-418e-b20f-1d82b60c3365", - "1da8599d-038c-4242-b6d8-ab011dd7f5a1", - "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", - "9db6aff2-2175-49e9-984e-3eb4c8dd470c", - "0abd44bc-ce59-4161-a0a7-b31176db0e89", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4" - ], - "stops": [], - "line_id": "f501d9ed-93db-4503-83dd-cf1890221267", - "segments": [ - 0, - 14, - 32, - 54, - 75, - 80, - 98, - 103, - 121, - 154 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-15T16:37:37.660636+00:00", - "integer_id": 3, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.509779, - 45.517738 - ], - [ - -73.509715, - 45.517835 - ], - [ - -73.509185, - 45.518653 - ], - [ - -73.507051, - 45.517961 - ], - [ - -73.506891, - 45.517922 - ], - [ - -73.506664, - 45.517868 - ], - [ - -73.506809, - 45.51815 - ], - [ - -73.507145, - 45.518744 - ], - [ - -73.507259, - 45.518943 - ], - [ - -73.507357, - 45.519131 - ], - [ - -73.507383, - 45.519182 - ], - [ - -73.50755, - 45.519501 - ], - [ - -73.507772, - 45.519927 - ], - [ - -73.508237, - 45.520797 - ], - [ - -73.508248, - 45.520819 - ], - [ - -73.508312, - 45.520939 - ], - [ - -73.508254, - 45.52092 - ], - [ - -73.508192, - 45.520901 - ], - [ - -73.505549, - 45.520069 - ], - [ - -73.502258, - 45.518996 - ], - [ - -73.500428, - 45.5184 - ], - [ - -73.499965, - 45.518253 - ], - [ - -73.499567, - 45.518864 - ], - [ - -73.499201, - 45.519426 - ], - [ - -73.499567, - 45.518864 - ], - [ - -73.499965, - 45.518253 - ], - [ - -73.500428, - 45.5184 - ], - [ - -73.502258, - 45.518996 - ], - [ - -73.505549, - 45.520069 - ], - [ - -73.508192, - 45.520901 - ], - [ - -73.508254, - 45.52092 - ], - [ - -73.508312, - 45.520939 - ], - [ - -73.508495, - 45.520945 - ], - [ - -73.50864, - 45.520954 - ], - [ - -73.50874, - 45.520987 - ], - [ - -73.508774, - 45.520998 - ], - [ - -73.510243, - 45.521449 - ], - [ - -73.511284, - 45.521802 - ], - [ - -73.513145, - 45.522398 - ], - [ - -73.513209, - 45.522418 - ], - [ - -73.51336, - 45.522467 - ], - [ - -73.513513, - 45.522529 - ], - [ - -73.513495, - 45.521155 - ], - [ - -73.513485, - 45.520781 - ], - [ - -73.513484, - 45.520749 - ], - [ - -73.513498, - 45.520036 - ], - [ - -73.513674, - 45.519548 - ], - [ - -73.51387, - 45.519153 - ], - [ - -73.51389, - 45.519109 - ], - [ - -73.513909, - 45.519071 - ], - [ - -73.513721, - 45.518902 - ], - [ - -73.51358, - 45.51885 - ], - [ - -73.513326, - 45.518765 - ], - [ - -73.512939, - 45.51865 - ], - [ - -73.512238, - 45.518425 - ], - [ - -73.50991, - 45.51767 - ] - ] - }, - "id": 4, - "properties": { - "id": "e49a6423-b5c0-48bb-819e-10ff3b66bccf", - "data": { - "segments": [ - { - "distanceMeters": 693, - "travelTimeSeconds": 117 - }, - { - "distanceMeters": 861, - "travelTimeSeconds": 117 - }, - { - "distanceMeters": 1500, - "travelTimeSeconds": 231 - }, - { - "distanceMeters": 547, - "travelTimeSeconds": 80 - } - ], - "from_gtfs": false, - "nodeTypes": [ - "engine", - "engine", - "engine", - "engine", - "engine" - ], - "variables": { - "d_p": 3601, - "T_o_p": 660, - "n_q_p": 5, - "n_s_p": 5, - "d_l_avg": 900, - "d_l_max": 1500, - "d_l_med": 777, - "d_l_min": 547 - }, - "waypoints": [ - [], - [], - [], - [], - [] - ], - "routingMode": "bus_urban", - "routingEngine": "engine", - "routingFailed": false, - "waypointTypes": [ - [], - [], - [], - [], - [] - ], - "dwellTimeSeconds": [ - 0, - 20, - 20, - 20, - 20 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 3601, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 80, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.46, - "travelTimeWithoutDwellTimesSeconds": 540, - "operatingTimeWithLayoverTimeSeconds": 840, - "totalTravelTimeWithReturnBackSeconds": 840, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 660, - "operatingSpeedWithLayoverMetersPerSecond": 4.29, - "directRouteBetweenTerminalsDistanceMeters": 0, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.67, - "directRouteBetweenTerminalsTravelTimeSeconds": 0 - }, - "mode": "bus", - "name": null, - "color": "#8effb4", - "nodes": [ - "e66fb997-f83d-42a0-a232-e5b0a94a0caf", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "98279ff5-957b-4eeb-9ad3-2a9d5fb6ef98", - "9db6aff2-2175-49e9-984e-3eb4c8dd470c", - "e66fb997-f83d-42a0-a232-e5b0a94a0caf" - ], - "stops": [], - "line_id": "b3d40e64-3759-4fd4-bd7c-49c3aa16630c", - "segments": [ - 0, - 15, - 23, - 43 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-15T17:29:56.281719+00:00", - "integer_id": 4, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.505422, - 45.524593 - ], - [ - -73.503759, - 45.524045 - ], - [ - -73.503544, - 45.524366 - ], - [ - -73.503227, - 45.524837 - ], - [ - -73.502701, - 45.52562 - ], - [ - -73.500486, - 45.524902 - ], - [ - -73.500131, - 45.52476 - ], - [ - -73.500093, - 45.524745 - ], - [ - -73.500017, - 45.524714 - ], - [ - -73.499916, - 45.524664 - ], - [ - -73.499678, - 45.524544 - ], - [ - -73.496869, - 45.523566 - ], - [ - -73.49677, - 45.523532 - ], - [ - -73.496676, - 45.523499 - ], - [ - -73.496552, - 45.523456 - ], - [ - -73.496676, - 45.523499 - ], - [ - -73.49677, - 45.523532 - ], - [ - -73.496869, - 45.523566 - ], - [ - -73.499678, - 45.524544 - ], - [ - -73.499916, - 45.524664 - ], - [ - -73.500017, - 45.524714 - ], - [ - -73.500093, - 45.524745 - ], - [ - -73.500486, - 45.524902 - ], - [ - -73.502701, - 45.52562 - ], - [ - -73.50361, - 45.525921 - ], - [ - -73.505375, - 45.526503 - ], - [ - -73.505571, - 45.526568 - ], - [ - -73.506781, - 45.526968 - ], - [ - -73.507334, - 45.52715 - ], - [ - -73.507854, - 45.526365 - ], - [ - -73.508382, - 45.525568 - ], - [ - -73.510566, - 45.526288 - ], - [ - -73.510584, - 45.526294 - ], - [ - -73.510651, - 45.526316 - ], - [ - -73.510752, - 45.52635 - ], - [ - -73.510915, - 45.526403 - ], - [ - -73.510801, - 45.525535 - ], - [ - -73.510795, - 45.525489 - ], - [ - -73.510551, - 45.524579 - ], - [ - -73.510375, - 45.524523 - ], - [ - -73.510275, - 45.524491 - ], - [ - -73.51018, - 45.524458 - ], - [ - -73.509653, - 45.524285 - ], - [ - -73.50872, - 45.523979 - ], - [ - -73.508141, - 45.523971 - ], - [ - -73.507828, - 45.524421 - ], - [ - -73.507784, - 45.524484 - ], - [ - -73.510426, - 45.525377 - ], - [ - -73.510431, - 45.525413 - ], - [ - -73.510485, - 45.52576 - ], - [ - -73.510566, - 45.526288 - ], - [ - -73.508382, - 45.525568 - ], - [ - -73.505422, - 45.524593 - ] - ] - }, - "id": 5, - "properties": { - "id": "35c8a5a2-0fe6-4a47-ac73-199f5b36c532", - "data": { - "segments": [ - { - "distanceMeters": 560, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 316, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 1322, - "travelTimeSeconds": 164 - }, - { - "distanceMeters": 493, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 783, - "travelTimeSeconds": 112 - } - ], - "from_gtfs": false, - "nodeTypes": [ - "engine", - "engine", - "engine", - "engine", - "engine", - "engine" - ], - "variables": { - "d_p": 3474, - "T_o_p": 600, - "n_q_p": 6, - "n_s_p": 6, - "d_l_avg": 695, - "d_l_max": 1322, - "d_l_med": 560, - "d_l_min": 316 - }, - "waypoints": [ - [], - [], - [], - [], - [], - [] - ], - "routingMode": "bus_urban", - "routingEngine": "engine", - "routingFailed": false, - "waypointTypes": [ - [], - [], - [], - [], - [], - [] - ], - "dwellTimeSeconds": [ - 0, - 20, - 20, - 20, - 20, - 20 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 3474, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 100, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.79, - "travelTimeWithoutDwellTimesSeconds": 480, - "operatingTimeWithLayoverTimeSeconds": 780, - "totalTravelTimeWithReturnBackSeconds": 780, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 600, - "operatingSpeedWithLayoverMetersPerSecond": 4.45, - "directRouteBetweenTerminalsDistanceMeters": 0, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.24, - "directRouteBetweenTerminalsTravelTimeSeconds": 0 - }, - "mode": "bus", - "name": null, - "color": "#0086FF", - "nodes": [ - "e657782a-839d-417e-8b23-9ba7a22fe0b9", - "d41672d0-e186-418e-b20f-1d82b60c3365", - "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", - "1da8599d-038c-4242-b6d8-ab011dd7f5a1", - "e657782a-839d-417e-8b23-9ba7a22fe0b9" - ], - "stops": [], - "line_id": "7294de4e-9342-48e3-bd69-0ca3680cdd46", - "segments": [ - 0, - 6, - 14, - 32, - 45 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-16T19:23:01.485471+00:00", - "integer_id": 5, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.509779, - 45.517738 - ], - [ - -73.509715, - 45.517835 - ], - [ - -73.509185, - 45.518653 - ], - [ - -73.507051, - 45.517961 - ], - [ - -73.506891, - 45.517922 - ], - [ - -73.506664, - 45.517868 - ], - [ - -73.506809, - 45.51815 - ], - [ - -73.507145, - 45.518744 - ], - [ - -73.507259, - 45.518943 - ], - [ - -73.507357, - 45.519131 - ], - [ - -73.507383, - 45.519182 - ], - [ - -73.50755, - 45.519501 - ], - [ - -73.507772, - 45.519927 - ], - [ - -73.508237, - 45.520797 - ], - [ - -73.508248, - 45.520819 - ], - [ - -73.508312, - 45.520939 - ], - [ - -73.508254, - 45.52092 - ], - [ - -73.508192, - 45.520901 - ], - [ - -73.505549, - 45.520069 - ], - [ - -73.502258, - 45.518996 - ], - [ - -73.500428, - 45.5184 - ], - [ - -73.499965, - 45.518253 - ], - [ - -73.499567, - 45.518864 - ], - [ - -73.499201, - 45.519426 - ], - [ - -73.499567, - 45.518864 - ], - [ - -73.499965, - 45.518253 - ], - [ - -73.500424, - 45.517549 - ], - [ - -73.500893, - 45.516825 - ], - [ - -73.502684, - 45.517418 - ], - [ - -73.504537, - 45.518031 - ], - [ - -73.504989, - 45.517319 - ], - [ - -73.506664, - 45.517868 - ], - [ - -73.506891, - 45.517922 - ], - [ - -73.507051, - 45.517961 - ], - [ - -73.509185, - 45.518653 - ], - [ - -73.509715, - 45.517835 - ], - [ - -73.509779, - 45.517738 - ] - ] - }, - "id": 6, - "properties": { - "id": "f031cb7a-0e11-44b2-bc08-981fa913e881", - "data": { - "segments": [ - { - "distanceMeters": 693, - "travelTimeSeconds": 117 - }, - { - "distanceMeters": 861, - "travelTimeSeconds": 117 - }, - { - "distanceMeters": 1191, - "travelTimeSeconds": 171 - } - ], - "from_gtfs": false, - "nodeTypes": [ - "engine", - "engine", - "engine", - "engine" - ], - "variables": { - "d_p": 2745, - "T_o_p": 480, - "n_q_p": 4, - "n_s_p": 4, - "d_l_avg": 915, - "d_l_max": 1191, - "d_l_med": 861, - "d_l_min": 693 - }, - "waypoints": [ - [], - [], - [], - [] - ], - "routingMode": "bus_urban", - "routingEngine": "engine", - "routingFailed": false, - "waypointTypes": [ - [], - [], - [], - [] - ], - "dwellTimeSeconds": [ - 0, - 20, - 20, - 20 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 2745, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 60, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.72, - "travelTimeWithoutDwellTimesSeconds": 420, - "operatingTimeWithLayoverTimeSeconds": 660, - "totalTravelTimeWithReturnBackSeconds": 660, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 480, - "operatingSpeedWithLayoverMetersPerSecond": 4.16, - "directRouteBetweenTerminalsDistanceMeters": 0, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.54, - "directRouteBetweenTerminalsTravelTimeSeconds": 0 - }, - "mode": "bus", - "name": null, - "color": "#0086FF", - "nodes": [ - "e66fb997-f83d-42a0-a232-e5b0a94a0caf", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "98279ff5-957b-4eeb-9ad3-2a9d5fb6ef98", - "e66fb997-f83d-42a0-a232-e5b0a94a0caf" - ], - "stops": [], - "line_id": "2e1adead-b068-407c-adbe-53e437df5660", - "segments": [ - 0, - 15, - 23 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T14:18:01.197832+00:00", - "integer_id": 6, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.467824, - 45.491145 - ], - [ - -73.467697, - 45.491059 - ], - [ - -73.467397, - 45.490865 - ], - [ - -73.464811, - 45.492412 - ], - [ - -73.464112, - 45.492825 - ], - [ - -73.464104, - 45.49283 - ], - [ - -73.464035, - 45.492871 - ], - [ - -73.464281, - 45.493069 - ], - [ - -73.464583, - 45.493325 - ], - [ - -73.465048, - 45.493708 - ], - [ - -73.465053, - 45.493713 - ], - [ - -73.465135, - 45.493784 - ], - [ - -73.465425, - 45.494023 - ], - [ - -73.465714, - 45.494266 - ], - [ - -73.465999, - 45.494495 - ], - [ - -73.466014, - 45.494508 - ], - [ - -73.466311, - 45.494743 - ], - [ - -73.466595, - 45.494982 - ], - [ - -73.466865, - 45.495202 - ], - [ - -73.467151, - 45.495441 - ], - [ - -73.467339, - 45.495594 - ], - [ - -73.467417, - 45.495657 - ], - [ - -73.46768, - 45.495882 - ], - [ - -73.468074, - 45.496206 - ], - [ - -73.468449, - 45.496516 - ], - [ - -73.468677, - 45.496707 - ], - [ - -73.468809, - 45.496818 - ], - [ - -73.469174, - 45.497106 - ], - [ - -73.469247, - 45.497142 - ], - [ - -73.469532, - 45.497376 - ], - [ - -73.469589, - 45.497422 - ], - [ - -73.469768, - 45.497569 - ], - [ - -73.470122, - 45.497907 - ], - [ - -73.470322, - 45.498065 - ], - [ - -73.470813, - 45.498474 - ], - [ - -73.4709, - 45.49855 - ], - [ - -73.470968, - 45.498609 - ], - [ - -73.471205, - 45.498803 - ], - [ - -73.471624, - 45.499149 - ], - [ - -73.472169, - 45.499587 - ], - [ - -73.472173, - 45.49959 - ], - [ - -73.472276, - 45.499676 - ], - [ - -73.472579, - 45.499928 - ], - [ - -73.472986, - 45.50027 - ], - [ - -73.47341, - 45.500627 - ], - [ - -73.473574, - 45.500765 - ], - [ - -73.473641, - 45.500823 - ], - [ - -73.474037, - 45.500587 - ], - [ - -73.4741, - 45.500549 - ], - [ - -73.474634, - 45.500231 - ], - [ - -73.474786, - 45.50014 - ], - [ - -73.475296, - 45.499829 - ], - [ - -73.477408, - 45.498543 - ], - [ - -73.477805, - 45.4983 - ], - [ - -73.478138, - 45.498098 - ], - [ - -73.478257, - 45.498026 - ], - [ - -73.478614, - 45.497765 - ], - [ - -73.478948, - 45.497531 - ], - [ - -73.479562, - 45.49709 - ], - [ - -73.47968, - 45.497005 - ], - [ - -73.480412, - 45.496479 - ], - [ - -73.481154, - 45.495952 - ], - [ - -73.481268, - 45.495871 - ], - [ - -73.481819, - 45.495495 - ], - [ - -73.482, - 45.495372 - ], - [ - -73.482144, - 45.49526 - ], - [ - -73.483351, - 45.494382 - ], - [ - -73.483943, - 45.49396 - ], - [ - -73.48407, - 45.49387 - ], - [ - -73.484957, - 45.493231 - ], - [ - -73.485984, - 45.492507 - ], - [ - -73.486068, - 45.492448 - ], - [ - -73.486525, - 45.49212 - ], - [ - -73.486777, - 45.49194 - ], - [ - -73.486792, - 45.491931 - ], - [ - -73.487065, - 45.491769 - ], - [ - -73.487258, - 45.491649 - ], - [ - -73.487383, - 45.491571 - ], - [ - -73.48867, - 45.490802 - ], - [ - -73.48937, - 45.49038 - ], - [ - -73.489454, - 45.490329 - ], - [ - -73.49048, - 45.489717 - ], - [ - -73.491248, - 45.489251 - ], - [ - -73.491548, - 45.48907 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.491721, - 45.489052 - ], - [ - -73.491915, - 45.48919 - ], - [ - -73.492218, - 45.489407 - ], - [ - -73.492419, - 45.48955 - ], - [ - -73.492465, - 45.489583 - ], - [ - -73.492778, - 45.489803 - ], - [ - -73.492976, - 45.489943 - ], - [ - -73.493573, - 45.490366 - ], - [ - -73.493701, - 45.490456 - ], - [ - -73.493838, - 45.49055 - ], - [ - -73.494242, - 45.490838 - ], - [ - -73.49426, - 45.49085 - ], - [ - -73.49433, - 45.490897 - ], - [ - -73.494917, - 45.491315 - ], - [ - -73.495204, - 45.491517 - ], - [ - -73.495442, - 45.491684 - ], - [ - -73.49562, - 45.491814 - ], - [ - -73.495851, - 45.491976 - ], - [ - -73.496235, - 45.492242 - ], - [ - -73.496321, - 45.492305 - ], - [ - -73.496373, - 45.492342 - ], - [ - -73.496416, - 45.492372 - ], - [ - -73.496772, - 45.492629 - ], - [ - -73.497128, - 45.492885 - ], - [ - -73.497339, - 45.493038 - ], - [ - -73.497557, - 45.493191 - ], - [ - -73.497625, - 45.493243 - ], - [ - -73.497771, - 45.493353 - ], - [ - -73.497866, - 45.493425 - ], - [ - -73.497927, - 45.49347 - ], - [ - -73.497995, - 45.493515 - ], - [ - -73.49804, - 45.493547 - ], - [ - -73.498238, - 45.493691 - ], - [ - -73.49848, - 45.493866 - ], - [ - -73.498616, - 45.49397 - ], - [ - -73.498797, - 45.494096 - ], - [ - -73.498924, - 45.49419 - ], - [ - -73.499159, - 45.494361 - ], - [ - -73.499315, - 45.494474 - ], - [ - -73.499359, - 45.494506 - ], - [ - -73.49959, - 45.494676 - ], - [ - -73.499763, - 45.494802 - ], - [ - -73.499778, - 45.494815 - ], - [ - -73.499809, - 45.494836 - ], - [ - -73.500025, - 45.494979 - ], - [ - -73.500064, - 45.495 - ], - [ - -73.500106, - 45.495026 - ], - [ - -73.500592, - 45.495409 - ], - [ - -73.50081, - 45.495567 - ], - [ - -73.501059, - 45.495724 - ], - [ - -73.501182, - 45.495805 - ], - [ - -73.501279, - 45.495868 - ], - [ - -73.501293, - 45.495878 - ], - [ - -73.501808, - 45.496251 - ], - [ - -73.502256, - 45.496562 - ], - [ - -73.502293, - 45.496588 - ], - [ - -73.502336, - 45.49662 - ], - [ - -73.50284, - 45.49698 - ], - [ - -73.50327, - 45.49729 - ], - [ - -73.503408, - 45.497389 - ], - [ - -73.503475, - 45.497438 - ], - [ - -73.504131, - 45.497897 - ], - [ - -73.504473, - 45.49814 - ], - [ - -73.504683, - 45.498293 - ], - [ - -73.50476, - 45.498351 - ], - [ - -73.504839, - 45.49841 - ], - [ - -73.505105, - 45.498595 - ], - [ - -73.505329, - 45.498757 - ], - [ - -73.505704, - 45.498928 - ], - [ - -73.506001, - 45.499076 - ], - [ - -73.506259, - 45.499211 - ], - [ - -73.506709, - 45.499427 - ], - [ - -73.506801, - 45.499467 - ], - [ - -73.507253, - 45.49966 - ], - [ - -73.50735, - 45.499701 - ], - [ - -73.507712, - 45.499859 - ], - [ - -73.508861, - 45.50034 - ], - [ - -73.508958, - 45.500376 - ], - [ - -73.509608, - 45.500651 - ], - [ - -73.509762, - 45.500713 - ], - [ - -73.50993, - 45.500781 - ], - [ - -73.510431, - 45.50101 - ], - [ - -73.511327, - 45.50142 - ], - [ - -73.512063, - 45.501735 - ], - [ - -73.512398, - 45.501874 - ], - [ - -73.5127, - 45.501847 - ], - [ - -73.512897, - 45.501829 - ], - [ - -73.513035, - 45.501807 - ], - [ - -73.513284, - 45.501793 - ], - [ - -73.513307, - 45.501792 - ], - [ - -73.51344, - 45.501784 - ], - [ - -73.513522, - 45.501784 - ], - [ - -73.5136, - 45.501784 - ], - [ - -73.513805, - 45.501793 - ], - [ - -73.514045, - 45.501797 - ], - [ - -73.514024, - 45.501904 - ], - [ - -73.513894, - 45.502212 - ], - [ - -73.513873, - 45.50226 - ], - [ - -73.513806, - 45.502427 - ], - [ - -73.513748, - 45.502535 - ], - [ - -73.513316, - 45.503103 - ], - [ - -73.512873, - 45.503688 - ], - [ - -73.512716, - 45.503804 - ], - [ - -73.512312, - 45.504357 - ], - [ - -73.512272, - 45.504412 - ], - [ - -73.511819, - 45.505019 - ], - [ - -73.511431, - 45.505535 - ], - [ - -73.511362, - 45.505627 - ], - [ - -73.510901, - 45.506234 - ], - [ - -73.510508, - 45.506768 - ], - [ - -73.510451, - 45.506846 - ], - [ - -73.509985, - 45.507458 - ], - [ - -73.509591, - 45.507973 - ], - [ - -73.509531, - 45.508052 - ], - [ - -73.509072, - 45.508673 - ], - [ - -73.50866, - 45.509213 - ], - [ - -73.508585, - 45.509312 - ], - [ - -73.508101, - 45.509951 - ], - [ - -73.507672, - 45.510524 - ], - [ - -73.507613, - 45.510603 - ], - [ - -73.507132, - 45.511251 - ], - [ - -73.506652, - 45.51189 - ], - [ - -73.506234, - 45.512451 - ], - [ - -73.506149, - 45.512565 - ], - [ - -73.506238, - 45.512601 - ], - [ - -73.506546, - 45.512721 - ], - [ - -73.508131, - 45.513338 - ], - [ - -73.508574, - 45.513515 - ], - [ - -73.508741, - 45.513581 - ], - [ - -73.509393, - 45.513802 - ], - [ - -73.50981, - 45.513942 - ], - [ - -73.510118, - 45.514045 - ], - [ - -73.511388, - 45.514467 - ], - [ - -73.511507, - 45.514508 - ], - [ - -73.512165, - 45.514728 - ], - [ - -73.512742, - 45.514926 - ], - [ - -73.512796, - 45.514944 - ], - [ - -73.514448, - 45.515508 - ], - [ - -73.514563, - 45.515547 - ], - [ - -73.515414, - 45.515844 - ], - [ - -73.516876, - 45.516355 - ], - [ - -73.51692, - 45.51637 - ], - [ - -73.517233, - 45.516487 - ], - [ - -73.51726, - 45.516497 - ], - [ - -73.517318, - 45.516518 - ], - [ - -73.517741, - 45.516671 - ], - [ - -73.517978, - 45.516757 - ], - [ - -73.518077, - 45.516793 - ], - [ - -73.518456, - 45.516887 - ], - [ - -73.519041, - 45.517036 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.51945, - 45.517552 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520113, - 45.519738 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520194, - 45.520238 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.521017, - 45.523892 - ], - [ - -73.521053, - 45.523883 - ], - [ - -73.521061, - 45.523869 - ], - [ - -73.521065, - 45.523851 - ], - [ - -73.521071, - 45.523799 - ] - ] - }, - "id": 7, - "properties": { - "id": "13450f00-1c31-4439-a438-77611afa2920", - "data": { - "gtfs": { - "shape_id": "1_1_A" - }, - "segments": [ - { - "distanceMeters": 383, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 358, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 604, - "travelTimeSeconds": 141 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9171, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5510.842976306596, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.88, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 5.27, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.88 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "cee5ccf3-ece1-4350-8264-3c360d07d279", - "c369e9dc-cf92-48cf-bb8f-a258dbed5d8d", - "3f687a06-b3d8-47a1-ba8d-00632eabcaf7", - "c988f5aa-9ab5-48a6-898c-21c53961d2f3", - "2b94ffb1-8934-4ee0-a36c-60c433b4d09e", - "5f4522a4-83cd-4392-9a71-d32067987a56", - "796a2647-8b16-4b22-808f-454e1bee3449", - "4a83802a-cebb-4e1a-b140-a3d386f52eae", - "a44c12a5-9a53-4288-b77a-08bf3c4eaadc", - "300a7442-8453-4aa4-89f9-beacdcc75174", - "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", - "de8aa4d4-205c-4786-8a75-8902d51d8a41", - "6a2c9077-d7bd-4c23-a90d-45a5568fbdc9", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "3040b262-0b20-4c40-9350-e484adfe1d60", - "ff721ee3-8729-47c1-80cd-7dd5e7142284", - "f132c08e-1812-4b2f-84fb-340628d1ac39", - "5573bb7b-19f0-4d2b-a66d-9f04f87c1987", - "1bded3cb-51a3-422d-8815-a9027023991e", - "88d8365e-2528-4422-a483-bb2efd9de617", - "0b6032e7-414a-429f-9df2-796599b947c2", - "1cedf968-65c8-4c0f-b92c-c06da7b8fe69", - "16f75d06-f538-4735-a99f-9bc7eaa6eaab", - "1cea6199-481e-43b0-8d4a-8c7593ff485f", - "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", - "6557d1fe-6975-49e2-871c-ab07d42ea35b", - "0ac44bed-6f37-406e-8654-f8d5f36c840e", - "443288e2-2ae9-4c97-a015-0e176d8f71b2", - "a230c1b0-ee13-40c1-8d3f-12ae20006cc6", - "1232f389-204f-48ac-a95f-0f1b3e5706b2", - "9bf48d6d-7a0b-4fbe-9125-1eef756e334f", - "36a7184c-7248-4c15-a0a7-68c04bd48cc7", - "ed39b486-0ae1-40e4-a1bb-022292e07d90", - "bb609a9b-192c-4f8e-9177-9dbd5b0d51a5", - "7009c13e-76ca-4283-afe5-33492dbd6d10", - "2227a38f-9c32-4890-9719-eef7445fa1fc", - "969092dd-fcfd-493a-be55-d0467c757fb1", - "2a197d72-1b4b-4077-a350-4c8656ad7bb1", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "f250cba5-329e-4403-912d-778f924ce25e", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "b2ed3ea0-0792-4b3c-8998-6032b0a10e51", - "segments": [ - 0, - 5, - 10, - 15, - 20, - 25, - 30, - 35, - 39, - 44, - 49, - 54, - 58, - 63, - 67, - 70, - 76, - 79, - 82, - 96, - 105, - 111, - 128, - 137, - 139, - 149, - 158, - 166, - 181, - 188, - 191, - 194, - 197, - 200, - 203, - 207, - 212, - 220, - 222, - 227, - 234, - 243 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 7, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521071, - 45.523799 - ], - [ - -73.521073, - 45.52378 - ], - [ - -73.521082, - 45.523698 - ], - [ - -73.521077, - 45.523679 - ], - [ - -73.52106, - 45.523665 - ], - [ - -73.521034, - 45.523659 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519706, - 45.52323 - ], - [ - -73.519853, - 45.522939 - ], - [ - -73.519869, - 45.522907 - ], - [ - -73.520158, - 45.522337 - ], - [ - -73.520306, - 45.521899 - ], - [ - -73.520306, - 45.521896 - ], - [ - -73.520354, - 45.521696 - ], - [ - -73.520401, - 45.521498 - ], - [ - -73.520405, - 45.521373 - ], - [ - -73.520409, - 45.52119 - ], - [ - -73.520398, - 45.521025 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520191, - 45.520225 - ], - [ - -73.520124, - 45.519907 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.518685, - 45.516946 - ], - [ - -73.518456, - 45.516887 - ], - [ - -73.518077, - 45.516793 - ], - [ - -73.517978, - 45.516757 - ], - [ - -73.517741, - 45.516671 - ], - [ - -73.517493, - 45.516582 - ], - [ - -73.517318, - 45.516518 - ], - [ - -73.517055, - 45.51642 - ], - [ - -73.51692, - 45.51637 - ], - [ - -73.516876, - 45.516355 - ], - [ - -73.515414, - 45.515844 - ], - [ - -73.514735, - 45.515607 - ], - [ - -73.514563, - 45.515547 - ], - [ - -73.512796, - 45.514944 - ], - [ - -73.512165, - 45.514728 - ], - [ - -73.511598, - 45.514539 - ], - [ - -73.511507, - 45.514508 - ], - [ - -73.511388, - 45.514467 - ], - [ - -73.510118, - 45.514045 - ], - [ - -73.50981, - 45.513942 - ], - [ - -73.509393, - 45.513802 - ], - [ - -73.508868, - 45.513624 - ], - [ - -73.508741, - 45.513581 - ], - [ - -73.508131, - 45.513338 - ], - [ - -73.506739, - 45.512796 - ], - [ - -73.506238, - 45.512601 - ], - [ - -73.506354, - 45.512449 - ], - [ - -73.506754, - 45.511926 - ], - [ - -73.507227, - 45.511287 - ], - [ - -73.507624, - 45.510754 - ], - [ - -73.507709, - 45.510639 - ], - [ - -73.508209, - 45.509991 - ], - [ - -73.508625, - 45.509428 - ], - [ - -73.508684, - 45.509348 - ], - [ - -73.509167, - 45.508704 - ], - [ - -73.509534, - 45.50821 - ], - [ - -73.509625, - 45.508088 - ], - [ - -73.510082, - 45.507498 - ], - [ - -73.510454, - 45.506996 - ], - [ - -73.510542, - 45.506877 - ], - [ - -73.510994, - 45.506265 - ], - [ - -73.51133, - 45.505816 - ], - [ - -73.511448, - 45.505658 - ], - [ - -73.511912, - 45.505051 - ], - [ - -73.512265, - 45.504567 - ], - [ - -73.512356, - 45.504443 - ], - [ - -73.512804, - 45.50384 - ], - [ - -73.512873, - 45.503688 - ], - [ - -73.51324, - 45.503204 - ], - [ - -73.513316, - 45.503103 - ], - [ - -73.513748, - 45.502535 - ], - [ - -73.513806, - 45.502427 - ], - [ - -73.513873, - 45.50226 - ], - [ - -73.513904, - 45.502187 - ], - [ - -73.514024, - 45.501904 - ], - [ - -73.514045, - 45.501797 - ], - [ - -73.513805, - 45.501793 - ], - [ - -73.5136, - 45.501784 - ], - [ - -73.513522, - 45.501784 - ], - [ - -73.51344, - 45.501784 - ], - [ - -73.513284, - 45.501793 - ], - [ - -73.513131, - 45.501801 - ], - [ - -73.513035, - 45.501807 - ], - [ - -73.512897, - 45.501829 - ], - [ - -73.5127, - 45.501847 - ], - [ - -73.512501, - 45.501865 - ], - [ - -73.512398, - 45.501874 - ], - [ - -73.512063, - 45.501735 - ], - [ - -73.511327, - 45.50142 - ], - [ - -73.50993, - 45.500781 - ], - [ - -73.509906, - 45.500771 - ], - [ - -73.509762, - 45.500713 - ], - [ - -73.509608, - 45.500651 - ], - [ - -73.508958, - 45.500376 - ], - [ - -73.508861, - 45.50034 - ], - [ - -73.507712, - 45.499859 - ], - [ - -73.50735, - 45.499701 - ], - [ - -73.507069, - 45.499581 - ], - [ - -73.506801, - 45.499467 - ], - [ - -73.506709, - 45.499427 - ], - [ - -73.506259, - 45.499211 - ], - [ - -73.506001, - 45.499076 - ], - [ - -73.505704, - 45.498928 - ], - [ - -73.505329, - 45.498757 - ], - [ - -73.505105, - 45.498595 - ], - [ - -73.50495, - 45.498488 - ], - [ - -73.504839, - 45.49841 - ], - [ - -73.504683, - 45.498293 - ], - [ - -73.504473, - 45.49814 - ], - [ - -73.504131, - 45.497897 - ], - [ - -73.503475, - 45.497438 - ], - [ - -73.503408, - 45.497389 - ], - [ - -73.50327, - 45.49729 - ], - [ - -73.50284, - 45.49698 - ], - [ - -73.502635, - 45.496833 - ], - [ - -73.502336, - 45.49662 - ], - [ - -73.502293, - 45.496588 - ], - [ - -73.501808, - 45.496251 - ], - [ - -73.501447, - 45.495989 - ], - [ - -73.501279, - 45.495868 - ], - [ - -73.501182, - 45.495805 - ], - [ - -73.501059, - 45.495724 - ], - [ - -73.50081, - 45.495567 - ], - [ - -73.500592, - 45.495409 - ], - [ - -73.500497, - 45.495334 - ], - [ - -73.500106, - 45.495026 - ], - [ - -73.500064, - 45.495 - ], - [ - -73.500025, - 45.494979 - ], - [ - -73.499778, - 45.494815 - ], - [ - -73.499763, - 45.494802 - ], - [ - -73.49959, - 45.494676 - ], - [ - -73.499359, - 45.494506 - ], - [ - -73.499315, - 45.494474 - ], - [ - -73.499159, - 45.494361 - ], - [ - -73.498924, - 45.49419 - ], - [ - -73.498797, - 45.494096 - ], - [ - -73.498616, - 45.49397 - ], - [ - -73.49848, - 45.493866 - ], - [ - -73.49824, - 45.493692 - ], - [ - -73.498238, - 45.493691 - ], - [ - -73.49804, - 45.493547 - ], - [ - -73.497995, - 45.493515 - ], - [ - -73.497927, - 45.49347 - ], - [ - -73.497866, - 45.493425 - ], - [ - -73.497771, - 45.493353 - ], - [ - -73.497557, - 45.493191 - ], - [ - -73.497339, - 45.493038 - ], - [ - -73.497128, - 45.492885 - ], - [ - -73.496772, - 45.492629 - ], - [ - -73.496465, - 45.492408 - ], - [ - -73.496416, - 45.492372 - ], - [ - -73.496321, - 45.492305 - ], - [ - -73.496235, - 45.492242 - ], - [ - -73.495851, - 45.491976 - ], - [ - -73.49562, - 45.491814 - ], - [ - -73.495442, - 45.491684 - ], - [ - -73.495204, - 45.491517 - ], - [ - -73.494917, - 45.491315 - ], - [ - -73.49433, - 45.490897 - ], - [ - -73.494242, - 45.490838 - ], - [ - -73.494217, - 45.49082 - ], - [ - -73.493838, - 45.49055 - ], - [ - -73.493701, - 45.490456 - ], - [ - -73.493573, - 45.490366 - ], - [ - -73.492976, - 45.489943 - ], - [ - -73.492778, - 45.489803 - ], - [ - -73.492465, - 45.489583 - ], - [ - -73.492419, - 45.48955 - ], - [ - -73.492259, - 45.489436 - ], - [ - -73.492218, - 45.489407 - ], - [ - -73.491721, - 45.489052 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.491557, - 45.488939 - ], - [ - -73.491474, - 45.489016 - ], - [ - -73.490914, - 45.489355 - ], - [ - -73.490406, - 45.489663 - ], - [ - -73.48945, - 45.490224 - ], - [ - -73.48937, - 45.490271 - ], - [ - -73.488602, - 45.490739 - ], - [ - -73.487449, - 45.491431 - ], - [ - -73.487307, - 45.491517 - ], - [ - -73.486988, - 45.491706 - ], - [ - -73.486715, - 45.491868 - ], - [ - -73.486061, - 45.492323 - ], - [ - -73.485972, - 45.492385 - ], - [ - -73.484881, - 45.493177 - ], - [ - -73.484068, - 45.493759 - ], - [ - -73.483989, - 45.493816 - ], - [ - -73.483267, - 45.494328 - ], - [ - -73.4824, - 45.494952 - ], - [ - -73.482055, - 45.495201 - ], - [ - -73.481907, - 45.495309 - ], - [ - -73.481181, - 45.495808 - ], - [ - -73.48115, - 45.49583 - ], - [ - -73.481064, - 45.495889 - ], - [ - -73.480331, - 45.496429 - ], - [ - -73.47986, - 45.496767 - ], - [ - -73.479598, - 45.496955 - ], - [ - -73.478866, - 45.497477 - ], - [ - -73.478537, - 45.497711 - ], - [ - -73.478284, - 45.497898 - ], - [ - -73.478178, - 45.497976 - ], - [ - -73.477734, - 45.498242 - ], - [ - -73.477336, - 45.498485 - ], - [ - -73.475222, - 45.499771 - ], - [ - -73.47484, - 45.500009 - ], - [ - -73.474718, - 45.500086 - ], - [ - -73.473777, - 45.500644 - ], - [ - -73.473574, - 45.500765 - ], - [ - -73.473143, - 45.500402 - ], - [ - -73.472986, - 45.50027 - ], - [ - -73.472579, - 45.499928 - ], - [ - -73.472381, - 45.499763 - ], - [ - -73.472276, - 45.499676 - ], - [ - -73.472173, - 45.49959 - ], - [ - -73.471624, - 45.499149 - ], - [ - -73.471205, - 45.498803 - ], - [ - -73.471079, - 45.498699 - ], - [ - -73.470968, - 45.498609 - ], - [ - -73.470813, - 45.498474 - ], - [ - -73.470322, - 45.498065 - ], - [ - -73.470122, - 45.497907 - ], - [ - -73.469868, - 45.497665 - ], - [ - -73.469768, - 45.497569 - ], - [ - -73.469532, - 45.497376 - ], - [ - -73.469247, - 45.497142 - ], - [ - -73.469174, - 45.497106 - ], - [ - -73.468908, - 45.496896 - ], - [ - -73.468809, - 45.496818 - ], - [ - -73.468449, - 45.496516 - ], - [ - -73.468074, - 45.496206 - ], - [ - -73.46768, - 45.495882 - ], - [ - -73.467551, - 45.495771 - ], - [ - -73.467417, - 45.495657 - ], - [ - -73.467151, - 45.495441 - ], - [ - -73.466865, - 45.495202 - ], - [ - -73.466595, - 45.494982 - ], - [ - -73.466311, - 45.494743 - ], - [ - -73.465999, - 45.494495 - ], - [ - -73.465802, - 45.494337 - ], - [ - -73.465714, - 45.494266 - ], - [ - -73.466114, - 45.494026 - ], - [ - -73.466671, - 45.49369 - ], - [ - -73.469113, - 45.492234 - ], - [ - -73.469303, - 45.492121 - ], - [ - -73.469006, - 45.491923 - ], - [ - -73.468656, - 45.491698 - ], - [ - -73.468573, - 45.49163 - ], - [ - -73.468166, - 45.49136 - ], - [ - -73.468094, - 45.49132 - ], - [ - -73.468029, - 45.491284 - ], - [ - -73.467824, - 45.491145 - ] - ] - }, - "id": 8, - "properties": { - "id": "7e6751aa-a661-4e2f-8d08-ce935bb45a6b", - "data": { - "gtfs": { - "shape_id": "1_1_R" - }, - "segments": [ - { - "distanceMeters": 551, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 471, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 104, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 97 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 359, - "travelTimeSeconds": 98 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 49 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9062, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5510.842976306596, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.59, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 5.03, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.59 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "f250cba5-329e-4403-912d-778f924ce25e", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "f1be4054-f28c-45a4-bc0b-58b82e1e6e83", - "969092dd-fcfd-493a-be55-d0467c757fb1", - "2227a38f-9c32-4890-9719-eef7445fa1fc", - "7009c13e-76ca-4283-afe5-33492dbd6d10", - "bb609a9b-192c-4f8e-9177-9dbd5b0d51a5", - "ed39b486-0ae1-40e4-a1bb-022292e07d90", - "36a7184c-7248-4c15-a0a7-68c04bd48cc7", - "9bf48d6d-7a0b-4fbe-9125-1eef756e334f", - "1232f389-204f-48ac-a95f-0f1b3e5706b2", - "23cc64ae-3ce4-46c2-8d0a-9082f50074d0", - "a230c1b0-ee13-40c1-8d3f-12ae20006cc6", - "46687bb1-1189-4edc-bbd4-c90db18d4ff5", - "df5b9592-81e3-4b2c-8a30-7f3a9144671b", - "d24bea6e-da8d-4183-8a5f-0e99be199484", - "6557d1fe-6975-49e2-871c-ab07d42ea35b", - "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", - "1cea6199-481e-43b0-8d4a-8c7593ff485f", - "467e03f3-2556-4d22-ae48-618a76e6b0b4", - "ea9801c9-a110-4900-bcae-f1b3a40050e8", - "0b6032e7-414a-429f-9df2-796599b947c2", - "88d8365e-2528-4422-a483-bb2efd9de617", - "fa220212-b6b2-4456-934f-7248f9884444", - "a2e6b668-43de-43be-8b1b-07b41b333c8d", - "f132c08e-1812-4b2f-84fb-340628d1ac39", - "ff721ee3-8729-47c1-80cd-7dd5e7142284", - "3040b262-0b20-4c40-9350-e484adfe1d60", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "5cb517a3-d58a-47b9-835f-b13bd908a6f9", - "6a2c9077-d7bd-4c23-a90d-45a5568fbdc9", - "de8aa4d4-205c-4786-8a75-8902d51d8a41", - "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", - "300a7442-8453-4aa4-89f9-beacdcc75174", - "a44c12a5-9a53-4288-b77a-08bf3c4eaadc", - "4a83802a-cebb-4e1a-b140-a3d386f52eae", - "796a2647-8b16-4b22-808f-454e1bee3449", - "5f4522a4-83cd-4392-9a71-d32067987a56", - "2b94ffb1-8934-4ee0-a36c-60c433b4d09e", - "c988f5aa-9ab5-48a6-898c-21c53961d2f3", - "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", - "cee5ccf3-ece1-4350-8264-3c360d07d279" - ], - "stops": [], - "line_id": "b2ed3ea0-0792-4b3c-8998-6032b0a10e51", - "segments": [ - 0, - 27, - 41, - 47, - 51, - 57, - 60, - 65, - 68, - 71, - 74, - 77, - 80, - 84, - 89, - 101, - 106, - 113, - 121, - 130, - 134, - 140, - 154, - 165, - 176, - 184, - 192, - 195, - 199, - 202, - 205, - 209, - 212, - 216, - 221, - 223, - 228, - 233, - 238, - 243, - 248, - 255, - 259 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 8, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.455926, - 45.500402 - ], - [ - -73.455803, - 45.500305 - ], - [ - -73.455726, - 45.500228 - ], - [ - -73.455806, - 45.50017 - ], - [ - -73.456009, - 45.500058 - ], - [ - -73.458121, - 45.498805 - ], - [ - -73.45823, - 45.49874 - ], - [ - -73.45866, - 45.498475 - ], - [ - -73.459486, - 45.49798 - ], - [ - -73.460119, - 45.497603 - ], - [ - -73.460224, - 45.497535 - ], - [ - -73.460165, - 45.497427 - ], - [ - -73.460063, - 45.497324 - ], - [ - -73.460026, - 45.497271 - ], - [ - -73.459954, - 45.497171 - ], - [ - -73.459892, - 45.497045 - ], - [ - -73.45984, - 45.496946 - ], - [ - -73.459805, - 45.496797 - ], - [ - -73.45979, - 45.496635 - ], - [ - -73.459786, - 45.496572 - ], - [ - -73.45979, - 45.496433 - ], - [ - -73.459822, - 45.496293 - ], - [ - -73.46018, - 45.495429 - ], - [ - -73.460269, - 45.495227 - ], - [ - -73.460318, - 45.495105 - ], - [ - -73.460354, - 45.495016 - ], - [ - -73.460277, - 45.4948 - ], - [ - -73.460132, - 45.49444 - ], - [ - -73.459999, - 45.494098 - ], - [ - -73.459885, - 45.493814 - ], - [ - -73.459784, - 45.493562 - ], - [ - -73.45974, - 45.493441 - ], - [ - -73.459717, - 45.493391 - ], - [ - -73.459678, - 45.493328 - ], - [ - -73.45962, - 45.493243 - ], - [ - -73.459564, - 45.493189 - ], - [ - -73.459056, - 45.492755 - ], - [ - -73.458942, - 45.492657 - ], - [ - -73.459245, - 45.492482 - ], - [ - -73.459615, - 45.492262 - ], - [ - -73.459321, - 45.492023 - ], - [ - -73.459035, - 45.491789 - ], - [ - -73.458975, - 45.49174 - ], - [ - -73.458833, - 45.491614 - ], - [ - -73.458646, - 45.491492 - ], - [ - -73.458531, - 45.491443 - ], - [ - -73.45836, - 45.491343 - ], - [ - -73.458297, - 45.491303 - ], - [ - -73.457958, - 45.491019 - ], - [ - -73.457842, - 45.49092 - ], - [ - -73.457829, - 45.490908 - ], - [ - -73.457738, - 45.49083 - ], - [ - -73.456382, - 45.491631 - ], - [ - -73.454853, - 45.492545 - ], - [ - -73.454766, - 45.492597 - ], - [ - -73.454215, - 45.492926 - ], - [ - -73.45188, - 45.494323 - ], - [ - -73.451788, - 45.494378 - ], - [ - -73.451626, - 45.494472 - ], - [ - -73.44889, - 45.496102 - ], - [ - -73.44881, - 45.496149 - ], - [ - -73.448168, - 45.496536 - ], - [ - -73.447761, - 45.49678 - ], - [ - -73.447323, - 45.497044 - ], - [ - -73.447443, - 45.49711 - ], - [ - -73.447676, - 45.497238 - ], - [ - -73.448036, - 45.497431 - ], - [ - -73.44838, - 45.497616 - ], - [ - -73.448779, - 45.497827 - ], - [ - -73.449434, - 45.49821 - ], - [ - -73.449496, - 45.498237 - ], - [ - -73.449546, - 45.498251 - ], - [ - -73.449725, - 45.498152 - ], - [ - -73.449769, - 45.498126 - ], - [ - -73.449884, - 45.498057 - ], - [ - -73.450085, - 45.497941 - ], - [ - -73.450487, - 45.498161 - ], - [ - -73.451013, - 45.498449 - ], - [ - -73.451357, - 45.498643 - ], - [ - -73.451834, - 45.498904 - ], - [ - -73.452113, - 45.499057 - ], - [ - -73.45239, - 45.499212 - ], - [ - -73.452639, - 45.49935 - ], - [ - -73.452794, - 45.499431 - ], - [ - -73.453172, - 45.499634 - ], - [ - -73.453483, - 45.499755 - ], - [ - -73.45482, - 45.500233 - ], - [ - -73.454914, - 45.500255 - ], - [ - -73.455067, - 45.500305 - ], - [ - -73.455166, - 45.5003 - ], - [ - -73.455262, - 45.5003 - ], - [ - -73.455439, - 45.500273 - ], - [ - -73.455525, - 45.50026 - ], - [ - -73.455726, - 45.500228 - ], - [ - -73.455803, - 45.500305 - ], - [ - -73.456099, - 45.500539 - ], - [ - -73.45648, - 45.500755 - ], - [ - -73.457135, - 45.501093 - ], - [ - -73.457312, - 45.501192 - ], - [ - -73.457366, - 45.501237 - ], - [ - -73.457541, - 45.501378 - ], - [ - -73.457629, - 45.501448 - ], - [ - -73.458179, - 45.50112 - ], - [ - -73.458392, - 45.500985 - ], - [ - -73.458619, - 45.50085 - ], - [ - -73.458792, - 45.500752 - ], - [ - -73.458922, - 45.500676 - ], - [ - -73.45911, - 45.500567 - ], - [ - -73.459247, - 45.50068 - ], - [ - -73.459797, - 45.501134 - ], - [ - -73.460303, - 45.501557 - ], - [ - -73.460537, - 45.501755 - ], - [ - -73.460681, - 45.501872 - ], - [ - -73.460819, - 45.501989 - ], - [ - -73.460922, - 45.502075 - ], - [ - -73.461281, - 45.501859 - ], - [ - -73.461414, - 45.50178 - ], - [ - -73.461628, - 45.501652 - ], - [ - -73.461886, - 45.501859 - ], - [ - -73.46216, - 45.502089 - ], - [ - -73.462443, - 45.502336 - ], - [ - -73.462726, - 45.502584 - ], - [ - -73.463263, - 45.503039 - ], - [ - -73.463278, - 45.503051 - ], - [ - -73.463363, - 45.503124 - ], - [ - -73.463564, - 45.503003 - ], - [ - -73.464212, - 45.502612 - ], - [ - -73.466585, - 45.501196 - ], - [ - -73.466934, - 45.500988 - ], - [ - -73.467259, - 45.501258 - ], - [ - -73.467598, - 45.501537 - ], - [ - -73.467922, - 45.501812 - ], - [ - -73.468159, - 45.502018 - ], - [ - -73.468227, - 45.502077 - ], - [ - -73.469087, - 45.502773 - ], - [ - -73.469411, - 45.503036 - ], - [ - -73.469419, - 45.503065 - ], - [ - -73.469426, - 45.503089 - ], - [ - -73.46944, - 45.503136 - ], - [ - -73.469513, - 45.50323 - ], - [ - -73.469572, - 45.50329 - ], - [ - -73.469677, - 45.503226 - ], - [ - -73.469755, - 45.503179 - ], - [ - -73.469968, - 45.50305 - ], - [ - -73.471047, - 45.502399 - ], - [ - -73.471184, - 45.502317 - ], - [ - -73.472092, - 45.501763 - ], - [ - -73.473517, - 45.500899 - ], - [ - -73.47358, - 45.50086 - ], - [ - -73.473641, - 45.500823 - ], - [ - -73.474037, - 45.500587 - ], - [ - -73.474638, - 45.500228 - ], - [ - -73.474786, - 45.50014 - ], - [ - -73.475106, - 45.500405 - ], - [ - -73.475435, - 45.500666 - ], - [ - -73.475716, - 45.500905 - ], - [ - -73.476098, - 45.50122 - ], - [ - -73.476388, - 45.501458 - ], - [ - -73.476424, - 45.501489 - ], - [ - -73.476454, - 45.501514 - ], - [ - -73.476748, - 45.501764 - ], - [ - -73.477196, - 45.501493 - ], - [ - -73.479345, - 45.500187 - ], - [ - -73.48037, - 45.499565 - ], - [ - -73.480384, - 45.499556 - ], - [ - -73.480477, - 45.499488 - ], - [ - -73.480847, - 45.499223 - ], - [ - -73.481169, - 45.498994 - ], - [ - -73.481589, - 45.498697 - ], - [ - -73.481899, - 45.498472 - ], - [ - -73.482124, - 45.49831 - ], - [ - -73.48253, - 45.498018 - ], - [ - -73.482636, - 45.497941 - ], - [ - -73.482985, - 45.497707 - ], - [ - -73.483277, - 45.497509 - ], - [ - -73.483338, - 45.497469 - ], - [ - -73.483382, - 45.497433 - ], - [ - -73.483504, - 45.497347 - ], - [ - -73.483872, - 45.497077 - ], - [ - -73.484048, - 45.496948 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.48442, - 45.496983 - ], - [ - -73.484708, - 45.497199 - ], - [ - -73.484931, - 45.497378 - ], - [ - -73.485095, - 45.49751 - ], - [ - -73.485397, - 45.497784 - ], - [ - -73.485739, - 45.498135 - ], - [ - -73.485877, - 45.498284 - ], - [ - -73.486105, - 45.498553 - ], - [ - -73.486192, - 45.498666 - ], - [ - -73.486286, - 45.498787 - ], - [ - -73.486368, - 45.498907 - ], - [ - -73.486538, - 45.499154 - ], - [ - -73.486685, - 45.499381 - ], - [ - -73.486823, - 45.499615 - ], - [ - -73.486951, - 45.499858 - ], - [ - -73.487138, - 45.500263 - ], - [ - -73.487159, - 45.500317 - ], - [ - -73.487263, - 45.500597 - ], - [ - -73.487306, - 45.500713 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487417, - 45.501077 - ], - [ - -73.487455, - 45.501208 - ], - [ - -73.487464, - 45.50124 - ], - [ - -73.48765, - 45.50191 - ], - [ - -73.487855, - 45.502589 - ], - [ - -73.488032, - 45.50303 - ], - [ - -73.488178, - 45.503309 - ], - [ - -73.488409, - 45.50371 - ], - [ - -73.489159, - 45.504974 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.49291, - 45.5101 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495706, - 45.511385 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497913, - 45.512051 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.500866, - 45.513004 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505109, - 45.51448 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506328, - 45.514811 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511912, - 45.51687 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513429, - 45.518297 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.51499, - 45.519418 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518173, - 45.520398 - ], - [ - -73.518885, - 45.520626 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 9, - "properties": { - "id": "7b30f8bd-f582-4459-bad7-5094e0e6aaa9", - "data": { - "gtfs": { - "shape_id": "3_1_A" - }, - "segments": [ - { - "distanceMeters": 270, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 63, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 506, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 1156, - "travelTimeSeconds": 135 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 598, - "travelTimeSeconds": 103 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 746, - "travelTimeSeconds": 129 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11125, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5747.421473025993, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.87, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 6.18, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.87 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "800a1d6c-4d5b-4560-b691-99e1b0db1343", - "e827aa2c-577c-4249-9fc7-9a6572084b69", - "12181a0a-32eb-4333-b444-1760ecaa417c", - "0689eff9-8438-4b1c-9e3a-78c672f6ef82", - "3c0294df-b0e7-4be1-af27-4b755f5639ad", - "912a81e5-66f7-4af9-8125-ae16515fe284", - "1c6a64fd-3d5b-472f-bfe4-11a7479ddb48", - "504ca07a-925d-4f9a-9b79-37177c38a6d1", - "923afb03-b5b7-44ed-a97d-4785d2468e97", - "43297c29-6e25-4fbe-a1b6-70a1ce96533d", - "c6b0edc5-b07e-4471-93c5-2b6117d67602", - "e49c515c-3414-4a88-aaec-43f9499177ec", - "f46c44d6-0823-444d-9902-d03499774c08", - "69ce0958-621c-4e07-9f8c-41bd64014240", - "800a1d6c-4d5b-4560-b691-99e1b0db1343", - "bb534923-0939-4ebc-88f8-39847999c548", - "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", - "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", - "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", - "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", - "a3062aba-92b8-419f-9d8e-4f21713f9dcc", - "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", - "c17cc951-65ff-4617-a096-ccd1fe6cc26f", - "dbae3900-2b78-4309-9fa5-5503ae30ad22", - "300a7442-8453-4aa4-89f9-beacdcc75174", - "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", - "9da3ecd5-fea1-433e-9a38-142aeff3882d", - "47ef73cf-7799-46e3-b2f1-76a6533f7746", - "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", - "fd062866-a8eb-4466-b53a-6adf8fc3f09a", - "6c42a8f6-a98f-4058-9992-d00706a03dff", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "a5b9648a-83c0-4eab-a54b-68c23aecae43", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", - "be19484c-af95-45b2-bfe5-24342dd1b710", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "f20acb5e-042e-4cbf-b52d-19d571b642d6", - "segments": [ - 0, - 5, - 13, - 24, - 29, - 36, - 41, - 49, - 53, - 56, - 59, - 62, - 73, - 81, - 92, - 100, - 106, - 113, - 116, - 123, - 127, - 132, - 134, - 144, - 147, - 151, - 159, - 163, - 171, - 179, - 198, - 220, - 233, - 236, - 243, - 262, - 268, - 281, - 288 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 9, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521447, - 45.524278 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519256, - 45.520728 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514996, - 45.519327 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513222, - 45.517457 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.511366, - 45.516148 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509952, - 45.515502 - ], - [ - -73.509485, - 45.515357 - ], - [ - -73.509462, - 45.515349 - ], - [ - -73.509376, - 45.515323 - ], - [ - -73.508692, - 45.515143 - ], - [ - -73.508296, - 45.51503 - ], - [ - -73.507817, - 45.514868 - ], - [ - -73.507704, - 45.514841 - ], - [ - -73.507464, - 45.514765 - ], - [ - -73.506516, - 45.514432 - ], - [ - -73.505464, - 45.514054 - ], - [ - -73.505166, - 45.51396 - ], - [ - -73.504773, - 45.513836 - ], - [ - -73.504451, - 45.513734 - ], - [ - -73.50434, - 45.513699 - ], - [ - -73.504259, - 45.513672 - ], - [ - -73.503369, - 45.513397 - ], - [ - -73.502433, - 45.51315 - ], - [ - -73.502048, - 45.513078 - ], - [ - -73.501892, - 45.513034 - ], - [ - -73.501549, - 45.512937 - ], - [ - -73.501411, - 45.512898 - ], - [ - -73.50108, - 45.512799 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499667, - 45.512344 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.498202, - 45.511887 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.494292, - 45.51045 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.494088, - 45.51035 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491841, - 45.508691 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488541, - 45.503629 - ], - [ - -73.48831, - 45.50321 - ], - [ - -73.48823, - 45.503039 - ], - [ - -73.488092, - 45.502693 - ], - [ - -73.487989, - 45.502369 - ], - [ - -73.487959, - 45.502275 - ], - [ - -73.487746, - 45.501478 - ], - [ - -73.487613, - 45.501033 - ], - [ - -73.487523, - 45.500732 - ], - [ - -73.487509, - 45.500686 - ], - [ - -73.487464, - 45.50056 - ], - [ - -73.487346, - 45.500232 - ], - [ - -73.487139, - 45.499795 - ], - [ - -73.486985, - 45.499512 - ], - [ - -73.486818, - 45.499233 - ], - [ - -73.48673, - 45.4991 - ], - [ - -73.486631, - 45.498949 - ], - [ - -73.486428, - 45.498675 - ], - [ - -73.486216, - 45.498401 - ], - [ - -73.486166, - 45.498342 - ], - [ - -73.486, - 45.498149 - ], - [ - -73.485576, - 45.497708 - ], - [ - -73.485299, - 45.497456 - ], - [ - -73.485251, - 45.497415 - ], - [ - -73.484899, - 45.497123 - ], - [ - -73.484387, - 45.49674 - ], - [ - -73.484357, - 45.496722 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.483872, - 45.497077 - ], - [ - -73.483869, - 45.49708 - ], - [ - -73.483827, - 45.49711 - ], - [ - -73.483504, - 45.497347 - ], - [ - -73.483382, - 45.497433 - ], - [ - -73.483338, - 45.497469 - ], - [ - -73.483277, - 45.497509 - ], - [ - -73.482985, - 45.497707 - ], - [ - -73.482739, - 45.497872 - ], - [ - -73.482636, - 45.497941 - ], - [ - -73.482124, - 45.49831 - ], - [ - -73.481899, - 45.498472 - ], - [ - -73.481589, - 45.498697 - ], - [ - -73.481169, - 45.498994 - ], - [ - -73.480847, - 45.499223 - ], - [ - -73.480612, - 45.499392 - ], - [ - -73.480477, - 45.499488 - ], - [ - -73.480384, - 45.499556 - ], - [ - -73.479345, - 45.500187 - ], - [ - -73.476911, - 45.501666 - ], - [ - -73.476748, - 45.501764 - ], - [ - -73.476537, - 45.501585 - ], - [ - -73.476424, - 45.501489 - ], - [ - -73.476388, - 45.501458 - ], - [ - -73.476098, - 45.50122 - ], - [ - -73.475716, - 45.500905 - ], - [ - -73.475435, - 45.500666 - ], - [ - -73.475106, - 45.500405 - ], - [ - -73.47485, - 45.500193 - ], - [ - -73.474786, - 45.50014 - ], - [ - -73.474718, - 45.500086 - ], - [ - -73.473767, - 45.50065 - ], - [ - -73.473574, - 45.500765 - ], - [ - -73.472027, - 45.501705 - ], - [ - -73.471215, - 45.502194 - ], - [ - -73.471117, - 45.502254 - ], - [ - -73.469763, - 45.503077 - ], - [ - -73.469716, - 45.503106 - ], - [ - -73.469614, - 45.503168 - ], - [ - -73.469532, - 45.503086 - ], - [ - -73.469411, - 45.503036 - ], - [ - -73.469131, - 45.502809 - ], - [ - -73.468299, - 45.502136 - ], - [ - -73.468227, - 45.502077 - ], - [ - -73.467922, - 45.501812 - ], - [ - -73.467598, - 45.501537 - ], - [ - -73.467259, - 45.501258 - ], - [ - -73.467143, - 45.501162 - ], - [ - -73.466934, - 45.500988 - ], - [ - -73.464327, - 45.502543 - ], - [ - -73.464212, - 45.502612 - ], - [ - -73.463363, - 45.503124 - ], - [ - -73.463263, - 45.503039 - ], - [ - -73.463025, - 45.502837 - ], - [ - -73.462726, - 45.502584 - ], - [ - -73.462443, - 45.502336 - ], - [ - -73.46216, - 45.502089 - ], - [ - -73.461886, - 45.501859 - ], - [ - -73.461713, - 45.501721 - ], - [ - -73.461628, - 45.501652 - ], - [ - -73.461281, - 45.501859 - ], - [ - -73.460922, - 45.502075 - ], - [ - -73.460681, - 45.501872 - ], - [ - -73.46063, - 45.501831 - ], - [ - -73.460537, - 45.501755 - ], - [ - -73.460303, - 45.501557 - ], - [ - -73.459797, - 45.501134 - ], - [ - -73.459301, - 45.500724 - ], - [ - -73.459247, - 45.50068 - ], - [ - -73.45911, - 45.500567 - ], - [ - -73.458792, - 45.500752 - ], - [ - -73.458619, - 45.50085 - ], - [ - -73.458392, - 45.500985 - ], - [ - -73.458179, - 45.50112 - ], - [ - -73.457752, - 45.501375 - ], - [ - -73.457629, - 45.501448 - ], - [ - -73.457366, - 45.501237 - ], - [ - -73.457312, - 45.501192 - ], - [ - -73.457135, - 45.501093 - ], - [ - -73.45648, - 45.500755 - ], - [ - -73.456099, - 45.500539 - ], - [ - -73.455926, - 45.500402 - ] - ] - }, - "id": 10, - "properties": { - "id": "b4b67de3-e186-4b94-9760-5138f7f9f771", - "data": { - "gtfs": { - "shape_id": "3_1_R" - }, - "segments": [ - { - "distanceMeters": 764, - "travelTimeSeconds": 89 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 384, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 403, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 345, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 954, - "travelTimeSeconds": 132 - }, - { - "distanceMeters": 577, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 384, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 113, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 433, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 39 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7927, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5747.421473025993, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.61, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 5.74, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.61 - }, - "mode": "bus", - "name": "Montgomery", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "d3215c60-bb9e-40ac-89e4-1f922b39e266", - "f9358f54-8643-47f5-b0df-4a20b46cc22d", - "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", - "f4f29738-df3f-4d69-8632-9088ded0dc5a", - "741876fc-030a-42f6-a33a-8f1f9c2aba12", - "688a3f67-a176-441e-a399-c92a55de9c74", - "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", - "37199bb2-9740-4484-b68f-12d3c82f8bf9", - "bcd0a901-5384-443e-9be4-1f0faa123ccb", - "b2075e72-f3b5-420a-b22b-99e7608c7c0a", - "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", - "47ef73cf-7799-46e3-b2f1-76a6533f7746", - "9da3ecd5-fea1-433e-9a38-142aeff3882d", - "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", - "300a7442-8453-4aa4-89f9-beacdcc75174", - "dbae3900-2b78-4309-9fa5-5503ae30ad22", - "5b1f9db8-9fc7-4028-9f92-fd33d2f419e7", - "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", - "ef559a5c-0885-4ac5-a0dc-bdf67aea0546", - "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", - "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", - "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", - "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", - "bb534923-0939-4ebc-88f8-39847999c548", - "800a1d6c-4d5b-4560-b691-99e1b0db1343" - ], - "stops": [], - "line_id": "f20acb5e-042e-4cbf-b52d-19d571b642d6", - "segments": [ - 0, - 47, - 54, - 61, - 72, - 82, - 90, - 94, - 99, - 109, - 121, - 139, - 161, - 167, - 174, - 178, - 187, - 190, - 193, - 195, - 201, - 206, - 212, - 217, - 222, - 226, - 233 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 10, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.455926, - 45.500402 - ], - [ - -73.455803, - 45.500305 - ], - [ - -73.455726, - 45.500228 - ], - [ - -73.455806, - 45.50017 - ], - [ - -73.456009, - 45.500058 - ], - [ - -73.458121, - 45.498805 - ], - [ - -73.45823, - 45.49874 - ], - [ - -73.45866, - 45.498475 - ], - [ - -73.459486, - 45.49798 - ], - [ - -73.460119, - 45.497603 - ], - [ - -73.460224, - 45.497535 - ], - [ - -73.460165, - 45.497427 - ], - [ - -73.460063, - 45.497324 - ], - [ - -73.460026, - 45.497271 - ], - [ - -73.459954, - 45.497171 - ], - [ - -73.459892, - 45.497045 - ], - [ - -73.45984, - 45.496946 - ], - [ - -73.459805, - 45.496797 - ], - [ - -73.45979, - 45.496635 - ], - [ - -73.459786, - 45.496572 - ], - [ - -73.45979, - 45.496433 - ], - [ - -73.459822, - 45.496293 - ], - [ - -73.46018, - 45.495429 - ], - [ - -73.460269, - 45.495227 - ], - [ - -73.460318, - 45.495105 - ], - [ - -73.460354, - 45.495016 - ], - [ - -73.460277, - 45.4948 - ], - [ - -73.460132, - 45.49444 - ], - [ - -73.459999, - 45.494098 - ], - [ - -73.459885, - 45.493814 - ], - [ - -73.459784, - 45.493562 - ], - [ - -73.45974, - 45.493441 - ], - [ - -73.459717, - 45.493391 - ], - [ - -73.459678, - 45.493328 - ], - [ - -73.45962, - 45.493243 - ], - [ - -73.459564, - 45.493189 - ], - [ - -73.459056, - 45.492755 - ], - [ - -73.458942, - 45.492657 - ], - [ - -73.459245, - 45.492482 - ], - [ - -73.459615, - 45.492262 - ], - [ - -73.459321, - 45.492023 - ], - [ - -73.459035, - 45.491789 - ], - [ - -73.458975, - 45.49174 - ], - [ - -73.458833, - 45.491614 - ], - [ - -73.458646, - 45.491492 - ], - [ - -73.458531, - 45.491443 - ], - [ - -73.45836, - 45.491343 - ], - [ - -73.458297, - 45.491303 - ], - [ - -73.457958, - 45.491019 - ], - [ - -73.457842, - 45.49092 - ], - [ - -73.457829, - 45.490908 - ], - [ - -73.457738, - 45.49083 - ], - [ - -73.456382, - 45.491631 - ], - [ - -73.454853, - 45.492545 - ], - [ - -73.454766, - 45.492597 - ], - [ - -73.454215, - 45.492926 - ], - [ - -73.45188, - 45.494323 - ], - [ - -73.451788, - 45.494378 - ], - [ - -73.451626, - 45.494472 - ], - [ - -73.44889, - 45.496102 - ], - [ - -73.44881, - 45.496149 - ], - [ - -73.448168, - 45.496536 - ], - [ - -73.447761, - 45.49678 - ], - [ - -73.447323, - 45.497044 - ], - [ - -73.447443, - 45.49711 - ], - [ - -73.447676, - 45.497238 - ], - [ - -73.448036, - 45.497431 - ], - [ - -73.44838, - 45.497616 - ], - [ - -73.448779, - 45.497827 - ], - [ - -73.449434, - 45.49821 - ], - [ - -73.449496, - 45.498237 - ], - [ - -73.449546, - 45.498251 - ], - [ - -73.449725, - 45.498152 - ], - [ - -73.449769, - 45.498126 - ], - [ - -73.449884, - 45.498057 - ], - [ - -73.450085, - 45.497941 - ], - [ - -73.450487, - 45.498161 - ], - [ - -73.451013, - 45.498449 - ], - [ - -73.451357, - 45.498643 - ], - [ - -73.451834, - 45.498904 - ], - [ - -73.452113, - 45.499057 - ], - [ - -73.45239, - 45.499212 - ], - [ - -73.452639, - 45.49935 - ], - [ - -73.452794, - 45.499431 - ], - [ - -73.453172, - 45.499634 - ], - [ - -73.453483, - 45.499755 - ], - [ - -73.45482, - 45.500233 - ], - [ - -73.454914, - 45.500255 - ], - [ - -73.455067, - 45.500305 - ], - [ - -73.455166, - 45.5003 - ], - [ - -73.455262, - 45.5003 - ], - [ - -73.455439, - 45.500273 - ], - [ - -73.455525, - 45.50026 - ], - [ - -73.455726, - 45.500228 - ], - [ - -73.455803, - 45.500305 - ], - [ - -73.456099, - 45.500539 - ], - [ - -73.45648, - 45.500755 - ], - [ - -73.457135, - 45.501093 - ], - [ - -73.457312, - 45.501192 - ], - [ - -73.457366, - 45.501237 - ], - [ - -73.457541, - 45.501378 - ], - [ - -73.457629, - 45.501448 - ], - [ - -73.458179, - 45.50112 - ], - [ - -73.458392, - 45.500985 - ], - [ - -73.458619, - 45.50085 - ], - [ - -73.458792, - 45.500752 - ], - [ - -73.458922, - 45.500676 - ], - [ - -73.45911, - 45.500567 - ], - [ - -73.459247, - 45.50068 - ], - [ - -73.459797, - 45.501134 - ], - [ - -73.460303, - 45.501557 - ], - [ - -73.460537, - 45.501755 - ], - [ - -73.460681, - 45.501872 - ], - [ - -73.460819, - 45.501989 - ], - [ - -73.460922, - 45.502075 - ], - [ - -73.461281, - 45.501859 - ], - [ - -73.461414, - 45.50178 - ], - [ - -73.461628, - 45.501652 - ], - [ - -73.461886, - 45.501859 - ], - [ - -73.46216, - 45.502089 - ], - [ - -73.462443, - 45.502336 - ], - [ - -73.462726, - 45.502584 - ], - [ - -73.463263, - 45.503039 - ], - [ - -73.463278, - 45.503051 - ], - [ - -73.463363, - 45.503124 - ], - [ - -73.463739, - 45.502897 - ], - [ - -73.464212, - 45.502612 - ], - [ - -73.466585, - 45.501196 - ], - [ - -73.466934, - 45.500988 - ], - [ - -73.467259, - 45.501258 - ], - [ - -73.467598, - 45.501537 - ], - [ - -73.467922, - 45.501812 - ], - [ - -73.468159, - 45.502018 - ], - [ - -73.468227, - 45.502077 - ], - [ - -73.469087, - 45.502773 - ], - [ - -73.469411, - 45.503036 - ], - [ - -73.469419, - 45.503065 - ], - [ - -73.469426, - 45.503089 - ], - [ - -73.46944, - 45.503136 - ], - [ - -73.469513, - 45.50323 - ], - [ - -73.469572, - 45.50329 - ], - [ - -73.469677, - 45.503226 - ], - [ - -73.469755, - 45.503179 - ], - [ - -73.469968, - 45.50305 - ], - [ - -73.471047, - 45.502399 - ], - [ - -73.471184, - 45.502317 - ], - [ - -73.472092, - 45.501763 - ], - [ - -73.473517, - 45.500899 - ], - [ - -73.47358, - 45.50086 - ], - [ - -73.473641, - 45.500823 - ], - [ - -73.474037, - 45.500587 - ], - [ - -73.474638, - 45.500228 - ], - [ - -73.474786, - 45.50014 - ], - [ - -73.475106, - 45.500405 - ], - [ - -73.475435, - 45.500666 - ], - [ - -73.475716, - 45.500905 - ], - [ - -73.476098, - 45.50122 - ], - [ - -73.476388, - 45.501458 - ], - [ - -73.476424, - 45.501489 - ], - [ - -73.476454, - 45.501514 - ], - [ - -73.476748, - 45.501764 - ], - [ - -73.477196, - 45.501493 - ], - [ - -73.479345, - 45.500187 - ], - [ - -73.48037, - 45.499565 - ], - [ - -73.480384, - 45.499556 - ], - [ - -73.480477, - 45.499488 - ], - [ - -73.480847, - 45.499223 - ], - [ - -73.481169, - 45.498994 - ], - [ - -73.481589, - 45.498697 - ], - [ - -73.481899, - 45.498472 - ], - [ - -73.482124, - 45.49831 - ], - [ - -73.48253, - 45.498018 - ], - [ - -73.482636, - 45.497941 - ], - [ - -73.482985, - 45.497707 - ], - [ - -73.483277, - 45.497509 - ], - [ - -73.483338, - 45.497469 - ], - [ - -73.483382, - 45.497433 - ], - [ - -73.483504, - 45.497347 - ], - [ - -73.483872, - 45.497077 - ], - [ - -73.484048, - 45.496948 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.48442, - 45.496983 - ], - [ - -73.484708, - 45.497199 - ], - [ - -73.484931, - 45.497378 - ], - [ - -73.485095, - 45.49751 - ], - [ - -73.485397, - 45.497784 - ], - [ - -73.485739, - 45.498135 - ], - [ - -73.485877, - 45.498284 - ], - [ - -73.486105, - 45.498553 - ], - [ - -73.486192, - 45.498666 - ], - [ - -73.486286, - 45.498787 - ], - [ - -73.486368, - 45.498907 - ], - [ - -73.486538, - 45.499154 - ], - [ - -73.486685, - 45.499381 - ], - [ - -73.486823, - 45.499615 - ], - [ - -73.486951, - 45.499858 - ], - [ - -73.487138, - 45.500263 - ], - [ - -73.487159, - 45.500317 - ], - [ - -73.487263, - 45.500597 - ], - [ - -73.487306, - 45.500713 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487417, - 45.501077 - ], - [ - -73.487455, - 45.501208 - ], - [ - -73.487464, - 45.50124 - ], - [ - -73.48765, - 45.50191 - ], - [ - -73.487855, - 45.502589 - ], - [ - -73.488032, - 45.50303 - ], - [ - -73.488178, - 45.503309 - ], - [ - -73.488409, - 45.50371 - ], - [ - -73.489159, - 45.504974 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.49291, - 45.5101 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495706, - 45.511385 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497913, - 45.512051 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.500866, - 45.513004 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505109, - 45.51448 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506328, - 45.514811 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511912, - 45.51687 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513429, - 45.518297 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.51499, - 45.519418 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518173, - 45.520398 - ], - [ - -73.518885, - 45.520626 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 11, - "properties": { - "id": "4699bb64-15b6-4b60-aa91-0c50dba540f5", - "data": { - "gtfs": { - "shape_id": "3_2_A" - }, - "segments": [ - { - "distanceMeters": 270, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 63, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 506, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 1156, - "travelTimeSeconds": 135 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 598, - "travelTimeSeconds": 103 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 746, - "travelTimeSeconds": 129 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11125, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5747.421473025993, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.62, - "travelTimeWithoutDwellTimesSeconds": 1680, - "operatingTimeWithLayoverTimeSeconds": 1860, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1680, - "operatingSpeedWithLayoverMetersPerSecond": 5.98, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.62 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "800a1d6c-4d5b-4560-b691-99e1b0db1343", - "e827aa2c-577c-4249-9fc7-9a6572084b69", - "12181a0a-32eb-4333-b444-1760ecaa417c", - "0689eff9-8438-4b1c-9e3a-78c672f6ef82", - "3c0294df-b0e7-4be1-af27-4b755f5639ad", - "912a81e5-66f7-4af9-8125-ae16515fe284", - "1c6a64fd-3d5b-472f-bfe4-11a7479ddb48", - "504ca07a-925d-4f9a-9b79-37177c38a6d1", - "923afb03-b5b7-44ed-a97d-4785d2468e97", - "43297c29-6e25-4fbe-a1b6-70a1ce96533d", - "c6b0edc5-b07e-4471-93c5-2b6117d67602", - "e49c515c-3414-4a88-aaec-43f9499177ec", - "f46c44d6-0823-444d-9902-d03499774c08", - "69ce0958-621c-4e07-9f8c-41bd64014240", - "800a1d6c-4d5b-4560-b691-99e1b0db1343", - "bb534923-0939-4ebc-88f8-39847999c548", - "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", - "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", - "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", - "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", - "a3062aba-92b8-419f-9d8e-4f21713f9dcc", - "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", - "c17cc951-65ff-4617-a096-ccd1fe6cc26f", - "dbae3900-2b78-4309-9fa5-5503ae30ad22", - "300a7442-8453-4aa4-89f9-beacdcc75174", - "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", - "9da3ecd5-fea1-433e-9a38-142aeff3882d", - "47ef73cf-7799-46e3-b2f1-76a6533f7746", - "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", - "fd062866-a8eb-4466-b53a-6adf8fc3f09a", - "6c42a8f6-a98f-4058-9992-d00706a03dff", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "a5b9648a-83c0-4eab-a54b-68c23aecae43", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", - "be19484c-af95-45b2-bfe5-24342dd1b710", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "f20acb5e-042e-4cbf-b52d-19d571b642d6", - "segments": [ - 0, - 5, - 13, - 24, - 29, - 36, - 41, - 49, - 53, - 56, - 59, - 62, - 73, - 81, - 92, - 100, - 106, - 113, - 116, - 123, - 127, - 132, - 134, - 144, - 147, - 151, - 159, - 163, - 171, - 179, - 198, - 220, - 233, - 236, - 243, - 262, - 268, - 281, - 288 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 11, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.455926, - 45.500402 - ], - [ - -73.455803, - 45.500305 - ], - [ - -73.455726, - 45.500228 - ], - [ - -73.455806, - 45.50017 - ], - [ - -73.456009, - 45.500058 - ], - [ - -73.45823, - 45.49874 - ], - [ - -73.45866, - 45.498475 - ], - [ - -73.459486, - 45.49798 - ], - [ - -73.460119, - 45.497603 - ], - [ - -73.460224, - 45.497535 - ], - [ - -73.460165, - 45.497427 - ], - [ - -73.460063, - 45.497324 - ], - [ - -73.459954, - 45.497171 - ], - [ - -73.459892, - 45.497045 - ], - [ - -73.45984, - 45.496946 - ], - [ - -73.459805, - 45.496797 - ], - [ - -73.45979, - 45.496635 - ], - [ - -73.459786, - 45.496572 - ], - [ - -73.45979, - 45.496433 - ], - [ - -73.459822, - 45.496293 - ], - [ - -73.46018, - 45.495429 - ], - [ - -73.460269, - 45.495227 - ], - [ - -73.460354, - 45.495016 - ], - [ - -73.460277, - 45.4948 - ], - [ - -73.460132, - 45.49444 - ], - [ - -73.459999, - 45.494098 - ], - [ - -73.459819, - 45.493648 - ], - [ - -73.459784, - 45.493562 - ], - [ - -73.45974, - 45.493441 - ], - [ - -73.459717, - 45.493391 - ], - [ - -73.459678, - 45.493328 - ], - [ - -73.45962, - 45.493243 - ], - [ - -73.459564, - 45.493189 - ], - [ - -73.458942, - 45.492657 - ], - [ - -73.459245, - 45.492482 - ], - [ - -73.459615, - 45.492262 - ], - [ - -73.459321, - 45.492023 - ], - [ - -73.458975, - 45.49174 - ], - [ - -73.458833, - 45.491614 - ], - [ - -73.458646, - 45.491492 - ], - [ - -73.458531, - 45.491443 - ], - [ - -73.45836, - 45.491343 - ], - [ - -73.458297, - 45.491303 - ], - [ - -73.457958, - 45.491019 - ], - [ - -73.457829, - 45.490908 - ], - [ - -73.457738, - 45.49083 - ], - [ - -73.456382, - 45.491631 - ], - [ - -73.454766, - 45.492597 - ], - [ - -73.454215, - 45.492926 - ], - [ - -73.453333, - 45.493454 - ], - [ - -73.451788, - 45.494378 - ], - [ - -73.451626, - 45.494472 - ], - [ - -73.44881, - 45.496149 - ], - [ - -73.448168, - 45.496536 - ], - [ - -73.447323, - 45.497044 - ], - [ - -73.447443, - 45.49711 - ], - [ - -73.447676, - 45.497238 - ], - [ - -73.448036, - 45.497431 - ], - [ - -73.44838, - 45.497616 - ], - [ - -73.448779, - 45.497827 - ], - [ - -73.449434, - 45.49821 - ], - [ - -73.449496, - 45.498237 - ], - [ - -73.449546, - 45.498251 - ], - [ - -73.449725, - 45.498152 - ], - [ - -73.449873, - 45.498064 - ], - [ - -73.449884, - 45.498057 - ], - [ - -73.450085, - 45.497941 - ], - [ - -73.450487, - 45.498161 - ], - [ - -73.451013, - 45.498449 - ], - [ - -73.451357, - 45.498643 - ], - [ - -73.451834, - 45.498904 - ], - [ - -73.452113, - 45.499057 - ], - [ - -73.452639, - 45.49935 - ], - [ - -73.452794, - 45.499431 - ], - [ - -73.453172, - 45.499634 - ], - [ - -73.453483, - 45.499755 - ], - [ - -73.45482, - 45.500233 - ], - [ - -73.454914, - 45.500255 - ], - [ - -73.455067, - 45.500305 - ], - [ - -73.455166, - 45.5003 - ], - [ - -73.455262, - 45.5003 - ], - [ - -73.45538, - 45.500282 - ], - [ - -73.455439, - 45.500273 - ], - [ - -73.455726, - 45.500228 - ], - [ - -73.455803, - 45.500305 - ], - [ - -73.456099, - 45.500539 - ], - [ - -73.45648, - 45.500755 - ], - [ - -73.457135, - 45.501093 - ], - [ - -73.457312, - 45.501192 - ], - [ - -73.457366, - 45.501237 - ], - [ - -73.457629, - 45.501448 - ], - [ - -73.458179, - 45.50112 - ], - [ - -73.458392, - 45.500985 - ], - [ - -73.458619, - 45.50085 - ], - [ - -73.458792, - 45.500752 - ], - [ - -73.45911, - 45.500567 - ], - [ - -73.459247, - 45.50068 - ], - [ - -73.459797, - 45.501134 - ], - [ - -73.459893, - 45.501214 - ], - [ - -73.460303, - 45.501557 - ], - [ - -73.460537, - 45.501755 - ], - [ - -73.460681, - 45.501872 - ], - [ - -73.460922, - 45.502075 - ], - [ - -73.461281, - 45.501859 - ], - [ - -73.461628, - 45.501652 - ], - [ - -73.461886, - 45.501859 - ], - [ - -73.46216, - 45.502089 - ], - [ - -73.462443, - 45.502336 - ], - [ - -73.462726, - 45.502584 - ], - [ - -73.463263, - 45.503039 - ], - [ - -73.463363, - 45.503124 - ], - [ - -73.463564, - 45.503003 - ], - [ - -73.464212, - 45.502612 - ], - [ - -73.464512, - 45.502432 - ], - [ - -73.466934, - 45.500988 - ], - [ - -73.467259, - 45.501258 - ], - [ - -73.467598, - 45.501537 - ], - [ - -73.467922, - 45.501812 - ], - [ - -73.468227, - 45.502077 - ], - [ - -73.468758, - 45.502507 - ], - [ - -73.469411, - 45.503036 - ], - [ - -73.469419, - 45.503065 - ], - [ - -73.469426, - 45.503089 - ], - [ - -73.46944, - 45.503136 - ], - [ - -73.469513, - 45.50323 - ], - [ - -73.469572, - 45.50329 - ], - [ - -73.469677, - 45.503226 - ], - [ - -73.469755, - 45.503179 - ], - [ - -73.469968, - 45.50305 - ], - [ - -73.471184, - 45.502317 - ], - [ - -73.472092, - 45.501763 - ], - [ - -73.47358, - 45.50086 - ], - [ - -73.473641, - 45.500823 - ], - [ - -73.474037, - 45.500587 - ], - [ - -73.474786, - 45.50014 - ], - [ - -73.475106, - 45.500405 - ], - [ - -73.475435, - 45.500666 - ], - [ - -73.475716, - 45.500905 - ], - [ - -73.476098, - 45.50122 - ], - [ - -73.476388, - 45.501458 - ], - [ - -73.476424, - 45.501489 - ], - [ - -73.476748, - 45.501764 - ], - [ - -73.477196, - 45.501493 - ], - [ - -73.478559, - 45.500665 - ], - [ - -73.479345, - 45.500187 - ], - [ - -73.480384, - 45.499556 - ], - [ - -73.480477, - 45.499488 - ], - [ - -73.480847, - 45.499223 - ], - [ - -73.481169, - 45.498994 - ], - [ - -73.481589, - 45.498697 - ], - [ - -73.481899, - 45.498472 - ], - [ - -73.482124, - 45.49831 - ], - [ - -73.482636, - 45.497941 - ], - [ - -73.482985, - 45.497707 - ], - [ - -73.483277, - 45.497509 - ], - [ - -73.483338, - 45.497469 - ], - [ - -73.483382, - 45.497433 - ], - [ - -73.483504, - 45.497347 - ], - [ - -73.483872, - 45.497077 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.48442, - 45.496983 - ], - [ - -73.484708, - 45.497199 - ], - [ - -73.484931, - 45.497378 - ], - [ - -73.485095, - 45.49751 - ], - [ - -73.485397, - 45.497784 - ], - [ - -73.485739, - 45.498135 - ], - [ - -73.485877, - 45.498284 - ], - [ - -73.486105, - 45.498553 - ], - [ - -73.486192, - 45.498666 - ], - [ - -73.486286, - 45.498787 - ], - [ - -73.486368, - 45.498907 - ], - [ - -73.486538, - 45.499154 - ], - [ - -73.486685, - 45.499381 - ], - [ - -73.486823, - 45.499615 - ], - [ - -73.486951, - 45.499858 - ], - [ - -73.487124, - 45.500231 - ], - [ - -73.487138, - 45.500263 - ], - [ - -73.487159, - 45.500317 - ], - [ - -73.487306, - 45.500713 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487417, - 45.501077 - ], - [ - -73.487455, - 45.501208 - ], - [ - -73.487464, - 45.50124 - ], - [ - -73.48765, - 45.50191 - ], - [ - -73.487855, - 45.502589 - ], - [ - -73.488032, - 45.50303 - ], - [ - -73.488178, - 45.503309 - ], - [ - -73.488409, - 45.50371 - ], - [ - -73.489159, - 45.504974 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491816, - 45.509156 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495706, - 45.511385 - ], - [ - -73.495762, - 45.511404 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506328, - 45.514811 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507378, - 45.515114 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.51628, - 45.519789 - ], - [ - -73.518173, - 45.520398 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 12, - "properties": { - "id": "740e31cd-6ac6-4995-924e-fae7e6e74629", - "data": { - "gtfs": { - "shape_id": "3_1_A" - }, - "segments": [ - { - "distanceMeters": 938, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 868, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 868, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 518, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 476, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 528, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 469, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 1070, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 1059, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 1063, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 403, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 997, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 906, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 969, - "travelTimeSeconds": 39 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11125, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 0, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 26.49, - "travelTimeWithoutDwellTimesSeconds": 420, - "operatingTimeWithLayoverTimeSeconds": 600, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 420, - "operatingSpeedWithLayoverMetersPerSecond": 18.54, - "averageSpeedWithoutDwellTimesMetersPerSecond": 26.49 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "800a1d6c-4d5b-4560-b691-99e1b0db1343", - "e827aa2c-577c-4249-9fc7-9a6572084b69", - "12181a0a-32eb-4333-b444-1760ecaa417c", - "0689eff9-8438-4b1c-9e3a-78c672f6ef82", - "3c0294df-b0e7-4be1-af27-4b755f5639ad", - "912a81e5-66f7-4af9-8125-ae16515fe284", - "1c6a64fd-3d5b-472f-bfe4-11a7479ddb48", - "504ca07a-925d-4f9a-9b79-37177c38a6d1", - "923afb03-b5b7-44ed-a97d-4785d2468e97", - "43297c29-6e25-4fbe-a1b6-70a1ce96533d", - "c6b0edc5-b07e-4471-93c5-2b6117d67602", - "e49c515c-3414-4a88-aaec-43f9499177ec", - "f46c44d6-0823-444d-9902-d03499774c08", - "69ce0958-621c-4e07-9f8c-41bd64014240", - "800a1d6c-4d5b-4560-b691-99e1b0db1343" - ], - "stops": [], - "line_id": "f20acb5e-042e-4cbf-b52d-19d571b642d6", - "segments": [ - 0, - 26, - 49, - 64, - 81, - 98, - 113, - 119, - 143, - 175, - 195, - 207, - 227, - 262 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 12, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.407427, - 45.475701 - ], - [ - -73.407671, - 45.475838 - ], - [ - -73.407863, - 45.475945 - ], - [ - -73.409707, - 45.474585 - ], - [ - -73.41056, - 45.473956 - ], - [ - -73.41241, - 45.472592 - ], - [ - -73.411668, - 45.472104 - ], - [ - -73.411574, - 45.472042 - ], - [ - -73.41199, - 45.471733 - ], - [ - -73.413912, - 45.470304 - ], - [ - -73.414113, - 45.470154 - ], - [ - -73.415611, - 45.469047 - ], - [ - -73.415613, - 45.469046 - ], - [ - -73.415792, - 45.468914 - ], - [ - -73.416609, - 45.469358 - ], - [ - -73.41672, - 45.469418 - ], - [ - -73.417713, - 45.469982 - ], - [ - -73.418132, - 45.470212 - ], - [ - -73.419892, - 45.47118 - ], - [ - -73.421002, - 45.471784 - ], - [ - -73.421017, - 45.471793 - ], - [ - -73.421174, - 45.471887 - ], - [ - -73.424106, - 45.473482 - ], - [ - -73.424833, - 45.473878 - ], - [ - -73.42707, - 45.475086 - ], - [ - -73.42721, - 45.475162 - ], - [ - -73.427939, - 45.475559 - ], - [ - -73.428561, - 45.475892 - ], - [ - -73.429345, - 45.476324 - ], - [ - -73.429408, - 45.476356 - ], - [ - -73.429545, - 45.47644 - ], - [ - -73.429644, - 45.4765 - ], - [ - -73.429958, - 45.476689 - ], - [ - -73.43007, - 45.476775 - ], - [ - -73.430191, - 45.476874 - ], - [ - -73.430682, - 45.477184 - ], - [ - -73.43148, - 45.477725 - ], - [ - -73.43157, - 45.477786 - ], - [ - -73.432859, - 45.478671 - ], - [ - -73.433478, - 45.479091 - ], - [ - -73.433608, - 45.479179 - ], - [ - -73.435032, - 45.480148 - ], - [ - -73.435717, - 45.480608 - ], - [ - -73.435802, - 45.480665 - ], - [ - -73.4369, - 45.481417 - ], - [ - -73.437313, - 45.4817 - ], - [ - -73.437407, - 45.481764 - ], - [ - -73.438338, - 45.48239 - ], - [ - -73.438854, - 45.482753 - ], - [ - -73.438971, - 45.482836 - ], - [ - -73.439533, - 45.483272 - ], - [ - -73.440126, - 45.483709 - ], - [ - -73.440666, - 45.484123 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.441638, - 45.484884 - ], - [ - -73.442265, - 45.485398 - ], - [ - -73.44238, - 45.485492 - ], - [ - -73.442979, - 45.48598 - ], - [ - -73.443236, - 45.48619 - ], - [ - -73.443584, - 45.486491 - ], - [ - -73.443685, - 45.486573 - ], - [ - -73.443941, - 45.486781 - ], - [ - -73.444066, - 45.486883 - ], - [ - -73.443689, - 45.487108 - ], - [ - -73.443286, - 45.487346 - ], - [ - -73.441903, - 45.488164 - ], - [ - -73.441622, - 45.488335 - ], - [ - -73.441555, - 45.488376 - ], - [ - -73.441228, - 45.488564 - ], - [ - -73.440838, - 45.488816 - ], - [ - -73.440766, - 45.488924 - ], - [ - -73.440605, - 45.489241 - ], - [ - -73.440578, - 45.489293 - ], - [ - -73.440338, - 45.489779 - ], - [ - -73.440267, - 45.489918 - ], - [ - -73.440103, - 45.49026 - ], - [ - -73.439969, - 45.490525 - ], - [ - -73.439938, - 45.490581 - ], - [ - -73.439745, - 45.490935 - ], - [ - -73.439594, - 45.491218 - ], - [ - -73.439454, - 45.491495 - ], - [ - -73.439349, - 45.491704 - ], - [ - -73.439197, - 45.491998 - ], - [ - -73.439145, - 45.4921 - ], - [ - -73.439256, - 45.492158 - ], - [ - -73.439383, - 45.492229 - ], - [ - -73.439932, - 45.492532 - ], - [ - -73.440215, - 45.49269 - ], - [ - -73.440531, - 45.49287 - ], - [ - -73.440633, - 45.492928 - ], - [ - -73.440725, - 45.492973 - ], - [ - -73.442066, - 45.493723 - ], - [ - -73.442339, - 45.493875 - ], - [ - -73.442362, - 45.493888 - ], - [ - -73.442408, - 45.493847 - ], - [ - -73.442628, - 45.493654 - ], - [ - -73.442898, - 45.493424 - ], - [ - -73.44315, - 45.493191 - ], - [ - -73.443327, - 45.493041 - ], - [ - -73.443437, - 45.492948 - ], - [ - -73.443519, - 45.492853 - ], - [ - -73.443931, - 45.492444 - ], - [ - -73.444166, - 45.492197 - ], - [ - -73.444645, - 45.491689 - ], - [ - -73.444394, - 45.491549 - ], - [ - -73.444136, - 45.491456 - ], - [ - -73.443933, - 45.491382 - ], - [ - -73.443743, - 45.491333 - ], - [ - -73.444455, - 45.490906 - ], - [ - -73.445249, - 45.490425 - ], - [ - -73.445609, - 45.490209 - ], - [ - -73.445807, - 45.490089 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446822, - 45.490639 - ], - [ - -73.44688, - 45.490686 - ], - [ - -73.44726, - 45.491004 - ], - [ - -73.447337, - 45.491069 - ], - [ - -73.447665, - 45.490889 - ], - [ - -73.448136, - 45.490592 - ], - [ - -73.44848, - 45.49039 - ], - [ - -73.448793, - 45.490206 - ], - [ - -73.44919, - 45.489963 - ], - [ - -73.449326, - 45.489886 - ], - [ - -73.449476, - 45.489801 - ], - [ - -73.450048, - 45.489455 - ], - [ - -73.450226, - 45.489293 - ], - [ - -73.450385, - 45.489131 - ], - [ - -73.450522, - 45.488807 - ], - [ - -73.450553, - 45.48864 - ], - [ - -73.450562, - 45.488591 - ], - [ - -73.450564, - 45.488501 - ], - [ - -73.451142, - 45.48852 - ], - [ - -73.451437, - 45.488556 - ], - [ - -73.451471, - 45.48856 - ], - [ - -73.451663, - 45.488618 - ], - [ - -73.451864, - 45.488677 - ], - [ - -73.452026, - 45.48874 - ], - [ - -73.452059, - 45.488756 - ], - [ - -73.45223, - 45.488835 - ], - [ - -73.452271, - 45.488863 - ], - [ - -73.452316, - 45.488894 - ], - [ - -73.452398, - 45.488943 - ], - [ - -73.452482, - 45.488993 - ], - [ - -73.452596, - 45.489092 - ], - [ - -73.452853, - 45.489389 - ], - [ - -73.453059, - 45.489641 - ], - [ - -73.453301, - 45.489897 - ], - [ - -73.453554, - 45.490154 - ], - [ - -73.453816, - 45.490388 - ], - [ - -73.454028, - 45.490572 - ], - [ - -73.454376, - 45.490852 - ], - [ - -73.454692, - 45.491102 - ], - [ - -73.454792, - 45.49118 - ], - [ - -73.455383, - 45.490825 - ], - [ - -73.456177, - 45.490348 - ], - [ - -73.456382, - 45.490186 - ], - [ - -73.45652, - 45.490034 - ], - [ - -73.456589, - 45.489894 - ], - [ - -73.456688, - 45.489687 - ], - [ - -73.45669, - 45.489678 - ], - [ - -73.456709, - 45.489602 - ], - [ - -73.456724, - 45.489525 - ], - [ - -73.456835, - 45.488612 - ], - [ - -73.456898, - 45.488077 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457718, - 45.48666 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.459242, - 45.485729 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.461091, - 45.484449 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.46135, - 45.4837 - ], - [ - -73.460838, - 45.483637 - ], - [ - -73.460406, - 45.4836 - ], - [ - -73.460186, - 45.483581 - ], - [ - -73.459999, - 45.483565 - ], - [ - -73.459497, - 45.483511 - ], - [ - -73.459033, - 45.483457 - ], - [ - -73.458739, - 45.483407 - ], - [ - -73.458547, - 45.483371 - ], - [ - -73.458333, - 45.483321 - ], - [ - -73.458016, - 45.483245 - ], - [ - -73.45777, - 45.483182 - ], - [ - -73.457502, - 45.483104 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45956, - 45.481339 - ], - [ - -73.460927, - 45.480413 - ], - [ - -73.461043, - 45.480335 - ], - [ - -73.462485, - 45.479345 - ], - [ - -73.462704, - 45.479194 - ], - [ - -73.462837, - 45.479103 - ], - [ - -73.46358, - 45.479629 - ], - [ - -73.463657, - 45.479683 - ], - [ - -73.4647, - 45.479009 - ], - [ - -73.4648, - 45.478959 - ], - [ - -73.464926, - 45.478932 - ], - [ - -73.465079, - 45.478932 - ], - [ - -73.465247, - 45.479 - ], - [ - -73.465163, - 45.479252 - ], - [ - -73.465116, - 45.479393 - ], - [ - -73.464879, - 45.480107 - ], - [ - -73.464823, - 45.480273 - ], - [ - -73.464733, - 45.480574 - ], - [ - -73.464664, - 45.480885 - ], - [ - -73.464646, - 45.48102 - ], - [ - -73.464634, - 45.481108 - ], - [ - -73.464622, - 45.481195 - ], - [ - -73.464619, - 45.481245 - ], - [ - -73.464603, - 45.481524 - ], - [ - -73.464619, - 45.481956 - ], - [ - -73.464693, - 45.482383 - ], - [ - -73.464736, - 45.482559 - ], - [ - -73.46485, - 45.482905 - ], - [ - -73.46499, - 45.483243 - ], - [ - -73.465069, - 45.483405 - ], - [ - -73.465231, - 45.483688 - ], - [ - -73.465328, - 45.483837 - ], - [ - -73.465383, - 45.483922 - ], - [ - -73.465513, - 45.484102 - ], - [ - -73.465839, - 45.48448 - ], - [ - -73.466022, - 45.484682 - ], - [ - -73.46613, - 45.484773 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.46623, - 45.484867 - ], - [ - -73.466294, - 45.484926 - ], - [ - -73.466463, - 45.48506 - ], - [ - -73.466566, - 45.485142 - ], - [ - -73.466759, - 45.48529 - ], - [ - -73.466948, - 45.485421 - ], - [ - -73.467024, - 45.48547 - ], - [ - -73.468004, - 45.486118 - ], - [ - -73.469888, - 45.487365 - ], - [ - -73.470621, - 45.487851 - ], - [ - -73.471604, - 45.488503 - ], - [ - -73.471789, - 45.488626 - ], - [ - -73.473768, - 45.489935 - ], - [ - -73.474008, - 45.490094 - ], - [ - -73.474218, - 45.490232 - ], - [ - -73.476501, - 45.49174 - ], - [ - -73.4777, - 45.49253 - ], - [ - -73.479085, - 45.493444 - ], - [ - -73.479217, - 45.493531 - ], - [ - -73.480275, - 45.494231 - ], - [ - -73.481907, - 45.495309 - ], - [ - -73.482, - 45.495372 - ], - [ - -73.482357, - 45.495608 - ], - [ - -73.483276, - 45.496213 - ], - [ - -73.483953, - 45.496659 - ], - [ - -73.484036, - 45.496717 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.48442, - 45.496983 - ], - [ - -73.484708, - 45.497199 - ], - [ - -73.484931, - 45.497378 - ], - [ - -73.485095, - 45.49751 - ], - [ - -73.485397, - 45.497784 - ], - [ - -73.485739, - 45.498135 - ], - [ - -73.485877, - 45.498284 - ], - [ - -73.486105, - 45.498553 - ], - [ - -73.486286, - 45.498787 - ], - [ - -73.486368, - 45.498907 - ], - [ - -73.486538, - 45.499154 - ], - [ - -73.486685, - 45.499381 - ], - [ - -73.486823, - 45.499615 - ], - [ - -73.486951, - 45.499858 - ], - [ - -73.487138, - 45.500263 - ], - [ - -73.487159, - 45.500317 - ], - [ - -73.487263, - 45.500597 - ], - [ - -73.487306, - 45.500713 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487417, - 45.501077 - ], - [ - -73.487455, - 45.501208 - ], - [ - -73.487464, - 45.50124 - ], - [ - -73.48765, - 45.50191 - ], - [ - -73.487855, - 45.502589 - ], - [ - -73.488032, - 45.50303 - ], - [ - -73.488178, - 45.503309 - ], - [ - -73.488409, - 45.50371 - ], - [ - -73.489159, - 45.504974 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492911, - 45.510101 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497915, - 45.512051 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.500868, - 45.513004 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505099, - 45.514478 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506107, - 45.514749 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511905, - 45.516865 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513431, - 45.518299 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.514993, - 45.519419 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518888, - 45.520627 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.521609, - 45.523676 - ], - [ - -73.521556, - 45.52368 - ], - [ - -73.521506, - 45.523698 - ], - [ - -73.521494, - 45.523725 - ], - [ - -73.521489, - 45.523788 - ], - [ - -73.521486, - 45.523819 - ] - ] - }, - "id": 13, - "properties": { - "id": "af29d253-ab43-467c-8a35-a001916833e1", - "data": { - "gtfs": { - "shape_id": "4_1_A" - }, - "segments": [ - { - "distanceMeters": 349, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 438, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 598, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 446, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 485, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 555, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 544, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 507, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 1156, - "travelTimeSeconds": 151 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 598, - "travelTimeSeconds": 105 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 694, - "travelTimeSeconds": 122 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 246, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 16376, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10373.97286026279, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.66, - "travelTimeWithoutDwellTimesSeconds": 2460, - "operatingTimeWithLayoverTimeSeconds": 2706, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2460, - "operatingSpeedWithLayoverMetersPerSecond": 6.05, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.66 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "7c3e8b4c-c373-431f-8a27-ba6c2f349e5b", - "0ff0280b-6f85-4d12-b102-cc4b8609d72a", - "cbe5dd37-dce1-464a-9725-6d31d37c48ab", - "8dc191fb-71db-4873-9019-c9cedd32b2f0", - "176a1328-a08b-40f7-9010-c279f0b6cf5d", - "b184f86a-a7af-4949-9957-882509c0c182", - "34963af0-6d55-47fa-9de8-fb99aa68c762", - "99164719-41bf-44c1-a7e0-77b9cb1d3a3d", - "189acf66-403d-4292-8dff-0eed1cd28768", - "a17f387c-1398-49f4-8a7b-291d91ebc51f", - "a09ea856-287c-4215-ad6a-dab05db66e7a", - "cd932703-83f9-4acf-94fa-d521e6d427d0", - "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", - "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "e72d0d41-60dd-429c-9fc0-986190945d76", - "5a038102-c755-4ed1-808d-b41a0eb02aa9", - "6e3cdc85-5c0c-43a6-859f-4ad3aa775f67", - "5cb52e5c-c1b7-4111-984c-122d6e4401d5", - "b795edd3-1e6e-4c63-b5cc-c707855d4f44", - "5aef33db-0b7d-4b46-a545-a163c8806e46", - "617e606b-4ed1-4dba-9147-4a51b4bb23f4", - "6d59a527-4747-4d6f-9acd-29b4758d8c2c", - "7650e289-ca0a-45d4-ad94-da11b1683dc6", - "35f25056-4f99-4b6e-babc-10c53194c70e", - "0f232130-277e-4d7b-b106-b6821c45f0a9", - "4262a22a-885d-4877-ad99-0a8406e2adaa", - "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", - "517a8299-e807-4040-8ccd-f417dda7338c", - "da4ca96f-4db9-4287-b307-afc6221c923f", - "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "a90c4da7-455c-41d3-9961-c7a64d627572", - "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", - "491099bb-9493-4888-bd4e-20bd2140830a", - "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", - "10c2e9e3-14c8-465a-917c-28c8d9977609", - "a2558ba6-6969-4ec2-a211-1170eb732a2b", - "a2558ba6-6969-4ec2-a211-1170eb732a2b", - "bf51d692-a22e-42e9-a495-2d1955e0c462", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "4996264a-c3f0-4fe8-be81-9ca3d8659c61", - "e089008c-4123-4897-95b5-a61e5e049f48", - "03b1ef77-b509-4f21-97d5-d511eeb821cb", - "56af9248-f973-4335-84c1-2e5e744a3910", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "fd062866-a8eb-4466-b53a-6adf8fc3f09a", - "6c42a8f6-a98f-4058-9992-d00706a03dff", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "a5b9648a-83c0-4eab-a54b-68c23aecae43", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", - "be19484c-af95-45b2-bfe5-24342dd1b710", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "d7e7bedb-da54-4b78-aecf-158fa91503b7", - "segments": [ - 0, - 4, - 6, - 9, - 12, - 14, - 20, - 24, - 30, - 37, - 39, - 42, - 45, - 48, - 52, - 55, - 61, - 66, - 71, - 77, - 82, - 88, - 92, - 98, - 105, - 111, - 117, - 124, - 130, - 141, - 153, - 161, - 165, - 174, - 179, - 184, - 196, - 205, - 208, - 211, - 213, - 221, - 226, - 247, - 255, - 258, - 262, - 267, - 270, - 288, - 310, - 323, - 326, - 333, - 352, - 358, - 371, - 378 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 13, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.407427, - 45.475701 - ], - [ - -73.407671, - 45.475838 - ], - [ - -73.407863, - 45.475945 - ], - [ - -73.409707, - 45.474585 - ], - [ - -73.41056, - 45.473956 - ], - [ - -73.41241, - 45.472592 - ], - [ - -73.411668, - 45.472104 - ], - [ - -73.411574, - 45.472042 - ], - [ - -73.41199, - 45.471733 - ], - [ - -73.413912, - 45.470304 - ], - [ - -73.414113, - 45.470154 - ], - [ - -73.415611, - 45.469047 - ], - [ - -73.415613, - 45.469046 - ], - [ - -73.415792, - 45.468914 - ], - [ - -73.416609, - 45.469358 - ], - [ - -73.41672, - 45.469418 - ], - [ - -73.417713, - 45.469982 - ], - [ - -73.418132, - 45.470212 - ], - [ - -73.419892, - 45.47118 - ], - [ - -73.421002, - 45.471784 - ], - [ - -73.421017, - 45.471793 - ], - [ - -73.421174, - 45.471887 - ], - [ - -73.424106, - 45.473482 - ], - [ - -73.424833, - 45.473878 - ], - [ - -73.42707, - 45.475086 - ], - [ - -73.42721, - 45.475162 - ], - [ - -73.427939, - 45.475559 - ], - [ - -73.428561, - 45.475892 - ], - [ - -73.429345, - 45.476324 - ], - [ - -73.429408, - 45.476356 - ], - [ - -73.429545, - 45.47644 - ], - [ - -73.429644, - 45.4765 - ], - [ - -73.429958, - 45.476689 - ], - [ - -73.43007, - 45.476775 - ], - [ - -73.430191, - 45.476874 - ], - [ - -73.430682, - 45.477184 - ], - [ - -73.43148, - 45.477725 - ], - [ - -73.43157, - 45.477786 - ], - [ - -73.432859, - 45.478671 - ], - [ - -73.433478, - 45.479091 - ], - [ - -73.433608, - 45.479179 - ], - [ - -73.435032, - 45.480148 - ], - [ - -73.435717, - 45.480608 - ], - [ - -73.435802, - 45.480665 - ], - [ - -73.4369, - 45.481417 - ], - [ - -73.437313, - 45.4817 - ], - [ - -73.437407, - 45.481764 - ], - [ - -73.438338, - 45.48239 - ], - [ - -73.438854, - 45.482753 - ], - [ - -73.438971, - 45.482836 - ], - [ - -73.439533, - 45.483272 - ], - [ - -73.440126, - 45.483709 - ], - [ - -73.440666, - 45.484123 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.441638, - 45.484884 - ], - [ - -73.442265, - 45.485398 - ], - [ - -73.44238, - 45.485492 - ], - [ - -73.442979, - 45.48598 - ], - [ - -73.443236, - 45.48619 - ], - [ - -73.443584, - 45.486491 - ], - [ - -73.443685, - 45.486573 - ], - [ - -73.443941, - 45.486781 - ], - [ - -73.444066, - 45.486883 - ], - [ - -73.443689, - 45.487108 - ], - [ - -73.443286, - 45.487346 - ], - [ - -73.441903, - 45.488164 - ], - [ - -73.441622, - 45.488335 - ], - [ - -73.441555, - 45.488376 - ], - [ - -73.441228, - 45.488564 - ], - [ - -73.440838, - 45.488816 - ], - [ - -73.440766, - 45.488924 - ], - [ - -73.440605, - 45.489241 - ], - [ - -73.440578, - 45.489293 - ], - [ - -73.440338, - 45.489779 - ], - [ - -73.440267, - 45.489918 - ], - [ - -73.440103, - 45.49026 - ], - [ - -73.439969, - 45.490525 - ], - [ - -73.439938, - 45.490581 - ], - [ - -73.439745, - 45.490935 - ], - [ - -73.439594, - 45.491218 - ], - [ - -73.439454, - 45.491495 - ], - [ - -73.439349, - 45.491704 - ], - [ - -73.439197, - 45.491998 - ], - [ - -73.439145, - 45.4921 - ], - [ - -73.439256, - 45.492158 - ], - [ - -73.439383, - 45.492229 - ], - [ - -73.439932, - 45.492532 - ], - [ - -73.440215, - 45.49269 - ], - [ - -73.440531, - 45.49287 - ], - [ - -73.440633, - 45.492928 - ], - [ - -73.440725, - 45.492973 - ], - [ - -73.442066, - 45.493723 - ], - [ - -73.442339, - 45.493875 - ], - [ - -73.442362, - 45.493888 - ], - [ - -73.442408, - 45.493847 - ], - [ - -73.442628, - 45.493654 - ], - [ - -73.442898, - 45.493424 - ], - [ - -73.44315, - 45.493191 - ], - [ - -73.443327, - 45.493041 - ], - [ - -73.443437, - 45.492948 - ], - [ - -73.443519, - 45.492853 - ], - [ - -73.443931, - 45.492444 - ], - [ - -73.444166, - 45.492197 - ], - [ - -73.444645, - 45.491689 - ], - [ - -73.444394, - 45.491549 - ], - [ - -73.444136, - 45.491456 - ], - [ - -73.443933, - 45.491382 - ], - [ - -73.443743, - 45.491333 - ], - [ - -73.444455, - 45.490906 - ], - [ - -73.445249, - 45.490425 - ], - [ - -73.445609, - 45.490209 - ], - [ - -73.445807, - 45.490089 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446822, - 45.490639 - ], - [ - -73.44688, - 45.490686 - ], - [ - -73.44726, - 45.491004 - ], - [ - -73.447337, - 45.491069 - ], - [ - -73.447665, - 45.490889 - ], - [ - -73.448136, - 45.490592 - ], - [ - -73.44848, - 45.49039 - ], - [ - -73.448793, - 45.490206 - ], - [ - -73.44919, - 45.489963 - ], - [ - -73.449326, - 45.489886 - ], - [ - -73.449476, - 45.489801 - ], - [ - -73.450048, - 45.489455 - ], - [ - -73.450226, - 45.489293 - ], - [ - -73.450385, - 45.489131 - ], - [ - -73.450522, - 45.488807 - ], - [ - -73.450553, - 45.48864 - ], - [ - -73.450562, - 45.488591 - ], - [ - -73.450564, - 45.488501 - ], - [ - -73.451142, - 45.48852 - ], - [ - -73.451437, - 45.488556 - ], - [ - -73.451471, - 45.48856 - ], - [ - -73.451663, - 45.488618 - ], - [ - -73.451864, - 45.488677 - ], - [ - -73.452026, - 45.48874 - ], - [ - -73.452059, - 45.488756 - ], - [ - -73.45223, - 45.488835 - ], - [ - -73.452271, - 45.488863 - ], - [ - -73.452316, - 45.488894 - ], - [ - -73.452398, - 45.488943 - ], - [ - -73.452482, - 45.488993 - ], - [ - -73.452596, - 45.489092 - ], - [ - -73.452853, - 45.489389 - ], - [ - -73.453059, - 45.489641 - ], - [ - -73.453301, - 45.489897 - ], - [ - -73.453554, - 45.490154 - ], - [ - -73.453816, - 45.490388 - ], - [ - -73.454028, - 45.490572 - ], - [ - -73.454376, - 45.490852 - ], - [ - -73.454692, - 45.491102 - ], - [ - -73.454792, - 45.49118 - ], - [ - -73.455383, - 45.490825 - ], - [ - -73.456177, - 45.490348 - ], - [ - -73.456382, - 45.490186 - ], - [ - -73.45652, - 45.490034 - ], - [ - -73.456589, - 45.489894 - ], - [ - -73.456688, - 45.489687 - ], - [ - -73.45669, - 45.489678 - ], - [ - -73.456709, - 45.489602 - ], - [ - -73.456724, - 45.489525 - ], - [ - -73.456835, - 45.488612 - ], - [ - -73.456898, - 45.488077 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457718, - 45.48666 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.459242, - 45.485729 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.461091, - 45.484449 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.46135, - 45.4837 - ], - [ - -73.460838, - 45.483637 - ], - [ - -73.460406, - 45.4836 - ], - [ - -73.460186, - 45.483581 - ], - [ - -73.459999, - 45.483565 - ], - [ - -73.459497, - 45.483511 - ], - [ - -73.459033, - 45.483457 - ], - [ - -73.458739, - 45.483407 - ], - [ - -73.458547, - 45.483371 - ], - [ - -73.458333, - 45.483321 - ], - [ - -73.458016, - 45.483245 - ], - [ - -73.45777, - 45.483182 - ], - [ - -73.457502, - 45.483104 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45956, - 45.481339 - ], - [ - -73.460927, - 45.480413 - ], - [ - -73.461043, - 45.480335 - ], - [ - -73.462485, - 45.479345 - ], - [ - -73.462704, - 45.479194 - ], - [ - -73.462837, - 45.479103 - ], - [ - -73.46358, - 45.479629 - ], - [ - -73.463657, - 45.479683 - ], - [ - -73.4647, - 45.479009 - ], - [ - -73.4648, - 45.478959 - ], - [ - -73.464926, - 45.478932 - ], - [ - -73.465079, - 45.478932 - ], - [ - -73.465247, - 45.479 - ], - [ - -73.465163, - 45.479252 - ], - [ - -73.465116, - 45.479393 - ], - [ - -73.464879, - 45.480107 - ], - [ - -73.464823, - 45.480273 - ], - [ - -73.464733, - 45.480574 - ], - [ - -73.464664, - 45.480885 - ], - [ - -73.464646, - 45.48102 - ], - [ - -73.464634, - 45.481108 - ], - [ - -73.464622, - 45.481195 - ], - [ - -73.464619, - 45.481245 - ], - [ - -73.464603, - 45.481524 - ], - [ - -73.464619, - 45.481956 - ], - [ - -73.464693, - 45.482383 - ], - [ - -73.464736, - 45.482559 - ], - [ - -73.46485, - 45.482905 - ], - [ - -73.46499, - 45.483243 - ], - [ - -73.465069, - 45.483405 - ], - [ - -73.465231, - 45.483688 - ], - [ - -73.465328, - 45.483837 - ], - [ - -73.465383, - 45.483922 - ], - [ - -73.465513, - 45.484102 - ], - [ - -73.465839, - 45.48448 - ], - [ - -73.466022, - 45.484682 - ], - [ - -73.46613, - 45.484773 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.46623, - 45.484867 - ], - [ - -73.466294, - 45.484926 - ], - [ - -73.466463, - 45.48506 - ], - [ - -73.466566, - 45.485142 - ], - [ - -73.466759, - 45.48529 - ], - [ - -73.466948, - 45.485421 - ], - [ - -73.467024, - 45.48547 - ], - [ - -73.468004, - 45.486118 - ], - [ - -73.469888, - 45.487365 - ], - [ - -73.470621, - 45.487851 - ], - [ - -73.471604, - 45.488503 - ], - [ - -73.471789, - 45.488626 - ], - [ - -73.473768, - 45.489935 - ], - [ - -73.474008, - 45.490094 - ], - [ - -73.474218, - 45.490232 - ], - [ - -73.476501, - 45.49174 - ], - [ - -73.4777, - 45.49253 - ], - [ - -73.479085, - 45.493444 - ], - [ - -73.479217, - 45.493531 - ], - [ - -73.480275, - 45.494231 - ], - [ - -73.481907, - 45.495309 - ], - [ - -73.482, - 45.495372 - ], - [ - -73.482357, - 45.495608 - ], - [ - -73.483276, - 45.496213 - ], - [ - -73.483953, - 45.496659 - ], - [ - -73.484036, - 45.496717 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.48442, - 45.496983 - ], - [ - -73.484708, - 45.497199 - ], - [ - -73.484931, - 45.497378 - ], - [ - -73.485095, - 45.49751 - ], - [ - -73.485397, - 45.497784 - ], - [ - -73.485739, - 45.498135 - ], - [ - -73.485877, - 45.498284 - ], - [ - -73.486105, - 45.498553 - ], - [ - -73.486286, - 45.498787 - ], - [ - -73.486368, - 45.498907 - ], - [ - -73.486538, - 45.499154 - ], - [ - -73.486685, - 45.499381 - ], - [ - -73.486823, - 45.499615 - ], - [ - -73.486951, - 45.499858 - ], - [ - -73.487138, - 45.500263 - ], - [ - -73.487159, - 45.500317 - ], - [ - -73.487263, - 45.500597 - ], - [ - -73.487306, - 45.500713 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487417, - 45.501077 - ], - [ - -73.487455, - 45.501208 - ], - [ - -73.487464, - 45.50124 - ], - [ - -73.48765, - 45.50191 - ], - [ - -73.487855, - 45.502589 - ], - [ - -73.488032, - 45.50303 - ], - [ - -73.488178, - 45.503309 - ], - [ - -73.488409, - 45.50371 - ], - [ - -73.489159, - 45.504974 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492911, - 45.510101 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497915, - 45.512051 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.500868, - 45.513004 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505099, - 45.514478 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506107, - 45.514749 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511905, - 45.516865 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513431, - 45.518299 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.514993, - 45.519419 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518888, - 45.520627 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.521609, - 45.523676 - ], - [ - -73.521556, - 45.52368 - ], - [ - -73.521506, - 45.523698 - ], - [ - -73.521494, - 45.523725 - ], - [ - -73.521489, - 45.523788 - ], - [ - -73.521486, - 45.523819 - ] - ] - }, - "id": 14, - "properties": { - "id": "73ff2ef1-9155-47fe-936e-b74c397a4cc5", - "data": { - "gtfs": { - "shape_id": "4_2_A" - }, - "segments": [ - { - "distanceMeters": 349, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 438, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 598, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 446, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 485, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 555, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 544, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 507, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 1156, - "travelTimeSeconds": 151 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 598, - "travelTimeSeconds": 105 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 694, - "travelTimeSeconds": 122 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 246, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 16376, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10373.97286026279, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.66, - "travelTimeWithoutDwellTimesSeconds": 2460, - "operatingTimeWithLayoverTimeSeconds": 2706, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2460, - "operatingSpeedWithLayoverMetersPerSecond": 6.05, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.66 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "7c3e8b4c-c373-431f-8a27-ba6c2f349e5b", - "0ff0280b-6f85-4d12-b102-cc4b8609d72a", - "cbe5dd37-dce1-464a-9725-6d31d37c48ab", - "8dc191fb-71db-4873-9019-c9cedd32b2f0", - "176a1328-a08b-40f7-9010-c279f0b6cf5d", - "b184f86a-a7af-4949-9957-882509c0c182", - "34963af0-6d55-47fa-9de8-fb99aa68c762", - "99164719-41bf-44c1-a7e0-77b9cb1d3a3d", - "189acf66-403d-4292-8dff-0eed1cd28768", - "a17f387c-1398-49f4-8a7b-291d91ebc51f", - "a09ea856-287c-4215-ad6a-dab05db66e7a", - "cd932703-83f9-4acf-94fa-d521e6d427d0", - "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", - "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "e72d0d41-60dd-429c-9fc0-986190945d76", - "5a038102-c755-4ed1-808d-b41a0eb02aa9", - "6e3cdc85-5c0c-43a6-859f-4ad3aa775f67", - "5cb52e5c-c1b7-4111-984c-122d6e4401d5", - "b795edd3-1e6e-4c63-b5cc-c707855d4f44", - "5aef33db-0b7d-4b46-a545-a163c8806e46", - "617e606b-4ed1-4dba-9147-4a51b4bb23f4", - "6d59a527-4747-4d6f-9acd-29b4758d8c2c", - "7650e289-ca0a-45d4-ad94-da11b1683dc6", - "35f25056-4f99-4b6e-babc-10c53194c70e", - "0f232130-277e-4d7b-b106-b6821c45f0a9", - "4262a22a-885d-4877-ad99-0a8406e2adaa", - "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", - "517a8299-e807-4040-8ccd-f417dda7338c", - "da4ca96f-4db9-4287-b307-afc6221c923f", - "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "a90c4da7-455c-41d3-9961-c7a64d627572", - "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", - "491099bb-9493-4888-bd4e-20bd2140830a", - "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", - "10c2e9e3-14c8-465a-917c-28c8d9977609", - "a2558ba6-6969-4ec2-a211-1170eb732a2b", - "a2558ba6-6969-4ec2-a211-1170eb732a2b", - "bf51d692-a22e-42e9-a495-2d1955e0c462", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "4996264a-c3f0-4fe8-be81-9ca3d8659c61", - "e089008c-4123-4897-95b5-a61e5e049f48", - "03b1ef77-b509-4f21-97d5-d511eeb821cb", - "56af9248-f973-4335-84c1-2e5e744a3910", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "fd062866-a8eb-4466-b53a-6adf8fc3f09a", - "6c42a8f6-a98f-4058-9992-d00706a03dff", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "a5b9648a-83c0-4eab-a54b-68c23aecae43", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", - "be19484c-af95-45b2-bfe5-24342dd1b710", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "d7e7bedb-da54-4b78-aecf-158fa91503b7", - "segments": [ - 0, - 4, - 6, - 9, - 12, - 14, - 20, - 24, - 30, - 37, - 39, - 42, - 45, - 48, - 52, - 55, - 61, - 66, - 71, - 77, - 82, - 88, - 92, - 98, - 105, - 111, - 117, - 124, - 130, - 141, - 153, - 161, - 165, - 174, - 179, - 184, - 196, - 205, - 208, - 211, - 213, - 221, - 226, - 247, - 255, - 258, - 262, - 267, - 270, - 288, - 310, - 323, - 326, - 333, - 352, - 358, - 371, - 378 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 14, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521486, - 45.523819 - ], - [ - -73.521481, - 45.523874 - ], - [ - -73.52149, - 45.523892 - ], - [ - -73.521509, - 45.523906 - ], - [ - -73.521542, - 45.523919 - ], - [ - -73.521581, - 45.523923 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519257, - 45.520728 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514996, - 45.519328 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513222, - 45.517458 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509952, - 45.515502 - ], - [ - -73.509485, - 45.515357 - ], - [ - -73.509462, - 45.515349 - ], - [ - -73.509376, - 45.515323 - ], - [ - -73.508692, - 45.515143 - ], - [ - -73.508296, - 45.51503 - ], - [ - -73.507817, - 45.514868 - ], - [ - -73.507704, - 45.514841 - ], - [ - -73.507464, - 45.514765 - ], - [ - -73.506516, - 45.514432 - ], - [ - -73.505464, - 45.514054 - ], - [ - -73.505166, - 45.51396 - ], - [ - -73.504861, - 45.513863 - ], - [ - -73.504774, - 45.513836 - ], - [ - -73.504451, - 45.513734 - ], - [ - -73.50434, - 45.513699 - ], - [ - -73.504259, - 45.513672 - ], - [ - -73.503369, - 45.513397 - ], - [ - -73.502433, - 45.51315 - ], - [ - -73.502048, - 45.513078 - ], - [ - -73.501537, - 45.512934 - ], - [ - -73.501411, - 45.512898 - ], - [ - -73.50108, - 45.512799 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499655, - 45.51234 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.498203, - 45.511887 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.494293, - 45.51045 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.494088, - 45.51035 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491841, - 45.508692 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488541, - 45.503629 - ], - [ - -73.48831, - 45.50321 - ], - [ - -73.48823, - 45.503039 - ], - [ - -73.488092, - 45.502693 - ], - [ - -73.487989, - 45.502369 - ], - [ - -73.487959, - 45.502275 - ], - [ - -73.487746, - 45.501478 - ], - [ - -73.487613, - 45.501033 - ], - [ - -73.487523, - 45.500733 - ], - [ - -73.487509, - 45.500686 - ], - [ - -73.487464, - 45.50056 - ], - [ - -73.487346, - 45.500232 - ], - [ - -73.487139, - 45.499795 - ], - [ - -73.486985, - 45.499512 - ], - [ - -73.486838, - 45.499266 - ], - [ - -73.486818, - 45.499233 - ], - [ - -73.48673, - 45.4991 - ], - [ - -73.486631, - 45.498949 - ], - [ - -73.486428, - 45.498675 - ], - [ - -73.486216, - 45.498401 - ], - [ - -73.486166, - 45.498342 - ], - [ - -73.486, - 45.498149 - ], - [ - -73.485576, - 45.497708 - ], - [ - -73.485299, - 45.497456 - ], - [ - -73.485252, - 45.497416 - ], - [ - -73.485251, - 45.497415 - ], - [ - -73.484899, - 45.497123 - ], - [ - -73.484449, - 45.496787 - ], - [ - -73.484387, - 45.49674 - ], - [ - -73.484357, - 45.496722 - ], - [ - -73.482242, - 45.495324 - ], - [ - -73.482144, - 45.49526 - ], - [ - -73.482055, - 45.495201 - ], - [ - -73.47955, - 45.493541 - ], - [ - -73.479372, - 45.493423 - ], - [ - -73.474532, - 45.490225 - ], - [ - -73.474366, - 45.490115 - ], - [ - -73.473909, - 45.489814 - ], - [ - -73.472117, - 45.488629 - ], - [ - -73.471942, - 45.488513 - ], - [ - -73.46708, - 45.485304 - ], - [ - -73.466642, - 45.484984 - ], - [ - -73.46652, - 45.484883 - ], - [ - -73.466473, - 45.484845 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466302, - 45.484687 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466188, - 45.484448 - ], - [ - -73.466149, - 45.484395 - ], - [ - -73.465905, - 45.484113 - ], - [ - -73.465719, - 45.4839 - ], - [ - -73.46546, - 45.483541 - ], - [ - -73.465236, - 45.483174 - ], - [ - -73.465161, - 45.483037 - ], - [ - -73.465057, - 45.482799 - ], - [ - -73.464968, - 45.48254 - ], - [ - -73.46489, - 45.482284 - ], - [ - -73.464833, - 45.481906 - ], - [ - -73.464816, - 45.481524 - ], - [ - -73.464843, - 45.481165 - ], - [ - -73.464847, - 45.481114 - ], - [ - -73.464866, - 45.480979 - ], - [ - -73.46492, - 45.48071 - ], - [ - -73.465032, - 45.480327 - ], - [ - -73.465198, - 45.479819 - ], - [ - -73.46547, - 45.479009 - ], - [ - -73.465247, - 45.479 - ], - [ - -73.465079, - 45.478932 - ], - [ - -73.464926, - 45.478932 - ], - [ - -73.4648, - 45.478959 - ], - [ - -73.4647, - 45.479009 - ], - [ - -73.464545, - 45.479109 - ], - [ - -73.464217, - 45.479321 - ], - [ - -73.463657, - 45.479683 - ], - [ - -73.462965, - 45.479193 - ], - [ - -73.462837, - 45.479103 - ], - [ - -73.46243, - 45.479382 - ], - [ - -73.461146, - 45.480265 - ], - [ - -73.461043, - 45.480335 - ], - [ - -73.457237, - 45.48291 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.456963, - 45.483096 - ], - [ - -73.457696, - 45.483312 - ], - [ - -73.457948, - 45.48338 - ], - [ - -73.45825, - 45.483452 - ], - [ - -73.458477, - 45.483499 - ], - [ - -73.458491, - 45.483501 - ], - [ - -73.458691, - 45.483542 - ], - [ - -73.458995, - 45.483592 - ], - [ - -73.459974, - 45.483704 - ], - [ - -73.46004, - 45.48371 - ], - [ - -73.460528, - 45.483756 - ], - [ - -73.460806, - 45.483781 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461197, - 45.484333 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.459553, - 45.4855 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.457879, - 45.486539 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.456939, - 45.487841 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456835, - 45.488612 - ], - [ - -73.456724, - 45.489525 - ], - [ - -73.456709, - 45.489602 - ], - [ - -73.456688, - 45.489687 - ], - [ - -73.456589, - 45.489894 - ], - [ - -73.456546, - 45.489981 - ], - [ - -73.45652, - 45.490034 - ], - [ - -73.456382, - 45.490186 - ], - [ - -73.456177, - 45.490348 - ], - [ - -73.455033, - 45.491035 - ], - [ - -73.454792, - 45.49118 - ], - [ - -73.454498, - 45.490948 - ], - [ - -73.454376, - 45.490852 - ], - [ - -73.454028, - 45.490572 - ], - [ - -73.453816, - 45.490388 - ], - [ - -73.453554, - 45.490154 - ], - [ - -73.453301, - 45.489897 - ], - [ - -73.453059, - 45.489641 - ], - [ - -73.452853, - 45.489389 - ], - [ - -73.452596, - 45.489092 - ], - [ - -73.452482, - 45.488993 - ], - [ - -73.452438, - 45.488967 - ], - [ - -73.452398, - 45.488943 - ], - [ - -73.452316, - 45.488894 - ], - [ - -73.45223, - 45.488835 - ], - [ - -73.452059, - 45.488756 - ], - [ - -73.452026, - 45.48874 - ], - [ - -73.451864, - 45.488677 - ], - [ - -73.451663, - 45.488618 - ], - [ - -73.451471, - 45.48856 - ], - [ - -73.451142, - 45.48852 - ], - [ - -73.450756, - 45.488507 - ], - [ - -73.450564, - 45.488501 - ], - [ - -73.450562, - 45.488591 - ], - [ - -73.450522, - 45.488807 - ], - [ - -73.450385, - 45.489131 - ], - [ - -73.450226, - 45.489293 - ], - [ - -73.450048, - 45.489455 - ], - [ - -73.449936, - 45.489523 - ], - [ - -73.449645, - 45.489699 - ], - [ - -73.449476, - 45.489801 - ], - [ - -73.44919, - 45.489963 - ], - [ - -73.448793, - 45.490206 - ], - [ - -73.44848, - 45.49039 - ], - [ - -73.448136, - 45.490592 - ], - [ - -73.447665, - 45.490889 - ], - [ - -73.447459, - 45.491002 - ], - [ - -73.447337, - 45.491069 - ], - [ - -73.44688, - 45.490686 - ], - [ - -73.446822, - 45.490639 - ], - [ - -73.446251, - 45.490172 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.445609, - 45.490209 - ], - [ - -73.445249, - 45.490425 - ], - [ - -73.444455, - 45.490906 - ], - [ - -73.443916, - 45.491229 - ], - [ - -73.443743, - 45.491333 - ], - [ - -73.443933, - 45.491382 - ], - [ - -73.444394, - 45.491549 - ], - [ - -73.444645, - 45.491689 - ], - [ - -73.444166, - 45.492197 - ], - [ - -73.443931, - 45.492444 - ], - [ - -73.443524, - 45.492848 - ], - [ - -73.443519, - 45.492853 - ], - [ - -73.443437, - 45.492948 - ], - [ - -73.44315, - 45.493191 - ], - [ - -73.442898, - 45.493424 - ], - [ - -73.442628, - 45.493654 - ], - [ - -73.442459, - 45.493802 - ], - [ - -73.442408, - 45.493847 - ], - [ - -73.442362, - 45.493888 - ], - [ - -73.442066, - 45.493723 - ], - [ - -73.440729, - 45.492976 - ], - [ - -73.440725, - 45.492973 - ], - [ - -73.440633, - 45.492928 - ], - [ - -73.440215, - 45.49269 - ], - [ - -73.439932, - 45.492532 - ], - [ - -73.439282, - 45.492173 - ], - [ - -73.439256, - 45.492158 - ], - [ - -73.439145, - 45.4921 - ], - [ - -73.439349, - 45.491704 - ], - [ - -73.439454, - 45.491495 - ], - [ - -73.439594, - 45.491218 - ], - [ - -73.439745, - 45.490935 - ], - [ - -73.43978, - 45.490871 - ], - [ - -73.439881, - 45.490686 - ], - [ - -73.439969, - 45.490525 - ], - [ - -73.440103, - 45.49026 - ], - [ - -73.440267, - 45.489918 - ], - [ - -73.440338, - 45.489779 - ], - [ - -73.440531, - 45.489389 - ], - [ - -73.440578, - 45.489293 - ], - [ - -73.440766, - 45.488924 - ], - [ - -73.440838, - 45.488816 - ], - [ - -73.441228, - 45.488564 - ], - [ - -73.441401, - 45.488465 - ], - [ - -73.441555, - 45.488376 - ], - [ - -73.441903, - 45.488164 - ], - [ - -73.443286, - 45.487346 - ], - [ - -73.443689, - 45.487108 - ], - [ - -73.443935, - 45.486961 - ], - [ - -73.444066, - 45.486883 - ], - [ - -73.444194, - 45.486807 - ], - [ - -73.443808, - 45.486496 - ], - [ - -73.443706, - 45.486415 - ], - [ - -73.44336, - 45.486118 - ], - [ - -73.44263, - 45.485517 - ], - [ - -73.442528, - 45.485434 - ], - [ - -73.441754, - 45.484812 - ], - [ - -73.440975, - 45.484193 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.440245, - 45.483633 - ], - [ - -73.43964, - 45.483201 - ], - [ - -73.439149, - 45.482819 - ], - [ - -73.439083, - 45.482768 - ], - [ - -73.438464, - 45.482318 - ], - [ - -73.437642, - 45.481755 - ], - [ - -73.437512, - 45.481665 - ], - [ - -73.437014, - 45.481332 - ], - [ - -73.436033, - 45.48066 - ], - [ - -73.435909, - 45.480575 - ], - [ - -73.43514, - 45.480067 - ], - [ - -73.433825, - 45.479172 - ], - [ - -73.433717, - 45.479098 - ], - [ - -73.432962, - 45.478594 - ], - [ - -73.431689, - 45.477709 - ], - [ - -73.431589, - 45.477639 - ], - [ - -73.431156, - 45.477363 - ], - [ - -73.430822, - 45.47715 - ], - [ - -73.430771, - 45.477117 - ], - [ - -73.430341, - 45.476838 - ], - [ - -73.430219, - 45.476739 - ], - [ - -73.430066, - 45.476622 - ], - [ - -73.429584, - 45.476333 - ], - [ - -73.429432, - 45.476243 - ], - [ - -73.429213, - 45.476117 - ], - [ - -73.428817, - 45.475896 - ], - [ - -73.428674, - 45.475815 - ], - [ - -73.428041, - 45.475473 - ], - [ - -73.427438, - 45.475149 - ], - [ - -73.427303, - 45.475077 - ], - [ - -73.424942, - 45.473788 - ], - [ - -73.42448, - 45.473518 - ], - [ - -73.42423, - 45.47337 - ], - [ - -73.421489, - 45.47188 - ], - [ - -73.421313, - 45.471784 - ], - [ - -73.421136, - 45.47168 - ], - [ - -73.420016, - 45.471068 - ], - [ - -73.417836, - 45.469869 - ], - [ - -73.416987, - 45.469413 - ], - [ - -73.416906, - 45.469369 - ], - [ - -73.416836, - 45.469338 - ], - [ - -73.415903, - 45.468828 - ], - [ - -73.415843, - 45.468873 - ], - [ - -73.415792, - 45.468914 - ], - [ - -73.41507, - 45.469447 - ], - [ - -73.414201, - 45.470089 - ], - [ - -73.414113, - 45.470154 - ], - [ - -73.411713, - 45.471939 - ], - [ - -73.411574, - 45.472042 - ], - [ - -73.409684, - 45.473437 - ], - [ - -73.407179, - 45.475288 - ], - [ - -73.406966, - 45.475444 - ], - [ - -73.407427, - 45.475701 - ] - ] - }, - "id": 15, - "properties": { - "id": "c6441207-f979-4711-a641-4c2297618d9e", - "data": { - "gtfs": { - "shape_id": "4_1_R" - }, - "segments": [ - { - "distanceMeters": 706, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 384, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 403, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 345, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 954, - "travelTimeSeconds": 145 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 538, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 604, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 771, - "travelTimeSeconds": 121 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 424, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 92, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 590, - "travelTimeSeconds": 106 - }, - { - "distanceMeters": 446, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 70, - "travelTimeSeconds": 13 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 246, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 16372, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10373.97286026279, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.66, - "travelTimeWithoutDwellTimesSeconds": 2460, - "operatingTimeWithLayoverTimeSeconds": 2706, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2460, - "operatingSpeedWithLayoverMetersPerSecond": 6.05, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.66 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "d3215c60-bb9e-40ac-89e4-1f922b39e266", - "f9358f54-8643-47f5-b0df-4a20b46cc22d", - "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", - "f4f29738-df3f-4d69-8632-9088ded0dc5a", - "741876fc-030a-42f6-a33a-8f1f9c2aba12", - "688a3f67-a176-441e-a399-c92a55de9c74", - "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", - "37199bb2-9740-4484-b68f-12d3c82f8bf9", - "bcd0a901-5384-443e-9be4-1f0faa123ccb", - "fdd9bfef-c8dc-4f65-9008-847050729854", - "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", - "7ad37664-fa6b-478f-8d31-2d3ae7009709", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "94cd69e7-ebc9-452b-a357-367107db73b4", - "03b1ef77-b509-4f21-97d5-d511eeb821cb", - "351136d8-2c40-4c3f-8032-a52e48738c07", - "159a0fe9-bedb-40f2-9806-32ab49594978", - "bf51d692-a22e-42e9-a495-2d1955e0c462", - "a2558ba6-6969-4ec2-a211-1170eb732a2b", - "10c2e9e3-14c8-465a-917c-28c8d9977609", - "fd67ddde-e938-481c-8721-79fa136304ae", - "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", - "c24b91da-a4a3-4b28-b987-5726c6a01fdb", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", - "da4ca96f-4db9-4287-b307-afc6221c923f", - "517a8299-e807-4040-8ccd-f417dda7338c", - "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", - "4262a22a-885d-4877-ad99-0a8406e2adaa", - "0f232130-277e-4d7b-b106-b6821c45f0a9", - "35f25056-4f99-4b6e-babc-10c53194c70e", - "7650e289-ca0a-45d4-ad94-da11b1683dc6", - "6d59a527-4747-4d6f-9acd-29b4758d8c2c", - "617e606b-4ed1-4dba-9147-4a51b4bb23f4", - "5aef33db-0b7d-4b46-a545-a163c8806e46", - "b795edd3-1e6e-4c63-b5cc-c707855d4f44", - "5cb52e5c-c1b7-4111-984c-122d6e4401d5", - "6e3cdc85-5c0c-43a6-859f-4ad3aa775f67", - "5a038102-c755-4ed1-808d-b41a0eb02aa9", - "e72d0d41-60dd-429c-9fc0-986190945d76", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", - "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", - "cd932703-83f9-4acf-94fa-d521e6d427d0", - "a09ea856-287c-4215-ad6a-dab05db66e7a", - "a17f387c-1398-49f4-8a7b-291d91ebc51f", - "71881b96-39d5-48ea-9242-5e05ded39cda", - "3bdfaeff-1b70-46d9-94b3-c14187a3f83c", - "99164719-41bf-44c1-a7e0-77b9cb1d3a3d", - "34963af0-6d55-47fa-9de8-fb99aa68c762", - "b184f86a-a7af-4949-9957-882509c0c182", - "8dc191fb-71db-4873-9019-c9cedd32b2f0", - "cbe5dd37-dce1-464a-9725-6d31d37c48ab", - "fb30643a-60d9-443e-8b22-29ad762aebdb", - "bd054361-ba99-4c5e-bde0-47f325682b88", - "7c3e8b4c-c373-431f-8a27-ba6c2f349e5b" - ], - "stops": [], - "line_id": "d7e7bedb-da54-4b78-aecf-158fa91503b7", - "segments": [ - 0, - 45, - 52, - 59, - 69, - 80, - 87, - 91, - 96, - 106, - 118, - 136, - 142, - 152, - 155, - 158, - 161, - 163, - 166, - 170, - 199, - 202, - 205, - 207, - 219, - 232, - 238, - 247, - 254, - 258, - 270, - 280, - 288, - 295, - 299, - 306, - 313, - 319, - 323, - 328, - 336, - 341, - 346, - 351, - 357, - 360, - 364, - 367, - 370, - 373, - 376, - 379, - 387, - 390, - 395, - 400, - 407, - 409, - 411, - 412 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 15, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.398942, - 45.50191 - ], - [ - -73.396837, - 45.502044 - ], - [ - -73.395381, - 45.502132 - ], - [ - -73.395213, - 45.502142 - ], - [ - -73.395161, - 45.502053 - ], - [ - -73.395151, - 45.501975 - ], - [ - -73.395111, - 45.50166 - ], - [ - -73.395084, - 45.501431 - ], - [ - -73.395041, - 45.50117 - ], - [ - -73.395041, - 45.501053 - ], - [ - -73.395077, - 45.50094 - ], - [ - -73.3955, - 45.500069 - ], - [ - -73.395555, - 45.499955 - ], - [ - -73.395706, - 45.499618 - ], - [ - -73.395829, - 45.49938 - ], - [ - -73.395901, - 45.499299 - ], - [ - -73.396037, - 45.499128 - ], - [ - -73.396173, - 45.499011 - ], - [ - -73.396508, - 45.498695 - ], - [ - -73.396766, - 45.498454 - ], - [ - -73.396911, - 45.498319 - ], - [ - -73.397102, - 45.498121 - ], - [ - -73.397351, - 45.497878 - ], - [ - -73.397678, - 45.497573 - ], - [ - -73.397919, - 45.497334 - ], - [ - -73.397979, - 45.49728 - ], - [ - -73.398209, - 45.497074 - ], - [ - -73.398541, - 45.496804 - ], - [ - -73.398788, - 45.496579 - ], - [ - -73.399137, - 45.496287 - ], - [ - -73.399245, - 45.496194 - ], - [ - -73.399546, - 45.495932 - ], - [ - -73.399607, - 45.495824 - ], - [ - -73.399612, - 45.49582 - ], - [ - -73.399701, - 45.495748 - ], - [ - -73.399832, - 45.495561 - ], - [ - -73.399866, - 45.495514 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.401121, - 45.49596 - ], - [ - -73.401602, - 45.496181 - ], - [ - -73.402418, - 45.496555 - ], - [ - -73.402953, - 45.49679 - ], - [ - -73.403393, - 45.496985 - ], - [ - -73.403543, - 45.497051 - ], - [ - -73.403795, - 45.49716 - ], - [ - -73.404434, - 45.497426 - ], - [ - -73.404858, - 45.497588 - ], - [ - -73.405172, - 45.497723 - ], - [ - -73.405568, - 45.497876 - ], - [ - -73.406291, - 45.498153 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.406288, - 45.49843 - ], - [ - -73.406193, - 45.498579 - ], - [ - -73.406191, - 45.498584 - ], - [ - -73.406163, - 45.49864 - ], - [ - -73.405911, - 45.499145 - ], - [ - -73.405493, - 45.499995 - ], - [ - -73.405383, - 45.500198 - ], - [ - -73.405251, - 45.500369 - ], - [ - -73.405082, - 45.500567 - ], - [ - -73.405027, - 45.500619 - ], - [ - -73.404894, - 45.500746 - ], - [ - -73.404658, - 45.500926 - ], - [ - -73.404439, - 45.50107 - ], - [ - -73.404275, - 45.501164 - ], - [ - -73.404095, - 45.501254 - ], - [ - -73.403728, - 45.501411 - ], - [ - -73.403505, - 45.501483 - ], - [ - -73.403239, - 45.501555 - ], - [ - -73.403207, - 45.501564 - ], - [ - -73.402929, - 45.501627 - ], - [ - -73.402747, - 45.501658 - ], - [ - -73.402456, - 45.501689 - ], - [ - -73.401996, - 45.50172 - ], - [ - -73.401156, - 45.501773 - ], - [ - -73.401007, - 45.501782 - ], - [ - -73.399341, - 45.501884 - ], - [ - -73.399355, - 45.501992 - ], - [ - -73.3994, - 45.50233 - ], - [ - -73.399402, - 45.502346 - ], - [ - -73.399417, - 45.50246 - ], - [ - -73.399441, - 45.502676 - ], - [ - -73.399508, - 45.503131 - ], - [ - -73.399523, - 45.503233 - ], - [ - -73.399542, - 45.50336 - ], - [ - -73.399657, - 45.504175 - ], - [ - -73.399715, - 45.5046 - ], - [ - -73.399729, - 45.504706 - ], - [ - -73.39976, - 45.505156 - ], - [ - -73.399787, - 45.505322 - ], - [ - -73.39982, - 45.505426 - ], - [ - -73.399886, - 45.505552 - ], - [ - -73.399949, - 45.505664 - ], - [ - -73.400052, - 45.505795 - ], - [ - -73.400152, - 45.505885 - ], - [ - -73.40031, - 45.50598 - ], - [ - -73.40043, - 45.506038 - ], - [ - -73.400576, - 45.506099 - ], - [ - -73.400593, - 45.506106 - ], - [ - -73.400668, - 45.506128 - ], - [ - -73.400809, - 45.506169 - ], - [ - -73.403269, - 45.506793 - ], - [ - -73.403459, - 45.506842 - ], - [ - -73.404937, - 45.507219 - ], - [ - -73.404942, - 45.507221 - ], - [ - -73.40508, - 45.507248 - ], - [ - -73.405181, - 45.507248 - ], - [ - -73.405194, - 45.507248 - ], - [ - -73.405268, - 45.507208 - ], - [ - -73.405549, - 45.506609 - ], - [ - -73.405719, - 45.506277 - ], - [ - -73.405871, - 45.505971 - ], - [ - -73.405984, - 45.50575 - ], - [ - -73.406106, - 45.505495 - ], - [ - -73.40619, - 45.505319 - ], - [ - -73.406364, - 45.504981 - ], - [ - -73.406515, - 45.50468 - ], - [ - -73.406677, - 45.504352 - ], - [ - -73.406855, - 45.504005 - ], - [ - -73.407261, - 45.504118 - ], - [ - -73.407475, - 45.504174 - ], - [ - -73.407623, - 45.504212 - ], - [ - -73.407766, - 45.504249 - ], - [ - -73.408367, - 45.504398 - ], - [ - -73.408932, - 45.504538 - ], - [ - -73.409315, - 45.504637 - ], - [ - -73.409673, - 45.504729 - ], - [ - -73.409774, - 45.504755 - ], - [ - -73.41077, - 45.504994 - ], - [ - -73.41145, - 45.505167 - ], - [ - -73.411569, - 45.505197 - ], - [ - -73.412507, - 45.505418 - ], - [ - -73.412645, - 45.505436 - ], - [ - -73.412747, - 45.50545 - ], - [ - -73.412864, - 45.50545 - ], - [ - -73.413013, - 45.505441 - ], - [ - -73.413165, - 45.505425 - ], - [ - -73.413318, - 45.50541 - ], - [ - -73.413549, - 45.505378 - ], - [ - -73.413728, - 45.505356 - ], - [ - -73.413859, - 45.505329 - ], - [ - -73.414002, - 45.505302 - ], - [ - -73.414101, - 45.505275 - ], - [ - -73.41431, - 45.50519 - ], - [ - -73.414386, - 45.505141 - ], - [ - -73.414456, - 45.505105 - ], - [ - -73.414518, - 45.50506 - ], - [ - -73.414599, - 45.50497 - ], - [ - -73.414677, - 45.504884 - ], - [ - -73.41471, - 45.504826 - ], - [ - -73.41477, - 45.504718 - ], - [ - -73.415883, - 45.50251 - ], - [ - -73.41601, - 45.502261 - ], - [ - -73.41606, - 45.502164 - ], - [ - -73.416178, - 45.501934 - ], - [ - -73.416751, - 45.502146 - ], - [ - -73.417065, - 45.502261 - ], - [ - -73.417293, - 45.502344 - ], - [ - -73.417806, - 45.502538 - ], - [ - -73.418173, - 45.502669 - ], - [ - -73.418847, - 45.502921 - ], - [ - -73.418855, - 45.502924 - ], - [ - -73.419167, - 45.503047 - ], - [ - -73.419278, - 45.503088 - ], - [ - -73.419673, - 45.503241 - ], - [ - -73.420142, - 45.503431 - ], - [ - -73.420687, - 45.503664 - ], - [ - -73.420806, - 45.503714 - ], - [ - -73.421234, - 45.503904 - ], - [ - -73.421648, - 45.504084 - ], - [ - -73.421847, - 45.503805 - ], - [ - -73.421882, - 45.503756 - ], - [ - -73.421936, - 45.503681 - ], - [ - -73.422478, - 45.502933 - ], - [ - -73.42255, - 45.502834 - ], - [ - -73.423187, - 45.501937 - ], - [ - -73.423367, - 45.501683 - ], - [ - -73.423423, - 45.501602 - ], - [ - -73.423518, - 45.501444 - ], - [ - -73.423572, - 45.501404 - ], - [ - -73.424528, - 45.500041 - ], - [ - -73.424818, - 45.49964 - ], - [ - -73.424908, - 45.499515 - ], - [ - -73.426337, - 45.497501 - ], - [ - -73.426401, - 45.49741 - ], - [ - -73.42783, - 45.495424 - ], - [ - -73.427911, - 45.49531 - ], - [ - -73.42799, - 45.495202 - ], - [ - -73.429317, - 45.493365 - ], - [ - -73.429402, - 45.493246 - ], - [ - -73.430659, - 45.491516 - ], - [ - -73.430914, - 45.491164 - ], - [ - -73.431849, - 45.489835 - ], - [ - -73.432063, - 45.489531 - ], - [ - -73.43217, - 45.489383 - ], - [ - -73.43219, - 45.48936 - ], - [ - -73.432305, - 45.489239 - ], - [ - -73.432556, - 45.489041 - ], - [ - -73.432684, - 45.488933 - ], - [ - -73.432921, - 45.48878 - ], - [ - -73.433484, - 45.488439 - ], - [ - -73.435044, - 45.487531 - ], - [ - -73.435153, - 45.487468 - ], - [ - -73.437094, - 45.486331 - ], - [ - -73.437465, - 45.486115 - ], - [ - -73.43775, - 45.485944 - ], - [ - -73.437823, - 45.485899 - ], - [ - -73.438008, - 45.485782 - ], - [ - -73.439264, - 45.485036 - ], - [ - -73.439959, - 45.484631 - ], - [ - -73.440551, - 45.484309 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.443018, - 45.482865 - ], - [ - -73.443627, - 45.482492 - ], - [ - -73.443745, - 45.48242 - ], - [ - -73.445624, - 45.481309 - ], - [ - -73.446413, - 45.480839 - ], - [ - -73.446581, - 45.480738 - ], - [ - -73.448451, - 45.479622 - ], - [ - -73.448771, - 45.479431 - ], - [ - -73.449044, - 45.479268 - ], - [ - -73.449242, - 45.479145 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.44954, - 45.478958 - ], - [ - -73.449587, - 45.478931 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.44904, - 45.47838 - ], - [ - -73.449352, - 45.478167 - ], - [ - -73.451084, - 45.476981 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.453403, - 45.475394 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.455822, - 45.473738 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.458196, - 45.472113 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.460481, - 45.470553 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.462574, - 45.469113 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.465173, - 45.468282 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.468602, - 45.466372 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.46904, - 45.466277 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467867, - 45.466069 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469319, - 45.467991 - ], - [ - -73.469043, - 45.467983 - ], - [ - -73.468598, - 45.467969 - ], - [ - -73.468434, - 45.467978 - ], - [ - -73.467926, - 45.468045 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.46758, - 45.467757 - ], - [ - -73.467357, - 45.467296 - ], - [ - -73.467335, - 45.467098 - ], - [ - -73.467287, - 45.466921 - ], - [ - -73.46724, - 45.46679 - ], - [ - -73.467201, - 45.466621 - ], - [ - -73.467171, - 45.466457 - ], - [ - -73.467168, - 45.466361 - ], - [ - -73.467171, - 45.466266 - ], - [ - -73.46719, - 45.46616 - ], - [ - -73.467233, - 45.466051 - ], - [ - -73.467286, - 45.465947 - ], - [ - -73.467286, - 45.465946 - ], - [ - -73.467347, - 45.465852 - ], - [ - -73.46743, - 45.465768 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467565, - 45.465647 - ], - [ - -73.467708, - 45.465556 - ], - [ - -73.467899, - 45.465442 - ], - [ - -73.46805, - 45.465387 - ], - [ - -73.468287, - 45.465321 - ], - [ - -73.468514, - 45.465288 - ], - [ - -73.468859, - 45.465256 - ], - [ - -73.469207, - 45.465245 - ], - [ - -73.471824, - 45.46534 - ], - [ - -73.47278, - 45.465351 - ], - [ - -73.473923, - 45.465346 - ], - [ - -73.474792, - 45.465284 - ], - [ - -73.476448, - 45.465339 - ], - [ - -73.478069, - 45.465419 - ], - [ - -73.47931, - 45.465481 - ], - [ - -73.480681, - 45.465584 - ], - [ - -73.481658, - 45.465665 - ], - [ - -73.483804, - 45.465854 - ], - [ - -73.485886, - 45.466123 - ], - [ - -73.488038, - 45.466444 - ], - [ - -73.489088, - 45.466602 - ], - [ - -73.491585, - 45.46694 - ], - [ - -73.494707, - 45.467307 - ], - [ - -73.494917, - 45.467332 - ], - [ - -73.494999, - 45.467342 - ], - [ - -73.497318, - 45.467635 - ], - [ - -73.501976, - 45.468162 - ], - [ - -73.50546, - 45.468524 - ], - [ - -73.508994, - 45.468874 - ], - [ - -73.510795, - 45.469064 - ], - [ - -73.516615, - 45.469606 - ], - [ - -73.520513, - 45.469901 - ], - [ - -73.524263, - 45.470138 - ], - [ - -73.526895, - 45.470234 - ], - [ - -73.536203, - 45.470502 - ], - [ - -73.537479, - 45.470611 - ], - [ - -73.540035, - 45.470737 - ], - [ - -73.540574, - 45.470754 - ], - [ - -73.541689, - 45.470806 - ], - [ - -73.54236, - 45.470938 - ], - [ - -73.542685, - 45.471019 - ], - [ - -73.543056, - 45.471172 - ], - [ - -73.543235, - 45.471297 - ], - [ - -73.543427, - 45.47153 - ], - [ - -73.543495, - 45.471781 - ], - [ - -73.543487, - 45.471977 - ], - [ - -73.543374, - 45.472246 - ], - [ - -73.543123, - 45.472648 - ], - [ - -73.543053, - 45.472745 - ], - [ - -73.543034, - 45.472772 - ], - [ - -73.543013, - 45.472801 - ], - [ - -73.542473, - 45.473549 - ], - [ - -73.542275, - 45.473832 - ], - [ - -73.542255, - 45.473861 - ], - [ - -73.542175, - 45.473976 - ], - [ - -73.542016, - 45.474229 - ], - [ - -73.541794, - 45.474618 - ], - [ - -73.541458, - 45.475221 - ], - [ - -73.541094, - 45.47588 - ], - [ - -73.540722, - 45.476557 - ], - [ - -73.540393, - 45.477154 - ], - [ - -73.540141, - 45.477612 - ], - [ - -73.539989, - 45.477937 - ], - [ - -73.539912, - 45.478117 - ], - [ - -73.53962, - 45.478792 - ], - [ - -73.539453, - 45.479242 - ], - [ - -73.539011, - 45.480452 - ], - [ - -73.538771, - 45.481137 - ], - [ - -73.538372, - 45.4823 - ], - [ - -73.537796, - 45.483909 - ], - [ - -73.537682, - 45.484235 - ], - [ - -73.537533, - 45.484742 - ], - [ - -73.537501, - 45.485252 - ], - [ - -73.537565, - 45.485765 - ], - [ - -73.537725, - 45.486206 - ], - [ - -73.537953, - 45.486613 - ], - [ - -73.538211, - 45.486968 - ], - [ - -73.538564, - 45.487319 - ], - [ - -73.538991, - 45.48766 - ], - [ - -73.539413, - 45.487933 - ], - [ - -73.540409, - 45.488352 - ], - [ - -73.540999, - 45.488508 - ], - [ - -73.545779, - 45.489431 - ], - [ - -73.547415, - 45.489732 - ], - [ - -73.548107, - 45.48986 - ], - [ - -73.549549, - 45.490154 - ], - [ - -73.549968, - 45.490239 - ], - [ - -73.550646, - 45.490459 - ], - [ - -73.551261, - 45.490742 - ], - [ - -73.55163, - 45.490924 - ], - [ - -73.551996, - 45.491154 - ], - [ - -73.552466, - 45.491495 - ], - [ - -73.552812, - 45.491812 - ], - [ - -73.553225, - 45.492293 - ], - [ - -73.553459, - 45.492647 - ], - [ - -73.553701, - 45.493121 - ], - [ - -73.553714, - 45.493155 - ], - [ - -73.554005, - 45.493935 - ], - [ - -73.554229, - 45.494495 - ], - [ - -73.55441, - 45.494962 - ], - [ - -73.554709, - 45.495574 - ], - [ - -73.554963, - 45.495825 - ], - [ - -73.555225, - 45.496022 - ], - [ - -73.555665, - 45.496222 - ], - [ - -73.557268, - 45.496821 - ], - [ - -73.557934, - 45.497074 - ], - [ - -73.558754, - 45.497382 - ], - [ - -73.559129, - 45.497554 - ], - [ - -73.559665, - 45.497799 - ], - [ - -73.56055, - 45.498258 - ], - [ - -73.561247, - 45.498577 - ], - [ - -73.561311, - 45.498457 - ], - [ - -73.561361, - 45.498363 - ], - [ - -73.561384, - 45.498316 - ], - [ - -73.561417, - 45.498249 - ], - [ - -73.561461, - 45.49816 - ], - [ - -73.561504, - 45.498074 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.562038, - 45.497108 - ], - [ - -73.562161, - 45.497168 - ], - [ - -73.562611, - 45.497387 - ], - [ - -73.562698, - 45.497457 - ], - [ - -73.562791, - 45.497486 - ], - [ - -73.562898, - 45.497495 - ], - [ - -73.563026, - 45.497486 - ], - [ - -73.563269, - 45.497461 - ], - [ - -73.563391, - 45.497457 - ], - [ - -73.563535, - 45.497468 - ], - [ - -73.56365, - 45.497486 - ], - [ - -73.56376, - 45.497514 - ], - [ - -73.563861, - 45.497562 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.56431, - 45.497835 - ], - [ - -73.565142, - 45.498217 - ], - [ - -73.565601, - 45.498443 - ], - [ - -73.565748, - 45.49831 - ], - [ - -73.565849, - 45.498292 - ], - [ - -73.566051, - 45.498359 - ], - [ - -73.566361, - 45.498471 - ], - [ - -73.566492, - 45.498485 - ], - [ - -73.566611, - 45.498345 - ] - ] - }, - "id": 16, - "properties": { - "id": "dfd8969f-f649-4b39-a7d6-bed32f894636", - "data": { - "gtfs": { - "shape_id": "5_1_A" - }, - "segments": [ - { - "distanceMeters": 279, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 195, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 548, - "travelTimeSeconds": 107 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 11546, - "travelTimeSeconds": 1011 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 276, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 22901, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 13093.326569994628, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.3, - "travelTimeWithoutDwellTimesSeconds": 2760, - "operatingTimeWithLayoverTimeSeconds": 3036, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2760, - "operatingSpeedWithLayoverMetersPerSecond": 7.54, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.3 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0", - "5c25bfb5-c167-4f71-8798-e94a8ad7560d", - "e4d9e692-bf6d-4c61-9845-9e50427c4cad", - "2550d07e-5034-443e-9840-7e9abcf5a62b", - "2e7cf58e-8d32-4b71-acee-694db180235f", - "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", - "33ed66fe-2193-4e2a-b51d-d25140b9ad80", - "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", - "aab8672e-86c9-4a43-9806-f5135dc02b4e", - "7414010b-fe1f-4d77-8cdd-701cc437e73a", - "dc630e4d-102e-48b9-8b4a-920cafc01d4a", - "00ed067b-7627-492d-ac0f-5d03bd3b185c", - "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", - "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", - "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", - "b20c17a3-277e-418e-90be-8f8d32918ba9", - "f1de9305-8e6b-46d3-8c98-a08e73b2857f", - "5228afc6-7e91-431f-8045-f41c542a77ea", - "3d4eebbc-a250-4177-81d6-19642e2b4176", - "aa49b5ca-26fd-4fe1-8e89-4237204a7250", - "35110be1-21ec-490a-b4c8-8b20aa6bef7f", - "bf493d01-4cc2-40cf-9fee-339de5acd0ce", - "72cda4fb-fbe8-47ba-b42e-f310ef91d335", - "9f0b95b0-8453-4218-9889-ef6146815766", - "5f67d1de-bfb7-46e1-9c6a-87d005dd64b6", - "46ea2114-c4d6-46e8-be5d-60d028340abb", - "e460be07-05e4-49f8-a725-e63809c74139", - "235a92b0-53e1-410c-b264-d57c7814303c", - "588e4aef-6d38-4fb0-95ae-8ac520e753f3", - "e8e5c7df-2edf-4749-98c2-97962c7eff9c", - "4fac5725-fd12-47be-9db0-8dea1c53b6f5", - "09a490f8-d473-4d53-8aa0-2df137afe453", - "d68685b2-7e92-4934-989f-8ccfae13451f", - "ee09cf9f-32a4-4f14-abc4-35cf4e9dacb6", - "46a4fc7f-c064-4d08-ac44-e9eeffd46d50", - "3b027d8b-1b72-4250-a270-dd0ef2d41870", - "40ff3e02-8b3f-498b-908e-b391cc70a163", - "68549053-a194-4fc4-9393-09f9a34040bb", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "46d1170e-039a-4a64-a065-b60146bf9006", - "e0286f28-f802-47e9-8fd2-0338e2927a2f", - "42f94a5d-c370-4fd6-9c9f-6767ef259624", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "907f8610-452b-440d-849b-c803b07dedc1", - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "7b9bfdae-7d0d-4463-a7d7-1a62138b83b5", - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" - ], - "stops": [], - "line_id": "51246736-0d56-4a0b-a824-2c9f3fbcbb89", - "segments": [ - 0, - 2, - 11, - 18, - 25, - 35, - 39, - 42, - 53, - 60, - 68, - 74, - 78, - 83, - 86, - 97, - 101, - 106, - 113, - 121, - 126, - 129, - 136, - 149, - 152, - 156, - 161, - 166, - 173, - 175, - 181, - 183, - 185, - 188, - 190, - 192, - 201, - 206, - 210, - 214, - 217, - 219, - 228, - 229, - 231, - 233, - 235, - 237, - 239, - 252, - 277, - 279 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 16, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469043, - 45.46624 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.463779, - 45.468251 - ], - [ - -73.463257, - 45.46862 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463016, - 45.468741 - ], - [ - -73.462763, - 45.468943 - ], - [ - -73.462689, - 45.46902 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.449381, - 45.478147 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448868, - 45.478494 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.449044, - 45.479268 - ], - [ - -73.448771, - 45.479431 - ], - [ - -73.448758, - 45.479439 - ], - [ - -73.446635, - 45.480706 - ], - [ - -73.446581, - 45.480738 - ], - [ - -73.445624, - 45.481309 - ], - [ - -73.443807, - 45.482383 - ], - [ - -73.443745, - 45.48242 - ], - [ - -73.443018, - 45.482865 - ], - [ - -73.440996, - 45.484059 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.439959, - 45.484631 - ], - [ - -73.439264, - 45.485036 - ], - [ - -73.438115, - 45.485719 - ], - [ - -73.438008, - 45.485782 - ], - [ - -73.43775, - 45.485944 - ], - [ - -73.437465, - 45.486115 - ], - [ - -73.437094, - 45.486331 - ], - [ - -73.435273, - 45.487398 - ], - [ - -73.435153, - 45.487468 - ], - [ - -73.433484, - 45.488439 - ], - [ - -73.432921, - 45.48878 - ], - [ - -73.432728, - 45.488905 - ], - [ - -73.432684, - 45.488933 - ], - [ - -73.432556, - 45.489041 - ], - [ - -73.432305, - 45.489239 - ], - [ - -73.43219, - 45.48936 - ], - [ - -73.43217, - 45.489383 - ], - [ - -73.432063, - 45.489531 - ], - [ - -73.430965, - 45.491091 - ], - [ - -73.430914, - 45.491164 - ], - [ - -73.429449, - 45.493182 - ], - [ - -73.429402, - 45.493246 - ], - [ - -73.428054, - 45.495114 - ], - [ - -73.42799, - 45.495202 - ], - [ - -73.427911, - 45.49531 - ], - [ - -73.426472, - 45.497312 - ], - [ - -73.426401, - 45.49741 - ], - [ - -73.424982, - 45.499411 - ], - [ - -73.424908, - 45.499515 - ], - [ - -73.424528, - 45.500041 - ], - [ - -73.423903, - 45.500932 - ], - [ - -73.423572, - 45.501404 - ], - [ - -73.423518, - 45.501444 - ], - [ - -73.423423, - 45.501602 - ], - [ - -73.423367, - 45.501683 - ], - [ - -73.42255, - 45.502834 - ], - [ - -73.421882, - 45.503756 - ], - [ - -73.421853, - 45.503796 - ], - [ - -73.421847, - 45.503805 - ], - [ - -73.42173, - 45.503969 - ], - [ - -73.421648, - 45.504084 - ], - [ - -73.421234, - 45.503904 - ], - [ - -73.420806, - 45.503714 - ], - [ - -73.420535, - 45.503599 - ], - [ - -73.420142, - 45.503431 - ], - [ - -73.419673, - 45.503241 - ], - [ - -73.419484, - 45.503168 - ], - [ - -73.419278, - 45.503088 - ], - [ - -73.419167, - 45.503047 - ], - [ - -73.418847, - 45.502921 - ], - [ - -73.418173, - 45.502669 - ], - [ - -73.417806, - 45.502538 - ], - [ - -73.417361, - 45.50237 - ], - [ - -73.417293, - 45.502344 - ], - [ - -73.416751, - 45.502146 - ], - [ - -73.416178, - 45.501934 - ], - [ - -73.416049, - 45.502186 - ], - [ - -73.416044, - 45.502195 - ], - [ - -73.415883, - 45.50251 - ], - [ - -73.4148, - 45.504659 - ], - [ - -73.41477, - 45.504718 - ], - [ - -73.414677, - 45.504884 - ], - [ - -73.414599, - 45.50497 - ], - [ - -73.414518, - 45.50506 - ], - [ - -73.414456, - 45.505105 - ], - [ - -73.414386, - 45.505141 - ], - [ - -73.41431, - 45.50519 - ], - [ - -73.414101, - 45.505275 - ], - [ - -73.414002, - 45.505302 - ], - [ - -73.413859, - 45.505329 - ], - [ - -73.413728, - 45.505356 - ], - [ - -73.413579, - 45.505375 - ], - [ - -73.413549, - 45.505378 - ], - [ - -73.413318, - 45.50541 - ], - [ - -73.413013, - 45.505441 - ], - [ - -73.412864, - 45.50545 - ], - [ - -73.412747, - 45.50545 - ], - [ - -73.412645, - 45.505436 - ], - [ - -73.412507, - 45.505418 - ], - [ - -73.411664, - 45.505219 - ], - [ - -73.411569, - 45.505197 - ], - [ - -73.41077, - 45.504994 - ], - [ - -73.409958, - 45.504799 - ], - [ - -73.409774, - 45.504755 - ], - [ - -73.409315, - 45.504637 - ], - [ - -73.408932, - 45.504538 - ], - [ - -73.408367, - 45.504398 - ], - [ - -73.407919, - 45.504287 - ], - [ - -73.407766, - 45.504249 - ], - [ - -73.407475, - 45.504174 - ], - [ - -73.407261, - 45.504118 - ], - [ - -73.406855, - 45.504005 - ], - [ - -73.406677, - 45.504352 - ], - [ - -73.406515, - 45.50468 - ], - [ - -73.406364, - 45.504981 - ], - [ - -73.406224, - 45.505253 - ], - [ - -73.40619, - 45.505319 - ], - [ - -73.405984, - 45.50575 - ], - [ - -73.405871, - 45.505971 - ], - [ - -73.405719, - 45.506277 - ], - [ - -73.405549, - 45.506609 - ], - [ - -73.40532, - 45.507097 - ], - [ - -73.405319, - 45.507098 - ], - [ - -73.405268, - 45.507208 - ], - [ - -73.405194, - 45.507248 - ], - [ - -73.40508, - 45.507248 - ], - [ - -73.404942, - 45.507221 - ], - [ - -73.403477, - 45.506846 - ], - [ - -73.403459, - 45.506842 - ], - [ - -73.400809, - 45.506169 - ], - [ - -73.400668, - 45.506128 - ], - [ - -73.400593, - 45.506106 - ], - [ - -73.40043, - 45.506038 - ], - [ - -73.40031, - 45.50598 - ], - [ - -73.40025, - 45.505943 - ], - [ - -73.400152, - 45.505885 - ], - [ - -73.400052, - 45.505795 - ], - [ - -73.399949, - 45.505664 - ], - [ - -73.399886, - 45.505552 - ], - [ - -73.39982, - 45.505426 - ], - [ - -73.399787, - 45.505322 - ], - [ - -73.39976, - 45.505156 - ], - [ - -73.399735, - 45.504789 - ], - [ - -73.399729, - 45.504706 - ], - [ - -73.399657, - 45.504175 - ], - [ - -73.39956, - 45.503492 - ], - [ - -73.399542, - 45.50336 - ], - [ - -73.399508, - 45.503131 - ], - [ - -73.399441, - 45.502676 - ], - [ - -73.399417, - 45.50246 - ], - [ - -73.399355, - 45.501992 - ], - [ - -73.399341, - 45.501884 - ], - [ - -73.399253, - 45.50189 - ], - [ - -73.398942, - 45.50191 - ] - ] - }, - "id": 17, - "properties": { - "id": "b56dae92-e9db-4f51-a05e-0de1026427d5", - "data": { - "gtfs": { - "shape_id": "5_2_R" - }, - "segments": [ - { - "distanceMeters": 2839, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 95, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 41 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8941, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4600.903864980963, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.31, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 7.84, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.31 - }, - "mode": "bus", - "name": "Sect. M St-Hubert", - "color": "#A32638", - "nodes": [ - "42f94a5d-c370-4fd6-9c9f-6767ef259624", - "e0286f28-f802-47e9-8fd2-0338e2927a2f", - "46d1170e-039a-4a64-a065-b60146bf9006", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "68549053-a194-4fc4-9393-09f9a34040bb", - "40ff3e02-8b3f-498b-908e-b391cc70a163", - "b535e273-90c1-49b6-b38e-2087d5bbebed", - "46a4fc7f-c064-4d08-ac44-e9eeffd46d50", - "ee09cf9f-32a4-4f14-abc4-35cf4e9dacb6", - "8e8689c3-62f3-42eb-93e5-b882f067b52e", - "09a490f8-d473-4d53-8aa0-2df137afe453", - "4fac5725-fd12-47be-9db0-8dea1c53b6f5", - "1202144f-3657-40d2-ae2e-917153a50f04", - "6d53f355-0dfd-420a-a1cc-6510f1a36363", - "235a92b0-53e1-410c-b264-d57c7814303c", - "4a4fa494-b43c-4be6-b677-70874b8f73cc", - "46ea2114-c4d6-46e8-be5d-60d028340abb", - "5f67d1de-bfb7-46e1-9c6a-87d005dd64b6", - "9f0b95b0-8453-4218-9889-ef6146815766", - "72cda4fb-fbe8-47ba-b42e-f310ef91d335", - "bf493d01-4cc2-40cf-9fee-339de5acd0ce", - "35110be1-21ec-490a-b4c8-8b20aa6bef7f", - "aa49b5ca-26fd-4fe1-8e89-4237204a7250", - "3d4eebbc-a250-4177-81d6-19642e2b4176", - "5228afc6-7e91-431f-8045-f41c542a77ea", - "f1de9305-8e6b-46d3-8c98-a08e73b2857f", - "b20c17a3-277e-418e-90be-8f8d32918ba9", - "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", - "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", - "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0" - ], - "stops": [], - "line_id": "51246736-0d56-4a0b-a824-2c9f3fbcbb89", - "segments": [ - 0, - 57, - 60, - 63, - 68, - 73, - 77, - 84, - 86, - 88, - 91, - 93, - 96, - 103, - 109, - 112, - 118, - 122, - 125, - 137, - 145, - 148, - 153, - 161, - 167, - 173, - 180, - 188, - 191 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 17, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.398942, - 45.50191 - ], - [ - -73.396837, - 45.502044 - ], - [ - -73.39538, - 45.502132 - ], - [ - -73.395213, - 45.502142 - ], - [ - -73.395161, - 45.502053 - ], - [ - -73.395151, - 45.501975 - ], - [ - -73.395111, - 45.50166 - ], - [ - -73.395084, - 45.501431 - ], - [ - -73.395041, - 45.50117 - ], - [ - -73.395041, - 45.501053 - ], - [ - -73.395077, - 45.50094 - ], - [ - -73.395501, - 45.500068 - ], - [ - -73.395555, - 45.499955 - ], - [ - -73.395706, - 45.499618 - ], - [ - -73.395829, - 45.49938 - ], - [ - -73.395901, - 45.499299 - ], - [ - -73.396037, - 45.499128 - ], - [ - -73.396173, - 45.499011 - ], - [ - -73.39651, - 45.498694 - ], - [ - -73.396766, - 45.498454 - ], - [ - -73.396911, - 45.498319 - ], - [ - -73.397102, - 45.498121 - ], - [ - -73.397351, - 45.497878 - ], - [ - -73.397678, - 45.497573 - ], - [ - -73.397919, - 45.497334 - ], - [ - -73.397982, - 45.497278 - ], - [ - -73.398209, - 45.497074 - ], - [ - -73.398541, - 45.496804 - ], - [ - -73.398788, - 45.496579 - ], - [ - -73.399137, - 45.496287 - ], - [ - -73.399245, - 45.496194 - ], - [ - -73.399546, - 45.495932 - ], - [ - -73.399607, - 45.495824 - ], - [ - -73.399612, - 45.49582 - ], - [ - -73.399701, - 45.495748 - ], - [ - -73.399835, - 45.495558 - ], - [ - -73.399866, - 45.495514 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.401121, - 45.49596 - ], - [ - -73.401607, - 45.496183 - ], - [ - -73.402418, - 45.496555 - ], - [ - -73.402953, - 45.49679 - ], - [ - -73.403399, - 45.496987 - ], - [ - -73.403543, - 45.497051 - ], - [ - -73.403795, - 45.49716 - ], - [ - -73.404434, - 45.497426 - ], - [ - -73.404858, - 45.497588 - ], - [ - -73.405172, - 45.497723 - ], - [ - -73.405568, - 45.497876 - ], - [ - -73.406291, - 45.498153 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.406288, - 45.49843 - ], - [ - -73.406193, - 45.498579 - ], - [ - -73.406188, - 45.498589 - ], - [ - -73.406163, - 45.49864 - ], - [ - -73.405911, - 45.499145 - ], - [ - -73.405493, - 45.499995 - ], - [ - -73.405383, - 45.500198 - ], - [ - -73.405251, - 45.500369 - ], - [ - -73.405082, - 45.500567 - ], - [ - -73.405022, - 45.500624 - ], - [ - -73.404894, - 45.500746 - ], - [ - -73.404658, - 45.500926 - ], - [ - -73.404439, - 45.50107 - ], - [ - -73.404275, - 45.501164 - ], - [ - -73.404095, - 45.501254 - ], - [ - -73.403728, - 45.501411 - ], - [ - -73.403505, - 45.501483 - ], - [ - -73.40323, - 45.501558 - ], - [ - -73.403207, - 45.501564 - ], - [ - -73.402929, - 45.501627 - ], - [ - -73.402747, - 45.501658 - ], - [ - -73.402456, - 45.501689 - ], - [ - -73.401996, - 45.50172 - ], - [ - -73.401145, - 45.501774 - ], - [ - -73.401007, - 45.501782 - ], - [ - -73.399341, - 45.501884 - ], - [ - -73.399355, - 45.501992 - ], - [ - -73.399401, - 45.502338 - ], - [ - -73.399402, - 45.502346 - ], - [ - -73.399417, - 45.50246 - ], - [ - -73.399441, - 45.502676 - ], - [ - -73.399508, - 45.503131 - ], - [ - -73.399524, - 45.503241 - ], - [ - -73.399542, - 45.50336 - ], - [ - -73.399657, - 45.504175 - ], - [ - -73.399716, - 45.504609 - ], - [ - -73.399729, - 45.504706 - ], - [ - -73.39976, - 45.505156 - ], - [ - -73.399787, - 45.505322 - ], - [ - -73.39982, - 45.505426 - ], - [ - -73.399886, - 45.505552 - ], - [ - -73.399949, - 45.505664 - ], - [ - -73.400052, - 45.505795 - ], - [ - -73.400152, - 45.505885 - ], - [ - -73.40031, - 45.50598 - ], - [ - -73.40043, - 45.506038 - ], - [ - -73.400588, - 45.506104 - ], - [ - -73.400593, - 45.506106 - ], - [ - -73.400668, - 45.506128 - ], - [ - -73.400809, - 45.506169 - ], - [ - -73.403283, - 45.506797 - ], - [ - -73.403459, - 45.506842 - ], - [ - -73.404937, - 45.507219 - ], - [ - -73.404942, - 45.507221 - ], - [ - -73.40508, - 45.507248 - ], - [ - -73.405194, - 45.507248 - ], - [ - -73.405196, - 45.507247 - ], - [ - -73.405268, - 45.507208 - ], - [ - -73.405549, - 45.506609 - ], - [ - -73.405719, - 45.506277 - ], - [ - -73.405871, - 45.505971 - ], - [ - -73.405984, - 45.50575 - ], - [ - -73.406111, - 45.505484 - ], - [ - -73.40619, - 45.505319 - ], - [ - -73.406364, - 45.504981 - ], - [ - -73.406515, - 45.50468 - ], - [ - -73.406677, - 45.504352 - ], - [ - -73.406855, - 45.504005 - ], - [ - -73.407261, - 45.504118 - ], - [ - -73.407475, - 45.504174 - ], - [ - -73.40764, - 45.504216 - ], - [ - -73.407766, - 45.504249 - ], - [ - -73.408367, - 45.504398 - ], - [ - -73.408932, - 45.504538 - ], - [ - -73.409315, - 45.504637 - ], - [ - -73.40969, - 45.504733 - ], - [ - -73.409774, - 45.504755 - ], - [ - -73.41077, - 45.504994 - ], - [ - -73.411468, - 45.505171 - ], - [ - -73.411569, - 45.505197 - ], - [ - -73.412507, - 45.505418 - ], - [ - -73.412645, - 45.505436 - ], - [ - -73.412747, - 45.50545 - ], - [ - -73.412864, - 45.50545 - ], - [ - -73.413013, - 45.505441 - ], - [ - -73.413185, - 45.505423 - ], - [ - -73.413318, - 45.50541 - ], - [ - -73.413549, - 45.505378 - ], - [ - -73.413728, - 45.505356 - ], - [ - -73.413859, - 45.505329 - ], - [ - -73.414002, - 45.505302 - ], - [ - -73.414101, - 45.505275 - ], - [ - -73.41431, - 45.50519 - ], - [ - -73.414386, - 45.505141 - ], - [ - -73.414456, - 45.505105 - ], - [ - -73.414518, - 45.50506 - ], - [ - -73.414599, - 45.50497 - ], - [ - -73.414677, - 45.504884 - ], - [ - -73.414718, - 45.504812 - ], - [ - -73.41477, - 45.504718 - ], - [ - -73.415883, - 45.50251 - ], - [ - -73.416018, - 45.502247 - ], - [ - -73.41606, - 45.502164 - ], - [ - -73.416178, - 45.501934 - ], - [ - -73.416751, - 45.502146 - ], - [ - -73.417085, - 45.502268 - ], - [ - -73.417293, - 45.502344 - ], - [ - -73.417806, - 45.502538 - ], - [ - -73.418173, - 45.502669 - ], - [ - -73.418847, - 45.502921 - ], - [ - -73.418875, - 45.502932 - ], - [ - -73.419167, - 45.503047 - ], - [ - -73.419278, - 45.503088 - ], - [ - -73.419673, - 45.503241 - ], - [ - -73.420142, - 45.503431 - ], - [ - -73.420707, - 45.503672 - ], - [ - -73.420806, - 45.503714 - ], - [ - -73.421234, - 45.503904 - ], - [ - -73.421648, - 45.504084 - ], - [ - -73.421847, - 45.503805 - ], - [ - -73.421882, - 45.503756 - ], - [ - -73.421936, - 45.503681 - ], - [ - -73.42249, - 45.502918 - ], - [ - -73.42255, - 45.502834 - ], - [ - -73.423198, - 45.50192 - ], - [ - -73.423367, - 45.501683 - ], - [ - -73.423423, - 45.501602 - ], - [ - -73.423518, - 45.501444 - ], - [ - -73.423572, - 45.501404 - ], - [ - -73.424528, - 45.500041 - ], - [ - -73.42483, - 45.499623 - ], - [ - -73.424908, - 45.499515 - ], - [ - -73.426349, - 45.497483 - ], - [ - -73.426401, - 45.49741 - ], - [ - -73.427843, - 45.495405 - ], - [ - -73.427911, - 45.49531 - ], - [ - -73.42799, - 45.495202 - ], - [ - -73.429331, - 45.493345 - ], - [ - -73.429402, - 45.493246 - ], - [ - -73.430673, - 45.491496 - ], - [ - -73.430914, - 45.491164 - ], - [ - -73.431864, - 45.489814 - ], - [ - -73.432063, - 45.489531 - ], - [ - -73.43217, - 45.489383 - ], - [ - -73.43219, - 45.48936 - ], - [ - -73.432305, - 45.489239 - ], - [ - -73.432556, - 45.489041 - ], - [ - -73.432684, - 45.488933 - ], - [ - -73.432921, - 45.48878 - ], - [ - -73.433484, - 45.488439 - ], - [ - -73.435071, - 45.487516 - ], - [ - -73.435153, - 45.487468 - ], - [ - -73.437094, - 45.486331 - ], - [ - -73.437465, - 45.486115 - ], - [ - -73.43775, - 45.485944 - ], - [ - -73.437849, - 45.485882 - ], - [ - -73.438008, - 45.485782 - ], - [ - -73.439264, - 45.485036 - ], - [ - -73.439959, - 45.484631 - ], - [ - -73.440581, - 45.484293 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.443018, - 45.482865 - ], - [ - -73.443655, - 45.482474 - ], - [ - -73.443745, - 45.48242 - ], - [ - -73.445624, - 45.481309 - ], - [ - -73.446443, - 45.480821 - ], - [ - -73.446581, - 45.480738 - ], - [ - -73.448482, - 45.479604 - ], - [ - -73.448771, - 45.479431 - ], - [ - -73.449044, - 45.479268 - ], - [ - -73.449242, - 45.479145 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.44954, - 45.478958 - ], - [ - -73.449587, - 45.478931 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.44904, - 45.47838 - ], - [ - -73.449382, - 45.478147 - ], - [ - -73.451115, - 45.476961 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.453434, - 45.475373 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.455854, - 45.473715 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.458229, - 45.472091 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.460514, - 45.47053 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.46261, - 45.469091 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.465222, - 45.468287 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469043, - 45.46624 - ] - ] - }, - "id": 18, - "properties": { - "id": "2ccefa98-8818-4aa2-9fe6-736d5c405a6f", - "data": { - "gtfs": { - "shape_id": "5_2_A" - }, - "segments": [ - { - "distanceMeters": 279, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 195, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 548, - "travelTimeSeconds": 120 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11248, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6768.626097916012, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.25, - "travelTimeWithoutDwellTimesSeconds": 1800, - "operatingTimeWithLayoverTimeSeconds": 1980, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1800, - "operatingSpeedWithLayoverMetersPerSecond": 5.68, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.25 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0", - "5c25bfb5-c167-4f71-8798-e94a8ad7560d", - "e4d9e692-bf6d-4c61-9845-9e50427c4cad", - "2550d07e-5034-443e-9840-7e9abcf5a62b", - "2e7cf58e-8d32-4b71-acee-694db180235f", - "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", - "33ed66fe-2193-4e2a-b51d-d25140b9ad80", - "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", - "aab8672e-86c9-4a43-9806-f5135dc02b4e", - "7414010b-fe1f-4d77-8cdd-701cc437e73a", - "dc630e4d-102e-48b9-8b4a-920cafc01d4a", - "00ed067b-7627-492d-ac0f-5d03bd3b185c", - "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", - "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", - "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", - "b20c17a3-277e-418e-90be-8f8d32918ba9", - "f1de9305-8e6b-46d3-8c98-a08e73b2857f", - "5228afc6-7e91-431f-8045-f41c542a77ea", - "3d4eebbc-a250-4177-81d6-19642e2b4176", - "aa49b5ca-26fd-4fe1-8e89-4237204a7250", - "35110be1-21ec-490a-b4c8-8b20aa6bef7f", - "bf493d01-4cc2-40cf-9fee-339de5acd0ce", - "72cda4fb-fbe8-47ba-b42e-f310ef91d335", - "9f0b95b0-8453-4218-9889-ef6146815766", - "5f67d1de-bfb7-46e1-9c6a-87d005dd64b6", - "46ea2114-c4d6-46e8-be5d-60d028340abb", - "e460be07-05e4-49f8-a725-e63809c74139", - "235a92b0-53e1-410c-b264-d57c7814303c", - "588e4aef-6d38-4fb0-95ae-8ac520e753f3", - "e8e5c7df-2edf-4749-98c2-97962c7eff9c", - "4fac5725-fd12-47be-9db0-8dea1c53b6f5", - "09a490f8-d473-4d53-8aa0-2df137afe453", - "d68685b2-7e92-4934-989f-8ccfae13451f", - "ee09cf9f-32a4-4f14-abc4-35cf4e9dacb6", - "46a4fc7f-c064-4d08-ac44-e9eeffd46d50", - "3b027d8b-1b72-4250-a270-dd0ef2d41870", - "40ff3e02-8b3f-498b-908e-b391cc70a163", - "68549053-a194-4fc4-9393-09f9a34040bb", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "46d1170e-039a-4a64-a065-b60146bf9006", - "e0286f28-f802-47e9-8fd2-0338e2927a2f", - "42f94a5d-c370-4fd6-9c9f-6767ef259624", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "907f8610-452b-440d-849b-c803b07dedc1", - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "51246736-0d56-4a0b-a824-2c9f3fbcbb89", - "segments": [ - 0, - 2, - 11, - 18, - 25, - 35, - 39, - 42, - 53, - 60, - 68, - 74, - 78, - 83, - 86, - 97, - 101, - 107, - 113, - 121, - 126, - 129, - 136, - 149, - 152, - 156, - 161, - 166, - 173, - 175, - 181, - 183, - 185, - 188, - 190, - 192, - 201, - 206, - 210, - 214, - 217, - 219, - 228, - 229, - 231, - 233, - 235, - 237, - 240, - 252 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 18, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469043, - 45.46624 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467815, - 45.466067 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465582, - 45.46821 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.463779, - 45.468251 - ], - [ - -73.463257, - 45.46862 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463016, - 45.468741 - ], - [ - -73.462763, - 45.468943 - ], - [ - -73.462689, - 45.46902 - ], - [ - -73.462689, - 45.46902 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.460799, - 45.470335 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.45844, - 45.471946 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.456055, - 45.473577 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.453681, - 45.475203 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.451334, - 45.47681 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.449381, - 45.478147 - ], - [ - -73.449271, - 45.478222 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448868, - 45.478494 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.449044, - 45.479268 - ], - [ - -73.448771, - 45.479431 - ], - [ - -73.448758, - 45.479439 - ], - [ - -73.448752, - 45.479442 - ], - [ - -73.446635, - 45.480706 - ], - [ - -73.446581, - 45.480738 - ], - [ - -73.445624, - 45.481309 - ], - [ - -73.443807, - 45.482383 - ], - [ - -73.443745, - 45.48242 - ], - [ - -73.443018, - 45.482865 - ], - [ - -73.440996, - 45.484059 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.439959, - 45.484631 - ], - [ - -73.439264, - 45.485036 - ], - [ - -73.438115, - 45.485719 - ], - [ - -73.438008, - 45.485782 - ], - [ - -73.43775, - 45.485944 - ], - [ - -73.437465, - 45.486115 - ], - [ - -73.437094, - 45.486331 - ], - [ - -73.435273, - 45.487398 - ], - [ - -73.435153, - 45.487468 - ], - [ - -73.433484, - 45.488439 - ], - [ - -73.432921, - 45.48878 - ], - [ - -73.432728, - 45.488905 - ], - [ - -73.432684, - 45.488933 - ], - [ - -73.432556, - 45.489041 - ], - [ - -73.432305, - 45.489239 - ], - [ - -73.43219, - 45.48936 - ], - [ - -73.43217, - 45.489383 - ], - [ - -73.432063, - 45.489531 - ], - [ - -73.430965, - 45.491091 - ], - [ - -73.430914, - 45.491164 - ], - [ - -73.429449, - 45.493182 - ], - [ - -73.429402, - 45.493246 - ], - [ - -73.428054, - 45.495114 - ], - [ - -73.42799, - 45.495202 - ], - [ - -73.427911, - 45.49531 - ], - [ - -73.426472, - 45.497312 - ], - [ - -73.426401, - 45.49741 - ], - [ - -73.424982, - 45.499411 - ], - [ - -73.424908, - 45.499515 - ], - [ - -73.424528, - 45.500041 - ], - [ - -73.423903, - 45.500932 - ], - [ - -73.423572, - 45.501404 - ], - [ - -73.423518, - 45.501444 - ], - [ - -73.423423, - 45.501602 - ], - [ - -73.423367, - 45.501683 - ], - [ - -73.42255, - 45.502834 - ], - [ - -73.421882, - 45.503756 - ], - [ - -73.421853, - 45.503796 - ], - [ - -73.421847, - 45.503805 - ], - [ - -73.42173, - 45.503969 - ], - [ - -73.421648, - 45.504084 - ], - [ - -73.421234, - 45.503904 - ], - [ - -73.420806, - 45.503714 - ], - [ - -73.420535, - 45.503599 - ], - [ - -73.420142, - 45.503431 - ], - [ - -73.419673, - 45.503241 - ], - [ - -73.419484, - 45.503168 - ], - [ - -73.419278, - 45.503088 - ], - [ - -73.419167, - 45.503047 - ], - [ - -73.418847, - 45.502921 - ], - [ - -73.418173, - 45.502669 - ], - [ - -73.417806, - 45.502538 - ], - [ - -73.417361, - 45.50237 - ], - [ - -73.417293, - 45.502344 - ], - [ - -73.416751, - 45.502146 - ], - [ - -73.416178, - 45.501934 - ], - [ - -73.416049, - 45.502186 - ], - [ - -73.416044, - 45.502195 - ], - [ - -73.415883, - 45.50251 - ], - [ - -73.4148, - 45.504659 - ], - [ - -73.41477, - 45.504718 - ], - [ - -73.414677, - 45.504884 - ], - [ - -73.414599, - 45.50497 - ], - [ - -73.414518, - 45.50506 - ], - [ - -73.414456, - 45.505105 - ], - [ - -73.414386, - 45.505141 - ], - [ - -73.41431, - 45.50519 - ], - [ - -73.414101, - 45.505275 - ], - [ - -73.414002, - 45.505302 - ], - [ - -73.413859, - 45.505329 - ], - [ - -73.413728, - 45.505356 - ], - [ - -73.413579, - 45.505375 - ], - [ - -73.413549, - 45.505378 - ], - [ - -73.413318, - 45.50541 - ], - [ - -73.413013, - 45.505441 - ], - [ - -73.412864, - 45.50545 - ], - [ - -73.412747, - 45.50545 - ], - [ - -73.412645, - 45.505436 - ], - [ - -73.412507, - 45.505418 - ], - [ - -73.411664, - 45.505219 - ], - [ - -73.411569, - 45.505197 - ], - [ - -73.41077, - 45.504994 - ], - [ - -73.409958, - 45.504799 - ], - [ - -73.409774, - 45.504755 - ], - [ - -73.409315, - 45.504637 - ], - [ - -73.408932, - 45.504538 - ], - [ - -73.408367, - 45.504398 - ], - [ - -73.407919, - 45.504287 - ], - [ - -73.407766, - 45.504249 - ], - [ - -73.407475, - 45.504174 - ], - [ - -73.407261, - 45.504118 - ], - [ - -73.406855, - 45.504005 - ], - [ - -73.406677, - 45.504352 - ], - [ - -73.406515, - 45.50468 - ], - [ - -73.406364, - 45.504981 - ], - [ - -73.406224, - 45.505253 - ], - [ - -73.40619, - 45.505319 - ], - [ - -73.405984, - 45.50575 - ], - [ - -73.405871, - 45.505971 - ], - [ - -73.405719, - 45.506277 - ], - [ - -73.405549, - 45.506609 - ], - [ - -73.40532, - 45.507097 - ], - [ - -73.405319, - 45.507098 - ], - [ - -73.405268, - 45.507208 - ], - [ - -73.405194, - 45.507248 - ], - [ - -73.40508, - 45.507248 - ], - [ - -73.404942, - 45.507221 - ], - [ - -73.403477, - 45.506846 - ], - [ - -73.403459, - 45.506842 - ], - [ - -73.400809, - 45.506169 - ], - [ - -73.400668, - 45.506128 - ], - [ - -73.400593, - 45.506106 - ], - [ - -73.40043, - 45.506038 - ], - [ - -73.40031, - 45.50598 - ], - [ - -73.40025, - 45.505943 - ], - [ - -73.400152, - 45.505885 - ], - [ - -73.400052, - 45.505795 - ], - [ - -73.399949, - 45.505664 - ], - [ - -73.399886, - 45.505552 - ], - [ - -73.39982, - 45.505426 - ], - [ - -73.399787, - 45.505322 - ], - [ - -73.39976, - 45.505156 - ], - [ - -73.399735, - 45.504789 - ], - [ - -73.399729, - 45.504706 - ], - [ - -73.399657, - 45.504175 - ], - [ - -73.39956, - 45.503492 - ], - [ - -73.399542, - 45.50336 - ], - [ - -73.399508, - 45.503131 - ], - [ - -73.399441, - 45.502676 - ], - [ - -73.399417, - 45.50246 - ], - [ - -73.399355, - 45.501992 - ], - [ - -73.399341, - 45.501884 - ], - [ - -73.399253, - 45.50189 - ], - [ - -73.398942, - 45.50191 - ] - ] - }, - "id": 19, - "properties": { - "id": "320b05a5-6ff2-48d6-90bd-8ec8521d2caa", - "data": { - "gtfs": { - "shape_id": "5_2_R" - }, - "segments": [ - { - "distanceMeters": 111, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 583, - "travelTimeSeconds": 94 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 95, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 41 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8941, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6768.626097916012, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.21, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 5.52, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.21 - }, - "mode": "bus", - "name": "Sect. M St-Hubert", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "7b9bfdae-7d0d-4463-a7d7-1a62138b83b5", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "907f8610-452b-440d-849b-c803b07dedc1", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "42f94a5d-c370-4fd6-9c9f-6767ef259624", - "e0286f28-f802-47e9-8fd2-0338e2927a2f", - "46d1170e-039a-4a64-a065-b60146bf9006", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "68549053-a194-4fc4-9393-09f9a34040bb", - "40ff3e02-8b3f-498b-908e-b391cc70a163", - "b535e273-90c1-49b6-b38e-2087d5bbebed", - "46a4fc7f-c064-4d08-ac44-e9eeffd46d50", - "ee09cf9f-32a4-4f14-abc4-35cf4e9dacb6", - "8e8689c3-62f3-42eb-93e5-b882f067b52e", - "09a490f8-d473-4d53-8aa0-2df137afe453", - "4fac5725-fd12-47be-9db0-8dea1c53b6f5", - "1202144f-3657-40d2-ae2e-917153a50f04", - "6d53f355-0dfd-420a-a1cc-6510f1a36363", - "235a92b0-53e1-410c-b264-d57c7814303c", - "4a4fa494-b43c-4be6-b677-70874b8f73cc", - "46ea2114-c4d6-46e8-be5d-60d028340abb", - "5f67d1de-bfb7-46e1-9c6a-87d005dd64b6", - "9f0b95b0-8453-4218-9889-ef6146815766", - "72cda4fb-fbe8-47ba-b42e-f310ef91d335", - "bf493d01-4cc2-40cf-9fee-339de5acd0ce", - "35110be1-21ec-490a-b4c8-8b20aa6bef7f", - "aa49b5ca-26fd-4fe1-8e89-4237204a7250", - "3d4eebbc-a250-4177-81d6-19642e2b4176", - "5228afc6-7e91-431f-8045-f41c542a77ea", - "f1de9305-8e6b-46d3-8c98-a08e73b2857f", - "b20c17a3-277e-418e-90be-8f8d32918ba9", - "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", - "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", - "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0" - ], - "stops": [], - "line_id": "51246736-0d56-4a0b-a824-2c9f3fbcbb89", - "segments": [ - 0, - 2, - 28, - 44, - 47, - 49, - 51, - 53, - 55, - 58, - 66, - 67, - 70, - 73, - 78, - 83, - 87, - 94, - 96, - 98, - 101, - 103, - 106, - 113, - 119, - 122, - 128, - 132, - 135, - 147, - 155, - 158, - 163, - 171, - 177, - 183, - 190, - 198, - 201 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 19, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.566611, - 45.498345 - ], - [ - -73.566738, - 45.498195 - ], - [ - -73.566628, - 45.49808 - ], - [ - -73.566306, - 45.497931 - ], - [ - -73.566253, - 45.497841 - ], - [ - -73.56638, - 45.497699 - ], - [ - -73.566016, - 45.497523 - ], - [ - -73.564691, - 45.496892 - ], - [ - -73.564524, - 45.49706 - ], - [ - -73.564308, - 45.497279 - ], - [ - -73.564223, - 45.497363 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.562654, - 45.499004 - ], - [ - -73.562608, - 45.49897 - ], - [ - -73.562195, - 45.498662 - ], - [ - -73.561924, - 45.498365 - ], - [ - -73.561721, - 45.498171 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.561238, - 45.497876 - ], - [ - -73.561033, - 45.497765 - ], - [ - -73.560139, - 45.497347 - ], - [ - -73.559235, - 45.49696 - ], - [ - -73.55917, - 45.496938 - ], - [ - -73.558356, - 45.496631 - ], - [ - -73.557604, - 45.496364 - ], - [ - -73.556782, - 45.49606 - ], - [ - -73.555745, - 45.495673 - ], - [ - -73.555351, - 45.495512 - ], - [ - -73.555133, - 45.495401 - ], - [ - -73.554916, - 45.495262 - ], - [ - -73.554768, - 45.495125 - ], - [ - -73.55465, - 45.494994 - ], - [ - -73.553944, - 45.493258 - ], - [ - -73.553818, - 45.492971 - ], - [ - -73.553465, - 45.492338 - ], - [ - -73.552977, - 45.491759 - ], - [ - -73.552502, - 45.491344 - ], - [ - -73.551956, - 45.490962 - ], - [ - -73.551651, - 45.490791 - ], - [ - -73.551074, - 45.490513 - ], - [ - -73.550682, - 45.490367 - ], - [ - -73.550312, - 45.490228 - ], - [ - -73.54956, - 45.490034 - ], - [ - -73.548355, - 45.489798 - ], - [ - -73.542648, - 45.488704 - ], - [ - -73.541878, - 45.488554 - ], - [ - -73.541083, - 45.488397 - ], - [ - -73.540636, - 45.488282 - ], - [ - -73.540145, - 45.488119 - ], - [ - -73.539582, - 45.48786 - ], - [ - -73.539239, - 45.487663 - ], - [ - -73.538946, - 45.487462 - ], - [ - -73.538619, - 45.487192 - ], - [ - -73.538304, - 45.486863 - ], - [ - -73.538089, - 45.486564 - ], - [ - -73.537862, - 45.486139 - ], - [ - -73.53782, - 45.486024 - ], - [ - -73.537796, - 45.485958 - ], - [ - -73.537731, - 45.485785 - ], - [ - -73.53767, - 45.485461 - ], - [ - -73.537646, - 45.485264 - ], - [ - -73.537653, - 45.484914 - ], - [ - -73.537707, - 45.484604 - ], - [ - -73.537881, - 45.484168 - ], - [ - -73.537968, - 45.483893 - ], - [ - -73.538058, - 45.483623 - ], - [ - -73.539557, - 45.479354 - ], - [ - -73.53982, - 45.478652 - ], - [ - -73.540179, - 45.47782 - ], - [ - -73.540481, - 45.477177 - ], - [ - -73.540578, - 45.477027 - ], - [ - -73.540928, - 45.476409 - ], - [ - -73.5413, - 45.475732 - ], - [ - -73.541747, - 45.474937 - ], - [ - -73.542136, - 45.474264 - ], - [ - -73.542539, - 45.47363 - ], - [ - -73.543159, - 45.472786 - ], - [ - -73.543162, - 45.472781 - ], - [ - -73.5432, - 45.472729 - ], - [ - -73.543381, - 45.472482 - ], - [ - -73.543908, - 45.471834 - ], - [ - -73.544604, - 45.471016 - ], - [ - -73.54479, - 45.470824 - ], - [ - -73.544929, - 45.470679 - ], - [ - -73.54509, - 45.470477 - ], - [ - -73.545159, - 45.470391 - ], - [ - -73.545162, - 45.470289 - ], - [ - -73.54518, - 45.470102 - ], - [ - -73.54513, - 45.469912 - ], - [ - -73.545032, - 45.469762 - ], - [ - -73.544829, - 45.469589 - ], - [ - -73.544396, - 45.469456 - ], - [ - -73.544223, - 45.469408 - ], - [ - -73.544, - 45.469414 - ], - [ - -73.54385, - 45.469436 - ], - [ - -73.543665, - 45.469485 - ], - [ - -73.543125, - 45.469658 - ], - [ - -73.542795, - 45.46978 - ], - [ - -73.542335, - 45.469915 - ], - [ - -73.542042, - 45.469974 - ], - [ - -73.541634, - 45.469988 - ], - [ - -73.538583, - 45.470121 - ], - [ - -73.536645, - 45.47012 - ], - [ - -73.534843, - 45.470106 - ], - [ - -73.531663, - 45.470044 - ], - [ - -73.528901, - 45.469979 - ], - [ - -73.525636, - 45.469864 - ], - [ - -73.520215, - 45.469565 - ], - [ - -73.516228, - 45.469261 - ], - [ - -73.50737, - 45.468395 - ], - [ - -73.501604, - 45.467786 - ], - [ - -73.499262, - 45.467514 - ], - [ - -73.493921, - 45.466881 - ], - [ - -73.491932, - 45.466645 - ], - [ - -73.489852, - 45.466348 - ], - [ - -73.489119, - 45.46624 - ], - [ - -73.489027, - 45.466226 - ], - [ - -73.486848, - 45.465931 - ], - [ - -73.485714, - 45.465782 - ], - [ - -73.482904, - 45.465439 - ], - [ - -73.482123, - 45.46537 - ], - [ - -73.479736, - 45.465191 - ], - [ - -73.47968, - 45.465187 - ], - [ - -73.478363, - 45.465119 - ], - [ - -73.477796, - 45.465089 - ], - [ - -73.475753, - 45.464994 - ], - [ - -73.474695, - 45.464942 - ], - [ - -73.474262, - 45.464921 - ], - [ - -73.474113, - 45.464916 - ], - [ - -73.473291, - 45.464882 - ], - [ - -73.472501, - 45.46485 - ], - [ - -73.471447, - 45.46476 - ], - [ - -73.469875, - 45.464616 - ], - [ - -73.469333, - 45.464554 - ], - [ - -73.46902, - 45.464515 - ], - [ - -73.468704, - 45.464452 - ], - [ - -73.468392, - 45.464367 - ], - [ - -73.468066, - 45.46424 - ], - [ - -73.467826, - 45.46409 - ], - [ - -73.467593, - 45.463944 - ], - [ - -73.467415, - 45.463833 - ], - [ - -73.467133, - 45.463667 - ], - [ - -73.466953, - 45.463591 - ], - [ - -73.466529, - 45.463529 - ], - [ - -73.466232, - 45.463594 - ], - [ - -73.466092, - 45.463623 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.468806, - 45.466381 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469045, - 45.46621 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467773, - 45.466066 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465531, - 45.468205 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.463779, - 45.468251 - ], - [ - -73.463257, - 45.46862 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463016, - 45.468741 - ], - [ - -73.462763, - 45.468943 - ], - [ - -73.462689, - 45.46902 - ], - [ - -73.462662, - 45.469049 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.460765, - 45.470359 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.458406, - 45.471969 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.456032, - 45.473593 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.45365, - 45.475225 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.451304, - 45.476831 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.449381, - 45.478147 - ], - [ - -73.449251, - 45.478236 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448868, - 45.478494 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.449044, - 45.479268 - ], - [ - -73.448771, - 45.479431 - ], - [ - -73.448758, - 45.479439 - ], - [ - -73.448732, - 45.479455 - ], - [ - -73.446606, - 45.480724 - ], - [ - -73.446581, - 45.480738 - ], - [ - -73.445624, - 45.481309 - ], - [ - -73.443779, - 45.482399 - ], - [ - -73.443745, - 45.48242 - ], - [ - -73.443018, - 45.482865 - ], - [ - -73.440969, - 45.484075 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.439959, - 45.484631 - ], - [ - -73.439264, - 45.485036 - ], - [ - -73.43809, - 45.485734 - ], - [ - -73.438008, - 45.485782 - ], - [ - -73.43775, - 45.485944 - ], - [ - -73.437465, - 45.486115 - ], - [ - -73.437094, - 45.486331 - ], - [ - -73.435259, - 45.487406 - ], - [ - -73.435153, - 45.487468 - ], - [ - -73.433484, - 45.488439 - ], - [ - -73.432921, - 45.48878 - ], - [ - -73.432716, - 45.488913 - ], - [ - -73.432684, - 45.488933 - ], - [ - -73.432556, - 45.489041 - ], - [ - -73.432305, - 45.489239 - ], - [ - -73.43219, - 45.48936 - ], - [ - -73.43217, - 45.489383 - ], - [ - -73.432063, - 45.489531 - ], - [ - -73.430958, - 45.4911 - ], - [ - -73.430914, - 45.491164 - ], - [ - -73.429437, - 45.493198 - ], - [ - -73.429402, - 45.493246 - ], - [ - -73.428043, - 45.495129 - ], - [ - -73.42799, - 45.495202 - ], - [ - -73.427911, - 45.49531 - ], - [ - -73.426468, - 45.497318 - ], - [ - -73.426401, - 45.49741 - ], - [ - -73.424972, - 45.499424 - ], - [ - -73.424908, - 45.499515 - ], - [ - -73.424528, - 45.500041 - ], - [ - -73.423895, - 45.500944 - ], - [ - -73.423572, - 45.501404 - ], - [ - -73.423518, - 45.501444 - ], - [ - -73.423423, - 45.501602 - ], - [ - -73.423367, - 45.501683 - ], - [ - -73.42255, - 45.502834 - ], - [ - -73.421882, - 45.503756 - ], - [ - -73.421847, - 45.503805 - ], - [ - -73.421845, - 45.503807 - ], - [ - -73.42173, - 45.503969 - ], - [ - -73.421648, - 45.504084 - ], - [ - -73.421234, - 45.503904 - ], - [ - -73.420806, - 45.503714 - ], - [ - -73.420532, - 45.503598 - ], - [ - -73.420142, - 45.503431 - ], - [ - -73.419673, - 45.503241 - ], - [ - -73.419481, - 45.503167 - ], - [ - -73.419278, - 45.503088 - ], - [ - -73.419167, - 45.503047 - ], - [ - -73.418847, - 45.502921 - ], - [ - -73.418173, - 45.502669 - ], - [ - -73.417806, - 45.502538 - ], - [ - -73.417347, - 45.502365 - ], - [ - -73.417293, - 45.502344 - ], - [ - -73.416751, - 45.502146 - ], - [ - -73.416178, - 45.501934 - ], - [ - -73.416044, - 45.502195 - ], - [ - -73.416044, - 45.502195 - ], - [ - -73.415883, - 45.50251 - ], - [ - -73.4148, - 45.504659 - ], - [ - -73.41477, - 45.504718 - ], - [ - -73.414677, - 45.504884 - ], - [ - -73.414599, - 45.50497 - ], - [ - -73.414518, - 45.50506 - ], - [ - -73.414456, - 45.505105 - ], - [ - -73.414386, - 45.505141 - ], - [ - -73.41431, - 45.50519 - ], - [ - -73.414101, - 45.505275 - ], - [ - -73.414002, - 45.505302 - ], - [ - -73.413859, - 45.505329 - ], - [ - -73.413728, - 45.505356 - ], - [ - -73.413567, - 45.505376 - ], - [ - -73.413549, - 45.505378 - ], - [ - -73.413318, - 45.50541 - ], - [ - -73.413013, - 45.505441 - ], - [ - -73.412864, - 45.50545 - ], - [ - -73.412747, - 45.50545 - ], - [ - -73.412645, - 45.505436 - ], - [ - -73.412507, - 45.505418 - ], - [ - -73.411654, - 45.505217 - ], - [ - -73.411569, - 45.505197 - ], - [ - -73.41077, - 45.504994 - ], - [ - -73.409949, - 45.504797 - ], - [ - -73.409774, - 45.504755 - ], - [ - -73.409315, - 45.504637 - ], - [ - -73.408932, - 45.504538 - ], - [ - -73.408367, - 45.504398 - ], - [ - -73.407911, - 45.504285 - ], - [ - -73.407766, - 45.504249 - ], - [ - -73.407475, - 45.504174 - ], - [ - -73.407261, - 45.504118 - ], - [ - -73.406855, - 45.504005 - ], - [ - -73.406677, - 45.504352 - ], - [ - -73.406515, - 45.50468 - ], - [ - -73.406364, - 45.504981 - ], - [ - -73.406226, - 45.505249 - ], - [ - -73.40619, - 45.505319 - ], - [ - -73.405984, - 45.50575 - ], - [ - -73.405871, - 45.505971 - ], - [ - -73.405719, - 45.506277 - ], - [ - -73.405549, - 45.506609 - ], - [ - -73.405319, - 45.507098 - ], - [ - -73.405318, - 45.507101 - ], - [ - -73.405268, - 45.507208 - ], - [ - -73.405194, - 45.507248 - ], - [ - -73.40508, - 45.507248 - ], - [ - -73.404942, - 45.507221 - ], - [ - -73.403473, - 45.506845 - ], - [ - -73.403459, - 45.506842 - ], - [ - -73.400809, - 45.506169 - ], - [ - -73.400668, - 45.506128 - ], - [ - -73.400593, - 45.506106 - ], - [ - -73.40043, - 45.506038 - ], - [ - -73.40031, - 45.50598 - ], - [ - -73.400247, - 45.505942 - ], - [ - -73.400152, - 45.505885 - ], - [ - -73.400052, - 45.505795 - ], - [ - -73.399949, - 45.505664 - ], - [ - -73.399886, - 45.505552 - ], - [ - -73.39982, - 45.505426 - ], - [ - -73.399787, - 45.505322 - ], - [ - -73.39976, - 45.505156 - ], - [ - -73.399735, - 45.504788 - ], - [ - -73.399729, - 45.504706 - ], - [ - -73.399657, - 45.504175 - ], - [ - -73.399562, - 45.5035 - ], - [ - -73.399542, - 45.50336 - ], - [ - -73.399508, - 45.503131 - ], - [ - -73.399441, - 45.502676 - ], - [ - -73.399417, - 45.50246 - ], - [ - -73.399355, - 45.501992 - ], - [ - -73.399341, - 45.501884 - ], - [ - -73.399253, - 45.50189 - ], - [ - -73.398942, - 45.50191 - ] - ] - }, - "id": 20, - "properties": { - "id": "f92b21df-f550-408a-8fff-f6532a948339", - "data": { - "gtfs": { - "shape_id": "5_1_R" - }, - "segments": [ - { - "distanceMeters": 11873, - "travelTimeSeconds": 1140 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 584, - "travelTimeSeconds": 121 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 95, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 55 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 306, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 20810, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 13093.326569994628, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.8, - "travelTimeWithoutDwellTimesSeconds": 3060, - "operatingTimeWithLayoverTimeSeconds": 3366, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3060, - "operatingSpeedWithLayoverMetersPerSecond": 6.18, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.8 - }, - "mode": "bus", - "name": "Sect. M St-Hubert", - "color": "#A32638", - "nodes": [ - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "7b9bfdae-7d0d-4463-a7d7-1a62138b83b5", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "907f8610-452b-440d-849b-c803b07dedc1", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "42f94a5d-c370-4fd6-9c9f-6767ef259624", - "e0286f28-f802-47e9-8fd2-0338e2927a2f", - "46d1170e-039a-4a64-a065-b60146bf9006", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "68549053-a194-4fc4-9393-09f9a34040bb", - "40ff3e02-8b3f-498b-908e-b391cc70a163", - "b535e273-90c1-49b6-b38e-2087d5bbebed", - "46a4fc7f-c064-4d08-ac44-e9eeffd46d50", - "ee09cf9f-32a4-4f14-abc4-35cf4e9dacb6", - "8e8689c3-62f3-42eb-93e5-b882f067b52e", - "09a490f8-d473-4d53-8aa0-2df137afe453", - "4fac5725-fd12-47be-9db0-8dea1c53b6f5", - "1202144f-3657-40d2-ae2e-917153a50f04", - "6d53f355-0dfd-420a-a1cc-6510f1a36363", - "235a92b0-53e1-410c-b264-d57c7814303c", - "4a4fa494-b43c-4be6-b677-70874b8f73cc", - "46ea2114-c4d6-46e8-be5d-60d028340abb", - "5f67d1de-bfb7-46e1-9c6a-87d005dd64b6", - "9f0b95b0-8453-4218-9889-ef6146815766", - "72cda4fb-fbe8-47ba-b42e-f310ef91d335", - "bf493d01-4cc2-40cf-9fee-339de5acd0ce", - "35110be1-21ec-490a-b4c8-8b20aa6bef7f", - "aa49b5ca-26fd-4fe1-8e89-4237204a7250", - "3d4eebbc-a250-4177-81d6-19642e2b4176", - "5228afc6-7e91-431f-8045-f41c542a77ea", - "f1de9305-8e6b-46d3-8c98-a08e73b2857f", - "b20c17a3-277e-418e-90be-8f8d32918ba9", - "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", - "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", - "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0" - ], - "stops": [], - "line_id": "51246736-0d56-4a0b-a824-2c9f3fbcbb89", - "segments": [ - 0, - 173, - 175, - 201, - 217, - 220, - 222, - 224, - 226, - 228, - 231, - 239, - 240, - 243, - 246, - 251, - 256, - 260, - 267, - 269, - 271, - 274, - 276, - 279, - 287, - 292, - 295, - 301, - 305, - 308, - 320, - 328, - 331, - 336, - 344, - 351, - 356, - 363, - 371, - 374 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 20, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.398942, - 45.50191 - ], - [ - -73.396837, - 45.502044 - ], - [ - -73.395213, - 45.502142 - ], - [ - -73.395161, - 45.502053 - ], - [ - -73.395151, - 45.501975 - ], - [ - -73.395111, - 45.50166 - ], - [ - -73.395084, - 45.501431 - ], - [ - -73.395041, - 45.50117 - ], - [ - -73.395041, - 45.501053 - ], - [ - -73.395077, - 45.50094 - ], - [ - -73.395555, - 45.499955 - ], - [ - -73.395706, - 45.499618 - ], - [ - -73.395829, - 45.49938 - ], - [ - -73.395901, - 45.499299 - ], - [ - -73.396037, - 45.499128 - ], - [ - -73.396173, - 45.499011 - ], - [ - -73.396766, - 45.498454 - ], - [ - -73.396911, - 45.498319 - ], - [ - -73.397102, - 45.498121 - ], - [ - -73.397351, - 45.497878 - ], - [ - -73.397678, - 45.497573 - ], - [ - -73.397919, - 45.497334 - ], - [ - -73.398209, - 45.497074 - ], - [ - -73.398541, - 45.496804 - ], - [ - -73.398788, - 45.496579 - ], - [ - -73.399137, - 45.496287 - ], - [ - -73.399245, - 45.496194 - ], - [ - -73.399546, - 45.495932 - ], - [ - -73.399607, - 45.495824 - ], - [ - -73.399612, - 45.49582 - ], - [ - -73.399701, - 45.495748 - ], - [ - -73.399866, - 45.495514 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.400642, - 45.495738 - ], - [ - -73.401121, - 45.49596 - ], - [ - -73.402418, - 45.496555 - ], - [ - -73.402953, - 45.49679 - ], - [ - -73.403543, - 45.497051 - ], - [ - -73.403795, - 45.49716 - ], - [ - -73.404434, - 45.497426 - ], - [ - -73.404858, - 45.497588 - ], - [ - -73.405172, - 45.497723 - ], - [ - -73.405568, - 45.497876 - ], - [ - -73.406291, - 45.498153 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.406288, - 45.49843 - ], - [ - -73.406193, - 45.498579 - ], - [ - -73.406163, - 45.49864 - ], - [ - -73.405911, - 45.499145 - ], - [ - -73.405493, - 45.499995 - ], - [ - -73.405383, - 45.500198 - ], - [ - -73.405251, - 45.500369 - ], - [ - -73.405082, - 45.500567 - ], - [ - -73.404894, - 45.500746 - ], - [ - -73.404658, - 45.500926 - ], - [ - -73.404439, - 45.50107 - ], - [ - -73.404275, - 45.501164 - ], - [ - -73.404095, - 45.501254 - ], - [ - -73.403728, - 45.501411 - ], - [ - -73.403505, - 45.501483 - ], - [ - -73.403207, - 45.501564 - ], - [ - -73.402929, - 45.501627 - ], - [ - -73.402747, - 45.501658 - ], - [ - -73.402456, - 45.501689 - ], - [ - -73.401996, - 45.50172 - ], - [ - -73.401983, - 45.501721 - ], - [ - -73.401007, - 45.501782 - ], - [ - -73.399341, - 45.501884 - ], - [ - -73.399355, - 45.501992 - ], - [ - -73.399402, - 45.502346 - ], - [ - -73.399417, - 45.50246 - ], - [ - -73.399441, - 45.502676 - ], - [ - -73.399508, - 45.503131 - ], - [ - -73.399542, - 45.50336 - ], - [ - -73.399657, - 45.504175 - ], - [ - -73.399729, - 45.504706 - ], - [ - -73.39976, - 45.505156 - ], - [ - -73.399787, - 45.505322 - ], - [ - -73.39982, - 45.505426 - ], - [ - -73.399886, - 45.505552 - ], - [ - -73.399949, - 45.505664 - ], - [ - -73.400052, - 45.505795 - ], - [ - -73.400152, - 45.505885 - ], - [ - -73.40031, - 45.50598 - ], - [ - -73.40043, - 45.506038 - ], - [ - -73.400593, - 45.506106 - ], - [ - -73.400668, - 45.506128 - ], - [ - -73.400809, - 45.506169 - ], - [ - -73.401285, - 45.50629 - ], - [ - -73.403459, - 45.506842 - ], - [ - -73.404937, - 45.507219 - ], - [ - -73.404942, - 45.507221 - ], - [ - -73.40508, - 45.507248 - ], - [ - -73.405194, - 45.507248 - ], - [ - -73.405268, - 45.507208 - ], - [ - -73.405549, - 45.506609 - ], - [ - -73.405719, - 45.506277 - ], - [ - -73.405871, - 45.505971 - ], - [ - -73.405984, - 45.50575 - ], - [ - -73.40619, - 45.505319 - ], - [ - -73.406364, - 45.504981 - ], - [ - -73.406515, - 45.50468 - ], - [ - -73.406677, - 45.504352 - ], - [ - -73.406855, - 45.504005 - ], - [ - -73.407261, - 45.504118 - ], - [ - -73.407475, - 45.504174 - ], - [ - -73.407766, - 45.504249 - ], - [ - -73.408367, - 45.504398 - ], - [ - -73.408591, - 45.504454 - ], - [ - -73.408932, - 45.504538 - ], - [ - -73.409315, - 45.504637 - ], - [ - -73.409774, - 45.504755 - ], - [ - -73.41077, - 45.504994 - ], - [ - -73.411569, - 45.505197 - ], - [ - -73.412507, - 45.505418 - ], - [ - -73.412645, - 45.505436 - ], - [ - -73.412747, - 45.50545 - ], - [ - -73.412864, - 45.50545 - ], - [ - -73.413013, - 45.505441 - ], - [ - -73.413318, - 45.50541 - ], - [ - -73.413549, - 45.505378 - ], - [ - -73.413728, - 45.505356 - ], - [ - -73.413859, - 45.505329 - ], - [ - -73.414002, - 45.505302 - ], - [ - -73.414101, - 45.505275 - ], - [ - -73.41431, - 45.50519 - ], - [ - -73.414386, - 45.505141 - ], - [ - -73.414456, - 45.505105 - ], - [ - -73.414518, - 45.50506 - ], - [ - -73.414599, - 45.50497 - ], - [ - -73.414677, - 45.504884 - ], - [ - -73.41477, - 45.504718 - ], - [ - -73.415883, - 45.50251 - ], - [ - -73.41606, - 45.502164 - ], - [ - -73.416178, - 45.501934 - ], - [ - -73.416751, - 45.502146 - ], - [ - -73.417293, - 45.502344 - ], - [ - -73.417806, - 45.502538 - ], - [ - -73.418173, - 45.502669 - ], - [ - -73.418339, - 45.502731 - ], - [ - -73.418847, - 45.502921 - ], - [ - -73.419167, - 45.503047 - ], - [ - -73.419278, - 45.503088 - ], - [ - -73.419673, - 45.503241 - ], - [ - -73.420142, - 45.503431 - ], - [ - -73.420806, - 45.503714 - ], - [ - -73.421234, - 45.503904 - ], - [ - -73.421648, - 45.504084 - ], - [ - -73.421847, - 45.503805 - ], - [ - -73.421882, - 45.503756 - ], - [ - -73.421936, - 45.503681 - ], - [ - -73.42255, - 45.502834 - ], - [ - -73.423367, - 45.501683 - ], - [ - -73.423423, - 45.501602 - ], - [ - -73.423518, - 45.501444 - ], - [ - -73.423572, - 45.501404 - ], - [ - -73.424195, - 45.500516 - ], - [ - -73.424528, - 45.500041 - ], - [ - -73.424908, - 45.499515 - ], - [ - -73.426401, - 45.49741 - ], - [ - -73.427911, - 45.49531 - ], - [ - -73.42799, - 45.495202 - ], - [ - -73.428362, - 45.494686 - ], - [ - -73.429402, - 45.493246 - ], - [ - -73.430914, - 45.491164 - ], - [ - -73.432063, - 45.489531 - ], - [ - -73.43217, - 45.489383 - ], - [ - -73.43219, - 45.48936 - ], - [ - -73.432305, - 45.489239 - ], - [ - -73.432556, - 45.489041 - ], - [ - -73.432684, - 45.488933 - ], - [ - -73.432921, - 45.48878 - ], - [ - -73.433484, - 45.488439 - ], - [ - -73.435153, - 45.487468 - ], - [ - -73.437094, - 45.486331 - ], - [ - -73.437465, - 45.486115 - ], - [ - -73.43775, - 45.485944 - ], - [ - -73.438008, - 45.485782 - ], - [ - -73.439264, - 45.485036 - ], - [ - -73.439281, - 45.485026 - ], - [ - -73.439959, - 45.484631 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.443018, - 45.482865 - ], - [ - -73.443745, - 45.48242 - ], - [ - -73.445624, - 45.481309 - ], - [ - -73.446581, - 45.480738 - ], - [ - -73.448771, - 45.479431 - ], - [ - -73.449044, - 45.479268 - ], - [ - -73.449242, - 45.479145 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.44954, - 45.478958 - ], - [ - -73.449587, - 45.478931 - ], - [ - -73.449414, - 45.478812 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.44904, - 45.47838 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.455506, - 45.473954 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.46212, - 45.469426 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469043, - 45.46624 - ] - ] - }, - "id": 21, - "properties": { - "id": "ee40c076-e974-44f3-8bd2-49cec3bbde70", - "data": { - "gtfs": { - "shape_id": "5_2_A" - }, - "segments": [ - { - "distanceMeters": 1219, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 1097, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 761, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 852, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 1053, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 743, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 726, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 1398, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 1071, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 774, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 721, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 839, - "travelTimeSeconds": 33 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11248, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 66.85347463427748, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 31.24, - "travelTimeWithoutDwellTimesSeconds": 360, - "operatingTimeWithLayoverTimeSeconds": 540, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 360, - "operatingSpeedWithLayoverMetersPerSecond": 20.83, - "averageSpeedWithoutDwellTimesMetersPerSecond": 31.24 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0", - "5c25bfb5-c167-4f71-8798-e94a8ad7560d", - "e4d9e692-bf6d-4c61-9845-9e50427c4cad", - "2550d07e-5034-443e-9840-7e9abcf5a62b", - "2e7cf58e-8d32-4b71-acee-694db180235f", - "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", - "33ed66fe-2193-4e2a-b51d-d25140b9ad80", - "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", - "aab8672e-86c9-4a43-9806-f5135dc02b4e", - "7414010b-fe1f-4d77-8cdd-701cc437e73a", - "dc630e4d-102e-48b9-8b4a-920cafc01d4a", - "00ed067b-7627-492d-ac0f-5d03bd3b185c", - "2d9ee065-016b-451f-a85c-ba2cce6e5bc6" - ], - "stops": [], - "line_id": "51246736-0d56-4a0b-a824-2c9f3fbcbb89", - "segments": [ - 0, - 33, - 65, - 88, - 108, - 139, - 156, - 162, - 179, - 193, - 198, - 202 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 21, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469107, - 45.46587 - ], - [ - -73.469152, - 45.465801 - ], - [ - -73.469114, - 45.465711 - ], - [ - -73.469034, - 45.465669 - ], - [ - -73.468913, - 45.46567 - ], - [ - -73.468751, - 45.465752 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466415, - 45.46583 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466766, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465589, - 45.46821 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.463779, - 45.468251 - ], - [ - -73.463257, - 45.46862 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463569, - 45.468988 - ], - [ - -73.463833, - 45.469169 - ], - [ - -73.464474, - 45.469628 - ], - [ - -73.464828, - 45.469887 - ], - [ - -73.465113, - 45.470096 - ], - [ - -73.465778, - 45.470582 - ], - [ - -73.466292, - 45.470957 - ], - [ - -73.466451, - 45.471073 - ], - [ - -73.467061, - 45.471469 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.468499, - 45.472486 - ], - [ - -73.469236, - 45.473 - ], - [ - -73.469661, - 45.473296 - ], - [ - -73.469926, - 45.473481 - ], - [ - -73.471608, - 45.474678 - ], - [ - -73.4718, - 45.47482 - ], - [ - -73.471919, - 45.474907 - ], - [ - -73.472018, - 45.474979 - ], - [ - -73.47234, - 45.475227 - ], - [ - -73.473157, - 45.475808 - ], - [ - -73.473415, - 45.476001 - ], - [ - -73.473844, - 45.476308 - ], - [ - -73.475018, - 45.477149 - ], - [ - -73.475723, - 45.477647 - ], - [ - -73.476119, - 45.477927 - ], - [ - -73.476929, - 45.478485 - ], - [ - -73.477462, - 45.478904 - ], - [ - -73.477571, - 45.478981 - ], - [ - -73.477667, - 45.479048 - ], - [ - -73.477754, - 45.479101 - ], - [ - -73.477833, - 45.479125 - ], - [ - -73.478515, - 45.47962 - ], - [ - -73.479199, - 45.480107 - ], - [ - -73.47933, - 45.4802 - ], - [ - -73.479422, - 45.480272 - ], - [ - -73.479511, - 45.480326 - ], - [ - -73.479961, - 45.480655 - ], - [ - -73.480428, - 45.480974 - ], - [ - -73.480755, - 45.481226 - ], - [ - -73.481141, - 45.481496 - ], - [ - -73.481448, - 45.481719 - ], - [ - -73.481483, - 45.481744 - ], - [ - -73.48159, - 45.481816 - ], - [ - -73.481822, - 45.481987 - ], - [ - -73.481995, - 45.482108 - ], - [ - -73.482091, - 45.482176 - ], - [ - -73.482188, - 45.482243 - ], - [ - -73.482644, - 45.48257 - ], - [ - -73.482999, - 45.482824 - ], - [ - -73.483337, - 45.483067 - ], - [ - -73.483483, - 45.483175 - ], - [ - -73.483637, - 45.483278 - ], - [ - -73.484263, - 45.483728 - ], - [ - -73.484788, - 45.484104 - ], - [ - -73.485416, - 45.484552 - ], - [ - -73.485807, - 45.484835 - ], - [ - -73.486446, - 45.485294 - ], - [ - -73.486783, - 45.485533 - ], - [ - -73.486867, - 45.485594 - ], - [ - -73.487051, - 45.485731 - ], - [ - -73.487831, - 45.486284 - ], - [ - -73.488568, - 45.486806 - ], - [ - -73.48897, - 45.487081 - ], - [ - -73.489048, - 45.487135 - ], - [ - -73.489411, - 45.487405 - ], - [ - -73.490801, - 45.488399 - ], - [ - -73.491476, - 45.488881 - ], - [ - -73.491557, - 45.488939 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.491721, - 45.489052 - ], - [ - -73.492218, - 45.489407 - ], - [ - -73.492419, - 45.48955 - ], - [ - -73.492465, - 45.489583 - ], - [ - -73.492778, - 45.489803 - ], - [ - -73.492976, - 45.489943 - ], - [ - -73.493573, - 45.490366 - ], - [ - -73.493701, - 45.490456 - ], - [ - -73.493838, - 45.49055 - ], - [ - -73.494242, - 45.490838 - ], - [ - -73.494265, - 45.490853 - ], - [ - -73.49433, - 45.490897 - ], - [ - -73.494917, - 45.491315 - ], - [ - -73.495204, - 45.491517 - ], - [ - -73.495442, - 45.491684 - ], - [ - -73.49562, - 45.491814 - ], - [ - -73.495851, - 45.491976 - ], - [ - -73.496235, - 45.492242 - ], - [ - -73.496321, - 45.492305 - ], - [ - -73.496378, - 45.492345 - ], - [ - -73.496416, - 45.492372 - ], - [ - -73.496772, - 45.492629 - ], - [ - -73.497128, - 45.492885 - ], - [ - -73.497339, - 45.493038 - ], - [ - -73.497557, - 45.493191 - ], - [ - -73.497639, - 45.493253 - ], - [ - -73.497771, - 45.493353 - ], - [ - -73.497866, - 45.493425 - ], - [ - -73.497927, - 45.49347 - ], - [ - -73.497995, - 45.493515 - ], - [ - -73.49804, - 45.493547 - ], - [ - -73.498238, - 45.493691 - ], - [ - -73.49848, - 45.493866 - ], - [ - -73.498616, - 45.49397 - ], - [ - -73.498797, - 45.494096 - ], - [ - -73.498924, - 45.49419 - ], - [ - -73.499159, - 45.494361 - ], - [ - -73.499315, - 45.494474 - ], - [ - -73.499359, - 45.494506 - ], - [ - -73.49959, - 45.494676 - ], - [ - -73.499763, - 45.494802 - ], - [ - -73.499778, - 45.494815 - ], - [ - -73.499824, - 45.494846 - ], - [ - -73.500025, - 45.494979 - ], - [ - -73.500064, - 45.495 - ], - [ - -73.500106, - 45.495026 - ], - [ - -73.500592, - 45.495409 - ], - [ - -73.50081, - 45.495567 - ], - [ - -73.501059, - 45.495724 - ], - [ - -73.501182, - 45.495805 - ], - [ - -73.501279, - 45.495868 - ], - [ - -73.501298, - 45.495882 - ], - [ - -73.501808, - 45.496251 - ], - [ - -73.502261, - 45.496566 - ], - [ - -73.502293, - 45.496588 - ], - [ - -73.502336, - 45.49662 - ], - [ - -73.50284, - 45.49698 - ], - [ - -73.50327, - 45.49729 - ], - [ - -73.503408, - 45.497389 - ], - [ - -73.503475, - 45.497438 - ], - [ - -73.504131, - 45.497897 - ], - [ - -73.504473, - 45.49814 - ], - [ - -73.504683, - 45.498293 - ], - [ - -73.504766, - 45.498356 - ], - [ - -73.504839, - 45.49841 - ], - [ - -73.505105, - 45.498595 - ], - [ - -73.505329, - 45.498757 - ], - [ - -73.505704, - 45.498928 - ], - [ - -73.506001, - 45.499076 - ], - [ - -73.506259, - 45.499211 - ], - [ - -73.506709, - 45.499427 - ], - [ - -73.506801, - 45.499467 - ], - [ - -73.507261, - 45.499663 - ], - [ - -73.50735, - 45.499701 - ], - [ - -73.507712, - 45.499859 - ], - [ - -73.508861, - 45.50034 - ], - [ - -73.508958, - 45.500376 - ], - [ - -73.509608, - 45.500651 - ], - [ - -73.509762, - 45.500713 - ], - [ - -73.50993, - 45.500781 - ], - [ - -73.51045, - 45.501019 - ], - [ - -73.511327, - 45.50142 - ], - [ - -73.512063, - 45.501735 - ], - [ - -73.512398, - 45.501874 - ], - [ - -73.512677, - 45.501991 - ], - [ - -73.512872, - 45.502072 - ], - [ - -73.513437, - 45.502275 - ], - [ - -73.513621, - 45.502342 - ], - [ - -73.513711, - 45.502384 - ], - [ - -73.513806, - 45.502427 - ], - [ - -73.513873, - 45.50226 - ], - [ - -73.513915, - 45.502163 - ], - [ - -73.514024, - 45.501904 - ], - [ - -73.514045, - 45.501797 - ], - [ - -73.514104, - 45.501797 - ], - [ - -73.514193, - 45.501801 - ], - [ - -73.514212, - 45.501802 - ], - [ - -73.514398, - 45.501805 - ], - [ - -73.516185, - 45.501834 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517437, - 45.505262 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517233, - 45.507277 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517559, - 45.50921 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517797, - 45.511423 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517596, - 45.513245 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518264, - 45.51531 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518973, - 45.516744 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520113, - 45.519726 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520194, - 45.520238 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522121, - 45.523145 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.521609, - 45.523676 - ], - [ - -73.521556, - 45.52368 - ], - [ - -73.521506, - 45.523698 - ], - [ - -73.521494, - 45.523725 - ], - [ - -73.521489, - 45.523788 - ], - [ - -73.521486, - 45.523819 - ] - ] - }, - "id": 22, - "properties": { - "id": "2bf47ecf-42d7-49be-9b04-871767696cee", - "data": { - "gtfs": { - "shape_id": "6_1_A" - }, - "segments": [ - { - "distanceMeters": 673, - "travelTimeSeconds": 113 - }, - { - "distanceMeters": 403, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 427, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 348, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 717, - "travelTimeSeconds": 128 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9386, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7618.188458394157, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.26, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 5.59, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.26 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "977065eb-9054-495e-befc-5f3b6e0e6046", - "42f48eea-ee59-46f6-9c43-4b63100a50dc", - "1345672a-9148-439f-9a52-b8a216612929", - "ece1943b-159a-42fa-a0c1-16e06714e25e", - "d73e4ff6-4502-4376-9cf1-5410d307a82f", - "c04702f7-b2cf-440e-a6da-0a84aefc3963", - "f32e29fd-d271-4ae6-8083-6d24349dccdf", - "1e48d359-2463-4fbd-b946-c0a530db4bbe", - "dc5fe0eb-b8cc-4186-82d3-6787360ae612", - "0a623471-271f-47f5-9a85-7feece2a3285", - "aa413165-9699-49b6-9dea-fa35bda8f373", - "54bbe390-ff6d-41d9-bd4b-1e4843d66512", - "7faed35b-7709-443d-b0ec-5f09ab018202", - "88d8365e-2528-4422-a483-bb2efd9de617", - "0b6032e7-414a-429f-9df2-796599b947c2", - "1cedf968-65c8-4c0f-b92c-c06da7b8fe69", - "16f75d06-f538-4735-a99f-9bc7eaa6eaab", - "1cea6199-481e-43b0-8d4a-8c7593ff485f", - "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", - "6557d1fe-6975-49e2-871c-ab07d42ea35b", - "0ac44bed-6f37-406e-8654-f8d5f36c840e", - "443288e2-2ae9-4c97-a015-0e176d8f71b2", - "a230c1b0-ee13-40c1-8d3f-12ae20006cc6", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "2259b112-2e60-4bcc-ad14-9e0e577f2909", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "883677f7-ddf9-4c02-8c42-da41b99017fc", - "segments": [ - 0, - 32, - 49, - 52, - 59, - 62, - 68, - 70, - 74, - 79, - 87, - 100, - 105, - 109, - 113, - 126, - 135, - 141, - 158, - 167, - 169, - 179, - 188, - 196, - 207, - 214, - 227, - 233, - 238, - 244, - 250, - 258, - 265, - 273 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 22, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521486, - 45.523819 - ], - [ - -73.521481, - 45.523874 - ], - [ - -73.52149, - 45.523892 - ], - [ - -73.521509, - 45.523906 - ], - [ - -73.521542, - 45.523919 - ], - [ - -73.521581, - 45.523923 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519706, - 45.52323 - ], - [ - -73.519869, - 45.522907 - ], - [ - -73.520158, - 45.522337 - ], - [ - -73.520306, - 45.521899 - ], - [ - -73.520306, - 45.521896 - ], - [ - -73.520354, - 45.521696 - ], - [ - -73.520357, - 45.521682 - ], - [ - -73.520401, - 45.521498 - ], - [ - -73.520405, - 45.521373 - ], - [ - -73.520409, - 45.52119 - ], - [ - -73.520398, - 45.521025 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520121, - 45.519896 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518919, - 45.516652 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517657, - 45.51361 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517705, - 45.511767 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.51761, - 45.509413 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517231, - 45.50733 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517348, - 45.505752 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.516262, - 45.501836 - ], - [ - -73.516043, - 45.501832 - ], - [ - -73.514398, - 45.501805 - ], - [ - -73.514212, - 45.501802 - ], - [ - -73.514104, - 45.501797 - ], - [ - -73.514045, - 45.501797 - ], - [ - -73.513805, - 45.501793 - ], - [ - -73.5136, - 45.501784 - ], - [ - -73.513522, - 45.501784 - ], - [ - -73.51344, - 45.501784 - ], - [ - -73.513284, - 45.501793 - ], - [ - -73.513035, - 45.501807 - ], - [ - -73.512897, - 45.501829 - ], - [ - -73.5127, - 45.501847 - ], - [ - -73.512514, - 45.501864 - ], - [ - -73.512398, - 45.501874 - ], - [ - -73.512063, - 45.501735 - ], - [ - -73.511984, - 45.501701 - ], - [ - -73.511327, - 45.50142 - ], - [ - -73.50993, - 45.500781 - ], - [ - -73.509918, - 45.500776 - ], - [ - -73.509762, - 45.500713 - ], - [ - -73.509608, - 45.500651 - ], - [ - -73.508958, - 45.500376 - ], - [ - -73.508861, - 45.50034 - ], - [ - -73.507712, - 45.499859 - ], - [ - -73.50735, - 45.499701 - ], - [ - -73.50708, - 45.499586 - ], - [ - -73.506801, - 45.499467 - ], - [ - -73.506709, - 45.499427 - ], - [ - -73.506259, - 45.499211 - ], - [ - -73.506001, - 45.499076 - ], - [ - -73.505704, - 45.498928 - ], - [ - -73.505329, - 45.498757 - ], - [ - -73.505105, - 45.498595 - ], - [ - -73.504959, - 45.498494 - ], - [ - -73.504839, - 45.49841 - ], - [ - -73.504683, - 45.498293 - ], - [ - -73.504473, - 45.49814 - ], - [ - -73.504131, - 45.497897 - ], - [ - -73.503475, - 45.497438 - ], - [ - -73.503408, - 45.497389 - ], - [ - -73.50327, - 45.49729 - ], - [ - -73.50284, - 45.49698 - ], - [ - -73.502643, - 45.496839 - ], - [ - -73.502336, - 45.49662 - ], - [ - -73.502293, - 45.496588 - ], - [ - -73.501808, - 45.496251 - ], - [ - -73.501454, - 45.495994 - ], - [ - -73.501279, - 45.495868 - ], - [ - -73.501182, - 45.495805 - ], - [ - -73.501059, - 45.495724 - ], - [ - -73.50081, - 45.495567 - ], - [ - -73.500592, - 45.495409 - ], - [ - -73.500512, - 45.495347 - ], - [ - -73.500106, - 45.495026 - ], - [ - -73.500064, - 45.495 - ], - [ - -73.500025, - 45.494979 - ], - [ - -73.499778, - 45.494815 - ], - [ - -73.499763, - 45.494802 - ], - [ - -73.49959, - 45.494676 - ], - [ - -73.499359, - 45.494506 - ], - [ - -73.499315, - 45.494474 - ], - [ - -73.499159, - 45.494361 - ], - [ - -73.498924, - 45.49419 - ], - [ - -73.498797, - 45.494096 - ], - [ - -73.498616, - 45.49397 - ], - [ - -73.49848, - 45.493866 - ], - [ - -73.498247, - 45.493697 - ], - [ - -73.498238, - 45.493691 - ], - [ - -73.49804, - 45.493547 - ], - [ - -73.497995, - 45.493515 - ], - [ - -73.497927, - 45.49347 - ], - [ - -73.497866, - 45.493425 - ], - [ - -73.497771, - 45.493353 - ], - [ - -73.497557, - 45.493191 - ], - [ - -73.497339, - 45.493038 - ], - [ - -73.497128, - 45.492885 - ], - [ - -73.496772, - 45.492629 - ], - [ - -73.496472, - 45.492413 - ], - [ - -73.496416, - 45.492372 - ], - [ - -73.496321, - 45.492305 - ], - [ - -73.496235, - 45.492242 - ], - [ - -73.495851, - 45.491976 - ], - [ - -73.49562, - 45.491814 - ], - [ - -73.495442, - 45.491684 - ], - [ - -73.495204, - 45.491517 - ], - [ - -73.494917, - 45.491315 - ], - [ - -73.49433, - 45.490897 - ], - [ - -73.494242, - 45.490838 - ], - [ - -73.494223, - 45.490824 - ], - [ - -73.493838, - 45.49055 - ], - [ - -73.493701, - 45.490456 - ], - [ - -73.493573, - 45.490366 - ], - [ - -73.492976, - 45.489943 - ], - [ - -73.492778, - 45.489803 - ], - [ - -73.492465, - 45.489583 - ], - [ - -73.492419, - 45.48955 - ], - [ - -73.492218, - 45.489407 - ], - [ - -73.492031, - 45.489273 - ], - [ - -73.491721, - 45.489052 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.491557, - 45.488939 - ], - [ - -73.490801, - 45.488399 - ], - [ - -73.489411, - 45.487405 - ], - [ - -73.489381, - 45.487383 - ], - [ - -73.489048, - 45.487135 - ], - [ - -73.488568, - 45.486806 - ], - [ - -73.487831, - 45.486284 - ], - [ - -73.487164, - 45.485811 - ], - [ - -73.487051, - 45.485731 - ], - [ - -73.486783, - 45.485533 - ], - [ - -73.486446, - 45.485294 - ], - [ - -73.485807, - 45.484835 - ], - [ - -73.485416, - 45.484552 - ], - [ - -73.485026, - 45.484273 - ], - [ - -73.484263, - 45.483728 - ], - [ - -73.483637, - 45.483278 - ], - [ - -73.483483, - 45.483175 - ], - [ - -73.483337, - 45.483067 - ], - [ - -73.482999, - 45.482824 - ], - [ - -73.482644, - 45.48257 - ], - [ - -73.482188, - 45.482243 - ], - [ - -73.482091, - 45.482176 - ], - [ - -73.481995, - 45.482108 - ], - [ - -73.481822, - 45.481987 - ], - [ - -73.481722, - 45.481913 - ], - [ - -73.48159, - 45.481816 - ], - [ - -73.481483, - 45.481744 - ], - [ - -73.481141, - 45.481496 - ], - [ - -73.480755, - 45.481226 - ], - [ - -73.480428, - 45.480974 - ], - [ - -73.479961, - 45.480655 - ], - [ - -73.479511, - 45.480326 - ], - [ - -73.479422, - 45.480272 - ], - [ - -73.47933, - 45.4802 - ], - [ - -73.479257, - 45.480148 - ], - [ - -73.478515, - 45.47962 - ], - [ - -73.478128, - 45.479339 - ], - [ - -73.477833, - 45.479125 - ], - [ - -73.477798, - 45.479064 - ], - [ - -73.477757, - 45.479003 - ], - [ - -73.477575, - 45.47885 - ], - [ - -73.477033, - 45.478413 - ], - [ - -73.476674, - 45.478151 - ], - [ - -73.47654, - 45.478053 - ], - [ - -73.476251, - 45.477842 - ], - [ - -73.475153, - 45.477059 - ], - [ - -73.474544, - 45.476636 - ], - [ - -73.474345, - 45.476487 - ], - [ - -73.474182, - 45.476365 - ], - [ - -73.4733, - 45.475709 - ], - [ - -73.473152, - 45.475605 - ], - [ - -73.472484, - 45.475128 - ], - [ - -73.472434, - 45.475089 - ], - [ - -73.47218, - 45.47489 - ], - [ - -73.472074, - 45.474808 - ], - [ - -73.471729, - 45.474583 - ], - [ - -73.470384, - 45.473617 - ], - [ - -73.470064, - 45.473386 - ], - [ - -73.468607, - 45.472409 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.467156, - 45.471392 - ], - [ - -73.466545, - 45.47101 - ], - [ - -73.466287, - 45.470825 - ], - [ - -73.465866, - 45.470524 - ], - [ - -73.465269, - 45.47009 - ], - [ - -73.465197, - 45.470037 - ], - [ - -73.464559, - 45.469569 - ], - [ - -73.464, - 45.469161 - ], - [ - -73.463833, - 45.469039 - ], - [ - -73.463631, - 45.468892 - ], - [ - -73.463582, - 45.468833 - ], - [ - -73.463549, - 45.468773 - ], - [ - -73.463538, - 45.468741 - ], - [ - -73.463534, - 45.468692 - ], - [ - -73.46354, - 45.468624 - ], - [ - -73.463567, - 45.468561 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464375, - 45.468221 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.465219, - 45.468286 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.46908, - 45.465912 - ], - [ - -73.469107, - 45.46587 - ] - ] - }, - "id": 23, - "properties": { - "id": "5c716511-636c-4e1d-b29a-26e2c1242166", - "data": { - "gtfs": { - "shape_id": "6_1_R" - }, - "segments": [ - { - "distanceMeters": 766, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 378, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 353, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 476, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 368, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 446, - "travelTimeSeconds": 101 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 579, - "travelTimeSeconds": 132 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9215, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7618.188458394157, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.14, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 5.48, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.14 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "46687bb1-1189-4edc-bbd4-c90db18d4ff5", - "df5b9592-81e3-4b2c-8a30-7f3a9144671b", - "d24bea6e-da8d-4183-8a5f-0e99be199484", - "6557d1fe-6975-49e2-871c-ab07d42ea35b", - "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", - "1cea6199-481e-43b0-8d4a-8c7593ff485f", - "467e03f3-2556-4d22-ae48-618a76e6b0b4", - "ea9801c9-a110-4900-bcae-f1b3a40050e8", - "0b6032e7-414a-429f-9df2-796599b947c2", - "88d8365e-2528-4422-a483-bb2efd9de617", - "196681e4-c9e5-4a79-a3b1-ce225227e0aa", - "54bbe390-ff6d-41d9-bd4b-1e4843d66512", - "aa413165-9699-49b6-9dea-fa35bda8f373", - "0a623471-271f-47f5-9a85-7feece2a3285", - "dc5fe0eb-b8cc-4186-82d3-6787360ae612", - "1e48d359-2463-4fbd-b946-c0a530db4bbe", - "c46257ee-b29f-4a62-9447-95eb1e19c941", - "fe84c986-2907-4842-bde4-72fbe08a0576", - "d73e4ff6-4502-4376-9cf1-5410d307a82f", - "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", - "85f19be2-1f67-4673-b3b3-52d06ed31ae3", - "42f48eea-ee59-46f6-9c43-4b63100a50dc", - "8e9afee7-e1de-4794-a91d-f9db0ef29ed2", - "ee43ab70-74a3-4a43-bfec-164062a98584", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "883677f7-ddf9-4c02-8c42-da41b99017fc", - "segments": [ - 0, - 30, - 40, - 51, - 57, - 64, - 70, - 75, - 89, - 103, - 109, - 116, - 124, - 133, - 137, - 143, - 157, - 168, - 179, - 188, - 194, - 198, - 204, - 215, - 225, - 227, - 233, - 239, - 243, - 247, - 254, - 256, - 260, - 277 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 23, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519259, - 45.524277 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519057, - 45.525166 - ], - [ - -73.518828, - 45.525169 - ], - [ - -73.518662, - 45.525195 - ], - [ - -73.518477, - 45.525222 - ], - [ - -73.51841, - 45.525229 - ], - [ - -73.518309, - 45.525233 - ], - [ - -73.518165, - 45.525238 - ], - [ - -73.517846, - 45.525224 - ], - [ - -73.516858, - 45.525188 - ], - [ - -73.516329, - 45.525185 - ], - [ - -73.51586, - 45.52522 - ], - [ - -73.515879, - 45.525306 - ], - [ - -73.515954, - 45.525625 - ], - [ - -73.515993, - 45.52576 - ], - [ - -73.516108, - 45.52615 - ], - [ - -73.51612, - 45.526192 - ], - [ - -73.516132, - 45.526224 - ], - [ - -73.516245, - 45.52653 - ], - [ - -73.516302, - 45.526687 - ], - [ - -73.516434, - 45.526894 - ], - [ - -73.517006, - 45.527735 - ], - [ - -73.517118, - 45.52798 - ], - [ - -73.517259, - 45.528292 - ], - [ - -73.517272, - 45.52832 - ], - [ - -73.517504, - 45.528922 - ], - [ - -73.517577, - 45.529094 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.517456, - 45.531762 - ], - [ - -73.516895, - 45.532281 - ], - [ - -73.51664, - 45.532518 - ], - [ - -73.515885, - 45.533161 - ], - [ - -73.515753, - 45.533238 - ], - [ - -73.515672, - 45.533321 - ], - [ - -73.515328, - 45.533707 - ], - [ - -73.515257, - 45.533788 - ], - [ - -73.515202, - 45.533848 - ], - [ - -73.514831, - 45.534265 - ], - [ - -73.514791, - 45.534311 - ], - [ - -73.514731, - 45.534379 - ], - [ - -73.514684, - 45.534434 - ], - [ - -73.51432, - 45.534799 - ], - [ - -73.514005, - 45.535118 - ], - [ - -73.513904, - 45.53522 - ], - [ - -73.513681, - 45.535468 - ], - [ - -73.51342, - 45.535713 - ], - [ - -73.513155, - 45.535985 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.511243, - 45.537332 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.509633, - 45.538686 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.508029, - 45.540693 - ], - [ - -73.508021, - 45.540689 - ], - [ - -73.507544, - 45.540495 - ], - [ - -73.507102, - 45.540316 - ], - [ - -73.506536, - 45.540077 - ], - [ - -73.505474, - 45.539646 - ], - [ - -73.504975, - 45.539443 - ], - [ - -73.50484, - 45.539375 - ], - [ - -73.504659, - 45.53925 - ], - [ - -73.504204, - 45.538858 - ], - [ - -73.50401, - 45.538714 - ], - [ - -73.504001, - 45.538709 - ], - [ - -73.503897, - 45.538651 - ], - [ - -73.5035, - 45.538476 - ], - [ - -73.502143, - 45.537905 - ], - [ - -73.501222, - 45.537517 - ], - [ - -73.499707, - 45.536879 - ], - [ - -73.499534, - 45.536807 - ], - [ - -73.498456, - 45.536361 - ], - [ - -73.497345, - 45.53588 - ], - [ - -73.496932, - 45.535682 - ], - [ - -73.496814, - 45.535632 - ], - [ - -73.496535, - 45.53552 - ], - [ - -73.495741, - 45.5352 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.494436, - 45.534693 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.492647, - 45.533954 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.491123, - 45.533323 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.4886, - 45.532288 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.485513, - 45.531004 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.481743, - 45.529435 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.48089, - 45.529066 - ], - [ - -73.480753, - 45.529011 - ], - [ - -73.480164, - 45.528774 - ], - [ - -73.479454, - 45.528472 - ], - [ - -73.478839, - 45.528217 - ], - [ - -73.478598, - 45.528117 - ], - [ - -73.477725, - 45.527748 - ], - [ - -73.476969, - 45.527428 - ], - [ - -73.476219, - 45.527117 - ], - [ - -73.476089, - 45.527063 - ], - [ - -73.475894, - 45.526982 - ], - [ - -73.475467, - 45.526811 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.47427, - 45.526306 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.47277, - 45.525683 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.471997, - 45.525357 - ], - [ - -73.471094, - 45.524979 - ], - [ - -73.470555, - 45.524749 - ], - [ - -73.470239, - 45.524623 - ], - [ - -73.469721, - 45.524403 - ], - [ - -73.469624, - 45.524363 - ], - [ - -73.469522, - 45.524322 - ], - [ - -73.468866, - 45.524038 - ], - [ - -73.468205, - 45.523769 - ], - [ - -73.468048, - 45.523705 - ], - [ - -73.467237, - 45.523363 - ], - [ - -73.466276, - 45.522967 - ], - [ - -73.466082, - 45.522841 - ], - [ - -73.465634, - 45.52266 - ], - [ - -73.465545, - 45.522622 - ], - [ - -73.464874, - 45.522336 - ], - [ - -73.464576, - 45.522215 - ], - [ - -73.464439, - 45.522143 - ], - [ - -73.464336, - 45.522093 - ], - [ - -73.464186, - 45.522017 - ], - [ - -73.463952, - 45.52192 - ], - [ - -73.463642, - 45.521792 - ], - [ - -73.463125, - 45.521577 - ], - [ - -73.462859, - 45.521467 - ], - [ - -73.46256, - 45.521341 - ], - [ - -73.460771, - 45.520588 - ], - [ - -73.460592, - 45.520513 - ], - [ - -73.460391, - 45.520427 - ], - [ - -73.460276, - 45.520379 - ], - [ - -73.458651, - 45.519707 - ], - [ - -73.457504, - 45.519217 - ], - [ - -73.457332, - 45.519144 - ], - [ - -73.457212, - 45.51909 - ], - [ - -73.456379, - 45.518756 - ], - [ - -73.455695, - 45.518468 - ], - [ - -73.454372, - 45.5179 - ], - [ - -73.454164, - 45.517811 - ], - [ - -73.453487, - 45.51753 - ], - [ - -73.452818, - 45.517252 - ], - [ - -73.452666, - 45.517189 - ], - [ - -73.452271, - 45.517027 - ], - [ - -73.452136, - 45.516973 - ], - [ - -73.452066, - 45.516942 - ], - [ - -73.450142, - 45.516153 - ], - [ - -73.450032, - 45.516108 - ], - [ - -73.448748, - 45.515563 - ], - [ - -73.448601, - 45.5155 - ], - [ - -73.445111, - 45.514032 - ], - [ - -73.444787, - 45.513896 - ], - [ - -73.443484, - 45.513348 - ], - [ - -73.443129, - 45.513199 - ], - [ - -73.440479, - 45.512077 - ], - [ - -73.440412, - 45.512048 - ], - [ - -73.440007, - 45.511874 - ], - [ - -73.439905, - 45.511834 - ], - [ - -73.439831, - 45.511802 - ], - [ - -73.439067, - 45.511482 - ], - [ - -73.43848, - 45.511214 - ], - [ - -73.438299, - 45.511131 - ], - [ - -73.438017, - 45.511 - ], - [ - -73.437245, - 45.510635 - ], - [ - -73.436224, - 45.510185 - ], - [ - -73.435988, - 45.510081 - ], - [ - -73.435895, - 45.510041 - ], - [ - -73.435854, - 45.510023 - ], - [ - -73.435569, - 45.509897 - ], - [ - -73.435038, - 45.509668 - ], - [ - -73.434856, - 45.50959 - ], - [ - -73.434257, - 45.509343 - ], - [ - -73.433925, - 45.509203 - ], - [ - -73.433726, - 45.509117 - ], - [ - -73.433485, - 45.509005 - ], - [ - -73.433108, - 45.508806 - ], - [ - -73.432574, - 45.508487 - ], - [ - -73.432044, - 45.508167 - ], - [ - -73.431846, - 45.508041 - ], - [ - -73.43182, - 45.508023 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.431538, - 45.507856 - ], - [ - -73.430825, - 45.507356 - ], - [ - -73.430679, - 45.507221 - ], - [ - -73.430612, - 45.507149 - ], - [ - -73.43049, - 45.506978 - ], - [ - -73.43046, - 45.50692 - ], - [ - -73.430405, - 45.506816 - ], - [ - -73.430319, - 45.506587 - ], - [ - -73.430298, - 45.506497 - ], - [ - -73.430275, - 45.506389 - ], - [ - -73.430272, - 45.506375 - ], - [ - -73.430221, - 45.506056 - ], - [ - -73.430115, - 45.505569 - ], - [ - -73.430022, - 45.505142 - ], - [ - -73.429926, - 45.504769 - ], - [ - -73.429899, - 45.5047 - ], - [ - -73.429809, - 45.504476 - ], - [ - -73.429754, - 45.504373 - ], - [ - -73.4297, - 45.504274 - ], - [ - -73.429596, - 45.504132 - ], - [ - -73.429585, - 45.504116 - ], - [ - -73.429534, - 45.504058 - ], - [ - -73.429455, - 45.503968 - ], - [ - -73.429429, - 45.503936 - ], - [ - -73.429234, - 45.503747 - ], - [ - -73.429121, - 45.503648 - ], - [ - -73.429007, - 45.503562 - ], - [ - -73.428781, - 45.503414 - ], - [ - -73.428662, - 45.503344 - ], - [ - -73.428528, - 45.503265 - ], - [ - -73.428383, - 45.503193 - ], - [ - -73.428061, - 45.503062 - ], - [ - -73.427348, - 45.502808 - ], - [ - -73.426603, - 45.502542 - ], - [ - -73.426292, - 45.502431 - ], - [ - -73.424352, - 45.501741 - ], - [ - -73.423912, - 45.501584 - ], - [ - -73.423518, - 45.501444 - ], - [ - -73.423081, - 45.501291 - ], - [ - -73.422609, - 45.501122 - ], - [ - -73.422513, - 45.501088 - ], - [ - -73.421932, - 45.500878 - ], - [ - -73.421552, - 45.500741 - ], - [ - -73.42114, - 45.50058 - ], - [ - -73.420988, - 45.50052 - ], - [ - -73.420974, - 45.500516 - ], - [ - -73.420915, - 45.500489 - ], - [ - -73.420674, - 45.50038 - ], - [ - -73.420367, - 45.500227 - ], - [ - -73.41991, - 45.499962 - ], - [ - -73.419471, - 45.499673 - ], - [ - -73.419335, - 45.49957 - ], - [ - -73.419049, - 45.499354 - ], - [ - -73.418625, - 45.499061 - ], - [ - -73.418366, - 45.498904 - ], - [ - -73.418232, - 45.498822 - ], - [ - -73.417884, - 45.498642 - ], - [ - -73.417509, - 45.498478 - ], - [ - -73.417338, - 45.498403 - ], - [ - -73.416887, - 45.498227 - ], - [ - -73.416876, - 45.498223 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.415848, - 45.497845 - ], - [ - -73.415069, - 45.497555 - ], - [ - -73.414637, - 45.497397 - ], - [ - -73.413391, - 45.496942 - ], - [ - -73.413096, - 45.496835 - ], - [ - -73.41213, - 45.496482 - ], - [ - -73.411766, - 45.496343 - ], - [ - -73.411419, - 45.496194 - ], - [ - -73.411025, - 45.496011 - ], - [ - -73.410951, - 45.495977 - ], - [ - -73.410895, - 45.495951 - ], - [ - -73.410789, - 45.495896 - ], - [ - -73.409735, - 45.495323 - ], - [ - -73.409349, - 45.495112 - ], - [ - -73.409099, - 45.494968 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.408825, - 45.494811 - ], - [ - -73.408434, - 45.49459 - ], - [ - -73.408369, - 45.494555 - ], - [ - -73.408119, - 45.494419 - ], - [ - -73.407735, - 45.494211 - ], - [ - -73.407122, - 45.493914 - ], - [ - -73.406636, - 45.493695 - ], - [ - -73.406594, - 45.493675 - ], - [ - -73.404056, - 45.49253 - ], - [ - -73.40355, - 45.492282 - ], - [ - -73.403081, - 45.492034 - ], - [ - -73.402782, - 45.491854 - ], - [ - -73.402765, - 45.491844 - ], - [ - -73.402626, - 45.491759 - ], - [ - -73.402493, - 45.491674 - ], - [ - -73.402463, - 45.491651 - ], - [ - -73.402075, - 45.491386 - ], - [ - -73.401668, - 45.491075 - ], - [ - -73.401167, - 45.490642 - ], - [ - -73.400821, - 45.490307 - ], - [ - -73.40081, - 45.490296 - ], - [ - -73.398797, - 45.488233 - ], - [ - -73.398629, - 45.488062 - ], - [ - -73.398311, - 45.487738 - ], - [ - -73.397543, - 45.486952 - ], - [ - -73.397073, - 45.486473 - ], - [ - -73.396659, - 45.486048 - ], - [ - -73.396515, - 45.485901 - ], - [ - -73.395797, - 45.485167 - ], - [ - -73.395424, - 45.48482 - ], - [ - -73.39519, - 45.484626 - ], - [ - -73.394903, - 45.484401 - ], - [ - -73.39465, - 45.484213 - ], - [ - -73.39454, - 45.484131 - ], - [ - -73.394481, - 45.484095 - ], - [ - -73.394291, - 45.483964 - ], - [ - -73.393942, - 45.483748 - ], - [ - -73.393737, - 45.48363 - ], - [ - -73.393666, - 45.48359 - ], - [ - -73.393194, - 45.483333 - ], - [ - -73.389604, - 45.481489 - ], - [ - -73.389467, - 45.481417 - ], - [ - -73.389334, - 45.481534 - ], - [ - -73.389135, - 45.481777 - ], - [ - -73.388998, - 45.481957 - ], - [ - -73.388994, - 45.481962 - ], - [ - -73.388761, - 45.482271 - ], - [ - -73.388459, - 45.482687 - ], - [ - -73.38817, - 45.483085 - ], - [ - -73.388122, - 45.483153 - ], - [ - -73.38807, - 45.483229 - ], - [ - -73.387267, - 45.484313 - ], - [ - -73.387181, - 45.484429 - ], - [ - -73.386793, - 45.484951 - ], - [ - -73.386456, - 45.485401 - ], - [ - -73.386282, - 45.485639 - ], - [ - -73.386108, - 45.485909 - ], - [ - -73.386009, - 45.486084 - ], - [ - -73.385921, - 45.486295 - ], - [ - -73.38587, - 45.486444 - ], - [ - -73.385849, - 45.486507 - ], - [ - -73.385822, - 45.486649 - ], - [ - -73.385794, - 45.486795 - ], - [ - -73.385708, - 45.487123 - ], - [ - -73.385538, - 45.487429 - ], - [ - -73.385285, - 45.487843 - ], - [ - -73.385029, - 45.488197 - ], - [ - -73.384988, - 45.488254 - ], - [ - -73.384901, - 45.488369 - ], - [ - -73.384743, - 45.488246 - ], - [ - -73.384445, - 45.488089 - ], - [ - -73.384044, - 45.487891 - ], - [ - -73.383491, - 45.487611 - ], - [ - -73.382868, - 45.487294 - ], - [ - -73.3825, - 45.487106 - ], - [ - -73.382345, - 45.487025 - ], - [ - -73.382231, - 45.487138 - ], - [ - -73.382081, - 45.487303 - ], - [ - -73.382078, - 45.487305 - ], - [ - -73.381863, - 45.487505 - ], - [ - -73.38174, - 45.487635 - ], - [ - -73.381669, - 45.487708 - ], - [ - -73.381607, - 45.487781 - ], - [ - -73.381582, - 45.48782 - ], - [ - -73.38156, - 45.487854 - ], - [ - -73.381517, - 45.487933 - ], - [ - -73.381404, - 45.488142 - ], - [ - -73.381186, - 45.488604 - ], - [ - -73.380868, - 45.489241 - ], - [ - -73.380854, - 45.489269 - ], - [ - -73.380814, - 45.489347 - ], - [ - -73.380351, - 45.490295 - ], - [ - -73.380087, - 45.490835 - ], - [ - -73.379711, - 45.491585 - ], - [ - -73.379127, - 45.492764 - ], - [ - -73.378925, - 45.49319 - ], - [ - -73.378909, - 45.493226 - ], - [ - -73.378882, - 45.493284 - ], - [ - -73.378825, - 45.493393 - ], - [ - -73.378766, - 45.493505 - ], - [ - -73.378702, - 45.493632 - ], - [ - -73.378691, - 45.493655 - ], - [ - -73.37748, - 45.496102 - ], - [ - -73.377435, - 45.496193 - ], - [ - -73.377344, - 45.496377 - ], - [ - -73.377276, - 45.496509 - ], - [ - -73.376682, - 45.497687 - ], - [ - -73.376245, - 45.498616 - ], - [ - -73.37615, - 45.498819 - ], - [ - -73.375996, - 45.499106 - ], - [ - -73.375297, - 45.50049 - ], - [ - -73.375165, - 45.500806 - ], - [ - -73.37513, - 45.500889 - ], - [ - -73.37508, - 45.500984 - ], - [ - -73.37455, - 45.501981 - ], - [ - -73.374382, - 45.50231 - ], - [ - -73.374326, - 45.502409 - ], - [ - -73.374466, - 45.502454 - ], - [ - -73.374786, - 45.50253 - ], - [ - -73.375092, - 45.502612 - ], - [ - -73.375264, - 45.502648 - ], - [ - -73.375427, - 45.502684 - ], - [ - -73.375574, - 45.502747 - ], - [ - -73.375726, - 45.502811 - ], - [ - -73.376319, - 45.503059 - ], - [ - -73.376016, - 45.503247 - ], - [ - -73.375972, - 45.503274 - ], - [ - -73.375737, - 45.503456 - ], - [ - -73.375698, - 45.503485 - ], - [ - -73.375447, - 45.503715 - ], - [ - -73.375293, - 45.503854 - ], - [ - -73.37517, - 45.50398 - ], - [ - -73.374998, - 45.504213 - ], - [ - -73.374854, - 45.504429 - ], - [ - -73.374722, - 45.5046 - ], - [ - -73.374697, - 45.504635 - ], - [ - -73.374625, - 45.504735 - ], - [ - -73.374598, - 45.504793 - ], - [ - -73.374583, - 45.504843 - ], - [ - -73.374565, - 45.504919 - ], - [ - -73.374581, - 45.50514 - ], - [ - -73.37462, - 45.505338 - ], - [ - -73.374746, - 45.505563 - ], - [ - -73.374844, - 45.505788 - ], - [ - -73.37488, - 45.50585 - ], - [ - -73.374951, - 45.505973 - ], - [ - -73.375061, - 45.506067 - ], - [ - -73.375295, - 45.506238 - ], - [ - -73.375424, - 45.506333 - ], - [ - -73.375748, - 45.506597 - ], - [ - -73.375784, - 45.506626 - ], - [ - -73.375859, - 45.506698 - ], - [ - -73.375911, - 45.506761 - ], - [ - -73.375985, - 45.506896 - ], - [ - -73.376046, - 45.507022 - ], - [ - -73.376084, - 45.507108 - ], - [ - -73.376268, - 45.507459 - ], - [ - -73.376298, - 45.507513 - ], - [ - -73.376345, - 45.507576 - ], - [ - -73.3764, - 45.507639 - ], - [ - -73.376512, - 45.507729 - ], - [ - -73.376632, - 45.507801 - ], - [ - -73.376837, - 45.507891 - ], - [ - -73.376868, - 45.507902 - ], - [ - -73.376914, - 45.507917 - ], - [ - -73.377114, - 45.507982 - ], - [ - -73.377442, - 45.508081 - ], - [ - -73.377571, - 45.508108 - ], - [ - -73.377699, - 45.508135 - ], - [ - -73.377779, - 45.508144 - ], - [ - -73.377878, - 45.50815 - ], - [ - -73.377933, - 45.508153 - ], - [ - -73.378119, - 45.508163 - ], - [ - -73.378452, - 45.508145 - ], - [ - -73.378562, - 45.50814 - ], - [ - -73.378788, - 45.50813 - ], - [ - -73.379007, - 45.50812 - ], - [ - -73.379147, - 45.508114 - ], - [ - -73.3793, - 45.508105 - ], - [ - -73.379404, - 45.508091 - ], - [ - -73.379526, - 45.508074 - ], - [ - -73.379622, - 45.508047 - ], - [ - -73.379724, - 45.508025 - ], - [ - -73.379863, - 45.507975 - ], - [ - -73.380059, - 45.50789 - ], - [ - -73.380179, - 45.507823 - ], - [ - -73.380268, - 45.507759 - ], - [ - -73.380399, - 45.507666 - ], - [ - -73.380485, - 45.507598 - ], - [ - -73.380503, - 45.507585 - ], - [ - -73.380626, - 45.507481 - ], - [ - -73.38128, - 45.507806 - ], - [ - -73.381389, - 45.507851 - ], - [ - -73.381468, - 45.507752 - ], - [ - -73.381562, - 45.507572 - ], - [ - -73.381667, - 45.507356 - ], - [ - -73.381733, - 45.507226 - ], - [ - -73.381816, - 45.507051 - ], - [ - -73.381935, - 45.506785 - ], - [ - -73.382054, - 45.506552 - ], - [ - -73.382181, - 45.506291 - ], - [ - -73.382203, - 45.506249 - ], - [ - -73.382294, - 45.50607 - ], - [ - -73.382297, - 45.506061 - ], - [ - -73.382427, - 45.506097 - ], - [ - -73.384621, - 45.506625 - ] - ] - }, - "id": 24, - "properties": { - "id": "e045a08e-28cf-4ab2-af26-a6bc4e246510", - "data": { - "gtfs": { - "shape_id": "8_1_R" - }, - "segments": [ - { - "distanceMeters": 1051, - "travelTimeSeconds": 159 - }, - { - "distanceMeters": 483, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 392, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 331, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 629, - "travelTimeSeconds": 117 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 426, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 366, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 509, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 673, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 455, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 378, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 466, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 339, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 426, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 455, - "travelTimeSeconds": 126 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 60 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 288, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 18803, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10805.013660132514, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.53, - "travelTimeWithoutDwellTimesSeconds": 2880, - "operatingTimeWithLayoverTimeSeconds": 3168, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2880, - "operatingSpeedWithLayoverMetersPerSecond": 5.94, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.53 - }, - "mode": "bus", - "name": "Promenades St-Bruno", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "b19be6c8-c333-401a-98e4-d16876257831", - "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "d00d9138-966b-4522-be1d-8c665c71246b", - "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", - "48ea0d06-7b69-4895-b55b-2a18e6e6f906", - "21e2e89a-3df0-4ff7-aa64-17a07fbd660e", - "0b419003-a369-45de-8ce5-7da6890d7f0a", - "680dba5d-14fa-4f77-98bd-f3a49fec7b48", - "f45a38ac-0f3f-41d9-9da1-be7902cc983a", - "9cf81604-6d70-4ba8-a3fc-521104742058", - "28f2fe65-961c-4550-a722-1e7790fe94ad", - "9d0a7ab6-be66-4ca9-b863-8712d8cd028c", - "999ed130-7d99-4115-ac3c-cabba7731288", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "27c5df15-201f-4855-9f49-556fd659fd8e", - "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", - "aa7795c0-dd5c-4462-b672-459c92223af2", - "49918c5a-8414-49fd-abf9-87ae6b9f3976", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "011d1f54-164c-4564-a051-bdacad3e287d", - "c3a2368c-bf2d-4c72-9adb-41ee799004b3", - "6885c351-726d-4431-84b5-d9262699183f", - "4e3112b5-abc7-4db5-a6a8-19b4193263c2", - "a5ca0f69-bb6f-4ef0-aaaa-1498b5ff9d00", - "ca3fc9fc-e2eb-41c4-a8d2-0ad2d2109db1", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "d3991811-d92b-4ba2-9732-26a74abc49b7", - "a873c2b7-5c8e-4dd4-9140-a7e8d042d038", - "b8513e69-5eee-478d-b428-8f498c145b40", - "344c16fc-7161-4015-9999-e3e0f325dd1e", - "abd431b8-dcf2-4c7a-a458-732690905187", - "dcaa1460-3c81-4616-b65b-ed7fae894032", - "a3922a48-9f26-4845-9881-2b33d59d0127", - "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", - "686bdc34-3602-4c31-b05f-c41f9ebe2543", - "48cbd834-3690-4d56-af66-277be54f9820", - "648a2d3d-42dd-4ea9-875b-0eb410b8b1e8", - "74cb2351-ff1a-4938-8179-802bb3572f42", - "b904303e-de8b-4c71-8b48-48af0de2a9a1", - "61fd8171-4497-441f-b32a-7917186d6014", - "7de9ea25-e152-4431-8cc3-23b5e1427ab3", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "5dd96d41-c4eb-4453-9e97-752999b1688d", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "df4c6e14-8093-4f02-87d3-4b3d84466b04", - "7c34d8fb-52d2-4cf7-8954-ff69847540ac", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "7b30134c-a936-4c6b-8038-780d1041baea", - "9f7ffafe-2aab-4507-b571-cce792adfb7d", - "ff83e3ed-db76-4049-b206-f6a7eb53237f", - "897e999c-9046-44e1-af66-78d190574a64", - "d664171d-6b67-486f-b850-92d7b923ec60", - "af654275-2b6e-4152-a4be-6ba5d5eb2c23", - "8a7f5b7c-86e5-412e-a099-1a9d5ca8dce9", - "c7be2a86-2a63-43b1-993a-6ba9a80be235", - "afdaecf9-9edf-499b-a1d1-693abc0ee347", - "88be8076-6606-4cc2-82bf-848c6a92b1c2", - "284a178b-f032-40f4-9bf0-0ba74e13d985", - "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", - "01e0bcb2-ac63-4c88-b110-c273905a1d5c", - "c4c03f6a-b2dc-4fb8-87cd-df1a4417beae", - "71f7bbc9-363a-40ba-86f7-7f9ec638da55" - ], - "stops": [], - "line_id": "22e67405-9e1a-4912-aa11-919864f608e1", - "segments": [ - 0, - 43, - 62, - 67, - 75, - 83, - 90, - 100, - 103, - 109, - 114, - 120, - 124, - 127, - 130, - 135, - 138, - 145, - 151, - 156, - 160, - 163, - 170, - 173, - 179, - 186, - 190, - 195, - 200, - 203, - 208, - 210, - 212, - 214, - 217, - 222, - 226, - 231, - 255, - 262, - 276, - 278, - 286, - 303, - 309, - 313, - 319, - 327, - 333, - 342, - 347, - 353, - 368, - 373, - 387, - 404, - 410, - 417, - 423, - 428, - 432, - 448, - 465, - 497, - 509, - 522 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 24, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.385045, - 45.506579 - ], - [ - -73.384797, - 45.506518 - ], - [ - -73.383777, - 45.506274 - ], - [ - -73.382498, - 45.505967 - ], - [ - -73.382363, - 45.505931 - ], - [ - -73.382185, - 45.50589 - ], - [ - -73.382118, - 45.506021 - ], - [ - -73.381841, - 45.50662 - ], - [ - -73.381335, - 45.507721 - ], - [ - -73.380701, - 45.507418 - ], - [ - -73.380626, - 45.507481 - ], - [ - -73.380503, - 45.507585 - ], - [ - -73.380399, - 45.507666 - ], - [ - -73.380268, - 45.507759 - ], - [ - -73.380179, - 45.507823 - ], - [ - -73.380059, - 45.50789 - ], - [ - -73.379863, - 45.507975 - ], - [ - -73.379724, - 45.508025 - ], - [ - -73.379622, - 45.508047 - ], - [ - -73.379526, - 45.508074 - ], - [ - -73.379404, - 45.508091 - ], - [ - -73.3793, - 45.508105 - ], - [ - -73.379151, - 45.508114 - ], - [ - -73.379147, - 45.508114 - ], - [ - -73.378562, - 45.50814 - ], - [ - -73.378452, - 45.508145 - ], - [ - -73.378119, - 45.508163 - ], - [ - -73.377933, - 45.508153 - ], - [ - -73.377878, - 45.50815 - ], - [ - -73.377779, - 45.508144 - ], - [ - -73.377699, - 45.508135 - ], - [ - -73.377571, - 45.508108 - ], - [ - -73.377442, - 45.508081 - ], - [ - -73.377114, - 45.507982 - ], - [ - -73.376914, - 45.507917 - ], - [ - -73.376868, - 45.507902 - ], - [ - -73.376837, - 45.507891 - ], - [ - -73.376632, - 45.507801 - ], - [ - -73.376512, - 45.507729 - ], - [ - -73.3764, - 45.507639 - ], - [ - -73.376345, - 45.507576 - ], - [ - -73.376298, - 45.507513 - ], - [ - -73.376268, - 45.507459 - ], - [ - -73.376084, - 45.507108 - ], - [ - -73.376046, - 45.507022 - ], - [ - -73.375985, - 45.506896 - ], - [ - -73.375911, - 45.506761 - ], - [ - -73.375859, - 45.506698 - ], - [ - -73.375784, - 45.506626 - ], - [ - -73.375748, - 45.506597 - ], - [ - -73.375424, - 45.506333 - ], - [ - -73.375295, - 45.506238 - ], - [ - -73.375146, - 45.50613 - ], - [ - -73.375061, - 45.506067 - ], - [ - -73.374951, - 45.505973 - ], - [ - -73.374844, - 45.505788 - ], - [ - -73.374746, - 45.505563 - ], - [ - -73.37462, - 45.505338 - ], - [ - -73.374581, - 45.50514 - ], - [ - -73.374565, - 45.504919 - ], - [ - -73.374583, - 45.504843 - ], - [ - -73.374598, - 45.504793 - ], - [ - -73.374625, - 45.504735 - ], - [ - -73.374697, - 45.504635 - ], - [ - -73.374722, - 45.5046 - ], - [ - -73.374854, - 45.504429 - ], - [ - -73.374998, - 45.504213 - ], - [ - -73.37517, - 45.50398 - ], - [ - -73.375293, - 45.503854 - ], - [ - -73.375447, - 45.503715 - ], - [ - -73.375698, - 45.503485 - ], - [ - -73.375972, - 45.503274 - ], - [ - -73.376016, - 45.503247 - ], - [ - -73.376319, - 45.503059 - ], - [ - -73.376411, - 45.502996 - ], - [ - -73.375361, - 45.502572 - ], - [ - -73.375249, - 45.50254 - ], - [ - -73.375184, - 45.502508 - ], - [ - -73.375095, - 45.502468 - ], - [ - -73.375002, - 45.502427 - ], - [ - -73.374935, - 45.502409 - ], - [ - -73.37489, - 45.502387 - ], - [ - -73.374858, - 45.502373 - ], - [ - -73.374823, - 45.502351 - ], - [ - -73.374781, - 45.502315 - ], - [ - -73.37474, - 45.502247 - ], - [ - -73.374726, - 45.502157 - ], - [ - -73.374691, - 45.502013 - ], - [ - -73.375153, - 45.501079 - ], - [ - -73.375188, - 45.501009 - ], - [ - -73.375237, - 45.500914 - ], - [ - -73.375969, - 45.499457 - ], - [ - -73.376041, - 45.499312 - ], - [ - -73.376208, - 45.498993 - ], - [ - -73.376284, - 45.498857 - ], - [ - -73.376363, - 45.498701 - ], - [ - -73.376563, - 45.498311 - ], - [ - -73.376773, - 45.497866 - ], - [ - -73.377041, - 45.497337 - ], - [ - -73.377342, - 45.496707 - ], - [ - -73.377583, - 45.496221 - ], - [ - -73.378124, - 45.495128 - ], - [ - -73.378504, - 45.494364 - ], - [ - -73.37897, - 45.493424 - ], - [ - -73.379025, - 45.493316 - ], - [ - -73.380237, - 45.490872 - ], - [ - -73.380977, - 45.489378 - ], - [ - -73.381377, - 45.488567 - ], - [ - -73.381663, - 45.487992 - ], - [ - -73.381706, - 45.487906 - ], - [ - -73.381802, - 45.487771 - ], - [ - -73.381937, - 45.487627 - ], - [ - -73.382149, - 45.487431 - ], - [ - -73.382304, - 45.487304 - ], - [ - -73.38239, - 45.487214 - ], - [ - -73.382504, - 45.487272 - ], - [ - -73.382639, - 45.48734 - ], - [ - -73.383202, - 45.487615 - ], - [ - -73.383953, - 45.487976 - ], - [ - -73.384699, - 45.48831 - ], - [ - -73.384728, - 45.48832 - ], - [ - -73.384901, - 45.488369 - ], - [ - -73.384978, - 45.488267 - ], - [ - -73.384988, - 45.488254 - ], - [ - -73.385285, - 45.487843 - ], - [ - -73.385538, - 45.487429 - ], - [ - -73.385708, - 45.487123 - ], - [ - -73.385794, - 45.486795 - ], - [ - -73.385822, - 45.486649 - ], - [ - -73.385849, - 45.486507 - ], - [ - -73.38587, - 45.486444 - ], - [ - -73.385921, - 45.486295 - ], - [ - -73.386009, - 45.486084 - ], - [ - -73.386108, - 45.485909 - ], - [ - -73.386282, - 45.485639 - ], - [ - -73.386456, - 45.485401 - ], - [ - -73.386793, - 45.484951 - ], - [ - -73.387267, - 45.484313 - ], - [ - -73.387558, - 45.484142 - ], - [ - -73.387743, - 45.483913 - ], - [ - -73.388271, - 45.483202 - ], - [ - -73.388318, - 45.483139 - ], - [ - -73.388909, - 45.482326 - ], - [ - -73.38905, - 45.482092 - ], - [ - -73.389058, - 45.48208 - ], - [ - -73.389113, - 45.481997 - ], - [ - -73.389343, - 45.481827 - ], - [ - -73.389435, - 45.481795 - ], - [ - -73.389539, - 45.481786 - ], - [ - -73.389628, - 45.481786 - ], - [ - -73.389709, - 45.4818 - ], - [ - -73.390071, - 45.481927 - ], - [ - -73.390313, - 45.482057 - ], - [ - -73.390427, - 45.482115 - ], - [ - -73.390518, - 45.482162 - ], - [ - -73.393166, - 45.483526 - ], - [ - -73.393715, - 45.483828 - ], - [ - -73.393921, - 45.48395 - ], - [ - -73.394098, - 45.484066 - ], - [ - -73.394183, - 45.484121 - ], - [ - -73.394326, - 45.48422 - ], - [ - -73.394526, - 45.48436 - ], - [ - -73.394852, - 45.484608 - ], - [ - -73.395097, - 45.484806 - ], - [ - -73.395347, - 45.485022 - ], - [ - -73.395593, - 45.485252 - ], - [ - -73.396207, - 45.485878 - ], - [ - -73.396316, - 45.48599 - ], - [ - -73.396877, - 45.486562 - ], - [ - -73.397253, - 45.486945 - ], - [ - -73.397988, - 45.487693 - ], - [ - -73.398404, - 45.488122 - ], - [ - -73.398503, - 45.488224 - ], - [ - -73.400292, - 45.490061 - ], - [ - -73.400326, - 45.490096 - ], - [ - -73.400631, - 45.490403 - ], - [ - -73.40073, - 45.490503 - ], - [ - -73.40103, - 45.490791 - ], - [ - -73.401471, - 45.491169 - ], - [ - -73.401956, - 45.491543 - ], - [ - -73.402246, - 45.491739 - ], - [ - -73.402249, - 45.491741 - ], - [ - -73.402357, - 45.491809 - ], - [ - -73.40251, - 45.491908 - ], - [ - -73.402561, - 45.491939 - ], - [ - -73.403076, - 45.492241 - ], - [ - -73.403455, - 45.492444 - ], - [ - -73.40351, - 45.492471 - ], - [ - -73.403928, - 45.492669 - ], - [ - -73.405646, - 45.493445 - ], - [ - -73.406273, - 45.493728 - ], - [ - -73.406465, - 45.493815 - ], - [ - -73.407044, - 45.494076 - ], - [ - -73.407318, - 45.494207 - ], - [ - -73.407449, - 45.49427 - ], - [ - -73.408138, - 45.494635 - ], - [ - -73.408558, - 45.494867 - ], - [ - -73.408708, - 45.49495 - ], - [ - -73.408748, - 45.494972 - ], - [ - -73.408851, - 45.495036 - ], - [ - -73.4093, - 45.495297 - ], - [ - -73.410398, - 45.49591 - ], - [ - -73.410586, - 45.496009 - ], - [ - -73.410729, - 45.496085 - ], - [ - -73.411068, - 45.496248 - ], - [ - -73.41156, - 45.496461 - ], - [ - -73.411587, - 45.496473 - ], - [ - -73.412271, - 45.49673 - ], - [ - -73.412864, - 45.496955 - ], - [ - -73.413662, - 45.497245 - ], - [ - -73.414507, - 45.497553 - ], - [ - -73.415733, - 45.497998 - ], - [ - -73.416461, - 45.498262 - ], - [ - -73.416635, - 45.498326 - ], - [ - -73.416723, - 45.498362 - ], - [ - -73.417312, - 45.498592 - ], - [ - -73.417435, - 45.498648 - ], - [ - -73.417607, - 45.498727 - ], - [ - -73.418042, - 45.498952 - ], - [ - -73.418335, - 45.499128 - ], - [ - -73.418479, - 45.499214 - ], - [ - -73.418764, - 45.499407 - ], - [ - -73.419209, - 45.499737 - ], - [ - -73.419305, - 45.499808 - ], - [ - -73.419729, - 45.500092 - ], - [ - -73.419878, - 45.500182 - ], - [ - -73.420342, - 45.50043 - ], - [ - -73.420676, - 45.50059 - ], - [ - -73.420784, - 45.500641 - ], - [ - -73.420878, - 45.500678 - ], - [ - -73.421089, - 45.500763 - ], - [ - -73.421557, - 45.500934 - ], - [ - -73.421727, - 45.500998 - ], - [ - -73.422541, - 45.501286 - ], - [ - -73.423018, - 45.501457 - ], - [ - -73.423261, - 45.501544 - ], - [ - -73.423423, - 45.501602 - ], - [ - -73.424204, - 45.50188 - ], - [ - -73.425912, - 45.502488 - ], - [ - -73.426184, - 45.502584 - ], - [ - -73.427788, - 45.503152 - ], - [ - -73.428083, - 45.503265 - ], - [ - -73.428273, - 45.50335 - ], - [ - -73.428512, - 45.503472 - ], - [ - -73.428643, - 45.503549 - ], - [ - -73.428884, - 45.503715 - ], - [ - -73.428992, - 45.503801 - ], - [ - -73.429012, - 45.50382 - ], - [ - -73.429175, - 45.503967 - ], - [ - -73.429253, - 45.504057 - ], - [ - -73.429303, - 45.504111 - ], - [ - -73.429332, - 45.504143 - ], - [ - -73.429383, - 45.504202 - ], - [ - -73.429476, - 45.504345 - ], - [ - -73.429494, - 45.504373 - ], - [ - -73.429599, - 45.504566 - ], - [ - -73.429648, - 45.504679 - ], - [ - -73.429656, - 45.504708 - ], - [ - -73.429758, - 45.505057 - ], - [ - -73.429931, - 45.505834 - ], - [ - -73.430026, - 45.506263 - ], - [ - -73.430066, - 45.506425 - ], - [ - -73.430099, - 45.506555 - ], - [ - -73.430103, - 45.506573 - ], - [ - -73.4302, - 45.506807 - ], - [ - -73.430341, - 45.507086 - ], - [ - -73.430485, - 45.507257 - ], - [ - -73.430506, - 45.507276 - ], - [ - -73.430509, - 45.507278 - ], - [ - -73.430608, - 45.507365 - ], - [ - -73.430672, - 45.507415 - ], - [ - -73.431358, - 45.507856 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431666, - 45.508054 - ], - [ - -73.432482, - 45.508559 - ], - [ - -73.433021, - 45.508883 - ], - [ - -73.433395, - 45.509082 - ], - [ - -73.433453, - 45.509113 - ], - [ - -73.433482, - 45.509127 - ], - [ - -73.43374, - 45.509257 - ], - [ - -73.434128, - 45.509428 - ], - [ - -73.43476, - 45.509703 - ], - [ - -73.435345, - 45.509952 - ], - [ - -73.435478, - 45.510009 - ], - [ - -73.435758, - 45.510131 - ], - [ - -73.435893, - 45.510189 - ], - [ - -73.43661, - 45.510502 - ], - [ - -73.437183, - 45.510752 - ], - [ - -73.437938, - 45.511081 - ], - [ - -73.438224, - 45.511212 - ], - [ - -73.438474, - 45.511325 - ], - [ - -73.439008, - 45.511568 - ], - [ - -73.439428, - 45.511747 - ], - [ - -73.439738, - 45.511879 - ], - [ - -73.43983, - 45.511919 - ], - [ - -73.439896, - 45.511951 - ], - [ - -73.440237, - 45.512095 - ], - [ - -73.441448, - 45.512613 - ], - [ - -73.441811, - 45.512775 - ], - [ - -73.442874, - 45.513204 - ], - [ - -73.443061, - 45.51328 - ], - [ - -73.445634, - 45.514379 - ], - [ - -73.445657, - 45.514389 - ], - [ - -73.446646, - 45.514811 - ], - [ - -73.448389, - 45.515528 - ], - [ - -73.448481, - 45.515566 - ], - [ - -73.44854, - 45.51559 - ], - [ - -73.449494, - 45.515978 - ], - [ - -73.449844, - 45.516127 - ], - [ - -73.450296, - 45.51632 - ], - [ - -73.45136, - 45.516756 - ], - [ - -73.451373, - 45.516761 - ], - [ - -73.451903, - 45.516982 - ], - [ - -73.452053, - 45.517054 - ], - [ - -73.45224, - 45.517153 - ], - [ - -73.452412, - 45.517228 - ], - [ - -73.452518, - 45.517275 - ], - [ - -73.453808, - 45.5178 - ], - [ - -73.453977, - 45.517869 - ], - [ - -73.454088, - 45.517914 - ], - [ - -73.454764, - 45.518193 - ], - [ - -73.455195, - 45.518372 - ], - [ - -73.455625, - 45.518549 - ], - [ - -73.45631, - 45.518837 - ], - [ - -73.457036, - 45.519133 - ], - [ - -73.457149, - 45.51918 - ], - [ - -73.457268, - 45.519234 - ], - [ - -73.458416, - 45.519718 - ], - [ - -73.458582, - 45.519788 - ], - [ - -73.46019, - 45.520461 - ], - [ - -73.460326, - 45.520518 - ], - [ - -73.460513, - 45.520597 - ], - [ - -73.462498, - 45.52143 - ], - [ - -73.462791, - 45.521553 - ], - [ - -73.463771, - 45.521954 - ], - [ - -73.463823, - 45.521976 - ], - [ - -73.464215, - 45.522138 - ], - [ - -73.464352, - 45.522188 - ], - [ - -73.464459, - 45.522246 - ], - [ - -73.464607, - 45.522332 - ], - [ - -73.465155, - 45.522551 - ], - [ - -73.465496, - 45.522687 - ], - [ - -73.466002, - 45.522899 - ], - [ - -73.466103, - 45.522924 - ], - [ - -73.466276, - 45.522967 - ], - [ - -73.467237, - 45.523363 - ], - [ - -73.467893, - 45.52364 - ], - [ - -73.468048, - 45.523705 - ], - [ - -73.468866, - 45.524038 - ], - [ - -73.469522, - 45.524322 - ], - [ - -73.469644, - 45.524372 - ], - [ - -73.469721, - 45.524403 - ], - [ - -73.470239, - 45.524623 - ], - [ - -73.470555, - 45.524749 - ], - [ - -73.471094, - 45.524979 - ], - [ - -73.471997, - 45.525357 - ], - [ - -73.47246, - 45.525553 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.474655, - 45.526465 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.475467, - 45.526811 - ], - [ - -73.475894, - 45.526982 - ], - [ - -73.476153, - 45.52709 - ], - [ - -73.476219, - 45.527117 - ], - [ - -73.476969, - 45.527428 - ], - [ - -73.477725, - 45.527748 - ], - [ - -73.478331, - 45.528004 - ], - [ - -73.478598, - 45.528117 - ], - [ - -73.479454, - 45.528472 - ], - [ - -73.480164, - 45.528774 - ], - [ - -73.480753, - 45.529011 - ], - [ - -73.48089, - 45.529066 - ], - [ - -73.481413, - 45.529294 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.484961, - 45.530774 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.488424, - 45.532213 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.490635, - 45.533124 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.492955, - 45.534081 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.494094, - 45.534551 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.495628, - 45.535241 - ], - [ - -73.495883, - 45.535371 - ], - [ - -73.496551, - 45.535683 - ], - [ - -73.496645, - 45.535727 - ], - [ - -73.49677, - 45.535781 - ], - [ - -73.49726, - 45.535988 - ], - [ - -73.498459, - 45.536487 - ], - [ - -73.498936, - 45.536687 - ], - [ - -73.499435, - 45.536897 - ], - [ - -73.501142, - 45.537612 - ], - [ - -73.502066, - 45.537998 - ], - [ - -73.503263, - 45.538498 - ], - [ - -73.503424, - 45.538566 - ], - [ - -73.503808, - 45.538728 - ], - [ - -73.503912, - 45.538786 - ], - [ - -73.504095, - 45.538926 - ], - [ - -73.504553, - 45.539317 - ], - [ - -73.504747, - 45.539452 - ], - [ - -73.50477, - 45.539464 - ], - [ - -73.504898, - 45.539533 - ], - [ - -73.506469, - 45.540185 - ], - [ - -73.507029, - 45.540406 - ], - [ - -73.507958, - 45.540788 - ], - [ - -73.508096, - 45.540847 - ], - [ - -73.508112, - 45.54082 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.50824, - 45.540633 - ], - [ - -73.50834, - 45.540487 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.509502, - 45.538865 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.511595, - 45.537128 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.513272, - 45.536035 - ], - [ - -73.513413, - 45.535879 - ], - [ - -73.513707, - 45.535583 - ], - [ - -73.513941, - 45.535349 - ], - [ - -73.513977, - 45.535314 - ], - [ - -73.514031, - 45.535263 - ], - [ - -73.514312, - 45.534967 - ], - [ - -73.514735, - 45.53454 - ], - [ - -73.514842, - 45.53442 - ], - [ - -73.514898, - 45.534357 - ], - [ - -73.515145, - 45.534084 - ], - [ - -73.515317, - 45.533897 - ], - [ - -73.515372, - 45.533842 - ], - [ - -73.515504, - 45.533699 - ], - [ - -73.515513, - 45.533689 - ], - [ - -73.515888, - 45.533287 - ], - [ - -73.515986, - 45.533193 - ], - [ - -73.516619, - 45.532644 - ], - [ - -73.516729, - 45.532549 - ], - [ - -73.517579, - 45.531802 - ], - [ - -73.517931, - 45.531459 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518212, - 45.531168 - ], - [ - -73.51845, - 45.53088 - ], - [ - -73.518608, - 45.530695 - ], - [ - -73.518713, - 45.530574 - ], - [ - -73.518834, - 45.53043 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519398, - 45.526004 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 25, - "properties": { - "id": "f139bddd-2bcc-4842-aa14-1e419f23feb4", - "data": { - "gtfs": { - "shape_id": "8_1_A" - }, - "segments": [ - { - "distanceMeters": 4444, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 492, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 421, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 479, - "travelTimeSeconds": 85 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 88, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 635, - "travelTimeSeconds": 141 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 119 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 252, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 18493, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11311.636007063355, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.34, - "travelTimeWithoutDwellTimesSeconds": 2520, - "operatingTimeWithLayoverTimeSeconds": 2772, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2520, - "operatingSpeedWithLayoverMetersPerSecond": 6.67, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.34 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "2ccb6d20-bc23-4c70-b31c-28503c25783e", - "6d96a7b5-b2cd-4cb0-a3d1-b914f081bde3", - "9f7ffafe-2aab-4507-b571-cce792adfb7d", - "819870cc-ffb6-4a2a-add6-5b056cc3e4c0", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", - "7c34d8fb-52d2-4cf7-8954-ff69847540ac", - "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", - "76b4c3d5-f580-480d-bfec-c2639dd60d13", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", - "e654777c-6941-47f5-a273-d73ab074f10e", - "bb148567-d18f-49e1-a388-f782610c5390", - "e8e5c7df-2edf-4749-98c2-97962c7eff9c", - "a0b2e96c-f14a-4143-9ef3-8bb0e0e8a984", - "1b175835-d1cc-4713-943f-5472ffaa8fea", - "b4fcda7a-779e-4762-b2e5-038988d405be", - "80008949-5a0f-4c5e-b778-592c2ee8487f", - "53ead0f5-ebe4-4285-9d12-aa867ff0e782", - "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", - "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", - "7b1c691c-8a55-45c2-8401-9d619a0efb76", - "c4825963-416e-404b-a744-6ffe763e2d89", - "344c16fc-7161-4015-9999-e3e0f325dd1e", - "5636d204-312b-4d1e-bac7-614621da4bb5", - "d3991811-d92b-4ba2-9732-26a74abc49b7", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "5981cea7-b196-4e72-820c-362fb9c4e212", - "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", - "130245ae-209b-4e27-b903-ff57832b92eb", - "0d6b35f8-1b6c-4403-a7a5-53247aec7649", - "c3a2368c-bf2d-4c72-9adb-41ee799004b3", - "011d1f54-164c-4564-a051-bdacad3e287d", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "49918c5a-8414-49fd-abf9-87ae6b9f3976", - "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", - "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", - "65175945-c54c-4732-85a9-890393a0975c", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "999ed130-7d99-4115-ac3c-cabba7731288", - "d15f81ba-7519-47f7-aa07-0026f1b03e42", - "28f2fe65-961c-4550-a722-1e7790fe94ad", - "9cf81604-6d70-4ba8-a3fc-521104742058", - "4d48f36b-2274-4392-afac-b2c2c64b98f0", - "5f58acb6-be68-437f-bde7-a77d03125af9", - "4e61612c-2f48-47d6-ad42-7c0737853911", - "e46ba2d2-9f30-419f-acae-c73c3ef665c5", - "48ea0d06-7b69-4895-b55b-2a18e6e6f906", - "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", - "d00d9138-966b-4522-be1d-8c665c71246b", - "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "649e6394-9376-40eb-bc0e-4a376a0044aa", - "4fb4515b-e129-4622-b855-89143c2fd488", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "22e67405-9e1a-4912-aa11-919864f608e1", - "segments": [ - 0, - 144, - 158, - 166, - 171, - 174, - 180, - 187, - 190, - 196, - 202, - 209, - 212, - 227, - 235, - 238, - 253, - 259, - 278, - 282, - 290, - 292, - 299, - 302, - 304, - 310, - 318, - 324, - 329, - 334, - 340, - 346, - 350, - 356, - 360, - 364, - 368, - 374, - 381, - 384, - 388, - 393, - 395, - 401, - 406, - 410, - 417, - 426, - 432, - 440, - 448, - 458, - 461, - 464, - 481 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 25, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.385045, - 45.506579 - ], - [ - -73.384797, - 45.506518 - ], - [ - -73.383777, - 45.506274 - ], - [ - -73.382498, - 45.505967 - ], - [ - -73.382363, - 45.505931 - ], - [ - -73.382185, - 45.50589 - ], - [ - -73.382118, - 45.506021 - ], - [ - -73.381841, - 45.50662 - ], - [ - -73.38158, - 45.507189 - ], - [ - -73.381335, - 45.507721 - ], - [ - -73.380701, - 45.507418 - ], - [ - -73.380626, - 45.507481 - ], - [ - -73.380503, - 45.507585 - ], - [ - -73.380399, - 45.507666 - ], - [ - -73.380268, - 45.507759 - ], - [ - -73.380179, - 45.507823 - ], - [ - -73.380059, - 45.50789 - ], - [ - -73.379863, - 45.507975 - ], - [ - -73.379724, - 45.508025 - ], - [ - -73.379622, - 45.508047 - ], - [ - -73.379526, - 45.508074 - ], - [ - -73.379404, - 45.508091 - ], - [ - -73.3793, - 45.508105 - ], - [ - -73.379201, - 45.508111 - ], - [ - -73.379151, - 45.508114 - ], - [ - -73.379147, - 45.508114 - ], - [ - -73.378562, - 45.50814 - ], - [ - -73.378452, - 45.508145 - ], - [ - -73.378119, - 45.508163 - ], - [ - -73.377933, - 45.508153 - ], - [ - -73.377878, - 45.50815 - ], - [ - -73.377779, - 45.508144 - ], - [ - -73.377699, - 45.508135 - ], - [ - -73.377571, - 45.508108 - ], - [ - -73.377442, - 45.508081 - ], - [ - -73.377114, - 45.507982 - ], - [ - -73.376914, - 45.507917 - ], - [ - -73.376868, - 45.507902 - ], - [ - -73.376837, - 45.507891 - ], - [ - -73.376632, - 45.507801 - ], - [ - -73.376512, - 45.507729 - ], - [ - -73.3764, - 45.507639 - ], - [ - -73.376345, - 45.507576 - ], - [ - -73.376298, - 45.507513 - ], - [ - -73.376268, - 45.507459 - ], - [ - -73.376084, - 45.507108 - ], - [ - -73.376046, - 45.507022 - ], - [ - -73.375985, - 45.506896 - ], - [ - -73.375911, - 45.506761 - ], - [ - -73.375859, - 45.506698 - ], - [ - -73.375784, - 45.506626 - ], - [ - -73.375748, - 45.506597 - ], - [ - -73.375424, - 45.506333 - ], - [ - -73.375295, - 45.506238 - ], - [ - -73.375228, - 45.506189 - ], - [ - -73.375146, - 45.50613 - ], - [ - -73.375061, - 45.506067 - ], - [ - -73.374951, - 45.505973 - ], - [ - -73.374844, - 45.505788 - ], - [ - -73.374746, - 45.505563 - ], - [ - -73.37462, - 45.505338 - ], - [ - -73.374581, - 45.50514 - ], - [ - -73.374565, - 45.504919 - ], - [ - -73.374583, - 45.504843 - ], - [ - -73.374598, - 45.504793 - ], - [ - -73.374625, - 45.504735 - ], - [ - -73.374697, - 45.504635 - ], - [ - -73.374722, - 45.5046 - ], - [ - -73.374854, - 45.504429 - ], - [ - -73.374998, - 45.504213 - ], - [ - -73.37517, - 45.50398 - ], - [ - -73.375293, - 45.503854 - ], - [ - -73.375447, - 45.503715 - ], - [ - -73.375698, - 45.503485 - ], - [ - -73.375972, - 45.503274 - ], - [ - -73.376016, - 45.503247 - ], - [ - -73.376319, - 45.503059 - ], - [ - -73.376411, - 45.502996 - ], - [ - -73.375361, - 45.502572 - ], - [ - -73.375249, - 45.50254 - ], - [ - -73.375184, - 45.502508 - ], - [ - -73.375095, - 45.502468 - ], - [ - -73.375002, - 45.502427 - ], - [ - -73.374935, - 45.502409 - ], - [ - -73.37489, - 45.502387 - ], - [ - -73.374858, - 45.502373 - ], - [ - -73.374823, - 45.502351 - ], - [ - -73.374781, - 45.502315 - ], - [ - -73.37474, - 45.502247 - ], - [ - -73.374726, - 45.502157 - ], - [ - -73.374691, - 45.502013 - ], - [ - -73.375145, - 45.501095 - ], - [ - -73.375153, - 45.501079 - ], - [ - -73.375188, - 45.501009 - ], - [ - -73.375237, - 45.500914 - ], - [ - -73.375969, - 45.499457 - ], - [ - -73.376041, - 45.499312 - ], - [ - -73.376208, - 45.498993 - ], - [ - -73.376284, - 45.498857 - ], - [ - -73.376363, - 45.498701 - ], - [ - -73.376515, - 45.498405 - ], - [ - -73.376563, - 45.498311 - ], - [ - -73.376773, - 45.497866 - ], - [ - -73.377041, - 45.497337 - ], - [ - -73.377342, - 45.496707 - ], - [ - -73.377537, - 45.496314 - ], - [ - -73.377583, - 45.496221 - ], - [ - -73.378124, - 45.495128 - ], - [ - -73.378504, - 45.494364 - ], - [ - -73.378909, - 45.493548 - ], - [ - -73.37897, - 45.493424 - ], - [ - -73.379025, - 45.493316 - ], - [ - -73.380237, - 45.490872 - ], - [ - -73.380908, - 45.489517 - ], - [ - -73.380977, - 45.489378 - ], - [ - -73.381377, - 45.488567 - ], - [ - -73.381663, - 45.487992 - ], - [ - -73.381706, - 45.487906 - ], - [ - -73.381802, - 45.487771 - ], - [ - -73.381937, - 45.487627 - ], - [ - -73.382149, - 45.487431 - ], - [ - -73.38218, - 45.487405 - ], - [ - -73.382304, - 45.487304 - ], - [ - -73.38239, - 45.487214 - ], - [ - -73.382504, - 45.487272 - ], - [ - -73.382639, - 45.48734 - ], - [ - -73.383202, - 45.487615 - ], - [ - -73.383953, - 45.487976 - ], - [ - -73.384699, - 45.48831 - ], - [ - -73.384728, - 45.48832 - ], - [ - -73.384901, - 45.488369 - ], - [ - -73.384978, - 45.488267 - ], - [ - -73.384988, - 45.488254 - ], - [ - -73.385285, - 45.487843 - ], - [ - -73.385538, - 45.487429 - ], - [ - -73.385708, - 45.487123 - ], - [ - -73.385794, - 45.486795 - ], - [ - -73.385822, - 45.486649 - ], - [ - -73.385849, - 45.486507 - ], - [ - -73.38587, - 45.486444 - ], - [ - -73.385921, - 45.486295 - ], - [ - -73.386009, - 45.486084 - ], - [ - -73.386108, - 45.485909 - ], - [ - -73.386282, - 45.485639 - ], - [ - -73.386456, - 45.485401 - ], - [ - -73.386793, - 45.484951 - ], - [ - -73.387267, - 45.484313 - ], - [ - -73.387558, - 45.484142 - ], - [ - -73.387721, - 45.483941 - ], - [ - -73.387743, - 45.483913 - ], - [ - -73.388271, - 45.483202 - ], - [ - -73.388318, - 45.483139 - ], - [ - -73.388909, - 45.482326 - ], - [ - -73.38905, - 45.482092 - ], - [ - -73.389058, - 45.48208 - ], - [ - -73.389113, - 45.481997 - ], - [ - -73.389343, - 45.481827 - ], - [ - -73.389435, - 45.481795 - ], - [ - -73.389539, - 45.481786 - ], - [ - -73.389628, - 45.481786 - ], - [ - -73.389709, - 45.4818 - ], - [ - -73.390071, - 45.481927 - ], - [ - -73.390313, - 45.482057 - ], - [ - -73.390427, - 45.482115 - ], - [ - -73.390518, - 45.482162 - ], - [ - -73.393166, - 45.483526 - ], - [ - -73.393715, - 45.483828 - ], - [ - -73.393921, - 45.48395 - ], - [ - -73.394098, - 45.484066 - ], - [ - -73.394183, - 45.484121 - ], - [ - -73.394326, - 45.48422 - ], - [ - -73.394526, - 45.48436 - ], - [ - -73.394852, - 45.484608 - ], - [ - -73.395097, - 45.484806 - ], - [ - -73.395347, - 45.485022 - ], - [ - -73.395593, - 45.485252 - ], - [ - -73.396207, - 45.485878 - ], - [ - -73.396316, - 45.48599 - ], - [ - -73.396877, - 45.486562 - ], - [ - -73.397253, - 45.486945 - ], - [ - -73.397988, - 45.487693 - ], - [ - -73.398404, - 45.488122 - ], - [ - -73.398503, - 45.488224 - ], - [ - -73.400292, - 45.490061 - ], - [ - -73.400326, - 45.490096 - ], - [ - -73.400631, - 45.490403 - ], - [ - -73.40073, - 45.490503 - ], - [ - -73.40103, - 45.490791 - ], - [ - -73.401471, - 45.491169 - ], - [ - -73.401956, - 45.491543 - ], - [ - -73.402246, - 45.491739 - ], - [ - -73.402249, - 45.491741 - ], - [ - -73.402357, - 45.491809 - ], - [ - -73.40251, - 45.491908 - ], - [ - -73.402561, - 45.491939 - ], - [ - -73.403076, - 45.492241 - ], - [ - -73.403455, - 45.492444 - ], - [ - -73.40351, - 45.492471 - ], - [ - -73.403928, - 45.492669 - ], - [ - -73.405646, - 45.493445 - ], - [ - -73.406273, - 45.493728 - ], - [ - -73.406465, - 45.493815 - ], - [ - -73.407044, - 45.494076 - ], - [ - -73.407318, - 45.494207 - ], - [ - -73.407449, - 45.49427 - ], - [ - -73.408138, - 45.494635 - ], - [ - -73.408558, - 45.494867 - ], - [ - -73.408708, - 45.49495 - ], - [ - -73.408748, - 45.494972 - ], - [ - -73.408851, - 45.495036 - ], - [ - -73.4093, - 45.495297 - ], - [ - -73.410398, - 45.49591 - ], - [ - -73.410586, - 45.496009 - ], - [ - -73.410729, - 45.496085 - ], - [ - -73.411068, - 45.496248 - ], - [ - -73.41156, - 45.496461 - ], - [ - -73.411587, - 45.496473 - ], - [ - -73.412271, - 45.49673 - ], - [ - -73.412864, - 45.496955 - ], - [ - -73.413662, - 45.497245 - ], - [ - -73.414507, - 45.497553 - ], - [ - -73.415733, - 45.497998 - ], - [ - -73.416461, - 45.498262 - ], - [ - -73.416635, - 45.498326 - ], - [ - -73.416723, - 45.498362 - ], - [ - -73.417312, - 45.498592 - ], - [ - -73.417435, - 45.498648 - ], - [ - -73.417607, - 45.498727 - ], - [ - -73.418042, - 45.498952 - ], - [ - -73.418335, - 45.499128 - ], - [ - -73.418479, - 45.499214 - ], - [ - -73.418764, - 45.499407 - ], - [ - -73.419209, - 45.499737 - ], - [ - -73.419305, - 45.499808 - ], - [ - -73.419729, - 45.500092 - ], - [ - -73.419878, - 45.500182 - ], - [ - -73.420342, - 45.50043 - ], - [ - -73.420676, - 45.50059 - ], - [ - -73.420784, - 45.500641 - ], - [ - -73.420878, - 45.500678 - ], - [ - -73.421089, - 45.500763 - ], - [ - -73.421557, - 45.500934 - ], - [ - -73.421727, - 45.500998 - ], - [ - -73.422541, - 45.501286 - ], - [ - -73.423018, - 45.501457 - ], - [ - -73.423261, - 45.501544 - ], - [ - -73.423423, - 45.501602 - ], - [ - -73.424204, - 45.50188 - ], - [ - -73.425912, - 45.502488 - ], - [ - -73.426184, - 45.502584 - ], - [ - -73.427788, - 45.503152 - ], - [ - -73.428083, - 45.503265 - ], - [ - -73.428273, - 45.50335 - ], - [ - -73.428512, - 45.503472 - ], - [ - -73.428643, - 45.503549 - ], - [ - -73.428884, - 45.503715 - ], - [ - -73.428992, - 45.503801 - ], - [ - -73.429012, - 45.50382 - ], - [ - -73.429175, - 45.503967 - ], - [ - -73.429253, - 45.504057 - ], - [ - -73.429303, - 45.504111 - ], - [ - -73.429332, - 45.504143 - ], - [ - -73.429383, - 45.504202 - ], - [ - -73.429476, - 45.504345 - ], - [ - -73.429494, - 45.504373 - ], - [ - -73.429599, - 45.504566 - ], - [ - -73.429648, - 45.504679 - ], - [ - -73.429656, - 45.504708 - ], - [ - -73.429758, - 45.505057 - ], - [ - -73.429931, - 45.505834 - ], - [ - -73.430026, - 45.506263 - ], - [ - -73.430066, - 45.506425 - ], - [ - -73.430099, - 45.506555 - ], - [ - -73.430103, - 45.506573 - ], - [ - -73.4302, - 45.506807 - ], - [ - -73.430341, - 45.507086 - ], - [ - -73.430485, - 45.507257 - ], - [ - -73.430506, - 45.507276 - ], - [ - -73.430509, - 45.507278 - ], - [ - -73.430608, - 45.507365 - ], - [ - -73.430672, - 45.507415 - ], - [ - -73.431358, - 45.507856 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431666, - 45.508054 - ], - [ - -73.432482, - 45.508559 - ], - [ - -73.433021, - 45.508883 - ], - [ - -73.433395, - 45.509082 - ], - [ - -73.433453, - 45.509113 - ], - [ - -73.433482, - 45.509127 - ], - [ - -73.43374, - 45.509257 - ], - [ - -73.434128, - 45.509428 - ], - [ - -73.43476, - 45.509703 - ], - [ - -73.435345, - 45.509952 - ], - [ - -73.435478, - 45.510009 - ], - [ - -73.435758, - 45.510131 - ], - [ - -73.435893, - 45.510189 - ], - [ - -73.43661, - 45.510502 - ], - [ - -73.437183, - 45.510752 - ], - [ - -73.437938, - 45.511081 - ], - [ - -73.438224, - 45.511212 - ], - [ - -73.438474, - 45.511325 - ], - [ - -73.439008, - 45.511568 - ], - [ - -73.439428, - 45.511747 - ], - [ - -73.439738, - 45.511879 - ], - [ - -73.43983, - 45.511919 - ], - [ - -73.439896, - 45.511951 - ], - [ - -73.440237, - 45.512095 - ], - [ - -73.441448, - 45.512613 - ], - [ - -73.441811, - 45.512775 - ], - [ - -73.442874, - 45.513204 - ], - [ - -73.443061, - 45.51328 - ], - [ - -73.445634, - 45.514379 - ], - [ - -73.445657, - 45.514389 - ], - [ - -73.446646, - 45.514811 - ], - [ - -73.448389, - 45.515528 - ], - [ - -73.448481, - 45.515566 - ], - [ - -73.44854, - 45.51559 - ], - [ - -73.449494, - 45.515978 - ], - [ - -73.449844, - 45.516127 - ], - [ - -73.450296, - 45.51632 - ], - [ - -73.45136, - 45.516756 - ], - [ - -73.451373, - 45.516761 - ], - [ - -73.451903, - 45.516982 - ], - [ - -73.452053, - 45.517054 - ], - [ - -73.45224, - 45.517153 - ], - [ - -73.452412, - 45.517228 - ], - [ - -73.452518, - 45.517275 - ], - [ - -73.453808, - 45.5178 - ], - [ - -73.453977, - 45.517869 - ], - [ - -73.454088, - 45.517914 - ], - [ - -73.454764, - 45.518193 - ], - [ - -73.455195, - 45.518372 - ], - [ - -73.455625, - 45.518549 - ], - [ - -73.45631, - 45.518837 - ], - [ - -73.457036, - 45.519133 - ], - [ - -73.457149, - 45.51918 - ], - [ - -73.457268, - 45.519234 - ], - [ - -73.458416, - 45.519718 - ], - [ - -73.458582, - 45.519788 - ], - [ - -73.46019, - 45.520461 - ], - [ - -73.460326, - 45.520518 - ], - [ - -73.460513, - 45.520597 - ], - [ - -73.462498, - 45.52143 - ], - [ - -73.462791, - 45.521553 - ], - [ - -73.463771, - 45.521954 - ], - [ - -73.463823, - 45.521976 - ], - [ - -73.464215, - 45.522138 - ], - [ - -73.464352, - 45.522188 - ], - [ - -73.464459, - 45.522246 - ], - [ - -73.464607, - 45.522332 - ], - [ - -73.465155, - 45.522551 - ], - [ - -73.465496, - 45.522687 - ], - [ - -73.466002, - 45.522899 - ], - [ - -73.466103, - 45.522924 - ], - [ - -73.466276, - 45.522967 - ], - [ - -73.467237, - 45.523363 - ], - [ - -73.467893, - 45.52364 - ], - [ - -73.468048, - 45.523705 - ], - [ - -73.468866, - 45.524038 - ], - [ - -73.469522, - 45.524322 - ], - [ - -73.469644, - 45.524372 - ], - [ - -73.469721, - 45.524403 - ], - [ - -73.470239, - 45.524623 - ], - [ - -73.470555, - 45.524749 - ], - [ - -73.471094, - 45.524979 - ], - [ - -73.471997, - 45.525357 - ], - [ - -73.47246, - 45.525553 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.474655, - 45.526465 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.475467, - 45.526811 - ], - [ - -73.475894, - 45.526982 - ], - [ - -73.476153, - 45.52709 - ], - [ - -73.476219, - 45.527117 - ], - [ - -73.476969, - 45.527428 - ], - [ - -73.477725, - 45.527748 - ], - [ - -73.478331, - 45.528004 - ], - [ - -73.478598, - 45.528117 - ], - [ - -73.479454, - 45.528472 - ], - [ - -73.480164, - 45.528774 - ], - [ - -73.480753, - 45.529011 - ], - [ - -73.48089, - 45.529066 - ], - [ - -73.481413, - 45.529294 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.484961, - 45.530774 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.488424, - 45.532213 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.490635, - 45.533124 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.492955, - 45.534081 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.494094, - 45.534551 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.495628, - 45.535241 - ], - [ - -73.495883, - 45.535371 - ], - [ - -73.496551, - 45.535683 - ], - [ - -73.496645, - 45.535727 - ], - [ - -73.49677, - 45.535781 - ], - [ - -73.49726, - 45.535988 - ], - [ - -73.498459, - 45.536487 - ], - [ - -73.498936, - 45.536687 - ], - [ - -73.499435, - 45.536897 - ], - [ - -73.501142, - 45.537612 - ], - [ - -73.502066, - 45.537998 - ], - [ - -73.503263, - 45.538498 - ], - [ - -73.503424, - 45.538566 - ], - [ - -73.503808, - 45.538728 - ], - [ - -73.503912, - 45.538786 - ], - [ - -73.504095, - 45.538926 - ], - [ - -73.504553, - 45.539317 - ], - [ - -73.504747, - 45.539452 - ], - [ - -73.50477, - 45.539464 - ], - [ - -73.504898, - 45.539533 - ], - [ - -73.506469, - 45.540185 - ], - [ - -73.507029, - 45.540406 - ], - [ - -73.507958, - 45.540788 - ], - [ - -73.508096, - 45.540847 - ], - [ - -73.508112, - 45.54082 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.50824, - 45.540633 - ], - [ - -73.50834, - 45.540487 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.509502, - 45.538865 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.511595, - 45.537128 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.513272, - 45.536035 - ], - [ - -73.513413, - 45.535879 - ], - [ - -73.513707, - 45.535583 - ], - [ - -73.513941, - 45.535349 - ], - [ - -73.513977, - 45.535314 - ], - [ - -73.514031, - 45.535263 - ], - [ - -73.514312, - 45.534967 - ], - [ - -73.514735, - 45.53454 - ], - [ - -73.514842, - 45.53442 - ], - [ - -73.514898, - 45.534357 - ], - [ - -73.515145, - 45.534084 - ], - [ - -73.515317, - 45.533897 - ], - [ - -73.515372, - 45.533842 - ], - [ - -73.515504, - 45.533699 - ], - [ - -73.515513, - 45.533689 - ], - [ - -73.515888, - 45.533287 - ], - [ - -73.515986, - 45.533193 - ], - [ - -73.516619, - 45.532644 - ], - [ - -73.516729, - 45.532549 - ], - [ - -73.517579, - 45.531802 - ], - [ - -73.517931, - 45.531459 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518212, - 45.531168 - ], - [ - -73.51845, - 45.53088 - ], - [ - -73.518608, - 45.530695 - ], - [ - -73.518713, - 45.530574 - ], - [ - -73.518834, - 45.53043 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519398, - 45.526004 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 26, - "properties": { - "id": "d8bb0d90-2abb-43c3-842c-5557f3442683", - "data": { - "gtfs": { - "shape_id": "8_1_A" - }, - "segments": [ - { - "distanceMeters": 388, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 423, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 708, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 475, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 808, - "travelTimeSeconds": 93 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 492, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 421, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 479, - "travelTimeSeconds": 85 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 88, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 635, - "travelTimeSeconds": 141 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 119 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 300, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 18493, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10805.013660132512, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.16, - "travelTimeWithoutDwellTimesSeconds": 3000, - "operatingTimeWithLayoverTimeSeconds": 3300, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3000, - "operatingSpeedWithLayoverMetersPerSecond": 5.6, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.16 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "71f7bbc9-363a-40ba-86f7-7f9ec638da55", - "f20e2154-4487-4d25-8e73-57adbf7414bd", - "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "284a178b-f032-40f4-9bf0-0ba74e13d985", - "324bc409-bf97-4fef-8e16-0521305ba7b1", - "afdaecf9-9edf-499b-a1d1-693abc0ee347", - "c7be2a86-2a63-43b1-993a-6ba9a80be235", - "8a7f5b7c-86e5-412e-a099-1a9d5ca8dce9", - "88a428f4-cdde-43a8-a2c3-c4652eae6722", - "2ccb6d20-bc23-4c70-b31c-28503c25783e", - "6d96a7b5-b2cd-4cb0-a3d1-b914f081bde3", - "9f7ffafe-2aab-4507-b571-cce792adfb7d", - "819870cc-ffb6-4a2a-add6-5b056cc3e4c0", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", - "7c34d8fb-52d2-4cf7-8954-ff69847540ac", - "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", - "76b4c3d5-f580-480d-bfec-c2639dd60d13", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", - "e654777c-6941-47f5-a273-d73ab074f10e", - "bb148567-d18f-49e1-a388-f782610c5390", - "e8e5c7df-2edf-4749-98c2-97962c7eff9c", - "a0b2e96c-f14a-4143-9ef3-8bb0e0e8a984", - "1b175835-d1cc-4713-943f-5472ffaa8fea", - "b4fcda7a-779e-4762-b2e5-038988d405be", - "80008949-5a0f-4c5e-b778-592c2ee8487f", - "53ead0f5-ebe4-4285-9d12-aa867ff0e782", - "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", - "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", - "7b1c691c-8a55-45c2-8401-9d619a0efb76", - "c4825963-416e-404b-a744-6ffe763e2d89", - "344c16fc-7161-4015-9999-e3e0f325dd1e", - "5636d204-312b-4d1e-bac7-614621da4bb5", - "d3991811-d92b-4ba2-9732-26a74abc49b7", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "5981cea7-b196-4e72-820c-362fb9c4e212", - "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", - "130245ae-209b-4e27-b903-ff57832b92eb", - "0d6b35f8-1b6c-4403-a7a5-53247aec7649", - "c3a2368c-bf2d-4c72-9adb-41ee799004b3", - "011d1f54-164c-4564-a051-bdacad3e287d", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "49918c5a-8414-49fd-abf9-87ae6b9f3976", - "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", - "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", - "65175945-c54c-4732-85a9-890393a0975c", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "999ed130-7d99-4115-ac3c-cabba7731288", - "d15f81ba-7519-47f7-aa07-0026f1b03e42", - "28f2fe65-961c-4550-a722-1e7790fe94ad", - "9cf81604-6d70-4ba8-a3fc-521104742058", - "4d48f36b-2274-4392-afac-b2c2c64b98f0", - "5f58acb6-be68-437f-bde7-a77d03125af9", - "4e61612c-2f48-47d6-ad42-7c0737853911", - "e46ba2d2-9f30-419f-acae-c73c3ef665c5", - "48ea0d06-7b69-4895-b55b-2a18e6e6f906", - "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", - "d00d9138-966b-4522-be1d-8c665c71246b", - "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "649e6394-9376-40eb-bc0e-4a376a0044aa", - "4fb4515b-e129-4622-b855-89143c2fd488", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "22e67405-9e1a-4912-aa11-919864f608e1", - "segments": [ - 0, - 8, - 23, - 54, - 91, - 100, - 105, - 109, - 113, - 121, - 148, - 154, - 168, - 176, - 181, - 184, - 190, - 197, - 200, - 206, - 212, - 219, - 222, - 237, - 245, - 248, - 263, - 269, - 288, - 292, - 300, - 302, - 309, - 312, - 314, - 320, - 328, - 334, - 339, - 344, - 350, - 356, - 360, - 366, - 370, - 374, - 378, - 384, - 391, - 394, - 398, - 403, - 405, - 411, - 416, - 420, - 427, - 436, - 442, - 450, - 458, - 468, - 471, - 474, - 491 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 26, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.385045, - 45.506579 - ], - [ - -73.384797, - 45.506518 - ], - [ - -73.383777, - 45.506274 - ], - [ - -73.382498, - 45.505967 - ], - [ - -73.382363, - 45.505931 - ], - [ - -73.382185, - 45.50589 - ], - [ - -73.382118, - 45.506021 - ], - [ - -73.381841, - 45.50662 - ], - [ - -73.381335, - 45.507721 - ], - [ - -73.380701, - 45.507418 - ], - [ - -73.380626, - 45.507481 - ], - [ - -73.380503, - 45.507585 - ], - [ - -73.380399, - 45.507666 - ], - [ - -73.380268, - 45.507759 - ], - [ - -73.380179, - 45.507823 - ], - [ - -73.380059, - 45.50789 - ], - [ - -73.379863, - 45.507975 - ], - [ - -73.379724, - 45.508025 - ], - [ - -73.379622, - 45.508047 - ], - [ - -73.379526, - 45.508074 - ], - [ - -73.379404, - 45.508091 - ], - [ - -73.3793, - 45.508105 - ], - [ - -73.379151, - 45.508114 - ], - [ - -73.379147, - 45.508114 - ], - [ - -73.378562, - 45.50814 - ], - [ - -73.378452, - 45.508145 - ], - [ - -73.378119, - 45.508163 - ], - [ - -73.377933, - 45.508153 - ], - [ - -73.377878, - 45.50815 - ], - [ - -73.377779, - 45.508144 - ], - [ - -73.377699, - 45.508135 - ], - [ - -73.377571, - 45.508108 - ], - [ - -73.377442, - 45.508081 - ], - [ - -73.377114, - 45.507982 - ], - [ - -73.376914, - 45.507917 - ], - [ - -73.376868, - 45.507902 - ], - [ - -73.376837, - 45.507891 - ], - [ - -73.376632, - 45.507801 - ], - [ - -73.376512, - 45.507729 - ], - [ - -73.3764, - 45.507639 - ], - [ - -73.376345, - 45.507576 - ], - [ - -73.376298, - 45.507513 - ], - [ - -73.376268, - 45.507459 - ], - [ - -73.376084, - 45.507108 - ], - [ - -73.376046, - 45.507022 - ], - [ - -73.375985, - 45.506896 - ], - [ - -73.375911, - 45.506761 - ], - [ - -73.375859, - 45.506698 - ], - [ - -73.375784, - 45.506626 - ], - [ - -73.375748, - 45.506597 - ], - [ - -73.375424, - 45.506333 - ], - [ - -73.375295, - 45.506238 - ], - [ - -73.375146, - 45.50613 - ], - [ - -73.375061, - 45.506067 - ], - [ - -73.374951, - 45.505973 - ], - [ - -73.374844, - 45.505788 - ], - [ - -73.374746, - 45.505563 - ], - [ - -73.37462, - 45.505338 - ], - [ - -73.374581, - 45.50514 - ], - [ - -73.374565, - 45.504919 - ], - [ - -73.374583, - 45.504843 - ], - [ - -73.374598, - 45.504793 - ], - [ - -73.374625, - 45.504735 - ], - [ - -73.374697, - 45.504635 - ], - [ - -73.374722, - 45.5046 - ], - [ - -73.374854, - 45.504429 - ], - [ - -73.374998, - 45.504213 - ], - [ - -73.37517, - 45.50398 - ], - [ - -73.375293, - 45.503854 - ], - [ - -73.375447, - 45.503715 - ], - [ - -73.375698, - 45.503485 - ], - [ - -73.375972, - 45.503274 - ], - [ - -73.376016, - 45.503247 - ], - [ - -73.376319, - 45.503059 - ], - [ - -73.376411, - 45.502996 - ], - [ - -73.375361, - 45.502572 - ], - [ - -73.375249, - 45.50254 - ], - [ - -73.375184, - 45.502508 - ], - [ - -73.375095, - 45.502468 - ], - [ - -73.375002, - 45.502427 - ], - [ - -73.374935, - 45.502409 - ], - [ - -73.37489, - 45.502387 - ], - [ - -73.374858, - 45.502373 - ], - [ - -73.374823, - 45.502351 - ], - [ - -73.374781, - 45.502315 - ], - [ - -73.37474, - 45.502247 - ], - [ - -73.374726, - 45.502157 - ], - [ - -73.374691, - 45.502013 - ], - [ - -73.375153, - 45.501079 - ], - [ - -73.375188, - 45.501009 - ], - [ - -73.375237, - 45.500914 - ], - [ - -73.375969, - 45.499457 - ], - [ - -73.376041, - 45.499312 - ], - [ - -73.376208, - 45.498993 - ], - [ - -73.376284, - 45.498857 - ], - [ - -73.376363, - 45.498701 - ], - [ - -73.376563, - 45.498311 - ], - [ - -73.376773, - 45.497866 - ], - [ - -73.377041, - 45.497337 - ], - [ - -73.377342, - 45.496707 - ], - [ - -73.377583, - 45.496221 - ], - [ - -73.378124, - 45.495128 - ], - [ - -73.378504, - 45.494364 - ], - [ - -73.37897, - 45.493424 - ], - [ - -73.379025, - 45.493316 - ], - [ - -73.380237, - 45.490872 - ], - [ - -73.380977, - 45.489378 - ], - [ - -73.381377, - 45.488567 - ], - [ - -73.381663, - 45.487992 - ], - [ - -73.381706, - 45.487906 - ], - [ - -73.381802, - 45.487771 - ], - [ - -73.381937, - 45.487627 - ], - [ - -73.382149, - 45.487431 - ], - [ - -73.382304, - 45.487304 - ], - [ - -73.38239, - 45.487214 - ], - [ - -73.382504, - 45.487272 - ], - [ - -73.382639, - 45.48734 - ], - [ - -73.383202, - 45.487615 - ], - [ - -73.383953, - 45.487976 - ], - [ - -73.384699, - 45.48831 - ], - [ - -73.384728, - 45.48832 - ], - [ - -73.384901, - 45.488369 - ], - [ - -73.384978, - 45.488267 - ], - [ - -73.384988, - 45.488254 - ], - [ - -73.385285, - 45.487843 - ], - [ - -73.385538, - 45.487429 - ], - [ - -73.385708, - 45.487123 - ], - [ - -73.385794, - 45.486795 - ], - [ - -73.385822, - 45.486649 - ], - [ - -73.385849, - 45.486507 - ], - [ - -73.38587, - 45.486444 - ], - [ - -73.385921, - 45.486295 - ], - [ - -73.386009, - 45.486084 - ], - [ - -73.386108, - 45.485909 - ], - [ - -73.386282, - 45.485639 - ], - [ - -73.386456, - 45.485401 - ], - [ - -73.386793, - 45.484951 - ], - [ - -73.387267, - 45.484313 - ], - [ - -73.387558, - 45.484142 - ], - [ - -73.387743, - 45.483913 - ], - [ - -73.388271, - 45.483202 - ], - [ - -73.388318, - 45.483139 - ], - [ - -73.388909, - 45.482326 - ], - [ - -73.38905, - 45.482092 - ], - [ - -73.389113, - 45.481997 - ], - [ - -73.389343, - 45.481827 - ], - [ - -73.389435, - 45.481795 - ], - [ - -73.389539, - 45.481786 - ], - [ - -73.389628, - 45.481786 - ], - [ - -73.389709, - 45.4818 - ], - [ - -73.390071, - 45.481927 - ], - [ - -73.390313, - 45.482057 - ], - [ - -73.390427, - 45.482115 - ], - [ - -73.390518, - 45.482162 - ], - [ - -73.393166, - 45.483526 - ], - [ - -73.393715, - 45.483828 - ], - [ - -73.393921, - 45.48395 - ], - [ - -73.394183, - 45.484121 - ], - [ - -73.394326, - 45.48422 - ], - [ - -73.394526, - 45.48436 - ], - [ - -73.394852, - 45.484608 - ], - [ - -73.395097, - 45.484806 - ], - [ - -73.395347, - 45.485022 - ], - [ - -73.395593, - 45.485252 - ], - [ - -73.396316, - 45.48599 - ], - [ - -73.396877, - 45.486562 - ], - [ - -73.397253, - 45.486945 - ], - [ - -73.397988, - 45.487693 - ], - [ - -73.398503, - 45.488224 - ], - [ - -73.400292, - 45.490061 - ], - [ - -73.400631, - 45.490403 - ], - [ - -73.40073, - 45.490503 - ], - [ - -73.40103, - 45.490791 - ], - [ - -73.401471, - 45.491169 - ], - [ - -73.401956, - 45.491543 - ], - [ - -73.402249, - 45.491741 - ], - [ - -73.402357, - 45.491809 - ], - [ - -73.40251, - 45.491908 - ], - [ - -73.402561, - 45.491939 - ], - [ - -73.403076, - 45.492241 - ], - [ - -73.403455, - 45.492444 - ], - [ - -73.403928, - 45.492669 - ], - [ - -73.405646, - 45.493445 - ], - [ - -73.406465, - 45.493815 - ], - [ - -73.407044, - 45.494076 - ], - [ - -73.407318, - 45.494207 - ], - [ - -73.407449, - 45.49427 - ], - [ - -73.408138, - 45.494635 - ], - [ - -73.408708, - 45.49495 - ], - [ - -73.408748, - 45.494972 - ], - [ - -73.408851, - 45.495036 - ], - [ - -73.4093, - 45.495297 - ], - [ - -73.410398, - 45.49591 - ], - [ - -73.410729, - 45.496085 - ], - [ - -73.411068, - 45.496248 - ], - [ - -73.41156, - 45.496461 - ], - [ - -73.411587, - 45.496473 - ], - [ - -73.412271, - 45.49673 - ], - [ - -73.412864, - 45.496955 - ], - [ - -73.414507, - 45.497553 - ], - [ - -73.415733, - 45.497998 - ], - [ - -73.416635, - 45.498326 - ], - [ - -73.416723, - 45.498362 - ], - [ - -73.417312, - 45.498592 - ], - [ - -73.417435, - 45.498648 - ], - [ - -73.417607, - 45.498727 - ], - [ - -73.418042, - 45.498952 - ], - [ - -73.418335, - 45.499128 - ], - [ - -73.418479, - 45.499214 - ], - [ - -73.418764, - 45.499407 - ], - [ - -73.419209, - 45.499737 - ], - [ - -73.419305, - 45.499808 - ], - [ - -73.419729, - 45.500092 - ], - [ - -73.419878, - 45.500182 - ], - [ - -73.420342, - 45.50043 - ], - [ - -73.420784, - 45.500641 - ], - [ - -73.420878, - 45.500678 - ], - [ - -73.421089, - 45.500763 - ], - [ - -73.421557, - 45.500934 - ], - [ - -73.421727, - 45.500998 - ], - [ - -73.422541, - 45.501286 - ], - [ - -73.423018, - 45.501457 - ], - [ - -73.423423, - 45.501602 - ], - [ - -73.424204, - 45.50188 - ], - [ - -73.426184, - 45.502584 - ], - [ - -73.427788, - 45.503152 - ], - [ - -73.428083, - 45.503265 - ], - [ - -73.428273, - 45.50335 - ], - [ - -73.428512, - 45.503472 - ], - [ - -73.428643, - 45.503549 - ], - [ - -73.428884, - 45.503715 - ], - [ - -73.428992, - 45.503801 - ], - [ - -73.429012, - 45.50382 - ], - [ - -73.429175, - 45.503967 - ], - [ - -73.429253, - 45.504057 - ], - [ - -73.429303, - 45.504111 - ], - [ - -73.429332, - 45.504143 - ], - [ - -73.429383, - 45.504202 - ], - [ - -73.429494, - 45.504373 - ], - [ - -73.429599, - 45.504566 - ], - [ - -73.429648, - 45.504679 - ], - [ - -73.429656, - 45.504708 - ], - [ - -73.429758, - 45.505057 - ], - [ - -73.430026, - 45.506263 - ], - [ - -73.430066, - 45.506425 - ], - [ - -73.430099, - 45.506555 - ], - [ - -73.430103, - 45.506573 - ], - [ - -73.4302, - 45.506807 - ], - [ - -73.430341, - 45.507086 - ], - [ - -73.430485, - 45.507257 - ], - [ - -73.430506, - 45.507276 - ], - [ - -73.430509, - 45.507278 - ], - [ - -73.430608, - 45.507365 - ], - [ - -73.430672, - 45.507415 - ], - [ - -73.431358, - 45.507856 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431666, - 45.508054 - ], - [ - -73.432482, - 45.508559 - ], - [ - -73.433021, - 45.508883 - ], - [ - -73.433395, - 45.509082 - ], - [ - -73.433453, - 45.509113 - ], - [ - -73.43374, - 45.509257 - ], - [ - -73.434128, - 45.509428 - ], - [ - -73.43476, - 45.509703 - ], - [ - -73.435478, - 45.510009 - ], - [ - -73.435758, - 45.510131 - ], - [ - -73.435893, - 45.510189 - ], - [ - -73.43661, - 45.510502 - ], - [ - -73.437183, - 45.510752 - ], - [ - -73.437938, - 45.511081 - ], - [ - -73.438224, - 45.511212 - ], - [ - -73.439008, - 45.511568 - ], - [ - -73.439738, - 45.511879 - ], - [ - -73.43983, - 45.511919 - ], - [ - -73.439896, - 45.511951 - ], - [ - -73.440237, - 45.512095 - ], - [ - -73.441448, - 45.512613 - ], - [ - -73.441811, - 45.512775 - ], - [ - -73.443061, - 45.51328 - ], - [ - -73.445634, - 45.514379 - ], - [ - -73.446646, - 45.514811 - ], - [ - -73.448481, - 45.515566 - ], - [ - -73.44854, - 45.51559 - ], - [ - -73.449494, - 45.515978 - ], - [ - -73.449844, - 45.516127 - ], - [ - -73.450296, - 45.51632 - ], - [ - -73.451373, - 45.516761 - ], - [ - -73.451903, - 45.516982 - ], - [ - -73.452053, - 45.517054 - ], - [ - -73.45224, - 45.517153 - ], - [ - -73.452412, - 45.517228 - ], - [ - -73.452518, - 45.517275 - ], - [ - -73.453808, - 45.5178 - ], - [ - -73.454088, - 45.517914 - ], - [ - -73.454764, - 45.518193 - ], - [ - -73.455195, - 45.518372 - ], - [ - -73.455625, - 45.518549 - ], - [ - -73.45631, - 45.518837 - ], - [ - -73.457036, - 45.519133 - ], - [ - -73.457149, - 45.51918 - ], - [ - -73.457268, - 45.519234 - ], - [ - -73.458416, - 45.519718 - ], - [ - -73.458582, - 45.519788 - ], - [ - -73.46019, - 45.520461 - ], - [ - -73.460326, - 45.520518 - ], - [ - -73.460513, - 45.520597 - ], - [ - -73.462498, - 45.52143 - ], - [ - -73.462791, - 45.521553 - ], - [ - -73.463771, - 45.521954 - ], - [ - -73.463823, - 45.521976 - ], - [ - -73.464215, - 45.522138 - ], - [ - -73.464352, - 45.522188 - ], - [ - -73.464459, - 45.522246 - ], - [ - -73.464607, - 45.522332 - ], - [ - -73.465155, - 45.522551 - ], - [ - -73.465496, - 45.522687 - ], - [ - -73.466002, - 45.522899 - ], - [ - -73.466103, - 45.522924 - ], - [ - -73.466276, - 45.522967 - ], - [ - -73.467237, - 45.523363 - ], - [ - -73.467893, - 45.52364 - ], - [ - -73.468048, - 45.523705 - ], - [ - -73.468866, - 45.524038 - ], - [ - -73.469522, - 45.524322 - ], - [ - -73.469644, - 45.524372 - ], - [ - -73.469721, - 45.524403 - ], - [ - -73.470239, - 45.524623 - ], - [ - -73.470555, - 45.524749 - ], - [ - -73.471094, - 45.524979 - ], - [ - -73.471997, - 45.525357 - ], - [ - -73.47246, - 45.525553 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.474655, - 45.526465 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.475467, - 45.526811 - ], - [ - -73.475894, - 45.526982 - ], - [ - -73.476153, - 45.52709 - ], - [ - -73.476219, - 45.527117 - ], - [ - -73.476969, - 45.527428 - ], - [ - -73.477725, - 45.527748 - ], - [ - -73.478331, - 45.528004 - ], - [ - -73.478598, - 45.528117 - ], - [ - -73.479454, - 45.528472 - ], - [ - -73.480164, - 45.528774 - ], - [ - -73.480753, - 45.529011 - ], - [ - -73.48089, - 45.529066 - ], - [ - -73.481413, - 45.529294 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.484961, - 45.530774 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.488424, - 45.532213 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.490635, - 45.533124 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.492955, - 45.534081 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.494094, - 45.534551 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.495628, - 45.535241 - ], - [ - -73.495883, - 45.535371 - ], - [ - -73.496551, - 45.535683 - ], - [ - -73.496645, - 45.535727 - ], - [ - -73.49677, - 45.535781 - ], - [ - -73.49726, - 45.535988 - ], - [ - -73.498459, - 45.536487 - ], - [ - -73.498936, - 45.536687 - ], - [ - -73.499435, - 45.536897 - ], - [ - -73.501142, - 45.537612 - ], - [ - -73.502066, - 45.537998 - ], - [ - -73.503263, - 45.538498 - ], - [ - -73.503424, - 45.538566 - ], - [ - -73.503808, - 45.538728 - ], - [ - -73.503912, - 45.538786 - ], - [ - -73.504095, - 45.538926 - ], - [ - -73.504553, - 45.539317 - ], - [ - -73.504747, - 45.539452 - ], - [ - -73.50477, - 45.539464 - ], - [ - -73.504898, - 45.539533 - ], - [ - -73.506469, - 45.540185 - ], - [ - -73.507029, - 45.540406 - ], - [ - -73.507958, - 45.540788 - ], - [ - -73.508096, - 45.540847 - ], - [ - -73.508112, - 45.54082 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.50824, - 45.540633 - ], - [ - -73.50834, - 45.540487 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.509502, - 45.538865 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.511595, - 45.537128 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.513272, - 45.536035 - ], - [ - -73.513413, - 45.535879 - ], - [ - -73.513707, - 45.535583 - ], - [ - -73.513941, - 45.535349 - ], - [ - -73.513977, - 45.535314 - ], - [ - -73.514031, - 45.535263 - ], - [ - -73.514312, - 45.534967 - ], - [ - -73.514735, - 45.53454 - ], - [ - -73.514842, - 45.53442 - ], - [ - -73.514898, - 45.534357 - ], - [ - -73.515145, - 45.534084 - ], - [ - -73.515317, - 45.533897 - ], - [ - -73.515372, - 45.533842 - ], - [ - -73.515504, - 45.533699 - ], - [ - -73.515513, - 45.533689 - ], - [ - -73.515888, - 45.533287 - ], - [ - -73.515986, - 45.533193 - ], - [ - -73.516619, - 45.532644 - ], - [ - -73.516729, - 45.532549 - ], - [ - -73.517579, - 45.531802 - ], - [ - -73.517931, - 45.531459 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518212, - 45.531168 - ], - [ - -73.51845, - 45.53088 - ], - [ - -73.518608, - 45.530695 - ], - [ - -73.518713, - 45.530574 - ], - [ - -73.518834, - 45.53043 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519398, - 45.526004 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 27, - "properties": { - "id": "d587ca02-827f-40c4-bdf2-6375fa89718f", - "data": { - "gtfs": { - "shape_id": "8_1_A" - }, - "segments": [ - { - "distanceMeters": 11359, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 635, - "travelTimeSeconds": 156 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 132 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 18493, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5268.977302446722, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 11.85, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 10.63, - "averageSpeedWithoutDwellTimesMetersPerSecond": 11.85 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "d3991811-d92b-4ba2-9732-26a74abc49b7", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "5981cea7-b196-4e72-820c-362fb9c4e212", - "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", - "130245ae-209b-4e27-b903-ff57832b92eb", - "0d6b35f8-1b6c-4403-a7a5-53247aec7649", - "c3a2368c-bf2d-4c72-9adb-41ee799004b3", - "011d1f54-164c-4564-a051-bdacad3e287d", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "49918c5a-8414-49fd-abf9-87ae6b9f3976", - "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", - "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", - "65175945-c54c-4732-85a9-890393a0975c", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "999ed130-7d99-4115-ac3c-cabba7731288", - "d15f81ba-7519-47f7-aa07-0026f1b03e42", - "28f2fe65-961c-4550-a722-1e7790fe94ad", - "9cf81604-6d70-4ba8-a3fc-521104742058", - "4d48f36b-2274-4392-afac-b2c2c64b98f0", - "5f58acb6-be68-437f-bde7-a77d03125af9", - "4e61612c-2f48-47d6-ad42-7c0737853911", - "e46ba2d2-9f30-419f-acae-c73c3ef665c5", - "48ea0d06-7b69-4895-b55b-2a18e6e6f906", - "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", - "d00d9138-966b-4522-be1d-8c665c71246b", - "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "649e6394-9376-40eb-bc0e-4a376a0044aa", - "4fb4515b-e129-4622-b855-89143c2fd488", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "22e67405-9e1a-4912-aa11-919864f608e1", - "segments": [ - 0, - 298, - 303, - 308, - 314, - 320, - 324, - 330, - 334, - 338, - 342, - 348, - 355, - 358, - 362, - 367, - 369, - 375, - 380, - 384, - 391, - 400, - 406, - 414, - 422, - 432, - 435, - 438, - 455 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 27, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519259, - 45.524277 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519057, - 45.525166 - ], - [ - -73.518828, - 45.525169 - ], - [ - -73.518662, - 45.525195 - ], - [ - -73.518477, - 45.525222 - ], - [ - -73.51841, - 45.525229 - ], - [ - -73.518309, - 45.525233 - ], - [ - -73.518165, - 45.525238 - ], - [ - -73.517846, - 45.525224 - ], - [ - -73.516858, - 45.525188 - ], - [ - -73.516329, - 45.525185 - ], - [ - -73.51586, - 45.52522 - ], - [ - -73.515879, - 45.525306 - ], - [ - -73.515954, - 45.525625 - ], - [ - -73.515993, - 45.52576 - ], - [ - -73.516108, - 45.52615 - ], - [ - -73.51612, - 45.526192 - ], - [ - -73.516132, - 45.526224 - ], - [ - -73.516245, - 45.52653 - ], - [ - -73.516302, - 45.526687 - ], - [ - -73.516434, - 45.526894 - ], - [ - -73.517006, - 45.527735 - ], - [ - -73.517118, - 45.52798 - ], - [ - -73.517272, - 45.52832 - ], - [ - -73.517504, - 45.528922 - ], - [ - -73.517577, - 45.529094 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.517456, - 45.531762 - ], - [ - -73.51664, - 45.532518 - ], - [ - -73.515885, - 45.533161 - ], - [ - -73.515753, - 45.533238 - ], - [ - -73.515672, - 45.533321 - ], - [ - -73.515257, - 45.533788 - ], - [ - -73.515202, - 45.533848 - ], - [ - -73.514831, - 45.534265 - ], - [ - -73.514791, - 45.534311 - ], - [ - -73.514731, - 45.534379 - ], - [ - -73.514684, - 45.534434 - ], - [ - -73.51432, - 45.534799 - ], - [ - -73.513904, - 45.53522 - ], - [ - -73.513681, - 45.535468 - ], - [ - -73.51342, - 45.535713 - ], - [ - -73.513155, - 45.535985 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.508029, - 45.540693 - ], - [ - -73.508021, - 45.540689 - ], - [ - -73.507102, - 45.540316 - ], - [ - -73.506536, - 45.540077 - ], - [ - -73.504975, - 45.539443 - ], - [ - -73.50484, - 45.539375 - ], - [ - -73.504659, - 45.53925 - ], - [ - -73.504204, - 45.538858 - ], - [ - -73.50401, - 45.538714 - ], - [ - -73.503897, - 45.538651 - ], - [ - -73.5035, - 45.538476 - ], - [ - -73.502143, - 45.537905 - ], - [ - -73.501222, - 45.537517 - ], - [ - -73.499534, - 45.536807 - ], - [ - -73.498456, - 45.536361 - ], - [ - -73.497345, - 45.53588 - ], - [ - -73.496932, - 45.535682 - ], - [ - -73.496814, - 45.535632 - ], - [ - -73.495741, - 45.5352 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.48089, - 45.529066 - ], - [ - -73.480753, - 45.529011 - ], - [ - -73.480164, - 45.528774 - ], - [ - -73.479454, - 45.528472 - ], - [ - -73.478598, - 45.528117 - ], - [ - -73.477725, - 45.527748 - ], - [ - -73.476969, - 45.527428 - ], - [ - -73.476219, - 45.527117 - ], - [ - -73.475894, - 45.526982 - ], - [ - -73.475467, - 45.526811 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.471997, - 45.525357 - ], - [ - -73.471094, - 45.524979 - ], - [ - -73.470555, - 45.524749 - ], - [ - -73.470239, - 45.524623 - ], - [ - -73.469721, - 45.524403 - ], - [ - -73.469522, - 45.524322 - ], - [ - -73.468866, - 45.524038 - ], - [ - -73.468048, - 45.523705 - ], - [ - -73.467237, - 45.523363 - ], - [ - -73.466276, - 45.522967 - ], - [ - -73.466082, - 45.522841 - ], - [ - -73.465634, - 45.52266 - ], - [ - -73.464874, - 45.522336 - ], - [ - -73.464576, - 45.522215 - ], - [ - -73.464439, - 45.522143 - ], - [ - -73.464336, - 45.522093 - ], - [ - -73.464186, - 45.522017 - ], - [ - -73.463952, - 45.52192 - ], - [ - -73.463125, - 45.521577 - ], - [ - -73.462859, - 45.521467 - ], - [ - -73.46256, - 45.521341 - ], - [ - -73.460592, - 45.520513 - ], - [ - -73.460391, - 45.520427 - ], - [ - -73.460276, - 45.520379 - ], - [ - -73.458651, - 45.519707 - ], - [ - -73.457332, - 45.519144 - ], - [ - -73.457212, - 45.51909 - ], - [ - -73.456379, - 45.518756 - ], - [ - -73.455695, - 45.518468 - ], - [ - -73.454164, - 45.517811 - ], - [ - -73.453487, - 45.51753 - ], - [ - -73.452666, - 45.517189 - ], - [ - -73.452271, - 45.517027 - ], - [ - -73.452136, - 45.516973 - ], - [ - -73.452066, - 45.516942 - ], - [ - -73.450032, - 45.516108 - ], - [ - -73.448601, - 45.5155 - ], - [ - -73.444787, - 45.513896 - ], - [ - -73.443129, - 45.513199 - ], - [ - -73.440479, - 45.512077 - ], - [ - -73.440007, - 45.511874 - ], - [ - -73.439905, - 45.511834 - ], - [ - -73.439831, - 45.511802 - ], - [ - -73.439067, - 45.511482 - ], - [ - -73.438299, - 45.511131 - ], - [ - -73.438017, - 45.511 - ], - [ - -73.437245, - 45.510635 - ], - [ - -73.435988, - 45.510081 - ], - [ - -73.435895, - 45.510041 - ], - [ - -73.435854, - 45.510023 - ], - [ - -73.435569, - 45.509897 - ], - [ - -73.434856, - 45.50959 - ], - [ - -73.434257, - 45.509343 - ], - [ - -73.433925, - 45.509203 - ], - [ - -73.433726, - 45.509117 - ], - [ - -73.433485, - 45.509005 - ], - [ - -73.433108, - 45.508806 - ], - [ - -73.432574, - 45.508487 - ], - [ - -73.432044, - 45.508167 - ], - [ - -73.431846, - 45.508041 - ], - [ - -73.43182, - 45.508023 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.431538, - 45.507856 - ], - [ - -73.430825, - 45.507356 - ], - [ - -73.430679, - 45.507221 - ], - [ - -73.430612, - 45.507149 - ], - [ - -73.43049, - 45.506978 - ], - [ - -73.43046, - 45.50692 - ], - [ - -73.430405, - 45.506816 - ], - [ - -73.430319, - 45.506587 - ], - [ - -73.430298, - 45.506497 - ], - [ - -73.430275, - 45.506389 - ], - [ - -73.430272, - 45.506375 - ], - [ - -73.430221, - 45.506056 - ], - [ - -73.430022, - 45.505142 - ], - [ - -73.429926, - 45.504769 - ], - [ - -73.429899, - 45.5047 - ], - [ - -73.429809, - 45.504476 - ], - [ - -73.429754, - 45.504373 - ], - [ - -73.4297, - 45.504274 - ], - [ - -73.429585, - 45.504116 - ], - [ - -73.429534, - 45.504058 - ], - [ - -73.429455, - 45.503968 - ], - [ - -73.429429, - 45.503936 - ], - [ - -73.429234, - 45.503747 - ], - [ - -73.429121, - 45.503648 - ], - [ - -73.429007, - 45.503562 - ], - [ - -73.428781, - 45.503414 - ], - [ - -73.428662, - 45.503344 - ], - [ - -73.428528, - 45.503265 - ], - [ - -73.428383, - 45.503193 - ], - [ - -73.428061, - 45.503062 - ], - [ - -73.427348, - 45.502808 - ], - [ - -73.426292, - 45.502431 - ], - [ - -73.423912, - 45.501584 - ], - [ - -73.423518, - 45.501444 - ], - [ - -73.423081, - 45.501291 - ], - [ - -73.422609, - 45.501122 - ], - [ - -73.422513, - 45.501088 - ], - [ - -73.421932, - 45.500878 - ], - [ - -73.421552, - 45.500741 - ], - [ - -73.42114, - 45.50058 - ], - [ - -73.420988, - 45.50052 - ], - [ - -73.420974, - 45.500516 - ], - [ - -73.420915, - 45.500489 - ], - [ - -73.420674, - 45.50038 - ], - [ - -73.420367, - 45.500227 - ], - [ - -73.41991, - 45.499962 - ], - [ - -73.419471, - 45.499673 - ], - [ - -73.419335, - 45.49957 - ], - [ - -73.419049, - 45.499354 - ], - [ - -73.418625, - 45.499061 - ], - [ - -73.418366, - 45.498904 - ], - [ - -73.418232, - 45.498822 - ], - [ - -73.417884, - 45.498642 - ], - [ - -73.417509, - 45.498478 - ], - [ - -73.417338, - 45.498403 - ], - [ - -73.416887, - 45.498227 - ], - [ - -73.416876, - 45.498223 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.415848, - 45.497845 - ], - [ - -73.415069, - 45.497555 - ], - [ - -73.414637, - 45.497397 - ], - [ - -73.413391, - 45.496942 - ], - [ - -73.413096, - 45.496835 - ], - [ - -73.41213, - 45.496482 - ], - [ - -73.411766, - 45.496343 - ], - [ - -73.411419, - 45.496194 - ], - [ - -73.411025, - 45.496011 - ], - [ - -73.410951, - 45.495977 - ], - [ - -73.410895, - 45.495951 - ], - [ - -73.410789, - 45.495896 - ], - [ - -73.409735, - 45.495323 - ], - [ - -73.409349, - 45.495112 - ], - [ - -73.409099, - 45.494968 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.408825, - 45.494811 - ], - [ - -73.408434, - 45.49459 - ], - [ - -73.408369, - 45.494555 - ], - [ - -73.408119, - 45.494419 - ], - [ - -73.407735, - 45.494211 - ], - [ - -73.407122, - 45.493914 - ], - [ - -73.406636, - 45.493695 - ], - [ - -73.406594, - 45.493675 - ], - [ - -73.404056, - 45.49253 - ], - [ - -73.40355, - 45.492282 - ], - [ - -73.403081, - 45.492034 - ], - [ - -73.402782, - 45.491854 - ], - [ - -73.402765, - 45.491844 - ], - [ - -73.402626, - 45.491759 - ], - [ - -73.402493, - 45.491674 - ], - [ - -73.402463, - 45.491651 - ], - [ - -73.402075, - 45.491386 - ], - [ - -73.401668, - 45.491075 - ], - [ - -73.401167, - 45.490642 - ], - [ - -73.400821, - 45.490307 - ], - [ - -73.40081, - 45.490296 - ], - [ - -73.398797, - 45.488233 - ], - [ - -73.398629, - 45.488062 - ], - [ - -73.398311, - 45.487738 - ], - [ - -73.397543, - 45.486952 - ], - [ - -73.397073, - 45.486473 - ], - [ - -73.396659, - 45.486048 - ], - [ - -73.396515, - 45.485901 - ], - [ - -73.395797, - 45.485167 - ], - [ - -73.395424, - 45.48482 - ], - [ - -73.39519, - 45.484626 - ], - [ - -73.394903, - 45.484401 - ], - [ - -73.39465, - 45.484213 - ], - [ - -73.39454, - 45.484131 - ], - [ - -73.394481, - 45.484095 - ], - [ - -73.394291, - 45.483964 - ], - [ - -73.393942, - 45.483748 - ], - [ - -73.393737, - 45.48363 - ], - [ - -73.393666, - 45.48359 - ], - [ - -73.393194, - 45.483333 - ], - [ - -73.389604, - 45.481489 - ], - [ - -73.389467, - 45.481417 - ], - [ - -73.389334, - 45.481534 - ], - [ - -73.389135, - 45.481777 - ], - [ - -73.388998, - 45.481957 - ], - [ - -73.388994, - 45.481962 - ], - [ - -73.388761, - 45.482271 - ], - [ - -73.388459, - 45.482687 - ], - [ - -73.38817, - 45.483085 - ], - [ - -73.388122, - 45.483153 - ], - [ - -73.38807, - 45.483229 - ], - [ - -73.387267, - 45.484313 - ], - [ - -73.387181, - 45.484429 - ], - [ - -73.386793, - 45.484951 - ], - [ - -73.386456, - 45.485401 - ], - [ - -73.386282, - 45.485639 - ], - [ - -73.386108, - 45.485909 - ], - [ - -73.386009, - 45.486084 - ], - [ - -73.385921, - 45.486295 - ], - [ - -73.38587, - 45.486444 - ], - [ - -73.385849, - 45.486507 - ], - [ - -73.385822, - 45.486649 - ], - [ - -73.385794, - 45.486795 - ], - [ - -73.385708, - 45.487123 - ], - [ - -73.385538, - 45.487429 - ], - [ - -73.385285, - 45.487843 - ], - [ - -73.385029, - 45.488197 - ], - [ - -73.384988, - 45.488254 - ], - [ - -73.384901, - 45.488369 - ], - [ - -73.384743, - 45.488246 - ], - [ - -73.384445, - 45.488089 - ], - [ - -73.384044, - 45.487891 - ], - [ - -73.383491, - 45.487611 - ], - [ - -73.382868, - 45.487294 - ], - [ - -73.3825, - 45.487106 - ], - [ - -73.382345, - 45.487025 - ], - [ - -73.382231, - 45.487138 - ], - [ - -73.382081, - 45.487303 - ], - [ - -73.382078, - 45.487305 - ], - [ - -73.381863, - 45.487505 - ], - [ - -73.38174, - 45.487635 - ], - [ - -73.381669, - 45.487708 - ], - [ - -73.381607, - 45.487781 - ], - [ - -73.381582, - 45.48782 - ], - [ - -73.38156, - 45.487854 - ], - [ - -73.381517, - 45.487933 - ], - [ - -73.381404, - 45.488142 - ], - [ - -73.381186, - 45.488604 - ], - [ - -73.380868, - 45.489241 - ], - [ - -73.380854, - 45.489269 - ], - [ - -73.380814, - 45.489347 - ], - [ - -73.380351, - 45.490295 - ], - [ - -73.380087, - 45.490835 - ], - [ - -73.379711, - 45.491585 - ], - [ - -73.379127, - 45.492764 - ], - [ - -73.378925, - 45.49319 - ], - [ - -73.378909, - 45.493226 - ], - [ - -73.378882, - 45.493284 - ], - [ - -73.378825, - 45.493393 - ], - [ - -73.378766, - 45.493505 - ], - [ - -73.378702, - 45.493632 - ], - [ - -73.378691, - 45.493655 - ], - [ - -73.37748, - 45.496102 - ], - [ - -73.377435, - 45.496193 - ], - [ - -73.377344, - 45.496377 - ], - [ - -73.377276, - 45.496509 - ], - [ - -73.376682, - 45.497687 - ], - [ - -73.376245, - 45.498616 - ], - [ - -73.37615, - 45.498819 - ], - [ - -73.375996, - 45.499106 - ], - [ - -73.375297, - 45.50049 - ], - [ - -73.375165, - 45.500806 - ], - [ - -73.37513, - 45.500889 - ], - [ - -73.37508, - 45.500984 - ], - [ - -73.37455, - 45.501981 - ], - [ - -73.374382, - 45.50231 - ], - [ - -73.374326, - 45.502409 - ], - [ - -73.374466, - 45.502454 - ], - [ - -73.374786, - 45.50253 - ], - [ - -73.375092, - 45.502612 - ], - [ - -73.375264, - 45.502648 - ], - [ - -73.375427, - 45.502684 - ], - [ - -73.375574, - 45.502747 - ], - [ - -73.375726, - 45.502811 - ], - [ - -73.376319, - 45.503059 - ], - [ - -73.376016, - 45.503247 - ], - [ - -73.375972, - 45.503274 - ], - [ - -73.375737, - 45.503456 - ], - [ - -73.375698, - 45.503485 - ], - [ - -73.375447, - 45.503715 - ], - [ - -73.375293, - 45.503854 - ], - [ - -73.37517, - 45.50398 - ], - [ - -73.374998, - 45.504213 - ], - [ - -73.374854, - 45.504429 - ], - [ - -73.374722, - 45.5046 - ], - [ - -73.374697, - 45.504635 - ], - [ - -73.374625, - 45.504735 - ], - [ - -73.374598, - 45.504793 - ], - [ - -73.374583, - 45.504843 - ], - [ - -73.374565, - 45.504919 - ], - [ - -73.374581, - 45.50514 - ], - [ - -73.37462, - 45.505338 - ], - [ - -73.374746, - 45.505563 - ], - [ - -73.374844, - 45.505788 - ], - [ - -73.37488, - 45.50585 - ], - [ - -73.374951, - 45.505973 - ], - [ - -73.375061, - 45.506067 - ], - [ - -73.375295, - 45.506238 - ], - [ - -73.375424, - 45.506333 - ], - [ - -73.375748, - 45.506597 - ], - [ - -73.375784, - 45.506626 - ], - [ - -73.375859, - 45.506698 - ], - [ - -73.375911, - 45.506761 - ], - [ - -73.375985, - 45.506896 - ], - [ - -73.376046, - 45.507022 - ], - [ - -73.376084, - 45.507108 - ], - [ - -73.376268, - 45.507459 - ], - [ - -73.376298, - 45.507513 - ], - [ - -73.376345, - 45.507576 - ], - [ - -73.3764, - 45.507639 - ], - [ - -73.376512, - 45.507729 - ], - [ - -73.376632, - 45.507801 - ], - [ - -73.376837, - 45.507891 - ], - [ - -73.376868, - 45.507902 - ], - [ - -73.376914, - 45.507917 - ], - [ - -73.377114, - 45.507982 - ], - [ - -73.377442, - 45.508081 - ], - [ - -73.377571, - 45.508108 - ], - [ - -73.377699, - 45.508135 - ], - [ - -73.377779, - 45.508144 - ], - [ - -73.377878, - 45.50815 - ], - [ - -73.377933, - 45.508153 - ], - [ - -73.378119, - 45.508163 - ], - [ - -73.378452, - 45.508145 - ], - [ - -73.378562, - 45.50814 - ], - [ - -73.378788, - 45.50813 - ], - [ - -73.379007, - 45.50812 - ], - [ - -73.379147, - 45.508114 - ], - [ - -73.3793, - 45.508105 - ], - [ - -73.379404, - 45.508091 - ], - [ - -73.379526, - 45.508074 - ], - [ - -73.379622, - 45.508047 - ], - [ - -73.379724, - 45.508025 - ], - [ - -73.379863, - 45.507975 - ], - [ - -73.380059, - 45.50789 - ], - [ - -73.380179, - 45.507823 - ], - [ - -73.380268, - 45.507759 - ], - [ - -73.380399, - 45.507666 - ], - [ - -73.380485, - 45.507598 - ], - [ - -73.380503, - 45.507585 - ], - [ - -73.380626, - 45.507481 - ], - [ - -73.38128, - 45.507806 - ], - [ - -73.381389, - 45.507851 - ], - [ - -73.381468, - 45.507752 - ], - [ - -73.381562, - 45.507572 - ], - [ - -73.381667, - 45.507356 - ], - [ - -73.381733, - 45.507226 - ], - [ - -73.381816, - 45.507051 - ], - [ - -73.381935, - 45.506785 - ], - [ - -73.382054, - 45.506552 - ], - [ - -73.382181, - 45.506291 - ], - [ - -73.382203, - 45.506249 - ], - [ - -73.382294, - 45.50607 - ], - [ - -73.382297, - 45.506061 - ], - [ - -73.382427, - 45.506097 - ], - [ - -73.384621, - 45.506625 - ] - ] - }, - "id": 28, - "properties": { - "id": "a87ebd6a-f278-4a59-b5e6-6ab06b9acc61", - "data": { - "gtfs": { - "shape_id": "8_1_R" - }, - "segments": [ - { - "distanceMeters": 10952, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 426, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 366, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 509, - "travelTimeSeconds": 91 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 673, - "travelTimeSeconds": 121 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 455, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 378, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 466, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 339, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 426, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 455, - "travelTimeSeconds": 100 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 48 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 18803, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3133.5686337995066, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 14.92, - "travelTimeWithoutDwellTimesSeconds": 1260, - "operatingTimeWithLayoverTimeSeconds": 1440, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1260, - "operatingSpeedWithLayoverMetersPerSecond": 13.06, - "averageSpeedWithoutDwellTimesMetersPerSecond": 14.92 - }, - "mode": "bus", - "name": "Promenades St-Bruno", - "color": "#A32638", - "nodes": [ - "61fd8171-4497-441f-b32a-7917186d6014", - "7de9ea25-e152-4431-8cc3-23b5e1427ab3", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "5dd96d41-c4eb-4453-9e97-752999b1688d", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "df4c6e14-8093-4f02-87d3-4b3d84466b04", - "7c34d8fb-52d2-4cf7-8954-ff69847540ac", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "7b30134c-a936-4c6b-8038-780d1041baea", - "9f7ffafe-2aab-4507-b571-cce792adfb7d", - "ff83e3ed-db76-4049-b206-f6a7eb53237f", - "897e999c-9046-44e1-af66-78d190574a64", - "d664171d-6b67-486f-b850-92d7b923ec60", - "af654275-2b6e-4152-a4be-6ba5d5eb2c23", - "8a7f5b7c-86e5-412e-a099-1a9d5ca8dce9", - "c7be2a86-2a63-43b1-993a-6ba9a80be235", - "afdaecf9-9edf-499b-a1d1-693abc0ee347", - "88be8076-6606-4cc2-82bf-848c6a92b1c2", - "284a178b-f032-40f4-9bf0-0ba74e13d985", - "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", - "01e0bcb2-ac63-4c88-b110-c273905a1d5c", - "c4c03f6a-b2dc-4fb8-87cd-df1a4417beae", - "71f7bbc9-363a-40ba-86f7-7f9ec638da55" - ], - "stops": [], - "line_id": "22e67405-9e1a-4912-aa11-919864f608e1", - "segments": [ - 0, - 245, - 262, - 268, - 272, - 278, - 286, - 292, - 301, - 306, - 312, - 327, - 332, - 346, - 363, - 369, - 376, - 382, - 387, - 391, - 407, - 424, - 456, - 468, - 481 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 28, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519259, - 45.524277 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519057, - 45.525166 - ], - [ - -73.518828, - 45.525169 - ], - [ - -73.518662, - 45.525195 - ], - [ - -73.518477, - 45.525222 - ], - [ - -73.51841, - 45.525229 - ], - [ - -73.518309, - 45.525233 - ], - [ - -73.518165, - 45.525238 - ], - [ - -73.517846, - 45.525224 - ], - [ - -73.516858, - 45.525188 - ], - [ - -73.516329, - 45.525185 - ], - [ - -73.51586, - 45.52522 - ], - [ - -73.515879, - 45.525306 - ], - [ - -73.515954, - 45.525625 - ], - [ - -73.515993, - 45.52576 - ], - [ - -73.516108, - 45.52615 - ], - [ - -73.51612, - 45.526192 - ], - [ - -73.516132, - 45.526224 - ], - [ - -73.516245, - 45.52653 - ], - [ - -73.516302, - 45.526687 - ], - [ - -73.516434, - 45.526894 - ], - [ - -73.517006, - 45.527735 - ], - [ - -73.517118, - 45.52798 - ], - [ - -73.517272, - 45.52832 - ], - [ - -73.517504, - 45.528922 - ], - [ - -73.517577, - 45.529094 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518091, - 45.53108 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.517456, - 45.531762 - ], - [ - -73.51664, - 45.532518 - ], - [ - -73.515885, - 45.533161 - ], - [ - -73.515753, - 45.533238 - ], - [ - -73.515672, - 45.533321 - ], - [ - -73.515257, - 45.533788 - ], - [ - -73.515202, - 45.533848 - ], - [ - -73.514831, - 45.534265 - ], - [ - -73.514791, - 45.534311 - ], - [ - -73.514731, - 45.534379 - ], - [ - -73.514684, - 45.534434 - ], - [ - -73.51432, - 45.534799 - ], - [ - -73.513904, - 45.53522 - ], - [ - -73.513681, - 45.535468 - ], - [ - -73.513446, - 45.535689 - ], - [ - -73.51342, - 45.535713 - ], - [ - -73.513155, - 45.535985 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.511182, - 45.537368 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.509332, - 45.539096 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.508029, - 45.540693 - ], - [ - -73.508021, - 45.540689 - ], - [ - -73.507102, - 45.540316 - ], - [ - -73.506536, - 45.540077 - ], - [ - -73.505636, - 45.539712 - ], - [ - -73.504975, - 45.539443 - ], - [ - -73.50484, - 45.539375 - ], - [ - -73.504659, - 45.53925 - ], - [ - -73.504204, - 45.538858 - ], - [ - -73.50401, - 45.538714 - ], - [ - -73.503897, - 45.538651 - ], - [ - -73.5035, - 45.538476 - ], - [ - -73.503036, - 45.53828 - ], - [ - -73.502143, - 45.537905 - ], - [ - -73.501222, - 45.537517 - ], - [ - -73.499534, - 45.536807 - ], - [ - -73.498545, - 45.536398 - ], - [ - -73.498456, - 45.536361 - ], - [ - -73.497345, - 45.53588 - ], - [ - -73.496932, - 45.535682 - ], - [ - -73.496814, - 45.535632 - ], - [ - -73.495879, - 45.535256 - ], - [ - -73.495741, - 45.5352 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.4936, - 45.534347 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.487958, - 45.532012 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.483789, - 45.530279 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.481089, - 45.529153 - ], - [ - -73.48089, - 45.529066 - ], - [ - -73.480753, - 45.529011 - ], - [ - -73.480164, - 45.528774 - ], - [ - -73.479454, - 45.528472 - ], - [ - -73.478761, - 45.528184 - ], - [ - -73.478598, - 45.528117 - ], - [ - -73.477725, - 45.527748 - ], - [ - -73.476969, - 45.527428 - ], - [ - -73.476784, - 45.527351 - ], - [ - -73.476219, - 45.527117 - ], - [ - -73.475894, - 45.526982 - ], - [ - -73.475467, - 45.526811 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.473506, - 45.525989 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.471997, - 45.525357 - ], - [ - -73.471094, - 45.524979 - ], - [ - -73.470555, - 45.524749 - ], - [ - -73.470239, - 45.524623 - ], - [ - -73.469721, - 45.524403 - ], - [ - -73.469522, - 45.524322 - ], - [ - -73.469488, - 45.524307 - ], - [ - -73.468866, - 45.524038 - ], - [ - -73.468048, - 45.523705 - ], - [ - -73.467237, - 45.523363 - ], - [ - -73.466276, - 45.522967 - ], - [ - -73.466082, - 45.522841 - ], - [ - -73.465634, - 45.52266 - ], - [ - -73.464874, - 45.522336 - ], - [ - -73.464609, - 45.522228 - ], - [ - -73.464576, - 45.522215 - ], - [ - -73.464439, - 45.522143 - ], - [ - -73.464336, - 45.522093 - ], - [ - -73.464186, - 45.522017 - ], - [ - -73.463952, - 45.52192 - ], - [ - -73.463125, - 45.521577 - ], - [ - -73.462859, - 45.521467 - ], - [ - -73.46256, - 45.521341 - ], - [ - -73.460844, - 45.520619 - ], - [ - -73.460592, - 45.520513 - ], - [ - -73.460391, - 45.520427 - ], - [ - -73.460276, - 45.520379 - ], - [ - -73.458651, - 45.519707 - ], - [ - -73.457332, - 45.519144 - ], - [ - -73.457262, - 45.519112 - ], - [ - -73.457212, - 45.51909 - ], - [ - -73.456379, - 45.518756 - ], - [ - -73.455695, - 45.518468 - ], - [ - -73.454892, - 45.518124 - ], - [ - -73.454164, - 45.517811 - ], - [ - -73.453487, - 45.51753 - ], - [ - -73.452943, - 45.517304 - ], - [ - -73.452666, - 45.517189 - ], - [ - -73.452271, - 45.517027 - ], - [ - -73.452136, - 45.516973 - ], - [ - -73.452066, - 45.516942 - ], - [ - -73.450032, - 45.516108 - ], - [ - -73.44883, - 45.515598 - ], - [ - -73.448601, - 45.5155 - ], - [ - -73.446983, - 45.51482 - ], - [ - -73.444787, - 45.513896 - ], - [ - -73.443486, - 45.513349 - ], - [ - -73.443129, - 45.513199 - ], - [ - -73.440983, - 45.51229 - ], - [ - -73.440479, - 45.512077 - ], - [ - -73.440007, - 45.511874 - ], - [ - -73.439905, - 45.511834 - ], - [ - -73.439831, - 45.511802 - ], - [ - -73.439067, - 45.511482 - ], - [ - -73.438299, - 45.511131 - ], - [ - -73.438017, - 45.511 - ], - [ - -73.437295, - 45.510659 - ], - [ - -73.437245, - 45.510635 - ], - [ - -73.435988, - 45.510081 - ], - [ - -73.435895, - 45.510041 - ], - [ - -73.435854, - 45.510023 - ], - [ - -73.435569, - 45.509897 - ], - [ - -73.434856, - 45.50959 - ], - [ - -73.434257, - 45.509343 - ], - [ - -73.433925, - 45.509203 - ], - [ - -73.433726, - 45.509117 - ], - [ - -73.433485, - 45.509005 - ], - [ - -73.433108, - 45.508806 - ], - [ - -73.433101, - 45.508802 - ], - [ - -73.432574, - 45.508487 - ], - [ - -73.432044, - 45.508167 - ], - [ - -73.431846, - 45.508041 - ], - [ - -73.43182, - 45.508023 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.431538, - 45.507856 - ], - [ - -73.430825, - 45.507356 - ], - [ - -73.430679, - 45.507221 - ], - [ - -73.430612, - 45.507149 - ], - [ - -73.43049, - 45.506978 - ], - [ - -73.43046, - 45.50692 - ], - [ - -73.430405, - 45.506816 - ], - [ - -73.430319, - 45.506587 - ], - [ - -73.430298, - 45.506497 - ], - [ - -73.430275, - 45.506389 - ], - [ - -73.430272, - 45.506375 - ], - [ - -73.430254, - 45.506263 - ], - [ - -73.430221, - 45.506056 - ], - [ - -73.430022, - 45.505142 - ], - [ - -73.429926, - 45.504769 - ], - [ - -73.429899, - 45.5047 - ], - [ - -73.429873, - 45.504635 - ], - [ - -73.429809, - 45.504476 - ], - [ - -73.429754, - 45.504373 - ], - [ - -73.4297, - 45.504274 - ], - [ - -73.429585, - 45.504116 - ], - [ - -73.429534, - 45.504058 - ], - [ - -73.429455, - 45.503968 - ], - [ - -73.429429, - 45.503936 - ], - [ - -73.429234, - 45.503747 - ], - [ - -73.429121, - 45.503648 - ], - [ - -73.429007, - 45.503562 - ], - [ - -73.428781, - 45.503414 - ], - [ - -73.428662, - 45.503344 - ], - [ - -73.428528, - 45.503265 - ], - [ - -73.428383, - 45.503193 - ], - [ - -73.428061, - 45.503062 - ], - [ - -73.427348, - 45.502808 - ], - [ - -73.427102, - 45.502721 - ], - [ - -73.426292, - 45.502431 - ], - [ - -73.425211, - 45.502047 - ], - [ - -73.423912, - 45.501584 - ], - [ - -73.423518, - 45.501444 - ], - [ - -73.423081, - 45.501291 - ], - [ - -73.422609, - 45.501122 - ], - [ - -73.422513, - 45.501088 - ], - [ - -73.421932, - 45.500878 - ], - [ - -73.421552, - 45.500741 - ], - [ - -73.420988, - 45.50052 - ], - [ - -73.420974, - 45.500516 - ], - [ - -73.420915, - 45.500489 - ], - [ - -73.420674, - 45.50038 - ], - [ - -73.420367, - 45.500227 - ], - [ - -73.420344, - 45.500214 - ], - [ - -73.41991, - 45.499962 - ], - [ - -73.419471, - 45.499673 - ], - [ - -73.419335, - 45.49957 - ], - [ - -73.419049, - 45.499354 - ], - [ - -73.418625, - 45.499061 - ], - [ - -73.418556, - 45.499019 - ], - [ - -73.418366, - 45.498904 - ], - [ - -73.418232, - 45.498822 - ], - [ - -73.417884, - 45.498642 - ], - [ - -73.417509, - 45.498478 - ], - [ - -73.417338, - 45.498403 - ], - [ - -73.416887, - 45.498227 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.415848, - 45.497845 - ], - [ - -73.415069, - 45.497555 - ], - [ - -73.414637, - 45.497397 - ], - [ - -73.414536, - 45.497361 - ], - [ - -73.413391, - 45.496942 - ], - [ - -73.41213, - 45.496482 - ], - [ - -73.411916, - 45.4964 - ], - [ - -73.411766, - 45.496343 - ], - [ - -73.411419, - 45.496194 - ], - [ - -73.410951, - 45.495977 - ], - [ - -73.410895, - 45.495951 - ], - [ - -73.410789, - 45.495896 - ], - [ - -73.409735, - 45.495323 - ], - [ - -73.409349, - 45.495112 - ], - [ - -73.409081, - 45.494957 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.408825, - 45.494811 - ], - [ - -73.408434, - 45.49459 - ], - [ - -73.408369, - 45.494555 - ], - [ - -73.408119, - 45.494419 - ], - [ - -73.407735, - 45.494211 - ], - [ - -73.407648, - 45.494169 - ], - [ - -73.407122, - 45.493914 - ], - [ - -73.406594, - 45.493675 - ], - [ - -73.404056, - 45.49253 - ], - [ - -73.40355, - 45.492282 - ], - [ - -73.403081, - 45.492034 - ], - [ - -73.402782, - 45.491854 - ], - [ - -73.402626, - 45.491759 - ], - [ - -73.402493, - 45.491674 - ], - [ - -73.402463, - 45.491651 - ], - [ - -73.402075, - 45.491386 - ], - [ - -73.401668, - 45.491075 - ], - [ - -73.401167, - 45.490642 - ], - [ - -73.400821, - 45.490307 - ], - [ - -73.40081, - 45.490296 - ], - [ - -73.399882, - 45.489346 - ], - [ - -73.398629, - 45.488062 - ], - [ - -73.398315, - 45.487742 - ], - [ - -73.398311, - 45.487738 - ], - [ - -73.397543, - 45.486952 - ], - [ - -73.397073, - 45.486473 - ], - [ - -73.396515, - 45.485901 - ], - [ - -73.395797, - 45.485167 - ], - [ - -73.395471, - 45.484864 - ], - [ - -73.395424, - 45.48482 - ], - [ - -73.39519, - 45.484626 - ], - [ - -73.394903, - 45.484401 - ], - [ - -73.39454, - 45.484131 - ], - [ - -73.394481, - 45.484095 - ], - [ - -73.394291, - 45.483964 - ], - [ - -73.393942, - 45.483748 - ], - [ - -73.393737, - 45.48363 - ], - [ - -73.393666, - 45.48359 - ], - [ - -73.393194, - 45.483333 - ], - [ - -73.393092, - 45.483281 - ], - [ - -73.389604, - 45.481489 - ], - [ - -73.389467, - 45.481417 - ], - [ - -73.389334, - 45.481534 - ], - [ - -73.389333, - 45.481535 - ], - [ - -73.389135, - 45.481777 - ], - [ - -73.388998, - 45.481957 - ], - [ - -73.388994, - 45.481962 - ], - [ - -73.388761, - 45.482271 - ], - [ - -73.38817, - 45.483085 - ], - [ - -73.388122, - 45.483153 - ], - [ - -73.38807, - 45.483229 - ], - [ - -73.387267, - 45.484313 - ], - [ - -73.386793, - 45.484951 - ], - [ - -73.386456, - 45.485401 - ], - [ - -73.386282, - 45.485639 - ], - [ - -73.386108, - 45.485909 - ], - [ - -73.386075, - 45.485969 - ], - [ - -73.386009, - 45.486084 - ], - [ - -73.385921, - 45.486295 - ], - [ - -73.38587, - 45.486444 - ], - [ - -73.385849, - 45.486507 - ], - [ - -73.385822, - 45.486649 - ], - [ - -73.385794, - 45.486795 - ], - [ - -73.385708, - 45.487123 - ], - [ - -73.385538, - 45.487429 - ], - [ - -73.385285, - 45.487843 - ], - [ - -73.384988, - 45.488254 - ], - [ - -73.384901, - 45.488369 - ], - [ - -73.384743, - 45.488246 - ], - [ - -73.384445, - 45.488089 - ], - [ - -73.384044, - 45.487891 - ], - [ - -73.383491, - 45.487611 - ], - [ - -73.38338, - 45.487555 - ], - [ - -73.382868, - 45.487294 - ], - [ - -73.3825, - 45.487106 - ], - [ - -73.382345, - 45.487025 - ], - [ - -73.382231, - 45.487138 - ], - [ - -73.382081, - 45.487303 - ], - [ - -73.382078, - 45.487305 - ], - [ - -73.381863, - 45.487505 - ], - [ - -73.38174, - 45.487635 - ], - [ - -73.381669, - 45.487708 - ], - [ - -73.381607, - 45.487781 - ], - [ - -73.38156, - 45.487854 - ], - [ - -73.381517, - 45.487933 - ], - [ - -73.381417, - 45.488119 - ], - [ - -73.381404, - 45.488142 - ], - [ - -73.381186, - 45.488604 - ], - [ - -73.380868, - 45.489241 - ], - [ - -73.380814, - 45.489347 - ], - [ - -73.380386, - 45.490223 - ], - [ - -73.380351, - 45.490295 - ], - [ - -73.380087, - 45.490835 - ], - [ - -73.379711, - 45.491585 - ], - [ - -73.379127, - 45.492764 - ], - [ - -73.379078, - 45.492868 - ], - [ - -73.378925, - 45.49319 - ], - [ - -73.378882, - 45.493284 - ], - [ - -73.378825, - 45.493393 - ], - [ - -73.378766, - 45.493505 - ], - [ - -73.378702, - 45.493632 - ], - [ - -73.378691, - 45.493655 - ], - [ - -73.377435, - 45.496193 - ], - [ - -73.377344, - 45.496377 - ], - [ - -73.377276, - 45.496509 - ], - [ - -73.377071, - 45.496916 - ], - [ - -73.376682, - 45.497687 - ], - [ - -73.37615, - 45.498819 - ], - [ - -73.375996, - 45.499106 - ], - [ - -73.375297, - 45.50049 - ], - [ - -73.37513, - 45.500889 - ], - [ - -73.37508, - 45.500984 - ], - [ - -73.37455, - 45.501981 - ], - [ - -73.374382, - 45.50231 - ], - [ - -73.374326, - 45.502409 - ], - [ - -73.374466, - 45.502454 - ], - [ - -73.374509, - 45.502464 - ], - [ - -73.374786, - 45.50253 - ], - [ - -73.375092, - 45.502612 - ], - [ - -73.375264, - 45.502648 - ], - [ - -73.375427, - 45.502684 - ], - [ - -73.375574, - 45.502747 - ], - [ - -73.375726, - 45.502811 - ], - [ - -73.376319, - 45.503059 - ], - [ - -73.376016, - 45.503247 - ], - [ - -73.375972, - 45.503274 - ], - [ - -73.375698, - 45.503485 - ], - [ - -73.375447, - 45.503715 - ], - [ - -73.375293, - 45.503854 - ], - [ - -73.37517, - 45.50398 - ], - [ - -73.374998, - 45.504213 - ], - [ - -73.374854, - 45.504429 - ], - [ - -73.374722, - 45.5046 - ], - [ - -73.374697, - 45.504635 - ], - [ - -73.374644, - 45.504709 - ], - [ - -73.374625, - 45.504735 - ], - [ - -73.374598, - 45.504793 - ], - [ - -73.374583, - 45.504843 - ], - [ - -73.374565, - 45.504919 - ], - [ - -73.374581, - 45.50514 - ], - [ - -73.37462, - 45.505338 - ], - [ - -73.374746, - 45.505563 - ], - [ - -73.374844, - 45.505788 - ], - [ - -73.374951, - 45.505973 - ], - [ - -73.375061, - 45.506067 - ], - [ - -73.375295, - 45.506238 - ], - [ - -73.375424, - 45.506333 - ], - [ - -73.375748, - 45.506597 - ], - [ - -73.375784, - 45.506626 - ], - [ - -73.375859, - 45.506698 - ], - [ - -73.375911, - 45.506761 - ], - [ - -73.375985, - 45.506896 - ], - [ - -73.376046, - 45.507022 - ], - [ - -73.376084, - 45.507108 - ], - [ - -73.376232, - 45.50739 - ], - [ - -73.376268, - 45.507459 - ], - [ - -73.376298, - 45.507513 - ], - [ - -73.376345, - 45.507576 - ], - [ - -73.3764, - 45.507639 - ], - [ - -73.376512, - 45.507729 - ], - [ - -73.376632, - 45.507801 - ], - [ - -73.376837, - 45.507891 - ], - [ - -73.376868, - 45.507902 - ], - [ - -73.376914, - 45.507917 - ], - [ - -73.377114, - 45.507982 - ], - [ - -73.377442, - 45.508081 - ], - [ - -73.377571, - 45.508108 - ], - [ - -73.377699, - 45.508135 - ], - [ - -73.377779, - 45.508144 - ], - [ - -73.377878, - 45.50815 - ], - [ - -73.377933, - 45.508153 - ], - [ - -73.378119, - 45.508163 - ], - [ - -73.378452, - 45.508145 - ], - [ - -73.378562, - 45.50814 - ], - [ - -73.378788, - 45.50813 - ], - [ - -73.379147, - 45.508114 - ], - [ - -73.3793, - 45.508105 - ], - [ - -73.379404, - 45.508091 - ], - [ - -73.379526, - 45.508074 - ], - [ - -73.379622, - 45.508047 - ], - [ - -73.379724, - 45.508025 - ], - [ - -73.379863, - 45.507975 - ], - [ - -73.380059, - 45.50789 - ], - [ - -73.380179, - 45.507823 - ], - [ - -73.380268, - 45.507759 - ], - [ - -73.380399, - 45.507666 - ], - [ - -73.380503, - 45.507585 - ], - [ - -73.380626, - 45.507481 - ], - [ - -73.38128, - 45.507806 - ], - [ - -73.381389, - 45.507851 - ], - [ - -73.381468, - 45.507752 - ], - [ - -73.381562, - 45.507572 - ], - [ - -73.381667, - 45.507356 - ], - [ - -73.381733, - 45.507226 - ], - [ - -73.381816, - 45.507051 - ], - [ - -73.381935, - 45.506785 - ], - [ - -73.382054, - 45.506552 - ], - [ - -73.382181, - 45.506291 - ], - [ - -73.382294, - 45.50607 - ], - [ - -73.382297, - 45.506061 - ], - [ - -73.382427, - 45.506097 - ], - [ - -73.384621, - 45.506625 - ] - ] - }, - "id": 29, - "properties": { - "id": "30648951-5d10-46eb-9104-08963a732674", - "data": { - "gtfs": { - "shape_id": "8_1_R" - }, - "segments": [ - { - "distanceMeters": 1370, - "travelTimeSeconds": 159 - }, - { - "distanceMeters": 629, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 434, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 511, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 378, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 446, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 344, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 387, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 316, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 432, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 820, - "travelTimeSeconds": 94 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 390, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 368, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 555, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 434, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 312, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 477, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 663, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 385, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 877, - "travelTimeSeconds": 70 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 216, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 18803, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11333.805254856334, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.7, - "travelTimeWithoutDwellTimesSeconds": 2160, - "operatingTimeWithLayoverTimeSeconds": 2376, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2160, - "operatingSpeedWithLayoverMetersPerSecond": 7.91, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.7 - }, - "mode": "bus", - "name": "Promenades St-Bruno", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "b19be6c8-c333-401a-98e4-d16876257831", - "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "d00d9138-966b-4522-be1d-8c665c71246b", - "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", - "48ea0d06-7b69-4895-b55b-2a18e6e6f906", - "21e2e89a-3df0-4ff7-aa64-17a07fbd660e", - "0b419003-a369-45de-8ce5-7da6890d7f0a", - "680dba5d-14fa-4f77-98bd-f3a49fec7b48", - "f45a38ac-0f3f-41d9-9da1-be7902cc983a", - "9cf81604-6d70-4ba8-a3fc-521104742058", - "28f2fe65-961c-4550-a722-1e7790fe94ad", - "9d0a7ab6-be66-4ca9-b863-8712d8cd028c", - "999ed130-7d99-4115-ac3c-cabba7731288", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "27c5df15-201f-4855-9f49-556fd659fd8e", - "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", - "aa7795c0-dd5c-4462-b672-459c92223af2", - "49918c5a-8414-49fd-abf9-87ae6b9f3976", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "011d1f54-164c-4564-a051-bdacad3e287d", - "c3a2368c-bf2d-4c72-9adb-41ee799004b3", - "6885c351-726d-4431-84b5-d9262699183f", - "4e3112b5-abc7-4db5-a6a8-19b4193263c2", - "a5ca0f69-bb6f-4ef0-aaaa-1498b5ff9d00", - "ca3fc9fc-e2eb-41c4-a8d2-0ad2d2109db1", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "d3991811-d92b-4ba2-9732-26a74abc49b7", - "a873c2b7-5c8e-4dd4-9140-a7e8d042d038", - "b8513e69-5eee-478d-b428-8f498c145b40", - "344c16fc-7161-4015-9999-e3e0f325dd1e", - "abd431b8-dcf2-4c7a-a458-732690905187", - "dcaa1460-3c81-4616-b65b-ed7fae894032", - "a3922a48-9f26-4845-9881-2b33d59d0127", - "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", - "686bdc34-3602-4c31-b05f-c41f9ebe2543", - "48cbd834-3690-4d56-af66-277be54f9820", - "648a2d3d-42dd-4ea9-875b-0eb410b8b1e8", - "74cb2351-ff1a-4938-8179-802bb3572f42", - "b904303e-de8b-4c71-8b48-48af0de2a9a1", - "61fd8171-4497-441f-b32a-7917186d6014", - "7de9ea25-e152-4431-8cc3-23b5e1427ab3", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "5dd96d41-c4eb-4453-9e97-752999b1688d", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "df4c6e14-8093-4f02-87d3-4b3d84466b04", - "7c34d8fb-52d2-4cf7-8954-ff69847540ac", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "7b30134c-a936-4c6b-8038-780d1041baea", - "9f7ffafe-2aab-4507-b571-cce792adfb7d", - "ff83e3ed-db76-4049-b206-f6a7eb53237f" - ], - "stops": [], - "line_id": "22e67405-9e1a-4912-aa11-919864f608e1", - "segments": [ - 0, - 56, - 75, - 81, - 89, - 100, - 108, - 112, - 117, - 122, - 131, - 135, - 141, - 146, - 150, - 156, - 165, - 173, - 182, - 188, - 192, - 195, - 201, - 203, - 205, - 207, - 215, - 227, - 244, - 249, - 266, - 268, - 281, - 287, - 298, - 301, - 309, - 316, - 331, - 333, - 339, - 350, - 354, - 367, - 383, - 396, - 401, - 406, - 416, - 427, - 445, - 465 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 29, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.426706, - 45.506817 - ], - [ - -73.426601, - 45.507025 - ], - [ - -73.426318, - 45.507578 - ], - [ - -73.426298, - 45.507614 - ], - [ - -73.42627, - 45.507659 - ], - [ - -73.426239, - 45.507691 - ], - [ - -73.426194, - 45.507718 - ], - [ - -73.426141, - 45.507753 - ], - [ - -73.425991, - 45.507803 - ], - [ - -73.425844, - 45.507844 - ], - [ - -73.425671, - 45.507884 - ], - [ - -73.425517, - 45.507911 - ], - [ - -73.425226, - 45.507965 - ], - [ - -73.425136, - 45.507976 - ], - [ - -73.424982, - 45.507996 - ], - [ - -73.424804, - 45.508018 - ], - [ - -73.424075, - 45.508099 - ], - [ - -73.423658, - 45.508135 - ], - [ - -73.423075, - 45.50817 - ], - [ - -73.422749, - 45.508193 - ], - [ - -73.422385, - 45.508219 - ], - [ - -73.420612, - 45.508335 - ], - [ - -73.418548, - 45.508464 - ], - [ - -73.417901, - 45.508502 - ], - [ - -73.417791, - 45.508509 - ], - [ - -73.416795, - 45.50858 - ], - [ - -73.414904, - 45.508705 - ], - [ - -73.41478, - 45.508713 - ], - [ - -73.414755, - 45.50847 - ], - [ - -73.414738, - 45.508339 - ], - [ - -73.414729, - 45.508272 - ], - [ - -73.414689, - 45.508002 - ], - [ - -73.41461, - 45.507863 - ], - [ - -73.414461, - 45.507795 - ], - [ - -73.414263, - 45.507764 - ], - [ - -73.413354, - 45.507827 - ], - [ - -73.41298, - 45.507853 - ], - [ - -73.412929, - 45.507488 - ], - [ - -73.412886, - 45.507187 - ], - [ - -73.412894, - 45.507083 - ], - [ - -73.412909, - 45.507038 - ], - [ - -73.412951, - 45.506962 - ], - [ - -73.412993, - 45.506876 - ], - [ - -73.413113, - 45.506647 - ], - [ - -73.413298, - 45.506287 - ], - [ - -73.413426, - 45.506022 - ], - [ - -73.413444, - 45.505954 - ], - [ - -73.413447, - 45.505864 - ], - [ - -73.413421, - 45.505761 - ], - [ - -73.413394, - 45.505639 - ], - [ - -73.413362, - 45.505542 - ], - [ - -73.413318, - 45.50541 - ], - [ - -73.413143, - 45.505428 - ], - [ - -73.413013, - 45.505441 - ], - [ - -73.412864, - 45.50545 - ], - [ - -73.412747, - 45.50545 - ], - [ - -73.412645, - 45.505436 - ], - [ - -73.412507, - 45.505418 - ], - [ - -73.411658, - 45.505218 - ], - [ - -73.411569, - 45.505197 - ], - [ - -73.41077, - 45.504994 - ], - [ - -73.409954, - 45.504798 - ], - [ - -73.409774, - 45.504755 - ], - [ - -73.409315, - 45.504637 - ], - [ - -73.408932, - 45.504538 - ], - [ - -73.408367, - 45.504398 - ], - [ - -73.407928, - 45.504289 - ], - [ - -73.407766, - 45.504249 - ], - [ - -73.407616, - 45.504568 - ], - [ - -73.407466, - 45.504879 - ], - [ - -73.406471, - 45.506871 - ], - [ - -73.406247, - 45.507321 - ], - [ - -73.406194, - 45.507427 - ], - [ - -73.406159, - 45.507496 - ], - [ - -73.40548, - 45.508881 - ], - [ - -73.40545, - 45.508953 - ], - [ - -73.405438, - 45.509025 - ], - [ - -73.40546, - 45.509233 - ], - [ - -73.405469, - 45.509313 - ], - [ - -73.404168, - 45.509416 - ], - [ - -73.403309, - 45.509478 - ], - [ - -73.402911, - 45.509505 - ], - [ - -73.402551, - 45.509518 - ], - [ - -73.400685, - 45.509557 - ], - [ - -73.400193, - 45.50957 - ], - [ - -73.399756, - 45.509583 - ], - [ - -73.39958, - 45.509593 - ], - [ - -73.399448, - 45.509601 - ], - [ - -73.399352, - 45.508899 - ], - [ - -73.39931, - 45.508585 - ], - [ - -73.399294, - 45.508462 - ], - [ - -73.399247, - 45.508093 - ], - [ - -73.399228, - 45.507945 - ], - [ - -73.399213, - 45.507801 - ], - [ - -73.399133, - 45.507198 - ], - [ - -73.399108, - 45.507031 - ], - [ - -73.399108, - 45.507029 - ], - [ - -73.399117, - 45.50695 - ], - [ - -73.39914, - 45.506797 - ], - [ - -73.399188, - 45.506676 - ], - [ - -73.399379, - 45.50637 - ], - [ - -73.399802, - 45.506078 - ], - [ - -73.399985, - 45.50597 - ], - [ - -73.400014, - 45.505955 - ], - [ - -73.400152, - 45.505885 - ], - [ - -73.400052, - 45.505795 - ], - [ - -73.399949, - 45.505664 - ], - [ - -73.399886, - 45.505552 - ], - [ - -73.39982, - 45.505426 - ], - [ - -73.399787, - 45.505322 - ], - [ - -73.39976, - 45.505156 - ], - [ - -73.399736, - 45.504811 - ], - [ - -73.399729, - 45.504706 - ], - [ - -73.399657, - 45.504175 - ], - [ - -73.399564, - 45.503515 - ], - [ - -73.399542, - 45.50336 - ], - [ - -73.399508, - 45.503131 - ], - [ - -73.399441, - 45.502676 - ], - [ - -73.399417, - 45.50246 - ], - [ - -73.399403, - 45.502353 - ], - [ - -73.399355, - 45.501992 - ], - [ - -73.399874, - 45.501962 - ], - [ - -73.400805, - 45.501907 - ], - [ - -73.40102, - 45.501895 - ], - [ - -73.402013, - 45.501846 - ], - [ - -73.402508, - 45.501802 - ], - [ - -73.402792, - 45.501768 - ], - [ - -73.402812, - 45.501766 - ], - [ - -73.402978, - 45.501726 - ], - [ - -73.403257, - 45.501667 - ], - [ - -73.403564, - 45.501582 - ], - [ - -73.4038, - 45.50151 - ], - [ - -73.404012, - 45.501416 - ], - [ - -73.404181, - 45.501344 - ], - [ - -73.404368, - 45.50125 - ], - [ - -73.404541, - 45.501151 - ], - [ - -73.404768, - 45.501003 - ], - [ - -73.405014, - 45.500818 - ], - [ - -73.40518, - 45.500655 - ], - [ - -73.405183, - 45.500652 - ], - [ - -73.40521, - 45.500625 - ], - [ - -73.405385, - 45.500423 - ], - [ - -73.405524, - 45.500243 - ], - [ - -73.405638, - 45.500032 - ], - [ - -73.405906, - 45.499487 - ], - [ - -73.406057, - 45.499182 - ], - [ - -73.40631, - 45.498674 - ], - [ - -73.406337, - 45.498619 - ], - [ - -73.406457, - 45.498439 - ], - [ - -73.406574, - 45.498264 - ], - [ - -73.407513, - 45.498634 - ], - [ - -73.407743, - 45.498715 - ], - [ - -73.408565, - 45.499044 - ], - [ - -73.408613, - 45.499067 - ], - [ - -73.408846, - 45.499152 - ], - [ - -73.409074, - 45.499238 - ], - [ - -73.409299, - 45.499326 - ], - [ - -73.40994, - 45.499576 - ], - [ - -73.41035, - 45.499737 - ], - [ - -73.410514, - 45.499802 - ], - [ - -73.410857, - 45.499937 - ], - [ - -73.411184, - 45.500063 - ], - [ - -73.411736, - 45.500269 - ], - [ - -73.411788, - 45.500288 - ], - [ - -73.412014, - 45.500375 - ], - [ - -73.412332, - 45.500496 - ], - [ - -73.412769, - 45.500658 - ], - [ - -73.41311, - 45.500798 - ], - [ - -73.413399, - 45.500906 - ], - [ - -73.413646, - 45.500992 - ], - [ - -73.414045, - 45.501145 - ], - [ - -73.414425, - 45.501288 - ], - [ - -73.414536, - 45.50133 - ], - [ - -73.414962, - 45.501488 - ], - [ - -73.415352, - 45.501632 - ], - [ - -73.415771, - 45.501785 - ], - [ - -73.416178, - 45.501934 - ], - [ - -73.416751, - 45.502146 - ], - [ - -73.417055, - 45.502257 - ], - [ - -73.417293, - 45.502344 - ], - [ - -73.417806, - 45.502538 - ], - [ - -73.418173, - 45.502669 - ], - [ - -73.418847, - 45.502921 - ], - [ - -73.418856, - 45.502925 - ], - [ - -73.419167, - 45.503047 - ], - [ - -73.419278, - 45.503088 - ], - [ - -73.419673, - 45.503241 - ], - [ - -73.420142, - 45.503431 - ], - [ - -73.420676, - 45.503659 - ], - [ - -73.420806, - 45.503714 - ], - [ - -73.421234, - 45.503904 - ], - [ - -73.421648, - 45.504084 - ], - [ - -73.422009, - 45.504242 - ], - [ - -73.422355, - 45.50439 - ], - [ - -73.423115, - 45.504715 - ], - [ - -73.423488, - 45.504876 - ], - [ - -73.42368, - 45.504958 - ], - [ - -73.423967, - 45.505084 - ], - [ - -73.424527, - 45.505328 - ], - [ - -73.42486, - 45.505472 - ], - [ - -73.424965, - 45.505517 - ], - [ - -73.425433, - 45.505715 - ], - [ - -73.425471, - 45.505742 - ], - [ - -73.425589, - 45.505823 - ], - [ - -73.425852, - 45.505949 - ], - [ - -73.426079, - 45.506046 - ], - [ - -73.426348, - 45.506161 - ], - [ - -73.426669, - 45.506298 - ], - [ - -73.426919, - 45.506405 - ], - [ - -73.42775, - 45.506774 - ], - [ - -73.427847, - 45.506792 - ], - [ - -73.428015, - 45.506824 - ], - [ - -73.428153, - 45.506828 - ], - [ - -73.428285, - 45.506833 - ], - [ - -73.428429, - 45.506818 - ], - [ - -73.428656, - 45.506779 - ], - [ - -73.428772, - 45.506761 - ], - [ - -73.428988, - 45.506721 - ], - [ - -73.429213, - 45.50668 - ], - [ - -73.430099, - 45.506555 - ], - [ - -73.430298, - 45.506497 - ], - [ - -73.43042, - 45.506461 - ], - [ - -73.430657, - 45.506416 - ], - [ - -73.430775, - 45.506407 - ], - [ - -73.430973, - 45.506398 - ], - [ - -73.431142, - 45.506394 - ], - [ - -73.431236, - 45.506407 - ], - [ - -73.431326, - 45.506421 - ], - [ - -73.43148, - 45.506448 - ], - [ - -73.431617, - 45.506484 - ], - [ - -73.431849, - 45.50657 - ], - [ - -73.432042, - 45.506664 - ], - [ - -73.432116, - 45.506678 - ], - [ - -73.432305, - 45.506772 - ], - [ - -73.432507, - 45.50688 - ], - [ - -73.432697, - 45.506971 - ], - [ - -73.432823, - 45.507025 - ], - [ - -73.432958, - 45.507065 - ], - [ - -73.43308, - 45.507092 - ], - [ - -73.433316, - 45.507128 - ], - [ - -73.433481, - 45.507146 - ], - [ - -73.434228, - 45.507219 - ], - [ - -73.435015, - 45.507249 - ], - [ - -73.435792, - 45.507278 - ], - [ - -73.436434, - 45.507297 - ], - [ - -73.43796, - 45.507288 - ], - [ - -73.438426, - 45.507284 - ], - [ - -73.439054, - 45.507258 - ], - [ - -73.442227, - 45.507039 - ], - [ - -73.442366, - 45.507034 - ], - [ - -73.442555, - 45.507021 - ], - [ - -73.443732, - 45.506945 - ], - [ - -73.445125, - 45.506865 - ], - [ - -73.445578, - 45.50682 - ], - [ - -73.446069, - 45.506789 - ], - [ - -73.447691, - 45.506681 - ], - [ - -73.450484, - 45.506494 - ], - [ - -73.45126, - 45.506445 - ], - [ - -73.451887, - 45.506404 - ], - [ - -73.452198, - 45.506382 - ], - [ - -73.452619, - 45.506355 - ], - [ - -73.452813, - 45.506342 - ], - [ - -73.453036, - 45.506328 - ], - [ - -73.453375, - 45.506301 - ], - [ - -73.453626, - 45.506284 - ], - [ - -73.453792, - 45.506275 - ], - [ - -73.45462, - 45.506212 - ], - [ - -73.455407, - 45.506145 - ], - [ - -73.4557, - 45.506113 - ], - [ - -73.456027, - 45.506073 - ], - [ - -73.456441, - 45.506015 - ], - [ - -73.456937, - 45.505934 - ], - [ - -73.457379, - 45.505858 - ], - [ - -73.457907, - 45.505777 - ], - [ - -73.459817, - 45.505548 - ], - [ - -73.460124, - 45.505512 - ], - [ - -73.460429, - 45.505476 - ], - [ - -73.460924, - 45.505418 - ], - [ - -73.46135, - 45.505363 - ], - [ - -73.461479, - 45.505346 - ], - [ - -73.461828, - 45.505274 - ], - [ - -73.462125, - 45.505283 - ], - [ - -73.462434, - 45.505254 - ], - [ - -73.462468, - 45.505444 - ], - [ - -73.462548, - 45.505805 - ], - [ - -73.462686, - 45.505794 - ], - [ - -73.464899, - 45.505604 - ], - [ - -73.465836, - 45.50551 - ], - [ - -73.467696, - 45.505308 - ], - [ - -73.468178, - 45.505267 - ], - [ - -73.470418, - 45.50511 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492937, - 45.510118 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497944, - 45.512059 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.500895, - 45.513013 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505136, - 45.514487 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506107, - 45.514749 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515009, - 45.519424 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518902, - 45.520632 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 30, - "properties": { - "id": "850f74ed-cae6-4d9f-9eaa-05af1edec586", - "data": { - "gtfs": { - "shape_id": "9_1_A" - }, - "segments": [ - { - "distanceMeters": 197, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 380, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 388, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 470, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 5741, - "travelTimeSeconds": 420 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 987, - "travelTimeSeconds": 170 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 744, - "travelTimeSeconds": 129 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 192, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 15386, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7601.092679000949, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.01, - "travelTimeWithoutDwellTimesSeconds": 1920, - "operatingTimeWithLayoverTimeSeconds": 2112, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1920, - "operatingSpeedWithLayoverMetersPerSecond": 7.28, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.01 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", - "b989758c-7e40-49d2-b551-b6f0e525013b", - "8760b56a-bae1-4862-80b6-347cc65704e3", - "86f64d55-814a-4fbc-858b-c5c25e590481", - "a591956d-b42e-4489-8d54-3a5d5df835c1", - "16d596f0-097e-4afe-b8c4-9b129c3c3d66", - "72cda4fb-fbe8-47ba-b42e-f310ef91d335", - "bf493d01-4cc2-40cf-9fee-339de5acd0ce", - "35110be1-21ec-490a-b4c8-8b20aa6bef7f", - "aa49b5ca-26fd-4fe1-8e89-4237204a7250", - "6212287c-a903-4f14-b932-9fa7dcb13f7b", - "0ea4fa54-ee0f-4999-90e6-2b0f71f6030e", - "c22b0880-b3ca-4797-aa47-0cda85146514", - "ff0214aa-5a67-4237-87c2-863aa17e8087", - "6765611d-305b-41e3-b519-b65e608494ba", - "b20c17a3-277e-418e-90be-8f8d32918ba9", - "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", - "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", - "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", - "00ed067b-7627-492d-ac0f-5d03bd3b185c", - "dc630e4d-102e-48b9-8b4a-920cafc01d4a", - "d2cca46c-df28-490b-b5de-9bc99956bc15", - "aab8672e-86c9-4a43-9806-f5135dc02b4e", - "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", - "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", - "69889f24-c076-4661-981b-6008a401d446", - "853b0202-bae1-4c20-ab0e-8b27d1350e9a", - "46ea2114-c4d6-46e8-be5d-60d028340abb", - "e460be07-05e4-49f8-a725-e63809c74139", - "235a92b0-53e1-410c-b264-d57c7814303c", - "7207a900-095a-4a6f-9e58-d5821a46e7d1", - "2d759b9b-5efb-4a57-814c-915d6b6185d7", - "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "a5b9648a-83c0-4eab-a54b-68c23aecae43", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "cd0e7785-c68b-4cce-83f8-55ea692f6e31", - "segments": [ - 0, - 13, - 19, - 23, - 26, - 35, - 50, - 58, - 61, - 66, - 72, - 77, - 86, - 89, - 96, - 103, - 111, - 114, - 119, - 122, - 126, - 138, - 148, - 156, - 158, - 164, - 171, - 178, - 183, - 188, - 195, - 199, - 207, - 324, - 337, - 340, - 347, - 383, - 389 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 30, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521447, - 45.524278 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519264, - 45.520728 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.518513, - 45.520507 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.515006, - 45.519331 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.51323, - 45.517465 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509952, - 45.515502 - ], - [ - -73.509485, - 45.515357 - ], - [ - -73.509478, - 45.515354 - ], - [ - -73.509376, - 45.515323 - ], - [ - -73.508692, - 45.515143 - ], - [ - -73.508296, - 45.51503 - ], - [ - -73.507817, - 45.514868 - ], - [ - -73.507704, - 45.514841 - ], - [ - -73.507464, - 45.514765 - ], - [ - -73.506516, - 45.514432 - ], - [ - -73.505464, - 45.514054 - ], - [ - -73.505166, - 45.51396 - ], - [ - -73.504861, - 45.513863 - ], - [ - -73.504794, - 45.513842 - ], - [ - -73.504451, - 45.513734 - ], - [ - -73.50434, - 45.513699 - ], - [ - -73.504259, - 45.513672 - ], - [ - -73.503369, - 45.513397 - ], - [ - -73.502433, - 45.51315 - ], - [ - -73.502048, - 45.513078 - ], - [ - -73.501572, - 45.512943 - ], - [ - -73.501411, - 45.512898 - ], - [ - -73.50108, - 45.512799 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499691, - 45.512352 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498228, - 45.511895 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.494318, - 45.510462 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.494088, - 45.51035 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491861, - 45.508711 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488355, - 45.503066 - ], - [ - -73.4883, - 45.502913 - ], - [ - -73.488219, - 45.502531 - ], - [ - -73.488223, - 45.502405 - ], - [ - -73.488245, - 45.502293 - ], - [ - -73.488296, - 45.502185 - ], - [ - -73.488375, - 45.502086 - ], - [ - -73.488484, - 45.502 - ], - [ - -73.488609, - 45.501937 - ], - [ - -73.48874, - 45.501892 - ], - [ - -73.48888, - 45.501865 - ], - [ - -73.489028, - 45.501856 - ], - [ - -73.489181, - 45.501865 - ], - [ - -73.489324, - 45.501892 - ], - [ - -73.489461, - 45.501933 - ], - [ - -73.489585, - 45.501991 - ], - [ - -73.489692, - 45.502068 - ], - [ - -73.489786, - 45.502153 - ], - [ - -73.489942, - 45.502342 - ], - [ - -73.490006, - 45.50245 - ], - [ - -73.490054, - 45.502558 - ], - [ - -73.490086, - 45.502666 - ], - [ - -73.490092, - 45.502779 - ], - [ - -73.490078, - 45.502833 - ], - [ - -73.490064, - 45.502891 - ], - [ - -73.490004, - 45.502995 - ], - [ - -73.489917, - 45.503094 - ], - [ - -73.489808, - 45.503175 - ], - [ - -73.489675, - 45.503242 - ], - [ - -73.489524, - 45.503287 - ], - [ - -73.489359, - 45.50331 - ], - [ - -73.489186, - 45.503323 - ], - [ - -73.488817, - 45.503318 - ], - [ - -73.487515, - 45.503242 - ], - [ - -73.486872, - 45.503273 - ], - [ - -73.486502, - 45.503323 - ], - [ - -73.486146, - 45.503381 - ], - [ - -73.484224, - 45.503808 - ], - [ - -73.483407, - 45.503957 - ], - [ - -73.482922, - 45.504029 - ], - [ - -73.482166, - 45.504114 - ], - [ - -73.481092, - 45.504204 - ], - [ - -73.4802, - 45.504262 - ], - [ - -73.47719, - 45.50446 - ], - [ - -73.477132, - 45.504462 - ], - [ - -73.474463, - 45.504585 - ], - [ - -73.473732, - 45.504621 - ], - [ - -73.47326, - 45.50463 - ], - [ - -73.472594, - 45.504625 - ], - [ - -73.472184, - 45.504602 - ], - [ - -73.471986, - 45.50458 - ], - [ - -73.471671, - 45.504521 - ], - [ - -73.471417, - 45.504449 - ], - [ - -73.471243, - 45.504386 - ], - [ - -73.471084, - 45.504314 - ], - [ - -73.470936, - 45.504242 - ], - [ - -73.470798, - 45.504161 - ], - [ - -73.470671, - 45.504076 - ], - [ - -73.470553, - 45.503986 - ], - [ - -73.469982, - 45.503502 - ], - [ - -73.469677, - 45.503226 - ], - [ - -73.469614, - 45.503168 - ], - [ - -73.469513, - 45.50323 - ], - [ - -73.469419, - 45.503287 - ], - [ - -73.469308, - 45.503357 - ], - [ - -73.469279, - 45.503422 - ], - [ - -73.469231, - 45.50345 - ], - [ - -73.468749, - 45.503738 - ], - [ - -73.468134, - 45.504106 - ], - [ - -73.46771, - 45.504363 - ], - [ - -73.467476, - 45.504484 - ], - [ - -73.467257, - 45.504583 - ], - [ - -73.467047, - 45.504673 - ], - [ - -73.466778, - 45.504767 - ], - [ - -73.466492, - 45.50483 - ], - [ - -73.466169, - 45.504898 - ], - [ - -73.465884, - 45.504943 - ], - [ - -73.46553, - 45.504965 - ], - [ - -73.465067, - 45.504996 - ], - [ - -73.464545, - 45.505041 - ], - [ - -73.463624, - 45.505104 - ], - [ - -73.46332, - 45.50509 - ], - [ - -73.462732, - 45.505141 - ], - [ - -73.462564, - 45.505155 - ], - [ - -73.462414, - 45.50516 - ], - [ - -73.462303, - 45.505157 - ], - [ - -73.462173, - 45.505157 - ], - [ - -73.462046, - 45.50518 - ], - [ - -73.461961, - 45.505207 - ], - [ - -73.461828, - 45.505274 - ], - [ - -73.461479, - 45.505346 - ], - [ - -73.460924, - 45.505418 - ], - [ - -73.460429, - 45.505476 - ], - [ - -73.460124, - 45.505512 - ], - [ - -73.459817, - 45.505548 - ], - [ - -73.459099, - 45.505634 - ], - [ - -73.457907, - 45.505777 - ], - [ - -73.457379, - 45.505858 - ], - [ - -73.456937, - 45.505934 - ], - [ - -73.456441, - 45.506015 - ], - [ - -73.456402, - 45.50602 - ], - [ - -73.456027, - 45.506073 - ], - [ - -73.4557, - 45.506113 - ], - [ - -73.455407, - 45.506145 - ], - [ - -73.45462, - 45.506212 - ], - [ - -73.453792, - 45.506275 - ], - [ - -73.453626, - 45.506284 - ], - [ - -73.453522, - 45.506291 - ], - [ - -73.453375, - 45.506301 - ], - [ - -73.453036, - 45.506328 - ], - [ - -73.452813, - 45.506342 - ], - [ - -73.452619, - 45.506355 - ], - [ - -73.452198, - 45.506382 - ], - [ - -73.451887, - 45.506404 - ], - [ - -73.45126, - 45.506445 - ], - [ - -73.450484, - 45.506494 - ], - [ - -73.448371, - 45.506636 - ], - [ - -73.447691, - 45.506681 - ], - [ - -73.446069, - 45.506789 - ], - [ - -73.445578, - 45.50682 - ], - [ - -73.445287, - 45.506849 - ], - [ - -73.445125, - 45.506865 - ], - [ - -73.443732, - 45.506945 - ], - [ - -73.442555, - 45.507021 - ], - [ - -73.442468, - 45.507027 - ], - [ - -73.442366, - 45.507034 - ], - [ - -73.442227, - 45.507039 - ], - [ - -73.439054, - 45.507258 - ], - [ - -73.438426, - 45.507284 - ], - [ - -73.438168, - 45.507287 - ], - [ - -73.43796, - 45.507288 - ], - [ - -73.436434, - 45.507297 - ], - [ - -73.435792, - 45.507278 - ], - [ - -73.435015, - 45.507249 - ], - [ - -73.434228, - 45.507219 - ], - [ - -73.433642, - 45.507162 - ], - [ - -73.433481, - 45.507146 - ], - [ - -73.433316, - 45.507128 - ], - [ - -73.43308, - 45.507092 - ], - [ - -73.432958, - 45.507065 - ], - [ - -73.432823, - 45.507025 - ], - [ - -73.432697, - 45.506971 - ], - [ - -73.432507, - 45.50688 - ], - [ - -73.432305, - 45.506772 - ], - [ - -73.432116, - 45.506678 - ], - [ - -73.432105, - 45.506615 - ], - [ - -73.431909, - 45.506516 - ], - [ - -73.431784, - 45.506462 - ], - [ - -73.431667, - 45.506423 - ], - [ - -73.431662, - 45.506421 - ], - [ - -73.431524, - 45.506385 - ], - [ - -73.431353, - 45.506349 - ], - [ - -73.431252, - 45.506335 - ], - [ - -73.431192, - 45.50633 - ], - [ - -73.431145, - 45.506326 - ], - [ - -73.430968, - 45.506317 - ], - [ - -73.430791, - 45.506326 - ], - [ - -73.430645, - 45.506339 - ], - [ - -73.43052, - 45.506357 - ], - [ - -73.430422, - 45.506366 - ], - [ - -73.430275, - 45.506389 - ], - [ - -73.430066, - 45.506425 - ], - [ - -73.428871, - 45.506622 - ], - [ - -73.428854, - 45.506625 - ], - [ - -73.428419, - 45.506698 - ], - [ - -73.428282, - 45.506718 - ], - [ - -73.428165, - 45.506711 - ], - [ - -73.427996, - 45.506684 - ], - [ - -73.427898, - 45.506666 - ], - [ - -73.427771, - 45.506635 - ], - [ - -73.427639, - 45.506594 - ], - [ - -73.427205, - 45.506406 - ], - [ - -73.426972, - 45.506306 - ], - [ - -73.426919, - 45.506405 - ], - [ - -73.426846, - 45.50654 - ], - [ - -73.426706, - 45.506817 - ] - ] - }, - "id": 31, - "properties": { - "id": "9b08069e-68bc-49f8-a0a7-4217f41e952c", - "data": { - "gtfs": { - "shape_id": "9_1_R" - }, - "segments": [ - { - "distanceMeters": 763, - "travelTimeSeconds": 89 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 384, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 403, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 345, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 2756, - "travelTimeSeconds": 331 - }, - { - "distanceMeters": 561, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 404, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 337, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 82, - "travelTimeSeconds": 10 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9578, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7601.092679000949, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.4, - "travelTimeWithoutDwellTimesSeconds": 1140, - "operatingTimeWithLayoverTimeSeconds": 1320, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1140, - "operatingSpeedWithLayoverMetersPerSecond": 7.26, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.4 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "d3215c60-bb9e-40ac-89e4-1f922b39e266", - "f9358f54-8643-47f5-b0df-4a20b46cc22d", - "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", - "f4f29738-df3f-4d69-8632-9088ded0dc5a", - "741876fc-030a-42f6-a33a-8f1f9c2aba12", - "688a3f67-a176-441e-a399-c92a55de9c74", - "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", - "37199bb2-9740-4484-b68f-12d3c82f8bf9", - "c17cc951-65ff-4617-a096-ccd1fe6cc26f", - "d283f176-a2d6-456a-b4b2-f380ae924031", - "05522d17-41d4-4e98-a458-ec71ea1a802b", - "a2cddc2b-b7ec-4035-951f-7045ea83427b", - "a4e1d210-6aad-44a6-b6a6-31d75e66d6c9", - "c9ccd441-872f-4e75-b699-0014386c3503", - "92abcd2a-82ad-467f-8946-055423a9c2c9", - "631a5504-9e7c-4041-85e7-bf81e6a995d2", - "b487112d-20d7-48e5-a658-6d701c316792", - "2f59e70c-00bf-46fc-9104-53f0aa9fb5e8", - "2f531374-1848-411d-97c8-17a070d5c4b1", - "e5c099f9-8206-4175-8a7b-065df2f3b304", - "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", - "c1aeb7b2-96eb-465c-a03f-d65b102a8eea" - ], - "stops": [], - "line_id": "cd0e7785-c68b-4cce-83f8-55ea692f6e31", - "segments": [ - 0, - 47, - 55, - 62, - 72, - 83, - 90, - 94, - 98, - 109, - 120, - 197, - 213, - 226, - 231, - 238, - 247, - 251, - 255, - 260, - 266, - 279, - 294, - 302 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 31, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521447, - 45.524278 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519263, - 45.520728 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.518513, - 45.520507 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.515004, - 45.51933 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513229, - 45.517464 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509952, - 45.515502 - ], - [ - -73.509485, - 45.515357 - ], - [ - -73.509475, - 45.515353 - ], - [ - -73.509376, - 45.515323 - ], - [ - -73.508692, - 45.515143 - ], - [ - -73.508296, - 45.51503 - ], - [ - -73.507817, - 45.514868 - ], - [ - -73.507704, - 45.514841 - ], - [ - -73.507464, - 45.514765 - ], - [ - -73.506516, - 45.514432 - ], - [ - -73.505464, - 45.514054 - ], - [ - -73.505166, - 45.51396 - ], - [ - -73.504861, - 45.513863 - ], - [ - -73.50479, - 45.513841 - ], - [ - -73.504451, - 45.513734 - ], - [ - -73.50434, - 45.513699 - ], - [ - -73.504259, - 45.513672 - ], - [ - -73.503369, - 45.513397 - ], - [ - -73.502433, - 45.51315 - ], - [ - -73.502048, - 45.513078 - ], - [ - -73.501567, - 45.512942 - ], - [ - -73.501411, - 45.512898 - ], - [ - -73.50108, - 45.512799 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499686, - 45.51235 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498223, - 45.511894 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.494313, - 45.51046 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.494088, - 45.51035 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491857, - 45.508707 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488355, - 45.503066 - ], - [ - -73.4883, - 45.502913 - ], - [ - -73.488219, - 45.502531 - ], - [ - -73.488223, - 45.502405 - ], - [ - -73.488245, - 45.502293 - ], - [ - -73.488296, - 45.502185 - ], - [ - -73.488375, - 45.502086 - ], - [ - -73.488484, - 45.502 - ], - [ - -73.488609, - 45.501937 - ], - [ - -73.48874, - 45.501892 - ], - [ - -73.48888, - 45.501865 - ], - [ - -73.489028, - 45.501856 - ], - [ - -73.489181, - 45.501865 - ], - [ - -73.489324, - 45.501892 - ], - [ - -73.489461, - 45.501933 - ], - [ - -73.489585, - 45.501991 - ], - [ - -73.489692, - 45.502068 - ], - [ - -73.489786, - 45.502153 - ], - [ - -73.489942, - 45.502342 - ], - [ - -73.490006, - 45.50245 - ], - [ - -73.490054, - 45.502558 - ], - [ - -73.490086, - 45.502666 - ], - [ - -73.490092, - 45.502779 - ], - [ - -73.490078, - 45.502833 - ], - [ - -73.490064, - 45.502891 - ], - [ - -73.490004, - 45.502995 - ], - [ - -73.489917, - 45.503094 - ], - [ - -73.489808, - 45.503175 - ], - [ - -73.489675, - 45.503242 - ], - [ - -73.489524, - 45.503287 - ], - [ - -73.489359, - 45.50331 - ], - [ - -73.489186, - 45.503323 - ], - [ - -73.488817, - 45.503318 - ], - [ - -73.487515, - 45.503242 - ], - [ - -73.486872, - 45.503273 - ], - [ - -73.486502, - 45.503323 - ], - [ - -73.486146, - 45.503381 - ], - [ - -73.484224, - 45.503808 - ], - [ - -73.483407, - 45.503957 - ], - [ - -73.482922, - 45.504029 - ], - [ - -73.482166, - 45.504114 - ], - [ - -73.481092, - 45.504204 - ], - [ - -73.4802, - 45.504262 - ], - [ - -73.47719, - 45.50446 - ], - [ - -73.477132, - 45.504462 - ], - [ - -73.474463, - 45.504585 - ], - [ - -73.473732, - 45.504621 - ], - [ - -73.47326, - 45.50463 - ], - [ - -73.472594, - 45.504625 - ], - [ - -73.472184, - 45.504602 - ], - [ - -73.471986, - 45.50458 - ], - [ - -73.471671, - 45.504521 - ], - [ - -73.471417, - 45.504449 - ], - [ - -73.471243, - 45.504386 - ], - [ - -73.471084, - 45.504314 - ], - [ - -73.470936, - 45.504242 - ], - [ - -73.470798, - 45.504161 - ], - [ - -73.470671, - 45.504076 - ], - [ - -73.470553, - 45.503986 - ], - [ - -73.469982, - 45.503502 - ], - [ - -73.469677, - 45.503226 - ], - [ - -73.469614, - 45.503168 - ], - [ - -73.469513, - 45.50323 - ], - [ - -73.469419, - 45.503287 - ], - [ - -73.469308, - 45.503357 - ], - [ - -73.469279, - 45.503422 - ], - [ - -73.469221, - 45.503456 - ], - [ - -73.468749, - 45.503738 - ], - [ - -73.468134, - 45.504106 - ], - [ - -73.46771, - 45.504363 - ], - [ - -73.467476, - 45.504484 - ], - [ - -73.467257, - 45.504583 - ], - [ - -73.467047, - 45.504673 - ], - [ - -73.466778, - 45.504767 - ], - [ - -73.466492, - 45.50483 - ], - [ - -73.466169, - 45.504898 - ], - [ - -73.465884, - 45.504943 - ], - [ - -73.46553, - 45.504965 - ], - [ - -73.465067, - 45.504996 - ], - [ - -73.464545, - 45.505041 - ], - [ - -73.463624, - 45.505104 - ], - [ - -73.46332, - 45.50509 - ], - [ - -73.462718, - 45.505142 - ], - [ - -73.462564, - 45.505155 - ], - [ - -73.462414, - 45.50516 - ], - [ - -73.462303, - 45.505157 - ], - [ - -73.462173, - 45.505157 - ], - [ - -73.462046, - 45.50518 - ], - [ - -73.461961, - 45.505207 - ], - [ - -73.461828, - 45.505274 - ], - [ - -73.461479, - 45.505346 - ], - [ - -73.460924, - 45.505418 - ], - [ - -73.460429, - 45.505476 - ], - [ - -73.460124, - 45.505512 - ], - [ - -73.459817, - 45.505548 - ], - [ - -73.459085, - 45.505636 - ], - [ - -73.457907, - 45.505777 - ], - [ - -73.457379, - 45.505858 - ], - [ - -73.456937, - 45.505934 - ], - [ - -73.456441, - 45.506015 - ], - [ - -73.456388, - 45.506022 - ], - [ - -73.456027, - 45.506073 - ], - [ - -73.4557, - 45.506113 - ], - [ - -73.455407, - 45.506145 - ], - [ - -73.45462, - 45.506212 - ], - [ - -73.453792, - 45.506275 - ], - [ - -73.453626, - 45.506284 - ], - [ - -73.453507, - 45.506292 - ], - [ - -73.453375, - 45.506301 - ], - [ - -73.453036, - 45.506328 - ], - [ - -73.452813, - 45.506342 - ], - [ - -73.452619, - 45.506355 - ], - [ - -73.452198, - 45.506382 - ], - [ - -73.451887, - 45.506404 - ], - [ - -73.45126, - 45.506445 - ], - [ - -73.450484, - 45.506494 - ], - [ - -73.448355, - 45.506637 - ], - [ - -73.447691, - 45.506681 - ], - [ - -73.446069, - 45.506789 - ], - [ - -73.445578, - 45.50682 - ], - [ - -73.44527, - 45.50685 - ], - [ - -73.445125, - 45.506865 - ], - [ - -73.443732, - 45.506945 - ], - [ - -73.442555, - 45.507021 - ], - [ - -73.44245, - 45.507028 - ], - [ - -73.442366, - 45.507034 - ], - [ - -73.442227, - 45.507039 - ], - [ - -73.439054, - 45.507258 - ], - [ - -73.438426, - 45.507284 - ], - [ - -73.43815, - 45.507287 - ], - [ - -73.43796, - 45.507288 - ], - [ - -73.436434, - 45.507297 - ], - [ - -73.435792, - 45.507278 - ], - [ - -73.435015, - 45.507249 - ], - [ - -73.434228, - 45.507219 - ], - [ - -73.433623, - 45.50716 - ], - [ - -73.433481, - 45.507146 - ], - [ - -73.433316, - 45.507128 - ], - [ - -73.43308, - 45.507092 - ], - [ - -73.432958, - 45.507065 - ], - [ - -73.432823, - 45.507025 - ], - [ - -73.432697, - 45.506971 - ], - [ - -73.432507, - 45.50688 - ], - [ - -73.432305, - 45.506772 - ], - [ - -73.432116, - 45.506678 - ], - [ - -73.432105, - 45.506615 - ], - [ - -73.431909, - 45.506516 - ], - [ - -73.431784, - 45.506462 - ], - [ - -73.431662, - 45.506421 - ], - [ - -73.431649, - 45.506418 - ], - [ - -73.431524, - 45.506385 - ], - [ - -73.431353, - 45.506349 - ], - [ - -73.431252, - 45.506335 - ], - [ - -73.431192, - 45.50633 - ], - [ - -73.431145, - 45.506326 - ], - [ - -73.430968, - 45.506317 - ], - [ - -73.430791, - 45.506326 - ], - [ - -73.430645, - 45.506339 - ], - [ - -73.43052, - 45.506357 - ], - [ - -73.430422, - 45.506366 - ], - [ - -73.430275, - 45.506389 - ], - [ - -73.430066, - 45.506425 - ], - [ - -73.428871, - 45.506622 - ], - [ - -73.428835, - 45.506628 - ], - [ - -73.428419, - 45.506698 - ], - [ - -73.428282, - 45.506718 - ], - [ - -73.428165, - 45.506711 - ], - [ - -73.427996, - 45.506684 - ], - [ - -73.427898, - 45.506666 - ], - [ - -73.427771, - 45.506635 - ], - [ - -73.427639, - 45.506594 - ], - [ - -73.427188, - 45.506399 - ], - [ - -73.426972, - 45.506306 - ], - [ - -73.426422, - 45.506071 - ], - [ - -73.42613, - 45.505956 - ], - [ - -73.425918, - 45.505873 - ], - [ - -73.425637, - 45.505778 - ], - [ - -73.425471, - 45.505742 - ], - [ - -73.425433, - 45.505715 - ], - [ - -73.425228, - 45.505629 - ], - [ - -73.424965, - 45.505517 - ], - [ - -73.424527, - 45.505328 - ], - [ - -73.423967, - 45.505084 - ], - [ - -73.42368, - 45.504958 - ], - [ - -73.423517, - 45.504888 - ], - [ - -73.423115, - 45.504715 - ], - [ - -73.422355, - 45.50439 - ], - [ - -73.422107, - 45.504284 - ], - [ - -73.422009, - 45.504242 - ], - [ - -73.421648, - 45.504084 - ], - [ - -73.421234, - 45.503904 - ], - [ - -73.420806, - 45.503714 - ], - [ - -73.420508, - 45.503587 - ], - [ - -73.420142, - 45.503431 - ], - [ - -73.419673, - 45.503241 - ], - [ - -73.419457, - 45.503157 - ], - [ - -73.419278, - 45.503088 - ], - [ - -73.419167, - 45.503047 - ], - [ - -73.418847, - 45.502921 - ], - [ - -73.418173, - 45.502669 - ], - [ - -73.417806, - 45.502538 - ], - [ - -73.417334, - 45.50236 - ], - [ - -73.417293, - 45.502344 - ], - [ - -73.416751, - 45.502146 - ], - [ - -73.416178, - 45.501934 - ], - [ - -73.415771, - 45.501785 - ], - [ - -73.415352, - 45.501632 - ], - [ - -73.414962, - 45.501488 - ], - [ - -73.414669, - 45.501379 - ], - [ - -73.414536, - 45.50133 - ], - [ - -73.414045, - 45.501145 - ], - [ - -73.413646, - 45.500992 - ], - [ - -73.413399, - 45.500906 - ], - [ - -73.41311, - 45.500798 - ], - [ - -73.412769, - 45.500658 - ], - [ - -73.412437, - 45.500535 - ], - [ - -73.412332, - 45.500496 - ], - [ - -73.411788, - 45.500288 - ], - [ - -73.411184, - 45.500063 - ], - [ - -73.410857, - 45.499937 - ], - [ - -73.410514, - 45.499802 - ], - [ - -73.410379, - 45.499749 - ], - [ - -73.40994, - 45.499576 - ], - [ - -73.409205, - 45.499289 - ], - [ - -73.409074, - 45.499238 - ], - [ - -73.408846, - 45.499152 - ], - [ - -73.408613, - 45.499067 - ], - [ - -73.408565, - 45.499044 - ], - [ - -73.407743, - 45.498715 - ], - [ - -73.407513, - 45.498634 - ], - [ - -73.406574, - 45.498264 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.406288, - 45.49843 - ], - [ - -73.406193, - 45.498579 - ], - [ - -73.406179, - 45.498608 - ], - [ - -73.406163, - 45.49864 - ], - [ - -73.406003, - 45.498961 - ], - [ - -73.405911, - 45.499145 - ], - [ - -73.405493, - 45.499995 - ], - [ - -73.405383, - 45.500198 - ], - [ - -73.405251, - 45.500369 - ], - [ - -73.405082, - 45.500567 - ], - [ - -73.405006, - 45.500639 - ], - [ - -73.404894, - 45.500746 - ], - [ - -73.404658, - 45.500926 - ], - [ - -73.404439, - 45.50107 - ], - [ - -73.404275, - 45.501164 - ], - [ - -73.404095, - 45.501254 - ], - [ - -73.403728, - 45.501411 - ], - [ - -73.403505, - 45.501483 - ], - [ - -73.403207, - 45.501564 - ], - [ - -73.403206, - 45.501564 - ], - [ - -73.402929, - 45.501627 - ], - [ - -73.402747, - 45.501658 - ], - [ - -73.402456, - 45.501689 - ], - [ - -73.401996, - 45.50172 - ], - [ - -73.401121, - 45.501775 - ], - [ - -73.401007, - 45.501782 - ], - [ - -73.399341, - 45.501884 - ], - [ - -73.399355, - 45.501992 - ], - [ - -73.399402, - 45.502346 - ], - [ - -73.399403, - 45.502354 - ], - [ - -73.399417, - 45.50246 - ], - [ - -73.399441, - 45.502676 - ], - [ - -73.399508, - 45.503131 - ], - [ - -73.399527, - 45.503257 - ], - [ - -73.399542, - 45.50336 - ], - [ - -73.399657, - 45.504175 - ], - [ - -73.399718, - 45.504624 - ], - [ - -73.399729, - 45.504706 - ], - [ - -73.39976, - 45.505156 - ], - [ - -73.399787, - 45.505322 - ], - [ - -73.39982, - 45.505426 - ], - [ - -73.399886, - 45.505552 - ], - [ - -73.399949, - 45.505664 - ], - [ - -73.400052, - 45.505795 - ], - [ - -73.400061, - 45.505803 - ], - [ - -73.400152, - 45.505885 - ], - [ - -73.399985, - 45.50597 - ], - [ - -73.399802, - 45.506078 - ], - [ - -73.399379, - 45.50637 - ], - [ - -73.399188, - 45.506676 - ], - [ - -73.39914, - 45.506797 - ], - [ - -73.399135, - 45.506834 - ], - [ - -73.399117, - 45.50695 - ], - [ - -73.399108, - 45.507031 - ], - [ - -73.399133, - 45.507198 - ], - [ - -73.399213, - 45.507801 - ], - [ - -73.399228, - 45.507945 - ], - [ - -73.399284, - 45.508381 - ], - [ - -73.399294, - 45.508462 - ], - [ - -73.399352, - 45.508899 - ], - [ - -73.399434, - 45.509498 - ], - [ - -73.399448, - 45.509601 - ], - [ - -73.399756, - 45.509583 - ], - [ - -73.400193, - 45.50957 - ], - [ - -73.400685, - 45.509557 - ], - [ - -73.402551, - 45.509518 - ], - [ - -73.402643, - 45.509514 - ], - [ - -73.402911, - 45.509505 - ], - [ - -73.403309, - 45.509478 - ], - [ - -73.404168, - 45.509416 - ], - [ - -73.405369, - 45.509321 - ], - [ - -73.405469, - 45.509313 - ], - [ - -73.405438, - 45.509025 - ], - [ - -73.40545, - 45.508953 - ], - [ - -73.40548, - 45.508881 - ], - [ - -73.406128, - 45.507561 - ], - [ - -73.406159, - 45.507496 - ], - [ - -73.406247, - 45.507321 - ], - [ - -73.407466, - 45.504879 - ], - [ - -73.407616, - 45.504568 - ], - [ - -73.407721, - 45.504346 - ], - [ - -73.407766, - 45.504249 - ], - [ - -73.408367, - 45.504398 - ], - [ - -73.408932, - 45.504538 - ], - [ - -73.409315, - 45.504637 - ], - [ - -73.409691, - 45.504733 - ], - [ - -73.409774, - 45.504755 - ], - [ - -73.410748, - 45.504988 - ], - [ - -73.41077, - 45.504994 - ], - [ - -73.411467, - 45.505171 - ], - [ - -73.411569, - 45.505197 - ], - [ - -73.412507, - 45.505418 - ], - [ - -73.412645, - 45.505436 - ], - [ - -73.412747, - 45.50545 - ], - [ - -73.412864, - 45.50545 - ], - [ - -73.413013, - 45.505441 - ], - [ - -73.413183, - 45.505424 - ], - [ - -73.413318, - 45.50541 - ], - [ - -73.413394, - 45.505639 - ], - [ - -73.413421, - 45.505761 - ], - [ - -73.413447, - 45.505864 - ], - [ - -73.413444, - 45.505954 - ], - [ - -73.413426, - 45.506022 - ], - [ - -73.413298, - 45.506287 - ], - [ - -73.413113, - 45.506647 - ], - [ - -73.412993, - 45.506876 - ], - [ - -73.412951, - 45.506962 - ], - [ - -73.412909, - 45.507038 - ], - [ - -73.412894, - 45.507083 - ], - [ - -73.412886, - 45.507187 - ], - [ - -73.412929, - 45.507488 - ], - [ - -73.412967, - 45.50776 - ], - [ - -73.41298, - 45.507853 - ], - [ - -73.414263, - 45.507764 - ], - [ - -73.414461, - 45.507795 - ], - [ - -73.41461, - 45.507863 - ], - [ - -73.414689, - 45.508002 - ], - [ - -73.414729, - 45.508272 - ], - [ - -73.414755, - 45.50847 - ], - [ - -73.414773, - 45.508651 - ], - [ - -73.41478, - 45.508713 - ], - [ - -73.416795, - 45.50858 - ], - [ - -73.417624, - 45.50852 - ], - [ - -73.417791, - 45.508509 - ], - [ - -73.418548, - 45.508464 - ], - [ - -73.419853, - 45.508382 - ], - [ - -73.420612, - 45.508335 - ], - [ - -73.422385, - 45.508219 - ], - [ - -73.423075, - 45.50817 - ], - [ - -73.423658, - 45.508135 - ], - [ - -73.424075, - 45.508099 - ], - [ - -73.424804, - 45.508018 - ], - [ - -73.424982, - 45.507996 - ], - [ - -73.425226, - 45.507965 - ], - [ - -73.425517, - 45.507911 - ], - [ - -73.425671, - 45.507884 - ], - [ - -73.425844, - 45.507844 - ], - [ - -73.425991, - 45.507803 - ], - [ - -73.426141, - 45.507753 - ], - [ - -73.426194, - 45.507718 - ], - [ - -73.426239, - 45.507691 - ], - [ - -73.42627, - 45.507659 - ], - [ - -73.426298, - 45.507614 - ], - [ - -73.426318, - 45.507578 - ], - [ - -73.426601, - 45.507025 - ], - [ - -73.426846, - 45.50654 - ], - [ - -73.426849, - 45.506535 - ] - ] - }, - "id": 32, - "properties": { - "id": "a2b8d5e1-5558-41bb-acb0-2d79b2356ab8", - "data": { - "gtfs": { - "shape_id": "9_2_R" - }, - "segments": [ - { - "distanceMeters": 763, - "travelTimeSeconds": 119 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 384, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 403, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 345, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 2757, - "travelTimeSeconds": 283 - }, - { - "distanceMeters": 562, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 404, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 337, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 95, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 475, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 819, - "travelTimeSeconds": 188 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 246, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 16095, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7601.092679000949, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.54, - "travelTimeWithoutDwellTimesSeconds": 2460, - "operatingTimeWithLayoverTimeSeconds": 2706, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2460, - "operatingSpeedWithLayoverMetersPerSecond": 5.95, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.54 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "d3215c60-bb9e-40ac-89e4-1f922b39e266", - "f9358f54-8643-47f5-b0df-4a20b46cc22d", - "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", - "f4f29738-df3f-4d69-8632-9088ded0dc5a", - "741876fc-030a-42f6-a33a-8f1f9c2aba12", - "688a3f67-a176-441e-a399-c92a55de9c74", - "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", - "37199bb2-9740-4484-b68f-12d3c82f8bf9", - "c17cc951-65ff-4617-a096-ccd1fe6cc26f", - "d283f176-a2d6-456a-b4b2-f380ae924031", - "05522d17-41d4-4e98-a458-ec71ea1a802b", - "a2cddc2b-b7ec-4035-951f-7045ea83427b", - "a4e1d210-6aad-44a6-b6a6-31d75e66d6c9", - "c9ccd441-872f-4e75-b699-0014386c3503", - "92abcd2a-82ad-467f-8946-055423a9c2c9", - "631a5504-9e7c-4041-85e7-bf81e6a995d2", - "b487112d-20d7-48e5-a658-6d701c316792", - "2f59e70c-00bf-46fc-9104-53f0aa9fb5e8", - "2f531374-1848-411d-97c8-17a070d5c4b1", - "e5c099f9-8206-4175-8a7b-065df2f3b304", - "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", - "2d759b9b-5efb-4a57-814c-915d6b6185d7", - "7207a900-095a-4a6f-9e58-d5821a46e7d1", - "1dee950f-860c-49ec-9656-8fcdc6bfa744", - "235a92b0-53e1-410c-b264-d57c7814303c", - "4a4fa494-b43c-4be6-b677-70874b8f73cc", - "46ea2114-c4d6-46e8-be5d-60d028340abb", - "853b0202-bae1-4c20-ab0e-8b27d1350e9a", - "69889f24-c076-4661-981b-6008a401d446", - "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", - "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", - "aab8672e-86c9-4a43-9806-f5135dc02b4e", - "7414010b-fe1f-4d77-8cdd-701cc437e73a", - "dc630e4d-102e-48b9-8b4a-920cafc01d4a", - "00ed067b-7627-492d-ac0f-5d03bd3b185c", - "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", - "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", - "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", - "b20c17a3-277e-418e-90be-8f8d32918ba9", - "6765611d-305b-41e3-b519-b65e608494ba", - "ff0214aa-5a67-4237-87c2-863aa17e8087", - "c22b0880-b3ca-4797-aa47-0cda85146514", - "0ea4fa54-ee0f-4999-90e6-2b0f71f6030e", - "6212287c-a903-4f14-b932-9fa7dcb13f7b", - "aa49b5ca-26fd-4fe1-8e89-4237204a7250", - "35110be1-21ec-490a-b4c8-8b20aa6bef7f", - "bf493d01-4cc2-40cf-9fee-339de5acd0ce", - "72cda4fb-fbe8-47ba-b42e-f310ef91d335", - "16d596f0-097e-4afe-b8c4-9b129c3c3d66", - "a591956d-b42e-4489-8d54-3a5d5df835c1", - "86f64d55-814a-4fbc-858b-c5c25e590481", - "c1aeb7b2-96eb-465c-a03f-d65b102a8eea" - ], - "stops": [], - "line_id": "cd0e7785-c68b-4cce-83f8-55ea692f6e31", - "segments": [ - 0, - 47, - 55, - 62, - 72, - 83, - 90, - 94, - 98, - 109, - 120, - 197, - 213, - 226, - 231, - 238, - 247, - 251, - 255, - 260, - 266, - 280, - 294, - 302, - 310, - 315, - 318, - 323, - 326, - 332, - 339, - 346, - 352, - 354, - 365, - 373, - 382, - 387, - 392, - 396, - 399, - 407, - 414, - 420, - 423, - 433, - 438, - 443, - 448, - 452, - 459, - 474, - 482, - 485 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 32, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.426849, - 45.506535 - ], - [ - -73.426919, - 45.506405 - ], - [ - -73.42775, - 45.506774 - ], - [ - -73.427847, - 45.506792 - ], - [ - -73.428015, - 45.506824 - ], - [ - -73.428153, - 45.506828 - ], - [ - -73.428285, - 45.506833 - ], - [ - -73.428429, - 45.506818 - ], - [ - -73.428656, - 45.506779 - ], - [ - -73.428772, - 45.506761 - ], - [ - -73.428988, - 45.506721 - ], - [ - -73.429213, - 45.50668 - ], - [ - -73.429476, - 45.506669 - ], - [ - -73.429755, - 45.506651 - ], - [ - -73.429825, - 45.506654 - ], - [ - -73.429948, - 45.50668 - ], - [ - -73.430064, - 45.506725 - ], - [ - -73.4302, - 45.506807 - ], - [ - -73.430341, - 45.507086 - ], - [ - -73.430485, - 45.507257 - ], - [ - -73.430506, - 45.507276 - ], - [ - -73.430509, - 45.507278 - ], - [ - -73.430608, - 45.507365 - ], - [ - -73.430672, - 45.507415 - ], - [ - -73.431358, - 45.507856 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431709, - 45.508009 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.432209, - 45.507974 - ], - [ - -73.435178, - 45.507773 - ], - [ - -73.437575, - 45.507662 - ], - [ - -73.438988, - 45.507572 - ], - [ - -73.440344, - 45.507425 - ], - [ - -73.445881, - 45.507063 - ], - [ - -73.452257, - 45.506638 - ], - [ - -73.452565, - 45.506616 - ], - [ - -73.453776, - 45.50654 - ], - [ - -73.455247, - 45.506419 - ], - [ - -73.456957, - 45.50624 - ], - [ - -73.460279, - 45.505832 - ], - [ - -73.460374, - 45.505823 - ], - [ - -73.461182, - 45.505728 - ], - [ - -73.463671, - 45.505509 - ], - [ - -73.465111, - 45.505401 - ], - [ - -73.467755, - 45.505222 - ], - [ - -73.468692, - 45.505168 - ], - [ - -73.470746, - 45.505025 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492945, - 45.510123 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497941, - 45.512058 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.500903, - 45.513015 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505131, - 45.514486 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506107, - 45.514749 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515013, - 45.519425 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518892, - 45.520629 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 33, - "properties": { - "id": "196ebebf-98b2-454f-8e5c-91b835dd96c8", - "data": { - "gtfs": { - "shape_id": "9_2_A" - }, - "segments": [ - { - "distanceMeters": 5724, - "travelTimeSeconds": 420 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 988, - "travelTimeSeconds": 170 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 745, - "travelTimeSeconds": 129 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8858, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7601.092679000949, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.23, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 7.77, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.23 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "a5b9648a-83c0-4eab-a54b-68c23aecae43", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "cd0e7785-c68b-4cce-83f8-55ea692f6e31", - "segments": [ - 0, - 80, - 93, - 96, - 103, - 139, - 145 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 33, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524008, - 45.524308 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.502818, - 45.54899 - ], - [ - -73.502212, - 45.54962 - ], - [ - -73.501984, - 45.549836 - ], - [ - -73.50186, - 45.549926 - ], - [ - -73.501728, - 45.550007 - ], - [ - -73.501592, - 45.550079 - ], - [ - -73.501452, - 45.550133 - ], - [ - -73.501309, - 45.550183 - ], - [ - -73.50116, - 45.550219 - ], - [ - -73.501011, - 45.55025 - ], - [ - -73.501, - 45.550251 - ], - [ - -73.500705, - 45.550282 - ], - [ - -73.500547, - 45.550286 - ], - [ - -73.49991, - 45.550295 - ], - [ - -73.499238, - 45.550226 - ], - [ - -73.498778, - 45.550153 - ], - [ - -73.498464, - 45.550065 - ], - [ - -73.498138, - 45.54995 - ], - [ - -73.497746, - 45.549767 - ], - [ - -73.497494, - 45.54961 - ], - [ - -73.497234, - 45.549428 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491296, - 45.54289 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.485279, - 45.539708 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.479241, - 45.537795 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.460868, - 45.531797 - ], - [ - -73.460137, - 45.531468 - ], - [ - -73.459095, - 45.531013 - ], - [ - -73.457591, - 45.530387 - ], - [ - -73.456631, - 45.529983 - ], - [ - -73.45522, - 45.529388 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.453608, - 45.528719 - ], - [ - -73.45247, - 45.528245 - ], - [ - -73.452419, - 45.528224 - ], - [ - -73.452095, - 45.528089 - ], - [ - -73.451849, - 45.527987 - ], - [ - -73.449586, - 45.5271 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.449239, - 45.527747 - ], - [ - -73.4491, - 45.528013 - ], - [ - -73.448776, - 45.528634 - ], - [ - -73.448476, - 45.529249 - ], - [ - -73.448445, - 45.529313 - ], - [ - -73.448085, - 45.530001 - ], - [ - -73.448024, - 45.530118 - ], - [ - -73.447862, - 45.53032 - ], - [ - -73.44764, - 45.530474 - ] - ] - }, - "id": 34, - "properties": { - "id": "81b82915-6c28-4e5f-bb04-adbd4d9671d4", - "data": { - "gtfs": { - "shape_id": "10_1_R" - }, - "segments": [ - { - "distanceMeters": 8879, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 102 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 43 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9545, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 588.7327924596806, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 39.77, - "travelTimeWithoutDwellTimesSeconds": 240, - "operatingTimeWithLayoverTimeSeconds": 420, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 240, - "operatingSpeedWithLayoverMetersPerSecond": 22.72, - "averageSpeedWithoutDwellTimesMetersPerSecond": 39.77 - }, - "mode": "bus", - "name": "Sect. B Vieux-Longueuil", - "color": "#A32638", - "nodes": [ - "6e83e147-802a-4695-95f3-96585bd15c4a", - "51878141-1194-4666-977c-0597ee638ffb", - "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "da0ea2a1-8305-4096-84b5-3da6997f0293", - "69483ac1-331d-4f0e-93b5-d8134f380763" - ], - "stops": [], - "line_id": "d0da7a94-74d0-48f5-b44a-25e0881a130d", - "segments": [ - 0, - 189, - 196, - 198 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 34, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.44764, - 45.530474 - ], - [ - -73.447543, - 45.530541 - ], - [ - -73.448141, - 45.53172 - ], - [ - -73.448349, - 45.532116 - ], - [ - -73.448438, - 45.5323 - ], - [ - -73.448478, - 45.532371 - ], - [ - -73.448512, - 45.532432 - ], - [ - -73.448557, - 45.532512 - ], - [ - -73.44871, - 45.532719 - ], - [ - -73.448896, - 45.532926 - ], - [ - -73.449063, - 45.533088 - ], - [ - -73.44929, - 45.533254 - ], - [ - -73.449502, - 45.533408 - ], - [ - -73.449736, - 45.533561 - ], - [ - -73.449982, - 45.533682 - ], - [ - -73.450155, - 45.533757 - ], - [ - -73.450209, - 45.533781 - ], - [ - -73.450391, - 45.533867 - ], - [ - -73.450743, - 45.534002 - ], - [ - -73.450985, - 45.534056 - ], - [ - -73.451317, - 45.534124 - ], - [ - -73.45172, - 45.534205 - ], - [ - -73.451896, - 45.534218 - ], - [ - -73.45205, - 45.534214 - ], - [ - -73.452169, - 45.534206 - ], - [ - -73.452182, - 45.534205 - ], - [ - -73.452341, - 45.534169 - ], - [ - -73.452481, - 45.534133 - ], - [ - -73.452644, - 45.534061 - ], - [ - -73.45275, - 45.533989 - ], - [ - -73.453619, - 45.533409 - ], - [ - -73.453895, - 45.533306 - ], - [ - -73.454221, - 45.533257 - ], - [ - -73.454729, - 45.533284 - ], - [ - -73.454807, - 45.533288 - ], - [ - -73.45503, - 45.53332 - ], - [ - -73.455242, - 45.53336 - ], - [ - -73.455391, - 45.533387 - ], - [ - -73.455523, - 45.533433 - ], - [ - -73.455674, - 45.5335 - ], - [ - -73.455774, - 45.533559 - ], - [ - -73.455836, - 45.533604 - ], - [ - -73.455934, - 45.53369 - ], - [ - -73.455959, - 45.533712 - ], - [ - -73.456036, - 45.533788 - ], - [ - -73.456095, - 45.533878 - ], - [ - -73.456189, - 45.534099 - ], - [ - -73.456214, - 45.534256 - ], - [ - -73.456189, - 45.534414 - ], - [ - -73.456134, - 45.534589 - ], - [ - -73.456071, - 45.534695 - ], - [ - -73.456046, - 45.534737 - ], - [ - -73.455923, - 45.53489 - ], - [ - -73.455755, - 45.535043 - ], - [ - -73.45561, - 45.535133 - ], - [ - -73.455504, - 45.535196 - ], - [ - -73.455381, - 45.535259 - ], - [ - -73.455279, - 45.535296 - ], - [ - -73.455196, - 45.535327 - ], - [ - -73.454943, - 45.535416 - ], - [ - -73.454703, - 45.535484 - ], - [ - -73.45458, - 45.535533 - ], - [ - -73.454434, - 45.535583 - ], - [ - -73.454232, - 45.535664 - ], - [ - -73.454095, - 45.53574 - ], - [ - -73.453985, - 45.535794 - ], - [ - -73.453834, - 45.535911 - ], - [ - -73.453678, - 45.536032 - ], - [ - -73.453562, - 45.536158 - ], - [ - -73.45347, - 45.536284 - ], - [ - -73.453395, - 45.536388 - ], - [ - -73.453302, - 45.53664 - ], - [ - -73.453087, - 45.537457 - ], - [ - -73.453056, - 45.537575 - ], - [ - -73.45293, - 45.537571 - ], - [ - -73.452702, - 45.537575 - ], - [ - -73.452033, - 45.537615 - ], - [ - -73.45161, - 45.537656 - ], - [ - -73.451409, - 45.537665 - ], - [ - -73.451204, - 45.537642 - ], - [ - -73.451019, - 45.537606 - ], - [ - -73.450864, - 45.537552 - ], - [ - -73.450788, - 45.537518 - ], - [ - -73.450674, - 45.537466 - ], - [ - -73.449848, - 45.536971 - ], - [ - -73.449118, - 45.536538 - ], - [ - -73.449006, - 45.536471 - ], - [ - -73.448626, - 45.536264 - ], - [ - -73.448357, - 45.536192 - ], - [ - -73.447442, - 45.535976 - ], - [ - -73.447213, - 45.535913 - ], - [ - -73.447099, - 45.535867 - ], - [ - -73.446936, - 45.5358 - ], - [ - -73.446746, - 45.535696 - ], - [ - -73.446503, - 45.53552 - ], - [ - -73.446498, - 45.535516 - ], - [ - -73.446412, - 45.535444 - ], - [ - -73.446305, - 45.535359 - ], - [ - -73.446216, - 45.535273 - ], - [ - -73.445977, - 45.535035 - ], - [ - -73.44579, - 45.534868 - ], - [ - -73.445666, - 45.534784 - ], - [ - -73.445571, - 45.534719 - ], - [ - -73.445347, - 45.534582 - ], - [ - -73.445234, - 45.534512 - ], - [ - -73.445013, - 45.5344 - ], - [ - -73.444564, - 45.534238 - ], - [ - -73.444063, - 45.534075 - ], - [ - -73.444212, - 45.533801 - ], - [ - -73.444232, - 45.533764 - ], - [ - -73.444441, - 45.533378 - ], - [ - -73.44472, - 45.532816 - ], - [ - -73.445133, - 45.532069 - ], - [ - -73.445159, - 45.532011 - ], - [ - -73.445217, - 45.531876 - ], - [ - -73.445225, - 45.531848 - ], - [ - -73.445262, - 45.531714 - ], - [ - -73.445416, - 45.531246 - ], - [ - -73.445655, - 45.53081 - ], - [ - -73.445839, - 45.530633 - ], - [ - -73.44588, - 45.530594 - ], - [ - -73.445934, - 45.530553 - ], - [ - -73.445986, - 45.530495 - ], - [ - -73.446078, - 45.530436 - ], - [ - -73.446188, - 45.530392 - ], - [ - -73.446303, - 45.53036 - ], - [ - -73.446426, - 45.53032 - ], - [ - -73.446558, - 45.530297 - ], - [ - -73.446722, - 45.530284 - ], - [ - -73.446778, - 45.530284 - ], - [ - -73.446897, - 45.530293 - ], - [ - -73.44702, - 45.530311 - ], - [ - -73.44713, - 45.530342 - ], - [ - -73.447236, - 45.530379 - ], - [ - -73.447385, - 45.530442 - ], - [ - -73.44747, - 45.530495 - ], - [ - -73.447543, - 45.530541 - ], - [ - -73.447862, - 45.53032 - ], - [ - -73.448024, - 45.530118 - ], - [ - -73.448085, - 45.530001 - ], - [ - -73.448297, - 45.529596 - ], - [ - -73.448362, - 45.529472 - ], - [ - -73.448445, - 45.529313 - ], - [ - -73.448776, - 45.528634 - ], - [ - -73.449239, - 45.527747 - ], - [ - -73.449413, - 45.527436 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.45067, - 45.527735 - ], - [ - -73.450838, - 45.527798 - ], - [ - -73.451123, - 45.527906 - ], - [ - -73.451519, - 45.528063 - ], - [ - -73.452162, - 45.528357 - ], - [ - -73.452276, - 45.528409 - ], - [ - -73.452337, - 45.528437 - ], - [ - -73.45321, - 45.528797 - ], - [ - -73.454095, - 45.529149 - ], - [ - -73.454898, - 45.529493 - ], - [ - -73.454978, - 45.529527 - ], - [ - -73.45507, - 45.529563 - ], - [ - -73.457292, - 45.530467 - ], - [ - -73.457482, - 45.530545 - ], - [ - -73.458332, - 45.530905 - ], - [ - -73.460581, - 45.531882 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.462028, - 45.532627 - ], - [ - -73.462751, - 45.533003 - ], - [ - -73.4637, - 45.533563 - ], - [ - -73.463873, - 45.533665 - ], - [ - -73.464875, - 45.534543 - ], - [ - -73.46573, - 45.535332 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.46881, - 45.537048 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469941, - 45.537318 - ], - [ - -73.470305, - 45.537406 - ], - [ - -73.470749, - 45.537487 - ], - [ - -73.471335, - 45.537563 - ], - [ - -73.471845, - 45.53759 - ], - [ - -73.471931, - 45.53759 - ], - [ - -73.472146, - 45.537591 - ], - [ - -73.472355, - 45.537591 - ], - [ - -73.473126, - 45.537555 - ], - [ - -73.473826, - 45.537492 - ], - [ - -73.474517, - 45.537429 - ], - [ - -73.474521, - 45.537429 - ], - [ - -73.474599, - 45.537423 - ], - [ - -73.475173, - 45.53738 - ], - [ - -73.47563, - 45.537344 - ], - [ - -73.476192, - 45.537353 - ], - [ - -73.476662, - 45.537394 - ], - [ - -73.477026, - 45.537434 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.477884, - 45.5376 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479501, - 45.538079 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.482461, - 45.538914 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484688, - 45.539728 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.485786, - 45.540121 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491035, - 45.541427 - ], - [ - -73.491084, - 45.541584 - ], - [ - -73.491099, - 45.541724 - ], - [ - -73.491104, - 45.54182 - ], - [ - -73.491106, - 45.541854 - ], - [ - -73.491092, - 45.542156 - ], - [ - -73.491081, - 45.542381 - ], - [ - -73.49104, - 45.543146 - ], - [ - -73.490998, - 45.543726 - ], - [ - -73.491037, - 45.544117 - ], - [ - -73.491071, - 45.544252 - ], - [ - -73.491113, - 45.544396 - ], - [ - -73.491272, - 45.544698 - ], - [ - -73.491367, - 45.544855 - ], - [ - -73.491449, - 45.544981 - ], - [ - -73.491608, - 45.545148 - ], - [ - -73.491886, - 45.545409 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.492798, - 45.546135 - ], - [ - -73.492868, - 45.546192 - ], - [ - -73.493081, - 45.546361 - ], - [ - -73.493835, - 45.546966 - ], - [ - -73.494604, - 45.547573 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.495745, - 45.548495 - ], - [ - -73.495811, - 45.548549 - ], - [ - -73.49673, - 45.549278 - ], - [ - -73.497087, - 45.549548 - ], - [ - -73.49736, - 45.549719 - ], - [ - -73.497501, - 45.549805 - ], - [ - -73.497722, - 45.549908 - ], - [ - -73.497944, - 45.549998 - ], - [ - -73.498136, - 45.55007 - ], - [ - -73.498405, - 45.550151 - ], - [ - -73.498716, - 45.550237 - ], - [ - -73.499009, - 45.550295 - ], - [ - -73.499514, - 45.550349 - ], - [ - -73.499763, - 45.550363 - ], - [ - -73.501515, - 45.550448 - ], - [ - -73.502446, - 45.550493 - ], - [ - -73.502797, - 45.550502 - ], - [ - -73.502913, - 45.550498 - ], - [ - -73.503017, - 45.550484 - ], - [ - -73.503194, - 45.550453 - ], - [ - -73.503355, - 45.550399 - ], - [ - -73.503504, - 45.550327 - ], - [ - -73.503636, - 45.550237 - ], - [ - -73.503751, - 45.550133 - ], - [ - -73.503955, - 45.549904 - ], - [ - -73.504046, - 45.549787 - ], - [ - -73.504119, - 45.549647 - ], - [ - -73.50416, - 45.549508 - ], - [ - -73.504199, - 45.549065 - ], - [ - -73.504212, - 45.548909 - ], - [ - -73.504289, - 45.548585 - ], - [ - -73.504342, - 45.548423 - ], - [ - -73.504477, - 45.548095 - ], - [ - -73.504558, - 45.547933 - ], - [ - -73.504654, - 45.547771 - ], - [ - -73.504887, - 45.547461 - ], - [ - -73.505281, - 45.546997 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523434, - 45.53015 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516749, - 45.525842 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524738 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 35, - "properties": { - "id": "61f9e19a-edec-415e-ac3f-37b7ad1c4267", - "data": { - "gtfs": { - "shape_id": "10_1_A" - }, - "segments": [ - { - "distanceMeters": 227, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 316, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 506, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 524, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 5139, - "travelTimeSeconds": 619 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13078, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5791.343632894528, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.52, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 6.81, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.52 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "69483ac1-331d-4f0e-93b5-d8134f380763", - "66f007ae-d813-40cb-ab41-e87b10da3a72", - "6685b5fc-0f35-439d-9c20-c96b665d5201", - "c896d257-2942-4aba-aded-59e49480d892", - "62590a84-0f1e-43e0-8046-574d7d23d2e9", - "48a4676d-1da3-4489-8f80-1edfb1b61b1b", - "83c203fe-4b10-42fd-aafb-d9bc99f756b0", - "e5c2d9f4-1be6-458f-854f-8103a3048b8c", - "231dda72-d4b5-48ae-b714-5ce9d3802c45", - "25a5f82a-36a7-4a52-af2b-32a681f87765", - "8b3a553d-dad5-41ff-b228-80f338c4b0e0", - "210e532b-2acc-4a3e-b173-3471add098b1", - "51637772-6b85-4c49-a14a-4de104a8f1f5", - "23ef9461-bbd0-492e-8678-c51238629a13", - "69483ac1-331d-4f0e-93b5-d8134f380763", - "da0ea2a1-8305-4096-84b5-3da6997f0293", - "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "51878141-1194-4666-977c-0597ee638ffb", - "0a078431-12d6-4e73-9908-076c3a27e8ed", - "211cb268-dcfa-4d7b-810c-681bfa65d4c8", - "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "1e4facbf-29da-4515-97c4-4ef86c22290e", - "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", - "06d26eca-08e9-467e-9ff0-9595778162a0", - "abdcf999-0861-4881-a478-42fa957c7f17", - "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "5f672947-8abc-447c-bf60-535abbf76fae", - "31e8057b-0fb0-44bd-83cf-3acad24654ec", - "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", - "038a22ba-4928-42fc-aaed-50fbd831df37", - "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", - "64648218-6b63-436c-9a46-4770987ba432", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "d0da7a94-74d0-48f5-b44a-25e0881a130d", - "segments": [ - 0, - 5, - 15, - 24, - 33, - 50, - 66, - 72, - 82, - 85, - 94, - 109, - 115, - 119, - 135, - 141, - 145, - 151, - 156, - 159, - 165, - 167, - 170, - 180, - 187, - 193, - 203, - 207, - 213, - 219, - 239, - 254, - 260 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 35, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524008, - 45.524308 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.502818, - 45.54899 - ], - [ - -73.502212, - 45.54962 - ], - [ - -73.501984, - 45.549836 - ], - [ - -73.50186, - 45.549926 - ], - [ - -73.501728, - 45.550007 - ], - [ - -73.501592, - 45.550079 - ], - [ - -73.501452, - 45.550133 - ], - [ - -73.501309, - 45.550183 - ], - [ - -73.50116, - 45.550219 - ], - [ - -73.501011, - 45.55025 - ], - [ - -73.501, - 45.550251 - ], - [ - -73.500705, - 45.550282 - ], - [ - -73.500547, - 45.550286 - ], - [ - -73.49991, - 45.550295 - ], - [ - -73.499238, - 45.550226 - ], - [ - -73.498778, - 45.550153 - ], - [ - -73.498464, - 45.550065 - ], - [ - -73.498138, - 45.54995 - ], - [ - -73.497746, - 45.549767 - ], - [ - -73.497494, - 45.54961 - ], - [ - -73.497234, - 45.549428 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494909, - 45.547555 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.491999, - 45.54521 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491296, - 45.54289 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.490619, - 45.540707 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486504, - 45.540161 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.485279, - 45.539708 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482917, - 45.538858 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.480048, - 45.538062 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.479241, - 45.537795 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476974, - 45.537234 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472356, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.469382, - 45.536996 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466194, - 45.535485 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464126, - 45.533598 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461215, - 45.531967 - ], - [ - -73.460868, - 45.531797 - ], - [ - -73.460137, - 45.531468 - ], - [ - -73.459095, - 45.531013 - ], - [ - -73.45781, - 45.530479 - ], - [ - -73.457591, - 45.530387 - ], - [ - -73.456631, - 45.529983 - ], - [ - -73.45522, - 45.529388 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.454675, - 45.529163 - ], - [ - -73.453608, - 45.528719 - ], - [ - -73.45247, - 45.528245 - ], - [ - -73.452419, - 45.528224 - ], - [ - -73.452095, - 45.528089 - ], - [ - -73.451849, - 45.527987 - ], - [ - -73.449586, - 45.5271 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.449239, - 45.527747 - ], - [ - -73.4491, - 45.528013 - ], - [ - -73.448776, - 45.528634 - ], - [ - -73.448476, - 45.529249 - ], - [ - -73.448445, - 45.529313 - ], - [ - -73.448085, - 45.530001 - ], - [ - -73.448024, - 45.530118 - ], - [ - -73.447862, - 45.53032 - ], - [ - -73.44764, - 45.530474 - ] - ] - }, - "id": 36, - "properties": { - "id": "468d9000-4f34-4550-8598-11a7fcaf4e07", - "data": { - "gtfs": { - "shape_id": "10_1_R" - }, - "segments": [ - { - "distanceMeters": 4596, - "travelTimeSeconds": 279 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 102 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 43 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9545, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5791.343632894528, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.37, - "travelTimeWithoutDwellTimesSeconds": 1140, - "operatingTimeWithLayoverTimeSeconds": 1320, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1140, - "operatingSpeedWithLayoverMetersPerSecond": 7.23, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.37 - }, - "mode": "bus", - "name": "Sect. B Vieux-Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "8a3f1208-7ffb-452e-8ebb-c436acba82d6", - "2d7687a5-f458-4ce1-a3df-9639d89c0154", - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "ce58f095-9b51-4521-8a41-e64bfb0df31e", - "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", - "65003b15-0baf-4f82-9e15-665e17fd1c75", - "81b3573e-d948-478d-a011-db20e21b0c62", - "def08726-b847-4fc6-b901-78e04519a492", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "3b70b024-5c5b-4081-8c70-3fc026422289", - "1e4facbf-29da-4515-97c4-4ef86c22290e", - "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "53aec761-3dae-44a6-bc58-9d5003bfa1bb", - "6e83e147-802a-4695-95f3-96585bd15c4a", - "51878141-1194-4666-977c-0597ee638ffb", - "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "da0ea2a1-8305-4096-84b5-3da6997f0293", - "69483ac1-331d-4f0e-93b5-d8134f380763" - ], - "stops": [], - "line_id": "d0da7a94-74d0-48f5-b44a-25e0881a130d", - "segments": [ - 0, - 78, - 84, - 108, - 118, - 124, - 133, - 143, - 155, - 165, - 178, - 184, - 192, - 196, - 201, - 203, - 210, - 212 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 36, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.44764, - 45.530474 - ], - [ - -73.447543, - 45.530541 - ], - [ - -73.448141, - 45.53172 - ], - [ - -73.448349, - 45.532116 - ], - [ - -73.448438, - 45.5323 - ], - [ - -73.448512, - 45.532432 - ], - [ - -73.448557, - 45.532512 - ], - [ - -73.44871, - 45.532719 - ], - [ - -73.448896, - 45.532926 - ], - [ - -73.449063, - 45.533088 - ], - [ - -73.44929, - 45.533254 - ], - [ - -73.449502, - 45.533408 - ], - [ - -73.449736, - 45.533561 - ], - [ - -73.449982, - 45.533682 - ], - [ - -73.450209, - 45.533781 - ], - [ - -73.450391, - 45.533867 - ], - [ - -73.450743, - 45.534002 - ], - [ - -73.450985, - 45.534056 - ], - [ - -73.451317, - 45.534124 - ], - [ - -73.45172, - 45.534205 - ], - [ - -73.451896, - 45.534218 - ], - [ - -73.45205, - 45.534214 - ], - [ - -73.452182, - 45.534205 - ], - [ - -73.452341, - 45.534169 - ], - [ - -73.452481, - 45.534133 - ], - [ - -73.452644, - 45.534061 - ], - [ - -73.45275, - 45.533989 - ], - [ - -73.453619, - 45.533409 - ], - [ - -73.453895, - 45.533306 - ], - [ - -73.454221, - 45.533257 - ], - [ - -73.454807, - 45.533288 - ], - [ - -73.45503, - 45.53332 - ], - [ - -73.455242, - 45.53336 - ], - [ - -73.455391, - 45.533387 - ], - [ - -73.455523, - 45.533433 - ], - [ - -73.455674, - 45.5335 - ], - [ - -73.455774, - 45.533559 - ], - [ - -73.455836, - 45.533604 - ], - [ - -73.455934, - 45.53369 - ], - [ - -73.455959, - 45.533712 - ], - [ - -73.456036, - 45.533788 - ], - [ - -73.456095, - 45.533878 - ], - [ - -73.456189, - 45.534099 - ], - [ - -73.456214, - 45.534256 - ], - [ - -73.456189, - 45.534413 - ], - [ - -73.456189, - 45.534414 - ], - [ - -73.456134, - 45.534589 - ], - [ - -73.456046, - 45.534737 - ], - [ - -73.455923, - 45.53489 - ], - [ - -73.455755, - 45.535043 - ], - [ - -73.45561, - 45.535133 - ], - [ - -73.455504, - 45.535196 - ], - [ - -73.455381, - 45.535259 - ], - [ - -73.455279, - 45.535296 - ], - [ - -73.455196, - 45.535327 - ], - [ - -73.454943, - 45.535416 - ], - [ - -73.454703, - 45.535484 - ], - [ - -73.45458, - 45.535533 - ], - [ - -73.454434, - 45.535583 - ], - [ - -73.454232, - 45.535664 - ], - [ - -73.454095, - 45.53574 - ], - [ - -73.453985, - 45.535794 - ], - [ - -73.453678, - 45.536032 - ], - [ - -73.453562, - 45.536158 - ], - [ - -73.45347, - 45.536284 - ], - [ - -73.453395, - 45.536388 - ], - [ - -73.453302, - 45.53664 - ], - [ - -73.453056, - 45.537575 - ], - [ - -73.45293, - 45.537571 - ], - [ - -73.452702, - 45.537575 - ], - [ - -73.452033, - 45.537615 - ], - [ - -73.45161, - 45.537656 - ], - [ - -73.451409, - 45.537665 - ], - [ - -73.451204, - 45.537642 - ], - [ - -73.451019, - 45.537606 - ], - [ - -73.450864, - 45.537552 - ], - [ - -73.450674, - 45.537466 - ], - [ - -73.449848, - 45.536971 - ], - [ - -73.449006, - 45.536471 - ], - [ - -73.448626, - 45.536264 - ], - [ - -73.448357, - 45.536192 - ], - [ - -73.447683, - 45.536033 - ], - [ - -73.447442, - 45.535976 - ], - [ - -73.447213, - 45.535913 - ], - [ - -73.447099, - 45.535867 - ], - [ - -73.446936, - 45.5358 - ], - [ - -73.446746, - 45.535696 - ], - [ - -73.446498, - 45.535516 - ], - [ - -73.446412, - 45.535444 - ], - [ - -73.446305, - 45.535359 - ], - [ - -73.446216, - 45.535273 - ], - [ - -73.445977, - 45.535035 - ], - [ - -73.44579, - 45.534868 - ], - [ - -73.445666, - 45.534784 - ], - [ - -73.445571, - 45.534719 - ], - [ - -73.445347, - 45.534582 - ], - [ - -73.445234, - 45.534512 - ], - [ - -73.445013, - 45.5344 - ], - [ - -73.444564, - 45.534238 - ], - [ - -73.444063, - 45.534075 - ], - [ - -73.444212, - 45.533801 - ], - [ - -73.444441, - 45.533378 - ], - [ - -73.44472, - 45.532816 - ], - [ - -73.445133, - 45.532069 - ], - [ - -73.445159, - 45.532011 - ], - [ - -73.445217, - 45.531876 - ], - [ - -73.445262, - 45.531714 - ], - [ - -73.445416, - 45.531246 - ], - [ - -73.445655, - 45.53081 - ], - [ - -73.445758, - 45.530711 - ], - [ - -73.44588, - 45.530594 - ], - [ - -73.445934, - 45.530553 - ], - [ - -73.445986, - 45.530495 - ], - [ - -73.446078, - 45.530436 - ], - [ - -73.446188, - 45.530392 - ], - [ - -73.446303, - 45.53036 - ], - [ - -73.446426, - 45.53032 - ], - [ - -73.446558, - 45.530297 - ], - [ - -73.446722, - 45.530284 - ], - [ - -73.446778, - 45.530284 - ], - [ - -73.446897, - 45.530293 - ], - [ - -73.44702, - 45.530311 - ], - [ - -73.44713, - 45.530342 - ], - [ - -73.447236, - 45.530379 - ], - [ - -73.447385, - 45.530442 - ], - [ - -73.447543, - 45.530541 - ], - [ - -73.447862, - 45.53032 - ], - [ - -73.448024, - 45.530118 - ], - [ - -73.448085, - 45.530001 - ], - [ - -73.448297, - 45.529596 - ], - [ - -73.448445, - 45.529313 - ], - [ - -73.448776, - 45.528634 - ], - [ - -73.449239, - 45.527747 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.45067, - 45.527735 - ], - [ - -73.450838, - 45.527798 - ], - [ - -73.451123, - 45.527906 - ], - [ - -73.451519, - 45.528063 - ], - [ - -73.452276, - 45.528409 - ], - [ - -73.452337, - 45.528437 - ], - [ - -73.45321, - 45.528797 - ], - [ - -73.454095, - 45.529149 - ], - [ - -73.454978, - 45.529527 - ], - [ - -73.45507, - 45.529563 - ], - [ - -73.455133, - 45.529589 - ], - [ - -73.457482, - 45.530545 - ], - [ - -73.458332, - 45.530905 - ], - [ - -73.460581, - 45.531882 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.462751, - 45.533003 - ], - [ - -73.463873, - 45.533665 - ], - [ - -73.464875, - 45.534543 - ], - [ - -73.465497, - 45.535116 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469941, - 45.537318 - ], - [ - -73.470305, - 45.537406 - ], - [ - -73.470749, - 45.537487 - ], - [ - -73.471335, - 45.537563 - ], - [ - -73.471845, - 45.53759 - ], - [ - -73.472146, - 45.537591 - ], - [ - -73.472355, - 45.537591 - ], - [ - -73.473126, - 45.537555 - ], - [ - -73.473826, - 45.537492 - ], - [ - -73.474517, - 45.537429 - ], - [ - -73.474599, - 45.537423 - ], - [ - -73.475173, - 45.53738 - ], - [ - -73.47563, - 45.537344 - ], - [ - -73.476192, - 45.537353 - ], - [ - -73.476662, - 45.537394 - ], - [ - -73.477026, - 45.537434 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.477375, - 45.53749 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484688, - 45.539728 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487193, - 45.54054 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491035, - 45.541427 - ], - [ - -73.491084, - 45.541584 - ], - [ - -73.491099, - 45.541724 - ], - [ - -73.491106, - 45.541854 - ], - [ - -73.491092, - 45.542156 - ], - [ - -73.491081, - 45.542381 - ], - [ - -73.49104, - 45.543146 - ], - [ - -73.490998, - 45.543726 - ], - [ - -73.491037, - 45.544117 - ], - [ - -73.491071, - 45.544252 - ], - [ - -73.491113, - 45.544396 - ], - [ - -73.491272, - 45.544698 - ], - [ - -73.491367, - 45.544855 - ], - [ - -73.491449, - 45.544981 - ], - [ - -73.491608, - 45.545148 - ], - [ - -73.491886, - 45.545409 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.492548, - 45.545933 - ], - [ - -73.492868, - 45.546192 - ], - [ - -73.493081, - 45.546361 - ], - [ - -73.493835, - 45.546966 - ], - [ - -73.494604, - 45.547573 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.495811, - 45.548549 - ], - [ - -73.49673, - 45.549278 - ], - [ - -73.497087, - 45.549548 - ], - [ - -73.49736, - 45.549719 - ], - [ - -73.497501, - 45.549805 - ], - [ - -73.497722, - 45.549908 - ], - [ - -73.497944, - 45.549998 - ], - [ - -73.498136, - 45.55007 - ], - [ - -73.498405, - 45.550151 - ], - [ - -73.498716, - 45.550237 - ], - [ - -73.499009, - 45.550295 - ], - [ - -73.499514, - 45.550349 - ], - [ - -73.499763, - 45.550363 - ], - [ - -73.4998, - 45.550364 - ], - [ - -73.501515, - 45.550448 - ], - [ - -73.502446, - 45.550493 - ], - [ - -73.502797, - 45.550502 - ], - [ - -73.502913, - 45.550498 - ], - [ - -73.503017, - 45.550484 - ], - [ - -73.503194, - 45.550453 - ], - [ - -73.503355, - 45.550399 - ], - [ - -73.503504, - 45.550327 - ], - [ - -73.503636, - 45.550237 - ], - [ - -73.503751, - 45.550133 - ], - [ - -73.503955, - 45.549904 - ], - [ - -73.504046, - 45.549787 - ], - [ - -73.504119, - 45.549647 - ], - [ - -73.50416, - 45.549508 - ], - [ - -73.504199, - 45.549065 - ], - [ - -73.504212, - 45.548909 - ], - [ - -73.504289, - 45.548585 - ], - [ - -73.504342, - 45.548423 - ], - [ - -73.504477, - 45.548095 - ], - [ - -73.504558, - 45.547933 - ], - [ - -73.504654, - 45.547771 - ], - [ - -73.504887, - 45.547461 - ], - [ - -73.505281, - 45.546997 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.507852, - 45.544119 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.518302, - 45.534844 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523434, - 45.53015 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.521182, - 45.53024 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516749, - 45.525842 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517032, - 45.525567 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524738 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 37, - "properties": { - "id": "8463d0eb-390e-4e2d-a967-98ec5582514c", - "data": { - "gtfs": { - "shape_id": "10_1_A" - }, - "segments": [ - { - "distanceMeters": 1029, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 934, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 762, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 1070, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 1025, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 1025, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 839, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 880, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 771, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 1075, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 1320, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 1029, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 658, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 667, - "travelTimeSeconds": 19 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13078, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 0, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 36.33, - "travelTimeWithoutDwellTimesSeconds": 360, - "operatingTimeWithLayoverTimeSeconds": 540, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 360, - "operatingSpeedWithLayoverMetersPerSecond": 24.22, - "averageSpeedWithoutDwellTimesMetersPerSecond": 36.33 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "69483ac1-331d-4f0e-93b5-d8134f380763", - "66f007ae-d813-40cb-ab41-e87b10da3a72", - "6685b5fc-0f35-439d-9c20-c96b665d5201", - "c896d257-2942-4aba-aded-59e49480d892", - "62590a84-0f1e-43e0-8046-574d7d23d2e9", - "48a4676d-1da3-4489-8f80-1edfb1b61b1b", - "83c203fe-4b10-42fd-aafb-d9bc99f756b0", - "e5c2d9f4-1be6-458f-854f-8103a3048b8c", - "231dda72-d4b5-48ae-b714-5ce9d3802c45", - "25a5f82a-36a7-4a52-af2b-32a681f87765", - "8b3a553d-dad5-41ff-b228-80f338c4b0e0", - "210e532b-2acc-4a3e-b173-3471add098b1", - "51637772-6b85-4c49-a14a-4de104a8f1f5", - "23ef9461-bbd0-492e-8678-c51238629a13", - "69483ac1-331d-4f0e-93b5-d8134f380763" - ], - "stops": [], - "line_id": "d0da7a94-74d0-48f5-b44a-25e0881a130d", - "segments": [ - 0, - 44, - 81, - 109, - 144, - 153, - 181, - 201, - 231, - 250, - 275, - 290, - 325, - 348 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 37, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469107, - 45.46587 - ], - [ - -73.469152, - 45.465801 - ], - [ - -73.469114, - 45.465711 - ], - [ - -73.469034, - 45.465669 - ], - [ - -73.468913, - 45.46567 - ], - [ - -73.468751, - 45.465752 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469327, - 45.468092 - ], - [ - -73.469492, - 45.4681 - ], - [ - -73.469643, - 45.468109 - ], - [ - -73.470299, - 45.468145 - ], - [ - -73.471062, - 45.468181 - ], - [ - -73.471238, - 45.46819 - ], - [ - -73.471526, - 45.468208 - ], - [ - -73.472194, - 45.468244 - ], - [ - -73.472441, - 45.468255 - ], - [ - -73.472597, - 45.468262 - ], - [ - -73.472728, - 45.468276 - ], - [ - -73.472834, - 45.468294 - ], - [ - -73.472877, - 45.468307 - ], - [ - -73.473025, - 45.468348 - ], - [ - -73.473214, - 45.468424 - ], - [ - -73.473671, - 45.468604 - ], - [ - -73.473673, - 45.468604 - ], - [ - -73.473905, - 45.468649 - ], - [ - -73.474077, - 45.468676 - ], - [ - -73.474259, - 45.46869 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474718, - 45.468735 - ], - [ - -73.474819, - 45.468708 - ], - [ - -73.474822, - 45.468708 - ], - [ - -73.475149, - 45.468731 - ], - [ - -73.475386, - 45.468739 - ], - [ - -73.475537, - 45.468744 - ], - [ - -73.477766, - 45.468838 - ], - [ - -73.477791, - 45.468839 - ], - [ - -73.478795, - 45.46888 - ], - [ - -73.479733, - 45.468916 - ], - [ - -73.480606, - 45.468949 - ], - [ - -73.480705, - 45.468952 - ], - [ - -73.481592, - 45.468898 - ], - [ - -73.482517, - 45.468777 - ], - [ - -73.483931, - 45.468794 - ], - [ - -73.484035, - 45.468795 - ], - [ - -73.484852, - 45.468827 - ], - [ - -73.484983, - 45.468836 - ], - [ - -73.485068, - 45.468858 - ], - [ - -73.485183, - 45.468899 - ], - [ - -73.485272, - 45.468957 - ], - [ - -73.485503, - 45.469228 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.485839, - 45.469649 - ], - [ - -73.485925, - 45.469758 - ], - [ - -73.485957, - 45.470015 - ], - [ - -73.485933, - 45.470276 - ], - [ - -73.485862, - 45.47135 - ], - [ - -73.485859, - 45.471396 - ], - [ - -73.485922, - 45.47159 - ], - [ - -73.486077, - 45.471855 - ], - [ - -73.486282, - 45.472161 - ], - [ - -73.486545, - 45.47257 - ], - [ - -73.486657, - 45.472725 - ], - [ - -73.486715, - 45.472804 - ], - [ - -73.486787, - 45.472912 - ], - [ - -73.488142, - 45.472472 - ], - [ - -73.488555, - 45.472341 - ], - [ - -73.488966, - 45.472197 - ], - [ - -73.489081, - 45.472161 - ], - [ - -73.489198, - 45.472121 - ], - [ - -73.489607, - 45.471977 - ], - [ - -73.489871, - 45.471861 - ], - [ - -73.490057, - 45.471779 - ], - [ - -73.490819, - 45.472701 - ], - [ - -73.490918, - 45.472817 - ], - [ - -73.491142, - 45.473082 - ], - [ - -73.491514, - 45.47352 - ], - [ - -73.490727, - 45.473858 - ], - [ - -73.490156, - 45.474085 - ], - [ - -73.489892, - 45.474191 - ], - [ - -73.489482, - 45.474308 - ], - [ - -73.48921, - 45.474343 - ], - [ - -73.488939, - 45.474348 - ], - [ - -73.488579, - 45.47433 - ], - [ - -73.48828, - 45.474348 - ], - [ - -73.487939, - 45.474393 - ], - [ - -73.487662, - 45.474472 - ], - [ - -73.487656, - 45.474474 - ], - [ - -73.48753, - 45.474518 - ], - [ - -73.487464, - 45.474541 - ], - [ - -73.487385, - 45.474582 - ], - [ - -73.487244, - 45.47464 - ], - [ - -73.487321, - 45.474735 - ], - [ - -73.487428, - 45.474874 - ], - [ - -73.487615, - 45.475158 - ], - [ - -73.487741, - 45.475441 - ], - [ - -73.487792, - 45.475608 - ], - [ - -73.487794, - 45.475615 - ], - [ - -73.487881, - 45.476058 - ], - [ - -73.487976, - 45.47662 - ], - [ - -73.488008, - 45.476755 - ], - [ - -73.488063, - 45.477092 - ], - [ - -73.488079, - 45.477241 - ], - [ - -73.488077, - 45.477259 - ], - [ - -73.488079, - 45.477295 - ], - [ - -73.488061, - 45.477358 - ], - [ - -73.488022, - 45.477403 - ], - [ - -73.48794, - 45.477475 - ], - [ - -73.487785, - 45.477583 - ], - [ - -73.487333, - 45.477881 - ], - [ - -73.487212, - 45.477961 - ], - [ - -73.486606, - 45.478379 - ], - [ - -73.486467, - 45.478469 - ], - [ - -73.486445, - 45.47849 - ], - [ - -73.486363, - 45.478568 - ], - [ - -73.486284, - 45.478752 - ], - [ - -73.48627, - 45.478815 - ], - [ - -73.486253, - 45.478887 - ], - [ - -73.486246, - 45.47895 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486526, - 45.47904 - ], - [ - -73.486564, - 45.47904 - ], - [ - -73.486789, - 45.47904 - ], - [ - -73.487039, - 45.479049 - ], - [ - -73.491329, - 45.479132 - ], - [ - -73.491524, - 45.479136 - ], - [ - -73.491713, - 45.47914 - ], - [ - -73.49213, - 45.479149 - ], - [ - -73.493367, - 45.479162 - ], - [ - -73.495829, - 45.479203 - ], - [ - -73.496137, - 45.479208 - ], - [ - -73.496207, - 45.479208 - ], - [ - -73.496272, - 45.479208 - ], - [ - -73.497101, - 45.479217 - ], - [ - -73.498008, - 45.479232 - ], - [ - -73.498188, - 45.479235 - ], - [ - -73.498413, - 45.479239 - ], - [ - -73.498669, - 45.479235 - ], - [ - -73.498683, - 45.479234 - ], - [ - -73.498818, - 45.47923 - ], - [ - -73.499162, - 45.479257 - ], - [ - -73.49961, - 45.479198 - ], - [ - -73.499687, - 45.479176 - ], - [ - -73.500019, - 45.479082 - ], - [ - -73.500107, - 45.478998 - ], - [ - -73.500272, - 45.479047 - ], - [ - -73.500354, - 45.479074 - ], - [ - -73.500404, - 45.479087 - ], - [ - -73.500422, - 45.479099 - ], - [ - -73.500588, - 45.479205 - ], - [ - -73.501159, - 45.479818 - ], - [ - -73.501455, - 45.480118 - ], - [ - -73.50163, - 45.480263 - ], - [ - -73.501828, - 45.48048 - ], - [ - -73.502032, - 45.480705 - ], - [ - -73.502676, - 45.481412 - ], - [ - -73.502806, - 45.48156 - ], - [ - -73.503272, - 45.482092 - ], - [ - -73.50345, - 45.482308 - ], - [ - -73.503512, - 45.48238 - ], - [ - -73.503563, - 45.48245 - ], - [ - -73.503598, - 45.482497 - ], - [ - -73.504141, - 45.483117 - ], - [ - -73.504614, - 45.483657 - ], - [ - -73.504846, - 45.483915 - ], - [ - -73.504857, - 45.483927 - ], - [ - -73.504924, - 45.483995 - ], - [ - -73.504931, - 45.484001 - ], - [ - -73.505108, - 45.484152 - ], - [ - -73.505242, - 45.484242 - ], - [ - -73.505364, - 45.484314 - ], - [ - -73.505521, - 45.484395 - ], - [ - -73.505663, - 45.484463 - ], - [ - -73.505851, - 45.484535 - ], - [ - -73.505993, - 45.484584 - ], - [ - -73.506624, - 45.484814 - ], - [ - -73.506746, - 45.484863 - ], - [ - -73.506951, - 45.484962 - ], - [ - -73.507115, - 45.485056 - ], - [ - -73.507185, - 45.485097 - ], - [ - -73.507329, - 45.4852 - ], - [ - -73.507431, - 45.485295 - ], - [ - -73.507518, - 45.485367 - ], - [ - -73.50762, - 45.485484 - ], - [ - -73.507754, - 45.485677 - ], - [ - -73.508077, - 45.486145 - ], - [ - -73.508225, - 45.48637 - ], - [ - -73.508359, - 45.486582 - ], - [ - -73.508385, - 45.486622 - ], - [ - -73.508489, - 45.486784 - ], - [ - -73.508543, - 45.486852 - ], - [ - -73.509598, - 45.488378 - ], - [ - -73.509675, - 45.488489 - ], - [ - -73.509764, - 45.488615 - ], - [ - -73.509971, - 45.488912 - ], - [ - -73.510813, - 45.490118 - ], - [ - -73.510831, - 45.490146 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.512404, - 45.492412 - ], - [ - -73.512423, - 45.492451 - ], - [ - -73.51245, - 45.492507 - ], - [ - -73.512764, - 45.493074 - ], - [ - -73.512921, - 45.493393 - ], - [ - -73.512971, - 45.493496 - ], - [ - -73.512984, - 45.493515 - ], - [ - -73.513094, - 45.493766 - ], - [ - -73.513261, - 45.494078 - ], - [ - -73.513283, - 45.494149 - ], - [ - -73.513342, - 45.494287 - ], - [ - -73.513459, - 45.494626 - ], - [ - -73.513505, - 45.494783 - ], - [ - -73.513561, - 45.49499 - ], - [ - -73.513604, - 45.495179 - ], - [ - -73.513621, - 45.495251 - ], - [ - -73.513692, - 45.495557 - ], - [ - -73.513771, - 45.495915 - ], - [ - -73.513786, - 45.49598 - ], - [ - -73.51384, - 45.496187 - ], - [ - -73.513899, - 45.496425 - ], - [ - -73.513925, - 45.49652 - ], - [ - -73.513974, - 45.496614 - ], - [ - -73.514009, - 45.496686 - ], - [ - -73.514054, - 45.496749 - ], - [ - -73.514104, - 45.49683 - ], - [ - -73.514166, - 45.496911 - ], - [ - -73.514219, - 45.49697 - ], - [ - -73.514552, - 45.497478 - ], - [ - -73.514769, - 45.497838 - ], - [ - -73.515085, - 45.498391 - ], - [ - -73.51517, - 45.49854 - ], - [ - -73.515562, - 45.499248 - ], - [ - -73.515623, - 45.499359 - ], - [ - -73.515674, - 45.499453 - ], - [ - -73.515873, - 45.499831 - ], - [ - -73.515977, - 45.500074 - ], - [ - -73.516146, - 45.500501 - ], - [ - -73.516373, - 45.50114 - ], - [ - -73.51647, - 45.501401 - ], - [ - -73.516585, - 45.501695 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517437, - 45.50526 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517233, - 45.507275 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.51756, - 45.509217 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517796, - 45.51143 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517596, - 45.513244 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518268, - 45.515317 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518977, - 45.516751 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520113, - 45.519734 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520194, - 45.520238 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522178, - 45.522521 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.521609, - 45.523676 - ], - [ - -73.521556, - 45.52368 - ], - [ - -73.521506, - 45.523698 - ], - [ - -73.521494, - 45.523725 - ], - [ - -73.521489, - 45.523788 - ], - [ - -73.521486, - 45.523819 - ] - ] - }, - "id": 38, - "properties": { - "id": "11e92693-9315-4580-8d65-1530b6ce942c", - "data": { - "gtfs": { - "shape_id": "13_1_A" - }, - "segments": [ - { - "distanceMeters": 662, - "travelTimeSeconds": 88 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 478, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 418, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 406, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 348, - "travelTimeSeconds": 79 - }, - { - "distanceMeters": 716, - "travelTimeSeconds": 164 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10437, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7618.188458394157, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.44, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 5.8, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.44 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "0296a406-079c-41f9-8c5b-0723a0b5f294", - "79c669a1-9060-4e5d-b272-f107884dee00", - "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "3e9388da-8f48-48c6-b6c0-5461e27eb26a", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "7e4b21bb-20d6-4104-9b98-071226922d49", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "c6165892-3719-417f-8d25-92e65471b42c", - "6735199f-47fc-47db-9116-7c110cca8945", - "6e4c328c-6fba-4e81-b589-59318e11a37a", - "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", - "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", - "fc92d5a1-fe31-4274-9837-2686b4525030", - "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", - "6b54424b-6f85-4448-8e7d-a05da4ef5b95", - "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", - "4df7f34c-ec49-4d48-90b3-56f3faffc976", - "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "9f22d75f-cc66-4020-8804-7912f49950d8", - "41d7b6d4-1fe4-44ed-a774-b005607fc59d", - "bc9b9243-e0ec-461a-9898-6eb69ecd511a", - "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "114aaaad-d40e-4930-853f-ef5cebdd299f", - "0b09b82c-ec97-406d-9f1c-690cc935b5ea", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "2259b112-2e60-4bcc-ad14-9e0e577f2909", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "773adbe0-a2cf-4c95-bea4-eaf41da91d6d", - "segments": [ - 0, - 28, - 32, - 39, - 50, - 52, - 56, - 60, - 67, - 73, - 79, - 88, - 92, - 95, - 103, - 114, - 126, - 130, - 143, - 147, - 152, - 172, - 178, - 185, - 205, - 209, - 214, - 217, - 233, - 248, - 256, - 269, - 275, - 280, - 286, - 292, - 300, - 307, - 315 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 38, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521486, - 45.523819 - ], - [ - -73.521481, - 45.523874 - ], - [ - -73.52149, - 45.523892 - ], - [ - -73.521509, - 45.523906 - ], - [ - -73.521542, - 45.523919 - ], - [ - -73.521581, - 45.523923 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519706, - 45.52323 - ], - [ - -73.519869, - 45.522907 - ], - [ - -73.520158, - 45.522337 - ], - [ - -73.520306, - 45.521899 - ], - [ - -73.520306, - 45.521896 - ], - [ - -73.520354, - 45.521696 - ], - [ - -73.520354, - 45.521695 - ], - [ - -73.520401, - 45.521498 - ], - [ - -73.520405, - 45.521373 - ], - [ - -73.520409, - 45.52119 - ], - [ - -73.520398, - 45.521025 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520191, - 45.520225 - ], - [ - -73.520121, - 45.519896 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518919, - 45.516651 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517657, - 45.51361 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517706, - 45.511766 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.51761, - 45.509413 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517232, - 45.50733 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517348, - 45.505751 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.516772, - 45.502135 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.516608, - 45.501753 - ], - [ - -73.51647, - 45.501401 - ], - [ - -73.516373, - 45.50114 - ], - [ - -73.516146, - 45.500501 - ], - [ - -73.515977, - 45.500074 - ], - [ - -73.515873, - 45.499831 - ], - [ - -73.5157, - 45.499501 - ], - [ - -73.515674, - 45.499453 - ], - [ - -73.515623, - 45.499359 - ], - [ - -73.51517, - 45.49854 - ], - [ - -73.515085, - 45.498391 - ], - [ - -73.514769, - 45.497838 - ], - [ - -73.514552, - 45.497478 - ], - [ - -73.514219, - 45.49697 - ], - [ - -73.514166, - 45.496911 - ], - [ - -73.514104, - 45.49683 - ], - [ - -73.514054, - 45.496749 - ], - [ - -73.514009, - 45.496686 - ], - [ - -73.513974, - 45.496614 - ], - [ - -73.513925, - 45.49652 - ], - [ - -73.513899, - 45.496425 - ], - [ - -73.51384, - 45.496187 - ], - [ - -73.513786, - 45.49598 - ], - [ - -73.513692, - 45.495557 - ], - [ - -73.513665, - 45.495437 - ], - [ - -73.513621, - 45.495251 - ], - [ - -73.513604, - 45.495179 - ], - [ - -73.513561, - 45.49499 - ], - [ - -73.513505, - 45.494783 - ], - [ - -73.513459, - 45.494626 - ], - [ - -73.513342, - 45.494287 - ], - [ - -73.513283, - 45.494149 - ], - [ - -73.513261, - 45.494078 - ], - [ - -73.513094, - 45.493766 - ], - [ - -73.512984, - 45.493515 - ], - [ - -73.512971, - 45.493496 - ], - [ - -73.512921, - 45.493393 - ], - [ - -73.512764, - 45.493074 - ], - [ - -73.51245, - 45.492507 - ], - [ - -73.512404, - 45.492412 - ], - [ - -73.512403, - 45.49241 - ], - [ - -73.510959, - 45.490334 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.510813, - 45.490118 - ], - [ - -73.509971, - 45.488912 - ], - [ - -73.509819, - 45.488694 - ], - [ - -73.509764, - 45.488615 - ], - [ - -73.509675, - 45.488489 - ], - [ - -73.508582, - 45.486908 - ], - [ - -73.508543, - 45.486852 - ], - [ - -73.508489, - 45.486784 - ], - [ - -73.508385, - 45.486622 - ], - [ - -73.508225, - 45.48637 - ], - [ - -73.508077, - 45.486145 - ], - [ - -73.507754, - 45.485677 - ], - [ - -73.50762, - 45.485484 - ], - [ - -73.507518, - 45.485367 - ], - [ - -73.507431, - 45.485295 - ], - [ - -73.507329, - 45.4852 - ], - [ - -73.507185, - 45.485097 - ], - [ - -73.507115, - 45.485056 - ], - [ - -73.506951, - 45.484962 - ], - [ - -73.506746, - 45.484863 - ], - [ - -73.506624, - 45.484814 - ], - [ - -73.505993, - 45.484584 - ], - [ - -73.505851, - 45.484535 - ], - [ - -73.505663, - 45.484463 - ], - [ - -73.505521, - 45.484395 - ], - [ - -73.505364, - 45.484314 - ], - [ - -73.505242, - 45.484242 - ], - [ - -73.505108, - 45.484152 - ], - [ - -73.504925, - 45.483996 - ], - [ - -73.504924, - 45.483995 - ], - [ - -73.504857, - 45.483927 - ], - [ - -73.504846, - 45.483915 - ], - [ - -73.504614, - 45.483657 - ], - [ - -73.504141, - 45.483117 - ], - [ - -73.503674, - 45.482584 - ], - [ - -73.503598, - 45.482497 - ], - [ - -73.503512, - 45.48238 - ], - [ - -73.50345, - 45.482308 - ], - [ - -73.503272, - 45.482092 - ], - [ - -73.502806, - 45.48156 - ], - [ - -73.502676, - 45.481412 - ], - [ - -73.501972, - 45.480639 - ], - [ - -73.501828, - 45.48048 - ], - [ - -73.50163, - 45.480263 - ], - [ - -73.501562, - 45.480174 - ], - [ - -73.501309, - 45.479775 - ], - [ - -73.501238, - 45.479689 - ], - [ - -73.501074, - 45.479488 - ], - [ - -73.500829, - 45.479284 - ], - [ - -73.50074, - 45.479167 - ], - [ - -73.500635, - 45.479076 - ], - [ - -73.500662, - 45.478997 - ], - [ - -73.500703, - 45.478888 - ], - [ - -73.500708, - 45.478848 - ], - [ - -73.500618, - 45.478724 - ], - [ - -73.500601, - 45.478716 - ], - [ - -73.500465, - 45.47866 - ], - [ - -73.500435, - 45.478659 - ], - [ - -73.500337, - 45.478661 - ], - [ - -73.50019, - 45.478724 - ], - [ - -73.500175, - 45.478743 - ], - [ - -73.500117, - 45.478833 - ], - [ - -73.500062, - 45.478934 - ], - [ - -73.499809, - 45.479021 - ], - [ - -73.499691, - 45.479052 - ], - [ - -73.4995, - 45.479103 - ], - [ - -73.498818, - 45.47923 - ], - [ - -73.498683, - 45.479234 - ], - [ - -73.498669, - 45.479235 - ], - [ - -73.498508, - 45.479237 - ], - [ - -73.498413, - 45.479239 - ], - [ - -73.498188, - 45.479235 - ], - [ - -73.497101, - 45.479217 - ], - [ - -73.496458, - 45.47921 - ], - [ - -73.496272, - 45.479208 - ], - [ - -73.496207, - 45.479208 - ], - [ - -73.496137, - 45.479208 - ], - [ - -73.493367, - 45.479162 - ], - [ - -73.49213, - 45.479149 - ], - [ - -73.491897, - 45.479144 - ], - [ - -73.491713, - 45.47914 - ], - [ - -73.491329, - 45.479132 - ], - [ - -73.487039, - 45.479049 - ], - [ - -73.486789, - 45.47904 - ], - [ - -73.48667, - 45.47904 - ], - [ - -73.486564, - 45.47904 - ], - [ - -73.486526, - 45.47904 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486426, - 45.478914 - ], - [ - -73.486429, - 45.478851 - ], - [ - -73.486457, - 45.478743 - ], - [ - -73.486515, - 45.478644 - ], - [ - -73.486599, - 45.478568 - ], - [ - -73.487334, - 45.478055 - ], - [ - -73.487563, - 45.477904 - ], - [ - -73.487867, - 45.477704 - ], - [ - -73.48804, - 45.477592 - ], - [ - -73.488143, - 45.477497 - ], - [ - -73.488191, - 45.477434 - ], - [ - -73.48823, - 45.477367 - ], - [ - -73.488245, - 45.477317 - ], - [ - -73.488261, - 45.477254 - ], - [ - -73.488221, - 45.47702 - ], - [ - -73.488146, - 45.476629 - ], - [ - -73.488047, - 45.476044 - ], - [ - -73.487986, - 45.47573 - ], - [ - -73.487958, - 45.475585 - ], - [ - -73.487905, - 45.475414 - ], - [ - -73.48781, - 45.475189 - ], - [ - -73.487773, - 45.475113 - ], - [ - -73.487674, - 45.474955 - ], - [ - -73.487583, - 45.474826 - ], - [ - -73.487579, - 45.47482 - ], - [ - -73.487467, - 45.474676 - ], - [ - -73.487385, - 45.474582 - ], - [ - -73.487464, - 45.474541 - ], - [ - -73.48753, - 45.474518 - ], - [ - -73.487656, - 45.474474 - ], - [ - -73.487939, - 45.474393 - ], - [ - -73.48828, - 45.474348 - ], - [ - -73.488579, - 45.47433 - ], - [ - -73.488939, - 45.474348 - ], - [ - -73.48921, - 45.474343 - ], - [ - -73.489482, - 45.474308 - ], - [ - -73.489779, - 45.474223 - ], - [ - -73.489892, - 45.474191 - ], - [ - -73.490727, - 45.473858 - ], - [ - -73.491378, - 45.473579 - ], - [ - -73.491514, - 45.47352 - ], - [ - -73.490918, - 45.472817 - ], - [ - -73.490819, - 45.472701 - ], - [ - -73.49018, - 45.471928 - ], - [ - -73.490057, - 45.471779 - ], - [ - -73.489969, - 45.471675 - ], - [ - -73.489522, - 45.471873 - ], - [ - -73.489116, - 45.472013 - ], - [ - -73.48901, - 45.472049 - ], - [ - -73.488898, - 45.472089 - ], - [ - -73.488483, - 45.472229 - ], - [ - -73.48807, - 45.472359 - ], - [ - -73.487087, - 45.472682 - ], - [ - -73.486715, - 45.472804 - ], - [ - -73.486545, - 45.47257 - ], - [ - -73.486282, - 45.472161 - ], - [ - -73.486077, - 45.471855 - ], - [ - -73.486033, - 45.47178 - ], - [ - -73.485922, - 45.47159 - ], - [ - -73.485859, - 45.471396 - ], - [ - -73.485933, - 45.470276 - ], - [ - -73.485957, - 45.470015 - ], - [ - -73.485925, - 45.469758 - ], - [ - -73.485839, - 45.469649 - ], - [ - -73.48565, - 45.469408 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.485272, - 45.468957 - ], - [ - -73.485183, - 45.468899 - ], - [ - -73.485068, - 45.468858 - ], - [ - -73.484983, - 45.468836 - ], - [ - -73.484852, - 45.468827 - ], - [ - -73.484175, - 45.468801 - ], - [ - -73.484035, - 45.468795 - ], - [ - -73.482517, - 45.468777 - ], - [ - -73.481592, - 45.468898 - ], - [ - -73.480837, - 45.468944 - ], - [ - -73.480705, - 45.468952 - ], - [ - -73.479733, - 45.468916 - ], - [ - -73.478795, - 45.46888 - ], - [ - -73.477984, - 45.468847 - ], - [ - -73.477791, - 45.468839 - ], - [ - -73.475537, - 45.468744 - ], - [ - -73.475149, - 45.468731 - ], - [ - -73.474822, - 45.468708 - ], - [ - -73.474819, - 45.468708 - ], - [ - -73.474755, - 45.468671 - ], - [ - -73.47474, - 45.468663 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.473206, - 45.468296 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.471429, - 45.468098 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469574, - 45.467137 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.46908, - 45.465912 - ], - [ - -73.469107, - 45.46587 - ] - ] - }, - "id": 39, - "properties": { - "id": "ea1b8b23-8cd5-40e1-8051-1748fdff1406", - "data": { - "gtfs": { - "shape_id": "13_1_R" - }, - "segments": [ - { - "distanceMeters": 766, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 378, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 353, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 412, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 482, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 447, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 435, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 356, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 654, - "travelTimeSeconds": 158 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10512, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7618.188458394157, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.74, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 6.04, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.74 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "0b09b82c-ec97-406d-9f1c-690cc935b5ea", - "27330ef0-4c59-4e22-a044-51b9d43c9719", - "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "bc9b9243-e0ec-461a-9898-6eb69ecd511a", - "41d7b6d4-1fe4-44ed-a774-b005607fc59d", - "9f22d75f-cc66-4020-8804-7912f49950d8", - "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "4df7f34c-ec49-4d48-90b3-56f3faffc976", - "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", - "6b54424b-6f85-4448-8e7d-a05da4ef5b95", - "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", - "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", - "6e4c328c-6fba-4e81-b589-59318e11a37a", - "6735199f-47fc-47db-9116-7c110cca8945", - "c6165892-3719-417f-8d25-92e65471b42c", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "7e4b21bb-20d6-4104-9b98-071226922d49", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "3acbe4f4-b4c0-469f-af21-f4af3c6e2b53", - "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "79c669a1-9060-4e5d-b272-f107884dee00", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "773adbe0-a2cf-4c95-bea4-eaf41da91d6d", - "segments": [ - 0, - 31, - 41, - 52, - 58, - 65, - 71, - 76, - 88, - 97, - 115, - 131, - 132, - 136, - 139, - 162, - 168, - 175, - 203, - 207, - 213, - 218, - 228, - 239, - 245, - 258, - 261, - 265, - 274, - 279, - 286, - 293, - 297, - 301, - 307, - 316, - 323 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 39, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.436389, - 45.44372 - ], - [ - -73.436575, - 45.443858 - ], - [ - -73.436661, - 45.443921 - ], - [ - -73.436662, - 45.443922 - ], - [ - -73.437463, - 45.444543 - ], - [ - -73.437838, - 45.444826 - ], - [ - -73.437964, - 45.444933 - ], - [ - -73.438029, - 45.444985 - ], - [ - -73.438094, - 45.445037 - ], - [ - -73.438227, - 45.444954 - ], - [ - -73.438235, - 45.444948 - ], - [ - -73.438338, - 45.444864 - ], - [ - -73.438657, - 45.444631 - ], - [ - -73.438851, - 45.444488 - ], - [ - -73.439723, - 45.443742 - ], - [ - -73.439845, - 45.443642 - ], - [ - -73.439975, - 45.443534 - ], - [ - -73.440539, - 45.443068 - ], - [ - -73.441275, - 45.44243 - ], - [ - -73.441943, - 45.441851 - ], - [ - -73.442064, - 45.44172 - ], - [ - -73.442173, - 45.441795 - ], - [ - -73.444502, - 45.443464 - ], - [ - -73.444646, - 45.443567 - ], - [ - -73.444814, - 45.443691 - ], - [ - -73.445792, - 45.44439 - ], - [ - -73.445916, - 45.444479 - ], - [ - -73.447006, - 45.445254 - ], - [ - -73.447144, - 45.445352 - ], - [ - -73.44736, - 45.4455 - ], - [ - -73.447729, - 45.445718 - ], - [ - -73.448087, - 45.44592 - ], - [ - -73.449215, - 45.446551 - ], - [ - -73.449266, - 45.44658 - ], - [ - -73.4494, - 45.446659 - ], - [ - -73.449563, - 45.446742 - ], - [ - -73.450068, - 45.447011 - ], - [ - -73.450448, - 45.447201 - ], - [ - -73.451097, - 45.447517 - ], - [ - -73.4522, - 45.448094 - ], - [ - -73.452476, - 45.448237 - ], - [ - -73.453807, - 45.448921 - ], - [ - -73.454023, - 45.449075 - ], - [ - -73.454088, - 45.449121 - ], - [ - -73.454556, - 45.449427 - ], - [ - -73.454816, - 45.449624 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.455393, - 45.45012 - ], - [ - -73.456061, - 45.45066 - ], - [ - -73.456286, - 45.450829 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.457162, - 45.451455 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457924, - 45.451894 - ], - [ - -73.458487, - 45.4522 - ], - [ - -73.458745, - 45.452338 - ], - [ - -73.458941, - 45.452443 - ], - [ - -73.459713, - 45.452799 - ], - [ - -73.461259, - 45.453484 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.462936, - 45.45423 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463822, - 45.454609 - ], - [ - -73.464921, - 45.455073 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465851, - 45.455474 - ], - [ - -73.466482, - 45.45573 - ], - [ - -73.466742, - 45.45582 - ], - [ - -73.466794, - 45.455838 - ], - [ - -73.466905, - 45.455874 - ], - [ - -73.467229, - 45.455978 - ], - [ - -73.467462, - 45.456041 - ], - [ - -73.467802, - 45.456122 - ], - [ - -73.468172, - 45.456192 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468158, - 45.456945 - ], - [ - -73.468147, - 45.457005 - ], - [ - -73.46811, - 45.457204 - ], - [ - -73.468109, - 45.457211 - ], - [ - -73.468042, - 45.457852 - ], - [ - -73.468021, - 45.458057 - ], - [ - -73.467975, - 45.458309 - ], - [ - -73.467971, - 45.458525 - ], - [ - -73.467956, - 45.458669 - ], - [ - -73.467979, - 45.458754 - ], - [ - -73.468056, - 45.45893 - ], - [ - -73.468061, - 45.458935 - ], - [ - -73.468212, - 45.459096 - ], - [ - -73.468425, - 45.459258 - ], - [ - -73.468742, - 45.459506 - ], - [ - -73.468938, - 45.459704 - ], - [ - -73.46901, - 45.459861 - ], - [ - -73.469046, - 45.459978 - ], - [ - -73.469045, - 45.460397 - ], - [ - -73.469022, - 45.460702 - ], - [ - -73.46901, - 45.460865 - ], - [ - -73.46897, - 45.46149 - ], - [ - -73.468876, - 45.462738 - ], - [ - -73.468837, - 45.463254 - ], - [ - -73.468833, - 45.46342 - ], - [ - -73.468853, - 45.463435 - ], - [ - -73.468884, - 45.463461 - ], - [ - -73.468972, - 45.463474 - ], - [ - -73.470687, - 45.463533 - ], - [ - -73.471257, - 45.463547 - ], - [ - -73.471494, - 45.463556 - ], - [ - -73.471549, - 45.463559 - ], - [ - -73.471666, - 45.463565 - ], - [ - -73.471841, - 45.463592 - ], - [ - -73.472107, - 45.4637 - ], - [ - -73.472794, - 45.46417 - ], - [ - -73.472811, - 45.464181 - ], - [ - -73.473207, - 45.464434 - ], - [ - -73.473437, - 45.464543 - ], - [ - -73.473499, - 45.464573 - ], - [ - -73.473705, - 45.464641 - ], - [ - -73.473949, - 45.464699 - ], - [ - -73.474168, - 45.464717 - ], - [ - -73.474508, - 45.464734 - ], - [ - -73.474661, - 45.464744 - ], - [ - -73.47483, - 45.464748 - ], - [ - -73.475061, - 45.464753 - ], - [ - -73.476229, - 45.46479 - ], - [ - -73.478197, - 45.464861 - ], - [ - -73.478688, - 45.464879 - ], - [ - -73.478969, - 45.464889 - ], - [ - -73.479281, - 45.464889 - ], - [ - -73.479651, - 45.464862 - ], - [ - -73.479951, - 45.464831 - ], - [ - -73.480287, - 45.464772 - ], - [ - -73.480652, - 45.464687 - ], - [ - -73.480952, - 45.464593 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.481205, - 45.464118 - ], - [ - -73.481015, - 45.463891 - ], - [ - -73.480932, - 45.463792 - ], - [ - -73.480306, - 45.46304 - ], - [ - -73.479929, - 45.462589 - ], - [ - -73.479274, - 45.461807 - ], - [ - -73.478983, - 45.461465 - ], - [ - -73.478678, - 45.461105 - ], - [ - -73.47855, - 45.461011 - ], - [ - -73.478401, - 45.460879 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.47888, - 45.460399 - ], - [ - -73.479008, - 45.460264 - ], - [ - -73.479302, - 45.459904 - ], - [ - -73.479398, - 45.459769 - ], - [ - -73.479488, - 45.459616 - ], - [ - -73.479616, - 45.459382 - ], - [ - -73.479663, - 45.45928 - ], - [ - -73.479699, - 45.459202 - ], - [ - -73.47976, - 45.459027 - ], - [ - -73.479776, - 45.458968 - ], - [ - -73.479808, - 45.458865 - ], - [ - -73.479852, - 45.458707 - ], - [ - -73.479891, - 45.458478 - ], - [ - -73.479913, - 45.458325 - ], - [ - -73.479923, - 45.458145 - ], - [ - -73.479926, - 45.458073 - ], - [ - -73.479893, - 45.457659 - ], - [ - -73.479816, - 45.456864 - ], - [ - -73.479803, - 45.456723 - ], - [ - -73.480102, - 45.456735 - ], - [ - -73.482699, - 45.456834 - ], - [ - -73.482746, - 45.456836 - ], - [ - -73.483692, - 45.456872 - ], - [ - -73.485139, - 45.456916 - ], - [ - -73.48636, - 45.456954 - ], - [ - -73.48636, - 45.456954 - ], - [ - -73.488203, - 45.457017 - ], - [ - -73.489637, - 45.457066 - ], - [ - -73.489765, - 45.457071 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.489787, - 45.45681 - ], - [ - -73.489805, - 45.456679 - ], - [ - -73.489837, - 45.456558 - ], - [ - -73.489891, - 45.45645 - ], - [ - -73.490047, - 45.45632 - ], - [ - -73.490235, - 45.456194 - ], - [ - -73.490874, - 45.45587 - ], - [ - -73.490895, - 45.455859 - ], - [ - -73.49101, - 45.455802 - ], - [ - -73.491179, - 45.455672 - ], - [ - -73.491306, - 45.455478 - ], - [ - -73.49137, - 45.454781 - ], - [ - -73.491379, - 45.454673 - ], - [ - -73.491385, - 45.45452 - ], - [ - -73.491385, - 45.45439 - ], - [ - -73.491353, - 45.454286 - ], - [ - -73.491307, - 45.454169 - ], - [ - -73.491205, - 45.454016 - ], - [ - -73.491049, - 45.453868 - ], - [ - -73.490922, - 45.453778 - ], - [ - -73.490686, - 45.453615 - ], - [ - -73.49064, - 45.453584 - ], - [ - -73.490337, - 45.453359 - ], - [ - -73.490251, - 45.453269 - ], - [ - -73.490177, - 45.453161 - ], - [ - -73.490138, - 45.453076 - ], - [ - -73.490095, - 45.452936 - ], - [ - -73.490099, - 45.452842 - ], - [ - -73.490107, - 45.452689 - ], - [ - -73.490164, - 45.452099 - ], - [ - -73.490166, - 45.452071 - ], - [ - -73.490174, - 45.451996 - ], - [ - -73.490274, - 45.451145 - ], - [ - -73.490351, - 45.45017 - ], - [ - -73.490356, - 45.450109 - ], - [ - -73.490386, - 45.449719 - ], - [ - -73.490521, - 45.448293 - ], - [ - -73.490551, - 45.447684 - ], - [ - -73.490554, - 45.447636 - ], - [ - -73.492329, - 45.447679 - ], - [ - -73.492436, - 45.447681 - ], - [ - -73.492289, - 45.449805 - ], - [ - -73.492083, - 45.451362 - ], - [ - -73.49212, - 45.45165 - ], - [ - -73.49212, - 45.451825 - ], - [ - -73.492123, - 45.452864 - ], - [ - -73.49216, - 45.453701 - ], - [ - -73.492386, - 45.455438 - ], - [ - -73.492407, - 45.455717 - ], - [ - -73.492493, - 45.456896 - ], - [ - -73.492564, - 45.457647 - ], - [ - -73.4927, - 45.459361 - ], - [ - -73.492779, - 45.460456 - ], - [ - -73.492846, - 45.461395 - ], - [ - -73.492934, - 45.462376 - ], - [ - -73.493017, - 45.462857 - ], - [ - -73.493143, - 45.46333 - ], - [ - -73.493941, - 45.465615 - ], - [ - -73.494238, - 45.466497 - ], - [ - -73.494784, - 45.46809 - ], - [ - -73.49514, - 45.469003 - ], - [ - -73.495218, - 45.469188 - ], - [ - -73.495399, - 45.469561 - ], - [ - -73.495711, - 45.47016 - ], - [ - -73.497242, - 45.472936 - ], - [ - -73.497503, - 45.473372 - ], - [ - -73.497649, - 45.473588 - ], - [ - -73.497808, - 45.473795 - ], - [ - -73.497936, - 45.473957 - ], - [ - -73.49797, - 45.473998 - ], - [ - -73.497971, - 45.473998 - ], - [ - -73.498154, - 45.474204 - ], - [ - -73.498345, - 45.474398 - ], - [ - -73.498759, - 45.474776 - ], - [ - -73.498981, - 45.474956 - ], - [ - -73.499212, - 45.475131 - ], - [ - -73.499453, - 45.475307 - ], - [ - -73.502533, - 45.47734 - ], - [ - -73.504857, - 45.478866 - ], - [ - -73.505913, - 45.479567 - ], - [ - -73.50636, - 45.479923 - ], - [ - -73.506669, - 45.480206 - ], - [ - -73.506703, - 45.480242 - ], - [ - -73.507146, - 45.480733 - ], - [ - -73.507302, - 45.480949 - ], - [ - -73.507442, - 45.481165 - ], - [ - -73.507569, - 45.481381 - ], - [ - -73.507678, - 45.48161 - ], - [ - -73.507857, - 45.482069 - ], - [ - -73.507995, - 45.482559 - ], - [ - -73.508478, - 45.484485 - ], - [ - -73.508692, - 45.485218 - ], - [ - -73.508857, - 45.485709 - ], - [ - -73.509037, - 45.486199 - ], - [ - -73.509236, - 45.486685 - ], - [ - -73.509454, - 45.487171 - ], - [ - -73.509688, - 45.487657 - ], - [ - -73.509939, - 45.488138 - ], - [ - -73.510206, - 45.488624 - ], - [ - -73.510497, - 45.489096 - ], - [ - -73.510511, - 45.489119 - ], - [ - -73.510962, - 45.489803 - ], - [ - -73.512569, - 45.492115 - ], - [ - -73.512867, - 45.49257 - ], - [ - -73.513116, - 45.493024 - ], - [ - -73.513214, - 45.493253 - ], - [ - -73.513607, - 45.494261 - ], - [ - -73.514156, - 45.495746 - ], - [ - -73.514429, - 45.49643 - ], - [ - -73.514695, - 45.496974 - ], - [ - -73.515628, - 45.498702 - ], - [ - -73.515861, - 45.49917 - ], - [ - -73.516166, - 45.499876 - ], - [ - -73.516897, - 45.501748 - ], - [ - -73.516988, - 45.501968 - ], - [ - -73.517047, - 45.502229 - ], - [ - -73.517143, - 45.50249 - ], - [ - -73.517343, - 45.502967 - ], - [ - -73.517473, - 45.503214 - ], - [ - -73.517796, - 45.503754 - ], - [ - -73.517946, - 45.503994 - ], - [ - -73.518322, - 45.504595 - ], - [ - -73.518382, - 45.504726 - ], - [ - -73.518393, - 45.504775 - ], - [ - -73.518381, - 45.504829 - ], - [ - -73.518359, - 45.504861 - ], - [ - -73.518298, - 45.504892 - ], - [ - -73.518253, - 45.504897 - ], - [ - -73.518142, - 45.504882 - ], - [ - -73.517927, - 45.504848 - ], - [ - -73.517624, - 45.504735 - ], - [ - -73.517545, - 45.504708 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517478, - 45.505047 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517438, - 45.505256 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517233, - 45.507272 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.51756, - 45.509215 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517796, - 45.511428 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517596, - 45.513242 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518264, - 45.515308 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518977, - 45.516751 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520113, - 45.519735 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520194, - 45.520238 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.521017, - 45.523892 - ], - [ - -73.521053, - 45.523883 - ], - [ - -73.521061, - 45.523869 - ], - [ - -73.521065, - 45.523851 - ], - [ - -73.521071, - 45.523799 - ] - ] - }, - "id": 40, - "properties": { - "id": "276c0b0c-0356-44f1-a494-1883018be48d", - "data": { - "gtfs": { - "shape_id": "14_1_A" - }, - "segments": [ - { - "distanceMeters": 261, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 469, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 87, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 7007, - "travelTimeSeconds": 420 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 348, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 604, - "travelTimeSeconds": 97 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 186, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17447, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11114.673998285822, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.38, - "travelTimeWithoutDwellTimesSeconds": 1860, - "operatingTimeWithLayoverTimeSeconds": 2046, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1860, - "operatingSpeedWithLayoverMetersPerSecond": 8.53, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.38 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "1336b6ed-25ac-4ba0-b4d2-c273e4f51d74", - "9a91df5e-7976-4b04-a1ed-26fb34f4f58f", - "936850f5-3268-43bc-97bf-4daf0894fdc7", - "00c8e0cb-91d0-48ff-97f2-5154a17a68bc", - "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", - "d306b992-8d43-4ba8-8460-68d87b486222", - "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", - "b5853393-4072-4255-b507-e9c4b6659c5b", - "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", - "2ac07b96-98be-4710-a749-3162a661fcb5", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "981ebecb-3dc2-4439-8648-8052a51df7ec", - "2a268094-fe95-4a75-83da-d02aa638cbb6", - "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", - "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", - "ef880d61-7a9a-4504-a9a1-27967a52e95d", - "f872f4da-bae9-485b-a2fb-ae01787389fc", - "71ffac32-604a-4260-b51e-c427856a20c4", - "70ace55a-2f3c-410b-8740-bea06ecb9924", - "5a01eede-d090-4bda-988f-792a987bafc2", - "eee98f97-7434-4d16-88a6-93a424bc6846", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "003bcf5e-54a8-471f-b008-b7fa64ff94ba", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", - "ecb00316-793a-4c41-88bd-3870bea4d999", - "1d56d4cb-0ab2-44f2-924d-aa119de8c362", - "2f68c8b3-ace6-41af-8853-d72177e835fd", - "f1131e74-6c65-4f22-a18d-41dbe35e4576", - "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", - "c7c30949-db61-44fc-b7ab-a69b9fde12cc", - "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", - "997c4af9-ab50-4dfb-941a-afadff58f267", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "0d8bc8fc-204a-4f67-a22f-4e3e93df3587", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "2259b112-2e60-4bcc-ad14-9e0e577f2909", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "f8d5bc3e-c2cb-43f2-b47c-e4f2b61a57bd", - "segments": [ - 0, - 12, - 15, - 18, - 22, - 27, - 32, - 42, - 45, - 51, - 56, - 59, - 61, - 64, - 75, - 81, - 88, - 96, - 102, - 108, - 112, - 122, - 125, - 135, - 139, - 144, - 152, - 163, - 166, - 170, - 173, - 183, - 187, - 196, - 206, - 209, - 213, - 215, - 311, - 317, - 322, - 328, - 334, - 342, - 349, - 357 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 40, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521071, - 45.523799 - ], - [ - -73.521073, - 45.52378 - ], - [ - -73.521082, - 45.523698 - ], - [ - -73.521077, - 45.523679 - ], - [ - -73.52106, - 45.523665 - ], - [ - -73.521034, - 45.523659 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519421, - 45.523501 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519273, - 45.526813 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517718, - 45.527204 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517581, - 45.528211 - ], - [ - -73.517607, - 45.528254 - ], - [ - -73.517649, - 45.528322 - ], - [ - -73.517711, - 45.528383 - ], - [ - -73.517792, - 45.528446 - ], - [ - -73.517892, - 45.528509 - ], - [ - -73.518014, - 45.528567 - ], - [ - -73.518152, - 45.528621 - ], - [ - -73.518241, - 45.528649 - ], - [ - -73.518465, - 45.52872 - ], - [ - -73.518792, - 45.528837 - ], - [ - -73.518955, - 45.528909 - ], - [ - -73.519108, - 45.52899 - ], - [ - -73.519749, - 45.529345 - ], - [ - -73.520069, - 45.529584 - ], - [ - -73.520704, - 45.530083 - ], - [ - -73.521918, - 45.530996 - ], - [ - -73.522248, - 45.531306 - ], - [ - -73.522318, - 45.531401 - ], - [ - -73.522366, - 45.5315 - ], - [ - -73.522373, - 45.531519 - ], - [ - -73.522408, - 45.531612 - ], - [ - -73.52243, - 45.53172 - ], - [ - -73.522419, - 45.531923 - ], - [ - -73.52239, - 45.532017 - ], - [ - -73.52234, - 45.532116 - ], - [ - -73.522267, - 45.532206 - ], - [ - -73.522168, - 45.532278 - ], - [ - -73.522052, - 45.532332 - ], - [ - -73.521929, - 45.532359 - ], - [ - -73.5218, - 45.532368 - ], - [ - -73.521668, - 45.532355 - ], - [ - -73.521544, - 45.532323 - ], - [ - -73.521434, - 45.532274 - ], - [ - -73.521342, - 45.532206 - ], - [ - -73.521273, - 45.532121 - ], - [ - -73.52122, - 45.532013 - ], - [ - -73.521199, - 45.531905 - ], - [ - -73.521204, - 45.531792 - ], - [ - -73.521232, - 45.531685 - ], - [ - -73.521269, - 45.531577 - ], - [ - -73.521392, - 45.531356 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.523244, - 45.529034 - ], - [ - -73.523582, - 45.528589 - ], - [ - -73.523719, - 45.528386 - ], - [ - -73.523853, - 45.528161 - ], - [ - -73.523956, - 45.527977 - ], - [ - -73.524288, - 45.527297 - ], - [ - -73.524449, - 45.526847 - ], - [ - -73.524522, - 45.526604 - ], - [ - -73.524672, - 45.525934 - ], - [ - -73.524726, - 45.525403 - ], - [ - -73.524737, - 45.524827 - ], - [ - -73.524676, - 45.524211 - ], - [ - -73.524219, - 45.521088 - ], - [ - -73.524142, - 45.520647 - ], - [ - -73.523985, - 45.519869 - ], - [ - -73.523744, - 45.518866 - ], - [ - -73.5233, - 45.517354 - ], - [ - -73.520678, - 45.508901 - ], - [ - -73.520214, - 45.507393 - ], - [ - -73.520054, - 45.506899 - ], - [ - -73.51988, - 45.506408 - ], - [ - -73.519663, - 45.505927 - ], - [ - -73.519421, - 45.505468 - ], - [ - -73.518993, - 45.50482 - ], - [ - -73.517782, - 45.503115 - ], - [ - -73.517514, - 45.502679 - ], - [ - -73.517393, - 45.502454 - ], - [ - -73.51718, - 45.501995 - ], - [ - -73.516505, - 45.500249 - ], - [ - -73.516141, - 45.499372 - ], - [ - -73.515797, - 45.498666 - ], - [ - -73.515557, - 45.498211 - ], - [ - -73.51531, - 45.49777 - ], - [ - -73.514841, - 45.496875 - ], - [ - -73.51473, - 45.496655 - ], - [ - -73.514567, - 45.49629 - ], - [ - -73.514302, - 45.495593 - ], - [ - -73.513809, - 45.494225 - ], - [ - -73.513621, - 45.493721 - ], - [ - -73.513407, - 45.493145 - ], - [ - -73.5133, - 45.492903 - ], - [ - -73.51308, - 45.492502 - ], - [ - -73.51286, - 45.492156 - ], - [ - -73.511495, - 45.490203 - ], - [ - -73.511236, - 45.489825 - ], - [ - -73.511116, - 45.489632 - ], - [ - -73.510976, - 45.489447 - ], - [ - -73.510614, - 45.488876 - ], - [ - -73.510385, - 45.488494 - ], - [ - -73.510073, - 45.487927 - ], - [ - -73.50999, - 45.487756 - ], - [ - -73.509875, - 45.487535 - ], - [ - -73.509493, - 45.486739 - ], - [ - -73.509244, - 45.486118 - ], - [ - -73.509089, - 45.4857 - ], - [ - -73.508873, - 45.485047 - ], - [ - -73.508687, - 45.484395 - ], - [ - -73.508246, - 45.482663 - ], - [ - -73.508076, - 45.482055 - ], - [ - -73.508003, - 45.481848 - ], - [ - -73.507918, - 45.481646 - ], - [ - -73.507721, - 45.48125 - ], - [ - -73.507674, - 45.481165 - ], - [ - -73.507613, - 45.481066 - ], - [ - -73.507347, - 45.480701 - ], - [ - -73.50705, - 45.48035 - ], - [ - -73.506701, - 45.479999 - ], - [ - -73.506328, - 45.479689 - ], - [ - -73.505671, - 45.47923 - ], - [ - -73.50361, - 45.477871 - ], - [ - -73.502677, - 45.477264 - ], - [ - -73.502438, - 45.477102 - ], - [ - -73.500934, - 45.476112 - ], - [ - -73.499736, - 45.475329 - ], - [ - -73.499265, - 45.474992 - ], - [ - -73.498849, - 45.474659 - ], - [ - -73.49864, - 45.47447 - ], - [ - -73.498285, - 45.474119 - ], - [ - -73.49796, - 45.473732 - ], - [ - -73.497681, - 45.473341 - ], - [ - -73.49744, - 45.47294 - ], - [ - -73.495877, - 45.470106 - ], - [ - -73.495567, - 45.469507 - ], - [ - -73.495383, - 45.469111 - ], - [ - -73.495133, - 45.468508 - ], - [ - -73.494608, - 45.467027 - ], - [ - -73.494442, - 45.46656 - ], - [ - -73.493602, - 45.464117 - ], - [ - -73.493334, - 45.463312 - ], - [ - -73.493217, - 45.462898 - ], - [ - -73.493134, - 45.46247 - ], - [ - -73.493103, - 45.462254 - ], - [ - -73.493063, - 45.461818 - ], - [ - -73.492886, - 45.459528 - ], - [ - -73.492848, - 45.459042 - ], - [ - -73.492796, - 45.458326 - ], - [ - -73.492575, - 45.455532 - ], - [ - -73.49251, - 45.453449 - ], - [ - -73.492509, - 45.453405 - ], - [ - -73.492502, - 45.453049 - ], - [ - -73.49252, - 45.452711 - ], - [ - -73.49266, - 45.451384 - ], - [ - -73.492704, - 45.451042 - ], - [ - -73.492747, - 45.45061 - ], - [ - -73.492783, - 45.450115 - ], - [ - -73.492889, - 45.449017 - ], - [ - -73.493051, - 45.449027 - ], - [ - -73.493266, - 45.449036 - ], - [ - -73.493359, - 45.44904 - ], - [ - -73.493538, - 45.449054 - ], - [ - -73.493666, - 45.449063 - ], - [ - -73.493761, - 45.449081 - ], - [ - -73.493851, - 45.449121 - ], - [ - -73.493949, - 45.449166 - ], - [ - -73.494018, - 45.449216 - ], - [ - -73.494109, - 45.449297 - ], - [ - -73.494201, - 45.4494 - ], - [ - -73.494247, - 45.449472 - ], - [ - -73.494296, - 45.449557 - ], - [ - -73.494313, - 45.449602 - ], - [ - -73.494327, - 45.449665 - ], - [ - -73.494374, - 45.450442 - ], - [ - -73.494417, - 45.451142 - ], - [ - -73.494424, - 45.451259 - ], - [ - -73.494474, - 45.452091 - ], - [ - -73.494479, - 45.452697 - ], - [ - -73.49448, - 45.452725 - ], - [ - -73.494478, - 45.452891 - ], - [ - -73.494466, - 45.453767 - ], - [ - -73.494454, - 45.45461 - ], - [ - -73.494465, - 45.454948 - ], - [ - -73.494519, - 45.455156 - ], - [ - -73.494524, - 45.455177 - ], - [ - -73.494622, - 45.45551 - ], - [ - -73.494635, - 45.455658 - ], - [ - -73.494605, - 45.455874 - ], - [ - -73.494534, - 45.456009 - ], - [ - -73.494391, - 45.456194 - ], - [ - -73.49402, - 45.456536 - ], - [ - -73.493865, - 45.45668 - ], - [ - -73.493654, - 45.456851 - ], - [ - -73.493562, - 45.456918 - ], - [ - -73.493458, - 45.456968 - ], - [ - -73.493388, - 45.456981 - ], - [ - -73.493324, - 45.45699 - ], - [ - -73.493169, - 45.456999 - ], - [ - -73.493073, - 45.457004 - ], - [ - -73.492597, - 45.457018 - ], - [ - -73.492353, - 45.457023 - ], - [ - -73.492185, - 45.457026 - ], - [ - -73.492061, - 45.457031 - ], - [ - -73.491825, - 45.457026 - ], - [ - -73.491366, - 45.457004 - ], - [ - -73.49005, - 45.456947 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.488779, - 45.456899 - ], - [ - -73.488212, - 45.456877 - ], - [ - -73.486569, - 45.456821 - ], - [ - -73.486364, - 45.456814 - ], - [ - -73.485148, - 45.456777 - ], - [ - -73.483698, - 45.456733 - ], - [ - -73.482947, - 45.4567 - ], - [ - -73.482756, - 45.456692 - ], - [ - -73.479792, - 45.456611 - ], - [ - -73.479622, - 45.456606 - ], - [ - -73.479632, - 45.456719 - ], - [ - -73.479677, - 45.45721 - ], - [ - -73.479701, - 45.457465 - ], - [ - -73.47972, - 45.457668 - ], - [ - -73.479747, - 45.458082 - ], - [ - -73.479754, - 45.45832 - ], - [ - -73.479732, - 45.458469 - ], - [ - -73.479695, - 45.458689 - ], - [ - -73.479603, - 45.459 - ], - [ - -73.479545, - 45.459171 - ], - [ - -73.479528, - 45.459207 - ], - [ - -73.479465, - 45.459342 - ], - [ - -73.479339, - 45.459576 - ], - [ - -73.479253, - 45.45972 - ], - [ - -73.479162, - 45.45985 - ], - [ - -73.478872, - 45.460205 - ], - [ - -73.478751, - 45.460331 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.47855, - 45.461011 - ], - [ - -73.478678, - 45.461105 - ], - [ - -73.478826, - 45.461279 - ], - [ - -73.478983, - 45.461465 - ], - [ - -73.479274, - 45.461807 - ], - [ - -73.479694, - 45.462308 - ], - [ - -73.480306, - 45.46304 - ], - [ - -73.480932, - 45.463792 - ], - [ - -73.481339, - 45.464279 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.480952, - 45.464593 - ], - [ - -73.480652, - 45.464687 - ], - [ - -73.480572, - 45.464706 - ], - [ - -73.480287, - 45.464772 - ], - [ - -73.479951, - 45.464831 - ], - [ - -73.479651, - 45.464862 - ], - [ - -73.479281, - 45.464889 - ], - [ - -73.478969, - 45.464889 - ], - [ - -73.478764, - 45.464882 - ], - [ - -73.478688, - 45.464879 - ], - [ - -73.476229, - 45.46479 - ], - [ - -73.475061, - 45.464753 - ], - [ - -73.474661, - 45.464744 - ], - [ - -73.474508, - 45.464734 - ], - [ - -73.474322, - 45.464725 - ], - [ - -73.474168, - 45.464717 - ], - [ - -73.473949, - 45.464699 - ], - [ - -73.473705, - 45.464641 - ], - [ - -73.473499, - 45.464573 - ], - [ - -73.473207, - 45.464434 - ], - [ - -73.473052, - 45.464335 - ], - [ - -73.472811, - 45.464181 - ], - [ - -73.472107, - 45.4637 - ], - [ - -73.471841, - 45.463592 - ], - [ - -73.471717, - 45.463573 - ], - [ - -73.471666, - 45.463565 - ], - [ - -73.471494, - 45.463556 - ], - [ - -73.471257, - 45.463547 - ], - [ - -73.470687, - 45.463533 - ], - [ - -73.469209, - 45.463482 - ], - [ - -73.468972, - 45.463474 - ], - [ - -73.468884, - 45.463461 - ], - [ - -73.468833, - 45.46342 - ], - [ - -73.468836, - 45.463308 - ], - [ - -73.468837, - 45.463254 - ], - [ - -73.468876, - 45.462738 - ], - [ - -73.46897, - 45.46149 - ], - [ - -73.46901, - 45.460865 - ], - [ - -73.469027, - 45.460641 - ], - [ - -73.469045, - 45.460397 - ], - [ - -73.469046, - 45.459978 - ], - [ - -73.46901, - 45.459861 - ], - [ - -73.468938, - 45.459704 - ], - [ - -73.468742, - 45.459506 - ], - [ - -73.468425, - 45.459258 - ], - [ - -73.468212, - 45.459096 - ], - [ - -73.468183, - 45.459065 - ], - [ - -73.468056, - 45.45893 - ], - [ - -73.467979, - 45.458754 - ], - [ - -73.467956, - 45.458669 - ], - [ - -73.467971, - 45.458525 - ], - [ - -73.467975, - 45.458309 - ], - [ - -73.467989, - 45.45823 - ], - [ - -73.468021, - 45.458057 - ], - [ - -73.468109, - 45.457211 - ], - [ - -73.468142, - 45.457031 - ], - [ - -73.468147, - 45.457005 - ], - [ - -73.468158, - 45.456945 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468443, - 45.456109 - ], - [ - -73.467856, - 45.455996 - ], - [ - -73.467523, - 45.455919 - ], - [ - -73.467299, - 45.455861 - ], - [ - -73.466983, - 45.455757 - ], - [ - -73.466899, - 45.455728 - ], - [ - -73.466828, - 45.455703 - ], - [ - -73.466343, - 45.45551 - ], - [ - -73.466093, - 45.45541 - ], - [ - -73.465683, - 45.455224 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.463912, - 45.454506 - ], - [ - -73.463601, - 45.454377 - ], - [ - -73.46333, - 45.454265 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.461821, - 45.453584 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.459815, - 45.452691 - ], - [ - -73.45921, - 45.45241 - ], - [ - -73.45904, - 45.452331 - ], - [ - -73.458688, - 45.452137 - ], - [ - -73.458046, - 45.451791 - ], - [ - -73.457711, - 45.451596 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457438, - 45.451421 - ], - [ - -73.457131, - 45.451219 - ], - [ - -73.456851, - 45.451021 - ], - [ - -73.45659, - 45.450823 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456003, - 45.45033 - ], - [ - -73.455825, - 45.450179 - ], - [ - -73.455605, - 45.449994 - ], - [ - -73.455056, - 45.44954 - ], - [ - -73.454737, - 45.449301 - ], - [ - -73.454461, - 45.44912 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.453273, - 45.448481 - ], - [ - -73.451557, - 45.447603 - ], - [ - -73.45107, - 45.447354 - ], - [ - -73.45026, - 45.446936 - ], - [ - -73.449671, - 45.446636 - ], - [ - -73.449652, - 45.446626 - ], - [ - -73.449554, - 45.446569 - ], - [ - -73.449363, - 45.446456 - ], - [ - -73.447677, - 45.44551 - ], - [ - -73.447484, - 45.445387 - ], - [ - -73.447408, - 45.44534 - ], - [ - -73.447287, - 45.445263 - ], - [ - -73.447125, - 45.445146 - ], - [ - -73.446612, - 45.444764 - ], - [ - -73.445568, - 45.444021 - ], - [ - -73.444912, - 45.443533 - ], - [ - -73.444834, - 45.443475 - ], - [ - -73.444807, - 45.443457 - ], - [ - -73.442882, - 45.442105 - ], - [ - -73.442351, - 45.441732 - ], - [ - -73.442337, - 45.441722 - ], - [ - -73.442193, - 45.441589 - ], - [ - -73.442073, - 45.441479 - ], - [ - -73.441548, - 45.441133 - ], - [ - -73.4411, - 45.440787 - ], - [ - -73.440974, - 45.440696 - ], - [ - -73.440252, - 45.440176 - ], - [ - -73.439796, - 45.439844 - ], - [ - -73.439709, - 45.439781 - ], - [ - -73.439595, - 45.439843 - ], - [ - -73.438687, - 45.440529 - ], - [ - -73.438546, - 45.440636 - ], - [ - -73.437671, - 45.441298 - ], - [ - -73.437456, - 45.441451 - ], - [ - -73.437343, - 45.441531 - ], - [ - -73.437177, - 45.441649 - ], - [ - -73.437052, - 45.441737 - ], - [ - -73.435959, - 45.442526 - ], - [ - -73.435812, - 45.442662 - ], - [ - -73.435748, - 45.442792 - ], - [ - -73.43573, - 45.442883 - ], - [ - -73.435741, - 45.443026 - ], - [ - -73.43579, - 45.443164 - ], - [ - -73.435894, - 45.4433 - ], - [ - -73.4359, - 45.443306 - ], - [ - -73.436036, - 45.443456 - ], - [ - -73.436389, - 45.44372 - ] - ] - }, - "id": 41, - "properties": { - "id": "695460dd-b513-4f17-8f92-125d5bc353a4", - "data": { - "gtfs": { - "shape_id": "14_1_R" - }, - "segments": [ - { - "distanceMeters": 11453, - "travelTimeSeconds": 634 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 91, - "travelTimeSeconds": 5 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 119, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 327, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 347, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 465, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 415, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 121 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 192, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 19839, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11114.673998285822, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 10.33, - "travelTimeWithoutDwellTimesSeconds": 1920, - "operatingTimeWithLayoverTimeSeconds": 2112, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1920, - "operatingSpeedWithLayoverMetersPerSecond": 9.39, - "averageSpeedWithoutDwellTimesMetersPerSecond": 10.33 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "af7f8c95-5bbb-4774-8d27-80767d1525b7", - "a0c55e08-a29d-42c6-a917-251b8ca35935", - "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", - "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", - "a3a2d6d0-5008-4980-ba25-7b3a00feca26", - "81232cdf-e1d4-440c-91bd-cfdc85007144", - "3ebb53d0-1c64-4727-874b-d39ed1870cae", - "16a4cfe7-4b02-454a-8a07-9501f3c5e0c5", - "984def83-5f59-45f7-bb33-ed1dbca30502", - "1d56d4cb-0ab2-44f2-924d-aa119de8c362", - "ecb00316-793a-4c41-88bd-3870bea4d999", - "9a86a407-515f-4b5e-8a56-9a4c52c91c96", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "003bcf5e-54a8-471f-b008-b7fa64ff94ba", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "eee98f97-7434-4d16-88a6-93a424bc6846", - "4bbdfb79-c7dc-46c0-893b-48e38ccd2db0", - "70ace55a-2f3c-410b-8740-bea06ecb9924", - "71ffac32-604a-4260-b51e-c427856a20c4", - "f872f4da-bae9-485b-a2fb-ae01787389fc", - "f045bfca-885e-4fa6-be24-3e8f1855457a", - "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", - "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", - "ca62a640-5508-4ced-94a0-1f22107c57c9", - "8443a69f-fccf-4a19-8d08-6da77269e686", - "2946050b-73ca-45c7-be10-f80ba5b43ab5", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "ab493a3c-1217-4122-93b5-217f7741b2ea", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "2c6638eb-437e-4a41-bb5d-d6093797361d", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", - "d306b992-8d43-4ba8-8460-68d87b486222", - "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", - "88486643-e9da-4936-905d-86d1e3882217", - "c1bf220e-ad95-40e3-900b-3dda32780f07", - "fb79a3c6-17e7-4bc7-88f4-d17bcc5467ca", - "1336b6ed-25ac-4ba0-b4d2-c273e4f51d74" - ], - "stops": [], - "line_id": "f8d5bc3e-c2cb-43f2-b47c-e4f2b61a57bd", - "segments": [ - 0, - 185, - 199, - 201, - 203, - 206, - 209, - 216, - 226, - 231, - 235, - 239, - 244, - 253, - 264, - 267, - 270, - 280, - 286, - 292, - 296, - 301, - 310, - 318, - 324, - 327, - 338, - 345, - 348, - 351, - 355, - 363, - 367, - 373, - 379, - 384, - 388, - 399, - 403 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 41, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521071, - 45.523799 - ], - [ - -73.521073, - 45.52378 - ], - [ - -73.521082, - 45.523698 - ], - [ - -73.521077, - 45.523679 - ], - [ - -73.52106, - 45.523665 - ], - [ - -73.521034, - 45.523659 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519697, - 45.523247 - ], - [ - -73.519706, - 45.52323 - ], - [ - -73.519869, - 45.522907 - ], - [ - -73.520158, - 45.522337 - ], - [ - -73.520306, - 45.521899 - ], - [ - -73.520306, - 45.521896 - ], - [ - -73.520354, - 45.521696 - ], - [ - -73.520401, - 45.521498 - ], - [ - -73.520405, - 45.521373 - ], - [ - -73.520409, - 45.52119 - ], - [ - -73.520398, - 45.521025 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520191, - 45.520225 - ], - [ - -73.520123, - 45.519904 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518918, - 45.51665 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517659, - 45.513616 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517704, - 45.511772 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.517609, - 45.509409 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517232, - 45.507325 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517349, - 45.505746 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517545, - 45.504708 - ], - [ - -73.517624, - 45.504735 - ], - [ - -73.517927, - 45.504848 - ], - [ - -73.518275, - 45.504978 - ], - [ - -73.518448, - 45.505027 - ], - [ - -73.518565, - 45.505054 - ], - [ - -73.518612, - 45.505059 - ], - [ - -73.518688, - 45.505063 - ], - [ - -73.518724, - 45.505059 - ], - [ - -73.518804, - 45.505054 - ], - [ - -73.519306, - 45.504964 - ], - [ - -73.51887, - 45.504368 - ], - [ - -73.518589, - 45.503983 - ], - [ - -73.517824, - 45.502971 - ], - [ - -73.517656, - 45.502728 - ], - [ - -73.51758, - 45.502602 - ], - [ - -73.517384, - 45.502224 - ], - [ - -73.517279, - 45.50199 - ], - [ - -73.516505, - 45.500249 - ], - [ - -73.516141, - 45.499372 - ], - [ - -73.515797, - 45.498666 - ], - [ - -73.515557, - 45.498211 - ], - [ - -73.51531, - 45.49777 - ], - [ - -73.514841, - 45.496875 - ], - [ - -73.51473, - 45.496655 - ], - [ - -73.514567, - 45.49629 - ], - [ - -73.514302, - 45.495593 - ], - [ - -73.513809, - 45.494225 - ], - [ - -73.513621, - 45.493721 - ], - [ - -73.513407, - 45.493145 - ], - [ - -73.5133, - 45.492903 - ], - [ - -73.51308, - 45.492502 - ], - [ - -73.51286, - 45.492156 - ], - [ - -73.511495, - 45.490203 - ], - [ - -73.511236, - 45.489825 - ], - [ - -73.511116, - 45.489632 - ], - [ - -73.510976, - 45.489447 - ], - [ - -73.510614, - 45.488876 - ], - [ - -73.510385, - 45.488494 - ], - [ - -73.510073, - 45.487927 - ], - [ - -73.50999, - 45.487756 - ], - [ - -73.509875, - 45.487535 - ], - [ - -73.509493, - 45.486739 - ], - [ - -73.509244, - 45.486118 - ], - [ - -73.509089, - 45.4857 - ], - [ - -73.508873, - 45.485047 - ], - [ - -73.508687, - 45.484395 - ], - [ - -73.508246, - 45.482663 - ], - [ - -73.508076, - 45.482055 - ], - [ - -73.508003, - 45.481848 - ], - [ - -73.507918, - 45.481646 - ], - [ - -73.507721, - 45.48125 - ], - [ - -73.507674, - 45.481165 - ], - [ - -73.507613, - 45.481066 - ], - [ - -73.507347, - 45.480701 - ], - [ - -73.50705, - 45.48035 - ], - [ - -73.506701, - 45.479999 - ], - [ - -73.506328, - 45.479689 - ], - [ - -73.505671, - 45.47923 - ], - [ - -73.50361, - 45.477871 - ], - [ - -73.502677, - 45.477264 - ], - [ - -73.502438, - 45.477102 - ], - [ - -73.500934, - 45.476112 - ], - [ - -73.499736, - 45.475329 - ], - [ - -73.499265, - 45.474992 - ], - [ - -73.499141, - 45.474893 - ], - [ - -73.498849, - 45.474659 - ], - [ - -73.49864, - 45.47447 - ], - [ - -73.498285, - 45.474119 - ], - [ - -73.49796, - 45.473732 - ], - [ - -73.497681, - 45.473341 - ], - [ - -73.49744, - 45.47294 - ], - [ - -73.495877, - 45.470106 - ], - [ - -73.495567, - 45.469507 - ], - [ - -73.495383, - 45.469111 - ], - [ - -73.495133, - 45.468508 - ], - [ - -73.494442, - 45.46656 - ], - [ - -73.493602, - 45.464117 - ], - [ - -73.493334, - 45.463312 - ], - [ - -73.493217, - 45.462898 - ], - [ - -73.493134, - 45.46247 - ], - [ - -73.493103, - 45.462254 - ], - [ - -73.493063, - 45.461818 - ], - [ - -73.492886, - 45.459528 - ], - [ - -73.492848, - 45.459042 - ], - [ - -73.492796, - 45.458326 - ], - [ - -73.492575, - 45.455532 - ], - [ - -73.49251, - 45.453449 - ], - [ - -73.492502, - 45.453049 - ], - [ - -73.49252, - 45.452711 - ], - [ - -73.49266, - 45.451384 - ], - [ - -73.492704, - 45.451042 - ], - [ - -73.492747, - 45.45061 - ], - [ - -73.492783, - 45.450115 - ], - [ - -73.492889, - 45.449017 - ], - [ - -73.493051, - 45.449027 - ], - [ - -73.493259, - 45.449036 - ], - [ - -73.493359, - 45.44904 - ], - [ - -73.493538, - 45.449054 - ], - [ - -73.493666, - 45.449063 - ], - [ - -73.493761, - 45.449081 - ], - [ - -73.493851, - 45.449121 - ], - [ - -73.493949, - 45.449166 - ], - [ - -73.494018, - 45.449216 - ], - [ - -73.494109, - 45.449297 - ], - [ - -73.494201, - 45.4494 - ], - [ - -73.494247, - 45.449472 - ], - [ - -73.494296, - 45.449557 - ], - [ - -73.494313, - 45.449602 - ], - [ - -73.494327, - 45.449665 - ], - [ - -73.494374, - 45.450446 - ], - [ - -73.494417, - 45.451142 - ], - [ - -73.494424, - 45.451254 - ], - [ - -73.494474, - 45.452091 - ], - [ - -73.494479, - 45.452701 - ], - [ - -73.49448, - 45.452725 - ], - [ - -73.494478, - 45.452891 - ], - [ - -73.494465, - 45.45377 - ], - [ - -73.494454, - 45.45461 - ], - [ - -73.494465, - 45.454948 - ], - [ - -73.494518, - 45.455151 - ], - [ - -73.494524, - 45.455177 - ], - [ - -73.494622, - 45.45551 - ], - [ - -73.494635, - 45.455658 - ], - [ - -73.494605, - 45.455874 - ], - [ - -73.494534, - 45.456009 - ], - [ - -73.494391, - 45.456194 - ], - [ - -73.494017, - 45.456539 - ], - [ - -73.493865, - 45.45668 - ], - [ - -73.493654, - 45.456851 - ], - [ - -73.493562, - 45.456918 - ], - [ - -73.493458, - 45.456968 - ], - [ - -73.493388, - 45.456981 - ], - [ - -73.493324, - 45.45699 - ], - [ - -73.493169, - 45.456999 - ], - [ - -73.493073, - 45.457004 - ], - [ - -73.492597, - 45.457018 - ], - [ - -73.492361, - 45.457023 - ], - [ - -73.492185, - 45.457026 - ], - [ - -73.492061, - 45.457031 - ], - [ - -73.491825, - 45.457026 - ], - [ - -73.491366, - 45.457004 - ], - [ - -73.490045, - 45.456947 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.488779, - 45.456899 - ], - [ - -73.488212, - 45.456877 - ], - [ - -73.486564, - 45.456821 - ], - [ - -73.486364, - 45.456814 - ], - [ - -73.485148, - 45.456777 - ], - [ - -73.483698, - 45.456733 - ], - [ - -73.482955, - 45.456701 - ], - [ - -73.482756, - 45.456692 - ], - [ - -73.479792, - 45.456611 - ], - [ - -73.479622, - 45.456606 - ], - [ - -73.479632, - 45.456719 - ], - [ - -73.479678, - 45.457214 - ], - [ - -73.479701, - 45.457465 - ], - [ - -73.47972, - 45.457668 - ], - [ - -73.479747, - 45.458082 - ], - [ - -73.479754, - 45.45832 - ], - [ - -73.479732, - 45.458469 - ], - [ - -73.479695, - 45.458689 - ], - [ - -73.479603, - 45.459 - ], - [ - -73.479545, - 45.459171 - ], - [ - -73.479531, - 45.459201 - ], - [ - -73.479465, - 45.459342 - ], - [ - -73.479339, - 45.459576 - ], - [ - -73.479253, - 45.45972 - ], - [ - -73.479162, - 45.45985 - ], - [ - -73.478872, - 45.460205 - ], - [ - -73.478751, - 45.460331 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.47855, - 45.461011 - ], - [ - -73.478678, - 45.461105 - ], - [ - -73.478828, - 45.461282 - ], - [ - -73.478983, - 45.461465 - ], - [ - -73.479274, - 45.461807 - ], - [ - -73.479696, - 45.462311 - ], - [ - -73.480306, - 45.46304 - ], - [ - -73.480932, - 45.463792 - ], - [ - -73.481341, - 45.464281 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.480952, - 45.464593 - ], - [ - -73.480652, - 45.464687 - ], - [ - -73.480572, - 45.464706 - ], - [ - -73.480287, - 45.464772 - ], - [ - -73.479951, - 45.464831 - ], - [ - -73.479651, - 45.464862 - ], - [ - -73.479281, - 45.464889 - ], - [ - -73.478969, - 45.464889 - ], - [ - -73.47876, - 45.464882 - ], - [ - -73.478688, - 45.464879 - ], - [ - -73.476229, - 45.46479 - ], - [ - -73.475061, - 45.464753 - ], - [ - -73.474661, - 45.464744 - ], - [ - -73.474508, - 45.464734 - ], - [ - -73.474318, - 45.464724 - ], - [ - -73.474168, - 45.464717 - ], - [ - -73.473949, - 45.464699 - ], - [ - -73.473705, - 45.464641 - ], - [ - -73.473499, - 45.464573 - ], - [ - -73.473207, - 45.464434 - ], - [ - -73.473049, - 45.464333 - ], - [ - -73.472811, - 45.464181 - ], - [ - -73.472107, - 45.4637 - ], - [ - -73.471841, - 45.463592 - ], - [ - -73.471726, - 45.463574 - ], - [ - -73.471666, - 45.463565 - ], - [ - -73.471494, - 45.463556 - ], - [ - -73.471257, - 45.463547 - ], - [ - -73.470687, - 45.463533 - ], - [ - -73.469219, - 45.463483 - ], - [ - -73.468972, - 45.463474 - ], - [ - -73.468884, - 45.463461 - ], - [ - -73.468833, - 45.46342 - ], - [ - -73.468836, - 45.463308 - ], - [ - -73.468837, - 45.463254 - ], - [ - -73.468876, - 45.462738 - ], - [ - -73.46897, - 45.46149 - ], - [ - -73.46901, - 45.460865 - ], - [ - -73.469027, - 45.460639 - ], - [ - -73.469045, - 45.460397 - ], - [ - -73.469046, - 45.459978 - ], - [ - -73.46901, - 45.459861 - ], - [ - -73.468938, - 45.459704 - ], - [ - -73.468742, - 45.459506 - ], - [ - -73.468425, - 45.459258 - ], - [ - -73.468212, - 45.459096 - ], - [ - -73.468189, - 45.459071 - ], - [ - -73.468056, - 45.45893 - ], - [ - -73.467979, - 45.458754 - ], - [ - -73.467956, - 45.458669 - ], - [ - -73.467971, - 45.458525 - ], - [ - -73.467975, - 45.458309 - ], - [ - -73.467988, - 45.458238 - ], - [ - -73.468021, - 45.458057 - ], - [ - -73.468109, - 45.457211 - ], - [ - -73.468141, - 45.457038 - ], - [ - -73.468147, - 45.457005 - ], - [ - -73.468158, - 45.456945 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468443, - 45.456109 - ], - [ - -73.467856, - 45.455996 - ], - [ - -73.467523, - 45.455919 - ], - [ - -73.467299, - 45.455861 - ], - [ - -73.466983, - 45.455757 - ], - [ - -73.466899, - 45.455728 - ], - [ - -73.466828, - 45.455703 - ], - [ - -73.466341, - 45.455509 - ], - [ - -73.466093, - 45.45541 - ], - [ - -73.465683, - 45.455224 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.463912, - 45.454506 - ], - [ - -73.463601, - 45.454377 - ], - [ - -73.463328, - 45.454264 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.46183, - 45.453588 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.459815, - 45.452691 - ], - [ - -73.459209, - 45.452409 - ], - [ - -73.45904, - 45.452331 - ], - [ - -73.458688, - 45.452137 - ], - [ - -73.458046, - 45.451791 - ], - [ - -73.457709, - 45.451595 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457438, - 45.451421 - ], - [ - -73.457131, - 45.451219 - ], - [ - -73.456851, - 45.451021 - ], - [ - -73.45659, - 45.450823 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456003, - 45.45033 - ], - [ - -73.455832, - 45.450185 - ], - [ - -73.455605, - 45.449994 - ], - [ - -73.455056, - 45.44954 - ], - [ - -73.454737, - 45.449301 - ], - [ - -73.45446, - 45.449119 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.453273, - 45.448481 - ], - [ - -73.451557, - 45.447603 - ], - [ - -73.45107, - 45.447354 - ], - [ - -73.45026, - 45.446936 - ], - [ - -73.44968, - 45.44664 - ], - [ - -73.449652, - 45.446626 - ], - [ - -73.449554, - 45.446569 - ], - [ - -73.449363, - 45.446456 - ], - [ - -73.447677, - 45.44551 - ], - [ - -73.447484, - 45.445387 - ], - [ - -73.447417, - 45.445345 - ], - [ - -73.447287, - 45.445263 - ], - [ - -73.447125, - 45.445146 - ], - [ - -73.446612, - 45.444764 - ], - [ - -73.445568, - 45.444021 - ], - [ - -73.444911, - 45.443532 - ], - [ - -73.444834, - 45.443475 - ], - [ - -73.444807, - 45.443457 - ], - [ - -73.442882, - 45.442105 - ], - [ - -73.44235, - 45.441731 - ], - [ - -73.442337, - 45.441722 - ], - [ - -73.442193, - 45.441589 - ], - [ - -73.442073, - 45.441479 - ], - [ - -73.441548, - 45.441133 - ], - [ - -73.4411, - 45.440787 - ], - [ - -73.440974, - 45.440696 - ], - [ - -73.440252, - 45.440176 - ], - [ - -73.439796, - 45.439844 - ], - [ - -73.439709, - 45.439781 - ], - [ - -73.439595, - 45.439843 - ], - [ - -73.438696, - 45.440523 - ], - [ - -73.438546, - 45.440636 - ], - [ - -73.437671, - 45.441298 - ], - [ - -73.437456, - 45.441451 - ], - [ - -73.437343, - 45.441531 - ], - [ - -73.437177, - 45.441649 - ], - [ - -73.437052, - 45.441737 - ], - [ - -73.435959, - 45.442526 - ], - [ - -73.435812, - 45.442662 - ], - [ - -73.435748, - 45.442792 - ], - [ - -73.43573, - 45.442883 - ], - [ - -73.435741, - 45.443026 - ], - [ - -73.43579, - 45.443164 - ], - [ - -73.435894, - 45.4433 - ], - [ - -73.4359, - 45.443306 - ], - [ - -73.436036, - 45.443456 - ], - [ - -73.436389, - 45.44372 - ] - ] - }, - "id": 42, - "properties": { - "id": "017b4356-7984-4ee4-9e83-94a213bec3c0", - "data": { - "gtfs": { - "shape_id": "14_2_R" - }, - "segments": [ - { - "distanceMeters": 551, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 7042, - "travelTimeSeconds": 394 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 90, - "travelTimeSeconds": 5 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 119, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 328, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 347, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 464, - "travelTimeSeconds": 88 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 414, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 121 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 222, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17592, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11114.673998285822, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.92, - "travelTimeWithoutDwellTimesSeconds": 2220, - "operatingTimeWithLayoverTimeSeconds": 2442, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2220, - "operatingSpeedWithLayoverMetersPerSecond": 7.2, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.92 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "af7f8c95-5bbb-4774-8d27-80767d1525b7", - "a0c55e08-a29d-42c6-a917-251b8ca35935", - "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", - "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", - "a3a2d6d0-5008-4980-ba25-7b3a00feca26", - "81232cdf-e1d4-440c-91bd-cfdc85007144", - "3ebb53d0-1c64-4727-874b-d39ed1870cae", - "16a4cfe7-4b02-454a-8a07-9501f3c5e0c5", - "984def83-5f59-45f7-bb33-ed1dbca30502", - "1d56d4cb-0ab2-44f2-924d-aa119de8c362", - "ecb00316-793a-4c41-88bd-3870bea4d999", - "9a86a407-515f-4b5e-8a56-9a4c52c91c96", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "003bcf5e-54a8-471f-b008-b7fa64ff94ba", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "eee98f97-7434-4d16-88a6-93a424bc6846", - "4bbdfb79-c7dc-46c0-893b-48e38ccd2db0", - "70ace55a-2f3c-410b-8740-bea06ecb9924", - "71ffac32-604a-4260-b51e-c427856a20c4", - "f872f4da-bae9-485b-a2fb-ae01787389fc", - "f045bfca-885e-4fa6-be24-3e8f1855457a", - "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", - "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", - "ca62a640-5508-4ced-94a0-1f22107c57c9", - "8443a69f-fccf-4a19-8d08-6da77269e686", - "2946050b-73ca-45c7-be10-f80ba5b43ab5", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "ab493a3c-1217-4122-93b5-217f7741b2ea", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "2c6638eb-437e-4a41-bb5d-d6093797361d", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", - "d306b992-8d43-4ba8-8460-68d87b486222", - "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", - "88486643-e9da-4936-905d-86d1e3882217", - "c1bf220e-ad95-40e3-900b-3dda32780f07", - "fb79a3c6-17e7-4bc7-88f4-d17bcc5467ca", - "1336b6ed-25ac-4ba0-b4d2-c273e4f51d74" - ], - "stops": [], - "line_id": "f8d5bc3e-c2cb-43f2-b47c-e4f2b61a57bd", - "segments": [ - 0, - 27, - 37, - 48, - 54, - 61, - 67, - 72, - 172, - 186, - 188, - 190, - 193, - 196, - 203, - 213, - 218, - 222, - 226, - 231, - 240, - 251, - 254, - 257, - 267, - 273, - 279, - 283, - 288, - 297, - 305, - 311, - 314, - 325, - 332, - 335, - 338, - 342, - 350, - 354, - 360, - 366, - 371, - 375, - 386, - 390 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 42, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.436389, - 45.44372 - ], - [ - -73.436575, - 45.443858 - ], - [ - -73.436661, - 45.443921 - ], - [ - -73.436662, - 45.443922 - ], - [ - -73.437463, - 45.444543 - ], - [ - -73.437838, - 45.444826 - ], - [ - -73.437964, - 45.444933 - ], - [ - -73.438029, - 45.444985 - ], - [ - -73.438094, - 45.445037 - ], - [ - -73.438227, - 45.444954 - ], - [ - -73.438235, - 45.444948 - ], - [ - -73.438338, - 45.444864 - ], - [ - -73.438656, - 45.444631 - ], - [ - -73.438851, - 45.444488 - ], - [ - -73.439723, - 45.443742 - ], - [ - -73.439845, - 45.443642 - ], - [ - -73.439975, - 45.443534 - ], - [ - -73.440539, - 45.443068 - ], - [ - -73.441274, - 45.442431 - ], - [ - -73.441943, - 45.441851 - ], - [ - -73.442064, - 45.44172 - ], - [ - -73.442173, - 45.441795 - ], - [ - -73.4445, - 45.443463 - ], - [ - -73.444646, - 45.443567 - ], - [ - -73.444814, - 45.443691 - ], - [ - -73.445792, - 45.44439 - ], - [ - -73.445916, - 45.444479 - ], - [ - -73.447004, - 45.445252 - ], - [ - -73.447144, - 45.445352 - ], - [ - -73.44736, - 45.4455 - ], - [ - -73.447729, - 45.445718 - ], - [ - -73.448087, - 45.44592 - ], - [ - -73.449212, - 45.44655 - ], - [ - -73.449266, - 45.44658 - ], - [ - -73.4494, - 45.446659 - ], - [ - -73.449563, - 45.446742 - ], - [ - -73.450068, - 45.447011 - ], - [ - -73.450448, - 45.447201 - ], - [ - -73.451097, - 45.447517 - ], - [ - -73.4522, - 45.448094 - ], - [ - -73.452476, - 45.448237 - ], - [ - -73.453807, - 45.448921 - ], - [ - -73.454021, - 45.449073 - ], - [ - -73.454088, - 45.449121 - ], - [ - -73.454556, - 45.449427 - ], - [ - -73.454813, - 45.449622 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.455393, - 45.45012 - ], - [ - -73.456061, - 45.45066 - ], - [ - -73.456286, - 45.450829 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.457159, - 45.451452 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457924, - 45.451894 - ], - [ - -73.458487, - 45.4522 - ], - [ - -73.458741, - 45.452336 - ], - [ - -73.458941, - 45.452443 - ], - [ - -73.459713, - 45.452799 - ], - [ - -73.461255, - 45.453482 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.462931, - 45.454228 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463822, - 45.454609 - ], - [ - -73.464915, - 45.455071 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465851, - 45.455474 - ], - [ - -73.466482, - 45.45573 - ], - [ - -73.466742, - 45.45582 - ], - [ - -73.466794, - 45.455838 - ], - [ - -73.466905, - 45.455874 - ], - [ - -73.467229, - 45.455978 - ], - [ - -73.467462, - 45.456041 - ], - [ - -73.467802, - 45.456122 - ], - [ - -73.468166, - 45.456191 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468158, - 45.456945 - ], - [ - -73.468147, - 45.457005 - ], - [ - -73.46811, - 45.457204 - ], - [ - -73.468109, - 45.457211 - ], - [ - -73.468043, - 45.457847 - ], - [ - -73.468021, - 45.458057 - ], - [ - -73.467975, - 45.458309 - ], - [ - -73.467971, - 45.458525 - ], - [ - -73.467956, - 45.458669 - ], - [ - -73.467979, - 45.458754 - ], - [ - -73.468056, - 45.45893 - ], - [ - -73.468057, - 45.458931 - ], - [ - -73.468212, - 45.459096 - ], - [ - -73.468425, - 45.459258 - ], - [ - -73.468742, - 45.459506 - ], - [ - -73.468938, - 45.459704 - ], - [ - -73.46901, - 45.459861 - ], - [ - -73.469046, - 45.459978 - ], - [ - -73.469045, - 45.460397 - ], - [ - -73.469023, - 45.460696 - ], - [ - -73.46901, - 45.460865 - ], - [ - -73.46897, - 45.46149 - ], - [ - -73.468876, - 45.462738 - ], - [ - -73.468837, - 45.463254 - ], - [ - -73.468833, - 45.46342 - ], - [ - -73.468847, - 45.463431 - ], - [ - -73.468884, - 45.463461 - ], - [ - -73.468972, - 45.463474 - ], - [ - -73.470687, - 45.463533 - ], - [ - -73.471257, - 45.463547 - ], - [ - -73.471494, - 45.463556 - ], - [ - -73.47154, - 45.463558 - ], - [ - -73.471666, - 45.463565 - ], - [ - -73.471841, - 45.463592 - ], - [ - -73.472107, - 45.4637 - ], - [ - -73.472787, - 45.464165 - ], - [ - -73.472811, - 45.464181 - ], - [ - -73.473207, - 45.464434 - ], - [ - -73.473437, - 45.464543 - ], - [ - -73.473499, - 45.464573 - ], - [ - -73.473705, - 45.464641 - ], - [ - -73.473949, - 45.464699 - ], - [ - -73.474168, - 45.464717 - ], - [ - -73.474508, - 45.464734 - ], - [ - -73.474661, - 45.464744 - ], - [ - -73.47482, - 45.464747 - ], - [ - -73.475061, - 45.464753 - ], - [ - -73.476229, - 45.46479 - ], - [ - -73.478187, - 45.464861 - ], - [ - -73.478688, - 45.464879 - ], - [ - -73.478969, - 45.464889 - ], - [ - -73.479281, - 45.464889 - ], - [ - -73.479651, - 45.464862 - ], - [ - -73.479951, - 45.464831 - ], - [ - -73.480287, - 45.464772 - ], - [ - -73.480652, - 45.464687 - ], - [ - -73.480952, - 45.464593 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.48121, - 45.464124 - ], - [ - -73.481015, - 45.463891 - ], - [ - -73.480932, - 45.463792 - ], - [ - -73.480306, - 45.46304 - ], - [ - -73.479935, - 45.462596 - ], - [ - -73.479274, - 45.461807 - ], - [ - -73.478983, - 45.461465 - ], - [ - -73.478678, - 45.461105 - ], - [ - -73.47855, - 45.461011 - ], - [ - -73.478409, - 45.460885 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.47888, - 45.460399 - ], - [ - -73.479008, - 45.460264 - ], - [ - -73.479302, - 45.459904 - ], - [ - -73.479398, - 45.459769 - ], - [ - -73.479488, - 45.459616 - ], - [ - -73.479616, - 45.459382 - ], - [ - -73.479659, - 45.459288 - ], - [ - -73.479699, - 45.459202 - ], - [ - -73.47976, - 45.459027 - ], - [ - -73.479776, - 45.458968 - ], - [ - -73.479808, - 45.458865 - ], - [ - -73.479852, - 45.458707 - ], - [ - -73.479891, - 45.458478 - ], - [ - -73.479913, - 45.458325 - ], - [ - -73.479923, - 45.458145 - ], - [ - -73.479926, - 45.458073 - ], - [ - -73.479893, - 45.457659 - ], - [ - -73.479817, - 45.456873 - ], - [ - -73.479803, - 45.456723 - ], - [ - -73.480102, - 45.456735 - ], - [ - -73.482685, - 45.456834 - ], - [ - -73.482746, - 45.456836 - ], - [ - -73.483692, - 45.456872 - ], - [ - -73.485139, - 45.456916 - ], - [ - -73.486346, - 45.456953 - ], - [ - -73.48636, - 45.456954 - ], - [ - -73.488203, - 45.457017 - ], - [ - -73.489622, - 45.457066 - ], - [ - -73.489765, - 45.457071 - ], - [ - -73.491355, - 45.457125 - ], - [ - -73.491594, - 45.457127 - ], - [ - -73.491916, - 45.45713 - ], - [ - -73.492063, - 45.457125 - ], - [ - -73.492191, - 45.457112 - ], - [ - -73.492207, - 45.457328 - ], - [ - -73.492457, - 45.459795 - ], - [ - -73.492461, - 45.459829 - ], - [ - -73.492544, - 45.460635 - ], - [ - -73.492615, - 45.461161 - ], - [ - -73.49267, - 45.461326 - ], - [ - -73.492685, - 45.461574 - ], - [ - -73.492688, - 45.461621 - ], - [ - -73.492727, - 45.462259 - ], - [ - -73.492801, - 45.462695 - ], - [ - -73.492839, - 45.462871 - ], - [ - -73.492913, - 45.463213 - ], - [ - -73.492982, - 45.463447 - ], - [ - -73.493216, - 45.464207 - ], - [ - -73.493833, - 45.466097 - ], - [ - -73.493922, - 45.46638 - ], - [ - -73.494209, - 45.467172 - ], - [ - -73.494809, - 45.468733 - ], - [ - -73.495076, - 45.469359 - ], - [ - -73.495234, - 45.469683 - ], - [ - -73.495362, - 45.469939 - ], - [ - -73.495491, - 45.470173 - ], - [ - -73.49554, - 45.470262 - ], - [ - -73.495895, - 45.470906 - ], - [ - -73.495967, - 45.471037 - ], - [ - -73.496018, - 45.471127 - ], - [ - -73.496235, - 45.471478 - ], - [ - -73.496323, - 45.471617 - ], - [ - -73.496799, - 45.472387 - ], - [ - -73.497277, - 45.473188 - ], - [ - -73.497508, - 45.473543 - ], - [ - -73.497684, - 45.473744 - ], - [ - -73.49797, - 45.473998 - ], - [ - -73.497971, - 45.473998 - ], - [ - -73.498154, - 45.474204 - ], - [ - -73.498345, - 45.474398 - ], - [ - -73.498759, - 45.474776 - ], - [ - -73.498981, - 45.474956 - ], - [ - -73.499212, - 45.475131 - ], - [ - -73.499453, - 45.475307 - ], - [ - -73.502533, - 45.47734 - ], - [ - -73.504857, - 45.478866 - ], - [ - -73.505913, - 45.479567 - ], - [ - -73.50636, - 45.479923 - ], - [ - -73.506669, - 45.480206 - ], - [ - -73.506703, - 45.480242 - ], - [ - -73.507146, - 45.480733 - ], - [ - -73.507302, - 45.480949 - ], - [ - -73.507442, - 45.481165 - ], - [ - -73.507569, - 45.481381 - ], - [ - -73.507678, - 45.48161 - ], - [ - -73.507857, - 45.482069 - ], - [ - -73.507995, - 45.482559 - ], - [ - -73.508478, - 45.484485 - ], - [ - -73.508692, - 45.485218 - ], - [ - -73.508857, - 45.485709 - ], - [ - -73.509037, - 45.486199 - ], - [ - -73.509236, - 45.486685 - ], - [ - -73.509454, - 45.487171 - ], - [ - -73.509688, - 45.487657 - ], - [ - -73.509939, - 45.488138 - ], - [ - -73.510206, - 45.488624 - ], - [ - -73.510497, - 45.489096 - ], - [ - -73.510511, - 45.489119 - ], - [ - -73.510962, - 45.489803 - ], - [ - -73.512569, - 45.492115 - ], - [ - -73.512867, - 45.49257 - ], - [ - -73.513116, - 45.493024 - ], - [ - -73.513214, - 45.493253 - ], - [ - -73.513607, - 45.494261 - ], - [ - -73.514156, - 45.495746 - ], - [ - -73.514429, - 45.49643 - ], - [ - -73.514695, - 45.496974 - ], - [ - -73.515628, - 45.498702 - ], - [ - -73.515861, - 45.49917 - ], - [ - -73.516166, - 45.499876 - ], - [ - -73.516897, - 45.501748 - ], - [ - -73.516988, - 45.501968 - ], - [ - -73.517047, - 45.502229 - ], - [ - -73.517143, - 45.50249 - ], - [ - -73.517343, - 45.502967 - ], - [ - -73.517473, - 45.503214 - ], - [ - -73.517796, - 45.503754 - ], - [ - -73.517946, - 45.503994 - ], - [ - -73.518322, - 45.504595 - ], - [ - -73.518382, - 45.504726 - ], - [ - -73.518393, - 45.504775 - ], - [ - -73.518381, - 45.504829 - ], - [ - -73.518359, - 45.504861 - ], - [ - -73.518298, - 45.504892 - ], - [ - -73.518253, - 45.504897 - ], - [ - -73.518142, - 45.504882 - ], - [ - -73.517927, - 45.504848 - ], - [ - -73.517624, - 45.504735 - ], - [ - -73.517545, - 45.504708 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517478, - 45.505047 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517438, - 45.505259 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517233, - 45.507275 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517558, - 45.509209 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517798, - 45.511422 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517596, - 45.513244 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518264, - 45.51531 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518973, - 45.516744 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520113, - 45.519727 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520194, - 45.520238 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520014, - 45.523393 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.521017, - 45.523892 - ], - [ - -73.521053, - 45.523883 - ], - [ - -73.521061, - 45.523869 - ], - [ - -73.521065, - 45.523851 - ], - [ - -73.521071, - 45.523799 - ] - ] - }, - "id": 43, - "properties": { - "id": "9b6f3618-d0d2-4537-a6ae-a840f5a11ace", - "data": { - "gtfs": { - "shape_id": "14_2_A" - }, - "segments": [ - { - "distanceMeters": 261, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 469, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 87, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 5459, - "travelTimeSeconds": 437 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 348, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 605, - "travelTimeSeconds": 113 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 204, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 15313, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11114.673998285822, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.51, - "travelTimeWithoutDwellTimesSeconds": 2040, - "operatingTimeWithLayoverTimeSeconds": 2244, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2040, - "operatingSpeedWithLayoverMetersPerSecond": 6.82, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.51 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "1336b6ed-25ac-4ba0-b4d2-c273e4f51d74", - "9a91df5e-7976-4b04-a1ed-26fb34f4f58f", - "936850f5-3268-43bc-97bf-4daf0894fdc7", - "00c8e0cb-91d0-48ff-97f2-5154a17a68bc", - "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", - "d306b992-8d43-4ba8-8460-68d87b486222", - "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", - "b5853393-4072-4255-b507-e9c4b6659c5b", - "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", - "2ac07b96-98be-4710-a749-3162a661fcb5", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "981ebecb-3dc2-4439-8648-8052a51df7ec", - "2a268094-fe95-4a75-83da-d02aa638cbb6", - "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", - "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", - "ef880d61-7a9a-4504-a9a1-27967a52e95d", - "f872f4da-bae9-485b-a2fb-ae01787389fc", - "71ffac32-604a-4260-b51e-c427856a20c4", - "70ace55a-2f3c-410b-8740-bea06ecb9924", - "5a01eede-d090-4bda-988f-792a987bafc2", - "eee98f97-7434-4d16-88a6-93a424bc6846", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "003bcf5e-54a8-471f-b008-b7fa64ff94ba", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", - "ecb00316-793a-4c41-88bd-3870bea4d999", - "1d56d4cb-0ab2-44f2-924d-aa119de8c362", - "2f68c8b3-ace6-41af-8853-d72177e835fd", - "69fd316d-244b-48fa-871d-645ac04399fc", - "8e7df7c5-fbe3-41d1-a80a-c492814328ef", - "bb980dda-615f-4aa9-85c9-d336582cf2ed", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "2259b112-2e60-4bcc-ad14-9e0e577f2909", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "f8d5bc3e-c2cb-43f2-b47c-e4f2b61a57bd", - "segments": [ - 0, - 12, - 15, - 18, - 22, - 27, - 32, - 42, - 45, - 51, - 56, - 59, - 61, - 64, - 75, - 81, - 88, - 96, - 102, - 108, - 112, - 122, - 125, - 135, - 139, - 144, - 152, - 163, - 166, - 170, - 173, - 176, - 181, - 186, - 278, - 284, - 289, - 295, - 301, - 309, - 316, - 324 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 43, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469107, - 45.46587 - ], - [ - -73.469152, - 45.465801 - ], - [ - -73.469114, - 45.465711 - ], - [ - -73.469034, - 45.465669 - ], - [ - -73.468913, - 45.46567 - ], - [ - -73.468751, - 45.465752 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469327, - 45.468092 - ], - [ - -73.469492, - 45.4681 - ], - [ - -73.470299, - 45.468145 - ], - [ - -73.471061, - 45.468181 - ], - [ - -73.471238, - 45.46819 - ], - [ - -73.471526, - 45.468208 - ], - [ - -73.472194, - 45.468244 - ], - [ - -73.472441, - 45.468255 - ], - [ - -73.472597, - 45.468262 - ], - [ - -73.472728, - 45.468276 - ], - [ - -73.472834, - 45.468294 - ], - [ - -73.472877, - 45.468307 - ], - [ - -73.473025, - 45.468348 - ], - [ - -73.473214, - 45.468424 - ], - [ - -73.473671, - 45.468604 - ], - [ - -73.473673, - 45.468604 - ], - [ - -73.473905, - 45.468649 - ], - [ - -73.474077, - 45.468676 - ], - [ - -73.474259, - 45.46869 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474366, - 45.468873 - ], - [ - -73.474292, - 45.469387 - ], - [ - -73.474256, - 45.469576 - ], - [ - -73.474234, - 45.469689 - ], - [ - -73.474156, - 45.470095 - ], - [ - -73.474035, - 45.470724 - ], - [ - -73.473974, - 45.47107 - ], - [ - -73.473942, - 45.471336 - ], - [ - -73.473932, - 45.471601 - ], - [ - -73.473939, - 45.4717 - ], - [ - -73.473947, - 45.471826 - ], - [ - -73.473986, - 45.472118 - ], - [ - -73.473998, - 45.472177 - ], - [ - -73.474046, - 45.47242 - ], - [ - -73.474106, - 45.47264 - ], - [ - -73.474275, - 45.473063 - ], - [ - -73.474463, - 45.473437 - ], - [ - -73.474014, - 45.473579 - ], - [ - -73.474007, - 45.473581 - ], - [ - -73.473846, - 45.473648 - ], - [ - -73.473736, - 45.473702 - ], - [ - -73.473545, - 45.473797 - ], - [ - -73.473464, - 45.473842 - ], - [ - -73.473457, - 45.473846 - ], - [ - -73.473334, - 45.473927 - ], - [ - -73.473141, - 45.474053 - ], - [ - -73.472074, - 45.474808 - ], - [ - -73.471919, - 45.474907 - ], - [ - -73.472018, - 45.474979 - ], - [ - -73.47234, - 45.475227 - ], - [ - -73.472632, - 45.475434 - ], - [ - -73.473157, - 45.475808 - ], - [ - -73.473415, - 45.476001 - ], - [ - -73.473847, - 45.47631 - ], - [ - -73.475018, - 45.477149 - ], - [ - -73.475717, - 45.477643 - ], - [ - -73.476119, - 45.477927 - ], - [ - -73.475478, - 45.478344 - ], - [ - -73.475372, - 45.478413 - ], - [ - -73.474534, - 45.478927 - ], - [ - -73.474461, - 45.478971 - ], - [ - -73.474157, - 45.479169 - ], - [ - -73.47284, - 45.480068 - ], - [ - -73.472485, - 45.480311 - ], - [ - -73.472246, - 45.480474 - ], - [ - -73.472135, - 45.48055 - ], - [ - -73.472029, - 45.480487 - ], - [ - -73.471904, - 45.480419 - ], - [ - -73.471804, - 45.480383 - ], - [ - -73.471671, - 45.48036 - ], - [ - -73.471568, - 45.480347 - ], - [ - -73.47151, - 45.480342 - ], - [ - -73.471409, - 45.480342 - ], - [ - -73.471292, - 45.480347 - ], - [ - -73.470657, - 45.480464 - ], - [ - -73.470383, - 45.480513 - ], - [ - -73.470287, - 45.480532 - ], - [ - -73.470068, - 45.480576 - ], - [ - -73.469901, - 45.480606 - ], - [ - -73.469898, - 45.480606 - ], - [ - -73.469791, - 45.480625 - ], - [ - -73.470101, - 45.481279 - ], - [ - -73.470149, - 45.481381 - ], - [ - -73.470239, - 45.481512 - ], - [ - -73.470516, - 45.481755 - ], - [ - -73.470609, - 45.481836 - ], - [ - -73.470742, - 45.481922 - ], - [ - -73.470805, - 45.481962 - ], - [ - -73.47134, - 45.482367 - ], - [ - -73.471834, - 45.482727 - ], - [ - -73.472033, - 45.482872 - ], - [ - -73.472845, - 45.483462 - ], - [ - -73.472948, - 45.483537 - ], - [ - -73.473747, - 45.484113 - ], - [ - -73.474477, - 45.484643 - ], - [ - -73.474566, - 45.484707 - ], - [ - -73.474818, - 45.484892 - ], - [ - -73.475135, - 45.485121 - ], - [ - -73.475481, - 45.485369 - ], - [ - -73.475662, - 45.485503 - ], - [ - -73.475956, - 45.48572 - ], - [ - -73.475583, - 45.485981 - ], - [ - -73.475157, - 45.486287 - ], - [ - -73.475578, - 45.486575 - ], - [ - -73.475843, - 45.486758 - ], - [ - -73.475994, - 45.486863 - ], - [ - -73.475863, - 45.486966 - ], - [ - -73.475741, - 45.487061 - ], - [ - -73.475345, - 45.487344 - ], - [ - -73.475065, - 45.487542 - ], - [ - -73.475389, - 45.487764 - ], - [ - -73.475411, - 45.487779 - ], - [ - -73.475597, - 45.487907 - ], - [ - -73.47601, - 45.48819 - ], - [ - -73.476259, - 45.488424 - ], - [ - -73.476492, - 45.488586 - ], - [ - -73.476696, - 45.48846 - ], - [ - -73.47671, - 45.488453 - ], - [ - -73.476789, - 45.488411 - ], - [ - -73.478723, - 45.489788 - ], - [ - -73.479093, - 45.490052 - ], - [ - -73.479214, - 45.490139 - ], - [ - -73.481409, - 45.491696 - ], - [ - -73.481426, - 45.491708 - ], - [ - -73.481545, - 45.491786 - ], - [ - -73.481575, - 45.491826 - ], - [ - -73.481586, - 45.49184 - ], - [ - -73.481557, - 45.491867 - ], - [ - -73.481502, - 45.491907 - ], - [ - -73.481312, - 45.492051 - ], - [ - -73.481761, - 45.492348 - ], - [ - -73.482051, - 45.492539 - ], - [ - -73.483914, - 45.493767 - ], - [ - -73.483989, - 45.493816 - ], - [ - -73.48407, - 45.49387 - ], - [ - -73.484957, - 45.493231 - ], - [ - -73.485998, - 45.492497 - ], - [ - -73.486068, - 45.492448 - ], - [ - -73.486525, - 45.49212 - ], - [ - -73.486777, - 45.49194 - ], - [ - -73.486792, - 45.491931 - ], - [ - -73.487065, - 45.491769 - ], - [ - -73.487273, - 45.491639 - ], - [ - -73.487383, - 45.491571 - ], - [ - -73.48867, - 45.490802 - ], - [ - -73.489386, - 45.49037 - ], - [ - -73.489454, - 45.490329 - ], - [ - -73.49048, - 45.489717 - ], - [ - -73.491254, - 45.489248 - ], - [ - -73.491548, - 45.48907 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.492138, - 45.488647 - ], - [ - -73.492246, - 45.488512 - ], - [ - -73.492413, - 45.48862 - ], - [ - -73.492658, - 45.488782 - ], - [ - -73.492831, - 45.488903 - ], - [ - -73.492998, - 45.489022 - ], - [ - -73.493002, - 45.489025 - ], - [ - -73.493685, - 45.489511 - ], - [ - -73.494044, - 45.489767 - ], - [ - -73.494298, - 45.489953 - ], - [ - -73.494463, - 45.490073 - ], - [ - -73.495016, - 45.490456 - ], - [ - -73.495224, - 45.490582 - ], - [ - -73.495457, - 45.490703 - ], - [ - -73.495685, - 45.490802 - ], - [ - -73.495827, - 45.490838 - ], - [ - -73.495853, - 45.490841 - ], - [ - -73.495938, - 45.490852 - ], - [ - -73.496542, - 45.490861 - ], - [ - -73.497071, - 45.49087 - ], - [ - -73.497636, - 45.490865 - ], - [ - -73.49822, - 45.490861 - ], - [ - -73.49837, - 45.490865 - ], - [ - -73.498703, - 45.49087 - ], - [ - -73.499004, - 45.49088 - ], - [ - -73.499099, - 45.490883 - ], - [ - -73.499523, - 45.490883 - ], - [ - -73.500019, - 45.490892 - ], - [ - -73.500399, - 45.490897 - ], - [ - -73.500799, - 45.4909 - ], - [ - -73.500934, - 45.490901 - ], - [ - -73.501389, - 45.49091 - ], - [ - -73.502611, - 45.490928 - ], - [ - -73.502759, - 45.49091 - ], - [ - -73.502923, - 45.490879 - ], - [ - -73.503314, - 45.490753 - ], - [ - -73.503637, - 45.490636 - ], - [ - -73.503868, - 45.49055 - ], - [ - -73.504078, - 45.490474 - ], - [ - -73.504178, - 45.490438 - ], - [ - -73.504792, - 45.490226 - ], - [ - -73.504891, - 45.490195 - ], - [ - -73.505021, - 45.490186 - ], - [ - -73.505149, - 45.490177 - ], - [ - -73.505151, - 45.490177 - ], - [ - -73.505337, - 45.490177 - ], - [ - -73.507071, - 45.490202 - ], - [ - -73.508965, - 45.49023 - ], - [ - -73.509532, - 45.490235 - ], - [ - -73.509541, - 45.490235 - ], - [ - -73.510213, - 45.490248 - ], - [ - -73.510813, - 45.490256 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.511281, - 45.490797 - ], - [ - -73.512404, - 45.492412 - ], - [ - -73.512425, - 45.492455 - ], - [ - -73.51245, - 45.492507 - ], - [ - -73.512764, - 45.493074 - ], - [ - -73.512921, - 45.493393 - ], - [ - -73.512971, - 45.493496 - ], - [ - -73.512984, - 45.493515 - ], - [ - -73.513094, - 45.493766 - ], - [ - -73.513261, - 45.494078 - ], - [ - -73.513283, - 45.494149 - ], - [ - -73.513342, - 45.494287 - ], - [ - -73.513459, - 45.494626 - ], - [ - -73.513505, - 45.494783 - ], - [ - -73.513561, - 45.49499 - ], - [ - -73.513604, - 45.495179 - ], - [ - -73.513621, - 45.495251 - ], - [ - -73.513692, - 45.495557 - ], - [ - -73.513772, - 45.495919 - ], - [ - -73.513786, - 45.49598 - ], - [ - -73.51384, - 45.496187 - ], - [ - -73.513899, - 45.496425 - ], - [ - -73.513925, - 45.49652 - ], - [ - -73.513974, - 45.496613 - ], - [ - -73.513974, - 45.496614 - ], - [ - -73.514009, - 45.496686 - ], - [ - -73.514054, - 45.496749 - ], - [ - -73.514104, - 45.49683 - ], - [ - -73.514166, - 45.496911 - ], - [ - -73.514219, - 45.49697 - ], - [ - -73.514552, - 45.497478 - ], - [ - -73.514769, - 45.497838 - ], - [ - -73.515085, - 45.498391 - ], - [ - -73.51517, - 45.49854 - ], - [ - -73.515559, - 45.499243 - ], - [ - -73.515623, - 45.499359 - ], - [ - -73.515674, - 45.499453 - ], - [ - -73.515873, - 45.499831 - ], - [ - -73.515977, - 45.500074 - ], - [ - -73.516146, - 45.500501 - ], - [ - -73.516373, - 45.50114 - ], - [ - -73.51647, - 45.501401 - ], - [ - -73.516583, - 45.50169 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517437, - 45.505263 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517233, - 45.507278 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517559, - 45.509212 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517797, - 45.511425 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517596, - 45.513247 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518265, - 45.515312 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518974, - 45.516745 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520113, - 45.519728 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520194, - 45.520238 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.521017, - 45.523892 - ], - [ - -73.521053, - 45.523883 - ], - [ - -73.521061, - 45.523869 - ], - [ - -73.521065, - 45.523851 - ], - [ - -73.521071, - 45.523799 - ] - ] - }, - "id": 44, - "properties": { - "id": "6167a864-34a3-4adb-b77d-848bdcac350c", - "data": { - "gtfs": { - "shape_id": "15_4_R" - }, - "segments": [ - { - "distanceMeters": 662, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 330, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 195, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 358, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 100, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 397, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 348, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 605, - "travelTimeSeconds": 113 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11366, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7618.188458394157, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.29, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 6.53, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.29 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", - "3a8b9936-4595-4770-a3f4-b31253602356", - "82735dcc-3897-4e4c-87e8-45ee1dacedaa", - "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", - "d73e4ff6-4502-4376-9cf1-5410d307a82f", - "c04702f7-b2cf-440e-a6da-0a84aefc3963", - "784b0f22-55ff-44d1-a754-ddad81fb81cd", - "96e97125-39ff-47a9-b41d-043c4ca5c57e", - "c2e1b4a6-db9f-4050-848a-68486b390a21", - "a4f163e1-b90e-4fc3-82f3-f03b3181860d", - "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", - "c229b499-645e-4877-8f57-0fc6de2a8d53", - "3c04c568-5ef2-4b47-8d34-b0d175358d60", - "a5c03062-e324-4cb7-8c59-00c59a14b63e", - "1e205a49-fad6-428c-9d0c-b4018473837d", - "ac9a9c14-57c3-4a81-9316-ceca9586731d", - "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", - "c4f08e33-183e-41cf-9f96-5985f148bd11", - "3040b262-0b20-4c40-9350-e484adfe1d60", - "ff721ee3-8729-47c1-80cd-7dd5e7142284", - "f132c08e-1812-4b2f-84fb-340628d1ac39", - "5573bb7b-19f0-4d2b-a66d-9f04f87c1987", - "1bded3cb-51a3-422d-8815-a9027023991e", - "fa220212-b6b2-4456-934f-7248f9884444", - "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", - "1fc11ea4-4e32-4f30-8519-34208d0f8931", - "1fa03421-8026-43d9-b21a-b3e57dfa43c2", - "d67aee3e-be1e-429b-b464-c7a6549e761a", - "51191948-9067-4256-853f-d80a1333a164", - "602dc8fb-62ff-45ed-888f-4b4172318b5d", - "5224c05b-57d6-4d5c-87fd-b9e78147c66e", - "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "114aaaad-d40e-4930-853f-ef5cebdd299f", - "0b09b82c-ec97-406d-9f1c-690cc935b5ea", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "2259b112-2e60-4bcc-ad14-9e0e577f2909", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "caa5c2ab-ae9e-4ae0-ba88-9e89b43e54e6", - "segments": [ - 0, - 27, - 31, - 38, - 46, - 53, - 66, - 74, - 77, - 79, - 83, - 88, - 103, - 108, - 115, - 118, - 123, - 128, - 135, - 141, - 144, - 147, - 156, - 160, - 166, - 169, - 172, - 180, - 184, - 191, - 199, - 204, - 218, - 221, - 223, - 226, - 230, - 246, - 262, - 270, - 283, - 289, - 294, - 300, - 306, - 314, - 321, - 329 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 44, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521071, - 45.523799 - ], - [ - -73.521073, - 45.52378 - ], - [ - -73.521082, - 45.523698 - ], - [ - -73.521077, - 45.523679 - ], - [ - -73.52106, - 45.523665 - ], - [ - -73.521034, - 45.523659 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519706, - 45.52323 - ], - [ - -73.519869, - 45.522907 - ], - [ - -73.520158, - 45.522337 - ], - [ - -73.520306, - 45.521899 - ], - [ - -73.520306, - 45.521896 - ], - [ - -73.52035, - 45.521713 - ], - [ - -73.520354, - 45.521696 - ], - [ - -73.520401, - 45.521498 - ], - [ - -73.520405, - 45.521373 - ], - [ - -73.520409, - 45.52119 - ], - [ - -73.520398, - 45.521025 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520191, - 45.520225 - ], - [ - -73.520124, - 45.519908 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518921, - 45.516656 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517661, - 45.513625 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517701, - 45.511782 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.517613, - 45.509421 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517231, - 45.507339 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517346, - 45.505761 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.516778, - 45.502147 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.516539, - 45.501577 - ], - [ - -73.51647, - 45.501401 - ], - [ - -73.516373, - 45.50114 - ], - [ - -73.516146, - 45.500501 - ], - [ - -73.515977, - 45.500074 - ], - [ - -73.515873, - 45.499831 - ], - [ - -73.515706, - 45.499514 - ], - [ - -73.515674, - 45.499453 - ], - [ - -73.515623, - 45.499359 - ], - [ - -73.51517, - 45.49854 - ], - [ - -73.515085, - 45.498391 - ], - [ - -73.514769, - 45.497838 - ], - [ - -73.514552, - 45.497478 - ], - [ - -73.514219, - 45.49697 - ], - [ - -73.514166, - 45.496911 - ], - [ - -73.514104, - 45.49683 - ], - [ - -73.514054, - 45.496749 - ], - [ - -73.514009, - 45.496686 - ], - [ - -73.513974, - 45.496614 - ], - [ - -73.513925, - 45.49652 - ], - [ - -73.513899, - 45.496425 - ], - [ - -73.51384, - 45.496187 - ], - [ - -73.513786, - 45.49598 - ], - [ - -73.513692, - 45.495557 - ], - [ - -73.513668, - 45.495452 - ], - [ - -73.513621, - 45.495251 - ], - [ - -73.513604, - 45.495179 - ], - [ - -73.513561, - 45.49499 - ], - [ - -73.513505, - 45.494783 - ], - [ - -73.513459, - 45.494626 - ], - [ - -73.513342, - 45.494287 - ], - [ - -73.513283, - 45.494149 - ], - [ - -73.513261, - 45.494078 - ], - [ - -73.513094, - 45.493766 - ], - [ - -73.512984, - 45.493515 - ], - [ - -73.512971, - 45.493496 - ], - [ - -73.512921, - 45.493393 - ], - [ - -73.512764, - 45.493074 - ], - [ - -73.51245, - 45.492507 - ], - [ - -73.512411, - 45.492426 - ], - [ - -73.512404, - 45.492412 - ], - [ - -73.511186, - 45.49066 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.510213, - 45.490248 - ], - [ - -73.50976, - 45.490239 - ], - [ - -73.509541, - 45.490235 - ], - [ - -73.508965, - 45.49023 - ], - [ - -73.507121, - 45.490203 - ], - [ - -73.505337, - 45.490177 - ], - [ - -73.505151, - 45.490177 - ], - [ - -73.505021, - 45.490186 - ], - [ - -73.504891, - 45.490195 - ], - [ - -73.504792, - 45.490226 - ], - [ - -73.50434, - 45.490382 - ], - [ - -73.504178, - 45.490438 - ], - [ - -73.504078, - 45.490474 - ], - [ - -73.503868, - 45.49055 - ], - [ - -73.503825, - 45.490566 - ], - [ - -73.503637, - 45.490636 - ], - [ - -73.503314, - 45.490753 - ], - [ - -73.502923, - 45.490879 - ], - [ - -73.502759, - 45.49091 - ], - [ - -73.502611, - 45.490928 - ], - [ - -73.501389, - 45.49091 - ], - [ - -73.501095, - 45.490904 - ], - [ - -73.500934, - 45.490901 - ], - [ - -73.500399, - 45.490897 - ], - [ - -73.500019, - 45.490892 - ], - [ - -73.499523, - 45.490883 - ], - [ - -73.499099, - 45.490883 - ], - [ - -73.498703, - 45.49087 - ], - [ - -73.498572, - 45.490868 - ], - [ - -73.49837, - 45.490865 - ], - [ - -73.49822, - 45.490861 - ], - [ - -73.497636, - 45.490865 - ], - [ - -73.497071, - 45.49087 - ], - [ - -73.496542, - 45.490861 - ], - [ - -73.496087, - 45.490854 - ], - [ - -73.495938, - 45.490852 - ], - [ - -73.495827, - 45.490838 - ], - [ - -73.495685, - 45.490802 - ], - [ - -73.495457, - 45.490703 - ], - [ - -73.495224, - 45.490582 - ], - [ - -73.495016, - 45.490456 - ], - [ - -73.494653, - 45.490205 - ], - [ - -73.494463, - 45.490073 - ], - [ - -73.494044, - 45.489767 - ], - [ - -73.493685, - 45.489511 - ], - [ - -73.493229, - 45.489186 - ], - [ - -73.493083, - 45.489083 - ], - [ - -73.492831, - 45.488903 - ], - [ - -73.492658, - 45.488782 - ], - [ - -73.492413, - 45.48862 - ], - [ - -73.492246, - 45.488512 - ], - [ - -73.492153, - 45.48848 - ], - [ - -73.491992, - 45.488642 - ], - [ - -73.491718, - 45.488829 - ], - [ - -73.491557, - 45.488939 - ], - [ - -73.491474, - 45.489016 - ], - [ - -73.490406, - 45.489663 - ], - [ - -73.489497, - 45.490196 - ], - [ - -73.48937, - 45.490271 - ], - [ - -73.488602, - 45.490739 - ], - [ - -73.487486, - 45.491409 - ], - [ - -73.487307, - 45.491517 - ], - [ - -73.486988, - 45.491706 - ], - [ - -73.486715, - 45.491868 - ], - [ - -73.486105, - 45.492292 - ], - [ - -73.485972, - 45.492385 - ], - [ - -73.484881, - 45.493177 - ], - [ - -73.484536, - 45.493424 - ], - [ - -73.484112, - 45.493727 - ], - [ - -73.483989, - 45.493816 - ], - [ - -73.481761, - 45.492348 - ], - [ - -73.481457, - 45.492147 - ], - [ - -73.481312, - 45.492051 - ], - [ - -73.481502, - 45.491907 - ], - [ - -73.481557, - 45.491867 - ], - [ - -73.481586, - 45.49184 - ], - [ - -73.481575, - 45.491826 - ], - [ - -73.481545, - 45.491786 - ], - [ - -73.481409, - 45.491696 - ], - [ - -73.480817, - 45.491276 - ], - [ - -73.479371, - 45.49025 - ], - [ - -73.479214, - 45.490139 - ], - [ - -73.478723, - 45.489788 - ], - [ - -73.476945, - 45.488522 - ], - [ - -73.476789, - 45.488411 - ], - [ - -73.476696, - 45.48846 - ], - [ - -73.476492, - 45.488586 - ], - [ - -73.476259, - 45.488424 - ], - [ - -73.47601, - 45.48819 - ], - [ - -73.475604, - 45.487912 - ], - [ - -73.475597, - 45.487907 - ], - [ - -73.475294, - 45.487699 - ], - [ - -73.475065, - 45.487542 - ], - [ - -73.475345, - 45.487344 - ], - [ - -73.475741, - 45.487061 - ], - [ - -73.475863, - 45.486966 - ], - [ - -73.475994, - 45.486863 - ], - [ - -73.475578, - 45.486575 - ], - [ - -73.475361, - 45.486426 - ], - [ - -73.475157, - 45.486287 - ], - [ - -73.475583, - 45.485981 - ], - [ - -73.475956, - 45.48572 - ], - [ - -73.475657, - 45.485498 - ], - [ - -73.475481, - 45.485369 - ], - [ - -73.475135, - 45.485121 - ], - [ - -73.474818, - 45.484892 - ], - [ - -73.474676, - 45.484789 - ], - [ - -73.474566, - 45.484707 - ], - [ - -73.473747, - 45.484113 - ], - [ - -73.473099, - 45.483646 - ], - [ - -73.472948, - 45.483537 - ], - [ - -73.472033, - 45.482872 - ], - [ - -73.471834, - 45.482727 - ], - [ - -73.47134, - 45.482367 - ], - [ - -73.470938, - 45.482063 - ], - [ - -73.470805, - 45.481962 - ], - [ - -73.470742, - 45.481922 - ], - [ - -73.470609, - 45.481836 - ], - [ - -73.470487, - 45.481729 - ], - [ - -73.470239, - 45.481512 - ], - [ - -73.470149, - 45.481381 - ], - [ - -73.470101, - 45.481279 - ], - [ - -73.469864, - 45.48078 - ], - [ - -73.469791, - 45.480625 - ], - [ - -73.470068, - 45.480576 - ], - [ - -73.470287, - 45.480532 - ], - [ - -73.470383, - 45.480513 - ], - [ - -73.470657, - 45.480464 - ], - [ - -73.471292, - 45.480347 - ], - [ - -73.471409, - 45.480342 - ], - [ - -73.47151, - 45.480342 - ], - [ - -73.471568, - 45.480347 - ], - [ - -73.471671, - 45.48036 - ], - [ - -73.471804, - 45.480383 - ], - [ - -73.471904, - 45.480419 - ], - [ - -73.472029, - 45.480487 - ], - [ - -73.47203, - 45.480487 - ], - [ - -73.472135, - 45.48055 - ], - [ - -73.472485, - 45.480311 - ], - [ - -73.47284, - 45.480068 - ], - [ - -73.474157, - 45.479169 - ], - [ - -73.474307, - 45.479071 - ], - [ - -73.474461, - 45.478971 - ], - [ - -73.475372, - 45.478413 - ], - [ - -73.475478, - 45.478344 - ], - [ - -73.475965, - 45.478027 - ], - [ - -73.476119, - 45.477927 - ], - [ - -73.476251, - 45.477842 - ], - [ - -73.475153, - 45.477059 - ], - [ - -73.474544, - 45.476636 - ], - [ - -73.474345, - 45.476487 - ], - [ - -73.474216, - 45.476391 - ], - [ - -73.4733, - 45.475709 - ], - [ - -73.473152, - 45.475605 - ], - [ - -73.472484, - 45.475128 - ], - [ - -73.472476, - 45.475122 - ], - [ - -73.47218, - 45.47489 - ], - [ - -73.473207, - 45.474171 - ], - [ - -73.473247, - 45.474143 - ], - [ - -73.473452, - 45.474003 - ], - [ - -73.47356, - 45.473931 - ], - [ - -73.47364, - 45.473887 - ], - [ - -73.473932, - 45.473738 - ], - [ - -73.474194, - 45.473626 - ], - [ - -73.474513, - 45.473518 - ], - [ - -73.474653, - 45.473477 - ], - [ - -73.474613, - 45.473387 - ], - [ - -73.474472, - 45.473107 - ], - [ - -73.474431, - 45.473027 - ], - [ - -73.474274, - 45.472609 - ], - [ - -73.474213, - 45.472397 - ], - [ - -73.474173, - 45.472208 - ], - [ - -73.474165, - 45.472163 - ], - [ - -73.474147, - 45.472061 - ], - [ - -73.474141, - 45.472028 - ], - [ - -73.47411, - 45.47183 - ], - [ - -73.474121, - 45.471228 - ], - [ - -73.474166, - 45.470967 - ], - [ - -73.474399, - 45.469698 - ], - [ - -73.474412, - 45.469623 - ], - [ - -73.474454, - 45.469396 - ], - [ - -73.474489, - 45.469055 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.473257, - 45.468317 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.471489, - 45.468101 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469574, - 45.467137 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.468602, - 45.466372 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469039, - 45.466295 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469319, - 45.467991 - ], - [ - -73.469043, - 45.467983 - ], - [ - -73.468598, - 45.467969 - ], - [ - -73.468434, - 45.467978 - ], - [ - -73.467926, - 45.468045 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.46758, - 45.467757 - ], - [ - -73.467357, - 45.467296 - ], - [ - -73.467335, - 45.467098 - ], - [ - -73.467287, - 45.466921 - ], - [ - -73.46724, - 45.46679 - ], - [ - -73.467201, - 45.466621 - ], - [ - -73.467171, - 45.466457 - ], - [ - -73.467168, - 45.466361 - ], - [ - -73.467171, - 45.466266 - ], - [ - -73.46719, - 45.46616 - ], - [ - -73.467233, - 45.466051 - ], - [ - -73.467286, - 45.465947 - ], - [ - -73.467286, - 45.465946 - ], - [ - -73.467347, - 45.465852 - ], - [ - -73.46743, - 45.465768 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467565, - 45.465647 - ], - [ - -73.467708, - 45.465556 - ], - [ - -73.467899, - 45.465442 - ], - [ - -73.46805, - 45.465387 - ], - [ - -73.468287, - 45.465321 - ], - [ - -73.468514, - 45.465288 - ], - [ - -73.468859, - 45.465256 - ], - [ - -73.469207, - 45.465245 - ], - [ - -73.471824, - 45.46534 - ], - [ - -73.47278, - 45.465351 - ], - [ - -73.473923, - 45.465346 - ], - [ - -73.474792, - 45.465284 - ], - [ - -73.476448, - 45.465339 - ], - [ - -73.478069, - 45.465419 - ], - [ - -73.47931, - 45.465481 - ], - [ - -73.480681, - 45.465584 - ], - [ - -73.481658, - 45.465665 - ], - [ - -73.483804, - 45.465854 - ], - [ - -73.485886, - 45.466123 - ], - [ - -73.488038, - 45.466444 - ], - [ - -73.489088, - 45.466602 - ], - [ - -73.491585, - 45.46694 - ], - [ - -73.494707, - 45.467307 - ], - [ - -73.494917, - 45.467332 - ], - [ - -73.494999, - 45.467342 - ], - [ - -73.497318, - 45.467635 - ], - [ - -73.501976, - 45.468162 - ], - [ - -73.50546, - 45.468524 - ], - [ - -73.508994, - 45.468874 - ], - [ - -73.510795, - 45.469064 - ], - [ - -73.516615, - 45.469606 - ], - [ - -73.520513, - 45.469901 - ], - [ - -73.524263, - 45.470138 - ], - [ - -73.526895, - 45.470234 - ], - [ - -73.536203, - 45.470502 - ], - [ - -73.537479, - 45.470611 - ], - [ - -73.540035, - 45.470737 - ], - [ - -73.540574, - 45.470754 - ], - [ - -73.541689, - 45.470806 - ], - [ - -73.54236, - 45.470938 - ], - [ - -73.542685, - 45.471019 - ], - [ - -73.543056, - 45.471172 - ], - [ - -73.543235, - 45.471297 - ], - [ - -73.543427, - 45.47153 - ], - [ - -73.543495, - 45.471781 - ], - [ - -73.543487, - 45.471977 - ], - [ - -73.543374, - 45.472246 - ], - [ - -73.543123, - 45.472648 - ], - [ - -73.543053, - 45.472745 - ], - [ - -73.543034, - 45.472772 - ], - [ - -73.543013, - 45.472801 - ], - [ - -73.542473, - 45.473549 - ], - [ - -73.542275, - 45.473832 - ], - [ - -73.542255, - 45.473861 - ], - [ - -73.542175, - 45.473976 - ], - [ - -73.542016, - 45.474229 - ], - [ - -73.541794, - 45.474618 - ], - [ - -73.541458, - 45.475221 - ], - [ - -73.541094, - 45.47588 - ], - [ - -73.540722, - 45.476557 - ], - [ - -73.540393, - 45.477154 - ], - [ - -73.540141, - 45.477612 - ], - [ - -73.539989, - 45.477937 - ], - [ - -73.539912, - 45.478117 - ], - [ - -73.53962, - 45.478792 - ], - [ - -73.539453, - 45.479242 - ], - [ - -73.539011, - 45.480452 - ], - [ - -73.538771, - 45.481137 - ], - [ - -73.538372, - 45.4823 - ], - [ - -73.537796, - 45.483909 - ], - [ - -73.537682, - 45.484235 - ], - [ - -73.537533, - 45.484742 - ], - [ - -73.537501, - 45.485252 - ], - [ - -73.537565, - 45.485765 - ], - [ - -73.537725, - 45.486206 - ], - [ - -73.537953, - 45.486613 - ], - [ - -73.538211, - 45.486968 - ], - [ - -73.538564, - 45.487319 - ], - [ - -73.538991, - 45.48766 - ], - [ - -73.539413, - 45.487933 - ], - [ - -73.540409, - 45.488352 - ], - [ - -73.540999, - 45.488508 - ], - [ - -73.545779, - 45.489431 - ], - [ - -73.547415, - 45.489732 - ], - [ - -73.548107, - 45.48986 - ], - [ - -73.549549, - 45.490154 - ], - [ - -73.549968, - 45.490239 - ], - [ - -73.550646, - 45.490459 - ], - [ - -73.551261, - 45.490742 - ], - [ - -73.55163, - 45.490924 - ], - [ - -73.551996, - 45.491154 - ], - [ - -73.552466, - 45.491495 - ], - [ - -73.552812, - 45.491812 - ], - [ - -73.553225, - 45.492293 - ], - [ - -73.553459, - 45.492647 - ], - [ - -73.553701, - 45.493121 - ], - [ - -73.553714, - 45.493155 - ], - [ - -73.554005, - 45.493935 - ], - [ - -73.554229, - 45.494495 - ], - [ - -73.55441, - 45.494962 - ], - [ - -73.554709, - 45.495574 - ], - [ - -73.554963, - 45.495825 - ], - [ - -73.555225, - 45.496022 - ], - [ - -73.555665, - 45.496222 - ], - [ - -73.557268, - 45.496821 - ], - [ - -73.557934, - 45.497074 - ], - [ - -73.558509, - 45.49729 - ], - [ - -73.558754, - 45.497382 - ], - [ - -73.559665, - 45.497799 - ], - [ - -73.56055, - 45.498258 - ], - [ - -73.561247, - 45.498577 - ], - [ - -73.561574, - 45.498701 - ], - [ - -73.561917, - 45.498838 - ], - [ - -73.562165, - 45.49894 - ], - [ - -73.562545, - 45.499119 - ], - [ - -73.562571, - 45.499093 - ], - [ - -73.562654, - 45.499004 - ], - [ - -73.563341, - 45.498281 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.56431, - 45.497835 - ], - [ - -73.565142, - 45.498217 - ], - [ - -73.565601, - 45.498443 - ], - [ - -73.565748, - 45.49831 - ], - [ - -73.565849, - 45.498292 - ], - [ - -73.566051, - 45.498359 - ], - [ - -73.566361, - 45.498471 - ], - [ - -73.566492, - 45.498485 - ], - [ - -73.566611, - 45.498345 - ] - ] - }, - "id": 45, - "properties": { - "id": "635dae54-c143-4e92-9491-fe2d7f6099f4", - "data": { - "gtfs": { - "shape_id": "15_1_A" - }, - "segments": [ - { - "distanceMeters": 551, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 412, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 482, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 358, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 622, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 10801, - "travelTimeSeconds": 840 - }, - { - "distanceMeters": 830, - "travelTimeSeconds": 300 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 288, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 22902, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4556.682714136112, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.95, - "travelTimeWithoutDwellTimesSeconds": 2880, - "operatingTimeWithLayoverTimeSeconds": 3168, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2880, - "operatingSpeedWithLayoverMetersPerSecond": 7.23, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.95 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "0b09b82c-ec97-406d-9f1c-690cc935b5ea", - "27330ef0-4c59-4e22-a044-51b9d43c9719", - "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "5224c05b-57d6-4d5c-87fd-b9e78147c66e", - "602dc8fb-62ff-45ed-888f-4b4172318b5d", - "51191948-9067-4256-853f-d80a1333a164", - "d67aee3e-be1e-429b-b464-c7a6549e761a", - "1fa03421-8026-43d9-b21a-b3e57dfa43c2", - "1fc11ea4-4e32-4f30-8519-34208d0f8931", - "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", - "fa220212-b6b2-4456-934f-7248f9884444", - "196681e4-c9e5-4a79-a3b1-ce225227e0aa", - "a2e6b668-43de-43be-8b1b-07b41b333c8d", - "f132c08e-1812-4b2f-84fb-340628d1ac39", - "ff721ee3-8729-47c1-80cd-7dd5e7142284", - "3040b262-0b20-4c40-9350-e484adfe1d60", - "c4f08e33-183e-41cf-9f96-5985f148bd11", - "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", - "ac9a9c14-57c3-4a81-9316-ceca9586731d", - "1e205a49-fad6-428c-9d0c-b4018473837d", - "a5c03062-e324-4cb7-8c59-00c59a14b63e", - "3c04c568-5ef2-4b47-8d34-b0d175358d60", - "c229b499-645e-4877-8f57-0fc6de2a8d53", - "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", - "a4f163e1-b90e-4fc3-82f3-f03b3181860d", - "c2e1b4a6-db9f-4050-848a-68486b390a21", - "96e97125-39ff-47a9-b41d-043c4ca5c57e", - "784b0f22-55ff-44d1-a754-ddad81fb81cd", - "c04702f7-b2cf-440e-a6da-0a84aefc3963", - "d73e4ff6-4502-4376-9cf1-5410d307a82f", - "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", - "82735dcc-3897-4e4c-87e8-45ee1dacedaa", - "3a8b9936-4595-4770-a3f4-b31253602356", - "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "461a5d33-406e-481a-b773-6e450c48b670", - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" - ], - "stops": [], - "line_id": "caa5c2ab-ae9e-4ae0-ba88-9e89b43e54e6", - "segments": [ - 0, - 27, - 37, - 48, - 54, - 61, - 67, - 72, - 84, - 93, - 111, - 126, - 131, - 134, - 140, - 151, - 158, - 164, - 171, - 176, - 183, - 187, - 190, - 194, - 198, - 201, - 210, - 213, - 221, - 228, - 232, - 236, - 239, - 244, - 252, - 266, - 271, - 275, - 281, - 285, - 287, - 303, - 309, - 320, - 327, - 346, - 491 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 45, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521071, - 45.523799 - ], - [ - -73.521073, - 45.52378 - ], - [ - -73.521082, - 45.523698 - ], - [ - -73.521077, - 45.523679 - ], - [ - -73.52106, - 45.523665 - ], - [ - -73.521034, - 45.523659 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519706, - 45.52323 - ], - [ - -73.519869, - 45.522907 - ], - [ - -73.520158, - 45.522337 - ], - [ - -73.520306, - 45.521899 - ], - [ - -73.520306, - 45.521896 - ], - [ - -73.520354, - 45.521696 - ], - [ - -73.520358, - 45.521679 - ], - [ - -73.520401, - 45.521498 - ], - [ - -73.520405, - 45.521373 - ], - [ - -73.520409, - 45.52119 - ], - [ - -73.520398, - 45.521025 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520191, - 45.520225 - ], - [ - -73.520123, - 45.519906 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518919, - 45.516652 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.51766, - 45.513619 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517703, - 45.511775 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.51761, - 45.509413 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517232, - 45.50733 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517348, - 45.505751 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.516772, - 45.502135 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.516539, - 45.501577 - ], - [ - -73.51647, - 45.501401 - ], - [ - -73.516373, - 45.50114 - ], - [ - -73.516146, - 45.500501 - ], - [ - -73.515977, - 45.500074 - ], - [ - -73.515873, - 45.499831 - ], - [ - -73.5157, - 45.499501 - ], - [ - -73.515674, - 45.499453 - ], - [ - -73.515623, - 45.499359 - ], - [ - -73.51517, - 45.49854 - ], - [ - -73.515085, - 45.498391 - ], - [ - -73.514769, - 45.497838 - ], - [ - -73.514552, - 45.497478 - ], - [ - -73.514219, - 45.49697 - ], - [ - -73.514166, - 45.496911 - ], - [ - -73.514104, - 45.49683 - ], - [ - -73.514054, - 45.496749 - ], - [ - -73.514009, - 45.496686 - ], - [ - -73.513974, - 45.496614 - ], - [ - -73.513925, - 45.49652 - ], - [ - -73.513899, - 45.496425 - ], - [ - -73.51384, - 45.496187 - ], - [ - -73.513786, - 45.49598 - ], - [ - -73.513692, - 45.495557 - ], - [ - -73.513664, - 45.495437 - ], - [ - -73.513621, - 45.495251 - ], - [ - -73.513604, - 45.495179 - ], - [ - -73.513561, - 45.49499 - ], - [ - -73.513505, - 45.494783 - ], - [ - -73.513459, - 45.494626 - ], - [ - -73.513342, - 45.494287 - ], - [ - -73.513283, - 45.494149 - ], - [ - -73.513261, - 45.494078 - ], - [ - -73.513094, - 45.493766 - ], - [ - -73.512984, - 45.493515 - ], - [ - -73.512971, - 45.493496 - ], - [ - -73.512921, - 45.493393 - ], - [ - -73.512764, - 45.493074 - ], - [ - -73.51245, - 45.492507 - ], - [ - -73.512404, - 45.492412 - ], - [ - -73.512402, - 45.49241 - ], - [ - -73.511186, - 45.49066 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.510213, - 45.490248 - ], - [ - -73.509732, - 45.490239 - ], - [ - -73.509541, - 45.490235 - ], - [ - -73.508965, - 45.49023 - ], - [ - -73.507092, - 45.490203 - ], - [ - -73.505337, - 45.490177 - ], - [ - -73.505151, - 45.490177 - ], - [ - -73.505021, - 45.490186 - ], - [ - -73.504891, - 45.490195 - ], - [ - -73.504792, - 45.490226 - ], - [ - -73.504312, - 45.490391 - ], - [ - -73.504178, - 45.490438 - ], - [ - -73.504078, - 45.490474 - ], - [ - -73.503868, - 45.49055 - ], - [ - -73.503825, - 45.490566 - ], - [ - -73.503637, - 45.490636 - ], - [ - -73.503314, - 45.490753 - ], - [ - -73.502923, - 45.490879 - ], - [ - -73.502759, - 45.49091 - ], - [ - -73.502611, - 45.490928 - ], - [ - -73.501389, - 45.49091 - ], - [ - -73.501063, - 45.490904 - ], - [ - -73.500934, - 45.490901 - ], - [ - -73.500399, - 45.490897 - ], - [ - -73.500019, - 45.490892 - ], - [ - -73.499523, - 45.490883 - ], - [ - -73.499099, - 45.490883 - ], - [ - -73.498703, - 45.49087 - ], - [ - -73.498538, - 45.490867 - ], - [ - -73.49837, - 45.490865 - ], - [ - -73.49822, - 45.490861 - ], - [ - -73.497636, - 45.490865 - ], - [ - -73.497071, - 45.49087 - ], - [ - -73.496542, - 45.490861 - ], - [ - -73.496052, - 45.490853 - ], - [ - -73.495938, - 45.490852 - ], - [ - -73.495827, - 45.490838 - ], - [ - -73.495685, - 45.490802 - ], - [ - -73.495457, - 45.490703 - ], - [ - -73.495224, - 45.490582 - ], - [ - -73.495016, - 45.490456 - ], - [ - -73.494628, - 45.490187 - ], - [ - -73.494463, - 45.490073 - ], - [ - -73.494044, - 45.489767 - ], - [ - -73.493685, - 45.489511 - ], - [ - -73.493229, - 45.489186 - ], - [ - -73.493057, - 45.489064 - ], - [ - -73.492831, - 45.488903 - ], - [ - -73.492658, - 45.488782 - ], - [ - -73.492413, - 45.48862 - ], - [ - -73.492246, - 45.488512 - ], - [ - -73.492153, - 45.48848 - ], - [ - -73.491992, - 45.488642 - ], - [ - -73.491691, - 45.488848 - ], - [ - -73.491557, - 45.488939 - ], - [ - -73.491474, - 45.489016 - ], - [ - -73.490406, - 45.489663 - ], - [ - -73.489466, - 45.490214 - ], - [ - -73.48937, - 45.490271 - ], - [ - -73.488602, - 45.490739 - ], - [ - -73.487455, - 45.491428 - ], - [ - -73.487307, - 45.491517 - ], - [ - -73.486988, - 45.491706 - ], - [ - -73.486715, - 45.491868 - ], - [ - -73.486075, - 45.492313 - ], - [ - -73.485972, - 45.492385 - ], - [ - -73.484881, - 45.493177 - ], - [ - -73.484082, - 45.493749 - ], - [ - -73.483989, - 45.493816 - ], - [ - -73.481761, - 45.492348 - ], - [ - -73.481423, - 45.492125 - ], - [ - -73.481312, - 45.492051 - ], - [ - -73.481502, - 45.491907 - ], - [ - -73.481557, - 45.491867 - ], - [ - -73.481586, - 45.49184 - ], - [ - -73.481575, - 45.491826 - ], - [ - -73.481545, - 45.491786 - ], - [ - -73.481409, - 45.491696 - ], - [ - -73.480685, - 45.491182 - ], - [ - -73.479338, - 45.490227 - ], - [ - -73.479214, - 45.490139 - ], - [ - -73.478723, - 45.489788 - ], - [ - -73.47691, - 45.488497 - ], - [ - -73.476789, - 45.488411 - ], - [ - -73.476696, - 45.48846 - ], - [ - -73.476492, - 45.488586 - ], - [ - -73.476259, - 45.488424 - ], - [ - -73.47601, - 45.48819 - ], - [ - -73.475604, - 45.487912 - ], - [ - -73.475597, - 45.487907 - ], - [ - -73.475258, - 45.487674 - ], - [ - -73.475065, - 45.487542 - ], - [ - -73.475345, - 45.487344 - ], - [ - -73.475741, - 45.487061 - ], - [ - -73.475863, - 45.486966 - ], - [ - -73.475994, - 45.486863 - ], - [ - -73.475578, - 45.486575 - ], - [ - -73.475324, - 45.486401 - ], - [ - -73.475157, - 45.486287 - ], - [ - -73.475583, - 45.485981 - ], - [ - -73.475956, - 45.48572 - ], - [ - -73.47562, - 45.485472 - ], - [ - -73.475481, - 45.485369 - ], - [ - -73.475135, - 45.485121 - ], - [ - -73.474818, - 45.484892 - ], - [ - -73.474639, - 45.484761 - ], - [ - -73.474566, - 45.484707 - ], - [ - -73.473747, - 45.484113 - ], - [ - -73.473061, - 45.483619 - ], - [ - -73.472948, - 45.483537 - ], - [ - -73.472033, - 45.482872 - ], - [ - -73.471834, - 45.482727 - ], - [ - -73.47134, - 45.482367 - ], - [ - -73.4709, - 45.482034 - ], - [ - -73.470805, - 45.481962 - ], - [ - -73.470742, - 45.481922 - ], - [ - -73.470609, - 45.481836 - ], - [ - -73.470487, - 45.481729 - ], - [ - -73.470239, - 45.481512 - ], - [ - -73.470149, - 45.481381 - ], - [ - -73.470101, - 45.481279 - ], - [ - -73.469846, - 45.480741 - ], - [ - -73.469791, - 45.480625 - ], - [ - -73.470068, - 45.480576 - ], - [ - -73.470287, - 45.480532 - ], - [ - -73.470383, - 45.480513 - ], - [ - -73.470657, - 45.480464 - ], - [ - -73.471292, - 45.480347 - ], - [ - -73.471409, - 45.480342 - ], - [ - -73.47151, - 45.480342 - ], - [ - -73.471568, - 45.480347 - ], - [ - -73.471671, - 45.48036 - ], - [ - -73.471804, - 45.480383 - ], - [ - -73.471904, - 45.480419 - ], - [ - -73.472029, - 45.480487 - ], - [ - -73.472075, - 45.480514 - ], - [ - -73.472135, - 45.48055 - ], - [ - -73.472485, - 45.480311 - ], - [ - -73.47284, - 45.480068 - ], - [ - -73.474157, - 45.479169 - ], - [ - -73.474351, - 45.479042 - ], - [ - -73.474461, - 45.478971 - ], - [ - -73.475372, - 45.478413 - ], - [ - -73.475478, - 45.478344 - ], - [ - -73.476011, - 45.477998 - ], - [ - -73.476119, - 45.477927 - ], - [ - -73.476251, - 45.477842 - ], - [ - -73.475153, - 45.477059 - ], - [ - -73.474544, - 45.476636 - ], - [ - -73.474345, - 45.476487 - ], - [ - -73.474173, - 45.476359 - ], - [ - -73.4733, - 45.475709 - ], - [ - -73.473152, - 45.475605 - ], - [ - -73.472484, - 45.475128 - ], - [ - -73.472433, - 45.475088 - ], - [ - -73.47218, - 45.47489 - ], - [ - -73.473247, - 45.474143 - ], - [ - -73.473254, - 45.474138 - ], - [ - -73.473452, - 45.474003 - ], - [ - -73.47356, - 45.473931 - ], - [ - -73.47364, - 45.473887 - ], - [ - -73.473932, - 45.473738 - ], - [ - -73.474194, - 45.473626 - ], - [ - -73.474513, - 45.473518 - ], - [ - -73.474653, - 45.473477 - ], - [ - -73.474613, - 45.473387 - ], - [ - -73.474531, - 45.473224 - ], - [ - -73.474431, - 45.473027 - ], - [ - -73.474274, - 45.472609 - ], - [ - -73.474213, - 45.472397 - ], - [ - -73.474173, - 45.472208 - ], - [ - -73.474165, - 45.472163 - ], - [ - -73.474141, - 45.472028 - ], - [ - -73.474138, - 45.472014 - ], - [ - -73.47411, - 45.47183 - ], - [ - -73.474121, - 45.471228 - ], - [ - -73.474166, - 45.470967 - ], - [ - -73.474399, - 45.469698 - ], - [ - -73.474421, - 45.469575 - ], - [ - -73.474454, - 45.469396 - ], - [ - -73.474489, - 45.469055 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.473195, - 45.468292 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.471416, - 45.468098 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469574, - 45.467137 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.46908, - 45.465912 - ], - [ - -73.469107, - 45.46587 - ] - ] - }, - "id": 46, - "properties": { - "id": "c8a2b010-8365-410d-ab37-1c3de816ca89", - "data": { - "gtfs": { - "shape_id": "15_2_A" - }, - "segments": [ - { - "distanceMeters": 551, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 412, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 482, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 358, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 653, - "travelTimeSeconds": 124 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11308, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7618.188458394157, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.73, - "travelTimeWithoutDwellTimesSeconds": 1680, - "operatingTimeWithLayoverTimeSeconds": 1860, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1680, - "operatingSpeedWithLayoverMetersPerSecond": 6.08, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.73 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "0b09b82c-ec97-406d-9f1c-690cc935b5ea", - "27330ef0-4c59-4e22-a044-51b9d43c9719", - "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "5224c05b-57d6-4d5c-87fd-b9e78147c66e", - "602dc8fb-62ff-45ed-888f-4b4172318b5d", - "51191948-9067-4256-853f-d80a1333a164", - "d67aee3e-be1e-429b-b464-c7a6549e761a", - "1fa03421-8026-43d9-b21a-b3e57dfa43c2", - "1fc11ea4-4e32-4f30-8519-34208d0f8931", - "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", - "fa220212-b6b2-4456-934f-7248f9884444", - "196681e4-c9e5-4a79-a3b1-ce225227e0aa", - "a2e6b668-43de-43be-8b1b-07b41b333c8d", - "f132c08e-1812-4b2f-84fb-340628d1ac39", - "ff721ee3-8729-47c1-80cd-7dd5e7142284", - "3040b262-0b20-4c40-9350-e484adfe1d60", - "c4f08e33-183e-41cf-9f96-5985f148bd11", - "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", - "ac9a9c14-57c3-4a81-9316-ceca9586731d", - "1e205a49-fad6-428c-9d0c-b4018473837d", - "a5c03062-e324-4cb7-8c59-00c59a14b63e", - "3c04c568-5ef2-4b47-8d34-b0d175358d60", - "c229b499-645e-4877-8f57-0fc6de2a8d53", - "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", - "a4f163e1-b90e-4fc3-82f3-f03b3181860d", - "c2e1b4a6-db9f-4050-848a-68486b390a21", - "96e97125-39ff-47a9-b41d-043c4ca5c57e", - "784b0f22-55ff-44d1-a754-ddad81fb81cd", - "c04702f7-b2cf-440e-a6da-0a84aefc3963", - "d73e4ff6-4502-4376-9cf1-5410d307a82f", - "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", - "82735dcc-3897-4e4c-87e8-45ee1dacedaa", - "3a8b9936-4595-4770-a3f4-b31253602356", - "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "caa5c2ab-ae9e-4ae0-ba88-9e89b43e54e6", - "segments": [ - 0, - 27, - 37, - 48, - 54, - 61, - 67, - 72, - 84, - 93, - 111, - 127, - 131, - 134, - 140, - 151, - 158, - 164, - 171, - 176, - 183, - 187, - 190, - 194, - 197, - 200, - 209, - 212, - 220, - 227, - 231, - 235, - 238, - 243, - 251, - 265, - 270, - 274, - 280, - 284, - 287, - 303, - 308, - 319, - 326 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 46, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.566611, - 45.498345 - ], - [ - -73.566738, - 45.498195 - ], - [ - -73.566628, - 45.49808 - ], - [ - -73.566306, - 45.497931 - ], - [ - -73.566253, - 45.497841 - ], - [ - -73.56638, - 45.497699 - ], - [ - -73.566016, - 45.497523 - ], - [ - -73.564691, - 45.496892 - ], - [ - -73.563974, - 45.496566 - ], - [ - -73.562701, - 45.495919 - ], - [ - -73.562646, - 45.496027 - ], - [ - -73.562481, - 45.496317 - ], - [ - -73.562435, - 45.496383 - ], - [ - -73.562367, - 45.496479 - ], - [ - -73.562274, - 45.496658 - ], - [ - -73.562038, - 45.497108 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.561218, - 45.497864 - ], - [ - -73.561033, - 45.497765 - ], - [ - -73.560139, - 45.497347 - ], - [ - -73.559235, - 45.49696 - ], - [ - -73.55917, - 45.496938 - ], - [ - -73.558356, - 45.496631 - ], - [ - -73.558146, - 45.496556 - ], - [ - -73.557604, - 45.496364 - ], - [ - -73.556782, - 45.49606 - ], - [ - -73.555745, - 45.495673 - ], - [ - -73.555351, - 45.495512 - ], - [ - -73.555133, - 45.495401 - ], - [ - -73.554916, - 45.495262 - ], - [ - -73.554768, - 45.495125 - ], - [ - -73.55465, - 45.494994 - ], - [ - -73.553944, - 45.493258 - ], - [ - -73.553818, - 45.492971 - ], - [ - -73.553465, - 45.492338 - ], - [ - -73.552977, - 45.491759 - ], - [ - -73.552502, - 45.491344 - ], - [ - -73.551956, - 45.490962 - ], - [ - -73.551651, - 45.490791 - ], - [ - -73.551074, - 45.490513 - ], - [ - -73.550682, - 45.490367 - ], - [ - -73.550312, - 45.490228 - ], - [ - -73.54956, - 45.490034 - ], - [ - -73.548355, - 45.489798 - ], - [ - -73.542648, - 45.488704 - ], - [ - -73.541878, - 45.488554 - ], - [ - -73.541083, - 45.488397 - ], - [ - -73.540636, - 45.488282 - ], - [ - -73.540145, - 45.488119 - ], - [ - -73.539582, - 45.48786 - ], - [ - -73.539557, - 45.487845 - ], - [ - -73.539239, - 45.487663 - ], - [ - -73.538946, - 45.487462 - ], - [ - -73.538619, - 45.487192 - ], - [ - -73.538304, - 45.486863 - ], - [ - -73.538089, - 45.486564 - ], - [ - -73.537862, - 45.486139 - ], - [ - -73.537796, - 45.485958 - ], - [ - -73.537731, - 45.485785 - ], - [ - -73.53767, - 45.485461 - ], - [ - -73.537646, - 45.485264 - ], - [ - -73.537653, - 45.484914 - ], - [ - -73.537707, - 45.484604 - ], - [ - -73.537881, - 45.484168 - ], - [ - -73.537968, - 45.483893 - ], - [ - -73.538058, - 45.483623 - ], - [ - -73.539557, - 45.479354 - ], - [ - -73.53982, - 45.478652 - ], - [ - -73.540179, - 45.47782 - ], - [ - -73.540481, - 45.477177 - ], - [ - -73.540578, - 45.477027 - ], - [ - -73.540928, - 45.476409 - ], - [ - -73.5413, - 45.475732 - ], - [ - -73.541747, - 45.474937 - ], - [ - -73.542136, - 45.474264 - ], - [ - -73.542539, - 45.47363 - ], - [ - -73.543159, - 45.472786 - ], - [ - -73.543162, - 45.472781 - ], - [ - -73.5432, - 45.472729 - ], - [ - -73.543381, - 45.472482 - ], - [ - -73.543908, - 45.471834 - ], - [ - -73.544604, - 45.471016 - ], - [ - -73.54479, - 45.470824 - ], - [ - -73.544929, - 45.470679 - ], - [ - -73.54509, - 45.470477 - ], - [ - -73.545159, - 45.470391 - ], - [ - -73.545162, - 45.470289 - ], - [ - -73.54518, - 45.470102 - ], - [ - -73.54513, - 45.469912 - ], - [ - -73.545032, - 45.469762 - ], - [ - -73.544829, - 45.469589 - ], - [ - -73.544396, - 45.469456 - ], - [ - -73.544223, - 45.469408 - ], - [ - -73.544, - 45.469414 - ], - [ - -73.54385, - 45.469436 - ], - [ - -73.543665, - 45.469485 - ], - [ - -73.543125, - 45.469658 - ], - [ - -73.542795, - 45.46978 - ], - [ - -73.542335, - 45.469915 - ], - [ - -73.542042, - 45.469974 - ], - [ - -73.541634, - 45.469988 - ], - [ - -73.538583, - 45.470121 - ], - [ - -73.536645, - 45.47012 - ], - [ - -73.534843, - 45.470106 - ], - [ - -73.531663, - 45.470044 - ], - [ - -73.528901, - 45.469979 - ], - [ - -73.525636, - 45.469864 - ], - [ - -73.520215, - 45.469565 - ], - [ - -73.516228, - 45.469261 - ], - [ - -73.50737, - 45.468395 - ], - [ - -73.501604, - 45.467786 - ], - [ - -73.499262, - 45.467514 - ], - [ - -73.493921, - 45.466881 - ], - [ - -73.491932, - 45.466645 - ], - [ - -73.489852, - 45.466348 - ], - [ - -73.489119, - 45.46624 - ], - [ - -73.489027, - 45.466226 - ], - [ - -73.486848, - 45.465931 - ], - [ - -73.485714, - 45.465782 - ], - [ - -73.482904, - 45.465439 - ], - [ - -73.482123, - 45.46537 - ], - [ - -73.479736, - 45.465191 - ], - [ - -73.47968, - 45.465187 - ], - [ - -73.478363, - 45.465119 - ], - [ - -73.477796, - 45.465089 - ], - [ - -73.475753, - 45.464994 - ], - [ - -73.474695, - 45.464942 - ], - [ - -73.474262, - 45.464921 - ], - [ - -73.474113, - 45.464916 - ], - [ - -73.473291, - 45.464882 - ], - [ - -73.472501, - 45.46485 - ], - [ - -73.471447, - 45.46476 - ], - [ - -73.469875, - 45.464616 - ], - [ - -73.469333, - 45.464554 - ], - [ - -73.46902, - 45.464515 - ], - [ - -73.468704, - 45.464452 - ], - [ - -73.468392, - 45.464367 - ], - [ - -73.468066, - 45.46424 - ], - [ - -73.467826, - 45.46409 - ], - [ - -73.467593, - 45.463944 - ], - [ - -73.467415, - 45.463833 - ], - [ - -73.467133, - 45.463667 - ], - [ - -73.466953, - 45.463591 - ], - [ - -73.466529, - 45.463529 - ], - [ - -73.466232, - 45.463594 - ], - [ - -73.466092, - 45.463623 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.468229, - 45.466357 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469046, - 45.466193 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469327, - 45.468092 - ], - [ - -73.469492, - 45.4681 - ], - [ - -73.469908, - 45.468123 - ], - [ - -73.470299, - 45.468145 - ], - [ - -73.471131, - 45.468185 - ], - [ - -73.471238, - 45.46819 - ], - [ - -73.471526, - 45.468208 - ], - [ - -73.472194, - 45.468244 - ], - [ - -73.472511, - 45.468258 - ], - [ - -73.472597, - 45.468262 - ], - [ - -73.472728, - 45.468276 - ], - [ - -73.472834, - 45.468294 - ], - [ - -73.472877, - 45.468307 - ], - [ - -73.473025, - 45.468348 - ], - [ - -73.473214, - 45.468424 - ], - [ - -73.473673, - 45.468604 - ], - [ - -73.473737, - 45.468617 - ], - [ - -73.473905, - 45.468649 - ], - [ - -73.474077, - 45.468676 - ], - [ - -73.474259, - 45.46869 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474366, - 45.468873 - ], - [ - -73.474292, - 45.469387 - ], - [ - -73.474246, - 45.469623 - ], - [ - -73.474234, - 45.469689 - ], - [ - -73.474156, - 45.470095 - ], - [ - -73.474035, - 45.470724 - ], - [ - -73.473974, - 45.47107 - ], - [ - -73.473942, - 45.471336 - ], - [ - -73.473932, - 45.471601 - ], - [ - -73.473942, - 45.471747 - ], - [ - -73.473947, - 45.471826 - ], - [ - -73.473986, - 45.472118 - ], - [ - -73.473998, - 45.472177 - ], - [ - -73.474046, - 45.47242 - ], - [ - -73.474106, - 45.47264 - ], - [ - -73.474275, - 45.473063 - ], - [ - -73.474463, - 45.473437 - ], - [ - -73.474014, - 45.473579 - ], - [ - -73.474007, - 45.473581 - ], - [ - -73.473846, - 45.473648 - ], - [ - -73.473736, - 45.473702 - ], - [ - -73.473545, - 45.473797 - ], - [ - -73.473457, - 45.473846 - ], - [ - -73.473417, - 45.473872 - ], - [ - -73.473334, - 45.473927 - ], - [ - -73.473141, - 45.474053 - ], - [ - -73.472074, - 45.474808 - ], - [ - -73.471919, - 45.474907 - ], - [ - -73.472018, - 45.474979 - ], - [ - -73.47234, - 45.475227 - ], - [ - -73.472676, - 45.475466 - ], - [ - -73.473157, - 45.475808 - ], - [ - -73.473415, - 45.476001 - ], - [ - -73.47389, - 45.476341 - ], - [ - -73.475018, - 45.477149 - ], - [ - -73.475759, - 45.477673 - ], - [ - -73.476119, - 45.477927 - ], - [ - -73.475478, - 45.478344 - ], - [ - -73.475372, - 45.478413 - ], - [ - -73.474489, - 45.478954 - ], - [ - -73.474461, - 45.478971 - ], - [ - -73.474157, - 45.479169 - ], - [ - -73.47284, - 45.480068 - ], - [ - -73.472485, - 45.480311 - ], - [ - -73.472205, - 45.480502 - ], - [ - -73.472135, - 45.48055 - ], - [ - -73.472029, - 45.480487 - ], - [ - -73.471904, - 45.480419 - ], - [ - -73.471804, - 45.480383 - ], - [ - -73.471671, - 45.48036 - ], - [ - -73.471568, - 45.480347 - ], - [ - -73.47151, - 45.480342 - ], - [ - -73.471409, - 45.480342 - ], - [ - -73.471292, - 45.480347 - ], - [ - -73.470657, - 45.480464 - ], - [ - -73.470383, - 45.480513 - ], - [ - -73.470287, - 45.480532 - ], - [ - -73.470068, - 45.480576 - ], - [ - -73.469901, - 45.480606 - ], - [ - -73.469843, - 45.480616 - ], - [ - -73.469791, - 45.480625 - ], - [ - -73.470101, - 45.481279 - ], - [ - -73.470149, - 45.481381 - ], - [ - -73.470239, - 45.481512 - ], - [ - -73.470551, - 45.481785 - ], - [ - -73.470609, - 45.481836 - ], - [ - -73.470742, - 45.481922 - ], - [ - -73.470805, - 45.481962 - ], - [ - -73.47134, - 45.482367 - ], - [ - -73.471834, - 45.482727 - ], - [ - -73.472033, - 45.482872 - ], - [ - -73.472882, - 45.483489 - ], - [ - -73.472948, - 45.483537 - ], - [ - -73.473747, - 45.484113 - ], - [ - -73.474514, - 45.48467 - ], - [ - -73.474566, - 45.484707 - ], - [ - -73.474818, - 45.484892 - ], - [ - -73.475135, - 45.485121 - ], - [ - -73.475481, - 45.485369 - ], - [ - -73.475698, - 45.485529 - ], - [ - -73.475956, - 45.48572 - ], - [ - -73.475583, - 45.485981 - ], - [ - -73.475157, - 45.486287 - ], - [ - -73.475578, - 45.486575 - ], - [ - -73.475879, - 45.486783 - ], - [ - -73.475994, - 45.486863 - ], - [ - -73.475863, - 45.486966 - ], - [ - -73.475741, - 45.487061 - ], - [ - -73.475345, - 45.487344 - ], - [ - -73.475065, - 45.487542 - ], - [ - -73.475389, - 45.487764 - ], - [ - -73.475446, - 45.487803 - ], - [ - -73.475597, - 45.487907 - ], - [ - -73.47601, - 45.48819 - ], - [ - -73.476259, - 45.488424 - ], - [ - -73.476492, - 45.488586 - ], - [ - -73.476696, - 45.48846 - ], - [ - -73.476748, - 45.488432 - ], - [ - -73.476789, - 45.488411 - ], - [ - -73.478723, - 45.489788 - ], - [ - -73.479125, - 45.490075 - ], - [ - -73.479214, - 45.490139 - ], - [ - -73.481409, - 45.491696 - ], - [ - -73.481459, - 45.491729 - ], - [ - -73.481545, - 45.491786 - ], - [ - -73.481575, - 45.491826 - ], - [ - -73.481586, - 45.49184 - ], - [ - -73.481557, - 45.491867 - ], - [ - -73.481502, - 45.491907 - ], - [ - -73.481312, - 45.492051 - ], - [ - -73.481761, - 45.492348 - ], - [ - -73.481942, - 45.492468 - ], - [ - -73.483946, - 45.493787 - ], - [ - -73.483989, - 45.493816 - ], - [ - -73.48407, - 45.49387 - ], - [ - -73.484957, - 45.493231 - ], - [ - -73.486027, - 45.492477 - ], - [ - -73.486068, - 45.492448 - ], - [ - -73.486525, - 45.49212 - ], - [ - -73.486777, - 45.49194 - ], - [ - -73.486792, - 45.491931 - ], - [ - -73.487065, - 45.491769 - ], - [ - -73.487303, - 45.491621 - ], - [ - -73.487383, - 45.491571 - ], - [ - -73.48867, - 45.490802 - ], - [ - -73.489415, - 45.490353 - ], - [ - -73.489454, - 45.490329 - ], - [ - -73.49048, - 45.489717 - ], - [ - -73.491292, - 45.489225 - ], - [ - -73.491548, - 45.48907 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.492138, - 45.488647 - ], - [ - -73.492246, - 45.488512 - ], - [ - -73.492413, - 45.48862 - ], - [ - -73.492658, - 45.488782 - ], - [ - -73.492831, - 45.488903 - ], - [ - -73.493002, - 45.489025 - ], - [ - -73.493023, - 45.48904 - ], - [ - -73.493685, - 45.489511 - ], - [ - -73.494044, - 45.489767 - ], - [ - -73.494323, - 45.489971 - ], - [ - -73.494463, - 45.490073 - ], - [ - -73.495016, - 45.490456 - ], - [ - -73.495224, - 45.490582 - ], - [ - -73.495457, - 45.490703 - ], - [ - -73.495685, - 45.490802 - ], - [ - -73.495827, - 45.490838 - ], - [ - -73.495887, - 45.490845 - ], - [ - -73.495938, - 45.490852 - ], - [ - -73.496542, - 45.490861 - ], - [ - -73.497071, - 45.49087 - ], - [ - -73.497636, - 45.490865 - ], - [ - -73.49822, - 45.490861 - ], - [ - -73.49837, - 45.490865 - ], - [ - -73.498703, - 45.49087 - ], - [ - -73.499037, - 45.490881 - ], - [ - -73.499099, - 45.490883 - ], - [ - -73.499523, - 45.490883 - ], - [ - -73.500019, - 45.490892 - ], - [ - -73.500399, - 45.490897 - ], - [ - -73.50083, - 45.4909 - ], - [ - -73.500934, - 45.490901 - ], - [ - -73.501389, - 45.49091 - ], - [ - -73.502611, - 45.490928 - ], - [ - -73.502759, - 45.49091 - ], - [ - -73.502923, - 45.490879 - ], - [ - -73.503314, - 45.490753 - ], - [ - -73.503637, - 45.490636 - ], - [ - -73.503868, - 45.49055 - ], - [ - -73.504078, - 45.490474 - ], - [ - -73.504178, - 45.490438 - ], - [ - -73.504792, - 45.490226 - ], - [ - -73.504891, - 45.490195 - ], - [ - -73.505021, - 45.490186 - ], - [ - -73.505151, - 45.490177 - ], - [ - -73.505178, - 45.490177 - ], - [ - -73.505337, - 45.490177 - ], - [ - -73.5071, - 45.490203 - ], - [ - -73.508965, - 45.49023 - ], - [ - -73.509541, - 45.490235 - ], - [ - -73.509559, - 45.490235 - ], - [ - -73.510213, - 45.490248 - ], - [ - -73.51084, - 45.490256 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.511281, - 45.490797 - ], - [ - -73.512404, - 45.492412 - ], - [ - -73.512433, - 45.492471 - ], - [ - -73.51245, - 45.492507 - ], - [ - -73.512764, - 45.493074 - ], - [ - -73.512921, - 45.493393 - ], - [ - -73.512971, - 45.493496 - ], - [ - -73.512984, - 45.493515 - ], - [ - -73.513094, - 45.493766 - ], - [ - -73.513261, - 45.494078 - ], - [ - -73.513283, - 45.494149 - ], - [ - -73.513342, - 45.494287 - ], - [ - -73.513459, - 45.494626 - ], - [ - -73.513505, - 45.494783 - ], - [ - -73.513561, - 45.49499 - ], - [ - -73.513604, - 45.495179 - ], - [ - -73.513621, - 45.495251 - ], - [ - -73.513692, - 45.495557 - ], - [ - -73.513776, - 45.495934 - ], - [ - -73.513786, - 45.49598 - ], - [ - -73.51384, - 45.496187 - ], - [ - -73.513899, - 45.496425 - ], - [ - -73.513925, - 45.49652 - ], - [ - -73.513974, - 45.496613 - ], - [ - -73.513974, - 45.496614 - ], - [ - -73.514009, - 45.496686 - ], - [ - -73.514054, - 45.496749 - ], - [ - -73.514104, - 45.49683 - ], - [ - -73.514166, - 45.496911 - ], - [ - -73.514219, - 45.49697 - ], - [ - -73.514552, - 45.497478 - ], - [ - -73.514769, - 45.497838 - ], - [ - -73.515085, - 45.498391 - ], - [ - -73.51517, - 45.49854 - ], - [ - -73.515566, - 45.499256 - ], - [ - -73.515623, - 45.499359 - ], - [ - -73.515674, - 45.499453 - ], - [ - -73.515873, - 45.499831 - ], - [ - -73.515977, - 45.500074 - ], - [ - -73.516146, - 45.500501 - ], - [ - -73.516373, - 45.50114 - ], - [ - -73.51647, - 45.501401 - ], - [ - -73.516588, - 45.501702 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517435, - 45.505274 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517232, - 45.507288 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517561, - 45.50922 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517796, - 45.511432 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517596, - 45.513253 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518267, - 45.515317 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518976, - 45.51675 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520113, - 45.519731 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520194, - 45.520238 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.521017, - 45.523892 - ], - [ - -73.521053, - 45.523883 - ], - [ - -73.521061, - 45.523869 - ], - [ - -73.521065, - 45.523851 - ], - [ - -73.521071, - 45.523799 - ] - ] - }, - "id": 47, - "properties": { - "id": "2f462117-29ad-4656-b383-3157c683ebf6", - "data": { - "gtfs": { - "shape_id": "15_3_R" - }, - "segments": [ - { - "distanceMeters": 1006, - "travelTimeSeconds": 240 - }, - { - "distanceMeters": 10887, - "travelTimeSeconds": 1140 - }, - { - "distanceMeters": 629, - "travelTimeSeconds": 148 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 330, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 358, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 100, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 397, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 348, - "travelTimeSeconds": 102 - }, - { - "distanceMeters": 605, - "travelTimeSeconds": 178 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 372, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 23219, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4556.682714136112, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.24, - "travelTimeWithoutDwellTimesSeconds": 3720, - "operatingTimeWithLayoverTimeSeconds": 4092, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3720, - "operatingSpeedWithLayoverMetersPerSecond": 5.67, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.24 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", - "0f8ef5e7-ff7c-4097-8d8a-9727f12190ea", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", - "3a8b9936-4595-4770-a3f4-b31253602356", - "82735dcc-3897-4e4c-87e8-45ee1dacedaa", - "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", - "d73e4ff6-4502-4376-9cf1-5410d307a82f", - "c04702f7-b2cf-440e-a6da-0a84aefc3963", - "784b0f22-55ff-44d1-a754-ddad81fb81cd", - "96e97125-39ff-47a9-b41d-043c4ca5c57e", - "c2e1b4a6-db9f-4050-848a-68486b390a21", - "a4f163e1-b90e-4fc3-82f3-f03b3181860d", - "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", - "c229b499-645e-4877-8f57-0fc6de2a8d53", - "3c04c568-5ef2-4b47-8d34-b0d175358d60", - "a5c03062-e324-4cb7-8c59-00c59a14b63e", - "1e205a49-fad6-428c-9d0c-b4018473837d", - "ac9a9c14-57c3-4a81-9316-ceca9586731d", - "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", - "c4f08e33-183e-41cf-9f96-5985f148bd11", - "3040b262-0b20-4c40-9350-e484adfe1d60", - "ff721ee3-8729-47c1-80cd-7dd5e7142284", - "f132c08e-1812-4b2f-84fb-340628d1ac39", - "5573bb7b-19f0-4d2b-a66d-9f04f87c1987", - "1bded3cb-51a3-422d-8815-a9027023991e", - "fa220212-b6b2-4456-934f-7248f9884444", - "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", - "1fc11ea4-4e32-4f30-8519-34208d0f8931", - "1fa03421-8026-43d9-b21a-b3e57dfa43c2", - "d67aee3e-be1e-429b-b464-c7a6549e761a", - "51191948-9067-4256-853f-d80a1333a164", - "602dc8fb-62ff-45ed-888f-4b4172318b5d", - "5224c05b-57d6-4d5c-87fd-b9e78147c66e", - "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "114aaaad-d40e-4930-853f-ef5cebdd299f", - "0b09b82c-ec97-406d-9f1c-690cc935b5ea", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "2259b112-2e60-4bcc-ad14-9e0e577f2909", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "caa5c2ab-ae9e-4ae0-ba88-9e89b43e54e6", - "segments": [ - 0, - 23, - 173, - 194, - 198, - 206, - 213, - 220, - 234, - 241, - 244, - 246, - 250, - 255, - 270, - 275, - 282, - 285, - 290, - 295, - 302, - 308, - 311, - 314, - 323, - 327, - 333, - 336, - 339, - 348, - 351, - 358, - 366, - 371, - 386, - 388, - 391, - 393, - 397, - 413, - 429, - 437, - 450, - 456, - 461, - 467, - 473, - 481, - 488, - 496 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 47, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521447, - 45.524278 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514253, - 45.51909 - ], - [ - -73.513885, - 45.518962 - ], - [ - -73.51387, - 45.518957 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513317, - 45.518773 - ], - [ - -73.51223, - 45.518422 - ], - [ - -73.509841, - 45.517649 - ], - [ - -73.506681, - 45.516623 - ], - [ - -73.506298, - 45.516497 - ], - [ - -73.506049, - 45.516416 - ], - [ - -73.505657, - 45.516295 - ], - [ - -73.504964, - 45.516065 - ], - [ - -73.504125, - 45.515804 - ], - [ - -73.503729, - 45.515701 - ], - [ - -73.503503, - 45.515692 - ], - [ - -73.5034, - 45.515678 - ], - [ - -73.503275, - 45.51566 - ], - [ - -73.503167, - 45.515633 - ], - [ - -73.50173, - 45.515183 - ], - [ - -73.501301, - 45.515044 - ], - [ - -73.499299, - 45.514405 - ], - [ - -73.497625, - 45.513876 - ], - [ - -73.495825, - 45.513307 - ], - [ - -73.495774, - 45.513384 - ], - [ - -73.495274, - 45.514166 - ], - [ - -73.493537, - 45.513618 - ], - [ - -73.492199, - 45.513195 - ], - [ - -73.489123, - 45.5122 - ], - [ - -73.486057, - 45.511196 - ], - [ - -73.486501, - 45.51053 - ], - [ - -73.487874, - 45.508506 - ], - [ - -73.486813, - 45.508173 - ], - [ - -73.486125, - 45.507943 - ], - [ - -73.485803, - 45.507835 - ], - [ - -73.48473, - 45.507484 - ], - [ - -73.483392, - 45.509518 - ], - [ - -73.482934, - 45.510206 - ], - [ - -73.482482, - 45.510894 - ], - [ - -73.482007, - 45.511596 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.481183, - 45.51286 - ], - [ - -73.480785, - 45.513459 - ], - [ - -73.480359, - 45.514111 - ], - [ - -73.479924, - 45.514777 - ], - [ - -73.479817, - 45.515002 - ], - [ - -73.479797, - 45.515146 - ], - [ - -73.479857, - 45.515614 - ], - [ - -73.479464, - 45.516153 - ], - [ - -73.479072, - 45.516698 - ], - [ - -73.478676, - 45.517242 - ], - [ - -73.478269, - 45.517795 - ], - [ - -73.477613, - 45.5187 - ], - [ - -73.477254, - 45.51923 - ], - [ - -73.47683, - 45.519802 - ], - [ - -73.476473, - 45.520306 - ], - [ - -73.476081, - 45.520845 - ], - [ - -73.475434, - 45.521732 - ], - [ - -73.475294, - 45.521907 - ], - [ - -73.474964, - 45.522388 - ], - [ - -73.474526, - 45.522973 - ], - [ - -73.474023, - 45.523693 - ], - [ - -73.473762, - 45.524053 - ], - [ - -73.473573, - 45.524314 - ], - [ - -73.473363, - 45.524597 - ], - [ - -73.472912, - 45.525223 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.473913, - 45.528009 - ], - [ - -73.4736, - 45.528588 - ], - [ - -73.47246, - 45.530725 - ], - [ - -73.471309, - 45.532862 - ], - [ - -73.470158, - 45.534994 - ], - [ - -73.469167, - 45.536827 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.468965, - 45.537225 - ], - [ - -73.468894, - 45.537383 - ], - [ - -73.468817, - 45.537577 - ], - [ - -73.468811, - 45.537594 - ], - [ - -73.468727, - 45.537968 - ], - [ - -73.468709, - 45.538089 - ], - [ - -73.468533, - 45.538881 - ], - [ - -73.468315, - 45.539866 - ], - [ - -73.468289, - 45.539983 - ], - [ - -73.468097, - 45.539977 - ], - [ - -73.468001, - 45.539975 - ], - [ - -73.467889, - 45.539974 - ], - [ - -73.467676, - 45.539978 - ], - [ - -73.467668, - 45.539978 - ], - [ - -73.467407, - 45.539989 - ], - [ - -73.467341, - 45.540003 - ], - [ - -73.467302, - 45.540031 - ], - [ - -73.466892, - 45.540019 - ], - [ - -73.466727, - 45.539999 - ], - [ - -73.466559, - 45.539965 - ], - [ - -73.466407, - 45.539932 - ], - [ - -73.466227, - 45.539907 - ], - [ - -73.466142, - 45.539902 - ], - [ - -73.466115, - 45.539901 - ], - [ - -73.46602, - 45.539896 - ], - [ - -73.465927, - 45.539898 - ], - [ - -73.465848, - 45.539899 - ], - [ - -73.465709, - 45.539906 - ], - [ - -73.4656, - 45.539921 - ], - [ - -73.465482, - 45.539933 - ], - [ - -73.465335, - 45.539946 - ], - [ - -73.465216, - 45.539952 - ], - [ - -73.465098, - 45.539953 - ], - [ - -73.464951, - 45.539943 - ], - [ - -73.464825, - 45.539928 - ], - [ - -73.464679, - 45.539901 - ], - [ - -73.464558, - 45.53987 - ], - [ - -73.464497, - 45.539849 - ], - [ - -73.464445, - 45.539835 - ], - [ - -73.464385, - 45.539815 - ], - [ - -73.464334, - 45.539792 - ], - [ - -73.464269, - 45.539763 - ], - [ - -73.464231, - 45.539745 - ], - [ - -73.46418, - 45.539719 - ], - [ - -73.46414, - 45.539697 - ], - [ - -73.464104, - 45.539676 - ], - [ - -73.464064, - 45.539651 - ], - [ - -73.464033, - 45.539628 - ], - [ - -73.464012, - 45.539613 - ], - [ - -73.463967, - 45.539581 - ], - [ - -73.463917, - 45.539539 - ], - [ - -73.463869, - 45.5395 - ], - [ - -73.463819, - 45.53946 - ], - [ - -73.463797, - 45.539442 - ], - [ - -73.463513, - 45.539212 - ], - [ - -73.463464, - 45.539174 - ], - [ - -73.463271, - 45.539023 - ], - [ - -73.463118, - 45.538911 - ], - [ - -73.462874, - 45.538753 - ], - [ - -73.462697, - 45.53865 - ], - [ - -73.462534, - 45.538551 - ], - [ - -73.462187, - 45.53833 - ], - [ - -73.461979, - 45.538182 - ], - [ - -73.461864, - 45.5381 - ], - [ - -73.462038, - 45.537968 - ], - [ - -73.462556, - 45.537575 - ], - [ - -73.462834, - 45.537383 - ], - [ - -73.462922, - 45.537322 - ], - [ - -73.463661, - 45.536866 - ], - [ - -73.464142, - 45.536599 - ] - ] - }, - "id": 48, - "properties": { - "id": "d6aff7e7-242e-4687-850a-47ce020c715b", - "data": { - "gtfs": { - "shape_id": "16_1_R" - }, - "segments": [ - { - "distanceMeters": 8467, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 55 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9109, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 489.23963093037503, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 50.6, - "travelTimeWithoutDwellTimesSeconds": 180, - "operatingTimeWithLayoverTimeSeconds": 360, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 180, - "operatingSpeedWithLayoverMetersPerSecond": 25.3, - "averageSpeedWithoutDwellTimesMetersPerSecond": 50.6 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "248781a4-a949-4c45-bc5a-1de80211510e", - "8e9d3a93-2217-4362-8631-6cc69bd428bc", - "497c7cbc-7c2a-4684-ae90-71dc2a66863f", - "a392bf4c-9790-451e-a9bc-51428fa10a69", - "faaa7c6f-4c6c-443c-99d4-d4c617571545" - ], - "stops": [], - "line_id": "6734327e-76ec-466a-92d6-5f25c26609a3", - "segments": [ - 0, - 156, - 179, - 193 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 48, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.464142, - 45.536599 - ], - [ - -73.464185, - 45.536575 - ], - [ - -73.464357, - 45.53646 - ], - [ - -73.4648, - 45.536162 - ], - [ - -73.465669, - 45.535586 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466031, - 45.535615 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.469167, - 45.536827 - ], - [ - -73.469246, - 45.53668 - ], - [ - -73.47012, - 45.535065 - ], - [ - -73.470158, - 45.534994 - ], - [ - -73.470714, - 45.533963 - ], - [ - -73.471258, - 45.532955 - ], - [ - -73.471309, - 45.532862 - ], - [ - -73.472404, - 45.530829 - ], - [ - -73.47246, - 45.530725 - ], - [ - -73.473536, - 45.528708 - ], - [ - -73.4736, - 45.528588 - ], - [ - -73.474476, - 45.526968 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.474181, - 45.526055 - ], - [ - -73.474041, - 45.525469 - ], - [ - -73.474012, - 45.525344 - ], - [ - -73.473793, - 45.524566 - ], - [ - -73.47377, - 45.524471 - ], - [ - -73.47381, - 45.524417 - ], - [ - -73.473749, - 45.524215 - ], - [ - -73.473762, - 45.524053 - ], - [ - -73.473925, - 45.523828 - ], - [ - -73.474023, - 45.523693 - ], - [ - -73.474526, - 45.522973 - ], - [ - -73.474883, - 45.522496 - ], - [ - -73.474964, - 45.522388 - ], - [ - -73.475294, - 45.521907 - ], - [ - -73.475434, - 45.521732 - ], - [ - -73.47601, - 45.520943 - ], - [ - -73.476081, - 45.520845 - ], - [ - -73.476473, - 45.520306 - ], - [ - -73.476726, - 45.519948 - ], - [ - -73.47683, - 45.519802 - ], - [ - -73.477254, - 45.51923 - ], - [ - -73.477535, - 45.518815 - ], - [ - -73.477613, - 45.5187 - ], - [ - -73.478269, - 45.517795 - ], - [ - -73.478433, - 45.517573 - ], - [ - -73.478676, - 45.517242 - ], - [ - -73.479072, - 45.516698 - ], - [ - -73.479387, - 45.51626 - ], - [ - -73.479464, - 45.516153 - ], - [ - -73.479857, - 45.515614 - ], - [ - -73.479797, - 45.515146 - ], - [ - -73.479817, - 45.515002 - ], - [ - -73.479857, - 45.514918 - ], - [ - -73.479924, - 45.514777 - ], - [ - -73.480359, - 45.514111 - ], - [ - -73.480636, - 45.513686 - ], - [ - -73.480785, - 45.513459 - ], - [ - -73.481183, - 45.51286 - ], - [ - -73.481519, - 45.512359 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.482007, - 45.511596 - ], - [ - -73.482482, - 45.510894 - ], - [ - -73.482838, - 45.510351 - ], - [ - -73.482934, - 45.510206 - ], - [ - -73.483392, - 45.509518 - ], - [ - -73.483643, - 45.509137 - ], - [ - -73.484625, - 45.507644 - ], - [ - -73.48473, - 45.507484 - ], - [ - -73.485803, - 45.507835 - ], - [ - -73.486509, - 45.508072 - ], - [ - -73.486548, - 45.508085 - ], - [ - -73.486813, - 45.508173 - ], - [ - -73.487583, - 45.508414 - ], - [ - -73.487874, - 45.508506 - ], - [ - -73.487054, - 45.509716 - ], - [ - -73.486501, - 45.51053 - ], - [ - -73.486286, - 45.510853 - ], - [ - -73.486057, - 45.511196 - ], - [ - -73.488947, - 45.512142 - ], - [ - -73.489123, - 45.5122 - ], - [ - -73.492032, - 45.513141 - ], - [ - -73.492199, - 45.513195 - ], - [ - -73.49492, - 45.514055 - ], - [ - -73.495105, - 45.514113 - ], - [ - -73.495274, - 45.514166 - ], - [ - -73.495685, - 45.513522 - ], - [ - -73.495774, - 45.513384 - ], - [ - -73.498919, - 45.514378 - ], - [ - -73.498948, - 45.514387 - ], - [ - -73.499247, - 45.514482 - ], - [ - -73.501079, - 45.515065 - ], - [ - -73.501252, - 45.51512 - ], - [ - -73.501676, - 45.515264 - ], - [ - -73.503119, - 45.515714 - ], - [ - -73.503239, - 45.515746 - ], - [ - -73.503354, - 45.515767 - ], - [ - -73.503487, - 45.515791 - ], - [ - -73.503653, - 45.515813 - ], - [ - -73.504061, - 45.515903 - ], - [ - -73.504906, - 45.516155 - ], - [ - -73.505384, - 45.51631 - ], - [ - -73.505601, - 45.51638 - ], - [ - -73.506087, - 45.516538 - ], - [ - -73.506374, - 45.516632 - ], - [ - -73.506766, - 45.516758 - ], - [ - -73.50699, - 45.51683 - ], - [ - -73.509633, - 45.517686 - ], - [ - -73.509783, - 45.517734 - ], - [ - -73.512008, - 45.518454 - ], - [ - -73.512173, - 45.518508 - ], - [ - -73.513531, - 45.51895 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.514988, - 45.519418 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518883, - 45.520626 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 49, - "properties": { - "id": "39899692-106a-4937-8418-0872b179c20d", - "data": { - "gtfs": { - "shape_id": "16_1_A" - }, - "segments": [ - { - "distanceMeters": 164, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 581, - "travelTimeSeconds": 102 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 92, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 93, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 746, - "travelTimeSeconds": 131 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8325, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4659.205117515161, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.55, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 4.95, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.55 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "faaa7c6f-4c6c-443c-99d4-d4c617571545", - "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", - "523fb848-4048-4ab2-8e1c-32aab05ea63f", - "c2c8c1e8-4373-4b59-91c6-b04f7c4c1d76", - "eba98b16-12e9-4172-bbf2-62d1e69950a5", - "e709ab81-b01c-47b3-a19c-63757b8320b0", - "98c75cb8-58bc-4128-adc4-4f1198e685a1", - "f4167a64-c457-459d-9c74-9540f2c76889", - "75f82802-187b-4386-b435-5da7ab066898", - "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", - "bad427d3-2698-4efd-8d52-2bc92f049d64", - "242c7269-ce0d-45c7-8356-927308e89900", - "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", - "40cc5489-ce8f-4df1-916b-c682450d39d7", - "6519add4-6360-4c95-9945-0c2d867f68d6", - "d3bdcdd3-55f8-4e08-a7fc-b8e6dbef8ce7", - "65d27cdb-34eb-4bce-af66-d925b6cbeb28", - "e1825eb4-cef2-4f98-872f-0d169be63859", - "5ab29327-5bbe-43e2-9d7f-42e3ca97dbcb", - "79a61958-f84e-477b-8bcf-aa304101e537", - "2e045adb-bebd-4da6-b99a-63531ab62f07", - "ec8cd08f-9336-4f9e-945b-09c8eb5b3620", - "0f8d4bf1-fdee-4df3-8471-0b6ede606755", - "808ef7d7-1aa0-4a40-a96d-0615a6e712b5", - "6ab67241-b06e-417b-b6fb-88a16df29924", - "229965c6-9bf9-414c-9970-4f7b1b31441b", - "d76fa63a-1787-4749-9166-b1ecce1f4af2", - "2c0958f9-14bd-4467-9157-d96db49f68da", - "4a0c512f-2ce4-41cc-a200-cf81d75487c1", - "09272548-09d5-4afa-a45f-80ba6dd656dd", - "4070ca4c-584b-43bd-a874-a91871fdf63a", - "9e3f5b7f-c832-420a-b6d0-a87946ebafd2", - "d2f3e0fa-8998-4ca4-96de-f858c0088aad", - "60f00f0f-eca3-4ad1-beab-4b6811c87e8c", - "e66fb997-f83d-42a0-a232-e5b0a94a0caf", - "608948b3-8ac4-493b-a2b3-48bd266c12ab", - "9da92501-0f80-4a3e-b324-83bbfa32d05c", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "6734327e-76ec-466a-92d6-5f25c26609a3", - "segments": [ - 0, - 4, - 19, - 22, - 24, - 26, - 28, - 32, - 39, - 42, - 46, - 49, - 52, - 55, - 58, - 63, - 66, - 69, - 73, - 76, - 77, - 80, - 83, - 85, - 87, - 89, - 91, - 94, - 96, - 98, - 101, - 106, - 111, - 116, - 117, - 119, - 121, - 126, - 132 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 49, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521447, - 45.524278 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519255, - 45.520728 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514994, - 45.519327 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514253, - 45.51909 - ], - [ - -73.513885, - 45.518962 - ], - [ - -73.51387, - 45.518957 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513317, - 45.518773 - ], - [ - -73.512368, - 45.518467 - ], - [ - -73.51223, - 45.518422 - ], - [ - -73.510168, - 45.517754 - ], - [ - -73.509841, - 45.517649 - ], - [ - -73.506887, - 45.51669 - ], - [ - -73.506681, - 45.516623 - ], - [ - -73.506298, - 45.516497 - ], - [ - -73.506049, - 45.516416 - ], - [ - -73.505657, - 45.516295 - ], - [ - -73.505303, - 45.516177 - ], - [ - -73.504964, - 45.516065 - ], - [ - -73.504125, - 45.515804 - ], - [ - -73.503871, - 45.515738 - ], - [ - -73.503729, - 45.515701 - ], - [ - -73.503503, - 45.515692 - ], - [ - -73.5034, - 45.515678 - ], - [ - -73.503275, - 45.51566 - ], - [ - -73.503167, - 45.515633 - ], - [ - -73.50173, - 45.515183 - ], - [ - -73.501442, - 45.51509 - ], - [ - -73.501301, - 45.515044 - ], - [ - -73.499299, - 45.514405 - ], - [ - -73.49884, - 45.51426 - ], - [ - -73.497625, - 45.513876 - ], - [ - -73.495825, - 45.513307 - ], - [ - -73.495774, - 45.513384 - ], - [ - -73.495336, - 45.51407 - ], - [ - -73.495274, - 45.514166 - ], - [ - -73.493537, - 45.513618 - ], - [ - -73.492199, - 45.513195 - ], - [ - -73.49151, - 45.512972 - ], - [ - -73.489205, - 45.512226 - ], - [ - -73.489123, - 45.5122 - ], - [ - -73.486254, - 45.511261 - ], - [ - -73.486057, - 45.511196 - ], - [ - -73.486501, - 45.51053 - ], - [ - -73.486844, - 45.510025 - ], - [ - -73.487818, - 45.508589 - ], - [ - -73.487874, - 45.508506 - ], - [ - -73.486813, - 45.508173 - ], - [ - -73.486125, - 45.507943 - ], - [ - -73.486071, - 45.507925 - ], - [ - -73.485803, - 45.507835 - ], - [ - -73.484864, - 45.507528 - ], - [ - -73.48473, - 45.507484 - ], - [ - -73.483847, - 45.508827 - ], - [ - -73.483392, - 45.509518 - ], - [ - -73.482968, - 45.510155 - ], - [ - -73.482934, - 45.510206 - ], - [ - -73.482482, - 45.510894 - ], - [ - -73.482007, - 45.511596 - ], - [ - -73.481647, - 45.512162 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.481183, - 45.51286 - ], - [ - -73.480818, - 45.513409 - ], - [ - -73.480785, - 45.513459 - ], - [ - -73.480359, - 45.514111 - ], - [ - -73.479964, - 45.514716 - ], - [ - -73.479924, - 45.514777 - ], - [ - -73.479817, - 45.515002 - ], - [ - -73.479797, - 45.515146 - ], - [ - -73.479857, - 45.515614 - ], - [ - -73.479515, - 45.516084 - ], - [ - -73.479464, - 45.516153 - ], - [ - -73.479072, - 45.516698 - ], - [ - -73.478744, - 45.51715 - ], - [ - -73.478676, - 45.517242 - ], - [ - -73.478269, - 45.517795 - ], - [ - -73.477664, - 45.51863 - ], - [ - -73.477613, - 45.5187 - ], - [ - -73.477254, - 45.51923 - ], - [ - -73.476894, - 45.519716 - ], - [ - -73.47683, - 45.519802 - ], - [ - -73.476473, - 45.520306 - ], - [ - -73.476149, - 45.520751 - ], - [ - -73.476081, - 45.520845 - ], - [ - -73.475434, - 45.521732 - ], - [ - -73.475294, - 45.521907 - ], - [ - -73.474988, - 45.522353 - ], - [ - -73.474964, - 45.522388 - ], - [ - -73.474526, - 45.522973 - ], - [ - -73.474023, - 45.523693 - ], - [ - -73.473878, - 45.523893 - ], - [ - -73.473762, - 45.524053 - ], - [ - -73.473573, - 45.524314 - ], - [ - -73.473363, - 45.524597 - ], - [ - -73.472912, - 45.525223 - ], - [ - -73.472895, - 45.525246 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.474467, - 45.526388 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.473913, - 45.528009 - ], - [ - -73.47364, - 45.528514 - ], - [ - -73.4736, - 45.528588 - ], - [ - -73.472499, - 45.530652 - ], - [ - -73.47246, - 45.530725 - ], - [ - -73.471358, - 45.53277 - ], - [ - -73.471309, - 45.532862 - ], - [ - -73.470211, - 45.534897 - ], - [ - -73.470158, - 45.534994 - ], - [ - -73.46917, - 45.536821 - ], - [ - -73.469167, - 45.536827 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.468965, - 45.537225 - ], - [ - -73.468894, - 45.537383 - ], - [ - -73.468817, - 45.537577 - ], - [ - -73.468816, - 45.53758 - ], - [ - -73.468811, - 45.537594 - ], - [ - -73.468727, - 45.537968 - ], - [ - -73.468709, - 45.538089 - ], - [ - -73.468533, - 45.538881 - ], - [ - -73.468315, - 45.539866 - ], - [ - -73.468314, - 45.539871 - ], - [ - -73.468289, - 45.539983 - ], - [ - -73.468097, - 45.539977 - ], - [ - -73.468001, - 45.539975 - ], - [ - -73.467889, - 45.539974 - ], - [ - -73.467676, - 45.539978 - ], - [ - -73.467668, - 45.539978 - ], - [ - -73.467407, - 45.539989 - ], - [ - -73.467341, - 45.540003 - ], - [ - -73.467302, - 45.540031 - ], - [ - -73.466892, - 45.540019 - ], - [ - -73.466727, - 45.539999 - ], - [ - -73.466559, - 45.539965 - ], - [ - -73.466407, - 45.539932 - ], - [ - -73.466227, - 45.539907 - ], - [ - -73.466142, - 45.539902 - ], - [ - -73.466115, - 45.539901 - ], - [ - -73.46602, - 45.539896 - ], - [ - -73.465927, - 45.539898 - ], - [ - -73.465848, - 45.539899 - ], - [ - -73.465709, - 45.539906 - ], - [ - -73.4656, - 45.539921 - ], - [ - -73.465482, - 45.539933 - ], - [ - -73.465335, - 45.539946 - ], - [ - -73.465216, - 45.539952 - ], - [ - -73.465098, - 45.539953 - ], - [ - -73.464951, - 45.539943 - ], - [ - -73.464825, - 45.539928 - ], - [ - -73.464679, - 45.539901 - ], - [ - -73.464558, - 45.53987 - ], - [ - -73.464497, - 45.539849 - ], - [ - -73.464445, - 45.539835 - ], - [ - -73.464385, - 45.539815 - ], - [ - -73.464334, - 45.539792 - ], - [ - -73.464269, - 45.539763 - ], - [ - -73.464231, - 45.539745 - ], - [ - -73.46418, - 45.539719 - ], - [ - -73.46414, - 45.539697 - ], - [ - -73.464104, - 45.539676 - ], - [ - -73.464064, - 45.539651 - ], - [ - -73.464033, - 45.539628 - ], - [ - -73.464012, - 45.539613 - ], - [ - -73.463967, - 45.539581 - ], - [ - -73.463917, - 45.539539 - ], - [ - -73.463869, - 45.5395 - ], - [ - -73.463819, - 45.53946 - ], - [ - -73.463797, - 45.539442 - ], - [ - -73.463513, - 45.539212 - ], - [ - -73.463464, - 45.539174 - ], - [ - -73.463271, - 45.539023 - ], - [ - -73.463118, - 45.538911 - ], - [ - -73.462874, - 45.538753 - ], - [ - -73.462697, - 45.53865 - ], - [ - -73.462534, - 45.538551 - ], - [ - -73.462187, - 45.53833 - ], - [ - -73.461979, - 45.538182 - ], - [ - -73.461864, - 45.5381 - ], - [ - -73.462038, - 45.537968 - ], - [ - -73.462556, - 45.537575 - ], - [ - -73.462834, - 45.537383 - ], - [ - -73.462922, - 45.537322 - ], - [ - -73.463661, - 45.536866 - ], - [ - -73.464142, - 45.536599 - ] - ] - }, - "id": 50, - "properties": { - "id": "64fcc99e-18d9-414f-aa95-4b36a8b58304", - "data": { - "gtfs": { - "shape_id": "16_1_R" - }, - "segments": [ - { - "distanceMeters": 764, - "travelTimeSeconds": 114 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 334, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 104, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 89, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 55 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9109, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4659.205117515161, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.07, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 5.42, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.07 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "608948b3-8ac4-493b-a2b3-48bd266c12ab", - "e66fb997-f83d-42a0-a232-e5b0a94a0caf", - "aaca7ee9-974a-47d8-922b-2905590b6265", - "37e8736b-c9d0-4a33-a437-1f0196c113f1", - "9e3f5b7f-c832-420a-b6d0-a87946ebafd2", - "4070ca4c-584b-43bd-a874-a91871fdf63a", - "09272548-09d5-4afa-a45f-80ba6dd656dd", - "2c0958f9-14bd-4467-9157-d96db49f68da", - "d76fa63a-1787-4749-9166-b1ecce1f4af2", - "229965c6-9bf9-414c-9970-4f7b1b31441b", - "6ab67241-b06e-417b-b6fb-88a16df29924", - "808ef7d7-1aa0-4a40-a96d-0615a6e712b5", - "0f8d4bf1-fdee-4df3-8471-0b6ede606755", - "ec8cd08f-9336-4f9e-945b-09c8eb5b3620", - "2e045adb-bebd-4da6-b99a-63531ab62f07", - "79a61958-f84e-477b-8bcf-aa304101e537", - "5ab29327-5bbe-43e2-9d7f-42e3ca97dbcb", - "e1825eb4-cef2-4f98-872f-0d169be63859", - "65d27cdb-34eb-4bce-af66-d925b6cbeb28", - "d3bdcdd3-55f8-4e08-a7fc-b8e6dbef8ce7", - "6519add4-6360-4c95-9945-0c2d867f68d6", - "40cc5489-ce8f-4df1-916b-c682450d39d7", - "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", - "242c7269-ce0d-45c7-8356-927308e89900", - "bad427d3-2698-4efd-8d52-2bc92f049d64", - "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", - "75f82802-187b-4386-b435-5da7ab066898", - "471a40a2-ebb0-4658-a772-8036d064636d", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "e709ab81-b01c-47b3-a19c-63757b8320b0", - "eba98b16-12e9-4172-bbf2-62d1e69950a5", - "c2c8c1e8-4373-4b59-91c6-b04f7c4c1d76", - "523fb848-4048-4ab2-8e1c-32aab05ea63f", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "7173d99c-f55d-41f4-8d2d-0266835b40ee", - "248781a4-a949-4c45-bc5a-1de80211510e", - "8e9d3a93-2217-4362-8631-6cc69bd428bc", - "497c7cbc-7c2a-4684-ae90-71dc2a66863f", - "a392bf4c-9790-451e-a9bc-51428fa10a69", - "faaa7c6f-4c6c-443c-99d4-d4c617571545" - ], - "stops": [], - "line_id": "6734327e-76ec-466a-92d6-5f25c26609a3", - "segments": [ - 0, - 47, - 54, - 61, - 63, - 65, - 70, - 73, - 80, - 83, - 87, - 91, - 92, - 94, - 97, - 98, - 102, - 104, - 106, - 108, - 112, - 115, - 118, - 123, - 126, - 129, - 132, - 135, - 139, - 143, - 148, - 152, - 155, - 157, - 159, - 161, - 163, - 170, - 176, - 194, - 217, - 231 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 50, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.454682, - 45.529166 - ], - [ - -73.453608, - 45.528719 - ], - [ - -73.452477, - 45.528248 - ], - [ - -73.452419, - 45.528224 - ], - [ - -73.452095, - 45.528089 - ], - [ - -73.451849, - 45.527987 - ], - [ - -73.449902, - 45.527223 - ], - [ - -73.449586, - 45.5271 - ], - [ - -73.447563, - 45.526329 - ], - [ - -73.447243, - 45.526199 - ], - [ - -73.446596, - 45.52596 - ], - [ - -73.446438, - 45.5259 - ], - [ - -73.446254, - 45.525829 - ], - [ - -73.445479, - 45.525532 - ], - [ - -73.44525, - 45.525455 - ], - [ - -73.445048, - 45.525397 - ], - [ - -73.444823, - 45.525347 - ], - [ - -73.444706, - 45.525314 - ], - [ - -73.444476, - 45.525248 - ], - [ - -73.44392, - 45.525126 - ], - [ - -73.443091, - 45.524907 - ], - [ - -73.442951, - 45.524869 - ], - [ - -73.443148, - 45.524486 - ], - [ - -73.443474, - 45.523856 - ], - [ - -73.443491, - 45.523821 - ], - [ - -73.444106, - 45.522579 - ], - [ - -73.444165, - 45.522458 - ], - [ - -73.444264, - 45.522301 - ], - [ - -73.444322, - 45.522225 - ], - [ - -73.445357, - 45.520227 - ], - [ - -73.445616, - 45.519728 - ], - [ - -73.445708, - 45.519575 - ], - [ - -73.445857, - 45.519382 - ], - [ - -73.446092, - 45.519112 - ], - [ - -73.446094, - 45.51911 - ], - [ - -73.446119, - 45.519088 - ], - [ - -73.446373, - 45.518869 - ], - [ - -73.446684, - 45.518635 - ], - [ - -73.446958, - 45.518469 - ], - [ - -73.447199, - 45.518348 - ], - [ - -73.447381, - 45.518267 - ], - [ - -73.447421, - 45.518249 - ], - [ - -73.447546, - 45.518195 - ], - [ - -73.448019, - 45.518033 - ], - [ - -73.448706, - 45.517817 - ], - [ - -73.449343, - 45.51762 - ], - [ - -73.449753, - 45.517483 - ], - [ - -73.449921, - 45.517427 - ], - [ - -73.450143, - 45.517364 - ], - [ - -73.450409, - 45.517292 - ], - [ - -73.45071, - 45.517229 - ], - [ - -73.450716, - 45.517224 - ], - [ - -73.451295, - 45.517148 - ], - [ - -73.451523, - 45.517121 - ], - [ - -73.451693, - 45.517099 - ], - [ - -73.451894, - 45.517072 - ], - [ - -73.452053, - 45.517054 - ], - [ - -73.45224, - 45.517153 - ], - [ - -73.452412, - 45.517228 - ], - [ - -73.452518, - 45.517275 - ], - [ - -73.453808, - 45.5178 - ], - [ - -73.453999, - 45.517878 - ], - [ - -73.454088, - 45.517914 - ], - [ - -73.454547, - 45.518104 - ], - [ - -73.455195, - 45.518372 - ], - [ - -73.455625, - 45.518549 - ], - [ - -73.45631, - 45.518837 - ], - [ - -73.457047, - 45.519138 - ], - [ - -73.457149, - 45.51918 - ], - [ - -73.456893, - 45.519549 - ], - [ - -73.456808, - 45.519697 - ], - [ - -73.456763, - 45.519809 - ], - [ - -73.456747, - 45.519998 - ], - [ - -73.456743, - 45.520169 - ], - [ - -73.456867, - 45.520957 - ], - [ - -73.456881, - 45.521051 - ], - [ - -73.456916, - 45.521245 - ], - [ - -73.457007, - 45.521798 - ], - [ - -73.457018, - 45.521965 - ], - [ - -73.457007, - 45.522131 - ], - [ - -73.456977, - 45.522289 - ], - [ - -73.456948, - 45.522368 - ], - [ - -73.456942, - 45.522383 - ], - [ - -73.456878, - 45.522527 - ], - [ - -73.456684, - 45.5229 - ], - [ - -73.456573, - 45.523103 - ], - [ - -73.456502, - 45.523233 - ], - [ - -73.455971, - 45.52424 - ], - [ - -73.455885, - 45.524403 - ], - [ - -73.455699, - 45.524754 - ], - [ - -73.45556, - 45.52506 - ], - [ - -73.455515, - 45.525217 - ], - [ - -73.455492, - 45.525379 - ], - [ - -73.455505, - 45.525617 - ], - [ - -73.455556, - 45.52586 - ], - [ - -73.455725, - 45.526441 - ], - [ - -73.455731, - 45.526463 - ], - [ - -73.455785, - 45.526648 - ], - [ - -73.456034, - 45.52748 - ], - [ - -73.456081, - 45.527705 - ], - [ - -73.456084, - 45.527948 - ], - [ - -73.45603, - 45.528196 - ], - [ - -73.455955, - 45.528344 - ], - [ - -73.455795, - 45.528551 - ], - [ - -73.455586, - 45.528802 - ], - [ - -73.455542, - 45.528856 - ], - [ - -73.455189, - 45.52928 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.454978, - 45.529527 - ], - [ - -73.45507, - 45.529563 - ], - [ - -73.456261, - 45.530048 - ], - [ - -73.45729, - 45.530467 - ], - [ - -73.457482, - 45.530545 - ], - [ - -73.458332, - 45.530905 - ], - [ - -73.460581, - 45.531882 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.462027, - 45.532626 - ], - [ - -73.462751, - 45.533003 - ], - [ - -73.463699, - 45.533563 - ], - [ - -73.463873, - 45.533665 - ], - [ - -73.464875, - 45.534543 - ], - [ - -73.46573, - 45.535331 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.46881, - 45.537048 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469941, - 45.537318 - ], - [ - -73.470305, - 45.537406 - ], - [ - -73.470749, - 45.537487 - ], - [ - -73.471335, - 45.537563 - ], - [ - -73.471845, - 45.53759 - ], - [ - -73.471931, - 45.53759 - ], - [ - -73.472146, - 45.537591 - ], - [ - -73.472355, - 45.537591 - ], - [ - -73.473126, - 45.537555 - ], - [ - -73.473826, - 45.537492 - ], - [ - -73.474517, - 45.537429 - ], - [ - -73.474522, - 45.537429 - ], - [ - -73.474599, - 45.537423 - ], - [ - -73.475173, - 45.53738 - ], - [ - -73.47563, - 45.537344 - ], - [ - -73.476192, - 45.537353 - ], - [ - -73.476662, - 45.537394 - ], - [ - -73.477026, - 45.537434 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.477885, - 45.5376 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479503, - 45.53808 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.482474, - 45.538919 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484688, - 45.539728 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.485788, - 45.540122 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491035, - 45.541427 - ], - [ - -73.491084, - 45.541584 - ], - [ - -73.491099, - 45.541724 - ], - [ - -73.491104, - 45.541823 - ], - [ - -73.491106, - 45.541854 - ], - [ - -73.491092, - 45.542156 - ], - [ - -73.491081, - 45.542381 - ], - [ - -73.49104, - 45.543146 - ], - [ - -73.490998, - 45.543726 - ], - [ - -73.491037, - 45.544117 - ], - [ - -73.491071, - 45.544252 - ], - [ - -73.491113, - 45.544396 - ], - [ - -73.491272, - 45.544698 - ], - [ - -73.491367, - 45.544855 - ], - [ - -73.491449, - 45.544981 - ], - [ - -73.491608, - 45.545148 - ], - [ - -73.491886, - 45.545409 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.492801, - 45.546137 - ], - [ - -73.492868, - 45.546192 - ], - [ - -73.492976, - 45.546278 - ], - [ - -73.493835, - 45.546966 - ], - [ - -73.494604, - 45.547573 - ], - [ - -73.495174, - 45.548026 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.495148, - 45.54818 - ], - [ - -73.494756, - 45.548419 - ], - [ - -73.494517, - 45.548567 - ], - [ - -73.494355, - 45.548662 - ], - [ - -73.494341, - 45.548702 - ], - [ - -73.494351, - 45.54877 - ], - [ - -73.494352, - 45.548779 - ], - [ - -73.494377, - 45.548846 - ], - [ - -73.494604, - 45.549013 - ], - [ - -73.495901, - 45.550034 - ], - [ - -73.496326, - 45.55037 - ], - [ - -73.496482, - 45.550493 - ], - [ - -73.496546, - 45.550543 - ], - [ - -73.496964, - 45.550873 - ], - [ - -73.497569, - 45.551352 - ], - [ - -73.498413, - 45.552 - ], - [ - -73.498592, - 45.552072 - ], - [ - -73.498694, - 45.552086 - ], - [ - -73.498793, - 45.55209 - ], - [ - -73.498947, - 45.552086 - ], - [ - -73.499127, - 45.552095 - ], - [ - -73.499133, - 45.552039 - ], - [ - -73.49916, - 45.551769 - ], - [ - -73.499199, - 45.551371 - ], - [ - -73.49924, - 45.551092 - ], - [ - -73.499284, - 45.550946 - ], - [ - -73.499366, - 45.550811 - ], - [ - -73.499487, - 45.550651 - ], - [ - -73.499681, - 45.550405 - ], - [ - -73.499747, - 45.550322 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.500118, - 45.550075 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.503237, - 45.548311 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.50378, - 45.54778 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.505409, - 45.546112 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507876, - 45.543485 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.509776, - 45.54161 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.511271, - 45.540357 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512995, - 45.539126 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.514326, - 45.538177 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.515307, - 45.537394 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.516479, - 45.536184 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.518224, - 45.53413 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519176, - 45.531644 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.518817, - 45.531415 - ], - [ - -73.518763, - 45.531374 - ], - [ - -73.518709, - 45.531325 - ], - [ - -73.518655, - 45.531271 - ], - [ - -73.518619, - 45.531213 - ], - [ - -73.518601, - 45.531154 - ], - [ - -73.518588, - 45.531096 - ], - [ - -73.518588, - 45.531055 - ], - [ - -73.518597, - 45.531006 - ], - [ - -73.518619, - 45.530952 - ], - [ - -73.518659, - 45.530884 - ], - [ - -73.518691, - 45.530826 - ], - [ - -73.518718, - 45.530785 - ], - [ - -73.518753, - 45.530731 - ], - [ - -73.518803, - 45.530646 - ], - [ - -73.518839, - 45.530596 - ], - [ - -73.518875, - 45.530547 - ], - [ - -73.518897, - 45.530497 - ], - [ - -73.518915, - 45.530448 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519398, - 45.526013 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 51, - "properties": { - "id": "0d2a803b-0b4f-4183-abb0-a0e83e2005a2", - "data": { - "gtfs": { - "shape_id": "17_1_A" - }, - "segments": [ - { - "distanceMeters": 200, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 417, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 316, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 506, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 524, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 463, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 317, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 655, - "travelTimeSeconds": 165 - }, - { - "distanceMeters": 533, - "travelTimeSeconds": 135 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 198, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12721, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5209.757988136507, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.42, - "travelTimeWithoutDwellTimesSeconds": 1980, - "operatingTimeWithLayoverTimeSeconds": 2178, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1980, - "operatingSpeedWithLayoverMetersPerSecond": 5.84, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.42 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "6e83e147-802a-4695-95f3-96585bd15c4a", - "51878141-1194-4666-977c-0597ee638ffb", - "83cbcc26-a35c-4db6-a784-03a152cb9d6f", - "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", - "2800446d-aebc-4882-a018-9ab217599d73", - "02782fd4-ecd8-4615-9b7e-14ae16ac51bd", - "59ce5dad-a6de-46b9-a19c-e11dc5bfb727", - "aa6137b4-b674-460f-91f8-a129c1cf46bc", - "96eb89e4-98b8-49ac-b938-d7bcff69fc98", - "9d7bed04-91bf-4977-b8f5-ead58bfa3d28", - "0039f884-0610-402a-b23b-498abb207283", - "d3991811-d92b-4ba2-9732-26a74abc49b7", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "98268bc3-9f24-452e-8107-226a930051bc", - "b9c0c47c-b605-460e-9360-3718e001061b", - "c33924bc-c890-4a49-b330-6134b056dd6d", - "290dd81a-faeb-49a8-be84-7d76ab6dd7ef", - "cdd96034-dead-4f68-a8ed-c24b98b781eb", - "211cb268-dcfa-4d7b-810c-681bfa65d4c8", - "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "1e4facbf-29da-4515-97c4-4ef86c22290e", - "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", - "06d26eca-08e9-467e-9ff0-9595778162a0", - "abdcf999-0861-4881-a478-42fa957c7f17", - "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "5f672947-8abc-447c-bf60-535abbf76fae", - "31e8057b-0fb0-44bd-83cf-3acad24654ec", - "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", - "038a22ba-4928-42fc-aaed-50fbd831df37", - "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", - "64648218-6b63-436c-9a46-4770987ba432", - "87d520cc-f77e-449c-88c9-cee424bbc329", - "66456437-f154-4a2f-a12f-2f54cf668687", - "820a9d7c-25e9-487c-9e51-cfefcb1432f7", - "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", - "72c849ab-069a-4dc5-92fe-9ecc63ba074d", - "d9324afd-9cb7-46ba-ad04-bb8387256785", - "45ed93e4-f128-470f-b287-4d6ddc400e49", - "52f97fd3-6c91-420e-82d2-2198f2064d40", - "2d2815ee-443f-48d9-a68e-7f53a9aa6216", - "dadcd93c-5469-44bf-8e3e-ccac4a5af110", - "28d90293-1261-41be-a75c-5fc82c3acd49", - "28559490-1b1e-4bd4-83e1-408fd6a20c77", - "72e3e510-0ae4-407e-a30d-82f52f41e278", - "2e804fba-75d7-4c69-a7f7-706998c1a6f1", - "4fb4515b-e129-4622-b855-89143c2fd488", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "b0bcee88-55dc-48a0-bd7c-5139926f4432", - "segments": [ - 0, - 2, - 6, - 12, - 17, - 22, - 25, - 34, - 41, - 46, - 54, - 61, - 67, - 74, - 85, - 87, - 96, - 104, - 111, - 117, - 119, - 122, - 132, - 139, - 145, - 155, - 159, - 165, - 171, - 191, - 206, - 211, - 223, - 235, - 241, - 259, - 262, - 266, - 270, - 277, - 280, - 282, - 286, - 289, - 292, - 306, - 337 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 51, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519446, - 45.523424 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519332, - 45.526816 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517858, - 45.526792 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517465, - 45.528168 - ], - [ - -73.517458, - 45.528249 - ], - [ - -73.517471, - 45.528385 - ], - [ - -73.517504, - 45.528565 - ], - [ - -73.517516, - 45.528652 - ], - [ - -73.517553, - 45.52877 - ], - [ - -73.517635, - 45.529002 - ], - [ - -73.517693, - 45.529249 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518846, - 45.531518 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.518109, - 45.534266 - ], - [ - -73.51774, - 45.534698 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.516369, - 45.536311 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.515485, - 45.537235 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.514576, - 45.53799 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.512982, - 45.539135 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.511383, - 45.540276 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.509932, - 45.541461 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.507824, - 45.54354 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.505661, - 45.545845 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.503929, - 45.547638 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501341, - 45.549928 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500344, - 45.550074 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.499756, - 45.550039 - ], - [ - -73.499583, - 45.550043 - ], - [ - -73.499254, - 45.550048 - ], - [ - -73.49904, - 45.550039 - ], - [ - -73.498716, - 45.549998 - ], - [ - -73.49829, - 45.549868 - ], - [ - -73.497924, - 45.54971 - ], - [ - -73.497576, - 45.54953 - ], - [ - -73.497225, - 45.549332 - ], - [ - -73.497041, - 45.549211 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494914, - 45.547559 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.492003, - 45.545214 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491296, - 45.54289 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.490625, - 45.54071 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.48651, - 45.540163 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.485279, - 45.539708 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482924, - 45.538861 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.480044, - 45.538061 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.479241, - 45.537795 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476982, - 45.537235 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472351, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.46939, - 45.536998 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466199, - 45.53549 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464132, - 45.533602 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461222, - 45.53197 - ], - [ - -73.460868, - 45.531797 - ], - [ - -73.460137, - 45.531468 - ], - [ - -73.459095, - 45.531013 - ], - [ - -73.457818, - 45.530482 - ], - [ - -73.457591, - 45.530387 - ], - [ - -73.456631, - 45.529983 - ], - [ - -73.45522, - 45.529388 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.454682, - 45.529166 - ] - ] - }, - "id": 52, - "properties": { - "id": "0bf0cf5e-e1e0-4f2f-bd50-72ae02b25c51", - "data": { - "gtfs": { - "shape_id": "17_1_R" - }, - "segments": [ - { - "distanceMeters": 1321, - "travelTimeSeconds": 240 - }, - { - "distanceMeters": 364, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 307, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 534, - "travelTimeSeconds": 109 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 363, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 125 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 115 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8568, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5209.757988136507, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.21, - "travelTimeWithoutDwellTimesSeconds": 1380, - "operatingTimeWithLayoverTimeSeconds": 1560, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1380, - "operatingSpeedWithLayoverMetersPerSecond": 5.49, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.21 - }, - "mode": "bus", - "name": "Sect. M Vieux-Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "2e804fba-75d7-4c69-a7f7-706998c1a6f1", - "72e3e510-0ae4-407e-a30d-82f52f41e278", - "28559490-1b1e-4bd4-83e1-408fd6a20c77", - "28d90293-1261-41be-a75c-5fc82c3acd49", - "dadcd93c-5469-44bf-8e3e-ccac4a5af110", - "2d2815ee-443f-48d9-a68e-7f53a9aa6216", - "52f97fd3-6c91-420e-82d2-2198f2064d40", - "45ed93e4-f128-470f-b287-4d6ddc400e49", - "d9324afd-9cb7-46ba-ad04-bb8387256785", - "72c849ab-069a-4dc5-92fe-9ecc63ba074d", - "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", - "09bf17cd-9db1-41e3-b993-62146cb91158", - "8a3f1208-7ffb-452e-8ebb-c436acba82d6", - "2d7687a5-f458-4ce1-a3df-9639d89c0154", - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "ce58f095-9b51-4521-8a41-e64bfb0df31e", - "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", - "65003b15-0baf-4f82-9e15-665e17fd1c75", - "81b3573e-d948-478d-a011-db20e21b0c62", - "def08726-b847-4fc6-b901-78e04519a492", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "3b70b024-5c5b-4081-8c70-3fc026422289", - "1e4facbf-29da-4515-97c4-4ef86c22290e", - "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "53aec761-3dae-44a6-bc58-9d5003bfa1bb", - "6e83e147-802a-4695-95f3-96585bd15c4a" - ], - "stops": [], - "line_id": "b0bcee88-55dc-48a0-bd7c-5139926f4432", - "segments": [ - 0, - 61, - 76, - 80, - 82, - 86, - 89, - 92, - 98, - 103, - 106, - 109, - 124, - 141, - 147, - 171, - 181, - 187, - 196, - 206, - 218, - 228, - 241, - 247, - 255, - 259 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 52, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.454682, - 45.529166 - ], - [ - -73.453608, - 45.528719 - ], - [ - -73.452419, - 45.528224 - ], - [ - -73.452095, - 45.528089 - ], - [ - -73.451849, - 45.527987 - ], - [ - -73.449586, - 45.5271 - ], - [ - -73.447563, - 45.526329 - ], - [ - -73.447265, - 45.526208 - ], - [ - -73.447243, - 45.526199 - ], - [ - -73.446596, - 45.52596 - ], - [ - -73.446438, - 45.5259 - ], - [ - -73.445479, - 45.525532 - ], - [ - -73.44525, - 45.525455 - ], - [ - -73.445048, - 45.525397 - ], - [ - -73.444823, - 45.525347 - ], - [ - -73.444476, - 45.525248 - ], - [ - -73.44392, - 45.525126 - ], - [ - -73.443091, - 45.524907 - ], - [ - -73.442951, - 45.524869 - ], - [ - -73.443474, - 45.523856 - ], - [ - -73.443491, - 45.523821 - ], - [ - -73.444165, - 45.522458 - ], - [ - -73.444264, - 45.522301 - ], - [ - -73.444322, - 45.522225 - ], - [ - -73.4447, - 45.521495 - ], - [ - -73.445357, - 45.520227 - ], - [ - -73.445616, - 45.519728 - ], - [ - -73.445708, - 45.519575 - ], - [ - -73.445857, - 45.519382 - ], - [ - -73.446092, - 45.519112 - ], - [ - -73.446119, - 45.519088 - ], - [ - -73.446373, - 45.518869 - ], - [ - -73.446684, - 45.518635 - ], - [ - -73.446958, - 45.518469 - ], - [ - -73.447199, - 45.518348 - ], - [ - -73.447381, - 45.518267 - ], - [ - -73.447546, - 45.518195 - ], - [ - -73.448019, - 45.518033 - ], - [ - -73.448706, - 45.517817 - ], - [ - -73.449343, - 45.51762 - ], - [ - -73.449921, - 45.517427 - ], - [ - -73.450143, - 45.517364 - ], - [ - -73.450409, - 45.517292 - ], - [ - -73.45071, - 45.517229 - ], - [ - -73.450716, - 45.517224 - ], - [ - -73.451295, - 45.517148 - ], - [ - -73.451523, - 45.517121 - ], - [ - -73.451894, - 45.517072 - ], - [ - -73.452053, - 45.517054 - ], - [ - -73.45224, - 45.517153 - ], - [ - -73.452412, - 45.517228 - ], - [ - -73.452518, - 45.517275 - ], - [ - -73.453808, - 45.5178 - ], - [ - -73.454088, - 45.517914 - ], - [ - -73.454547, - 45.518104 - ], - [ - -73.454923, - 45.518259 - ], - [ - -73.455195, - 45.518372 - ], - [ - -73.455625, - 45.518549 - ], - [ - -73.45631, - 45.518837 - ], - [ - -73.457149, - 45.51918 - ], - [ - -73.456893, - 45.519549 - ], - [ - -73.456808, - 45.519697 - ], - [ - -73.456763, - 45.519809 - ], - [ - -73.456747, - 45.519998 - ], - [ - -73.456743, - 45.520169 - ], - [ - -73.456881, - 45.521051 - ], - [ - -73.456916, - 45.521245 - ], - [ - -73.456927, - 45.521311 - ], - [ - -73.457007, - 45.521798 - ], - [ - -73.457018, - 45.521965 - ], - [ - -73.457007, - 45.522131 - ], - [ - -73.456977, - 45.522289 - ], - [ - -73.456948, - 45.522368 - ], - [ - -73.456942, - 45.522383 - ], - [ - -73.456878, - 45.522527 - ], - [ - -73.456684, - 45.5229 - ], - [ - -73.456502, - 45.523233 - ], - [ - -73.455885, - 45.524403 - ], - [ - -73.455699, - 45.524754 - ], - [ - -73.45556, - 45.52506 - ], - [ - -73.455515, - 45.525217 - ], - [ - -73.455492, - 45.525379 - ], - [ - -73.455505, - 45.525617 - ], - [ - -73.455556, - 45.52586 - ], - [ - -73.455725, - 45.526441 - ], - [ - -73.455785, - 45.526648 - ], - [ - -73.455835, - 45.526817 - ], - [ - -73.456034, - 45.52748 - ], - [ - -73.456081, - 45.527705 - ], - [ - -73.456084, - 45.527948 - ], - [ - -73.45603, - 45.528196 - ], - [ - -73.455955, - 45.528344 - ], - [ - -73.455795, - 45.528551 - ], - [ - -73.455542, - 45.528856 - ], - [ - -73.455189, - 45.52928 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.454978, - 45.529527 - ], - [ - -73.45507, - 45.529563 - ], - [ - -73.456261, - 45.530048 - ], - [ - -73.457482, - 45.530545 - ], - [ - -73.458332, - 45.530905 - ], - [ - -73.459643, - 45.531475 - ], - [ - -73.460581, - 45.531882 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.462751, - 45.533003 - ], - [ - -73.463873, - 45.533665 - ], - [ - -73.464875, - 45.534543 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469941, - 45.537318 - ], - [ - -73.470305, - 45.537406 - ], - [ - -73.470749, - 45.537487 - ], - [ - -73.471335, - 45.537563 - ], - [ - -73.471845, - 45.53759 - ], - [ - -73.472146, - 45.537591 - ], - [ - -73.472355, - 45.537591 - ], - [ - -73.473126, - 45.537555 - ], - [ - -73.473826, - 45.537492 - ], - [ - -73.474151, - 45.537462 - ], - [ - -73.474517, - 45.537429 - ], - [ - -73.474599, - 45.537423 - ], - [ - -73.475173, - 45.53738 - ], - [ - -73.47563, - 45.537344 - ], - [ - -73.476192, - 45.537353 - ], - [ - -73.476662, - 45.537394 - ], - [ - -73.477026, - 45.537434 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.479972, - 45.538233 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484688, - 45.539728 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.487815, - 45.540571 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491035, - 45.541427 - ], - [ - -73.491084, - 45.541584 - ], - [ - -73.491099, - 45.541724 - ], - [ - -73.491106, - 45.541854 - ], - [ - -73.491092, - 45.542156 - ], - [ - -73.491081, - 45.542381 - ], - [ - -73.49104, - 45.543146 - ], - [ - -73.491014, - 45.543512 - ], - [ - -73.490998, - 45.543726 - ], - [ - -73.491037, - 45.544117 - ], - [ - -73.491071, - 45.544252 - ], - [ - -73.491113, - 45.544396 - ], - [ - -73.491272, - 45.544698 - ], - [ - -73.491367, - 45.544855 - ], - [ - -73.491449, - 45.544981 - ], - [ - -73.491608, - 45.545148 - ], - [ - -73.491886, - 45.545409 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.492868, - 45.546192 - ], - [ - -73.492976, - 45.546278 - ], - [ - -73.493835, - 45.546966 - ], - [ - -73.494604, - 45.547573 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.495148, - 45.54818 - ], - [ - -73.494756, - 45.548419 - ], - [ - -73.49471, - 45.548447 - ], - [ - -73.494517, - 45.548567 - ], - [ - -73.494355, - 45.548662 - ], - [ - -73.494341, - 45.548702 - ], - [ - -73.494351, - 45.54877 - ], - [ - -73.494352, - 45.548779 - ], - [ - -73.494377, - 45.548846 - ], - [ - -73.494604, - 45.549013 - ], - [ - -73.495901, - 45.550034 - ], - [ - -73.496482, - 45.550493 - ], - [ - -73.496546, - 45.550543 - ], - [ - -73.496964, - 45.550873 - ], - [ - -73.497569, - 45.551352 - ], - [ - -73.498413, - 45.552 - ], - [ - -73.498592, - 45.552072 - ], - [ - -73.498694, - 45.552086 - ], - [ - -73.498793, - 45.55209 - ], - [ - -73.498947, - 45.552086 - ], - [ - -73.499127, - 45.552095 - ], - [ - -73.499133, - 45.552039 - ], - [ - -73.499199, - 45.551371 - ], - [ - -73.49924, - 45.551092 - ], - [ - -73.499284, - 45.550946 - ], - [ - -73.499366, - 45.550811 - ], - [ - -73.499487, - 45.550651 - ], - [ - -73.499747, - 45.550322 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.500118, - 45.550075 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.501109, - 45.549994 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.503237, - 45.548311 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.506534, - 45.544915 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512949, - 45.539158 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.516592, - 45.536052 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.518817, - 45.531415 - ], - [ - -73.518763, - 45.531374 - ], - [ - -73.518709, - 45.531325 - ], - [ - -73.518655, - 45.531271 - ], - [ - -73.518619, - 45.531213 - ], - [ - -73.518601, - 45.531154 - ], - [ - -73.518588, - 45.531096 - ], - [ - -73.518588, - 45.531055 - ], - [ - -73.518597, - 45.531006 - ], - [ - -73.518619, - 45.530952 - ], - [ - -73.518659, - 45.530884 - ], - [ - -73.518691, - 45.530826 - ], - [ - -73.518718, - 45.530785 - ], - [ - -73.518753, - 45.530731 - ], - [ - -73.518803, - 45.530646 - ], - [ - -73.518839, - 45.530596 - ], - [ - -73.518875, - 45.530547 - ], - [ - -73.518897, - 45.530497 - ], - [ - -73.518915, - 45.530448 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519361, - 45.529355 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 53, - "properties": { - "id": "83aace1b-edfc-43e8-a0ed-42f954b40fea", - "data": { - "gtfs": { - "shape_id": "17_1_A" - }, - "segments": [ - { - "distanceMeters": 665, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 769, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 1078, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 446, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 636, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 749, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 1387, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 473, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 669, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 526, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 685, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 918, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 712, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 815, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 848, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 905, - "travelTimeSeconds": 51 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12721, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 65.75797913289725, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 23.56, - "travelTimeWithoutDwellTimesSeconds": 540, - "operatingTimeWithLayoverTimeSeconds": 720, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 540, - "operatingSpeedWithLayoverMetersPerSecond": 17.67, - "averageSpeedWithoutDwellTimesMetersPerSecond": 23.56 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "6e83e147-802a-4695-95f3-96585bd15c4a", - "51878141-1194-4666-977c-0597ee638ffb", - "83cbcc26-a35c-4db6-a784-03a152cb9d6f", - "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", - "2800446d-aebc-4882-a018-9ab217599d73", - "02782fd4-ecd8-4615-9b7e-14ae16ac51bd", - "59ce5dad-a6de-46b9-a19c-e11dc5bfb727", - "aa6137b4-b674-460f-91f8-a129c1cf46bc", - "96eb89e4-98b8-49ac-b938-d7bcff69fc98", - "9d7bed04-91bf-4977-b8f5-ead58bfa3d28", - "0039f884-0610-402a-b23b-498abb207283", - "d3991811-d92b-4ba2-9732-26a74abc49b7", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "98268bc3-9f24-452e-8107-226a930051bc", - "b9c0c47c-b605-460e-9360-3718e001061b", - "c33924bc-c890-4a49-b330-6134b056dd6d", - "290dd81a-faeb-49a8-be84-7d76ab6dd7ef", - "cdd96034-dead-4f68-a8ed-c24b98b781eb" - ], - "stops": [], - "line_id": "b0bcee88-55dc-48a0-bd7c-5139926f4432", - "segments": [ - 0, - 7, - 24, - 55, - 67, - 86, - 101, - 127, - 142, - 157, - 176, - 194, - 226, - 240, - 254, - 262, - 301 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 53, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.420884, - 45.492385 - ], - [ - -73.418964, - 45.495064 - ], - [ - -73.418892, - 45.495165 - ], - [ - -73.416874, - 45.498016 - ], - [ - -73.416837, - 45.498063 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.415848, - 45.497845 - ], - [ - -73.415069, - 45.497555 - ], - [ - -73.415032, - 45.497542 - ], - [ - -73.414637, - 45.497397 - ], - [ - -73.413391, - 45.496942 - ], - [ - -73.413146, - 45.496853 - ], - [ - -73.41213, - 45.496482 - ], - [ - -73.411766, - 45.496343 - ], - [ - -73.411419, - 45.496194 - ], - [ - -73.411073, - 45.496033 - ], - [ - -73.410951, - 45.495977 - ], - [ - -73.410895, - 45.495951 - ], - [ - -73.410789, - 45.495896 - ], - [ - -73.409735, - 45.495323 - ], - [ - -73.409349, - 45.495112 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.409262, - 45.494528 - ], - [ - -73.409537, - 45.494129 - ], - [ - -73.409554, - 45.494104 - ], - [ - -73.409872, - 45.493642 - ], - [ - -73.411359, - 45.491549 - ], - [ - -73.41144, - 45.491434 - ], - [ - -73.412048, - 45.490575 - ], - [ - -73.413082, - 45.489112 - ], - [ - -73.41317, - 45.488987 - ], - [ - -73.414954, - 45.48962 - ], - [ - -73.415794, - 45.489917 - ], - [ - -73.41588, - 45.489948 - ], - [ - -73.416181, - 45.490056 - ], - [ - -73.416563, - 45.490205 - ], - [ - -73.416833, - 45.490317 - ], - [ - -73.417817, - 45.490728 - ], - [ - -73.418126, - 45.490867 - ], - [ - -73.418329, - 45.490966 - ], - [ - -73.418926, - 45.491273 - ], - [ - -73.419065, - 45.491358 - ], - [ - -73.419232, - 45.491444 - ], - [ - -73.419402, - 45.491507 - ], - [ - -73.420032, - 45.491719 - ], - [ - -73.420235, - 45.491787 - ], - [ - -73.420442, - 45.49185 - ], - [ - -73.421099, - 45.492084 - ], - [ - -73.421973, - 45.492395 - ], - [ - -73.422792, - 45.492684 - ], - [ - -73.423173, - 45.492823 - ], - [ - -73.423404, - 45.4929 - ], - [ - -73.423545, - 45.492954 - ], - [ - -73.423688, - 45.493026 - ], - [ - -73.423762, - 45.493067 - ], - [ - -73.423881, - 45.493134 - ], - [ - -73.423992, - 45.493193 - ], - [ - -73.424086, - 45.493252 - ], - [ - -73.424167, - 45.493319 - ], - [ - -73.4245, - 45.493675 - ], - [ - -73.424539, - 45.493715 - ], - [ - -73.424604, - 45.493823 - ], - [ - -73.424742, - 45.493976 - ], - [ - -73.424872, - 45.49408 - ], - [ - -73.425006, - 45.494188 - ], - [ - -73.425153, - 45.494283 - ], - [ - -73.425239, - 45.49433 - ], - [ - -73.425348, - 45.494391 - ], - [ - -73.425495, - 45.494463 - ], - [ - -73.425936, - 45.494625 - ], - [ - -73.426225, - 45.494733 - ], - [ - -73.42705, - 45.495013 - ], - [ - -73.427246, - 45.49508 - ], - [ - -73.427753, - 45.495255 - ], - [ - -73.427911, - 45.49531 - ], - [ - -73.428712, - 45.495599 - ], - [ - -73.430359, - 45.496178 - ], - [ - -73.430519, - 45.496234 - ], - [ - -73.432051, - 45.496777 - ], - [ - -73.432274, - 45.496856 - ], - [ - -73.434175, - 45.497533 - ], - [ - -73.43431, - 45.497582 - ], - [ - -73.435579, - 45.498023 - ], - [ - -73.435865, - 45.4981 - ], - [ - -73.436036, - 45.49814 - ], - [ - -73.436216, - 45.498172 - ], - [ - -73.436513, - 45.498249 - ], - [ - -73.436806, - 45.498348 - ], - [ - -73.436872, - 45.498374 - ], - [ - -73.436955, - 45.498406 - ], - [ - -73.439319, - 45.499236 - ], - [ - -73.439705, - 45.499371 - ], - [ - -73.439319, - 45.499924 - ], - [ - -73.439307, - 45.49994 - ], - [ - -73.43919, - 45.500108 - ], - [ - -73.4391, - 45.500204 - ], - [ - -73.438982, - 45.500329 - ], - [ - -73.438767, - 45.500522 - ], - [ - -73.438604, - 45.500652 - ], - [ - -73.438428, - 45.500778 - ], - [ - -73.437988, - 45.501097 - ], - [ - -73.437808, - 45.501228 - ], - [ - -73.437244, - 45.501651 - ], - [ - -73.436813, - 45.501961 - ], - [ - -73.436593, - 45.502087 - ], - [ - -73.436771, - 45.502154 - ], - [ - -73.437001, - 45.502237 - ], - [ - -73.43716, - 45.502294 - ], - [ - -73.438126, - 45.502649 - ], - [ - -73.439474, - 45.503145 - ], - [ - -73.440013, - 45.503344 - ], - [ - -73.4405, - 45.503528 - ], - [ - -73.441152, - 45.503767 - ], - [ - -73.441539, - 45.503904 - ], - [ - -73.443587, - 45.504627 - ], - [ - -73.443718, - 45.504673 - ], - [ - -73.443791, - 45.504718 - ], - [ - -73.44362, - 45.504965 - ], - [ - -73.442429, - 45.506739 - ], - [ - -73.442417, - 45.506757 - ], - [ - -73.442227, - 45.507039 - ], - [ - -73.439054, - 45.507258 - ], - [ - -73.438426, - 45.507284 - ], - [ - -73.438208, - 45.507286 - ], - [ - -73.43796, - 45.507288 - ], - [ - -73.436434, - 45.507297 - ], - [ - -73.435792, - 45.507278 - ], - [ - -73.435015, - 45.507249 - ], - [ - -73.434228, - 45.507219 - ], - [ - -73.433669, - 45.507165 - ], - [ - -73.433481, - 45.507146 - ], - [ - -73.433316, - 45.507128 - ], - [ - -73.43308, - 45.507092 - ], - [ - -73.432958, - 45.507065 - ], - [ - -73.432823, - 45.507025 - ], - [ - -73.432697, - 45.506971 - ], - [ - -73.432507, - 45.50688 - ], - [ - -73.432305, - 45.506772 - ], - [ - -73.432116, - 45.506678 - ], - [ - -73.432105, - 45.506615 - ], - [ - -73.431909, - 45.506516 - ], - [ - -73.431784, - 45.506462 - ], - [ - -73.431662, - 45.506421 - ], - [ - -73.431524, - 45.506385 - ], - [ - -73.431353, - 45.506349 - ], - [ - -73.431252, - 45.506335 - ], - [ - -73.431145, - 45.506326 - ], - [ - -73.430968, - 45.506317 - ], - [ - -73.430791, - 45.506326 - ], - [ - -73.430645, - 45.506339 - ], - [ - -73.43052, - 45.506357 - ], - [ - -73.430422, - 45.506366 - ], - [ - -73.430275, - 45.506389 - ], - [ - -73.430066, - 45.506425 - ], - [ - -73.430099, - 45.506555 - ], - [ - -73.430103, - 45.506573 - ], - [ - -73.4302, - 45.506807 - ], - [ - -73.430341, - 45.507086 - ], - [ - -73.430485, - 45.507257 - ], - [ - -73.430506, - 45.507276 - ], - [ - -73.430509, - 45.507278 - ], - [ - -73.430608, - 45.507365 - ], - [ - -73.430672, - 45.507415 - ], - [ - -73.431358, - 45.507856 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431709, - 45.508009 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.432209, - 45.507974 - ], - [ - -73.433374, - 45.507895 - ], - [ - -73.435178, - 45.507773 - ], - [ - -73.437575, - 45.507662 - ], - [ - -73.438988, - 45.507572 - ], - [ - -73.440344, - 45.507425 - ], - [ - -73.445881, - 45.507063 - ], - [ - -73.452257, - 45.506638 - ], - [ - -73.452565, - 45.506616 - ], - [ - -73.453776, - 45.50654 - ], - [ - -73.455247, - 45.506419 - ], - [ - -73.456957, - 45.50624 - ], - [ - -73.460279, - 45.505832 - ], - [ - -73.460374, - 45.505823 - ], - [ - -73.461182, - 45.505728 - ], - [ - -73.463671, - 45.505509 - ], - [ - -73.465111, - 45.505401 - ], - [ - -73.467755, - 45.505222 - ], - [ - -73.468692, - 45.505168 - ], - [ - -73.470746, - 45.505025 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492938, - 45.510118 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497933, - 45.512056 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.500896, - 45.513013 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505125, - 45.514484 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506107, - 45.514749 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511921, - 45.516876 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513441, - 45.518311 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.51501, - 45.519424 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518902, - 45.520632 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 54, - "properties": { - "id": "3ca2354b-f8db-4cfc-84c8-68ac6e655a79", - "data": { - "gtfs": { - "shape_id": "19_1_A" - }, - "segments": [ - { - "distanceMeters": 334, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 388, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 328, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 316, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 400, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 5786, - "travelTimeSeconds": 452 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 597, - "travelTimeSeconds": 103 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 744, - "travelTimeSeconds": 129 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 15449, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8582.217253240633, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.88, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 8.05, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.88 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "30c08115-a1b6-45b8-9122-c5fe99723d2e", - "bf4259d8-23ae-478a-8a93-ec28083b908d", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "5dd96d41-c4eb-4453-9e97-752999b1688d", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "78262195-7c3a-4ed5-81d8-a33c906e3099", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "4b07d309-8f54-43c8-997d-d4abd77f2d1e", - "f4abcc97-51ec-431d-988f-977063b9070f", - "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", - "28985ee5-9fc5-416a-81f8-ff25dba2b6da", - "d68685b2-7e92-4934-989f-8ccfae13451f", - "d9bf2534-8f61-4d16-adab-8e4d84e855be", - "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", - "4a180761-ffc5-4d97-873b-916ca1656760", - "63ff9173-3e59-4bee-9a21-57d199dc88ec", - "565e8198-26d9-4715-bc5d-75974e6721d9", - "9b336d4e-db84-472b-aee3-9690d5d224b6", - "3b96e6d6-e4f7-4e24-903e-8fb3993ff6c9", - "1a2084b5-bc8c-4697-804e-35bea928cc06", - "261db898-2ef3-4105-a628-5330af439dce", - "631a5504-9e7c-4041-85e7-bf81e6a995d2", - "b487112d-20d7-48e5-a658-6d701c316792", - "2f59e70c-00bf-46fc-9104-53f0aa9fb5e8", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "a5b9648a-83c0-4eab-a54b-68c23aecae43", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", - "be19484c-af95-45b2-bfe5-24342dd1b710", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "b9129276-b11b-471e-80e7-c8a3ff46ff9c", - "segments": [ - 0, - 1, - 4, - 11, - 15, - 22, - 26, - 29, - 32, - 44, - 54, - 66, - 73, - 76, - 78, - 80, - 88, - 92, - 100, - 106, - 113, - 114, - 118, - 123, - 129, - 220, - 233, - 236, - 243, - 262, - 268, - 281, - 288 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 54, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521447, - 45.524278 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519263, - 45.520728 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.515005, - 45.51933 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513229, - 45.517464 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509952, - 45.515502 - ], - [ - -73.509485, - 45.515357 - ], - [ - -73.509476, - 45.515354 - ], - [ - -73.509376, - 45.515323 - ], - [ - -73.508692, - 45.515143 - ], - [ - -73.508296, - 45.51503 - ], - [ - -73.507817, - 45.514868 - ], - [ - -73.507704, - 45.514841 - ], - [ - -73.507464, - 45.514765 - ], - [ - -73.506516, - 45.514432 - ], - [ - -73.505464, - 45.514054 - ], - [ - -73.505166, - 45.51396 - ], - [ - -73.504791, - 45.513841 - ], - [ - -73.504655, - 45.513798 - ], - [ - -73.504451, - 45.513734 - ], - [ - -73.50434, - 45.513699 - ], - [ - -73.504259, - 45.513672 - ], - [ - -73.503369, - 45.513397 - ], - [ - -73.502433, - 45.51315 - ], - [ - -73.502048, - 45.513078 - ], - [ - -73.501569, - 45.512942 - ], - [ - -73.501411, - 45.512898 - ], - [ - -73.50108, - 45.512799 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499687, - 45.512351 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498224, - 45.511894 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.494315, - 45.51046 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.494088, - 45.51035 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491858, - 45.508708 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488355, - 45.503066 - ], - [ - -73.4883, - 45.502913 - ], - [ - -73.488219, - 45.502531 - ], - [ - -73.488223, - 45.502405 - ], - [ - -73.488245, - 45.502293 - ], - [ - -73.488296, - 45.502185 - ], - [ - -73.488375, - 45.502086 - ], - [ - -73.488484, - 45.502 - ], - [ - -73.488609, - 45.501937 - ], - [ - -73.48874, - 45.501892 - ], - [ - -73.48888, - 45.501865 - ], - [ - -73.489028, - 45.501856 - ], - [ - -73.489181, - 45.501865 - ], - [ - -73.489324, - 45.501892 - ], - [ - -73.489461, - 45.501933 - ], - [ - -73.489585, - 45.501991 - ], - [ - -73.489692, - 45.502068 - ], - [ - -73.489744, - 45.502115 - ], - [ - -73.489786, - 45.502153 - ], - [ - -73.489942, - 45.502342 - ], - [ - -73.490006, - 45.50245 - ], - [ - -73.490054, - 45.502558 - ], - [ - -73.490086, - 45.502666 - ], - [ - -73.490092, - 45.502779 - ], - [ - -73.490064, - 45.502891 - ], - [ - -73.490004, - 45.502995 - ], - [ - -73.489917, - 45.503094 - ], - [ - -73.489808, - 45.503175 - ], - [ - -73.489675, - 45.503242 - ], - [ - -73.489524, - 45.503287 - ], - [ - -73.489359, - 45.50331 - ], - [ - -73.489186, - 45.503323 - ], - [ - -73.488817, - 45.503318 - ], - [ - -73.487515, - 45.503242 - ], - [ - -73.486872, - 45.503273 - ], - [ - -73.486502, - 45.503323 - ], - [ - -73.486146, - 45.503381 - ], - [ - -73.484224, - 45.503808 - ], - [ - -73.483407, - 45.503957 - ], - [ - -73.482922, - 45.504029 - ], - [ - -73.482166, - 45.504114 - ], - [ - -73.481092, - 45.504204 - ], - [ - -73.4802, - 45.504262 - ], - [ - -73.47719, - 45.50446 - ], - [ - -73.477132, - 45.504462 - ], - [ - -73.474463, - 45.504585 - ], - [ - -73.473732, - 45.504621 - ], - [ - -73.47326, - 45.50463 - ], - [ - -73.472594, - 45.504625 - ], - [ - -73.472184, - 45.504602 - ], - [ - -73.471986, - 45.50458 - ], - [ - -73.471671, - 45.504521 - ], - [ - -73.471417, - 45.504449 - ], - [ - -73.471243, - 45.504386 - ], - [ - -73.471084, - 45.504314 - ], - [ - -73.470936, - 45.504242 - ], - [ - -73.470798, - 45.504161 - ], - [ - -73.470671, - 45.504076 - ], - [ - -73.470553, - 45.503986 - ], - [ - -73.469982, - 45.503502 - ], - [ - -73.469677, - 45.503226 - ], - [ - -73.469614, - 45.503168 - ], - [ - -73.469513, - 45.50323 - ], - [ - -73.469419, - 45.503287 - ], - [ - -73.469308, - 45.503357 - ], - [ - -73.469279, - 45.503422 - ], - [ - -73.469224, - 45.503454 - ], - [ - -73.469116, - 45.503519 - ], - [ - -73.468749, - 45.503738 - ], - [ - -73.468134, - 45.504106 - ], - [ - -73.46771, - 45.504363 - ], - [ - -73.467476, - 45.504484 - ], - [ - -73.467257, - 45.504583 - ], - [ - -73.467047, - 45.504673 - ], - [ - -73.466778, - 45.504767 - ], - [ - -73.466492, - 45.50483 - ], - [ - -73.466169, - 45.504898 - ], - [ - -73.465884, - 45.504943 - ], - [ - -73.46553, - 45.504965 - ], - [ - -73.465067, - 45.504996 - ], - [ - -73.464545, - 45.505041 - ], - [ - -73.463624, - 45.505104 - ], - [ - -73.46332, - 45.50509 - ], - [ - -73.462722, - 45.505141 - ], - [ - -73.462564, - 45.505155 - ], - [ - -73.462414, - 45.50516 - ], - [ - -73.462303, - 45.505157 - ], - [ - -73.462173, - 45.505157 - ], - [ - -73.462046, - 45.50518 - ], - [ - -73.461961, - 45.505207 - ], - [ - -73.461828, - 45.505274 - ], - [ - -73.461479, - 45.505346 - ], - [ - -73.460924, - 45.505418 - ], - [ - -73.460429, - 45.505476 - ], - [ - -73.460124, - 45.505512 - ], - [ - -73.459817, - 45.505548 - ], - [ - -73.459089, - 45.505635 - ], - [ - -73.457907, - 45.505777 - ], - [ - -73.457379, - 45.505858 - ], - [ - -73.456937, - 45.505934 - ], - [ - -73.456441, - 45.506015 - ], - [ - -73.456392, - 45.506022 - ], - [ - -73.456027, - 45.506073 - ], - [ - -73.4557, - 45.506113 - ], - [ - -73.455407, - 45.506145 - ], - [ - -73.45462, - 45.506212 - ], - [ - -73.453792, - 45.506275 - ], - [ - -73.453626, - 45.506284 - ], - [ - -73.453512, - 45.506292 - ], - [ - -73.453375, - 45.506301 - ], - [ - -73.453036, - 45.506328 - ], - [ - -73.452813, - 45.506342 - ], - [ - -73.452619, - 45.506355 - ], - [ - -73.452198, - 45.506382 - ], - [ - -73.451887, - 45.506404 - ], - [ - -73.45126, - 45.506445 - ], - [ - -73.450484, - 45.506494 - ], - [ - -73.44836, - 45.506636 - ], - [ - -73.447691, - 45.506681 - ], - [ - -73.446069, - 45.506789 - ], - [ - -73.445578, - 45.50682 - ], - [ - -73.445275, - 45.50685 - ], - [ - -73.445125, - 45.506865 - ], - [ - -73.443732, - 45.506945 - ], - [ - -73.442555, - 45.507021 - ], - [ - -73.442456, - 45.507028 - ], - [ - -73.442366, - 45.507034 - ], - [ - -73.442227, - 45.507039 - ], - [ - -73.44362, - 45.504965 - ], - [ - -73.44367, - 45.504893 - ], - [ - -73.443791, - 45.504718 - ], - [ - -73.443718, - 45.504673 - ], - [ - -73.441388, - 45.50385 - ], - [ - -73.441273, - 45.50381 - ], - [ - -73.441152, - 45.503767 - ], - [ - -73.4405, - 45.503528 - ], - [ - -73.440013, - 45.503344 - ], - [ - -73.439474, - 45.503145 - ], - [ - -73.438126, - 45.502649 - ], - [ - -73.437271, - 45.502335 - ], - [ - -73.43716, - 45.502294 - ], - [ - -73.437113, - 45.502231 - ], - [ - -73.437081, - 45.502195 - ], - [ - -73.437072, - 45.502141 - ], - [ - -73.437067, - 45.502087 - ], - [ - -73.437072, - 45.501992 - ], - [ - -73.437089, - 45.501929 - ], - [ - -73.437811, - 45.501422 - ], - [ - -73.437952, - 45.501322 - ], - [ - -73.438749, - 45.500747 - ], - [ - -73.438772, - 45.500729 - ], - [ - -73.43892, - 45.500612 - ], - [ - -73.439045, - 45.500499 - ], - [ - -73.439144, - 45.50041 - ], - [ - -73.439363, - 45.500176 - ], - [ - -73.43988, - 45.499434 - ], - [ - -73.439954, - 45.499326 - ], - [ - -73.439779, - 45.499267 - ], - [ - -73.439401, - 45.499132 - ], - [ - -73.43929, - 45.499094 - ], - [ - -73.438965, - 45.49898 - ], - [ - -73.437089, - 45.498325 - ], - [ - -73.437025, - 45.498303 - ], - [ - -73.436911, - 45.498253 - ], - [ - -73.436581, - 45.498141 - ], - [ - -73.436255, - 45.498055 - ], - [ - -73.435929, - 45.497992 - ], - [ - -73.435648, - 45.497915 - ], - [ - -73.43454, - 45.497518 - ], - [ - -73.434393, - 45.497465 - ], - [ - -73.432457, - 45.496785 - ], - [ - -73.432352, - 45.496748 - ], - [ - -73.430774, - 45.496193 - ], - [ - -73.430595, - 45.496131 - ], - [ - -73.428793, - 45.495486 - ], - [ - -73.428102, - 45.495242 - ], - [ - -73.42799, - 45.495202 - ], - [ - -73.427327, - 45.494972 - ], - [ - -73.427129, - 45.4949 - ], - [ - -73.426304, - 45.494616 - ], - [ - -73.425789, - 45.494431 - ], - [ - -73.425567, - 45.494332 - ], - [ - -73.42552, - 45.494308 - ], - [ - -73.425435, - 45.494265 - ], - [ - -73.425244, - 45.494166 - ], - [ - -73.425117, - 45.494094 - ], - [ - -73.424993, - 45.493999 - ], - [ - -73.424846, - 45.493877 - ], - [ - -73.424732, - 45.493751 - ], - [ - -73.424622, - 45.493598 - ], - [ - -73.424286, - 45.493252 - ], - [ - -73.424064, - 45.493076 - ], - [ - -73.424026, - 45.493054 - ], - [ - -73.423956, - 45.493013 - ], - [ - -73.423777, - 45.492914 - ], - [ - -73.423558, - 45.492824 - ], - [ - -73.423264, - 45.492711 - ], - [ - -73.422869, - 45.492571 - ], - [ - -73.422074, - 45.492295 - ], - [ - -73.422051, - 45.492287 - ], - [ - -73.421183, - 45.491976 - ], - [ - -73.421099, - 45.492084 - ], - [ - -73.420884, - 45.492385 - ] - ] - }, - "id": 55, - "properties": { - "id": "fd6ca5db-cb08-42d1-9231-669def4823be", - "data": { - "gtfs": { - "shape_id": "19_1_R" - }, - "segments": [ - { - "distanceMeters": 763, - "travelTimeSeconds": 89 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 384, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 403, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 345, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 2757, - "travelTimeSeconds": 278 - }, - { - "distanceMeters": 562, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 404, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 363, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 304, - "travelTimeSeconds": 65 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11306, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8582.217253240633, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.19, - "travelTimeWithoutDwellTimesSeconds": 1380, - "operatingTimeWithLayoverTimeSeconds": 1560, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1380, - "operatingSpeedWithLayoverMetersPerSecond": 7.25, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.19 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "d3215c60-bb9e-40ac-89e4-1f922b39e266", - "f9358f54-8643-47f5-b0df-4a20b46cc22d", - "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", - "f4f29738-df3f-4d69-8632-9088ded0dc5a", - "741876fc-030a-42f6-a33a-8f1f9c2aba12", - "688a3f67-a176-441e-a399-c92a55de9c74", - "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", - "37199bb2-9740-4484-b68f-12d3c82f8bf9", - "c17cc951-65ff-4617-a096-ccd1fe6cc26f", - "d283f176-a2d6-456a-b4b2-f380ae924031", - "05522d17-41d4-4e98-a458-ec71ea1a802b", - "a2cddc2b-b7ec-4035-951f-7045ea83427b", - "a4e1d210-6aad-44a6-b6a6-31d75e66d6c9", - "c9ccd441-872f-4e75-b699-0014386c3503", - "92abcd2a-82ad-467f-8946-055423a9c2c9", - "631a5504-9e7c-4041-85e7-bf81e6a995d2", - "261db898-2ef3-4105-a628-5330af439dce", - "1a2084b5-bc8c-4697-804e-35bea928cc06", - "3b96e6d6-e4f7-4e24-903e-8fb3993ff6c9", - "9b336d4e-db84-472b-aee3-9690d5d224b6", - "a39b7f03-1a32-4d28-9091-59543b1980d1", - "45eb186b-1efe-43c4-8e82-92fe5a15a753", - "63ff9173-3e59-4bee-9a21-57d199dc88ec", - "4a180761-ffc5-4d97-873b-916ca1656760", - "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", - "d9bf2534-8f61-4d16-adab-8e4d84e855be", - "d68685b2-7e92-4934-989f-8ccfae13451f", - "28985ee5-9fc5-416a-81f8-ff25dba2b6da", - "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", - "30c08115-a1b6-45b8-9122-c5fe99723d2e" - ], - "stops": [], - "line_id": "b9129276-b11b-471e-80e7-c8a3ff46ff9c", - "segments": [ - 0, - 47, - 54, - 61, - 71, - 81, - 89, - 93, - 97, - 108, - 119, - 196, - 213, - 226, - 231, - 238, - 247, - 251, - 255, - 259, - 262, - 269, - 277, - 282, - 289, - 291, - 298, - 300, - 302, - 305, - 312, - 322 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 55, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.420884, - 45.492385 - ], - [ - -73.418964, - 45.495064 - ], - [ - -73.418892, - 45.495165 - ], - [ - -73.416874, - 45.498016 - ], - [ - -73.416837, - 45.498063 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.415848, - 45.497845 - ], - [ - -73.415069, - 45.497555 - ], - [ - -73.415032, - 45.497542 - ], - [ - -73.414637, - 45.497397 - ], - [ - -73.413391, - 45.496942 - ], - [ - -73.413146, - 45.496853 - ], - [ - -73.41213, - 45.496482 - ], - [ - -73.411766, - 45.496343 - ], - [ - -73.411419, - 45.496194 - ], - [ - -73.411073, - 45.496033 - ], - [ - -73.410951, - 45.495977 - ], - [ - -73.410895, - 45.495951 - ], - [ - -73.410789, - 45.495896 - ], - [ - -73.409735, - 45.495323 - ], - [ - -73.409349, - 45.495112 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.409262, - 45.494528 - ], - [ - -73.409537, - 45.494129 - ], - [ - -73.409554, - 45.494104 - ], - [ - -73.409872, - 45.493642 - ], - [ - -73.411359, - 45.491549 - ], - [ - -73.41144, - 45.491434 - ], - [ - -73.412048, - 45.490575 - ], - [ - -73.413082, - 45.489112 - ], - [ - -73.41317, - 45.488987 - ], - [ - -73.414954, - 45.48962 - ], - [ - -73.415794, - 45.489917 - ], - [ - -73.41588, - 45.489948 - ], - [ - -73.416181, - 45.490056 - ], - [ - -73.416563, - 45.490205 - ], - [ - -73.416833, - 45.490317 - ], - [ - -73.417817, - 45.490728 - ], - [ - -73.418126, - 45.490867 - ], - [ - -73.418329, - 45.490966 - ], - [ - -73.418926, - 45.491273 - ], - [ - -73.419065, - 45.491358 - ], - [ - -73.419232, - 45.491444 - ], - [ - -73.419402, - 45.491507 - ], - [ - -73.420032, - 45.491719 - ], - [ - -73.420235, - 45.491787 - ], - [ - -73.420442, - 45.49185 - ], - [ - -73.421099, - 45.492084 - ], - [ - -73.421973, - 45.492395 - ], - [ - -73.422792, - 45.492684 - ], - [ - -73.423173, - 45.492823 - ], - [ - -73.423404, - 45.4929 - ], - [ - -73.423545, - 45.492954 - ], - [ - -73.423688, - 45.493026 - ], - [ - -73.423762, - 45.493067 - ], - [ - -73.423881, - 45.493134 - ], - [ - -73.423992, - 45.493193 - ], - [ - -73.424086, - 45.493252 - ], - [ - -73.424167, - 45.493319 - ], - [ - -73.4245, - 45.493675 - ], - [ - -73.424539, - 45.493715 - ], - [ - -73.424604, - 45.493823 - ], - [ - -73.424742, - 45.493976 - ], - [ - -73.424872, - 45.49408 - ], - [ - -73.425006, - 45.494188 - ], - [ - -73.425153, - 45.494283 - ], - [ - -73.425239, - 45.49433 - ], - [ - -73.425348, - 45.494391 - ], - [ - -73.425495, - 45.494463 - ], - [ - -73.425936, - 45.494625 - ], - [ - -73.426225, - 45.494733 - ], - [ - -73.42705, - 45.495013 - ], - [ - -73.427246, - 45.49508 - ], - [ - -73.427753, - 45.495255 - ], - [ - -73.427911, - 45.49531 - ], - [ - -73.428712, - 45.495599 - ], - [ - -73.430359, - 45.496178 - ], - [ - -73.430519, - 45.496234 - ], - [ - -73.432051, - 45.496777 - ], - [ - -73.432274, - 45.496856 - ], - [ - -73.434175, - 45.497533 - ], - [ - -73.43431, - 45.497582 - ], - [ - -73.435579, - 45.498023 - ], - [ - -73.435865, - 45.4981 - ], - [ - -73.436036, - 45.49814 - ], - [ - -73.436216, - 45.498172 - ], - [ - -73.436513, - 45.498249 - ], - [ - -73.436806, - 45.498348 - ], - [ - -73.436872, - 45.498374 - ], - [ - -73.436955, - 45.498406 - ], - [ - -73.439319, - 45.499236 - ], - [ - -73.439705, - 45.499371 - ], - [ - -73.439319, - 45.499924 - ], - [ - -73.439307, - 45.49994 - ], - [ - -73.43919, - 45.500108 - ], - [ - -73.4391, - 45.500204 - ], - [ - -73.438982, - 45.500329 - ], - [ - -73.438767, - 45.500522 - ], - [ - -73.438604, - 45.500652 - ], - [ - -73.438428, - 45.500778 - ], - [ - -73.437988, - 45.501097 - ], - [ - -73.437808, - 45.501228 - ], - [ - -73.437244, - 45.501651 - ], - [ - -73.436813, - 45.501961 - ], - [ - -73.436593, - 45.502087 - ], - [ - -73.436771, - 45.502154 - ], - [ - -73.437001, - 45.502237 - ], - [ - -73.43716, - 45.502294 - ], - [ - -73.438126, - 45.502649 - ], - [ - -73.439474, - 45.503145 - ], - [ - -73.440013, - 45.503344 - ], - [ - -73.4405, - 45.503528 - ], - [ - -73.441152, - 45.503767 - ], - [ - -73.441539, - 45.503904 - ], - [ - -73.443587, - 45.504627 - ], - [ - -73.443718, - 45.504673 - ], - [ - -73.443791, - 45.504718 - ], - [ - -73.44362, - 45.504965 - ], - [ - -73.442429, - 45.506739 - ], - [ - -73.442417, - 45.506757 - ], - [ - -73.442227, - 45.507039 - ], - [ - -73.439054, - 45.507258 - ], - [ - -73.438426, - 45.507284 - ], - [ - -73.438208, - 45.507286 - ], - [ - -73.43796, - 45.507288 - ], - [ - -73.436434, - 45.507297 - ], - [ - -73.435792, - 45.507278 - ], - [ - -73.435015, - 45.507249 - ], - [ - -73.434228, - 45.507219 - ], - [ - -73.433669, - 45.507165 - ], - [ - -73.433481, - 45.507146 - ], - [ - -73.433316, - 45.507128 - ], - [ - -73.43308, - 45.507092 - ], - [ - -73.432958, - 45.507065 - ], - [ - -73.432823, - 45.507025 - ], - [ - -73.432697, - 45.506971 - ], - [ - -73.432507, - 45.50688 - ], - [ - -73.432305, - 45.506772 - ], - [ - -73.432116, - 45.506678 - ], - [ - -73.432105, - 45.506615 - ], - [ - -73.431909, - 45.506516 - ], - [ - -73.431784, - 45.506462 - ], - [ - -73.431662, - 45.506421 - ], - [ - -73.431524, - 45.506385 - ], - [ - -73.431353, - 45.506349 - ], - [ - -73.431252, - 45.506335 - ], - [ - -73.431145, - 45.506326 - ], - [ - -73.430968, - 45.506317 - ], - [ - -73.430791, - 45.506326 - ], - [ - -73.430645, - 45.506339 - ], - [ - -73.43052, - 45.506357 - ], - [ - -73.430422, - 45.506366 - ], - [ - -73.430275, - 45.506389 - ], - [ - -73.430066, - 45.506425 - ], - [ - -73.430099, - 45.506555 - ], - [ - -73.430103, - 45.506573 - ], - [ - -73.4302, - 45.506807 - ], - [ - -73.430327, - 45.507058 - ], - [ - -73.430341, - 45.507086 - ], - [ - -73.430485, - 45.507257 - ], - [ - -73.430506, - 45.507276 - ], - [ - -73.430509, - 45.507278 - ], - [ - -73.430608, - 45.507365 - ], - [ - -73.430672, - 45.507415 - ], - [ - -73.431358, - 45.507856 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431709, - 45.508009 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.432209, - 45.507974 - ], - [ - -73.435178, - 45.507773 - ], - [ - -73.437575, - 45.507662 - ], - [ - -73.438988, - 45.507572 - ], - [ - -73.440344, - 45.507425 - ], - [ - -73.445881, - 45.507063 - ], - [ - -73.451412, - 45.506695 - ], - [ - -73.452257, - 45.506638 - ], - [ - -73.452565, - 45.506616 - ], - [ - -73.453776, - 45.50654 - ], - [ - -73.455247, - 45.506419 - ], - [ - -73.456957, - 45.50624 - ], - [ - -73.460279, - 45.505832 - ], - [ - -73.460374, - 45.505823 - ], - [ - -73.461182, - 45.505728 - ], - [ - -73.463671, - 45.505509 - ], - [ - -73.465111, - 45.505401 - ], - [ - -73.467755, - 45.505222 - ], - [ - -73.468692, - 45.505168 - ], - [ - -73.470746, - 45.505025 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492938, - 45.510118 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497933, - 45.512056 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.500896, - 45.513013 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505125, - 45.514484 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506107, - 45.514749 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511921, - 45.516876 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513441, - 45.518311 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.51501, - 45.519424 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518902, - 45.520632 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 56, - "properties": { - "id": "95a1d9bd-c2ce-4771-bb5c-8e1cbb540d9f", - "data": { - "gtfs": { - "shape_id": "19_3_A" - }, - "segments": [ - { - "distanceMeters": 334, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 388, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 328, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 316, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 400, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 5786, - "travelTimeSeconds": 452 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 597, - "travelTimeSeconds": 103 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 744, - "travelTimeSeconds": 129 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 15449, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8582.217253240633, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.88, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 8.05, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.88 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "30c08115-a1b6-45b8-9122-c5fe99723d2e", - "bf4259d8-23ae-478a-8a93-ec28083b908d", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "5dd96d41-c4eb-4453-9e97-752999b1688d", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "78262195-7c3a-4ed5-81d8-a33c906e3099", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "4b07d309-8f54-43c8-997d-d4abd77f2d1e", - "f4abcc97-51ec-431d-988f-977063b9070f", - "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", - "28985ee5-9fc5-416a-81f8-ff25dba2b6da", - "d68685b2-7e92-4934-989f-8ccfae13451f", - "d9bf2534-8f61-4d16-adab-8e4d84e855be", - "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", - "4a180761-ffc5-4d97-873b-916ca1656760", - "63ff9173-3e59-4bee-9a21-57d199dc88ec", - "565e8198-26d9-4715-bc5d-75974e6721d9", - "9b336d4e-db84-472b-aee3-9690d5d224b6", - "3b96e6d6-e4f7-4e24-903e-8fb3993ff6c9", - "1a2084b5-bc8c-4697-804e-35bea928cc06", - "261db898-2ef3-4105-a628-5330af439dce", - "631a5504-9e7c-4041-85e7-bf81e6a995d2", - "b487112d-20d7-48e5-a658-6d701c316792", - "2f59e70c-00bf-46fc-9104-53f0aa9fb5e8", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "a5b9648a-83c0-4eab-a54b-68c23aecae43", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", - "be19484c-af95-45b2-bfe5-24342dd1b710", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "b9129276-b11b-471e-80e7-c8a3ff46ff9c", - "segments": [ - 0, - 1, - 4, - 11, - 15, - 22, - 26, - 29, - 32, - 44, - 54, - 66, - 73, - 76, - 78, - 80, - 88, - 92, - 100, - 106, - 113, - 114, - 118, - 123, - 129, - 221, - 234, - 237, - 244, - 263, - 269, - 282, - 289 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 56, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.420884, - 45.492385 - ], - [ - -73.418963, - 45.495065 - ], - [ - -73.418892, - 45.495165 - ], - [ - -73.416874, - 45.498016 - ], - [ - -73.416836, - 45.498064 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.415848, - 45.497845 - ], - [ - -73.415069, - 45.497555 - ], - [ - -73.415032, - 45.497542 - ], - [ - -73.414637, - 45.497397 - ], - [ - -73.413391, - 45.496942 - ], - [ - -73.413145, - 45.496852 - ], - [ - -73.41213, - 45.496482 - ], - [ - -73.411766, - 45.496343 - ], - [ - -73.411419, - 45.496194 - ], - [ - -73.411071, - 45.496033 - ], - [ - -73.410951, - 45.495977 - ], - [ - -73.410895, - 45.495951 - ], - [ - -73.410789, - 45.495896 - ], - [ - -73.409735, - 45.495323 - ], - [ - -73.409349, - 45.495112 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.409264, - 45.494526 - ], - [ - -73.409537, - 45.494129 - ], - [ - -73.409554, - 45.494104 - ], - [ - -73.409872, - 45.493642 - ], - [ - -73.41136, - 45.491547 - ], - [ - -73.41144, - 45.491434 - ], - [ - -73.412048, - 45.490575 - ], - [ - -73.413084, - 45.489109 - ], - [ - -73.41317, - 45.488987 - ], - [ - -73.414954, - 45.48962 - ], - [ - -73.415798, - 45.489919 - ], - [ - -73.41588, - 45.489948 - ], - [ - -73.416181, - 45.490056 - ], - [ - -73.416563, - 45.490205 - ], - [ - -73.416833, - 45.490317 - ], - [ - -73.417817, - 45.490728 - ], - [ - -73.418126, - 45.490867 - ], - [ - -73.418329, - 45.490966 - ], - [ - -73.418926, - 45.491273 - ], - [ - -73.419065, - 45.491358 - ], - [ - -73.419232, - 45.491444 - ], - [ - -73.419402, - 45.491507 - ], - [ - -73.420037, - 45.49172 - ], - [ - -73.420235, - 45.491787 - ], - [ - -73.420442, - 45.49185 - ], - [ - -73.421099, - 45.492084 - ], - [ - -73.421973, - 45.492395 - ], - [ - -73.422792, - 45.492684 - ], - [ - -73.423173, - 45.492823 - ], - [ - -73.423404, - 45.4929 - ], - [ - -73.423545, - 45.492954 - ], - [ - -73.423688, - 45.493026 - ], - [ - -73.423766, - 45.49307 - ], - [ - -73.423881, - 45.493134 - ], - [ - -73.423992, - 45.493193 - ], - [ - -73.424086, - 45.493252 - ], - [ - -73.424167, - 45.493319 - ], - [ - -73.4245, - 45.493675 - ], - [ - -73.424539, - 45.493715 - ], - [ - -73.424604, - 45.493823 - ], - [ - -73.424742, - 45.493976 - ], - [ - -73.424872, - 45.49408 - ], - [ - -73.425006, - 45.494188 - ], - [ - -73.425153, - 45.494283 - ], - [ - -73.425244, - 45.494333 - ], - [ - -73.425348, - 45.494391 - ], - [ - -73.425495, - 45.494463 - ], - [ - -73.425936, - 45.494625 - ], - [ - -73.426225, - 45.494733 - ], - [ - -73.42705, - 45.495013 - ], - [ - -73.427246, - 45.49508 - ], - [ - -73.427758, - 45.495257 - ], - [ - -73.427911, - 45.49531 - ], - [ - -73.428712, - 45.495599 - ], - [ - -73.430365, - 45.49618 - ], - [ - -73.430519, - 45.496234 - ], - [ - -73.432057, - 45.496779 - ], - [ - -73.432274, - 45.496856 - ], - [ - -73.434181, - 45.497536 - ], - [ - -73.43431, - 45.497582 - ], - [ - -73.435579, - 45.498023 - ], - [ - -73.435865, - 45.4981 - ], - [ - -73.436036, - 45.49814 - ], - [ - -73.436216, - 45.498172 - ], - [ - -73.436513, - 45.498249 - ], - [ - -73.436806, - 45.498348 - ], - [ - -73.436879, - 45.498377 - ], - [ - -73.436955, - 45.498406 - ], - [ - -73.439319, - 45.499236 - ], - [ - -73.439705, - 45.499371 - ], - [ - -73.439315, - 45.499929 - ], - [ - -73.439307, - 45.49994 - ], - [ - -73.43919, - 45.500108 - ], - [ - -73.4391, - 45.500204 - ], - [ - -73.438982, - 45.500329 - ], - [ - -73.438767, - 45.500522 - ], - [ - -73.438604, - 45.500652 - ], - [ - -73.438428, - 45.500778 - ], - [ - -73.437982, - 45.501102 - ], - [ - -73.437808, - 45.501228 - ], - [ - -73.437244, - 45.501651 - ], - [ - -73.436813, - 45.501961 - ], - [ - -73.436593, - 45.502087 - ], - [ - -73.436771, - 45.502154 - ], - [ - -73.437008, - 45.50224 - ], - [ - -73.43716, - 45.502294 - ], - [ - -73.438126, - 45.502649 - ], - [ - -73.439474, - 45.503145 - ], - [ - -73.440013, - 45.503344 - ], - [ - -73.4405, - 45.503528 - ], - [ - -73.441152, - 45.503767 - ], - [ - -73.441547, - 45.503907 - ], - [ - -73.443595, - 45.50463 - ], - [ - -73.443718, - 45.504673 - ], - [ - -73.443791, - 45.504718 - ], - [ - -73.44362, - 45.504965 - ], - [ - -73.442425, - 45.506745 - ], - [ - -73.442417, - 45.506757 - ], - [ - -73.442227, - 45.507039 - ], - [ - -73.442366, - 45.507034 - ], - [ - -73.442555, - 45.507021 - ], - [ - -73.442678, - 45.507013 - ], - [ - -73.443732, - 45.506945 - ], - [ - -73.445125, - 45.506865 - ], - [ - -73.445578, - 45.50682 - ], - [ - -73.446069, - 45.506789 - ], - [ - -73.447691, - 45.506681 - ], - [ - -73.450484, - 45.506494 - ], - [ - -73.45126, - 45.506445 - ], - [ - -73.451887, - 45.506404 - ], - [ - -73.452198, - 45.506382 - ], - [ - -73.452619, - 45.506355 - ], - [ - -73.452813, - 45.506342 - ], - [ - -73.453036, - 45.506328 - ], - [ - -73.453375, - 45.506301 - ], - [ - -73.453626, - 45.506284 - ], - [ - -73.453792, - 45.506275 - ], - [ - -73.45462, - 45.506212 - ], - [ - -73.455407, - 45.506145 - ], - [ - -73.4557, - 45.506113 - ], - [ - -73.456027, - 45.506073 - ], - [ - -73.456441, - 45.506015 - ], - [ - -73.456937, - 45.505934 - ], - [ - -73.457379, - 45.505858 - ], - [ - -73.457907, - 45.505777 - ], - [ - -73.459817, - 45.505548 - ], - [ - -73.460124, - 45.505512 - ], - [ - -73.460429, - 45.505476 - ], - [ - -73.460924, - 45.505418 - ], - [ - -73.461479, - 45.505346 - ], - [ - -73.461828, - 45.505274 - ], - [ - -73.462125, - 45.505283 - ], - [ - -73.462434, - 45.505254 - ], - [ - -73.462468, - 45.505444 - ], - [ - -73.462548, - 45.505805 - ], - [ - -73.462686, - 45.505794 - ], - [ - -73.464899, - 45.505604 - ], - [ - -73.465836, - 45.50551 - ], - [ - -73.467696, - 45.505308 - ], - [ - -73.468178, - 45.505267 - ], - [ - -73.470418, - 45.50511 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492934, - 45.510116 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497941, - 45.512058 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.500892, - 45.513012 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505133, - 45.514487 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506107, - 45.514749 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511919, - 45.516874 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.51344, - 45.51831 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515008, - 45.519424 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518901, - 45.520631 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 57, - "properties": { - "id": "c71b1ba7-785e-4393-9f53-a8acd5afeb78", - "data": { - "gtfs": { - "shape_id": "19_2_A" - }, - "segments": [ - { - "distanceMeters": 334, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 388, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 328, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 316, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 400, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 4518, - "travelTimeSeconds": 427 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 597, - "travelTimeSeconds": 91 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 744, - "travelTimeSeconds": 114 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13476, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8582.217253240633, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.74, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 7.02, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.74 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "30c08115-a1b6-45b8-9122-c5fe99723d2e", - "bf4259d8-23ae-478a-8a93-ec28083b908d", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "5dd96d41-c4eb-4453-9e97-752999b1688d", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "78262195-7c3a-4ed5-81d8-a33c906e3099", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "4b07d309-8f54-43c8-997d-d4abd77f2d1e", - "f4abcc97-51ec-431d-988f-977063b9070f", - "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", - "28985ee5-9fc5-416a-81f8-ff25dba2b6da", - "d68685b2-7e92-4934-989f-8ccfae13451f", - "d9bf2534-8f61-4d16-adab-8e4d84e855be", - "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", - "4a180761-ffc5-4d97-873b-916ca1656760", - "63ff9173-3e59-4bee-9a21-57d199dc88ec", - "565e8198-26d9-4715-bc5d-75974e6721d9", - "9b336d4e-db84-472b-aee3-9690d5d224b6", - "3b96e6d6-e4f7-4e24-903e-8fb3993ff6c9", - "1a2084b5-bc8c-4697-804e-35bea928cc06", - "261db898-2ef3-4105-a628-5330af439dce", - "631a5504-9e7c-4041-85e7-bf81e6a995d2", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "a5b9648a-83c0-4eab-a54b-68c23aecae43", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", - "be19484c-af95-45b2-bfe5-24342dd1b710", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "b9129276-b11b-471e-80e7-c8a3ff46ff9c", - "segments": [ - 0, - 1, - 4, - 11, - 15, - 22, - 26, - 29, - 32, - 44, - 54, - 66, - 73, - 76, - 78, - 80, - 88, - 92, - 100, - 106, - 113, - 114, - 118, - 196, - 209, - 212, - 219, - 238, - 244, - 257, - 264 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 57, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.420884, - 45.492385 - ], - [ - -73.418892, - 45.495165 - ], - [ - -73.416874, - 45.498016 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.415848, - 45.497845 - ], - [ - -73.415069, - 45.497555 - ], - [ - -73.415032, - 45.497542 - ], - [ - -73.414637, - 45.497397 - ], - [ - -73.413391, - 45.496942 - ], - [ - -73.41213, - 45.496482 - ], - [ - -73.411766, - 45.496343 - ], - [ - -73.411419, - 45.496194 - ], - [ - -73.410951, - 45.495977 - ], - [ - -73.410895, - 45.495951 - ], - [ - -73.410789, - 45.495896 - ], - [ - -73.409735, - 45.495323 - ], - [ - -73.409349, - 45.495112 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.409537, - 45.494129 - ], - [ - -73.409554, - 45.494104 - ], - [ - -73.409872, - 45.493642 - ], - [ - -73.411417, - 45.491466 - ], - [ - -73.41144, - 45.491434 - ], - [ - -73.412048, - 45.490575 - ], - [ - -73.41317, - 45.488987 - ], - [ - -73.414954, - 45.48962 - ], - [ - -73.41588, - 45.489948 - ], - [ - -73.416181, - 45.490056 - ], - [ - -73.416563, - 45.490205 - ], - [ - -73.416833, - 45.490317 - ], - [ - -73.417817, - 45.490728 - ], - [ - -73.418126, - 45.490867 - ], - [ - -73.418329, - 45.490966 - ], - [ - -73.418926, - 45.491273 - ], - [ - -73.419065, - 45.491358 - ], - [ - -73.419232, - 45.491444 - ], - [ - -73.419402, - 45.491507 - ], - [ - -73.420235, - 45.491787 - ], - [ - -73.420442, - 45.49185 - ], - [ - -73.421099, - 45.492084 - ], - [ - -73.421973, - 45.492395 - ], - [ - -73.422792, - 45.492684 - ], - [ - -73.423173, - 45.492823 - ], - [ - -73.423404, - 45.4929 - ], - [ - -73.423545, - 45.492954 - ], - [ - -73.423688, - 45.493026 - ], - [ - -73.423881, - 45.493134 - ], - [ - -73.423992, - 45.493193 - ], - [ - -73.424086, - 45.493252 - ], - [ - -73.424167, - 45.493319 - ], - [ - -73.4245, - 45.493675 - ], - [ - -73.424539, - 45.493715 - ], - [ - -73.424604, - 45.493823 - ], - [ - -73.424742, - 45.493976 - ], - [ - -73.424872, - 45.49408 - ], - [ - -73.425006, - 45.494188 - ], - [ - -73.425153, - 45.494283 - ], - [ - -73.425348, - 45.494391 - ], - [ - -73.425495, - 45.494463 - ], - [ - -73.425936, - 45.494625 - ], - [ - -73.426225, - 45.494733 - ], - [ - -73.42705, - 45.495013 - ], - [ - -73.427246, - 45.49508 - ], - [ - -73.427911, - 45.49531 - ], - [ - -73.428712, - 45.495599 - ], - [ - -73.430519, - 45.496234 - ], - [ - -73.432274, - 45.496856 - ], - [ - -73.432489, - 45.496932 - ], - [ - -73.43431, - 45.497582 - ], - [ - -73.435579, - 45.498023 - ], - [ - -73.435865, - 45.4981 - ], - [ - -73.436036, - 45.49814 - ], - [ - -73.436216, - 45.498172 - ], - [ - -73.436513, - 45.498249 - ], - [ - -73.436806, - 45.498348 - ], - [ - -73.436955, - 45.498406 - ], - [ - -73.439319, - 45.499236 - ], - [ - -73.439705, - 45.499371 - ], - [ - -73.439307, - 45.49994 - ], - [ - -73.43919, - 45.500108 - ], - [ - -73.4391, - 45.500204 - ], - [ - -73.438982, - 45.500329 - ], - [ - -73.438767, - 45.500522 - ], - [ - -73.438604, - 45.500652 - ], - [ - -73.438428, - 45.500778 - ], - [ - -73.437808, - 45.501228 - ], - [ - -73.437244, - 45.501651 - ], - [ - -73.436813, - 45.501961 - ], - [ - -73.436593, - 45.502087 - ], - [ - -73.436771, - 45.502154 - ], - [ - -73.43716, - 45.502294 - ], - [ - -73.438126, - 45.502649 - ], - [ - -73.439474, - 45.503145 - ], - [ - -73.440013, - 45.503344 - ], - [ - -73.4405, - 45.503528 - ], - [ - -73.441152, - 45.503767 - ], - [ - -73.443718, - 45.504673 - ], - [ - -73.443791, - 45.504718 - ], - [ - -73.44362, - 45.504965 - ], - [ - -73.442727, - 45.506295 - ], - [ - -73.442417, - 45.506757 - ], - [ - -73.442227, - 45.507039 - ], - [ - -73.439054, - 45.507258 - ], - [ - -73.438426, - 45.507284 - ], - [ - -73.43796, - 45.507288 - ], - [ - -73.436434, - 45.507297 - ], - [ - -73.435792, - 45.507278 - ], - [ - -73.435015, - 45.507249 - ], - [ - -73.434228, - 45.507219 - ], - [ - -73.433481, - 45.507146 - ], - [ - -73.433316, - 45.507128 - ], - [ - -73.43308, - 45.507092 - ], - [ - -73.432958, - 45.507065 - ], - [ - -73.432823, - 45.507025 - ], - [ - -73.432697, - 45.506971 - ], - [ - -73.432507, - 45.50688 - ], - [ - -73.432305, - 45.506772 - ], - [ - -73.432116, - 45.506678 - ], - [ - -73.432105, - 45.506615 - ], - [ - -73.431909, - 45.506516 - ], - [ - -73.431784, - 45.506462 - ], - [ - -73.431662, - 45.506421 - ], - [ - -73.431524, - 45.506385 - ], - [ - -73.431353, - 45.506349 - ], - [ - -73.431252, - 45.506335 - ], - [ - -73.431145, - 45.506326 - ], - [ - -73.430968, - 45.506317 - ], - [ - -73.430791, - 45.506326 - ], - [ - -73.430645, - 45.506339 - ], - [ - -73.430544, - 45.506354 - ], - [ - -73.43052, - 45.506357 - ], - [ - -73.430422, - 45.506366 - ], - [ - -73.430275, - 45.506389 - ], - [ - -73.430066, - 45.506425 - ], - [ - -73.430099, - 45.506555 - ], - [ - -73.430103, - 45.506573 - ], - [ - -73.4302, - 45.506807 - ], - [ - -73.430341, - 45.507086 - ], - [ - -73.430485, - 45.507257 - ], - [ - -73.430506, - 45.507276 - ], - [ - -73.430509, - 45.507278 - ], - [ - -73.430608, - 45.507365 - ], - [ - -73.430672, - 45.507415 - ], - [ - -73.431358, - 45.507856 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431709, - 45.508009 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.432209, - 45.507974 - ], - [ - -73.433374, - 45.507895 - ], - [ - -73.435178, - 45.507773 - ], - [ - -73.437575, - 45.507662 - ], - [ - -73.438988, - 45.507572 - ], - [ - -73.440344, - 45.507425 - ], - [ - -73.445881, - 45.507063 - ], - [ - -73.446172, - 45.507044 - ], - [ - -73.452257, - 45.506638 - ], - [ - -73.452565, - 45.506616 - ], - [ - -73.453776, - 45.50654 - ], - [ - -73.455247, - 45.506419 - ], - [ - -73.456957, - 45.50624 - ], - [ - -73.460279, - 45.505832 - ], - [ - -73.460374, - 45.505823 - ], - [ - -73.461182, - 45.505728 - ], - [ - -73.463671, - 45.505509 - ], - [ - -73.465111, - 45.505401 - ], - [ - -73.467755, - 45.505222 - ], - [ - -73.468692, - 45.505168 - ], - [ - -73.470746, - 45.505025 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.472341, - 45.504925 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490472, - 45.507212 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504059, - 45.514167 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506107, - 45.514749 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 58, - "properties": { - "id": "eb6b7f42-dc6f-49b3-b373-d48e0168dd63", - "data": { - "gtfs": { - "shape_id": "19_1_A" - }, - "segments": [ - { - "distanceMeters": 1854, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 2071, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 1843, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 1033, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 1399, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 2054, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 1682, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 1360, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 2154, - "travelTimeSeconds": 54 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 15449, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 83.40053737943302, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 51.49, - "travelTimeWithoutDwellTimesSeconds": 300, - "operatingTimeWithLayoverTimeSeconds": 480, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 300, - "operatingSpeedWithLayoverMetersPerSecond": 32.18, - "averageSpeedWithoutDwellTimesMetersPerSecond": 51.49 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "30c08115-a1b6-45b8-9122-c5fe99723d2e", - "bf4259d8-23ae-478a-8a93-ec28083b908d", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "5dd96d41-c4eb-4453-9e97-752999b1688d", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "78262195-7c3a-4ed5-81d8-a33c906e3099", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "4b07d309-8f54-43c8-997d-d4abd77f2d1e", - "f4abcc97-51ec-431d-988f-977063b9070f" - ], - "stops": [], - "line_id": "b9129276-b11b-471e-80e7-c8a3ff46ff9c", - "segments": [ - 0, - 21, - 67, - 99, - 129, - 154, - 169, - 192, - 222 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 58, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.455441, - 45.537882 - ], - [ - -73.455036, - 45.537828 - ], - [ - -73.454083, - 45.537706 - ], - [ - -73.453056, - 45.537575 - ], - [ - -73.453038, - 45.53771 - ], - [ - -73.452922, - 45.53836 - ], - [ - -73.452904, - 45.538462 - ], - [ - -73.452804, - 45.539091 - ], - [ - -73.452723, - 45.539683 - ], - [ - -73.452717, - 45.539726 - ], - [ - -73.452594, - 45.540342 - ], - [ - -73.452366, - 45.540772 - ], - [ - -73.45227, - 45.540954 - ], - [ - -73.452075, - 45.541179 - ], - [ - -73.45197, - 45.541296 - ], - [ - -73.451796, - 45.541426 - ], - [ - -73.451437, - 45.541633 - ], - [ - -73.451233, - 45.541718 - ], - [ - -73.450967, - 45.541781 - ], - [ - -73.450741, - 45.541822 - ], - [ - -73.45065, - 45.541825 - ], - [ - -73.450524, - 45.54183 - ], - [ - -73.450532, - 45.54192 - ], - [ - -73.450512, - 45.542105 - ], - [ - -73.450477, - 45.54224 - ], - [ - -73.449919, - 45.542604 - ], - [ - -73.449268, - 45.543031 - ], - [ - -73.448896, - 45.543268 - ], - [ - -73.448895, - 45.543269 - ], - [ - -73.448583, - 45.543467 - ], - [ - -73.448064, - 45.543067 - ], - [ - -73.447976, - 45.542999 - ], - [ - -73.447904, - 45.542944 - ], - [ - -73.447355, - 45.542526 - ], - [ - -73.446888, - 45.542188 - ], - [ - -73.446733, - 45.542076 - ], - [ - -73.446124, - 45.541621 - ], - [ - -73.445606, - 45.54122 - ], - [ - -73.445503, - 45.54114 - ], - [ - -73.444511, - 45.54041 - ], - [ - -73.444375, - 45.540325 - ], - [ - -73.444216, - 45.540244 - ], - [ - -73.44408, - 45.540185 - ], - [ - -73.443875, - 45.540135 - ], - [ - -73.44377, - 45.540109 - ], - [ - -73.4435, - 45.540041 - ], - [ - -73.44267, - 45.539892 - ], - [ - -73.442456, - 45.539852 - ], - [ - -73.442205, - 45.539784 - ], - [ - -73.442148, - 45.539764 - ], - [ - -73.442001, - 45.539712 - ], - [ - -73.441896, - 45.53968 - ], - [ - -73.441646, - 45.539559 - ], - [ - -73.44151, - 45.539487 - ], - [ - -73.441387, - 45.539397 - ], - [ - -73.441242, - 45.539293 - ], - [ - -73.441122, - 45.539153 - ], - [ - -73.441004, - 45.538991 - ], - [ - -73.440944, - 45.538829 - ], - [ - -73.440917, - 45.538748 - ], - [ - -73.440909, - 45.538668 - ], - [ - -73.440902, - 45.5386 - ], - [ - -73.440899, - 45.538573 - ], - [ - -73.440907, - 45.538487 - ], - [ - -73.440917, - 45.538393 - ], - [ - -73.440957, - 45.538285 - ], - [ - -73.441023, - 45.538164 - ], - [ - -73.441098, - 45.538047 - ], - [ - -73.4412, - 45.537934 - ], - [ - -73.441569, - 45.537651 - ], - [ - -73.441939, - 45.537372 - ], - [ - -73.442459, - 45.537008 - ], - [ - -73.442686, - 45.536815 - ], - [ - -73.442788, - 45.536668 - ], - [ - -73.442789, - 45.536666 - ], - [ - -73.442839, - 45.536594 - ], - [ - -73.44311, - 45.535924 - ], - [ - -73.443379, - 45.535204 - ], - [ - -73.443894, - 45.534372 - ], - [ - -73.443948, - 45.534274 - ], - [ - -73.443989, - 45.534201 - ], - [ - -73.444489, - 45.534346 - ], - [ - -73.444931, - 45.53453 - ], - [ - -73.445118, - 45.534611 - ], - [ - -73.445446, - 45.534818 - ], - [ - -73.445653, - 45.534958 - ], - [ - -73.445829, - 45.535111 - ], - [ - -73.446021, - 45.535293 - ], - [ - -73.446079, - 45.535349 - ], - [ - -73.44617, - 45.535435 - ], - [ - -73.446275, - 45.535528 - ], - [ - -73.446362, - 45.535606 - ], - [ - -73.446623, - 45.535795 - ], - [ - -73.446833, - 45.535908 - ], - [ - -73.447009, - 45.53598 - ], - [ - -73.447135, - 45.536029 - ], - [ - -73.447379, - 45.536097 - ], - [ - -73.448323, - 45.536304 - ], - [ - -73.448623, - 45.536399 - ], - [ - -73.44878, - 45.536492 - ], - [ - -73.448898, - 45.536561 - ], - [ - -73.450391, - 45.537453 - ], - [ - -73.450563, - 45.537556 - ], - [ - -73.450772, - 45.537669 - ], - [ - -73.450923, - 45.537718 - ], - [ - -73.450952, - 45.537727 - ], - [ - -73.451166, - 45.537772 - ], - [ - -73.451401, - 45.537795 - ], - [ - -73.451627, - 45.537786 - ], - [ - -73.452059, - 45.537741 - ], - [ - -73.452711, - 45.537692 - ], - [ - -73.452874, - 45.537696 - ], - [ - -73.452931, - 45.537697 - ], - [ - -73.453038, - 45.53771 - ], - [ - -73.454051, - 45.537823 - ], - [ - -73.455005, - 45.537945 - ], - [ - -73.455965, - 45.538077 - ], - [ - -73.456321, - 45.538126 - ], - [ - -73.456445, - 45.538144 - ], - [ - -73.456357, - 45.53853 - ], - [ - -73.456221, - 45.539372 - ], - [ - -73.456144, - 45.539984 - ], - [ - -73.45609, - 45.540287 - ], - [ - -73.456076, - 45.540361 - ], - [ - -73.455916, - 45.541266 - ], - [ - -73.455834, - 45.54181 - ], - [ - -73.455731, - 45.542483 - ], - [ - -73.455702, - 45.542678 - ], - [ - -73.455523, - 45.543849 - ], - [ - -73.455509, - 45.543938 - ], - [ - -73.455433, - 45.54441 - ], - [ - -73.455289, - 45.544748 - ], - [ - -73.455178, - 45.54491 - ], - [ - -73.455067, - 45.545031 - ], - [ - -73.454985, - 45.545117 - ], - [ - -73.45488, - 45.545202 - ], - [ - -73.454712, - 45.545301 - ], - [ - -73.454658, - 45.545339 - ], - [ - -73.454517, - 45.54544 - ], - [ - -73.454362, - 45.54553 - ], - [ - -73.454039, - 45.545719 - ], - [ - -73.453554, - 45.546052 - ], - [ - -73.453387, - 45.546196 - ], - [ - -73.453186, - 45.546448 - ], - [ - -73.45304, - 45.546592 - ], - [ - -73.452912, - 45.546715 - ], - [ - -73.452859, - 45.546749 - ], - [ - -73.452243, - 45.547149 - ], - [ - -73.452725, - 45.547516 - ], - [ - -73.454111, - 45.548569 - ], - [ - -73.454117, - 45.548573 - ], - [ - -73.454269, - 45.548689 - ], - [ - -73.454302, - 45.548714 - ], - [ - -73.45617, - 45.550133 - ], - [ - -73.456272, - 45.55021 - ], - [ - -73.458174, - 45.551651 - ], - [ - -73.458459, - 45.551845 - ], - [ - -73.458867, - 45.552123 - ], - [ - -73.459495, - 45.552583 - ], - [ - -73.459717, - 45.552763 - ], - [ - -73.45984, - 45.552911 - ], - [ - -73.459984, - 45.553154 - ], - [ - -73.460074, - 45.553307 - ], - [ - -73.460476, - 45.553964 - ], - [ - -73.460843, - 45.554611 - ], - [ - -73.460904, - 45.55472 - ], - [ - -73.461041, - 45.554923 - ], - [ - -73.461091, - 45.55497 - ], - [ - -73.461155, - 45.555031 - ], - [ - -73.461353, - 45.555197 - ], - [ - -73.461529, - 45.555341 - ], - [ - -73.461661, - 45.555436 - ], - [ - -73.46167, - 45.555438 - ], - [ - -73.461719, - 45.555453 - ], - [ - -73.461827, - 45.555485 - ], - [ - -73.461925, - 45.555463 - ], - [ - -73.461985, - 45.555435 - ], - [ - -73.461991, - 45.555431 - ], - [ - -73.462207, - 45.555292 - ], - [ - -73.462576, - 45.555058 - ], - [ - -73.46269, - 45.554985 - ], - [ - -73.464004, - 45.554145 - ], - [ - -73.464065, - 45.554127 - ], - [ - -73.464203, - 45.554087 - ], - [ - -73.464314, - 45.554019 - ], - [ - -73.464675, - 45.55379 - ], - [ - -73.464758, - 45.553732 - ], - [ - -73.466649, - 45.555169 - ], - [ - -73.467394, - 45.555735 - ], - [ - -73.468707, - 45.556734 - ], - [ - -73.468863, - 45.556851 - ], - [ - -73.468884, - 45.556867 - ], - [ - -73.468905, - 45.556882 - ], - [ - -73.469456, - 45.557296 - ], - [ - -73.469905, - 45.557643 - ], - [ - -73.470698, - 45.55823 - ], - [ - -73.470793, - 45.5583 - ], - [ - -73.470906, - 45.55839 - ], - [ - -73.471187, - 45.558615 - ], - [ - -73.471642, - 45.558966 - ], - [ - -73.472161, - 45.559358 - ], - [ - -73.4722, - 45.559387 - ], - [ - -73.472928, - 45.559934 - ], - [ - -73.474132, - 45.560854 - ], - [ - -73.474224, - 45.560924 - ], - [ - -73.475111, - 45.561594 - ], - [ - -73.475605, - 45.561969 - ], - [ - -73.475818, - 45.56213 - ], - [ - -73.47747, - 45.563381 - ], - [ - -73.478124, - 45.563885 - ], - [ - -73.478719, - 45.564335 - ], - [ - -73.47891, - 45.564479 - ], - [ - -73.480326, - 45.56555 - ], - [ - -73.4804, - 45.565606 - ], - [ - -73.480506, - 45.565687 - ], - [ - -73.482644, - 45.56731 - ], - [ - -73.482793, - 45.567251 - ], - [ - -73.482867, - 45.567188 - ], - [ - -73.483104, - 45.566981 - ], - [ - -73.483373, - 45.566762 - ], - [ - -73.483385, - 45.566753 - ], - [ - -73.484121, - 45.566154 - ], - [ - -73.484207, - 45.566086 - ], - [ - -73.484402, - 45.565933 - ], - [ - -73.4851, - 45.565418 - ], - [ - -73.485255, - 45.565303 - ], - [ - -73.485312, - 45.565245 - ], - [ - -73.485391, - 45.56515 - ], - [ - -73.485466, - 45.56506 - ], - [ - -73.485474, - 45.565044 - ], - [ - -73.485509, - 45.564975 - ], - [ - -73.485396, - 45.564912 - ], - [ - -73.485158, - 45.564813 - ], - [ - -73.484999, - 45.564714 - ], - [ - -73.484885, - 45.564619 - ], - [ - -73.484801, - 45.564538 - ], - [ - -73.484709, - 45.564453 - ], - [ - -73.484666, - 45.564381 - ], - [ - -73.484634, - 45.564327 - ], - [ - -73.484568, - 45.564188 - ], - [ - -73.484524, - 45.564039 - ], - [ - -73.484506, - 45.563909 - ], - [ - -73.48451, - 45.563769 - ], - [ - -73.484511, - 45.563679 - ], - [ - -73.484524, - 45.563621 - ], - [ - -73.484542, - 45.563553 - ], - [ - -73.484577, - 45.563486 - ], - [ - -73.484621, - 45.563405 - ], - [ - -73.484656, - 45.563337 - ], - [ - -73.484718, - 45.563256 - ], - [ - -73.484827, - 45.563148 - ], - [ - -73.485031, - 45.562928 - ], - [ - -73.485175, - 45.562787 - ], - [ - -73.485312, - 45.562653 - ], - [ - -73.485601, - 45.562362 - ], - [ - -73.48565, - 45.562312 - ], - [ - -73.486181, - 45.561776 - ], - [ - -73.48648, - 45.56147 - ], - [ - -73.486974, - 45.560989 - ], - [ - -73.487379, - 45.560714 - ], - [ - -73.487798, - 45.560517 - ], - [ - -73.488514, - 45.560143 - ], - [ - -73.489129, - 45.560629 - ], - [ - -73.489224, - 45.560705 - ], - [ - -73.489277, - 45.560747 - ], - [ - -73.491507, - 45.562509 - ], - [ - -73.491509, - 45.562511 - ], - [ - -73.491545, - 45.562543 - ], - [ - -73.491585, - 45.562559 - ], - [ - -73.4917, - 45.562606 - ], - [ - -73.491908, - 45.562298 - ], - [ - -73.49207, - 45.56203 - ], - [ - -73.492185, - 45.561871 - ], - [ - -73.492369, - 45.561588 - ], - [ - -73.492383, - 45.561567 - ], - [ - -73.492391, - 45.561555 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.494708, - 45.558377 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498677, - 45.553944 - ], - [ - -73.498726, - 45.553872 - ], - [ - -73.498813, - 45.553714 - ], - [ - -73.498895, - 45.553562 - ], - [ - -73.49895, - 45.553404 - ], - [ - -73.498964, - 45.55335 - ], - [ - -73.498988, - 45.55326 - ], - [ - -73.499026, - 45.553035 - ], - [ - -73.499051, - 45.55281 - ], - [ - -73.49911, - 45.552261 - ], - [ - -73.499127, - 45.552095 - ], - [ - -73.499159, - 45.551775 - ], - [ - -73.499199, - 45.551371 - ], - [ - -73.49924, - 45.551092 - ], - [ - -73.499284, - 45.550946 - ], - [ - -73.499366, - 45.550811 - ], - [ - -73.499487, - 45.550651 - ], - [ - -73.499678, - 45.55041 - ], - [ - -73.499747, - 45.550322 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501632, - 45.549807 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.518817, - 45.531415 - ], - [ - -73.518763, - 45.531374 - ], - [ - -73.518709, - 45.531325 - ], - [ - -73.518655, - 45.531271 - ], - [ - -73.518619, - 45.531213 - ], - [ - -73.518601, - 45.531154 - ], - [ - -73.518588, - 45.531096 - ], - [ - -73.518588, - 45.531055 - ], - [ - -73.518597, - 45.531006 - ], - [ - -73.518614, - 45.530963 - ], - [ - -73.518619, - 45.530952 - ], - [ - -73.518659, - 45.530884 - ], - [ - -73.518691, - 45.530826 - ], - [ - -73.518718, - 45.530785 - ], - [ - -73.518753, - 45.530731 - ], - [ - -73.518803, - 45.530646 - ], - [ - -73.518839, - 45.530596 - ], - [ - -73.518875, - 45.530547 - ], - [ - -73.518897, - 45.530497 - ], - [ - -73.518915, - 45.530448 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519398, - 45.526009 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 59, - "properties": { - "id": "cff718e7-2160-4904-9cab-989bdbba4acc", - "data": { - "gtfs": { - "shape_id": "20_1_A" - }, - "segments": [ - { - "distanceMeters": 277, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 93, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 547, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 358, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 331, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 429, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 829, - "travelTimeSeconds": 100 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 3331, - "travelTimeSeconds": 447 - }, - { - "distanceMeters": 691, - "travelTimeSeconds": 93 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 216, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 15101, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5348.87013053785, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.99, - "travelTimeWithoutDwellTimesSeconds": 2160, - "operatingTimeWithLayoverTimeSeconds": 2376, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2160, - "operatingSpeedWithLayoverMetersPerSecond": 6.36, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.99 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "fce7a113-2e0c-4a0f-922a-957670252ea1", - "74325106-fd46-4be2-9872-2d362cabf10d", - "97fd6b08-e74d-4e78-a89d-1a8506473313", - "78852b27-6481-4593-91bd-0a0ac5e52bda", - "ed2d86bc-14d2-40cc-9b3c-fcf430af3d76", - "8990dfff-c24e-4da1-938f-d3124a8df164", - "b6aea660-191f-4c6f-a40e-a9dfada559a0", - "2b36885d-7487-45f3-88e4-95ced22c8df0", - "5251f580-cc4c-4e24-adc5-09ece02102d8", - "1f21bce0-b8ed-434c-ade7-9416eb8a180a", - "6ad75842-382c-44ee-b7d6-fd3532656bb0", - "90aff802-7f58-4407-a26e-45f80682eeaf", - "5360d4c3-b5aa-452d-a69b-73fcfc24260f", - "210e532b-2acc-4a3e-b173-3471add098b1", - "8b3a553d-dad5-41ff-b228-80f338c4b0e0", - "25a5f82a-36a7-4a52-af2b-32a681f87765", - "231dda72-d4b5-48ae-b714-5ce9d3802c45", - "e5c2d9f4-1be6-458f-854f-8103a3048b8c", - "f1d63efc-c02d-4bb9-828b-ddc2e062546b", - "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", - "1254d090-1d68-478c-a4fc-972cd246c948", - "86d2a168-d8d6-4528-80ff-833432ddaf2d", - "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", - "bb4626e2-c410-497b-977c-2cc1b65d7b57", - "714fccbf-a3ad-45ea-8e3f-be54db61f028", - "d9f7a5bd-7489-48e7-93cf-4368a09e2676", - "2e8375c2-0f15-448a-8203-e8a29699849e", - "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", - "1e6b54ae-f11e-4726-a36f-9c4411688776", - "8ece351b-2186-4cfe-9624-9d1eacc2181d", - "5a5c6460-b74c-4fc4-8f7e-fb80243c60b0", - "9f5e5ee3-42e0-4ee9-9cdb-c35f8f1ab271", - "b15716e4-5653-476c-ba57-960f89ea42d5", - "3b263b94-6ffe-4e7f-87fe-8aae005ee725", - "97fe5a5c-667d-4ae1-9235-722d5d8246f0", - "84f7a7c0-b176-49cc-89e3-6756a3c3e4cc", - "0c748835-952e-4739-8acb-c70076e8b112", - "2c3ad537-4ff9-4b7f-9c7d-0b21ee34234d", - "48afa0b3-dc93-4216-9cf1-35b088276d02", - "8541057e-6661-45be-93ff-9ed50114b9a1", - "eace6dbd-217a-421f-9a0e-ee6e7890671f", - "84a0424b-0f35-4bd8-8109-5ac9219d5869", - "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", - "261a087b-9323-4696-9046-146a299af43d", - "66456437-f154-4a2f-a12f-2f54cf668687", - "820a9d7c-25e9-487c-9e51-cfefcb1432f7", - "4fb4515b-e129-4622-b855-89143c2fd488", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "8d78038e-b569-4acf-ae49-902bcea1ae0a", - "segments": [ - 0, - 5, - 8, - 11, - 20, - 28, - 30, - 34, - 37, - 43, - 49, - 60, - 73, - 79, - 87, - 99, - 101, - 111, - 117, - 122, - 126, - 137, - 148, - 150, - 153, - 156, - 161, - 172, - 182, - 192, - 195, - 201, - 203, - 206, - 210, - 214, - 220, - 222, - 229, - 254, - 264, - 265, - 274, - 280, - 296, - 302, - 387 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 59, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521447, - 45.524278 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.522186, - 45.529969 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.502818, - 45.54899 - ], - [ - -73.502212, - 45.54962 - ], - [ - -73.501984, - 45.549836 - ], - [ - -73.50186, - 45.549926 - ], - [ - -73.501728, - 45.550007 - ], - [ - -73.501592, - 45.550079 - ], - [ - -73.501452, - 45.550133 - ], - [ - -73.501309, - 45.550183 - ], - [ - -73.50116, - 45.550219 - ], - [ - -73.501011, - 45.55025 - ], - [ - -73.500705, - 45.550282 - ], - [ - -73.500547, - 45.550286 - ], - [ - -73.49991, - 45.550295 - ], - [ - -73.499238, - 45.550226 - ], - [ - -73.499085, - 45.550201 - ], - [ - -73.498778, - 45.550153 - ], - [ - -73.498464, - 45.550065 - ], - [ - -73.498138, - 45.54995 - ], - [ - -73.497746, - 45.549767 - ], - [ - -73.497494, - 45.54961 - ], - [ - -73.497234, - 45.549428 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.494756, - 45.548419 - ], - [ - -73.494517, - 45.548567 - ], - [ - -73.494355, - 45.548662 - ], - [ - -73.494341, - 45.548702 - ], - [ - -73.494351, - 45.54877 - ], - [ - -73.494352, - 45.548779 - ], - [ - -73.494377, - 45.548846 - ], - [ - -73.494543, - 45.548968 - ], - [ - -73.494604, - 45.549013 - ], - [ - -73.495901, - 45.550034 - ], - [ - -73.496311, - 45.550358 - ], - [ - -73.496482, - 45.550493 - ], - [ - -73.496546, - 45.550543 - ], - [ - -73.496964, - 45.550873 - ], - [ - -73.497569, - 45.551352 - ], - [ - -73.498413, - 45.552 - ], - [ - -73.498592, - 45.552072 - ], - [ - -73.498694, - 45.552086 - ], - [ - -73.498793, - 45.55209 - ], - [ - -73.498947, - 45.552086 - ], - [ - -73.49893, - 45.552473 - ], - [ - -73.498889, - 45.552801 - ], - [ - -73.498863, - 45.552968 - ], - [ - -73.498848, - 45.553058 - ], - [ - -73.498813, - 45.553251 - ], - [ - -73.498782, - 45.553386 - ], - [ - -73.498737, - 45.553535 - ], - [ - -73.498669, - 45.55371 - ], - [ - -73.498603, - 45.553836 - ], - [ - -73.498557, - 45.553912 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498163, - 45.554479 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.496108, - 45.556844 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.494563, - 45.558542 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.493672, - 45.559592 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.492547, - 45.561188 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.489863, - 45.559482 - ], - [ - -73.489762, - 45.55941 - ], - [ - -73.489659, - 45.55945 - ], - [ - -73.489645, - 45.559459 - ], - [ - -73.489132, - 45.559774 - ], - [ - -73.488633, - 45.560073 - ], - [ - -73.488514, - 45.560143 - ], - [ - -73.487798, - 45.560517 - ], - [ - -73.487379, - 45.560714 - ], - [ - -73.486974, - 45.560989 - ], - [ - -73.48648, - 45.56147 - ], - [ - -73.486181, - 45.561776 - ], - [ - -73.485707, - 45.562255 - ], - [ - -73.48565, - 45.562312 - ], - [ - -73.485312, - 45.562653 - ], - [ - -73.485175, - 45.562787 - ], - [ - -73.485031, - 45.562928 - ], - [ - -73.484827, - 45.563148 - ], - [ - -73.484718, - 45.563256 - ], - [ - -73.484656, - 45.563337 - ], - [ - -73.484621, - 45.563405 - ], - [ - -73.484577, - 45.563486 - ], - [ - -73.484542, - 45.563553 - ], - [ - -73.484524, - 45.563621 - ], - [ - -73.484511, - 45.563679 - ], - [ - -73.48451, - 45.563769 - ], - [ - -73.484506, - 45.563909 - ], - [ - -73.484524, - 45.564039 - ], - [ - -73.484568, - 45.564188 - ], - [ - -73.484634, - 45.564327 - ], - [ - -73.484666, - 45.564381 - ], - [ - -73.484709, - 45.564453 - ], - [ - -73.484801, - 45.564538 - ], - [ - -73.484885, - 45.564619 - ], - [ - -73.484999, - 45.564714 - ], - [ - -73.485158, - 45.564813 - ], - [ - -73.485396, - 45.564912 - ], - [ - -73.485396, - 45.564912 - ], - [ - -73.485509, - 45.564975 - ], - [ - -73.485466, - 45.56506 - ], - [ - -73.485391, - 45.56515 - ], - [ - -73.485312, - 45.565245 - ], - [ - -73.485255, - 45.565303 - ], - [ - -73.4851, - 45.565418 - ], - [ - -73.484619, - 45.565773 - ], - [ - -73.484402, - 45.565933 - ], - [ - -73.484121, - 45.566154 - ], - [ - -73.483104, - 45.566981 - ], - [ - -73.482902, - 45.567157 - ], - [ - -73.482867, - 45.567188 - ], - [ - -73.482793, - 45.567251 - ], - [ - -73.482573, - 45.567085 - ], - [ - -73.4815, - 45.566273 - ], - [ - -73.480444, - 45.565474 - ], - [ - -73.480073, - 45.565193 - ], - [ - -73.479545, - 45.564794 - ], - [ - -73.479021, - 45.564398 - ], - [ - -73.477591, - 45.5633 - ], - [ - -73.477496, - 45.563228 - ], - [ - -73.476819, - 45.562716 - ], - [ - -73.476461, - 45.562445 - ], - [ - -73.475938, - 45.562049 - ], - [ - -73.475231, - 45.561513 - ], - [ - -73.474585, - 45.561026 - ], - [ - -73.474429, - 45.560908 - ], - [ - -73.474349, - 45.560847 - ], - [ - -73.474262, - 45.560781 - ], - [ - -73.473051, - 45.559853 - ], - [ - -73.472951, - 45.559778 - ], - [ - -73.472285, - 45.559277 - ], - [ - -73.471768, - 45.558881 - ], - [ - -73.471239, - 45.558481 - ], - [ - -73.471028, - 45.558322 - ], - [ - -73.470903, - 45.558228 - ], - [ - -73.470033, - 45.557566 - ], - [ - -73.469575, - 45.55722 - ], - [ - -73.469106, - 45.556862 - ], - [ - -73.468985, - 45.55677 - ], - [ - -73.468826, - 45.556648 - ], - [ - -73.467509, - 45.555651 - ], - [ - -73.466771, - 45.555092 - ], - [ - -73.465456, - 45.554095 - ], - [ - -73.464874, - 45.553655 - ], - [ - -73.464766, - 45.553574 - ], - [ - -73.464651, - 45.553651 - ], - [ - -73.464574, - 45.553704 - ], - [ - -73.464479, - 45.553766 - ], - [ - -73.464098, - 45.55401 - ], - [ - -73.464055, - 45.554072 - ], - [ - -73.464004, - 45.554145 - ], - [ - -73.46269, - 45.554985 - ], - [ - -73.462576, - 45.555058 - ], - [ - -73.462207, - 45.555292 - ], - [ - -73.461991, - 45.555431 - ], - [ - -73.461963, - 45.555445 - ], - [ - -73.461925, - 45.555463 - ], - [ - -73.461827, - 45.555485 - ], - [ - -73.461719, - 45.555453 - ], - [ - -73.461661, - 45.555436 - ], - [ - -73.461529, - 45.555341 - ], - [ - -73.461522, - 45.555335 - ], - [ - -73.461353, - 45.555197 - ], - [ - -73.461155, - 45.555031 - ], - [ - -73.461091, - 45.55497 - ], - [ - -73.461041, - 45.554923 - ], - [ - -73.460904, - 45.55472 - ], - [ - -73.460843, - 45.554611 - ], - [ - -73.460476, - 45.553964 - ], - [ - -73.460127, - 45.553394 - ], - [ - -73.460074, - 45.553307 - ], - [ - -73.45984, - 45.552911 - ], - [ - -73.459717, - 45.552763 - ], - [ - -73.459495, - 45.552583 - ], - [ - -73.458867, - 45.552123 - ], - [ - -73.458274, - 45.551719 - ], - [ - -73.458174, - 45.551651 - ], - [ - -73.456334, - 45.550258 - ], - [ - -73.456272, - 45.55021 - ], - [ - -73.454359, - 45.548758 - ], - [ - -73.454302, - 45.548714 - ], - [ - -73.454269, - 45.548689 - ], - [ - -73.452378, - 45.547252 - ], - [ - -73.452368, - 45.547244 - ], - [ - -73.452243, - 45.547149 - ], - [ - -73.452859, - 45.546749 - ], - [ - -73.452912, - 45.546715 - ], - [ - -73.453255, - 45.546529 - ], - [ - -73.453306, - 45.546494 - ], - [ - -73.45375, - 45.546193 - ], - [ - -73.454098, - 45.545958 - ], - [ - -73.454427, - 45.545738 - ], - [ - -73.454536, - 45.545665 - ], - [ - -73.454687, - 45.545566 - ], - [ - -73.454901, - 45.545427 - ], - [ - -73.455048, - 45.545333 - ], - [ - -73.455094, - 45.545301 - ], - [ - -73.455158, - 45.545252 - ], - [ - -73.455247, - 45.545184 - ], - [ - -73.455332, - 45.545094 - ], - [ - -73.455461, - 45.54495 - ], - [ - -73.455559, - 45.544829 - ], - [ - -73.455739, - 45.544361 - ], - [ - -73.455815, - 45.543632 - ], - [ - -73.45593, - 45.542922 - ], - [ - -73.455948, - 45.542813 - ], - [ - -73.455971, - 45.542683 - ], - [ - -73.456034, - 45.542341 - ], - [ - -73.456127, - 45.541828 - ], - [ - -73.45622, - 45.541171 - ], - [ - -73.456332, - 45.540467 - ], - [ - -73.456345, - 45.540384 - ], - [ - -73.456347, - 45.540366 - ], - [ - -73.456509, - 45.539394 - ], - [ - -73.456509, - 45.539219 - ], - [ - -73.456656, - 45.5384 - ], - [ - -73.456667, - 45.538348 - ], - [ - -73.456674, - 45.53831 - ], - [ - -73.456716, - 45.53818 - ], - [ - -73.456753, - 45.538063 - ], - [ - -73.456485, - 45.538022 - ], - [ - -73.455441, - 45.537882 - ] - ] - }, - "id": 60, - "properties": { - "id": "4bccc599-fda2-438d-95b7-63847a5b75e0", - "data": { - "gtfs": { - "shape_id": "20_1_R" - }, - "segments": [ - { - "distanceMeters": 4753, - "travelTimeSeconds": 333 - }, - { - "distanceMeters": 567, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 337, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 386, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 577, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 374, - "travelTimeSeconds": 68 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12480, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5348.87013053785, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.32, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 7.43, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.32 - }, - "mode": "bus", - "name": "Sect. B Vieux-Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "87d520cc-f77e-449c-88c9-cee424bbc329", - "c879a803-d58b-4487-8291-391e9b516d3c", - "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", - "261a087b-9323-4696-9046-146a299af43d", - "0bcb0e97-db40-44bb-afe9-f6212a5b6387", - "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", - "acd343da-a23f-40aa-9f8e-9e9ed5b60bd1", - "8541057e-6661-45be-93ff-9ed50114b9a1", - "48afa0b3-dc93-4216-9cf1-35b088276d02", - "2c3ad537-4ff9-4b7f-9c7d-0b21ee34234d", - "056bf57a-8baa-407d-9c70-a2dcb2e36aea", - "08472942-a2a0-45ef-be22-2dc8587875b6", - "768e4b50-abe9-456e-9460-90d8cbf65940", - "b15716e4-5653-476c-ba57-960f89ea42d5", - "2332d398-d991-4d3f-9d67-38ab4930ac25", - "8ece351b-2186-4cfe-9624-9d1eacc2181d", - "1e6b54ae-f11e-4726-a36f-9c4411688776", - "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", - "2e8375c2-0f15-448a-8203-e8a29699849e", - "d9f7a5bd-7489-48e7-93cf-4368a09e2676", - "714fccbf-a3ad-45ea-8e3f-be54db61f028", - "bb4626e2-c410-497b-977c-2cc1b65d7b57", - "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", - "19d70945-d3db-430f-90e2-ad67901fda8d", - "f8690123-add8-4e85-bbf6-f84c4b712589", - "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", - "fce7a113-2e0c-4a0f-922a-957670252ea1" - ], - "stops": [], - "line_id": "8d78038e-b569-4acf-ae49-902bcea1ae0a", - "segments": [ - 0, - 85, - 107, - 109, - 112, - 114, - 116, - 123, - 130, - 155, - 162, - 166, - 173, - 178, - 182, - 189, - 194, - 206, - 212, - 226, - 232, - 234, - 236, - 240, - 248, - 261, - 267 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 60, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521447, - 45.524278 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519379, - 45.523634 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519186, - 45.526809 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517663, - 45.527363 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517465, - 45.528168 - ], - [ - -73.517458, - 45.528249 - ], - [ - -73.517471, - 45.528385 - ], - [ - -73.517504, - 45.528565 - ], - [ - -73.517516, - 45.528652 - ], - [ - -73.517553, - 45.52877 - ], - [ - -73.517635, - 45.529002 - ], - [ - -73.517693, - 45.529249 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.51956, - 45.531975 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501301, - 45.549942 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500307, - 45.550075 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.499756, - 45.550039 - ], - [ - -73.499564, - 45.550308 - ], - [ - -73.499518, - 45.550373 - ], - [ - -73.499348, - 45.550589 - ], - [ - -73.499249, - 45.550718 - ], - [ - -73.499149, - 45.550849 - ], - [ - -73.49909, - 45.551 - ], - [ - -73.499052, - 45.551292 - ], - [ - -73.498992, - 45.551747 - ], - [ - -73.498947, - 45.552086 - ], - [ - -73.49893, - 45.552473 - ], - [ - -73.498889, - 45.552801 - ], - [ - -73.498863, - 45.552968 - ], - [ - -73.498848, - 45.553058 - ], - [ - -73.498813, - 45.553251 - ], - [ - -73.498782, - 45.553386 - ], - [ - -73.498737, - 45.553535 - ], - [ - -73.498669, - 45.55371 - ], - [ - -73.498603, - 45.553836 - ], - [ - -73.498557, - 45.553912 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498166, - 45.554476 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.496104, - 45.556848 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.494566, - 45.558538 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.493669, - 45.559597 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.492544, - 45.561193 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.489863, - 45.559482 - ], - [ - -73.489762, - 45.55941 - ], - [ - -73.489659, - 45.55945 - ], - [ - -73.489645, - 45.559459 - ], - [ - -73.489132, - 45.559774 - ], - [ - -73.488636, - 45.56007 - ], - [ - -73.488514, - 45.560143 - ], - [ - -73.487798, - 45.560517 - ], - [ - -73.487379, - 45.560714 - ], - [ - -73.486974, - 45.560989 - ], - [ - -73.48648, - 45.56147 - ], - [ - -73.486181, - 45.561776 - ], - [ - -73.485709, - 45.562253 - ], - [ - -73.48565, - 45.562312 - ], - [ - -73.485312, - 45.562653 - ], - [ - -73.485175, - 45.562787 - ], - [ - -73.485031, - 45.562928 - ], - [ - -73.484827, - 45.563148 - ], - [ - -73.484718, - 45.563256 - ], - [ - -73.484656, - 45.563337 - ], - [ - -73.484621, - 45.563405 - ], - [ - -73.484577, - 45.563486 - ], - [ - -73.484542, - 45.563553 - ], - [ - -73.484524, - 45.563621 - ], - [ - -73.484511, - 45.563679 - ], - [ - -73.48451, - 45.563769 - ], - [ - -73.484506, - 45.563909 - ], - [ - -73.484524, - 45.564039 - ], - [ - -73.484568, - 45.564188 - ], - [ - -73.484634, - 45.564327 - ], - [ - -73.484666, - 45.564381 - ], - [ - -73.484709, - 45.564453 - ], - [ - -73.484801, - 45.564538 - ], - [ - -73.484885, - 45.564619 - ], - [ - -73.484999, - 45.564714 - ], - [ - -73.485158, - 45.564813 - ], - [ - -73.485396, - 45.564912 - ], - [ - -73.485403, - 45.564916 - ], - [ - -73.485509, - 45.564975 - ], - [ - -73.485466, - 45.56506 - ], - [ - -73.485391, - 45.56515 - ], - [ - -73.485312, - 45.565245 - ], - [ - -73.485255, - 45.565303 - ], - [ - -73.4851, - 45.565418 - ], - [ - -73.484613, - 45.565778 - ], - [ - -73.484402, - 45.565933 - ], - [ - -73.484121, - 45.566154 - ], - [ - -73.483104, - 45.566981 - ], - [ - -73.482897, - 45.567162 - ], - [ - -73.482867, - 45.567188 - ], - [ - -73.482793, - 45.567251 - ], - [ - -73.482573, - 45.567085 - ], - [ - -73.4815, - 45.566273 - ], - [ - -73.480444, - 45.565474 - ], - [ - -73.480073, - 45.565193 - ], - [ - -73.479538, - 45.564789 - ], - [ - -73.479021, - 45.564398 - ], - [ - -73.477591, - 45.5633 - ], - [ - -73.477496, - 45.563228 - ], - [ - -73.476819, - 45.562716 - ], - [ - -73.476463, - 45.562446 - ], - [ - -73.475938, - 45.562049 - ], - [ - -73.475231, - 45.561513 - ], - [ - -73.474585, - 45.561026 - ], - [ - -73.474431, - 45.560909 - ], - [ - -73.474349, - 45.560847 - ], - [ - -73.474262, - 45.560781 - ], - [ - -73.473051, - 45.559853 - ], - [ - -73.472951, - 45.559778 - ], - [ - -73.472285, - 45.559277 - ], - [ - -73.471768, - 45.558881 - ], - [ - -73.47124, - 45.558482 - ], - [ - -73.471028, - 45.558322 - ], - [ - -73.470903, - 45.558228 - ], - [ - -73.470033, - 45.557566 - ], - [ - -73.469575, - 45.55722 - ], - [ - -73.469108, - 45.556864 - ], - [ - -73.468985, - 45.55677 - ], - [ - -73.468826, - 45.556648 - ], - [ - -73.467509, - 45.555651 - ], - [ - -73.466771, - 45.555092 - ], - [ - -73.465456, - 45.554095 - ], - [ - -73.464874, - 45.553655 - ], - [ - -73.464766, - 45.553574 - ], - [ - -73.464651, - 45.553651 - ], - [ - -73.464574, - 45.553704 - ], - [ - -73.464479, - 45.553766 - ], - [ - -73.464098, - 45.55401 - ], - [ - -73.464051, - 45.554079 - ], - [ - -73.464004, - 45.554145 - ], - [ - -73.46269, - 45.554985 - ], - [ - -73.462576, - 45.555058 - ], - [ - -73.462207, - 45.555292 - ], - [ - -73.461991, - 45.555431 - ], - [ - -73.461954, - 45.555449 - ], - [ - -73.461925, - 45.555463 - ], - [ - -73.461827, - 45.555485 - ], - [ - -73.461719, - 45.555453 - ], - [ - -73.461661, - 45.555436 - ], - [ - -73.461529, - 45.555341 - ], - [ - -73.461522, - 45.555335 - ], - [ - -73.461353, - 45.555197 - ], - [ - -73.461155, - 45.555031 - ], - [ - -73.461091, - 45.55497 - ], - [ - -73.461041, - 45.554923 - ], - [ - -73.460904, - 45.55472 - ], - [ - -73.460843, - 45.554611 - ], - [ - -73.460476, - 45.553964 - ], - [ - -73.460128, - 45.553395 - ], - [ - -73.460074, - 45.553307 - ], - [ - -73.45984, - 45.552911 - ], - [ - -73.459717, - 45.552763 - ], - [ - -73.459495, - 45.552583 - ], - [ - -73.458867, - 45.552123 - ], - [ - -73.458275, - 45.551719 - ], - [ - -73.458174, - 45.551651 - ], - [ - -73.456335, - 45.550258 - ], - [ - -73.456272, - 45.55021 - ], - [ - -73.454351, - 45.548752 - ], - [ - -73.454302, - 45.548714 - ], - [ - -73.454269, - 45.548689 - ], - [ - -73.452378, - 45.547252 - ], - [ - -73.45236, - 45.547238 - ], - [ - -73.452243, - 45.547149 - ], - [ - -73.452859, - 45.546749 - ], - [ - -73.452912, - 45.546715 - ], - [ - -73.453255, - 45.546529 - ], - [ - -73.453306, - 45.546494 - ], - [ - -73.45375, - 45.546193 - ], - [ - -73.454098, - 45.545958 - ], - [ - -73.454426, - 45.545739 - ], - [ - -73.454536, - 45.545665 - ], - [ - -73.454687, - 45.545566 - ], - [ - -73.454901, - 45.545427 - ], - [ - -73.455048, - 45.545333 - ], - [ - -73.455094, - 45.545301 - ], - [ - -73.455158, - 45.545252 - ], - [ - -73.455247, - 45.545184 - ], - [ - -73.455332, - 45.545094 - ], - [ - -73.455461, - 45.54495 - ], - [ - -73.455559, - 45.544829 - ], - [ - -73.455739, - 45.544361 - ], - [ - -73.455815, - 45.543632 - ], - [ - -73.45593, - 45.542923 - ], - [ - -73.455948, - 45.542813 - ], - [ - -73.455971, - 45.542683 - ], - [ - -73.456034, - 45.542341 - ], - [ - -73.456127, - 45.541828 - ], - [ - -73.45622, - 45.541171 - ], - [ - -73.456333, - 45.540458 - ], - [ - -73.456345, - 45.540384 - ], - [ - -73.456347, - 45.540366 - ], - [ - -73.456509, - 45.539394 - ], - [ - -73.456509, - 45.539219 - ], - [ - -73.456656, - 45.5384 - ], - [ - -73.456667, - 45.538348 - ], - [ - -73.456674, - 45.53831 - ], - [ - -73.456716, - 45.53818 - ], - [ - -73.456753, - 45.538063 - ], - [ - -73.456485, - 45.538022 - ], - [ - -73.455441, - 45.537882 - ] - ] - }, - "id": 61, - "properties": { - "id": "9649306d-b23e-4c4b-9ae1-fc4e14fa31b5", - "data": { - "gtfs": { - "shape_id": "20_2_R" - }, - "segments": [ - { - "distanceMeters": 4168, - "travelTimeSeconds": 480 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 337, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 386, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 578, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 68 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11890, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5348.87013053785, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.83, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 6.19, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.83 - }, - "mode": "bus", - "name": "Sect. B Vieux-Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "09bf17cd-9db1-41e3-b993-62146cb91158", - "bc056e84-1f20-4604-aad7-40427c6685a6", - "c879a803-d58b-4487-8291-391e9b516d3c", - "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", - "261a087b-9323-4696-9046-146a299af43d", - "0bcb0e97-db40-44bb-afe9-f6212a5b6387", - "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", - "acd343da-a23f-40aa-9f8e-9e9ed5b60bd1", - "8541057e-6661-45be-93ff-9ed50114b9a1", - "48afa0b3-dc93-4216-9cf1-35b088276d02", - "2c3ad537-4ff9-4b7f-9c7d-0b21ee34234d", - "056bf57a-8baa-407d-9c70-a2dcb2e36aea", - "08472942-a2a0-45ef-be22-2dc8587875b6", - "768e4b50-abe9-456e-9460-90d8cbf65940", - "b15716e4-5653-476c-ba57-960f89ea42d5", - "2332d398-d991-4d3f-9d67-38ab4930ac25", - "8ece351b-2186-4cfe-9624-9d1eacc2181d", - "1e6b54ae-f11e-4726-a36f-9c4411688776", - "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", - "2e8375c2-0f15-448a-8203-e8a29699849e", - "d9f7a5bd-7489-48e7-93cf-4368a09e2676", - "714fccbf-a3ad-45ea-8e3f-be54db61f028", - "bb4626e2-c410-497b-977c-2cc1b65d7b57", - "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", - "19d70945-d3db-430f-90e2-ad67901fda8d", - "f8690123-add8-4e85-bbf6-f84c4b712589", - "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", - "fce7a113-2e0c-4a0f-922a-957670252ea1" - ], - "stops": [], - "line_id": "8d78038e-b569-4acf-ae49-902bcea1ae0a", - "segments": [ - 0, - 115, - 126, - 140, - 142, - 145, - 147, - 149, - 156, - 163, - 188, - 195, - 199, - 206, - 211, - 215, - 222, - 227, - 239, - 245, - 259, - 265, - 267, - 269, - 273, - 281, - 294, - 300 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 61, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.455441, - 45.537882 - ], - [ - -73.455036, - 45.537828 - ], - [ - -73.454083, - 45.537706 - ], - [ - -73.453056, - 45.537575 - ], - [ - -73.453038, - 45.53771 - ], - [ - -73.452904, - 45.538462 - ], - [ - -73.452804, - 45.539091 - ], - [ - -73.452717, - 45.539726 - ], - [ - -73.452594, - 45.540342 - ], - [ - -73.45227, - 45.540954 - ], - [ - -73.452075, - 45.541179 - ], - [ - -73.45197, - 45.541296 - ], - [ - -73.451796, - 45.541426 - ], - [ - -73.451437, - 45.541633 - ], - [ - -73.451233, - 45.541718 - ], - [ - -73.450967, - 45.541781 - ], - [ - -73.450741, - 45.541822 - ], - [ - -73.450524, - 45.54183 - ], - [ - -73.450532, - 45.54192 - ], - [ - -73.450512, - 45.542105 - ], - [ - -73.450477, - 45.54224 - ], - [ - -73.449919, - 45.542604 - ], - [ - -73.449268, - 45.543031 - ], - [ - -73.448896, - 45.543268 - ], - [ - -73.448583, - 45.543467 - ], - [ - -73.447976, - 45.542999 - ], - [ - -73.447904, - 45.542944 - ], - [ - -73.447355, - 45.542526 - ], - [ - -73.446814, - 45.542135 - ], - [ - -73.446733, - 45.542076 - ], - [ - -73.446124, - 45.541621 - ], - [ - -73.445503, - 45.54114 - ], - [ - -73.444511, - 45.54041 - ], - [ - -73.444375, - 45.540325 - ], - [ - -73.444216, - 45.540244 - ], - [ - -73.44408, - 45.540185 - ], - [ - -73.44377, - 45.540109 - ], - [ - -73.4435, - 45.540041 - ], - [ - -73.44267, - 45.539892 - ], - [ - -73.442456, - 45.539852 - ], - [ - -73.442205, - 45.539784 - ], - [ - -73.442001, - 45.539712 - ], - [ - -73.441896, - 45.53968 - ], - [ - -73.441646, - 45.539559 - ], - [ - -73.44151, - 45.539487 - ], - [ - -73.441387, - 45.539397 - ], - [ - -73.441242, - 45.539293 - ], - [ - -73.441122, - 45.539153 - ], - [ - -73.441004, - 45.538991 - ], - [ - -73.440944, - 45.538829 - ], - [ - -73.440917, - 45.538748 - ], - [ - -73.440902, - 45.5386 - ], - [ - -73.440899, - 45.538573 - ], - [ - -73.440901, - 45.538551 - ], - [ - -73.440907, - 45.538487 - ], - [ - -73.440917, - 45.538393 - ], - [ - -73.440957, - 45.538285 - ], - [ - -73.441023, - 45.538164 - ], - [ - -73.441098, - 45.538047 - ], - [ - -73.4412, - 45.537934 - ], - [ - -73.441569, - 45.537651 - ], - [ - -73.441939, - 45.537372 - ], - [ - -73.442459, - 45.537008 - ], - [ - -73.442686, - 45.536815 - ], - [ - -73.442789, - 45.536666 - ], - [ - -73.442839, - 45.536594 - ], - [ - -73.44311, - 45.535924 - ], - [ - -73.443379, - 45.535204 - ], - [ - -73.443894, - 45.534372 - ], - [ - -73.443931, - 45.534305 - ], - [ - -73.443989, - 45.534201 - ], - [ - -73.444489, - 45.534346 - ], - [ - -73.444931, - 45.53453 - ], - [ - -73.445118, - 45.534611 - ], - [ - -73.445446, - 45.534818 - ], - [ - -73.445653, - 45.534958 - ], - [ - -73.445829, - 45.535111 - ], - [ - -73.446079, - 45.535349 - ], - [ - -73.44617, - 45.535435 - ], - [ - -73.446275, - 45.535528 - ], - [ - -73.446362, - 45.535606 - ], - [ - -73.446623, - 45.535795 - ], - [ - -73.446833, - 45.535908 - ], - [ - -73.447009, - 45.53598 - ], - [ - -73.447135, - 45.536029 - ], - [ - -73.447379, - 45.536097 - ], - [ - -73.448323, - 45.536304 - ], - [ - -73.448623, - 45.536399 - ], - [ - -73.448898, - 45.536561 - ], - [ - -73.450563, - 45.537556 - ], - [ - -73.450772, - 45.537669 - ], - [ - -73.450923, - 45.537718 - ], - [ - -73.450952, - 45.537727 - ], - [ - -73.451166, - 45.537772 - ], - [ - -73.451401, - 45.537795 - ], - [ - -73.451627, - 45.537786 - ], - [ - -73.452059, - 45.537741 - ], - [ - -73.452451, - 45.537712 - ], - [ - -73.452711, - 45.537692 - ], - [ - -73.452931, - 45.537697 - ], - [ - -73.453038, - 45.53771 - ], - [ - -73.454051, - 45.537823 - ], - [ - -73.455005, - 45.537945 - ], - [ - -73.455965, - 45.538077 - ], - [ - -73.456445, - 45.538144 - ], - [ - -73.456357, - 45.53853 - ], - [ - -73.456221, - 45.539372 - ], - [ - -73.456144, - 45.539984 - ], - [ - -73.456076, - 45.540361 - ], - [ - -73.455916, - 45.541266 - ], - [ - -73.455834, - 45.54181 - ], - [ - -73.455702, - 45.542678 - ], - [ - -73.455523, - 45.543849 - ], - [ - -73.455509, - 45.543938 - ], - [ - -73.455505, - 45.543968 - ], - [ - -73.455433, - 45.54441 - ], - [ - -73.455289, - 45.544748 - ], - [ - -73.455178, - 45.54491 - ], - [ - -73.455067, - 45.545031 - ], - [ - -73.454985, - 45.545117 - ], - [ - -73.45488, - 45.545202 - ], - [ - -73.454712, - 45.545301 - ], - [ - -73.454517, - 45.54544 - ], - [ - -73.454362, - 45.54553 - ], - [ - -73.454039, - 45.545719 - ], - [ - -73.453554, - 45.546052 - ], - [ - -73.453387, - 45.546196 - ], - [ - -73.453186, - 45.546448 - ], - [ - -73.45304, - 45.546592 - ], - [ - -73.452912, - 45.546715 - ], - [ - -73.452859, - 45.546749 - ], - [ - -73.452689, - 45.546859 - ], - [ - -73.452243, - 45.547149 - ], - [ - -73.454111, - 45.548569 - ], - [ - -73.454269, - 45.548689 - ], - [ - -73.454302, - 45.548714 - ], - [ - -73.456272, - 45.55021 - ], - [ - -73.456869, - 45.550663 - ], - [ - -73.458174, - 45.551651 - ], - [ - -73.458867, - 45.552123 - ], - [ - -73.459495, - 45.552583 - ], - [ - -73.459717, - 45.552763 - ], - [ - -73.45984, - 45.552911 - ], - [ - -73.460074, - 45.553307 - ], - [ - -73.460476, - 45.553964 - ], - [ - -73.460843, - 45.554611 - ], - [ - -73.460904, - 45.55472 - ], - [ - -73.461041, - 45.554923 - ], - [ - -73.461091, - 45.55497 - ], - [ - -73.461155, - 45.555031 - ], - [ - -73.461353, - 45.555197 - ], - [ - -73.461455, - 45.555281 - ], - [ - -73.461529, - 45.555341 - ], - [ - -73.461661, - 45.555436 - ], - [ - -73.461719, - 45.555453 - ], - [ - -73.461827, - 45.555485 - ], - [ - -73.461925, - 45.555463 - ], - [ - -73.461985, - 45.555435 - ], - [ - -73.461991, - 45.555431 - ], - [ - -73.462207, - 45.555292 - ], - [ - -73.462576, - 45.555058 - ], - [ - -73.46269, - 45.554985 - ], - [ - -73.464004, - 45.554145 - ], - [ - -73.464203, - 45.554087 - ], - [ - -73.464314, - 45.554019 - ], - [ - -73.464675, - 45.55379 - ], - [ - -73.464758, - 45.553732 - ], - [ - -73.466649, - 45.555169 - ], - [ - -73.467394, - 45.555735 - ], - [ - -73.468683, - 45.556715 - ], - [ - -73.468707, - 45.556734 - ], - [ - -73.468863, - 45.556851 - ], - [ - -73.468884, - 45.556867 - ], - [ - -73.469456, - 45.557296 - ], - [ - -73.469905, - 45.557643 - ], - [ - -73.470793, - 45.5583 - ], - [ - -73.470906, - 45.55839 - ], - [ - -73.471187, - 45.558615 - ], - [ - -73.471642, - 45.558966 - ], - [ - -73.472161, - 45.559358 - ], - [ - -73.472928, - 45.559934 - ], - [ - -73.473986, - 45.560742 - ], - [ - -73.474224, - 45.560924 - ], - [ - -73.475111, - 45.561594 - ], - [ - -73.475818, - 45.56213 - ], - [ - -73.47747, - 45.563381 - ], - [ - -73.478124, - 45.563885 - ], - [ - -73.47891, - 45.564479 - ], - [ - -73.480158, - 45.565423 - ], - [ - -73.480326, - 45.56555 - ], - [ - -73.4804, - 45.565606 - ], - [ - -73.482644, - 45.56731 - ], - [ - -73.482793, - 45.567251 - ], - [ - -73.482867, - 45.567188 - ], - [ - -73.483104, - 45.566981 - ], - [ - -73.483373, - 45.566762 - ], - [ - -73.484121, - 45.566154 - ], - [ - -73.484402, - 45.565933 - ], - [ - -73.4851, - 45.565418 - ], - [ - -73.485255, - 45.565303 - ], - [ - -73.485312, - 45.565245 - ], - [ - -73.485391, - 45.56515 - ], - [ - -73.485466, - 45.56506 - ], - [ - -73.485509, - 45.564975 - ], - [ - -73.485396, - 45.564912 - ], - [ - -73.485158, - 45.564813 - ], - [ - -73.484999, - 45.564714 - ], - [ - -73.484885, - 45.564619 - ], - [ - -73.484801, - 45.564538 - ], - [ - -73.484709, - 45.564453 - ], - [ - -73.484666, - 45.564381 - ], - [ - -73.484634, - 45.564327 - ], - [ - -73.484568, - 45.564188 - ], - [ - -73.484524, - 45.564039 - ], - [ - -73.484506, - 45.563909 - ], - [ - -73.48451, - 45.563769 - ], - [ - -73.484511, - 45.563679 - ], - [ - -73.484524, - 45.563621 - ], - [ - -73.484542, - 45.563553 - ], - [ - -73.484577, - 45.563486 - ], - [ - -73.484621, - 45.563405 - ], - [ - -73.484656, - 45.563337 - ], - [ - -73.484718, - 45.563256 - ], - [ - -73.484827, - 45.563148 - ], - [ - -73.485031, - 45.562928 - ], - [ - -73.485175, - 45.562787 - ], - [ - -73.485312, - 45.562653 - ], - [ - -73.48565, - 45.562312 - ], - [ - -73.486181, - 45.561776 - ], - [ - -73.48648, - 45.56147 - ], - [ - -73.486974, - 45.560989 - ], - [ - -73.487215, - 45.560825 - ], - [ - -73.487379, - 45.560714 - ], - [ - -73.487798, - 45.560517 - ], - [ - -73.488514, - 45.560143 - ], - [ - -73.489129, - 45.560629 - ], - [ - -73.489224, - 45.560705 - ], - [ - -73.491509, - 45.562511 - ], - [ - -73.491545, - 45.562543 - ], - [ - -73.491585, - 45.562559 - ], - [ - -73.4917, - 45.562606 - ], - [ - -73.491908, - 45.562298 - ], - [ - -73.49207, - 45.56203 - ], - [ - -73.492185, - 45.561871 - ], - [ - -73.492369, - 45.561588 - ], - [ - -73.492391, - 45.561555 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.496046, - 45.556911 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498677, - 45.553944 - ], - [ - -73.498726, - 45.553872 - ], - [ - -73.498813, - 45.553714 - ], - [ - -73.498895, - 45.553562 - ], - [ - -73.49895, - 45.553404 - ], - [ - -73.498964, - 45.55335 - ], - [ - -73.498988, - 45.55326 - ], - [ - -73.499026, - 45.553035 - ], - [ - -73.499051, - 45.55281 - ], - [ - -73.49911, - 45.552261 - ], - [ - -73.499127, - 45.552095 - ], - [ - -73.499199, - 45.551371 - ], - [ - -73.49924, - 45.551092 - ], - [ - -73.499284, - 45.550946 - ], - [ - -73.499366, - 45.550811 - ], - [ - -73.499487, - 45.550651 - ], - [ - -73.499747, - 45.550322 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.500926, - 45.550031 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501632, - 45.549807 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.50939, - 45.541962 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515511, - 45.53721 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.518817, - 45.531415 - ], - [ - -73.518763, - 45.531374 - ], - [ - -73.518709, - 45.531325 - ], - [ - -73.518655, - 45.531271 - ], - [ - -73.518619, - 45.531213 - ], - [ - -73.518601, - 45.531154 - ], - [ - -73.518588, - 45.531096 - ], - [ - -73.518588, - 45.531055 - ], - [ - -73.518597, - 45.531006 - ], - [ - -73.518614, - 45.530963 - ], - [ - -73.518619, - 45.530952 - ], - [ - -73.518659, - 45.530884 - ], - [ - -73.518691, - 45.530826 - ], - [ - -73.518718, - 45.530785 - ], - [ - -73.518753, - 45.530731 - ], - [ - -73.518803, - 45.530646 - ], - [ - -73.518839, - 45.530596 - ], - [ - -73.518875, - 45.530547 - ], - [ - -73.518897, - 45.530497 - ], - [ - -73.518915, - 45.530448 - ], - [ - -73.518937, - 45.530356 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 62, - "properties": { - "id": "8d37262d-b185-4c58-9a22-f51c365da62d", - "data": { - "gtfs": { - "shape_id": "20_1_A" - }, - "segments": [ - { - "distanceMeters": 1197, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 640, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 540, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 813, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 968, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 402, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 579, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 635, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 791, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 610, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 709, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 1188, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 1219, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 916, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 1124, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 713, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 886, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 1180, - "travelTimeSeconds": 38 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 15101, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 73.36646211490445, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 31.46, - "travelTimeWithoutDwellTimesSeconds": 480, - "operatingTimeWithLayoverTimeSeconds": 660, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 480, - "operatingSpeedWithLayoverMetersPerSecond": 22.88, - "averageSpeedWithoutDwellTimesMetersPerSecond": 31.46 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "fce7a113-2e0c-4a0f-922a-957670252ea1", - "74325106-fd46-4be2-9872-2d362cabf10d", - "97fd6b08-e74d-4e78-a89d-1a8506473313", - "78852b27-6481-4593-91bd-0a0ac5e52bda", - "ed2d86bc-14d2-40cc-9b3c-fcf430af3d76", - "8990dfff-c24e-4da1-938f-d3124a8df164", - "b6aea660-191f-4c6f-a40e-a9dfada559a0", - "2b36885d-7487-45f3-88e4-95ced22c8df0", - "5251f580-cc4c-4e24-adc5-09ece02102d8", - "1f21bce0-b8ed-434c-ade7-9416eb8a180a", - "6ad75842-382c-44ee-b7d6-fd3532656bb0", - "90aff802-7f58-4407-a26e-45f80682eeaf", - "5360d4c3-b5aa-452d-a69b-73fcfc24260f", - "210e532b-2acc-4a3e-b173-3471add098b1", - "8b3a553d-dad5-41ff-b228-80f338c4b0e0", - "25a5f82a-36a7-4a52-af2b-32a681f87765", - "231dda72-d4b5-48ae-b714-5ce9d3802c45", - "e5c2d9f4-1be6-458f-854f-8103a3048b8c", - "f1d63efc-c02d-4bb9-828b-ddc2e062546b" - ], - "stops": [], - "line_id": "8d78038e-b569-4acf-ae49-902bcea1ae0a", - "segments": [ - 0, - 28, - 53, - 69, - 97, - 114, - 131, - 137, - 151, - 169, - 181, - 188, - 231, - 251, - 276, - 296, - 310, - 348 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 62, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521486, - 45.523819 - ], - [ - -73.521481, - 45.523874 - ], - [ - -73.52149, - 45.523892 - ], - [ - -73.521509, - 45.523906 - ], - [ - -73.521542, - 45.523919 - ], - [ - -73.521581, - 45.523923 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509952, - 45.515502 - ], - [ - -73.509485, - 45.515357 - ], - [ - -73.509376, - 45.515323 - ], - [ - -73.508692, - 45.515143 - ], - [ - -73.508296, - 45.51503 - ], - [ - -73.507817, - 45.514868 - ], - [ - -73.507704, - 45.514841 - ], - [ - -73.507464, - 45.514765 - ], - [ - -73.506516, - 45.514432 - ], - [ - -73.505464, - 45.514054 - ], - [ - -73.505166, - 45.51396 - ], - [ - -73.504861, - 45.513863 - ], - [ - -73.504451, - 45.513734 - ], - [ - -73.50434, - 45.513699 - ], - [ - -73.504259, - 45.513672 - ], - [ - -73.503369, - 45.513397 - ], - [ - -73.502433, - 45.51315 - ], - [ - -73.502048, - 45.513078 - ], - [ - -73.501411, - 45.512898 - ], - [ - -73.50108, - 45.512799 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.494088, - 45.51035 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488541, - 45.503629 - ], - [ - -73.48831, - 45.50321 - ], - [ - -73.48823, - 45.503039 - ], - [ - -73.488092, - 45.502693 - ], - [ - -73.487989, - 45.502369 - ], - [ - -73.487959, - 45.502275 - ], - [ - -73.487746, - 45.501478 - ], - [ - -73.487613, - 45.501033 - ], - [ - -73.487509, - 45.500686 - ], - [ - -73.487464, - 45.50056 - ], - [ - -73.487346, - 45.500232 - ], - [ - -73.487139, - 45.499795 - ], - [ - -73.486985, - 45.499512 - ], - [ - -73.486818, - 45.499233 - ], - [ - -73.48673, - 45.4991 - ], - [ - -73.486631, - 45.498949 - ], - [ - -73.486428, - 45.498675 - ], - [ - -73.486216, - 45.498401 - ], - [ - -73.486166, - 45.498342 - ], - [ - -73.486, - 45.498149 - ], - [ - -73.485576, - 45.497708 - ], - [ - -73.485299, - 45.497456 - ], - [ - -73.485251, - 45.497415 - ], - [ - -73.484899, - 45.497123 - ], - [ - -73.484387, - 45.49674 - ], - [ - -73.484357, - 45.496722 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.483872, - 45.497077 - ], - [ - -73.483869, - 45.49708 - ], - [ - -73.483504, - 45.497347 - ], - [ - -73.483382, - 45.497433 - ], - [ - -73.483338, - 45.497469 - ], - [ - -73.483277, - 45.497509 - ], - [ - -73.482985, - 45.497707 - ], - [ - -73.482636, - 45.497941 - ], - [ - -73.482124, - 45.49831 - ], - [ - -73.481899, - 45.498472 - ], - [ - -73.481589, - 45.498697 - ], - [ - -73.481169, - 45.498994 - ], - [ - -73.480847, - 45.499223 - ], - [ - -73.480477, - 45.499488 - ], - [ - -73.480326, - 45.499398 - ], - [ - -73.47971, - 45.498993 - ], - [ - -73.479492, - 45.498848 - ], - [ - -73.479271, - 45.498701 - ], - [ - -73.478967, - 45.498498 - ], - [ - -73.4786, - 45.498251 - ], - [ - -73.478257, - 45.498026 - ], - [ - -73.478178, - 45.497976 - ], - [ - -73.477789, - 45.49772 - ], - [ - -73.477439, - 45.49749 - ], - [ - -73.477062, - 45.497238 - ], - [ - -73.476713, - 45.497004 - ], - [ - -73.47632, - 45.496748 - ], - [ - -73.475974, - 45.496523 - ], - [ - -73.475747, - 45.496374 - ], - [ - -73.475492, - 45.496208 - ], - [ - -73.475346, - 45.496118 - ], - [ - -73.475245, - 45.49605 - ], - [ - -73.474879, - 45.495798 - ], - [ - -73.474517, - 45.49556 - ], - [ - -73.474138, - 45.495312 - ], - [ - -73.473858, - 45.495132 - ], - [ - -73.473385, - 45.494817 - ], - [ - -73.473259, - 45.49474 - ], - [ - -73.473016, - 45.494578 - ], - [ - -73.472769, - 45.494416 - ], - [ - -73.472367, - 45.494146 - ], - [ - -73.471949, - 45.493867 - ], - [ - -73.471614, - 45.493642 - ], - [ - -73.471224, - 45.49339 - ], - [ - -73.470867, - 45.493152 - ], - [ - -73.470545, - 45.492931 - ], - [ - -73.470296, - 45.492769 - ], - [ - -73.469959, - 45.492553 - ], - [ - -73.469723, - 45.492395 - ], - [ - -73.469303, - 45.492121 - ], - [ - -73.469006, - 45.491923 - ], - [ - -73.468656, - 45.491698 - ], - [ - -73.468573, - 45.49163 - ], - [ - -73.468166, - 45.49136 - ], - [ - -73.468094, - 45.49132 - ], - [ - -73.468029, - 45.491284 - ], - [ - -73.467697, - 45.491059 - ], - [ - -73.467397, - 45.490865 - ], - [ - -73.466889, - 45.490518 - ], - [ - -73.466277, - 45.490113 - ], - [ - -73.466175, - 45.490041 - ], - [ - -73.466087, - 45.489983 - ], - [ - -73.465434, - 45.48956 - ], - [ - -73.46482, - 45.489155 - ], - [ - -73.464595, - 45.489001 - ], - [ - -73.464379, - 45.488857 - ], - [ - -73.46422, - 45.488754 - ], - [ - -73.464097, - 45.488673 - ], - [ - -73.463537, - 45.488299 - ], - [ - -73.463291, - 45.488146 - ], - [ - -73.463053, - 45.487989 - ], - [ - -73.462983, - 45.487944 - ], - [ - -73.46278, - 45.487809 - ], - [ - -73.462116, - 45.487367 - ], - [ - -73.461292, - 45.486823 - ], - [ - -73.461219, - 45.486774 - ], - [ - -73.460376, - 45.486211 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.45937, - 45.485544 - ], - [ - -73.458995, - 45.485292 - ], - [ - -73.458472, - 45.484946 - ], - [ - -73.45799, - 45.484621 - ], - [ - -73.457564, - 45.484333 - ], - [ - -73.457447, - 45.484256 - ], - [ - -73.456334, - 45.483523 - ], - [ - -73.456426, - 45.48346 - ], - [ - -73.45662, - 45.483329 - ], - [ - -73.456963, - 45.483096 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45645, - 45.482799 - ], - [ - -73.455886, - 45.482623 - ], - [ - -73.455654, - 45.482542 - ], - [ - -73.455462, - 45.482465 - ], - [ - -73.455276, - 45.482384 - ], - [ - -73.455009, - 45.482272 - ], - [ - -73.454605, - 45.482087 - ], - [ - -73.454381, - 45.481984 - ], - [ - -73.454145, - 45.481862 - ], - [ - -73.453796, - 45.481673 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452296, - 45.480719 - ], - [ - -73.452295, - 45.480718 - ], - [ - -73.451837, - 45.480421 - ], - [ - -73.451565, - 45.480238 - ], - [ - -73.450996, - 45.479855 - ], - [ - -73.450929, - 45.479809 - ], - [ - -73.450257, - 45.479368 - ], - [ - -73.449696, - 45.479002 - ], - [ - -73.449587, - 45.478931 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448305, - 45.478058 - ], - [ - -73.447781, - 45.477703 - ], - [ - -73.4477, - 45.477648 - ], - [ - -73.446992, - 45.477175 - ], - [ - -73.446393, - 45.476765 - ], - [ - -73.445743, - 45.476329 - ], - [ - -73.445367, - 45.476068 - ], - [ - -73.445205, - 45.475955 - ], - [ - -73.444867, - 45.475726 - ], - [ - -73.444508, - 45.475482 - ], - [ - -73.44371, - 45.474943 - ], - [ - -73.443609, - 45.474874 - ], - [ - -73.44285, - 45.474357 - ], - [ - -73.441168, - 45.473206 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.439193, - 45.471877 - ], - [ - -73.438156, - 45.471178 - ], - [ - -73.438035, - 45.471097 - ], - [ - -73.435593, - 45.469484 - ], - [ - -73.435506, - 45.469426 - ], - [ - -73.434532, - 45.46878 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.433058, - 45.467863 - ], - [ - -73.430632, - 45.466255 - ], - [ - -73.430217, - 45.46598 - ], - [ - -73.42669, - 45.463641 - ], - [ - -73.426608, - 45.463587 - ], - [ - -73.425566, - 45.462896 - ], - [ - -73.425014, - 45.46253 - ], - [ - -73.424857, - 45.462425 - ], - [ - -73.4247, - 45.462321 - ], - [ - -73.42397, - 45.461837 - ], - [ - -73.423451, - 45.461493 - ], - [ - -73.423345, - 45.461423 - ], - [ - -73.422579, - 45.460915 - ], - [ - -73.419924, - 45.459154 - ], - [ - -73.419828, - 45.45909 - ], - [ - -73.419683, - 45.458994 - ], - [ - -73.417635, - 45.457636 - ], - [ - -73.417292, - 45.457408 - ], - [ - -73.417007, - 45.457219 - ], - [ - -73.416013, - 45.456555 - ], - [ - -73.415308, - 45.456073 - ], - [ - -73.415336, - 45.456011 - ], - [ - -73.415361, - 45.455957 - ], - [ - -73.415733, - 45.455673 - ], - [ - -73.416258, - 45.455322 - ], - [ - -73.416346, - 45.455299 - ], - [ - -73.41643, - 45.455285 - ], - [ - -73.416512, - 45.45528 - ], - [ - -73.416583, - 45.455268 - ], - [ - -73.416661, - 45.455244 - ], - [ - -73.416685, - 45.455229 - ] - ] - }, - "id": 63, - "properties": { - "id": "579570ee-86c0-4e02-ac58-766a1d2ab749", - "data": { - "gtfs": { - "shape_id": "21_1_R" - }, - "segments": [ - { - "distanceMeters": 8464, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 459, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 136 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 88 - }, - { - "distanceMeters": 400, - "travelTimeSeconds": 143 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12451, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3979.5583550068923, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 15.96, - "travelTimeWithoutDwellTimesSeconds": 780, - "operatingTimeWithLayoverTimeSeconds": 960, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 780, - "operatingSpeedWithLayoverMetersPerSecond": 12.97, - "averageSpeedWithoutDwellTimesMetersPerSecond": 15.96 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "5f21960f-8919-4407-8a49-57c39947c4fe", - "cc43f372-04e8-4c4c-b711-2e4159e3855d", - "9b7055a8-adca-44c6-9935-6026756d4460", - "76ff8292-f41f-4d17-998d-6dd3d2c32288", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "e80498a8-505d-4215-ba07-7582f8783d8e", - "014d61e3-acfc-41f6-b78a-5c2178c073b1", - "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", - "14e293a6-352a-4156-8578-66d0b5bdcc1f", - "62558b4d-75af-4b04-8040-a30de5a89658", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "988183db-88f1-47cb-87bf-b2a03dd4a38d", - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "bfb03303-2ee6-40dd-8e8f-859a06b338a6", - "2b6f210c-4f28-43d1-b096-b48c582f5274", - "4d7b837b-dc9e-45a8-8586-b51c6fcd4545", - "24b525eb-f42e-4817-8122-95b424e3e4fc" - ], - "stops": [], - "line_id": "6b85de63-da26-4972-9335-70d9a16911d7", - "segments": [ - 0, - 250, - 253, - 257, - 262, - 266, - 269, - 273, - 275, - 277, - 281, - 282, - 286, - 289, - 292, - 295 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 63, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.416685, - 45.455229 - ], - [ - -73.416725, - 45.455205 - ], - [ - -73.416729, - 45.455148 - ], - [ - -73.416691, - 45.455107 - ], - [ - -73.41664, - 45.455084 - ], - [ - -73.416578, - 45.455087 - ], - [ - -73.416509, - 45.455105 - ], - [ - -73.416432, - 45.455152 - ], - [ - -73.416377, - 45.455195 - ], - [ - -73.41633, - 45.455234 - ], - [ - -73.416283, - 45.45528 - ], - [ - -73.416258, - 45.455322 - ], - [ - -73.415733, - 45.455673 - ], - [ - -73.415361, - 45.455957 - ], - [ - -73.415285, - 45.455977 - ], - [ - -73.415199, - 45.456001 - ], - [ - -73.415075, - 45.456096 - ], - [ - -73.415179, - 45.456158 - ], - [ - -73.416031, - 45.456739 - ], - [ - -73.416909, - 45.45732 - ], - [ - -73.417173, - 45.457494 - ], - [ - -73.41949, - 45.459027 - ], - [ - -73.419564, - 45.459076 - ], - [ - -73.419713, - 45.459174 - ], - [ - -73.422286, - 45.460876 - ], - [ - -73.422478, - 45.461003 - ], - [ - -73.423149, - 45.461446 - ], - [ - -73.42386, - 45.461916 - ], - [ - -73.424593, - 45.462401 - ], - [ - -73.42497, - 45.46265 - ], - [ - -73.425478, - 45.462986 - ], - [ - -73.4262, - 45.463464 - ], - [ - -73.426502, - 45.463663 - ], - [ - -73.43053, - 45.466326 - ], - [ - -73.430805, - 45.466508 - ], - [ - -73.432747, - 45.467791 - ], - [ - -73.43408, - 45.468668 - ], - [ - -73.434186, - 45.468737 - ], - [ - -73.435224, - 45.469427 - ], - [ - -73.435371, - 45.469525 - ], - [ - -73.437732, - 45.471085 - ], - [ - -73.437899, - 45.471196 - ], - [ - -73.440412, - 45.472888 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.441938, - 45.473928 - ], - [ - -73.442708, - 45.474456 - ], - [ - -73.443369, - 45.474906 - ], - [ - -73.443474, - 45.474978 - ], - [ - -73.44437, - 45.475586 - ], - [ - -73.445007, - 45.476018 - ], - [ - -73.445067, - 45.476058 - ], - [ - -73.445608, - 45.476432 - ], - [ - -73.446237, - 45.47686 - ], - [ - -73.446869, - 45.477292 - ], - [ - -73.447191, - 45.47751 - ], - [ - -73.44754, - 45.477747 - ], - [ - -73.448146, - 45.478157 - ], - [ - -73.448648, - 45.478495 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.450119, - 45.479471 - ], - [ - -73.450858, - 45.479955 - ], - [ - -73.451, - 45.480048 - ], - [ - -73.451438, - 45.480342 - ], - [ - -73.451689, - 45.480511 - ], - [ - -73.452165, - 45.480813 - ], - [ - -73.452539, - 45.481074 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452851, - 45.48129 - ], - [ - -73.453668, - 45.481781 - ], - [ - -73.454023, - 45.481974 - ], - [ - -73.454266, - 45.482101 - ], - [ - -73.454494, - 45.482204 - ], - [ - -73.454624, - 45.482357 - ], - [ - -73.455203, - 45.482812 - ], - [ - -73.455441, - 45.482965 - ], - [ - -73.456003, - 45.48332 - ], - [ - -73.456089, - 45.483375 - ], - [ - -73.456112, - 45.483393 - ], - [ - -73.456334, - 45.483523 - ], - [ - -73.457447, - 45.484256 - ], - [ - -73.457564, - 45.484333 - ], - [ - -73.45799, - 45.484621 - ], - [ - -73.458472, - 45.484946 - ], - [ - -73.458995, - 45.485292 - ], - [ - -73.459341, - 45.485525 - ], - [ - -73.45937, - 45.485544 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.460376, - 45.486211 - ], - [ - -73.461024, - 45.486644 - ], - [ - -73.461219, - 45.486774 - ], - [ - -73.461292, - 45.486823 - ], - [ - -73.462116, - 45.487367 - ], - [ - -73.462662, - 45.48773 - ], - [ - -73.46278, - 45.487809 - ], - [ - -73.462983, - 45.487944 - ], - [ - -73.463053, - 45.487989 - ], - [ - -73.463291, - 45.488146 - ], - [ - -73.463537, - 45.488299 - ], - [ - -73.464097, - 45.488673 - ], - [ - -73.46422, - 45.488754 - ], - [ - -73.464379, - 45.488857 - ], - [ - -73.464595, - 45.489001 - ], - [ - -73.464744, - 45.489103 - ], - [ - -73.46482, - 45.489155 - ], - [ - -73.465434, - 45.48956 - ], - [ - -73.465998, - 45.489925 - ], - [ - -73.466087, - 45.489983 - ], - [ - -73.466175, - 45.490041 - ], - [ - -73.466277, - 45.490113 - ], - [ - -73.466889, - 45.490518 - ], - [ - -73.467397, - 45.490865 - ], - [ - -73.467697, - 45.491059 - ], - [ - -73.467798, - 45.491127 - ], - [ - -73.468029, - 45.491284 - ], - [ - -73.468094, - 45.49132 - ], - [ - -73.468166, - 45.49136 - ], - [ - -73.468573, - 45.49163 - ], - [ - -73.468656, - 45.491698 - ], - [ - -73.469006, - 45.491923 - ], - [ - -73.469067, - 45.491963 - ], - [ - -73.469303, - 45.492121 - ], - [ - -73.469723, - 45.492395 - ], - [ - -73.469959, - 45.492553 - ], - [ - -73.470296, - 45.492769 - ], - [ - -73.470312, - 45.492779 - ], - [ - -73.470545, - 45.492931 - ], - [ - -73.470867, - 45.493152 - ], - [ - -73.471224, - 45.49339 - ], - [ - -73.471614, - 45.493642 - ], - [ - -73.471949, - 45.493867 - ], - [ - -73.472367, - 45.494146 - ], - [ - -73.472662, - 45.494344 - ], - [ - -73.472769, - 45.494416 - ], - [ - -73.473016, - 45.494578 - ], - [ - -73.473259, - 45.49474 - ], - [ - -73.473385, - 45.494817 - ], - [ - -73.473746, - 45.495057 - ], - [ - -73.473858, - 45.495132 - ], - [ - -73.474138, - 45.495312 - ], - [ - -73.474517, - 45.49556 - ], - [ - -73.474879, - 45.495798 - ], - [ - -73.475136, - 45.495975 - ], - [ - -73.475245, - 45.49605 - ], - [ - -73.475346, - 45.496118 - ], - [ - -73.475492, - 45.496208 - ], - [ - -73.475747, - 45.496374 - ], - [ - -73.475974, - 45.496523 - ], - [ - -73.47632, - 45.496748 - ], - [ - -73.476618, - 45.496942 - ], - [ - -73.476713, - 45.497004 - ], - [ - -73.477062, - 45.497238 - ], - [ - -73.477439, - 45.49749 - ], - [ - -73.477789, - 45.49772 - ], - [ - -73.478023, - 45.497874 - ], - [ - -73.478178, - 45.497976 - ], - [ - -73.478257, - 45.498026 - ], - [ - -73.4786, - 45.498251 - ], - [ - -73.478967, - 45.498498 - ], - [ - -73.479271, - 45.498701 - ], - [ - -73.47971, - 45.498993 - ], - [ - -73.480326, - 45.499398 - ], - [ - -73.480354, - 45.499415 - ], - [ - -73.480477, - 45.499488 - ], - [ - -73.480835, - 45.499231 - ], - [ - -73.480847, - 45.499223 - ], - [ - -73.481169, - 45.498994 - ], - [ - -73.481589, - 45.498697 - ], - [ - -73.481899, - 45.498472 - ], - [ - -73.482124, - 45.49831 - ], - [ - -73.482533, - 45.498015 - ], - [ - -73.482636, - 45.497941 - ], - [ - -73.482985, - 45.497707 - ], - [ - -73.483277, - 45.497509 - ], - [ - -73.483338, - 45.497469 - ], - [ - -73.483382, - 45.497433 - ], - [ - -73.483504, - 45.497347 - ], - [ - -73.483872, - 45.497077 - ], - [ - -73.484051, - 45.496946 - ], - [ - -73.484056, - 45.496942 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.48442, - 45.496983 - ], - [ - -73.484708, - 45.497199 - ], - [ - -73.484931, - 45.497378 - ], - [ - -73.485095, - 45.49751 - ], - [ - -73.485397, - 45.497784 - ], - [ - -73.485739, - 45.498135 - ], - [ - -73.485877, - 45.498284 - ], - [ - -73.486105, - 45.498553 - ], - [ - -73.486286, - 45.498787 - ], - [ - -73.486368, - 45.498907 - ], - [ - -73.486538, - 45.499154 - ], - [ - -73.486685, - 45.499381 - ], - [ - -73.486823, - 45.499615 - ], - [ - -73.486951, - 45.499858 - ], - [ - -73.487138, - 45.500263 - ], - [ - -73.487159, - 45.500317 - ], - [ - -73.487264, - 45.5006 - ], - [ - -73.487306, - 45.500713 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487417, - 45.501077 - ], - [ - -73.487455, - 45.501208 - ], - [ - -73.487464, - 45.50124 - ], - [ - -73.48765, - 45.50191 - ], - [ - -73.487855, - 45.502589 - ], - [ - -73.488032, - 45.50303 - ], - [ - -73.488178, - 45.503309 - ], - [ - -73.488409, - 45.50371 - ], - [ - -73.489159, - 45.504974 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492913, - 45.510102 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497917, - 45.512052 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.50087, - 45.513005 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505113, - 45.514481 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506107, - 45.514749 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511915, - 45.516872 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513431, - 45.5183 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.514994, - 45.51942 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518889, - 45.520627 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.521609, - 45.523676 - ], - [ - -73.521556, - 45.52368 - ], - [ - -73.521506, - 45.523698 - ], - [ - -73.521494, - 45.523725 - ], - [ - -73.521489, - 45.523788 - ], - [ - -73.521486, - 45.523819 - ] - ] - }, - "id": 64, - "properties": { - "id": "ae246c96-724c-4b43-96d1-a1d8713c89bf", - "data": { - "gtfs": { - "shape_id": "21_1_A" - }, - "segments": [ - { - "distanceMeters": 388, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 494, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 358, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 506, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 1156, - "travelTimeSeconds": 168 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 598, - "travelTimeSeconds": 105 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 694, - "travelTimeSeconds": 122 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 192, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12357, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11170.688129286662, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.44, - "travelTimeWithoutDwellTimesSeconds": 1920, - "operatingTimeWithLayoverTimeSeconds": 2112, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1920, - "operatingSpeedWithLayoverMetersPerSecond": 5.85, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.44 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "24b525eb-f42e-4817-8122-95b424e3e4fc", - "be2e580d-0de3-4edf-8ee4-890565699c8a", - "0b9048bd-dd82-42d8-ba47-b3d93d735fe8", - "d8582feb-8d83-457a-8a52-dc395b1f7390", - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "2f104875-795a-4778-a419-276272abfb07", - "ba86f45f-9fb5-4525-a50b-a876919fd012", - "988c86da-04eb-4067-b650-f13c447b17e7", - "14e293a6-352a-4156-8578-66d0b5bdcc1f", - "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", - "2881ced2-6a46-4738-a470-6ff64097e482", - "e80498a8-505d-4215-ba07-7582f8783d8e", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "c4061c94-e615-4bca-b219-1ff6ea9657d0", - "89553e99-6867-4296-935e-718bb768cb73", - "72a48bdf-3a35-4f3b-8d05-e465faf044cf", - "70af9f63-28e4-474e-896b-5462b7252980", - "1f1b5a64-7c8d-49de-8df3-369e30f799ef", - "c24b91da-a4a3-4b28-b987-5726c6a01fdb", - "720107c1-f0c2-4f37-8e59-ce7f32cd9461", - "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", - "e49dac95-6777-4527-88d9-43533c4c81ab", - "3690607e-a520-4b5c-bb6d-5e6ec4c83aec", - "cee5ccf3-ece1-4350-8264-3c360d07d279", - "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", - "9e73f7cd-aad7-4512-9984-973fdc775485", - "d8e1fde2-a0b2-4339-9d55-49a5f3be258b", - "dae79222-5b12-4269-8d31-6271170c1f54", - "4969c5f0-e6b6-4445-8d46-f637f2b3b640", - "b33d27b7-d555-4c52-b225-a20c1767dd3b", - "de8aa4d4-205c-4786-8a75-8902d51d8a41", - "47ef73cf-7799-46e3-b2f1-76a6533f7746", - "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", - "fd062866-a8eb-4466-b53a-6adf8fc3f09a", - "6c42a8f6-a98f-4058-9992-d00706a03dff", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "a5b9648a-83c0-4eab-a54b-68c23aecae43", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", - "be19484c-af95-45b2-bfe5-24342dd1b710", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "6b85de63-da26-4972-9335-70d9a16911d7", - "segments": [ - 0, - 19, - 21, - 24, - 29, - 31, - 34, - 36, - 38, - 40, - 42, - 47, - 50, - 55, - 58, - 62, - 67, - 77, - 86, - 90, - 94, - 104, - 107, - 114, - 121, - 126, - 133, - 138, - 143, - 150, - 155, - 163, - 171, - 179, - 198, - 220, - 233, - 236, - 243, - 262, - 268, - 281, - 288 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 64, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521486, - 45.523819 - ], - [ - -73.521481, - 45.523874 - ], - [ - -73.52149, - 45.523892 - ], - [ - -73.521509, - 45.523906 - ], - [ - -73.521542, - 45.523919 - ], - [ - -73.521581, - 45.523923 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519258, - 45.520728 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514998, - 45.519328 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513224, - 45.517459 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509952, - 45.515502 - ], - [ - -73.509485, - 45.515357 - ], - [ - -73.509465, - 45.51535 - ], - [ - -73.509376, - 45.515323 - ], - [ - -73.508692, - 45.515143 - ], - [ - -73.508296, - 45.51503 - ], - [ - -73.507817, - 45.514868 - ], - [ - -73.507704, - 45.514841 - ], - [ - -73.507464, - 45.514765 - ], - [ - -73.506516, - 45.514432 - ], - [ - -73.505464, - 45.514054 - ], - [ - -73.505166, - 45.51396 - ], - [ - -73.504861, - 45.513863 - ], - [ - -73.504777, - 45.513837 - ], - [ - -73.504451, - 45.513734 - ], - [ - -73.50434, - 45.513699 - ], - [ - -73.504259, - 45.513672 - ], - [ - -73.503369, - 45.513397 - ], - [ - -73.502433, - 45.51315 - ], - [ - -73.502048, - 45.513078 - ], - [ - -73.501541, - 45.512935 - ], - [ - -73.501411, - 45.512898 - ], - [ - -73.50108, - 45.512799 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499659, - 45.512341 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498207, - 45.511889 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.494297, - 45.510452 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.494088, - 45.51035 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491844, - 45.508694 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488541, - 45.503629 - ], - [ - -73.48831, - 45.50321 - ], - [ - -73.48823, - 45.503039 - ], - [ - -73.488092, - 45.502693 - ], - [ - -73.487989, - 45.502369 - ], - [ - -73.487959, - 45.502275 - ], - [ - -73.487746, - 45.501478 - ], - [ - -73.487613, - 45.501033 - ], - [ - -73.487524, - 45.500737 - ], - [ - -73.487509, - 45.500686 - ], - [ - -73.487464, - 45.50056 - ], - [ - -73.487346, - 45.500232 - ], - [ - -73.487139, - 45.499795 - ], - [ - -73.486985, - 45.499512 - ], - [ - -73.486818, - 45.499233 - ], - [ - -73.48673, - 45.4991 - ], - [ - -73.486631, - 45.498949 - ], - [ - -73.486428, - 45.498675 - ], - [ - -73.486216, - 45.498401 - ], - [ - -73.486166, - 45.498342 - ], - [ - -73.486, - 45.498149 - ], - [ - -73.485576, - 45.497708 - ], - [ - -73.485299, - 45.497456 - ], - [ - -73.485251, - 45.497415 - ], - [ - -73.484899, - 45.497123 - ], - [ - -73.484387, - 45.49674 - ], - [ - -73.484357, - 45.496722 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.483872, - 45.497077 - ], - [ - -73.483869, - 45.49708 - ], - [ - -73.483832, - 45.497107 - ], - [ - -73.483504, - 45.497347 - ], - [ - -73.483382, - 45.497433 - ], - [ - -73.483338, - 45.497469 - ], - [ - -73.483277, - 45.497509 - ], - [ - -73.482985, - 45.497707 - ], - [ - -73.482745, - 45.497868 - ], - [ - -73.482636, - 45.497941 - ], - [ - -73.482124, - 45.49831 - ], - [ - -73.481899, - 45.498472 - ], - [ - -73.481589, - 45.498697 - ], - [ - -73.481169, - 45.498994 - ], - [ - -73.480847, - 45.499223 - ], - [ - -73.480617, - 45.499388 - ], - [ - -73.480477, - 45.499488 - ], - [ - -73.480326, - 45.499398 - ], - [ - -73.47971, - 45.498993 - ], - [ - -73.479492, - 45.498848 - ], - [ - -73.479271, - 45.498701 - ], - [ - -73.478967, - 45.498498 - ], - [ - -73.4786, - 45.498251 - ], - [ - -73.478382, - 45.498108 - ], - [ - -73.478257, - 45.498026 - ], - [ - -73.478178, - 45.497976 - ], - [ - -73.477789, - 45.49772 - ], - [ - -73.477439, - 45.49749 - ], - [ - -73.477062, - 45.497238 - ], - [ - -73.476834, - 45.497086 - ], - [ - -73.476713, - 45.497004 - ], - [ - -73.47632, - 45.496748 - ], - [ - -73.475974, - 45.496523 - ], - [ - -73.475747, - 45.496374 - ], - [ - -73.475738, - 45.496369 - ], - [ - -73.475492, - 45.496208 - ], - [ - -73.475346, - 45.496118 - ], - [ - -73.475245, - 45.49605 - ], - [ - -73.474879, - 45.495798 - ], - [ - -73.474517, - 45.49556 - ], - [ - -73.474138, - 45.495312 - ], - [ - -73.473936, - 45.495182 - ], - [ - -73.473858, - 45.495132 - ], - [ - -73.473385, - 45.494817 - ], - [ - -73.473259, - 45.49474 - ], - [ - -73.473016, - 45.494578 - ], - [ - -73.472906, - 45.494507 - ], - [ - -73.472769, - 45.494416 - ], - [ - -73.472367, - 45.494146 - ], - [ - -73.471949, - 45.493867 - ], - [ - -73.471614, - 45.493642 - ], - [ - -73.471224, - 45.49339 - ], - [ - -73.470867, - 45.493152 - ], - [ - -73.470613, - 45.492977 - ], - [ - -73.470545, - 45.492931 - ], - [ - -73.470296, - 45.492769 - ], - [ - -73.469959, - 45.492553 - ], - [ - -73.469723, - 45.492395 - ], - [ - -73.469423, - 45.492199 - ], - [ - -73.469303, - 45.492121 - ], - [ - -73.469006, - 45.491923 - ], - [ - -73.468656, - 45.491698 - ], - [ - -73.468573, - 45.49163 - ], - [ - -73.468366, - 45.491493 - ], - [ - -73.468166, - 45.49136 - ], - [ - -73.468094, - 45.49132 - ], - [ - -73.468029, - 45.491284 - ], - [ - -73.467697, - 45.491059 - ], - [ - -73.467397, - 45.490865 - ], - [ - -73.466889, - 45.490518 - ], - [ - -73.46638, - 45.490181 - ], - [ - -73.466277, - 45.490113 - ], - [ - -73.466175, - 45.490041 - ], - [ - -73.466087, - 45.489983 - ], - [ - -73.465434, - 45.48956 - ], - [ - -73.464885, - 45.489198 - ], - [ - -73.46482, - 45.489155 - ], - [ - -73.464595, - 45.489001 - ], - [ - -73.464379, - 45.488857 - ], - [ - -73.46422, - 45.488754 - ], - [ - -73.464097, - 45.488673 - ], - [ - -73.463537, - 45.488299 - ], - [ - -73.463291, - 45.488146 - ], - [ - -73.463053, - 45.487989 - ], - [ - -73.462991, - 45.487948 - ], - [ - -73.462983, - 45.487944 - ], - [ - -73.46278, - 45.487809 - ], - [ - -73.462116, - 45.487367 - ], - [ - -73.461426, - 45.486912 - ], - [ - -73.461292, - 45.486823 - ], - [ - -73.461219, - 45.486774 - ], - [ - -73.460376, - 45.486211 - ], - [ - -73.459529, - 45.485651 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.45937, - 45.485544 - ], - [ - -73.458995, - 45.485292 - ], - [ - -73.458472, - 45.484946 - ], - [ - -73.45799, - 45.484621 - ], - [ - -73.457564, - 45.484333 - ], - [ - -73.457447, - 45.484256 - ], - [ - -73.457024, - 45.483978 - ], - [ - -73.456334, - 45.483523 - ], - [ - -73.456426, - 45.48346 - ], - [ - -73.45662, - 45.483329 - ], - [ - -73.456963, - 45.483096 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45645, - 45.482799 - ], - [ - -73.455886, - 45.482623 - ], - [ - -73.455654, - 45.482542 - ], - [ - -73.455462, - 45.482465 - ], - [ - -73.455276, - 45.482384 - ], - [ - -73.455275, - 45.482384 - ], - [ - -73.455009, - 45.482272 - ], - [ - -73.454605, - 45.482087 - ], - [ - -73.454381, - 45.481984 - ], - [ - -73.454145, - 45.481862 - ], - [ - -73.453796, - 45.481673 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452508, - 45.480852 - ], - [ - -73.452296, - 45.480719 - ], - [ - -73.452295, - 45.480718 - ], - [ - -73.451837, - 45.480421 - ], - [ - -73.451565, - 45.480238 - ], - [ - -73.450996, - 45.479855 - ], - [ - -73.450929, - 45.479809 - ], - [ - -73.450257, - 45.479368 - ], - [ - -73.449696, - 45.479002 - ], - [ - -73.449587, - 45.478931 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448305, - 45.478058 - ], - [ - -73.447781, - 45.477703 - ], - [ - -73.4477, - 45.477648 - ], - [ - -73.446992, - 45.477175 - ], - [ - -73.446393, - 45.476765 - ], - [ - -73.445743, - 45.476329 - ], - [ - -73.445367, - 45.476068 - ], - [ - -73.445205, - 45.475955 - ], - [ - -73.444867, - 45.475726 - ], - [ - -73.444508, - 45.475482 - ], - [ - -73.44371, - 45.474943 - ], - [ - -73.443609, - 45.474874 - ], - [ - -73.44285, - 45.474357 - ], - [ - -73.441168, - 45.473206 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.439193, - 45.471877 - ], - [ - -73.438156, - 45.471178 - ], - [ - -73.438035, - 45.471097 - ], - [ - -73.435593, - 45.469484 - ], - [ - -73.435506, - 45.469426 - ], - [ - -73.434532, - 45.46878 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.433058, - 45.467863 - ], - [ - -73.430632, - 45.466255 - ], - [ - -73.430217, - 45.46598 - ], - [ - -73.42669, - 45.463641 - ], - [ - -73.426608, - 45.463587 - ], - [ - -73.425566, - 45.462896 - ], - [ - -73.425014, - 45.46253 - ], - [ - -73.424857, - 45.462425 - ], - [ - -73.4247, - 45.462321 - ], - [ - -73.42397, - 45.461837 - ], - [ - -73.423451, - 45.461493 - ], - [ - -73.423345, - 45.461423 - ], - [ - -73.422579, - 45.460915 - ], - [ - -73.419924, - 45.459154 - ], - [ - -73.419828, - 45.45909 - ], - [ - -73.419683, - 45.458994 - ], - [ - -73.417635, - 45.457636 - ], - [ - -73.417292, - 45.457408 - ], - [ - -73.417007, - 45.457219 - ], - [ - -73.416013, - 45.456555 - ], - [ - -73.415308, - 45.456073 - ], - [ - -73.415336, - 45.456011 - ], - [ - -73.415361, - 45.455957 - ], - [ - -73.415733, - 45.455673 - ], - [ - -73.416258, - 45.455322 - ], - [ - -73.416346, - 45.455299 - ], - [ - -73.41643, - 45.455285 - ], - [ - -73.416512, - 45.45528 - ], - [ - -73.416583, - 45.455268 - ], - [ - -73.416661, - 45.455244 - ], - [ - -73.416685, - 45.455229 - ] - ] - }, - "id": 65, - "properties": { - "id": "9166be09-4b68-47ad-9151-97b7ba3b657c", - "data": { - "gtfs": { - "shape_id": "21_1_R" - }, - "segments": [ - { - "distanceMeters": 706, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 384, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 403, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 345, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 953, - "travelTimeSeconds": 132 - }, - { - "distanceMeters": 577, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 459, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 136 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 88 - }, - { - "distanceMeters": 400, - "travelTimeSeconds": 143 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 192, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12451, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11170.688129286662, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.48, - "travelTimeWithoutDwellTimesSeconds": 1920, - "operatingTimeWithLayoverTimeSeconds": 2112, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1920, - "operatingSpeedWithLayoverMetersPerSecond": 5.9, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.48 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "d3215c60-bb9e-40ac-89e4-1f922b39e266", - "f9358f54-8643-47f5-b0df-4a20b46cc22d", - "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", - "f4f29738-df3f-4d69-8632-9088ded0dc5a", - "741876fc-030a-42f6-a33a-8f1f9c2aba12", - "688a3f67-a176-441e-a399-c92a55de9c74", - "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", - "37199bb2-9740-4484-b68f-12d3c82f8bf9", - "bcd0a901-5384-443e-9be4-1f0faa123ccb", - "b2075e72-f3b5-420a-b22b-99e7608c7c0a", - "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", - "47ef73cf-7799-46e3-b2f1-76a6533f7746", - "de8aa4d4-205c-4786-8a75-8902d51d8a41", - "b33d27b7-d555-4c52-b225-a20c1767dd3b", - "4969c5f0-e6b6-4445-8d46-f637f2b3b640", - "dae79222-5b12-4269-8d31-6271170c1f54", - "d8e1fde2-a0b2-4339-9d55-49a5f3be258b", - "9e73f7cd-aad7-4512-9984-973fdc775485", - "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", - "cee5ccf3-ece1-4350-8264-3c360d07d279", - "3690607e-a520-4b5c-bb6d-5e6ec4c83aec", - "e49dac95-6777-4527-88d9-43533c4c81ab", - "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", - "720107c1-f0c2-4f37-8e59-ce7f32cd9461", - "a90c4da7-455c-41d3-9961-c7a64d627572", - "3fb067af-1fec-457b-80c2-3e3f8b141afb", - "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", - "5f21960f-8919-4407-8a49-57c39947c4fe", - "cc43f372-04e8-4c4c-b711-2e4159e3855d", - "9b7055a8-adca-44c6-9935-6026756d4460", - "76ff8292-f41f-4d17-998d-6dd3d2c32288", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "e80498a8-505d-4215-ba07-7582f8783d8e", - "014d61e3-acfc-41f6-b78a-5c2178c073b1", - "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", - "14e293a6-352a-4156-8578-66d0b5bdcc1f", - "62558b4d-75af-4b04-8040-a30de5a89658", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "988183db-88f1-47cb-87bf-b2a03dd4a38d", - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "bfb03303-2ee6-40dd-8e8f-859a06b338a6", - "2b6f210c-4f28-43d1-b096-b48c582f5274", - "4d7b837b-dc9e-45a8-8586-b51c6fcd4545", - "24b525eb-f42e-4817-8122-95b424e3e4fc" - ], - "stops": [], - "line_id": "6b85de63-da26-4972-9335-70d9a16911d7", - "segments": [ - 0, - 45, - 52, - 59, - 69, - 80, - 87, - 91, - 95, - 106, - 118, - 136, - 158, - 164, - 171, - 179, - 185, - 190, - 197, - 202, - 209, - 214, - 219, - 226, - 231, - 240, - 244, - 248, - 256, - 267, - 275, - 280, - 283, - 287, - 292, - 296, - 299, - 303, - 305, - 307, - 311, - 312, - 316, - 319, - 322, - 325 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 65, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.416685, - 45.455229 - ], - [ - -73.416725, - 45.455205 - ], - [ - -73.416729, - 45.455148 - ], - [ - -73.416691, - 45.455107 - ], - [ - -73.41664, - 45.455084 - ], - [ - -73.416578, - 45.455087 - ], - [ - -73.416509, - 45.455105 - ], - [ - -73.416432, - 45.455152 - ], - [ - -73.416377, - 45.455195 - ], - [ - -73.41633, - 45.455234 - ], - [ - -73.416283, - 45.45528 - ], - [ - -73.416258, - 45.455322 - ], - [ - -73.415733, - 45.455673 - ], - [ - -73.415361, - 45.455957 - ], - [ - -73.415285, - 45.455977 - ], - [ - -73.415199, - 45.456001 - ], - [ - -73.415075, - 45.456096 - ], - [ - -73.415179, - 45.456158 - ], - [ - -73.416031, - 45.456739 - ], - [ - -73.416909, - 45.45732 - ], - [ - -73.417173, - 45.457494 - ], - [ - -73.41949, - 45.459027 - ], - [ - -73.419564, - 45.459076 - ], - [ - -73.419713, - 45.459174 - ], - [ - -73.422286, - 45.460876 - ], - [ - -73.422478, - 45.461003 - ], - [ - -73.423149, - 45.461446 - ], - [ - -73.42386, - 45.461916 - ], - [ - -73.424593, - 45.462401 - ], - [ - -73.42497, - 45.46265 - ], - [ - -73.425478, - 45.462986 - ], - [ - -73.4262, - 45.463464 - ], - [ - -73.426502, - 45.463663 - ], - [ - -73.43053, - 45.466326 - ], - [ - -73.430805, - 45.466508 - ], - [ - -73.432747, - 45.467791 - ], - [ - -73.43408, - 45.468668 - ], - [ - -73.434186, - 45.468737 - ], - [ - -73.435224, - 45.469427 - ], - [ - -73.435371, - 45.469525 - ], - [ - -73.437732, - 45.471085 - ], - [ - -73.437899, - 45.471196 - ], - [ - -73.440412, - 45.472888 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.441938, - 45.473928 - ], - [ - -73.442708, - 45.474456 - ], - [ - -73.443369, - 45.474906 - ], - [ - -73.443474, - 45.474978 - ], - [ - -73.44437, - 45.475586 - ], - [ - -73.445007, - 45.476018 - ], - [ - -73.445067, - 45.476058 - ], - [ - -73.445608, - 45.476432 - ], - [ - -73.446237, - 45.47686 - ], - [ - -73.446869, - 45.477292 - ], - [ - -73.447191, - 45.47751 - ], - [ - -73.44754, - 45.477747 - ], - [ - -73.448146, - 45.478157 - ], - [ - -73.448648, - 45.478495 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.450119, - 45.479471 - ], - [ - -73.450858, - 45.479955 - ], - [ - -73.451, - 45.480048 - ], - [ - -73.451438, - 45.480342 - ], - [ - -73.451689, - 45.480511 - ], - [ - -73.452165, - 45.480813 - ], - [ - -73.452539, - 45.481074 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452851, - 45.48129 - ], - [ - -73.453668, - 45.481781 - ], - [ - -73.454023, - 45.481974 - ], - [ - -73.454266, - 45.482101 - ], - [ - -73.454494, - 45.482204 - ], - [ - -73.454624, - 45.482357 - ], - [ - -73.455203, - 45.482812 - ], - [ - -73.455441, - 45.482965 - ], - [ - -73.456003, - 45.48332 - ], - [ - -73.456089, - 45.483375 - ], - [ - -73.456112, - 45.483393 - ], - [ - -73.456334, - 45.483523 - ], - [ - -73.457447, - 45.484256 - ], - [ - -73.457564, - 45.484333 - ], - [ - -73.45799, - 45.484621 - ], - [ - -73.458472, - 45.484946 - ], - [ - -73.458995, - 45.485292 - ], - [ - -73.459341, - 45.485525 - ], - [ - -73.45937, - 45.485544 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.460376, - 45.486211 - ], - [ - -73.461024, - 45.486644 - ], - [ - -73.461219, - 45.486774 - ], - [ - -73.461292, - 45.486823 - ], - [ - -73.462116, - 45.487367 - ], - [ - -73.462662, - 45.48773 - ], - [ - -73.46278, - 45.487809 - ], - [ - -73.462983, - 45.487944 - ], - [ - -73.463053, - 45.487989 - ], - [ - -73.463291, - 45.488146 - ], - [ - -73.463537, - 45.488299 - ], - [ - -73.464097, - 45.488673 - ], - [ - -73.46422, - 45.488754 - ], - [ - -73.464379, - 45.488857 - ], - [ - -73.464595, - 45.489001 - ], - [ - -73.464744, - 45.489103 - ], - [ - -73.46482, - 45.489155 - ], - [ - -73.465434, - 45.48956 - ], - [ - -73.465998, - 45.489925 - ], - [ - -73.466087, - 45.489983 - ], - [ - -73.466175, - 45.490041 - ], - [ - -73.466277, - 45.490113 - ], - [ - -73.466889, - 45.490518 - ], - [ - -73.467397, - 45.490865 - ], - [ - -73.467697, - 45.491059 - ], - [ - -73.467798, - 45.491127 - ], - [ - -73.468029, - 45.491284 - ], - [ - -73.468094, - 45.49132 - ], - [ - -73.468166, - 45.49136 - ], - [ - -73.468573, - 45.49163 - ], - [ - -73.468656, - 45.491698 - ], - [ - -73.469006, - 45.491923 - ], - [ - -73.469067, - 45.491963 - ], - [ - -73.469303, - 45.492121 - ], - [ - -73.469723, - 45.492395 - ], - [ - -73.469959, - 45.492553 - ], - [ - -73.470296, - 45.492769 - ], - [ - -73.470312, - 45.492779 - ], - [ - -73.470545, - 45.492931 - ], - [ - -73.470867, - 45.493152 - ], - [ - -73.471224, - 45.49339 - ], - [ - -73.471614, - 45.493642 - ], - [ - -73.471949, - 45.493867 - ], - [ - -73.472367, - 45.494146 - ], - [ - -73.472662, - 45.494344 - ], - [ - -73.472769, - 45.494416 - ], - [ - -73.473016, - 45.494578 - ], - [ - -73.473259, - 45.49474 - ], - [ - -73.473385, - 45.494817 - ], - [ - -73.473746, - 45.495057 - ], - [ - -73.473858, - 45.495132 - ], - [ - -73.474138, - 45.495312 - ], - [ - -73.474517, - 45.49556 - ], - [ - -73.474879, - 45.495798 - ], - [ - -73.475136, - 45.495975 - ], - [ - -73.475245, - 45.49605 - ], - [ - -73.475346, - 45.496118 - ], - [ - -73.475492, - 45.496208 - ], - [ - -73.475747, - 45.496374 - ], - [ - -73.475974, - 45.496523 - ], - [ - -73.47632, - 45.496748 - ], - [ - -73.476618, - 45.496942 - ], - [ - -73.476713, - 45.497004 - ], - [ - -73.477062, - 45.497238 - ], - [ - -73.477439, - 45.49749 - ], - [ - -73.477789, - 45.49772 - ], - [ - -73.478023, - 45.497874 - ], - [ - -73.478178, - 45.497976 - ], - [ - -73.478257, - 45.498026 - ], - [ - -73.4786, - 45.498251 - ], - [ - -73.478967, - 45.498498 - ], - [ - -73.479271, - 45.498701 - ], - [ - -73.47971, - 45.498993 - ], - [ - -73.480326, - 45.499398 - ], - [ - -73.480354, - 45.499415 - ], - [ - -73.480477, - 45.499488 - ], - [ - -73.480835, - 45.499231 - ], - [ - -73.480847, - 45.499223 - ], - [ - -73.481169, - 45.498994 - ], - [ - -73.481589, - 45.498697 - ], - [ - -73.481899, - 45.498472 - ], - [ - -73.482124, - 45.49831 - ], - [ - -73.482533, - 45.498015 - ], - [ - -73.482636, - 45.497941 - ], - [ - -73.482985, - 45.497707 - ], - [ - -73.483277, - 45.497509 - ], - [ - -73.483338, - 45.497469 - ], - [ - -73.483382, - 45.497433 - ], - [ - -73.483504, - 45.497347 - ], - [ - -73.483872, - 45.497077 - ], - [ - -73.484051, - 45.496946 - ], - [ - -73.484056, - 45.496942 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.48442, - 45.496983 - ], - [ - -73.484708, - 45.497199 - ], - [ - -73.484931, - 45.497378 - ], - [ - -73.485095, - 45.49751 - ], - [ - -73.485397, - 45.497784 - ], - [ - -73.485739, - 45.498135 - ], - [ - -73.485877, - 45.498284 - ], - [ - -73.486105, - 45.498553 - ], - [ - -73.486286, - 45.498787 - ], - [ - -73.486368, - 45.498907 - ], - [ - -73.486538, - 45.499154 - ], - [ - -73.486685, - 45.499381 - ], - [ - -73.486823, - 45.499615 - ], - [ - -73.486951, - 45.499858 - ], - [ - -73.487138, - 45.500263 - ], - [ - -73.487159, - 45.500317 - ], - [ - -73.487264, - 45.5006 - ], - [ - -73.487306, - 45.500713 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487417, - 45.501077 - ], - [ - -73.487455, - 45.501208 - ], - [ - -73.487464, - 45.50124 - ], - [ - -73.48765, - 45.50191 - ], - [ - -73.487855, - 45.502589 - ], - [ - -73.488032, - 45.50303 - ], - [ - -73.488178, - 45.503309 - ], - [ - -73.488409, - 45.50371 - ], - [ - -73.489159, - 45.504974 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492913, - 45.510102 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497917, - 45.512052 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.50087, - 45.513005 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505113, - 45.514481 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506107, - 45.514749 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511915, - 45.516872 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513431, - 45.5183 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.514994, - 45.51942 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518889, - 45.520627 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.521609, - 45.523676 - ], - [ - -73.521556, - 45.52368 - ], - [ - -73.521506, - 45.523698 - ], - [ - -73.521494, - 45.523725 - ], - [ - -73.521489, - 45.523788 - ], - [ - -73.521486, - 45.523819 - ] - ] - }, - "id": 66, - "properties": { - "id": "04714109-e477-4358-b591-de51f635f957", - "data": { - "gtfs": { - "shape_id": "21_2_A" - }, - "segments": [ - { - "distanceMeters": 388, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 494, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 358, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 506, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 1156, - "travelTimeSeconds": 168 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 598, - "travelTimeSeconds": 116 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 694, - "travelTimeSeconds": 135 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 204, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12357, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11170.688129286662, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.06, - "travelTimeWithoutDwellTimesSeconds": 2040, - "operatingTimeWithLayoverTimeSeconds": 2244, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2040, - "operatingSpeedWithLayoverMetersPerSecond": 5.51, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.06 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "24b525eb-f42e-4817-8122-95b424e3e4fc", - "be2e580d-0de3-4edf-8ee4-890565699c8a", - "0b9048bd-dd82-42d8-ba47-b3d93d735fe8", - "d8582feb-8d83-457a-8a52-dc395b1f7390", - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "2f104875-795a-4778-a419-276272abfb07", - "ba86f45f-9fb5-4525-a50b-a876919fd012", - "988c86da-04eb-4067-b650-f13c447b17e7", - "14e293a6-352a-4156-8578-66d0b5bdcc1f", - "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", - "2881ced2-6a46-4738-a470-6ff64097e482", - "e80498a8-505d-4215-ba07-7582f8783d8e", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "c4061c94-e615-4bca-b219-1ff6ea9657d0", - "89553e99-6867-4296-935e-718bb768cb73", - "72a48bdf-3a35-4f3b-8d05-e465faf044cf", - "70af9f63-28e4-474e-896b-5462b7252980", - "1f1b5a64-7c8d-49de-8df3-369e30f799ef", - "c24b91da-a4a3-4b28-b987-5726c6a01fdb", - "720107c1-f0c2-4f37-8e59-ce7f32cd9461", - "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", - "e49dac95-6777-4527-88d9-43533c4c81ab", - "3690607e-a520-4b5c-bb6d-5e6ec4c83aec", - "cee5ccf3-ece1-4350-8264-3c360d07d279", - "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", - "9e73f7cd-aad7-4512-9984-973fdc775485", - "d8e1fde2-a0b2-4339-9d55-49a5f3be258b", - "dae79222-5b12-4269-8d31-6271170c1f54", - "4969c5f0-e6b6-4445-8d46-f637f2b3b640", - "b33d27b7-d555-4c52-b225-a20c1767dd3b", - "de8aa4d4-205c-4786-8a75-8902d51d8a41", - "47ef73cf-7799-46e3-b2f1-76a6533f7746", - "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", - "fd062866-a8eb-4466-b53a-6adf8fc3f09a", - "6c42a8f6-a98f-4058-9992-d00706a03dff", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "a5b9648a-83c0-4eab-a54b-68c23aecae43", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", - "be19484c-af95-45b2-bfe5-24342dd1b710", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "6b85de63-da26-4972-9335-70d9a16911d7", - "segments": [ - 0, - 19, - 21, - 24, - 29, - 31, - 34, - 36, - 38, - 40, - 42, - 47, - 50, - 55, - 58, - 62, - 67, - 77, - 86, - 90, - 94, - 104, - 107, - 114, - 121, - 126, - 133, - 138, - 143, - 150, - 155, - 163, - 171, - 179, - 198, - 220, - 233, - 236, - 243, - 262, - 268, - 281, - 288 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 66, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.443522, - 45.573154 - ], - [ - -73.44348, - 45.573034 - ], - [ - -73.443427, - 45.572912 - ], - [ - -73.44336, - 45.572841 - ], - [ - -73.443253, - 45.572772 - ], - [ - -73.443199, - 45.572746 - ], - [ - -73.443114, - 45.572731 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.446746, - 45.574587 - ], - [ - -73.447238, - 45.574749 - ], - [ - -73.447388, - 45.574789 - ], - [ - -73.447436, - 45.574664 - ], - [ - -73.447623, - 45.574219 - ], - [ - -73.44779, - 45.573737 - ], - [ - -73.447926, - 45.573404 - ], - [ - -73.448288, - 45.57264 - ], - [ - -73.448668, - 45.571794 - ], - [ - -73.449152, - 45.570638 - ], - [ - -73.449223, - 45.570544 - ], - [ - -73.449264, - 45.570454 - ], - [ - -73.449543, - 45.569814 - ], - [ - -73.449722, - 45.56941 - ], - [ - -73.449947, - 45.568902 - ], - [ - -73.449982, - 45.56883 - ], - [ - -73.450051, - 45.568681 - ], - [ - -73.450055, - 45.568672 - ], - [ - -73.450057, - 45.568668 - ], - [ - -73.450059, - 45.568663 - ], - [ - -73.450061, - 45.568659 - ], - [ - -73.450063, - 45.568654 - ], - [ - -73.450065, - 45.56865 - ], - [ - -73.450067, - 45.568645 - ], - [ - -73.450069, - 45.568641 - ], - [ - -73.450071, - 45.568636 - ], - [ - -73.450072, - 45.568632 - ], - [ - -73.450074, - 45.568627 - ], - [ - -73.450076, - 45.568623 - ], - [ - -73.450078, - 45.568618 - ], - [ - -73.45008, - 45.568618 - ], - [ - -73.450082, - 45.568614 - ], - [ - -73.450084, - 45.568609 - ], - [ - -73.450086, - 45.568605 - ], - [ - -73.450087, - 45.5686 - ], - [ - -73.450089, - 45.568596 - ], - [ - -73.450091, - 45.568591 - ], - [ - -73.450093, - 45.568587 - ], - [ - -73.450095, - 45.568582 - ], - [ - -73.450097, - 45.568578 - ], - [ - -73.450099, - 45.568573 - ], - [ - -73.450101, - 45.568569 - ], - [ - -73.450102, - 45.568564 - ], - [ - -73.450104, - 45.56856 - ], - [ - -73.450106, - 45.568555 - ], - [ - -73.450108, - 45.568551 - ], - [ - -73.45011, - 45.568546 - ], - [ - -73.450112, - 45.568542 - ], - [ - -73.450114, - 45.568537 - ], - [ - -73.450115, - 45.568533 - ], - [ - -73.450117, - 45.568528 - ], - [ - -73.450119, - 45.568524 - ], - [ - -73.45012, - 45.568519 - ], - [ - -73.450122, - 45.568519 - ], - [ - -73.450124, - 45.568515 - ], - [ - -73.450126, - 45.56851 - ], - [ - -73.450128, - 45.568506 - ], - [ - -73.450129, - 45.568501 - ], - [ - -73.450131, - 45.568497 - ], - [ - -73.450132, - 45.568494 - ], - [ - -73.450133, - 45.568492 - ], - [ - -73.450134, - 45.568488 - ], - [ - -73.450136, - 45.568483 - ], - [ - -73.450138, - 45.568479 - ], - [ - -73.45014, - 45.568474 - ], - [ - -73.450141, - 45.56847 - ], - [ - -73.450143, - 45.568465 - ], - [ - -73.450145, - 45.568461 - ], - [ - -73.450146, - 45.568456 - ], - [ - -73.450148, - 45.568452 - ], - [ - -73.45015, - 45.568447 - ], - [ - -73.450151, - 45.568443 - ], - [ - -73.450153, - 45.568438 - ], - [ - -73.450154, - 45.568434 - ], - [ - -73.450156, - 45.568429 - ], - [ - -73.450158, - 45.568425 - ], - [ - -73.45016, - 45.56842 - ], - [ - -73.450161, - 45.568416 - ], - [ - -73.450163, - 45.568411 - ], - [ - -73.450164, - 45.568407 - ], - [ - -73.450166, - 45.568402 - ], - [ - -73.450168, - 45.568398 - ], - [ - -73.450169, - 45.568393 - ], - [ - -73.450171, - 45.568393 - ], - [ - -73.450173, - 45.568389 - ], - [ - -73.450174, - 45.568384 - ], - [ - -73.450175, - 45.56838 - ], - [ - -73.450177, - 45.568375 - ], - [ - -73.450179, - 45.568371 - ], - [ - -73.45018, - 45.568366 - ], - [ - -73.450182, - 45.568362 - ], - [ - -73.450183, - 45.568357 - ], - [ - -73.450185, - 45.568353 - ], - [ - -73.450186, - 45.568348 - ], - [ - -73.450188, - 45.568344 - ], - [ - -73.450189, - 45.568339 - ], - [ - -73.450191, - 45.568335 - ], - [ - -73.450192, - 45.56833 - ], - [ - -73.450194, - 45.568326 - ], - [ - -73.450195, - 45.568321 - ], - [ - -73.450197, - 45.568317 - ], - [ - -73.450198, - 45.568312 - ], - [ - -73.4502, - 45.568308 - ], - [ - -73.450201, - 45.568303 - ], - [ - -73.450203, - 45.568299 - ], - [ - -73.450204, - 45.568294 - ], - [ - -73.450205, - 45.56829 - ], - [ - -73.450207, - 45.568285 - ], - [ - -73.450208, - 45.568281 - ], - [ - -73.45021, - 45.568276 - ], - [ - -73.450211, - 45.568272 - ], - [ - -73.450213, - 45.568267 - ], - [ - -73.450214, - 45.568263 - ], - [ - -73.450215, - 45.568258 - ], - [ - -73.450217, - 45.568254 - ], - [ - -73.450218, - 45.568249 - ], - [ - -73.450219, - 45.568245 - ], - [ - -73.450221, - 45.56824 - ], - [ - -73.450222, - 45.568236 - ], - [ - -73.450224, - 45.568231 - ], - [ - -73.450225, - 45.568227 - ], - [ - -73.450226, - 45.568227 - ], - [ - -73.450228, - 45.568222 - ], - [ - -73.450229, - 45.568218 - ], - [ - -73.45023, - 45.568213 - ], - [ - -73.450232, - 45.568209 - ], - [ - -73.450233, - 45.568204 - ], - [ - -73.450234, - 45.5682 - ], - [ - -73.450236, - 45.568195 - ], - [ - -73.450237, - 45.568191 - ], - [ - -73.450238, - 45.568186 - ], - [ - -73.45024, - 45.568182 - ], - [ - -73.450241, - 45.568177 - ], - [ - -73.450242, - 45.568173 - ], - [ - -73.450244, - 45.568168 - ], - [ - -73.450245, - 45.568164 - ], - [ - -73.450246, - 45.568159 - ], - [ - -73.450247, - 45.568155 - ], - [ - -73.450248, - 45.56815 - ], - [ - -73.45025, - 45.568146 - ], - [ - -73.450251, - 45.568141 - ], - [ - -73.450252, - 45.568137 - ], - [ - -73.450253, - 45.568132 - ], - [ - -73.450254, - 45.568128 - ], - [ - -73.450256, - 45.568123 - ], - [ - -73.450257, - 45.568119 - ], - [ - -73.450258, - 45.568114 - ], - [ - -73.450259, - 45.56811 - ], - [ - -73.45026, - 45.568105 - ], - [ - -73.450262, - 45.568101 - ], - [ - -73.450263, - 45.568096 - ], - [ - -73.450264, - 45.568092 - ], - [ - -73.450265, - 45.568088 - ], - [ - -73.450266, - 45.568083 - ], - [ - -73.450267, - 45.568079 - ], - [ - -73.450268, - 45.568074 - ], - [ - -73.45027, - 45.56807 - ], - [ - -73.450271, - 45.568065 - ], - [ - -73.450272, - 45.568061 - ], - [ - -73.450273, - 45.568056 - ], - [ - -73.450274, - 45.568052 - ], - [ - -73.450275, - 45.568047 - ], - [ - -73.450277, - 45.568043 - ], - [ - -73.450277, - 45.568038 - ], - [ - -73.450279, - 45.568034 - ], - [ - -73.45028, - 45.568029 - ], - [ - -73.450281, - 45.568025 - ], - [ - -73.450282, - 45.56802 - ], - [ - -73.450283, - 45.568016 - ], - [ - -73.450284, - 45.568011 - ], - [ - -73.450285, - 45.568007 - ], - [ - -73.450286, - 45.568002 - ], - [ - -73.450287, - 45.567998 - ], - [ - -73.450288, - 45.567993 - ], - [ - -73.450289, - 45.567989 - ], - [ - -73.45029, - 45.567984 - ], - [ - -73.450291, - 45.56798 - ], - [ - -73.450292, - 45.567975 - ], - [ - -73.450293, - 45.567971 - ], - [ - -73.450294, - 45.567966 - ], - [ - -73.450295, - 45.567962 - ], - [ - -73.450296, - 45.567957 - ], - [ - -73.450297, - 45.567957 - ], - [ - -73.450298, - 45.567953 - ], - [ - -73.450299, - 45.567948 - ], - [ - -73.4503, - 45.567944 - ], - [ - -73.450301, - 45.567939 - ], - [ - -73.450301, - 45.567935 - ], - [ - -73.450302, - 45.56793 - ], - [ - -73.450303, - 45.567926 - ], - [ - -73.450304, - 45.567921 - ], - [ - -73.450305, - 45.567917 - ], - [ - -73.450306, - 45.567912 - ], - [ - -73.450307, - 45.567908 - ], - [ - -73.450308, - 45.567903 - ], - [ - -73.450309, - 45.567899 - ], - [ - -73.450309, - 45.567894 - ], - [ - -73.45031, - 45.56789 - ], - [ - -73.450311, - 45.567885 - ], - [ - -73.450312, - 45.567881 - ], - [ - -73.450313, - 45.567876 - ], - [ - -73.450314, - 45.567872 - ], - [ - -73.450315, - 45.567867 - ], - [ - -73.450316, - 45.567863 - ], - [ - -73.450316, - 45.567858 - ], - [ - -73.450317, - 45.567854 - ], - [ - -73.450318, - 45.567849 - ], - [ - -73.450319, - 45.567845 - ], - [ - -73.45032, - 45.56784 - ], - [ - -73.45032, - 45.567836 - ], - [ - -73.450321, - 45.567831 - ], - [ - -73.450322, - 45.567827 - ], - [ - -73.450323, - 45.567822 - ], - [ - -73.450324, - 45.567818 - ], - [ - -73.450324, - 45.567813 - ], - [ - -73.450325, - 45.567809 - ], - [ - -73.450326, - 45.567804 - ], - [ - -73.450326, - 45.5678 - ], - [ - -73.450327, - 45.567795 - ], - [ - -73.450328, - 45.567791 - ], - [ - -73.450329, - 45.567786 - ], - [ - -73.450329, - 45.567782 - ], - [ - -73.45033, - 45.567777 - ], - [ - -73.450331, - 45.567773 - ], - [ - -73.450332, - 45.567768 - ], - [ - -73.450332, - 45.567764 - ], - [ - -73.450333, - 45.567759 - ], - [ - -73.450334, - 45.567755 - ], - [ - -73.450334, - 45.56775 - ], - [ - -73.450335, - 45.567746 - ], - [ - -73.450336, - 45.567741 - ], - [ - -73.450336, - 45.567737 - ], - [ - -73.450337, - 45.567732 - ], - [ - -73.450337, - 45.567728 - ], - [ - -73.450338, - 45.567723 - ], - [ - -73.450339, - 45.567719 - ], - [ - -73.450339, - 45.567714 - ], - [ - -73.45034, - 45.56771 - ], - [ - -73.45034, - 45.567705 - ], - [ - -73.450341, - 45.567701 - ], - [ - -73.450342, - 45.567696 - ], - [ - -73.450342, - 45.567692 - ], - [ - -73.450343, - 45.567687 - ], - [ - -73.450343, - 45.567683 - ], - [ - -73.450344, - 45.567678 - ], - [ - -73.450345, - 45.567674 - ], - [ - -73.450345, - 45.567669 - ], - [ - -73.450346, - 45.567665 - ], - [ - -73.450346, - 45.56766 - ], - [ - -73.450347, - 45.567656 - ], - [ - -73.450347, - 45.567651 - ], - [ - -73.450348, - 45.567647 - ], - [ - -73.450348, - 45.567642 - ], - [ - -73.450349, - 45.567638 - ], - [ - -73.450349, - 45.567633 - ], - [ - -73.45035, - 45.567629 - ], - [ - -73.45035, - 45.567624 - ], - [ - -73.450351, - 45.56762 - ], - [ - -73.450351, - 45.567615 - ], - [ - -73.450352, - 45.567611 - ], - [ - -73.450352, - 45.567606 - ], - [ - -73.450353, - 45.567602 - ], - [ - -73.450353, - 45.567597 - ], - [ - -73.450353, - 45.567593 - ], - [ - -73.450354, - 45.567588 - ], - [ - -73.450355, - 45.567584 - ], - [ - -73.450355, - 45.567579 - ], - [ - -73.450355, - 45.567575 - ], - [ - -73.450356, - 45.56757 - ], - [ - -73.450356, - 45.567566 - ], - [ - -73.450357, - 45.567561 - ], - [ - -73.450357, - 45.567557 - ], - [ - -73.450357, - 45.567552 - ], - [ - -73.45036, - 45.567548 - ], - [ - -73.450379, - 45.567047 - ], - [ - -73.450434, - 45.565568 - ], - [ - -73.450434, - 45.565564 - ], - [ - -73.450469, - 45.564632 - ], - [ - -73.450501, - 45.563818 - ], - [ - -73.450514, - 45.563467 - ], - [ - -73.450527, - 45.563066 - ], - [ - -73.450546, - 45.562441 - ], - [ - -73.450541, - 45.561888 - ], - [ - -73.450523, - 45.561676 - ], - [ - -73.450494, - 45.561271 - ], - [ - -73.4504, - 45.560547 - ], - [ - -73.450322, - 45.559971 - ], - [ - -73.450252, - 45.559679 - ], - [ - -73.449741, - 45.555875 - ], - [ - -73.449726, - 45.555769 - ], - [ - -73.449715, - 45.555674 - ], - [ - -73.4497, - 45.555533 - ], - [ - -73.449606, - 45.554861 - ], - [ - -73.449515, - 45.554197 - ], - [ - -73.44943, - 45.553558 - ], - [ - -73.449359, - 45.55301 - ], - [ - -73.449348, - 45.552926 - ], - [ - -73.449275, - 45.55238 - ], - [ - -73.449201, - 45.551875 - ], - [ - -73.449191, - 45.551808 - ], - [ - -73.449191, - 45.551792 - ], - [ - -73.44919, - 45.551706 - ], - [ - -73.44919, - 45.551642 - ], - [ - -73.449198, - 45.551397 - ], - [ - -73.449202, - 45.551292 - ], - [ - -73.449207, - 45.551245 - ], - [ - -73.449234, - 45.550967 - ], - [ - -73.449323, - 45.550515 - ], - [ - -73.449468, - 45.550071 - ], - [ - -73.449599, - 45.549777 - ], - [ - -73.449826, - 45.549339 - ], - [ - -73.449967, - 45.549124 - ], - [ - -73.450285, - 45.548711 - ], - [ - -73.450533, - 45.54844 - ], - [ - -73.450894, - 45.548098 - ], - [ - -73.451191, - 45.547866 - ], - [ - -73.45159, - 45.547572 - ], - [ - -73.451911, - 45.547356 - ], - [ - -73.452114, - 45.54723 - ], - [ - -73.452185, - 45.547185 - ], - [ - -73.452243, - 45.547149 - ], - [ - -73.452859, - 45.546749 - ], - [ - -73.452912, - 45.546715 - ], - [ - -73.453255, - 45.546529 - ], - [ - -73.453306, - 45.546494 - ], - [ - -73.45375, - 45.546193 - ], - [ - -73.454098, - 45.545958 - ], - [ - -73.454398, - 45.545758 - ], - [ - -73.454536, - 45.545665 - ], - [ - -73.454687, - 45.545566 - ], - [ - -73.454901, - 45.545427 - ], - [ - -73.455048, - 45.545333 - ], - [ - -73.455094, - 45.545301 - ], - [ - -73.455158, - 45.545252 - ], - [ - -73.455247, - 45.545184 - ], - [ - -73.455332, - 45.545094 - ], - [ - -73.455461, - 45.54495 - ], - [ - -73.455559, - 45.544829 - ], - [ - -73.455739, - 45.544361 - ], - [ - -73.455815, - 45.543632 - ], - [ - -73.455926, - 45.54295 - ], - [ - -73.455948, - 45.542813 - ], - [ - -73.455971, - 45.542683 - ], - [ - -73.456034, - 45.542341 - ], - [ - -73.456127, - 45.541828 - ], - [ - -73.45622, - 45.541171 - ], - [ - -73.456328, - 45.540494 - ], - [ - -73.456345, - 45.540384 - ], - [ - -73.456347, - 45.540366 - ], - [ - -73.456509, - 45.539394 - ], - [ - -73.456509, - 45.539219 - ], - [ - -73.456656, - 45.5384 - ], - [ - -73.456667, - 45.538348 - ], - [ - -73.456674, - 45.53831 - ], - [ - -73.456716, - 45.53818 - ], - [ - -73.456753, - 45.538063 - ], - [ - -73.456485, - 45.538022 - ], - [ - -73.456186, - 45.537982 - ], - [ - -73.455479, - 45.537887 - ], - [ - -73.455036, - 45.537828 - ], - [ - -73.454083, - 45.537706 - ], - [ - -73.453257, - 45.537601 - ], - [ - -73.453056, - 45.537575 - ], - [ - -73.45293, - 45.537571 - ], - [ - -73.452702, - 45.537575 - ], - [ - -73.452033, - 45.537615 - ], - [ - -73.45161, - 45.537656 - ], - [ - -73.451409, - 45.537665 - ], - [ - -73.451204, - 45.537642 - ], - [ - -73.451019, - 45.537606 - ], - [ - -73.450864, - 45.537552 - ], - [ - -73.450804, - 45.537525 - ], - [ - -73.450674, - 45.537466 - ], - [ - -73.449848, - 45.536971 - ], - [ - -73.449131, - 45.536546 - ], - [ - -73.449006, - 45.536471 - ], - [ - -73.448626, - 45.536264 - ], - [ - -73.448357, - 45.536192 - ], - [ - -73.447442, - 45.535976 - ], - [ - -73.447213, - 45.535913 - ], - [ - -73.447099, - 45.535867 - ], - [ - -73.446936, - 45.5358 - ], - [ - -73.446746, - 45.535696 - ], - [ - -73.446514, - 45.535527 - ], - [ - -73.446498, - 45.535516 - ], - [ - -73.446412, - 45.535444 - ], - [ - -73.446305, - 45.535359 - ], - [ - -73.446216, - 45.535273 - ], - [ - -73.445977, - 45.535035 - ], - [ - -73.44579, - 45.534868 - ], - [ - -73.445666, - 45.534784 - ], - [ - -73.445571, - 45.534719 - ], - [ - -73.445347, - 45.534582 - ], - [ - -73.445234, - 45.534512 - ], - [ - -73.445013, - 45.5344 - ], - [ - -73.444564, - 45.534238 - ], - [ - -73.444191, - 45.534117 - ], - [ - -73.444179, - 45.534113 - ], - [ - -73.444063, - 45.534075 - ], - [ - -73.443132, - 45.533854 - ], - [ - -73.443002, - 45.533823 - ], - [ - -73.442012, - 45.533579 - ], - [ - -73.441709, - 45.533503 - ], - [ - -73.441658, - 45.533491 - ], - [ - -73.441128, - 45.533365 - ], - [ - -73.440969, - 45.533327 - ], - [ - -73.439556, - 45.532972 - ], - [ - -73.439448, - 45.532945 - ], - [ - -73.439309, - 45.532912 - ], - [ - -73.440132, - 45.531024 - ], - [ - -73.440178, - 45.530918 - ], - [ - -73.440526, - 45.530139 - ], - [ - -73.440978, - 45.529128 - ], - [ - -73.441026, - 45.529021 - ], - [ - -73.441195, - 45.528603 - ], - [ - -73.441684, - 45.527503 - ], - [ - -73.441723, - 45.527415 - ], - [ - -73.442111, - 45.526543 - ], - [ - -73.442305, - 45.526133 - ], - [ - -73.442765, - 45.52521 - ], - [ - -73.442852, - 45.525036 - ], - [ - -73.442951, - 45.524869 - ], - [ - -73.442817, - 45.524838 - ], - [ - -73.442553, - 45.524773 - ], - [ - -73.442166, - 45.524677 - ], - [ - -73.442013, - 45.52464 - ], - [ - -73.441281, - 45.524441 - ], - [ - -73.44044, - 45.524202 - ], - [ - -73.43954, - 45.523947 - ], - [ - -73.439387, - 45.523905 - ], - [ - -73.437964, - 45.523516 - ], - [ - -73.433955, - 45.522417 - ], - [ - -73.433902, - 45.522403 - ], - [ - -73.433776, - 45.522369 - ], - [ - -73.434834, - 45.520403 - ], - [ - -73.435201, - 45.519599 - ], - [ - -73.435202, - 45.519597 - ], - [ - -73.435724, - 45.518588 - ], - [ - -73.43574, - 45.518567 - ], - [ - -73.435791, - 45.518454 - ], - [ - -73.435822, - 45.518391 - ], - [ - -73.435887, - 45.518256 - ], - [ - -73.435949, - 45.51813 - ], - [ - -73.4363, - 45.517415 - ], - [ - -73.4365, - 45.51701 - ], - [ - -73.436814, - 45.516369 - ], - [ - -73.436861, - 45.516273 - ], - [ - -73.436872, - 45.51625 - ], - [ - -73.436978, - 45.516111 - ], - [ - -73.437553, - 45.514946 - ], - [ - -73.437763, - 45.514573 - ], - [ - -73.438009, - 45.514226 - ], - [ - -73.438176, - 45.514015 - ], - [ - -73.439339, - 45.512657 - ], - [ - -73.43972, - 45.512185 - ], - [ - -73.439816, - 45.512059 - ], - [ - -73.439896, - 45.511951 - ], - [ - -73.440007, - 45.511874 - ], - [ - -73.439905, - 45.511834 - ], - [ - -73.439831, - 45.511802 - ], - [ - -73.439673, - 45.511736 - ], - [ - -73.439067, - 45.511482 - ], - [ - -73.438504, - 45.511225 - ], - [ - -73.438299, - 45.511131 - ], - [ - -73.438017, - 45.511 - ], - [ - -73.437245, - 45.510635 - ], - [ - -73.436246, - 45.510195 - ], - [ - -73.435988, - 45.510081 - ], - [ - -73.436033, - 45.510025 - ], - [ - -73.436129, - 45.50969 - ], - [ - -73.436544, - 45.509074 - ], - [ - -73.43661, - 45.508973 - ], - [ - -73.43684, - 45.508625 - ], - [ - -73.436961, - 45.508464 - ], - [ - -73.437112, - 45.508263 - ], - [ - -73.437063, - 45.508175 - ], - [ - -73.436878, - 45.508088 - ], - [ - -73.436552, - 45.508131 - ] - ] - }, - "id": 67, - "properties": { - "id": "18b44f9d-7122-4090-94d2-581b70bdfcd8", - "data": { - "gtfs": { - "shape_id": "22_2_A" - }, - "segments": [ - { - "distanceMeters": 1265, - "travelTimeSeconds": 227 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 803, - "travelTimeSeconds": 169 - }, - { - "distanceMeters": 447, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 586, - "travelTimeSeconds": 126 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 374, - "travelTimeSeconds": 90 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 195, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 374, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 459, - "travelTimeSeconds": 98 - }, - { - "distanceMeters": 497, - "travelTimeSeconds": 107 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 699, - "travelTimeSeconds": 185 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 138 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 210, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9992, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7260.781792463753, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 4.76, - "travelTimeWithoutDwellTimesSeconds": 2100, - "operatingTimeWithLayoverTimeSeconds": 2310, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2100, - "operatingSpeedWithLayoverMetersPerSecond": 4.33, - "averageSpeedWithoutDwellTimesMetersPerSecond": 4.76 - }, - "mode": "bus", - "name": "Gare St-Hubert", - "color": "#A32638", - "nodes": [ - "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "ae6e0f03-aee3-4f3b-9a79-98bb90a35a7a", - "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "911acdc7-e82a-4bb1-aecd-7f8fbf39cc16", - "50e25e6e-b3a0-49ca-b0a6-22261b688cbf", - "b66a9525-9dd9-49fa-b088-bde983b8c260", - "95cc31bb-b82e-4ab9-921f-e5a8cd8454c3", - "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", - "19d70945-d3db-430f-90e2-ad67901fda8d", - "f8690123-add8-4e85-bbf6-f84c4b712589", - "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", - "fce7a113-2e0c-4a0f-922a-957670252ea1", - "e5c2d9f4-1be6-458f-854f-8103a3048b8c", - "231dda72-d4b5-48ae-b714-5ce9d3802c45", - "25a5f82a-36a7-4a52-af2b-32a681f87765", - "8b3a553d-dad5-41ff-b228-80f338c4b0e0", - "210e532b-2acc-4a3e-b173-3471add098b1", - "576ef8c5-693c-4ae9-bb41-68685f43e174", - "2dda318d-8bf9-4860-b60d-6fcb1dd29156", - "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", - "de69f95c-e485-42da-bcac-5eeb8a8928ad", - "e36c087c-d78e-48bb-9430-6af9d10493cf", - "f902a061-c5e9-4964-8e41-eba87bfc63fc", - "3d39c5de-3cd5-4fd7-925f-37e3d32bd66c", - "9b519782-0187-4aff-8d16-ed5c874d6b88", - "f1517eba-215d-4b2a-b591-160be878e090", - "64e79ef5-e499-4b0b-96e8-a047e210960b", - "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", - "686bdc34-3602-4c31-b05f-c41f9ebe2543", - "4f05d74f-7126-4527-951d-20bf28624a4f" - ], - "stops": [], - "line_id": "f1b96778-f611-40e8-a471-573c5b50a7c2", - "segments": [ - 0, - 81, - 296, - 298, - 302, - 310, - 320, - 340, - 349, - 362, - 368, - 380, - 383, - 393, - 396, - 405, - 418, - 426, - 429, - 431, - 434, - 437, - 446, - 451, - 454, - 463, - 467, - 484, - 488 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 67, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.436552, - 45.508131 - ], - [ - -73.436473, - 45.508141 - ], - [ - -73.436513, - 45.508362 - ], - [ - -73.436801, - 45.508362 - ], - [ - -73.436893, - 45.508412 - ], - [ - -73.436961, - 45.508464 - ], - [ - -73.43684, - 45.508625 - ], - [ - -73.43661, - 45.508973 - ], - [ - -73.436544, - 45.509074 - ], - [ - -73.436129, - 45.50969 - ], - [ - -73.435854, - 45.510023 - ], - [ - -73.435758, - 45.510131 - ], - [ - -73.435893, - 45.510189 - ], - [ - -73.43661, - 45.510502 - ], - [ - -73.437183, - 45.510752 - ], - [ - -73.437938, - 45.511081 - ], - [ - -73.438224, - 45.511212 - ], - [ - -73.438503, - 45.511338 - ], - [ - -73.439008, - 45.511568 - ], - [ - -73.439448, - 45.511755 - ], - [ - -73.439738, - 45.511879 - ], - [ - -73.439633, - 45.511969 - ], - [ - -73.439566, - 45.512048 - ], - [ - -73.439125, - 45.512567 - ], - [ - -73.43894, - 45.512783 - ], - [ - -73.43879, - 45.512958 - ], - [ - -73.438197, - 45.51365 - ], - [ - -73.437958, - 45.513929 - ], - [ - -73.437794, - 45.51415 - ], - [ - -73.437544, - 45.5145 - ], - [ - -73.437328, - 45.514887 - ], - [ - -73.437139, - 45.515265 - ], - [ - -73.437121, - 45.5153 - ], - [ - -73.436728, - 45.516082 - ], - [ - -73.43672, - 45.516097 - ], - [ - -73.436655, - 45.516223 - ], - [ - -73.436309, - 45.516965 - ], - [ - -73.435853, - 45.517895 - ], - [ - -73.435632, - 45.518345 - ], - [ - -73.435603, - 45.518405 - ], - [ - -73.435539, - 45.518504 - ], - [ - -73.435371, - 45.518796 - ], - [ - -73.435201, - 45.519129 - ], - [ - -73.435196, - 45.519145 - ], - [ - -73.43516, - 45.519282 - ], - [ - -73.435146, - 45.519309 - ], - [ - -73.435066, - 45.519471 - ], - [ - -73.435022, - 45.51956 - ], - [ - -73.43465, - 45.520316 - ], - [ - -73.434436, - 45.520748 - ], - [ - -73.434255, - 45.52111 - ], - [ - -73.434209, - 45.521203 - ], - [ - -73.434057, - 45.521508 - ], - [ - -73.43365, - 45.522336 - ], - [ - -73.433608, - 45.522421 - ], - [ - -73.433569, - 45.522502 - ], - [ - -73.433656, - 45.522523 - ], - [ - -73.433693, - 45.522535 - ], - [ - -73.433807, - 45.522565 - ], - [ - -73.433875, - 45.522583 - ], - [ - -73.4341, - 45.522646 - ], - [ - -73.434335, - 45.522711 - ], - [ - -73.437851, - 45.523688 - ], - [ - -73.438325, - 45.523813 - ], - [ - -73.439258, - 45.52406 - ], - [ - -73.439451, - 45.524111 - ], - [ - -73.440412, - 45.524373 - ], - [ - -73.44186, - 45.52477 - ], - [ - -73.442618, - 45.524976 - ], - [ - -73.442704, - 45.525 - ], - [ - -73.442158, - 45.526102 - ], - [ - -73.441619, - 45.527302 - ], - [ - -73.441616, - 45.527307 - ], - [ - -73.441581, - 45.527384 - ], - [ - -73.441254, - 45.528072 - ], - [ - -73.4409, - 45.528915 - ], - [ - -73.440869, - 45.52899 - ], - [ - -73.44038, - 45.530083 - ], - [ - -73.440366, - 45.530114 - ], - [ - -73.440274, - 45.530321 - ], - [ - -73.440067, - 45.530785 - ], - [ - -73.440025, - 45.53088 - ], - [ - -73.439543, - 45.531958 - ], - [ - -73.439477, - 45.532116 - ], - [ - -73.439416, - 45.532259 - ], - [ - -73.439159, - 45.532867 - ], - [ - -73.439121, - 45.532958 - ], - [ - -73.439267, - 45.532996 - ], - [ - -73.439566, - 45.533079 - ], - [ - -73.440814, - 45.533412 - ], - [ - -73.440917, - 45.533439 - ], - [ - -73.441654, - 45.533615 - ], - [ - -73.441957, - 45.533692 - ], - [ - -73.44295, - 45.533944 - ], - [ - -73.443077, - 45.533976 - ], - [ - -73.443885, - 45.534176 - ], - [ - -73.443989, - 45.534201 - ], - [ - -73.444489, - 45.534346 - ], - [ - -73.444931, - 45.53453 - ], - [ - -73.445118, - 45.534611 - ], - [ - -73.445446, - 45.534818 - ], - [ - -73.445653, - 45.534958 - ], - [ - -73.445829, - 45.535111 - ], - [ - -73.446022, - 45.535295 - ], - [ - -73.446079, - 45.535349 - ], - [ - -73.44617, - 45.535435 - ], - [ - -73.446275, - 45.535528 - ], - [ - -73.446362, - 45.535606 - ], - [ - -73.446623, - 45.535795 - ], - [ - -73.446833, - 45.535908 - ], - [ - -73.447009, - 45.53598 - ], - [ - -73.447135, - 45.536029 - ], - [ - -73.447379, - 45.536097 - ], - [ - -73.448323, - 45.536304 - ], - [ - -73.448623, - 45.536399 - ], - [ - -73.448792, - 45.536499 - ], - [ - -73.448898, - 45.536561 - ], - [ - -73.450403, - 45.537461 - ], - [ - -73.450563, - 45.537556 - ], - [ - -73.450772, - 45.537669 - ], - [ - -73.450923, - 45.537718 - ], - [ - -73.450952, - 45.537727 - ], - [ - -73.451166, - 45.537772 - ], - [ - -73.451401, - 45.537795 - ], - [ - -73.451627, - 45.537786 - ], - [ - -73.452059, - 45.537741 - ], - [ - -73.452711, - 45.537692 - ], - [ - -73.45289, - 45.537696 - ], - [ - -73.452931, - 45.537697 - ], - [ - -73.453038, - 45.53771 - ], - [ - -73.454051, - 45.537823 - ], - [ - -73.455005, - 45.537945 - ], - [ - -73.456338, - 45.538129 - ], - [ - -73.456445, - 45.538144 - ], - [ - -73.456368, - 45.53848 - ], - [ - -73.456357, - 45.53853 - ], - [ - -73.456221, - 45.539372 - ], - [ - -73.456144, - 45.539984 - ], - [ - -73.456089, - 45.54029 - ], - [ - -73.456076, - 45.540361 - ], - [ - -73.455916, - 45.541266 - ], - [ - -73.455868, - 45.541584 - ], - [ - -73.455834, - 45.54181 - ], - [ - -73.455702, - 45.542678 - ], - [ - -73.455523, - 45.543849 - ], - [ - -73.455509, - 45.543938 - ], - [ - -73.455433, - 45.54441 - ], - [ - -73.455289, - 45.544748 - ], - [ - -73.455178, - 45.54491 - ], - [ - -73.455067, - 45.545031 - ], - [ - -73.454985, - 45.545117 - ], - [ - -73.45488, - 45.545202 - ], - [ - -73.454712, - 45.545301 - ], - [ - -73.454645, - 45.545349 - ], - [ - -73.454517, - 45.54544 - ], - [ - -73.454362, - 45.54553 - ], - [ - -73.454039, - 45.545719 - ], - [ - -73.453554, - 45.546052 - ], - [ - -73.453387, - 45.546196 - ], - [ - -73.453186, - 45.546448 - ], - [ - -73.45304, - 45.546592 - ], - [ - -73.452912, - 45.546715 - ], - [ - -73.452859, - 45.546749 - ], - [ - -73.452375, - 45.547064 - ], - [ - -73.452243, - 45.547149 - ], - [ - -73.452185, - 45.547185 - ], - [ - -73.451911, - 45.547356 - ], - [ - -73.45159, - 45.547572 - ], - [ - -73.451191, - 45.547866 - ], - [ - -73.450894, - 45.548098 - ], - [ - -73.450533, - 45.54844 - ], - [ - -73.450285, - 45.548711 - ], - [ - -73.449967, - 45.549124 - ], - [ - -73.449826, - 45.549339 - ], - [ - -73.449599, - 45.549777 - ], - [ - -73.449468, - 45.550071 - ], - [ - -73.449323, - 45.550515 - ], - [ - -73.449234, - 45.550967 - ], - [ - -73.449207, - 45.551245 - ], - [ - -73.449202, - 45.551292 - ], - [ - -73.449198, - 45.551397 - ], - [ - -73.44919, - 45.55162 - ], - [ - -73.44919, - 45.551642 - ], - [ - -73.44919, - 45.551706 - ], - [ - -73.449191, - 45.551792 - ], - [ - -73.449191, - 45.551808 - ], - [ - -73.449275, - 45.55238 - ], - [ - -73.449348, - 45.552926 - ], - [ - -73.449359, - 45.55301 - ], - [ - -73.44943, - 45.553558 - ], - [ - -73.449515, - 45.554197 - ], - [ - -73.449606, - 45.554861 - ], - [ - -73.4497, - 45.555533 - ], - [ - -73.449702, - 45.555549 - ], - [ - -73.449715, - 45.555674 - ], - [ - -73.449726, - 45.555769 - ], - [ - -73.450252, - 45.559679 - ], - [ - -73.450243, - 45.559863 - ], - [ - -73.450225, - 45.560074 - ], - [ - -73.450265, - 45.560646 - ], - [ - -73.450329, - 45.561686 - ], - [ - -73.450329, - 45.561694 - ], - [ - -73.450326, - 45.561892 - ], - [ - -73.450315, - 45.562486 - ], - [ - -73.450301, - 45.562913 - ], - [ - -73.45028, - 45.563354 - ], - [ - -73.450273, - 45.563591 - ], - [ - -73.450265, - 45.563858 - ], - [ - -73.450253, - 45.564101 - ], - [ - -73.45024, - 45.564574 - ], - [ - -73.450203, - 45.565334 - ], - [ - -73.450199, - 45.565428 - ], - [ - -73.4502, - 45.565559 - ], - [ - -73.450143, - 45.566931 - ], - [ - -73.450122, - 45.567401 - ], - [ - -73.450115, - 45.567548 - ], - [ - -73.450114, - 45.567557 - ], - [ - -73.450113, - 45.567561 - ], - [ - -73.450112, - 45.56757 - ], - [ - -73.450111, - 45.567575 - ], - [ - -73.45011, - 45.567584 - ], - [ - -73.450109, - 45.567593 - ], - [ - -73.450108, - 45.567597 - ], - [ - -73.450107, - 45.567606 - ], - [ - -73.450106, - 45.567611 - ], - [ - -73.450105, - 45.56762 - ], - [ - -73.450104, - 45.567629 - ], - [ - -73.450103, - 45.567633 - ], - [ - -73.450102, - 45.567642 - ], - [ - -73.450101, - 45.567647 - ], - [ - -73.4501, - 45.567656 - ], - [ - -73.450099, - 45.56766 - ], - [ - -73.450098, - 45.567669 - ], - [ - -73.450097, - 45.567678 - ], - [ - -73.450096, - 45.567683 - ], - [ - -73.450095, - 45.567691 - ], - [ - -73.450093, - 45.567696 - ], - [ - -73.450092, - 45.567705 - ], - [ - -73.450091, - 45.567714 - ], - [ - -73.45009, - 45.567718 - ], - [ - -73.450089, - 45.567727 - ], - [ - -73.450088, - 45.567732 - ], - [ - -73.450087, - 45.567741 - ], - [ - -73.450085, - 45.56775 - ], - [ - -73.450084, - 45.567754 - ], - [ - -73.450083, - 45.567763 - ], - [ - -73.450082, - 45.567768 - ], - [ - -73.450081, - 45.567777 - ], - [ - -73.450079, - 45.567781 - ], - [ - -73.450078, - 45.56779 - ], - [ - -73.450077, - 45.567799 - ], - [ - -73.450075, - 45.567804 - ], - [ - -73.450074, - 45.567813 - ], - [ - -73.450073, - 45.567817 - ], - [ - -73.450071, - 45.567826 - ], - [ - -73.45007, - 45.567835 - ], - [ - -73.450069, - 45.56784 - ], - [ - -73.450067, - 45.567849 - ], - [ - -73.450066, - 45.567853 - ], - [ - -73.450065, - 45.567862 - ], - [ - -73.450063, - 45.567871 - ], - [ - -73.450062, - 45.567876 - ], - [ - -73.45006, - 45.567885 - ], - [ - -73.450059, - 45.567889 - ], - [ - -73.450058, - 45.567898 - ], - [ - -73.450056, - 45.567903 - ], - [ - -73.450055, - 45.567912 - ], - [ - -73.450054, - 45.567921 - ], - [ - -73.450052, - 45.567925 - ], - [ - -73.450051, - 45.567934 - ], - [ - -73.450049, - 45.567939 - ], - [ - -73.450048, - 45.567948 - ], - [ - -73.450046, - 45.567957 - ], - [ - -73.450045, - 45.567961 - ], - [ - -73.450043, - 45.56797 - ], - [ - -73.450042, - 45.567975 - ], - [ - -73.45004, - 45.567984 - ], - [ - -73.450039, - 45.567988 - ], - [ - -73.450037, - 45.567997 - ], - [ - -73.450036, - 45.568006 - ], - [ - -73.450034, - 45.568011 - ], - [ - -73.450032, - 45.56802 - ], - [ - -73.450031, - 45.568024 - ], - [ - -73.450029, - 45.568033 - ], - [ - -73.450028, - 45.568042 - ], - [ - -73.450026, - 45.568047 - ], - [ - -73.450024, - 45.568056 - ], - [ - -73.450023, - 45.56806 - ], - [ - -73.450021, - 45.568069 - ], - [ - -73.450019, - 45.568074 - ], - [ - -73.450017, - 45.568083 - ], - [ - -73.450016, - 45.568092 - ], - [ - -73.450014, - 45.568096 - ], - [ - -73.450013, - 45.568105 - ], - [ - -73.450011, - 45.56811 - ], - [ - -73.450009, - 45.568119 - ], - [ - -73.450007, - 45.568123 - ], - [ - -73.450006, - 45.568132 - ], - [ - -73.450004, - 45.568141 - ], - [ - -73.450002, - 45.568146 - ], - [ - -73.45, - 45.568155 - ], - [ - -73.449999, - 45.568159 - ], - [ - -73.449997, - 45.568168 - ], - [ - -73.449995, - 45.568173 - ], - [ - -73.449993, - 45.568182 - ], - [ - -73.449991, - 45.568191 - ], - [ - -73.449989, - 45.568195 - ], - [ - -73.449988, - 45.568204 - ], - [ - -73.449986, - 45.568209 - ], - [ - -73.449984, - 45.568218 - ], - [ - -73.449982, - 45.568227 - ], - [ - -73.44998, - 45.568231 - ], - [ - -73.449978, - 45.56824 - ], - [ - -73.449976, - 45.568245 - ], - [ - -73.449974, - 45.568254 - ], - [ - -73.449972, - 45.568258 - ], - [ - -73.44997, - 45.568267 - ], - [ - -73.449968, - 45.568276 - ], - [ - -73.449967, - 45.568281 - ], - [ - -73.449965, - 45.56829 - ], - [ - -73.449963, - 45.568294 - ], - [ - -73.449961, - 45.568303 - ], - [ - -73.449959, - 45.568308 - ], - [ - -73.449957, - 45.568317 - ], - [ - -73.449955, - 45.568326 - ], - [ - -73.449953, - 45.56833 - ], - [ - -73.449951, - 45.568339 - ], - [ - -73.449949, - 45.568344 - ], - [ - -73.449946, - 45.568353 - ], - [ - -73.449944, - 45.568357 - ], - [ - -73.449942, - 45.568366 - ], - [ - -73.44994, - 45.568371 - ], - [ - -73.449938, - 45.56838 - ], - [ - -73.449936, - 45.568389 - ], - [ - -73.449934, - 45.568393 - ], - [ - -73.449932, - 45.568402 - ], - [ - -73.44993, - 45.568407 - ], - [ - -73.449927, - 45.568416 - ], - [ - -73.449925, - 45.56842 - ], - [ - -73.449923, - 45.568429 - ], - [ - -73.449921, - 45.568438 - ], - [ - -73.449919, - 45.568443 - ], - [ - -73.449917, - 45.568452 - ], - [ - -73.449915, - 45.568456 - ], - [ - -73.449912, - 45.568465 - ], - [ - -73.44991, - 45.56847 - ], - [ - -73.449908, - 45.568479 - ], - [ - -73.449905, - 45.568488 - ], - [ - -73.449903, - 45.568492 - ], - [ - -73.449901, - 45.568501 - ], - [ - -73.449899, - 45.568506 - ], - [ - -73.449897, - 45.568515 - ], - [ - -73.449894, - 45.568519 - ], - [ - -73.449892, - 45.568528 - ], - [ - -73.449889, - 45.568533 - ], - [ - -73.449887, - 45.568542 - ], - [ - -73.449885, - 45.568551 - ], - [ - -73.449883, - 45.568555 - ], - [ - -73.44988, - 45.568564 - ], - [ - -73.449878, - 45.568569 - ], - [ - -73.449875, - 45.568578 - ], - [ - -73.449873, - 45.568582 - ], - [ - -73.44987, - 45.568591 - ], - [ - -73.449868, - 45.568596 - ], - [ - -73.449866, - 45.568605 - ], - [ - -73.449863, - 45.568614 - ], - [ - -73.449861, - 45.568618 - ], - [ - -73.449856, - 45.568632 - ], - [ - -73.449825, - 45.568708 - ], - [ - -73.449762, - 45.568861 - ], - [ - -73.449744, - 45.568903 - ], - [ - -73.449627, - 45.569176 - ], - [ - -73.449277, - 45.569995 - ], - [ - -73.449093, - 45.570413 - ], - [ - -73.449089, - 45.570422 - ], - [ - -73.44907, - 45.570467 - ], - [ - -73.449049, - 45.570517 - ], - [ - -73.448873, - 45.570917 - ], - [ - -73.448823, - 45.571034 - ], - [ - -73.448771, - 45.571163 - ], - [ - -73.44818, - 45.572625 - ], - [ - -73.447654, - 45.573778 - ], - [ - -73.447519, - 45.574084 - ], - [ - -73.447518, - 45.574088 - ], - [ - -73.447455, - 45.574133 - ], - [ - -73.447308, - 45.574407 - ], - [ - -73.447267, - 45.574466 - ], - [ - -73.447241, - 45.574497 - ], - [ - -73.447197, - 45.574529 - ], - [ - -73.447149, - 45.574547 - ], - [ - -73.447112, - 45.574556 - ], - [ - -73.447049, - 45.574565 - ], - [ - -73.446965, - 45.574569 - ], - [ - -73.446884, - 45.574565 - ], - [ - -73.446792, - 45.574547 - ], - [ - -73.446652, - 45.574511 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.443147, - 45.572802 - ], - [ - -73.443228, - 45.572879 - ], - [ - -73.443273, - 45.572955 - ], - [ - -73.443271, - 45.573 - ], - [ - -73.443276, - 45.573125 - ], - [ - -73.443281, - 45.573166 - ], - [ - -73.443386, - 45.57326 - ], - [ - -73.443502, - 45.573319 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.44468, - 45.573697 - ], - [ - -73.444697, - 45.573706 - ], - [ - -73.444729, - 45.573713 - ], - [ - -73.444769, - 45.573716 - ], - [ - -73.444831, - 45.573715 - ], - [ - -73.444884, - 45.573708 - ], - [ - -73.44491, - 45.573694 - ], - [ - -73.444911, - 45.573692 - ], - [ - -73.444953, - 45.573633 - ], - [ - -73.44492, - 45.573618 - ], - [ - -73.444872, - 45.573601 - ], - [ - -73.444829, - 45.573598 - ], - [ - -73.444749, - 45.573615 - ], - [ - -73.44471, - 45.573635 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.443539, - 45.573203 - ], - [ - -73.443522, - 45.573154 - ] - ] - }, - "id": 68, - "properties": { - "id": "c9a64ed7-cb39-4375-a0db-eeb691913c56", - "data": { - "gtfs": { - "shape_id": "22_2_R" - }, - "segments": [ - { - "distanceMeters": 531, - "travelTimeSeconds": 154 - }, - { - "distanceMeters": 87, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 552, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 412, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 440, - "travelTimeSeconds": 127 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 585, - "travelTimeSeconds": 107 - }, - { - "distanceMeters": 439, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 685, - "travelTimeSeconds": 126 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 1185, - "travelTimeSeconds": 221 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 198, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10185, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7260.781792463753, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.14, - "travelTimeWithoutDwellTimesSeconds": 1980, - "operatingTimeWithLayoverTimeSeconds": 2178, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1980, - "operatingSpeedWithLayoverMetersPerSecond": 4.68, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.14 - }, - "mode": "bus", - "name": "boul. Jacques-Cartier", - "color": "#A32638", - "nodes": [ - "4f05d74f-7126-4527-951d-20bf28624a4f", - "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", - "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", - "64e79ef5-e499-4b0b-96e8-a047e210960b", - "9a101899-eb7e-4980-897e-cfb842bca005", - "3d1e4353-a4d7-45de-bd72-c906526806e2", - "f8e89dfa-b651-418d-b1ab-5c9f2ffb0cf1", - "455644f9-4a24-446b-b548-a53bc406a4d8", - "3d39c5de-3cd5-4fd7-925f-37e3d32bd66c", - "5b35096e-2561-4a9f-8bf4-a3e7609358bf", - "e36c087c-d78e-48bb-9430-6af9d10493cf", - "de69f95c-e485-42da-bcac-5eeb8a8928ad", - "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", - "0e37f239-15e7-41c5-a31a-ce2ad3dc4eae", - "576ef8c5-693c-4ae9-bb41-68685f43e174", - "210e532b-2acc-4a3e-b173-3471add098b1", - "8b3a553d-dad5-41ff-b228-80f338c4b0e0", - "25a5f82a-36a7-4a52-af2b-32a681f87765", - "231dda72-d4b5-48ae-b714-5ce9d3802c45", - "e5c2d9f4-1be6-458f-854f-8103a3048b8c", - "f1d63efc-c02d-4bb9-828b-ddc2e062546b", - "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", - "6f622956-b7a2-452d-975a-9f37d3afce01", - "86d2a168-d8d6-4528-80ff-833432ddaf2d", - "c7d234f2-22e5-4459-8628-1d01e7ca4dc0", - "95cc31bb-b82e-4ab9-921f-e5a8cd8454c3", - "b66a9525-9dd9-49fa-b088-bde983b8c260", - "6d4dc817-4368-4ece-aeda-37df1213d699", - "bf606954-197a-4c94-b8d0-fda71ab755ca", - "804d8b1f-4ada-4e34-bf79-888a34e590ac", - "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", - "6672cb43-3241-42d7-b5c0-fdaed10338b9", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287" - ], - "stops": [], - "line_id": "f1b96778-f611-40e8-a471-573c5b50a7c2", - "segments": [ - 0, - 17, - 19, - 33, - 37, - 46, - 50, - 61, - 64, - 68, - 71, - 75, - 80, - 83, - 89, - 95, - 103, - 115, - 117, - 127, - 132, - 138, - 141, - 153, - 163, - 181, - 193, - 200, - 206, - 210, - 214, - 371, - 379 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 68, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.45068, - 45.545847 - ], - [ - -73.4506, - 45.545902 - ], - [ - -73.449968, - 45.546338 - ], - [ - -73.450891, - 45.547039 - ], - [ - -73.451416, - 45.547437 - ], - [ - -73.451967, - 45.547076 - ], - [ - -73.452008, - 45.547049 - ], - [ - -73.452061, - 45.547014 - ], - [ - -73.45163, - 45.546686 - ], - [ - -73.450733, - 45.546003 - ], - [ - -73.4506, - 45.545902 - ], - [ - -73.451253, - 45.545453 - ], - [ - -73.452335, - 45.544694 - ], - [ - -73.452491, - 45.544585 - ], - [ - -73.453722, - 45.543747 - ], - [ - -73.453772, - 45.543712 - ], - [ - -73.454376, - 45.543288 - ], - [ - -73.454754, - 45.543022 - ], - [ - -73.455166, - 45.542732 - ], - [ - -73.455282, - 45.54266 - ], - [ - -73.455702, - 45.542678 - ], - [ - -73.455971, - 45.542683 - ], - [ - -73.456034, - 45.542341 - ], - [ - -73.456127, - 45.541828 - ], - [ - -73.45622, - 45.541171 - ], - [ - -73.456331, - 45.540472 - ], - [ - -73.456345, - 45.540384 - ], - [ - -73.456347, - 45.540366 - ], - [ - -73.456509, - 45.539394 - ], - [ - -73.456509, - 45.539219 - ], - [ - -73.456656, - 45.5384 - ], - [ - -73.456667, - 45.538348 - ], - [ - -73.456667, - 45.538348 - ], - [ - -73.456674, - 45.53831 - ], - [ - -73.456716, - 45.53818 - ], - [ - -73.456753, - 45.538063 - ], - [ - -73.456906, - 45.537595 - ], - [ - -73.457034, - 45.537289 - ], - [ - -73.457312, - 45.536745 - ], - [ - -73.457525, - 45.536412 - ], - [ - -73.457657, - 45.536211 - ], - [ - -73.457717, - 45.536119 - ], - [ - -73.457866, - 45.535926 - ], - [ - -73.458063, - 45.535706 - ], - [ - -73.458203, - 45.535555 - ], - [ - -73.458206, - 45.535553 - ], - [ - -73.45852, - 45.535215 - ], - [ - -73.45895, - 45.534833 - ], - [ - -73.45901, - 45.534785 - ], - [ - -73.459195, - 45.53464 - ], - [ - -73.460968, - 45.533133 - ], - [ - -73.461503, - 45.532606 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.462106, - 45.531887 - ], - [ - -73.462411, - 45.531442 - ], - [ - -73.462832, - 45.530659 - ], - [ - -73.462938, - 45.530461 - ], - [ - -73.46396, - 45.528576 - ], - [ - -73.465084, - 45.526501 - ], - [ - -73.465154, - 45.526372 - ], - [ - -73.465286, - 45.525972 - ], - [ - -73.46533, - 45.525747 - ], - [ - -73.465344, - 45.525549 - ], - [ - -73.465322, - 45.525364 - ], - [ - -73.465135, - 45.524539 - ], - [ - -73.465111, - 45.524431 - ], - [ - -73.464907, - 45.523532 - ], - [ - -73.464877, - 45.523398 - ], - [ - -73.464763, - 45.522917 - ], - [ - -73.464685, - 45.522624 - ], - [ - -73.464607, - 45.522332 - ], - [ - -73.464576, - 45.522215 - ], - [ - -73.464435, - 45.521608 - ], - [ - -73.464421, - 45.521551 - ], - [ - -73.4643, - 45.521015 - ], - [ - -73.464225, - 45.52069 - ], - [ - -73.464096, - 45.520097 - ], - [ - -73.464063, - 45.519947 - ], - [ - -73.463992, - 45.519645 - ], - [ - -73.463946, - 45.519416 - ], - [ - -73.463946, - 45.519259 - ], - [ - -73.463946, - 45.519088 - ], - [ - -73.463972, - 45.518953 - ], - [ - -73.464012, - 45.51884 - ], - [ - -73.46406, - 45.518732 - ], - [ - -73.464166, - 45.518557 - ], - [ - -73.464483, - 45.518161 - ], - [ - -73.464809, - 45.517689 - ], - [ - -73.464941, - 45.517498 - ], - [ - -73.465811, - 45.516258 - ], - [ - -73.466112, - 45.515856 - ], - [ - -73.466232, - 45.515695 - ], - [ - -73.466795, - 45.514943 - ], - [ - -73.467723, - 45.513688 - ], - [ - -73.467821, - 45.513555 - ], - [ - -73.468294, - 45.512911 - ], - [ - -73.468698, - 45.512362 - ], - [ - -73.468744, - 45.5123 - ], - [ - -73.469443, - 45.511193 - ], - [ - -73.469555, - 45.511034 - ], - [ - -73.469846, - 45.510622 - ], - [ - -73.470521, - 45.509701 - ], - [ - -73.471066, - 45.508957 - ], - [ - -73.471144, - 45.508849 - ], - [ - -73.471373, - 45.508926 - ], - [ - -73.471408, - 45.508938 - ], - [ - -73.472138, - 45.509183 - ], - [ - -73.475237, - 45.510199 - ], - [ - -73.475433, - 45.510263 - ], - [ - -73.478282, - 45.511193 - ], - [ - -73.478511, - 45.511267 - ], - [ - -73.481433, - 45.512219 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.484505, - 45.513215 - ], - [ - -73.484663, - 45.513266 - ], - [ - -73.487598, - 45.514222 - ], - [ - -73.48773, - 45.514265 - ], - [ - -73.490679, - 45.515226 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.493747, - 45.516228 - ], - [ - -73.493881, - 45.516272 - ], - [ - -73.497588, - 45.517472 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.49882, - 45.517869 - ], - [ - -73.499884, - 45.518231 - ], - [ - -73.499972, - 45.518261 - ], - [ - -73.502085, - 45.518942 - ], - [ - -73.502235, - 45.51899 - ], - [ - -73.505409, - 45.520027 - ], - [ - -73.505525, - 45.520065 - ], - [ - -73.507529, - 45.520711 - ], - [ - -73.507813, - 45.520803 - ], - [ - -73.507881, - 45.520866 - ], - [ - -73.508099, - 45.520938 - ], - [ - -73.508258, - 45.520974 - ], - [ - -73.50837, - 45.520987 - ], - [ - -73.508461, - 45.520983 - ], - [ - -73.508562, - 45.520983 - ], - [ - -73.50866, - 45.520978 - ], - [ - -73.50877, - 45.520987 - ], - [ - -73.508969, - 45.521037 - ], - [ - -73.509108, - 45.521064 - ], - [ - -73.509167, - 45.521059 - ], - [ - -73.510016, - 45.521346 - ], - [ - -73.510243, - 45.521423 - ], - [ - -73.511276, - 45.521761 - ], - [ - -73.512488, - 45.522161 - ], - [ - -73.513225, - 45.522404 - ], - [ - -73.513329, - 45.522453 - ], - [ - -73.51347, - 45.522512 - ], - [ - -73.513466, - 45.522164 - ], - [ - -73.513465, - 45.52209 - ], - [ - -73.513454, - 45.521135 - ], - [ - -73.513455, - 45.520586 - ], - [ - -73.513456, - 45.520393 - ], - [ - -73.51347, - 45.52019 - ], - [ - -73.513487, - 45.520033 - ], - [ - -73.513501, - 45.519929 - ], - [ - -73.513525, - 45.519803 - ], - [ - -73.51356, - 45.519673 - ], - [ - -73.513601, - 45.519583 - ], - [ - -73.51367, - 45.519425 - ], - [ - -73.513718, - 45.519346 - ], - [ - -73.513785, - 45.519236 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.514993, - 45.519419 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518888, - 45.520627 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520267, - 45.521193 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520861, - 45.524416 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.520811, - 45.523427 - ] - ] - }, - "id": 69, - "properties": { - "id": "6aa22f8a-7e91-40a5-b542-55971c0d0eb4", - "data": { - "gtfs": { - "shape_id": "23_1_A" - }, - "segments": [ - { - "distanceMeters": 303, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 359, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 311, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 455, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 330, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 846, - "travelTimeSeconds": 175 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10422, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6000.649624960356, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.95, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 6.2, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.95 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", - "c7d234f2-22e5-4459-8628-1d01e7ca4dc0", - "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", - "946a029d-014a-45ca-adcd-e5b8e3927d52", - "43f18805-a4b1-4fc6-a1c9-787eb883bcde", - "e4670d3f-1aa4-4e69-ac7c-0f6fbe1ebddb", - "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", - "c77b3ec3-667e-4b8e-a8ba-613daafce3d4", - "8a5c9ba1-a597-4c12-90c9-b58f8d4f8d95", - "ead7d270-6dcb-4161-af5c-95bec6715688", - "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "8746746f-daed-4d54-a90f-724d51454ae1", - "47143cf4-4cce-4e8f-bfed-223c71fcc466", - "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", - "74d09865-876b-4428-9441-1504fb3f52bd", - "334bd241-267c-4081-968b-fd0340fabe8f", - "146e7d43-1e02-4f93-ac9a-e66dd29d3576", - "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", - "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", - "f9f88325-b670-4d47-91fa-edb372992bbc", - "e1a9e623-935b-47b9-a038-bcbd5a33f95e", - "ba348c95-9f07-48ca-a139-5d5c2dd83350", - "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", - "6c122298-4ea6-41ee-91e8-bb29cb41a320", - "e1825eb4-cef2-4f98-872f-0d169be63859", - "5a82a520-52b6-417e-972a-f9bf56fb4f33", - "64ba3e91-9bea-4655-ac42-4f3f1a14955c", - "315b8823-6c3a-493b-9af5-7325cbc48096", - "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "05287baf-76e5-4533-8eef-0902c45b01ae", - "54cba115-6a75-4b65-8019-b2b5de7a3947", - "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", - "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", - "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", - "52b1586a-11ae-4a36-8706-2e4367c6d3c8", - "234e805d-82ab-4d93-bec5-6c8c331d4f7b", - "b412dc8e-18d6-40de-b77b-38439256c33f", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "acabc807-b0f5-4579-b183-cef0484a7cc2" - ], - "stops": [], - "line_id": "a48da6f8-96ea-4bcc-b332-b3284577b887", - "segments": [ - 0, - 5, - 9, - 12, - 14, - 17, - 25, - 31, - 40, - 48, - 51, - 56, - 58, - 59, - 65, - 70, - 77, - 88, - 91, - 94, - 97, - 105, - 108, - 110, - 112, - 114, - 116, - 118, - 120, - 122, - 125, - 127, - 129, - 131, - 144, - 147, - 152, - 163, - 168, - 175 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 69, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.520811, - 45.523427 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522194, - 45.522338 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519249, - 45.520729 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514253, - 45.51909 - ], - [ - -73.513885, - 45.518962 - ], - [ - -73.51387, - 45.518957 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.51366, - 45.519196 - ], - [ - -73.513541, - 45.519389 - ], - [ - -73.513476, - 45.519506 - ], - [ - -73.513414, - 45.519673 - ], - [ - -73.513366, - 45.519828 - ], - [ - -73.513342, - 45.519907 - ], - [ - -73.513328, - 45.519997 - ], - [ - -73.513311, - 45.520181 - ], - [ - -73.513297, - 45.520388 - ], - [ - -73.513304, - 45.520586 - ], - [ - -73.51331, - 45.521135 - ], - [ - -73.513324, - 45.522116 - ], - [ - -73.513329, - 45.522453 - ], - [ - -73.513225, - 45.522404 - ], - [ - -73.511276, - 45.521761 - ], - [ - -73.510467, - 45.521496 - ], - [ - -73.510243, - 45.521423 - ], - [ - -73.509167, - 45.521059 - ], - [ - -73.50913, - 45.52101 - ], - [ - -73.509054, - 45.520983 - ], - [ - -73.508914, - 45.520938 - ], - [ - -73.508744, - 45.520907 - ], - [ - -73.50874, - 45.520906 - ], - [ - -73.508615, - 45.520897 - ], - [ - -73.508519, - 45.520893 - ], - [ - -73.508513, - 45.520893 - ], - [ - -73.508412, - 45.520888 - ], - [ - -73.508316, - 45.520888 - ], - [ - -73.508225, - 45.520879 - ], - [ - -73.508096, - 45.520852 - ], - [ - -73.507904, - 45.520798 - ], - [ - -73.507813, - 45.520803 - ], - [ - -73.505686, - 45.520117 - ], - [ - -73.505525, - 45.520065 - ], - [ - -73.502338, - 45.519023 - ], - [ - -73.502235, - 45.51899 - ], - [ - -73.500078, - 45.518295 - ], - [ - -73.499972, - 45.518261 - ], - [ - -73.49882, - 45.517869 - ], - [ - -73.497853, - 45.517557 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.493999, - 45.51631 - ], - [ - -73.493881, - 45.516272 - ], - [ - -73.490989, - 45.515327 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.487838, - 45.5143 - ], - [ - -73.48773, - 45.514265 - ], - [ - -73.484781, - 45.513304 - ], - [ - -73.484663, - 45.513266 - ], - [ - -73.481685, - 45.5123 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.478627, - 45.511305 - ], - [ - -73.478511, - 45.511267 - ], - [ - -73.475523, - 45.510293 - ], - [ - -73.475433, - 45.510263 - ], - [ - -73.472353, - 45.509253 - ], - [ - -73.472138, - 45.509183 - ], - [ - -73.471144, - 45.508849 - ], - [ - -73.470997, - 45.508809 - ], - [ - -73.470932, - 45.508894 - ], - [ - -73.470366, - 45.509655 - ], - [ - -73.470315, - 45.509725 - ], - [ - -73.470032, - 45.510114 - ], - [ - -73.46959, - 45.510721 - ], - [ - -73.469434, - 45.510905 - ], - [ - -73.469378, - 45.510967 - ], - [ - -73.469091, - 45.511282 - ], - [ - -73.468985, - 45.5114 - ], - [ - -73.468419, - 45.512173 - ], - [ - -73.468415, - 45.512178 - ], - [ - -73.466445, - 45.514919 - ], - [ - -73.466154, - 45.515358 - ], - [ - -73.466151, - 45.515363 - ], - [ - -73.465949, - 45.515589 - ], - [ - -73.463889, - 45.518354 - ], - [ - -73.463717, - 45.51862 - ], - [ - -73.463631, - 45.518853 - ], - [ - -73.463583, - 45.519083 - ], - [ - -73.463564, - 45.519245 - ], - [ - -73.463583, - 45.519488 - ], - [ - -73.463688, - 45.519933 - ], - [ - -73.463702, - 45.519992 - ], - [ - -73.463752, - 45.520203 - ], - [ - -73.463794, - 45.520379 - ], - [ - -73.463924, - 45.520923 - ], - [ - -73.464036, - 45.521392 - ], - [ - -73.464094, - 45.521634 - ], - [ - -73.464111, - 45.521706 - ], - [ - -73.464186, - 45.522017 - ], - [ - -73.464215, - 45.522138 - ], - [ - -73.464331, - 45.522602 - ], - [ - -73.464355, - 45.522697 - ], - [ - -73.464423, - 45.522975 - ], - [ - -73.46474, - 45.52431 - ], - [ - -73.464777, - 45.524466 - ], - [ - -73.46493, - 45.525112 - ], - [ - -73.464976, - 45.525355 - ], - [ - -73.465003, - 45.525643 - ], - [ - -73.464991, - 45.525805 - ], - [ - -73.464965, - 45.525922 - ], - [ - -73.464886, - 45.526134 - ], - [ - -73.46481, - 45.526282 - ], - [ - -73.464731, - 45.526435 - ], - [ - -73.463633, - 45.528487 - ], - [ - -73.462709, - 45.530211 - ], - [ - -73.462624, - 45.530371 - ], - [ - -73.462437, - 45.530708 - ], - [ - -73.462358, - 45.530861 - ], - [ - -73.46217, - 45.531262 - ], - [ - -73.461938, - 45.531653 - ], - [ - -73.461701, - 45.531998 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.46089, - 45.532868 - ], - [ - -73.460757, - 45.533003 - ], - [ - -73.459629, - 45.533974 - ], - [ - -73.459043, - 45.534445 - ], - [ - -73.458963, - 45.534509 - ], - [ - -73.458731, - 45.534693 - ], - [ - -73.458241, - 45.535152 - ], - [ - -73.457986, - 45.535404 - ], - [ - -73.457781, - 45.535638 - ], - [ - -73.457342, - 45.536214 - ], - [ - -73.457302, - 45.536279 - ], - [ - -73.45713, - 45.536556 - ], - [ - -73.456948, - 45.536857 - ], - [ - -73.456811, - 45.537145 - ], - [ - -73.456744, - 45.5373 - ], - [ - -73.456664, - 45.537487 - ], - [ - -73.456517, - 45.537928 - ], - [ - -73.456485, - 45.538022 - ], - [ - -73.456445, - 45.538144 - ], - [ - -73.456357, - 45.53853 - ], - [ - -73.456221, - 45.539372 - ], - [ - -73.456144, - 45.539984 - ], - [ - -73.456091, - 45.54028 - ], - [ - -73.456076, - 45.540361 - ], - [ - -73.455916, - 45.541266 - ], - [ - -73.455834, - 45.54181 - ], - [ - -73.455733, - 45.542476 - ], - [ - -73.455702, - 45.542678 - ], - [ - -73.455282, - 45.54266 - ], - [ - -73.455166, - 45.542732 - ], - [ - -73.454376, - 45.543288 - ], - [ - -73.453895, - 45.543626 - ], - [ - -73.453772, - 45.543712 - ], - [ - -73.452729, - 45.544423 - ], - [ - -73.452491, - 45.544585 - ], - [ - -73.451253, - 45.545453 - ], - [ - -73.45068, - 45.545847 - ] - ] - }, - "id": 70, - "properties": { - "id": "11e6e080-d187-48d4-91f5-5ed70afd8ef3", - "data": { - "gtfs": { - "shape_id": "23_1_R" - }, - "segments": [ - { - "distanceMeters": 631, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 571, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 331, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 542, - "travelTimeSeconds": 89 - }, - { - "distanceMeters": 396, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 558, - "travelTimeSeconds": 93 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 343, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 37 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9756, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6000.649624960356, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.5, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 5.81, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.5 - }, - "mode": "bus", - "name": "ch. du Tremblay", - "color": "#A32638", - "nodes": [ - "acabc807-b0f5-4579-b183-cef0484a7cc2", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "a4d70496-3fc5-40c1-865f-08991bdf0a19", - "3e3330f1-b4ce-44de-ae6a-efb45bab99e2", - "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", - "54cba115-6a75-4b65-8019-b2b5de7a3947", - "05287baf-76e5-4533-8eef-0902c45b01ae", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", - "315b8823-6c3a-493b-9af5-7325cbc48096", - "64ba3e91-9bea-4655-ac42-4f3f1a14955c", - "5a82a520-52b6-417e-972a-f9bf56fb4f33", - "e1825eb4-cef2-4f98-872f-0d169be63859", - "6c122298-4ea6-41ee-91e8-bb29cb41a320", - "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", - "777c347b-29df-4aab-9968-5fdfd62ed61a", - "e1a9e623-935b-47b9-a038-bcbd5a33f95e", - "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", - "146e7d43-1e02-4f93-ac9a-e66dd29d3576", - "a5ca0f69-bb6f-4ef0-aaaa-1498b5ff9d00", - "cc82fbc3-882e-47d6-b5d3-94ced115eefc", - "74d09865-876b-4428-9441-1504fb3f52bd", - "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", - "6beffd5a-a5e7-4808-863a-90505f6172be", - "8746746f-daed-4d54-a90f-724d51454ae1", - "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "ead7d270-6dcb-4161-af5c-95bec6715688", - "c24ac61d-1b21-4358-b45f-8dd4921fc769", - "f1d63efc-c02d-4bb9-828b-ddc2e062546b", - "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", - "1254d090-1d68-478c-a4fc-972cd246c948", - "43f18805-a4b1-4fc6-a1c9-787eb883bcde", - "946a029d-014a-45ca-adcd-e5b8e3927d52", - "e9a2766b-5d66-44e7-b6aa-e2b7898cae24" - ], - "stops": [], - "line_id": "a48da6f8-96ea-4bcc-b332-b3284577b887", - "segments": [ - 0, - 39, - 55, - 62, - 66, - 72, - 83, - 85, - 87, - 90, - 92, - 94, - 96, - 98, - 100, - 102, - 104, - 106, - 119, - 122, - 131, - 137, - 142, - 144, - 152, - 154, - 155, - 161, - 167, - 174, - 180, - 186, - 190, - 195, - 197 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 70, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.52252, - 45.524045 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522493, - 45.523494 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519445, - 45.523428 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519333, - 45.526816 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517853, - 45.526809 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517465, - 45.528168 - ], - [ - -73.517458, - 45.528249 - ], - [ - -73.517471, - 45.528385 - ], - [ - -73.517504, - 45.528565 - ], - [ - -73.517516, - 45.528652 - ], - [ - -73.517553, - 45.52877 - ], - [ - -73.517635, - 45.529002 - ], - [ - -73.517693, - 45.529249 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518855, - 45.531521 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.51956, - 45.531975 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.518103, - 45.534272 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.516364, - 45.536317 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.515478, - 45.537241 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.514577, - 45.537989 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.512974, - 45.539141 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.511384, - 45.540276 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.509926, - 45.541467 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.507818, - 45.543547 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.505655, - 45.545852 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.503922, - 45.547645 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500395, - 45.550072 - ], - [ - -73.500331, - 45.550074 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.499756, - 45.550039 - ], - [ - -73.499564, - 45.550308 - ], - [ - -73.499518, - 45.550373 - ], - [ - -73.499348, - 45.550589 - ], - [ - -73.499249, - 45.550718 - ], - [ - -73.499149, - 45.550849 - ], - [ - -73.49909, - 45.551 - ], - [ - -73.499052, - 45.551292 - ], - [ - -73.498995, - 45.551729 - ], - [ - -73.498947, - 45.552086 - ], - [ - -73.49893, - 45.552473 - ], - [ - -73.498889, - 45.552801 - ], - [ - -73.498863, - 45.552968 - ], - [ - -73.498848, - 45.553058 - ], - [ - -73.498813, - 45.553251 - ], - [ - -73.498782, - 45.553386 - ], - [ - -73.498737, - 45.553535 - ], - [ - -73.498669, - 45.55371 - ], - [ - -73.498603, - 45.553836 - ], - [ - -73.498557, - 45.553912 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.49818, - 45.554459 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.49612, - 45.55683 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.494582, - 45.55852 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.493684, - 45.559578 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.492558, - 45.561172 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.49226, - 45.561543 - ], - [ - -73.492112, - 45.561761 - ], - [ - -73.491962, - 45.561977 - ], - [ - -73.491763, - 45.562292 - ], - [ - -73.491701, - 45.562385 - ], - [ - -73.491585, - 45.562559 - ], - [ - -73.491441, - 45.562784 - ], - [ - -73.490929, - 45.563578 - ], - [ - -73.490573, - 45.564119 - ], - [ - -73.490532, - 45.564181 - ], - [ - -73.490496, - 45.564236 - ], - [ - -73.49016, - 45.564742 - ], - [ - -73.48995, - 45.565062 - ], - [ - -73.48981, - 45.565248 - ], - [ - -73.489559, - 45.565581 - ], - [ - -73.489458, - 45.565721 - ], - [ - -73.489162, - 45.566112 - ], - [ - -73.488997, - 45.566327 - ], - [ - -73.488978, - 45.566352 - ], - [ - -73.488811, - 45.566565 - ], - [ - -73.488635, - 45.566766 - ], - [ - -73.488461, - 45.56699 - ], - [ - -73.488294, - 45.567186 - ], - [ - -73.488221, - 45.567273 - ], - [ - -73.488004, - 45.567517 - ], - [ - -73.487807, - 45.567755 - ], - [ - -73.487503, - 45.56809 - ], - [ - -73.48741, - 45.568192 - ], - [ - -73.487163, - 45.568458 - ], - [ - -73.487007, - 45.568622 - ], - [ - -73.486935, - 45.568697 - ], - [ - -73.486687, - 45.568953 - ], - [ - -73.486371, - 45.569275 - ], - [ - -73.486338, - 45.569305 - ], - [ - -73.486289, - 45.569352 - ], - [ - -73.486279, - 45.569357 - ], - [ - -73.4862, - 45.569389 - ], - [ - -73.486097, - 45.56942 - ], - [ - -73.486018, - 45.569429 - ], - [ - -73.485923, - 45.569434 - ], - [ - -73.485842, - 45.569425 - ], - [ - -73.485757, - 45.569402 - ], - [ - -73.485687, - 45.569375 - ], - [ - -73.485569, - 45.569317 - ], - [ - -73.485496, - 45.569263 - ], - [ - -73.48502, - 45.568907 - ], - [ - -73.484166, - 45.568277 - ], - [ - -73.483391, - 45.567706 - ], - [ - -73.48313, - 45.567512 - ], - [ - -73.482936, - 45.567362 - ], - [ - -73.482793, - 45.567251 - ], - [ - -73.4815, - 45.566273 - ], - [ - -73.480444, - 45.565474 - ], - [ - -73.480073, - 45.565193 - ], - [ - -73.479021, - 45.564398 - ], - [ - -73.47891, - 45.564479 - ], - [ - -73.478587, - 45.564828 - ], - [ - -73.478585, - 45.56483 - ], - [ - -73.476702, - 45.566916 - ], - [ - -73.476555, - 45.567079 - ], - [ - -73.474723, - 45.569091 - ], - [ - -73.474569, - 45.569261 - ], - [ - -73.47328, - 45.570695 - ], - [ - -73.473129, - 45.570862 - ], - [ - -73.472726, - 45.570553 - ], - [ - -73.471234, - 45.569409 - ], - [ - -73.471116, - 45.569318 - ], - [ - -73.468288, - 45.567131 - ], - [ - -73.468142, - 45.567019 - ], - [ - -73.465766, - 45.565179 - ], - [ - -73.463975, - 45.563793 - ], - [ - -73.463775, - 45.563638 - ], - [ - -73.462444, - 45.562631 - ], - [ - -73.462324, - 45.56254 - ], - [ - -73.462191, - 45.562437 - ], - [ - -73.462138, - 45.562369 - ], - [ - -73.462108, - 45.562302 - ], - [ - -73.462094, - 45.562248 - ], - [ - -73.46208, - 45.56187 - ], - [ - -73.462143, - 45.561726 - ], - [ - -73.462165, - 45.561609 - ], - [ - -73.462171, - 45.561492 - ], - [ - -73.461975, - 45.561496 - ], - [ - -73.46095, - 45.561522 - ], - [ - -73.460725, - 45.561527 - ], - [ - -73.45996, - 45.561545 - ], - [ - -73.459832, - 45.561563 - ], - [ - -73.459681, - 45.561594 - ], - [ - -73.459494, - 45.56163 - ], - [ - -73.45935, - 45.561644 - ], - [ - -73.459012, - 45.561684 - ], - [ - -73.455945, - 45.561757 - ], - [ - -73.455653, - 45.561764 - ], - [ - -73.453525, - 45.561813 - ], - [ - -73.451225, - 45.561875 - ], - [ - -73.450841, - 45.561882 - ], - [ - -73.450541, - 45.561888 - ], - [ - -73.450348, - 45.561892 - ], - [ - -73.450326, - 45.561892 - ], - [ - -73.450315, - 45.562486 - ], - [ - -73.450301, - 45.562913 - ], - [ - -73.45028, - 45.563354 - ], - [ - -73.450274, - 45.563562 - ], - [ - -73.450265, - 45.563858 - ], - [ - -73.450253, - 45.564101 - ], - [ - -73.45024, - 45.564574 - ], - [ - -73.450205, - 45.565295 - ], - [ - -73.450201, - 45.565374 - ], - [ - -73.450199, - 45.565428 - ], - [ - -73.4502, - 45.565559 - ], - [ - -73.450143, - 45.566931 - ], - [ - -73.450124, - 45.567361 - ], - [ - -73.450115, - 45.567548 - ], - [ - -73.450114, - 45.567557 - ], - [ - -73.450113, - 45.567561 - ], - [ - -73.450112, - 45.56757 - ], - [ - -73.450111, - 45.567575 - ], - [ - -73.45011, - 45.567584 - ], - [ - -73.450109, - 45.567593 - ], - [ - -73.450108, - 45.567597 - ], - [ - -73.450107, - 45.567606 - ], - [ - -73.450106, - 45.567611 - ], - [ - -73.450105, - 45.56762 - ], - [ - -73.450104, - 45.567629 - ], - [ - -73.450103, - 45.567633 - ], - [ - -73.450102, - 45.567642 - ], - [ - -73.450101, - 45.567647 - ], - [ - -73.4501, - 45.567656 - ], - [ - -73.450099, - 45.56766 - ], - [ - -73.450098, - 45.567669 - ], - [ - -73.450097, - 45.567678 - ], - [ - -73.450096, - 45.567683 - ], - [ - -73.450095, - 45.567691 - ], - [ - -73.450093, - 45.567696 - ], - [ - -73.450092, - 45.567705 - ], - [ - -73.450091, - 45.567714 - ], - [ - -73.45009, - 45.567718 - ], - [ - -73.450089, - 45.567727 - ], - [ - -73.450088, - 45.567732 - ], - [ - -73.450087, - 45.567741 - ], - [ - -73.450085, - 45.56775 - ], - [ - -73.450084, - 45.567754 - ], - [ - -73.450083, - 45.567763 - ], - [ - -73.450082, - 45.567768 - ], - [ - -73.450081, - 45.567777 - ], - [ - -73.450079, - 45.567781 - ], - [ - -73.450078, - 45.56779 - ], - [ - -73.450077, - 45.567799 - ], - [ - -73.450075, - 45.567804 - ], - [ - -73.450074, - 45.567813 - ], - [ - -73.450073, - 45.567817 - ], - [ - -73.450071, - 45.567826 - ], - [ - -73.45007, - 45.567835 - ], - [ - -73.450069, - 45.56784 - ], - [ - -73.450067, - 45.567849 - ], - [ - -73.450066, - 45.567853 - ], - [ - -73.450065, - 45.567862 - ], - [ - -73.450063, - 45.567871 - ], - [ - -73.450062, - 45.567876 - ], - [ - -73.45006, - 45.567885 - ], - [ - -73.450059, - 45.567889 - ], - [ - -73.450058, - 45.567898 - ], - [ - -73.450056, - 45.567903 - ], - [ - -73.450055, - 45.567912 - ], - [ - -73.450054, - 45.567921 - ], - [ - -73.450052, - 45.567925 - ], - [ - -73.450051, - 45.567934 - ], - [ - -73.450049, - 45.567939 - ], - [ - -73.450048, - 45.567948 - ], - [ - -73.450046, - 45.567957 - ], - [ - -73.450045, - 45.567961 - ], - [ - -73.450043, - 45.56797 - ], - [ - -73.450042, - 45.567975 - ], - [ - -73.45004, - 45.567984 - ], - [ - -73.450039, - 45.567988 - ], - [ - -73.450037, - 45.567997 - ], - [ - -73.450036, - 45.568006 - ], - [ - -73.450034, - 45.568011 - ], - [ - -73.450032, - 45.56802 - ], - [ - -73.450031, - 45.568024 - ], - [ - -73.450029, - 45.568033 - ], - [ - -73.450028, - 45.568042 - ], - [ - -73.450026, - 45.568047 - ], - [ - -73.450024, - 45.568056 - ], - [ - -73.450023, - 45.56806 - ], - [ - -73.450021, - 45.568069 - ], - [ - -73.450019, - 45.568074 - ], - [ - -73.450017, - 45.568083 - ], - [ - -73.450016, - 45.568092 - ], - [ - -73.450014, - 45.568096 - ], - [ - -73.450013, - 45.568105 - ], - [ - -73.450011, - 45.56811 - ], - [ - -73.450009, - 45.568119 - ], - [ - -73.450007, - 45.568123 - ], - [ - -73.450006, - 45.568132 - ], - [ - -73.450004, - 45.568141 - ], - [ - -73.450002, - 45.568146 - ], - [ - -73.45, - 45.568155 - ], - [ - -73.449999, - 45.568159 - ], - [ - -73.449997, - 45.568168 - ], - [ - -73.449995, - 45.568173 - ], - [ - -73.449993, - 45.568182 - ], - [ - -73.449991, - 45.568191 - ], - [ - -73.449989, - 45.568195 - ], - [ - -73.449988, - 45.568204 - ], - [ - -73.449986, - 45.568209 - ], - [ - -73.449984, - 45.568218 - ], - [ - -73.449982, - 45.568227 - ], - [ - -73.44998, - 45.568231 - ], - [ - -73.449978, - 45.56824 - ], - [ - -73.449976, - 45.568245 - ], - [ - -73.449974, - 45.568254 - ], - [ - -73.449972, - 45.568258 - ], - [ - -73.44997, - 45.568267 - ], - [ - -73.449968, - 45.568276 - ], - [ - -73.449967, - 45.568281 - ], - [ - -73.449965, - 45.56829 - ], - [ - -73.449963, - 45.568294 - ], - [ - -73.449961, - 45.568303 - ], - [ - -73.449959, - 45.568308 - ], - [ - -73.449957, - 45.568317 - ], - [ - -73.449955, - 45.568326 - ], - [ - -73.449953, - 45.56833 - ], - [ - -73.449951, - 45.568339 - ], - [ - -73.449949, - 45.568344 - ], - [ - -73.449946, - 45.568353 - ], - [ - -73.449944, - 45.568357 - ], - [ - -73.449942, - 45.568366 - ], - [ - -73.44994, - 45.568371 - ], - [ - -73.449938, - 45.56838 - ], - [ - -73.449936, - 45.568389 - ], - [ - -73.449934, - 45.568393 - ], - [ - -73.449932, - 45.568402 - ], - [ - -73.44993, - 45.568407 - ], - [ - -73.449927, - 45.568416 - ], - [ - -73.449925, - 45.56842 - ], - [ - -73.449923, - 45.568429 - ], - [ - -73.449921, - 45.568438 - ], - [ - -73.449919, - 45.568443 - ], - [ - -73.449917, - 45.568452 - ], - [ - -73.449915, - 45.568456 - ], - [ - -73.449912, - 45.568465 - ], - [ - -73.44991, - 45.56847 - ], - [ - -73.449908, - 45.568479 - ], - [ - -73.449905, - 45.568488 - ], - [ - -73.449903, - 45.568492 - ], - [ - -73.449901, - 45.568501 - ], - [ - -73.449899, - 45.568506 - ], - [ - -73.449897, - 45.568515 - ], - [ - -73.449894, - 45.568519 - ], - [ - -73.449892, - 45.568528 - ], - [ - -73.449889, - 45.568533 - ], - [ - -73.449887, - 45.568542 - ], - [ - -73.449885, - 45.568551 - ], - [ - -73.449883, - 45.568555 - ], - [ - -73.44988, - 45.568564 - ], - [ - -73.449878, - 45.568569 - ], - [ - -73.449875, - 45.568578 - ], - [ - -73.449873, - 45.568582 - ], - [ - -73.44987, - 45.568591 - ], - [ - -73.449868, - 45.568596 - ], - [ - -73.449866, - 45.568605 - ], - [ - -73.449863, - 45.568614 - ], - [ - -73.449861, - 45.568618 - ], - [ - -73.449856, - 45.568632 - ], - [ - -73.449825, - 45.568708 - ], - [ - -73.449762, - 45.568861 - ], - [ - -73.449744, - 45.568903 - ], - [ - -73.44964, - 45.569145 - ], - [ - -73.449277, - 45.569995 - ], - [ - -73.449112, - 45.570242 - ], - [ - -73.449055, - 45.570278 - ], - [ - -73.448989, - 45.570323 - ], - [ - -73.448955, - 45.570337 - ], - [ - -73.448919, - 45.57035 - ], - [ - -73.448874, - 45.570359 - ], - [ - -73.44882, - 45.570368 - ], - [ - -73.448494, - 45.570395 - ], - [ - -73.448177, - 45.570336 - ], - [ - -73.447945, - 45.570309 - ], - [ - -73.447289, - 45.570181 - ], - [ - -73.4464, - 45.570007 - ], - [ - -73.446311, - 45.569989 - ], - [ - -73.446194, - 45.569957 - ], - [ - -73.446079, - 45.569912 - ], - [ - -73.44598, - 45.569845 - ], - [ - -73.44597, - 45.569836 - ], - [ - -73.445832, - 45.569723 - ], - [ - -73.445373, - 45.569368 - ], - [ - -73.445158, - 45.569201 - ], - [ - -73.444719, - 45.568877 - ], - [ - -73.444688, - 45.568854 - ], - [ - -73.444286, - 45.568557 - ], - [ - -73.443773, - 45.568165 - ], - [ - -73.442738, - 45.567373 - ], - [ - -73.44266, - 45.567297 - ], - [ - -73.442626, - 45.567202 - ], - [ - -73.442645, - 45.567108 - ], - [ - -73.442699, - 45.567027 - ], - [ - -73.443963, - 45.565808 - ], - [ - -73.444144, - 45.565592 - ], - [ - -73.443981, - 45.565444 - ], - [ - -73.443519, - 45.565078 - ], - [ - -73.442879, - 45.56457 - ], - [ - -73.44253, - 45.564311 - ], - [ - -73.442266, - 45.564115 - ], - [ - -73.442132, - 45.56421 - ], - [ - -73.441764, - 45.564435 - ], - [ - -73.441648, - 45.564502 - ], - [ - -73.441513, - 45.564534 - ], - [ - -73.441357, - 45.564551 - ], - [ - -73.441131, - 45.564524 - ], - [ - -73.439425, - 45.564155 - ], - [ - -73.436814, - 45.563591 - ], - [ - -73.436384, - 45.563499 - ], - [ - -73.433489, - 45.562878 - ], - [ - -73.432792, - 45.562738 - ], - [ - -73.432044, - 45.562628 - ], - [ - -73.431994, - 45.562621 - ], - [ - -73.431467, - 45.562553 - ], - [ - -73.430874, - 45.562507 - ], - [ - -73.43018, - 45.562453 - ], - [ - -73.429174, - 45.562439 - ], - [ - -73.428751, - 45.562442 - ], - [ - -73.428161, - 45.562447 - ], - [ - -73.426924, - 45.562451 - ], - [ - -73.426691, - 45.562451 - ], - [ - -73.426453, - 45.562424 - ], - [ - -73.426215, - 45.562374 - ], - [ - -73.425983, - 45.562302 - ], - [ - -73.425805, - 45.562207 - ], - [ - -73.425726, - 45.562147 - ], - [ - -73.425425, - 45.561919 - ], - [ - -73.425154, - 45.561703 - ], - [ - -73.424434, - 45.562242 - ], - [ - -73.424088, - 45.562481 - ], - [ - -73.424077, - 45.562487 - ], - [ - -73.423897, - 45.562597 - ], - [ - -73.422142, - 45.563568 - ], - [ - -73.421549, - 45.563919 - ], - [ - -73.42122, - 45.564089 - ], - [ - -73.421178, - 45.56411 - ], - [ - -73.420894, - 45.564251 - ], - [ - -73.420525, - 45.56444 - ], - [ - -73.419551, - 45.564984 - ], - [ - -73.417465, - 45.566138 - ], - [ - -73.415482, - 45.567236 - ], - [ - -73.415452, - 45.567253 - ], - [ - -73.415031, - 45.567473 - ], - [ - -73.414771, - 45.567599 - ], - [ - -73.414614, - 45.567648 - ], - [ - -73.414428, - 45.567711 - ], - [ - -73.414161, - 45.567751 - ], - [ - -73.413977, - 45.567764 - ], - [ - -73.413296, - 45.567804 - ], - [ - -73.410905, - 45.567943 - ], - [ - -73.41084, - 45.567947 - ], - [ - -73.410353, - 45.567973 - ], - [ - -73.410197, - 45.567982 - ], - [ - -73.409698, - 45.568013 - ], - [ - -73.408564, - 45.568078 - ], - [ - -73.408536, - 45.56808 - ], - [ - -73.408124, - 45.568079 - ], - [ - -73.407857, - 45.568048 - ], - [ - -73.407608, - 45.567993 - ], - [ - -73.407271, - 45.567849 - ], - [ - -73.407025, - 45.567701 - ], - [ - -73.406831, - 45.567543 - ], - [ - -73.406658, - 45.567399 - ], - [ - -73.405844, - 45.56792 - ], - [ - -73.405588, - 45.568085 - ], - [ - -73.40558, - 45.56809 - ], - [ - -73.404631, - 45.568702 - ], - [ - -73.404064, - 45.569066 - ], - [ - -73.403626, - 45.569304 - ], - [ - -73.403255, - 45.569443 - ], - [ - -73.402706, - 45.569596 - ], - [ - -73.40213, - 45.569649 - ], - [ - -73.401153, - 45.569706 - ], - [ - -73.401065, - 45.569711 - ], - [ - -73.400515, - 45.569738 - ], - [ - -73.399741, - 45.569782 - ], - [ - -73.398872, - 45.569831 - ], - [ - -73.398868, - 45.569534 - ], - [ - -73.398845, - 45.569466 - ], - [ - -73.398791, - 45.569385 - ], - [ - -73.398469, - 45.56913 - ], - [ - -73.397619, - 45.568457 - ], - [ - -73.397569, - 45.56839 - ], - [ - -73.397545, - 45.56834 - ], - [ - -73.397554, - 45.56825 - ], - [ - -73.397609, - 45.568156 - ], - [ - -73.398096, - 45.567844 - ] - ] - }, - "id": 71, - "properties": { - "id": "da51d484-bcf0-4fbc-834a-c6d6785ff21c", - "data": { - "gtfs": { - "shape_id": "25_1_R" - }, - "segments": [ - { - "distanceMeters": 1398, - "travelTimeSeconds": 210 - }, - { - "distanceMeters": 364, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 307, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 388, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 508, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 392, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 432, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 477, - "travelTimeSeconds": 93 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 405, - "travelTimeSeconds": 79 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 37 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 240, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 16569, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10831.790036187247, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.9, - "travelTimeWithoutDwellTimesSeconds": 2400, - "operatingTimeWithLayoverTimeSeconds": 2640, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2400, - "operatingSpeedWithLayoverMetersPerSecond": 6.28, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.9 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "4c755ece-2475-4915-941e-37859f0f391f", - "2e804fba-75d7-4c69-a7f7-706998c1a6f1", - "72e3e510-0ae4-407e-a30d-82f52f41e278", - "28559490-1b1e-4bd4-83e1-408fd6a20c77", - "28d90293-1261-41be-a75c-5fc82c3acd49", - "dadcd93c-5469-44bf-8e3e-ccac4a5af110", - "2d2815ee-443f-48d9-a68e-7f53a9aa6216", - "52f97fd3-6c91-420e-82d2-2198f2064d40", - "45ed93e4-f128-470f-b287-4d6ddc400e49", - "d9324afd-9cb7-46ba-ad04-bb8387256785", - "72c849ab-069a-4dc5-92fe-9ecc63ba074d", - "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", - "09bf17cd-9db1-41e3-b993-62146cb91158", - "bc056e84-1f20-4604-aad7-40427c6685a6", - "c879a803-d58b-4487-8291-391e9b516d3c", - "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", - "261a087b-9323-4696-9046-146a299af43d", - "0bcb0e97-db40-44bb-afe9-f6212a5b6387", - "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", - "84a0424b-0f35-4bd8-8109-5ac9219d5869", - "2d4bab42-76d4-4d53-9416-1ff754c71d1d", - "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", - "de56e105-40ff-411e-a830-378b68780088", - "056bf57a-8baa-407d-9c70-a2dcb2e36aea", - "3e6f6ee6-af44-48b8-9b96-431c0dfdb40c", - "cbdc89b0-549e-41a3-becc-56a1e8c831ce", - "3fa535d7-2c06-4fc3-ac22-347da96e9a38", - "a0c45e7b-af06-4ea8-a82a-a658b829e198", - "41fd6b6d-a514-49a6-acf5-1a39152b0c5f", - "7330c47a-92ea-4650-a95f-c6010983e0e2", - "efdd0b14-8e79-4a0f-85cb-f5ec3d032eec", - "a09356f2-d06c-43dd-b67b-b970ca63de4c", - "9ce474bd-b957-414c-a2bb-a8fbae6720a2", - "fe1423a8-e632-40f2-9b1e-93314e069a43", - "0bacad01-6fc4-40da-8f15-64bf9bb6a474", - "f52f270d-1079-4b27-a78b-f9321a1c3b1f", - "bf606954-197a-4c94-b8d0-fda71ab755ca", - "804d8b1f-4ada-4e34-bf79-888a34e590ac", - "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", - "33622e57-d444-4916-a7fb-d1fa4643eb90", - "e979db3f-26cd-41d5-8708-f07b7090bef0", - "83669f2f-a25c-47b1-99a1-53a7c08fed91", - "a77f8bf1-6b13-445b-a79c-6b0770c935c0", - "68d70807-e1f4-4393-a156-0cb02f37fe17", - "f1fdc85c-124b-4428-8960-81d8b0fa863a", - "af75f57b-23de-436e-ac1d-d36a204dd0cd", - "cb78d8bd-4b44-40b3-8301-c4501b063d48", - "58c5658c-7476-4072-998b-0663b682b8a6", - "b734f683-dc9f-47d6-a659-53e6bf9d2915", - "072328a7-3894-4360-8b61-c1e252d6cd3a", - "0041d8ec-3bef-4a62-90da-3711f5d509d2", - "2fb188f9-f7b1-471b-a5d6-51581b357b49", - "494eea8e-2f4e-4123-9eb6-ab837bba3b5d", - "4ff6fce9-ceb0-4a73-9642-e337dacfd9e4", - "0be77fd1-e022-43e1-8779-3871b7711e4b", - "bd49edea-1c3c-4a69-a5c6-0057e6bf7cb0", - "3ec963de-e577-4386-969b-85a9eb8b7aaf", - "a93c22b5-170a-45a8-a2c1-143c975239a9", - "a913c5ce-8de0-458e-a9ee-4ae555d41e98" - ], - "stops": [], - "line_id": "3dd0da2d-881a-4bb0-bf0c-519de288b81a", - "segments": [ - 0, - 57, - 73, - 76, - 78, - 82, - 85, - 88, - 94, - 99, - 102, - 105, - 120, - 131, - 145, - 147, - 150, - 152, - 154, - 160, - 164, - 174, - 189, - 205, - 212, - 214, - 216, - 218, - 221, - 223, - 225, - 226, - 228, - 239, - 247, - 251, - 258, - 262, - 267, - 424, - 436, - 444, - 449, - 458, - 460, - 468, - 470, - 473, - 479, - 487, - 497, - 501, - 502, - 510, - 511, - 516, - 526, - 534, - 542 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 71, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.398096, - 45.567844 - ], - [ - -73.398275, - 45.567729 - ], - [ - -73.399112, - 45.567217 - ], - [ - -73.403138, - 45.564701 - ], - [ - -73.404259, - 45.565548 - ], - [ - -73.404576, - 45.565795 - ], - [ - -73.40476, - 45.565935 - ], - [ - -73.405022, - 45.566133 - ], - [ - -73.405555, - 45.566548 - ], - [ - -73.405791, - 45.566732 - ], - [ - -73.406251, - 45.567093 - ], - [ - -73.406658, - 45.567399 - ], - [ - -73.406831, - 45.567543 - ], - [ - -73.407025, - 45.567701 - ], - [ - -73.407271, - 45.567849 - ], - [ - -73.407608, - 45.567993 - ], - [ - -73.407857, - 45.568048 - ], - [ - -73.408124, - 45.568079 - ], - [ - -73.408536, - 45.56808 - ], - [ - -73.409698, - 45.568013 - ], - [ - -73.410197, - 45.567982 - ], - [ - -73.410353, - 45.567973 - ], - [ - -73.41084, - 45.567947 - ], - [ - -73.413977, - 45.567764 - ], - [ - -73.414161, - 45.567751 - ], - [ - -73.414428, - 45.567711 - ], - [ - -73.414614, - 45.567648 - ], - [ - -73.414771, - 45.567599 - ], - [ - -73.415031, - 45.567473 - ], - [ - -73.415452, - 45.567253 - ], - [ - -73.419551, - 45.564984 - ], - [ - -73.420525, - 45.56444 - ], - [ - -73.420894, - 45.564251 - ], - [ - -73.42122, - 45.564089 - ], - [ - -73.421549, - 45.563919 - ], - [ - -73.422142, - 45.563568 - ], - [ - -73.423897, - 45.562597 - ], - [ - -73.424088, - 45.562481 - ], - [ - -73.424434, - 45.562242 - ], - [ - -73.425154, - 45.561703 - ], - [ - -73.425425, - 45.561919 - ], - [ - -73.425805, - 45.562207 - ], - [ - -73.425983, - 45.562302 - ], - [ - -73.426215, - 45.562374 - ], - [ - -73.426453, - 45.562424 - ], - [ - -73.426484, - 45.562427 - ], - [ - -73.426691, - 45.562451 - ], - [ - -73.426924, - 45.562451 - ], - [ - -73.428161, - 45.562447 - ], - [ - -73.429174, - 45.562439 - ], - [ - -73.43018, - 45.562453 - ], - [ - -73.430874, - 45.562507 - ], - [ - -73.431467, - 45.562553 - ], - [ - -73.431994, - 45.562621 - ], - [ - -73.432792, - 45.562738 - ], - [ - -73.433489, - 45.562878 - ], - [ - -73.436814, - 45.563591 - ], - [ - -73.441131, - 45.564524 - ], - [ - -73.441357, - 45.564551 - ], - [ - -73.441513, - 45.564534 - ], - [ - -73.441648, - 45.564502 - ], - [ - -73.441764, - 45.564435 - ], - [ - -73.442132, - 45.56421 - ], - [ - -73.442266, - 45.564115 - ], - [ - -73.442879, - 45.56457 - ], - [ - -73.443981, - 45.565444 - ], - [ - -73.444144, - 45.565592 - ], - [ - -73.443963, - 45.565808 - ], - [ - -73.442699, - 45.567027 - ], - [ - -73.442645, - 45.567108 - ], - [ - -73.442626, - 45.567202 - ], - [ - -73.44266, - 45.567297 - ], - [ - -73.442738, - 45.567373 - ], - [ - -73.444286, - 45.568557 - ], - [ - -73.444688, - 45.568854 - ], - [ - -73.444719, - 45.568877 - ], - [ - -73.445158, - 45.569201 - ], - [ - -73.445832, - 45.569723 - ], - [ - -73.44598, - 45.569845 - ], - [ - -73.446079, - 45.569912 - ], - [ - -73.446194, - 45.569957 - ], - [ - -73.446311, - 45.569989 - ], - [ - -73.4464, - 45.570007 - ], - [ - -73.447945, - 45.570309 - ], - [ - -73.448177, - 45.570336 - ], - [ - -73.448494, - 45.570395 - ], - [ - -73.449049, - 45.570517 - ], - [ - -73.449223, - 45.570544 - ], - [ - -73.449264, - 45.570454 - ], - [ - -73.449543, - 45.569814 - ], - [ - -73.44969, - 45.569482 - ], - [ - -73.449722, - 45.56941 - ], - [ - -73.449947, - 45.568902 - ], - [ - -73.449982, - 45.56883 - ], - [ - -73.450051, - 45.568681 - ], - [ - -73.450055, - 45.568672 - ], - [ - -73.450057, - 45.568668 - ], - [ - -73.450059, - 45.568663 - ], - [ - -73.450061, - 45.568659 - ], - [ - -73.450063, - 45.568654 - ], - [ - -73.450065, - 45.56865 - ], - [ - -73.450067, - 45.568645 - ], - [ - -73.450069, - 45.568641 - ], - [ - -73.450071, - 45.568636 - ], - [ - -73.450072, - 45.568632 - ], - [ - -73.450074, - 45.568627 - ], - [ - -73.450076, - 45.568623 - ], - [ - -73.450078, - 45.568618 - ], - [ - -73.45008, - 45.568618 - ], - [ - -73.450082, - 45.568614 - ], - [ - -73.450084, - 45.568609 - ], - [ - -73.450086, - 45.568605 - ], - [ - -73.450087, - 45.5686 - ], - [ - -73.450089, - 45.568596 - ], - [ - -73.450091, - 45.568591 - ], - [ - -73.450093, - 45.568587 - ], - [ - -73.450095, - 45.568582 - ], - [ - -73.450097, - 45.568578 - ], - [ - -73.450099, - 45.568573 - ], - [ - -73.450101, - 45.568569 - ], - [ - -73.450102, - 45.568564 - ], - [ - -73.450104, - 45.56856 - ], - [ - -73.450106, - 45.568555 - ], - [ - -73.450108, - 45.568551 - ], - [ - -73.45011, - 45.568546 - ], - [ - -73.450112, - 45.568542 - ], - [ - -73.450114, - 45.568537 - ], - [ - -73.450115, - 45.568533 - ], - [ - -73.450117, - 45.568528 - ], - [ - -73.450119, - 45.568524 - ], - [ - -73.45012, - 45.568519 - ], - [ - -73.450122, - 45.568519 - ], - [ - -73.450124, - 45.568515 - ], - [ - -73.450126, - 45.56851 - ], - [ - -73.450128, - 45.568506 - ], - [ - -73.450129, - 45.568501 - ], - [ - -73.450131, - 45.568497 - ], - [ - -73.450133, - 45.568492 - ], - [ - -73.450134, - 45.568488 - ], - [ - -73.450136, - 45.568483 - ], - [ - -73.450138, - 45.568479 - ], - [ - -73.45014, - 45.568474 - ], - [ - -73.450141, - 45.56847 - ], - [ - -73.450143, - 45.568465 - ], - [ - -73.450145, - 45.568461 - ], - [ - -73.450146, - 45.568456 - ], - [ - -73.450148, - 45.568452 - ], - [ - -73.45015, - 45.568447 - ], - [ - -73.450151, - 45.568443 - ], - [ - -73.450153, - 45.568438 - ], - [ - -73.450154, - 45.568434 - ], - [ - -73.450156, - 45.568429 - ], - [ - -73.450158, - 45.568425 - ], - [ - -73.45016, - 45.56842 - ], - [ - -73.450161, - 45.568416 - ], - [ - -73.450163, - 45.568411 - ], - [ - -73.450164, - 45.568407 - ], - [ - -73.450166, - 45.568402 - ], - [ - -73.450168, - 45.568398 - ], - [ - -73.450169, - 45.568393 - ], - [ - -73.450171, - 45.568393 - ], - [ - -73.450173, - 45.568389 - ], - [ - -73.450174, - 45.568384 - ], - [ - -73.450175, - 45.56838 - ], - [ - -73.450177, - 45.568375 - ], - [ - -73.450179, - 45.568371 - ], - [ - -73.45018, - 45.568366 - ], - [ - -73.450182, - 45.568362 - ], - [ - -73.450183, - 45.568357 - ], - [ - -73.450185, - 45.568353 - ], - [ - -73.450186, - 45.568348 - ], - [ - -73.450188, - 45.568344 - ], - [ - -73.450189, - 45.568339 - ], - [ - -73.450191, - 45.568335 - ], - [ - -73.450192, - 45.56833 - ], - [ - -73.450194, - 45.568326 - ], - [ - -73.450195, - 45.568321 - ], - [ - -73.450197, - 45.568317 - ], - [ - -73.450198, - 45.568312 - ], - [ - -73.4502, - 45.568308 - ], - [ - -73.450201, - 45.568303 - ], - [ - -73.450203, - 45.568299 - ], - [ - -73.450204, - 45.568294 - ], - [ - -73.450205, - 45.56829 - ], - [ - -73.450207, - 45.568285 - ], - [ - -73.450208, - 45.568281 - ], - [ - -73.45021, - 45.568276 - ], - [ - -73.450211, - 45.568272 - ], - [ - -73.450213, - 45.568267 - ], - [ - -73.450214, - 45.568263 - ], - [ - -73.450215, - 45.568258 - ], - [ - -73.450217, - 45.568254 - ], - [ - -73.450218, - 45.568249 - ], - [ - -73.450219, - 45.568245 - ], - [ - -73.450221, - 45.56824 - ], - [ - -73.450222, - 45.568236 - ], - [ - -73.450224, - 45.568231 - ], - [ - -73.450225, - 45.568227 - ], - [ - -73.450226, - 45.568227 - ], - [ - -73.450228, - 45.568222 - ], - [ - -73.450229, - 45.568218 - ], - [ - -73.45023, - 45.568213 - ], - [ - -73.450232, - 45.568209 - ], - [ - -73.450233, - 45.568204 - ], - [ - -73.450234, - 45.5682 - ], - [ - -73.450236, - 45.568195 - ], - [ - -73.450237, - 45.568191 - ], - [ - -73.450238, - 45.568186 - ], - [ - -73.45024, - 45.568182 - ], - [ - -73.450241, - 45.568177 - ], - [ - -73.450242, - 45.568173 - ], - [ - -73.450244, - 45.568168 - ], - [ - -73.450245, - 45.568164 - ], - [ - -73.450246, - 45.568159 - ], - [ - -73.450247, - 45.568155 - ], - [ - -73.450248, - 45.56815 - ], - [ - -73.45025, - 45.568146 - ], - [ - -73.450251, - 45.568141 - ], - [ - -73.450252, - 45.568137 - ], - [ - -73.450253, - 45.568132 - ], - [ - -73.450254, - 45.568128 - ], - [ - -73.450256, - 45.568123 - ], - [ - -73.450257, - 45.568119 - ], - [ - -73.450258, - 45.568114 - ], - [ - -73.450259, - 45.56811 - ], - [ - -73.45026, - 45.568105 - ], - [ - -73.450262, - 45.568101 - ], - [ - -73.450263, - 45.568096 - ], - [ - -73.450264, - 45.568092 - ], - [ - -73.450265, - 45.568088 - ], - [ - -73.450266, - 45.568083 - ], - [ - -73.450267, - 45.568079 - ], - [ - -73.450268, - 45.568074 - ], - [ - -73.45027, - 45.56807 - ], - [ - -73.450271, - 45.568065 - ], - [ - -73.450272, - 45.568061 - ], - [ - -73.450273, - 45.568056 - ], - [ - -73.450274, - 45.568052 - ], - [ - -73.450275, - 45.568047 - ], - [ - -73.450277, - 45.568043 - ], - [ - -73.450277, - 45.568038 - ], - [ - -73.450279, - 45.568034 - ], - [ - -73.45028, - 45.568029 - ], - [ - -73.450281, - 45.568025 - ], - [ - -73.450282, - 45.56802 - ], - [ - -73.450283, - 45.568016 - ], - [ - -73.450284, - 45.568011 - ], - [ - -73.450285, - 45.568007 - ], - [ - -73.450286, - 45.568002 - ], - [ - -73.450287, - 45.567998 - ], - [ - -73.450288, - 45.567993 - ], - [ - -73.450289, - 45.567989 - ], - [ - -73.45029, - 45.567984 - ], - [ - -73.450291, - 45.56798 - ], - [ - -73.450292, - 45.567975 - ], - [ - -73.450293, - 45.567971 - ], - [ - -73.450294, - 45.567966 - ], - [ - -73.450295, - 45.567962 - ], - [ - -73.450296, - 45.567957 - ], - [ - -73.450297, - 45.567957 - ], - [ - -73.450298, - 45.567953 - ], - [ - -73.450299, - 45.567948 - ], - [ - -73.4503, - 45.567944 - ], - [ - -73.450301, - 45.567939 - ], - [ - -73.450301, - 45.567935 - ], - [ - -73.450302, - 45.56793 - ], - [ - -73.450303, - 45.567926 - ], - [ - -73.450304, - 45.567921 - ], - [ - -73.450305, - 45.567917 - ], - [ - -73.450306, - 45.567912 - ], - [ - -73.450307, - 45.567908 - ], - [ - -73.450308, - 45.567903 - ], - [ - -73.450309, - 45.567899 - ], - [ - -73.450309, - 45.567894 - ], - [ - -73.45031, - 45.56789 - ], - [ - -73.450311, - 45.567885 - ], - [ - -73.450312, - 45.567881 - ], - [ - -73.450313, - 45.567876 - ], - [ - -73.450314, - 45.567872 - ], - [ - -73.450315, - 45.567867 - ], - [ - -73.450316, - 45.567863 - ], - [ - -73.450316, - 45.567858 - ], - [ - -73.450317, - 45.567854 - ], - [ - -73.450318, - 45.567849 - ], - [ - -73.450319, - 45.567845 - ], - [ - -73.45032, - 45.56784 - ], - [ - -73.45032, - 45.567836 - ], - [ - -73.450321, - 45.567831 - ], - [ - -73.450322, - 45.567827 - ], - [ - -73.450323, - 45.567822 - ], - [ - -73.450324, - 45.567818 - ], - [ - -73.450324, - 45.567813 - ], - [ - -73.450325, - 45.567809 - ], - [ - -73.450326, - 45.567804 - ], - [ - -73.450326, - 45.5678 - ], - [ - -73.450327, - 45.567795 - ], - [ - -73.450328, - 45.567791 - ], - [ - -73.450329, - 45.567786 - ], - [ - -73.450329, - 45.567782 - ], - [ - -73.45033, - 45.567777 - ], - [ - -73.450331, - 45.567773 - ], - [ - -73.450332, - 45.567768 - ], - [ - -73.450332, - 45.567764 - ], - [ - -73.450333, - 45.567759 - ], - [ - -73.450334, - 45.567755 - ], - [ - -73.450334, - 45.56775 - ], - [ - -73.450335, - 45.567746 - ], - [ - -73.450336, - 45.567741 - ], - [ - -73.450336, - 45.567737 - ], - [ - -73.450337, - 45.567732 - ], - [ - -73.450337, - 45.567728 - ], - [ - -73.450338, - 45.567723 - ], - [ - -73.450339, - 45.567719 - ], - [ - -73.450339, - 45.567714 - ], - [ - -73.45034, - 45.56771 - ], - [ - -73.45034, - 45.567705 - ], - [ - -73.450341, - 45.567701 - ], - [ - -73.450342, - 45.567696 - ], - [ - -73.450342, - 45.567692 - ], - [ - -73.450343, - 45.567687 - ], - [ - -73.450343, - 45.567683 - ], - [ - -73.450344, - 45.567678 - ], - [ - -73.450345, - 45.567674 - ], - [ - -73.450345, - 45.567669 - ], - [ - -73.450346, - 45.567665 - ], - [ - -73.450346, - 45.56766 - ], - [ - -73.450347, - 45.567656 - ], - [ - -73.450347, - 45.567651 - ], - [ - -73.450348, - 45.567647 - ], - [ - -73.450348, - 45.567642 - ], - [ - -73.450349, - 45.567638 - ], - [ - -73.450349, - 45.567633 - ], - [ - -73.45035, - 45.567629 - ], - [ - -73.45035, - 45.567624 - ], - [ - -73.450351, - 45.56762 - ], - [ - -73.450351, - 45.567615 - ], - [ - -73.450352, - 45.567611 - ], - [ - -73.450352, - 45.567606 - ], - [ - -73.450353, - 45.567602 - ], - [ - -73.450353, - 45.567597 - ], - [ - -73.450353, - 45.567593 - ], - [ - -73.450354, - 45.567588 - ], - [ - -73.450355, - 45.567584 - ], - [ - -73.450355, - 45.567579 - ], - [ - -73.450355, - 45.567575 - ], - [ - -73.450356, - 45.56757 - ], - [ - -73.450356, - 45.567566 - ], - [ - -73.450357, - 45.567561 - ], - [ - -73.450357, - 45.567557 - ], - [ - -73.450357, - 45.567552 - ], - [ - -73.45036, - 45.567548 - ], - [ - -73.450434, - 45.565568 - ], - [ - -73.450469, - 45.564632 - ], - [ - -73.450501, - 45.563818 - ], - [ - -73.450514, - 45.563467 - ], - [ - -73.450546, - 45.562441 - ], - [ - -73.450644, - 45.562216 - ], - [ - -73.450694, - 45.562131 - ], - [ - -73.450783, - 45.562045 - ], - [ - -73.450893, - 45.561982 - ], - [ - -73.451026, - 45.561928 - ], - [ - -73.451225, - 45.561875 - ], - [ - -73.453525, - 45.561813 - ], - [ - -73.454569, - 45.561789 - ], - [ - -73.455653, - 45.561764 - ], - [ - -73.459012, - 45.561684 - ], - [ - -73.459275, - 45.561684 - ], - [ - -73.460731, - 45.561644 - ], - [ - -73.461679, - 45.561618 - ], - [ - -73.461849, - 45.561685 - ], - [ - -73.461894, - 45.561703 - ], - [ - -73.461935, - 45.561735 - ], - [ - -73.46197, - 45.561762 - ], - [ - -73.46208, - 45.56187 - ], - [ - -73.462094, - 45.562248 - ], - [ - -73.462108, - 45.562302 - ], - [ - -73.462138, - 45.562369 - ], - [ - -73.462191, - 45.562437 - ], - [ - -73.462324, - 45.56254 - ], - [ - -73.463775, - 45.563638 - ], - [ - -73.468142, - 45.567019 - ], - [ - -73.471116, - 45.569318 - ], - [ - -73.473129, - 45.570862 - ], - [ - -73.473953, - 45.571492 - ], - [ - -73.474759, - 45.572109 - ], - [ - -73.475992, - 45.573049 - ], - [ - -73.476026, - 45.573085 - ], - [ - -73.477034, - 45.573852 - ], - [ - -73.47886, - 45.575219 - ], - [ - -73.479129, - 45.57542 - ], - [ - -73.47919, - 45.575474 - ], - [ - -73.479274, - 45.575534 - ], - [ - -73.47941, - 45.575433 - ], - [ - -73.479496, - 45.575361 - ], - [ - -73.479622, - 45.575253 - ], - [ - -73.4798, - 45.575097 - ], - [ - -73.479996, - 45.574941 - ], - [ - -73.480237, - 45.574738 - ], - [ - -73.48034, - 45.574648 - ], - [ - -73.480453, - 45.574551 - ], - [ - -73.480801, - 45.574263 - ], - [ - -73.481358, - 45.573789 - ], - [ - -73.481529, - 45.573644 - ], - [ - -73.481972, - 45.573269 - ], - [ - -73.482082, - 45.573173 - ], - [ - -73.482204, - 45.573068 - ], - [ - -73.482412, - 45.572903 - ], - [ - -73.482823, - 45.572557 - ], - [ - -73.482916, - 45.572476 - ], - [ - -73.482986, - 45.57241 - ], - [ - -73.483315, - 45.572122 - ], - [ - -73.483678, - 45.571813 - ], - [ - -73.483735, - 45.571764 - ], - [ - -73.483843, - 45.57167 - ], - [ - -73.484123, - 45.57144 - ], - [ - -73.484526, - 45.571099 - ], - [ - -73.484935, - 45.570755 - ], - [ - -73.484967, - 45.570727 - ], - [ - -73.485483, - 45.570269 - ], - [ - -73.485867, - 45.569908 - ], - [ - -73.485881, - 45.569894 - ], - [ - -73.485994, - 45.569784 - ], - [ - -73.486085, - 45.569691 - ], - [ - -73.486421, - 45.569373 - ], - [ - -73.487037, - 45.568739 - ], - [ - -73.487188, - 45.568584 - ], - [ - -73.487556, - 45.568196 - ], - [ - -73.487608, - 45.568138 - ], - [ - -73.488016, - 45.567684 - ], - [ - -73.488394, - 45.567236 - ], - [ - -73.488839, - 45.56671 - ], - [ - -73.488926, - 45.566606 - ], - [ - -73.489299, - 45.566117 - ], - [ - -73.489627, - 45.565684 - ], - [ - -73.489917, - 45.565286 - ], - [ - -73.490075, - 45.56507 - ], - [ - -73.490593, - 45.5643 - ], - [ - -73.490754, - 45.564056 - ], - [ - -73.491532, - 45.562873 - ], - [ - -73.491593, - 45.562778 - ], - [ - -73.491626, - 45.562725 - ], - [ - -73.4917, - 45.562606 - ], - [ - -73.491908, - 45.562298 - ], - [ - -73.49207, - 45.56203 - ], - [ - -73.492185, - 45.561871 - ], - [ - -73.492369, - 45.561588 - ], - [ - -73.49239, - 45.561557 - ], - [ - -73.492391, - 45.561555 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.494716, - 45.558369 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498677, - 45.553944 - ], - [ - -73.498726, - 45.553872 - ], - [ - -73.498813, - 45.553714 - ], - [ - -73.498895, - 45.553562 - ], - [ - -73.49895, - 45.553404 - ], - [ - -73.498964, - 45.55335 - ], - [ - -73.498988, - 45.55326 - ], - [ - -73.499026, - 45.553035 - ], - [ - -73.499051, - 45.55281 - ], - [ - -73.49911, - 45.552261 - ], - [ - -73.499127, - 45.552095 - ], - [ - -73.49916, - 45.551767 - ], - [ - -73.499199, - 45.551371 - ], - [ - -73.49924, - 45.551092 - ], - [ - -73.499284, - 45.550946 - ], - [ - -73.499366, - 45.550811 - ], - [ - -73.499487, - 45.550651 - ], - [ - -73.499683, - 45.550403 - ], - [ - -73.499747, - 45.550322 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.500107, - 45.550074 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.503657, - 45.547898 - ], - [ - -73.503782, - 45.547778 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.505412, - 45.54611 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507878, - 45.543482 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.509779, - 45.541607 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.511274, - 45.540355 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.51299, - 45.53913 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.514321, - 45.538181 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.515311, - 45.537392 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.516475, - 45.536189 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.51822, - 45.534135 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519479, - 45.531846 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519522, - 45.531915 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.51917, - 45.531641 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.518817, - 45.531415 - ], - [ - -73.518763, - 45.531374 - ], - [ - -73.518709, - 45.531325 - ], - [ - -73.518655, - 45.531271 - ], - [ - -73.518619, - 45.531213 - ], - [ - -73.518601, - 45.531154 - ], - [ - -73.518588, - 45.531096 - ], - [ - -73.518588, - 45.531055 - ], - [ - -73.518597, - 45.531006 - ], - [ - -73.518619, - 45.530952 - ], - [ - -73.518659, - 45.530884 - ], - [ - -73.518691, - 45.530826 - ], - [ - -73.518718, - 45.530785 - ], - [ - -73.518753, - 45.530731 - ], - [ - -73.518803, - 45.530646 - ], - [ - -73.518839, - 45.530596 - ], - [ - -73.518875, - 45.530547 - ], - [ - -73.518897, - 45.530497 - ], - [ - -73.518915, - 45.530448 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519398, - 45.526008 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519766, - 45.52338 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52237, - 45.524141 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 72, - "properties": { - "id": "4ed7374e-6599-45a1-a197-535c332678db", - "data": { - "gtfs": { - "shape_id": "25_1_A" - }, - "segments": [ - { - "distanceMeters": 9172, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 423, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 331, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 829, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 463, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 335, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 655, - "travelTimeSeconds": 109 - }, - { - "distanceMeters": 829, - "travelTimeSeconds": 138 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 16477, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6650.018169173266, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 17.16, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 14.45, - "averageSpeedWithoutDwellTimesMetersPerSecond": 17.16 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "75347f42-115f-47ec-b394-c1f56ce167fb", - "dc112aae-906c-47be-a1fb-06ef714fd1ab", - "ab105343-272d-4aa3-9238-846c2fa787cb", - "24527bed-7ea6-44d6-b6db-18ac609f4938", - "1b1077ca-8a37-46a1-a7be-751ea2f7f2ae", - "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", - "d5099816-374e-4ebc-ab50-5ca4d2f829e5", - "84a0424b-0f35-4bd8-8109-5ac9219d5869", - "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", - "261a087b-9323-4696-9046-146a299af43d", - "66456437-f154-4a2f-a12f-2f54cf668687", - "820a9d7c-25e9-487c-9e51-cfefcb1432f7", - "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", - "72c849ab-069a-4dc5-92fe-9ecc63ba074d", - "d9324afd-9cb7-46ba-ad04-bb8387256785", - "45ed93e4-f128-470f-b287-4d6ddc400e49", - "52f97fd3-6c91-420e-82d2-2198f2064d40", - "2d2815ee-443f-48d9-a68e-7f53a9aa6216", - "dadcd93c-5469-44bf-8e3e-ccac4a5af110", - "28d90293-1261-41be-a75c-5fc82c3acd49", - "28559490-1b1e-4bd4-83e1-408fd6a20c77", - "72e3e510-0ae4-407e-a30d-82f52f41e278", - "2e804fba-75d7-4c69-a7f7-706998c1a6f1", - "4fb4515b-e129-4622-b855-89143c2fd488", - "4c755ece-2475-4915-941e-37859f0f391f" - ], - "stops": [], - "line_id": "3dd0da2d-881a-4bb0-bf0c-519de288b81a", - "segments": [ - 0, - 398, - 404, - 412, - 420, - 430, - 437, - 440, - 446, - 452, - 468, - 474, - 492, - 495, - 499, - 503, - 510, - 513, - 515, - 519, - 522, - 525, - 543, - 574 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 72, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.398096, - 45.567844 - ], - [ - -73.398275, - 45.567729 - ], - [ - -73.399112, - 45.567217 - ], - [ - -73.403138, - 45.564701 - ], - [ - -73.404259, - 45.565548 - ], - [ - -73.404576, - 45.565795 - ], - [ - -73.40476, - 45.565935 - ], - [ - -73.405022, - 45.566133 - ], - [ - -73.405555, - 45.566548 - ], - [ - -73.405791, - 45.566732 - ], - [ - -73.406251, - 45.567093 - ], - [ - -73.406658, - 45.567399 - ], - [ - -73.406831, - 45.567543 - ], - [ - -73.407025, - 45.567701 - ], - [ - -73.407271, - 45.567849 - ], - [ - -73.407608, - 45.567993 - ], - [ - -73.407857, - 45.568048 - ], - [ - -73.408124, - 45.568079 - ], - [ - -73.408536, - 45.56808 - ], - [ - -73.409698, - 45.568013 - ], - [ - -73.410197, - 45.567982 - ], - [ - -73.410353, - 45.567973 - ], - [ - -73.41084, - 45.567947 - ], - [ - -73.413977, - 45.567764 - ], - [ - -73.414161, - 45.567751 - ], - [ - -73.414428, - 45.567711 - ], - [ - -73.414614, - 45.567648 - ], - [ - -73.414771, - 45.567599 - ], - [ - -73.415031, - 45.567473 - ], - [ - -73.415452, - 45.567253 - ], - [ - -73.419551, - 45.564984 - ], - [ - -73.420525, - 45.56444 - ], - [ - -73.420894, - 45.564251 - ], - [ - -73.42122, - 45.564089 - ], - [ - -73.421549, - 45.563919 - ], - [ - -73.422142, - 45.563568 - ], - [ - -73.423897, - 45.562597 - ], - [ - -73.424088, - 45.562481 - ], - [ - -73.424434, - 45.562242 - ], - [ - -73.425154, - 45.561703 - ], - [ - -73.425425, - 45.561919 - ], - [ - -73.425805, - 45.562207 - ], - [ - -73.425983, - 45.562302 - ], - [ - -73.426215, - 45.562374 - ], - [ - -73.426453, - 45.562424 - ], - [ - -73.426484, - 45.562427 - ], - [ - -73.426691, - 45.562451 - ], - [ - -73.426924, - 45.562451 - ], - [ - -73.428161, - 45.562447 - ], - [ - -73.429174, - 45.562439 - ], - [ - -73.43018, - 45.562453 - ], - [ - -73.430874, - 45.562507 - ], - [ - -73.431467, - 45.562553 - ], - [ - -73.431994, - 45.562621 - ], - [ - -73.432792, - 45.562738 - ], - [ - -73.433489, - 45.562878 - ], - [ - -73.436814, - 45.563591 - ], - [ - -73.441131, - 45.564524 - ], - [ - -73.441357, - 45.564551 - ], - [ - -73.441513, - 45.564534 - ], - [ - -73.441648, - 45.564502 - ], - [ - -73.441764, - 45.564435 - ], - [ - -73.442132, - 45.56421 - ], - [ - -73.442266, - 45.564115 - ], - [ - -73.442879, - 45.56457 - ], - [ - -73.443981, - 45.565444 - ], - [ - -73.444144, - 45.565592 - ], - [ - -73.443963, - 45.565808 - ], - [ - -73.442699, - 45.567027 - ], - [ - -73.442645, - 45.567108 - ], - [ - -73.442626, - 45.567202 - ], - [ - -73.44266, - 45.567297 - ], - [ - -73.442738, - 45.567373 - ], - [ - -73.444286, - 45.568557 - ], - [ - -73.444688, - 45.568854 - ], - [ - -73.444719, - 45.568877 - ], - [ - -73.445158, - 45.569201 - ], - [ - -73.445832, - 45.569723 - ], - [ - -73.44598, - 45.569845 - ], - [ - -73.446079, - 45.569912 - ], - [ - -73.446194, - 45.569957 - ], - [ - -73.446311, - 45.569989 - ], - [ - -73.4464, - 45.570007 - ], - [ - -73.447945, - 45.570309 - ], - [ - -73.448177, - 45.570336 - ], - [ - -73.448494, - 45.570395 - ], - [ - -73.449049, - 45.570517 - ], - [ - -73.449223, - 45.570544 - ], - [ - -73.449264, - 45.570454 - ], - [ - -73.449543, - 45.569814 - ], - [ - -73.44969, - 45.569482 - ], - [ - -73.449722, - 45.56941 - ], - [ - -73.449947, - 45.568902 - ], - [ - -73.449982, - 45.56883 - ], - [ - -73.450051, - 45.568681 - ], - [ - -73.450055, - 45.568672 - ], - [ - -73.450057, - 45.568668 - ], - [ - -73.450059, - 45.568663 - ], - [ - -73.450061, - 45.568659 - ], - [ - -73.450063, - 45.568654 - ], - [ - -73.450065, - 45.56865 - ], - [ - -73.450067, - 45.568645 - ], - [ - -73.450069, - 45.568641 - ], - [ - -73.450071, - 45.568636 - ], - [ - -73.450072, - 45.568632 - ], - [ - -73.450074, - 45.568627 - ], - [ - -73.450076, - 45.568623 - ], - [ - -73.450078, - 45.568618 - ], - [ - -73.45008, - 45.568618 - ], - [ - -73.450082, - 45.568614 - ], - [ - -73.450084, - 45.568609 - ], - [ - -73.450086, - 45.568605 - ], - [ - -73.450087, - 45.5686 - ], - [ - -73.450089, - 45.568596 - ], - [ - -73.450091, - 45.568591 - ], - [ - -73.450093, - 45.568587 - ], - [ - -73.450095, - 45.568582 - ], - [ - -73.450097, - 45.568578 - ], - [ - -73.450099, - 45.568573 - ], - [ - -73.450101, - 45.568569 - ], - [ - -73.450102, - 45.568564 - ], - [ - -73.450104, - 45.56856 - ], - [ - -73.450106, - 45.568555 - ], - [ - -73.450108, - 45.568551 - ], - [ - -73.45011, - 45.568546 - ], - [ - -73.450112, - 45.568542 - ], - [ - -73.450114, - 45.568537 - ], - [ - -73.450115, - 45.568533 - ], - [ - -73.450117, - 45.568528 - ], - [ - -73.450119, - 45.568524 - ], - [ - -73.45012, - 45.568519 - ], - [ - -73.450122, - 45.568519 - ], - [ - -73.450124, - 45.568515 - ], - [ - -73.450126, - 45.56851 - ], - [ - -73.450128, - 45.568506 - ], - [ - -73.450129, - 45.568501 - ], - [ - -73.450131, - 45.568497 - ], - [ - -73.450133, - 45.568492 - ], - [ - -73.450134, - 45.568488 - ], - [ - -73.450136, - 45.568483 - ], - [ - -73.450138, - 45.568479 - ], - [ - -73.45014, - 45.568474 - ], - [ - -73.450141, - 45.56847 - ], - [ - -73.450143, - 45.568465 - ], - [ - -73.450145, - 45.568461 - ], - [ - -73.450146, - 45.568456 - ], - [ - -73.450148, - 45.568452 - ], - [ - -73.45015, - 45.568447 - ], - [ - -73.450151, - 45.568443 - ], - [ - -73.450153, - 45.568438 - ], - [ - -73.450154, - 45.568434 - ], - [ - -73.450156, - 45.568429 - ], - [ - -73.450158, - 45.568425 - ], - [ - -73.45016, - 45.56842 - ], - [ - -73.450161, - 45.568416 - ], - [ - -73.450163, - 45.568411 - ], - [ - -73.450164, - 45.568407 - ], - [ - -73.450166, - 45.568402 - ], - [ - -73.450168, - 45.568398 - ], - [ - -73.450169, - 45.568393 - ], - [ - -73.450171, - 45.568393 - ], - [ - -73.450173, - 45.568389 - ], - [ - -73.450174, - 45.568384 - ], - [ - -73.450175, - 45.56838 - ], - [ - -73.450177, - 45.568375 - ], - [ - -73.450179, - 45.568371 - ], - [ - -73.45018, - 45.568366 - ], - [ - -73.450182, - 45.568362 - ], - [ - -73.450183, - 45.568357 - ], - [ - -73.450185, - 45.568353 - ], - [ - -73.450186, - 45.568348 - ], - [ - -73.450188, - 45.568344 - ], - [ - -73.450189, - 45.568339 - ], - [ - -73.450191, - 45.568335 - ], - [ - -73.450192, - 45.56833 - ], - [ - -73.450194, - 45.568326 - ], - [ - -73.450195, - 45.568321 - ], - [ - -73.450197, - 45.568317 - ], - [ - -73.450198, - 45.568312 - ], - [ - -73.4502, - 45.568308 - ], - [ - -73.450201, - 45.568303 - ], - [ - -73.450203, - 45.568299 - ], - [ - -73.450204, - 45.568294 - ], - [ - -73.450205, - 45.56829 - ], - [ - -73.450207, - 45.568285 - ], - [ - -73.450208, - 45.568281 - ], - [ - -73.45021, - 45.568276 - ], - [ - -73.450211, - 45.568272 - ], - [ - -73.450213, - 45.568267 - ], - [ - -73.450214, - 45.568263 - ], - [ - -73.450215, - 45.568258 - ], - [ - -73.450217, - 45.568254 - ], - [ - -73.450218, - 45.568249 - ], - [ - -73.450219, - 45.568245 - ], - [ - -73.450221, - 45.56824 - ], - [ - -73.450222, - 45.568236 - ], - [ - -73.450224, - 45.568231 - ], - [ - -73.450225, - 45.568227 - ], - [ - -73.450226, - 45.568227 - ], - [ - -73.450228, - 45.568222 - ], - [ - -73.450229, - 45.568218 - ], - [ - -73.45023, - 45.568213 - ], - [ - -73.450232, - 45.568209 - ], - [ - -73.450233, - 45.568204 - ], - [ - -73.450234, - 45.5682 - ], - [ - -73.450236, - 45.568195 - ], - [ - -73.450237, - 45.568191 - ], - [ - -73.450238, - 45.568186 - ], - [ - -73.45024, - 45.568182 - ], - [ - -73.450241, - 45.568177 - ], - [ - -73.450242, - 45.568173 - ], - [ - -73.450244, - 45.568168 - ], - [ - -73.450245, - 45.568164 - ], - [ - -73.450246, - 45.568159 - ], - [ - -73.450247, - 45.568155 - ], - [ - -73.450248, - 45.56815 - ], - [ - -73.45025, - 45.568146 - ], - [ - -73.450251, - 45.568141 - ], - [ - -73.450252, - 45.568137 - ], - [ - -73.450253, - 45.568132 - ], - [ - -73.450254, - 45.568128 - ], - [ - -73.450256, - 45.568123 - ], - [ - -73.450257, - 45.568119 - ], - [ - -73.450258, - 45.568114 - ], - [ - -73.450259, - 45.56811 - ], - [ - -73.45026, - 45.568105 - ], - [ - -73.450262, - 45.568101 - ], - [ - -73.450263, - 45.568096 - ], - [ - -73.450264, - 45.568092 - ], - [ - -73.450265, - 45.568088 - ], - [ - -73.450266, - 45.568083 - ], - [ - -73.450267, - 45.568079 - ], - [ - -73.450268, - 45.568074 - ], - [ - -73.45027, - 45.56807 - ], - [ - -73.450271, - 45.568065 - ], - [ - -73.450272, - 45.568061 - ], - [ - -73.450273, - 45.568056 - ], - [ - -73.450274, - 45.568052 - ], - [ - -73.450275, - 45.568047 - ], - [ - -73.450277, - 45.568043 - ], - [ - -73.450277, - 45.568038 - ], - [ - -73.450279, - 45.568034 - ], - [ - -73.45028, - 45.568029 - ], - [ - -73.450281, - 45.568025 - ], - [ - -73.450282, - 45.56802 - ], - [ - -73.450283, - 45.568016 - ], - [ - -73.450284, - 45.568011 - ], - [ - -73.450285, - 45.568007 - ], - [ - -73.450286, - 45.568002 - ], - [ - -73.450287, - 45.567998 - ], - [ - -73.450288, - 45.567993 - ], - [ - -73.450289, - 45.567989 - ], - [ - -73.45029, - 45.567984 - ], - [ - -73.450291, - 45.56798 - ], - [ - -73.450292, - 45.567975 - ], - [ - -73.450293, - 45.567971 - ], - [ - -73.450294, - 45.567966 - ], - [ - -73.450295, - 45.567962 - ], - [ - -73.450296, - 45.567957 - ], - [ - -73.450297, - 45.567957 - ], - [ - -73.450298, - 45.567953 - ], - [ - -73.450299, - 45.567948 - ], - [ - -73.4503, - 45.567944 - ], - [ - -73.450301, - 45.567939 - ], - [ - -73.450301, - 45.567935 - ], - [ - -73.450302, - 45.56793 - ], - [ - -73.450303, - 45.567926 - ], - [ - -73.450304, - 45.567921 - ], - [ - -73.450305, - 45.567917 - ], - [ - -73.450306, - 45.567912 - ], - [ - -73.450307, - 45.567908 - ], - [ - -73.450308, - 45.567903 - ], - [ - -73.450309, - 45.567899 - ], - [ - -73.450309, - 45.567894 - ], - [ - -73.45031, - 45.56789 - ], - [ - -73.450311, - 45.567885 - ], - [ - -73.450312, - 45.567881 - ], - [ - -73.450313, - 45.567876 - ], - [ - -73.450314, - 45.567872 - ], - [ - -73.450315, - 45.567867 - ], - [ - -73.450316, - 45.567863 - ], - [ - -73.450316, - 45.567858 - ], - [ - -73.450317, - 45.567854 - ], - [ - -73.450318, - 45.567849 - ], - [ - -73.450319, - 45.567845 - ], - [ - -73.45032, - 45.56784 - ], - [ - -73.45032, - 45.567836 - ], - [ - -73.450321, - 45.567831 - ], - [ - -73.450322, - 45.567827 - ], - [ - -73.450323, - 45.567822 - ], - [ - -73.450324, - 45.567818 - ], - [ - -73.450324, - 45.567813 - ], - [ - -73.450325, - 45.567809 - ], - [ - -73.450326, - 45.567804 - ], - [ - -73.450326, - 45.5678 - ], - [ - -73.450327, - 45.567795 - ], - [ - -73.450328, - 45.567791 - ], - [ - -73.450329, - 45.567786 - ], - [ - -73.450329, - 45.567782 - ], - [ - -73.45033, - 45.567777 - ], - [ - -73.450331, - 45.567773 - ], - [ - -73.450332, - 45.567768 - ], - [ - -73.450332, - 45.567764 - ], - [ - -73.450333, - 45.567759 - ], - [ - -73.450334, - 45.567755 - ], - [ - -73.450334, - 45.56775 - ], - [ - -73.450335, - 45.567746 - ], - [ - -73.450336, - 45.567741 - ], - [ - -73.450336, - 45.567737 - ], - [ - -73.450337, - 45.567732 - ], - [ - -73.450337, - 45.567728 - ], - [ - -73.450338, - 45.567723 - ], - [ - -73.450339, - 45.567719 - ], - [ - -73.450339, - 45.567714 - ], - [ - -73.45034, - 45.56771 - ], - [ - -73.45034, - 45.567705 - ], - [ - -73.450341, - 45.567701 - ], - [ - -73.450342, - 45.567696 - ], - [ - -73.450342, - 45.567692 - ], - [ - -73.450343, - 45.567687 - ], - [ - -73.450343, - 45.567683 - ], - [ - -73.450344, - 45.567678 - ], - [ - -73.450345, - 45.567674 - ], - [ - -73.450345, - 45.567669 - ], - [ - -73.450346, - 45.567665 - ], - [ - -73.450346, - 45.56766 - ], - [ - -73.450347, - 45.567656 - ], - [ - -73.450347, - 45.567651 - ], - [ - -73.450348, - 45.567647 - ], - [ - -73.450348, - 45.567642 - ], - [ - -73.450349, - 45.567638 - ], - [ - -73.450349, - 45.567633 - ], - [ - -73.45035, - 45.567629 - ], - [ - -73.45035, - 45.567624 - ], - [ - -73.450351, - 45.56762 - ], - [ - -73.450351, - 45.567615 - ], - [ - -73.450352, - 45.567611 - ], - [ - -73.450352, - 45.567606 - ], - [ - -73.450353, - 45.567602 - ], - [ - -73.450353, - 45.567597 - ], - [ - -73.450353, - 45.567593 - ], - [ - -73.450354, - 45.567588 - ], - [ - -73.450355, - 45.567584 - ], - [ - -73.450355, - 45.567579 - ], - [ - -73.450355, - 45.567575 - ], - [ - -73.450356, - 45.56757 - ], - [ - -73.450356, - 45.567566 - ], - [ - -73.450357, - 45.567561 - ], - [ - -73.450357, - 45.567557 - ], - [ - -73.450357, - 45.567552 - ], - [ - -73.45036, - 45.567548 - ], - [ - -73.450434, - 45.565568 - ], - [ - -73.450469, - 45.564632 - ], - [ - -73.450501, - 45.563818 - ], - [ - -73.450514, - 45.563467 - ], - [ - -73.450546, - 45.562441 - ], - [ - -73.450644, - 45.562216 - ], - [ - -73.450694, - 45.562131 - ], - [ - -73.450783, - 45.562045 - ], - [ - -73.450893, - 45.561982 - ], - [ - -73.451026, - 45.561928 - ], - [ - -73.451225, - 45.561875 - ], - [ - -73.453525, - 45.561813 - ], - [ - -73.454569, - 45.561789 - ], - [ - -73.455653, - 45.561764 - ], - [ - -73.459012, - 45.561684 - ], - [ - -73.459275, - 45.561684 - ], - [ - -73.459943, - 45.561666 - ], - [ - -73.460731, - 45.561644 - ], - [ - -73.461679, - 45.561618 - ], - [ - -73.461849, - 45.561685 - ], - [ - -73.461894, - 45.561703 - ], - [ - -73.461935, - 45.561735 - ], - [ - -73.46197, - 45.561762 - ], - [ - -73.46208, - 45.56187 - ], - [ - -73.462094, - 45.562248 - ], - [ - -73.462108, - 45.562302 - ], - [ - -73.462138, - 45.562369 - ], - [ - -73.462191, - 45.562437 - ], - [ - -73.462324, - 45.56254 - ], - [ - -73.463775, - 45.563638 - ], - [ - -73.468142, - 45.567019 - ], - [ - -73.471116, - 45.569318 - ], - [ - -73.473129, - 45.570862 - ], - [ - -73.473953, - 45.571492 - ], - [ - -73.474759, - 45.572109 - ], - [ - -73.475992, - 45.573049 - ], - [ - -73.476026, - 45.573085 - ], - [ - -73.477034, - 45.573852 - ], - [ - -73.47886, - 45.575219 - ], - [ - -73.479129, - 45.57542 - ], - [ - -73.47919, - 45.575474 - ], - [ - -73.479274, - 45.575534 - ], - [ - -73.47941, - 45.575433 - ], - [ - -73.479496, - 45.575361 - ], - [ - -73.479622, - 45.575253 - ], - [ - -73.4798, - 45.575097 - ], - [ - -73.479996, - 45.574941 - ], - [ - -73.480237, - 45.574738 - ], - [ - -73.480453, - 45.574551 - ], - [ - -73.480801, - 45.574263 - ], - [ - -73.481358, - 45.573789 - ], - [ - -73.481529, - 45.573644 - ], - [ - -73.481972, - 45.573269 - ], - [ - -73.482204, - 45.573068 - ], - [ - -73.482412, - 45.572903 - ], - [ - -73.482823, - 45.572557 - ], - [ - -73.482916, - 45.572476 - ], - [ - -73.482986, - 45.57241 - ], - [ - -73.483315, - 45.572122 - ], - [ - -73.483678, - 45.571813 - ], - [ - -73.483843, - 45.57167 - ], - [ - -73.484123, - 45.57144 - ], - [ - -73.484526, - 45.571099 - ], - [ - -73.484935, - 45.570755 - ], - [ - -73.484967, - 45.570727 - ], - [ - -73.485483, - 45.570269 - ], - [ - -73.485867, - 45.569908 - ], - [ - -73.485994, - 45.569784 - ], - [ - -73.486085, - 45.569691 - ], - [ - -73.486421, - 45.569373 - ], - [ - -73.487037, - 45.568739 - ], - [ - -73.487188, - 45.568584 - ], - [ - -73.487556, - 45.568196 - ], - [ - -73.487608, - 45.568138 - ], - [ - -73.488016, - 45.567684 - ], - [ - -73.488394, - 45.567236 - ], - [ - -73.488926, - 45.566606 - ], - [ - -73.489299, - 45.566117 - ], - [ - -73.489627, - 45.565684 - ], - [ - -73.489917, - 45.565286 - ], - [ - -73.490075, - 45.56507 - ], - [ - -73.490593, - 45.5643 - ], - [ - -73.491532, - 45.562873 - ], - [ - -73.491593, - 45.562778 - ], - [ - -73.4917, - 45.562606 - ], - [ - -73.491908, - 45.562298 - ], - [ - -73.49207, - 45.56203 - ], - [ - -73.492185, - 45.561871 - ], - [ - -73.492369, - 45.561588 - ], - [ - -73.492391, - 45.561555 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498677, - 45.553944 - ], - [ - -73.498726, - 45.553872 - ], - [ - -73.498813, - 45.553714 - ], - [ - -73.498895, - 45.553562 - ], - [ - -73.49895, - 45.553404 - ], - [ - -73.498964, - 45.55335 - ], - [ - -73.498988, - 45.55326 - ], - [ - -73.499026, - 45.553035 - ], - [ - -73.499051, - 45.55281 - ], - [ - -73.49911, - 45.552261 - ], - [ - -73.499127, - 45.552095 - ], - [ - -73.499199, - 45.551371 - ], - [ - -73.49924, - 45.551092 - ], - [ - -73.499284, - 45.550946 - ], - [ - -73.499366, - 45.550811 - ], - [ - -73.499487, - 45.550651 - ], - [ - -73.499747, - 45.550322 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.500107, - 45.550074 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.503657, - 45.547898 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519479, - 45.531846 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519522, - 45.531915 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.518817, - 45.531415 - ], - [ - -73.518763, - 45.531374 - ], - [ - -73.518709, - 45.531325 - ], - [ - -73.518655, - 45.531271 - ], - [ - -73.518619, - 45.531213 - ], - [ - -73.518601, - 45.531154 - ], - [ - -73.518588, - 45.531096 - ], - [ - -73.518588, - 45.531055 - ], - [ - -73.518597, - 45.531006 - ], - [ - -73.518619, - 45.530952 - ], - [ - -73.518659, - 45.530884 - ], - [ - -73.518691, - 45.530826 - ], - [ - -73.518718, - 45.530785 - ], - [ - -73.518753, - 45.530731 - ], - [ - -73.518803, - 45.530646 - ], - [ - -73.518839, - 45.530596 - ], - [ - -73.518875, - 45.530547 - ], - [ - -73.518897, - 45.530497 - ], - [ - -73.518915, - 45.530448 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519766, - 45.52338 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52237, - 45.524141 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 73, - "properties": { - "id": "b1f36b94-3821-4ae9-96fa-7436b786afa2", - "data": { - "gtfs": { - "shape_id": "25_1_A" - }, - "segments": [ - { - "distanceMeters": 6828, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 9649, - "travelTimeSeconds": 71 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 16477, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 537.8312017370496, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 137.31, - "travelTimeWithoutDwellTimesSeconds": 120, - "operatingTimeWithLayoverTimeSeconds": 300, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 120, - "operatingSpeedWithLayoverMetersPerSecond": 54.92, - "averageSpeedWithoutDwellTimesMetersPerSecond": 137.31 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "a913c5ce-8de0-458e-a9ee-4ae555d41e98", - "a4120eb1-d1f9-43e5-8720-90115641165b", - "0681e3d4-c5fd-4f85-982e-d5d26960784a" - ], - "stops": [], - "line_id": "3dd0da2d-881a-4bb0-bf0c-519de288b81a", - "segments": [ - 0, - 367 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 73, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.52252, - 45.524045 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522493, - 45.523494 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519445, - 45.523428 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519333, - 45.526816 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517853, - 45.526809 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517465, - 45.528168 - ], - [ - -73.517458, - 45.528249 - ], - [ - -73.517471, - 45.528385 - ], - [ - -73.517504, - 45.528565 - ], - [ - -73.517516, - 45.528652 - ], - [ - -73.517553, - 45.52877 - ], - [ - -73.517635, - 45.529002 - ], - [ - -73.517693, - 45.529249 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518853, - 45.53152 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.51956, - 45.531975 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.518105, - 45.53427 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.516365, - 45.536315 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.51548, - 45.537239 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.514579, - 45.537987 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.512977, - 45.539139 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.511387, - 45.540274 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.509928, - 45.541465 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.50782, - 45.543544 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.505658, - 45.545849 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.503925, - 45.547642 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500395, - 45.550072 - ], - [ - -73.500338, - 45.550074 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.499756, - 45.550039 - ], - [ - -73.499564, - 45.550308 - ], - [ - -73.499518, - 45.550373 - ], - [ - -73.499348, - 45.550589 - ], - [ - -73.499249, - 45.550718 - ], - [ - -73.499149, - 45.550849 - ], - [ - -73.49909, - 45.551 - ], - [ - -73.499052, - 45.551292 - ], - [ - -73.498995, - 45.551725 - ], - [ - -73.498947, - 45.552086 - ], - [ - -73.49893, - 45.552473 - ], - [ - -73.498889, - 45.552801 - ], - [ - -73.498863, - 45.552968 - ], - [ - -73.498848, - 45.553058 - ], - [ - -73.498813, - 45.553251 - ], - [ - -73.498782, - 45.553386 - ], - [ - -73.498737, - 45.553535 - ], - [ - -73.498669, - 45.55371 - ], - [ - -73.498603, - 45.553836 - ], - [ - -73.498557, - 45.553912 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498184, - 45.554455 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.496124, - 45.556826 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.494586, - 45.558515 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.493688, - 45.559573 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.492562, - 45.561167 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.49226, - 45.561543 - ], - [ - -73.492112, - 45.561761 - ], - [ - -73.491962, - 45.561977 - ], - [ - -73.491763, - 45.562292 - ], - [ - -73.491705, - 45.56238 - ], - [ - -73.491585, - 45.562559 - ], - [ - -73.491441, - 45.562784 - ], - [ - -73.490929, - 45.563578 - ], - [ - -73.490577, - 45.564113 - ], - [ - -73.490532, - 45.564181 - ], - [ - -73.490496, - 45.564236 - ], - [ - -73.49016, - 45.564742 - ], - [ - -73.48995, - 45.565062 - ], - [ - -73.48981, - 45.565248 - ], - [ - -73.489559, - 45.565581 - ], - [ - -73.489458, - 45.565721 - ], - [ - -73.489162, - 45.566112 - ], - [ - -73.488997, - 45.566327 - ], - [ - -73.488982, - 45.566346 - ], - [ - -73.488811, - 45.566565 - ], - [ - -73.488635, - 45.566766 - ], - [ - -73.488461, - 45.56699 - ], - [ - -73.488294, - 45.567186 - ], - [ - -73.488221, - 45.567273 - ], - [ - -73.488004, - 45.567517 - ], - [ - -73.487807, - 45.567755 - ], - [ - -73.487503, - 45.56809 - ], - [ - -73.48741, - 45.568192 - ], - [ - -73.487163, - 45.568458 - ], - [ - -73.487007, - 45.568622 - ], - [ - -73.486935, - 45.568697 - ], - [ - -73.486687, - 45.568953 - ], - [ - -73.486371, - 45.569275 - ], - [ - -73.486344, - 45.5693 - ], - [ - -73.486289, - 45.569352 - ], - [ - -73.486279, - 45.569357 - ], - [ - -73.4862, - 45.569389 - ], - [ - -73.486097, - 45.56942 - ], - [ - -73.486018, - 45.569429 - ], - [ - -73.485923, - 45.569434 - ], - [ - -73.485842, - 45.569425 - ], - [ - -73.485757, - 45.569402 - ], - [ - -73.485687, - 45.569375 - ], - [ - -73.485569, - 45.569317 - ], - [ - -73.485496, - 45.569263 - ], - [ - -73.48502, - 45.568907 - ], - [ - -73.484166, - 45.568277 - ], - [ - -73.483391, - 45.567706 - ], - [ - -73.48313, - 45.567512 - ], - [ - -73.482943, - 45.567367 - ], - [ - -73.482793, - 45.567251 - ], - [ - -73.4815, - 45.566273 - ], - [ - -73.480444, - 45.565474 - ], - [ - -73.480073, - 45.565193 - ], - [ - -73.479021, - 45.564398 - ], - [ - -73.47891, - 45.564479 - ], - [ - -73.478593, - 45.564821 - ], - [ - -73.478585, - 45.56483 - ], - [ - -73.476708, - 45.566909 - ], - [ - -73.476555, - 45.567079 - ], - [ - -73.47473, - 45.569084 - ], - [ - -73.474569, - 45.569261 - ], - [ - -73.473286, - 45.570687 - ], - [ - -73.473129, - 45.570862 - ], - [ - -73.472726, - 45.570553 - ], - [ - -73.471243, - 45.569416 - ], - [ - -73.471116, - 45.569318 - ], - [ - -73.468297, - 45.567138 - ], - [ - -73.468142, - 45.567019 - ], - [ - -73.465775, - 45.565186 - ], - [ - -73.463985, - 45.563801 - ], - [ - -73.463775, - 45.563638 - ], - [ - -73.462454, - 45.562639 - ], - [ - -73.462324, - 45.56254 - ], - [ - -73.462191, - 45.562437 - ], - [ - -73.462138, - 45.562369 - ], - [ - -73.462108, - 45.562302 - ], - [ - -73.462094, - 45.562248 - ], - [ - -73.46208, - 45.56187 - ], - [ - -73.462143, - 45.561726 - ], - [ - -73.462165, - 45.561609 - ], - [ - -73.462171, - 45.561492 - ], - [ - -73.461975, - 45.561496 - ], - [ - -73.460965, - 45.561521 - ], - [ - -73.460725, - 45.561527 - ], - [ - -73.45996, - 45.561545 - ], - [ - -73.459832, - 45.561563 - ], - [ - -73.459681, - 45.561594 - ], - [ - -73.459494, - 45.56163 - ], - [ - -73.45935, - 45.561644 - ], - [ - -73.459012, - 45.561684 - ], - [ - -73.45596, - 45.561757 - ], - [ - -73.455653, - 45.561764 - ], - [ - -73.453525, - 45.561813 - ], - [ - -73.451225, - 45.561875 - ], - [ - -73.450856, - 45.561882 - ], - [ - -73.450541, - 45.561888 - ], - [ - -73.450348, - 45.561892 - ], - [ - -73.450326, - 45.561892 - ], - [ - -73.450315, - 45.562486 - ], - [ - -73.450301, - 45.562913 - ], - [ - -73.45028, - 45.563354 - ], - [ - -73.450274, - 45.563551 - ], - [ - -73.450265, - 45.563858 - ], - [ - -73.450253, - 45.564101 - ], - [ - -73.45024, - 45.564574 - ], - [ - -73.450206, - 45.565284 - ], - [ - -73.450201, - 45.565374 - ], - [ - -73.450199, - 45.565428 - ], - [ - -73.4502, - 45.565559 - ], - [ - -73.450143, - 45.566931 - ], - [ - -73.450124, - 45.567349 - ], - [ - -73.450115, - 45.567548 - ], - [ - -73.450114, - 45.567557 - ], - [ - -73.450113, - 45.567561 - ], - [ - -73.450112, - 45.56757 - ], - [ - -73.450111, - 45.567575 - ], - [ - -73.45011, - 45.567584 - ], - [ - -73.450109, - 45.567593 - ], - [ - -73.450108, - 45.567597 - ], - [ - -73.450107, - 45.567606 - ], - [ - -73.450106, - 45.567611 - ], - [ - -73.450105, - 45.56762 - ], - [ - -73.450104, - 45.567629 - ], - [ - -73.450103, - 45.567633 - ], - [ - -73.450102, - 45.567642 - ], - [ - -73.450101, - 45.567647 - ], - [ - -73.4501, - 45.567656 - ], - [ - -73.450099, - 45.56766 - ], - [ - -73.450098, - 45.567669 - ], - [ - -73.450097, - 45.567678 - ], - [ - -73.450096, - 45.567683 - ], - [ - -73.450095, - 45.567691 - ], - [ - -73.450093, - 45.567696 - ], - [ - -73.450092, - 45.567705 - ], - [ - -73.450091, - 45.567714 - ], - [ - -73.45009, - 45.567718 - ], - [ - -73.450089, - 45.567727 - ], - [ - -73.450088, - 45.567732 - ], - [ - -73.450087, - 45.567741 - ], - [ - -73.450085, - 45.56775 - ], - [ - -73.450084, - 45.567754 - ], - [ - -73.450083, - 45.567763 - ], - [ - -73.450082, - 45.567768 - ], - [ - -73.450081, - 45.567777 - ], - [ - -73.450079, - 45.567781 - ], - [ - -73.450078, - 45.56779 - ], - [ - -73.450077, - 45.567799 - ], - [ - -73.450075, - 45.567804 - ], - [ - -73.450074, - 45.567813 - ], - [ - -73.450073, - 45.567817 - ], - [ - -73.450071, - 45.567826 - ], - [ - -73.45007, - 45.567835 - ], - [ - -73.450069, - 45.56784 - ], - [ - -73.450067, - 45.567849 - ], - [ - -73.450066, - 45.567853 - ], - [ - -73.450065, - 45.567862 - ], - [ - -73.450063, - 45.567871 - ], - [ - -73.450062, - 45.567876 - ], - [ - -73.45006, - 45.567885 - ], - [ - -73.450059, - 45.567889 - ], - [ - -73.450058, - 45.567898 - ], - [ - -73.450056, - 45.567903 - ], - [ - -73.450055, - 45.567912 - ], - [ - -73.450054, - 45.567921 - ], - [ - -73.450052, - 45.567925 - ], - [ - -73.450051, - 45.567934 - ], - [ - -73.450049, - 45.567939 - ], - [ - -73.450048, - 45.567948 - ], - [ - -73.450046, - 45.567957 - ], - [ - -73.450045, - 45.567961 - ], - [ - -73.450043, - 45.56797 - ], - [ - -73.450042, - 45.567975 - ], - [ - -73.45004, - 45.567984 - ], - [ - -73.450039, - 45.567988 - ], - [ - -73.450037, - 45.567997 - ], - [ - -73.450036, - 45.568006 - ], - [ - -73.450034, - 45.568011 - ], - [ - -73.450032, - 45.56802 - ], - [ - -73.450031, - 45.568024 - ], - [ - -73.450029, - 45.568033 - ], - [ - -73.450028, - 45.568042 - ], - [ - -73.450026, - 45.568047 - ], - [ - -73.450024, - 45.568056 - ], - [ - -73.450023, - 45.56806 - ], - [ - -73.450021, - 45.568069 - ], - [ - -73.450019, - 45.568074 - ], - [ - -73.450017, - 45.568083 - ], - [ - -73.450016, - 45.568092 - ], - [ - -73.450014, - 45.568096 - ], - [ - -73.450013, - 45.568105 - ], - [ - -73.450011, - 45.56811 - ], - [ - -73.450009, - 45.568119 - ], - [ - -73.450007, - 45.568123 - ], - [ - -73.450006, - 45.568132 - ], - [ - -73.450004, - 45.568141 - ], - [ - -73.450002, - 45.568146 - ], - [ - -73.45, - 45.568155 - ], - [ - -73.449999, - 45.568159 - ], - [ - -73.449997, - 45.568168 - ], - [ - -73.449995, - 45.568173 - ], - [ - -73.449993, - 45.568182 - ], - [ - -73.449991, - 45.568191 - ], - [ - -73.449989, - 45.568195 - ], - [ - -73.449988, - 45.568204 - ], - [ - -73.449986, - 45.568209 - ], - [ - -73.449984, - 45.568218 - ], - [ - -73.449982, - 45.568227 - ], - [ - -73.44998, - 45.568231 - ], - [ - -73.449978, - 45.56824 - ], - [ - -73.449976, - 45.568245 - ], - [ - -73.449974, - 45.568254 - ], - [ - -73.449972, - 45.568258 - ], - [ - -73.44997, - 45.568267 - ], - [ - -73.449968, - 45.568276 - ], - [ - -73.449967, - 45.568281 - ], - [ - -73.449965, - 45.56829 - ], - [ - -73.449963, - 45.568294 - ], - [ - -73.449961, - 45.568303 - ], - [ - -73.449959, - 45.568308 - ], - [ - -73.449957, - 45.568317 - ], - [ - -73.449955, - 45.568326 - ], - [ - -73.449953, - 45.56833 - ], - [ - -73.449951, - 45.568339 - ], - [ - -73.449949, - 45.568344 - ], - [ - -73.449946, - 45.568353 - ], - [ - -73.449944, - 45.568357 - ], - [ - -73.449942, - 45.568366 - ], - [ - -73.44994, - 45.568371 - ], - [ - -73.449938, - 45.56838 - ], - [ - -73.449936, - 45.568389 - ], - [ - -73.449934, - 45.568393 - ], - [ - -73.449932, - 45.568402 - ], - [ - -73.44993, - 45.568407 - ], - [ - -73.449927, - 45.568416 - ], - [ - -73.449925, - 45.56842 - ], - [ - -73.449923, - 45.568429 - ], - [ - -73.449921, - 45.568438 - ], - [ - -73.449919, - 45.568443 - ], - [ - -73.449917, - 45.568452 - ], - [ - -73.449915, - 45.568456 - ], - [ - -73.449912, - 45.568465 - ], - [ - -73.44991, - 45.56847 - ], - [ - -73.449908, - 45.568479 - ], - [ - -73.449905, - 45.568488 - ], - [ - -73.449903, - 45.568492 - ], - [ - -73.449901, - 45.568501 - ], - [ - -73.449899, - 45.568506 - ], - [ - -73.449897, - 45.568515 - ], - [ - -73.449894, - 45.568519 - ], - [ - -73.449892, - 45.568528 - ], - [ - -73.449889, - 45.568533 - ], - [ - -73.449887, - 45.568542 - ], - [ - -73.449885, - 45.568551 - ], - [ - -73.449883, - 45.568555 - ], - [ - -73.44988, - 45.568564 - ], - [ - -73.449878, - 45.568569 - ], - [ - -73.449875, - 45.568578 - ], - [ - -73.449873, - 45.568582 - ], - [ - -73.44987, - 45.568591 - ], - [ - -73.449868, - 45.568596 - ], - [ - -73.449866, - 45.568605 - ], - [ - -73.449863, - 45.568614 - ], - [ - -73.449861, - 45.568618 - ], - [ - -73.449856, - 45.568632 - ], - [ - -73.449825, - 45.568708 - ], - [ - -73.449762, - 45.568861 - ], - [ - -73.449744, - 45.568903 - ], - [ - -73.449645, - 45.569133 - ], - [ - -73.449277, - 45.569995 - ], - [ - -73.449112, - 45.570242 - ], - [ - -73.449055, - 45.570278 - ], - [ - -73.448989, - 45.570323 - ], - [ - -73.448955, - 45.570337 - ], - [ - -73.448919, - 45.57035 - ], - [ - -73.448874, - 45.570359 - ], - [ - -73.44882, - 45.570368 - ], - [ - -73.448494, - 45.570395 - ], - [ - -73.448177, - 45.570336 - ], - [ - -73.447945, - 45.570309 - ], - [ - -73.447306, - 45.570184 - ], - [ - -73.4464, - 45.570007 - ], - [ - -73.446311, - 45.569989 - ], - [ - -73.446194, - 45.569957 - ], - [ - -73.446079, - 45.569912 - ], - [ - -73.44598, - 45.569845 - ], - [ - -73.44597, - 45.569836 - ], - [ - -73.445832, - 45.569723 - ], - [ - -73.445385, - 45.569377 - ], - [ - -73.445158, - 45.569201 - ], - [ - -73.444719, - 45.568877 - ], - [ - -73.444688, - 45.568854 - ], - [ - -73.444286, - 45.568557 - ], - [ - -73.443785, - 45.568174 - ], - [ - -73.442738, - 45.567373 - ], - [ - -73.44266, - 45.567297 - ], - [ - -73.442626, - 45.567202 - ], - [ - -73.442645, - 45.567108 - ], - [ - -73.442699, - 45.567027 - ], - [ - -73.443963, - 45.565808 - ], - [ - -73.444144, - 45.565592 - ], - [ - -73.443981, - 45.565444 - ], - [ - -73.443532, - 45.565088 - ], - [ - -73.442879, - 45.56457 - ], - [ - -73.442543, - 45.564321 - ], - [ - -73.442266, - 45.564115 - ], - [ - -73.442132, - 45.56421 - ], - [ - -73.441764, - 45.564435 - ], - [ - -73.441648, - 45.564502 - ], - [ - -73.441513, - 45.564534 - ], - [ - -73.441357, - 45.564551 - ], - [ - -73.441131, - 45.564524 - ], - [ - -73.439443, - 45.564159 - ], - [ - -73.436814, - 45.563591 - ], - [ - -73.436403, - 45.563503 - ], - [ - -73.433489, - 45.562878 - ], - [ - -73.432792, - 45.562738 - ], - [ - -73.432064, - 45.562631 - ], - [ - -73.431994, - 45.562621 - ], - [ - -73.431467, - 45.562553 - ], - [ - -73.430874, - 45.562507 - ], - [ - -73.43018, - 45.562453 - ], - [ - -73.429174, - 45.562439 - ], - [ - -73.428772, - 45.562442 - ], - [ - -73.428161, - 45.562447 - ], - [ - -73.426924, - 45.562451 - ], - [ - -73.426691, - 45.562451 - ], - [ - -73.426453, - 45.562424 - ], - [ - -73.426215, - 45.562374 - ], - [ - -73.425983, - 45.562302 - ], - [ - -73.425805, - 45.562207 - ], - [ - -73.42574, - 45.562158 - ], - [ - -73.425425, - 45.561919 - ], - [ - -73.425154, - 45.561703 - ], - [ - -73.424434, - 45.562242 - ], - [ - -73.424088, - 45.562481 - ], - [ - -73.424077, - 45.562487 - ], - [ - -73.423897, - 45.562597 - ], - [ - -73.422142, - 45.563568 - ], - [ - -73.421549, - 45.563919 - ], - [ - -73.42122, - 45.564089 - ], - [ - -73.421196, - 45.564101 - ], - [ - -73.420894, - 45.564251 - ], - [ - -73.420525, - 45.56444 - ], - [ - -73.419551, - 45.564984 - ], - [ - -73.417483, - 45.566128 - ], - [ - -73.4155, - 45.567226 - ], - [ - -73.415452, - 45.567253 - ], - [ - -73.415031, - 45.567473 - ], - [ - -73.414771, - 45.567599 - ], - [ - -73.414614, - 45.567648 - ], - [ - -73.414428, - 45.567711 - ], - [ - -73.414161, - 45.567751 - ], - [ - -73.413977, - 45.567764 - ], - [ - -73.413319, - 45.567803 - ], - [ - -73.410928, - 45.567941 - ], - [ - -73.41084, - 45.567947 - ], - [ - -73.410353, - 45.567973 - ], - [ - -73.410197, - 45.567982 - ], - [ - -73.409698, - 45.568013 - ], - [ - -73.408588, - 45.568077 - ], - [ - -73.408536, - 45.56808 - ], - [ - -73.408124, - 45.568079 - ], - [ - -73.407857, - 45.568048 - ], - [ - -73.407608, - 45.567993 - ], - [ - -73.407271, - 45.567849 - ], - [ - -73.407025, - 45.567701 - ], - [ - -73.406831, - 45.567543 - ], - [ - -73.406658, - 45.567399 - ], - [ - -73.405844, - 45.56792 - ], - [ - -73.405606, - 45.568073 - ], - [ - -73.40558, - 45.56809 - ], - [ - -73.404631, - 45.568702 - ], - [ - -73.404064, - 45.569066 - ], - [ - -73.403626, - 45.569304 - ], - [ - -73.403255, - 45.569443 - ], - [ - -73.402706, - 45.569596 - ], - [ - -73.40213, - 45.569649 - ], - [ - -73.401178, - 45.569705 - ], - [ - -73.401065, - 45.569711 - ], - [ - -73.400515, - 45.569738 - ], - [ - -73.399741, - 45.569782 - ], - [ - -73.398872, - 45.569831 - ], - [ - -73.397337, - 45.569982 - ], - [ - -73.396252, - 45.570116 - ], - [ - -73.39531, - 45.570246 - ], - [ - -73.394177, - 45.570398 - ], - [ - -73.394121, - 45.570405 - ], - [ - -73.393727, - 45.570456 - ], - [ - -73.39317, - 45.570536 - ], - [ - -73.39269, - 45.570599 - ], - [ - -73.392081, - 45.570684 - ], - [ - -73.391191, - 45.570804 - ], - [ - -73.390528, - 45.570894 - ], - [ - -73.389658, - 45.571014 - ], - [ - -73.388912, - 45.571113 - ], - [ - -73.387898, - 45.571251 - ], - [ - -73.38781, - 45.571263 - ], - [ - -73.386982, - 45.571372 - ], - [ - -73.38625, - 45.571475 - ], - [ - -73.385674, - 45.57155 - ], - [ - -73.384997, - 45.571649 - ], - [ - -73.383765, - 45.571818 - ], - [ - -73.383299, - 45.571875 - ], - [ - -73.383227, - 45.571593 - ], - [ - -73.382771, - 45.57165 - ] - ] - }, - "id": 74, - "properties": { - "id": "b459799d-3ab6-4ba1-89d0-6064ddebefeb", - "data": { - "gtfs": { - "shape_id": "25_2_R" - }, - "segments": [ - { - "distanceMeters": 1398, - "travelTimeSeconds": 210 - }, - { - "distanceMeters": 364, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 307, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 388, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 508, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 392, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 432, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 477, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 405, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 556, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 501, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 426, - "travelTimeSeconds": 61 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 240, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17595, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 12105.606803880566, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.33, - "travelTimeWithoutDwellTimesSeconds": 2400, - "operatingTimeWithLayoverTimeSeconds": 2640, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2400, - "operatingSpeedWithLayoverMetersPerSecond": 6.66, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.33 - }, - "mode": "bus", - "name": "Parcs industriels", - "color": "#A32638", - "nodes": [ - "4c755ece-2475-4915-941e-37859f0f391f", - "2e804fba-75d7-4c69-a7f7-706998c1a6f1", - "72e3e510-0ae4-407e-a30d-82f52f41e278", - "28559490-1b1e-4bd4-83e1-408fd6a20c77", - "28d90293-1261-41be-a75c-5fc82c3acd49", - "dadcd93c-5469-44bf-8e3e-ccac4a5af110", - "2d2815ee-443f-48d9-a68e-7f53a9aa6216", - "52f97fd3-6c91-420e-82d2-2198f2064d40", - "45ed93e4-f128-470f-b287-4d6ddc400e49", - "d9324afd-9cb7-46ba-ad04-bb8387256785", - "72c849ab-069a-4dc5-92fe-9ecc63ba074d", - "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", - "09bf17cd-9db1-41e3-b993-62146cb91158", - "bc056e84-1f20-4604-aad7-40427c6685a6", - "c879a803-d58b-4487-8291-391e9b516d3c", - "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", - "261a087b-9323-4696-9046-146a299af43d", - "0bcb0e97-db40-44bb-afe9-f6212a5b6387", - "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", - "84a0424b-0f35-4bd8-8109-5ac9219d5869", - "2d4bab42-76d4-4d53-9416-1ff754c71d1d", - "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", - "de56e105-40ff-411e-a830-378b68780088", - "056bf57a-8baa-407d-9c70-a2dcb2e36aea", - "3e6f6ee6-af44-48b8-9b96-431c0dfdb40c", - "cbdc89b0-549e-41a3-becc-56a1e8c831ce", - "3fa535d7-2c06-4fc3-ac22-347da96e9a38", - "a0c45e7b-af06-4ea8-a82a-a658b829e198", - "41fd6b6d-a514-49a6-acf5-1a39152b0c5f", - "7330c47a-92ea-4650-a95f-c6010983e0e2", - "efdd0b14-8e79-4a0f-85cb-f5ec3d032eec", - "a09356f2-d06c-43dd-b67b-b970ca63de4c", - "9ce474bd-b957-414c-a2bb-a8fbae6720a2", - "fe1423a8-e632-40f2-9b1e-93314e069a43", - "0bacad01-6fc4-40da-8f15-64bf9bb6a474", - "f52f270d-1079-4b27-a78b-f9321a1c3b1f", - "bf606954-197a-4c94-b8d0-fda71ab755ca", - "804d8b1f-4ada-4e34-bf79-888a34e590ac", - "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", - "33622e57-d444-4916-a7fb-d1fa4643eb90", - "e979db3f-26cd-41d5-8708-f07b7090bef0", - "83669f2f-a25c-47b1-99a1-53a7c08fed91", - "a77f8bf1-6b13-445b-a79c-6b0770c935c0", - "68d70807-e1f4-4393-a156-0cb02f37fe17", - "f1fdc85c-124b-4428-8960-81d8b0fa863a", - "af75f57b-23de-436e-ac1d-d36a204dd0cd", - "cb78d8bd-4b44-40b3-8301-c4501b063d48", - "58c5658c-7476-4072-998b-0663b682b8a6", - "b734f683-dc9f-47d6-a659-53e6bf9d2915", - "072328a7-3894-4360-8b61-c1e252d6cd3a", - "0041d8ec-3bef-4a62-90da-3711f5d509d2", - "2fb188f9-f7b1-471b-a5d6-51581b357b49", - "494eea8e-2f4e-4123-9eb6-ab837bba3b5d", - "4ff6fce9-ceb0-4a73-9642-e337dacfd9e4", - "0be77fd1-e022-43e1-8779-3871b7711e4b", - "bd49edea-1c3c-4a69-a5c6-0057e6bf7cb0", - "3ec963de-e577-4386-969b-85a9eb8b7aaf", - "7335aafe-31d7-4598-a3ca-7bfa36ca76b3", - "35827d6c-59cb-43b0-bfdd-eaa586fe772c", - "b195cac8-133e-4e85-98b4-0a7ab23c800c" - ], - "stops": [], - "line_id": "3dd0da2d-881a-4bb0-bf0c-519de288b81a", - "segments": [ - 0, - 57, - 73, - 76, - 78, - 82, - 85, - 88, - 94, - 99, - 102, - 105, - 120, - 131, - 145, - 147, - 150, - 152, - 154, - 160, - 164, - 174, - 189, - 205, - 212, - 214, - 216, - 218, - 221, - 223, - 225, - 226, - 228, - 239, - 247, - 251, - 258, - 262, - 267, - 424, - 436, - 444, - 449, - 458, - 460, - 468, - 470, - 473, - 479, - 487, - 497, - 501, - 502, - 510, - 511, - 516, - 526, - 534, - 543, - 553 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 74, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.398096, - 45.567844 - ], - [ - -73.398275, - 45.567729 - ], - [ - -73.399112, - 45.567217 - ], - [ - -73.400859, - 45.566125 - ], - [ - -73.403138, - 45.564701 - ], - [ - -73.404259, - 45.565548 - ], - [ - -73.404576, - 45.565795 - ], - [ - -73.404606, - 45.565818 - ], - [ - -73.40476, - 45.565935 - ], - [ - -73.405022, - 45.566133 - ], - [ - -73.405555, - 45.566548 - ], - [ - -73.405788, - 45.56673 - ], - [ - -73.405791, - 45.566732 - ], - [ - -73.406251, - 45.567093 - ], - [ - -73.406658, - 45.567399 - ], - [ - -73.406831, - 45.567543 - ], - [ - -73.407025, - 45.567701 - ], - [ - -73.407271, - 45.567849 - ], - [ - -73.407608, - 45.567993 - ], - [ - -73.407857, - 45.568048 - ], - [ - -73.408124, - 45.568079 - ], - [ - -73.408536, - 45.56808 - ], - [ - -73.409698, - 45.568013 - ], - [ - -73.410197, - 45.567982 - ], - [ - -73.410353, - 45.567973 - ], - [ - -73.41084, - 45.567947 - ], - [ - -73.412675, - 45.56784 - ], - [ - -73.413977, - 45.567764 - ], - [ - -73.414161, - 45.567751 - ], - [ - -73.414428, - 45.567711 - ], - [ - -73.414614, - 45.567648 - ], - [ - -73.414771, - 45.567599 - ], - [ - -73.415031, - 45.567473 - ], - [ - -73.415251, - 45.567358 - ], - [ - -73.415452, - 45.567253 - ], - [ - -73.417439, - 45.566153 - ], - [ - -73.419551, - 45.564984 - ], - [ - -73.420276, - 45.564579 - ], - [ - -73.420525, - 45.56444 - ], - [ - -73.420894, - 45.564251 - ], - [ - -73.42122, - 45.564089 - ], - [ - -73.421549, - 45.563919 - ], - [ - -73.422142, - 45.563568 - ], - [ - -73.423897, - 45.562597 - ], - [ - -73.424088, - 45.562481 - ], - [ - -73.424434, - 45.562242 - ], - [ - -73.424918, - 45.56188 - ], - [ - -73.425154, - 45.561703 - ], - [ - -73.425425, - 45.561919 - ], - [ - -73.425805, - 45.562207 - ], - [ - -73.425983, - 45.562302 - ], - [ - -73.426215, - 45.562374 - ], - [ - -73.426453, - 45.562424 - ], - [ - -73.426484, - 45.562427 - ], - [ - -73.426691, - 45.562451 - ], - [ - -73.426924, - 45.562451 - ], - [ - -73.428161, - 45.562447 - ], - [ - -73.42868, - 45.562443 - ], - [ - -73.429174, - 45.562439 - ], - [ - -73.43018, - 45.562453 - ], - [ - -73.430874, - 45.562507 - ], - [ - -73.431467, - 45.562553 - ], - [ - -73.431994, - 45.562621 - ], - [ - -73.432113, - 45.562638 - ], - [ - -73.432792, - 45.562738 - ], - [ - -73.433489, - 45.562878 - ], - [ - -73.43612, - 45.563442 - ], - [ - -73.436814, - 45.563591 - ], - [ - -73.439971, - 45.564273 - ], - [ - -73.441131, - 45.564524 - ], - [ - -73.441357, - 45.564551 - ], - [ - -73.441513, - 45.564534 - ], - [ - -73.441648, - 45.564502 - ], - [ - -73.441764, - 45.564435 - ], - [ - -73.442019, - 45.564279 - ], - [ - -73.442132, - 45.56421 - ], - [ - -73.442266, - 45.564115 - ], - [ - -73.442879, - 45.56457 - ], - [ - -73.443329, - 45.564927 - ], - [ - -73.443981, - 45.565444 - ], - [ - -73.444144, - 45.565592 - ], - [ - -73.443963, - 45.565808 - ], - [ - -73.442699, - 45.567027 - ], - [ - -73.442645, - 45.567108 - ], - [ - -73.442626, - 45.567202 - ], - [ - -73.44266, - 45.567297 - ], - [ - -73.442738, - 45.567373 - ], - [ - -73.443752, - 45.568149 - ], - [ - -73.444286, - 45.568557 - ], - [ - -73.444688, - 45.568854 - ], - [ - -73.444719, - 45.568877 - ], - [ - -73.445075, - 45.56914 - ], - [ - -73.445158, - 45.569201 - ], - [ - -73.445832, - 45.569723 - ], - [ - -73.44598, - 45.569845 - ], - [ - -73.446079, - 45.569912 - ], - [ - -73.446194, - 45.569957 - ], - [ - -73.446311, - 45.569989 - ], - [ - -73.4464, - 45.570007 - ], - [ - -73.446579, - 45.570042 - ], - [ - -73.447945, - 45.570309 - ], - [ - -73.448177, - 45.570336 - ], - [ - -73.448494, - 45.570395 - ], - [ - -73.449049, - 45.570517 - ], - [ - -73.449223, - 45.570544 - ], - [ - -73.449264, - 45.570454 - ], - [ - -73.449543, - 45.569814 - ], - [ - -73.44969, - 45.569482 - ], - [ - -73.449722, - 45.56941 - ], - [ - -73.449947, - 45.568902 - ], - [ - -73.449982, - 45.56883 - ], - [ - -73.450051, - 45.568681 - ], - [ - -73.450055, - 45.568672 - ], - [ - -73.450057, - 45.568668 - ], - [ - -73.450059, - 45.568663 - ], - [ - -73.450061, - 45.568659 - ], - [ - -73.450063, - 45.568654 - ], - [ - -73.450065, - 45.56865 - ], - [ - -73.450067, - 45.568645 - ], - [ - -73.450069, - 45.568641 - ], - [ - -73.450071, - 45.568636 - ], - [ - -73.450072, - 45.568632 - ], - [ - -73.450074, - 45.568627 - ], - [ - -73.450076, - 45.568623 - ], - [ - -73.450078, - 45.568618 - ], - [ - -73.45008, - 45.568618 - ], - [ - -73.450082, - 45.568614 - ], - [ - -73.450084, - 45.568609 - ], - [ - -73.450086, - 45.568605 - ], - [ - -73.450087, - 45.5686 - ], - [ - -73.450089, - 45.568596 - ], - [ - -73.450091, - 45.568591 - ], - [ - -73.450093, - 45.568587 - ], - [ - -73.450095, - 45.568582 - ], - [ - -73.450097, - 45.568578 - ], - [ - -73.450099, - 45.568573 - ], - [ - -73.450101, - 45.568569 - ], - [ - -73.450102, - 45.568564 - ], - [ - -73.450104, - 45.56856 - ], - [ - -73.450106, - 45.568555 - ], - [ - -73.450108, - 45.568551 - ], - [ - -73.45011, - 45.568546 - ], - [ - -73.450112, - 45.568542 - ], - [ - -73.450114, - 45.568537 - ], - [ - -73.450115, - 45.568533 - ], - [ - -73.450117, - 45.568528 - ], - [ - -73.450119, - 45.568524 - ], - [ - -73.45012, - 45.568519 - ], - [ - -73.450122, - 45.568519 - ], - [ - -73.450124, - 45.568515 - ], - [ - -73.450126, - 45.56851 - ], - [ - -73.450128, - 45.568506 - ], - [ - -73.450129, - 45.568501 - ], - [ - -73.450131, - 45.568497 - ], - [ - -73.450133, - 45.568492 - ], - [ - -73.450134, - 45.568488 - ], - [ - -73.450136, - 45.568483 - ], - [ - -73.450138, - 45.568479 - ], - [ - -73.45014, - 45.568474 - ], - [ - -73.450141, - 45.56847 - ], - [ - -73.450143, - 45.568465 - ], - [ - -73.450145, - 45.568461 - ], - [ - -73.450146, - 45.568456 - ], - [ - -73.450146, - 45.568456 - ], - [ - -73.450148, - 45.568452 - ], - [ - -73.45015, - 45.568447 - ], - [ - -73.450151, - 45.568443 - ], - [ - -73.450153, - 45.568438 - ], - [ - -73.450154, - 45.568434 - ], - [ - -73.450156, - 45.568429 - ], - [ - -73.450158, - 45.568425 - ], - [ - -73.45016, - 45.56842 - ], - [ - -73.450161, - 45.568416 - ], - [ - -73.450163, - 45.568411 - ], - [ - -73.450164, - 45.568407 - ], - [ - -73.450166, - 45.568402 - ], - [ - -73.450168, - 45.568398 - ], - [ - -73.450169, - 45.568393 - ], - [ - -73.450171, - 45.568393 - ], - [ - -73.450173, - 45.568389 - ], - [ - -73.450174, - 45.568384 - ], - [ - -73.450175, - 45.56838 - ], - [ - -73.450177, - 45.568375 - ], - [ - -73.450179, - 45.568371 - ], - [ - -73.45018, - 45.568366 - ], - [ - -73.450182, - 45.568362 - ], - [ - -73.450183, - 45.568357 - ], - [ - -73.450185, - 45.568353 - ], - [ - -73.450186, - 45.568348 - ], - [ - -73.450188, - 45.568344 - ], - [ - -73.450189, - 45.568339 - ], - [ - -73.450191, - 45.568335 - ], - [ - -73.450192, - 45.56833 - ], - [ - -73.450194, - 45.568326 - ], - [ - -73.450195, - 45.568321 - ], - [ - -73.450197, - 45.568317 - ], - [ - -73.450198, - 45.568312 - ], - [ - -73.4502, - 45.568308 - ], - [ - -73.450201, - 45.568303 - ], - [ - -73.450203, - 45.568299 - ], - [ - -73.450204, - 45.568294 - ], - [ - -73.450205, - 45.56829 - ], - [ - -73.450207, - 45.568285 - ], - [ - -73.450208, - 45.568281 - ], - [ - -73.45021, - 45.568276 - ], - [ - -73.450211, - 45.568272 - ], - [ - -73.450213, - 45.568267 - ], - [ - -73.450214, - 45.568263 - ], - [ - -73.450215, - 45.568258 - ], - [ - -73.450217, - 45.568254 - ], - [ - -73.450218, - 45.568249 - ], - [ - -73.450219, - 45.568245 - ], - [ - -73.450221, - 45.56824 - ], - [ - -73.450222, - 45.568236 - ], - [ - -73.450224, - 45.568231 - ], - [ - -73.450225, - 45.568227 - ], - [ - -73.450226, - 45.568227 - ], - [ - -73.450228, - 45.568222 - ], - [ - -73.450229, - 45.568218 - ], - [ - -73.45023, - 45.568213 - ], - [ - -73.450232, - 45.568209 - ], - [ - -73.450233, - 45.568204 - ], - [ - -73.450234, - 45.5682 - ], - [ - -73.450236, - 45.568195 - ], - [ - -73.450237, - 45.568191 - ], - [ - -73.450238, - 45.568186 - ], - [ - -73.45024, - 45.568182 - ], - [ - -73.450241, - 45.568177 - ], - [ - -73.450242, - 45.568173 - ], - [ - -73.450244, - 45.568168 - ], - [ - -73.450245, - 45.568164 - ], - [ - -73.450246, - 45.568159 - ], - [ - -73.450247, - 45.568155 - ], - [ - -73.450248, - 45.56815 - ], - [ - -73.45025, - 45.568146 - ], - [ - -73.450251, - 45.568141 - ], - [ - -73.450252, - 45.568137 - ], - [ - -73.450253, - 45.568132 - ], - [ - -73.450254, - 45.568128 - ], - [ - -73.450256, - 45.568123 - ], - [ - -73.450257, - 45.568119 - ], - [ - -73.450258, - 45.568114 - ], - [ - -73.450259, - 45.56811 - ], - [ - -73.45026, - 45.568105 - ], - [ - -73.450262, - 45.568101 - ], - [ - -73.450263, - 45.568096 - ], - [ - -73.450264, - 45.568092 - ], - [ - -73.450265, - 45.568088 - ], - [ - -73.450266, - 45.568083 - ], - [ - -73.450267, - 45.568079 - ], - [ - -73.450268, - 45.568074 - ], - [ - -73.45027, - 45.56807 - ], - [ - -73.450271, - 45.568065 - ], - [ - -73.450272, - 45.568061 - ], - [ - -73.450273, - 45.568056 - ], - [ - -73.450274, - 45.568052 - ], - [ - -73.450275, - 45.568047 - ], - [ - -73.450277, - 45.568043 - ], - [ - -73.450277, - 45.568038 - ], - [ - -73.450279, - 45.568034 - ], - [ - -73.45028, - 45.568029 - ], - [ - -73.450281, - 45.568025 - ], - [ - -73.450282, - 45.56802 - ], - [ - -73.450283, - 45.568016 - ], - [ - -73.450284, - 45.568011 - ], - [ - -73.450285, - 45.568007 - ], - [ - -73.450286, - 45.568002 - ], - [ - -73.450287, - 45.567998 - ], - [ - -73.450288, - 45.567993 - ], - [ - -73.450289, - 45.567989 - ], - [ - -73.45029, - 45.567984 - ], - [ - -73.450291, - 45.56798 - ], - [ - -73.450292, - 45.567975 - ], - [ - -73.450293, - 45.567971 - ], - [ - -73.450294, - 45.567966 - ], - [ - -73.450295, - 45.567962 - ], - [ - -73.450296, - 45.567957 - ], - [ - -73.450297, - 45.567957 - ], - [ - -73.450298, - 45.567953 - ], - [ - -73.450299, - 45.567948 - ], - [ - -73.4503, - 45.567944 - ], - [ - -73.450301, - 45.567939 - ], - [ - -73.450301, - 45.567935 - ], - [ - -73.450302, - 45.56793 - ], - [ - -73.450303, - 45.567926 - ], - [ - -73.450304, - 45.567921 - ], - [ - -73.450305, - 45.567917 - ], - [ - -73.450306, - 45.567912 - ], - [ - -73.450307, - 45.567908 - ], - [ - -73.450308, - 45.567903 - ], - [ - -73.450309, - 45.567899 - ], - [ - -73.450309, - 45.567894 - ], - [ - -73.45031, - 45.56789 - ], - [ - -73.450311, - 45.567885 - ], - [ - -73.450312, - 45.567881 - ], - [ - -73.450313, - 45.567876 - ], - [ - -73.450314, - 45.567872 - ], - [ - -73.450315, - 45.567867 - ], - [ - -73.450316, - 45.567863 - ], - [ - -73.450316, - 45.567858 - ], - [ - -73.450317, - 45.567854 - ], - [ - -73.450318, - 45.567849 - ], - [ - -73.450319, - 45.567845 - ], - [ - -73.45032, - 45.56784 - ], - [ - -73.45032, - 45.567836 - ], - [ - -73.450321, - 45.567831 - ], - [ - -73.450322, - 45.567827 - ], - [ - -73.450323, - 45.567822 - ], - [ - -73.450324, - 45.567818 - ], - [ - -73.450324, - 45.567813 - ], - [ - -73.450325, - 45.567809 - ], - [ - -73.450326, - 45.567804 - ], - [ - -73.450326, - 45.5678 - ], - [ - -73.450327, - 45.567795 - ], - [ - -73.450328, - 45.567791 - ], - [ - -73.450329, - 45.567786 - ], - [ - -73.450329, - 45.567782 - ], - [ - -73.45033, - 45.567777 - ], - [ - -73.450331, - 45.567773 - ], - [ - -73.450332, - 45.567768 - ], - [ - -73.450332, - 45.567764 - ], - [ - -73.450333, - 45.567759 - ], - [ - -73.450334, - 45.567755 - ], - [ - -73.450334, - 45.56775 - ], - [ - -73.450335, - 45.567746 - ], - [ - -73.450336, - 45.567741 - ], - [ - -73.450336, - 45.567737 - ], - [ - -73.450337, - 45.567732 - ], - [ - -73.450337, - 45.567728 - ], - [ - -73.450338, - 45.567723 - ], - [ - -73.450339, - 45.567719 - ], - [ - -73.450339, - 45.567714 - ], - [ - -73.45034, - 45.56771 - ], - [ - -73.45034, - 45.567705 - ], - [ - -73.450341, - 45.567701 - ], - [ - -73.450342, - 45.567696 - ], - [ - -73.450342, - 45.567692 - ], - [ - -73.450343, - 45.567687 - ], - [ - -73.450343, - 45.567683 - ], - [ - -73.450344, - 45.567678 - ], - [ - -73.450345, - 45.567674 - ], - [ - -73.450345, - 45.567669 - ], - [ - -73.450346, - 45.567665 - ], - [ - -73.450346, - 45.56766 - ], - [ - -73.450347, - 45.567656 - ], - [ - -73.450347, - 45.567651 - ], - [ - -73.450348, - 45.567647 - ], - [ - -73.450348, - 45.567642 - ], - [ - -73.450349, - 45.567638 - ], - [ - -73.450349, - 45.567633 - ], - [ - -73.45035, - 45.567629 - ], - [ - -73.45035, - 45.567624 - ], - [ - -73.450351, - 45.56762 - ], - [ - -73.450351, - 45.567615 - ], - [ - -73.450352, - 45.567611 - ], - [ - -73.450352, - 45.567606 - ], - [ - -73.450353, - 45.567602 - ], - [ - -73.450353, - 45.567597 - ], - [ - -73.450353, - 45.567593 - ], - [ - -73.450354, - 45.567588 - ], - [ - -73.450355, - 45.567584 - ], - [ - -73.450355, - 45.567579 - ], - [ - -73.450355, - 45.567575 - ], - [ - -73.450356, - 45.56757 - ], - [ - -73.450356, - 45.567566 - ], - [ - -73.450357, - 45.567561 - ], - [ - -73.450357, - 45.567557 - ], - [ - -73.450357, - 45.567552 - ], - [ - -73.45036, - 45.567548 - ], - [ - -73.45038, - 45.567017 - ], - [ - -73.450434, - 45.565568 - ], - [ - -73.450435, - 45.565535 - ], - [ - -73.450469, - 45.564632 - ], - [ - -73.450501, - 45.563818 - ], - [ - -73.450514, - 45.563467 - ], - [ - -73.450528, - 45.563038 - ], - [ - -73.450546, - 45.562441 - ], - [ - -73.450644, - 45.562216 - ], - [ - -73.450694, - 45.562131 - ], - [ - -73.450783, - 45.562045 - ], - [ - -73.450893, - 45.561982 - ], - [ - -73.451026, - 45.561928 - ], - [ - -73.451225, - 45.561875 - ], - [ - -73.453525, - 45.561813 - ], - [ - -73.454569, - 45.561789 - ], - [ - -73.455653, - 45.561764 - ], - [ - -73.455991, - 45.561756 - ], - [ - -73.459012, - 45.561684 - ], - [ - -73.459275, - 45.561684 - ], - [ - -73.460731, - 45.561644 - ], - [ - -73.461442, - 45.561624 - ], - [ - -73.461679, - 45.561618 - ], - [ - -73.461849, - 45.561685 - ], - [ - -73.461894, - 45.561703 - ], - [ - -73.461935, - 45.561735 - ], - [ - -73.46197, - 45.561762 - ], - [ - -73.46208, - 45.56187 - ], - [ - -73.462094, - 45.562248 - ], - [ - -73.462108, - 45.562302 - ], - [ - -73.462138, - 45.562369 - ], - [ - -73.462191, - 45.562437 - ], - [ - -73.462226, - 45.562464 - ], - [ - -73.462324, - 45.56254 - ], - [ - -73.463645, - 45.56354 - ], - [ - -73.463775, - 45.563638 - ], - [ - -73.465781, - 45.565191 - ], - [ - -73.468089, - 45.566977 - ], - [ - -73.468142, - 45.567019 - ], - [ - -73.470974, - 45.569209 - ], - [ - -73.471116, - 45.569318 - ], - [ - -73.473094, - 45.570835 - ], - [ - -73.473129, - 45.570862 - ], - [ - -73.473953, - 45.571492 - ], - [ - -73.474759, - 45.572109 - ], - [ - -73.47592, - 45.572995 - ], - [ - -73.475992, - 45.573049 - ], - [ - -73.476026, - 45.573085 - ], - [ - -73.477034, - 45.573852 - ], - [ - -73.47886, - 45.575219 - ], - [ - -73.479129, - 45.57542 - ], - [ - -73.479185, - 45.575469 - ], - [ - -73.47919, - 45.575474 - ], - [ - -73.479274, - 45.575534 - ], - [ - -73.47941, - 45.575433 - ], - [ - -73.479496, - 45.575361 - ], - [ - -73.479622, - 45.575253 - ], - [ - -73.4798, - 45.575097 - ], - [ - -73.479996, - 45.574941 - ], - [ - -73.480237, - 45.574738 - ], - [ - -73.48034, - 45.574648 - ], - [ - -73.480453, - 45.574551 - ], - [ - -73.480801, - 45.574263 - ], - [ - -73.481358, - 45.573789 - ], - [ - -73.481529, - 45.573644 - ], - [ - -73.481972, - 45.573269 - ], - [ - -73.482082, - 45.573173 - ], - [ - -73.482204, - 45.573068 - ], - [ - -73.482412, - 45.572903 - ], - [ - -73.482823, - 45.572557 - ], - [ - -73.482916, - 45.572476 - ], - [ - -73.482986, - 45.57241 - ], - [ - -73.483315, - 45.572122 - ], - [ - -73.483678, - 45.571813 - ], - [ - -73.483735, - 45.571764 - ], - [ - -73.483843, - 45.57167 - ], - [ - -73.484123, - 45.57144 - ], - [ - -73.484526, - 45.571099 - ], - [ - -73.484935, - 45.570755 - ], - [ - -73.484967, - 45.570727 - ], - [ - -73.485483, - 45.570269 - ], - [ - -73.485867, - 45.569908 - ], - [ - -73.485881, - 45.569894 - ], - [ - -73.485994, - 45.569784 - ], - [ - -73.486085, - 45.569691 - ], - [ - -73.486421, - 45.569373 - ], - [ - -73.487037, - 45.568739 - ], - [ - -73.487188, - 45.568584 - ], - [ - -73.487556, - 45.568196 - ], - [ - -73.487608, - 45.568138 - ], - [ - -73.488016, - 45.567684 - ], - [ - -73.488394, - 45.567236 - ], - [ - -73.488839, - 45.56671 - ], - [ - -73.488926, - 45.566606 - ], - [ - -73.489299, - 45.566117 - ], - [ - -73.489627, - 45.565684 - ], - [ - -73.489917, - 45.565286 - ], - [ - -73.490075, - 45.56507 - ], - [ - -73.490593, - 45.5643 - ], - [ - -73.490754, - 45.564056 - ], - [ - -73.491532, - 45.562873 - ], - [ - -73.491593, - 45.562778 - ], - [ - -73.491626, - 45.562725 - ], - [ - -73.4917, - 45.562606 - ], - [ - -73.491908, - 45.562298 - ], - [ - -73.49207, - 45.56203 - ], - [ - -73.492185, - 45.561871 - ], - [ - -73.492369, - 45.561588 - ], - [ - -73.49239, - 45.561557 - ], - [ - -73.492391, - 45.561555 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.494716, - 45.558369 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498677, - 45.553944 - ], - [ - -73.498726, - 45.553872 - ], - [ - -73.498813, - 45.553714 - ], - [ - -73.498895, - 45.553562 - ], - [ - -73.49895, - 45.553404 - ], - [ - -73.498964, - 45.55335 - ], - [ - -73.498988, - 45.55326 - ], - [ - -73.499026, - 45.553035 - ], - [ - -73.499051, - 45.55281 - ], - [ - -73.49911, - 45.552261 - ], - [ - -73.499127, - 45.552095 - ], - [ - -73.49916, - 45.551767 - ], - [ - -73.499199, - 45.551371 - ], - [ - -73.49924, - 45.551092 - ], - [ - -73.499284, - 45.550946 - ], - [ - -73.499366, - 45.550811 - ], - [ - -73.499487, - 45.550651 - ], - [ - -73.499683, - 45.550403 - ], - [ - -73.499747, - 45.550322 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.500107, - 45.550074 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.503657, - 45.547898 - ], - [ - -73.503782, - 45.547778 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.505412, - 45.54611 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507878, - 45.543482 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.509779, - 45.541607 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.511274, - 45.540355 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.51299, - 45.53913 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.514321, - 45.538181 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.515311, - 45.537392 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.516475, - 45.536189 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.51822, - 45.534135 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519479, - 45.531846 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519522, - 45.531915 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.51917, - 45.531641 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.518817, - 45.531415 - ], - [ - -73.518763, - 45.531374 - ], - [ - -73.518709, - 45.531325 - ], - [ - -73.518655, - 45.531271 - ], - [ - -73.518619, - 45.531213 - ], - [ - -73.518601, - 45.531154 - ], - [ - -73.518588, - 45.531096 - ], - [ - -73.518588, - 45.531055 - ], - [ - -73.518597, - 45.531006 - ], - [ - -73.518619, - 45.530952 - ], - [ - -73.518659, - 45.530884 - ], - [ - -73.518691, - 45.530826 - ], - [ - -73.518718, - 45.530785 - ], - [ - -73.518753, - 45.530731 - ], - [ - -73.518803, - 45.530646 - ], - [ - -73.518839, - 45.530596 - ], - [ - -73.518875, - 45.530547 - ], - [ - -73.518897, - 45.530497 - ], - [ - -73.518915, - 45.530448 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519398, - 45.526008 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519766, - 45.52338 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52237, - 45.524141 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 75, - "properties": { - "id": "0dfd6db4-5a37-4c27-8199-572025ad2809", - "data": { - "gtfs": { - "shape_id": "25_1_A" - }, - "segments": [ - { - "distanceMeters": 288, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 407, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 598, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 471, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 452, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 457, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 526, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 425, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 335, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 375, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 423, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 331, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 829, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 463, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 335, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 655, - "travelTimeSeconds": 109 - }, - { - "distanceMeters": 829, - "travelTimeSeconds": 138 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 222, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 16477, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10831.790036187247, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.42, - "travelTimeWithoutDwellTimesSeconds": 2220, - "operatingTimeWithLayoverTimeSeconds": 2442, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2220, - "operatingSpeedWithLayoverMetersPerSecond": 6.75, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.42 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "a913c5ce-8de0-458e-a9ee-4ae555d41e98", - "a4120eb1-d1f9-43e5-8720-90115641165b", - "0681e3d4-c5fd-4f85-982e-d5d26960784a", - "2260ef06-cda3-48e1-919a-84c2b44c938b", - "494eea8e-2f4e-4123-9eb6-ab837bba3b5d", - "2fb188f9-f7b1-471b-a5d6-51581b357b49", - "0041d8ec-3bef-4a62-90da-3711f5d509d2", - "0d73df1c-f948-4c1f-ba36-487a91089d51", - "b734f683-dc9f-47d6-a659-53e6bf9d2915", - "58c5658c-7476-4072-998b-0663b682b8a6", - "cb78d8bd-4b44-40b3-8301-c4501b063d48", - "af75f57b-23de-436e-ac1d-d36a204dd0cd", - "f1fdc85c-124b-4428-8960-81d8b0fa863a", - "68d70807-e1f4-4393-a156-0cb02f37fe17", - "a77f8bf1-6b13-445b-a79c-6b0770c935c0", - "83669f2f-a25c-47b1-99a1-53a7c08fed91", - "e979db3f-26cd-41d5-8708-f07b7090bef0", - "33622e57-d444-4916-a7fb-d1fa4643eb90", - "ae6e0f03-aee3-4f3b-9a79-98bb90a35a7a", - "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "911acdc7-e82a-4bb1-aecd-7f8fbf39cc16", - "50e25e6e-b3a0-49ca-b0a6-22261b688cbf", - "767c22ba-e4bc-43df-94bc-025afee14810", - "28b7e465-7627-4587-950e-0fe104f1bac7", - "9ce474bd-b957-414c-a2bb-a8fbae6720a2", - "a09356f2-d06c-43dd-b67b-b970ca63de4c", - "efdd0b14-8e79-4a0f-85cb-f5ec3d032eec", - "7330c47a-92ea-4650-a95f-c6010983e0e2", - "41fd6b6d-a514-49a6-acf5-1a39152b0c5f", - "a0c45e7b-af06-4ea8-a82a-a658b829e198", - "fb348def-00b5-4574-9848-5f275a3fa42d", - "75347f42-115f-47ec-b394-c1f56ce167fb", - "dc112aae-906c-47be-a1fb-06ef714fd1ab", - "ab105343-272d-4aa3-9238-846c2fa787cb", - "24527bed-7ea6-44d6-b6db-18ac609f4938", - "1b1077ca-8a37-46a1-a7be-751ea2f7f2ae", - "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", - "d5099816-374e-4ebc-ab50-5ca4d2f829e5", - "84a0424b-0f35-4bd8-8109-5ac9219d5869", - "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", - "261a087b-9323-4696-9046-146a299af43d", - "66456437-f154-4a2f-a12f-2f54cf668687", - "820a9d7c-25e9-487c-9e51-cfefcb1432f7", - "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", - "72c849ab-069a-4dc5-92fe-9ecc63ba074d", - "d9324afd-9cb7-46ba-ad04-bb8387256785", - "45ed93e4-f128-470f-b287-4d6ddc400e49", - "52f97fd3-6c91-420e-82d2-2198f2064d40", - "2d2815ee-443f-48d9-a68e-7f53a9aa6216", - "dadcd93c-5469-44bf-8e3e-ccac4a5af110", - "28d90293-1261-41be-a75c-5fc82c3acd49", - "28559490-1b1e-4bd4-83e1-408fd6a20c77", - "72e3e510-0ae4-407e-a30d-82f52f41e278", - "2e804fba-75d7-4c69-a7f7-706998c1a6f1", - "4fb4515b-e129-4622-b855-89143c2fd488", - "4c755ece-2475-4915-941e-37859f0f391f" - ], - "stops": [], - "line_id": "3dd0da2d-881a-4bb0-bf0c-519de288b81a", - "segments": [ - 0, - 3, - 7, - 11, - 26, - 33, - 35, - 37, - 46, - 57, - 63, - 66, - 68, - 74, - 78, - 87, - 91, - 99, - 162, - 369, - 371, - 375, - 386, - 390, - 401, - 403, - 405, - 406, - 408, - 410, - 414, - 420, - 429, - 435, - 443, - 451, - 461, - 468, - 471, - 477, - 483, - 499, - 505, - 523, - 526, - 530, - 534, - 541, - 544, - 546, - 550, - 553, - 556, - 574, - 605 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 75, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.382771, - 45.57165 - ], - [ - -73.38222, - 45.571719 - ], - [ - -73.382265, - 45.571886 - ], - [ - -73.382294, - 45.571994 - ], - [ - -73.383299, - 45.571875 - ], - [ - -73.383765, - 45.571818 - ], - [ - -73.384997, - 45.571649 - ], - [ - -73.385674, - 45.57155 - ], - [ - -73.38625, - 45.571475 - ], - [ - -73.386982, - 45.571372 - ], - [ - -73.387858, - 45.571256 - ], - [ - -73.387898, - 45.571251 - ], - [ - -73.388912, - 45.571113 - ], - [ - -73.389658, - 45.571014 - ], - [ - -73.390528, - 45.570894 - ], - [ - -73.391191, - 45.570804 - ], - [ - -73.392081, - 45.570684 - ], - [ - -73.39269, - 45.570599 - ], - [ - -73.39317, - 45.570536 - ], - [ - -73.393727, - 45.570456 - ], - [ - -73.394094, - 45.570409 - ], - [ - -73.394177, - 45.570398 - ], - [ - -73.39531, - 45.570246 - ], - [ - -73.396252, - 45.570116 - ], - [ - -73.397337, - 45.569982 - ], - [ - -73.398872, - 45.569831 - ], - [ - -73.398868, - 45.569534 - ], - [ - -73.398845, - 45.569466 - ], - [ - -73.398791, - 45.569385 - ], - [ - -73.398457, - 45.56912 - ], - [ - -73.397619, - 45.568457 - ], - [ - -73.397569, - 45.56839 - ], - [ - -73.397545, - 45.56834 - ], - [ - -73.397554, - 45.56825 - ], - [ - -73.397609, - 45.568156 - ], - [ - -73.397687, - 45.568106 - ], - [ - -73.398109, - 45.567835 - ], - [ - -73.398275, - 45.567729 - ], - [ - -73.399112, - 45.567217 - ], - [ - -73.400881, - 45.566111 - ], - [ - -73.403138, - 45.564701 - ], - [ - -73.403374, - 45.56488 - ], - [ - -73.404259, - 45.565548 - ], - [ - -73.404576, - 45.565795 - ], - [ - -73.404617, - 45.565827 - ], - [ - -73.40476, - 45.565935 - ], - [ - -73.405022, - 45.566133 - ], - [ - -73.405555, - 45.566548 - ], - [ - -73.405791, - 45.566732 - ], - [ - -73.405807, - 45.566745 - ], - [ - -73.406251, - 45.567093 - ], - [ - -73.406658, - 45.567399 - ], - [ - -73.406831, - 45.567543 - ], - [ - -73.407025, - 45.567701 - ], - [ - -73.407271, - 45.567849 - ], - [ - -73.407608, - 45.567993 - ], - [ - -73.407857, - 45.568048 - ], - [ - -73.408124, - 45.568079 - ], - [ - -73.408536, - 45.56808 - ], - [ - -73.409698, - 45.568013 - ], - [ - -73.410197, - 45.567982 - ], - [ - -73.410353, - 45.567973 - ], - [ - -73.41084, - 45.567947 - ], - [ - -73.412702, - 45.567838 - ], - [ - -73.413977, - 45.567764 - ], - [ - -73.414161, - 45.567751 - ], - [ - -73.414428, - 45.567711 - ], - [ - -73.414614, - 45.567648 - ], - [ - -73.414771, - 45.567599 - ], - [ - -73.415031, - 45.567473 - ], - [ - -73.415272, - 45.567347 - ], - [ - -73.415452, - 45.567253 - ], - [ - -73.41745, - 45.566146 - ], - [ - -73.419551, - 45.564984 - ], - [ - -73.420297, - 45.564567 - ], - [ - -73.420525, - 45.56444 - ], - [ - -73.420894, - 45.564251 - ], - [ - -73.42122, - 45.564089 - ], - [ - -73.421549, - 45.563919 - ], - [ - -73.422142, - 45.563568 - ], - [ - -73.423897, - 45.562597 - ], - [ - -73.424088, - 45.562481 - ], - [ - -73.424434, - 45.562242 - ], - [ - -73.424935, - 45.561867 - ], - [ - -73.425154, - 45.561703 - ], - [ - -73.425425, - 45.561919 - ], - [ - -73.425805, - 45.562207 - ], - [ - -73.425983, - 45.562302 - ], - [ - -73.426215, - 45.562374 - ], - [ - -73.426453, - 45.562424 - ], - [ - -73.426484, - 45.562427 - ], - [ - -73.426691, - 45.562451 - ], - [ - -73.426924, - 45.562451 - ], - [ - -73.428161, - 45.562447 - ], - [ - -73.428692, - 45.562443 - ], - [ - -73.429174, - 45.562439 - ], - [ - -73.43018, - 45.562453 - ], - [ - -73.430874, - 45.562507 - ], - [ - -73.431467, - 45.562553 - ], - [ - -73.431994, - 45.562621 - ], - [ - -73.432124, - 45.56264 - ], - [ - -73.432792, - 45.562738 - ], - [ - -73.433489, - 45.562878 - ], - [ - -73.436131, - 45.563444 - ], - [ - -73.436814, - 45.563591 - ], - [ - -73.439993, - 45.564278 - ], - [ - -73.441131, - 45.564524 - ], - [ - -73.441357, - 45.564551 - ], - [ - -73.441513, - 45.564534 - ], - [ - -73.441648, - 45.564502 - ], - [ - -73.441764, - 45.564435 - ], - [ - -73.442037, - 45.564268 - ], - [ - -73.442132, - 45.56421 - ], - [ - -73.442266, - 45.564115 - ], - [ - -73.442879, - 45.56457 - ], - [ - -73.443335, - 45.564932 - ], - [ - -73.443981, - 45.565444 - ], - [ - -73.444144, - 45.565592 - ], - [ - -73.443963, - 45.565808 - ], - [ - -73.442699, - 45.567027 - ], - [ - -73.442645, - 45.567108 - ], - [ - -73.442626, - 45.567202 - ], - [ - -73.44266, - 45.567297 - ], - [ - -73.442738, - 45.567373 - ], - [ - -73.443766, - 45.56816 - ], - [ - -73.444286, - 45.568557 - ], - [ - -73.444688, - 45.568854 - ], - [ - -73.444719, - 45.568877 - ], - [ - -73.44509, - 45.569151 - ], - [ - -73.445158, - 45.569201 - ], - [ - -73.445832, - 45.569723 - ], - [ - -73.44598, - 45.569845 - ], - [ - -73.446079, - 45.569912 - ], - [ - -73.446194, - 45.569957 - ], - [ - -73.446311, - 45.569989 - ], - [ - -73.4464, - 45.570007 - ], - [ - -73.446587, - 45.570044 - ], - [ - -73.447945, - 45.570309 - ], - [ - -73.448177, - 45.570336 - ], - [ - -73.448494, - 45.570395 - ], - [ - -73.449049, - 45.570517 - ], - [ - -73.449223, - 45.570544 - ], - [ - -73.449264, - 45.570454 - ], - [ - -73.449543, - 45.569814 - ], - [ - -73.44969, - 45.569482 - ], - [ - -73.449722, - 45.56941 - ], - [ - -73.449947, - 45.568902 - ], - [ - -73.449982, - 45.56883 - ], - [ - -73.450051, - 45.568681 - ], - [ - -73.450055, - 45.568672 - ], - [ - -73.450057, - 45.568668 - ], - [ - -73.450059, - 45.568663 - ], - [ - -73.450061, - 45.568659 - ], - [ - -73.450063, - 45.568654 - ], - [ - -73.450065, - 45.56865 - ], - [ - -73.450067, - 45.568645 - ], - [ - -73.450069, - 45.568641 - ], - [ - -73.450071, - 45.568636 - ], - [ - -73.450072, - 45.568632 - ], - [ - -73.450074, - 45.568627 - ], - [ - -73.450076, - 45.568623 - ], - [ - -73.450078, - 45.568618 - ], - [ - -73.45008, - 45.568618 - ], - [ - -73.450082, - 45.568614 - ], - [ - -73.450084, - 45.568609 - ], - [ - -73.450086, - 45.568605 - ], - [ - -73.450087, - 45.5686 - ], - [ - -73.450089, - 45.568596 - ], - [ - -73.450091, - 45.568591 - ], - [ - -73.450093, - 45.568587 - ], - [ - -73.450095, - 45.568582 - ], - [ - -73.450097, - 45.568578 - ], - [ - -73.450099, - 45.568573 - ], - [ - -73.450101, - 45.568569 - ], - [ - -73.450102, - 45.568564 - ], - [ - -73.450104, - 45.56856 - ], - [ - -73.450106, - 45.568555 - ], - [ - -73.450108, - 45.568551 - ], - [ - -73.45011, - 45.568546 - ], - [ - -73.450112, - 45.568542 - ], - [ - -73.450114, - 45.568537 - ], - [ - -73.450115, - 45.568533 - ], - [ - -73.450117, - 45.568528 - ], - [ - -73.450119, - 45.568524 - ], - [ - -73.45012, - 45.568519 - ], - [ - -73.450122, - 45.568519 - ], - [ - -73.450124, - 45.568515 - ], - [ - -73.450126, - 45.56851 - ], - [ - -73.450128, - 45.568506 - ], - [ - -73.450129, - 45.568501 - ], - [ - -73.450131, - 45.568497 - ], - [ - -73.450133, - 45.568492 - ], - [ - -73.450134, - 45.568488 - ], - [ - -73.450136, - 45.568483 - ], - [ - -73.450138, - 45.568479 - ], - [ - -73.45014, - 45.568474 - ], - [ - -73.450141, - 45.56847 - ], - [ - -73.450143, - 45.568465 - ], - [ - -73.450145, - 45.568461 - ], - [ - -73.450146, - 45.568456 - ], - [ - -73.450148, - 45.568452 - ], - [ - -73.450148, - 45.568451 - ], - [ - -73.45015, - 45.568447 - ], - [ - -73.450151, - 45.568443 - ], - [ - -73.450153, - 45.568438 - ], - [ - -73.450154, - 45.568434 - ], - [ - -73.450156, - 45.568429 - ], - [ - -73.450158, - 45.568425 - ], - [ - -73.45016, - 45.56842 - ], - [ - -73.450161, - 45.568416 - ], - [ - -73.450163, - 45.568411 - ], - [ - -73.450164, - 45.568407 - ], - [ - -73.450166, - 45.568402 - ], - [ - -73.450168, - 45.568398 - ], - [ - -73.450169, - 45.568393 - ], - [ - -73.450171, - 45.568393 - ], - [ - -73.450173, - 45.568389 - ], - [ - -73.450174, - 45.568384 - ], - [ - -73.450175, - 45.56838 - ], - [ - -73.450177, - 45.568375 - ], - [ - -73.450179, - 45.568371 - ], - [ - -73.45018, - 45.568366 - ], - [ - -73.450182, - 45.568362 - ], - [ - -73.450183, - 45.568357 - ], - [ - -73.450185, - 45.568353 - ], - [ - -73.450186, - 45.568348 - ], - [ - -73.450188, - 45.568344 - ], - [ - -73.450189, - 45.568339 - ], - [ - -73.450191, - 45.568335 - ], - [ - -73.450192, - 45.56833 - ], - [ - -73.450194, - 45.568326 - ], - [ - -73.450195, - 45.568321 - ], - [ - -73.450197, - 45.568317 - ], - [ - -73.450198, - 45.568312 - ], - [ - -73.4502, - 45.568308 - ], - [ - -73.450201, - 45.568303 - ], - [ - -73.450203, - 45.568299 - ], - [ - -73.450204, - 45.568294 - ], - [ - -73.450205, - 45.56829 - ], - [ - -73.450207, - 45.568285 - ], - [ - -73.450208, - 45.568281 - ], - [ - -73.45021, - 45.568276 - ], - [ - -73.450211, - 45.568272 - ], - [ - -73.450213, - 45.568267 - ], - [ - -73.450214, - 45.568263 - ], - [ - -73.450215, - 45.568258 - ], - [ - -73.450217, - 45.568254 - ], - [ - -73.450218, - 45.568249 - ], - [ - -73.450219, - 45.568245 - ], - [ - -73.450221, - 45.56824 - ], - [ - -73.450222, - 45.568236 - ], - [ - -73.450224, - 45.568231 - ], - [ - -73.450225, - 45.568227 - ], - [ - -73.450226, - 45.568227 - ], - [ - -73.450228, - 45.568222 - ], - [ - -73.450229, - 45.568218 - ], - [ - -73.45023, - 45.568213 - ], - [ - -73.450232, - 45.568209 - ], - [ - -73.450233, - 45.568204 - ], - [ - -73.450234, - 45.5682 - ], - [ - -73.450236, - 45.568195 - ], - [ - -73.450237, - 45.568191 - ], - [ - -73.450238, - 45.568186 - ], - [ - -73.45024, - 45.568182 - ], - [ - -73.450241, - 45.568177 - ], - [ - -73.450242, - 45.568173 - ], - [ - -73.450244, - 45.568168 - ], - [ - -73.450245, - 45.568164 - ], - [ - -73.450246, - 45.568159 - ], - [ - -73.450247, - 45.568155 - ], - [ - -73.450248, - 45.56815 - ], - [ - -73.45025, - 45.568146 - ], - [ - -73.450251, - 45.568141 - ], - [ - -73.450252, - 45.568137 - ], - [ - -73.450253, - 45.568132 - ], - [ - -73.450254, - 45.568128 - ], - [ - -73.450256, - 45.568123 - ], - [ - -73.450257, - 45.568119 - ], - [ - -73.450258, - 45.568114 - ], - [ - -73.450259, - 45.56811 - ], - [ - -73.45026, - 45.568105 - ], - [ - -73.450262, - 45.568101 - ], - [ - -73.450263, - 45.568096 - ], - [ - -73.450264, - 45.568092 - ], - [ - -73.450265, - 45.568088 - ], - [ - -73.450266, - 45.568083 - ], - [ - -73.450267, - 45.568079 - ], - [ - -73.450268, - 45.568074 - ], - [ - -73.45027, - 45.56807 - ], - [ - -73.450271, - 45.568065 - ], - [ - -73.450272, - 45.568061 - ], - [ - -73.450273, - 45.568056 - ], - [ - -73.450274, - 45.568052 - ], - [ - -73.450275, - 45.568047 - ], - [ - -73.450277, - 45.568043 - ], - [ - -73.450277, - 45.568038 - ], - [ - -73.450279, - 45.568034 - ], - [ - -73.45028, - 45.568029 - ], - [ - -73.450281, - 45.568025 - ], - [ - -73.450282, - 45.56802 - ], - [ - -73.450283, - 45.568016 - ], - [ - -73.450284, - 45.568011 - ], - [ - -73.450285, - 45.568007 - ], - [ - -73.450286, - 45.568002 - ], - [ - -73.450287, - 45.567998 - ], - [ - -73.450288, - 45.567993 - ], - [ - -73.450289, - 45.567989 - ], - [ - -73.45029, - 45.567984 - ], - [ - -73.450291, - 45.56798 - ], - [ - -73.450292, - 45.567975 - ], - [ - -73.450293, - 45.567971 - ], - [ - -73.450294, - 45.567966 - ], - [ - -73.450295, - 45.567962 - ], - [ - -73.450296, - 45.567957 - ], - [ - -73.450297, - 45.567957 - ], - [ - -73.450298, - 45.567953 - ], - [ - -73.450299, - 45.567948 - ], - [ - -73.4503, - 45.567944 - ], - [ - -73.450301, - 45.567939 - ], - [ - -73.450301, - 45.567935 - ], - [ - -73.450302, - 45.56793 - ], - [ - -73.450303, - 45.567926 - ], - [ - -73.450304, - 45.567921 - ], - [ - -73.450305, - 45.567917 - ], - [ - -73.450306, - 45.567912 - ], - [ - -73.450307, - 45.567908 - ], - [ - -73.450308, - 45.567903 - ], - [ - -73.450309, - 45.567899 - ], - [ - -73.450309, - 45.567894 - ], - [ - -73.45031, - 45.56789 - ], - [ - -73.450311, - 45.567885 - ], - [ - -73.450312, - 45.567881 - ], - [ - -73.450313, - 45.567876 - ], - [ - -73.450314, - 45.567872 - ], - [ - -73.450315, - 45.567867 - ], - [ - -73.450316, - 45.567863 - ], - [ - -73.450316, - 45.567858 - ], - [ - -73.450317, - 45.567854 - ], - [ - -73.450318, - 45.567849 - ], - [ - -73.450319, - 45.567845 - ], - [ - -73.45032, - 45.56784 - ], - [ - -73.45032, - 45.567836 - ], - [ - -73.450321, - 45.567831 - ], - [ - -73.450322, - 45.567827 - ], - [ - -73.450323, - 45.567822 - ], - [ - -73.450324, - 45.567818 - ], - [ - -73.450324, - 45.567813 - ], - [ - -73.450325, - 45.567809 - ], - [ - -73.450326, - 45.567804 - ], - [ - -73.450326, - 45.5678 - ], - [ - -73.450327, - 45.567795 - ], - [ - -73.450328, - 45.567791 - ], - [ - -73.450329, - 45.567786 - ], - [ - -73.450329, - 45.567782 - ], - [ - -73.45033, - 45.567777 - ], - [ - -73.450331, - 45.567773 - ], - [ - -73.450332, - 45.567768 - ], - [ - -73.450332, - 45.567764 - ], - [ - -73.450333, - 45.567759 - ], - [ - -73.450334, - 45.567755 - ], - [ - -73.450334, - 45.56775 - ], - [ - -73.450335, - 45.567746 - ], - [ - -73.450336, - 45.567741 - ], - [ - -73.450336, - 45.567737 - ], - [ - -73.450337, - 45.567732 - ], - [ - -73.450337, - 45.567728 - ], - [ - -73.450338, - 45.567723 - ], - [ - -73.450339, - 45.567719 - ], - [ - -73.450339, - 45.567714 - ], - [ - -73.45034, - 45.56771 - ], - [ - -73.45034, - 45.567705 - ], - [ - -73.450341, - 45.567701 - ], - [ - -73.450342, - 45.567696 - ], - [ - -73.450342, - 45.567692 - ], - [ - -73.450343, - 45.567687 - ], - [ - -73.450343, - 45.567683 - ], - [ - -73.450344, - 45.567678 - ], - [ - -73.450345, - 45.567674 - ], - [ - -73.450345, - 45.567669 - ], - [ - -73.450346, - 45.567665 - ], - [ - -73.450346, - 45.56766 - ], - [ - -73.450347, - 45.567656 - ], - [ - -73.450347, - 45.567651 - ], - [ - -73.450348, - 45.567647 - ], - [ - -73.450348, - 45.567642 - ], - [ - -73.450349, - 45.567638 - ], - [ - -73.450349, - 45.567633 - ], - [ - -73.45035, - 45.567629 - ], - [ - -73.45035, - 45.567624 - ], - [ - -73.450351, - 45.56762 - ], - [ - -73.450351, - 45.567615 - ], - [ - -73.450352, - 45.567611 - ], - [ - -73.450352, - 45.567606 - ], - [ - -73.450353, - 45.567602 - ], - [ - -73.450353, - 45.567597 - ], - [ - -73.450353, - 45.567593 - ], - [ - -73.450354, - 45.567588 - ], - [ - -73.450355, - 45.567584 - ], - [ - -73.450355, - 45.567579 - ], - [ - -73.450355, - 45.567575 - ], - [ - -73.450356, - 45.56757 - ], - [ - -73.450356, - 45.567566 - ], - [ - -73.450357, - 45.567561 - ], - [ - -73.450357, - 45.567557 - ], - [ - -73.450357, - 45.567552 - ], - [ - -73.45036, - 45.567548 - ], - [ - -73.45038, - 45.567003 - ], - [ - -73.450434, - 45.565568 - ], - [ - -73.450435, - 45.565521 - ], - [ - -73.450469, - 45.564632 - ], - [ - -73.450501, - 45.563818 - ], - [ - -73.450514, - 45.563467 - ], - [ - -73.450528, - 45.563034 - ], - [ - -73.450546, - 45.562441 - ], - [ - -73.450644, - 45.562216 - ], - [ - -73.450694, - 45.562131 - ], - [ - -73.450783, - 45.562045 - ], - [ - -73.450893, - 45.561982 - ], - [ - -73.451026, - 45.561928 - ], - [ - -73.451225, - 45.561875 - ], - [ - -73.453525, - 45.561813 - ], - [ - -73.454569, - 45.561789 - ], - [ - -73.455653, - 45.561764 - ], - [ - -73.45601, - 45.561755 - ], - [ - -73.459012, - 45.561684 - ], - [ - -73.459275, - 45.561684 - ], - [ - -73.460731, - 45.561644 - ], - [ - -73.461459, - 45.561624 - ], - [ - -73.461679, - 45.561618 - ], - [ - -73.461849, - 45.561685 - ], - [ - -73.461894, - 45.561703 - ], - [ - -73.461935, - 45.561735 - ], - [ - -73.46197, - 45.561762 - ], - [ - -73.46208, - 45.56187 - ], - [ - -73.462094, - 45.562248 - ], - [ - -73.462108, - 45.562302 - ], - [ - -73.462138, - 45.562369 - ], - [ - -73.462191, - 45.562437 - ], - [ - -73.462237, - 45.562473 - ], - [ - -73.462324, - 45.56254 - ], - [ - -73.463656, - 45.563548 - ], - [ - -73.463775, - 45.563638 - ], - [ - -73.465793, - 45.5652 - ], - [ - -73.468091, - 45.566979 - ], - [ - -73.468142, - 45.567019 - ], - [ - -73.470984, - 45.569217 - ], - [ - -73.471116, - 45.569318 - ], - [ - -73.473095, - 45.570836 - ], - [ - -73.473129, - 45.570862 - ], - [ - -73.473953, - 45.571492 - ], - [ - -73.474759, - 45.572109 - ], - [ - -73.47593, - 45.573002 - ], - [ - -73.475992, - 45.573049 - ], - [ - -73.476026, - 45.573085 - ], - [ - -73.477034, - 45.573852 - ], - [ - -73.47886, - 45.575219 - ], - [ - -73.479129, - 45.57542 - ], - [ - -73.479186, - 45.57547 - ], - [ - -73.47919, - 45.575474 - ], - [ - -73.479274, - 45.575534 - ], - [ - -73.47941, - 45.575433 - ], - [ - -73.479496, - 45.575361 - ], - [ - -73.479622, - 45.575253 - ], - [ - -73.4798, - 45.575097 - ], - [ - -73.479996, - 45.574941 - ], - [ - -73.480237, - 45.574738 - ], - [ - -73.480349, - 45.574641 - ], - [ - -73.480453, - 45.574551 - ], - [ - -73.480801, - 45.574263 - ], - [ - -73.481358, - 45.573789 - ], - [ - -73.481529, - 45.573644 - ], - [ - -73.481972, - 45.573269 - ], - [ - -73.482082, - 45.573173 - ], - [ - -73.482204, - 45.573068 - ], - [ - -73.482412, - 45.572903 - ], - [ - -73.482823, - 45.572557 - ], - [ - -73.482916, - 45.572476 - ], - [ - -73.482986, - 45.57241 - ], - [ - -73.483315, - 45.572122 - ], - [ - -73.483678, - 45.571813 - ], - [ - -73.483735, - 45.571764 - ], - [ - -73.483843, - 45.57167 - ], - [ - -73.484123, - 45.57144 - ], - [ - -73.484526, - 45.571099 - ], - [ - -73.484935, - 45.570755 - ], - [ - -73.484967, - 45.570727 - ], - [ - -73.485483, - 45.570269 - ], - [ - -73.485867, - 45.569908 - ], - [ - -73.485881, - 45.569895 - ], - [ - -73.485994, - 45.569784 - ], - [ - -73.486085, - 45.569691 - ], - [ - -73.486421, - 45.569373 - ], - [ - -73.487037, - 45.568739 - ], - [ - -73.487188, - 45.568584 - ], - [ - -73.487556, - 45.568196 - ], - [ - -73.487608, - 45.568138 - ], - [ - -73.488016, - 45.567684 - ], - [ - -73.488394, - 45.567236 - ], - [ - -73.488838, - 45.56671 - ], - [ - -73.488926, - 45.566606 - ], - [ - -73.489299, - 45.566117 - ], - [ - -73.489627, - 45.565684 - ], - [ - -73.489917, - 45.565286 - ], - [ - -73.490075, - 45.56507 - ], - [ - -73.490593, - 45.5643 - ], - [ - -73.490758, - 45.564049 - ], - [ - -73.491532, - 45.562873 - ], - [ - -73.491593, - 45.562778 - ], - [ - -73.491625, - 45.562726 - ], - [ - -73.4917, - 45.562606 - ], - [ - -73.491908, - 45.562298 - ], - [ - -73.49207, - 45.56203 - ], - [ - -73.492185, - 45.561871 - ], - [ - -73.492369, - 45.561588 - ], - [ - -73.492389, - 45.561559 - ], - [ - -73.492391, - 45.561555 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.494714, - 45.55837 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498677, - 45.553944 - ], - [ - -73.498726, - 45.553872 - ], - [ - -73.498813, - 45.553714 - ], - [ - -73.498895, - 45.553562 - ], - [ - -73.49895, - 45.553404 - ], - [ - -73.498964, - 45.55335 - ], - [ - -73.498988, - 45.55326 - ], - [ - -73.499026, - 45.553035 - ], - [ - -73.499051, - 45.55281 - ], - [ - -73.49911, - 45.552261 - ], - [ - -73.499127, - 45.552095 - ], - [ - -73.49916, - 45.55177 - ], - [ - -73.499199, - 45.551371 - ], - [ - -73.49924, - 45.551092 - ], - [ - -73.499284, - 45.550946 - ], - [ - -73.499366, - 45.550811 - ], - [ - -73.499487, - 45.550651 - ], - [ - -73.499681, - 45.550406 - ], - [ - -73.499747, - 45.550322 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.500107, - 45.550074 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.503657, - 45.547898 - ], - [ - -73.503779, - 45.547781 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.505408, - 45.546113 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507875, - 45.543486 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.509782, - 45.541604 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.511269, - 45.540359 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512993, - 45.539127 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.514324, - 45.538179 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.515313, - 45.537389 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.516477, - 45.536186 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.518222, - 45.534133 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519479, - 45.531846 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519522, - 45.531915 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519179, - 45.531645 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.518817, - 45.531415 - ], - [ - -73.518763, - 45.531374 - ], - [ - -73.518709, - 45.531325 - ], - [ - -73.518655, - 45.531271 - ], - [ - -73.518619, - 45.531213 - ], - [ - -73.518601, - 45.531154 - ], - [ - -73.518588, - 45.531096 - ], - [ - -73.518588, - 45.531055 - ], - [ - -73.518597, - 45.531006 - ], - [ - -73.518619, - 45.530952 - ], - [ - -73.518659, - 45.530884 - ], - [ - -73.518691, - 45.530826 - ], - [ - -73.518718, - 45.530785 - ], - [ - -73.518753, - 45.530731 - ], - [ - -73.518803, - 45.530646 - ], - [ - -73.518839, - 45.530596 - ], - [ - -73.518875, - 45.530547 - ], - [ - -73.518897, - 45.530497 - ], - [ - -73.518915, - 45.530448 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519399, - 45.526016 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519784, - 45.523381 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522466, - 45.524143 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 76, - "properties": { - "id": "35c6e21b-b654-4bb2-9c49-df18ba41e2a3", - "data": { - "gtfs": { - "shape_id": "25_2_A" - }, - "segments": [ - { - "distanceMeters": 516, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 495, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 468, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 406, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 598, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 471, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 453, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 457, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 527, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 425, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 327, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 374, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 423, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 829, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 463, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 334, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 655, - "travelTimeSeconds": 109 - }, - { - "distanceMeters": 830, - "travelTimeSeconds": 139 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 240, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 18140, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 12105.606803880566, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.56, - "travelTimeWithoutDwellTimesSeconds": 2400, - "operatingTimeWithLayoverTimeSeconds": 2640, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2400, - "operatingSpeedWithLayoverMetersPerSecond": 6.87, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.56 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "b195cac8-133e-4e85-98b4-0a7ab23c800c", - "35827d6c-59cb-43b0-bfdd-eaa586fe772c", - "7335aafe-31d7-4598-a3ca-7bfa36ca76b3", - "a93c22b5-170a-45a8-a2c1-143c975239a9", - "a913c5ce-8de0-458e-a9ee-4ae555d41e98", - "a4120eb1-d1f9-43e5-8720-90115641165b", - "0681e3d4-c5fd-4f85-982e-d5d26960784a", - "2260ef06-cda3-48e1-919a-84c2b44c938b", - "494eea8e-2f4e-4123-9eb6-ab837bba3b5d", - "2fb188f9-f7b1-471b-a5d6-51581b357b49", - "0041d8ec-3bef-4a62-90da-3711f5d509d2", - "0d73df1c-f948-4c1f-ba36-487a91089d51", - "b734f683-dc9f-47d6-a659-53e6bf9d2915", - "58c5658c-7476-4072-998b-0663b682b8a6", - "cb78d8bd-4b44-40b3-8301-c4501b063d48", - "af75f57b-23de-436e-ac1d-d36a204dd0cd", - "f1fdc85c-124b-4428-8960-81d8b0fa863a", - "68d70807-e1f4-4393-a156-0cb02f37fe17", - "a77f8bf1-6b13-445b-a79c-6b0770c935c0", - "83669f2f-a25c-47b1-99a1-53a7c08fed91", - "e979db3f-26cd-41d5-8708-f07b7090bef0", - "33622e57-d444-4916-a7fb-d1fa4643eb90", - "ae6e0f03-aee3-4f3b-9a79-98bb90a35a7a", - "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "911acdc7-e82a-4bb1-aecd-7f8fbf39cc16", - "50e25e6e-b3a0-49ca-b0a6-22261b688cbf", - "767c22ba-e4bc-43df-94bc-025afee14810", - "28b7e465-7627-4587-950e-0fe104f1bac7", - "9ce474bd-b957-414c-a2bb-a8fbae6720a2", - "a09356f2-d06c-43dd-b67b-b970ca63de4c", - "efdd0b14-8e79-4a0f-85cb-f5ec3d032eec", - "7330c47a-92ea-4650-a95f-c6010983e0e2", - "41fd6b6d-a514-49a6-acf5-1a39152b0c5f", - "a0c45e7b-af06-4ea8-a82a-a658b829e198", - "fb348def-00b5-4574-9848-5f275a3fa42d", - "75347f42-115f-47ec-b394-c1f56ce167fb", - "dc112aae-906c-47be-a1fb-06ef714fd1ab", - "ab105343-272d-4aa3-9238-846c2fa787cb", - "24527bed-7ea6-44d6-b6db-18ac609f4938", - "1b1077ca-8a37-46a1-a7be-751ea2f7f2ae", - "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", - "d5099816-374e-4ebc-ab50-5ca4d2f829e5", - "84a0424b-0f35-4bd8-8109-5ac9219d5869", - "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", - "261a087b-9323-4696-9046-146a299af43d", - "66456437-f154-4a2f-a12f-2f54cf668687", - "820a9d7c-25e9-487c-9e51-cfefcb1432f7", - "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", - "72c849ab-069a-4dc5-92fe-9ecc63ba074d", - "d9324afd-9cb7-46ba-ad04-bb8387256785", - "45ed93e4-f128-470f-b287-4d6ddc400e49", - "52f97fd3-6c91-420e-82d2-2198f2064d40", - "2d2815ee-443f-48d9-a68e-7f53a9aa6216", - "dadcd93c-5469-44bf-8e3e-ccac4a5af110", - "28d90293-1261-41be-a75c-5fc82c3acd49", - "28559490-1b1e-4bd4-83e1-408fd6a20c77", - "72e3e510-0ae4-407e-a30d-82f52f41e278", - "2e804fba-75d7-4c69-a7f7-706998c1a6f1", - "4fb4515b-e129-4622-b855-89143c2fd488", - "4c755ece-2475-4915-941e-37859f0f391f" - ], - "stops": [], - "line_id": "3dd0da2d-881a-4bb0-bf0c-519de288b81a", - "segments": [ - 0, - 10, - 20, - 29, - 36, - 39, - 44, - 49, - 63, - 70, - 72, - 74, - 83, - 94, - 100, - 103, - 105, - 111, - 115, - 124, - 128, - 136, - 201, - 406, - 408, - 412, - 423, - 427, - 438, - 440, - 442, - 443, - 445, - 447, - 451, - 457, - 466, - 472, - 480, - 488, - 498, - 505, - 508, - 514, - 520, - 536, - 542, - 560, - 563, - 567, - 571, - 578, - 581, - 583, - 587, - 590, - 593, - 611, - 642 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 76, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.382771, - 45.57165 - ], - [ - -73.38222, - 45.571719 - ], - [ - -73.382265, - 45.571886 - ], - [ - -73.382294, - 45.571994 - ], - [ - -73.383299, - 45.571875 - ], - [ - -73.383765, - 45.571818 - ], - [ - -73.384997, - 45.571649 - ], - [ - -73.385674, - 45.57155 - ], - [ - -73.38625, - 45.571475 - ], - [ - -73.386982, - 45.571372 - ], - [ - -73.387898, - 45.571251 - ], - [ - -73.388912, - 45.571113 - ], - [ - -73.389658, - 45.571014 - ], - [ - -73.390528, - 45.570894 - ], - [ - -73.391191, - 45.570804 - ], - [ - -73.392081, - 45.570684 - ], - [ - -73.39269, - 45.570599 - ], - [ - -73.39317, - 45.570536 - ], - [ - -73.393727, - 45.570456 - ], - [ - -73.394177, - 45.570398 - ], - [ - -73.39531, - 45.570246 - ], - [ - -73.396252, - 45.570116 - ], - [ - -73.397337, - 45.569982 - ], - [ - -73.398872, - 45.569831 - ], - [ - -73.398868, - 45.569534 - ], - [ - -73.398845, - 45.569466 - ], - [ - -73.398791, - 45.569385 - ], - [ - -73.397619, - 45.568457 - ], - [ - -73.397569, - 45.56839 - ], - [ - -73.397545, - 45.56834 - ], - [ - -73.397554, - 45.56825 - ], - [ - -73.397609, - 45.568156 - ], - [ - -73.397687, - 45.568106 - ], - [ - -73.398275, - 45.567729 - ], - [ - -73.399112, - 45.567217 - ], - [ - -73.403138, - 45.564701 - ], - [ - -73.403374, - 45.56488 - ], - [ - -73.404259, - 45.565548 - ], - [ - -73.404576, - 45.565795 - ], - [ - -73.40476, - 45.565935 - ], - [ - -73.405022, - 45.566133 - ], - [ - -73.405555, - 45.566548 - ], - [ - -73.405791, - 45.566732 - ], - [ - -73.406251, - 45.567093 - ], - [ - -73.406658, - 45.567399 - ], - [ - -73.406831, - 45.567543 - ], - [ - -73.407025, - 45.567701 - ], - [ - -73.407271, - 45.567849 - ], - [ - -73.407608, - 45.567993 - ], - [ - -73.407857, - 45.568048 - ], - [ - -73.408124, - 45.568079 - ], - [ - -73.408536, - 45.56808 - ], - [ - -73.409698, - 45.568013 - ], - [ - -73.410197, - 45.567982 - ], - [ - -73.410353, - 45.567973 - ], - [ - -73.41084, - 45.567947 - ], - [ - -73.413977, - 45.567764 - ], - [ - -73.414161, - 45.567751 - ], - [ - -73.414428, - 45.567711 - ], - [ - -73.414614, - 45.567648 - ], - [ - -73.414771, - 45.567599 - ], - [ - -73.415031, - 45.567473 - ], - [ - -73.415452, - 45.567253 - ], - [ - -73.419551, - 45.564984 - ], - [ - -73.420525, - 45.56444 - ], - [ - -73.420894, - 45.564251 - ], - [ - -73.42122, - 45.564089 - ], - [ - -73.421549, - 45.563919 - ], - [ - -73.422142, - 45.563568 - ], - [ - -73.423897, - 45.562597 - ], - [ - -73.424088, - 45.562481 - ], - [ - -73.424434, - 45.562242 - ], - [ - -73.425154, - 45.561703 - ], - [ - -73.425425, - 45.561919 - ], - [ - -73.425805, - 45.562207 - ], - [ - -73.425983, - 45.562302 - ], - [ - -73.426215, - 45.562374 - ], - [ - -73.426453, - 45.562424 - ], - [ - -73.426484, - 45.562427 - ], - [ - -73.426691, - 45.562451 - ], - [ - -73.426924, - 45.562451 - ], - [ - -73.428161, - 45.562447 - ], - [ - -73.429174, - 45.562439 - ], - [ - -73.43018, - 45.562453 - ], - [ - -73.430874, - 45.562507 - ], - [ - -73.431467, - 45.562553 - ], - [ - -73.431994, - 45.562621 - ], - [ - -73.432792, - 45.562738 - ], - [ - -73.433489, - 45.562878 - ], - [ - -73.436814, - 45.563591 - ], - [ - -73.441131, - 45.564524 - ], - [ - -73.441357, - 45.564551 - ], - [ - -73.441513, - 45.564534 - ], - [ - -73.441648, - 45.564502 - ], - [ - -73.441764, - 45.564435 - ], - [ - -73.442132, - 45.56421 - ], - [ - -73.442266, - 45.564115 - ], - [ - -73.442879, - 45.56457 - ], - [ - -73.443981, - 45.565444 - ], - [ - -73.444144, - 45.565592 - ], - [ - -73.443963, - 45.565808 - ], - [ - -73.442699, - 45.567027 - ], - [ - -73.442645, - 45.567108 - ], - [ - -73.442626, - 45.567202 - ], - [ - -73.44266, - 45.567297 - ], - [ - -73.442738, - 45.567373 - ], - [ - -73.444286, - 45.568557 - ], - [ - -73.444688, - 45.568854 - ], - [ - -73.444719, - 45.568877 - ], - [ - -73.445158, - 45.569201 - ], - [ - -73.445832, - 45.569723 - ], - [ - -73.44598, - 45.569845 - ], - [ - -73.446079, - 45.569912 - ], - [ - -73.446194, - 45.569957 - ], - [ - -73.446311, - 45.569989 - ], - [ - -73.4464, - 45.570007 - ], - [ - -73.447945, - 45.570309 - ], - [ - -73.448177, - 45.570336 - ], - [ - -73.448494, - 45.570395 - ], - [ - -73.449049, - 45.570517 - ], - [ - -73.449223, - 45.570544 - ], - [ - -73.449264, - 45.570454 - ], - [ - -73.449543, - 45.569814 - ], - [ - -73.44969, - 45.569482 - ], - [ - -73.449722, - 45.56941 - ], - [ - -73.449947, - 45.568902 - ], - [ - -73.449982, - 45.56883 - ], - [ - -73.450051, - 45.568681 - ], - [ - -73.450055, - 45.568672 - ], - [ - -73.450057, - 45.568668 - ], - [ - -73.450059, - 45.568663 - ], - [ - -73.450061, - 45.568659 - ], - [ - -73.450063, - 45.568654 - ], - [ - -73.450065, - 45.56865 - ], - [ - -73.450067, - 45.568645 - ], - [ - -73.450069, - 45.568641 - ], - [ - -73.450071, - 45.568636 - ], - [ - -73.450072, - 45.568632 - ], - [ - -73.450074, - 45.568627 - ], - [ - -73.450076, - 45.568623 - ], - [ - -73.450078, - 45.568618 - ], - [ - -73.45008, - 45.568618 - ], - [ - -73.450082, - 45.568614 - ], - [ - -73.450084, - 45.568609 - ], - [ - -73.450086, - 45.568605 - ], - [ - -73.450087, - 45.5686 - ], - [ - -73.450089, - 45.568596 - ], - [ - -73.450091, - 45.568591 - ], - [ - -73.450093, - 45.568587 - ], - [ - -73.450095, - 45.568582 - ], - [ - -73.450097, - 45.568578 - ], - [ - -73.450099, - 45.568573 - ], - [ - -73.450101, - 45.568569 - ], - [ - -73.450102, - 45.568564 - ], - [ - -73.450104, - 45.56856 - ], - [ - -73.450106, - 45.568555 - ], - [ - -73.450108, - 45.568551 - ], - [ - -73.45011, - 45.568546 - ], - [ - -73.450112, - 45.568542 - ], - [ - -73.450114, - 45.568537 - ], - [ - -73.450115, - 45.568533 - ], - [ - -73.450117, - 45.568528 - ], - [ - -73.450119, - 45.568524 - ], - [ - -73.45012, - 45.568519 - ], - [ - -73.450122, - 45.568519 - ], - [ - -73.450124, - 45.568515 - ], - [ - -73.450126, - 45.56851 - ], - [ - -73.450128, - 45.568506 - ], - [ - -73.450129, - 45.568501 - ], - [ - -73.450131, - 45.568497 - ], - [ - -73.450133, - 45.568492 - ], - [ - -73.450134, - 45.568488 - ], - [ - -73.450136, - 45.568483 - ], - [ - -73.450138, - 45.568479 - ], - [ - -73.45014, - 45.568474 - ], - [ - -73.450141, - 45.56847 - ], - [ - -73.450143, - 45.568465 - ], - [ - -73.450145, - 45.568461 - ], - [ - -73.450146, - 45.568456 - ], - [ - -73.450148, - 45.568452 - ], - [ - -73.45015, - 45.568447 - ], - [ - -73.450151, - 45.568443 - ], - [ - -73.450153, - 45.568438 - ], - [ - -73.450154, - 45.568434 - ], - [ - -73.450156, - 45.568429 - ], - [ - -73.450158, - 45.568425 - ], - [ - -73.45016, - 45.56842 - ], - [ - -73.450161, - 45.568416 - ], - [ - -73.450163, - 45.568411 - ], - [ - -73.450164, - 45.568407 - ], - [ - -73.450166, - 45.568402 - ], - [ - -73.450168, - 45.568398 - ], - [ - -73.450169, - 45.568393 - ], - [ - -73.450171, - 45.568393 - ], - [ - -73.450173, - 45.568389 - ], - [ - -73.450174, - 45.568384 - ], - [ - -73.450175, - 45.56838 - ], - [ - -73.450177, - 45.568375 - ], - [ - -73.450179, - 45.568371 - ], - [ - -73.45018, - 45.568366 - ], - [ - -73.450182, - 45.568362 - ], - [ - -73.450183, - 45.568357 - ], - [ - -73.450185, - 45.568353 - ], - [ - -73.450186, - 45.568348 - ], - [ - -73.450188, - 45.568344 - ], - [ - -73.450189, - 45.568339 - ], - [ - -73.450191, - 45.568335 - ], - [ - -73.450192, - 45.56833 - ], - [ - -73.450194, - 45.568326 - ], - [ - -73.450195, - 45.568321 - ], - [ - -73.450197, - 45.568317 - ], - [ - -73.450198, - 45.568312 - ], - [ - -73.4502, - 45.568308 - ], - [ - -73.450201, - 45.568303 - ], - [ - -73.450203, - 45.568299 - ], - [ - -73.450204, - 45.568294 - ], - [ - -73.450205, - 45.56829 - ], - [ - -73.450207, - 45.568285 - ], - [ - -73.450208, - 45.568281 - ], - [ - -73.45021, - 45.568276 - ], - [ - -73.450211, - 45.568272 - ], - [ - -73.450213, - 45.568267 - ], - [ - -73.450214, - 45.568263 - ], - [ - -73.450215, - 45.568258 - ], - [ - -73.450217, - 45.568254 - ], - [ - -73.450218, - 45.568249 - ], - [ - -73.450219, - 45.568245 - ], - [ - -73.450221, - 45.56824 - ], - [ - -73.450222, - 45.568236 - ], - [ - -73.450224, - 45.568231 - ], - [ - -73.450225, - 45.568227 - ], - [ - -73.450226, - 45.568227 - ], - [ - -73.450228, - 45.568222 - ], - [ - -73.450229, - 45.568218 - ], - [ - -73.45023, - 45.568213 - ], - [ - -73.450232, - 45.568209 - ], - [ - -73.450233, - 45.568204 - ], - [ - -73.450234, - 45.5682 - ], - [ - -73.450236, - 45.568195 - ], - [ - -73.450237, - 45.568191 - ], - [ - -73.450238, - 45.568186 - ], - [ - -73.45024, - 45.568182 - ], - [ - -73.450241, - 45.568177 - ], - [ - -73.450242, - 45.568173 - ], - [ - -73.450244, - 45.568168 - ], - [ - -73.450245, - 45.568164 - ], - [ - -73.450246, - 45.568159 - ], - [ - -73.450247, - 45.568155 - ], - [ - -73.450248, - 45.56815 - ], - [ - -73.45025, - 45.568146 - ], - [ - -73.450251, - 45.568141 - ], - [ - -73.450252, - 45.568137 - ], - [ - -73.450253, - 45.568132 - ], - [ - -73.450254, - 45.568128 - ], - [ - -73.450256, - 45.568123 - ], - [ - -73.450257, - 45.568119 - ], - [ - -73.450258, - 45.568114 - ], - [ - -73.450259, - 45.56811 - ], - [ - -73.45026, - 45.568105 - ], - [ - -73.450262, - 45.568101 - ], - [ - -73.450263, - 45.568096 - ], - [ - -73.450264, - 45.568092 - ], - [ - -73.450265, - 45.568088 - ], - [ - -73.450266, - 45.568083 - ], - [ - -73.450267, - 45.568079 - ], - [ - -73.450268, - 45.568074 - ], - [ - -73.45027, - 45.56807 - ], - [ - -73.450271, - 45.568065 - ], - [ - -73.450272, - 45.568061 - ], - [ - -73.450273, - 45.568056 - ], - [ - -73.450274, - 45.568052 - ], - [ - -73.450275, - 45.568047 - ], - [ - -73.450277, - 45.568043 - ], - [ - -73.450277, - 45.568038 - ], - [ - -73.450279, - 45.568034 - ], - [ - -73.45028, - 45.568029 - ], - [ - -73.450281, - 45.568025 - ], - [ - -73.450282, - 45.56802 - ], - [ - -73.450283, - 45.568016 - ], - [ - -73.450284, - 45.568011 - ], - [ - -73.450285, - 45.568007 - ], - [ - -73.450286, - 45.568002 - ], - [ - -73.450287, - 45.567998 - ], - [ - -73.450288, - 45.567993 - ], - [ - -73.450289, - 45.567989 - ], - [ - -73.45029, - 45.567984 - ], - [ - -73.450291, - 45.56798 - ], - [ - -73.450292, - 45.567975 - ], - [ - -73.450293, - 45.567971 - ], - [ - -73.450294, - 45.567966 - ], - [ - -73.450295, - 45.567962 - ], - [ - -73.450296, - 45.567957 - ], - [ - -73.450297, - 45.567957 - ], - [ - -73.450298, - 45.567953 - ], - [ - -73.450299, - 45.567948 - ], - [ - -73.4503, - 45.567944 - ], - [ - -73.450301, - 45.567939 - ], - [ - -73.450301, - 45.567935 - ], - [ - -73.450302, - 45.56793 - ], - [ - -73.450303, - 45.567926 - ], - [ - -73.450304, - 45.567921 - ], - [ - -73.450305, - 45.567917 - ], - [ - -73.450306, - 45.567912 - ], - [ - -73.450307, - 45.567908 - ], - [ - -73.450308, - 45.567903 - ], - [ - -73.450309, - 45.567899 - ], - [ - -73.450309, - 45.567894 - ], - [ - -73.45031, - 45.56789 - ], - [ - -73.450311, - 45.567885 - ], - [ - -73.450312, - 45.567881 - ], - [ - -73.450313, - 45.567876 - ], - [ - -73.450314, - 45.567872 - ], - [ - -73.450315, - 45.567867 - ], - [ - -73.450316, - 45.567863 - ], - [ - -73.450316, - 45.567858 - ], - [ - -73.450317, - 45.567854 - ], - [ - -73.450318, - 45.567849 - ], - [ - -73.450319, - 45.567845 - ], - [ - -73.45032, - 45.56784 - ], - [ - -73.45032, - 45.567836 - ], - [ - -73.450321, - 45.567831 - ], - [ - -73.450322, - 45.567827 - ], - [ - -73.450323, - 45.567822 - ], - [ - -73.450324, - 45.567818 - ], - [ - -73.450324, - 45.567813 - ], - [ - -73.450325, - 45.567809 - ], - [ - -73.450326, - 45.567804 - ], - [ - -73.450326, - 45.5678 - ], - [ - -73.450327, - 45.567795 - ], - [ - -73.450328, - 45.567791 - ], - [ - -73.450329, - 45.567786 - ], - [ - -73.450329, - 45.567782 - ], - [ - -73.45033, - 45.567777 - ], - [ - -73.450331, - 45.567773 - ], - [ - -73.450332, - 45.567768 - ], - [ - -73.450332, - 45.567764 - ], - [ - -73.450333, - 45.567759 - ], - [ - -73.450334, - 45.567755 - ], - [ - -73.450334, - 45.56775 - ], - [ - -73.450335, - 45.567746 - ], - [ - -73.450336, - 45.567741 - ], - [ - -73.450336, - 45.567737 - ], - [ - -73.450337, - 45.567732 - ], - [ - -73.450337, - 45.567728 - ], - [ - -73.450338, - 45.567723 - ], - [ - -73.450339, - 45.567719 - ], - [ - -73.450339, - 45.567714 - ], - [ - -73.45034, - 45.56771 - ], - [ - -73.45034, - 45.567705 - ], - [ - -73.450341, - 45.567701 - ], - [ - -73.450342, - 45.567696 - ], - [ - -73.450342, - 45.567692 - ], - [ - -73.450343, - 45.567687 - ], - [ - -73.450343, - 45.567683 - ], - [ - -73.450344, - 45.567678 - ], - [ - -73.450345, - 45.567674 - ], - [ - -73.450345, - 45.567669 - ], - [ - -73.450346, - 45.567665 - ], - [ - -73.450346, - 45.56766 - ], - [ - -73.450347, - 45.567656 - ], - [ - -73.450347, - 45.567651 - ], - [ - -73.450348, - 45.567647 - ], - [ - -73.450348, - 45.567642 - ], - [ - -73.450349, - 45.567638 - ], - [ - -73.450349, - 45.567633 - ], - [ - -73.45035, - 45.567629 - ], - [ - -73.45035, - 45.567624 - ], - [ - -73.450351, - 45.56762 - ], - [ - -73.450351, - 45.567615 - ], - [ - -73.450352, - 45.567611 - ], - [ - -73.450352, - 45.567606 - ], - [ - -73.450353, - 45.567602 - ], - [ - -73.450353, - 45.567597 - ], - [ - -73.450353, - 45.567593 - ], - [ - -73.450354, - 45.567588 - ], - [ - -73.450355, - 45.567584 - ], - [ - -73.450355, - 45.567579 - ], - [ - -73.450355, - 45.567575 - ], - [ - -73.450356, - 45.56757 - ], - [ - -73.450356, - 45.567566 - ], - [ - -73.450357, - 45.567561 - ], - [ - -73.450357, - 45.567557 - ], - [ - -73.450357, - 45.567552 - ], - [ - -73.45036, - 45.567548 - ], - [ - -73.450434, - 45.565568 - ], - [ - -73.450469, - 45.564632 - ], - [ - -73.450501, - 45.563818 - ], - [ - -73.450514, - 45.563467 - ], - [ - -73.450546, - 45.562441 - ], - [ - -73.450644, - 45.562216 - ], - [ - -73.450694, - 45.562131 - ], - [ - -73.450783, - 45.562045 - ], - [ - -73.450893, - 45.561982 - ], - [ - -73.451026, - 45.561928 - ], - [ - -73.451225, - 45.561875 - ], - [ - -73.453525, - 45.561813 - ], - [ - -73.454569, - 45.561789 - ], - [ - -73.455653, - 45.561764 - ], - [ - -73.459012, - 45.561684 - ], - [ - -73.459275, - 45.561684 - ], - [ - -73.460731, - 45.561644 - ], - [ - -73.461679, - 45.561618 - ], - [ - -73.461849, - 45.561685 - ], - [ - -73.461894, - 45.561703 - ], - [ - -73.461935, - 45.561735 - ], - [ - -73.46197, - 45.561762 - ], - [ - -73.46208, - 45.56187 - ], - [ - -73.462094, - 45.562248 - ], - [ - -73.462108, - 45.562302 - ], - [ - -73.462138, - 45.562369 - ], - [ - -73.462191, - 45.562437 - ], - [ - -73.462324, - 45.56254 - ], - [ - -73.463775, - 45.563638 - ], - [ - -73.468142, - 45.567019 - ], - [ - -73.471116, - 45.569318 - ], - [ - -73.473129, - 45.570862 - ], - [ - -73.473953, - 45.571492 - ], - [ - -73.474759, - 45.572109 - ], - [ - -73.475992, - 45.573049 - ], - [ - -73.476026, - 45.573085 - ], - [ - -73.477034, - 45.573852 - ], - [ - -73.47886, - 45.575219 - ], - [ - -73.479129, - 45.57542 - ], - [ - -73.47919, - 45.575474 - ], - [ - -73.479274, - 45.575534 - ], - [ - -73.47941, - 45.575433 - ], - [ - -73.479496, - 45.575361 - ], - [ - -73.479622, - 45.575253 - ], - [ - -73.4798, - 45.575097 - ], - [ - -73.479996, - 45.574941 - ], - [ - -73.480237, - 45.574738 - ], - [ - -73.480453, - 45.574551 - ], - [ - -73.480801, - 45.574263 - ], - [ - -73.481358, - 45.573789 - ], - [ - -73.481529, - 45.573644 - ], - [ - -73.481972, - 45.573269 - ], - [ - -73.482204, - 45.573068 - ], - [ - -73.482412, - 45.572903 - ], - [ - -73.482823, - 45.572557 - ], - [ - -73.482916, - 45.572476 - ], - [ - -73.482986, - 45.57241 - ], - [ - -73.483315, - 45.572122 - ], - [ - -73.483678, - 45.571813 - ], - [ - -73.483843, - 45.57167 - ], - [ - -73.484123, - 45.57144 - ], - [ - -73.484526, - 45.571099 - ], - [ - -73.484935, - 45.570755 - ], - [ - -73.484967, - 45.570727 - ], - [ - -73.485483, - 45.570269 - ], - [ - -73.485867, - 45.569908 - ], - [ - -73.485994, - 45.569784 - ], - [ - -73.486085, - 45.569691 - ], - [ - -73.486421, - 45.569373 - ], - [ - -73.487037, - 45.568739 - ], - [ - -73.487188, - 45.568584 - ], - [ - -73.487556, - 45.568196 - ], - [ - -73.487608, - 45.568138 - ], - [ - -73.488016, - 45.567684 - ], - [ - -73.488394, - 45.567236 - ], - [ - -73.488926, - 45.566606 - ], - [ - -73.489299, - 45.566117 - ], - [ - -73.489627, - 45.565684 - ], - [ - -73.489917, - 45.565286 - ], - [ - -73.490075, - 45.56507 - ], - [ - -73.490593, - 45.5643 - ], - [ - -73.491532, - 45.562873 - ], - [ - -73.491593, - 45.562778 - ], - [ - -73.4917, - 45.562606 - ], - [ - -73.491908, - 45.562298 - ], - [ - -73.49207, - 45.56203 - ], - [ - -73.492185, - 45.561871 - ], - [ - -73.492369, - 45.561588 - ], - [ - -73.492391, - 45.561555 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498677, - 45.553944 - ], - [ - -73.498726, - 45.553872 - ], - [ - -73.498813, - 45.553714 - ], - [ - -73.498895, - 45.553562 - ], - [ - -73.49895, - 45.553404 - ], - [ - -73.498964, - 45.55335 - ], - [ - -73.498988, - 45.55326 - ], - [ - -73.499026, - 45.553035 - ], - [ - -73.499051, - 45.55281 - ], - [ - -73.49911, - 45.552261 - ], - [ - -73.499127, - 45.552095 - ], - [ - -73.499199, - 45.551371 - ], - [ - -73.49924, - 45.551092 - ], - [ - -73.499284, - 45.550946 - ], - [ - -73.499366, - 45.550811 - ], - [ - -73.499487, - 45.550651 - ], - [ - -73.499747, - 45.550322 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.500107, - 45.550074 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.503657, - 45.547898 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.50801, - 45.54334 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519479, - 45.531846 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519522, - 45.531915 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.518817, - 45.531415 - ], - [ - -73.518763, - 45.531374 - ], - [ - -73.518709, - 45.531325 - ], - [ - -73.518655, - 45.531271 - ], - [ - -73.518619, - 45.531213 - ], - [ - -73.518601, - 45.531154 - ], - [ - -73.518588, - 45.531096 - ], - [ - -73.518588, - 45.531055 - ], - [ - -73.518597, - 45.531006 - ], - [ - -73.518619, - 45.530952 - ], - [ - -73.518659, - 45.530884 - ], - [ - -73.518691, - 45.530826 - ], - [ - -73.518718, - 45.530785 - ], - [ - -73.518753, - 45.530731 - ], - [ - -73.518803, - 45.530646 - ], - [ - -73.518839, - 45.530596 - ], - [ - -73.518875, - 45.530547 - ], - [ - -73.518897, - 45.530497 - ], - [ - -73.518915, - 45.530448 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519784, - 45.523381 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522466, - 45.524143 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 77, - "properties": { - "id": "2bd282ac-9dd9-461e-876f-7be0b7415cb9", - "data": { - "gtfs": { - "shape_id": "25_2_A" - }, - "segments": [ - { - "distanceMeters": 15021, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 3120, - "travelTimeSeconds": 71 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 18140, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 537.8312017370496, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 151.16, - "travelTimeWithoutDwellTimesSeconds": 120, - "operatingTimeWithLayoverTimeSeconds": 300, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 120, - "operatingSpeedWithLayoverMetersPerSecond": 60.47, - "averageSpeedWithoutDwellTimesMetersPerSecond": 151.16 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "a913c5ce-8de0-458e-a9ee-4ae555d41e98", - "a4120eb1-d1f9-43e5-8720-90115641165b", - "0681e3d4-c5fd-4f85-982e-d5d26960784a" - ], - "stops": [], - "line_id": "3dd0da2d-881a-4bb0-bf0c-519de288b81a", - "segments": [ - 0, - 519 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 77, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519057, - 45.525166 - ], - [ - -73.518828, - 45.525169 - ], - [ - -73.518662, - 45.525195 - ], - [ - -73.518477, - 45.525222 - ], - [ - -73.51841, - 45.525229 - ], - [ - -73.518309, - 45.525233 - ], - [ - -73.518165, - 45.525238 - ], - [ - -73.517846, - 45.525224 - ], - [ - -73.516858, - 45.525188 - ], - [ - -73.516329, - 45.525185 - ], - [ - -73.51586, - 45.52522 - ], - [ - -73.515879, - 45.525306 - ], - [ - -73.515954, - 45.525625 - ], - [ - -73.515993, - 45.52576 - ], - [ - -73.516108, - 45.52615 - ], - [ - -73.51612, - 45.526192 - ], - [ - -73.516245, - 45.52653 - ], - [ - -73.516302, - 45.526687 - ], - [ - -73.516434, - 45.526894 - ], - [ - -73.517006, - 45.527735 - ], - [ - -73.517118, - 45.52798 - ], - [ - -73.51723, - 45.528227 - ], - [ - -73.517263, - 45.528301 - ], - [ - -73.517272, - 45.52832 - ], - [ - -73.517504, - 45.528922 - ], - [ - -73.517577, - 45.529094 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.517456, - 45.531762 - ], - [ - -73.516885, - 45.532291 - ], - [ - -73.51664, - 45.532518 - ], - [ - -73.515885, - 45.533161 - ], - [ - -73.515753, - 45.533238 - ], - [ - -73.515672, - 45.533321 - ], - [ - -73.515318, - 45.533719 - ], - [ - -73.515257, - 45.533788 - ], - [ - -73.515202, - 45.533848 - ], - [ - -73.514831, - 45.534265 - ], - [ - -73.514791, - 45.534311 - ], - [ - -73.514731, - 45.534379 - ], - [ - -73.514684, - 45.534434 - ], - [ - -73.51432, - 45.534799 - ], - [ - -73.513992, - 45.535131 - ], - [ - -73.513904, - 45.53522 - ], - [ - -73.513681, - 45.535468 - ], - [ - -73.51342, - 45.535713 - ], - [ - -73.513155, - 45.535985 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.511223, - 45.537344 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.50962, - 45.538704 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.508029, - 45.540693 - ], - [ - -73.508021, - 45.540689 - ], - [ - -73.507516, - 45.540484 - ], - [ - -73.507102, - 45.540316 - ], - [ - -73.506536, - 45.540077 - ], - [ - -73.505445, - 45.539634 - ], - [ - -73.504975, - 45.539443 - ], - [ - -73.50484, - 45.539375 - ], - [ - -73.504659, - 45.53925 - ], - [ - -73.504204, - 45.538858 - ], - [ - -73.50401, - 45.538714 - ], - [ - -73.503972, - 45.538693 - ], - [ - -73.503897, - 45.538651 - ], - [ - -73.5035, - 45.538476 - ], - [ - -73.502143, - 45.537905 - ], - [ - -73.501222, - 45.537517 - ], - [ - -73.499672, - 45.536865 - ], - [ - -73.499534, - 45.536807 - ], - [ - -73.498456, - 45.536361 - ], - [ - -73.497345, - 45.53588 - ], - [ - -73.496932, - 45.535682 - ], - [ - -73.496814, - 45.535632 - ], - [ - -73.496497, - 45.535505 - ], - [ - -73.495741, - 45.5352 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.494397, - 45.534676 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.492605, - 45.533937 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.491081, - 45.533305 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.488555, - 45.53227 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.485465, - 45.530985 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.481692, - 45.529414 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.48089, - 45.529066 - ], - [ - -73.480753, - 45.529011 - ], - [ - -73.480164, - 45.528774 - ], - [ - -73.479454, - 45.528472 - ], - [ - -73.478785, - 45.528194 - ], - [ - -73.478598, - 45.528117 - ], - [ - -73.477725, - 45.527748 - ], - [ - -73.476969, - 45.527428 - ], - [ - -73.476219, - 45.527117 - ], - [ - -73.476032, - 45.52704 - ], - [ - -73.475894, - 45.526982 - ], - [ - -73.475467, - 45.526811 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.474212, - 45.526282 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.47271, - 45.525659 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.471997, - 45.525357 - ], - [ - -73.471094, - 45.524979 - ], - [ - -73.470555, - 45.524749 - ], - [ - -73.470239, - 45.524623 - ], - [ - -73.469721, - 45.524403 - ], - [ - -73.469562, - 45.524338 - ], - [ - -73.469522, - 45.524322 - ], - [ - -73.468866, - 45.524038 - ], - [ - -73.468141, - 45.523743 - ], - [ - -73.468048, - 45.523705 - ], - [ - -73.467237, - 45.523363 - ], - [ - -73.466276, - 45.522967 - ], - [ - -73.466082, - 45.522841 - ], - [ - -73.465634, - 45.52266 - ], - [ - -73.465479, - 45.522594 - ], - [ - -73.464874, - 45.522336 - ], - [ - -73.464576, - 45.522215 - ], - [ - -73.464439, - 45.522143 - ], - [ - -73.464336, - 45.522093 - ], - [ - -73.464186, - 45.522017 - ], - [ - -73.463952, - 45.52192 - ], - [ - -73.463574, - 45.521763 - ], - [ - -73.463125, - 45.521577 - ], - [ - -73.462859, - 45.521467 - ], - [ - -73.46256, - 45.521341 - ], - [ - -73.460701, - 45.520558 - ], - [ - -73.460592, - 45.520513 - ], - [ - -73.460391, - 45.520427 - ], - [ - -73.460276, - 45.520379 - ], - [ - -73.458651, - 45.519707 - ], - [ - -73.457431, - 45.519186 - ], - [ - -73.457332, - 45.519144 - ], - [ - -73.457212, - 45.51909 - ], - [ - -73.456379, - 45.518756 - ], - [ - -73.455695, - 45.518468 - ], - [ - -73.454296, - 45.517868 - ], - [ - -73.454164, - 45.517811 - ], - [ - -73.453487, - 45.51753 - ], - [ - -73.452741, - 45.51722 - ], - [ - -73.452666, - 45.517189 - ], - [ - -73.452271, - 45.517027 - ], - [ - -73.452136, - 45.516973 - ], - [ - -73.452066, - 45.516942 - ], - [ - -73.450061, - 45.51612 - ], - [ - -73.450032, - 45.516108 - ], - [ - -73.448668, - 45.515529 - ], - [ - -73.448601, - 45.5155 - ], - [ - -73.445026, - 45.513997 - ], - [ - -73.444787, - 45.513896 - ], - [ - -73.443398, - 45.513312 - ], - [ - -73.443129, - 45.513199 - ], - [ - -73.440479, - 45.512077 - ], - [ - -73.440324, - 45.51201 - ], - [ - -73.440007, - 45.511874 - ], - [ - -73.439905, - 45.511834 - ], - [ - -73.439831, - 45.511802 - ], - [ - -73.439067, - 45.511482 - ], - [ - -73.438299, - 45.511131 - ], - [ - -73.438017, - 45.511 - ], - [ - -73.437245, - 45.510635 - ], - [ - -73.435988, - 45.510081 - ], - [ - -73.435895, - 45.510041 - ], - [ - -73.435854, - 45.510023 - ], - [ - -73.435758, - 45.510131 - ], - [ - -73.435507, - 45.510414 - ], - [ - -73.4355, - 45.510423 - ], - [ - -73.435493, - 45.510432 - ], - [ - -73.435487, - 45.510437 - ], - [ - -73.435479, - 45.510446 - ], - [ - -73.435472, - 45.510455 - ], - [ - -73.435465, - 45.510459 - ], - [ - -73.435457, - 45.510468 - ], - [ - -73.43545, - 45.510477 - ], - [ - -73.435442, - 45.510481 - ], - [ - -73.435434, - 45.51049 - ], - [ - -73.435426, - 45.510495 - ], - [ - -73.435418, - 45.510504 - ], - [ - -73.43541, - 45.510513 - ], - [ - -73.435402, - 45.510517 - ], - [ - -73.435394, - 45.510526 - ], - [ - -73.435386, - 45.510531 - ], - [ - -73.43538, - 45.510537 - ], - [ - -73.435377, - 45.51054 - ], - [ - -73.435369, - 45.510544 - ], - [ - -73.43536, - 45.510553 - ], - [ - -73.435352, - 45.510558 - ], - [ - -73.435343, - 45.510567 - ], - [ - -73.435334, - 45.510571 - ], - [ - -73.435325, - 45.510576 - ], - [ - -73.435316, - 45.510585 - ], - [ - -73.435306, - 45.510589 - ], - [ - -73.435297, - 45.510598 - ], - [ - -73.435288, - 45.510603 - ], - [ - -73.435278, - 45.510607 - ], - [ - -73.435269, - 45.510616 - ], - [ - -73.43526, - 45.510621 - ], - [ - -73.43525, - 45.510625 - ], - [ - -73.43524, - 45.510634 - ], - [ - -73.43523, - 45.510639 - ], - [ - -73.43522, - 45.510643 - ], - [ - -73.43521, - 45.510648 - ], - [ - -73.435201, - 45.510657 - ], - [ - -73.43518, - 45.510666 - ], - [ - -73.43517, - 45.51067 - ], - [ - -73.435159, - 45.510679 - ], - [ - -73.435149, - 45.510684 - ], - [ - -73.435139, - 45.510688 - ], - [ - -73.435128, - 45.510693 - ], - [ - -73.435118, - 45.510697 - ], - [ - -73.435107, - 45.510706 - ], - [ - -73.435097, - 45.510711 - ], - [ - -73.435086, - 45.510715 - ], - [ - -73.435075, - 45.51072 - ], - [ - -73.435065, - 45.510724 - ], - [ - -73.435053, - 45.510729 - ], - [ - -73.435043, - 45.510733 - ], - [ - -73.435032, - 45.510738 - ], - [ - -73.435021, - 45.510742 - ], - [ - -73.435009, - 45.510747 - ], - [ - -73.434998, - 45.510751 - ], - [ - -73.434987, - 45.510756 - ], - [ - -73.434976, - 45.51076 - ], - [ - -73.434964, - 45.510765 - ], - [ - -73.434953, - 45.510769 - ], - [ - -73.434941, - 45.510774 - ], - [ - -73.43493, - 45.510778 - ], - [ - -73.434918, - 45.510778 - ], - [ - -73.434907, - 45.510783 - ], - [ - -73.434895, - 45.510787 - ], - [ - -73.434883, - 45.510792 - ], - [ - -73.434871, - 45.510796 - ], - [ - -73.43486, - 45.510796 - ], - [ - -73.434848, - 45.510801 - ], - [ - -73.434836, - 45.510805 - ], - [ - -73.434824, - 45.51081 - ], - [ - -73.434812, - 45.51081 - ], - [ - -73.4348, - 45.510814 - ], - [ - -73.434788, - 45.510819 - ], - [ - -73.434775, - 45.510819 - ], - [ - -73.434763, - 45.510823 - ], - [ - -73.434751, - 45.510823 - ], - [ - -73.434739, - 45.510828 - ], - [ - -73.434727, - 45.510828 - ], - [ - -73.434714, - 45.510832 - ], - [ - -73.434702, - 45.510837 - ], - [ - -73.434689, - 45.510837 - ], - [ - -73.434677, - 45.510841 - ], - [ - -73.434665, - 45.510841 - ], - [ - -73.434652, - 45.510841 - ], - [ - -73.434639, - 45.510845 - ], - [ - -73.434627, - 45.510845 - ], - [ - -73.434615, - 45.51085 - ], - [ - -73.434602, - 45.51085 - ], - [ - -73.434589, - 45.51085 - ], - [ - -73.434577, - 45.510854 - ], - [ - -73.434564, - 45.510854 - ], - [ - -73.434551, - 45.510854 - ], - [ - -73.434539, - 45.510859 - ], - [ - -73.434526, - 45.510859 - ], - [ - -73.434513, - 45.510859 - ], - [ - -73.434501, - 45.510859 - ], - [ - -73.434488, - 45.510859 - ], - [ - -73.434475, - 45.510863 - ], - [ - -73.434462, - 45.510863 - ], - [ - -73.434449, - 45.510863 - ], - [ - -73.434437, - 45.510863 - ], - [ - -73.434424, - 45.510863 - ], - [ - -73.434411, - 45.510863 - ], - [ - -73.433233, - 45.510854 - ], - [ - -73.433213, - 45.510854 - ], - [ - -73.4332, - 45.510854 - ], - [ - -73.433188, - 45.510854 - ], - [ - -73.433175, - 45.510858 - ], - [ - -73.433162, - 45.510858 - ], - [ - -73.43315, - 45.510858 - ], - [ - -73.433137, - 45.510858 - ], - [ - -73.433124, - 45.510858 - ], - [ - -73.433111, - 45.510858 - ], - [ - -73.433098, - 45.510863 - ], - [ - -73.433086, - 45.510863 - ], - [ - -73.433073, - 45.510863 - ], - [ - -73.43306, - 45.510863 - ], - [ - -73.43305, - 45.510866 - ], - [ - -73.433048, - 45.510867 - ], - [ - -73.433035, - 45.510867 - ], - [ - -73.433022, - 45.510867 - ], - [ - -73.43301, - 45.510872 - ], - [ - -73.432997, - 45.510872 - ], - [ - -73.432985, - 45.510872 - ], - [ - -73.432971, - 45.510876 - ], - [ - -73.432878, - 45.510894 - ], - [ - -73.432865, - 45.510898 - ], - [ - -73.432853, - 45.510898 - ], - [ - -73.432841, - 45.510903 - ], - [ - -73.432828, - 45.510903 - ], - [ - -73.432816, - 45.510907 - ], - [ - -73.432804, - 45.510912 - ], - [ - -73.432792, - 45.510912 - ], - [ - -73.43278, - 45.510916 - ], - [ - -73.432768, - 45.510921 - ], - [ - -73.432756, - 45.510921 - ], - [ - -73.432744, - 45.510925 - ], - [ - -73.432732, - 45.51093 - ], - [ - -73.43272, - 45.51093 - ], - [ - -73.432708, - 45.510934 - ], - [ - -73.432696, - 45.510939 - ], - [ - -73.432684, - 45.510943 - ], - [ - -73.432672, - 45.510943 - ], - [ - -73.43266, - 45.510948 - ], - [ - -73.432649, - 45.510952 - ], - [ - -73.432637, - 45.510957 - ], - [ - -73.432626, - 45.510961 - ], - [ - -73.432614, - 45.510961 - ], - [ - -73.432602, - 45.510966 - ], - [ - -73.432591, - 45.51097 - ], - [ - -73.432579, - 45.510975 - ], - [ - -73.432568, - 45.510979 - ], - [ - -73.432556, - 45.510984 - ], - [ - -73.432545, - 45.510988 - ], - [ - -73.432534, - 45.510993 - ], - [ - -73.432522, - 45.510997 - ], - [ - -73.432511, - 45.511002 - ], - [ - -73.4325, - 45.511006 - ], - [ - -73.432489, - 45.511011 - ], - [ - -73.432478, - 45.511015 - ], - [ - -73.432467, - 45.51102 - ], - [ - -73.432456, - 45.511024 - ], - [ - -73.432445, - 45.511029 - ], - [ - -73.432434, - 45.511033 - ], - [ - -73.432423, - 45.511038 - ], - [ - -73.432413, - 45.511042 - ], - [ - -73.432402, - 45.511047 - ], - [ - -73.432391, - 45.511051 - ], - [ - -73.432381, - 45.511056 - ], - [ - -73.43237, - 45.511065 - ], - [ - -73.43236, - 45.511069 - ], - [ - -73.432349, - 45.511074 - ], - [ - -73.432339, - 45.511078 - ], - [ - -73.432329, - 45.511083 - ], - [ - -73.432319, - 45.511087 - ], - [ - -73.432309, - 45.511096 - ], - [ - -73.432299, - 45.511101 - ], - [ - -73.432288, - 45.511105 - ], - [ - -73.432279, - 45.51111 - ], - [ - -73.432269, - 45.511119 - ], - [ - -73.432259, - 45.511123 - ], - [ - -73.432249, - 45.511128 - ], - [ - -73.432239, - 45.511132 - ], - [ - -73.432229, - 45.511141 - ], - [ - -73.43222, - 45.511146 - ], - [ - -73.43221, - 45.51115 - ], - [ - -73.432201, - 45.511159 - ], - [ - -73.432191, - 45.511163 - ], - [ - -73.432182, - 45.511172 - ], - [ - -73.432172, - 45.511177 - ], - [ - -73.432163, - 45.511181 - ], - [ - -73.432154, - 45.51119 - ], - [ - -73.432145, - 45.511195 - ], - [ - -73.432136, - 45.511199 - ], - [ - -73.432127, - 45.511208 - ], - [ - -73.432118, - 45.511213 - ], - [ - -73.432109, - 45.511222 - ], - [ - -73.4321, - 45.511226 - ], - [ - -73.432092, - 45.511235 - ], - [ - -73.432083, - 45.51124 - ], - [ - -73.432075, - 45.511249 - ], - [ - -73.432066, - 45.511253 - ], - [ - -73.432058, - 45.511262 - ], - [ - -73.43205, - 45.511267 - ], - [ - -73.432042, - 45.511276 - ], - [ - -73.432034, - 45.51128 - ], - [ - -73.432026, - 45.511289 - ], - [ - -73.432018, - 45.511294 - ], - [ - -73.43201, - 45.511303 - ], - [ - -73.432002, - 45.511312 - ], - [ - -73.431994, - 45.511316 - ], - [ - -73.431987, - 45.511325 - ], - [ - -73.431979, - 45.51133 - ], - [ - -73.431972, - 45.511339 - ], - [ - -73.431964, - 45.511348 - ], - [ - -73.431957, - 45.511352 - ], - [ - -73.431949, - 45.511361 - ], - [ - -73.431943, - 45.51137 - ], - [ - -73.431935, - 45.511375 - ], - [ - -73.431929, - 45.511384 - ], - [ - -73.431921, - 45.511393 - ], - [ - -73.431915, - 45.511397 - ], - [ - -73.431908, - 45.511406 - ], - [ - -73.431901, - 45.511415 - ], - [ - -73.431895, - 45.511424 - ], - [ - -73.431888, - 45.511429 - ], - [ - -73.431881, - 45.511438 - ], - [ - -73.431875, - 45.511447 - ], - [ - -73.431868, - 45.511451 - ], - [ - -73.431862, - 45.51146 - ], - [ - -73.431854, - 45.511469 - ], - [ - -73.431842, - 45.511483 - ], - [ - -73.431836, - 45.511492 - ], - [ - -73.431831, - 45.511501 - ], - [ - -73.431825, - 45.51151 - ], - [ - -73.431819, - 45.511519 - ], - [ - -73.431813, - 45.511523 - ], - [ - -73.431808, - 45.511532 - ], - [ - -73.431803, - 45.511541 - ], - [ - -73.431797, - 45.51155 - ], - [ - -73.431792, - 45.511559 - ], - [ - -73.431787, - 45.511564 - ], - [ - -73.431782, - 45.511573 - ], - [ - -73.431777, - 45.511582 - ], - [ - -73.431772, - 45.511591 - ], - [ - -73.431768, - 45.5116 - ], - [ - -73.431763, - 45.511609 - ], - [ - -73.431759, - 45.511618 - ], - [ - -73.431754, - 45.511627 - ], - [ - -73.43175, - 45.511631 - ], - [ - -73.431746, - 45.51164 - ], - [ - -73.431742, - 45.511649 - ], - [ - -73.431738, - 45.511658 - ], - [ - -73.431734, - 45.511667 - ], - [ - -73.43173, - 45.511676 - ], - [ - -73.431726, - 45.511685 - ], - [ - -73.431723, - 45.511694 - ], - [ - -73.431719, - 45.511703 - ], - [ - -73.431716, - 45.511712 - ], - [ - -73.431712, - 45.511721 - ], - [ - -73.431709, - 45.511726 - ], - [ - -73.431706, - 45.511735 - ], - [ - -73.431703, - 45.511744 - ], - [ - -73.4317, - 45.511753 - ], - [ - -73.431697, - 45.511762 - ], - [ - -73.431695, - 45.511771 - ], - [ - -73.431692, - 45.51178 - ], - [ - -73.431689, - 45.511789 - ], - [ - -73.431687, - 45.511798 - ], - [ - -73.431685, - 45.511807 - ], - [ - -73.431683, - 45.511816 - ], - [ - -73.431665, - 45.511901 - ], - [ - -73.431544, - 45.512161 - ], - [ - -73.431398, - 45.512474 - ], - [ - -73.430968, - 45.513394 - ], - [ - -73.430964, - 45.513405 - ], - [ - -73.430859, - 45.51368 - ], - [ - -73.430789, - 45.513841 - ], - [ - -73.430568, - 45.51435 - ], - [ - -73.429532, - 45.516417 - ], - [ - -73.429446, - 45.516583 - ], - [ - -73.429331, - 45.516814 - ], - [ - -73.429076, - 45.517326 - ], - [ - -73.428778, - 45.517897 - ], - [ - -73.428741, - 45.517969 - ], - [ - -73.428677, - 45.518077 - ], - [ - -73.428609, - 45.51821 - ], - [ - -73.42817, - 45.519067 - ], - [ - -73.427999, - 45.519399 - ], - [ - -73.427981, - 45.519435 - ], - [ - -73.427427, - 45.520538 - ], - [ - -73.4271, - 45.521187 - ], - [ - -73.426988, - 45.521409 - ], - [ - -73.426937, - 45.521513 - ], - [ - -73.426864, - 45.521657 - ], - [ - -73.426582, - 45.522215 - ], - [ - -73.426259, - 45.522854 - ], - [ - -73.4262, - 45.52297 - ], - [ - -73.426172, - 45.523031 - ], - [ - -73.426142, - 45.523096 - ], - [ - -73.425801, - 45.523748 - ], - [ - -73.425675, - 45.523928 - ], - [ - -73.425562, - 45.524081 - ], - [ - -73.425537, - 45.524109 - ], - [ - -73.425414, - 45.524243 - ], - [ - -73.424925, - 45.524616 - ], - [ - -73.423418, - 45.525708 - ], - [ - -73.423238, - 45.52583 - ], - [ - -73.423172, - 45.525884 - ], - [ - -73.422826, - 45.526068 - ], - [ - -73.42265, - 45.526009 - ], - [ - -73.422416, - 45.525951 - ], - [ - -73.422264, - 45.525874 - ], - [ - -73.422144, - 45.525784 - ], - [ - -73.419695, - 45.523915 - ], - [ - -73.41965, - 45.523903 - ], - [ - -73.419509, - 45.523866 - ], - [ - -73.419456, - 45.523861 - ], - [ - -73.419403, - 45.523865 - ], - [ - -73.419351, - 45.523865 - ], - [ - -73.419315, - 45.52387 - ], - [ - -73.419103, - 45.523933 - ], - [ - -73.419059, - 45.523946 - ], - [ - -73.418952, - 45.524009 - ], - [ - -73.416902, - 45.525767 - ], - [ - -73.416911, - 45.525773 - ], - [ - -73.417416, - 45.526158 - ], - [ - -73.418423, - 45.526924 - ], - [ - -73.418708, - 45.527143 - ], - [ - -73.418798, - 45.527212 - ], - [ - -73.418328, - 45.527239 - ], - [ - -73.4181, - 45.527253 - ], - [ - -73.417889, - 45.527266 - ], - [ - -73.417233, - 45.527306 - ], - [ - -73.416471, - 45.527368 - ], - [ - -73.416113, - 45.527413 - ], - [ - -73.415864, - 45.527462 - ], - [ - -73.415791, - 45.527476 - ], - [ - -73.415623, - 45.527507 - ], - [ - -73.415341, - 45.527583 - ], - [ - -73.414947, - 45.527714 - ], - [ - -73.414433, - 45.527907 - ], - [ - -73.414317, - 45.52797 - ], - [ - -73.414095, - 45.528122 - ], - [ - -73.413981, - 45.528206 - ], - [ - -73.413829, - 45.528316 - ], - [ - -73.413427, - 45.528639 - ], - [ - -73.412935, - 45.529071 - ], - [ - -73.41228, - 45.529682 - ], - [ - -73.411928, - 45.530019 - ], - [ - -73.41126, - 45.530705 - ], - [ - -73.411161, - 45.530806 - ], - [ - -73.410191, - 45.531944 - ], - [ - -73.40972, - 45.532479 - ], - [ - -73.409422, - 45.53282 - ], - [ - -73.407976, - 45.534494 - ], - [ - -73.40783, - 45.534664 - ], - [ - -73.407306, - 45.534276 - ], - [ - -73.403296, - 45.531178 - ], - [ - -73.402755, - 45.530772 - ], - [ - -73.402547, - 45.530579 - ], - [ - -73.402372, - 45.530398 - ], - [ - -73.402191, - 45.530164 - ], - [ - -73.402009, - 45.529831 - ], - [ - -73.40188, - 45.529593 - ], - [ - -73.401787, - 45.529467 - ], - [ - -73.401662, - 45.529296 - ], - [ - -73.401534, - 45.529165 - ], - [ - -73.401344, - 45.52898 - ], - [ - -73.398838, - 45.527039 - ], - [ - -73.396808, - 45.525476 - ], - [ - -73.396516, - 45.525251 - ], - [ - -73.39603, - 45.524872 - ], - [ - -73.395926, - 45.524796 - ], - [ - -73.395913, - 45.524787 - ], - [ - -73.395487, - 45.524422 - ], - [ - -73.395062, - 45.524093 - ], - [ - -73.393689, - 45.523044 - ], - [ - -73.392528, - 45.522188 - ], - [ - -73.392608, - 45.522129 - ], - [ - -73.392765, - 45.522062 - ], - [ - -73.392857, - 45.522019 - ], - [ - -73.392947, - 45.521977 - ], - [ - -73.393247, - 45.521891 - ], - [ - -73.393516, - 45.521869 - ], - [ - -73.393778, - 45.521869 - ], - [ - -73.39387, - 45.521885 - ], - [ - -73.394218, - 45.521942 - ], - [ - -73.394476, - 45.522045 - ], - [ - -73.394652, - 45.522154 - ], - [ - -73.394747, - 45.522217 - ], - [ - -73.394826, - 45.522289 - ], - [ - -73.396251, - 45.521368 - ], - [ - -73.397218, - 45.52073 - ], - [ - -73.397969, - 45.520235 - ], - [ - -73.399127, - 45.519472 - ], - [ - -73.400623, - 45.518491 - ], - [ - -73.400643, - 45.518479 - ], - [ - -73.400681, - 45.518454 - ], - [ - -73.401985, - 45.517616 - ], - [ - -73.402852, - 45.517042 - ], - [ - -73.402988, - 45.516952 - ], - [ - -73.403934, - 45.516317 - ], - [ - -73.40525, - 45.515455 - ], - [ - -73.405458, - 45.515319 - ], - [ - -73.406805, - 45.514436 - ], - [ - -73.408069, - 45.513608 - ], - [ - -73.408317, - 45.513441 - ], - [ - -73.408576, - 45.513275 - ] - ] - }, - "id": 78, - "properties": { - "id": "6e9b65f8-8524-4d67-b9f7-d38deda045a3", - "data": { - "gtfs": { - "shape_id": "28_1_R" - }, - "segments": [ - { - "distanceMeters": 1052, - "travelTimeSeconds": 182 - }, - { - "distanceMeters": 483, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 392, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 331, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 481, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 347, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 400, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 653, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 493, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 1973, - "travelTimeSeconds": 223 - }, - { - "distanceMeters": 708, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 22 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 252, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17135, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8860.319167895477, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.8, - "travelTimeWithoutDwellTimesSeconds": 2520, - "operatingTimeWithLayoverTimeSeconds": 2772, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2520, - "operatingSpeedWithLayoverMetersPerSecond": 6.18, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.8 - }, - "mode": "bus", - "name": "Aéroport St-Hubert", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "b19be6c8-c333-401a-98e4-d16876257831", - "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "d00d9138-966b-4522-be1d-8c665c71246b", - "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", - "48ea0d06-7b69-4895-b55b-2a18e6e6f906", - "21e2e89a-3df0-4ff7-aa64-17a07fbd660e", - "0b419003-a369-45de-8ce5-7da6890d7f0a", - "680dba5d-14fa-4f77-98bd-f3a49fec7b48", - "f45a38ac-0f3f-41d9-9da1-be7902cc983a", - "9cf81604-6d70-4ba8-a3fc-521104742058", - "28f2fe65-961c-4550-a722-1e7790fe94ad", - "9d0a7ab6-be66-4ca9-b863-8712d8cd028c", - "999ed130-7d99-4115-ac3c-cabba7731288", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "27c5df15-201f-4855-9f49-556fd659fd8e", - "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", - "aa7795c0-dd5c-4462-b672-459c92223af2", - "49918c5a-8414-49fd-abf9-87ae6b9f3976", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "011d1f54-164c-4564-a051-bdacad3e287d", - "c3a2368c-bf2d-4c72-9adb-41ee799004b3", - "6885c351-726d-4431-84b5-d9262699183f", - "4e3112b5-abc7-4db5-a6a8-19b4193263c2", - "a5ca0f69-bb6f-4ef0-aaaa-1498b5ff9d00", - "ca3fc9fc-e2eb-41c4-a8d2-0ad2d2109db1", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "d3991811-d92b-4ba2-9732-26a74abc49b7", - "a873c2b7-5c8e-4dd4-9140-a7e8d042d038", - "b8513e69-5eee-478d-b428-8f498c145b40", - "344c16fc-7161-4015-9999-e3e0f325dd1e", - "abd431b8-dcf2-4c7a-a458-732690905187", - "dcaa1460-3c81-4616-b65b-ed7fae894032", - "a3922a48-9f26-4845-9881-2b33d59d0127", - "0f06220e-c086-4a85-9d80-5c4d5410f93e", - "789f4442-496b-49a8-9269-68c86839ee71", - "4d0b0e5c-93dc-4d99-84e1-62026882c424", - "5fca388e-eb04-4453-a322-bc37f3153a8f", - "feb4de14-0e62-4e9e-a6c1-ea3c1270d98e", - "3abeeed6-00fe-4697-9dbf-87d5c2515aac", - "23054239-a5b5-43b6-a4dd-70fd7b62e6fb", - "945bff31-775d-46d3-8e37-f61285a9e40d", - "e508c7cf-026b-4bcf-8135-74c7544363a5", - "ed42da21-6b05-4077-96ea-1a113eaf4850", - "14f0cd5d-3ba1-4c3a-96f5-43862d47ec96", - "94a06ef0-fab6-48d9-b546-63c0a5523117", - "96dc38f6-44d4-438d-b986-07c908b99f23", - "d488b16d-4bf0-4526-8c06-e8192c180e3b", - "a208dd9e-53a1-4deb-bed5-724b8b3ed912", - "aef95744-a773-4cb5-9474-7425de00e382", - "84766cb6-ab9a-4256-a341-0b084c084dbb", - "7b3cddda-c6ba-4d35-a936-01ff21d1501b", - "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", - "4012bfc4-334d-4b7d-9898-4cfd802d0479", - "784dd9cc-281a-47d9-8014-a2e6add384f6", - "3ce1139e-888c-4783-a57f-da50952eee26", - "90f9f389-96b4-444b-8d1b-774cf89df3c1" - ], - "stops": [], - "line_id": "87d9ede3-8a3c-4f40-b8d3-fade3320fa27", - "segments": [ - 0, - 42, - 61, - 66, - 74, - 82, - 89, - 99, - 102, - 108, - 113, - 119, - 123, - 126, - 129, - 134, - 137, - 144, - 150, - 155, - 159, - 162, - 169, - 172, - 178, - 185, - 189, - 194, - 199, - 202, - 207, - 209, - 211, - 213, - 216, - 245, - 346, - 504, - 510, - 512, - 518, - 519, - 523, - 527, - 532, - 544, - 554, - 557, - 566, - 573, - 579, - 584, - 615, - 625, - 629, - 632, - 634 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 78, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.408622, - 45.513244 - ], - [ - -73.408576, - 45.513275 - ], - [ - -73.408317, - 45.513441 - ], - [ - -73.408069, - 45.513608 - ], - [ - -73.406656, - 45.514533 - ], - [ - -73.405458, - 45.515319 - ], - [ - -73.405252, - 45.515454 - ], - [ - -73.403934, - 45.516317 - ], - [ - -73.403117, - 45.516866 - ], - [ - -73.402988, - 45.516952 - ], - [ - -73.401985, - 45.517616 - ], - [ - -73.400781, - 45.51839 - ], - [ - -73.400681, - 45.518454 - ], - [ - -73.400643, - 45.518479 - ], - [ - -73.399127, - 45.519472 - ], - [ - -73.397969, - 45.520235 - ], - [ - -73.397218, - 45.52073 - ], - [ - -73.396251, - 45.521368 - ], - [ - -73.394826, - 45.522289 - ], - [ - -73.394198, - 45.522707 - ], - [ - -73.394126, - 45.522755 - ], - [ - -73.393689, - 45.523044 - ], - [ - -73.392528, - 45.522188 - ], - [ - -73.392608, - 45.522129 - ], - [ - -73.392668, - 45.522103 - ], - [ - -73.392765, - 45.522062 - ], - [ - -73.392947, - 45.521977 - ], - [ - -73.393247, - 45.521891 - ], - [ - -73.393516, - 45.521869 - ], - [ - -73.393694, - 45.521869 - ], - [ - -73.393778, - 45.521869 - ], - [ - -73.394218, - 45.521942 - ], - [ - -73.394467, - 45.522042 - ], - [ - -73.394476, - 45.522045 - ], - [ - -73.394652, - 45.522154 - ], - [ - -73.394747, - 45.522217 - ], - [ - -73.394826, - 45.522289 - ], - [ - -73.394198, - 45.522707 - ], - [ - -73.393689, - 45.523044 - ], - [ - -73.393551, - 45.523138 - ], - [ - -73.393547, - 45.523138 - ], - [ - -73.394849, - 45.524138 - ], - [ - -73.395227, - 45.524377 - ], - [ - -73.395913, - 45.524787 - ], - [ - -73.395926, - 45.524796 - ], - [ - -73.39603, - 45.524872 - ], - [ - -73.396516, - 45.525251 - ], - [ - -73.396808, - 45.525476 - ], - [ - -73.398838, - 45.527039 - ], - [ - -73.401344, - 45.52898 - ], - [ - -73.401534, - 45.529165 - ], - [ - -73.401662, - 45.529296 - ], - [ - -73.401787, - 45.529467 - ], - [ - -73.40188, - 45.529593 - ], - [ - -73.402009, - 45.529831 - ], - [ - -73.402191, - 45.530164 - ], - [ - -73.402372, - 45.530398 - ], - [ - -73.402547, - 45.530579 - ], - [ - -73.402755, - 45.530772 - ], - [ - -73.403296, - 45.531178 - ], - [ - -73.407306, - 45.534276 - ], - [ - -73.407661, - 45.534539 - ], - [ - -73.40783, - 45.534664 - ], - [ - -73.407942, - 45.534534 - ], - [ - -73.409422, - 45.53282 - ], - [ - -73.40972, - 45.532479 - ], - [ - -73.410191, - 45.531944 - ], - [ - -73.410879, - 45.531138 - ], - [ - -73.411161, - 45.530806 - ], - [ - -73.411928, - 45.530019 - ], - [ - -73.41228, - 45.529682 - ], - [ - -73.412935, - 45.529071 - ], - [ - -73.413427, - 45.528639 - ], - [ - -73.413829, - 45.528316 - ], - [ - -73.414095, - 45.528122 - ], - [ - -73.414107, - 45.528115 - ], - [ - -73.414317, - 45.52797 - ], - [ - -73.414433, - 45.527907 - ], - [ - -73.414947, - 45.527714 - ], - [ - -73.415341, - 45.527583 - ], - [ - -73.415623, - 45.527507 - ], - [ - -73.415864, - 45.527462 - ], - [ - -73.416113, - 45.527413 - ], - [ - -73.416376, - 45.52738 - ], - [ - -73.416471, - 45.527368 - ], - [ - -73.417233, - 45.527306 - ], - [ - -73.417889, - 45.527266 - ], - [ - -73.418328, - 45.527239 - ], - [ - -73.418647, - 45.527221 - ], - [ - -73.418798, - 45.527212 - ], - [ - -73.418423, - 45.526924 - ], - [ - -73.418108, - 45.526684 - ], - [ - -73.416902, - 45.525767 - ], - [ - -73.4189, - 45.524054 - ], - [ - -73.418952, - 45.524009 - ], - [ - -73.419059, - 45.523946 - ], - [ - -73.419315, - 45.52387 - ], - [ - -73.419351, - 45.523865 - ], - [ - -73.419403, - 45.523865 - ], - [ - -73.419456, - 45.523861 - ], - [ - -73.419509, - 45.523866 - ], - [ - -73.419695, - 45.523915 - ], - [ - -73.419839, - 45.524025 - ], - [ - -73.422144, - 45.525784 - ], - [ - -73.422264, - 45.525874 - ], - [ - -73.422416, - 45.525951 - ], - [ - -73.42265, - 45.526009 - ], - [ - -73.422826, - 45.526068 - ], - [ - -73.422965, - 45.525994 - ], - [ - -73.423172, - 45.525884 - ], - [ - -73.423238, - 45.52583 - ], - [ - -73.423418, - 45.525708 - ], - [ - -73.424925, - 45.524616 - ], - [ - -73.425414, - 45.524243 - ], - [ - -73.425562, - 45.524081 - ], - [ - -73.425603, - 45.524025 - ], - [ - -73.425675, - 45.523928 - ], - [ - -73.425801, - 45.523748 - ], - [ - -73.42609, - 45.523195 - ], - [ - -73.426142, - 45.523096 - ], - [ - -73.4262, - 45.52297 - ], - [ - -73.426259, - 45.522854 - ], - [ - -73.426582, - 45.522215 - ], - [ - -73.426866, - 45.521653 - ], - [ - -73.426937, - 45.521513 - ], - [ - -73.426988, - 45.521409 - ], - [ - -73.4271, - 45.521187 - ], - [ - -73.427475, - 45.520442 - ], - [ - -73.427965, - 45.519467 - ], - [ - -73.427999, - 45.519399 - ], - [ - -73.42817, - 45.519067 - ], - [ - -73.428609, - 45.51821 - ], - [ - -73.428677, - 45.518077 - ], - [ - -73.428741, - 45.517969 - ], - [ - -73.428892, - 45.517677 - ], - [ - -73.429076, - 45.517326 - ], - [ - -73.429373, - 45.516729 - ], - [ - -73.429446, - 45.516583 - ], - [ - -73.429532, - 45.516417 - ], - [ - -73.430568, - 45.51435 - ], - [ - -73.430789, - 45.513841 - ], - [ - -73.430859, - 45.51368 - ], - [ - -73.430933, - 45.513487 - ], - [ - -73.430968, - 45.513394 - ], - [ - -73.431544, - 45.512161 - ], - [ - -73.431665, - 45.511901 - ], - [ - -73.431703, - 45.511825 - ], - [ - -73.43171, - 45.511816 - ], - [ - -73.431715, - 45.511807 - ], - [ - -73.43172, - 45.511798 - ], - [ - -73.431725, - 45.511789 - ], - [ - -73.43173, - 45.51178 - ], - [ - -73.431735, - 45.511771 - ], - [ - -73.43174, - 45.511766 - ], - [ - -73.431745, - 45.511757 - ], - [ - -73.431751, - 45.511748 - ], - [ - -73.431757, - 45.511739 - ], - [ - -73.431762, - 45.51173 - ], - [ - -73.431767, - 45.511726 - ], - [ - -73.431773, - 45.511717 - ], - [ - -73.431779, - 45.511708 - ], - [ - -73.431785, - 45.511699 - ], - [ - -73.431791, - 45.51169 - ], - [ - -73.431797, - 45.511685 - ], - [ - -73.431803, - 45.511676 - ], - [ - -73.431809, - 45.511667 - ], - [ - -73.431815, - 45.511658 - ], - [ - -73.431822, - 45.511654 - ], - [ - -73.431828, - 45.511645 - ], - [ - -73.431834, - 45.511636 - ], - [ - -73.43184, - 45.511627 - ], - [ - -73.431847, - 45.511622 - ], - [ - -73.431854, - 45.511613 - ], - [ - -73.43186, - 45.511604 - ], - [ - -73.431867, - 45.5116 - ], - [ - -73.431874, - 45.511591 - ], - [ - -73.43188, - 45.511582 - ], - [ - -73.431888, - 45.511577 - ], - [ - -73.431894, - 45.511568 - ], - [ - -73.431902, - 45.511559 - ], - [ - -73.431908, - 45.511555 - ], - [ - -73.431916, - 45.511546 - ], - [ - -73.431923, - 45.511537 - ], - [ - -73.43193, - 45.511532 - ], - [ - -73.431938, - 45.511523 - ], - [ - -73.431945, - 45.511514 - ], - [ - -73.431953, - 45.51151 - ], - [ - -73.431962, - 45.511501 - ], - [ - -73.431969, - 45.511492 - ], - [ - -73.431977, - 45.511487 - ], - [ - -73.431985, - 45.511478 - ], - [ - -73.431993, - 45.511469 - ], - [ - -73.432001, - 45.511465 - ], - [ - -73.432009, - 45.511456 - ], - [ - -73.432017, - 45.511451 - ], - [ - -73.432025, - 45.511442 - ], - [ - -73.432033, - 45.511438 - ], - [ - -73.432042, - 45.511429 - ], - [ - -73.43205, - 45.511424 - ], - [ - -73.432058, - 45.511415 - ], - [ - -73.432067, - 45.511411 - ], - [ - -73.432075, - 45.511402 - ], - [ - -73.432084, - 45.511397 - ], - [ - -73.432092, - 45.511388 - ], - [ - -73.432101, - 45.511384 - ], - [ - -73.43211, - 45.511375 - ], - [ - -73.432118, - 45.51137 - ], - [ - -73.432127, - 45.511361 - ], - [ - -73.432136, - 45.511357 - ], - [ - -73.432145, - 45.511348 - ], - [ - -73.432154, - 45.511343 - ], - [ - -73.432163, - 45.511339 - ], - [ - -73.432172, - 45.51133 - ], - [ - -73.432181, - 45.511325 - ], - [ - -73.43219, - 45.511316 - ], - [ - -73.4322, - 45.511312 - ], - [ - -73.432209, - 45.511307 - ], - [ - -73.432218, - 45.511298 - ], - [ - -73.432228, - 45.511294 - ], - [ - -73.432237, - 45.511285 - ], - [ - -73.432247, - 45.511281 - ], - [ - -73.432256, - 45.511276 - ], - [ - -73.432266, - 45.511267 - ], - [ - -73.432276, - 45.511263 - ], - [ - -73.432285, - 45.511258 - ], - [ - -73.432295, - 45.511254 - ], - [ - -73.432305, - 45.511245 - ], - [ - -73.432315, - 45.51124 - ], - [ - -73.432324, - 45.511236 - ], - [ - -73.432334, - 45.511227 - ], - [ - -73.432344, - 45.511222 - ], - [ - -73.432355, - 45.511218 - ], - [ - -73.432365, - 45.511213 - ], - [ - -73.432375, - 45.511209 - ], - [ - -73.432385, - 45.5112 - ], - [ - -73.432396, - 45.511195 - ], - [ - -73.432406, - 45.511191 - ], - [ - -73.432416, - 45.511186 - ], - [ - -73.432426, - 45.511182 - ], - [ - -73.432437, - 45.511173 - ], - [ - -73.432448, - 45.511168 - ], - [ - -73.432458, - 45.511164 - ], - [ - -73.432469, - 45.511159 - ], - [ - -73.432479, - 45.511155 - ], - [ - -73.43249, - 45.51115 - ], - [ - -73.432501, - 45.511146 - ], - [ - -73.432512, - 45.511141 - ], - [ - -73.432522, - 45.511137 - ], - [ - -73.432533, - 45.511132 - ], - [ - -73.432544, - 45.511128 - ], - [ - -73.432555, - 45.511123 - ], - [ - -73.432566, - 45.511114 - ], - [ - -73.432577, - 45.51111 - ], - [ - -73.432588, - 45.511105 - ], - [ - -73.432599, - 45.511101 - ], - [ - -73.432611, - 45.511096 - ], - [ - -73.432622, - 45.511096 - ], - [ - -73.432633, - 45.511092 - ], - [ - -73.432644, - 45.511087 - ], - [ - -73.432655, - 45.511083 - ], - [ - -73.432667, - 45.511078 - ], - [ - -73.432678, - 45.511074 - ], - [ - -73.43269, - 45.511069 - ], - [ - -73.432701, - 45.511065 - ], - [ - -73.432713, - 45.51106 - ], - [ - -73.432724, - 45.511056 - ], - [ - -73.432736, - 45.511051 - ], - [ - -73.432747, - 45.511051 - ], - [ - -73.432759, - 45.511047 - ], - [ - -73.432771, - 45.511042 - ], - [ - -73.432778, - 45.51104 - ], - [ - -73.432782, - 45.511038 - ], - [ - -73.432794, - 45.511033 - ], - [ - -73.432806, - 45.511033 - ], - [ - -73.432818, - 45.511029 - ], - [ - -73.432829, - 45.511024 - ], - [ - -73.432841, - 45.51102 - ], - [ - -73.432853, - 45.51102 - ], - [ - -73.432865, - 45.511015 - ], - [ - -73.432877, - 45.511011 - ], - [ - -73.432889, - 45.511006 - ], - [ - -73.432901, - 45.511006 - ], - [ - -73.432913, - 45.511002 - ], - [ - -73.433005, - 45.510989 - ], - [ - -73.433027, - 45.510984 - ], - [ - -73.43304, - 45.51098 - ], - [ - -73.433052, - 45.51098 - ], - [ - -73.433065, - 45.51098 - ], - [ - -73.433077, - 45.510975 - ], - [ - -73.43309, - 45.510975 - ], - [ - -73.433103, - 45.510975 - ], - [ - -73.433115, - 45.510971 - ], - [ - -73.433128, - 45.510971 - ], - [ - -73.433141, - 45.510971 - ], - [ - -73.433153, - 45.510971 - ], - [ - -73.433166, - 45.510971 - ], - [ - -73.433179, - 45.510971 - ], - [ - -73.433192, - 45.510971 - ], - [ - -73.433205, - 45.510971 - ], - [ - -73.433981, - 45.510974 - ], - [ - -73.434422, - 45.510976 - ], - [ - -73.434437, - 45.510976 - ], - [ - -73.43445, - 45.510976 - ], - [ - -73.434463, - 45.510976 - ], - [ - -73.434476, - 45.510971 - ], - [ - -73.434488, - 45.510971 - ], - [ - -73.434501, - 45.510971 - ], - [ - -73.434514, - 45.510971 - ], - [ - -73.434527, - 45.510971 - ], - [ - -73.434539, - 45.510967 - ], - [ - -73.434552, - 45.510967 - ], - [ - -73.434565, - 45.510967 - ], - [ - -73.434578, - 45.510967 - ], - [ - -73.43459, - 45.510962 - ], - [ - -73.434603, - 45.510962 - ], - [ - -73.434615, - 45.510962 - ], - [ - -73.434628, - 45.510958 - ], - [ - -73.43464, - 45.510958 - ], - [ - -73.434653, - 45.510958 - ], - [ - -73.434666, - 45.510953 - ], - [ - -73.434678, - 45.510953 - ], - [ - -73.43469, - 45.510949 - ], - [ - -73.434703, - 45.510949 - ], - [ - -73.434716, - 45.510945 - ], - [ - -73.434728, - 45.510945 - ], - [ - -73.43474, - 45.51094 - ], - [ - -73.434752, - 45.51094 - ], - [ - -73.434765, - 45.510936 - ], - [ - -73.434777, - 45.510936 - ], - [ - -73.43479, - 45.510931 - ], - [ - -73.434802, - 45.510931 - ], - [ - -73.434814, - 45.510927 - ], - [ - -73.434826, - 45.510922 - ], - [ - -73.434838, - 45.510922 - ], - [ - -73.43485, - 45.510918 - ], - [ - -73.434862, - 45.510913 - ], - [ - -73.434874, - 45.510913 - ], - [ - -73.434886, - 45.510909 - ], - [ - -73.434898, - 45.510904 - ], - [ - -73.43491, - 45.5109 - ], - [ - -73.434922, - 45.5109 - ], - [ - -73.434934, - 45.510895 - ], - [ - -73.434946, - 45.510891 - ], - [ - -73.434957, - 45.510886 - ], - [ - -73.434969, - 45.510886 - ], - [ - -73.43498, - 45.510882 - ], - [ - -73.434992, - 45.510877 - ], - [ - -73.435004, - 45.510873 - ], - [ - -73.435015, - 45.510868 - ], - [ - -73.435027, - 45.510864 - ], - [ - -73.435038, - 45.510859 - ], - [ - -73.435049, - 45.510855 - ], - [ - -73.435061, - 45.51085 - ], - [ - -73.435072, - 45.510846 - ], - [ - -73.435083, - 45.510846 - ], - [ - -73.435095, - 45.510841 - ], - [ - -73.435105, - 45.510837 - ], - [ - -73.435117, - 45.510832 - ], - [ - -73.435127, - 45.510823 - ], - [ - -73.435139, - 45.510819 - ], - [ - -73.435149, - 45.510814 - ], - [ - -73.43516, - 45.51081 - ], - [ - -73.435171, - 45.510805 - ], - [ - -73.435181, - 45.510801 - ], - [ - -73.435192, - 45.510796 - ], - [ - -73.435203, - 45.510792 - ], - [ - -73.435213, - 45.510787 - ], - [ - -73.435223, - 45.510783 - ], - [ - -73.435234, - 45.510774 - ], - [ - -73.435244, - 45.510769 - ], - [ - -73.435255, - 45.510765 - ], - [ - -73.435265, - 45.51076 - ], - [ - -73.435275, - 45.510756 - ], - [ - -73.435285, - 45.510747 - ], - [ - -73.435296, - 45.510742 - ], - [ - -73.435308, - 45.510733 - ], - [ - -73.435318, - 45.510729 - ], - [ - -73.435328, - 45.510724 - ], - [ - -73.435338, - 45.51072 - ], - [ - -73.435347, - 45.510711 - ], - [ - -73.435357, - 45.510706 - ], - [ - -73.435367, - 45.510702 - ], - [ - -73.435377, - 45.510697 - ], - [ - -73.435387, - 45.510688 - ], - [ - -73.435396, - 45.510684 - ], - [ - -73.435405, - 45.510679 - ], - [ - -73.435415, - 45.51067 - ], - [ - -73.435424, - 45.510666 - ], - [ - -73.435433, - 45.510657 - ], - [ - -73.435443, - 45.510652 - ], - [ - -73.435451, - 45.510648 - ], - [ - -73.435461, - 45.510639 - ], - [ - -73.43547, - 45.510634 - ], - [ - -73.435478, - 45.510625 - ], - [ - -73.435487, - 45.510621 - ], - [ - -73.435496, - 45.510612 - ], - [ - -73.435504, - 45.510608 - ], - [ - -73.435513, - 45.510599 - ], - [ - -73.435521, - 45.510594 - ], - [ - -73.43553, - 45.510585 - ], - [ - -73.435538, - 45.510581 - ], - [ - -73.435546, - 45.510572 - ], - [ - -73.435554, - 45.510567 - ], - [ - -73.435562, - 45.510558 - ], - [ - -73.43557, - 45.510554 - ], - [ - -73.435578, - 45.510545 - ], - [ - -73.435586, - 45.510536 - ], - [ - -73.435593, - 45.510531 - ], - [ - -73.435601, - 45.510522 - ], - [ - -73.435608, - 45.510518 - ], - [ - -73.435616, - 45.510509 - ], - [ - -73.435623, - 45.5105 - ], - [ - -73.435627, - 45.510497 - ], - [ - -73.43563, - 45.510495 - ], - [ - -73.435637, - 45.510486 - ], - [ - -73.435782, - 45.510319 - ], - [ - -73.435893, - 45.510189 - ], - [ - -73.43661, - 45.510502 - ], - [ - -73.437183, - 45.510752 - ], - [ - -73.437938, - 45.511081 - ], - [ - -73.438224, - 45.511212 - ], - [ - -73.438478, - 45.511327 - ], - [ - -73.439008, - 45.511568 - ], - [ - -73.439422, - 45.511744 - ], - [ - -73.439738, - 45.511879 - ], - [ - -73.43983, - 45.511919 - ], - [ - -73.439896, - 45.511951 - ], - [ - -73.440237, - 45.512095 - ], - [ - -73.441448, - 45.512613 - ], - [ - -73.441811, - 45.512775 - ], - [ - -73.442867, - 45.513201 - ], - [ - -73.443061, - 45.51328 - ], - [ - -73.445634, - 45.514379 - ], - [ - -73.44565, - 45.514386 - ], - [ - -73.446646, - 45.514811 - ], - [ - -73.448382, - 45.515525 - ], - [ - -73.448481, - 45.515566 - ], - [ - -73.44854, - 45.51559 - ], - [ - -73.449494, - 45.515978 - ], - [ - -73.449844, - 45.516127 - ], - [ - -73.450296, - 45.51632 - ], - [ - -73.451352, - 45.516753 - ], - [ - -73.451373, - 45.516761 - ], - [ - -73.451903, - 45.516982 - ], - [ - -73.452053, - 45.517054 - ], - [ - -73.45224, - 45.517153 - ], - [ - -73.452412, - 45.517228 - ], - [ - -73.452518, - 45.517275 - ], - [ - -73.453808, - 45.5178 - ], - [ - -73.45397, - 45.517866 - ], - [ - -73.454088, - 45.517914 - ], - [ - -73.454764, - 45.518193 - ], - [ - -73.455195, - 45.518372 - ], - [ - -73.455625, - 45.518549 - ], - [ - -73.45631, - 45.518837 - ], - [ - -73.457028, - 45.51913 - ], - [ - -73.457149, - 45.51918 - ], - [ - -73.457268, - 45.519234 - ], - [ - -73.458416, - 45.519718 - ], - [ - -73.458582, - 45.519788 - ], - [ - -73.460182, - 45.520458 - ], - [ - -73.460326, - 45.520518 - ], - [ - -73.460513, - 45.520597 - ], - [ - -73.462498, - 45.52143 - ], - [ - -73.462791, - 45.521553 - ], - [ - -73.463763, - 45.521951 - ], - [ - -73.463823, - 45.521976 - ], - [ - -73.464215, - 45.522138 - ], - [ - -73.464352, - 45.522188 - ], - [ - -73.464459, - 45.522246 - ], - [ - -73.464607, - 45.522332 - ], - [ - -73.465147, - 45.522548 - ], - [ - -73.465496, - 45.522687 - ], - [ - -73.466002, - 45.522899 - ], - [ - -73.466103, - 45.522924 - ], - [ - -73.466276, - 45.522967 - ], - [ - -73.467237, - 45.523363 - ], - [ - -73.467896, - 45.523641 - ], - [ - -73.468048, - 45.523705 - ], - [ - -73.468866, - 45.524038 - ], - [ - -73.469522, - 45.524322 - ], - [ - -73.469647, - 45.524373 - ], - [ - -73.469721, - 45.524403 - ], - [ - -73.470239, - 45.524623 - ], - [ - -73.470555, - 45.524749 - ], - [ - -73.471094, - 45.524979 - ], - [ - -73.471997, - 45.525357 - ], - [ - -73.472452, - 45.52555 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.474647, - 45.526461 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.475467, - 45.526811 - ], - [ - -73.475894, - 45.526982 - ], - [ - -73.476145, - 45.527086 - ], - [ - -73.476219, - 45.527117 - ], - [ - -73.476969, - 45.527428 - ], - [ - -73.477725, - 45.527748 - ], - [ - -73.478323, - 45.528 - ], - [ - -73.478598, - 45.528117 - ], - [ - -73.479454, - 45.528472 - ], - [ - -73.480164, - 45.528774 - ], - [ - -73.480753, - 45.529011 - ], - [ - -73.48089, - 45.529066 - ], - [ - -73.481416, - 45.529295 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.484952, - 45.530771 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.488426, - 45.532214 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.490637, - 45.533125 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.492957, - 45.534082 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.494095, - 45.534551 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.495628, - 45.535241 - ], - [ - -73.495883, - 45.535371 - ], - [ - -73.496552, - 45.535684 - ], - [ - -73.496645, - 45.535727 - ], - [ - -73.49677, - 45.535781 - ], - [ - -73.49726, - 45.535988 - ], - [ - -73.498459, - 45.536487 - ], - [ - -73.498937, - 45.536688 - ], - [ - -73.499435, - 45.536897 - ], - [ - -73.501142, - 45.537612 - ], - [ - -73.502066, - 45.537998 - ], - [ - -73.503253, - 45.538494 - ], - [ - -73.503424, - 45.538566 - ], - [ - -73.503808, - 45.538728 - ], - [ - -73.503912, - 45.538786 - ], - [ - -73.504095, - 45.538926 - ], - [ - -73.504553, - 45.539317 - ], - [ - -73.504747, - 45.539452 - ], - [ - -73.504761, - 45.539459 - ], - [ - -73.504898, - 45.539533 - ], - [ - -73.506469, - 45.540185 - ], - [ - -73.507029, - 45.540406 - ], - [ - -73.507958, - 45.540788 - ], - [ - -73.508096, - 45.540847 - ], - [ - -73.508112, - 45.54082 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.50824, - 45.540633 - ], - [ - -73.508341, - 45.540486 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.509497, - 45.538872 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.511586, - 45.537133 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.513272, - 45.536035 - ], - [ - -73.513413, - 45.535879 - ], - [ - -73.513707, - 45.535583 - ], - [ - -73.513941, - 45.535349 - ], - [ - -73.51397, - 45.535321 - ], - [ - -73.514031, - 45.535263 - ], - [ - -73.514312, - 45.534967 - ], - [ - -73.514735, - 45.53454 - ], - [ - -73.514842, - 45.53442 - ], - [ - -73.514898, - 45.534357 - ], - [ - -73.515145, - 45.534084 - ], - [ - -73.515317, - 45.533897 - ], - [ - -73.515372, - 45.533842 - ], - [ - -73.515504, - 45.533699 - ], - [ - -73.515506, - 45.533696 - ], - [ - -73.515888, - 45.533287 - ], - [ - -73.515986, - 45.533193 - ], - [ - -73.516612, - 45.53265 - ], - [ - -73.516729, - 45.532549 - ], - [ - -73.517579, - 45.531802 - ], - [ - -73.517924, - 45.531465 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518212, - 45.531168 - ], - [ - -73.51845, - 45.53088 - ], - [ - -73.518608, - 45.530695 - ], - [ - -73.518713, - 45.530574 - ], - [ - -73.518834, - 45.53043 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519398, - 45.526004 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 79, - "properties": { - "id": "2eeee3b8-b7d4-4faf-bf75-14b071cbfb5a", - "data": { - "gtfs": { - "shape_id": "28_1_A" - }, - "segments": [ - { - "distanceMeters": 210, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 989, - "travelTimeSeconds": 85 - }, - { - "distanceMeters": 1927, - "travelTimeSeconds": 166 - }, - { - "distanceMeters": 478, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 421, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 563, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 644, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 100, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 112, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 87, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 392, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 347, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 636, - "travelTimeSeconds": 157 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 132 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 252, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17138, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8860.319167895477, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.8, - "travelTimeWithoutDwellTimesSeconds": 2520, - "operatingTimeWithLayoverTimeSeconds": 2772, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2520, - "operatingSpeedWithLayoverMetersPerSecond": 6.18, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.8 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "90f9f389-96b4-444b-8d1b-774cf89df3c1", - "6d909e49-9727-42dc-95db-42259425acbd", - "4ee012e8-fd5c-471a-bb0b-87721da74cf6", - "02c6c49d-886b-440d-919e-7dc5515da70b", - "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", - "7b3cddda-c6ba-4d35-a936-01ff21d1501b", - "84766cb6-ab9a-4256-a341-0b084c084dbb", - "aef95744-a773-4cb5-9474-7425de00e382", - "a208dd9e-53a1-4deb-bed5-724b8b3ed912", - "d488b16d-4bf0-4526-8c06-e8192c180e3b", - "96dc38f6-44d4-438d-b986-07c908b99f23", - "14f0cd5d-3ba1-4c3a-96f5-43862d47ec96", - "ed42da21-6b05-4077-96ea-1a113eaf4850", - "e508c7cf-026b-4bcf-8135-74c7544363a5", - "945bff31-775d-46d3-8e37-f61285a9e40d", - "d8268f60-1558-45f9-8a7a-1fd3cd695326", - "3abeeed6-00fe-4697-9dbf-87d5c2515aac", - "feb4de14-0e62-4e9e-a6c1-ea3c1270d98e", - "5fca388e-eb04-4453-a322-bc37f3153a8f", - "4d0b0e5c-93dc-4d99-84e1-62026882c424", - "789f4442-496b-49a8-9269-68c86839ee71", - "0c9c2b52-ead4-4bb7-9085-39aca76f0358", - "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", - "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", - "7b1c691c-8a55-45c2-8401-9d619a0efb76", - "c4825963-416e-404b-a744-6ffe763e2d89", - "344c16fc-7161-4015-9999-e3e0f325dd1e", - "5636d204-312b-4d1e-bac7-614621da4bb5", - "d3991811-d92b-4ba2-9732-26a74abc49b7", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "5981cea7-b196-4e72-820c-362fb9c4e212", - "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", - "130245ae-209b-4e27-b903-ff57832b92eb", - "0d6b35f8-1b6c-4403-a7a5-53247aec7649", - "c3a2368c-bf2d-4c72-9adb-41ee799004b3", - "011d1f54-164c-4564-a051-bdacad3e287d", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "49918c5a-8414-49fd-abf9-87ae6b9f3976", - "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", - "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", - "65175945-c54c-4732-85a9-890393a0975c", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "999ed130-7d99-4115-ac3c-cabba7731288", - "d15f81ba-7519-47f7-aa07-0026f1b03e42", - "28f2fe65-961c-4550-a722-1e7790fe94ad", - "9cf81604-6d70-4ba8-a3fc-521104742058", - "4d48f36b-2274-4392-afac-b2c2c64b98f0", - "5f58acb6-be68-437f-bde7-a77d03125af9", - "4e61612c-2f48-47d6-ad42-7c0737853911", - "e46ba2d2-9f30-419f-acae-c73c3ef665c5", - "48ea0d06-7b69-4895-b55b-2a18e6e6f906", - "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", - "d00d9138-966b-4522-be1d-8c665c71246b", - "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "649e6394-9376-40eb-bc0e-4a376a0044aa", - "4fb4515b-e129-4622-b855-89143c2fd488", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "87d9ede3-8a3c-4f40-b8d3-fade3320fa27", - "segments": [ - 0, - 4, - 6, - 8, - 11, - 29, - 61, - 67, - 75, - 83, - 88, - 102, - 115, - 118, - 123, - 127, - 128, - 134, - 136, - 142, - 270, - 415, - 421, - 423, - 430, - 433, - 435, - 441, - 449, - 455, - 460, - 465, - 471, - 477, - 481, - 487, - 491, - 495, - 499, - 505, - 512, - 515, - 519, - 524, - 526, - 532, - 537, - 541, - 548, - 557, - 563, - 571, - 579, - 589, - 592, - 595, - 612 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 79, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.408622, - 45.513244 - ], - [ - -73.408576, - 45.513275 - ], - [ - -73.408317, - 45.513441 - ], - [ - -73.408069, - 45.513608 - ], - [ - -73.406656, - 45.514534 - ], - [ - -73.405458, - 45.515319 - ], - [ - -73.405252, - 45.515454 - ], - [ - -73.403934, - 45.516317 - ], - [ - -73.403117, - 45.516866 - ], - [ - -73.402988, - 45.516952 - ], - [ - -73.401985, - 45.517616 - ], - [ - -73.40078, - 45.51839 - ], - [ - -73.400681, - 45.518454 - ], - [ - -73.400643, - 45.518479 - ], - [ - -73.399127, - 45.519472 - ], - [ - -73.397969, - 45.520235 - ], - [ - -73.397218, - 45.52073 - ], - [ - -73.396251, - 45.521368 - ], - [ - -73.394826, - 45.522289 - ], - [ - -73.394198, - 45.522707 - ], - [ - -73.394126, - 45.522755 - ], - [ - -73.393689, - 45.523044 - ], - [ - -73.392528, - 45.522188 - ], - [ - -73.392608, - 45.522129 - ], - [ - -73.392668, - 45.522103 - ], - [ - -73.392765, - 45.522062 - ], - [ - -73.392947, - 45.521977 - ], - [ - -73.393247, - 45.521891 - ], - [ - -73.393516, - 45.521869 - ], - [ - -73.393695, - 45.521869 - ], - [ - -73.393778, - 45.521869 - ], - [ - -73.394218, - 45.521942 - ], - [ - -73.394467, - 45.522042 - ], - [ - -73.394476, - 45.522045 - ], - [ - -73.394652, - 45.522154 - ], - [ - -73.394747, - 45.522217 - ], - [ - -73.394826, - 45.522289 - ], - [ - -73.394198, - 45.522707 - ], - [ - -73.393689, - 45.523044 - ], - [ - -73.393551, - 45.523138 - ], - [ - -73.393547, - 45.523138 - ], - [ - -73.394849, - 45.524138 - ], - [ - -73.395227, - 45.524377 - ], - [ - -73.395913, - 45.524787 - ], - [ - -73.395926, - 45.524796 - ], - [ - -73.39603, - 45.524872 - ], - [ - -73.396516, - 45.525251 - ], - [ - -73.396808, - 45.525476 - ], - [ - -73.398838, - 45.527039 - ], - [ - -73.401344, - 45.52898 - ], - [ - -73.401534, - 45.529165 - ], - [ - -73.401662, - 45.529296 - ], - [ - -73.401787, - 45.529467 - ], - [ - -73.40188, - 45.529593 - ], - [ - -73.402009, - 45.529831 - ], - [ - -73.402191, - 45.530164 - ], - [ - -73.402372, - 45.530398 - ], - [ - -73.402547, - 45.530579 - ], - [ - -73.402755, - 45.530772 - ], - [ - -73.403296, - 45.531178 - ], - [ - -73.407306, - 45.534276 - ], - [ - -73.407663, - 45.53454 - ], - [ - -73.40783, - 45.534664 - ], - [ - -73.407942, - 45.534534 - ], - [ - -73.409422, - 45.53282 - ], - [ - -73.40972, - 45.532479 - ], - [ - -73.410191, - 45.531944 - ], - [ - -73.41088, - 45.531136 - ], - [ - -73.411161, - 45.530806 - ], - [ - -73.411928, - 45.530019 - ], - [ - -73.41228, - 45.529682 - ], - [ - -73.412935, - 45.529071 - ], - [ - -73.413427, - 45.528639 - ], - [ - -73.413829, - 45.528316 - ], - [ - -73.414095, - 45.528122 - ], - [ - -73.414108, - 45.528113 - ], - [ - -73.414317, - 45.52797 - ], - [ - -73.414433, - 45.527907 - ], - [ - -73.414947, - 45.527714 - ], - [ - -73.415341, - 45.527583 - ], - [ - -73.415623, - 45.527507 - ], - [ - -73.415864, - 45.527462 - ], - [ - -73.416113, - 45.527413 - ], - [ - -73.416379, - 45.52738 - ], - [ - -73.416471, - 45.527368 - ], - [ - -73.417233, - 45.527306 - ], - [ - -73.417889, - 45.527266 - ], - [ - -73.418328, - 45.527239 - ], - [ - -73.418649, - 45.527221 - ], - [ - -73.418798, - 45.527212 - ], - [ - -73.418423, - 45.526924 - ], - [ - -73.418108, - 45.526684 - ], - [ - -73.416902, - 45.525767 - ], - [ - -73.4189, - 45.524054 - ], - [ - -73.418952, - 45.524009 - ], - [ - -73.419059, - 45.523946 - ], - [ - -73.419315, - 45.52387 - ], - [ - -73.419351, - 45.523865 - ], - [ - -73.419403, - 45.523865 - ], - [ - -73.419456, - 45.523861 - ], - [ - -73.419509, - 45.523866 - ], - [ - -73.419695, - 45.523915 - ], - [ - -73.419841, - 45.524026 - ], - [ - -73.422144, - 45.525784 - ], - [ - -73.422264, - 45.525874 - ], - [ - -73.422416, - 45.525951 - ], - [ - -73.42265, - 45.526009 - ], - [ - -73.422826, - 45.526068 - ], - [ - -73.422965, - 45.525994 - ], - [ - -73.423172, - 45.525884 - ], - [ - -73.423238, - 45.52583 - ], - [ - -73.423418, - 45.525708 - ], - [ - -73.424925, - 45.524616 - ], - [ - -73.425414, - 45.524243 - ], - [ - -73.425562, - 45.524081 - ], - [ - -73.425605, - 45.524023 - ], - [ - -73.425675, - 45.523928 - ], - [ - -73.425801, - 45.523748 - ], - [ - -73.426091, - 45.523193 - ], - [ - -73.426142, - 45.523096 - ], - [ - -73.4262, - 45.52297 - ], - [ - -73.426259, - 45.522854 - ], - [ - -73.426582, - 45.522215 - ], - [ - -73.426867, - 45.521651 - ], - [ - -73.426937, - 45.521513 - ], - [ - -73.426988, - 45.521409 - ], - [ - -73.4271, - 45.521187 - ], - [ - -73.427476, - 45.520439 - ], - [ - -73.427966, - 45.519465 - ], - [ - -73.427999, - 45.519399 - ], - [ - -73.42817, - 45.519067 - ], - [ - -73.428609, - 45.51821 - ], - [ - -73.428677, - 45.518077 - ], - [ - -73.428741, - 45.517969 - ], - [ - -73.428894, - 45.517675 - ], - [ - -73.429076, - 45.517326 - ], - [ - -73.429374, - 45.516727 - ], - [ - -73.429446, - 45.516583 - ], - [ - -73.429532, - 45.516417 - ], - [ - -73.430568, - 45.51435 - ], - [ - -73.430789, - 45.513841 - ], - [ - -73.430859, - 45.51368 - ], - [ - -73.430916, - 45.513531 - ], - [ - -73.430934, - 45.513485 - ], - [ - -73.430968, - 45.513394 - ], - [ - -73.431589, - 45.513342 - ], - [ - -73.431761, - 45.513327 - ], - [ - -73.431949, - 45.513314 - ], - [ - -73.432163, - 45.513323 - ], - [ - -73.43254, - 45.5134 - ], - [ - -73.432606, - 45.513418 - ], - [ - -73.432902, - 45.513499 - ], - [ - -73.434194, - 45.513819 - ], - [ - -73.434274, - 45.513839 - ], - [ - -73.434817, - 45.513977 - ], - [ - -73.43514, - 45.514054 - ], - [ - -73.435477, - 45.514135 - ], - [ - -73.435628, - 45.513847 - ], - [ - -73.435644, - 45.513814 - ], - [ - -73.435792, - 45.513514 - ], - [ - -73.436343, - 45.513649 - ], - [ - -73.436723, - 45.513748 - ], - [ - -73.436797, - 45.513767 - ], - [ - -73.437172, - 45.513041 - ], - [ - -73.437908, - 45.511621 - ], - [ - -73.438008, - 45.511455 - ], - [ - -73.438076, - 45.511377 - ], - [ - -73.438152, - 45.511288 - ], - [ - -73.438224, - 45.511212 - ], - [ - -73.438475, - 45.511326 - ], - [ - -73.439008, - 45.511568 - ], - [ - -73.439429, - 45.511747 - ], - [ - -73.439738, - 45.511879 - ], - [ - -73.43983, - 45.511919 - ], - [ - -73.439896, - 45.511951 - ], - [ - -73.440237, - 45.512095 - ], - [ - -73.441448, - 45.512613 - ], - [ - -73.441811, - 45.512775 - ], - [ - -73.442875, - 45.513204 - ], - [ - -73.443061, - 45.51328 - ], - [ - -73.445634, - 45.514379 - ], - [ - -73.445658, - 45.514389 - ], - [ - -73.446646, - 45.514811 - ], - [ - -73.44839, - 45.515529 - ], - [ - -73.448481, - 45.515566 - ], - [ - -73.44854, - 45.51559 - ], - [ - -73.449494, - 45.515978 - ], - [ - -73.449844, - 45.516127 - ], - [ - -73.450296, - 45.51632 - ], - [ - -73.45136, - 45.516756 - ], - [ - -73.451373, - 45.516761 - ], - [ - -73.451903, - 45.516982 - ], - [ - -73.452053, - 45.517054 - ], - [ - -73.45224, - 45.517153 - ], - [ - -73.452412, - 45.517228 - ], - [ - -73.452518, - 45.517275 - ], - [ - -73.453808, - 45.5178 - ], - [ - -73.453978, - 45.517869 - ], - [ - -73.454088, - 45.517914 - ], - [ - -73.454764, - 45.518193 - ], - [ - -73.455195, - 45.518372 - ], - [ - -73.455625, - 45.518549 - ], - [ - -73.45631, - 45.518837 - ], - [ - -73.457036, - 45.519134 - ], - [ - -73.457149, - 45.51918 - ], - [ - -73.457268, - 45.519234 - ], - [ - -73.458416, - 45.519718 - ], - [ - -73.458582, - 45.519788 - ], - [ - -73.46019, - 45.520462 - ], - [ - -73.460326, - 45.520518 - ], - [ - -73.460513, - 45.520597 - ], - [ - -73.462498, - 45.52143 - ], - [ - -73.462791, - 45.521553 - ], - [ - -73.463771, - 45.521955 - ], - [ - -73.463823, - 45.521976 - ], - [ - -73.464215, - 45.522138 - ], - [ - -73.464352, - 45.522188 - ], - [ - -73.464459, - 45.522246 - ], - [ - -73.464607, - 45.522332 - ], - [ - -73.465155, - 45.522551 - ], - [ - -73.465496, - 45.522687 - ], - [ - -73.466002, - 45.522899 - ], - [ - -73.466103, - 45.522924 - ], - [ - -73.466276, - 45.522967 - ], - [ - -73.467237, - 45.523363 - ], - [ - -73.467894, - 45.52364 - ], - [ - -73.468048, - 45.523705 - ], - [ - -73.468866, - 45.524038 - ], - [ - -73.469522, - 45.524322 - ], - [ - -73.469645, - 45.524372 - ], - [ - -73.469721, - 45.524403 - ], - [ - -73.470239, - 45.524623 - ], - [ - -73.470555, - 45.524749 - ], - [ - -73.471094, - 45.524979 - ], - [ - -73.471997, - 45.525357 - ], - [ - -73.47246, - 45.525554 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.474655, - 45.526465 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.475467, - 45.526811 - ], - [ - -73.475894, - 45.526982 - ], - [ - -73.476154, - 45.52709 - ], - [ - -73.476219, - 45.527117 - ], - [ - -73.476969, - 45.527428 - ], - [ - -73.477725, - 45.527748 - ], - [ - -73.478332, - 45.528004 - ], - [ - -73.478598, - 45.528117 - ], - [ - -73.479454, - 45.528472 - ], - [ - -73.480164, - 45.528774 - ], - [ - -73.480753, - 45.529011 - ], - [ - -73.48089, - 45.529066 - ], - [ - -73.481414, - 45.529294 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.484961, - 45.530774 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.488424, - 45.532213 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.490635, - 45.533124 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.492956, - 45.534081 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.494094, - 45.534551 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.495628, - 45.535241 - ], - [ - -73.495883, - 45.535371 - ], - [ - -73.496551, - 45.535683 - ], - [ - -73.496645, - 45.535727 - ], - [ - -73.49677, - 45.535781 - ], - [ - -73.49726, - 45.535988 - ], - [ - -73.498459, - 45.536487 - ], - [ - -73.498936, - 45.536687 - ], - [ - -73.499435, - 45.536897 - ], - [ - -73.501142, - 45.537612 - ], - [ - -73.502066, - 45.537998 - ], - [ - -73.503263, - 45.538498 - ], - [ - -73.503424, - 45.538566 - ], - [ - -73.503808, - 45.538728 - ], - [ - -73.503912, - 45.538786 - ], - [ - -73.504095, - 45.538926 - ], - [ - -73.504553, - 45.539317 - ], - [ - -73.504747, - 45.539452 - ], - [ - -73.50477, - 45.539464 - ], - [ - -73.504898, - 45.539533 - ], - [ - -73.506469, - 45.540185 - ], - [ - -73.507029, - 45.540406 - ], - [ - -73.507958, - 45.540788 - ], - [ - -73.508096, - 45.540847 - ], - [ - -73.508112, - 45.54082 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.50824, - 45.540633 - ], - [ - -73.50834, - 45.540487 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.509502, - 45.538865 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.511595, - 45.537128 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.513272, - 45.536035 - ], - [ - -73.513413, - 45.535879 - ], - [ - -73.513707, - 45.535583 - ], - [ - -73.513941, - 45.535349 - ], - [ - -73.513977, - 45.535314 - ], - [ - -73.514031, - 45.535263 - ], - [ - -73.514312, - 45.534967 - ], - [ - -73.514735, - 45.53454 - ], - [ - -73.514842, - 45.53442 - ], - [ - -73.514898, - 45.534357 - ], - [ - -73.515145, - 45.534084 - ], - [ - -73.515317, - 45.533897 - ], - [ - -73.515372, - 45.533842 - ], - [ - -73.515504, - 45.533699 - ], - [ - -73.515513, - 45.533689 - ], - [ - -73.515888, - 45.533287 - ], - [ - -73.515986, - 45.533193 - ], - [ - -73.516619, - 45.532644 - ], - [ - -73.516729, - 45.532549 - ], - [ - -73.517579, - 45.531802 - ], - [ - -73.517931, - 45.531458 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518212, - 45.531168 - ], - [ - -73.51845, - 45.53088 - ], - [ - -73.518608, - 45.530695 - ], - [ - -73.518713, - 45.530574 - ], - [ - -73.518834, - 45.53043 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519398, - 45.526004 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 80, - "properties": { - "id": "490b7dc7-e851-4e10-be23-ae6f2d6b1bdc", - "data": { - "gtfs": { - "shape_id": "28_2_A" - }, - "segments": [ - { - "distanceMeters": 210, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 989, - "travelTimeSeconds": 85 - }, - { - "distanceMeters": 1927, - "travelTimeSeconds": 166 - }, - { - "distanceMeters": 478, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 421, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 563, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 644, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 100, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 112, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 819, - "travelTimeSeconds": 107 - }, - { - "distanceMeters": 45, - "travelTimeSeconds": 6 - }, - { - "distanceMeters": 88, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 635, - "travelTimeSeconds": 172 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 145 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 276, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17161, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8860.319167895477, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.22, - "travelTimeWithoutDwellTimesSeconds": 2760, - "operatingTimeWithLayoverTimeSeconds": 3036, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2760, - "operatingSpeedWithLayoverMetersPerSecond": 5.65, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.22 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "90f9f389-96b4-444b-8d1b-774cf89df3c1", - "6d909e49-9727-42dc-95db-42259425acbd", - "4ee012e8-fd5c-471a-bb0b-87721da74cf6", - "02c6c49d-886b-440d-919e-7dc5515da70b", - "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", - "7b3cddda-c6ba-4d35-a936-01ff21d1501b", - "84766cb6-ab9a-4256-a341-0b084c084dbb", - "aef95744-a773-4cb5-9474-7425de00e382", - "a208dd9e-53a1-4deb-bed5-724b8b3ed912", - "d488b16d-4bf0-4526-8c06-e8192c180e3b", - "96dc38f6-44d4-438d-b986-07c908b99f23", - "14f0cd5d-3ba1-4c3a-96f5-43862d47ec96", - "ed42da21-6b05-4077-96ea-1a113eaf4850", - "e508c7cf-026b-4bcf-8135-74c7544363a5", - "945bff31-775d-46d3-8e37-f61285a9e40d", - "d8268f60-1558-45f9-8a7a-1fd3cd695326", - "3abeeed6-00fe-4697-9dbf-87d5c2515aac", - "feb4de14-0e62-4e9e-a6c1-ea3c1270d98e", - "5fca388e-eb04-4453-a322-bc37f3153a8f", - "4d0b0e5c-93dc-4d99-84e1-62026882c424", - "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", - "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", - "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", - "7b1c691c-8a55-45c2-8401-9d619a0efb76", - "c4825963-416e-404b-a744-6ffe763e2d89", - "344c16fc-7161-4015-9999-e3e0f325dd1e", - "5636d204-312b-4d1e-bac7-614621da4bb5", - "d3991811-d92b-4ba2-9732-26a74abc49b7", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "5981cea7-b196-4e72-820c-362fb9c4e212", - "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", - "130245ae-209b-4e27-b903-ff57832b92eb", - "0d6b35f8-1b6c-4403-a7a5-53247aec7649", - "c3a2368c-bf2d-4c72-9adb-41ee799004b3", - "011d1f54-164c-4564-a051-bdacad3e287d", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "49918c5a-8414-49fd-abf9-87ae6b9f3976", - "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", - "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", - "65175945-c54c-4732-85a9-890393a0975c", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "999ed130-7d99-4115-ac3c-cabba7731288", - "d15f81ba-7519-47f7-aa07-0026f1b03e42", - "28f2fe65-961c-4550-a722-1e7790fe94ad", - "9cf81604-6d70-4ba8-a3fc-521104742058", - "4d48f36b-2274-4392-afac-b2c2c64b98f0", - "5f58acb6-be68-437f-bde7-a77d03125af9", - "4e61612c-2f48-47d6-ad42-7c0737853911", - "e46ba2d2-9f30-419f-acae-c73c3ef665c5", - "48ea0d06-7b69-4895-b55b-2a18e6e6f906", - "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", - "d00d9138-966b-4522-be1d-8c665c71246b", - "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "649e6394-9376-40eb-bc0e-4a376a0044aa", - "4fb4515b-e129-4622-b855-89143c2fd488", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "87d9ede3-8a3c-4f40-b8d3-fade3320fa27", - "segments": [ - 0, - 4, - 6, - 8, - 11, - 29, - 61, - 67, - 75, - 83, - 88, - 102, - 115, - 118, - 123, - 127, - 128, - 134, - 136, - 143, - 166, - 169, - 171, - 178, - 181, - 183, - 189, - 197, - 203, - 208, - 213, - 219, - 225, - 229, - 235, - 239, - 243, - 247, - 253, - 260, - 263, - 267, - 272, - 274, - 280, - 285, - 289, - 296, - 305, - 311, - 319, - 327, - 337, - 340, - 343, - 360 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 80, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.520811, - 45.523427 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522189, - 45.522392 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514253, - 45.51909 - ], - [ - -73.513885, - 45.518962 - ], - [ - -73.51387, - 45.518957 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513317, - 45.518773 - ], - [ - -73.51223, - 45.518422 - ], - [ - -73.509841, - 45.517649 - ], - [ - -73.506681, - 45.516623 - ], - [ - -73.506298, - 45.516497 - ], - [ - -73.506049, - 45.516416 - ], - [ - -73.506087, - 45.516538 - ], - [ - -73.506123, - 45.516645 - ], - [ - -73.506267, - 45.517046 - ], - [ - -73.506363, - 45.517243 - ], - [ - -73.506418, - 45.517356 - ], - [ - -73.506679, - 45.517851 - ], - [ - -73.506804, - 45.518072 - ], - [ - -73.506924, - 45.518297 - ], - [ - -73.507158, - 45.518738 - ], - [ - -73.507261, - 45.518931 - ], - [ - -73.507367, - 45.519126 - ], - [ - -73.507395, - 45.519177 - ], - [ - -73.507557, - 45.519476 - ], - [ - -73.507699, - 45.519736 - ], - [ - -73.507813, - 45.519948 - ], - [ - -73.5079, - 45.52011 - ], - [ - -73.508092, - 45.520465 - ], - [ - -73.508316, - 45.520888 - ], - [ - -73.50837, - 45.520987 - ], - [ - -73.508816, - 45.52186 - ], - [ - -73.508893, - 45.522004 - ], - [ - -73.509178, - 45.522539 - ], - [ - -73.50928, - 45.522728 - ], - [ - -73.509633, - 45.523397 - ], - [ - -73.509691, - 45.523507 - ], - [ - -73.509731, - 45.523583 - ], - [ - -73.509969, - 45.524042 - ], - [ - -73.510188, - 45.524465 - ], - [ - -73.510373, - 45.525036 - ], - [ - -73.510439, - 45.525351 - ], - [ - -73.510453, - 45.525414 - ], - [ - -73.510529, - 45.525734 - ], - [ - -73.510579, - 45.526273 - ], - [ - -73.510562, - 45.527029 - ], - [ - -73.510547, - 45.527214 - ], - [ - -73.51052, - 45.52743 - ], - [ - -73.510528, - 45.527565 - ], - [ - -73.510548, - 45.527677 - ], - [ - -73.510563, - 45.527749 - ], - [ - -73.510557, - 45.527853 - ], - [ - -73.510522, - 45.52797 - ], - [ - -73.510476, - 45.528037 - ], - [ - -73.510429, - 45.528114 - ], - [ - -73.510285, - 45.528097 - ], - [ - -73.510194, - 45.528086 - ], - [ - -73.510077, - 45.528048 - ], - [ - -73.507316, - 45.527151 - ], - [ - -73.506756, - 45.526962 - ], - [ - -73.506719, - 45.527057 - ], - [ - -73.50664, - 45.527183 - ], - [ - -73.506547, - 45.527291 - ], - [ - -73.50641, - 45.527444 - ], - [ - -73.506327, - 45.527507 - ], - [ - -73.506169, - 45.527714 - ], - [ - -73.505923, - 45.528082 - ], - [ - -73.505501, - 45.528735 - ], - [ - -73.504996, - 45.529468 - ], - [ - -73.504493, - 45.530197 - ], - [ - -73.504137, - 45.530724 - ], - [ - -73.504093, - 45.530787 - ], - [ - -73.503599, - 45.531497 - ], - [ - -73.503223, - 45.532051 - ], - [ - -73.502833, - 45.532654 - ], - [ - -73.502157, - 45.533563 - ], - [ - -73.501739, - 45.534094 - ], - [ - -73.50124, - 45.534719 - ], - [ - -73.500783, - 45.535317 - ], - [ - -73.50017, - 45.536064 - ], - [ - -73.499604, - 45.536744 - ], - [ - -73.499534, - 45.536807 - ], - [ - -73.499435, - 45.536897 - ], - [ - -73.49936, - 45.536964 - ], - [ - -73.498721, - 45.537445 - ], - [ - -73.496933, - 45.539034 - ], - [ - -73.496814, - 45.538963 - ], - [ - -73.496516, - 45.538786 - ], - [ - -73.495691, - 45.538291 - ], - [ - -73.494803, - 45.53776 - ], - [ - -73.4947, - 45.537693 - ], - [ - -73.494245, - 45.538158 - ], - [ - -73.493408, - 45.539015 - ], - [ - -73.492739, - 45.539699 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.491774, - 45.540689 - ], - [ - -73.491536, - 45.540936 - ], - [ - -73.491291, - 45.541175 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491035, - 45.541427 - ], - [ - -73.491084, - 45.541584 - ], - [ - -73.491099, - 45.541724 - ], - [ - -73.491106, - 45.541854 - ], - [ - -73.491092, - 45.542156 - ], - [ - -73.491081, - 45.542381 - ], - [ - -73.49104, - 45.543146 - ], - [ - -73.490998, - 45.543726 - ], - [ - -73.491037, - 45.544117 - ], - [ - -73.491071, - 45.544252 - ], - [ - -73.491113, - 45.544396 - ], - [ - -73.491272, - 45.544698 - ], - [ - -73.491367, - 45.544855 - ], - [ - -73.491449, - 45.544981 - ], - [ - -73.491608, - 45.545148 - ], - [ - -73.491886, - 45.545409 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.491911, - 45.546057 - ], - [ - -73.491829, - 45.546111 - ], - [ - -73.491431, - 45.546368 - ], - [ - -73.491216, - 45.546506 - ], - [ - -73.490714, - 45.547006 - ], - [ - -73.48951, - 45.547751 - ], - [ - -73.489407, - 45.547816 - ], - [ - -73.485955, - 45.549961 - ], - [ - -73.485528, - 45.550218 - ], - [ - -73.485059, - 45.550458 - ], - [ - -73.483956, - 45.551023 - ], - [ - -73.48427, - 45.551357 - ], - [ - -73.48453, - 45.551635 - ], - [ - -73.484618, - 45.551734 - ], - [ - -73.484693, - 45.55186 - ], - [ - -73.484759, - 45.552008 - ], - [ - -73.484816, - 45.552215 - ], - [ - -73.484834, - 45.552346 - ], - [ - -73.484812, - 45.552548 - ], - [ - -73.484776, - 45.552733 - ], - [ - -73.484668, - 45.55315 - ], - [ - -73.48441, - 45.55415 - ], - [ - -73.484362, - 45.554361 - ], - [ - -73.484318, - 45.554555 - ], - [ - -73.4843, - 45.554726 - ], - [ - -73.484291, - 45.554865 - ], - [ - -73.484305, - 45.555234 - ], - [ - -73.484308, - 45.555285 - ], - [ - -73.484331, - 45.555639 - ], - [ - -73.48434, - 45.555782 - ], - [ - -73.484366, - 45.556165 - ], - [ - -73.484397, - 45.556377 - ], - [ - -73.48445, - 45.556532 - ], - [ - -73.484458, - 45.556557 - ], - [ - -73.484529, - 45.556737 - ], - [ - -73.484586, - 45.556858 - ], - [ - -73.484746, - 45.557101 - ], - [ - -73.484811, - 45.5572 - ], - [ - -73.484876, - 45.557286 - ], - [ - -73.48555, - 45.5581 - ], - [ - -73.485664, - 45.558262 - ], - [ - -73.485726, - 45.558424 - ], - [ - -73.485748, - 45.558546 - ], - [ - -73.485765, - 45.558649 - ], - [ - -73.48573, - 45.558798 - ], - [ - -73.48566, - 45.558951 - ], - [ - -73.485563, - 45.559104 - ], - [ - -73.485413, - 45.559252 - ], - [ - -73.485085, - 45.559516 - ], - [ - -73.484971, - 45.559607 - ], - [ - -73.48489, - 45.559675 - ], - [ - -73.484312, - 45.560233 - ], - [ - -73.484078, - 45.560521 - ], - [ - -73.484025, - 45.56059 - ], - [ - -73.483849, - 45.560818 - ], - [ - -73.483677, - 45.561074 - ], - [ - -73.483637, - 45.561133 - ], - [ - -73.483578, - 45.561221 - ], - [ - -73.483026, - 45.562041 - ], - [ - -73.482901, - 45.562217 - ], - [ - -73.482854, - 45.562284 - ], - [ - -73.482493, - 45.562708 - ], - [ - -73.482425, - 45.562788 - ], - [ - -73.482409, - 45.562806 - ], - [ - -73.482342, - 45.562878 - ], - [ - -73.482066, - 45.563125 - ], - [ - -73.48196, - 45.56322 - ], - [ - -73.481758, - 45.563341 - ], - [ - -73.481506, - 45.563472 - ], - [ - -73.481447, - 45.563492 - ], - [ - -73.481361, - 45.563521 - ], - [ - -73.481206, - 45.563571 - ], - [ - -73.480981, - 45.563621 - ], - [ - -73.480428, - 45.563746 - ], - [ - -73.480284, - 45.563777 - ], - [ - -73.480145, - 45.563809 - ], - [ - -73.479899, - 45.563872 - ], - [ - -73.47976, - 45.563926 - ], - [ - -73.479667, - 45.563981 - ], - [ - -73.479595, - 45.564025 - ], - [ - -73.47922, - 45.564269 - ], - [ - -73.479021, - 45.564398 - ], - [ - -73.47891, - 45.564479 - ], - [ - -73.480326, - 45.56555 - ], - [ - -73.4804, - 45.565606 - ], - [ - -73.480492, - 45.565676 - ], - [ - -73.482494, - 45.567196 - ], - [ - -73.482644, - 45.56731 - ], - [ - -73.483836, - 45.568212 - ], - [ - -73.484053, - 45.568376 - ], - [ - -73.484489, - 45.568691 - ], - [ - -73.484675, - 45.568831 - ], - [ - -73.484833, - 45.568931 - ], - [ - -73.48493, - 45.568993 - ], - [ - -73.485344, - 45.569308 - ], - [ - -73.485559, - 45.569527 - ], - [ - -73.485603, - 45.569573 - ], - [ - -73.485637, - 45.569627 - ], - [ - -73.485662, - 45.569681 - ], - [ - -73.485673, - 45.569726 - ], - [ - -73.485673, - 45.569767 - ], - [ - -73.48567, - 45.569825 - ], - [ - -73.485662, - 45.569906 - ], - [ - -73.485627, - 45.569986 - ], - [ - -73.485389, - 45.570203 - ], - [ - -73.485317, - 45.570269 - ], - [ - -73.484918, - 45.570637 - ], - [ - -73.484877, - 45.570674 - ], - [ - -73.484851, - 45.570698 - ], - [ - -73.484572, - 45.570948 - ], - [ - -73.484207, - 45.571258 - ], - [ - -73.484112, - 45.571335 - ], - [ - -73.483947, - 45.571468 - ], - [ - -73.483827, - 45.571565 - ], - [ - -73.483769, - 45.571618 - ], - [ - -73.483704, - 45.571572 - ], - [ - -73.482973, - 45.571016 - ], - [ - -73.482377, - 45.570563 - ], - [ - -73.481862, - 45.570157 - ] - ] - }, - "id": 81, - "properties": { - "id": "aa45b43a-2145-42b5-aa48-ecac16171707", - "data": { - "gtfs": { - "shape_id": "29_1_R" - }, - "segments": [ - { - "distanceMeters": 7175, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 304, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 56 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10167, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2750.9275501855577, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 15.4, - "travelTimeWithoutDwellTimesSeconds": 660, - "operatingTimeWithLayoverTimeSeconds": 840, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 660, - "operatingSpeedWithLayoverMetersPerSecond": 12.1, - "averageSpeedWithoutDwellTimesMetersPerSecond": 15.4 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", - "fc1c0989-eb4e-4e77-b261-f952dd40601e", - "717d6b36-87fa-4b34-a418-6b20c1bc0d29", - "6db4cc67-3620-48bd-9c7c-28ab936b1e0b", - "a77c95ec-f278-40ce-a777-9f8b498d4367", - "f1b172ed-b501-4e36-bd1c-2425165ce50b", - "527ca44e-8da2-49e9-b2e4-033371d02c50", - "e6df12e3-4f2f-4277-aa8e-a04daab48336", - "9d19395e-81cd-4b78-af4a-b6c8e4259c9c", - "4f581479-b61b-497b-82d2-4c290ee6a857", - "84f7a7c0-b176-49cc-89e3-6756a3c3e4cc", - "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", - "0e909db9-b45c-44fa-bfff-a89f751e1acf", - "1c1d06bf-7e76-429d-9eb4-4a4d4d2842d4", - "24527bed-7ea6-44d6-b6db-18ac609f4938", - "ef393841-8a29-4383-a7b9-545addf087f6" - ], - "stops": [], - "line_id": "0d69f146-d423-4ce1-8347-91d9b5165fe2", - "segments": [ - 0, - 173, - 182, - 189, - 198, - 210, - 217, - 223, - 234, - 242, - 247, - 248, - 250, - 257, - 274 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 81, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.481862, - 45.570157 - ], - [ - -73.481822, - 45.570126 - ], - [ - -73.481331, - 45.569766 - ], - [ - -73.481257, - 45.569712 - ], - [ - -73.480428, - 45.569077 - ], - [ - -73.479866, - 45.568647 - ], - [ - -73.479008, - 45.56799 - ], - [ - -73.47867, - 45.567732 - ], - [ - -73.47894, - 45.567404 - ], - [ - -73.479088, - 45.567237 - ], - [ - -73.479664, - 45.56659 - ], - [ - -73.479946, - 45.566274 - ], - [ - -73.480076, - 45.566265 - ], - [ - -73.480517, - 45.566553 - ], - [ - -73.48115, - 45.567044 - ], - [ - -73.481186, - 45.567156 - ], - [ - -73.481181, - 45.5673 - ], - [ - -73.481322, - 45.567426 - ], - [ - -73.481717, - 45.567726 - ], - [ - -73.481834, - 45.567813 - ], - [ - -73.482502, - 45.567398 - ], - [ - -73.482513, - 45.567391 - ], - [ - -73.482644, - 45.56731 - ], - [ - -73.482793, - 45.567251 - ], - [ - -73.4815, - 45.566273 - ], - [ - -73.480444, - 45.565474 - ], - [ - -73.480073, - 45.565193 - ], - [ - -73.479542, - 45.564792 - ], - [ - -73.479021, - 45.564398 - ], - [ - -73.477591, - 45.5633 - ], - [ - -73.477496, - 45.563228 - ], - [ - -73.476819, - 45.562716 - ], - [ - -73.476459, - 45.562443 - ], - [ - -73.475938, - 45.562049 - ], - [ - -73.475231, - 45.561513 - ], - [ - -73.474585, - 45.561026 - ], - [ - -73.474436, - 45.560913 - ], - [ - -73.474349, - 45.560847 - ], - [ - -73.474262, - 45.560781 - ], - [ - -73.473051, - 45.559853 - ], - [ - -73.472951, - 45.559778 - ], - [ - -73.472285, - 45.559277 - ], - [ - -73.471768, - 45.558881 - ], - [ - -73.471246, - 45.558487 - ], - [ - -73.471028, - 45.558322 - ], - [ - -73.471824, - 45.557823 - ], - [ - -73.472324, - 45.557504 - ], - [ - -73.472479, - 45.557405 - ], - [ - -73.472629, - 45.557279 - ], - [ - -73.472632, - 45.557275 - ], - [ - -73.473526, - 45.556709 - ], - [ - -73.473662, - 45.556622 - ], - [ - -73.473763, - 45.556559 - ], - [ - -73.475299, - 45.555549 - ], - [ - -73.475452, - 45.555449 - ], - [ - -73.475549, - 45.55539 - ], - [ - -73.47589, - 45.555179 - ], - [ - -73.47658, - 45.554819 - ], - [ - -73.47721, - 45.554495 - ], - [ - -73.478403, - 45.55387 - ], - [ - -73.478898, - 45.553619 - ], - [ - -73.479586, - 45.553272 - ], - [ - -73.480214, - 45.552938 - ], - [ - -73.480374, - 45.552853 - ], - [ - -73.480484, - 45.552799 - ], - [ - -73.482032, - 45.552008 - ], - [ - -73.482067, - 45.551991 - ], - [ - -73.482159, - 45.551945 - ], - [ - -73.483045, - 45.55149 - ], - [ - -73.48356, - 45.551226 - ], - [ - -73.483956, - 45.551023 - ], - [ - -73.485059, - 45.550458 - ], - [ - -73.485528, - 45.550218 - ], - [ - -73.485955, - 45.549961 - ], - [ - -73.489407, - 45.547816 - ], - [ - -73.48951, - 45.547751 - ], - [ - -73.489875, - 45.547525 - ], - [ - -73.490714, - 45.547006 - ], - [ - -73.491216, - 45.546506 - ], - [ - -73.491431, - 45.546368 - ], - [ - -73.491829, - 45.546111 - ], - [ - -73.491911, - 45.546057 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.491976, - 45.545189 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.491356, - 45.541251 - ], - [ - -73.491461, - 45.541175 - ], - [ - -73.491486, - 45.541152 - ], - [ - -73.491857, - 45.540774 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.492859, - 45.539758 - ], - [ - -73.494699, - 45.537867 - ], - [ - -73.494803, - 45.53776 - ], - [ - -73.495499, - 45.537063 - ], - [ - -73.495945, - 45.536614 - ], - [ - -73.496193, - 45.536366 - ], - [ - -73.496375, - 45.536444 - ], - [ - -73.498721, - 45.537445 - ], - [ - -73.498812, - 45.537377 - ], - [ - -73.499302, - 45.537008 - ], - [ - -73.49936, - 45.536964 - ], - [ - -73.499435, - 45.536897 - ], - [ - -73.499534, - 45.536807 - ], - [ - -73.499604, - 45.536744 - ], - [ - -73.50017, - 45.536064 - ], - [ - -73.500783, - 45.535317 - ], - [ - -73.5012, - 45.534772 - ], - [ - -73.50124, - 45.534719 - ], - [ - -73.501739, - 45.534094 - ], - [ - -73.502114, - 45.533617 - ], - [ - -73.502157, - 45.533563 - ], - [ - -73.502833, - 45.532654 - ], - [ - -73.503135, - 45.532187 - ], - [ - -73.503223, - 45.532051 - ], - [ - -73.503599, - 45.531497 - ], - [ - -73.504033, - 45.530874 - ], - [ - -73.504093, - 45.530787 - ], - [ - -73.504137, - 45.530724 - ], - [ - -73.504493, - 45.530197 - ], - [ - -73.504926, - 45.529569 - ], - [ - -73.504996, - 45.529468 - ], - [ - -73.505501, - 45.528735 - ], - [ - -73.505861, - 45.528179 - ], - [ - -73.505923, - 45.528082 - ], - [ - -73.506169, - 45.527714 - ], - [ - -73.506327, - 45.527507 - ], - [ - -73.50641, - 45.527444 - ], - [ - -73.506547, - 45.527291 - ], - [ - -73.50664, - 45.527183 - ], - [ - -73.506682, - 45.527116 - ], - [ - -73.506719, - 45.527057 - ], - [ - -73.506756, - 45.526962 - ], - [ - -73.507316, - 45.527151 - ], - [ - -73.510077, - 45.528048 - ], - [ - -73.510194, - 45.528086 - ], - [ - -73.510285, - 45.528134 - ], - [ - -73.510385, - 45.528186 - ], - [ - -73.510473, - 45.528213 - ], - [ - -73.510517, - 45.528141 - ], - [ - -73.510544, - 45.528105 - ], - [ - -73.510616, - 45.52801 - ], - [ - -73.510673, - 45.527898 - ], - [ - -73.510724, - 45.527781 - ], - [ - -73.510813, - 45.527427 - ], - [ - -73.510842, - 45.527313 - ], - [ - -73.510878, - 45.526809 - ], - [ - -73.510897, - 45.526495 - ], - [ - -73.510904, - 45.526386 - ], - [ - -73.510825, - 45.525626 - ], - [ - -73.510791, - 45.525473 - ], - [ - -73.51061, - 45.524785 - ], - [ - -73.510559, - 45.524591 - ], - [ - -73.510103, - 45.523637 - ], - [ - -73.510027, - 45.523495 - ], - [ - -73.509615, - 45.522728 - ], - [ - -73.509474, - 45.522467 - ], - [ - -73.509184, - 45.521936 - ], - [ - -73.509122, - 45.521825 - ], - [ - -73.509119, - 45.521819 - ], - [ - -73.508895, - 45.52141 - ], - [ - -73.508877, - 45.521377 - ], - [ - -73.508774, - 45.52119 - ], - [ - -73.50866, - 45.520978 - ], - [ - -73.508615, - 45.520897 - ], - [ - -73.507931, - 45.519572 - ], - [ - -73.507805, - 45.519327 - ], - [ - -73.507767, - 45.519257 - ], - [ - -73.507224, - 45.518241 - ], - [ - -73.507088, - 45.517986 - ], - [ - -73.50664, - 45.517136 - ], - [ - -73.506594, - 45.517054 - ], - [ - -73.506515, - 45.516915 - ], - [ - -73.506521, - 45.516821 - ], - [ - -73.506537, - 45.516798 - ], - [ - -73.506565, - 45.51678 - ], - [ - -73.506617, - 45.516753 - ], - [ - -73.506766, - 45.516758 - ], - [ - -73.507482, - 45.51699 - ], - [ - -73.509647, - 45.51769 - ], - [ - -73.509783, - 45.517734 - ], - [ - -73.51201, - 45.518455 - ], - [ - -73.512173, - 45.518508 - ], - [ - -73.513534, - 45.518951 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.514991, - 45.519419 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518887, - 45.520627 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520861, - 45.524416 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.520811, - 45.523427 - ] - ] - }, - "id": 82, - "properties": { - "id": "3a76676a-b05d-436c-b9b5-7286eeff2f90", - "data": { - "gtfs": { - "shape_id": "29_1_A" - }, - "segments": [ - { - "distanceMeters": 60, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 83, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 481, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 1005, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 523, - "travelTimeSeconds": 88 - }, - { - "distanceMeters": 392, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 331, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 432, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 104, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 846, - "travelTimeSeconds": 158 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10737, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5993.066645974276, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.39, - "travelTimeWithoutDwellTimesSeconds": 1680, - "operatingTimeWithLayoverTimeSeconds": 1860, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1680, - "operatingSpeedWithLayoverMetersPerSecond": 5.77, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.39 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "ef393841-8a29-4383-a7b9-545addf087f6", - "ef393841-8a29-4383-a7b9-545addf087f6", - "281f350b-faae-4302-bcde-cc7831951682", - "59b13438-eb20-4204-b1fd-fe2ed2a80258", - "bc413ffa-dc65-4fc7-93f0-58dddebb3024", - "ce65fcd5-5449-4ede-b81b-9d2cd21731a7", - "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", - "08472942-a2a0-45ef-be22-2dc8587875b6", - "768e4b50-abe9-456e-9460-90d8cbf65940", - "b15716e4-5653-476c-ba57-960f89ea42d5", - "2332d398-d991-4d3f-9d67-38ab4930ac25", - "f5001112-5d1e-4489-87be-a34e9ded0d46", - "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", - "a388aa98-4c24-4671-8a33-a0e95f9d5ada", - "fc1c0989-eb4e-4e77-b261-f952dd40601e", - "2d7687a5-f458-4ce1-a3df-9639d89c0154", - "411bafbe-bac8-4586-9af4-bc0b3163bdde", - "04b348b3-bb46-4177-9e4b-604bf8d96a58", - "4ae33b06-30dd-4ad3-8df9-3ce610880853", - "02ddb4e4-c9f0-483c-9ae1-3f0d44c6367b", - "ba31b8f9-0d39-4bdd-b821-6bb787db72e9", - "95af381b-5ec5-4208-a73c-8f86d7b96b62", - "dac4f8d3-28c8-4cad-bd6d-c9e7c6bfb82b", - "91d2eb2a-bbfe-4d2d-887b-5ab9a417b7e2", - "3b0f936b-399c-4201-853b-8259a72529d0", - "09e0cc45-0105-4ba6-b7c5-86201ed79edf", - "43f366d5-ac33-41ca-be94-6282f0233cd1", - "aa2ca75c-2e9d-4072-a531-98e6423e4538", - "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", - "94f3304d-66ff-42a6-bd12-7828cf5efc64", - "7dd9be07-f5cb-4f00-86f7-d61821676a78", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "01cbab8a-50a9-42e0-9d05-820a9dd4fa51", - "c28a8fa6-886c-4f1e-b291-00d0237d02dd", - "eab3c393-e690-4d4a-921c-9c45533c53f2", - "e66fb997-f83d-42a0-a232-e5b0a94a0caf", - "608948b3-8ac4-493b-a2b3-48bd266c12ab", - "9da92501-0f80-4a3e-b324-83bbfa32d05c", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "acabc807-b0f5-4579-b183-cef0484a7cc2" - ], - "stops": [], - "line_id": "0d69f146-d423-4ce1-8347-91d9b5165fe2", - "segments": [ - 0, - 2, - 5, - 6, - 9, - 18, - 20, - 27, - 32, - 36, - 43, - 50, - 53, - 62, - 69, - 86, - 107, - 110, - 113, - 118, - 125, - 128, - 131, - 134, - 138, - 141, - 148, - 162, - 165, - 169, - 173, - 179, - 183, - 186, - 189, - 197, - 199, - 201, - 206, - 212 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 82, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.520811, - 45.523427 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522189, - 45.522392 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519246, - 45.520729 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514985, - 45.519324 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514253, - 45.51909 - ], - [ - -73.513885, - 45.518962 - ], - [ - -73.51387, - 45.518957 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513317, - 45.518773 - ], - [ - -73.512359, - 45.518464 - ], - [ - -73.51223, - 45.518422 - ], - [ - -73.510158, - 45.517751 - ], - [ - -73.509841, - 45.517649 - ], - [ - -73.507574, - 45.516913 - ], - [ - -73.506681, - 45.516623 - ], - [ - -73.506298, - 45.516497 - ], - [ - -73.506049, - 45.516416 - ], - [ - -73.506087, - 45.516538 - ], - [ - -73.506123, - 45.516645 - ], - [ - -73.506267, - 45.517046 - ], - [ - -73.506363, - 45.517243 - ], - [ - -73.506418, - 45.517356 - ], - [ - -73.50657, - 45.517645 - ], - [ - -73.506679, - 45.517851 - ], - [ - -73.506804, - 45.518072 - ], - [ - -73.506924, - 45.518297 - ], - [ - -73.507158, - 45.518738 - ], - [ - -73.507261, - 45.518931 - ], - [ - -73.507367, - 45.519126 - ], - [ - -73.507395, - 45.519177 - ], - [ - -73.507467, - 45.51931 - ], - [ - -73.507557, - 45.519476 - ], - [ - -73.507699, - 45.519736 - ], - [ - -73.507813, - 45.519948 - ], - [ - -73.5079, - 45.52011 - ], - [ - -73.508092, - 45.520465 - ], - [ - -73.508242, - 45.520748 - ], - [ - -73.508316, - 45.520888 - ], - [ - -73.50837, - 45.520987 - ], - [ - -73.508816, - 45.52186 - ], - [ - -73.508893, - 45.522004 - ], - [ - -73.509178, - 45.522539 - ], - [ - -73.509182, - 45.522545 - ], - [ - -73.50928, - 45.522728 - ], - [ - -73.509633, - 45.523397 - ], - [ - -73.509691, - 45.523507 - ], - [ - -73.509731, - 45.523583 - ], - [ - -73.509969, - 45.524042 - ], - [ - -73.510116, - 45.524325 - ], - [ - -73.510188, - 45.524465 - ], - [ - -73.510373, - 45.525036 - ], - [ - -73.510439, - 45.525351 - ], - [ - -73.510453, - 45.525414 - ], - [ - -73.510529, - 45.525734 - ], - [ - -73.510565, - 45.526126 - ], - [ - -73.510579, - 45.526273 - ], - [ - -73.510562, - 45.527029 - ], - [ - -73.510547, - 45.527214 - ], - [ - -73.51052, - 45.52743 - ], - [ - -73.51052, - 45.527436 - ], - [ - -73.510528, - 45.527565 - ], - [ - -73.510548, - 45.527677 - ], - [ - -73.510563, - 45.527749 - ], - [ - -73.510557, - 45.527853 - ], - [ - -73.510522, - 45.52797 - ], - [ - -73.510476, - 45.528037 - ], - [ - -73.510429, - 45.528114 - ], - [ - -73.510285, - 45.528097 - ], - [ - -73.510194, - 45.528086 - ], - [ - -73.510077, - 45.528048 - ], - [ - -73.509251, - 45.52778 - ], - [ - -73.507506, - 45.527213 - ], - [ - -73.507316, - 45.527151 - ], - [ - -73.506756, - 45.526962 - ], - [ - -73.506719, - 45.527057 - ], - [ - -73.50664, - 45.527183 - ], - [ - -73.506547, - 45.527291 - ], - [ - -73.50641, - 45.527444 - ], - [ - -73.506327, - 45.527507 - ], - [ - -73.506169, - 45.527714 - ], - [ - -73.505994, - 45.527977 - ], - [ - -73.505923, - 45.528082 - ], - [ - -73.505501, - 45.528735 - ], - [ - -73.505037, - 45.529409 - ], - [ - -73.504996, - 45.529468 - ], - [ - -73.504493, - 45.530197 - ], - [ - -73.504171, - 45.530673 - ], - [ - -73.504137, - 45.530724 - ], - [ - -73.504093, - 45.530787 - ], - [ - -73.503599, - 45.531497 - ], - [ - -73.503279, - 45.531968 - ], - [ - -73.503223, - 45.532051 - ], - [ - -73.502833, - 45.532654 - ], - [ - -73.502233, - 45.53346 - ], - [ - -73.502157, - 45.533563 - ], - [ - -73.501739, - 45.534094 - ], - [ - -73.50129, - 45.534656 - ], - [ - -73.50124, - 45.534719 - ], - [ - -73.500783, - 45.535317 - ], - [ - -73.50017, - 45.536064 - ], - [ - -73.499655, - 45.536682 - ], - [ - -73.499604, - 45.536744 - ], - [ - -73.499534, - 45.536807 - ], - [ - -73.499435, - 45.536897 - ], - [ - -73.49936, - 45.536964 - ], - [ - -73.498721, - 45.537445 - ], - [ - -73.497037, - 45.538941 - ], - [ - -73.496933, - 45.539034 - ], - [ - -73.496814, - 45.538963 - ], - [ - -73.496516, - 45.538786 - ], - [ - -73.495691, - 45.538291 - ], - [ - -73.494803, - 45.53776 - ], - [ - -73.4947, - 45.537693 - ], - [ - -73.494427, - 45.537972 - ], - [ - -73.494245, - 45.538158 - ], - [ - -73.493408, - 45.539015 - ], - [ - -73.493383, - 45.53904 - ], - [ - -73.492739, - 45.539699 - ], - [ - -73.492049, - 45.540404 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.491774, - 45.540689 - ], - [ - -73.491536, - 45.540936 - ], - [ - -73.491291, - 45.541175 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491035, - 45.541427 - ], - [ - -73.491084, - 45.541584 - ], - [ - -73.491099, - 45.541724 - ], - [ - -73.491103, - 45.541803 - ], - [ - -73.491106, - 45.541854 - ], - [ - -73.491092, - 45.542156 - ], - [ - -73.491081, - 45.542381 - ], - [ - -73.49104, - 45.543146 - ], - [ - -73.490998, - 45.543726 - ], - [ - -73.491037, - 45.544117 - ], - [ - -73.491071, - 45.544252 - ], - [ - -73.491113, - 45.544396 - ], - [ - -73.491272, - 45.544698 - ], - [ - -73.491367, - 45.544855 - ], - [ - -73.491449, - 45.544981 - ], - [ - -73.491608, - 45.545148 - ], - [ - -73.491886, - 45.545409 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.491911, - 45.546057 - ], - [ - -73.491829, - 45.546111 - ], - [ - -73.491635, - 45.546236 - ], - [ - -73.491431, - 45.546368 - ], - [ - -73.491216, - 45.546506 - ], - [ - -73.490714, - 45.547006 - ], - [ - -73.48951, - 45.547751 - ], - [ - -73.489407, - 45.547816 - ], - [ - -73.485955, - 45.549961 - ], - [ - -73.485528, - 45.550218 - ], - [ - -73.485059, - 45.550458 - ], - [ - -73.483956, - 45.551023 - ], - [ - -73.48427, - 45.551357 - ], - [ - -73.48453, - 45.551635 - ], - [ - -73.484618, - 45.551734 - ], - [ - -73.484693, - 45.55186 - ], - [ - -73.484759, - 45.552008 - ], - [ - -73.484816, - 45.552215 - ], - [ - -73.484834, - 45.552346 - ], - [ - -73.484812, - 45.552548 - ], - [ - -73.484776, - 45.552733 - ], - [ - -73.484668, - 45.55315 - ], - [ - -73.48441, - 45.55415 - ], - [ - -73.484362, - 45.554361 - ], - [ - -73.484318, - 45.554555 - ], - [ - -73.4843, - 45.554726 - ], - [ - -73.484291, - 45.554865 - ], - [ - -73.484305, - 45.555234 - ], - [ - -73.484308, - 45.555285 - ], - [ - -73.484331, - 45.555639 - ], - [ - -73.48434, - 45.555782 - ], - [ - -73.484366, - 45.556165 - ], - [ - -73.484397, - 45.556377 - ], - [ - -73.48445, - 45.556532 - ], - [ - -73.484458, - 45.556557 - ], - [ - -73.484529, - 45.556737 - ], - [ - -73.484586, - 45.556858 - ], - [ - -73.484746, - 45.557101 - ], - [ - -73.484811, - 45.5572 - ], - [ - -73.484876, - 45.557286 - ], - [ - -73.48555, - 45.5581 - ], - [ - -73.485664, - 45.558262 - ], - [ - -73.485726, - 45.558424 - ], - [ - -73.485748, - 45.558546 - ], - [ - -73.485765, - 45.558649 - ], - [ - -73.48573, - 45.558798 - ], - [ - -73.48566, - 45.558951 - ], - [ - -73.485563, - 45.559104 - ], - [ - -73.485413, - 45.559252 - ], - [ - -73.485085, - 45.559516 - ], - [ - -73.484971, - 45.559607 - ], - [ - -73.48489, - 45.559675 - ], - [ - -73.484312, - 45.560233 - ], - [ - -73.484078, - 45.560521 - ], - [ - -73.484025, - 45.56059 - ], - [ - -73.483849, - 45.560818 - ], - [ - -73.483677, - 45.561074 - ], - [ - -73.483637, - 45.561133 - ], - [ - -73.483578, - 45.561221 - ], - [ - -73.483026, - 45.562041 - ], - [ - -73.482901, - 45.562217 - ], - [ - -73.482854, - 45.562284 - ], - [ - -73.482493, - 45.562708 - ], - [ - -73.482425, - 45.562788 - ], - [ - -73.482409, - 45.562806 - ], - [ - -73.482342, - 45.562878 - ], - [ - -73.482066, - 45.563125 - ], - [ - -73.48196, - 45.56322 - ], - [ - -73.481758, - 45.563341 - ], - [ - -73.481506, - 45.563472 - ], - [ - -73.481447, - 45.563492 - ], - [ - -73.481361, - 45.563521 - ], - [ - -73.481206, - 45.563571 - ], - [ - -73.480981, - 45.563621 - ], - [ - -73.480428, - 45.563746 - ], - [ - -73.480284, - 45.563777 - ], - [ - -73.480145, - 45.563809 - ], - [ - -73.479899, - 45.563872 - ], - [ - -73.47976, - 45.563926 - ], - [ - -73.479667, - 45.563981 - ], - [ - -73.479595, - 45.564025 - ], - [ - -73.47922, - 45.564269 - ], - [ - -73.479021, - 45.564398 - ], - [ - -73.47891, - 45.564479 - ], - [ - -73.480326, - 45.56555 - ], - [ - -73.4804, - 45.565606 - ], - [ - -73.480492, - 45.565676 - ], - [ - -73.482494, - 45.567196 - ], - [ - -73.482644, - 45.56731 - ], - [ - -73.483836, - 45.568212 - ], - [ - -73.484053, - 45.568376 - ], - [ - -73.484489, - 45.568691 - ], - [ - -73.484675, - 45.568831 - ], - [ - -73.484833, - 45.568931 - ], - [ - -73.48493, - 45.568993 - ], - [ - -73.485344, - 45.569308 - ], - [ - -73.485559, - 45.569527 - ], - [ - -73.485603, - 45.569573 - ], - [ - -73.485637, - 45.569627 - ], - [ - -73.485662, - 45.569681 - ], - [ - -73.485673, - 45.569726 - ], - [ - -73.485673, - 45.569767 - ], - [ - -73.48567, - 45.569825 - ], - [ - -73.485662, - 45.569906 - ], - [ - -73.485627, - 45.569986 - ], - [ - -73.485389, - 45.570203 - ], - [ - -73.485317, - 45.570269 - ], - [ - -73.484918, - 45.570637 - ], - [ - -73.484877, - 45.570674 - ], - [ - -73.484851, - 45.570698 - ], - [ - -73.484572, - 45.570948 - ], - [ - -73.484207, - 45.571258 - ], - [ - -73.484112, - 45.571335 - ], - [ - -73.483947, - 45.571468 - ], - [ - -73.483827, - 45.571565 - ], - [ - -73.483769, - 45.571618 - ], - [ - -73.483704, - 45.571572 - ], - [ - -73.482973, - 45.571016 - ], - [ - -73.482377, - 45.570563 - ], - [ - -73.481862, - 45.570157 - ] - ] - }, - "id": 83, - "properties": { - "id": "031ab155-4186-4446-9bb8-adb6340e2848", - "data": { - "gtfs": { - "shape_id": "29_1_R" - }, - "segments": [ - { - "distanceMeters": 631, - "travelTimeSeconds": 92 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 549, - "travelTimeSeconds": 99 - }, - { - "distanceMeters": 848, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 304, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 67 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10167, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5993.066645974276, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.84, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 5.3, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.84 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "acabc807-b0f5-4579-b183-cef0484a7cc2", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "608948b3-8ac4-493b-a2b3-48bd266c12ab", - "e66fb997-f83d-42a0-a232-e5b0a94a0caf", - "aaca7ee9-974a-47d8-922b-2905590b6265", - "85d8d9e6-1387-4893-85de-43bc3c6ef93c", - "a9120d5d-ef7d-4b1d-b378-8c10096d7dd8", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "7dd9be07-f5cb-4f00-86f7-d61821676a78", - "94f3304d-66ff-42a6-bd12-7828cf5efc64", - "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", - "aa2ca75c-2e9d-4072-a531-98e6423e4538", - "0bf73f5f-c68a-4a9e-ae23-67c7ea602d08", - "43f366d5-ac33-41ca-be94-6282f0233cd1", - "09e0cc45-0105-4ba6-b7c5-86201ed79edf", - "3b0f936b-399c-4201-853b-8259a72529d0", - "91d2eb2a-bbfe-4d2d-887b-5ab9a417b7e2", - "dac4f8d3-28c8-4cad-bd6d-c9e7c6bfb82b", - "95af381b-5ec5-4208-a73c-8f86d7b96b62", - "ba31b8f9-0d39-4bdd-b821-6bb787db72e9", - "f45a38ac-0f3f-41d9-9da1-be7902cc983a", - "5917d490-78cc-4191-a19b-92a11e1dbb54", - "04b348b3-bb46-4177-9e4b-604bf8d96a58", - "df883f3f-5d1a-4061-a525-ec3be165a7a9", - "cae6ea67-63f0-47ac-84f1-96217eeb03b3", - "038a22ba-4928-42fc-aaed-50fbd831df37", - "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", - "fc1c0989-eb4e-4e77-b261-f952dd40601e", - "717d6b36-87fa-4b34-a418-6b20c1bc0d29", - "6db4cc67-3620-48bd-9c7c-28ab936b1e0b", - "a77c95ec-f278-40ce-a777-9f8b498d4367", - "f1b172ed-b501-4e36-bd1c-2425165ce50b", - "527ca44e-8da2-49e9-b2e4-033371d02c50", - "e6df12e3-4f2f-4277-aa8e-a04daab48336", - "9d19395e-81cd-4b78-af4a-b6c8e4259c9c", - "4f581479-b61b-497b-82d2-4c290ee6a857", - "84f7a7c0-b176-49cc-89e3-6756a3c3e4cc", - "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", - "0e909db9-b45c-44fa-bfff-a89f751e1acf", - "1c1d06bf-7e76-429d-9eb4-4a4d4d2842d4", - "24527bed-7ea6-44d6-b6db-18ac609f4938", - "ef393841-8a29-4383-a7b9-545addf087f6" - ], - "stops": [], - "line_id": "0d69f146-d423-4ce1-8347-91d9b5165fe2", - "segments": [ - 0, - 39, - 46, - 53, - 55, - 57, - 66, - 74, - 80, - 86, - 92, - 98, - 103, - 114, - 115, - 124, - 127, - 130, - 134, - 137, - 140, - 144, - 150, - 157, - 160, - 162, - 173, - 190, - 200, - 209, - 216, - 225, - 237, - 244, - 250, - 261, - 269, - 274, - 275, - 277, - 284, - 301 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 83, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.481862, - 45.570157 - ], - [ - -73.481822, - 45.570126 - ], - [ - -73.481257, - 45.569712 - ], - [ - -73.48061, - 45.569217 - ], - [ - -73.480428, - 45.569077 - ], - [ - -73.47867, - 45.567732 - ], - [ - -73.47894, - 45.567404 - ], - [ - -73.479664, - 45.56659 - ], - [ - -73.47987, - 45.56636 - ], - [ - -73.479946, - 45.566274 - ], - [ - -73.480076, - 45.566265 - ], - [ - -73.480517, - 45.566553 - ], - [ - -73.48115, - 45.567044 - ], - [ - -73.481186, - 45.567156 - ], - [ - -73.481181, - 45.5673 - ], - [ - -73.481322, - 45.567426 - ], - [ - -73.481736, - 45.56774 - ], - [ - -73.481834, - 45.567813 - ], - [ - -73.482513, - 45.567391 - ], - [ - -73.482644, - 45.56731 - ], - [ - -73.482793, - 45.567251 - ], - [ - -73.481602, - 45.56635 - ], - [ - -73.4815, - 45.566273 - ], - [ - -73.480444, - 45.565474 - ], - [ - -73.480073, - 45.565193 - ], - [ - -73.479021, - 45.564398 - ], - [ - -73.477591, - 45.5633 - ], - [ - -73.477496, - 45.563228 - ], - [ - -73.476819, - 45.562716 - ], - [ - -73.475938, - 45.562049 - ], - [ - -73.475231, - 45.561513 - ], - [ - -73.474585, - 45.561026 - ], - [ - -73.474358, - 45.560854 - ], - [ - -73.474349, - 45.560847 - ], - [ - -73.474262, - 45.560781 - ], - [ - -73.473051, - 45.559853 - ], - [ - -73.472951, - 45.559778 - ], - [ - -73.47264, - 45.559544 - ], - [ - -73.472285, - 45.559277 - ], - [ - -73.471768, - 45.558881 - ], - [ - -73.471028, - 45.558322 - ], - [ - -73.471824, - 45.557823 - ], - [ - -73.472324, - 45.557504 - ], - [ - -73.472479, - 45.557405 - ], - [ - -73.472629, - 45.557279 - ], - [ - -73.472632, - 45.557275 - ], - [ - -73.473662, - 45.556622 - ], - [ - -73.473763, - 45.556559 - ], - [ - -73.475452, - 45.555449 - ], - [ - -73.475549, - 45.55539 - ], - [ - -73.47589, - 45.555179 - ], - [ - -73.47658, - 45.554819 - ], - [ - -73.47721, - 45.554495 - ], - [ - -73.478403, - 45.55387 - ], - [ - -73.47852, - 45.553811 - ], - [ - -73.478898, - 45.553619 - ], - [ - -73.479586, - 45.553272 - ], - [ - -73.480374, - 45.552853 - ], - [ - -73.480484, - 45.552799 - ], - [ - -73.482032, - 45.552008 - ], - [ - -73.482067, - 45.551991 - ], - [ - -73.482159, - 45.551945 - ], - [ - -73.483045, - 45.55149 - ], - [ - -73.483956, - 45.551023 - ], - [ - -73.485059, - 45.550458 - ], - [ - -73.485528, - 45.550218 - ], - [ - -73.485955, - 45.549961 - ], - [ - -73.487162, - 45.549211 - ], - [ - -73.489407, - 45.547816 - ], - [ - -73.48951, - 45.547751 - ], - [ - -73.489875, - 45.547525 - ], - [ - -73.490714, - 45.547006 - ], - [ - -73.491216, - 45.546506 - ], - [ - -73.491431, - 45.546368 - ], - [ - -73.491829, - 45.546111 - ], - [ - -73.491911, - 45.546057 - ], - [ - -73.492309, - 45.545807 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.491356, - 45.541251 - ], - [ - -73.491461, - 45.541175 - ], - [ - -73.491486, - 45.541152 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.492859, - 45.539758 - ], - [ - -73.493745, - 45.538847 - ], - [ - -73.494803, - 45.53776 - ], - [ - -73.495499, - 45.537063 - ], - [ - -73.496193, - 45.536366 - ], - [ - -73.496375, - 45.536444 - ], - [ - -73.498721, - 45.537445 - ], - [ - -73.498812, - 45.537377 - ], - [ - -73.49936, - 45.536964 - ], - [ - -73.499435, - 45.536897 - ], - [ - -73.499534, - 45.536807 - ], - [ - -73.499604, - 45.536744 - ], - [ - -73.499739, - 45.536582 - ], - [ - -73.50017, - 45.536064 - ], - [ - -73.500783, - 45.535317 - ], - [ - -73.50124, - 45.534719 - ], - [ - -73.501739, - 45.534094 - ], - [ - -73.502157, - 45.533563 - ], - [ - -73.502545, - 45.533042 - ], - [ - -73.502833, - 45.532654 - ], - [ - -73.503223, - 45.532051 - ], - [ - -73.503599, - 45.531497 - ], - [ - -73.504093, - 45.530787 - ], - [ - -73.504137, - 45.530724 - ], - [ - -73.504493, - 45.530197 - ], - [ - -73.504996, - 45.529468 - ], - [ - -73.505501, - 45.528735 - ], - [ - -73.505923, - 45.528082 - ], - [ - -73.506169, - 45.527714 - ], - [ - -73.506327, - 45.527507 - ], - [ - -73.50641, - 45.527444 - ], - [ - -73.506547, - 45.527291 - ], - [ - -73.50664, - 45.527183 - ], - [ - -73.506719, - 45.527057 - ], - [ - -73.506756, - 45.526962 - ], - [ - -73.507316, - 45.527151 - ], - [ - -73.510077, - 45.528048 - ], - [ - -73.510194, - 45.528086 - ], - [ - -73.510285, - 45.528134 - ], - [ - -73.510385, - 45.528186 - ], - [ - -73.510473, - 45.528213 - ], - [ - -73.510517, - 45.528141 - ], - [ - -73.510544, - 45.528105 - ], - [ - -73.510616, - 45.52801 - ], - [ - -73.510673, - 45.527898 - ], - [ - -73.510724, - 45.527781 - ], - [ - -73.510769, - 45.527602 - ], - [ - -73.510842, - 45.527313 - ], - [ - -73.510878, - 45.526809 - ], - [ - -73.510904, - 45.526386 - ], - [ - -73.510825, - 45.525626 - ], - [ - -73.510791, - 45.525473 - ], - [ - -73.510559, - 45.524591 - ], - [ - -73.510103, - 45.523637 - ], - [ - -73.510027, - 45.523495 - ], - [ - -73.509474, - 45.522467 - ], - [ - -73.509184, - 45.521936 - ], - [ - -73.509122, - 45.521825 - ], - [ - -73.509119, - 45.521819 - ], - [ - -73.508895, - 45.52141 - ], - [ - -73.508774, - 45.52119 - ], - [ - -73.50866, - 45.520978 - ], - [ - -73.508641, - 45.520945 - ], - [ - -73.508615, - 45.520897 - ], - [ - -73.507805, - 45.519327 - ], - [ - -73.507767, - 45.519257 - ], - [ - -73.507088, - 45.517986 - ], - [ - -73.50664, - 45.517136 - ], - [ - -73.506515, - 45.516915 - ], - [ - -73.506521, - 45.516821 - ], - [ - -73.506537, - 45.516798 - ], - [ - -73.506565, - 45.51678 - ], - [ - -73.506617, - 45.516753 - ], - [ - -73.506766, - 45.516758 - ], - [ - -73.507482, - 45.51699 - ], - [ - -73.509783, - 45.517734 - ], - [ - -73.512173, - 45.518508 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520861, - 45.524416 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.520811, - 45.523427 - ] - ] - }, - "id": 84, - "properties": { - "id": "36f4b167-2c1e-45ed-8960-9b40cc597cd1", - "data": { - "gtfs": { - "shape_id": "29_1_A" - }, - "segments": [ - { - "distanceMeters": 143, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 403, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 832, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 956, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 846, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 553, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 875, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 691, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 451, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 1147, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 770, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 2395, - "travelTimeSeconds": 120 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10737, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2870.8809623402344, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 19.88, - "travelTimeWithoutDwellTimesSeconds": 540, - "operatingTimeWithLayoverTimeSeconds": 720, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 540, - "operatingSpeedWithLayoverMetersPerSecond": 14.91, - "averageSpeedWithoutDwellTimesMetersPerSecond": 19.88 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "ef393841-8a29-4383-a7b9-545addf087f6", - "ef393841-8a29-4383-a7b9-545addf087f6", - "281f350b-faae-4302-bcde-cc7831951682", - "59b13438-eb20-4204-b1fd-fe2ed2a80258", - "bc413ffa-dc65-4fc7-93f0-58dddebb3024", - "ce65fcd5-5449-4ede-b81b-9d2cd21731a7", - "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", - "08472942-a2a0-45ef-be22-2dc8587875b6", - "768e4b50-abe9-456e-9460-90d8cbf65940", - "b15716e4-5653-476c-ba57-960f89ea42d5", - "2332d398-d991-4d3f-9d67-38ab4930ac25", - "f5001112-5d1e-4489-87be-a34e9ded0d46", - "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", - "a388aa98-4c24-4671-8a33-a0e95f9d5ada", - "fc1c0989-eb4e-4e77-b261-f952dd40601e", - "2d7687a5-f458-4ce1-a3df-9639d89c0154" - ], - "stops": [], - "line_id": "0d69f146-d423-4ce1-8347-91d9b5165fe2", - "segments": [ - 0, - 3, - 8, - 16, - 21, - 32, - 37, - 54, - 67, - 76, - 103, - 114, - 120, - 148, - 164 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 84, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469043, - 45.46624 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469327, - 45.468092 - ], - [ - -73.469492, - 45.4681 - ], - [ - -73.469751, - 45.468115 - ], - [ - -73.470299, - 45.468145 - ], - [ - -73.471063, - 45.468181 - ], - [ - -73.471238, - 45.46819 - ], - [ - -73.471526, - 45.468208 - ], - [ - -73.472194, - 45.468244 - ], - [ - -73.472429, - 45.468255 - ], - [ - -73.472597, - 45.468262 - ], - [ - -73.472728, - 45.468276 - ], - [ - -73.472834, - 45.468294 - ], - [ - -73.472877, - 45.468307 - ], - [ - -73.473025, - 45.468348 - ], - [ - -73.473214, - 45.468424 - ], - [ - -73.473671, - 45.468604 - ], - [ - -73.473673, - 45.468604 - ], - [ - -73.473905, - 45.468649 - ], - [ - -73.474077, - 45.468676 - ], - [ - -73.474259, - 45.46869 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474366, - 45.468872 - ], - [ - -73.474292, - 45.469387 - ], - [ - -73.474257, - 45.469566 - ], - [ - -73.474234, - 45.469689 - ], - [ - -73.474156, - 45.470095 - ], - [ - -73.474035, - 45.470724 - ], - [ - -73.473974, - 45.47107 - ], - [ - -73.473942, - 45.471336 - ], - [ - -73.473932, - 45.471601 - ], - [ - -73.473938, - 45.471698 - ], - [ - -73.473947, - 45.471826 - ], - [ - -73.473986, - 45.472118 - ], - [ - -73.473998, - 45.472177 - ], - [ - -73.474046, - 45.47242 - ], - [ - -73.474106, - 45.47264 - ], - [ - -73.474275, - 45.473063 - ], - [ - -73.474463, - 45.473437 - ], - [ - -73.474513, - 45.473518 - ], - [ - -73.474653, - 45.473477 - ], - [ - -73.474959, - 45.473425 - ], - [ - -73.475204, - 45.473383 - ], - [ - -73.475244, - 45.473378 - ], - [ - -73.4754, - 45.473356 - ], - [ - -73.47558, - 45.473334 - ], - [ - -73.476017, - 45.473311 - ], - [ - -73.478743, - 45.473401 - ], - [ - -73.478906, - 45.473406 - ], - [ - -73.482478, - 45.473519 - ], - [ - -73.482622, - 45.473524 - ], - [ - -73.483288, - 45.473542 - ], - [ - -73.483471, - 45.473542 - ], - [ - -73.483606, - 45.473542 - ], - [ - -73.484062, - 45.473524 - ], - [ - -73.484567, - 45.473475 - ], - [ - -73.484784, - 45.473448 - ], - [ - -73.485243, - 45.473362 - ], - [ - -73.485556, - 45.473295 - ], - [ - -73.485874, - 45.4732 - ], - [ - -73.485892, - 45.473195 - ], - [ - -73.485995, - 45.473164 - ], - [ - -73.486151, - 45.473119 - ], - [ - -73.486787, - 45.472912 - ], - [ - -73.486715, - 45.472804 - ], - [ - -73.486545, - 45.47257 - ], - [ - -73.486541, - 45.472564 - ], - [ - -73.486282, - 45.472161 - ], - [ - -73.486077, - 45.471855 - ], - [ - -73.486023, - 45.471762 - ], - [ - -73.485922, - 45.47159 - ], - [ - -73.485859, - 45.471396 - ], - [ - -73.485933, - 45.470276 - ], - [ - -73.485957, - 45.470015 - ], - [ - -73.485925, - 45.469758 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.485815, - 45.46921 - ], - [ - -73.486087, - 45.469094 - ], - [ - -73.486363, - 45.468976 - ], - [ - -73.486598, - 45.468913 - ], - [ - -73.486742, - 45.468895 - ], - [ - -73.486913, - 45.468899 - ], - [ - -73.487892, - 45.468935 - ], - [ - -73.488642, - 45.468977 - ], - [ - -73.488788, - 45.468985 - ], - [ - -73.492287, - 45.469102 - ], - [ - -73.492434, - 45.469107 - ], - [ - -73.4927, - 45.469111 - ], - [ - -73.493631, - 45.469155 - ], - [ - -73.49395, - 45.46917 - ], - [ - -73.494075, - 45.469188 - ], - [ - -73.494154, - 45.469237 - ], - [ - -73.494556, - 45.469962 - ], - [ - -73.494611, - 45.470061 - ], - [ - -73.494791, - 45.470417 - ], - [ - -73.494862, - 45.47056 - ], - [ - -73.49485, - 45.470814 - ], - [ - -73.494847, - 45.470884 - ], - [ - -73.49484, - 45.471001 - ], - [ - -73.495967, - 45.471037 - ], - [ - -73.496018, - 45.471127 - ], - [ - -73.496042, - 45.471167 - ], - [ - -73.496235, - 45.471478 - ], - [ - -73.496437, - 45.471928 - ], - [ - -73.496811, - 45.472579 - ], - [ - -73.496974, - 45.472864 - ], - [ - -73.497891, - 45.47451 - ], - [ - -73.498064, - 45.474821 - ], - [ - -73.497243, - 45.474807 - ], - [ - -73.49673, - 45.474753 - ], - [ - -73.496473, - 45.474726 - ], - [ - -73.495455, - 45.474677 - ], - [ - -73.49535, - 45.474671 - ], - [ - -73.494958, - 45.47465 - ], - [ - -73.494447, - 45.474632 - ], - [ - -73.493572, - 45.474611 - ], - [ - -73.49348, - 45.474609 - ], - [ - -73.492987, - 45.474582 - ], - [ - -73.492833, - 45.474564 - ], - [ - -73.492566, - 45.474483 - ], - [ - -73.4924, - 45.474429 - ], - [ - -73.492221, - 45.474321 - ], - [ - -73.491964, - 45.474047 - ], - [ - -73.491842, - 45.473885 - ], - [ - -73.491654, - 45.473675 - ], - [ - -73.491514, - 45.47352 - ], - [ - -73.491175, - 45.473666 - ], - [ - -73.490727, - 45.473858 - ], - [ - -73.490186, - 45.474073 - ], - [ - -73.489892, - 45.474191 - ], - [ - -73.489482, - 45.474308 - ], - [ - -73.48921, - 45.474343 - ], - [ - -73.488939, - 45.474348 - ], - [ - -73.488579, - 45.47433 - ], - [ - -73.48828, - 45.474348 - ], - [ - -73.487939, - 45.474393 - ], - [ - -73.487696, - 45.474462 - ], - [ - -73.487656, - 45.474474 - ], - [ - -73.487464, - 45.474541 - ], - [ - -73.487385, - 45.474582 - ], - [ - -73.487281, - 45.474457 - ], - [ - -73.486897, - 45.473997 - ], - [ - -73.486669, - 45.473713 - ], - [ - -73.486211, - 45.473189 - ], - [ - -73.486151, - 45.473119 - ], - [ - -73.48607, - 45.47302 - ], - [ - -73.485914, - 45.473065 - ], - [ - -73.485421, - 45.473196 - ], - [ - -73.485194, - 45.47325 - ], - [ - -73.484873, - 45.473304 - ], - [ - -73.484839, - 45.473311 - ], - [ - -73.484747, - 45.473331 - ], - [ - -73.484539, - 45.473353 - ], - [ - -73.484309, - 45.47338 - ], - [ - -73.484047, - 45.473403 - ], - [ - -73.483831, - 45.473413 - ], - [ - -73.483761, - 45.473416 - ], - [ - -73.483613, - 45.473425 - ], - [ - -73.48263, - 45.473402 - ], - [ - -73.479098, - 45.47329 - ], - [ - -73.478915, - 45.473285 - ], - [ - -73.476016, - 45.473194 - ], - [ - -73.47556, - 45.473217 - ], - [ - -73.475367, - 45.473239 - ], - [ - -73.475163, - 45.47327 - ], - [ - -73.474761, - 45.473356 - ], - [ - -73.474613, - 45.473387 - ], - [ - -73.474495, - 45.473154 - ], - [ - -73.474431, - 45.473027 - ], - [ - -73.474274, - 45.472609 - ], - [ - -73.474213, - 45.472397 - ], - [ - -73.474173, - 45.472208 - ], - [ - -73.474165, - 45.472163 - ], - [ - -73.474141, - 45.472028 - ], - [ - -73.474138, - 45.472013 - ], - [ - -73.47411, - 45.47183 - ], - [ - -73.474121, - 45.471228 - ], - [ - -73.474166, - 45.470967 - ], - [ - -73.474399, - 45.469698 - ], - [ - -73.474423, - 45.469567 - ], - [ - -73.474454, - 45.469396 - ], - [ - -73.474489, - 45.469055 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474241, - 45.46856 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.473198, - 45.468293 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.471421, - 45.468098 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469574, - 45.467137 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469043, - 45.46624 - ] - ] - }, - "id": 85, - "properties": { - "id": "14446196-fe03-4817-9409-2e400a919923", - "data": { - "gtfs": { - "shape_id": "30_1_A" - }, - "segments": [ - { - "distanceMeters": 629, - "travelTimeSeconds": 89 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 329, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 92 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 623, - "travelTimeSeconds": 267 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7703, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 0, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.42, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 5.58, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.42 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", - "3a8b9936-4595-4770-a3f4-b31253602356", - "80a85fd6-8b7e-4c4c-b616-26338ab496f1", - "2ef5dac7-c226-43bb-8534-6642e7a8ab89", - "a9b02686-8465-48b9-89ba-773a03aed1e8", - "17fd1ec9-db8e-4d18-a174-72ce7cb4c434", - "7e4b21bb-20d6-4104-9b98-071226922d49", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "d83daa69-bf92-4b93-8173-1c0fd22cbec0", - "66a0749c-2a5b-458d-b059-307f555cb93a", - "c5effd0a-a9b0-4cfe-8176-06c99313f58b", - "e7a825d7-e677-4fe7-b1ef-b6db556d3c70", - "9e1adf1c-c578-4c50-baba-31b7f0c157c4", - "2e10a277-1746-4c1f-9808-3de94d853988", - "28d21225-939d-4260-9ed4-5c109f412ad9", - "be011751-8885-454f-b767-5c0f1402d83f", - "c6165892-3719-417f-8d25-92e65471b42c", - "6735199f-47fc-47db-9116-7c110cca8945", - "6e4c328c-6fba-4e81-b589-59318e11a37a", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", - "2ef5dac7-c226-43bb-8534-6642e7a8ab89", - "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", - "3a8b9936-4595-4770-a3f4-b31253602356", - "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "29cba7e4-8bdf-4f18-8ad1-43c3e8462643", - "segments": [ - 0, - 21, - 25, - 32, - 40, - 47, - 59, - 63, - 65, - 76, - 85, - 93, - 99, - 101, - 108, - 112, - 120, - 122, - 128, - 131, - 140, - 144, - 152, - 159, - 171, - 175, - 181, - 190, - 195, - 207, - 214 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 85, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.494712, - 45.447919 - ], - [ - -73.494697, - 45.447893 - ], - [ - -73.494624, - 45.447861 - ], - [ - -73.494525, - 45.447852 - ], - [ - -73.494476, - 45.447857 - ], - [ - -73.494435, - 45.447875 - ], - [ - -73.49439, - 45.447915 - ], - [ - -73.494388, - 45.447966 - ], - [ - -73.494386, - 45.448037 - ], - [ - -73.494428, - 45.448163 - ], - [ - -73.494462, - 45.448248 - ], - [ - -73.494489, - 45.448329 - ], - [ - -73.494471, - 45.448874 - ], - [ - -73.494276, - 45.449063 - ], - [ - -73.494147, - 45.449144 - ], - [ - -73.494018, - 45.449216 - ], - [ - -73.494109, - 45.449297 - ], - [ - -73.494201, - 45.4494 - ], - [ - -73.494247, - 45.449472 - ], - [ - -73.494296, - 45.449557 - ], - [ - -73.494313, - 45.449602 - ], - [ - -73.494327, - 45.449665 - ], - [ - -73.494377, - 45.450487 - ], - [ - -73.494417, - 45.451142 - ], - [ - -73.494427, - 45.451304 - ], - [ - -73.494474, - 45.452091 - ], - [ - -73.49448, - 45.452725 - ], - [ - -73.494479, - 45.452741 - ], - [ - -73.494478, - 45.452891 - ], - [ - -73.494465, - 45.45381 - ], - [ - -73.494454, - 45.45461 - ], - [ - -73.494465, - 45.454948 - ], - [ - -73.494524, - 45.455177 - ], - [ - -73.49453, - 45.455198 - ], - [ - -73.494622, - 45.45551 - ], - [ - -73.494635, - 45.455658 - ], - [ - -73.494605, - 45.455874 - ], - [ - -73.494534, - 45.456009 - ], - [ - -73.494391, - 45.456194 - ], - [ - -73.493984, - 45.456569 - ], - [ - -73.493865, - 45.45668 - ], - [ - -73.493654, - 45.456851 - ], - [ - -73.493562, - 45.456918 - ], - [ - -73.493458, - 45.456968 - ], - [ - -73.493388, - 45.456981 - ], - [ - -73.493324, - 45.45699 - ], - [ - -73.493169, - 45.456999 - ], - [ - -73.493073, - 45.457004 - ], - [ - -73.492597, - 45.457018 - ], - [ - -73.492295, - 45.457024 - ], - [ - -73.492185, - 45.457026 - ], - [ - -73.492061, - 45.457031 - ], - [ - -73.491825, - 45.457026 - ], - [ - -73.491366, - 45.457004 - ], - [ - -73.489993, - 45.456945 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.488779, - 45.456899 - ], - [ - -73.488212, - 45.456877 - ], - [ - -73.486514, - 45.456819 - ], - [ - -73.486364, - 45.456814 - ], - [ - -73.485148, - 45.456777 - ], - [ - -73.483698, - 45.456733 - ], - [ - -73.482894, - 45.456698 - ], - [ - -73.482756, - 45.456692 - ], - [ - -73.480001, - 45.456616 - ], - [ - -73.479792, - 45.456611 - ], - [ - -73.479622, - 45.456606 - ], - [ - -73.475848, - 45.456479 - ], - [ - -73.475839, - 45.456592 - ], - [ - -73.475813, - 45.456928 - ], - [ - -73.475794, - 45.457174 - ], - [ - -73.475778, - 45.457388 - ], - [ - -73.475737, - 45.458081 - ], - [ - -73.475737, - 45.458153 - ], - [ - -73.475692, - 45.458216 - ], - [ - -73.475621, - 45.458261 - ], - [ - -73.475551, - 45.458302 - ], - [ - -73.475386, - 45.45836 - ], - [ - -73.475117, - 45.458356 - ], - [ - -73.474813, - 45.458351 - ], - [ - -73.47477, - 45.459147 - ], - [ - -73.474311, - 45.459493 - ], - [ - -73.474131, - 45.459629 - ], - [ - -73.473576, - 45.460056 - ], - [ - -73.473509, - 45.460119 - ], - [ - -73.473517, - 45.460168 - ], - [ - -73.473556, - 45.460227 - ], - [ - -73.473658, - 45.46029 - ], - [ - -73.475666, - 45.461613 - ], - [ - -73.476381, - 45.462061 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476178, - 45.462316 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.474375, - 45.46823 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474126, - 45.468548 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.473204, - 45.468295 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.471427, - 45.468098 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469574, - 45.467137 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.46908, - 45.465912 - ], - [ - -73.469107, - 45.46587 - ] - ] - }, - "id": 86, - "properties": { - "id": "dcedba9b-6b53-4153-b7ee-1b86d8f1b849", - "data": { - "gtfs": { - "shape_id": "31_1_A" - }, - "segments": [ - { - "distanceMeters": 339, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 91, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 119, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 402, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 407, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 738, - "travelTimeSeconds": 132 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 654, - "travelTimeSeconds": 118 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 4955, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2843.9841808748993, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.9, - "travelTimeWithoutDwellTimesSeconds": 840, - "operatingTimeWithLayoverTimeSeconds": 1020, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 840, - "operatingSpeedWithLayoverMetersPerSecond": 4.86, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.9 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "127a18dc-2231-401d-91c9-c547e1fe457d", - "a0c55e08-a29d-42c6-a917-251b8ca35935", - "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", - "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", - "a3a2d6d0-5008-4980-ba25-7b3a00feca26", - "81232cdf-e1d4-440c-91bd-cfdc85007144", - "3ebb53d0-1c64-4727-874b-d39ed1870cae", - "16a4cfe7-4b02-454a-8a07-9501f3c5e0c5", - "984def83-5f59-45f7-bb33-ed1dbca30502", - "1d56d4cb-0ab2-44f2-924d-aa119de8c362", - "ecb00316-793a-4c41-88bd-3870bea4d999", - "9c3366b7-c832-4b7b-8636-18bed8c1e2de", - "1782a1a7-eddc-4228-a7a8-bf733f339e68", - "54e2350c-1dbf-481f-9610-f78cb1a71b49", - "ef6b8e74-cf7c-405a-a81c-caa03b93a96a", - "ff23cabb-ca11-421b-a582-f6413aa21fa0", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "dc5073fb-7496-4e44-b1ed-fbf8a3b6373d", - "segments": [ - 0, - 22, - 24, - 27, - 29, - 33, - 39, - 49, - 54, - 58, - 62, - 64, - 70, - 78, - 81, - 89, - 118, - 127, - 134 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 86, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469107, - 45.46587 - ], - [ - -73.469152, - 45.465801 - ], - [ - -73.469114, - 45.465711 - ], - [ - -73.469034, - 45.465669 - ], - [ - -73.468913, - 45.46567 - ], - [ - -73.468751, - 45.465752 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469327, - 45.468092 - ], - [ - -73.469492, - 45.4681 - ], - [ - -73.470024, - 45.46813 - ], - [ - -73.470299, - 45.468145 - ], - [ - -73.471058, - 45.468181 - ], - [ - -73.471238, - 45.46819 - ], - [ - -73.471526, - 45.468208 - ], - [ - -73.472194, - 45.468244 - ], - [ - -73.472438, - 45.468255 - ], - [ - -73.472597, - 45.468262 - ], - [ - -73.472728, - 45.468276 - ], - [ - -73.472834, - 45.468294 - ], - [ - -73.472877, - 45.468307 - ], - [ - -73.473025, - 45.468348 - ], - [ - -73.473214, - 45.468424 - ], - [ - -73.473673, - 45.468604 - ], - [ - -73.473905, - 45.468649 - ], - [ - -73.474077, - 45.468676 - ], - [ - -73.474259, - 45.46869 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474544, - 45.468492 - ], - [ - -73.474545, - 45.468488 - ], - [ - -73.474528, - 45.468236 - ], - [ - -73.474508, - 45.467936 - ], - [ - -73.474508, - 45.467294 - ], - [ - -73.474542, - 45.4665 - ], - [ - -73.474546, - 45.466404 - ], - [ - -73.474554, - 45.466199 - ], - [ - -73.474621, - 45.465194 - ], - [ - -73.474664, - 45.464506 - ], - [ - -73.474669, - 45.464397 - ], - [ - -73.474734, - 45.464067 - ], - [ - -73.474884, - 45.463697 - ], - [ - -73.475002, - 45.463492 - ], - [ - -73.47522, - 45.463212 - ], - [ - -73.475408, - 45.463039 - ], - [ - -73.47556, - 45.462909 - ], - [ - -73.475821, - 45.462711 - ], - [ - -73.476105, - 45.462495 - ], - [ - -73.476557, - 45.462176 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.47607, - 45.461866 - ], - [ - -73.475666, - 45.461613 - ], - [ - -73.473658, - 45.46029 - ], - [ - -73.473556, - 45.460227 - ], - [ - -73.473517, - 45.460168 - ], - [ - -73.473509, - 45.460119 - ], - [ - -73.473576, - 45.460056 - ], - [ - -73.474029, - 45.459707 - ], - [ - -73.474131, - 45.459629 - ], - [ - -73.47477, - 45.459147 - ], - [ - -73.474796, - 45.458672 - ], - [ - -73.474805, - 45.458502 - ], - [ - -73.474813, - 45.458351 - ], - [ - -73.475386, - 45.45836 - ], - [ - -73.475551, - 45.458302 - ], - [ - -73.475621, - 45.458261 - ], - [ - -73.475692, - 45.458216 - ], - [ - -73.475737, - 45.458153 - ], - [ - -73.475737, - 45.458081 - ], - [ - -73.475778, - 45.457388 - ], - [ - -73.475826, - 45.456757 - ], - [ - -73.475839, - 45.456592 - ], - [ - -73.476829, - 45.456625 - ], - [ - -73.479455, - 45.456713 - ], - [ - -73.479632, - 45.456719 - ], - [ - -73.479803, - 45.456723 - ], - [ - -73.482639, - 45.456832 - ], - [ - -73.482746, - 45.456836 - ], - [ - -73.483692, - 45.456872 - ], - [ - -73.485139, - 45.456916 - ], - [ - -73.486298, - 45.456952 - ], - [ - -73.48636, - 45.456954 - ], - [ - -73.488203, - 45.457017 - ], - [ - -73.489573, - 45.457064 - ], - [ - -73.489765, - 45.457071 - ], - [ - -73.491355, - 45.457125 - ], - [ - -73.491543, - 45.457127 - ], - [ - -73.491916, - 45.45713 - ], - [ - -73.492063, - 45.457125 - ], - [ - -73.492191, - 45.457112 - ], - [ - -73.492604, - 45.457095 - ], - [ - -73.492835, - 45.457085 - ], - [ - -73.493082, - 45.457085 - ], - [ - -73.493265, - 45.457076 - ], - [ - -73.493358, - 45.457067 - ], - [ - -73.493489, - 45.457062 - ], - [ - -73.49357, - 45.457044 - ], - [ - -73.493685, - 45.456995 - ], - [ - -73.493839, - 45.456873 - ], - [ - -73.493898, - 45.456821 - ], - [ - -73.493987, - 45.456743 - ], - [ - -73.494541, - 45.456266 - ], - [ - -73.494697, - 45.456063 - ], - [ - -73.494742, - 45.455982 - ], - [ - -73.494781, - 45.455901 - ], - [ - -73.494793, - 45.45582 - ], - [ - -73.494815, - 45.455658 - ], - [ - -73.494801, - 45.455497 - ], - [ - -73.494711, - 45.455185 - ], - [ - -73.4947, - 45.45515 - ], - [ - -73.494644, - 45.454934 - ], - [ - -73.494633, - 45.454606 - ], - [ - -73.494639, - 45.454202 - ], - [ - -73.494657, - 45.4529 - ], - [ - -73.494661, - 45.45272 - ], - [ - -73.494661, - 45.452693 - ], - [ - -73.494642, - 45.452086 - ], - [ - -73.494616, - 45.451642 - ], - [ - -73.494597, - 45.451326 - ], - [ - -73.494586, - 45.45114 - ], - [ - -73.494547, - 45.450511 - ], - [ - -73.494534, - 45.450314 - ], - [ - -73.494533, - 45.450291 - ], - [ - -73.494494, - 45.449652 - ], - [ - -73.494477, - 45.449575 - ], - [ - -73.494455, - 45.449517 - ], - [ - -73.494402, - 45.449423 - ], - [ - -73.494348, - 45.449342 - ], - [ - -73.494245, - 45.449225 - ], - [ - -73.494147, - 45.449144 - ], - [ - -73.494276, - 45.449063 - ], - [ - -73.494471, - 45.448874 - ], - [ - -73.494489, - 45.448329 - ], - [ - -73.494627, - 45.448172 - ], - [ - -73.494714, - 45.448037 - ], - [ - -73.494728, - 45.447947 - ], - [ - -73.494712, - 45.447919 - ] - ] - }, - "id": 87, - "properties": { - "id": "16f93891-111a-4b20-bf5c-e0fbf8b36459", - "data": { - "gtfs": { - "shape_id": "31_2_R" - }, - "segments": [ - { - "distanceMeters": 662, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 1001, - "travelTimeSeconds": 102 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 195, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 71 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 4997, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2843.9841808748993, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.95, - "travelTimeWithoutDwellTimesSeconds": 840, - "operatingTimeWithLayoverTimeSeconds": 1020, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 840, - "operatingSpeedWithLayoverMetersPerSecond": 4.9, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.95 - }, - "mode": "bus", - "name": "de Rome / St-Laurent", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "ef6b8e74-cf7c-405a-a81c-caa03b93a96a", - "54e2350c-1dbf-481f-9610-f78cb1a71b49", - "1782a1a7-eddc-4228-a7a8-bf733f339e68", - "9a86a407-515f-4b5e-8a56-9a4c52c91c96", - "ecb00316-793a-4c41-88bd-3870bea4d999", - "1d56d4cb-0ab2-44f2-924d-aa119de8c362", - "2f68c8b3-ace6-41af-8853-d72177e835fd", - "69fd316d-244b-48fa-871d-645ac04399fc", - "d8eae8f7-d8ed-4c6f-8280-28fd4b885b03", - "81232cdf-e1d4-440c-91bd-cfdc85007144", - "7ad52fd5-2149-40d5-ae51-5e78e11fdbc1", - "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", - "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", - "c25e5964-dcb2-42c5-8dcb-381856954cdc", - "127a18dc-2231-401d-91c9-c547e1fe457d" - ], - "stops": [], - "line_id": "dc5073fb-7496-4e44-b1ed-fbf8a3b6373d", - "segments": [ - 0, - 28, - 32, - 67, - 74, - 78, - 87, - 90, - 93, - 97, - 100, - 103, - 116, - 125, - 129, - 132, - 134, - 138 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 87, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.373402, - 45.474467 - ], - [ - -73.373508, - 45.474319 - ], - [ - -73.37362, - 45.474193 - ], - [ - -73.373694, - 45.474085 - ], - [ - -73.373933, - 45.473762 - ], - [ - -73.374049, - 45.473595 - ], - [ - -73.374374, - 45.473141 - ], - [ - -73.37528, - 45.471878 - ], - [ - -73.375836, - 45.471092 - ], - [ - -73.375891, - 45.471015 - ], - [ - -73.377848, - 45.468313 - ], - [ - -73.378046, - 45.468041 - ], - [ - -73.3781, - 45.467967 - ], - [ - -73.380064, - 45.465238 - ], - [ - -73.380225, - 45.465008 - ], - [ - -73.380313, - 45.464882 - ], - [ - -73.382026, - 45.462513 - ], - [ - -73.382106, - 45.462403 - ], - [ - -73.382221, - 45.462246 - ], - [ - -73.382279, - 45.462167 - ], - [ - -73.382765, - 45.462469 - ], - [ - -73.383093, - 45.462681 - ], - [ - -73.383388, - 45.462852 - ], - [ - -73.383811, - 45.463104 - ], - [ - -73.383987, - 45.463212 - ], - [ - -73.384113, - 45.463294 - ], - [ - -73.384301, - 45.463415 - ], - [ - -73.384394, - 45.463478 - ], - [ - -73.384483, - 45.463537 - ], - [ - -73.384869, - 45.463758 - ], - [ - -73.385651, - 45.464201 - ], - [ - -73.385776, - 45.464272 - ], - [ - -73.38684, - 45.464853 - ], - [ - -73.387555, - 45.46525 - ], - [ - -73.387669, - 45.465313 - ], - [ - -73.388483, - 45.465759 - ], - [ - -73.389138, - 45.46612 - ], - [ - -73.38988, - 45.466534 - ], - [ - -73.390262, - 45.466745 - ], - [ - -73.390354, - 45.466796 - ], - [ - -73.390424, - 45.466834 - ], - [ - -73.391099, - 45.467206 - ], - [ - -73.391994, - 45.467693 - ], - [ - -73.393092, - 45.468287 - ], - [ - -73.393732, - 45.46863 - ], - [ - -73.396144, - 45.469946 - ], - [ - -73.397056, - 45.470438 - ], - [ - -73.397163, - 45.470496 - ], - [ - -73.397862, - 45.470825 - ], - [ - -73.398503, - 45.471208 - ], - [ - -73.398786, - 45.471352 - ], - [ - -73.398824, - 45.471372 - ], - [ - -73.399097, - 45.471519 - ], - [ - -73.399156, - 45.471564 - ], - [ - -73.39922, - 45.471582 - ], - [ - -73.399274, - 45.471591 - ], - [ - -73.399342, - 45.471587 - ], - [ - -73.399667, - 45.471492 - ], - [ - -73.400031, - 45.471674 - ], - [ - -73.400137, - 45.471727 - ], - [ - -73.400955, - 45.472186 - ], - [ - -73.401756, - 45.472606 - ], - [ - -73.401771, - 45.472613 - ], - [ - -73.402701, - 45.473114 - ], - [ - -73.402861, - 45.4732 - ], - [ - -73.402925, - 45.473236 - ], - [ - -73.403012, - 45.473281 - ], - [ - -73.403898, - 45.473773 - ], - [ - -73.404553, - 45.474122 - ], - [ - -73.404642, - 45.474169 - ], - [ - -73.404723, - 45.474214 - ], - [ - -73.404728, - 45.474217 - ], - [ - -73.405388, - 45.474584 - ], - [ - -73.406182, - 45.475012 - ], - [ - -73.406593, - 45.475239 - ], - [ - -73.406966, - 45.475444 - ], - [ - -73.407442, - 45.475093 - ], - [ - -73.409542, - 45.473543 - ], - [ - -73.411465, - 45.472123 - ], - [ - -73.411574, - 45.472042 - ], - [ - -73.413909, - 45.470306 - ], - [ - -73.414113, - 45.470154 - ], - [ - -73.41561, - 45.469048 - ], - [ - -73.415792, - 45.468914 - ], - [ - -73.415843, - 45.468873 - ], - [ - -73.415903, - 45.468828 - ], - [ - -73.417636, - 45.467547 - ], - [ - -73.417764, - 45.467453 - ], - [ - -73.421216, - 45.464901 - ], - [ - -73.421345, - 45.464806 - ], - [ - -73.424593, - 45.462401 - ], - [ - -73.424962, - 45.462645 - ], - [ - -73.425069, - 45.462716 - ], - [ - -73.425478, - 45.462986 - ], - [ - -73.426192, - 45.463458 - ], - [ - -73.426502, - 45.463663 - ], - [ - -73.43053, - 45.466326 - ], - [ - -73.430797, - 45.466502 - ], - [ - -73.432747, - 45.467791 - ], - [ - -73.434186, - 45.468737 - ], - [ - -73.434223, - 45.46871 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.434426, - 45.468557 - ], - [ - -73.434574, - 45.46844 - ], - [ - -73.434593, - 45.468428 - ], - [ - -73.434654, - 45.468386 - ], - [ - -73.434706, - 45.46835 - ], - [ - -73.43479, - 45.468319 - ], - [ - -73.434953, - 45.468251 - ], - [ - -73.435895, - 45.468018 - ], - [ - -73.437585, - 45.467585 - ], - [ - -73.437909, - 45.467502 - ], - [ - -73.438637, - 45.467322 - ], - [ - -73.438692, - 45.467309 - ], - [ - -73.439001, - 45.46721 - ], - [ - -73.439742, - 45.466711 - ], - [ - -73.439775, - 45.466686 - ], - [ - -73.44004, - 45.466481 - ], - [ - -73.440337, - 45.466252 - ], - [ - -73.440976, - 45.46578 - ], - [ - -73.441167, - 45.465915 - ], - [ - -73.441736, - 45.466257 - ], - [ - -73.442013, - 45.466357 - ], - [ - -73.442153, - 45.466404 - ], - [ - -73.442317, - 45.46646 - ], - [ - -73.442367, - 45.466471 - ], - [ - -73.442596, - 45.466523 - ], - [ - -73.442944, - 45.465921 - ], - [ - -73.443084, - 45.465673 - ], - [ - -73.443189, - 45.465511 - ], - [ - -73.443468, - 45.465264 - ], - [ - -73.443779, - 45.464994 - ], - [ - -73.444237, - 45.464769 - ], - [ - -73.444389, - 45.464707 - ], - [ - -73.444519, - 45.464666 - ], - [ - -73.444828, - 45.464542 - ], - [ - -73.444876, - 45.464522 - ], - [ - -73.44528, - 45.464334 - ], - [ - -73.445535, - 45.464194 - ], - [ - -73.44617, - 45.463772 - ], - [ - -73.446423, - 45.463543 - ], - [ - -73.446424, - 45.463542 - ], - [ - -73.446687, - 45.463268 - ], - [ - -73.446942, - 45.463331 - ], - [ - -73.447276, - 45.463394 - ], - [ - -73.447618, - 45.463408 - ], - [ - -73.447895, - 45.463394 - ], - [ - -73.448196, - 45.46335 - ], - [ - -73.448372, - 45.463309 - ], - [ - -73.448465, - 45.463278 - ], - [ - -73.448508, - 45.463264 - ], - [ - -73.448659, - 45.463206 - ], - [ - -73.44876, - 45.463165 - ], - [ - -73.448872, - 45.463116 - ], - [ - -73.449057, - 45.462995 - ], - [ - -73.449921, - 45.462399 - ], - [ - -73.450113, - 45.462266 - ], - [ - -73.450857, - 45.461731 - ], - [ - -73.451239, - 45.461455 - ], - [ - -73.451413, - 45.461329 - ], - [ - -73.451566, - 45.461218 - ], - [ - -73.452841, - 45.462119 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.453161, - 45.462302 - ], - [ - -73.453343, - 45.462373 - ], - [ - -73.453553, - 45.462428 - ], - [ - -73.453729, - 45.462455 - ], - [ - -73.453888, - 45.462462 - ], - [ - -73.454017, - 45.462437 - ], - [ - -73.454092, - 45.462406 - ], - [ - -73.454278, - 45.462276 - ], - [ - -73.454797, - 45.462637 - ], - [ - -73.455404, - 45.463083 - ], - [ - -73.455675, - 45.463282 - ], - [ - -73.45655, - 45.463924 - ], - [ - -73.457079, - 45.464307 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.458744, - 45.465452 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.4601, - 45.466432 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.460554, - 45.466805 - ], - [ - -73.460661, - 45.466886 - ], - [ - -73.461028, - 45.467148 - ], - [ - -73.46125, - 45.467305 - ], - [ - -73.461806, - 45.46771 - ], - [ - -73.461902, - 45.467781 - ], - [ - -73.461978, - 45.467836 - ], - [ - -73.462611, - 45.468268 - ], - [ - -73.462993, - 45.468565 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464452, - 45.468222 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.465222, - 45.468287 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469043, - 45.46624 - ] - ] - }, - "id": 88, - "properties": { - "id": "86e9cd4e-3bb7-44a4-ba6f-8150ba2558df", - "data": { - "gtfs": { - "shape_id": "32_2_A" - }, - "segments": [ - { - "distanceMeters": 166, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 378, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 671, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 329, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 406, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 423, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 494, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 329, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 371, - "travelTimeSeconds": 95 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 548, - "travelTimeSeconds": 142 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10765, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7538.031212506085, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.18, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 6.41, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.18 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "c5d63249-9c53-468b-a75e-33839919bc02", - "00770ec2-f385-4c5e-86f3-1e107a204be7", - "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", - "24542ec6-1b63-420d-8089-98a7341dfe66", - "40363de6-68fe-4797-a6b6-a7c0b8b379e0", - "2bad9abb-726e-4e19-bd55-ea4436446fe9", - "2bfdc814-6852-43cf-a60e-ce2e7fee82b8", - "cfa8e93e-db19-45e9-8258-0b21519d678a", - "76c5dc0c-6c87-48e4-b4a8-6f7986e09fb7", - "78e9801c-50c9-4092-905b-26f4c2c9691f", - "6d9b7e37-cd6f-4931-b931-b7d0d8977c84", - "8566f24d-a192-4017-b9c9-09c3d46779b5", - "e50671a0-a4b5-4876-82f3-d4b9358f2b9f", - "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", - "55ca5f95-fab1-46cf-be83-81db90d348a5", - "bd054361-ba99-4c5e-bde0-47f325682b88", - "cf532e47-3506-49e5-a1ed-43182c89aa79", - "cbe5dd37-dce1-464a-9725-6d31d37c48ab", - "8dc191fb-71db-4873-9019-c9cedd32b2f0", - "176a1328-a08b-40f7-9010-c279f0b6cf5d", - "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", - "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "2f104875-795a-4778-a419-276272abfb07", - "ba86f45f-9fb5-4525-a50b-a876919fd012", - "988c86da-04eb-4067-b650-f13c447b17e7", - "4827a17d-8dc9-4cbd-8430-3334ebece64a", - "504cb53f-f1f4-46f2-81f5-f99fef8227fd", - "966472c1-4384-4d94-92f7-48afa023de51", - "6159ebda-8d7f-40cc-ac22-1f98fc48a7cc", - "d7a2b864-2fd6-4357-924f-7fbbb1858b57", - "160a49df-4dfe-423d-acd7-52bd439d623b", - "90bf0496-ccdf-450d-91bf-4dc999f62290", - "5cacbe7b-f308-4076-8842-25195b37874b", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "1a441bab-41b8-447f-ba84-5034fae1da67", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "01153fa0-59fe-4f77-8e46-e418296b526d", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "ed9c5ec5-b078-4065-9f49-fd6bc0951263", - "segments": [ - 0, - 6, - 8, - 11, - 14, - 17, - 27, - 30, - 33, - 38, - 46, - 51, - 58, - 63, - 68, - 74, - 77, - 78, - 80, - 82, - 86, - 88, - 91, - 94, - 97, - 104, - 110, - 117, - 123, - 135, - 140, - 149, - 155, - 158, - 161, - 172, - 179, - 181, - 188, - 191, - 204 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 88, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469043, - 45.46624 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.46363, - 45.4683 - ], - [ - -73.463472, - 45.468395 - ], - [ - -73.463397, - 45.468431 - ], - [ - -73.463306, - 45.468449 - ], - [ - -73.463219, - 45.468458 - ], - [ - -73.463124, - 45.468449 - ], - [ - -73.463037, - 45.468413 - ], - [ - -73.462702, - 45.468201 - ], - [ - -73.462471, - 45.468057 - ], - [ - -73.462195, - 45.467872 - ], - [ - -73.461894, - 45.467656 - ], - [ - -73.461788, - 45.46758 - ], - [ - -73.46133, - 45.467251 - ], - [ - -73.461109, - 45.467094 - ], - [ - -73.460905, - 45.466945 - ], - [ - -73.460722, - 45.466814 - ], - [ - -73.460629, - 45.466751 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457079, - 45.464307 - ], - [ - -73.45655, - 45.463924 - ], - [ - -73.455675, - 45.463282 - ], - [ - -73.454797, - 45.462637 - ], - [ - -73.454278, - 45.462276 - ], - [ - -73.454092, - 45.462406 - ], - [ - -73.454017, - 45.462437 - ], - [ - -73.453888, - 45.462462 - ], - [ - -73.453729, - 45.462455 - ], - [ - -73.453553, - 45.462428 - ], - [ - -73.453343, - 45.462373 - ], - [ - -73.453161, - 45.462302 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.451566, - 45.461218 - ], - [ - -73.451413, - 45.461329 - ], - [ - -73.450857, - 45.461731 - ], - [ - -73.450113, - 45.462266 - ], - [ - -73.449057, - 45.462995 - ], - [ - -73.448872, - 45.463116 - ], - [ - -73.44876, - 45.463165 - ], - [ - -73.448659, - 45.463206 - ], - [ - -73.448508, - 45.463264 - ], - [ - -73.448372, - 45.463309 - ], - [ - -73.448196, - 45.46335 - ], - [ - -73.447895, - 45.463394 - ], - [ - -73.447618, - 45.463408 - ], - [ - -73.447276, - 45.463394 - ], - [ - -73.446942, - 45.463331 - ], - [ - -73.446687, - 45.463268 - ], - [ - -73.446424, - 45.463542 - ], - [ - -73.44617, - 45.463772 - ], - [ - -73.445535, - 45.464194 - ], - [ - -73.44528, - 45.464334 - ], - [ - -73.444876, - 45.464522 - ], - [ - -73.444519, - 45.464666 - ], - [ - -73.444389, - 45.464707 - ], - [ - -73.444237, - 45.464769 - ], - [ - -73.443779, - 45.464994 - ], - [ - -73.443468, - 45.465264 - ], - [ - -73.443189, - 45.465511 - ], - [ - -73.443084, - 45.465673 - ], - [ - -73.442944, - 45.465921 - ], - [ - -73.442596, - 45.466523 - ], - [ - -73.442367, - 45.466471 - ], - [ - -73.442317, - 45.46646 - ], - [ - -73.442013, - 45.466357 - ], - [ - -73.441736, - 45.466257 - ], - [ - -73.441167, - 45.465915 - ], - [ - -73.440976, - 45.46578 - ], - [ - -73.440337, - 45.466252 - ], - [ - -73.439775, - 45.466686 - ], - [ - -73.439742, - 45.466711 - ], - [ - -73.439001, - 45.46721 - ], - [ - -73.438692, - 45.467309 - ], - [ - -73.438637, - 45.467322 - ], - [ - -73.437909, - 45.467502 - ], - [ - -73.435895, - 45.468018 - ], - [ - -73.434953, - 45.468251 - ], - [ - -73.43479, - 45.468319 - ], - [ - -73.434706, - 45.46835 - ], - [ - -73.434654, - 45.468386 - ], - [ - -73.434574, - 45.46844 - ], - [ - -73.434426, - 45.468557 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.434141, - 45.46853 - ], - [ - -73.433058, - 45.467863 - ], - [ - -73.430632, - 45.466255 - ], - [ - -73.426608, - 45.463587 - ], - [ - -73.425566, - 45.462896 - ], - [ - -73.425014, - 45.46253 - ], - [ - -73.4247, - 45.462321 - ], - [ - -73.424593, - 45.462401 - ], - [ - -73.424266, - 45.462642 - ], - [ - -73.421428, - 45.464744 - ], - [ - -73.421345, - 45.464806 - ], - [ - -73.417813, - 45.467417 - ], - [ - -73.417764, - 45.467453 - ], - [ - -73.416005, - 45.468753 - ], - [ - -73.415903, - 45.468828 - ], - [ - -73.415843, - 45.468873 - ], - [ - -73.415792, - 45.468914 - ], - [ - -73.4142, - 45.47009 - ], - [ - -73.414113, - 45.470154 - ], - [ - -73.411703, - 45.471946 - ], - [ - -73.411574, - 45.472042 - ], - [ - -73.409684, - 45.473438 - ], - [ - -73.407178, - 45.475288 - ], - [ - -73.406966, - 45.475444 - ], - [ - -73.40664, - 45.475265 - ], - [ - -73.406182, - 45.475012 - ], - [ - -73.40552, - 45.474655 - ], - [ - -73.405388, - 45.474584 - ], - [ - -73.404728, - 45.474217 - ], - [ - -73.404723, - 45.474214 - ], - [ - -73.404642, - 45.474169 - ], - [ - -73.403898, - 45.473773 - ], - [ - -73.403016, - 45.473284 - ], - [ - -73.403012, - 45.473281 - ], - [ - -73.402925, - 45.473236 - ], - [ - -73.402861, - 45.4732 - ], - [ - -73.401771, - 45.472613 - ], - [ - -73.401756, - 45.472606 - ], - [ - -73.400955, - 45.472186 - ], - [ - -73.400225, - 45.471777 - ], - [ - -73.400137, - 45.471727 - ], - [ - -73.399667, - 45.471492 - ], - [ - -73.399342, - 45.471587 - ], - [ - -73.399274, - 45.471591 - ], - [ - -73.39922, - 45.471582 - ], - [ - -73.399156, - 45.471564 - ], - [ - -73.399097, - 45.471519 - ], - [ - -73.398956, - 45.471443 - ], - [ - -73.398786, - 45.471352 - ], - [ - -73.398503, - 45.471208 - ], - [ - -73.397862, - 45.470825 - ], - [ - -73.397254, - 45.470538 - ], - [ - -73.397163, - 45.470496 - ], - [ - -73.396144, - 45.469946 - ], - [ - -73.393732, - 45.46863 - ], - [ - -73.393092, - 45.468287 - ], - [ - -73.391994, - 45.467693 - ], - [ - -73.391099, - 45.467206 - ], - [ - -73.390464, - 45.466856 - ], - [ - -73.390424, - 45.466834 - ], - [ - -73.390354, - 45.466796 - ], - [ - -73.38988, - 45.466534 - ], - [ - -73.389138, - 45.46612 - ], - [ - -73.388483, - 45.465759 - ], - [ - -73.387787, - 45.465378 - ], - [ - -73.387669, - 45.465313 - ], - [ - -73.38684, - 45.464853 - ], - [ - -73.385882, - 45.46433 - ], - [ - -73.385776, - 45.464272 - ], - [ - -73.384869, - 45.463758 - ], - [ - -73.384483, - 45.463537 - ], - [ - -73.384413, - 45.46349 - ], - [ - -73.384301, - 45.463415 - ], - [ - -73.384113, - 45.463294 - ], - [ - -73.383987, - 45.463212 - ], - [ - -73.383811, - 45.463104 - ], - [ - -73.383388, - 45.462852 - ], - [ - -73.383093, - 45.462681 - ], - [ - -73.382765, - 45.462469 - ], - [ - -73.382417, - 45.462253 - ], - [ - -73.382279, - 45.462167 - ], - [ - -73.382221, - 45.462246 - ], - [ - -73.382026, - 45.462513 - ], - [ - -73.380339, - 45.464847 - ], - [ - -73.380313, - 45.464882 - ], - [ - -73.380064, - 45.465238 - ], - [ - -73.378283, - 45.467712 - ], - [ - -73.3781, - 45.467967 - ], - [ - -73.377848, - 45.468313 - ], - [ - -73.37595, - 45.470932 - ], - [ - -73.375891, - 45.471015 - ], - [ - -73.37528, - 45.471878 - ], - [ - -73.374049, - 45.473595 - ], - [ - -73.373933, - 45.473762 - ], - [ - -73.373887, - 45.473824 - ], - [ - -73.373694, - 45.474085 - ], - [ - -73.37362, - 45.474193 - ], - [ - -73.373508, - 45.474319 - ], - [ - -73.373171, - 45.474788 - ] - ] - }, - "id": 89, - "properties": { - "id": "1153b015-ae98-479d-824c-4063436e3dca", - "data": { - "gtfs": { - "shape_id": "32_2_R" - }, - "segments": [ - { - "distanceMeters": 5291, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 670, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 402, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 360, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 121, - "travelTimeSeconds": 26 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10946, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4176.42235624854, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 14.03, - "travelTimeWithoutDwellTimesSeconds": 780, - "operatingTimeWithLayoverTimeSeconds": 960, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 780, - "operatingSpeedWithLayoverMetersPerSecond": 11.4, - "averageSpeedWithoutDwellTimesMetersPerSecond": 14.03 - }, - "mode": "bus", - "name": "boul. Mountainview", - "color": "#A32638", - "nodes": [ - "d739fe08-5298-4356-bd9e-c48a7fee16a1", - "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", - "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", - "176a1328-a08b-40f7-9010-c279f0b6cf5d", - "8dc191fb-71db-4873-9019-c9cedd32b2f0", - "cbe5dd37-dce1-464a-9725-6d31d37c48ab", - "fb30643a-60d9-443e-8b22-29ad762aebdb", - "bd054361-ba99-4c5e-bde0-47f325682b88", - "931c7650-b24c-4431-a556-56243637e8a2", - "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", - "e50671a0-a4b5-4876-82f3-d4b9358f2b9f", - "8566f24d-a192-4017-b9c9-09c3d46779b5", - "6d9b7e37-cd6f-4931-b931-b7d0d8977c84", - "78e9801c-50c9-4092-905b-26f4c2c9691f", - "76c5dc0c-6c87-48e4-b4a8-6f7986e09fb7", - "cfa8e93e-db19-45e9-8258-0b21519d678a", - "2bfdc814-6852-43cf-a60e-ce2e7fee82b8", - "2bad9abb-726e-4e19-bd55-ea4436446fe9", - "40363de6-68fe-4797-a6b6-a7c0b8b379e0", - "24542ec6-1b63-420d-8089-98a7341dfe66", - "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", - "2cd6db83-9a4e-4640-91da-759ec9e4a386", - "c5d63249-9c53-468b-a75e-33839919bc02" - ], - "stops": [], - "line_id": "ed9c5ec5-b078-4065-9f49-fd6bc0951263", - "segments": [ - 0, - 131, - 133, - 135, - 139, - 141, - 143, - 144, - 148, - 154, - 161, - 169, - 173, - 180, - 186, - 189, - 193, - 201, - 205, - 208, - 211, - 216 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 89, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469043, - 45.46624 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465583, - 45.46821 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.46363, - 45.4683 - ], - [ - -73.463472, - 45.468395 - ], - [ - -73.463397, - 45.468431 - ], - [ - -73.463306, - 45.468449 - ], - [ - -73.463219, - 45.468458 - ], - [ - -73.463124, - 45.468449 - ], - [ - -73.463037, - 45.468413 - ], - [ - -73.462702, - 45.468201 - ], - [ - -73.462471, - 45.468057 - ], - [ - -73.462195, - 45.467872 - ], - [ - -73.462013, - 45.467741 - ], - [ - -73.461894, - 45.467656 - ], - [ - -73.461788, - 45.46758 - ], - [ - -73.46133, - 45.467251 - ], - [ - -73.461109, - 45.467094 - ], - [ - -73.460905, - 45.466945 - ], - [ - -73.460724, - 45.466816 - ], - [ - -73.460722, - 45.466814 - ], - [ - -73.460629, - 45.466751 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.458931, - 45.465589 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457079, - 45.464307 - ], - [ - -73.456582, - 45.463948 - ], - [ - -73.45655, - 45.463924 - ], - [ - -73.455675, - 45.463282 - ], - [ - -73.454797, - 45.462637 - ], - [ - -73.454278, - 45.462276 - ], - [ - -73.454092, - 45.462406 - ], - [ - -73.454017, - 45.462437 - ], - [ - -73.453888, - 45.462462 - ], - [ - -73.453729, - 45.462455 - ], - [ - -73.453553, - 45.462428 - ], - [ - -73.453343, - 45.462373 - ], - [ - -73.453304, - 45.462358 - ], - [ - -73.453161, - 45.462302 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.451566, - 45.461218 - ], - [ - -73.451413, - 45.461329 - ], - [ - -73.451302, - 45.46141 - ], - [ - -73.450857, - 45.461731 - ], - [ - -73.450328, - 45.462112 - ], - [ - -73.450113, - 45.462266 - ], - [ - -73.449057, - 45.462995 - ], - [ - -73.448872, - 45.463116 - ], - [ - -73.44876, - 45.463165 - ], - [ - -73.448736, - 45.463175 - ], - [ - -73.448659, - 45.463206 - ], - [ - -73.448508, - 45.463264 - ], - [ - -73.448372, - 45.463309 - ], - [ - -73.448196, - 45.46335 - ], - [ - -73.447895, - 45.463394 - ], - [ - -73.447618, - 45.463408 - ], - [ - -73.447276, - 45.463394 - ], - [ - -73.446942, - 45.463331 - ], - [ - -73.446797, - 45.463295 - ], - [ - -73.446687, - 45.463268 - ], - [ - -73.446424, - 45.463542 - ], - [ - -73.44617, - 45.463772 - ], - [ - -73.445535, - 45.464194 - ], - [ - -73.44528, - 45.464334 - ], - [ - -73.444876, - 45.464522 - ], - [ - -73.444595, - 45.464636 - ], - [ - -73.444519, - 45.464666 - ], - [ - -73.444389, - 45.464707 - ], - [ - -73.444237, - 45.464769 - ], - [ - -73.443779, - 45.464994 - ], - [ - -73.443468, - 45.465264 - ], - [ - -73.443189, - 45.465511 - ], - [ - -73.443084, - 45.465673 - ], - [ - -73.442944, - 45.465921 - ], - [ - -73.442711, - 45.466324 - ], - [ - -73.442596, - 45.466523 - ], - [ - -73.442367, - 45.466471 - ], - [ - -73.442317, - 45.46646 - ], - [ - -73.442013, - 45.466357 - ], - [ - -73.441736, - 45.466257 - ], - [ - -73.44141, - 45.466061 - ], - [ - -73.441167, - 45.465915 - ], - [ - -73.440976, - 45.46578 - ], - [ - -73.440457, - 45.466164 - ], - [ - -73.440337, - 45.466252 - ], - [ - -73.439775, - 45.466686 - ], - [ - -73.439742, - 45.466711 - ], - [ - -73.439001, - 45.46721 - ], - [ - -73.438692, - 45.467309 - ], - [ - -73.438637, - 45.467322 - ], - [ - -73.438031, - 45.467472 - ], - [ - -73.437909, - 45.467502 - ], - [ - -73.435895, - 45.468018 - ], - [ - -73.434953, - 45.468251 - ], - [ - -73.43479, - 45.468319 - ], - [ - -73.434706, - 45.46835 - ], - [ - -73.434654, - 45.468386 - ], - [ - -73.434574, - 45.46844 - ], - [ - -73.434426, - 45.468557 - ], - [ - -73.434412, - 45.468567 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.434141, - 45.46853 - ], - [ - -73.433058, - 45.467863 - ], - [ - -73.430632, - 45.466255 - ], - [ - -73.430206, - 45.465972 - ], - [ - -73.426678, - 45.463633 - ], - [ - -73.426608, - 45.463587 - ], - [ - -73.425566, - 45.462896 - ], - [ - -73.425014, - 45.46253 - ], - [ - -73.4247, - 45.462321 - ], - [ - -73.424593, - 45.462401 - ], - [ - -73.424266, - 45.462642 - ], - [ - -73.423956, - 45.462872 - ], - [ - -73.421428, - 45.464744 - ], - [ - -73.421345, - 45.464806 - ], - [ - -73.417813, - 45.467417 - ], - [ - -73.417764, - 45.467453 - ], - [ - -73.416005, - 45.468753 - ], - [ - -73.415903, - 45.468828 - ], - [ - -73.415843, - 45.468873 - ], - [ - -73.415792, - 45.468914 - ], - [ - -73.4142, - 45.47009 - ], - [ - -73.414113, - 45.470154 - ], - [ - -73.411703, - 45.471946 - ], - [ - -73.411574, - 45.472042 - ], - [ - -73.409684, - 45.473438 - ], - [ - -73.407178, - 45.475288 - ], - [ - -73.406966, - 45.475444 - ], - [ - -73.40664, - 45.475265 - ], - [ - -73.406182, - 45.475012 - ], - [ - -73.40552, - 45.474655 - ], - [ - -73.405388, - 45.474584 - ], - [ - -73.404728, - 45.474217 - ], - [ - -73.404723, - 45.474214 - ], - [ - -73.404642, - 45.474169 - ], - [ - -73.403898, - 45.473773 - ], - [ - -73.403016, - 45.473284 - ], - [ - -73.403012, - 45.473281 - ], - [ - -73.402925, - 45.473236 - ], - [ - -73.402861, - 45.4732 - ], - [ - -73.401771, - 45.472613 - ], - [ - -73.401756, - 45.472606 - ], - [ - -73.400955, - 45.472186 - ], - [ - -73.400225, - 45.471777 - ], - [ - -73.400137, - 45.471727 - ], - [ - -73.399667, - 45.471492 - ], - [ - -73.399342, - 45.471587 - ], - [ - -73.399274, - 45.471591 - ], - [ - -73.39922, - 45.471582 - ], - [ - -73.399156, - 45.471564 - ], - [ - -73.399097, - 45.471519 - ], - [ - -73.398956, - 45.471443 - ], - [ - -73.398786, - 45.471352 - ], - [ - -73.398503, - 45.471208 - ], - [ - -73.397862, - 45.470825 - ], - [ - -73.397254, - 45.470538 - ], - [ - -73.397163, - 45.470496 - ], - [ - -73.396144, - 45.469946 - ], - [ - -73.393732, - 45.46863 - ], - [ - -73.393092, - 45.468287 - ], - [ - -73.391994, - 45.467693 - ], - [ - -73.391099, - 45.467206 - ], - [ - -73.390464, - 45.466856 - ], - [ - -73.390424, - 45.466834 - ], - [ - -73.390354, - 45.466796 - ], - [ - -73.38988, - 45.466534 - ], - [ - -73.389138, - 45.46612 - ], - [ - -73.388483, - 45.465759 - ], - [ - -73.387787, - 45.465378 - ], - [ - -73.387669, - 45.465313 - ], - [ - -73.38684, - 45.464853 - ], - [ - -73.385882, - 45.46433 - ], - [ - -73.385776, - 45.464272 - ], - [ - -73.384869, - 45.463758 - ], - [ - -73.384483, - 45.463537 - ], - [ - -73.384413, - 45.46349 - ], - [ - -73.384301, - 45.463415 - ], - [ - -73.384113, - 45.463294 - ], - [ - -73.383987, - 45.463212 - ], - [ - -73.383811, - 45.463104 - ], - [ - -73.383388, - 45.462852 - ], - [ - -73.383093, - 45.462681 - ], - [ - -73.382765, - 45.462469 - ], - [ - -73.382417, - 45.462253 - ], - [ - -73.382279, - 45.462167 - ], - [ - -73.382221, - 45.462246 - ], - [ - -73.382026, - 45.462513 - ], - [ - -73.380339, - 45.464847 - ], - [ - -73.380313, - 45.464882 - ], - [ - -73.380064, - 45.465238 - ], - [ - -73.378283, - 45.467712 - ], - [ - -73.3781, - 45.467967 - ], - [ - -73.377848, - 45.468313 - ], - [ - -73.37595, - 45.470932 - ], - [ - -73.375891, - 45.471015 - ], - [ - -73.37528, - 45.471878 - ], - [ - -73.374049, - 45.473595 - ], - [ - -73.373933, - 45.473762 - ], - [ - -73.373887, - 45.473824 - ], - [ - -73.373694, - 45.474085 - ], - [ - -73.37362, - 45.474193 - ], - [ - -73.373508, - 45.474319 - ], - [ - -73.373171, - 45.474788 - ] - ] - }, - "id": 90, - "properties": { - "id": "3beb91ce-1755-4eef-b2fa-935f27f69e14", - "data": { - "gtfs": { - "shape_id": "32_2_R" - }, - "segments": [ - { - "distanceMeters": 694, - "travelTimeSeconds": 127 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 344, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 311, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 448, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 670, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 402, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 360, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 121, - "travelTimeSeconds": 26 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10946, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7538.031212506085, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.02, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 6.29, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.02 - }, - "mode": "bus", - "name": "boul. Mountainview", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "5cacbe7b-f308-4076-8842-25195b37874b", - "90bf0496-ccdf-450d-91bf-4dc999f62290", - "160a49df-4dfe-423d-acd7-52bd439d623b", - "d7a2b864-2fd6-4357-924f-7fbbb1858b57", - "6159ebda-8d7f-40cc-ac22-1f98fc48a7cc", - "966472c1-4384-4d94-92f7-48afa023de51", - "43d1b9da-374a-4022-9200-6e68a13388db", - "504cb53f-f1f4-46f2-81f5-f99fef8227fd", - "4827a17d-8dc9-4cbd-8430-3334ebece64a", - "988c86da-04eb-4067-b650-f13c447b17e7", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "988183db-88f1-47cb-87bf-b2a03dd4a38d", - "d739fe08-5298-4356-bd9e-c48a7fee16a1", - "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", - "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", - "176a1328-a08b-40f7-9010-c279f0b6cf5d", - "8dc191fb-71db-4873-9019-c9cedd32b2f0", - "cbe5dd37-dce1-464a-9725-6d31d37c48ab", - "fb30643a-60d9-443e-8b22-29ad762aebdb", - "bd054361-ba99-4c5e-bde0-47f325682b88", - "931c7650-b24c-4431-a556-56243637e8a2", - "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", - "e50671a0-a4b5-4876-82f3-d4b9358f2b9f", - "8566f24d-a192-4017-b9c9-09c3d46779b5", - "6d9b7e37-cd6f-4931-b931-b7d0d8977c84", - "78e9801c-50c9-4092-905b-26f4c2c9691f", - "76c5dc0c-6c87-48e4-b4a8-6f7986e09fb7", - "cfa8e93e-db19-45e9-8258-0b21519d678a", - "2bfdc814-6852-43cf-a60e-ce2e7fee82b8", - "2bad9abb-726e-4e19-bd55-ea4436446fe9", - "40363de6-68fe-4797-a6b6-a7c0b8b379e0", - "24542ec6-1b63-420d-8089-98a7341dfe66", - "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", - "2cd6db83-9a4e-4640-91da-759ec9e4a386", - "c5d63249-9c53-468b-a75e-33839919bc02" - ], - "stops": [], - "line_id": "ed9c5ec5-b078-4065-9f49-fd6bc0951263", - "segments": [ - 0, - 27, - 47, - 53, - 57, - 63, - 74, - 79, - 81, - 86, - 95, - 102, - 111, - 117, - 120, - 127, - 136, - 141, - 142, - 149, - 150, - 152, - 154, - 158, - 160, - 162, - 163, - 167, - 173, - 180, - 188, - 192, - 199, - 205, - 208, - 212, - 220, - 224, - 227, - 230, - 235 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 90, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.470853, - 45.437641 - ], - [ - -73.470909, - 45.43755 - ], - [ - -73.471049, - 45.437306 - ], - [ - -73.471113, - 45.437194 - ], - [ - -73.471139, - 45.437154 - ], - [ - -73.472058, - 45.435759 - ], - [ - -73.471657, - 45.43562 - ], - [ - -73.471617, - 45.435607 - ], - [ - -73.471308, - 45.435507 - ], - [ - -73.470856, - 45.435367 - ], - [ - -73.470685, - 45.435314 - ], - [ - -73.470598, - 45.435287 - ], - [ - -73.469951, - 45.435071 - ], - [ - -73.469143, - 45.434801 - ], - [ - -73.469086, - 45.434782 - ], - [ - -73.466273, - 45.43385 - ], - [ - -73.465529, - 45.433585 - ], - [ - -73.465352, - 45.433521 - ], - [ - -73.464983, - 45.434165 - ], - [ - -73.464402, - 45.435154 - ], - [ - -73.464363, - 45.435226 - ], - [ - -73.464262, - 45.435411 - ], - [ - -73.464217, - 45.435519 - ], - [ - -73.464208, - 45.435541 - ], - [ - -73.464129, - 45.435726 - ], - [ - -73.464042, - 45.435933 - ], - [ - -73.463949, - 45.43609 - ], - [ - -73.463882, - 45.436218 - ], - [ - -73.463836, - 45.436306 - ], - [ - -73.462701, - 45.435982 - ], - [ - -73.462324, - 45.436581 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.461454, - 45.437926 - ], - [ - -73.461441, - 45.437947 - ], - [ - -73.460899, - 45.438784 - ], - [ - -73.460824, - 45.438928 - ], - [ - -73.460775, - 45.43905 - ], - [ - -73.460753, - 45.439144 - ], - [ - -73.460745, - 45.439189 - ], - [ - -73.460732, - 45.439261 - ], - [ - -73.460756, - 45.439374 - ], - [ - -73.460804, - 45.439527 - ], - [ - -73.460879, - 45.439666 - ], - [ - -73.4611, - 45.439963 - ], - [ - -73.461732, - 45.440683 - ], - [ - -73.46187, - 45.440814 - ], - [ - -73.462084, - 45.440965 - ], - [ - -73.462213, - 45.441057 - ], - [ - -73.462145, - 45.441115 - ], - [ - -73.46199, - 45.441264 - ], - [ - -73.461921, - 45.441345 - ], - [ - -73.461307, - 45.442277 - ], - [ - -73.461249, - 45.442366 - ], - [ - -73.460621, - 45.443341 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.460454, - 45.443598 - ], - [ - -73.460027, - 45.444237 - ], - [ - -73.459538, - 45.44501 - ], - [ - -73.459486, - 45.445092 - ], - [ - -73.458903, - 45.445978 - ], - [ - -73.458716, - 45.446252 - ], - [ - -73.458499, - 45.446437 - ], - [ - -73.458358, - 45.446536 - ], - [ - -73.45823, - 45.446598 - ], - [ - -73.458121, - 45.446639 - ], - [ - -73.458114, - 45.446641 - ], - [ - -73.458085, - 45.446651 - ], - [ - -73.458009, - 45.446676 - ], - [ - -73.457516, - 45.446841 - ], - [ - -73.456885, - 45.447052 - ], - [ - -73.456392, - 45.447217 - ], - [ - -73.456253, - 45.447264 - ], - [ - -73.455927, - 45.447371 - ], - [ - -73.455661, - 45.447479 - ], - [ - -73.455528, - 45.447551 - ], - [ - -73.455416, - 45.447619 - ], - [ - -73.455304, - 45.447709 - ], - [ - -73.455137, - 45.447929 - ], - [ - -73.454897, - 45.448293 - ], - [ - -73.454606, - 45.448707 - ], - [ - -73.454507, - 45.448806 - ], - [ - -73.454415, - 45.448878 - ], - [ - -73.454351, - 45.448928 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.454088, - 45.449121 - ], - [ - -73.454556, - 45.449427 - ], - [ - -73.454798, - 45.449611 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.453977, - 45.450264 - ], - [ - -73.452732, - 45.451135 - ], - [ - -73.452622, - 45.451213 - ], - [ - -73.453298, - 45.451699 - ], - [ - -73.452613, - 45.45218 - ], - [ - -73.45248, - 45.452271 - ], - [ - -73.451628, - 45.452856 - ], - [ - -73.451486, - 45.452953 - ], - [ - -73.45112, - 45.453219 - ], - [ - -73.450766, - 45.453502 - ], - [ - -73.450725, - 45.453552 - ], - [ - -73.450488, - 45.453839 - ], - [ - -73.451305, - 45.454127 - ], - [ - -73.451557, - 45.454204 - ], - [ - -73.45174, - 45.454276 - ], - [ - -73.451873, - 45.454344 - ], - [ - -73.451956, - 45.454402 - ], - [ - -73.452095, - 45.454542 - ], - [ - -73.452189, - 45.454636 - ], - [ - -73.452038, - 45.454708 - ], - [ - -73.451941, - 45.454767 - ], - [ - -73.451848, - 45.45487 - ], - [ - -73.45166, - 45.455126 - ], - [ - -73.451461, - 45.455422 - ], - [ - -73.451253, - 45.455729 - ], - [ - -73.450443, - 45.45693 - ], - [ - -73.450382, - 45.457097 - ], - [ - -73.450362, - 45.457232 - ], - [ - -73.450367, - 45.457403 - ], - [ - -73.450397, - 45.457544 - ], - [ - -73.450437, - 45.457731 - ], - [ - -73.451112, - 45.458216 - ], - [ - -73.451165, - 45.458254 - ], - [ - -73.452534, - 45.459239 - ], - [ - -73.453088, - 45.459645 - ], - [ - -73.453221, - 45.459743 - ], - [ - -73.454644, - 45.460765 - ], - [ - -73.456104, - 45.461814 - ], - [ - -73.456268, - 45.4619 - ], - [ - -73.456608, - 45.461964 - ], - [ - -73.457019, - 45.462007 - ], - [ - -73.457412, - 45.462047 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.458524, - 45.462178 - ], - [ - -73.458611, - 45.462189 - ], - [ - -73.459742, - 45.462333 - ], - [ - -73.460596, - 45.46227 - ], - [ - -73.461008, - 45.46224 - ], - [ - -73.461012, - 45.46224 - ], - [ - -73.461274, - 45.462221 - ], - [ - -73.46213, - 45.462145 - ], - [ - -73.462729, - 45.462095 - ], - [ - -73.462839, - 45.462082 - ], - [ - -73.462926, - 45.462051 - ], - [ - -73.463004, - 45.46201 - ], - [ - -73.463058, - 45.461956 - ], - [ - -73.463101, - 45.461866 - ], - [ - -73.463097, - 45.461763 - ], - [ - -73.463035, - 45.46138 - ], - [ - -73.462936, - 45.460768 - ], - [ - -73.462922, - 45.460678 - ], - [ - -73.462766, - 45.459543 - ], - [ - -73.462745, - 45.459391 - ], - [ - -73.463717, - 45.459342 - ], - [ - -73.464994, - 45.459278 - ], - [ - -73.465215, - 45.461562 - ], - [ - -73.465247, - 45.461893 - ], - [ - -73.465328, - 45.462497 - ], - [ - -73.465435, - 45.463211 - ], - [ - -73.465484, - 45.463543 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469043, - 45.46624 - ] - ] - }, - "id": 91, - "properties": { - "id": "0260c5dc-2e8f-484e-8c39-58a75062684e", - "data": { - "gtfs": { - "shape_id": "33_1_A" - }, - "segments": [ - { - "distanceMeters": 268, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 337, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 88, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 93, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 1137, - "travelTimeSeconds": 257 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6974, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3146.349625898839, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.81, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 5.05, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.81 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", - "f36c7de3-84dd-4573-ac69-91ccd87efd4f", - "1d638a17-5a2b-40f7-a0cc-6db81666104e", - "e990ec2d-e586-4b2f-884d-4124f22426b3", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "c7e2639a-bb94-426e-918b-714f0212d53b", - "19a4f64a-0169-40b9-8b9c-84de3158151e", - "b93691d0-438e-4eac-87a0-7c1ac45a7c18", - "9b31d865-da9f-4eb8-b8a9-3d488eb579df", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "57126f14-f5bb-4578-a4ae-48d75eae5e82", - "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", - "8b7e764f-0227-410c-89b9-51b9a8ad8c88", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", - "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", - "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", - "0087674f-0098-4bab-9a77-b31eb3602613", - "db56dff4-d82c-4b2d-ad34-35b3db3f27de", - "800b4ca8-f540-48ef-9acf-ec6d45db3496", - "0c735a18-4964-435c-ad38-89ab21a47f83", - "c01e4d9c-c5df-425f-9b40-215a62d76b50", - "4ca26d1e-a5a2-4d1a-ba5a-7bed9b5a1bee", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "5d862a7d-92b0-4def-8199-258993ce3523", - "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", - "d0325326-9fbf-42e2-aefa-29fa09853c10", - "d13720b6-fb91-4a90-a816-addaef17cf17", - "80775ca9-8434-48d9-a65d-5f3eace6e2d8", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "8b2ad537-2155-49dc-b85b-0cd08b823921", - "segments": [ - 0, - 7, - 13, - 16, - 27, - 30, - 33, - 38, - 46, - 51, - 53, - 57, - 65, - 70, - 81, - 86, - 89, - 94, - 98, - 105, - 112, - 117, - 122, - 124, - 129, - 131, - 135, - 147, - 149, - 151 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 91, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469043, - 45.46624 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466352, - 45.465288 - ], - [ - -73.466238, - 45.465062 - ], - [ - -73.466142, - 45.464853 - ], - [ - -73.466048, - 45.464638 - ], - [ - -73.46599, - 45.464498 - ], - [ - -73.465967, - 45.464441 - ], - [ - -73.465777, - 45.463945 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465663, - 45.463449 - ], - [ - -73.465646, - 45.463238 - ], - [ - -73.465636, - 45.463073 - ], - [ - -73.465461, - 45.461275 - ], - [ - -73.465447, - 45.461137 - ], - [ - -73.465251, - 45.459263 - ], - [ - -73.465215, - 45.458894 - ], - [ - -73.465199, - 45.458728 - ], - [ - -73.465132, - 45.458038 - ], - [ - -73.465113, - 45.457592 - ], - [ - -73.465124, - 45.457143 - ], - [ - -73.465143, - 45.45685 - ], - [ - -73.465153, - 45.456755 - ], - [ - -73.465199, - 45.456301 - ], - [ - -73.465244, - 45.456 - ], - [ - -73.465335, - 45.455572 - ], - [ - -73.465339, - 45.455554 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465617, - 45.454677 - ], - [ - -73.465629, - 45.454641 - ], - [ - -73.465631, - 45.454637 - ], - [ - -73.465694, - 45.454481 - ], - [ - -73.465735, - 45.45438 - ], - [ - -73.465853, - 45.45411 - ], - [ - -73.466087, - 45.453654 - ], - [ - -73.46613, - 45.45357 - ], - [ - -73.466877, - 45.452297 - ], - [ - -73.467521, - 45.451236 - ], - [ - -73.468182, - 45.450183 - ], - [ - -73.469986, - 45.447403 - ], - [ - -73.470115, - 45.447205 - ], - [ - -73.470215, - 45.447052 - ], - [ - -73.47028, - 45.446953 - ], - [ - -73.470478, - 45.446647 - ], - [ - -73.471792, - 45.444623 - ], - [ - -73.47221, - 45.443966 - ], - [ - -73.472405, - 45.443633 - ], - [ - -73.472572, - 45.443287 - ], - [ - -73.472646, - 45.443111 - ], - [ - -73.472778, - 45.442752 - ], - [ - -73.472833, - 45.442567 - ], - [ - -73.472919, - 45.442194 - ], - [ - -73.472951, - 45.442005 - ], - [ - -73.473027, - 45.441433 - ], - [ - -73.473089, - 45.441055 - ], - [ - -73.47323, - 45.44052 - ], - [ - -73.473412, - 45.440048 - ], - [ - -73.47351, - 45.439841 - ], - [ - -73.47354, - 45.439773 - ], - [ - -73.473721, - 45.439445 - ], - [ - -73.474086, - 45.43886 - ], - [ - -73.474303, - 45.438527 - ], - [ - -73.474529, - 45.438181 - ], - [ - -73.474202, - 45.438163 - ], - [ - -73.474062, - 45.438151 - ], - [ - -73.472418, - 45.438013 - ], - [ - -73.472271, - 45.438 - ], - [ - -73.470756, - 45.437887 - ], - [ - -73.470768, - 45.437797 - ], - [ - -73.470818, - 45.437698 - ], - [ - -73.470853, - 45.437641 - ] - ] - }, - "id": 92, - "properties": { - "id": "3c656582-5c55-4d10-a8df-9bc7607fa134", - "data": { - "gtfs": { - "shape_id": "33_1_R" - }, - "segments": [ - { - "distanceMeters": 769, - "travelTimeSeconds": 154 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 478, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 899, - "travelTimeSeconds": 141 - }, - { - "distanceMeters": 1235, - "travelTimeSeconds": 194 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 25 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 3787, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3146.349625898839, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.74, - "travelTimeWithoutDwellTimesSeconds": 660, - "operatingTimeWithLayoverTimeSeconds": 840, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 660, - "operatingSpeedWithLayoverMetersPerSecond": 4.51, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.74 - }, - "mode": "bus", - "name": "Sect. M-N-O Brossard", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "74887516-47d5-4269-9513-84672d18e287", - "1e3a74d9-9d8a-467f-a82e-3dafee501e32", - "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", - "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", - "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", - "3eb5b313-c26d-472e-a3c1-397c7596c769" - ], - "stops": [], - "line_id": "8b2ad537-2155-49dc-b85b-0cd08b823921", - "segments": [ - 0, - 24, - 26, - 41, - 51, - 76 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 92, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469043, - 45.46624 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466352, - 45.465288 - ], - [ - -73.466238, - 45.465062 - ], - [ - -73.466142, - 45.464853 - ], - [ - -73.466048, - 45.464638 - ], - [ - -73.46599, - 45.464498 - ], - [ - -73.465967, - 45.464441 - ], - [ - -73.465973, - 45.464235 - ], - [ - -73.466002, - 45.464038 - ], - [ - -73.466104, - 45.463863 - ], - [ - -73.466216, - 45.463756 - ], - [ - -73.466371, - 45.463679 - ], - [ - -73.466622, - 45.463647 - ], - [ - -73.466852, - 45.463668 - ], - [ - -73.467082, - 45.463784 - ], - [ - -73.467212, - 45.463951 - ], - [ - -73.467234, - 45.464135 - ], - [ - -73.467163, - 45.464287 - ], - [ - -73.467024, - 45.464416 - ], - [ - -73.466735, - 45.46451 - ], - [ - -73.466567, - 45.464522 - ], - [ - -73.465706, - 45.464485 - ], - [ - -73.464402, - 45.464429 - ], - [ - -73.463422, - 45.464395 - ], - [ - -73.462294, - 45.464357 - ], - [ - -73.461419, - 45.464323 - ], - [ - -73.460353, - 45.4642 - ], - [ - -73.459906, - 45.464144 - ], - [ - -73.459408, - 45.464052 - ], - [ - -73.458521, - 45.463796 - ], - [ - -73.458275, - 45.463724 - ], - [ - -73.457681, - 45.463496 - ], - [ - -73.457669, - 45.463491 - ], - [ - -73.456975, - 45.463149 - ], - [ - -73.456896, - 45.463092 - ], - [ - -73.456843, - 45.463043 - ], - [ - -73.456777, - 45.462977 - ], - [ - -73.456717, - 45.462912 - ], - [ - -73.456666, - 45.462833 - ], - [ - -73.456625, - 45.462758 - ], - [ - -73.456603, - 45.462667 - ], - [ - -73.456593, - 45.462539 - ], - [ - -73.456593, - 45.462536 - ], - [ - -73.4566, - 45.462399 - ], - [ - -73.456621, - 45.462264 - ], - [ - -73.456608, - 45.461964 - ], - [ - -73.456268, - 45.4619 - ], - [ - -73.456104, - 45.461814 - ], - [ - -73.455623, - 45.461469 - ], - [ - -73.454191, - 45.46044 - ], - [ - -73.453314, - 45.45981 - ], - [ - -73.453221, - 45.459743 - ], - [ - -73.452534, - 45.459239 - ], - [ - -73.451112, - 45.458216 - ], - [ - -73.450772, - 45.457972 - ], - [ - -73.450437, - 45.457731 - ], - [ - -73.450367, - 45.457403 - ], - [ - -73.450362, - 45.457232 - ], - [ - -73.450382, - 45.457097 - ], - [ - -73.450443, - 45.45693 - ], - [ - -73.450536, - 45.456792 - ], - [ - -73.451229, - 45.455766 - ], - [ - -73.451461, - 45.455422 - ], - [ - -73.45166, - 45.455126 - ], - [ - -73.451848, - 45.45487 - ], - [ - -73.451904, - 45.454808 - ], - [ - -73.451941, - 45.454767 - ], - [ - -73.452038, - 45.454708 - ], - [ - -73.452189, - 45.454636 - ], - [ - -73.451956, - 45.454402 - ], - [ - -73.451873, - 45.454344 - ], - [ - -73.45174, - 45.454276 - ], - [ - -73.451557, - 45.454204 - ], - [ - -73.451305, - 45.454127 - ], - [ - -73.450793, - 45.453947 - ], - [ - -73.450488, - 45.453839 - ], - [ - -73.450766, - 45.453502 - ], - [ - -73.45112, - 45.453219 - ], - [ - -73.451334, - 45.453063 - ], - [ - -73.451486, - 45.452953 - ], - [ - -73.45248, - 45.452271 - ], - [ - -73.452613, - 45.45218 - ], - [ - -73.453298, - 45.451699 - ], - [ - -73.452768, - 45.451318 - ], - [ - -73.452622, - 45.451213 - ], - [ - -73.453977, - 45.450264 - ], - [ - -73.454497, - 45.449915 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.455056, - 45.44954 - ], - [ - -73.454737, - 45.449301 - ], - [ - -73.454437, - 45.449104 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.454351, - 45.448928 - ], - [ - -73.454507, - 45.448806 - ], - [ - -73.454606, - 45.448707 - ], - [ - -73.454897, - 45.448293 - ], - [ - -73.455137, - 45.447929 - ], - [ - -73.455304, - 45.447709 - ], - [ - -73.455416, - 45.447619 - ], - [ - -73.455528, - 45.447551 - ], - [ - -73.455661, - 45.447479 - ], - [ - -73.455899, - 45.447383 - ], - [ - -73.455927, - 45.447371 - ], - [ - -73.456253, - 45.447264 - ], - [ - -73.456885, - 45.447052 - ], - [ - -73.457516, - 45.446841 - ], - [ - -73.457772, - 45.446756 - ], - [ - -73.458009, - 45.446676 - ], - [ - -73.458085, - 45.446651 - ], - [ - -73.458121, - 45.446639 - ], - [ - -73.45823, - 45.446598 - ], - [ - -73.458358, - 45.446536 - ], - [ - -73.458499, - 45.446437 - ], - [ - -73.458716, - 45.446252 - ], - [ - -73.458903, - 45.445978 - ], - [ - -73.459429, - 45.445179 - ], - [ - -73.459486, - 45.445092 - ], - [ - -73.460027, - 45.444237 - ], - [ - -73.460311, - 45.443812 - ], - [ - -73.460454, - 45.443598 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.461197, - 45.442446 - ], - [ - -73.461249, - 45.442366 - ], - [ - -73.461921, - 45.441345 - ], - [ - -73.46199, - 45.441264 - ], - [ - -73.462047, - 45.441209 - ], - [ - -73.462145, - 45.441115 - ], - [ - -73.462213, - 45.441057 - ], - [ - -73.46187, - 45.440814 - ], - [ - -73.461732, - 45.440683 - ], - [ - -73.461111, - 45.439976 - ], - [ - -73.4611, - 45.439963 - ], - [ - -73.460879, - 45.439666 - ], - [ - -73.460804, - 45.439527 - ], - [ - -73.460756, - 45.439374 - ], - [ - -73.460732, - 45.439261 - ], - [ - -73.460751, - 45.43915 - ], - [ - -73.460753, - 45.439144 - ], - [ - -73.460775, - 45.43905 - ], - [ - -73.460824, - 45.438928 - ], - [ - -73.460899, - 45.438784 - ], - [ - -73.461532, - 45.437806 - ], - [ - -73.462055, - 45.436998 - ], - [ - -73.462056, - 45.436996 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.462701, - 45.435982 - ], - [ - -73.463836, - 45.436306 - ], - [ - -73.463949, - 45.43609 - ], - [ - -73.464018, - 45.435973 - ], - [ - -73.464042, - 45.435933 - ], - [ - -73.464129, - 45.435726 - ], - [ - -73.464208, - 45.435541 - ], - [ - -73.464217, - 45.435519 - ], - [ - -73.464262, - 45.435411 - ], - [ - -73.464363, - 45.435226 - ], - [ - -73.464402, - 45.435154 - ], - [ - -73.464983, - 45.434165 - ], - [ - -73.465298, - 45.433616 - ], - [ - -73.465352, - 45.433521 - ], - [ - -73.466273, - 45.43385 - ], - [ - -73.468913, - 45.434725 - ], - [ - -73.469086, - 45.434782 - ], - [ - -73.469951, - 45.435071 - ], - [ - -73.470598, - 45.435287 - ], - [ - -73.470685, - 45.435314 - ], - [ - -73.470856, - 45.435367 - ], - [ - -73.471308, - 45.435507 - ], - [ - -73.471316, - 45.43551 - ], - [ - -73.471657, - 45.43562 - ], - [ - -73.472058, - 45.435759 - ], - [ - -73.471139, - 45.437154 - ], - [ - -73.471113, - 45.437194 - ], - [ - -73.471037, - 45.437237 - ], - [ - -73.470968, - 45.437275 - ], - [ - -73.470767, - 45.437505 - ], - [ - -73.470657, - 45.43764 - ], - [ - -73.470585, - 45.437793 - ], - [ - -73.470582, - 45.437803 - ] - ] - }, - "id": 93, - "properties": { - "id": "52b602e7-66ec-47ad-872c-639f35f3df0d", - "data": { - "gtfs": { - "shape_id": "33_2_R" - }, - "segments": [ - { - "distanceMeters": 1684, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 119, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 135 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 88 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 137 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6576, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3146.349625898839, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.22, - "travelTimeWithoutDwellTimesSeconds": 1260, - "operatingTimeWithLayoverTimeSeconds": 1440, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1260, - "operatingSpeedWithLayoverMetersPerSecond": 4.57, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.22 - }, - "mode": "bus", - "name": "Sect. M-N-O Brossard", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "30d24143-abd0-4a47-955d-cdbc3943ae61", - "47d3a0e8-5db6-4263-911d-0835de2b9cb0", - "c01e4d9c-c5df-425f-9b40-215a62d76b50", - "5781af67-07a2-4732-99f5-af7b2835e18a", - "800b4ca8-f540-48ef-9acf-ec6d45db3496", - "db56dff4-d82c-4b2d-ad34-35b3db3f27de", - "0087674f-0098-4bab-9a77-b31eb3602613", - "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", - "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", - "fd4f887b-9300-41e3-8cc1-44b80109a4ad", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "8b7e764f-0227-410c-89b9-51b9a8ad8c88", - "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", - "57126f14-f5bb-4578-a4ae-48d75eae5e82", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "9b31d865-da9f-4eb8-b8a9-3d488eb579df", - "b93691d0-438e-4eac-87a0-7c1ac45a7c18", - "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", - "19a4f64a-0169-40b9-8b9c-84de3158151e", - "c7e2639a-bb94-426e-918b-714f0212d53b", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "e990ec2d-e586-4b2f-884d-4124f22426b3", - "1d638a17-5a2b-40f7-a0cc-6db81666104e", - "f36c7de3-84dd-4573-ac69-91ccd87efd4f", - "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", - "3eb5b313-c26d-472e-a3c1-397c7596c769" - ], - "stops": [], - "line_id": "8b2ad537-2155-49dc-b85b-0cd08b823921", - "segments": [ - 0, - 59, - 60, - 61, - 65, - 72, - 76, - 85, - 89, - 94, - 97, - 101, - 112, - 117, - 126, - 129, - 132, - 136, - 141, - 147, - 152, - 154, - 159, - 168, - 171, - 178 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 93, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.470582, - 45.437803 - ], - [ - -73.470561, - 45.437874 - ], - [ - -73.470756, - 45.437887 - ], - [ - -73.472271, - 45.438 - ], - [ - -73.474202, - 45.438163 - ], - [ - -73.474023, - 45.438441 - ], - [ - -73.47371, - 45.438932 - ], - [ - -73.473393, - 45.439449 - ], - [ - -73.473246, - 45.439724 - ], - [ - -73.473111, - 45.440012 - ], - [ - -73.472993, - 45.440308 - ], - [ - -73.472892, - 45.440614 - ], - [ - -73.472775, - 45.441091 - ], - [ - -73.472634, - 45.442077 - ], - [ - -73.472562, - 45.44241 - ], - [ - -73.472464, - 45.442742 - ], - [ - -73.47234, - 45.44308 - ], - [ - -73.47219, - 45.443413 - ], - [ - -73.472106, - 45.443579 - ], - [ - -73.471921, - 45.443899 - ], - [ - -73.471725, - 45.444209 - ], - [ - -73.470379, - 45.446283 - ], - [ - -73.470198, - 45.446562 - ], - [ - -73.470085, - 45.446735 - ], - [ - -73.470002, - 45.446863 - ], - [ - -73.469936, - 45.446962 - ], - [ - -73.4697, - 45.447326 - ], - [ - -73.467906, - 45.450089 - ], - [ - -73.467328, - 45.451002 - ], - [ - -73.46669, - 45.452054 - ], - [ - -73.465968, - 45.453278 - ], - [ - -73.465918, - 45.453363 - ], - [ - -73.465707, - 45.453755 - ], - [ - -73.46558, - 45.454016 - ], - [ - -73.46536, - 45.454529 - ], - [ - -73.465344, - 45.454574 - ], - [ - -73.465258, - 45.454822 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.465167, - 45.455082 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465048, - 45.455509 - ], - [ - -73.465041, - 45.455536 - ], - [ - -73.464975, - 45.455829 - ], - [ - -73.464919, - 45.45613 - ], - [ - -73.464878, - 45.456427 - ], - [ - -73.464848, - 45.456873 - ], - [ - -73.464844, - 45.457169 - ], - [ - -73.464871, - 45.457574 - ], - [ - -73.464981, - 45.459102 - ], - [ - -73.464994, - 45.459278 - ], - [ - -73.465215, - 45.461562 - ], - [ - -73.465247, - 45.461893 - ], - [ - -73.465328, - 45.462497 - ], - [ - -73.465435, - 45.463211 - ], - [ - -73.465484, - 45.463543 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469043, - 45.46624 - ] - ] - }, - "id": 94, - "properties": { - "id": "29e59c5c-7626-454a-8895-a4097b12eef7", - "data": { - "gtfs": { - "shape_id": "33_2_A" - }, - "segments": [ - { - "distanceMeters": 1307, - "travelTimeSeconds": 137 - }, - { - "distanceMeters": 976, - "travelTimeSeconds": 103 - }, - { - "distanceMeters": 479, - "travelTimeSeconds": 112 - }, - { - "distanceMeters": 1056, - "travelTimeSeconds": 248 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 3818, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3146.349625898839, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.36, - "travelTimeWithoutDwellTimesSeconds": 600, - "operatingTimeWithLayoverTimeSeconds": 780, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 600, - "operatingSpeedWithLayoverMetersPerSecond": 4.89, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.36 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "25804924-ba76-4ef4-b42b-ff451a0d33dc", - "3481b163-efe1-4b08-b6af-eecb2141ddbe", - "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "8b2ad537-2155-49dc-b85b-0cd08b823921", - "segments": [ - 0, - 23, - 36, - 48 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 94, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.451254, - 45.48212 - ], - [ - -73.45011, - 45.4828 - ], - [ - -73.449882, - 45.482936 - ], - [ - -73.449245, - 45.483336 - ], - [ - -73.449101, - 45.483471 - ], - [ - -73.448914, - 45.483713 - ], - [ - -73.448817, - 45.483898 - ], - [ - -73.448629, - 45.484109 - ], - [ - -73.44844, - 45.484271 - ], - [ - -73.448225, - 45.484479 - ], - [ - -73.44775, - 45.484937 - ], - [ - -73.447415, - 45.485256 - ], - [ - -73.447237, - 45.485427 - ], - [ - -73.447005, - 45.485643 - ], - [ - -73.446791, - 45.485847 - ], - [ - -73.446708, - 45.485926 - ], - [ - -73.445795, - 45.486794 - ], - [ - -73.445654, - 45.486915 - ], - [ - -73.445524, - 45.487041 - ], - [ - -73.445408, - 45.487167 - ], - [ - -73.445368, - 45.48722 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445129, - 45.48732 - ], - [ - -73.444962, - 45.487262 - ], - [ - -73.444731, - 45.487167 - ], - [ - -73.444565, - 45.487086 - ], - [ - -73.444194, - 45.486807 - ], - [ - -73.444066, - 45.486883 - ], - [ - -73.443689, - 45.487108 - ], - [ - -73.443512, - 45.487213 - ], - [ - -73.443286, - 45.487346 - ], - [ - -73.441903, - 45.488164 - ], - [ - -73.441634, - 45.488328 - ], - [ - -73.441555, - 45.488376 - ], - [ - -73.441228, - 45.488564 - ], - [ - -73.440838, - 45.488816 - ], - [ - -73.440766, - 45.488924 - ], - [ - -73.440606, - 45.489239 - ], - [ - -73.440578, - 45.489293 - ], - [ - -73.440338, - 45.489779 - ], - [ - -73.440267, - 45.489918 - ], - [ - -73.440103, - 45.49026 - ], - [ - -73.439969, - 45.490525 - ], - [ - -73.440429, - 45.490652 - ], - [ - -73.440479, - 45.490665 - ], - [ - -73.440619, - 45.490703 - ], - [ - -73.44083, - 45.49076 - ], - [ - -73.44181, - 45.490985 - ], - [ - -73.44219, - 45.491013 - ], - [ - -73.442537, - 45.491049 - ], - [ - -73.442618, - 45.491067 - ], - [ - -73.442673, - 45.49108 - ], - [ - -73.443323, - 45.491233 - ], - [ - -73.443743, - 45.491333 - ], - [ - -73.444455, - 45.490906 - ], - [ - -73.445249, - 45.490425 - ], - [ - -73.445609, - 45.490209 - ], - [ - -73.445808, - 45.490089 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446822, - 45.490639 - ], - [ - -73.44688, - 45.490686 - ], - [ - -73.447261, - 45.491005 - ], - [ - -73.447337, - 45.491069 - ], - [ - -73.447665, - 45.490889 - ], - [ - -73.448136, - 45.490592 - ], - [ - -73.44848, - 45.49039 - ], - [ - -73.448793, - 45.490206 - ], - [ - -73.44919, - 45.489963 - ], - [ - -73.449328, - 45.489885 - ], - [ - -73.449476, - 45.489801 - ], - [ - -73.450048, - 45.489455 - ], - [ - -73.450226, - 45.489293 - ], - [ - -73.450385, - 45.489131 - ], - [ - -73.450522, - 45.488807 - ], - [ - -73.450553, - 45.488639 - ], - [ - -73.450562, - 45.488591 - ], - [ - -73.450564, - 45.488501 - ], - [ - -73.451142, - 45.48852 - ], - [ - -73.451437, - 45.488556 - ], - [ - -73.451471, - 45.48856 - ], - [ - -73.451663, - 45.488618 - ], - [ - -73.451864, - 45.488677 - ], - [ - -73.452026, - 45.48874 - ], - [ - -73.452059, - 45.488756 - ], - [ - -73.45223, - 45.488835 - ], - [ - -73.452272, - 45.488864 - ], - [ - -73.452316, - 45.488894 - ], - [ - -73.452398, - 45.488943 - ], - [ - -73.452482, - 45.488993 - ], - [ - -73.452596, - 45.489092 - ], - [ - -73.452853, - 45.489389 - ], - [ - -73.453059, - 45.489641 - ], - [ - -73.453301, - 45.489897 - ], - [ - -73.453554, - 45.490154 - ], - [ - -73.453816, - 45.490388 - ], - [ - -73.454028, - 45.490572 - ], - [ - -73.454376, - 45.490852 - ], - [ - -73.454694, - 45.491103 - ], - [ - -73.454792, - 45.49118 - ], - [ - -73.455383, - 45.490825 - ], - [ - -73.456177, - 45.490348 - ], - [ - -73.456382, - 45.490186 - ], - [ - -73.45652, - 45.490034 - ], - [ - -73.456589, - 45.489894 - ], - [ - -73.456688, - 45.489687 - ], - [ - -73.456691, - 45.489676 - ], - [ - -73.456709, - 45.489602 - ], - [ - -73.456724, - 45.489525 - ], - [ - -73.456835, - 45.488612 - ], - [ - -73.456898, - 45.488075 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.45772, - 45.486658 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.459245, - 45.485727 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.461093, - 45.484448 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.46135, - 45.4837 - ], - [ - -73.460838, - 45.483637 - ], - [ - -73.460406, - 45.4836 - ], - [ - -73.460182, - 45.483581 - ], - [ - -73.459999, - 45.483565 - ], - [ - -73.459497, - 45.483511 - ], - [ - -73.459033, - 45.483457 - ], - [ - -73.458739, - 45.483407 - ], - [ - -73.458547, - 45.483371 - ], - [ - -73.458333, - 45.483321 - ], - [ - -73.458016, - 45.483245 - ], - [ - -73.45777, - 45.483182 - ], - [ - -73.457498, - 45.483103 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.457528, - 45.482714 - ], - [ - -73.460931, - 45.480411 - ], - [ - -73.461043, - 45.480335 - ], - [ - -73.460965, - 45.480282 - ], - [ - -73.46017, - 45.47975 - ], - [ - -73.460311, - 45.479654 - ], - [ - -73.461947, - 45.478549 - ], - [ - -73.462028, - 45.478495 - ], - [ - -73.461943, - 45.478433 - ], - [ - -73.461432, - 45.478058 - ], - [ - -73.461335, - 45.477986 - ], - [ - -73.461695, - 45.47774 - ], - [ - -73.46271, - 45.477045 - ], - [ - -73.462832, - 45.476961 - ], - [ - -73.464383, - 45.475913 - ], - [ - -73.464098, - 45.475712 - ], - [ - -73.463948, - 45.475607 - ], - [ - -73.463529, - 45.475427 - ], - [ - -73.463, - 45.475189 - ], - [ - -73.462895, - 45.475142 - ], - [ - -73.462818, - 45.475107 - ], - [ - -73.461823, - 45.474666 - ], - [ - -73.461586, - 45.474511 - ], - [ - -73.4615, - 45.474454 - ], - [ - -73.462087, - 45.474055 - ], - [ - -73.462597, - 45.473708 - ], - [ - -73.462985, - 45.473456 - ], - [ - -73.464054, - 45.472703 - ], - [ - -73.464089, - 45.472678 - ], - [ - -73.465434, - 45.471774 - ], - [ - -73.465943, - 45.471423 - ], - [ - -73.466451, - 45.471073 - ], - [ - -73.467061, - 45.471469 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467869, - 45.471793 - ], - [ - -73.467954, - 45.471482 - ], - [ - -73.467979, - 45.471365 - ], - [ - -73.468005, - 45.471249 - ], - [ - -73.468064, - 45.470898 - ], - [ - -73.468088, - 45.470651 - ], - [ - -73.468112, - 45.470407 - ], - [ - -73.468119, - 45.470155 - ], - [ - -73.468115, - 45.470044 - ], - [ - -73.468111, - 45.469894 - ], - [ - -73.468108, - 45.469818 - ], - [ - -73.468107, - 45.469773 - ], - [ - -73.46805, - 45.4693 - ], - [ - -73.46801, - 45.469108 - ], - [ - -73.467953, - 45.468834 - ], - [ - -73.467932, - 45.468733 - ], - [ - -73.467793, - 45.468274 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466768 - ] - ] - }, - "id": 95, - "properties": { - "id": "5ed70b86-88e8-486b-9e8e-36d94ec0e0d0", - "data": { - "gtfs": { - "shape_id": "34_1_A" - }, - "segments": [ - { - "distanceMeters": 117, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 446, - "travelTimeSeconds": 85 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 76, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 138 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 79 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 143 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7145, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2182.003382807829, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 4.96, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 4.41, - "averageSpeedWithoutDwellTimesMetersPerSecond": 4.96 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "d9b94443-0b59-40db-aecb-0acb5ea7976c", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "e72d0d41-60dd-429c-9fc0-986190945d76", - "5a038102-c755-4ed1-808d-b41a0eb02aa9", - "6e3cdc85-5c0c-43a6-859f-4ad3aa775f67", - "5cb52e5c-c1b7-4111-984c-122d6e4401d5", - "7650e289-ca0a-45d4-ad94-da11b1683dc6", - "35f25056-4f99-4b6e-babc-10c53194c70e", - "0f232130-277e-4d7b-b106-b6821c45f0a9", - "4262a22a-885d-4877-ad99-0a8406e2adaa", - "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", - "517a8299-e807-4040-8ccd-f417dda7338c", - "da4ca96f-4db9-4287-b307-afc6221c923f", - "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "a90c4da7-455c-41d3-9961-c7a64d627572", - "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", - "491099bb-9493-4888-bd4e-20bd2140830a", - "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", - "10c2e9e3-14c8-465a-917c-28c8d9977609", - "9f622393-7da9-4ff8-9bda-12008512c7ed", - "4122212c-2ecd-4db2-a305-20f02711d17b", - "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", - "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", - "c467599b-2164-4b14-b9ca-8960936bda58", - "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", - "156c412f-0b84-4b14-a73e-e1d07d0b148d", - "51e1600d-418e-4477-9b26-9e5507d72a03", - "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "131616ed-8c78-458b-a65e-78f1aeac1fc7" - ], - "stops": [], - "line_id": "64663c2a-c848-4948-a48c-7e18d4a3fd0e", - "segments": [ - 0, - 1, - 9, - 14, - 20, - 29, - 32, - 37, - 45, - 52, - 57, - 63, - 70, - 76, - 87, - 99, - 107, - 111, - 120, - 125, - 130, - 142, - 151, - 154, - 159, - 162, - 165, - 168, - 175, - 180, - 183, - 194, - 203 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 95, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469004, - 45.466768 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466795, - 45.466596 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467476, - 45.467991 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467548, - 45.468225 - ], - [ - -73.467698, - 45.468792 - ], - [ - -73.467776, - 45.469183 - ], - [ - -73.46782, - 45.469453 - ], - [ - -73.46784, - 45.469698 - ], - [ - -73.467865, - 45.469989 - ], - [ - -73.467864, - 45.470057 - ], - [ - -73.467862, - 45.470168 - ], - [ - -73.46786, - 45.470362 - ], - [ - -73.467821, - 45.470781 - ], - [ - -73.467786, - 45.471019 - ], - [ - -73.467768, - 45.4711 - ], - [ - -73.467742, - 45.471226 - ], - [ - -73.467655, - 45.471563 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467508, - 45.472063 - ], - [ - -73.467493, - 45.472108 - ], - [ - -73.467254, - 45.472832 - ], - [ - -73.467075, - 45.473412 - ], - [ - -73.467018, - 45.473612 - ], - [ - -73.46686, - 45.474168 - ], - [ - -73.466715, - 45.474632 - ], - [ - -73.466501, - 45.475269 - ], - [ - -73.466278, - 45.475935 - ], - [ - -73.466234, - 45.476067 - ], - [ - -73.465592, - 45.477979 - ], - [ - -73.465357, - 45.478703 - ], - [ - -73.465269, - 45.478932 - ], - [ - -73.465247, - 45.479 - ], - [ - -73.465079, - 45.478932 - ], - [ - -73.464926, - 45.478932 - ], - [ - -73.4648, - 45.478959 - ], - [ - -73.4647, - 45.479009 - ], - [ - -73.464557, - 45.479101 - ], - [ - -73.464555, - 45.479102 - ], - [ - -73.463657, - 45.479683 - ], - [ - -73.462968, - 45.479195 - ], - [ - -73.462837, - 45.479103 - ], - [ - -73.462535, - 45.47931 - ], - [ - -73.461147, - 45.480264 - ], - [ - -73.461043, - 45.480335 - ], - [ - -73.457236, - 45.482911 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45645, - 45.482799 - ], - [ - -73.455886, - 45.482623 - ], - [ - -73.455654, - 45.482542 - ], - [ - -73.455462, - 45.482465 - ], - [ - -73.455276, - 45.482384 - ], - [ - -73.455009, - 45.482272 - ], - [ - -73.454605, - 45.482087 - ], - [ - -73.454381, - 45.481984 - ], - [ - -73.454145, - 45.481862 - ], - [ - -73.453796, - 45.481673 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452062, - 45.481636 - ], - [ - -73.45135, - 45.482063 - ], - [ - -73.451254, - 45.48212 - ] - ] - }, - "id": 96, - "properties": { - "id": "fd1b7eb8-6f34-4eeb-9b5a-027913e20099", - "data": { - "gtfs": { - "shape_id": "34_1_R" - }, - "segments": [ - { - "distanceMeters": 805, - "travelTimeSeconds": 420 - }, - { - "distanceMeters": 1119, - "travelTimeSeconds": 215 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 424, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 576, - "travelTimeSeconds": 112 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 3294, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2182.003382807829, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 3.66, - "travelTimeWithoutDwellTimesSeconds": 900, - "operatingTimeWithLayoverTimeSeconds": 1080, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 900, - "operatingSpeedWithLayoverMetersPerSecond": 3.05, - "averageSpeedWithoutDwellTimesMetersPerSecond": 3.66 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "acb7092d-3b2a-4d79-a4e3-09e7e52af475", - "bf51d692-a22e-42e9-a495-2d1955e0c462", - "a2558ba6-6969-4ec2-a211-1170eb732a2b", - "10c2e9e3-14c8-465a-917c-28c8d9977609", - "fd67ddde-e938-481c-8721-79fa136304ae", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af" - ], - "stops": [], - "line_id": "64663c2a-c848-4948-a48c-7e18d4a3fd0e", - "segments": [ - 0, - 31, - 61, - 64, - 67, - 69 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 96, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469004, - 45.466768 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466795, - 45.466596 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467476, - 45.467991 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467548, - 45.468225 - ], - [ - -73.467698, - 45.468792 - ], - [ - -73.467776, - 45.469183 - ], - [ - -73.46782, - 45.469453 - ], - [ - -73.46784, - 45.469694 - ], - [ - -73.467865, - 45.469989 - ], - [ - -73.467864, - 45.470057 - ], - [ - -73.467862, - 45.470168 - ], - [ - -73.46786, - 45.470362 - ], - [ - -73.467821, - 45.470781 - ], - [ - -73.467786, - 45.471019 - ], - [ - -73.467768, - 45.4711 - ], - [ - -73.467579, - 45.47132 - ], - [ - -73.467528, - 45.471365 - ], - [ - -73.467462, - 45.471392 - ], - [ - -73.467361, - 45.47141 - ], - [ - -73.467264, - 45.471406 - ], - [ - -73.467156, - 45.471392 - ], - [ - -73.466545, - 45.47101 - ], - [ - -73.466451, - 45.471073 - ], - [ - -73.465997, - 45.471386 - ], - [ - -73.465434, - 45.471774 - ], - [ - -73.464154, - 45.472634 - ], - [ - -73.464089, - 45.472678 - ], - [ - -73.462985, - 45.473456 - ], - [ - -73.462597, - 45.473708 - ], - [ - -73.462087, - 45.474055 - ], - [ - -73.461663, - 45.474343 - ], - [ - -73.4615, - 45.474454 - ], - [ - -73.461823, - 45.474666 - ], - [ - -73.462818, - 45.475107 - ], - [ - -73.462895, - 45.475142 - ], - [ - -73.463083, - 45.475227 - ], - [ - -73.463529, - 45.475427 - ], - [ - -73.463948, - 45.475607 - ], - [ - -73.464297, - 45.475853 - ], - [ - -73.464383, - 45.475913 - ], - [ - -73.462939, - 45.476889 - ], - [ - -73.462832, - 45.476961 - ], - [ - -73.461674, - 45.477754 - ], - [ - -73.461426, - 45.477924 - ], - [ - -73.461335, - 45.477986 - ], - [ - -73.461553, - 45.478146 - ], - [ - -73.461937, - 45.478429 - ], - [ - -73.462028, - 45.478495 - ], - [ - -73.461776, - 45.478665 - ], - [ - -73.46017, - 45.47975 - ], - [ - -73.460433, - 45.479926 - ], - [ - -73.460869, - 45.480218 - ], - [ - -73.461043, - 45.480335 - ], - [ - -73.460772, - 45.480518 - ], - [ - -73.457233, - 45.482913 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.456963, - 45.483096 - ], - [ - -73.457696, - 45.483312 - ], - [ - -73.457948, - 45.48338 - ], - [ - -73.45825, - 45.483452 - ], - [ - -73.458477, - 45.483499 - ], - [ - -73.458491, - 45.483501 - ], - [ - -73.458691, - 45.483542 - ], - [ - -73.458995, - 45.483592 - ], - [ - -73.459974, - 45.483704 - ], - [ - -73.46004, - 45.48371 - ], - [ - -73.460533, - 45.483756 - ], - [ - -73.460806, - 45.483781 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.459549, - 45.485502 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.457875, - 45.486542 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.456938, - 45.487845 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456835, - 45.488612 - ], - [ - -73.456724, - 45.489525 - ], - [ - -73.456709, - 45.489602 - ], - [ - -73.456688, - 45.489687 - ], - [ - -73.456589, - 45.489894 - ], - [ - -73.456548, - 45.489976 - ], - [ - -73.45652, - 45.490034 - ], - [ - -73.456382, - 45.490186 - ], - [ - -73.456177, - 45.490348 - ], - [ - -73.455038, - 45.491032 - ], - [ - -73.454792, - 45.49118 - ], - [ - -73.454498, - 45.490948 - ], - [ - -73.454376, - 45.490852 - ], - [ - -73.454028, - 45.490572 - ], - [ - -73.453816, - 45.490388 - ], - [ - -73.453554, - 45.490154 - ], - [ - -73.453301, - 45.489897 - ], - [ - -73.453059, - 45.489641 - ], - [ - -73.452853, - 45.489389 - ], - [ - -73.452596, - 45.489092 - ], - [ - -73.452482, - 45.488993 - ], - [ - -73.452443, - 45.48897 - ], - [ - -73.452398, - 45.488943 - ], - [ - -73.452316, - 45.488894 - ], - [ - -73.45223, - 45.488835 - ], - [ - -73.452059, - 45.488756 - ], - [ - -73.452026, - 45.48874 - ], - [ - -73.451864, - 45.488677 - ], - [ - -73.451663, - 45.488618 - ], - [ - -73.451471, - 45.48856 - ], - [ - -73.451142, - 45.48852 - ], - [ - -73.450763, - 45.488508 - ], - [ - -73.450564, - 45.488501 - ], - [ - -73.450562, - 45.488591 - ], - [ - -73.450522, - 45.488807 - ], - [ - -73.450385, - 45.489131 - ], - [ - -73.450226, - 45.489293 - ], - [ - -73.450048, - 45.489455 - ], - [ - -73.449936, - 45.489523 - ], - [ - -73.44964, - 45.489702 - ], - [ - -73.449476, - 45.489801 - ], - [ - -73.44919, - 45.489963 - ], - [ - -73.448793, - 45.490206 - ], - [ - -73.44848, - 45.49039 - ], - [ - -73.448136, - 45.490592 - ], - [ - -73.447665, - 45.490889 - ], - [ - -73.447464, - 45.490999 - ], - [ - -73.447337, - 45.491069 - ], - [ - -73.44688, - 45.490686 - ], - [ - -73.446822, - 45.490639 - ], - [ - -73.446256, - 45.490176 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.445609, - 45.490209 - ], - [ - -73.445249, - 45.490425 - ], - [ - -73.444455, - 45.490906 - ], - [ - -73.443921, - 45.491226 - ], - [ - -73.443743, - 45.491333 - ], - [ - -73.442673, - 45.49108 - ], - [ - -73.442618, - 45.491067 - ], - [ - -73.442537, - 45.491049 - ], - [ - -73.44219, - 45.491013 - ], - [ - -73.44181, - 45.490985 - ], - [ - -73.44083, - 45.49076 - ], - [ - -73.440429, - 45.490652 - ], - [ - -73.440092, - 45.490559 - ], - [ - -73.439969, - 45.490525 - ], - [ - -73.440103, - 45.49026 - ], - [ - -73.44012, - 45.490225 - ], - [ - -73.440267, - 45.489918 - ], - [ - -73.440338, - 45.489779 - ], - [ - -73.44053, - 45.489391 - ], - [ - -73.440578, - 45.489293 - ], - [ - -73.440766, - 45.488924 - ], - [ - -73.440838, - 45.488816 - ], - [ - -73.441228, - 45.488564 - ], - [ - -73.441409, - 45.48846 - ], - [ - -73.441555, - 45.488376 - ], - [ - -73.441903, - 45.488164 - ], - [ - -73.443286, - 45.487346 - ], - [ - -73.443689, - 45.487108 - ], - [ - -73.443933, - 45.486963 - ], - [ - -73.444066, - 45.486883 - ], - [ - -73.444405, - 45.487149 - ], - [ - -73.44464, - 45.487266 - ], - [ - -73.444883, - 45.487369 - ], - [ - -73.445062, - 45.487428 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445319, - 45.487496 - ], - [ - -73.445386, - 45.487388 - ], - [ - -73.445526, - 45.487217 - ], - [ - -73.445638, - 45.487095 - ], - [ - -73.445646, - 45.487088 - ], - [ - -73.445764, - 45.486978 - ], - [ - -73.445905, - 45.486857 - ], - [ - -73.44672, - 45.48608 - ], - [ - -73.44682, - 45.485985 - ], - [ - -73.447123, - 45.485706 - ], - [ - -73.447356, - 45.48549 - ], - [ - -73.447536, - 45.485315 - ], - [ - -73.447867, - 45.484995 - ], - [ - -73.448286, - 45.484591 - ], - [ - -73.448552, - 45.484334 - ], - [ - -73.448747, - 45.484168 - ], - [ - -73.448891, - 45.484006 - ], - [ - -73.448947, - 45.483943 - ], - [ - -73.449046, - 45.483754 - ], - [ - -73.449223, - 45.483529 - ], - [ - -73.449352, - 45.483408 - ], - [ - -73.449873, - 45.483083 - ], - [ - -73.449978, - 45.483017 - ], - [ - -73.451449, - 45.482131 - ], - [ - -73.451776, - 45.481934 - ] - ] - }, - "id": 97, - "properties": { - "id": "314742bd-e920-4fd4-9fd1-e04e8b44b014", - "data": { - "gtfs": { - "shape_id": "34_2_R" - }, - "segments": [ - { - "distanceMeters": 805, - "travelTimeSeconds": 125 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 78, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 432, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 317, - "travelTimeSeconds": 79 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 49 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7451, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2182.003382807829, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.4, - "travelTimeWithoutDwellTimesSeconds": 1380, - "operatingTimeWithLayoverTimeSeconds": 1560, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1380, - "operatingSpeedWithLayoverMetersPerSecond": 4.78, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.4 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "acb7092d-3b2a-4d79-a4e3-09e7e52af475", - "156c412f-0b84-4b14-a73e-e1d07d0b148d", - "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", - "c467599b-2164-4b14-b9ca-8960936bda58", - "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", - "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", - "4122212c-2ecd-4db2-a305-20f02711d17b", - "9f622393-7da9-4ff8-9bda-12008512c7ed", - "10c2e9e3-14c8-465a-917c-28c8d9977609", - "fd67ddde-e938-481c-8721-79fa136304ae", - "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", - "c24b91da-a4a3-4b28-b987-5726c6a01fdb", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", - "da4ca96f-4db9-4287-b307-afc6221c923f", - "517a8299-e807-4040-8ccd-f417dda7338c", - "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", - "4262a22a-885d-4877-ad99-0a8406e2adaa", - "0f232130-277e-4d7b-b106-b6821c45f0a9", - "35f25056-4f99-4b6e-babc-10c53194c70e", - "7650e289-ca0a-45d4-ad94-da11b1683dc6", - "5cb52e5c-c1b7-4111-984c-122d6e4401d5", - "6e3cdc85-5c0c-43a6-859f-4ad3aa775f67", - "5a038102-c755-4ed1-808d-b41a0eb02aa9", - "e72d0d41-60dd-429c-9fc0-986190945d76", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af" - ], - "stops": [], - "line_id": "64663c2a-c848-4948-a48c-7e18d4a3fd0e", - "segments": [ - 0, - 31, - 47, - 49, - 54, - 62, - 64, - 67, - 70, - 75, - 78, - 90, - 102, - 108, - 117, - 124, - 128, - 140, - 150, - 158, - 165, - 169, - 176, - 185, - 191, - 196, - 201, - 212, - 215, - 221, - 229 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 97, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.451776, - 45.481934 - ], - [ - -73.45215, - 45.481708 - ], - [ - -73.452851, - 45.48129 - ], - [ - -73.453668, - 45.481781 - ], - [ - -73.454023, - 45.481974 - ], - [ - -73.454266, - 45.482101 - ], - [ - -73.454494, - 45.482204 - ], - [ - -73.454624, - 45.482357 - ], - [ - -73.455203, - 45.482812 - ], - [ - -73.455441, - 45.482965 - ], - [ - -73.45551, - 45.483008 - ], - [ - -73.456089, - 45.483375 - ], - [ - -73.456112, - 45.483393 - ], - [ - -73.456334, - 45.483523 - ], - [ - -73.456426, - 45.48346 - ], - [ - -73.456963, - 45.483096 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.460937, - 45.480407 - ], - [ - -73.461043, - 45.480335 - ], - [ - -73.4625, - 45.479334 - ], - [ - -73.462715, - 45.479187 - ], - [ - -73.462837, - 45.479103 - ], - [ - -73.463592, - 45.479637 - ], - [ - -73.463657, - 45.479683 - ], - [ - -73.4647, - 45.479009 - ], - [ - -73.4648, - 45.478959 - ], - [ - -73.464926, - 45.478932 - ], - [ - -73.465079, - 45.478932 - ], - [ - -73.465247, - 45.479 - ], - [ - -73.46547, - 45.479009 - ], - [ - -73.465503, - 45.478911 - ], - [ - -73.465652, - 45.478467 - ], - [ - -73.465874, - 45.477808 - ], - [ - -73.466476, - 45.475989 - ], - [ - -73.466484, - 45.475966 - ], - [ - -73.466637, - 45.475504 - ], - [ - -73.467366, - 45.473305 - ], - [ - -73.467616, - 45.472553 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467869, - 45.471793 - ], - [ - -73.467954, - 45.471482 - ], - [ - -73.467979, - 45.471365 - ], - [ - -73.468005, - 45.471249 - ], - [ - -73.468064, - 45.470898 - ], - [ - -73.468089, - 45.470646 - ], - [ - -73.468112, - 45.470407 - ], - [ - -73.468119, - 45.470155 - ], - [ - -73.468115, - 45.470044 - ], - [ - -73.468111, - 45.469894 - ], - [ - -73.468108, - 45.469818 - ], - [ - -73.468107, - 45.469773 - ], - [ - -73.46805, - 45.4693 - ], - [ - -73.46801, - 45.469108 - ], - [ - -73.467952, - 45.468828 - ], - [ - -73.467932, - 45.468733 - ], - [ - -73.467793, - 45.468274 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466768 - ] - ] - }, - "id": 98, - "properties": { - "id": "32420bf3-2cc6-476e-a95c-bb5faa71b0b4", - "data": { - "gtfs": { - "shape_id": "34_2_A" - }, - "segments": [ - { - "distanceMeters": 979, - "travelTimeSeconds": 217 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 527, - "travelTimeSeconds": 117 - }, - { - "distanceMeters": 608, - "travelTimeSeconds": 135 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 81 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 2969, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2182.003382807829, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 4.5, - "travelTimeWithoutDwellTimesSeconds": 660, - "operatingTimeWithLayoverTimeSeconds": 840, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 660, - "operatingSpeedWithLayoverMetersPerSecond": 3.53, - "averageSpeedWithoutDwellTimesMetersPerSecond": 4.5 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "10c2e9e3-14c8-465a-917c-28c8d9977609", - "a2558ba6-6969-4ec2-a211-1170eb732a2b", - "a2558ba6-6969-4ec2-a211-1170eb732a2b", - "1758013c-4193-42f0-a495-c36930003f5b", - "51e1600d-418e-4477-9b26-9e5507d72a03", - "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "131616ed-8c78-458b-a65e-78f1aeac1fc7" - ], - "stops": [], - "line_id": "64663c2a-c848-4948-a48c-7e18d4a3fd0e", - "segments": [ - 0, - 17, - 20, - 22, - 33, - 45, - 54 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 98, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.457315, - 45.431886 - ], - [ - -73.457278, - 45.431848 - ], - [ - -73.456419, - 45.43101 - ], - [ - -73.456394, - 45.430985 - ], - [ - -73.455874, - 45.430428 - ], - [ - -73.455223, - 45.429731 - ], - [ - -73.45511, - 45.429613 - ], - [ - -73.455058, - 45.429559 - ], - [ - -73.455039, - 45.42954 - ], - [ - -73.454933, - 45.42945 - ], - [ - -73.454809, - 45.429506 - ], - [ - -73.454657, - 45.429588 - ], - [ - -73.454225, - 45.429797 - ], - [ - -73.453566, - 45.430073 - ], - [ - -73.453131, - 45.430253 - ], - [ - -73.452234, - 45.430624 - ], - [ - -73.451821, - 45.430796 - ], - [ - -73.451723, - 45.43084 - ], - [ - -73.451449, - 45.430962 - ], - [ - -73.451306, - 45.431026 - ], - [ - -73.450883, - 45.431238 - ], - [ - -73.450399, - 45.431499 - ], - [ - -73.449891, - 45.431803 - ], - [ - -73.449325, - 45.43218 - ], - [ - -73.448785, - 45.432585 - ], - [ - -73.448377, - 45.432935 - ], - [ - -73.447875, - 45.433413 - ], - [ - -73.447643, - 45.43369 - ], - [ - -73.44745, - 45.433901 - ], - [ - -73.447206, - 45.434187 - ], - [ - -73.447139, - 45.434272 - ], - [ - -73.446987, - 45.434468 - ], - [ - -73.446912, - 45.434572 - ], - [ - -73.446579, - 45.435033 - ], - [ - -73.446026, - 45.435853 - ], - [ - -73.445899, - 45.436025 - ], - [ - -73.445817, - 45.436136 - ], - [ - -73.445664, - 45.436383 - ], - [ - -73.445561, - 45.436548 - ], - [ - -73.445502, - 45.43665 - ], - [ - -73.445413, - 45.436734 - ], - [ - -73.444106, - 45.438698 - ], - [ - -73.443987, - 45.438877 - ], - [ - -73.443881, - 45.43883 - ], - [ - -73.443802, - 45.43881 - ], - [ - -73.443767, - 45.438801 - ], - [ - -73.443695, - 45.438781 - ], - [ - -73.44351, - 45.438696 - ], - [ - -73.443361, - 45.438611 - ], - [ - -73.443195, - 45.438492 - ], - [ - -73.443078, - 45.438408 - ], - [ - -73.443034, - 45.438377 - ], - [ - -73.442658, - 45.438118 - ], - [ - -73.442476, - 45.438049 - ], - [ - -73.442242, - 45.438054 - ], - [ - -73.442128, - 45.438081 - ], - [ - -73.441977, - 45.438145 - ], - [ - -73.44184, - 45.438241 - ], - [ - -73.441559, - 45.438446 - ], - [ - -73.440651, - 45.439108 - ], - [ - -73.439875, - 45.439682 - ], - [ - -73.439709, - 45.439781 - ], - [ - -73.439595, - 45.439843 - ], - [ - -73.439694, - 45.439922 - ], - [ - -73.440104, - 45.440226 - ], - [ - -73.440198, - 45.440296 - ], - [ - -73.440843, - 45.440775 - ], - [ - -73.441844, - 45.441518 - ], - [ - -73.441948, - 45.441595 - ], - [ - -73.442064, - 45.44172 - ], - [ - -73.442173, - 45.441795 - ], - [ - -73.4445, - 45.443462 - ], - [ - -73.444646, - 45.443567 - ], - [ - -73.444814, - 45.443691 - ], - [ - -73.445792, - 45.44439 - ], - [ - -73.445916, - 45.444479 - ], - [ - -73.447003, - 45.445252 - ], - [ - -73.447144, - 45.445352 - ], - [ - -73.44736, - 45.4455 - ], - [ - -73.447729, - 45.445718 - ], - [ - -73.448087, - 45.44592 - ], - [ - -73.449211, - 45.446549 - ], - [ - -73.449266, - 45.44658 - ], - [ - -73.4494, - 45.446659 - ], - [ - -73.449563, - 45.446742 - ], - [ - -73.450068, - 45.447011 - ], - [ - -73.450448, - 45.447201 - ], - [ - -73.451097, - 45.447517 - ], - [ - -73.4522, - 45.448094 - ], - [ - -73.452476, - 45.448237 - ], - [ - -73.453807, - 45.448921 - ], - [ - -73.454019, - 45.449072 - ], - [ - -73.454088, - 45.449121 - ], - [ - -73.454556, - 45.449427 - ], - [ - -73.454811, - 45.449621 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.455393, - 45.45012 - ], - [ - -73.456061, - 45.45066 - ], - [ - -73.456286, - 45.450829 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.457156, - 45.45145 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457924, - 45.451894 - ], - [ - -73.458487, - 45.4522 - ], - [ - -73.458738, - 45.452335 - ], - [ - -73.458941, - 45.452443 - ], - [ - -73.459713, - 45.452799 - ], - [ - -73.461251, - 45.45348 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.462928, - 45.454227 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463822, - 45.454609 - ], - [ - -73.464911, - 45.455069 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465048, - 45.455509 - ], - [ - -73.465041, - 45.455536 - ], - [ - -73.464975, - 45.455829 - ], - [ - -73.464919, - 45.45613 - ], - [ - -73.464881, - 45.456408 - ], - [ - -73.464878, - 45.456427 - ], - [ - -73.464848, - 45.456873 - ], - [ - -73.464844, - 45.457169 - ], - [ - -73.464871, - 45.457574 - ], - [ - -73.464982, - 45.459112 - ], - [ - -73.464994, - 45.459278 - ], - [ - -73.465215, - 45.461562 - ], - [ - -73.465247, - 45.461893 - ], - [ - -73.465328, - 45.462497 - ], - [ - -73.465435, - 45.463211 - ], - [ - -73.465484, - 45.463543 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466768 - ] - ] - }, - "id": 99, - "properties": { - "id": "e97d47cc-1faa-4ad3-a552-86879a670f37", - "data": { - "gtfs": { - "shape_id": "35_2_A" - }, - "segments": [ - { - "distanceMeters": 120, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 343, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 542, - "travelTimeSeconds": 82 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 427, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 451, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 469, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 87, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 462, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 1106, - "travelTimeSeconds": 290 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6362, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3971.080358174438, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.05, - "travelTimeWithoutDwellTimesSeconds": 1260, - "operatingTimeWithLayoverTimeSeconds": 1440, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1260, - "operatingSpeedWithLayoverMetersPerSecond": 4.42, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.05 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "ba9dbeb6-b197-4bf3-9ae7-2251eb9f3485", - "772e5e9c-3d69-4a70-b583-9525616f4a61", - "dca1f1af-a3cf-4dc0-9b7c-88db3f7a9ff7", - "1e5e280b-187c-453e-ae50-34515416c146", - "6780d4e6-8fc6-40a2-9f96-57ee1360cc41", - "639f03d6-fbc0-4032-b293-79460cff8a75", - "d3ead48f-87a1-4905-af00-10546937b61d", - "49b9afd3-56d8-4495-8b7a-642e5568568e", - "13dab893-0384-46f9-a2e5-e504a47de39a", - "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", - "d306b992-8d43-4ba8-8460-68d87b486222", - "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", - "b5853393-4072-4255-b507-e9c4b6659c5b", - "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", - "2ac07b96-98be-4710-a749-3162a661fcb5", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "981ebecb-3dc2-4439-8648-8052a51df7ec", - "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", - "131616ed-8c78-458b-a65e-78f1aeac1fc7" - ], - "stops": [], - "line_id": "0e24625c-d936-4ae1-b0bd-5cb2a1f4b411", - "segments": [ - 0, - 2, - 6, - 18, - 32, - 35, - 49, - 65, - 67, - 71, - 76, - 81, - 91, - 94, - 100, - 105, - 108, - 110, - 113, - 124 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 99, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469004, - 45.466768 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466352, - 45.465288 - ], - [ - -73.466238, - 45.465062 - ], - [ - -73.466142, - 45.464853 - ], - [ - -73.466048, - 45.464638 - ], - [ - -73.46599, - 45.464498 - ], - [ - -73.465967, - 45.464441 - ], - [ - -73.465777, - 45.463945 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465663, - 45.463449 - ], - [ - -73.465646, - 45.463238 - ], - [ - -73.465636, - 45.463073 - ], - [ - -73.465461, - 45.461275 - ], - [ - -73.465447, - 45.461137 - ], - [ - -73.465251, - 45.459263 - ], - [ - -73.465199, - 45.458728 - ], - [ - -73.465132, - 45.458038 - ], - [ - -73.465113, - 45.457592 - ], - [ - -73.465124, - 45.457143 - ], - [ - -73.465143, - 45.45685 - ], - [ - -73.465153, - 45.456755 - ], - [ - -73.465199, - 45.456301 - ], - [ - -73.465244, - 45.456 - ], - [ - -73.465335, - 45.455572 - ], - [ - -73.465339, - 45.455554 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.463912, - 45.454506 - ], - [ - -73.463601, - 45.454377 - ], - [ - -73.463324, - 45.454263 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.461816, - 45.453582 - ], - [ - -73.461798, - 45.453573 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.459815, - 45.452691 - ], - [ - -73.459196, - 45.452403 - ], - [ - -73.45904, - 45.452331 - ], - [ - -73.458688, - 45.452137 - ], - [ - -73.458046, - 45.451791 - ], - [ - -73.457698, - 45.451589 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457438, - 45.451421 - ], - [ - -73.457131, - 45.451219 - ], - [ - -73.456851, - 45.451021 - ], - [ - -73.45659, - 45.450823 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456003, - 45.45033 - ], - [ - -73.455823, - 45.450178 - ], - [ - -73.455605, - 45.449994 - ], - [ - -73.455056, - 45.44954 - ], - [ - -73.454737, - 45.449301 - ], - [ - -73.454449, - 45.449112 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.453273, - 45.448481 - ], - [ - -73.451557, - 45.447603 - ], - [ - -73.45107, - 45.447354 - ], - [ - -73.45026, - 45.446936 - ], - [ - -73.44967, - 45.446635 - ], - [ - -73.449652, - 45.446626 - ], - [ - -73.449554, - 45.446569 - ], - [ - -73.449363, - 45.446456 - ], - [ - -73.447677, - 45.44551 - ], - [ - -73.447484, - 45.445387 - ], - [ - -73.447408, - 45.44534 - ], - [ - -73.447287, - 45.445263 - ], - [ - -73.447125, - 45.445146 - ], - [ - -73.446612, - 45.444764 - ], - [ - -73.445568, - 45.444021 - ], - [ - -73.444903, - 45.443527 - ], - [ - -73.444834, - 45.443475 - ], - [ - -73.444807, - 45.443457 - ], - [ - -73.442882, - 45.442105 - ], - [ - -73.442352, - 45.441733 - ], - [ - -73.442337, - 45.441722 - ], - [ - -73.442193, - 45.441589 - ], - [ - -73.442073, - 45.441479 - ], - [ - -73.441548, - 45.441133 - ], - [ - -73.4411, - 45.440787 - ], - [ - -73.440974, - 45.440696 - ], - [ - -73.440252, - 45.440176 - ], - [ - -73.439966, - 45.439968 - ], - [ - -73.439796, - 45.439844 - ], - [ - -73.439951, - 45.43977 - ], - [ - -73.439998, - 45.439736 - ], - [ - -73.441517, - 45.438614 - ], - [ - -73.441585, - 45.438564 - ], - [ - -73.441653, - 45.438513 - ], - [ - -73.441894, - 45.43833 - ], - [ - -73.441985, - 45.438261 - ], - [ - -73.442108, - 45.438203 - ], - [ - -73.442221, - 45.438167 - ], - [ - -73.442354, - 45.438153 - ], - [ - -73.442462, - 45.438164 - ], - [ - -73.442569, - 45.438189 - ], - [ - -73.442661, - 45.43824 - ], - [ - -73.442769, - 45.438297 - ], - [ - -73.442853, - 45.438358 - ], - [ - -73.442961, - 45.438436 - ], - [ - -73.44304, - 45.438492 - ], - [ - -73.443321, - 45.438701 - ], - [ - -73.443465, - 45.438788 - ], - [ - -73.443675, - 45.438864 - ], - [ - -73.44376, - 45.438896 - ], - [ - -73.443838, - 45.438937 - ], - [ - -73.443906, - 45.438986 - ], - [ - -73.444093, - 45.439042 - ], - [ - -73.444175, - 45.438929 - ], - [ - -73.444341, - 45.438676 - ], - [ - -73.444677, - 45.438164 - ], - [ - -73.445291, - 45.437242 - ], - [ - -73.445458, - 45.436994 - ], - [ - -73.445467, - 45.43698 - ], - [ - -73.445588, - 45.436789 - ], - [ - -73.445658, - 45.436699 - ], - [ - -73.445998, - 45.43622 - ], - [ - -73.446132, - 45.436018 - ], - [ - -73.446179, - 45.435948 - ], - [ - -73.446205, - 45.435911 - ], - [ - -73.446635, - 45.435286 - ], - [ - -73.447013, - 45.43472 - ], - [ - -73.447167, - 45.434479 - ], - [ - -73.447171, - 45.434474 - ], - [ - -73.447325, - 45.434288 - ], - [ - -73.447405, - 45.434193 - ], - [ - -73.447515, - 45.434057 - ], - [ - -73.447812, - 45.43372 - ], - [ - -73.44808, - 45.433435 - ], - [ - -73.448286, - 45.433242 - ], - [ - -73.448467, - 45.433072 - ], - [ - -73.448834, - 45.432756 - ], - [ - -73.449139, - 45.432514 - ], - [ - -73.449431, - 45.432297 - ], - [ - -73.44953, - 45.432225 - ], - [ - -73.449956, - 45.431941 - ], - [ - -73.450305, - 45.431728 - ], - [ - -73.450787, - 45.431457 - ], - [ - -73.451268, - 45.431211 - ], - [ - -73.451712, - 45.431001 - ], - [ - -73.451771, - 45.430971 - ], - [ - -73.451808, - 45.430952 - ], - [ - -73.451911, - 45.430904 - ], - [ - -73.452123, - 45.43081 - ], - [ - -73.452869, - 45.430501 - ], - [ - -73.453778, - 45.430126 - ], - [ - -73.454571, - 45.429789 - ], - [ - -73.454851, - 45.429635 - ], - [ - -73.4549, - 45.429607 - ], - [ - -73.455039, - 45.42954 - ], - [ - -73.455058, - 45.429559 - ], - [ - -73.455223, - 45.429731 - ], - [ - -73.455874, - 45.430428 - ], - [ - -73.456394, - 45.430985 - ], - [ - -73.456434, - 45.431024 - ], - [ - -73.457278, - 45.431848 - ], - [ - -73.457465, - 45.432045 - ], - [ - -73.457548, - 45.432133 - ] - ] - }, - "id": 100, - "properties": { - "id": "3102729f-268c-4e96-a67d-b6aa5993b3fb", - "data": { - "gtfs": { - "shape_id": "35_2_R" - }, - "segments": [ - { - "distanceMeters": 837, - "travelTimeSeconds": 135 - }, - { - "distanceMeters": 864, - "travelTimeSeconds": 139 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 464, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 343, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 497, - "travelTimeSeconds": 91 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 536, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 23 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6345, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3971.080358174438, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.22, - "travelTimeWithoutDwellTimesSeconds": 1020, - "operatingTimeWithLayoverTimeSeconds": 1200, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1020, - "operatingSpeedWithLayoverMetersPerSecond": 5.29, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.22 - }, - "mode": "bus", - "name": "Sect. L Brossard", - "color": "#A32638", - "nodes": [ - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "74887516-47d5-4269-9513-84672d18e287", - "2946050b-73ca-45c7-be10-f80ba5b43ab5", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "ab493a3c-1217-4122-93b5-217f7741b2ea", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "2c6638eb-437e-4a41-bb5d-d6093797361d", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", - "d306b992-8d43-4ba8-8460-68d87b486222", - "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", - "88486643-e9da-4936-905d-86d1e3882217", - "c5b32d48-73e8-4193-bbcc-f643b32c6ad7", - "d3ead48f-87a1-4905-af00-10546937b61d", - "c7ecdf81-e322-4f7b-837f-23d0dbe48d4e", - "7086213c-6c6f-4acd-ad80-070f91d1eae3", - "601fc633-4aed-4e9a-b678-52e4dedfe19d", - "dca1f1af-a3cf-4dc0-9b7c-88db3f7a9ff7", - "772e5e9c-3d69-4a70-b583-9525616f4a61", - "ba9dbeb6-b197-4bf3-9ae7-2251eb9f3485" - ], - "stops": [], - "line_id": "0e24625c-d936-4ae1-b0bd-5cb2a1f4b411", - "segments": [ - 0, - 29, - 46, - 49, - 53, - 57, - 65, - 69, - 75, - 81, - 86, - 90, - 98, - 114, - 133, - 139, - 156, - 163, - 170 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 100, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.471801, - 45.47482 - ], - [ - -73.471919, - 45.474907 - ], - [ - -73.472018, - 45.474979 - ], - [ - -73.47234, - 45.475227 - ], - [ - -73.473157, - 45.475808 - ], - [ - -73.473415, - 45.476001 - ], - [ - -73.473844, - 45.476308 - ], - [ - -73.475018, - 45.477149 - ], - [ - -73.475712, - 45.477639 - ], - [ - -73.476119, - 45.477927 - ], - [ - -73.476929, - 45.478485 - ], - [ - -73.477462, - 45.478904 - ], - [ - -73.477667, - 45.479048 - ], - [ - -73.477713, - 45.479021 - ], - [ - -73.477757, - 45.479003 - ], - [ - -73.477866, - 45.478954 - ], - [ - -73.477979, - 45.478918 - ], - [ - -73.478075, - 45.478904 - ], - [ - -73.478146, - 45.478904 - ], - [ - -73.478298, - 45.478904 - ], - [ - -73.478426, - 45.478904 - ], - [ - -73.478918, - 45.478914 - ], - [ - -73.479078, - 45.478918 - ], - [ - -73.479175, - 45.478922 - ], - [ - -73.479295, - 45.478922 - ], - [ - -73.479623, - 45.478936 - ], - [ - -73.479808, - 45.478941 - ], - [ - -73.480089, - 45.478949 - ], - [ - -73.481631, - 45.478977 - ], - [ - -73.482205, - 45.478986 - ], - [ - -73.482348, - 45.478989 - ], - [ - -73.482631, - 45.478995 - ], - [ - -73.482756, - 45.478997 - ], - [ - -73.484917, - 45.479027 - ], - [ - -73.485227, - 45.479031 - ], - [ - -73.485584, - 45.479045 - ], - [ - -73.485771, - 45.479058 - ], - [ - -73.486111, - 45.479058 - ], - [ - -73.486149, - 45.479058 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486526, - 45.47904 - ], - [ - -73.486789, - 45.47904 - ], - [ - -73.487039, - 45.479049 - ], - [ - -73.491329, - 45.479132 - ], - [ - -73.491487, - 45.479136 - ], - [ - -73.491713, - 45.47914 - ], - [ - -73.49213, - 45.479149 - ], - [ - -73.493367, - 45.479162 - ], - [ - -73.495789, - 45.479202 - ], - [ - -73.496137, - 45.479208 - ], - [ - -73.496207, - 45.479208 - ], - [ - -73.496272, - 45.479208 - ], - [ - -73.497101, - 45.479217 - ], - [ - -73.497966, - 45.479231 - ], - [ - -73.498188, - 45.479235 - ], - [ - -73.498413, - 45.479239 - ], - [ - -73.498669, - 45.479235 - ], - [ - -73.498683, - 45.479234 - ], - [ - -73.498818, - 45.47923 - ], - [ - -73.499162, - 45.479257 - ], - [ - -73.49961, - 45.479198 - ], - [ - -73.500019, - 45.479082 - ], - [ - -73.500107, - 45.478998 - ], - [ - -73.500272, - 45.479047 - ], - [ - -73.500354, - 45.479074 - ], - [ - -73.500404, - 45.479087 - ], - [ - -73.500422, - 45.479099 - ], - [ - -73.500588, - 45.479205 - ], - [ - -73.501159, - 45.479818 - ], - [ - -73.501455, - 45.480118 - ], - [ - -73.50163, - 45.480263 - ], - [ - -73.501828, - 45.48048 - ], - [ - -73.502007, - 45.480678 - ], - [ - -73.502676, - 45.481412 - ], - [ - -73.502806, - 45.48156 - ], - [ - -73.503272, - 45.482092 - ], - [ - -73.50345, - 45.482308 - ], - [ - -73.503512, - 45.48238 - ], - [ - -73.503598, - 45.482497 - ], - [ - -73.50345, - 45.482561 - ], - [ - -73.50324, - 45.482654 - ], - [ - -73.503128, - 45.482703 - ], - [ - -73.503016, - 45.482753 - ], - [ - -73.502869, - 45.482816 - ], - [ - -73.502327, - 45.483041 - ], - [ - -73.502207, - 45.483054 - ], - [ - -73.501868, - 45.48304 - ], - [ - -73.501782, - 45.483036 - ], - [ - -73.501783, - 45.482959 - ], - [ - -73.501789, - 45.482654 - ], - [ - -73.501796, - 45.482353 - ], - [ - -73.501797, - 45.482254 - ], - [ - -73.501794, - 45.482164 - ], - [ - -73.501801, - 45.482028 - ], - [ - -73.501807, - 45.481903 - ], - [ - -73.50182, - 45.481637 - ], - [ - -73.501658, - 45.481634 - ], - [ - -73.499752, - 45.481598 - ], - [ - -73.499712, - 45.481597 - ], - [ - -73.498761, - 45.481579 - ], - [ - -73.498134, - 45.481565 - ], - [ - -73.497935, - 45.481564 - ], - [ - -73.497219, - 45.481561 - ], - [ - -73.497004, - 45.48157 - ], - [ - -73.496494, - 45.481781 - ], - [ - -73.496461, - 45.481795 - ], - [ - -73.496343, - 45.481844 - ], - [ - -73.496212, - 45.481898 - ], - [ - -73.496051, - 45.481961 - ], - [ - -73.495949, - 45.482002 - ], - [ - -73.495781, - 45.482065 - ], - [ - -73.495646, - 45.482096 - ], - [ - -73.495536, - 45.482132 - ], - [ - -73.495418, - 45.482168 - ], - [ - -73.49497, - 45.482155 - ], - [ - -73.494838, - 45.48215 - ], - [ - -73.494698, - 45.482146 - ], - [ - -73.493158, - 45.482132 - ], - [ - -73.493, - 45.482114 - ], - [ - -73.492853, - 45.482078 - ], - [ - -73.492741, - 45.482042 - ], - [ - -73.492546, - 45.481956 - ], - [ - -73.492453, - 45.4819 - ], - [ - -73.492355, - 45.481839 - ], - [ - -73.492197, - 45.481727 - ], - [ - -73.492063, - 45.481628 - ], - [ - -73.491478, - 45.481178 - ], - [ - -73.491326, - 45.481039 - ], - [ - -73.491065, - 45.480765 - ], - [ - -73.491016, - 45.480715 - ], - [ - -73.49089, - 45.480751 - ], - [ - -73.490751, - 45.480796 - ], - [ - -73.490511, - 45.480858 - ], - [ - -73.489826, - 45.480989 - ], - [ - -73.489679, - 45.481016 - ], - [ - -73.489517, - 45.481047 - ], - [ - -73.489299, - 45.481083 - ], - [ - -73.48873, - 45.481185 - ], - [ - -73.488719, - 45.481187 - ], - [ - -73.488596, - 45.481209 - ], - [ - -73.488358, - 45.481254 - ], - [ - -73.488145, - 45.481295 - ], - [ - -73.48795, - 45.481331 - ], - [ - -73.487751, - 45.481349 - ], - [ - -73.487396, - 45.481353 - ], - [ - -73.486991, - 45.481335 - ], - [ - -73.486845, - 45.481313 - ], - [ - -73.486702, - 45.481259 - ], - [ - -73.486595, - 45.481214 - ], - [ - -73.486506, - 45.481151 - ], - [ - -73.486352, - 45.480984 - ], - [ - -73.48629, - 45.480791 - ], - [ - -73.486283, - 45.48048 - ], - [ - -73.486282, - 45.480458 - ], - [ - -73.486298, - 45.480129 - ], - [ - -73.486318, - 45.479855 - ], - [ - -73.486329, - 45.479263 - ], - [ - -73.486368, - 45.479174 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486149, - 45.479058 - ], - [ - -73.485771, - 45.479058 - ], - [ - -73.485584, - 45.479045 - ], - [ - -73.485227, - 45.479031 - ], - [ - -73.484917, - 45.479027 - ], - [ - -73.482809, - 45.478997 - ], - [ - -73.482777, - 45.478997 - ], - [ - -73.482756, - 45.478997 - ], - [ - -73.482631, - 45.478995 - ], - [ - -73.482205, - 45.478986 - ], - [ - -73.481631, - 45.478977 - ], - [ - -73.480089, - 45.478949 - ], - [ - -73.479623, - 45.478936 - ], - [ - -73.479295, - 45.478922 - ], - [ - -73.47927, - 45.478922 - ], - [ - -73.479175, - 45.478922 - ], - [ - -73.479078, - 45.478918 - ], - [ - -73.478426, - 45.478904 - ], - [ - -73.478115, - 45.478841 - ], - [ - -73.477983, - 45.47885 - ], - [ - -73.477828, - 45.478837 - ], - [ - -73.477715, - 45.478814 - ], - [ - -73.477616, - 45.478774 - ], - [ - -73.477564, - 45.478751 - ], - [ - -73.477508, - 45.478715 - ], - [ - -73.477033, - 45.478413 - ], - [ - -73.476649, - 45.478132 - ], - [ - -73.47654, - 45.478053 - ], - [ - -73.476251, - 45.477842 - ], - [ - -73.475153, - 45.477059 - ], - [ - -73.474544, - 45.476636 - ], - [ - -73.474345, - 45.476487 - ], - [ - -73.474159, - 45.476348 - ], - [ - -73.4733, - 45.475709 - ], - [ - -73.473152, - 45.475605 - ], - [ - -73.472484, - 45.475128 - ], - [ - -73.472421, - 45.475079 - ], - [ - -73.47218, - 45.47489 - ], - [ - -73.472074, - 45.474808 - ], - [ - -73.471729, - 45.474583 - ], - [ - -73.470368, - 45.473605 - ], - [ - -73.470364, - 45.473602 - ], - [ - -73.470064, - 45.473386 - ], - [ - -73.468607, - 45.472409 - ], - [ - -73.468277, - 45.472099 - ], - [ - -73.4682, - 45.472022 - ], - [ - -73.468135, - 45.47195 - ], - [ - -73.46809, - 45.471883 - ], - [ - -73.468053, - 45.47177 - ], - [ - -73.467979, - 45.471365 - ], - [ - -73.468005, - 45.471249 - ], - [ - -73.468064, - 45.470898 - ], - [ - -73.468089, - 45.470648 - ], - [ - -73.468112, - 45.470407 - ], - [ - -73.468119, - 45.470155 - ], - [ - -73.468115, - 45.470044 - ], - [ - -73.468111, - 45.469894 - ], - [ - -73.468108, - 45.469818 - ], - [ - -73.468107, - 45.469773 - ], - [ - -73.46805, - 45.4693 - ], - [ - -73.467953, - 45.468832 - ], - [ - -73.467932, - 45.468733 - ], - [ - -73.467793, - 45.468274 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466768 - ] - ] - }, - "id": 101, - "properties": { - "id": "9bfb4239-38af-426f-8e0c-f2ccb1521bbd", - "data": { - "gtfs": { - "shape_id": "37_1_A" - }, - "segments": [ - { - "distanceMeters": 230, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 420, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 418, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 119, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 347, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 109 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7210, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 923.8566618585256, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.46, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 4.81, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.46 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "ece1943b-159a-42fa-a0c1-16e06714e25e", - "d73e4ff6-4502-4376-9cf1-5410d307a82f", - "c04702f7-b2cf-440e-a6da-0a84aefc3963", - "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", - "528dcb9e-5a83-46d3-8e03-42692ca57a5a", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", - "6b54424b-6f85-4448-8e7d-a05da4ef5b95", - "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", - "4df7f34c-ec49-4d48-90b3-56f3faffc976", - "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "4f2dd8ac-70e9-487b-b0af-329673c88b03", - "ab2d66e0-27d7-4818-8e33-267927ea3fe2", - "2f1abb54-e47c-4c4c-bf29-58794c82c9d7", - "197613c4-818a-45ed-a120-7c785862199b", - "d0834662-f361-47c8-897d-090ca396cc80", - "c97bf2a0-4e35-4343-a821-fd37344059ce", - "8b87176c-4d30-4e5f-8750-8f2e6ea9737c", - "b4a272ff-ad07-49f4-b3bf-37e38018a4d0", - "a9e9d254-0411-40ff-8540-2c41b97aa285", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "528dcb9e-5a83-46d3-8e03-42692ca57a5a", - "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", - "fe84c986-2907-4842-bde4-72fbe08a0576", - "d73e4ff6-4502-4376-9cf1-5410d307a82f", - "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", - "85f19be2-1f67-4673-b3b3-52d06ed31ae3", - "51e1600d-418e-4477-9b26-9e5507d72a03", - "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "131616ed-8c78-458b-a65e-78f1aeac1fc7" - ], - "stops": [], - "line_id": "d6887351-1f8d-468a-bae7-5d39771799c8", - "segments": [ - 0, - 6, - 8, - 21, - 30, - 37, - 45, - 49, - 54, - 73, - 82, - 87, - 94, - 102, - 106, - 116, - 123, - 129, - 139, - 153, - 158, - 167, - 175, - 187, - 193, - 197, - 202, - 213, - 221 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 101, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469004, - 45.466768 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466379, - 45.465757 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467476, - 45.467991 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467548, - 45.468225 - ], - [ - -73.467698, - 45.468792 - ], - [ - -73.467776, - 45.469183 - ], - [ - -73.46782, - 45.469453 - ], - [ - -73.467865, - 45.469989 - ], - [ - -73.467864, - 45.470057 - ], - [ - -73.467862, - 45.470168 - ], - [ - -73.46786, - 45.470362 - ], - [ - -73.467821, - 45.470781 - ], - [ - -73.467786, - 45.471019 - ], - [ - -73.467768, - 45.4711 - ], - [ - -73.467742, - 45.471226 - ], - [ - -73.467655, - 45.471563 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.468499, - 45.472486 - ], - [ - -73.469236, - 45.473 - ], - [ - -73.46966, - 45.473295 - ], - [ - -73.469926, - 45.473481 - ], - [ - -73.471608, - 45.474678 - ], - [ - -73.471801, - 45.47482 - ] - ] - }, - "id": 102, - "properties": { - "id": "6428f5a2-50a3-486c-985d-e5147762e0de", - "data": { - "gtfs": { - "shape_id": "37_1_R" - }, - "segments": [ - { - "distanceMeters": 1274, - "travelTimeSeconds": 353 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 67 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 1512, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 923.8566618585256, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 3.6, - "travelTimeWithoutDwellTimesSeconds": 420, - "operatingTimeWithLayoverTimeSeconds": 600, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 420, - "operatingSpeedWithLayoverMetersPerSecond": 2.52, - "averageSpeedWithoutDwellTimesMetersPerSecond": 3.6 - }, - "mode": "bus", - "name": "boul. Simard", - "color": "#A32638", - "nodes": [ - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "1345672a-9148-439f-9a52-b8a216612929", - "ece1943b-159a-42fa-a0c1-16e06714e25e" - ], - "stops": [], - "line_id": "d6887351-1f8d-468a-bae7-5d39771799c8", - "segments": [ - 0, - 45 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 102, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469004, - 45.466768 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466379, - 45.465758 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467476, - 45.467991 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467548, - 45.468225 - ], - [ - -73.467698, - 45.468792 - ], - [ - -73.467776, - 45.469183 - ], - [ - -73.46782, - 45.469453 - ], - [ - -73.467865, - 45.469989 - ], - [ - -73.467864, - 45.470057 - ], - [ - -73.467862, - 45.470168 - ], - [ - -73.46786, - 45.470362 - ], - [ - -73.467821, - 45.470781 - ], - [ - -73.467786, - 45.471019 - ], - [ - -73.467768, - 45.4711 - ], - [ - -73.467742, - 45.471226 - ], - [ - -73.467655, - 45.471563 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.468499, - 45.472486 - ], - [ - -73.469236, - 45.473 - ], - [ - -73.469643, - 45.473283 - ], - [ - -73.469926, - 45.473481 - ], - [ - -73.471608, - 45.474678 - ], - [ - -73.471781, - 45.474806 - ], - [ - -73.471919, - 45.474907 - ], - [ - -73.472018, - 45.474979 - ], - [ - -73.47234, - 45.475227 - ], - [ - -73.473157, - 45.475808 - ], - [ - -73.473415, - 45.476001 - ], - [ - -73.473824, - 45.476294 - ], - [ - -73.475018, - 45.477149 - ], - [ - -73.475701, - 45.477632 - ], - [ - -73.476119, - 45.477927 - ], - [ - -73.476929, - 45.478485 - ], - [ - -73.477462, - 45.478904 - ], - [ - -73.477667, - 45.479048 - ], - [ - -73.477713, - 45.479021 - ], - [ - -73.477757, - 45.479003 - ], - [ - -73.477866, - 45.478954 - ], - [ - -73.477979, - 45.478918 - ], - [ - -73.478075, - 45.478904 - ], - [ - -73.478146, - 45.478904 - ], - [ - -73.478298, - 45.478904 - ], - [ - -73.478426, - 45.478904 - ], - [ - -73.478903, - 45.478914 - ], - [ - -73.479078, - 45.478918 - ], - [ - -73.479175, - 45.478922 - ], - [ - -73.479295, - 45.478922 - ], - [ - -73.479623, - 45.478936 - ], - [ - -73.479808, - 45.478941 - ], - [ - -73.480089, - 45.478949 - ], - [ - -73.481631, - 45.478977 - ], - [ - -73.482205, - 45.478986 - ], - [ - -73.482334, - 45.478989 - ], - [ - -73.482631, - 45.478995 - ], - [ - -73.482756, - 45.478997 - ], - [ - -73.484917, - 45.479027 - ], - [ - -73.485227, - 45.479031 - ], - [ - -73.485584, - 45.479045 - ], - [ - -73.485771, - 45.479058 - ], - [ - -73.486097, - 45.479058 - ], - [ - -73.486149, - 45.479058 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486329, - 45.479263 - ], - [ - -73.486318, - 45.479855 - ], - [ - -73.486298, - 45.480129 - ], - [ - -73.486286, - 45.480369 - ], - [ - -73.486286, - 45.480386 - ], - [ - -73.486282, - 45.480458 - ], - [ - -73.48629, - 45.480791 - ], - [ - -73.486352, - 45.480984 - ], - [ - -73.486506, - 45.481151 - ], - [ - -73.486595, - 45.481214 - ], - [ - -73.486702, - 45.481259 - ], - [ - -73.486845, - 45.481313 - ], - [ - -73.486991, - 45.481335 - ], - [ - -73.487396, - 45.481353 - ], - [ - -73.487751, - 45.481349 - ], - [ - -73.48795, - 45.481331 - ], - [ - -73.488145, - 45.481295 - ], - [ - -73.488358, - 45.481254 - ], - [ - -73.48843, - 45.481241 - ], - [ - -73.488596, - 45.481209 - ], - [ - -73.489299, - 45.481083 - ], - [ - -73.489517, - 45.481047 - ], - [ - -73.489679, - 45.481016 - ], - [ - -73.489826, - 45.480989 - ], - [ - -73.490511, - 45.480858 - ], - [ - -73.490644, - 45.480824 - ], - [ - -73.490751, - 45.480796 - ], - [ - -73.49089, - 45.480751 - ], - [ - -73.491016, - 45.480715 - ], - [ - -73.491326, - 45.481039 - ], - [ - -73.491478, - 45.481178 - ], - [ - -73.491846, - 45.481461 - ], - [ - -73.492063, - 45.481628 - ], - [ - -73.492197, - 45.481727 - ], - [ - -73.492355, - 45.481839 - ], - [ - -73.492441, - 45.481892 - ], - [ - -73.492546, - 45.481956 - ], - [ - -73.492741, - 45.482042 - ], - [ - -73.492853, - 45.482078 - ], - [ - -73.493, - 45.482114 - ], - [ - -73.493158, - 45.482132 - ], - [ - -73.49459, - 45.482145 - ], - [ - -73.494698, - 45.482146 - ], - [ - -73.49497, - 45.482155 - ], - [ - -73.495418, - 45.482168 - ], - [ - -73.495536, - 45.482132 - ], - [ - -73.495646, - 45.482096 - ], - [ - -73.495781, - 45.482065 - ], - [ - -73.495949, - 45.482002 - ], - [ - -73.496051, - 45.481961 - ], - [ - -73.496212, - 45.481898 - ], - [ - -73.496248, - 45.481883 - ], - [ - -73.496343, - 45.481844 - ], - [ - -73.496494, - 45.481781 - ], - [ - -73.497004, - 45.48157 - ], - [ - -73.497219, - 45.481561 - ], - [ - -73.498134, - 45.481565 - ], - [ - -73.498239, - 45.481568 - ], - [ - -73.498761, - 45.481579 - ], - [ - -73.499712, - 45.481597 - ], - [ - -73.499752, - 45.481598 - ], - [ - -73.501593, - 45.481633 - ], - [ - -73.50182, - 45.481637 - ], - [ - -73.501809, - 45.481864 - ], - [ - -73.501807, - 45.481903 - ], - [ - -73.501794, - 45.482164 - ], - [ - -73.501797, - 45.482254 - ], - [ - -73.501796, - 45.482353 - ], - [ - -73.501789, - 45.482654 - ], - [ - -73.501786, - 45.482807 - ], - [ - -73.501782, - 45.483036 - ], - [ - -73.502069, - 45.483049 - ], - [ - -73.502207, - 45.483054 - ], - [ - -73.502327, - 45.483041 - ], - [ - -73.502869, - 45.482816 - ], - [ - -73.503016, - 45.482753 - ], - [ - -73.50324, - 45.482654 - ], - [ - -73.50344, - 45.482566 - ], - [ - -73.503598, - 45.482497 - ], - [ - -73.503512, - 45.48238 - ], - [ - -73.50345, - 45.482308 - ], - [ - -73.503412, - 45.482262 - ], - [ - -73.503272, - 45.482092 - ], - [ - -73.502806, - 45.48156 - ], - [ - -73.502676, - 45.481412 - ], - [ - -73.501947, - 45.480611 - ], - [ - -73.501828, - 45.48048 - ], - [ - -73.50163, - 45.480263 - ], - [ - -73.501562, - 45.480174 - ], - [ - -73.501309, - 45.479775 - ], - [ - -73.501238, - 45.479689 - ], - [ - -73.501074, - 45.479488 - ], - [ - -73.500829, - 45.479284 - ], - [ - -73.50074, - 45.479167 - ], - [ - -73.500635, - 45.479076 - ], - [ - -73.500662, - 45.478997 - ], - [ - -73.500703, - 45.478888 - ], - [ - -73.500708, - 45.478848 - ], - [ - -73.500618, - 45.478724 - ], - [ - -73.500601, - 45.478716 - ], - [ - -73.500465, - 45.47866 - ], - [ - -73.500435, - 45.478659 - ], - [ - -73.500337, - 45.478661 - ], - [ - -73.50019, - 45.478724 - ], - [ - -73.500175, - 45.478743 - ], - [ - -73.500117, - 45.478833 - ], - [ - -73.500062, - 45.478934 - ], - [ - -73.499809, - 45.479021 - ], - [ - -73.4995, - 45.479103 - ], - [ - -73.498818, - 45.47923 - ], - [ - -73.498683, - 45.479234 - ], - [ - -73.498669, - 45.479235 - ], - [ - -73.498466, - 45.479238 - ], - [ - -73.498413, - 45.479239 - ], - [ - -73.498188, - 45.479235 - ], - [ - -73.497101, - 45.479217 - ], - [ - -73.496417, - 45.479209 - ], - [ - -73.496272, - 45.479208 - ], - [ - -73.496207, - 45.479208 - ], - [ - -73.496137, - 45.479208 - ], - [ - -73.493367, - 45.479162 - ], - [ - -73.49213, - 45.479149 - ], - [ - -73.491859, - 45.479143 - ], - [ - -73.491713, - 45.47914 - ], - [ - -73.491329, - 45.479132 - ], - [ - -73.487039, - 45.479049 - ], - [ - -73.486789, - 45.47904 - ], - [ - -73.486635, - 45.47904 - ] - ] - }, - "id": 103, - "properties": { - "id": "31d5f106-c324-468d-8264-4a4be2315a4c", - "data": { - "gtfs": { - "shape_id": "37_2_R" - }, - "segments": [ - { - "distanceMeters": 1272, - "travelTimeSeconds": 353 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 435, - "travelTimeSeconds": 129 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 356, - "travelTimeSeconds": 106 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 121 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6292, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 1920.0019683199766, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 4.37, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 3.88, - "averageSpeedWithoutDwellTimesMetersPerSecond": 4.37 - }, - "mode": "bus", - "name": "boul. Simard", - "color": "#A32638", - "nodes": [ - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "1345672a-9148-439f-9a52-b8a216612929", - "ece1943b-159a-42fa-a0c1-16e06714e25e", - "d73e4ff6-4502-4376-9cf1-5410d307a82f", - "c04702f7-b2cf-440e-a6da-0a84aefc3963", - "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", - "528dcb9e-5a83-46d3-8e03-42692ca57a5a", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "a9e9d254-0411-40ff-8540-2c41b97aa285", - "b4a272ff-ad07-49f4-b3bf-37e38018a4d0", - "8b87176c-4d30-4e5f-8750-8f2e6ea9737c", - "c97bf2a0-4e35-4343-a821-fd37344059ce", - "d0834662-f361-47c8-897d-090ca396cc80", - "197613c4-818a-45ed-a120-7c785862199b", - "2f1abb54-e47c-4c4c-bf29-58794c82c9d7", - "ab2d66e0-27d7-4818-8e33-267927ea3fe2", - "4f2dd8ac-70e9-487b-b0af-329673c88b03", - "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "4df7f34c-ec49-4d48-90b3-56f3faffc976", - "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", - "6b54424b-6f85-4448-8e7d-a05da4ef5b95", - "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", - "dfda995e-8686-4f89-a9b1-4109795a27c3" - ], - "stops": [], - "line_id": "d6887351-1f8d-468a-bae7-5d39771799c8", - "segments": [ - 0, - 45, - 48, - 54, - 56, - 69, - 78, - 85, - 91, - 106, - 113, - 123, - 129, - 139, - 145, - 149, - 157, - 165, - 173, - 200, - 204, - 210 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 103, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.486635, - 45.47904 - ], - [ - -73.486526, - 45.47904 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486149, - 45.479058 - ], - [ - -73.485771, - 45.479058 - ], - [ - -73.485584, - 45.479045 - ], - [ - -73.485227, - 45.479031 - ], - [ - -73.484917, - 45.479027 - ], - [ - -73.482794, - 45.478997 - ], - [ - -73.482756, - 45.478997 - ], - [ - -73.482631, - 45.478995 - ], - [ - -73.482205, - 45.478986 - ], - [ - -73.481631, - 45.478977 - ], - [ - -73.480089, - 45.478949 - ], - [ - -73.479623, - 45.478936 - ], - [ - -73.479295, - 45.478922 - ], - [ - -73.479285, - 45.478922 - ], - [ - -73.479175, - 45.478922 - ], - [ - -73.479078, - 45.478918 - ], - [ - -73.478426, - 45.478904 - ], - [ - -73.478115, - 45.478841 - ], - [ - -73.477983, - 45.47885 - ], - [ - -73.477828, - 45.478837 - ], - [ - -73.477715, - 45.478814 - ], - [ - -73.477616, - 45.478774 - ], - [ - -73.477564, - 45.478751 - ], - [ - -73.477508, - 45.478715 - ], - [ - -73.477033, - 45.478413 - ], - [ - -73.476658, - 45.478139 - ], - [ - -73.47654, - 45.478053 - ], - [ - -73.476251, - 45.477842 - ], - [ - -73.475153, - 45.477059 - ], - [ - -73.474544, - 45.476636 - ], - [ - -73.474345, - 45.476487 - ], - [ - -73.474166, - 45.476354 - ], - [ - -73.4733, - 45.475709 - ], - [ - -73.473152, - 45.475605 - ], - [ - -73.472484, - 45.475128 - ], - [ - -73.472427, - 45.475083 - ], - [ - -73.472426, - 45.475082 - ], - [ - -73.47218, - 45.47489 - ], - [ - -73.472074, - 45.474808 - ], - [ - -73.471729, - 45.474583 - ], - [ - -73.470369, - 45.473605 - ], - [ - -73.470064, - 45.473386 - ], - [ - -73.468607, - 45.472409 - ], - [ - -73.468277, - 45.472099 - ], - [ - -73.4682, - 45.472022 - ], - [ - -73.468135, - 45.47195 - ], - [ - -73.46809, - 45.471883 - ], - [ - -73.468053, - 45.47177 - ], - [ - -73.467979, - 45.471365 - ], - [ - -73.468005, - 45.471249 - ], - [ - -73.468064, - 45.470898 - ], - [ - -73.468088, - 45.470651 - ], - [ - -73.468112, - 45.470407 - ], - [ - -73.468119, - 45.470155 - ], - [ - -73.468115, - 45.470044 - ], - [ - -73.468111, - 45.469894 - ], - [ - -73.468108, - 45.469818 - ], - [ - -73.468107, - 45.469773 - ], - [ - -73.46805, - 45.4693 - ], - [ - -73.467953, - 45.468834 - ], - [ - -73.467932, - 45.468733 - ], - [ - -73.467793, - 45.468274 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466768 - ] - ] - }, - "id": 104, - "properties": { - "id": "8f6bd7c5-b3c5-43a8-8ce2-4232307680f8", - "data": { - "gtfs": { - "shape_id": "37_2_A" - }, - "segments": [ - { - "distanceMeters": 300, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 141 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 128 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 2478, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 1920.0019683199762, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 4.59, - "travelTimeWithoutDwellTimesSeconds": 540, - "operatingTimeWithLayoverTimeSeconds": 720, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 540, - "operatingSpeedWithLayoverMetersPerSecond": 3.44, - "averageSpeedWithoutDwellTimesMetersPerSecond": 4.59 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "528dcb9e-5a83-46d3-8e03-42692ca57a5a", - "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", - "fe84c986-2907-4842-bde4-72fbe08a0576", - "d73e4ff6-4502-4376-9cf1-5410d307a82f", - "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", - "85f19be2-1f67-4673-b3b3-52d06ed31ae3", - "51e1600d-418e-4477-9b26-9e5507d72a03", - "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "131616ed-8c78-458b-a65e-78f1aeac1fc7" - ], - "stops": [], - "line_id": "d6887351-1f8d-468a-bae7-5d39771799c8", - "segments": [ - 0, - 9, - 17, - 29, - 35, - 39, - 44, - 55, - 63 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 104, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469004, - 45.466768 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.466949, - 45.466907 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.46363, - 45.4683 - ], - [ - -73.463472, - 45.468395 - ], - [ - -73.463397, - 45.468431 - ], - [ - -73.463306, - 45.468449 - ], - [ - -73.463219, - 45.468458 - ], - [ - -73.463124, - 45.468449 - ], - [ - -73.463037, - 45.468413 - ], - [ - -73.462702, - 45.468201 - ], - [ - -73.462471, - 45.468057 - ], - [ - -73.4624, - 45.46801 - ], - [ - -73.462195, - 45.467872 - ], - [ - -73.461894, - 45.467656 - ], - [ - -73.461788, - 45.46758 - ], - [ - -73.46133, - 45.467251 - ], - [ - -73.461109, - 45.467094 - ], - [ - -73.460905, - 45.466945 - ], - [ - -73.460722, - 45.466814 - ], - [ - -73.460629, - 45.466751 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457079, - 45.464307 - ], - [ - -73.45655, - 45.463924 - ], - [ - -73.455675, - 45.463282 - ], - [ - -73.454797, - 45.462637 - ], - [ - -73.454278, - 45.462276 - ], - [ - -73.453602, - 45.461785 - ], - [ - -73.453448, - 45.461674 - ], - [ - -73.453385, - 45.461629 - ], - [ - -73.45305, - 45.461381 - ], - [ - -73.45275, - 45.461169 - ], - [ - -73.452262, - 45.460814 - ], - [ - -73.449839, - 45.459072 - ], - [ - -73.449359, - 45.458774 - ], - [ - -73.448479, - 45.458383 - ], - [ - -73.448024, - 45.45813 - ], - [ - -73.447729, - 45.457941 - ], - [ - -73.447401, - 45.457716 - ], - [ - -73.447206, - 45.457532 - ], - [ - -73.447146, - 45.457473 - ], - [ - -73.447054, - 45.457381 - ], - [ - -73.446923, - 45.457262 - ], - [ - -73.446661, - 45.457072 - ], - [ - -73.44657, - 45.457027 - ], - [ - -73.446482, - 45.456996 - ], - [ - -73.446388, - 45.45696 - ], - [ - -73.446222, - 45.456915 - ], - [ - -73.445958, - 45.456735 - ], - [ - -73.445693, - 45.456555 - ], - [ - -73.445746, - 45.456494 - ], - [ - -73.445865, - 45.456318 - ], - [ - -73.445906, - 45.456257 - ], - [ - -73.446041, - 45.456058 - ], - [ - -73.446043, - 45.456054 - ], - [ - -73.446111, - 45.455953 - ], - [ - -73.446181, - 45.455847 - ], - [ - -73.446343, - 45.455601 - ], - [ - -73.446437, - 45.455437 - ], - [ - -73.446586, - 45.455194 - ], - [ - -73.446879, - 45.454751 - ], - [ - -73.447023, - 45.454568 - ], - [ - -73.447165, - 45.454332 - ], - [ - -73.447525, - 45.453748 - ], - [ - -73.44757, - 45.453671 - ], - [ - -73.447695, - 45.453468 - ], - [ - -73.44774, - 45.453378 - ], - [ - -73.447769, - 45.4533 - ], - [ - -73.447791, - 45.453214 - ], - [ - -73.447801, - 45.453131 - ], - [ - -73.447811, - 45.453054 - ], - [ - -73.447804, - 45.452962 - ], - [ - -73.447788, - 45.452881 - ], - [ - -73.447741, - 45.452726 - ], - [ - -73.447658, - 45.45258 - ], - [ - -73.447495, - 45.452391 - ], - [ - -73.44669, - 45.451742 - ], - [ - -73.446544, - 45.451625 - ], - [ - -73.446361, - 45.451477 - ], - [ - -73.446255, - 45.45139 - ], - [ - -73.44517, - 45.4505 - ], - [ - -73.445063, - 45.450414 - ], - [ - -73.444716, - 45.450137 - ], - [ - -73.444172, - 45.449695 - ], - [ - -73.444019, - 45.449571 - ], - [ - -73.443592, - 45.449224 - ], - [ - -73.442952, - 45.448701 - ], - [ - -73.442867, - 45.448632 - ], - [ - -73.442823, - 45.448596 - ], - [ - -73.442719, - 45.448512 - ], - [ - -73.442307, - 45.448179 - ], - [ - -73.442297, - 45.448171 - ], - [ - -73.442221, - 45.44811 - ], - [ - -73.441797, - 45.447793 - ], - [ - -73.441083, - 45.447203 - ], - [ - -73.440353, - 45.446619 - ], - [ - -73.440227, - 45.446519 - ], - [ - -73.440193, - 45.446491 - ], - [ - -73.439095, - 45.445641 - ], - [ - -73.438366, - 45.445057 - ], - [ - -73.438227, - 45.444954 - ], - [ - -73.438338, - 45.444864 - ], - [ - -73.438657, - 45.444631 - ] - ] - }, - "id": 105, - "properties": { - "id": "4e55cd26-a98d-4667-b55c-053578f2fa9f", - "data": { - "gtfs": { - "shape_id": "39_1_R" - }, - "segments": [ - { - "distanceMeters": 2897, - "travelTimeSeconds": 500 - }, - { - "distanceMeters": 570, - "travelTimeSeconds": 98 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 52 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 4518, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3415.644677569863, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.79, - "travelTimeWithoutDwellTimesSeconds": 780, - "operatingTimeWithLayoverTimeSeconds": 960, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 780, - "operatingSpeedWithLayoverMetersPerSecond": 4.71, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.79 - }, - "mode": "bus", - "name": "Quartier DIX30", - "color": "#A32638", - "nodes": [ - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "94c39e43-404d-41dd-8452-81a760a980e9", - "23bba49e-4054-4c02-89b3-a6043c3d4d67", - "bffdb17e-eb32-4d5e-9070-23ef35e6d825", - "52770c2f-36d3-4ae3-81c7-657d2436c44e", - "bc708643-7ab2-41eb-a233-30eac22a0a3d", - "9a91df5e-7976-4b04-a1ed-26fb34f4f58f" - ], - "stops": [], - "line_id": "d085df2b-e036-42e3-a4ef-9924b3d41c12", - "segments": [ - 0, - 94, - 119, - 126, - 129, - 138 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 105, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.438657, - 45.444631 - ], - [ - -73.438851, - 45.444488 - ], - [ - -73.439723, - 45.443742 - ], - [ - -73.439844, - 45.443642 - ], - [ - -73.439975, - 45.443534 - ], - [ - -73.440539, - 45.443068 - ], - [ - -73.441274, - 45.442431 - ], - [ - -73.441943, - 45.441851 - ], - [ - -73.442064, - 45.44172 - ], - [ - -73.442193, - 45.441589 - ], - [ - -73.442303, - 45.441474 - ], - [ - -73.442523, - 45.44124 - ], - [ - -73.442854, - 45.440852 - ], - [ - -73.443162, - 45.440437 - ], - [ - -73.443514, - 45.439932 - ], - [ - -73.443912, - 45.439328 - ], - [ - -73.444093, - 45.439042 - ], - [ - -73.444175, - 45.438929 - ], - [ - -73.443987, - 45.438877 - ], - [ - -73.443881, - 45.43883 - ], - [ - -73.443802, - 45.43881 - ], - [ - -73.443695, - 45.438781 - ], - [ - -73.443559, - 45.438718 - ], - [ - -73.44351, - 45.438696 - ], - [ - -73.443361, - 45.438611 - ], - [ - -73.443201, - 45.438496 - ], - [ - -73.443078, - 45.438408 - ], - [ - -73.443034, - 45.438377 - ], - [ - -73.442658, - 45.438118 - ], - [ - -73.442476, - 45.438049 - ], - [ - -73.442242, - 45.438054 - ], - [ - -73.442128, - 45.438081 - ], - [ - -73.441977, - 45.438145 - ], - [ - -73.44184, - 45.438241 - ], - [ - -73.441559, - 45.438446 - ], - [ - -73.440651, - 45.439108 - ], - [ - -73.44046, - 45.439249 - ], - [ - -73.439875, - 45.439682 - ], - [ - -73.439709, - 45.439781 - ], - [ - -73.439595, - 45.439843 - ], - [ - -73.438695, - 45.440523 - ], - [ - -73.438546, - 45.440636 - ], - [ - -73.437671, - 45.441298 - ], - [ - -73.437352, - 45.441524 - ], - [ - -73.437177, - 45.441649 - ], - [ - -73.437052, - 45.441737 - ], - [ - -73.436237, - 45.442325 - ], - [ - -73.435959, - 45.442526 - ], - [ - -73.435812, - 45.442662 - ], - [ - -73.435748, - 45.442792 - ], - [ - -73.43573, - 45.442883 - ], - [ - -73.435741, - 45.443026 - ], - [ - -73.43579, - 45.443164 - ], - [ - -73.435894, - 45.4433 - ], - [ - -73.4359, - 45.443306 - ], - [ - -73.436036, - 45.443456 - ], - [ - -73.436379, - 45.443712 - ], - [ - -73.436575, - 45.443858 - ], - [ - -73.436661, - 45.443921 - ], - [ - -73.436662, - 45.443922 - ], - [ - -73.437463, - 45.444543 - ], - [ - -73.437835, - 45.444824 - ], - [ - -73.437838, - 45.444826 - ], - [ - -73.437964, - 45.444933 - ], - [ - -73.438029, - 45.444985 - ], - [ - -73.438094, - 45.445037 - ], - [ - -73.438233, - 45.445143 - ], - [ - -73.438783, - 45.445547 - ], - [ - -73.439565, - 45.446129 - ], - [ - -73.439739, - 45.446268 - ], - [ - -73.439937, - 45.446427 - ], - [ - -73.440135, - 45.446587 - ], - [ - -73.440935, - 45.447233 - ], - [ - -73.441223, - 45.447465 - ], - [ - -73.4421, - 45.448181 - ], - [ - -73.442609, - 45.448595 - ], - [ - -73.442709, - 45.448676 - ], - [ - -73.443174, - 45.449054 - ], - [ - -73.443314, - 45.449167 - ], - [ - -73.443912, - 45.449652 - ], - [ - -73.444945, - 45.45049 - ], - [ - -73.445035, - 45.450563 - ], - [ - -73.446301, - 45.451587 - ], - [ - -73.446449, - 45.451707 - ], - [ - -73.446907, - 45.452078 - ], - [ - -73.447367, - 45.452454 - ], - [ - -73.447546, - 45.452649 - ], - [ - -73.447632, - 45.452802 - ], - [ - -73.447676, - 45.452946 - ], - [ - -73.447686, - 45.453104 - ], - [ - -73.447657, - 45.45327 - ], - [ - -73.44759, - 45.453435 - ], - [ - -73.447532, - 45.453533 - ], - [ - -73.447462, - 45.453653 - ], - [ - -73.447183, - 45.454118 - ], - [ - -73.446921, - 45.454564 - ], - [ - -73.446879, - 45.454751 - ], - [ - -73.446586, - 45.455194 - ], - [ - -73.446437, - 45.455437 - ], - [ - -73.446343, - 45.455601 - ], - [ - -73.446181, - 45.455847 - ], - [ - -73.446111, - 45.455953 - ], - [ - -73.446043, - 45.456054 - ], - [ - -73.446041, - 45.456058 - ], - [ - -73.445746, - 45.456494 - ], - [ - -73.445693, - 45.456555 - ], - [ - -73.445605, - 45.456635 - ], - [ - -73.445698, - 45.456697 - ], - [ - -73.445878, - 45.456816 - ], - [ - -73.445952, - 45.456865 - ], - [ - -73.446142, - 45.456982 - ], - [ - -73.446227, - 45.457004 - ], - [ - -73.446332, - 45.457032 - ], - [ - -73.446489, - 45.457095 - ], - [ - -73.446596, - 45.457158 - ], - [ - -73.446702, - 45.457243 - ], - [ - -73.446812, - 45.457324 - ], - [ - -73.446913, - 45.457357 - ], - [ - -73.446965, - 45.457368 - ], - [ - -73.447054, - 45.457381 - ], - [ - -73.447226, - 45.457406 - ], - [ - -73.447335, - 45.457449 - ], - [ - -73.447855, - 45.457782 - ], - [ - -73.448552, - 45.458228 - ], - [ - -73.448934, - 45.458388 - ], - [ - -73.449458, - 45.458593 - ], - [ - -73.449707, - 45.458708 - ], - [ - -73.450153, - 45.459037 - ], - [ - -73.451481, - 45.460003 - ], - [ - -73.452547, - 45.46077 - ], - [ - -73.454622, - 45.462265 - ], - [ - -73.454692, - 45.462368 - ], - [ - -73.454988, - 45.462608 - ], - [ - -73.455597, - 45.463097 - ], - [ - -73.456345, - 45.463585 - ], - [ - -73.45668, - 45.463751 - ], - [ - -73.457165, - 45.463986 - ], - [ - -73.45779, - 45.464251 - ], - [ - -73.457936, - 45.464285 - ], - [ - -73.458332, - 45.464415 - ], - [ - -73.458709, - 45.464519 - ], - [ - -73.459184, - 45.464658 - ], - [ - -73.459848, - 45.464797 - ], - [ - -73.460341, - 45.46487 - ], - [ - -73.460876, - 45.464928 - ], - [ - -73.461292, - 45.464968 - ], - [ - -73.461888, - 45.465033 - ], - [ - -73.462599, - 45.465146 - ], - [ - -73.463202, - 45.465285 - ], - [ - -73.463734, - 45.465422 - ], - [ - -73.464137, - 45.465531 - ], - [ - -73.464519, - 45.465639 - ], - [ - -73.464829, - 45.465721 - ], - [ - -73.465021, - 45.465762 - ], - [ - -73.465202, - 45.465781 - ], - [ - -73.465352, - 45.4658 - ], - [ - -73.465498, - 45.465796 - ], - [ - -73.465647, - 45.465796 - ], - [ - -73.465791, - 45.465789 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466768 - ] - ] - }, - "id": 106, - "properties": { - "id": "aa1878dd-86e5-4efd-8c23-5436cd8bd98d", - "data": { - "gtfs": { - "shape_id": "39_1_A" - }, - "segments": [ - { - "distanceMeters": 144, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 544, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 2723, - "travelTimeSeconds": 452 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5956, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3415.644677569863, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.84, - "travelTimeWithoutDwellTimesSeconds": 1020, - "operatingTimeWithLayoverTimeSeconds": 1200, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1020, - "operatingSpeedWithLayoverMetersPerSecond": 4.96, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.84 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "9a91df5e-7976-4b04-a1ed-26fb34f4f58f", - "936850f5-3268-43bc-97bf-4daf0894fdc7", - "00c8e0cb-91d0-48ff-97f2-5154a17a68bc", - "d3ead48f-87a1-4905-af00-10546937b61d", - "fb801cfe-4d06-4f1b-8a43-460434286646", - "c1bf220e-ad95-40e3-900b-3dda32780f07", - "fb79a3c6-17e7-4bc7-88f4-d17bcc5467ca", - "1336b6ed-25ac-4ba0-b4d2-c273e4f51d74", - "6a7293d7-c2a9-4a56-ac00-3470ede84ecb", - "9bb9e4f0-3571-429e-bd1b-989f4196b247", - "708749bc-6754-4d22-849f-c5632030ae08", - "65ac05d1-7282-4065-a1b1-3364a3426c7e", - "55fda563-44c0-4720-b1a4-2ef0e89eddae", - "131616ed-8c78-458b-a65e-78f1aeac1fc7" - ], - "stops": [], - "line_id": "d085df2b-e036-42e3-a4ef-9924b3d41c12", - "segments": [ - 0, - 3, - 6, - 25, - 36, - 40, - 43, - 56, - 61, - 69, - 77, - 82, - 92 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 106, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469043, - 45.46624 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469327, - 45.468092 - ], - [ - -73.469492, - 45.4681 - ], - [ - -73.470299, - 45.468145 - ], - [ - -73.470478, - 45.468153 - ], - [ - -73.471067, - 45.468182 - ], - [ - -73.471238, - 45.46819 - ], - [ - -73.471526, - 45.468208 - ], - [ - -73.472194, - 45.468244 - ], - [ - -73.472434, - 45.468255 - ], - [ - -73.472597, - 45.468262 - ], - [ - -73.472728, - 45.468276 - ], - [ - -73.472834, - 45.468294 - ], - [ - -73.472877, - 45.468307 - ], - [ - -73.473025, - 45.468348 - ], - [ - -73.473214, - 45.468424 - ], - [ - -73.473673, - 45.468604 - ], - [ - -73.473905, - 45.468649 - ], - [ - -73.474077, - 45.468676 - ], - [ - -73.474259, - 45.46869 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474544, - 45.468492 - ], - [ - -73.474545, - 45.468488 - ], - [ - -73.474528, - 45.468236 - ], - [ - -73.474508, - 45.467936 - ], - [ - -73.474508, - 45.467294 - ], - [ - -73.474542, - 45.4665 - ], - [ - -73.474546, - 45.466404 - ], - [ - -73.474554, - 45.466199 - ], - [ - -73.474621, - 45.465194 - ], - [ - -73.474664, - 45.464506 - ], - [ - -73.474669, - 45.464397 - ], - [ - -73.474734, - 45.464067 - ], - [ - -73.474884, - 45.463697 - ], - [ - -73.475002, - 45.463492 - ], - [ - -73.47522, - 45.463212 - ], - [ - -73.475408, - 45.463039 - ], - [ - -73.47556, - 45.462909 - ], - [ - -73.475821, - 45.462711 - ], - [ - -73.476105, - 45.462495 - ], - [ - -73.476441, - 45.462258 - ], - [ - -73.476557, - 45.462176 - ], - [ - -73.477249, - 45.461685 - ], - [ - -73.47821, - 45.460959 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.47855, - 45.461011 - ], - [ - -73.478678, - 45.461105 - ], - [ - -73.478983, - 45.461465 - ], - [ - -73.479274, - 45.461807 - ], - [ - -73.479712, - 45.46233 - ], - [ - -73.480306, - 45.46304 - ], - [ - -73.480932, - 45.463792 - ], - [ - -73.481363, - 45.464307 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.481982, - 45.464183 - ], - [ - -73.482309, - 45.464098 - ], - [ - -73.48257, - 45.464048 - ], - [ - -73.482853, - 45.464053 - ], - [ - -73.484342, - 45.46408 - ], - [ - -73.484494, - 45.464076 - ], - [ - -73.484669, - 45.464067 - ], - [ - -73.484817, - 45.464035 - ], - [ - -73.484961, - 45.463999 - ], - [ - -73.485098, - 45.46395 - ], - [ - -73.485277, - 45.463878 - ], - [ - -73.485826, - 45.463612 - ], - [ - -73.485896, - 45.463576 - ], - [ - -73.485986, - 45.463539 - ], - [ - -73.486089, - 45.463495 - ], - [ - -73.486243, - 45.463455 - ], - [ - -73.486321, - 45.463433 - ], - [ - -73.486489, - 45.463401 - ], - [ - -73.486606, - 45.463401 - ], - [ - -73.487042, - 45.463406 - ], - [ - -73.487283, - 45.463388 - ], - [ - -73.487412, - 45.463379 - ], - [ - -73.487821, - 45.463302 - ], - [ - -73.488109, - 45.463235 - ], - [ - -73.488349, - 45.463109 - ], - [ - -73.488479, - 45.462953 - ], - [ - -73.488498, - 45.462929 - ], - [ - -73.488573, - 45.462762 - ], - [ - -73.488594, - 45.462464 - ], - [ - -73.488653, - 45.461599 - ], - [ - -73.488659, - 45.461512 - ], - [ - -73.488701, - 45.460814 - ], - [ - -73.488777, - 45.459727 - ], - [ - -73.488805, - 45.459338 - ], - [ - -73.488828, - 45.459006 - ], - [ - -73.488929, - 45.458754 - ], - [ - -73.489058, - 45.458542 - ], - [ - -73.489182, - 45.458344 - ], - [ - -73.489694, - 45.457516 - ], - [ - -73.4897, - 45.457501 - ], - [ - -73.489736, - 45.457408 - ], - [ - -73.489763, - 45.457296 - ], - [ - -73.489765, - 45.457071 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.488779, - 45.456899 - ], - [ - -73.488212, - 45.456877 - ], - [ - -73.486513, - 45.456819 - ], - [ - -73.486364, - 45.456814 - ], - [ - -73.485148, - 45.456777 - ], - [ - -73.483698, - 45.456733 - ], - [ - -73.483402, - 45.45672 - ], - [ - -73.482905, - 45.456699 - ], - [ - -73.482756, - 45.456692 - ], - [ - -73.48, - 45.456616 - ], - [ - -73.479792, - 45.456611 - ], - [ - -73.479622, - 45.456606 - ], - [ - -73.476059, - 45.456487 - ], - [ - -73.475848, - 45.456479 - ], - [ - -73.474778, - 45.456443 - ], - [ - -73.473716, - 45.456411 - ], - [ - -73.47264, - 45.456375 - ], - [ - -73.471572, - 45.456339 - ], - [ - -73.47073, - 45.456312 - ], - [ - -73.47047, - 45.456303 - ], - [ - -73.469686, - 45.456262 - ], - [ - -73.46943, - 45.456244 - ], - [ - -73.468978, - 45.456199 - ], - [ - -73.468627, - 45.456148 - ], - [ - -73.468607, - 45.456145 - ], - [ - -73.468443, - 45.456109 - ], - [ - -73.467856, - 45.455996 - ], - [ - -73.467523, - 45.455919 - ], - [ - -73.467299, - 45.455861 - ], - [ - -73.466983, - 45.455757 - ], - [ - -73.466899, - 45.455728 - ], - [ - -73.466828, - 45.455703 - ], - [ - -73.466297, - 45.455491 - ], - [ - -73.466093, - 45.45541 - ], - [ - -73.465683, - 45.455224 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.463912, - 45.454506 - ], - [ - -73.463601, - 45.454377 - ], - [ - -73.463285, - 45.454246 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.461779, - 45.453564 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.459815, - 45.452691 - ], - [ - -73.45917, - 45.452391 - ], - [ - -73.45904, - 45.452331 - ], - [ - -73.458688, - 45.452137 - ], - [ - -73.458046, - 45.451791 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457438, - 45.451421 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.456632, - 45.45207 - ], - [ - -73.456511, - 45.452168 - ], - [ - -73.456345, - 45.452339 - ], - [ - -73.456105, - 45.452573 - ], - [ - -73.455893, - 45.452816 - ], - [ - -73.455803, - 45.452933 - ], - [ - -73.45573, - 45.453027 - ], - [ - -73.455536, - 45.453301 - ], - [ - -73.455293, - 45.453751 - ], - [ - -73.455167, - 45.454075 - ], - [ - -73.455022, - 45.454574 - ], - [ - -73.454999, - 45.454666 - ], - [ - -73.454977, - 45.454754 - ], - [ - -73.454933, - 45.455281 - ], - [ - -73.454963, - 45.455744 - ], - [ - -73.455037, - 45.456136 - ], - [ - -73.455173, - 45.456599 - ], - [ - -73.455283, - 45.456847 - ], - [ - -73.455363, - 45.457004 - ], - [ - -73.455596, - 45.457405 - ], - [ - -73.455654, - 45.457509 - ], - [ - -73.455986, - 45.458098 - ], - [ - -73.456006, - 45.458134 - ], - [ - -73.456237, - 45.458545 - ], - [ - -73.456258, - 45.458583 - ], - [ - -73.456281, - 45.458624 - ], - [ - -73.457246, - 45.460352 - ], - [ - -73.457292, - 45.460433 - ], - [ - -73.45742, - 45.460667 - ], - [ - -73.457486, - 45.46082 - ], - [ - -73.457532, - 45.460955 - ], - [ - -73.457565, - 45.461072 - ], - [ - -73.457606, - 45.46123 - ], - [ - -73.457631, - 45.461396 - ], - [ - -73.457639, - 45.461477 - ], - [ - -73.457625, - 45.461707 - ], - [ - -73.457614, - 45.461848 - ], - [ - -73.45763, - 45.461949 - ], - [ - -73.457635, - 45.461955 - ], - [ - -73.45769, - 45.462033 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.454356, - 45.464727 - ], - [ - -73.45432, - 45.464702 - ], - [ - -73.453971, - 45.464449 - ], - [ - -73.453617, - 45.464193 - ], - [ - -73.453261, - 45.463932 - ], - [ - -73.452912, - 45.463662 - ], - [ - -73.452802, - 45.463536 - ], - [ - -73.452721, - 45.463379 - ], - [ - -73.452662, - 45.463158 - ], - [ - -73.45263, - 45.463001 - ], - [ - -73.452634, - 45.462879 - ], - [ - -73.452663, - 45.462722 - ], - [ - -73.452703, - 45.4626 - ], - [ - -73.452775, - 45.462447 - ], - [ - -73.452835, - 45.462344 - ], - [ - -73.452853, - 45.462318 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.453096, - 45.462269 - ], - [ - -73.453161, - 45.462302 - ], - [ - -73.453343, - 45.462373 - ], - [ - -73.453553, - 45.462428 - ], - [ - -73.453729, - 45.462455 - ], - [ - -73.453888, - 45.462462 - ], - [ - -73.454017, - 45.462437 - ], - [ - -73.454092, - 45.462406 - ], - [ - -73.454278, - 45.462276 - ], - [ - -73.454797, - 45.462637 - ], - [ - -73.455417, - 45.463093 - ], - [ - -73.455675, - 45.463282 - ], - [ - -73.45655, - 45.463924 - ], - [ - -73.457079, - 45.464307 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.458748, - 45.465456 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.460105, - 45.466435 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.460554, - 45.466805 - ], - [ - -73.460661, - 45.466886 - ], - [ - -73.461028, - 45.467148 - ], - [ - -73.46125, - 45.467305 - ], - [ - -73.461806, - 45.46771 - ], - [ - -73.461907, - 45.467784 - ], - [ - -73.461978, - 45.467836 - ], - [ - -73.462611, - 45.468268 - ], - [ - -73.462997, - 45.468569 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463833, - 45.469169 - ], - [ - -73.464474, - 45.469628 - ], - [ - -73.464829, - 45.469888 - ], - [ - -73.465113, - 45.470096 - ], - [ - -73.465778, - 45.470582 - ], - [ - -73.466302, - 45.470964 - ], - [ - -73.466451, - 45.471073 - ], - [ - -73.467061, - 45.471469 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467869, - 45.471793 - ], - [ - -73.467893, - 45.471706 - ], - [ - -73.467954, - 45.471482 - ], - [ - -73.467979, - 45.471365 - ], - [ - -73.468005, - 45.471249 - ], - [ - -73.468064, - 45.470898 - ], - [ - -73.468088, - 45.470653 - ], - [ - -73.468112, - 45.470407 - ], - [ - -73.468119, - 45.470155 - ], - [ - -73.468115, - 45.470044 - ], - [ - -73.468111, - 45.469894 - ], - [ - -73.468108, - 45.469818 - ], - [ - -73.468107, - 45.469773 - ], - [ - -73.46805, - 45.4693 - ], - [ - -73.467954, - 45.468836 - ], - [ - -73.467932, - 45.468733 - ], - [ - -73.467793, - 45.468274 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469043, - 45.46624 - ] - ] - }, - "id": 107, - "properties": { - "id": "b81d4314-a77d-45d0-af8d-68c205002414", - "data": { - "gtfs": { - "shape_id": "41_1_A" - }, - "segments": [ - { - "distanceMeters": 629, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 938, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 582, - "travelTimeSeconds": 79 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 514, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 82 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 423, - "travelTimeSeconds": 95 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10825, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 0, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.01, - "travelTimeWithoutDwellTimesSeconds": 1800, - "operatingTimeWithLayoverTimeSeconds": 1980, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1800, - "operatingSpeedWithLayoverMetersPerSecond": 5.47, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.01 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "003bcf5e-54a8-471f-b008-b7fa64ff94ba", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "57de752e-d268-4125-8223-581e6c2ff56e", - "1339471a-52fa-47e9-b0e4-753bf917ef08", - "9c711698-0f65-4997-8a72-24f5d8ab8fb7", - "5a6d8067-b58d-4ab2-838e-422e8f003ee9", - "e20e768c-bd5a-43fd-8842-af2717d6cb09", - "1d56d4cb-0ab2-44f2-924d-aa119de8c362", - "ecb00316-793a-4c41-88bd-3870bea4d999", - "9c3366b7-c832-4b7b-8636-18bed8c1e2de", - "1782a1a7-eddc-4228-a7a8-bf733f339e68", - "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", - "8443a69f-fccf-4a19-8d08-6da77269e686", - "2946050b-73ca-45c7-be10-f80ba5b43ab5", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "ab493a3c-1217-4122-93b5-217f7741b2ea", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "59b4f87c-067e-4dc3-856a-07fb245d4fe3", - "c77e59d9-5075-4e39-a183-6bacc1afd03e", - "f5f0a75d-b9e9-4575-845b-09748935c6e0", - "d271cca7-cd7a-4e22-8728-7a598b88fe32", - "3b708726-0db1-43de-b014-b11ddc9fc24a", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "1a441bab-41b8-447f-ba84-5034fae1da67", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "01153fa0-59fe-4f77-8e46-e418296b526d", - "977065eb-9054-495e-befc-5f3b6e0e6046", - "42f48eea-ee59-46f6-9c43-4b63100a50dc", - "51e1600d-418e-4477-9b26-9e5507d72a03", - "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "5a2827c6-463e-4fdc-b721-6524bd6915e8", - "segments": [ - 0, - 21, - 25, - 58, - 61, - 67, - 70, - 75, - 85, - 101, - 105, - 111, - 118, - 123, - 125, - 128, - 139, - 148, - 155, - 158, - 161, - 168, - 173, - 179, - 188, - 191, - 194, - 206, - 218, - 233, - 245, - 252, - 254, - 261, - 264, - 269, - 272, - 284, - 292 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 107, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.400131, - 45.4861 - ], - [ - -73.400474, - 45.48563 - ], - [ - -73.401257, - 45.484567 - ], - [ - -73.401315, - 45.484488 - ], - [ - -73.4013, - 45.484402 - ], - [ - -73.401353, - 45.482238 - ], - [ - -73.401357, - 45.481812 - ], - [ - -73.401359, - 45.48155 - ], - [ - -73.400341, - 45.481544 - ], - [ - -73.399897, - 45.481539 - ], - [ - -73.399682, - 45.481548 - ], - [ - -73.399426, - 45.481575 - ], - [ - -73.399227, - 45.481602 - ], - [ - -73.398981, - 45.481629 - ], - [ - -73.398926, - 45.481636 - ], - [ - -73.398721, - 45.481664 - ], - [ - -73.398467, - 45.481727 - ], - [ - -73.398262, - 45.481785 - ], - [ - -73.398091, - 45.481826 - ], - [ - -73.397814, - 45.481933 - ], - [ - -73.397794, - 45.481943 - ], - [ - -73.397442, - 45.4821 - ], - [ - -73.396764, - 45.482484 - ], - [ - -73.396697, - 45.482522 - ], - [ - -73.396445, - 45.482675 - ], - [ - -73.396029, - 45.482994 - ], - [ - -73.394946, - 45.483785 - ], - [ - -73.394578, - 45.484054 - ], - [ - -73.394481, - 45.484095 - ], - [ - -73.394326, - 45.48422 - ], - [ - -73.394526, - 45.48436 - ], - [ - -73.394852, - 45.484608 - ], - [ - -73.395097, - 45.484806 - ], - [ - -73.395347, - 45.485022 - ], - [ - -73.395593, - 45.485252 - ], - [ - -73.39622, - 45.485892 - ], - [ - -73.396316, - 45.48599 - ], - [ - -73.396877, - 45.486562 - ], - [ - -73.397253, - 45.486945 - ], - [ - -73.397988, - 45.487693 - ], - [ - -73.398417, - 45.488135 - ], - [ - -73.398503, - 45.488224 - ], - [ - -73.400292, - 45.490061 - ], - [ - -73.400338, - 45.490108 - ], - [ - -73.400631, - 45.490403 - ], - [ - -73.40073, - 45.490503 - ], - [ - -73.40103, - 45.490791 - ], - [ - -73.401471, - 45.491169 - ], - [ - -73.401956, - 45.491543 - ], - [ - -73.402249, - 45.491741 - ], - [ - -73.402261, - 45.491748 - ], - [ - -73.402357, - 45.491809 - ], - [ - -73.40251, - 45.491908 - ], - [ - -73.402561, - 45.491939 - ], - [ - -73.403076, - 45.492241 - ], - [ - -73.403455, - 45.492444 - ], - [ - -73.403526, - 45.492478 - ], - [ - -73.403928, - 45.492669 - ], - [ - -73.405609, - 45.493428 - ], - [ - -73.405646, - 45.493445 - ], - [ - -73.406465, - 45.493815 - ], - [ - -73.407044, - 45.494076 - ], - [ - -73.407318, - 45.494207 - ], - [ - -73.407449, - 45.49427 - ], - [ - -73.408138, - 45.494635 - ], - [ - -73.408708, - 45.49495 - ], - [ - -73.408748, - 45.494972 - ], - [ - -73.408851, - 45.495036 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.409259, - 45.494533 - ], - [ - -73.409537, - 45.494129 - ], - [ - -73.409554, - 45.494104 - ], - [ - -73.409872, - 45.493642 - ], - [ - -73.411355, - 45.491553 - ], - [ - -73.41144, - 45.491434 - ], - [ - -73.412048, - 45.490575 - ], - [ - -73.41308, - 45.489116 - ], - [ - -73.41317, - 45.488987 - ], - [ - -73.413246, - 45.48888 - ], - [ - -73.414235, - 45.487508 - ], - [ - -73.414543, - 45.487058 - ], - [ - -73.414879, - 45.486604 - ], - [ - -73.415045, - 45.486384 - ], - [ - -73.415216, - 45.486168 - ], - [ - -73.41547, - 45.485876 - ], - [ - -73.415597, - 45.485745 - ], - [ - -73.415653, - 45.485687 - ], - [ - -73.415881, - 45.485467 - ], - [ - -73.415979, - 45.485368 - ], - [ - -73.416171, - 45.485201 - ], - [ - -73.416634, - 45.484828 - ], - [ - -73.417619, - 45.484091 - ], - [ - -73.41778, - 45.483973 - ], - [ - -73.418029, - 45.48379 - ], - [ - -73.419479, - 45.482708 - ], - [ - -73.420488, - 45.481958 - ], - [ - -73.420745, - 45.481758 - ], - [ - -73.421007, - 45.481565 - ], - [ - -73.421135, - 45.481471 - ], - [ - -73.4234, - 45.479802 - ], - [ - -73.423539, - 45.479699 - ], - [ - -73.42384, - 45.47947 - ], - [ - -73.424374, - 45.479093 - ], - [ - -73.424606, - 45.47894 - ], - [ - -73.42499, - 45.478702 - ], - [ - -73.425384, - 45.478481 - ], - [ - -73.425755, - 45.478293 - ], - [ - -73.426224, - 45.478077 - ], - [ - -73.426575, - 45.477924 - ], - [ - -73.426849, - 45.477821 - ], - [ - -73.427064, - 45.47774 - ], - [ - -73.427293, - 45.477659 - ], - [ - -73.427592, - 45.477565 - ], - [ - -73.427919, - 45.477471 - ], - [ - -73.428417, - 45.477332 - ], - [ - -73.430191, - 45.476874 - ], - [ - -73.430341, - 45.476838 - ], - [ - -73.430884, - 45.476699 - ], - [ - -73.430953, - 45.476681 - ], - [ - -73.431616, - 45.47651 - ], - [ - -73.432188, - 45.476362 - ], - [ - -73.434429, - 45.475783 - ], - [ - -73.43506, - 45.475615 - ], - [ - -73.435306, - 45.475549 - ], - [ - -73.435634, - 45.475469 - ], - [ - -73.436518, - 45.475235 - ], - [ - -73.437045, - 45.475069 - ], - [ - -73.437596, - 45.47488 - ], - [ - -73.437872, - 45.474768 - ], - [ - -73.438084, - 45.474678 - ], - [ - -73.438162, - 45.474642 - ], - [ - -73.43841, - 45.474525 - ], - [ - -73.438836, - 45.474314 - ], - [ - -73.43909, - 45.474175 - ], - [ - -73.440044, - 45.473644 - ], - [ - -73.440381, - 45.473457 - ], - [ - -73.440502, - 45.47339 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.440904, - 45.473168 - ], - [ - -73.441015, - 45.473108 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.442498, - 45.472063 - ], - [ - -73.442653, - 45.471954 - ], - [ - -73.444466, - 45.470668 - ], - [ - -73.444558, - 45.470603 - ], - [ - -73.444668, - 45.470525 - ], - [ - -73.445328, - 45.470057 - ], - [ - -73.445338, - 45.470052 - ], - [ - -73.445622, - 45.469854 - ], - [ - -73.446091, - 45.469543 - ], - [ - -73.446352, - 45.46937 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.447066, - 45.468996 - ], - [ - -73.4474, - 45.468829 - ], - [ - -73.447822, - 45.468645 - ], - [ - -73.448427, - 45.468407 - ], - [ - -73.449383, - 45.468079 - ], - [ - -73.449709, - 45.467968 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450233, - 45.467787 - ], - [ - -73.451014, - 45.467517 - ], - [ - -73.451685, - 45.467271 - ], - [ - -73.451729, - 45.467255 - ], - [ - -73.451774, - 45.467238 - ], - [ - -73.452502, - 45.466987 - ], - [ - -73.452657, - 45.466933 - ], - [ - -73.453014, - 45.466803 - ], - [ - -73.45314, - 45.466749 - ], - [ - -73.453548, - 45.466537 - ], - [ - -73.453946, - 45.466304 - ], - [ - -73.454679, - 45.465797 - ], - [ - -73.454693, - 45.465786 - ], - [ - -73.45516, - 45.46545 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.455952, - 45.465079 - ], - [ - -73.456078, - 45.465023 - ], - [ - -73.456262, - 45.464907 - ], - [ - -73.456407, - 45.464824 - ], - [ - -73.456567, - 45.464772 - ], - [ - -73.456717, - 45.464744 - ], - [ - -73.456798, - 45.464739 - ], - [ - -73.456888, - 45.464733 - ], - [ - -73.457035, - 45.464719 - ], - [ - -73.45718, - 45.464674 - ], - [ - -73.457301, - 45.4646 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.458716, - 45.465432 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.460072, - 45.466411 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.460554, - 45.466805 - ], - [ - -73.460661, - 45.466886 - ], - [ - -73.461028, - 45.467148 - ], - [ - -73.46125, - 45.467305 - ], - [ - -73.461806, - 45.46771 - ], - [ - -73.461873, - 45.46776 - ], - [ - -73.461978, - 45.467836 - ], - [ - -73.462611, - 45.468268 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.465179, - 45.468283 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466386, - 45.468385 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.468602, - 45.466372 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.46904, - 45.466273 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469319, - 45.467991 - ], - [ - -73.469043, - 45.467983 - ], - [ - -73.468598, - 45.467969 - ], - [ - -73.468434, - 45.467978 - ], - [ - -73.467926, - 45.468045 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.46758, - 45.467757 - ], - [ - -73.467357, - 45.467296 - ], - [ - -73.467335, - 45.467098 - ], - [ - -73.467287, - 45.466921 - ], - [ - -73.46724, - 45.46679 - ], - [ - -73.467201, - 45.466621 - ], - [ - -73.467171, - 45.466457 - ], - [ - -73.467168, - 45.466361 - ], - [ - -73.467171, - 45.466266 - ], - [ - -73.46719, - 45.46616 - ], - [ - -73.467233, - 45.466051 - ], - [ - -73.467286, - 45.465947 - ], - [ - -73.467286, - 45.465946 - ], - [ - -73.467347, - 45.465852 - ], - [ - -73.46743, - 45.465768 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467565, - 45.465647 - ], - [ - -73.467708, - 45.465556 - ], - [ - -73.467899, - 45.465442 - ], - [ - -73.46805, - 45.465387 - ], - [ - -73.468287, - 45.465321 - ], - [ - -73.468514, - 45.465288 - ], - [ - -73.468859, - 45.465256 - ], - [ - -73.469207, - 45.465245 - ], - [ - -73.471824, - 45.46534 - ], - [ - -73.47278, - 45.465351 - ], - [ - -73.473923, - 45.465346 - ], - [ - -73.474792, - 45.465284 - ], - [ - -73.476448, - 45.465339 - ], - [ - -73.478069, - 45.465419 - ], - [ - -73.47931, - 45.465481 - ], - [ - -73.480681, - 45.465584 - ], - [ - -73.481658, - 45.465665 - ], - [ - -73.483804, - 45.465854 - ], - [ - -73.485886, - 45.466123 - ], - [ - -73.488038, - 45.466444 - ], - [ - -73.489088, - 45.466602 - ], - [ - -73.491585, - 45.46694 - ], - [ - -73.494707, - 45.467307 - ], - [ - -73.494917, - 45.467332 - ], - [ - -73.494999, - 45.467342 - ], - [ - -73.497318, - 45.467635 - ], - [ - -73.501976, - 45.468162 - ], - [ - -73.50546, - 45.468524 - ], - [ - -73.508994, - 45.468874 - ], - [ - -73.510795, - 45.469064 - ], - [ - -73.516615, - 45.469606 - ], - [ - -73.520513, - 45.469901 - ], - [ - -73.524263, - 45.470138 - ], - [ - -73.526895, - 45.470234 - ], - [ - -73.536203, - 45.470502 - ], - [ - -73.537479, - 45.470611 - ], - [ - -73.540035, - 45.470737 - ], - [ - -73.540574, - 45.470754 - ], - [ - -73.541689, - 45.470806 - ], - [ - -73.54236, - 45.470938 - ], - [ - -73.542685, - 45.471019 - ], - [ - -73.543056, - 45.471172 - ], - [ - -73.543235, - 45.471297 - ], - [ - -73.543427, - 45.47153 - ], - [ - -73.543495, - 45.471781 - ], - [ - -73.543487, - 45.471977 - ], - [ - -73.543374, - 45.472246 - ], - [ - -73.543123, - 45.472648 - ], - [ - -73.543053, - 45.472745 - ], - [ - -73.543034, - 45.472772 - ], - [ - -73.543013, - 45.472801 - ], - [ - -73.542473, - 45.473549 - ], - [ - -73.542275, - 45.473832 - ], - [ - -73.542255, - 45.473861 - ], - [ - -73.542175, - 45.473976 - ], - [ - -73.542016, - 45.474229 - ], - [ - -73.541794, - 45.474618 - ], - [ - -73.541458, - 45.475221 - ], - [ - -73.541094, - 45.47588 - ], - [ - -73.540722, - 45.476557 - ], - [ - -73.540393, - 45.477154 - ], - [ - -73.540141, - 45.477612 - ], - [ - -73.539989, - 45.477937 - ], - [ - -73.539912, - 45.478117 - ], - [ - -73.53962, - 45.478792 - ], - [ - -73.539453, - 45.479242 - ], - [ - -73.539011, - 45.480452 - ], - [ - -73.538771, - 45.481137 - ], - [ - -73.538372, - 45.4823 - ], - [ - -73.537796, - 45.483909 - ], - [ - -73.537682, - 45.484235 - ], - [ - -73.537533, - 45.484742 - ], - [ - -73.537501, - 45.485252 - ], - [ - -73.537565, - 45.485765 - ], - [ - -73.537725, - 45.486206 - ], - [ - -73.537953, - 45.486613 - ], - [ - -73.538211, - 45.486968 - ], - [ - -73.538564, - 45.487319 - ], - [ - -73.538991, - 45.48766 - ], - [ - -73.539413, - 45.487933 - ], - [ - -73.540409, - 45.488352 - ], - [ - -73.540999, - 45.488508 - ], - [ - -73.545779, - 45.489431 - ], - [ - -73.547415, - 45.489732 - ], - [ - -73.548107, - 45.48986 - ], - [ - -73.549549, - 45.490154 - ], - [ - -73.549968, - 45.490239 - ], - [ - -73.550646, - 45.490459 - ], - [ - -73.551261, - 45.490742 - ], - [ - -73.55163, - 45.490924 - ], - [ - -73.551996, - 45.491154 - ], - [ - -73.552466, - 45.491495 - ], - [ - -73.552812, - 45.491812 - ], - [ - -73.553225, - 45.492293 - ], - [ - -73.553459, - 45.492647 - ], - [ - -73.553701, - 45.493121 - ], - [ - -73.553714, - 45.493155 - ], - [ - -73.554005, - 45.493935 - ], - [ - -73.554229, - 45.494495 - ], - [ - -73.55441, - 45.494962 - ], - [ - -73.554709, - 45.495574 - ], - [ - -73.554963, - 45.495825 - ], - [ - -73.555225, - 45.496022 - ], - [ - -73.555665, - 45.496222 - ], - [ - -73.557268, - 45.496821 - ], - [ - -73.557934, - 45.497074 - ], - [ - -73.558511, - 45.497291 - ], - [ - -73.558754, - 45.497382 - ], - [ - -73.559665, - 45.497799 - ], - [ - -73.559804, - 45.497871 - ], - [ - -73.56055, - 45.498258 - ], - [ - -73.561247, - 45.498577 - ], - [ - -73.561574, - 45.498701 - ], - [ - -73.561917, - 45.498838 - ], - [ - -73.562165, - 45.49894 - ], - [ - -73.562545, - 45.499119 - ], - [ - -73.562571, - 45.499093 - ], - [ - -73.562654, - 45.499004 - ], - [ - -73.563341, - 45.498281 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.56431, - 45.497835 - ], - [ - -73.565142, - 45.498217 - ], - [ - -73.565601, - 45.498443 - ], - [ - -73.565748, - 45.49831 - ], - [ - -73.565849, - 45.498292 - ], - [ - -73.566051, - 45.498359 - ], - [ - -73.566361, - 45.498471 - ], - [ - -73.566492, - 45.498485 - ], - [ - -73.566611, - 45.498345 - ] - ] - }, - "id": 108, - "properties": { - "id": "a7350e66-a889-4200-b022-c89941108c5a", - "data": { - "gtfs": { - "shape_id": "42_1_A" - }, - "segments": [ - { - "distanceMeters": 192, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 307, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 375, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 424, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 368, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 345, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 548, - "travelTimeSeconds": 101 - }, - { - "distanceMeters": 10799, - "travelTimeSeconds": 720 - }, - { - "distanceMeters": 830, - "travelTimeSeconds": 420 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 258, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 21120, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 13062.319579171586, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.19, - "travelTimeWithoutDwellTimesSeconds": 2580, - "operatingTimeWithLayoverTimeSeconds": 2838, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2580, - "operatingSpeedWithLayoverMetersPerSecond": 7.44, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.19 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6", - "2d9ef136-ec60-4019-bd4d-d2df55cc0477", - "df277747-60c8-4b3b-bafb-24f50e6b7964", - "b50ae6c0-de25-4d7f-a9d6-e6512b40be80", - "968b7b22-34c3-4022-8ddb-f9483ac7dca5", - "33e21d89-c421-4efc-9bcf-2137e1092e00", - "819870cc-ffb6-4a2a-add6-5b056cc3e4c0", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", - "7c34d8fb-52d2-4cf7-8954-ff69847540ac", - "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", - "76b4c3d5-f580-480d-bfec-c2639dd60d13", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "78262195-7c3a-4ed5-81d8-a33c906e3099", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", - "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", - "8131cbf3-211d-4b69-adcb-9af688489a49", - "e865e27f-7453-42b2-9745-a8e5425a0276", - "0e293c4f-51c2-4ecd-9469-442389cb7915", - "71881b96-39d5-48ea-9242-5e05ded39cda", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "46c30d80-c93e-497b-a096-3a7c13e3723f", - "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", - "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "4fc83229-a15e-48e1-aa4f-fae0073dacf9", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "461a5d33-406e-481a-b773-6e450c48b670", - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" - ], - "stops": [], - "line_id": "b0ae745d-0a62-4849-894f-55aed31a5b79", - "segments": [ - 0, - 2, - 6, - 14, - 22, - 26, - 35, - 40, - 43, - 50, - 56, - 58, - 69, - 73, - 76, - 85, - 92, - 97, - 99, - 109, - 118, - 122, - 130, - 136, - 141, - 145, - 150, - 157, - 164, - 170, - 189, - 191, - 198, - 212, - 238, - 383 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 108, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.400131, - 45.4861 - ], - [ - -73.400474, - 45.48563 - ], - [ - -73.401257, - 45.484566 - ], - [ - -73.401315, - 45.484488 - ], - [ - -73.4013, - 45.484402 - ], - [ - -73.401353, - 45.482238 - ], - [ - -73.401357, - 45.48181 - ], - [ - -73.401359, - 45.48155 - ], - [ - -73.400341, - 45.481544 - ], - [ - -73.399897, - 45.481539 - ], - [ - -73.399682, - 45.481548 - ], - [ - -73.399426, - 45.481575 - ], - [ - -73.399227, - 45.481602 - ], - [ - -73.398981, - 45.481629 - ], - [ - -73.398923, - 45.481637 - ], - [ - -73.398721, - 45.481664 - ], - [ - -73.398467, - 45.481727 - ], - [ - -73.398262, - 45.481785 - ], - [ - -73.398091, - 45.481826 - ], - [ - -73.397814, - 45.481933 - ], - [ - -73.397794, - 45.481943 - ], - [ - -73.397442, - 45.4821 - ], - [ - -73.39676, - 45.482486 - ], - [ - -73.396697, - 45.482522 - ], - [ - -73.396445, - 45.482675 - ], - [ - -73.396029, - 45.482994 - ], - [ - -73.394942, - 45.483788 - ], - [ - -73.394578, - 45.484054 - ], - [ - -73.394481, - 45.484095 - ], - [ - -73.394326, - 45.48422 - ], - [ - -73.394526, - 45.48436 - ], - [ - -73.394852, - 45.484608 - ], - [ - -73.395097, - 45.484806 - ], - [ - -73.395347, - 45.485022 - ], - [ - -73.395593, - 45.485252 - ], - [ - -73.396224, - 45.485896 - ], - [ - -73.396316, - 45.48599 - ], - [ - -73.396877, - 45.486562 - ], - [ - -73.397253, - 45.486945 - ], - [ - -73.397988, - 45.487693 - ], - [ - -73.398421, - 45.48814 - ], - [ - -73.398503, - 45.488224 - ], - [ - -73.400292, - 45.490061 - ], - [ - -73.400344, - 45.490113 - ], - [ - -73.400631, - 45.490403 - ], - [ - -73.40073, - 45.490503 - ], - [ - -73.40103, - 45.490791 - ], - [ - -73.401471, - 45.491169 - ], - [ - -73.401956, - 45.491543 - ], - [ - -73.402249, - 45.491741 - ], - [ - -73.402269, - 45.491753 - ], - [ - -73.402357, - 45.491809 - ], - [ - -73.40251, - 45.491908 - ], - [ - -73.402561, - 45.491939 - ], - [ - -73.403076, - 45.492241 - ], - [ - -73.403455, - 45.492444 - ], - [ - -73.403535, - 45.492483 - ], - [ - -73.403928, - 45.492669 - ], - [ - -73.405619, - 45.493433 - ], - [ - -73.405646, - 45.493445 - ], - [ - -73.406465, - 45.493815 - ], - [ - -73.407044, - 45.494076 - ], - [ - -73.407318, - 45.494207 - ], - [ - -73.407449, - 45.49427 - ], - [ - -73.408138, - 45.494635 - ], - [ - -73.408708, - 45.49495 - ], - [ - -73.408748, - 45.494972 - ], - [ - -73.408851, - 45.495036 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.409265, - 45.494524 - ], - [ - -73.409537, - 45.494129 - ], - [ - -73.409554, - 45.494104 - ], - [ - -73.409872, - 45.493642 - ], - [ - -73.411362, - 45.491544 - ], - [ - -73.41144, - 45.491434 - ], - [ - -73.412048, - 45.490575 - ], - [ - -73.413087, - 45.489105 - ], - [ - -73.41317, - 45.488987 - ], - [ - -73.413246, - 45.48888 - ], - [ - -73.414235, - 45.487508 - ], - [ - -73.414543, - 45.487058 - ], - [ - -73.414879, - 45.486604 - ], - [ - -73.415045, - 45.486384 - ], - [ - -73.415216, - 45.486168 - ], - [ - -73.41547, - 45.485876 - ], - [ - -73.415608, - 45.485734 - ], - [ - -73.415653, - 45.485687 - ], - [ - -73.415881, - 45.485467 - ], - [ - -73.415979, - 45.485368 - ], - [ - -73.416171, - 45.485201 - ], - [ - -73.416634, - 45.484828 - ], - [ - -73.417619, - 45.484091 - ], - [ - -73.417793, - 45.483963 - ], - [ - -73.418029, - 45.48379 - ], - [ - -73.419479, - 45.482708 - ], - [ - -73.420488, - 45.481958 - ], - [ - -73.420745, - 45.481758 - ], - [ - -73.421022, - 45.481554 - ], - [ - -73.421135, - 45.481471 - ], - [ - -73.423416, - 45.47979 - ], - [ - -73.423539, - 45.479699 - ], - [ - -73.42384, - 45.47947 - ], - [ - -73.424374, - 45.479093 - ], - [ - -73.424606, - 45.47894 - ], - [ - -73.42499, - 45.478702 - ], - [ - -73.425384, - 45.478481 - ], - [ - -73.425755, - 45.478293 - ], - [ - -73.426224, - 45.478077 - ], - [ - -73.426575, - 45.477924 - ], - [ - -73.42687, - 45.477813 - ], - [ - -73.427064, - 45.47774 - ], - [ - -73.427293, - 45.477659 - ], - [ - -73.427592, - 45.477565 - ], - [ - -73.427919, - 45.477471 - ], - [ - -73.428417, - 45.477332 - ], - [ - -73.430191, - 45.476874 - ], - [ - -73.430341, - 45.476838 - ], - [ - -73.430884, - 45.476699 - ], - [ - -73.430977, - 45.476675 - ], - [ - -73.431616, - 45.47651 - ], - [ - -73.432188, - 45.476362 - ], - [ - -73.434429, - 45.475783 - ], - [ - -73.435086, - 45.475608 - ], - [ - -73.435306, - 45.475549 - ], - [ - -73.435634, - 45.475469 - ], - [ - -73.436518, - 45.475235 - ], - [ - -73.437045, - 45.475069 - ], - [ - -73.437596, - 45.47488 - ], - [ - -73.437872, - 45.474768 - ], - [ - -73.438084, - 45.474678 - ], - [ - -73.438186, - 45.47463 - ], - [ - -73.43841, - 45.474525 - ], - [ - -73.438836, - 45.474314 - ], - [ - -73.43909, - 45.474175 - ], - [ - -73.440044, - 45.473644 - ], - [ - -73.440381, - 45.473457 - ], - [ - -73.440526, - 45.473376 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.440904, - 45.473168 - ], - [ - -73.441015, - 45.473108 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.44252, - 45.472048 - ], - [ - -73.442653, - 45.471954 - ], - [ - -73.444466, - 45.470668 - ], - [ - -73.444558, - 45.470603 - ], - [ - -73.444691, - 45.470508 - ], - [ - -73.445328, - 45.470057 - ], - [ - -73.445338, - 45.470052 - ], - [ - -73.445622, - 45.469854 - ], - [ - -73.446091, - 45.469543 - ], - [ - -73.446376, - 45.469353 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.447066, - 45.468996 - ], - [ - -73.4474, - 45.468829 - ], - [ - -73.447822, - 45.468645 - ], - [ - -73.448427, - 45.468407 - ], - [ - -73.449383, - 45.468079 - ], - [ - -73.44974, - 45.467957 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450233, - 45.467787 - ], - [ - -73.451014, - 45.467517 - ], - [ - -73.451685, - 45.467271 - ], - [ - -73.451729, - 45.467255 - ], - [ - -73.451774, - 45.467238 - ], - [ - -73.452534, - 45.466975 - ], - [ - -73.452657, - 45.466933 - ], - [ - -73.453014, - 45.466803 - ], - [ - -73.45314, - 45.466749 - ], - [ - -73.453548, - 45.466537 - ], - [ - -73.453946, - 45.466304 - ], - [ - -73.454693, - 45.465786 - ], - [ - -73.454705, - 45.465778 - ], - [ - -73.45516, - 45.46545 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.455952, - 45.465079 - ], - [ - -73.456078, - 45.465023 - ], - [ - -73.456262, - 45.464907 - ], - [ - -73.456407, - 45.464824 - ], - [ - -73.456567, - 45.464772 - ], - [ - -73.456717, - 45.464744 - ], - [ - -73.456798, - 45.464739 - ], - [ - -73.456888, - 45.464733 - ], - [ - -73.457035, - 45.464719 - ], - [ - -73.45718, - 45.464674 - ], - [ - -73.457301, - 45.4646 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.458743, - 45.465452 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.460099, - 45.466431 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.460554, - 45.466805 - ], - [ - -73.460661, - 45.466886 - ], - [ - -73.461028, - 45.467148 - ], - [ - -73.46125, - 45.467305 - ], - [ - -73.461806, - 45.46771 - ], - [ - -73.461901, - 45.46778 - ], - [ - -73.461978, - 45.467836 - ], - [ - -73.462611, - 45.468268 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464452, - 45.468222 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.465221, - 45.468287 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.46908, - 45.465912 - ], - [ - -73.469107, - 45.46587 - ] - ] - }, - "id": 109, - "properties": { - "id": "23a0290f-0491-4104-8c51-e054d7885d47", - "data": { - "gtfs": { - "shape_id": "42_2_A" - }, - "segments": [ - { - "distanceMeters": 192, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 307, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 375, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 424, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 368, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 345, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 102 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 82 - }, - { - "distanceMeters": 579, - "travelTimeSeconds": 146 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9526, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5813.842791168849, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.9, - "travelTimeWithoutDwellTimesSeconds": 1380, - "operatingTimeWithLayoverTimeSeconds": 1560, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1380, - "operatingSpeedWithLayoverMetersPerSecond": 6.11, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.9 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6", - "2d9ef136-ec60-4019-bd4d-d2df55cc0477", - "df277747-60c8-4b3b-bafb-24f50e6b7964", - "b50ae6c0-de25-4d7f-a9d6-e6512b40be80", - "968b7b22-34c3-4022-8ddb-f9483ac7dca5", - "33e21d89-c421-4efc-9bcf-2137e1092e00", - "819870cc-ffb6-4a2a-add6-5b056cc3e4c0", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", - "7c34d8fb-52d2-4cf7-8954-ff69847540ac", - "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", - "76b4c3d5-f580-480d-bfec-c2639dd60d13", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "78262195-7c3a-4ed5-81d8-a33c906e3099", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", - "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", - "8131cbf3-211d-4b69-adcb-9af688489a49", - "e865e27f-7453-42b2-9745-a8e5425a0276", - "0e293c4f-51c2-4ecd-9469-442389cb7915", - "71881b96-39d5-48ea-9242-5e05ded39cda", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "46c30d80-c93e-497b-a096-3a7c13e3723f", - "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", - "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "4fc83229-a15e-48e1-aa4f-fae0073dacf9", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "b0ae745d-0a62-4849-894f-55aed31a5b79", - "segments": [ - 0, - 2, - 6, - 14, - 22, - 26, - 35, - 40, - 43, - 50, - 56, - 58, - 69, - 73, - 76, - 85, - 92, - 97, - 99, - 109, - 118, - 122, - 130, - 136, - 141, - 145, - 150, - 157, - 164, - 171, - 189, - 191, - 198, - 213 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 109, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469107, - 45.46587 - ], - [ - -73.469152, - 45.465801 - ], - [ - -73.469114, - 45.465711 - ], - [ - -73.469034, - 45.465669 - ], - [ - -73.468913, - 45.46567 - ], - [ - -73.468751, - 45.465752 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466951, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465591, - 45.468211 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.46363, - 45.4683 - ], - [ - -73.463472, - 45.468395 - ], - [ - -73.463397, - 45.468431 - ], - [ - -73.463306, - 45.468449 - ], - [ - -73.463219, - 45.468458 - ], - [ - -73.463124, - 45.468449 - ], - [ - -73.463037, - 45.468413 - ], - [ - -73.462702, - 45.468201 - ], - [ - -73.462471, - 45.468057 - ], - [ - -73.462195, - 45.467872 - ], - [ - -73.46201, - 45.467739 - ], - [ - -73.461894, - 45.467656 - ], - [ - -73.461788, - 45.46758 - ], - [ - -73.46133, - 45.467251 - ], - [ - -73.461109, - 45.467094 - ], - [ - -73.460905, - 45.466945 - ], - [ - -73.460722, - 45.466814 - ], - [ - -73.460721, - 45.466814 - ], - [ - -73.460629, - 45.466751 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.458928, - 45.465587 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457079, - 45.464307 - ], - [ - -73.456579, - 45.463946 - ], - [ - -73.45655, - 45.463924 - ], - [ - -73.455675, - 45.463282 - ], - [ - -73.454797, - 45.462637 - ], - [ - -73.454278, - 45.462276 - ], - [ - -73.454092, - 45.462406 - ], - [ - -73.454017, - 45.462437 - ], - [ - -73.453888, - 45.462462 - ], - [ - -73.453729, - 45.462455 - ], - [ - -73.453553, - 45.462428 - ], - [ - -73.453343, - 45.462373 - ], - [ - -73.453161, - 45.462302 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.452838, - 45.46234 - ], - [ - -73.452835, - 45.462344 - ], - [ - -73.452775, - 45.462447 - ], - [ - -73.452703, - 45.4626 - ], - [ - -73.452685, - 45.462654 - ], - [ - -73.452663, - 45.462722 - ], - [ - -73.452634, - 45.462879 - ], - [ - -73.45263, - 45.463001 - ], - [ - -73.452662, - 45.463158 - ], - [ - -73.452721, - 45.463379 - ], - [ - -73.452802, - 45.463536 - ], - [ - -73.452912, - 45.463662 - ], - [ - -73.453261, - 45.463932 - ], - [ - -73.453533, - 45.464132 - ], - [ - -73.453617, - 45.464193 - ], - [ - -73.453971, - 45.464449 - ], - [ - -73.45432, - 45.464702 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.454655, - 45.465624 - ], - [ - -73.45456, - 45.465692 - ], - [ - -73.453819, - 45.466205 - ], - [ - -73.453432, - 45.466434 - ], - [ - -73.453035, - 45.466641 - ], - [ - -73.452922, - 45.46669 - ], - [ - -73.452774, - 45.466754 - ], - [ - -73.452589, - 45.466834 - ], - [ - -73.451705, - 45.467139 - ], - [ - -73.451627, - 45.467166 - ], - [ - -73.45158, - 45.467183 - ], - [ - -73.451003, - 45.467382 - ], - [ - -73.450937, - 45.467405 - ], - [ - -73.450156, - 45.467679 - ], - [ - -73.449888, - 45.467769 - ], - [ - -73.449338, - 45.467948 - ], - [ - -73.44837, - 45.46829 - ], - [ - -73.447748, - 45.468524 - ], - [ - -73.447289, - 45.468721 - ], - [ - -73.446426, - 45.469169 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445905, - 45.469485 - ], - [ - -73.445671, - 45.469643 - ], - [ - -73.445475, - 45.469778 - ], - [ - -73.445396, - 45.469832 - ], - [ - -73.445298, - 45.469899 - ], - [ - -73.444328, - 45.470583 - ], - [ - -73.444068, - 45.470766 - ], - [ - -73.442651, - 45.471766 - ], - [ - -73.442644, - 45.471771 - ], - [ - -73.442519, - 45.471859 - ], - [ - -73.441942, - 45.47227 - ], - [ - -73.441014, - 45.472931 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.440777, - 45.473082 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.439918, - 45.473559 - ], - [ - -73.438731, - 45.47422 - ], - [ - -73.438304, - 45.474435 - ], - [ - -73.43826, - 45.474455 - ], - [ - -73.437984, - 45.474579 - ], - [ - -73.437774, - 45.474669 - ], - [ - -73.437493, - 45.474781 - ], - [ - -73.436979, - 45.47497 - ], - [ - -73.436441, - 45.475136 - ], - [ - -73.43565, - 45.475338 - ], - [ - -73.435349, - 45.475415 - ], - [ - -73.435246, - 45.475441 - ], - [ - -73.434371, - 45.475675 - ], - [ - -73.43213, - 45.476249 - ], - [ - -73.430984, - 45.476543 - ], - [ - -73.430431, - 45.476684 - ], - [ - -73.430219, - 45.476739 - ], - [ - -73.43007, - 45.476775 - ], - [ - -73.429697, - 45.476873 - ], - [ - -73.429193, - 45.477005 - ], - [ - -73.428358, - 45.477224 - ], - [ - -73.427857, - 45.477363 - ], - [ - -73.427526, - 45.477457 - ], - [ - -73.427221, - 45.477556 - ], - [ - -73.427138, - 45.477585 - ], - [ - -73.426989, - 45.477637 - ], - [ - -73.426493, - 45.477825 - ], - [ - -73.426135, - 45.477978 - ], - [ - -73.425662, - 45.478198 - ], - [ - -73.425284, - 45.478387 - ], - [ - -73.424884, - 45.478612 - ], - [ - -73.424494, - 45.47885 - ], - [ - -73.424258, - 45.479012 - ], - [ - -73.423721, - 45.479389 - ], - [ - -73.423502, - 45.479556 - ], - [ - -73.423421, - 45.479618 - ], - [ - -73.421119, - 45.481314 - ], - [ - -73.421017, - 45.481389 - ], - [ - -73.419775, - 45.482315 - ], - [ - -73.419122, - 45.482809 - ], - [ - -73.418378, - 45.483361 - ], - [ - -73.417919, - 45.483709 - ], - [ - -73.417514, - 45.484019 - ], - [ - -73.417488, - 45.484038 - ], - [ - -73.416526, - 45.484761 - ], - [ - -73.416059, - 45.485134 - ], - [ - -73.415863, - 45.485305 - ], - [ - -73.415534, - 45.485624 - ], - [ - -73.415523, - 45.485635 - ], - [ - -73.415347, - 45.485822 - ], - [ - -73.41509, - 45.486114 - ], - [ - -73.414917, - 45.486334 - ], - [ - -73.41475, - 45.486555 - ], - [ - -73.414412, - 45.487013 - ], - [ - -73.41409, - 45.487458 - ], - [ - -73.413175, - 45.488755 - ], - [ - -73.413119, - 45.488834 - ], - [ - -73.413049, - 45.488947 - ], - [ - -73.411857, - 45.490612 - ], - [ - -73.411373, - 45.491287 - ], - [ - -73.4113, - 45.491389 - ], - [ - -73.410804, - 45.492083 - ], - [ - -73.410177, - 45.492961 - ], - [ - -73.409729, - 45.493588 - ], - [ - -73.409634, - 45.493716 - ], - [ - -73.409271, - 45.494208 - ], - [ - -73.409071, - 45.494478 - ], - [ - -73.409048, - 45.494509 - ], - [ - -73.408825, - 45.494811 - ], - [ - -73.408434, - 45.49459 - ], - [ - -73.408369, - 45.494555 - ], - [ - -73.408119, - 45.494419 - ], - [ - -73.407843, - 45.49427 - ], - [ - -73.407735, - 45.494211 - ], - [ - -73.407122, - 45.493914 - ], - [ - -73.406659, - 45.493705 - ], - [ - -73.406594, - 45.493675 - ], - [ - -73.404056, - 45.49253 - ], - [ - -73.40355, - 45.492282 - ], - [ - -73.403081, - 45.492034 - ], - [ - -73.402785, - 45.491856 - ], - [ - -73.402782, - 45.491854 - ], - [ - -73.402626, - 45.491759 - ], - [ - -73.402493, - 45.491674 - ], - [ - -73.402463, - 45.491651 - ], - [ - -73.402075, - 45.491386 - ], - [ - -73.401668, - 45.491075 - ], - [ - -73.401167, - 45.490642 - ], - [ - -73.400821, - 45.490307 - ], - [ - -73.40081, - 45.490296 - ], - [ - -73.398818, - 45.488256 - ], - [ - -73.398629, - 45.488062 - ], - [ - -73.398311, - 45.487738 - ], - [ - -73.397543, - 45.486952 - ], - [ - -73.397073, - 45.486473 - ], - [ - -73.39668, - 45.48607 - ], - [ - -73.396515, - 45.485901 - ], - [ - -73.395797, - 45.485167 - ], - [ - -73.395424, - 45.48482 - ], - [ - -73.39519, - 45.484626 - ], - [ - -73.394903, - 45.484401 - ], - [ - -73.394667, - 45.484225 - ], - [ - -73.39454, - 45.484131 - ], - [ - -73.394481, - 45.484095 - ], - [ - -73.394578, - 45.484054 - ], - [ - -73.396029, - 45.482994 - ], - [ - -73.396445, - 45.482675 - ], - [ - -73.396657, - 45.482546 - ], - [ - -73.396697, - 45.482522 - ], - [ - -73.397442, - 45.4821 - ], - [ - -73.397756, - 45.481959 - ], - [ - -73.397814, - 45.481933 - ], - [ - -73.398091, - 45.481826 - ], - [ - -73.398262, - 45.481785 - ], - [ - -73.398467, - 45.481727 - ], - [ - -73.398721, - 45.481664 - ], - [ - -73.398955, - 45.481632 - ], - [ - -73.398981, - 45.481629 - ], - [ - -73.399227, - 45.481602 - ], - [ - -73.399426, - 45.481575 - ], - [ - -73.399682, - 45.481548 - ], - [ - -73.399897, - 45.481539 - ], - [ - -73.400341, - 45.481544 - ], - [ - -73.401174, - 45.481549 - ], - [ - -73.401359, - 45.48155 - ], - [ - -73.401353, - 45.482238 - ], - [ - -73.4013, - 45.484402 - ], - [ - -73.4013, - 45.484402 - ], - [ - -73.401315, - 45.484488 - ], - [ - -73.400474, - 45.48563 - ], - [ - -73.400321, - 45.48584 - ] - ] - }, - "id": 110, - "properties": { - "id": "29cc2b7d-3ccc-404f-a8ed-c61c55e50c59", - "data": { - "gtfs": { - "shape_id": "42_2_R" - }, - "segments": [ - { - "distanceMeters": 673, - "travelTimeSeconds": 99 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 433, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 415, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 366, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 508, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 31 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10225, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5813.842791168849, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.1, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 6.31, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.1 - }, - "mode": "bus", - "name": "Parc de la Cité", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "b6dfeeab-9981-4db8-9a90-2e14691bf516", - "bd9b4c12-08ed-4715-ae67-eb179ed7f974", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "ff779c9a-cd83-463a-8d0c-a93f3584a187", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", - "c8919560-2bb2-4063-8184-8e6c296badbe", - "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", - "0e293c4f-51c2-4ecd-9469-442389cb7915", - "e865e27f-7453-42b2-9745-a8e5425a0276", - "f7218298-f862-4f68-aabe-7a0d51011bc1", - "7f82f5fb-e61e-43a9-957c-0c400fd3ecbd", - "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "78262195-7c3a-4ed5-81d8-a33c906e3099", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "df4c6e14-8093-4f02-87d3-4b3d84466b04", - "7c34d8fb-52d2-4cf7-8954-ff69847540ac", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "7b30134c-a936-4c6b-8038-780d1041baea", - "9f7ffafe-2aab-4507-b571-cce792adfb7d", - "968b7b22-34c3-4022-8ddb-f9483ac7dca5", - "b50ae6c0-de25-4d7f-a9d6-e6512b40be80", - "df277747-60c8-4b3b-bafb-24f50e6b7964", - "2d9ef136-ec60-4019-bd4d-d2df55cc0477", - "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6" - ], - "stops": [], - "line_id": "b0ae745d-0a62-4849-894f-55aed31a5b79", - "segments": [ - 0, - 31, - 51, - 58, - 61, - 67, - 84, - 93, - 98, - 104, - 109, - 117, - 125, - 126, - 130, - 137, - 144, - 149, - 158, - 168, - 170, - 177, - 182, - 189, - 193, - 200, - 209, - 214, - 224, - 229, - 235, - 241, - 250, - 257, - 261 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 110, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.566611, - 45.498345 - ], - [ - -73.566738, - 45.498195 - ], - [ - -73.566628, - 45.49808 - ], - [ - -73.566306, - 45.497931 - ], - [ - -73.566253, - 45.497841 - ], - [ - -73.56638, - 45.497699 - ], - [ - -73.566016, - 45.497523 - ], - [ - -73.564691, - 45.496892 - ], - [ - -73.563974, - 45.496566 - ], - [ - -73.562701, - 45.495919 - ], - [ - -73.562651, - 45.496018 - ], - [ - -73.562646, - 45.496027 - ], - [ - -73.562481, - 45.496317 - ], - [ - -73.562367, - 45.496479 - ], - [ - -73.562274, - 45.496658 - ], - [ - -73.562038, - 45.497108 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.561446, - 45.497988 - ], - [ - -73.561033, - 45.497765 - ], - [ - -73.560139, - 45.497347 - ], - [ - -73.559235, - 45.49696 - ], - [ - -73.55917, - 45.496938 - ], - [ - -73.558356, - 45.496631 - ], - [ - -73.558148, - 45.496557 - ], - [ - -73.557604, - 45.496364 - ], - [ - -73.556782, - 45.49606 - ], - [ - -73.555745, - 45.495673 - ], - [ - -73.555351, - 45.495512 - ], - [ - -73.555133, - 45.495401 - ], - [ - -73.554916, - 45.495262 - ], - [ - -73.554768, - 45.495125 - ], - [ - -73.55465, - 45.494994 - ], - [ - -73.553944, - 45.493258 - ], - [ - -73.553818, - 45.492971 - ], - [ - -73.553465, - 45.492338 - ], - [ - -73.552977, - 45.491759 - ], - [ - -73.552502, - 45.491344 - ], - [ - -73.551956, - 45.490962 - ], - [ - -73.551651, - 45.490791 - ], - [ - -73.551074, - 45.490513 - ], - [ - -73.550682, - 45.490367 - ], - [ - -73.550312, - 45.490228 - ], - [ - -73.54956, - 45.490034 - ], - [ - -73.548355, - 45.489798 - ], - [ - -73.542648, - 45.488704 - ], - [ - -73.541878, - 45.488554 - ], - [ - -73.541083, - 45.488397 - ], - [ - -73.540636, - 45.488282 - ], - [ - -73.540145, - 45.488119 - ], - [ - -73.539582, - 45.48786 - ], - [ - -73.539239, - 45.487663 - ], - [ - -73.538946, - 45.487462 - ], - [ - -73.538619, - 45.487192 - ], - [ - -73.538304, - 45.486863 - ], - [ - -73.538089, - 45.486564 - ], - [ - -73.537885, - 45.486183 - ], - [ - -73.537862, - 45.486139 - ], - [ - -73.537796, - 45.485958 - ], - [ - -73.537731, - 45.485785 - ], - [ - -73.53767, - 45.485461 - ], - [ - -73.537646, - 45.485264 - ], - [ - -73.537653, - 45.484914 - ], - [ - -73.537707, - 45.484604 - ], - [ - -73.537881, - 45.484168 - ], - [ - -73.537968, - 45.483893 - ], - [ - -73.538058, - 45.483623 - ], - [ - -73.539557, - 45.479354 - ], - [ - -73.53982, - 45.478652 - ], - [ - -73.540179, - 45.47782 - ], - [ - -73.540481, - 45.477177 - ], - [ - -73.540578, - 45.477027 - ], - [ - -73.540928, - 45.476409 - ], - [ - -73.5413, - 45.475732 - ], - [ - -73.541747, - 45.474937 - ], - [ - -73.542136, - 45.474264 - ], - [ - -73.542539, - 45.47363 - ], - [ - -73.543159, - 45.472786 - ], - [ - -73.543162, - 45.472781 - ], - [ - -73.5432, - 45.472729 - ], - [ - -73.543381, - 45.472482 - ], - [ - -73.543908, - 45.471834 - ], - [ - -73.544604, - 45.471016 - ], - [ - -73.54479, - 45.470824 - ], - [ - -73.544929, - 45.470679 - ], - [ - -73.54509, - 45.470477 - ], - [ - -73.545159, - 45.470391 - ], - [ - -73.545162, - 45.470289 - ], - [ - -73.54518, - 45.470102 - ], - [ - -73.54513, - 45.469912 - ], - [ - -73.545032, - 45.469762 - ], - [ - -73.544829, - 45.469589 - ], - [ - -73.544396, - 45.469456 - ], - [ - -73.544223, - 45.469408 - ], - [ - -73.544, - 45.469414 - ], - [ - -73.54385, - 45.469436 - ], - [ - -73.543665, - 45.469485 - ], - [ - -73.543125, - 45.469658 - ], - [ - -73.542795, - 45.46978 - ], - [ - -73.542335, - 45.469915 - ], - [ - -73.542042, - 45.469974 - ], - [ - -73.541634, - 45.469988 - ], - [ - -73.538583, - 45.470121 - ], - [ - -73.536645, - 45.47012 - ], - [ - -73.534843, - 45.470106 - ], - [ - -73.531663, - 45.470044 - ], - [ - -73.528901, - 45.469979 - ], - [ - -73.525636, - 45.469864 - ], - [ - -73.520215, - 45.469565 - ], - [ - -73.516228, - 45.469261 - ], - [ - -73.50737, - 45.468395 - ], - [ - -73.501604, - 45.467786 - ], - [ - -73.499262, - 45.467514 - ], - [ - -73.493921, - 45.466881 - ], - [ - -73.491932, - 45.466645 - ], - [ - -73.489852, - 45.466348 - ], - [ - -73.489119, - 45.46624 - ], - [ - -73.489027, - 45.466226 - ], - [ - -73.486848, - 45.465931 - ], - [ - -73.485714, - 45.465782 - ], - [ - -73.482904, - 45.465439 - ], - [ - -73.482123, - 45.46537 - ], - [ - -73.479736, - 45.465191 - ], - [ - -73.47968, - 45.465187 - ], - [ - -73.478363, - 45.465119 - ], - [ - -73.477796, - 45.465089 - ], - [ - -73.475753, - 45.464994 - ], - [ - -73.474695, - 45.464942 - ], - [ - -73.474262, - 45.464921 - ], - [ - -73.474113, - 45.464916 - ], - [ - -73.473291, - 45.464882 - ], - [ - -73.472501, - 45.46485 - ], - [ - -73.471447, - 45.46476 - ], - [ - -73.469875, - 45.464616 - ], - [ - -73.469333, - 45.464554 - ], - [ - -73.46902, - 45.464515 - ], - [ - -73.468704, - 45.464452 - ], - [ - -73.468392, - 45.464367 - ], - [ - -73.468066, - 45.46424 - ], - [ - -73.467826, - 45.46409 - ], - [ - -73.467593, - 45.463944 - ], - [ - -73.467415, - 45.463833 - ], - [ - -73.467133, - 45.463667 - ], - [ - -73.466953, - 45.463591 - ], - [ - -73.466529, - 45.463529 - ], - [ - -73.466232, - 45.463594 - ], - [ - -73.466092, - 45.463623 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.468298, - 45.46636 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469044, - 45.466212 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466904, - 45.46682 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465533, - 45.468205 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.46363, - 45.4683 - ], - [ - -73.463472, - 45.468395 - ], - [ - -73.463397, - 45.468431 - ], - [ - -73.463306, - 45.468449 - ], - [ - -73.463219, - 45.468458 - ], - [ - -73.463124, - 45.468449 - ], - [ - -73.463037, - 45.468413 - ], - [ - -73.462702, - 45.468201 - ], - [ - -73.462471, - 45.468057 - ], - [ - -73.462195, - 45.467872 - ], - [ - -73.461979, - 45.467717 - ], - [ - -73.461894, - 45.467656 - ], - [ - -73.461788, - 45.46758 - ], - [ - -73.46133, - 45.467251 - ], - [ - -73.461109, - 45.467094 - ], - [ - -73.460905, - 45.466945 - ], - [ - -73.460722, - 45.466814 - ], - [ - -73.46069, - 45.466793 - ], - [ - -73.460629, - 45.466751 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.458899, - 45.465565 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457079, - 45.464307 - ], - [ - -73.45655, - 45.463925 - ], - [ - -73.45655, - 45.463924 - ], - [ - -73.455675, - 45.463282 - ], - [ - -73.454797, - 45.462637 - ], - [ - -73.454278, - 45.462276 - ], - [ - -73.45418, - 45.462345 - ], - [ - -73.454092, - 45.462406 - ], - [ - -73.454017, - 45.462437 - ], - [ - -73.453888, - 45.462462 - ], - [ - -73.453729, - 45.462455 - ], - [ - -73.453553, - 45.462428 - ], - [ - -73.453343, - 45.462373 - ], - [ - -73.453161, - 45.462302 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.452835, - 45.462344 - ], - [ - -73.452775, - 45.462447 - ], - [ - -73.452703, - 45.4626 - ], - [ - -73.452676, - 45.462681 - ], - [ - -73.452663, - 45.462722 - ], - [ - -73.452634, - 45.462879 - ], - [ - -73.45263, - 45.463001 - ], - [ - -73.452662, - 45.463158 - ], - [ - -73.452721, - 45.463379 - ], - [ - -73.452802, - 45.463536 - ], - [ - -73.452912, - 45.463662 - ], - [ - -73.453261, - 45.463932 - ], - [ - -73.453559, - 45.464151 - ], - [ - -73.453617, - 45.464193 - ], - [ - -73.453971, - 45.464449 - ], - [ - -73.45432, - 45.464702 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.454944, - 45.465416 - ], - [ - -73.454629, - 45.465642 - ], - [ - -73.45456, - 45.465692 - ], - [ - -73.453819, - 45.466205 - ], - [ - -73.453432, - 45.466434 - ], - [ - -73.453035, - 45.466641 - ], - [ - -73.452922, - 45.46669 - ], - [ - -73.452743, - 45.466767 - ], - [ - -73.452589, - 45.466834 - ], - [ - -73.451705, - 45.467139 - ], - [ - -73.451627, - 45.467166 - ], - [ - -73.45158, - 45.467183 - ], - [ - -73.450971, - 45.467393 - ], - [ - -73.450937, - 45.467405 - ], - [ - -73.450156, - 45.467679 - ], - [ - -73.449888, - 45.467769 - ], - [ - -73.449338, - 45.467948 - ], - [ - -73.44837, - 45.46829 - ], - [ - -73.447748, - 45.468524 - ], - [ - -73.447289, - 45.468721 - ], - [ - -73.446399, - 45.469183 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445905, - 45.469485 - ], - [ - -73.445671, - 45.469643 - ], - [ - -73.445475, - 45.469778 - ], - [ - -73.445396, - 45.469832 - ], - [ - -73.445298, - 45.469899 - ], - [ - -73.444328, - 45.470583 - ], - [ - -73.444046, - 45.470782 - ], - [ - -73.442644, - 45.471771 - ], - [ - -73.442628, - 45.471782 - ], - [ - -73.442519, - 45.471859 - ], - [ - -73.441942, - 45.47227 - ], - [ - -73.440993, - 45.472946 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.440777, - 45.473082 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.439918, - 45.473559 - ], - [ - -73.438731, - 45.47422 - ], - [ - -73.438304, - 45.474435 - ], - [ - -73.438236, - 45.474466 - ], - [ - -73.437984, - 45.474579 - ], - [ - -73.437774, - 45.474669 - ], - [ - -73.437493, - 45.474781 - ], - [ - -73.436979, - 45.47497 - ], - [ - -73.436441, - 45.475136 - ], - [ - -73.43565, - 45.475338 - ], - [ - -73.435322, - 45.475422 - ], - [ - -73.435246, - 45.475441 - ], - [ - -73.434371, - 45.475675 - ], - [ - -73.43213, - 45.476249 - ], - [ - -73.430984, - 45.476543 - ], - [ - -73.430407, - 45.476691 - ], - [ - -73.430219, - 45.476739 - ], - [ - -73.43007, - 45.476775 - ], - [ - -73.429697, - 45.476873 - ], - [ - -73.429193, - 45.477005 - ], - [ - -73.428358, - 45.477224 - ], - [ - -73.427857, - 45.477363 - ], - [ - -73.427526, - 45.477457 - ], - [ - -73.427221, - 45.477556 - ], - [ - -73.427116, - 45.477592 - ], - [ - -73.426989, - 45.477637 - ], - [ - -73.426493, - 45.477825 - ], - [ - -73.426135, - 45.477978 - ], - [ - -73.425662, - 45.478198 - ], - [ - -73.425284, - 45.478387 - ], - [ - -73.424884, - 45.478612 - ], - [ - -73.424494, - 45.47885 - ], - [ - -73.424258, - 45.479012 - ], - [ - -73.423721, - 45.479389 - ], - [ - -73.423487, - 45.479568 - ], - [ - -73.423421, - 45.479618 - ], - [ - -73.421104, - 45.481326 - ], - [ - -73.421017, - 45.481389 - ], - [ - -73.419775, - 45.482315 - ], - [ - -73.419122, - 45.482809 - ], - [ - -73.418378, - 45.483361 - ], - [ - -73.417919, - 45.483709 - ], - [ - -73.417514, - 45.484019 - ], - [ - -73.417475, - 45.484048 - ], - [ - -73.416526, - 45.484761 - ], - [ - -73.416059, - 45.485134 - ], - [ - -73.415863, - 45.485305 - ], - [ - -73.415534, - 45.485624 - ], - [ - -73.415513, - 45.485646 - ], - [ - -73.415347, - 45.485822 - ], - [ - -73.41509, - 45.486114 - ], - [ - -73.414917, - 45.486334 - ], - [ - -73.41475, - 45.486555 - ], - [ - -73.414412, - 45.487013 - ], - [ - -73.41409, - 45.487458 - ], - [ - -73.413167, - 45.488766 - ], - [ - -73.413119, - 45.488834 - ], - [ - -73.413049, - 45.488947 - ], - [ - -73.411857, - 45.490612 - ], - [ - -73.411366, - 45.491297 - ], - [ - -73.4113, - 45.491389 - ], - [ - -73.410804, - 45.492083 - ], - [ - -73.410177, - 45.492961 - ], - [ - -73.409729, - 45.493588 - ], - [ - -73.409634, - 45.493716 - ], - [ - -73.409271, - 45.494208 - ], - [ - -73.409065, - 45.494486 - ], - [ - -73.409048, - 45.494509 - ], - [ - -73.408825, - 45.494811 - ], - [ - -73.408434, - 45.49459 - ], - [ - -73.408369, - 45.494555 - ], - [ - -73.408119, - 45.494419 - ], - [ - -73.407843, - 45.49427 - ], - [ - -73.407735, - 45.494211 - ], - [ - -73.407122, - 45.493914 - ], - [ - -73.406648, - 45.4937 - ], - [ - -73.406594, - 45.493675 - ], - [ - -73.404056, - 45.49253 - ], - [ - -73.40355, - 45.492282 - ], - [ - -73.403081, - 45.492034 - ], - [ - -73.402782, - 45.491854 - ], - [ - -73.402777, - 45.491851 - ], - [ - -73.402626, - 45.491759 - ], - [ - -73.402493, - 45.491674 - ], - [ - -73.402463, - 45.491651 - ], - [ - -73.402075, - 45.491386 - ], - [ - -73.401668, - 45.491075 - ], - [ - -73.401167, - 45.490642 - ], - [ - -73.400821, - 45.490307 - ], - [ - -73.40081, - 45.490296 - ], - [ - -73.398814, - 45.488251 - ], - [ - -73.398629, - 45.488062 - ], - [ - -73.398311, - 45.487738 - ], - [ - -73.397543, - 45.486952 - ], - [ - -73.397073, - 45.486473 - ], - [ - -73.396677, - 45.486066 - ], - [ - -73.396515, - 45.485901 - ], - [ - -73.395797, - 45.485167 - ], - [ - -73.395424, - 45.48482 - ], - [ - -73.39519, - 45.484626 - ], - [ - -73.394903, - 45.484401 - ], - [ - -73.394663, - 45.484222 - ], - [ - -73.39454, - 45.484131 - ], - [ - -73.394481, - 45.484095 - ], - [ - -73.394578, - 45.484054 - ], - [ - -73.396029, - 45.482994 - ], - [ - -73.396445, - 45.482675 - ], - [ - -73.396661, - 45.482544 - ], - [ - -73.396697, - 45.482522 - ], - [ - -73.397442, - 45.4821 - ], - [ - -73.397756, - 45.481959 - ], - [ - -73.397814, - 45.481933 - ], - [ - -73.398091, - 45.481826 - ], - [ - -73.398262, - 45.481785 - ], - [ - -73.398467, - 45.481727 - ], - [ - -73.398721, - 45.481664 - ], - [ - -73.398958, - 45.481632 - ], - [ - -73.398981, - 45.481629 - ], - [ - -73.399227, - 45.481602 - ], - [ - -73.399426, - 45.481575 - ], - [ - -73.399682, - 45.481548 - ], - [ - -73.399897, - 45.481539 - ], - [ - -73.400341, - 45.481544 - ], - [ - -73.401177, - 45.481549 - ], - [ - -73.401359, - 45.48155 - ], - [ - -73.401353, - 45.482238 - ], - [ - -73.4013, - 45.484402 - ], - [ - -73.4013, - 45.484403 - ], - [ - -73.401315, - 45.484488 - ], - [ - -73.400474, - 45.48563 - ], - [ - -73.400321, - 45.48584 - ] - ] - }, - "id": 111, - "properties": { - "id": "7ba6dc97-dc46-45a9-b2e1-f2c60a3b93ec", - "data": { - "gtfs": { - "shape_id": "42_1_R" - }, - "segments": [ - { - "distanceMeters": 1006, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 10885, - "travelTimeSeconds": 720 - }, - { - "distanceMeters": 695, - "travelTimeSeconds": 101 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 433, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 415, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 366, - "travelTimeSeconds": 85 - }, - { - "distanceMeters": 508, - "travelTimeSeconds": 118 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 42 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 264, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 22132, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 13062.319579171586, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.38, - "travelTimeWithoutDwellTimesSeconds": 2640, - "operatingTimeWithLayoverTimeSeconds": 2904, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2640, - "operatingSpeedWithLayoverMetersPerSecond": 7.62, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.38 - }, - "mode": "bus", - "name": "Parc de la Cité", - "color": "#A32638", - "nodes": [ - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", - "0f8ef5e7-ff7c-4097-8d8a-9727f12190ea", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "b6dfeeab-9981-4db8-9a90-2e14691bf516", - "bd9b4c12-08ed-4715-ae67-eb179ed7f974", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "ff779c9a-cd83-463a-8d0c-a93f3584a187", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", - "c8919560-2bb2-4063-8184-8e6c296badbe", - "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", - "0e293c4f-51c2-4ecd-9469-442389cb7915", - "e865e27f-7453-42b2-9745-a8e5425a0276", - "f7218298-f862-4f68-aabe-7a0d51011bc1", - "7f82f5fb-e61e-43a9-957c-0c400fd3ecbd", - "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "78262195-7c3a-4ed5-81d8-a33c906e3099", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "df4c6e14-8093-4f02-87d3-4b3d84466b04", - "7c34d8fb-52d2-4cf7-8954-ff69847540ac", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "7b30134c-a936-4c6b-8038-780d1041baea", - "9f7ffafe-2aab-4507-b571-cce792adfb7d", - "968b7b22-34c3-4022-8ddb-f9483ac7dca5", - "b50ae6c0-de25-4d7f-a9d6-e6512b40be80", - "df277747-60c8-4b3b-bafb-24f50e6b7964", - "2d9ef136-ec60-4019-bd4d-d2df55cc0477", - "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6" - ], - "stops": [], - "line_id": "b0ae745d-0a62-4849-894f-55aed31a5b79", - "segments": [ - 0, - 23, - 173, - 201, - 221, - 228, - 231, - 237, - 254, - 263, - 269, - 275, - 280, - 288, - 296, - 298, - 301, - 308, - 315, - 320, - 329, - 339, - 341, - 348, - 353, - 360, - 364, - 371, - 380, - 386, - 395, - 400, - 406, - 412, - 421, - 428, - 432 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 111, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469043, - 45.46624 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466402, - 45.465803 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467476, - 45.467991 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467548, - 45.468225 - ], - [ - -73.467698, - 45.468792 - ], - [ - -73.467776, - 45.469183 - ], - [ - -73.46782, - 45.469453 - ], - [ - -73.46784, - 45.469697 - ], - [ - -73.467865, - 45.469989 - ], - [ - -73.467864, - 45.470057 - ], - [ - -73.467862, - 45.470168 - ], - [ - -73.46786, - 45.470362 - ], - [ - -73.467828, - 45.470697 - ], - [ - -73.467821, - 45.470781 - ], - [ - -73.467786, - 45.471019 - ], - [ - -73.467768, - 45.4711 - ], - [ - -73.467579, - 45.47132 - ], - [ - -73.467528, - 45.471365 - ], - [ - -73.467462, - 45.471392 - ], - [ - -73.467361, - 45.47141 - ], - [ - -73.467264, - 45.471406 - ], - [ - -73.467156, - 45.471392 - ], - [ - -73.466545, - 45.47101 - ], - [ - -73.466292, - 45.470829 - ], - [ - -73.465866, - 45.470524 - ], - [ - -73.465275, - 45.470094 - ], - [ - -73.465197, - 45.470037 - ], - [ - -73.464559, - 45.469569 - ], - [ - -73.464, - 45.469161 - ], - [ - -73.463838, - 45.469043 - ], - [ - -73.463631, - 45.468892 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463257, - 45.46862 - ], - [ - -73.462702, - 45.468201 - ], - [ - -73.462471, - 45.468057 - ], - [ - -73.462195, - 45.467872 - ], - [ - -73.462016, - 45.467744 - ], - [ - -73.461894, - 45.467656 - ], - [ - -73.461788, - 45.46758 - ], - [ - -73.46133, - 45.467251 - ], - [ - -73.461109, - 45.467094 - ], - [ - -73.460905, - 45.466945 - ], - [ - -73.460727, - 45.466818 - ], - [ - -73.460722, - 45.466814 - ], - [ - -73.460629, - 45.466751 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.458934, - 45.465591 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457079, - 45.464307 - ], - [ - -73.456594, - 45.463956 - ], - [ - -73.45655, - 45.463924 - ], - [ - -73.455675, - 45.463282 - ], - [ - -73.454797, - 45.462637 - ], - [ - -73.454278, - 45.462276 - ], - [ - -73.454092, - 45.462406 - ], - [ - -73.454017, - 45.462437 - ], - [ - -73.453888, - 45.462462 - ], - [ - -73.453729, - 45.462455 - ], - [ - -73.453553, - 45.462428 - ], - [ - -73.453343, - 45.462373 - ], - [ - -73.453161, - 45.462302 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.452835, - 45.462344 - ], - [ - -73.452775, - 45.462447 - ], - [ - -73.452703, - 45.4626 - ], - [ - -73.45269, - 45.46264 - ], - [ - -73.452663, - 45.462722 - ], - [ - -73.452634, - 45.462879 - ], - [ - -73.45263, - 45.463001 - ], - [ - -73.452662, - 45.463158 - ], - [ - -73.452721, - 45.463379 - ], - [ - -73.452802, - 45.463536 - ], - [ - -73.452912, - 45.463662 - ], - [ - -73.45323, - 45.463908 - ], - [ - -73.453261, - 45.463932 - ], - [ - -73.453528, - 45.464128 - ], - [ - -73.453617, - 45.464193 - ], - [ - -73.453971, - 45.464449 - ], - [ - -73.45432, - 45.464702 - ], - [ - -73.454629, - 45.464917 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.457611, - 45.462231 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.45769, - 45.462033 - ], - [ - -73.457776, - 45.461966 - ], - [ - -73.45778, - 45.461865 - ], - [ - -73.457805, - 45.461716 - ], - [ - -73.457817, - 45.461563 - ], - [ - -73.45782, - 45.461477 - ], - [ - -73.457812, - 45.461383 - ], - [ - -73.457786, - 45.461212 - ], - [ - -73.457782, - 45.461196 - ], - [ - -73.457743, - 45.46105 - ], - [ - -73.457714, - 45.460928 - ], - [ - -73.457665, - 45.460784 - ], - [ - -73.457595, - 45.460627 - ], - [ - -73.457462, - 45.460379 - ], - [ - -73.457342, - 45.460166 - ], - [ - -73.456512, - 45.458696 - ], - [ - -73.456446, - 45.458579 - ], - [ - -73.455831, - 45.457474 - ], - [ - -73.455767, - 45.45736 - ], - [ - -73.455551, - 45.456955 - ], - [ - -73.455474, - 45.456802 - ], - [ - -73.455367, - 45.456563 - ], - [ - -73.455234, - 45.456113 - ], - [ - -73.455192, - 45.45589 - ], - [ - -73.455162, - 45.455731 - ], - [ - -73.455134, - 45.455281 - ], - [ - -73.455163, - 45.45493 - ], - [ - -73.455177, - 45.454772 - ], - [ - -73.455206, - 45.454588 - ], - [ - -73.455346, - 45.454111 - ], - [ - -73.455479, - 45.453796 - ], - [ - -73.455501, - 45.453755 - ], - [ - -73.455716, - 45.453355 - ], - [ - -73.455855, - 45.453148 - ], - [ - -73.455902, - 45.453077 - ], - [ - -73.456055, - 45.452883 - ], - [ - -73.45626, - 45.452645 - ], - [ - -73.456494, - 45.452415 - ], - [ - -73.45667, - 45.452253 - ], - [ - -73.457271, - 45.451733 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457807, - 45.451831 - ], - [ - -73.457924, - 45.451894 - ], - [ - -73.458487, - 45.4522 - ], - [ - -73.458707, - 45.452318 - ], - [ - -73.458941, - 45.452443 - ], - [ - -73.459713, - 45.452799 - ], - [ - -73.461206, - 45.45346 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.462893, - 45.454211 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463822, - 45.454609 - ], - [ - -73.464865, - 45.45505 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465851, - 45.455474 - ], - [ - -73.466482, - 45.45573 - ], - [ - -73.466742, - 45.45582 - ], - [ - -73.466794, - 45.455838 - ], - [ - -73.466905, - 45.455874 - ], - [ - -73.467229, - 45.455978 - ], - [ - -73.467462, - 45.456041 - ], - [ - -73.467802, - 45.456122 - ], - [ - -73.468107, - 45.456179 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468564, - 45.456262 - ], - [ - -73.468949, - 45.456316 - ], - [ - -73.469418, - 45.456365 - ], - [ - -73.469671, - 45.456392 - ], - [ - -73.470468, - 45.456429 - ], - [ - -73.471559, - 45.45646 - ], - [ - -73.472632, - 45.456497 - ], - [ - -73.473708, - 45.456537 - ], - [ - -73.474773, - 45.456569 - ], - [ - -73.475665, - 45.456588 - ], - [ - -73.475839, - 45.456592 - ], - [ - -73.479452, - 45.456713 - ], - [ - -73.479632, - 45.456719 - ], - [ - -73.479803, - 45.456723 - ], - [ - -73.482649, - 45.456832 - ], - [ - -73.482746, - 45.456836 - ], - [ - -73.483692, - 45.456872 - ], - [ - -73.485139, - 45.456916 - ], - [ - -73.486296, - 45.456952 - ], - [ - -73.48636, - 45.456954 - ], - [ - -73.488203, - 45.457017 - ], - [ - -73.489583, - 45.457065 - ], - [ - -73.489765, - 45.457071 - ], - [ - -73.489763, - 45.457296 - ], - [ - -73.489736, - 45.457408 - ], - [ - -73.489694, - 45.457516 - ], - [ - -73.489182, - 45.458344 - ], - [ - -73.489058, - 45.458542 - ], - [ - -73.488929, - 45.458754 - ], - [ - -73.488834, - 45.458991 - ], - [ - -73.488828, - 45.459006 - ], - [ - -73.488777, - 45.459727 - ], - [ - -73.488711, - 45.460671 - ], - [ - -73.488701, - 45.460814 - ], - [ - -73.488665, - 45.461414 - ], - [ - -73.488659, - 45.461512 - ], - [ - -73.488594, - 45.462464 - ], - [ - -73.488573, - 45.462762 - ], - [ - -73.488498, - 45.462929 - ], - [ - -73.488349, - 45.463109 - ], - [ - -73.488109, - 45.463235 - ], - [ - -73.487821, - 45.463302 - ], - [ - -73.487412, - 45.463379 - ], - [ - -73.487283, - 45.463388 - ], - [ - -73.487042, - 45.463406 - ], - [ - -73.486606, - 45.463401 - ], - [ - -73.486489, - 45.463401 - ], - [ - -73.486321, - 45.463433 - ], - [ - -73.486243, - 45.463455 - ], - [ - -73.486089, - 45.463495 - ], - [ - -73.485927, - 45.463564 - ], - [ - -73.485896, - 45.463576 - ], - [ - -73.485826, - 45.463612 - ], - [ - -73.485277, - 45.463878 - ], - [ - -73.485098, - 45.46395 - ], - [ - -73.484961, - 45.463999 - ], - [ - -73.484817, - 45.464035 - ], - [ - -73.484669, - 45.464067 - ], - [ - -73.484494, - 45.464076 - ], - [ - -73.484342, - 45.46408 - ], - [ - -73.48257, - 45.464048 - ], - [ - -73.482309, - 45.464098 - ], - [ - -73.482121, - 45.464147 - ], - [ - -73.481982, - 45.464183 - ], - [ - -73.481571, - 45.464347 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.480932, - 45.463792 - ], - [ - -73.480306, - 45.46304 - ], - [ - -73.47995, - 45.462614 - ], - [ - -73.479274, - 45.461807 - ], - [ - -73.478983, - 45.461465 - ], - [ - -73.478678, - 45.461105 - ], - [ - -73.47855, - 45.461011 - ], - [ - -73.478428, - 45.460902 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.476641, - 45.461978 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.474375, - 45.468231 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.473202, - 45.468294 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472931, - 45.468203 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.471425, - 45.468098 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469574, - 45.467137 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469043, - 45.46624 - ] - ] - }, - "id": 112, - "properties": { - "id": "e8501f0e-4285-4044-81bb-9a422356af93", - "data": { - "gtfs": { - "shape_id": "43_1_A" - }, - "segments": [ - { - "distanceMeters": 737, - "travelTimeSeconds": 103 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 433, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 471, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 119, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 593, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 363, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 750, - "travelTimeSeconds": 97 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 623, - "travelTimeSeconds": 81 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10858, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 0, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.96, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 6.24, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.96 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "acb7092d-3b2a-4d79-a4e3-09e7e52af475", - "42f48eea-ee59-46f6-9c43-4b63100a50dc", - "8e9afee7-e1de-4794-a91d-f9db0ef29ed2", - "ee43ab70-74a3-4a43-bfec-164062a98584", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "b6dfeeab-9981-4db8-9a90-2e14691bf516", - "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "ac84633b-6f3b-458c-8f4e-099cc310c05e", - "d271cca7-cd7a-4e22-8728-7a598b88fe32", - "f5f0a75d-b9e9-4575-845b-09748935c6e0", - "c77e59d9-5075-4e39-a183-6bacc1afd03e", - "59b4f87c-067e-4dc3-856a-07fb245d4fe3", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", - "2ac07b96-98be-4710-a749-3162a661fcb5", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "981ebecb-3dc2-4439-8648-8052a51df7ec", - "2a268094-fe95-4a75-83da-d02aa638cbb6", - "1782a1a7-eddc-4228-a7a8-bf733f339e68", - "9a86a407-515f-4b5e-8a56-9a4c52c91c96", - "ecb00316-793a-4c41-88bd-3870bea4d999", - "1d56d4cb-0ab2-44f2-924d-aa119de8c362", - "2f68c8b3-ace6-41af-8853-d72177e835fd", - "5a6d8067-b58d-4ab2-838e-422e8f003ee9", - "9c711698-0f65-4997-8a72-24f5d8ab8fb7", - "1339471a-52fa-47e9-b0e4-753bf917ef08", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "003bcf5e-54a8-471f-b008-b7fa64ff94ba", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "d02b4c09-d6fe-4b0b-9f40-be133215bbcd", - "segments": [ - 0, - 26, - 42, - 44, - 48, - 55, - 61, - 65, - 71, - 87, - 97, - 101, - 113, - 123, - 130, - 132, - 141, - 148, - 154, - 159, - 162, - 164, - 167, - 178, - 189, - 191, - 194, - 198, - 201, - 209, - 214, - 230, - 244, - 248, - 253, - 256, - 284, - 292, - 300 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 112, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469107, - 45.46587 - ], - [ - -73.469152, - 45.465801 - ], - [ - -73.469114, - 45.465711 - ], - [ - -73.469034, - 45.465669 - ], - [ - -73.468913, - 45.46567 - ], - [ - -73.468751, - 45.465752 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467294, - 45.46564 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466352, - 45.465288 - ], - [ - -73.466238, - 45.465062 - ], - [ - -73.466142, - 45.464853 - ], - [ - -73.466048, - 45.464638 - ], - [ - -73.46599, - 45.464498 - ], - [ - -73.465967, - 45.464441 - ], - [ - -73.465973, - 45.464235 - ], - [ - -73.466002, - 45.464038 - ], - [ - -73.466103, - 45.463865 - ], - [ - -73.466104, - 45.463863 - ], - [ - -73.466216, - 45.463756 - ], - [ - -73.466371, - 45.463679 - ], - [ - -73.466622, - 45.463647 - ], - [ - -73.466852, - 45.463668 - ], - [ - -73.467082, - 45.463784 - ], - [ - -73.467212, - 45.463951 - ], - [ - -73.467234, - 45.464135 - ], - [ - -73.467163, - 45.464287 - ], - [ - -73.467024, - 45.464416 - ], - [ - -73.466735, - 45.46451 - ], - [ - -73.466567, - 45.464522 - ], - [ - -73.465706, - 45.464485 - ], - [ - -73.464402, - 45.464429 - ], - [ - -73.463422, - 45.464395 - ], - [ - -73.462294, - 45.464357 - ], - [ - -73.461419, - 45.464323 - ], - [ - -73.460353, - 45.4642 - ], - [ - -73.459906, - 45.464144 - ], - [ - -73.459408, - 45.464052 - ], - [ - -73.458521, - 45.463796 - ], - [ - -73.458275, - 45.463724 - ], - [ - -73.457681, - 45.463496 - ], - [ - -73.457669, - 45.463491 - ], - [ - -73.456975, - 45.463149 - ], - [ - -73.456896, - 45.463092 - ], - [ - -73.456843, - 45.463043 - ], - [ - -73.456777, - 45.462977 - ], - [ - -73.456717, - 45.462912 - ], - [ - -73.456666, - 45.462833 - ], - [ - -73.456655, - 45.462813 - ], - [ - -73.456625, - 45.462758 - ], - [ - -73.456603, - 45.462667 - ], - [ - -73.456593, - 45.462539 - ], - [ - -73.4566, - 45.462399 - ], - [ - -73.456621, - 45.462264 - ], - [ - -73.456608, - 45.461964 - ], - [ - -73.457019, - 45.462007 - ], - [ - -73.457439, - 45.46205 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.458538, - 45.46218 - ], - [ - -73.458611, - 45.462189 - ], - [ - -73.459742, - 45.462333 - ], - [ - -73.460492, - 45.462278 - ], - [ - -73.460596, - 45.46227 - ], - [ - -73.461023, - 45.462239 - ], - [ - -73.461274, - 45.462221 - ], - [ - -73.46213, - 45.462145 - ], - [ - -73.462729, - 45.462095 - ], - [ - -73.462839, - 45.462082 - ], - [ - -73.462926, - 45.462051 - ], - [ - -73.463004, - 45.46201 - ], - [ - -73.463058, - 45.461956 - ], - [ - -73.463101, - 45.461866 - ], - [ - -73.463097, - 45.461763 - ], - [ - -73.463035, - 45.46138 - ], - [ - -73.462935, - 45.460758 - ], - [ - -73.462922, - 45.460678 - ], - [ - -73.462765, - 45.459533 - ], - [ - -73.462745, - 45.459391 - ], - [ - -73.462712, - 45.459175 - ], - [ - -73.462647, - 45.459013 - ], - [ - -73.462455, - 45.458766 - ], - [ - -73.462238, - 45.458487 - ], - [ - -73.462081, - 45.458239 - ], - [ - -73.461867, - 45.457825 - ], - [ - -73.461773, - 45.457468 - ], - [ - -73.46176, - 45.45742 - ], - [ - -73.461721, - 45.457015 - ], - [ - -73.461737, - 45.456795 - ], - [ - -73.461786, - 45.456489 - ], - [ - -73.461835, - 45.456326 - ], - [ - -73.461874, - 45.456197 - ], - [ - -73.462014, - 45.455891 - ], - [ - -73.462203, - 45.455612 - ], - [ - -73.462528, - 45.455151 - ], - [ - -73.462597, - 45.455054 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.461797, - 45.453573 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.461995, - 45.453092 - ], - [ - -73.462227, - 45.45284 - ], - [ - -73.462647, - 45.452373 - ], - [ - -73.462794, - 45.452251 - ], - [ - -73.463322, - 45.451863 - ], - [ - -73.463473, - 45.451752 - ], - [ - -73.464171, - 45.451253 - ], - [ - -73.464437, - 45.450996 - ], - [ - -73.464564, - 45.450822 - ], - [ - -73.464689, - 45.45065 - ], - [ - -73.465053, - 45.450083 - ], - [ - -73.465975, - 45.448646 - ], - [ - -73.466, - 45.448608 - ], - [ - -73.466078, - 45.448455 - ], - [ - -73.466096, - 45.44836 - ], - [ - -73.466204, - 45.447915 - ], - [ - -73.466314, - 45.447523 - ], - [ - -73.466576, - 45.447132 - ], - [ - -73.466916, - 45.446619 - ], - [ - -73.467114, - 45.446411 - ] - ] - }, - "id": 113, - "properties": { - "id": "8ba6f793-a23d-4bbe-a585-a7f393a475c5", - "data": { - "gtfs": { - "shape_id": "44_2_R" - }, - "segments": [ - { - "distanceMeters": 1632, - "travelTimeSeconds": 166 - }, - { - "distanceMeters": 87, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 48 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 4039, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2186.3644699692118, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.48, - "travelTimeWithoutDwellTimesSeconds": 540, - "operatingTimeWithLayoverTimeSeconds": 720, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 540, - "operatingSpeedWithLayoverMetersPerSecond": 5.61, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.48 - }, - "mode": "bus", - "name": "Sect. M-N-O Brossard", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "5d862a7d-92b0-4def-8199-258993ce3523", - "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", - "d0325326-9fbf-42e2-aefa-29fa09853c10", - "d13720b6-fb91-4a90-a816-addaef17cf17", - "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", - "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", - "5b030db6-8eaf-4505-a2c0-5a5290886d5b", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "90d9bb0e-4845-468b-af33-21831922eede", - "d300031f-a642-4e09-b48b-0e859400e1f7", - "27cd912d-c30d-4955-977f-68eb1e010190", - "809d30b8-456e-4e86-b782-8a6448d546e0" - ], - "stops": [], - "line_id": "740403f9-e874-4b22-96d1-770fdebef13f", - "segments": [ - 0, - 63, - 65, - 70, - 81, - 83, - 91, - 96, - 100, - 105, - 111, - 115, - 118 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 113, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.467114, - 45.446411 - ], - [ - -73.467388, - 45.446125 - ], - [ - -73.467467, - 45.446048 - ], - [ - -73.46755, - 45.445972 - ], - [ - -73.466635, - 45.445539 - ], - [ - -73.466252, - 45.445364 - ], - [ - -73.466048, - 45.445292 - ], - [ - -73.465811, - 45.44522 - ], - [ - -73.464202, - 45.444698 - ], - [ - -73.464073, - 45.444657 - ], - [ - -73.461826, - 45.443936 - ], - [ - -73.460756, - 45.443592 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.461189, - 45.442458 - ], - [ - -73.461249, - 45.442366 - ], - [ - -73.461921, - 45.441345 - ], - [ - -73.46199, - 45.441264 - ], - [ - -73.462043, - 45.441213 - ], - [ - -73.462145, - 45.441115 - ], - [ - -73.462213, - 45.441057 - ], - [ - -73.46187, - 45.440814 - ], - [ - -73.461732, - 45.440683 - ], - [ - -73.461652, - 45.440592 - ], - [ - -73.461122, - 45.439988 - ], - [ - -73.4611, - 45.439963 - ], - [ - -73.460879, - 45.439666 - ], - [ - -73.460804, - 45.439527 - ], - [ - -73.460756, - 45.439374 - ], - [ - -73.460732, - 45.439261 - ], - [ - -73.460749, - 45.439165 - ], - [ - -73.460753, - 45.439144 - ], - [ - -73.460775, - 45.43905 - ], - [ - -73.460824, - 45.438928 - ], - [ - -73.460899, - 45.438784 - ], - [ - -73.461528, - 45.437813 - ], - [ - -73.462047, - 45.437011 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.462943, - 45.436853 - ], - [ - -73.463269, - 45.436949 - ], - [ - -73.464723, - 45.437368 - ], - [ - -73.465091, - 45.437458 - ], - [ - -73.465119, - 45.437463 - ], - [ - -73.4653, - 45.437494 - ], - [ - -73.465515, - 45.437526 - ], - [ - -73.465864, - 45.437562 - ], - [ - -73.467655, - 45.437691 - ], - [ - -73.46781, - 45.437702 - ], - [ - -73.468967, - 45.437779 - ], - [ - -73.470109, - 45.437842 - ], - [ - -73.470307, - 45.437856 - ], - [ - -73.470561, - 45.437874 - ], - [ - -73.470756, - 45.437887 - ], - [ - -73.472271, - 45.438 - ], - [ - -73.472042, - 45.438344 - ], - [ - -73.471887, - 45.438576 - ], - [ - -73.471678, - 45.438891 - ], - [ - -73.470361, - 45.440881 - ], - [ - -73.470303, - 45.440969 - ], - [ - -73.470099, - 45.441352 - ], - [ - -73.470027, - 45.441639 - ], - [ - -73.470012, - 45.441666 - ], - [ - -73.469784, - 45.442018 - ], - [ - -73.469477, - 45.442492 - ], - [ - -73.469144, - 45.443007 - ], - [ - -73.469051, - 45.443151 - ], - [ - -73.468613, - 45.443844 - ], - [ - -73.468216, - 45.444456 - ], - [ - -73.468179, - 45.444519 - ], - [ - -73.468126, - 45.444631 - ], - [ - -73.468082, - 45.444748 - ], - [ - -73.468044, - 45.444901 - ], - [ - -73.468021, - 45.445022 - ], - [ - -73.467959, - 45.445234 - ], - [ - -73.467968, - 45.445351 - ], - [ - -73.467947, - 45.445454 - ], - [ - -73.467879, - 45.445603 - ], - [ - -73.467843, - 45.445639 - ], - [ - -73.467743, - 45.445738 - ], - [ - -73.46755, - 45.445972 - ], - [ - -73.467467, - 45.446048 - ], - [ - -73.467388, - 45.446125 - ], - [ - -73.466916, - 45.446619 - ], - [ - -73.466576, - 45.447132 - ], - [ - -73.466314, - 45.447523 - ], - [ - -73.466204, - 45.447915 - ], - [ - -73.466096, - 45.44836 - ], - [ - -73.466078, - 45.448455 - ], - [ - -73.466037, - 45.448534 - ], - [ - -73.466, - 45.448608 - ], - [ - -73.465053, - 45.450083 - ], - [ - -73.464779, - 45.45051 - ], - [ - -73.464689, - 45.45065 - ], - [ - -73.464437, - 45.450996 - ], - [ - -73.464171, - 45.451253 - ], - [ - -73.463612, - 45.451652 - ], - [ - -73.463473, - 45.451752 - ], - [ - -73.462794, - 45.452251 - ], - [ - -73.462647, - 45.452373 - ], - [ - -73.462227, - 45.45284 - ], - [ - -73.461995, - 45.453092 - ], - [ - -73.461764, - 45.45334 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.462889, - 45.454209 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.462597, - 45.455054 - ], - [ - -73.462203, - 45.455612 - ], - [ - -73.462014, - 45.455891 - ], - [ - -73.461932, - 45.456069 - ], - [ - -73.461874, - 45.456197 - ], - [ - -73.461786, - 45.456489 - ], - [ - -73.461778, - 45.456537 - ], - [ - -73.461737, - 45.456795 - ], - [ - -73.461721, - 45.457015 - ], - [ - -73.461745, - 45.457266 - ], - [ - -73.46176, - 45.45742 - ], - [ - -73.461867, - 45.457825 - ], - [ - -73.462081, - 45.458239 - ], - [ - -73.462238, - 45.458487 - ], - [ - -73.462455, - 45.458766 - ], - [ - -73.462604, - 45.458958 - ], - [ - -73.462647, - 45.459013 - ], - [ - -73.462712, - 45.459175 - ], - [ - -73.462745, - 45.459391 - ], - [ - -73.463665, - 45.459345 - ], - [ - -73.464994, - 45.459278 - ], - [ - -73.465215, - 45.461562 - ], - [ - -73.465247, - 45.461893 - ], - [ - -73.465328, - 45.462497 - ], - [ - -73.465435, - 45.463211 - ], - [ - -73.465484, - 45.463543 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.468602, - 45.466372 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.46904, - 45.466283 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469319, - 45.467991 - ], - [ - -73.469043, - 45.467983 - ], - [ - -73.468598, - 45.467969 - ], - [ - -73.468434, - 45.467978 - ], - [ - -73.467926, - 45.468045 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.46758, - 45.467757 - ], - [ - -73.467357, - 45.467296 - ], - [ - -73.467335, - 45.467098 - ], - [ - -73.467287, - 45.466921 - ], - [ - -73.46724, - 45.46679 - ], - [ - -73.467201, - 45.466621 - ], - [ - -73.467171, - 45.466457 - ], - [ - -73.467168, - 45.466361 - ], - [ - -73.467171, - 45.466266 - ], - [ - -73.46719, - 45.46616 - ], - [ - -73.467233, - 45.466051 - ], - [ - -73.467286, - 45.465947 - ], - [ - -73.467286, - 45.465946 - ], - [ - -73.467347, - 45.465852 - ], - [ - -73.46743, - 45.465768 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467565, - 45.465647 - ], - [ - -73.467708, - 45.465556 - ], - [ - -73.467899, - 45.465442 - ], - [ - -73.46805, - 45.465387 - ], - [ - -73.468287, - 45.465321 - ], - [ - -73.468514, - 45.465288 - ], - [ - -73.468859, - 45.465256 - ], - [ - -73.469207, - 45.465245 - ], - [ - -73.471824, - 45.46534 - ], - [ - -73.47278, - 45.465351 - ], - [ - -73.473923, - 45.465346 - ], - [ - -73.474792, - 45.465284 - ], - [ - -73.476448, - 45.465339 - ], - [ - -73.478069, - 45.465419 - ], - [ - -73.47931, - 45.465481 - ], - [ - -73.480681, - 45.465584 - ], - [ - -73.481658, - 45.465665 - ], - [ - -73.483804, - 45.465854 - ], - [ - -73.485886, - 45.466123 - ], - [ - -73.488038, - 45.466444 - ], - [ - -73.489088, - 45.466602 - ], - [ - -73.491585, - 45.46694 - ], - [ - -73.494707, - 45.467307 - ], - [ - -73.494917, - 45.467332 - ], - [ - -73.494999, - 45.467342 - ], - [ - -73.497318, - 45.467635 - ], - [ - -73.501976, - 45.468162 - ], - [ - -73.50546, - 45.468524 - ], - [ - -73.508994, - 45.468874 - ], - [ - -73.510795, - 45.469064 - ], - [ - -73.516615, - 45.469606 - ], - [ - -73.520513, - 45.469901 - ], - [ - -73.524263, - 45.470138 - ], - [ - -73.526895, - 45.470234 - ], - [ - -73.536203, - 45.470502 - ], - [ - -73.537479, - 45.470611 - ], - [ - -73.540035, - 45.470737 - ], - [ - -73.540574, - 45.470754 - ], - [ - -73.541689, - 45.470806 - ], - [ - -73.54236, - 45.470938 - ], - [ - -73.542685, - 45.471019 - ], - [ - -73.543056, - 45.471172 - ], - [ - -73.543235, - 45.471297 - ], - [ - -73.543427, - 45.47153 - ], - [ - -73.543495, - 45.471781 - ], - [ - -73.543487, - 45.471977 - ], - [ - -73.543374, - 45.472246 - ], - [ - -73.543123, - 45.472648 - ], - [ - -73.543053, - 45.472745 - ], - [ - -73.543034, - 45.472772 - ], - [ - -73.543013, - 45.472801 - ], - [ - -73.542473, - 45.473549 - ], - [ - -73.542275, - 45.473832 - ], - [ - -73.542255, - 45.473861 - ], - [ - -73.542175, - 45.473976 - ], - [ - -73.542016, - 45.474229 - ], - [ - -73.541794, - 45.474618 - ], - [ - -73.541458, - 45.475221 - ], - [ - -73.541094, - 45.47588 - ], - [ - -73.540722, - 45.476557 - ], - [ - -73.540393, - 45.477154 - ], - [ - -73.540141, - 45.477612 - ], - [ - -73.539989, - 45.477937 - ], - [ - -73.539912, - 45.478117 - ], - [ - -73.53962, - 45.478792 - ], - [ - -73.539453, - 45.479242 - ], - [ - -73.539011, - 45.480452 - ], - [ - -73.538771, - 45.481137 - ], - [ - -73.538372, - 45.4823 - ], - [ - -73.537796, - 45.483909 - ], - [ - -73.537682, - 45.484235 - ], - [ - -73.537533, - 45.484742 - ], - [ - -73.537501, - 45.485252 - ], - [ - -73.537565, - 45.485765 - ], - [ - -73.537725, - 45.486206 - ], - [ - -73.537953, - 45.486613 - ], - [ - -73.538211, - 45.486968 - ], - [ - -73.538564, - 45.487319 - ], - [ - -73.538991, - 45.48766 - ], - [ - -73.539413, - 45.487933 - ], - [ - -73.540409, - 45.488352 - ], - [ - -73.540999, - 45.488508 - ], - [ - -73.545779, - 45.489431 - ], - [ - -73.547415, - 45.489732 - ], - [ - -73.548107, - 45.48986 - ], - [ - -73.549549, - 45.490154 - ], - [ - -73.549968, - 45.490239 - ], - [ - -73.550646, - 45.490459 - ], - [ - -73.551261, - 45.490742 - ], - [ - -73.55163, - 45.490924 - ], - [ - -73.551996, - 45.491154 - ], - [ - -73.552466, - 45.491495 - ], - [ - -73.552812, - 45.491812 - ], - [ - -73.553225, - 45.492293 - ], - [ - -73.553459, - 45.492647 - ], - [ - -73.553701, - 45.493121 - ], - [ - -73.553714, - 45.493155 - ], - [ - -73.554005, - 45.493935 - ], - [ - -73.554229, - 45.494495 - ], - [ - -73.55441, - 45.494962 - ], - [ - -73.554709, - 45.495574 - ], - [ - -73.554963, - 45.495825 - ], - [ - -73.555225, - 45.496022 - ], - [ - -73.555665, - 45.496222 - ], - [ - -73.557268, - 45.496821 - ], - [ - -73.557934, - 45.497074 - ], - [ - -73.55851, - 45.49729 - ], - [ - -73.558754, - 45.497382 - ], - [ - -73.559665, - 45.497799 - ], - [ - -73.559804, - 45.497871 - ], - [ - -73.56055, - 45.498258 - ], - [ - -73.561247, - 45.498577 - ], - [ - -73.561574, - 45.498701 - ], - [ - -73.561917, - 45.498838 - ], - [ - -73.562165, - 45.49894 - ], - [ - -73.562545, - 45.499119 - ], - [ - -73.562571, - 45.499093 - ], - [ - -73.562654, - 45.499004 - ], - [ - -73.563341, - 45.498281 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.56431, - 45.497835 - ], - [ - -73.565142, - 45.498217 - ], - [ - -73.565601, - 45.498443 - ], - [ - -73.565748, - 45.49831 - ], - [ - -73.565849, - 45.498292 - ], - [ - -73.566051, - 45.498359 - ], - [ - -73.566361, - 45.498471 - ], - [ - -73.566492, - 45.498485 - ], - [ - -73.566611, - 45.498345 - ] - ] - }, - "id": 114, - "properties": { - "id": "8a40e1c8-f95e-4126-9002-a4682331de81", - "data": { - "gtfs": { - "shape_id": "44_1_A" - }, - "segments": [ - { - "distanceMeters": 358, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 1136, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 10800, - "travelTimeSeconds": 720 - }, - { - "distanceMeters": 830, - "travelTimeSeconds": 480 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 204, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17864, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 9681.943592335054, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.76, - "travelTimeWithoutDwellTimesSeconds": 2040, - "operatingTimeWithLayoverTimeSeconds": 2244, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2040, - "operatingSpeedWithLayoverMetersPerSecond": 7.96, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.76 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "809d30b8-456e-4e86-b782-8a6448d546e0", - "ae5cac19-c84c-4e41-ae57-bbf3b3bda217", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "9b31d865-da9f-4eb8-b8a9-3d488eb579df", - "b93691d0-438e-4eac-87a0-7c1ac45a7c18", - "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", - "19a4f64a-0169-40b9-8b9c-84de3158151e", - "c7e2639a-bb94-426e-918b-714f0212d53b", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", - "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "e13d482c-ee57-4f7d-bc38-264ca460deda", - "daacedd2-0b84-4f73-9f01-d9072ec32dce", - "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", - "e7ac28b2-1ac9-4d12-811f-8e49f5a7d7ab", - "27cd912d-c30d-4955-977f-68eb1e010190", - "d300031f-a642-4e09-b48b-0e859400e1f7", - "90d9bb0e-4845-468b-af33-21831922eede", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", - "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", - "d13720b6-fb91-4a90-a816-addaef17cf17", - "80775ca9-8434-48d9-a65d-5f3eace6e2d8", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "461a5d33-406e-481a-b773-6e450c48b670", - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" - ], - "stops": [], - "line_id": "740403f9-e874-4b22-96d1-770fdebef13f", - "segments": [ - 0, - 8, - 11, - 13, - 17, - 23, - 29, - 34, - 35, - 41, - 45, - 49, - 54, - 56, - 63, - 76, - 87, - 90, - 94, - 100, - 103, - 108, - 114, - 120, - 124, - 157, - 302 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 114, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.467114, - 45.446411 - ], - [ - -73.467388, - 45.446125 - ], - [ - -73.467467, - 45.446048 - ], - [ - -73.46755, - 45.445972 - ], - [ - -73.466635, - 45.445539 - ], - [ - -73.466252, - 45.445364 - ], - [ - -73.466048, - 45.445292 - ], - [ - -73.465811, - 45.44522 - ], - [ - -73.464199, - 45.444697 - ], - [ - -73.464073, - 45.444657 - ], - [ - -73.461826, - 45.443936 - ], - [ - -73.460751, - 45.44359 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.461192, - 45.442454 - ], - [ - -73.461249, - 45.442366 - ], - [ - -73.461921, - 45.441345 - ], - [ - -73.46199, - 45.441264 - ], - [ - -73.462047, - 45.441209 - ], - [ - -73.462145, - 45.441115 - ], - [ - -73.462213, - 45.441057 - ], - [ - -73.46187, - 45.440814 - ], - [ - -73.461732, - 45.440683 - ], - [ - -73.461652, - 45.440592 - ], - [ - -73.461117, - 45.439982 - ], - [ - -73.4611, - 45.439963 - ], - [ - -73.460879, - 45.439666 - ], - [ - -73.460804, - 45.439527 - ], - [ - -73.460756, - 45.439374 - ], - [ - -73.460732, - 45.439261 - ], - [ - -73.46075, - 45.439158 - ], - [ - -73.460753, - 45.439144 - ], - [ - -73.460775, - 45.43905 - ], - [ - -73.460824, - 45.438928 - ], - [ - -73.460899, - 45.438784 - ], - [ - -73.461533, - 45.437805 - ], - [ - -73.462052, - 45.437003 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.462943, - 45.436853 - ], - [ - -73.463269, - 45.436949 - ], - [ - -73.464723, - 45.437368 - ], - [ - -73.465091, - 45.437458 - ], - [ - -73.465133, - 45.437466 - ], - [ - -73.4653, - 45.437494 - ], - [ - -73.465515, - 45.437526 - ], - [ - -73.465864, - 45.437562 - ], - [ - -73.467672, - 45.437692 - ], - [ - -73.46781, - 45.437702 - ], - [ - -73.468967, - 45.437779 - ], - [ - -73.470109, - 45.437842 - ], - [ - -73.470325, - 45.437857 - ], - [ - -73.470561, - 45.437874 - ], - [ - -73.470756, - 45.437887 - ], - [ - -73.472271, - 45.438 - ], - [ - -73.472042, - 45.438344 - ], - [ - -73.471879, - 45.438589 - ], - [ - -73.471678, - 45.438891 - ], - [ - -73.470352, - 45.440895 - ], - [ - -73.470303, - 45.440969 - ], - [ - -73.470099, - 45.441352 - ], - [ - -73.470027, - 45.441639 - ], - [ - -73.470012, - 45.441666 - ], - [ - -73.469784, - 45.442018 - ], - [ - -73.469477, - 45.442492 - ], - [ - -73.469134, - 45.443023 - ], - [ - -73.469051, - 45.443151 - ], - [ - -73.468613, - 45.443844 - ], - [ - -73.468216, - 45.444456 - ], - [ - -73.468179, - 45.444519 - ], - [ - -73.468126, - 45.444631 - ], - [ - -73.468082, - 45.444748 - ], - [ - -73.468044, - 45.444901 - ], - [ - -73.468021, - 45.445022 - ], - [ - -73.467959, - 45.445234 - ], - [ - -73.467968, - 45.445351 - ], - [ - -73.467947, - 45.445454 - ], - [ - -73.467879, - 45.445603 - ], - [ - -73.467828, - 45.445654 - ], - [ - -73.467743, - 45.445738 - ], - [ - -73.46755, - 45.445972 - ], - [ - -73.467467, - 45.446048 - ], - [ - -73.467388, - 45.446125 - ], - [ - -73.466916, - 45.446619 - ], - [ - -73.466576, - 45.447132 - ], - [ - -73.466314, - 45.447523 - ], - [ - -73.466204, - 45.447915 - ], - [ - -73.466096, - 45.44836 - ], - [ - -73.466078, - 45.448455 - ], - [ - -73.466027, - 45.448554 - ], - [ - -73.466, - 45.448608 - ], - [ - -73.465053, - 45.450083 - ], - [ - -73.464766, - 45.450531 - ], - [ - -73.464689, - 45.45065 - ], - [ - -73.464437, - 45.450996 - ], - [ - -73.464171, - 45.451253 - ], - [ - -73.463589, - 45.451669 - ], - [ - -73.463473, - 45.451752 - ], - [ - -73.462794, - 45.452251 - ], - [ - -73.462647, - 45.452373 - ], - [ - -73.462227, - 45.45284 - ], - [ - -73.461995, - 45.453092 - ], - [ - -73.461744, - 45.45336 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.46292, - 45.454223 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.462597, - 45.455054 - ], - [ - -73.462203, - 45.455612 - ], - [ - -73.462014, - 45.455891 - ], - [ - -73.461921, - 45.456095 - ], - [ - -73.461874, - 45.456197 - ], - [ - -73.461786, - 45.456489 - ], - [ - -73.461778, - 45.456537 - ], - [ - -73.461737, - 45.456795 - ], - [ - -73.461721, - 45.457015 - ], - [ - -73.461748, - 45.457294 - ], - [ - -73.46176, - 45.45742 - ], - [ - -73.461867, - 45.457825 - ], - [ - -73.462081, - 45.458239 - ], - [ - -73.462238, - 45.458487 - ], - [ - -73.462455, - 45.458766 - ], - [ - -73.462624, - 45.458983 - ], - [ - -73.462647, - 45.459013 - ], - [ - -73.462712, - 45.459175 - ], - [ - -73.462745, - 45.459391 - ], - [ - -73.463708, - 45.459343 - ], - [ - -73.464994, - 45.459278 - ], - [ - -73.465215, - 45.461562 - ], - [ - -73.465247, - 45.461893 - ], - [ - -73.465328, - 45.462497 - ], - [ - -73.465435, - 45.463211 - ], - [ - -73.465484, - 45.463543 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.46908, - 45.465912 - ], - [ - -73.469107, - 45.46587 - ] - ] - }, - "id": 115, - "properties": { - "id": "38fab6c6-9b27-4886-b4e6-f71476d1c8a5", - "data": { - "gtfs": { - "shape_id": "44_2_A" - }, - "segments": [ - { - "distanceMeters": 358, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 1052, - "travelTimeSeconds": 360 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6154, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2186.3644699692118, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.7, - "travelTimeWithoutDwellTimesSeconds": 1080, - "operatingTimeWithLayoverTimeSeconds": 1260, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1080, - "operatingSpeedWithLayoverMetersPerSecond": 4.88, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.7 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "809d30b8-456e-4e86-b782-8a6448d546e0", - "ae5cac19-c84c-4e41-ae57-bbf3b3bda217", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "9b31d865-da9f-4eb8-b8a9-3d488eb579df", - "b93691d0-438e-4eac-87a0-7c1ac45a7c18", - "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", - "19a4f64a-0169-40b9-8b9c-84de3158151e", - "c7e2639a-bb94-426e-918b-714f0212d53b", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", - "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "e13d482c-ee57-4f7d-bc38-264ca460deda", - "daacedd2-0b84-4f73-9f01-d9072ec32dce", - "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", - "e7ac28b2-1ac9-4d12-811f-8e49f5a7d7ab", - "27cd912d-c30d-4955-977f-68eb1e010190", - "d300031f-a642-4e09-b48b-0e859400e1f7", - "90d9bb0e-4845-468b-af33-21831922eede", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", - "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", - "d13720b6-fb91-4a90-a816-addaef17cf17", - "80775ca9-8434-48d9-a65d-5f3eace6e2d8", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "740403f9-e874-4b22-96d1-770fdebef13f", - "segments": [ - 0, - 8, - 11, - 13, - 17, - 23, - 29, - 34, - 35, - 41, - 45, - 49, - 54, - 56, - 63, - 76, - 87, - 90, - 94, - 100, - 103, - 108, - 114, - 120, - 124 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 115, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.566611, - 45.498345 - ], - [ - -73.566738, - 45.498195 - ], - [ - -73.566628, - 45.49808 - ], - [ - -73.566306, - 45.497931 - ], - [ - -73.566253, - 45.497841 - ], - [ - -73.56638, - 45.497699 - ], - [ - -73.566016, - 45.497523 - ], - [ - -73.564691, - 45.496892 - ], - [ - -73.563974, - 45.496566 - ], - [ - -73.562701, - 45.495919 - ], - [ - -73.562651, - 45.496018 - ], - [ - -73.562646, - 45.496027 - ], - [ - -73.562481, - 45.496317 - ], - [ - -73.562367, - 45.496479 - ], - [ - -73.562274, - 45.496658 - ], - [ - -73.562038, - 45.497108 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.561446, - 45.497988 - ], - [ - -73.561033, - 45.497765 - ], - [ - -73.560139, - 45.497347 - ], - [ - -73.559235, - 45.49696 - ], - [ - -73.55917, - 45.496938 - ], - [ - -73.558356, - 45.496631 - ], - [ - -73.558149, - 45.496557 - ], - [ - -73.557604, - 45.496364 - ], - [ - -73.556782, - 45.49606 - ], - [ - -73.555745, - 45.495673 - ], - [ - -73.555351, - 45.495512 - ], - [ - -73.555133, - 45.495401 - ], - [ - -73.554916, - 45.495262 - ], - [ - -73.554768, - 45.495125 - ], - [ - -73.55465, - 45.494994 - ], - [ - -73.553944, - 45.493258 - ], - [ - -73.553818, - 45.492971 - ], - [ - -73.553465, - 45.492338 - ], - [ - -73.552977, - 45.491759 - ], - [ - -73.552502, - 45.491344 - ], - [ - -73.551956, - 45.490962 - ], - [ - -73.551651, - 45.490791 - ], - [ - -73.551074, - 45.490513 - ], - [ - -73.550682, - 45.490367 - ], - [ - -73.550312, - 45.490228 - ], - [ - -73.54956, - 45.490034 - ], - [ - -73.548355, - 45.489798 - ], - [ - -73.542648, - 45.488704 - ], - [ - -73.541878, - 45.488554 - ], - [ - -73.541083, - 45.488397 - ], - [ - -73.540636, - 45.488282 - ], - [ - -73.540145, - 45.488119 - ], - [ - -73.539582, - 45.48786 - ], - [ - -73.539239, - 45.487663 - ], - [ - -73.538946, - 45.487462 - ], - [ - -73.538893, - 45.487419 - ], - [ - -73.538619, - 45.487192 - ], - [ - -73.538304, - 45.486863 - ], - [ - -73.538089, - 45.486564 - ], - [ - -73.537862, - 45.486139 - ], - [ - -73.537796, - 45.485958 - ], - [ - -73.537731, - 45.485785 - ], - [ - -73.53767, - 45.485461 - ], - [ - -73.537646, - 45.485264 - ], - [ - -73.537653, - 45.484914 - ], - [ - -73.537707, - 45.484604 - ], - [ - -73.537881, - 45.484168 - ], - [ - -73.537968, - 45.483893 - ], - [ - -73.538058, - 45.483623 - ], - [ - -73.539557, - 45.479354 - ], - [ - -73.53982, - 45.478652 - ], - [ - -73.540179, - 45.47782 - ], - [ - -73.540481, - 45.477177 - ], - [ - -73.540578, - 45.477027 - ], - [ - -73.540928, - 45.476409 - ], - [ - -73.5413, - 45.475732 - ], - [ - -73.541747, - 45.474937 - ], - [ - -73.542136, - 45.474264 - ], - [ - -73.542539, - 45.47363 - ], - [ - -73.543159, - 45.472786 - ], - [ - -73.543162, - 45.472781 - ], - [ - -73.5432, - 45.472729 - ], - [ - -73.543381, - 45.472482 - ], - [ - -73.543908, - 45.471834 - ], - [ - -73.544604, - 45.471016 - ], - [ - -73.54479, - 45.470824 - ], - [ - -73.544929, - 45.470679 - ], - [ - -73.54509, - 45.470477 - ], - [ - -73.545159, - 45.470391 - ], - [ - -73.545162, - 45.470289 - ], - [ - -73.54518, - 45.470102 - ], - [ - -73.54513, - 45.469912 - ], - [ - -73.545032, - 45.469762 - ], - [ - -73.544829, - 45.469589 - ], - [ - -73.544396, - 45.469456 - ], - [ - -73.544223, - 45.469408 - ], - [ - -73.544, - 45.469414 - ], - [ - -73.54385, - 45.469436 - ], - [ - -73.543665, - 45.469485 - ], - [ - -73.543125, - 45.469658 - ], - [ - -73.542795, - 45.46978 - ], - [ - -73.542335, - 45.469915 - ], - [ - -73.542042, - 45.469974 - ], - [ - -73.541634, - 45.469988 - ], - [ - -73.538583, - 45.470121 - ], - [ - -73.536645, - 45.47012 - ], - [ - -73.534843, - 45.470106 - ], - [ - -73.531663, - 45.470044 - ], - [ - -73.528901, - 45.469979 - ], - [ - -73.525636, - 45.469864 - ], - [ - -73.520215, - 45.469565 - ], - [ - -73.516228, - 45.469261 - ], - [ - -73.50737, - 45.468395 - ], - [ - -73.501604, - 45.467786 - ], - [ - -73.499262, - 45.467514 - ], - [ - -73.493921, - 45.466881 - ], - [ - -73.491932, - 45.466645 - ], - [ - -73.489852, - 45.466348 - ], - [ - -73.489119, - 45.46624 - ], - [ - -73.489027, - 45.466226 - ], - [ - -73.486848, - 45.465931 - ], - [ - -73.485714, - 45.465782 - ], - [ - -73.482904, - 45.465439 - ], - [ - -73.482123, - 45.46537 - ], - [ - -73.479736, - 45.465191 - ], - [ - -73.47968, - 45.465187 - ], - [ - -73.478363, - 45.465119 - ], - [ - -73.477796, - 45.465089 - ], - [ - -73.475753, - 45.464994 - ], - [ - -73.474695, - 45.464942 - ], - [ - -73.474262, - 45.464921 - ], - [ - -73.474113, - 45.464916 - ], - [ - -73.473291, - 45.464882 - ], - [ - -73.472501, - 45.46485 - ], - [ - -73.471447, - 45.46476 - ], - [ - -73.469875, - 45.464616 - ], - [ - -73.469333, - 45.464554 - ], - [ - -73.46902, - 45.464515 - ], - [ - -73.468704, - 45.464452 - ], - [ - -73.468392, - 45.464367 - ], - [ - -73.468066, - 45.46424 - ], - [ - -73.467826, - 45.46409 - ], - [ - -73.467593, - 45.463944 - ], - [ - -73.467415, - 45.463833 - ], - [ - -73.467133, - 45.463667 - ], - [ - -73.466953, - 45.463591 - ], - [ - -73.466529, - 45.463529 - ], - [ - -73.466232, - 45.463594 - ], - [ - -73.466092, - 45.463623 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46852, - 45.466369 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469044, - 45.46622 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466352, - 45.465288 - ], - [ - -73.466238, - 45.465062 - ], - [ - -73.466142, - 45.464853 - ], - [ - -73.466048, - 45.464638 - ], - [ - -73.46599, - 45.464498 - ], - [ - -73.465967, - 45.464441 - ], - [ - -73.465973, - 45.464235 - ], - [ - -73.465993, - 45.464101 - ], - [ - -73.466002, - 45.464038 - ], - [ - -73.466104, - 45.463863 - ], - [ - -73.466216, - 45.463756 - ], - [ - -73.466371, - 45.463679 - ], - [ - -73.466622, - 45.463647 - ], - [ - -73.466852, - 45.463668 - ], - [ - -73.467082, - 45.463784 - ], - [ - -73.467212, - 45.463951 - ], - [ - -73.467234, - 45.464135 - ], - [ - -73.467163, - 45.464287 - ], - [ - -73.467024, - 45.464416 - ], - [ - -73.466735, - 45.46451 - ], - [ - -73.466567, - 45.464522 - ], - [ - -73.465706, - 45.464485 - ], - [ - -73.464402, - 45.464429 - ], - [ - -73.463422, - 45.464395 - ], - [ - -73.462294, - 45.464357 - ], - [ - -73.461419, - 45.464323 - ], - [ - -73.460353, - 45.4642 - ], - [ - -73.459906, - 45.464144 - ], - [ - -73.459408, - 45.464052 - ], - [ - -73.458521, - 45.463796 - ], - [ - -73.458275, - 45.463724 - ], - [ - -73.457681, - 45.463496 - ], - [ - -73.457669, - 45.463491 - ], - [ - -73.456975, - 45.463149 - ], - [ - -73.456896, - 45.463092 - ], - [ - -73.456843, - 45.463043 - ], - [ - -73.456777, - 45.462977 - ], - [ - -73.456717, - 45.462912 - ], - [ - -73.456666, - 45.462833 - ], - [ - -73.456625, - 45.462758 - ], - [ - -73.456603, - 45.462667 - ], - [ - -73.456593, - 45.462539 - ], - [ - -73.4566, - 45.462399 - ], - [ - -73.456621, - 45.462264 - ], - [ - -73.456612, - 45.462071 - ], - [ - -73.456608, - 45.461964 - ], - [ - -73.457019, - 45.462007 - ], - [ - -73.45746, - 45.462052 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.458559, - 45.462182 - ], - [ - -73.458611, - 45.462189 - ], - [ - -73.459742, - 45.462333 - ], - [ - -73.460308, - 45.462292 - ], - [ - -73.460596, - 45.46227 - ], - [ - -73.461042, - 45.462238 - ], - [ - -73.461274, - 45.462221 - ], - [ - -73.46213, - 45.462145 - ], - [ - -73.462729, - 45.462095 - ], - [ - -73.462839, - 45.462082 - ], - [ - -73.462926, - 45.462051 - ], - [ - -73.463004, - 45.46201 - ], - [ - -73.463058, - 45.461956 - ], - [ - -73.463101, - 45.461866 - ], - [ - -73.463097, - 45.461763 - ], - [ - -73.463035, - 45.46138 - ], - [ - -73.462933, - 45.460747 - ], - [ - -73.462922, - 45.460678 - ], - [ - -73.462763, - 45.459522 - ], - [ - -73.462745, - 45.459391 - ], - [ - -73.462724, - 45.459253 - ], - [ - -73.462712, - 45.459175 - ], - [ - -73.462647, - 45.459013 - ], - [ - -73.462455, - 45.458766 - ], - [ - -73.462238, - 45.458487 - ], - [ - -73.462081, - 45.458239 - ], - [ - -73.461867, - 45.457825 - ], - [ - -73.46177, - 45.457459 - ], - [ - -73.46176, - 45.45742 - ], - [ - -73.461721, - 45.457015 - ], - [ - -73.461737, - 45.456795 - ], - [ - -73.461786, - 45.456489 - ], - [ - -73.461838, - 45.456318 - ], - [ - -73.461874, - 45.456197 - ], - [ - -73.462014, - 45.455891 - ], - [ - -73.462203, - 45.455612 - ], - [ - -73.462533, - 45.455145 - ], - [ - -73.462597, - 45.455054 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.46179, - 45.45357 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.461995, - 45.453092 - ], - [ - -73.462227, - 45.45284 - ], - [ - -73.462647, - 45.452373 - ], - [ - -73.462794, - 45.452251 - ], - [ - -73.463326, - 45.45186 - ], - [ - -73.463473, - 45.451752 - ], - [ - -73.464171, - 45.451253 - ], - [ - -73.464437, - 45.450996 - ], - [ - -73.464566, - 45.450819 - ], - [ - -73.464689, - 45.45065 - ], - [ - -73.465053, - 45.450083 - ], - [ - -73.465976, - 45.448645 - ], - [ - -73.466, - 45.448608 - ], - [ - -73.466078, - 45.448455 - ], - [ - -73.466096, - 45.44836 - ], - [ - -73.466204, - 45.447915 - ], - [ - -73.466314, - 45.447523 - ], - [ - -73.466576, - 45.447132 - ], - [ - -73.466916, - 45.446619 - ], - [ - -73.467114, - 45.446411 - ] - ] - }, - "id": 116, - "properties": { - "id": "0e360d4a-65a1-4bde-ba04-e298e442b70b", - "data": { - "gtfs": { - "shape_id": "44_1_R" - }, - "segments": [ - { - "distanceMeters": 1006, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 10884, - "travelTimeSeconds": 1020 - }, - { - "distanceMeters": 1652, - "travelTimeSeconds": 167 - }, - { - "distanceMeters": 87, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 57 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 15946, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 9681.943592335054, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.86, - "travelTimeWithoutDwellTimesSeconds": 1800, - "operatingTimeWithLayoverTimeSeconds": 1980, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1800, - "operatingSpeedWithLayoverMetersPerSecond": 8.05, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.86 - }, - "mode": "bus", - "name": "Sect. M-N-O Brossard", - "color": "#A32638", - "nodes": [ - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", - "0f8ef5e7-ff7c-4097-8d8a-9727f12190ea", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "5d862a7d-92b0-4def-8199-258993ce3523", - "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", - "d0325326-9fbf-42e2-aefa-29fa09853c10", - "d13720b6-fb91-4a90-a816-addaef17cf17", - "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", - "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", - "5b030db6-8eaf-4505-a2c0-5a5290886d5b", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "90d9bb0e-4845-468b-af33-21831922eede", - "d300031f-a642-4e09-b48b-0e859400e1f7", - "27cd912d-c30d-4955-977f-68eb1e010190", - "809d30b8-456e-4e86-b782-8a6448d546e0" - ], - "stops": [], - "line_id": "740403f9-e874-4b22-96d1-770fdebef13f", - "segments": [ - 0, - 23, - 173, - 232, - 234, - 239, - 250, - 252, - 261, - 266, - 270, - 275, - 281, - 285, - 288 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 116, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469043, - 45.46624 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.468869, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469319, - 45.467991 - ], - [ - -73.468598, - 45.467969 - ], - [ - -73.468434, - 45.467978 - ], - [ - -73.468189, - 45.46801 - ], - [ - -73.467926, - 45.468045 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.46758, - 45.467757 - ], - [ - -73.467357, - 45.467296 - ], - [ - -73.467335, - 45.467098 - ], - [ - -73.467287, - 45.466921 - ], - [ - -73.46724, - 45.46679 - ], - [ - -73.467201, - 45.466621 - ], - [ - -73.467171, - 45.466457 - ], - [ - -73.467168, - 45.466361 - ], - [ - -73.467171, - 45.466266 - ], - [ - -73.46719, - 45.46616 - ], - [ - -73.467201, - 45.466133 - ], - [ - -73.467233, - 45.466051 - ], - [ - -73.467286, - 45.465947 - ], - [ - -73.467347, - 45.465852 - ], - [ - -73.46743, - 45.465768 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467565, - 45.465647 - ], - [ - -73.467708, - 45.465556 - ], - [ - -73.467899, - 45.465442 - ], - [ - -73.46805, - 45.465387 - ], - [ - -73.468287, - 45.465321 - ], - [ - -73.468514, - 45.465288 - ], - [ - -73.468859, - 45.465256 - ], - [ - -73.469207, - 45.465245 - ], - [ - -73.471824, - 45.46534 - ], - [ - -73.47278, - 45.465351 - ], - [ - -73.473923, - 45.465346 - ], - [ - -73.474792, - 45.465284 - ], - [ - -73.476448, - 45.465339 - ], - [ - -73.478069, - 45.465419 - ], - [ - -73.47931, - 45.465481 - ], - [ - -73.480681, - 45.465584 - ], - [ - -73.481658, - 45.465665 - ], - [ - -73.483804, - 45.465854 - ], - [ - -73.485886, - 45.466123 - ], - [ - -73.488038, - 45.466444 - ], - [ - -73.489088, - 45.466602 - ], - [ - -73.491585, - 45.46694 - ], - [ - -73.494707, - 45.467307 - ], - [ - -73.494917, - 45.467332 - ], - [ - -73.494999, - 45.467342 - ], - [ - -73.497318, - 45.467635 - ], - [ - -73.501976, - 45.468162 - ], - [ - -73.50546, - 45.468524 - ], - [ - -73.508994, - 45.468874 - ], - [ - -73.510795, - 45.469064 - ], - [ - -73.516615, - 45.469606 - ], - [ - -73.520513, - 45.469901 - ], - [ - -73.524263, - 45.470138 - ], - [ - -73.526895, - 45.470234 - ], - [ - -73.536203, - 45.470502 - ], - [ - -73.537479, - 45.470611 - ], - [ - -73.540035, - 45.470737 - ], - [ - -73.540574, - 45.470754 - ], - [ - -73.541689, - 45.470806 - ], - [ - -73.54236, - 45.470938 - ], - [ - -73.542685, - 45.471019 - ], - [ - -73.543056, - 45.471172 - ], - [ - -73.543235, - 45.471297 - ], - [ - -73.543427, - 45.47153 - ], - [ - -73.543495, - 45.471781 - ], - [ - -73.543487, - 45.471977 - ], - [ - -73.543374, - 45.472246 - ], - [ - -73.543123, - 45.472648 - ], - [ - -73.543053, - 45.472745 - ], - [ - -73.543034, - 45.472772 - ], - [ - -73.543013, - 45.472801 - ], - [ - -73.542473, - 45.473549 - ], - [ - -73.542275, - 45.473832 - ], - [ - -73.542255, - 45.473861 - ], - [ - -73.542175, - 45.473976 - ], - [ - -73.542016, - 45.474229 - ], - [ - -73.541794, - 45.474618 - ], - [ - -73.541458, - 45.475221 - ], - [ - -73.541094, - 45.47588 - ], - [ - -73.540722, - 45.476557 - ], - [ - -73.540393, - 45.477154 - ], - [ - -73.540141, - 45.477612 - ], - [ - -73.539989, - 45.477937 - ], - [ - -73.539912, - 45.478117 - ], - [ - -73.53962, - 45.478792 - ], - [ - -73.539453, - 45.479242 - ], - [ - -73.539011, - 45.480452 - ], - [ - -73.538771, - 45.481137 - ], - [ - -73.538372, - 45.4823 - ], - [ - -73.537796, - 45.483909 - ], - [ - -73.537682, - 45.484235 - ], - [ - -73.537533, - 45.484742 - ], - [ - -73.537501, - 45.485252 - ], - [ - -73.537565, - 45.485765 - ], - [ - -73.537725, - 45.486206 - ], - [ - -73.537953, - 45.486613 - ], - [ - -73.538211, - 45.486968 - ], - [ - -73.538564, - 45.487319 - ], - [ - -73.538991, - 45.48766 - ], - [ - -73.539413, - 45.487933 - ], - [ - -73.540409, - 45.488352 - ], - [ - -73.540999, - 45.488508 - ], - [ - -73.545779, - 45.489431 - ], - [ - -73.547415, - 45.489732 - ], - [ - -73.548107, - 45.48986 - ], - [ - -73.549549, - 45.490154 - ], - [ - -73.549968, - 45.490239 - ], - [ - -73.550646, - 45.490459 - ], - [ - -73.551261, - 45.490742 - ], - [ - -73.55163, - 45.490924 - ], - [ - -73.551996, - 45.491154 - ], - [ - -73.552466, - 45.491495 - ], - [ - -73.552812, - 45.491812 - ], - [ - -73.553225, - 45.492293 - ], - [ - -73.553459, - 45.492647 - ], - [ - -73.553701, - 45.493121 - ], - [ - -73.553714, - 45.493155 - ], - [ - -73.554005, - 45.493935 - ], - [ - -73.554229, - 45.494495 - ], - [ - -73.55441, - 45.494962 - ], - [ - -73.554709, - 45.495574 - ], - [ - -73.554963, - 45.495825 - ], - [ - -73.555225, - 45.496022 - ], - [ - -73.555665, - 45.496222 - ], - [ - -73.557268, - 45.496821 - ], - [ - -73.557934, - 45.497074 - ], - [ - -73.558754, - 45.497382 - ], - [ - -73.559129, - 45.497554 - ], - [ - -73.559665, - 45.497799 - ], - [ - -73.56055, - 45.498258 - ], - [ - -73.561247, - 45.498577 - ], - [ - -73.561311, - 45.498457 - ], - [ - -73.561361, - 45.498363 - ], - [ - -73.561384, - 45.498316 - ], - [ - -73.561417, - 45.498249 - ], - [ - -73.561461, - 45.49816 - ], - [ - -73.561504, - 45.498074 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.562038, - 45.497108 - ], - [ - -73.562161, - 45.497168 - ], - [ - -73.562611, - 45.497387 - ], - [ - -73.562698, - 45.497457 - ], - [ - -73.562791, - 45.497486 - ], - [ - -73.562898, - 45.497495 - ], - [ - -73.563026, - 45.497486 - ], - [ - -73.563269, - 45.497461 - ], - [ - -73.563391, - 45.497457 - ], - [ - -73.563535, - 45.497468 - ], - [ - -73.56365, - 45.497486 - ], - [ - -73.56376, - 45.497514 - ], - [ - -73.563861, - 45.497562 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.56431, - 45.497835 - ], - [ - -73.565142, - 45.498217 - ], - [ - -73.565601, - 45.498443 - ], - [ - -73.565748, - 45.49831 - ], - [ - -73.565849, - 45.498292 - ], - [ - -73.566051, - 45.498359 - ], - [ - -73.566361, - 45.498471 - ], - [ - -73.566492, - 45.498485 - ], - [ - -73.566611, - 45.498345 - ] - ] - }, - "id": 117, - "properties": { - "id": "38177cc8-5261-421d-ab67-219652b6517a", - "data": { - "gtfs": { - "shape_id": "45_1_A" - }, - "segments": [ - { - "distanceMeters": 11653, - "travelTimeSeconds": 960 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11653, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8421.515277164277, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 12.14, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 10.22, - "averageSpeedWithoutDwellTimesMetersPerSecond": 12.14 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" - ], - "stops": [], - "line_id": "67d0890c-e329-422d-a190-b15ca731ce3a", - "segments": [ - 0 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 117, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.566611, - 45.498345 - ], - [ - -73.566738, - 45.498195 - ], - [ - -73.566628, - 45.49808 - ], - [ - -73.566306, - 45.497931 - ], - [ - -73.566253, - 45.497841 - ], - [ - -73.56638, - 45.497699 - ], - [ - -73.566016, - 45.497523 - ], - [ - -73.564691, - 45.496892 - ], - [ - -73.564548, - 45.497036 - ], - [ - -73.564308, - 45.497279 - ], - [ - -73.564223, - 45.497363 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.562654, - 45.499004 - ], - [ - -73.562195, - 45.498662 - ], - [ - -73.561924, - 45.498365 - ], - [ - -73.561751, - 45.4982 - ], - [ - -73.561721, - 45.498171 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.561033, - 45.497765 - ], - [ - -73.560139, - 45.497347 - ], - [ - -73.559235, - 45.49696 - ], - [ - -73.55917, - 45.496938 - ], - [ - -73.558356, - 45.496631 - ], - [ - -73.557604, - 45.496364 - ], - [ - -73.556782, - 45.49606 - ], - [ - -73.555745, - 45.495673 - ], - [ - -73.555351, - 45.495512 - ], - [ - -73.555133, - 45.495401 - ], - [ - -73.554916, - 45.495262 - ], - [ - -73.554768, - 45.495125 - ], - [ - -73.55465, - 45.494994 - ], - [ - -73.553944, - 45.493258 - ], - [ - -73.553818, - 45.492971 - ], - [ - -73.553465, - 45.492338 - ], - [ - -73.552977, - 45.491759 - ], - [ - -73.552502, - 45.491344 - ], - [ - -73.551956, - 45.490962 - ], - [ - -73.551651, - 45.490791 - ], - [ - -73.551074, - 45.490513 - ], - [ - -73.550682, - 45.490367 - ], - [ - -73.550312, - 45.490228 - ], - [ - -73.54956, - 45.490034 - ], - [ - -73.548355, - 45.489798 - ], - [ - -73.542648, - 45.488704 - ], - [ - -73.541878, - 45.488554 - ], - [ - -73.541083, - 45.488397 - ], - [ - -73.540636, - 45.488282 - ], - [ - -73.540145, - 45.488119 - ], - [ - -73.539582, - 45.48786 - ], - [ - -73.53933, - 45.487715 - ], - [ - -73.539239, - 45.487663 - ], - [ - -73.538946, - 45.487462 - ], - [ - -73.538619, - 45.487192 - ], - [ - -73.538304, - 45.486863 - ], - [ - -73.538089, - 45.486564 - ], - [ - -73.537862, - 45.486139 - ], - [ - -73.537796, - 45.485958 - ], - [ - -73.537731, - 45.485785 - ], - [ - -73.53767, - 45.485461 - ], - [ - -73.537646, - 45.485264 - ], - [ - -73.537653, - 45.484914 - ], - [ - -73.537707, - 45.484604 - ], - [ - -73.537881, - 45.484168 - ], - [ - -73.537968, - 45.483893 - ], - [ - -73.538058, - 45.483623 - ], - [ - -73.539557, - 45.479354 - ], - [ - -73.53982, - 45.478652 - ], - [ - -73.540179, - 45.47782 - ], - [ - -73.540481, - 45.477177 - ], - [ - -73.540578, - 45.477027 - ], - [ - -73.540928, - 45.476409 - ], - [ - -73.5413, - 45.475732 - ], - [ - -73.541747, - 45.474937 - ], - [ - -73.542136, - 45.474264 - ], - [ - -73.542539, - 45.47363 - ], - [ - -73.543159, - 45.472786 - ], - [ - -73.543162, - 45.472781 - ], - [ - -73.5432, - 45.472729 - ], - [ - -73.543381, - 45.472482 - ], - [ - -73.543908, - 45.471834 - ], - [ - -73.544604, - 45.471016 - ], - [ - -73.54479, - 45.470824 - ], - [ - -73.544929, - 45.470679 - ], - [ - -73.54509, - 45.470477 - ], - [ - -73.545159, - 45.470391 - ], - [ - -73.545162, - 45.470289 - ], - [ - -73.54518, - 45.470102 - ], - [ - -73.54513, - 45.469912 - ], - [ - -73.545032, - 45.469762 - ], - [ - -73.544829, - 45.469589 - ], - [ - -73.544396, - 45.469456 - ], - [ - -73.544223, - 45.469408 - ], - [ - -73.544, - 45.469414 - ], - [ - -73.54385, - 45.469436 - ], - [ - -73.543665, - 45.469485 - ], - [ - -73.543125, - 45.469658 - ], - [ - -73.542795, - 45.46978 - ], - [ - -73.542335, - 45.469915 - ], - [ - -73.542042, - 45.469974 - ], - [ - -73.541634, - 45.469988 - ], - [ - -73.538583, - 45.470121 - ], - [ - -73.536645, - 45.47012 - ], - [ - -73.534843, - 45.470106 - ], - [ - -73.531663, - 45.470044 - ], - [ - -73.528901, - 45.469979 - ], - [ - -73.525636, - 45.469864 - ], - [ - -73.520215, - 45.469565 - ], - [ - -73.516228, - 45.469261 - ], - [ - -73.50737, - 45.468395 - ], - [ - -73.501604, - 45.467786 - ], - [ - -73.499262, - 45.467514 - ], - [ - -73.493921, - 45.466881 - ], - [ - -73.491932, - 45.466645 - ], - [ - -73.489852, - 45.466348 - ], - [ - -73.489119, - 45.46624 - ], - [ - -73.489027, - 45.466226 - ], - [ - -73.486848, - 45.465931 - ], - [ - -73.485714, - 45.465782 - ], - [ - -73.482904, - 45.465439 - ], - [ - -73.482123, - 45.46537 - ], - [ - -73.479736, - 45.465191 - ], - [ - -73.47968, - 45.465187 - ], - [ - -73.478363, - 45.465119 - ], - [ - -73.477796, - 45.465089 - ], - [ - -73.475753, - 45.464994 - ], - [ - -73.474695, - 45.464942 - ], - [ - -73.474262, - 45.464921 - ], - [ - -73.474113, - 45.464916 - ], - [ - -73.473291, - 45.464882 - ], - [ - -73.472501, - 45.46485 - ], - [ - -73.471447, - 45.46476 - ], - [ - -73.469875, - 45.464616 - ], - [ - -73.469333, - 45.464554 - ], - [ - -73.46902, - 45.464515 - ], - [ - -73.468704, - 45.464452 - ], - [ - -73.468392, - 45.464367 - ], - [ - -73.468066, - 45.46424 - ], - [ - -73.467826, - 45.46409 - ], - [ - -73.467593, - 45.463944 - ], - [ - -73.467415, - 45.463833 - ], - [ - -73.467133, - 45.463667 - ], - [ - -73.466953, - 45.463591 - ], - [ - -73.466529, - 45.463529 - ], - [ - -73.466232, - 45.463594 - ], - [ - -73.466092, - 45.463623 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469043, - 45.46624 - ] - ] - }, - "id": 118, - "properties": { - "id": "2f191c44-845e-47b1-bbe2-1e3ec1123284", - "data": { - "gtfs": { - "shape_id": "45_4_R" - }, - "segments": [ - { - "distanceMeters": 11869, - "travelTimeSeconds": 1080 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11869, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8421.515277164277, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 10.99, - "travelTimeWithoutDwellTimesSeconds": 1080, - "operatingTimeWithLayoverTimeSeconds": 1260, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1080, - "operatingSpeedWithLayoverMetersPerSecond": 9.42, - "averageSpeedWithoutDwellTimesMetersPerSecond": 10.99 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "67d0890c-e329-422d-a190-b15ca731ce3a", - "segments": [ - 0 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 118, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.490549, - 45.447733 - ], - [ - -73.490554, - 45.447636 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.486184, - 45.447402 - ], - [ - -73.485394, - 45.447385 - ], - [ - -73.485334, - 45.447383 - ], - [ - -73.484501, - 45.447365 - ], - [ - -73.483174, - 45.447338 - ], - [ - -73.483047, - 45.447334 - ], - [ - -73.482811, - 45.447302 - ], - [ - -73.4826, - 45.447257 - ], - [ - -73.482392, - 45.447199 - ], - [ - -73.482245, - 45.447145 - ], - [ - -73.482082, - 45.447077 - ], - [ - -73.481942, - 45.447005 - ], - [ - -73.481839, - 45.446947 - ], - [ - -73.481644, - 45.446821 - ], - [ - -73.481637, - 45.446815 - ], - [ - -73.481469, - 45.446695 - ], - [ - -73.481319, - 45.446551 - ], - [ - -73.481245, - 45.446479 - ], - [ - -73.481147, - 45.446357 - ], - [ - -73.481089, - 45.446285 - ], - [ - -73.480926, - 45.445993 - ], - [ - -73.480839, - 45.445718 - ], - [ - -73.480811, - 45.445444 - ], - [ - -73.480848, - 45.445021 - ], - [ - -73.481002, - 45.443761 - ], - [ - -73.481012, - 45.443676 - ], - [ - -73.481219, - 45.441988 - ], - [ - -73.481286, - 45.441406 - ], - [ - -73.481299, - 45.441295 - ], - [ - -73.482016, - 45.441346 - ], - [ - -73.482262, - 45.441363 - ], - [ - -73.482811, - 45.441395 - ], - [ - -73.483146, - 45.441426 - ], - [ - -73.483482, - 45.441503 - ], - [ - -73.483768, - 45.441606 - ], - [ - -73.483788, - 45.441616 - ], - [ - -73.484016, - 45.441723 - ], - [ - -73.484181, - 45.441813 - ], - [ - -73.484668, - 45.442183 - ], - [ - -73.485324, - 45.442682 - ], - [ - -73.485435, - 45.442763 - ], - [ - -73.48577, - 45.442902 - ], - [ - -73.486077, - 45.44301 - ], - [ - -73.486385, - 45.443073 - ], - [ - -73.486658, - 45.4431 - ], - [ - -73.48683, - 45.443109 - ], - [ - -73.487183, - 45.443127 - ], - [ - -73.487353, - 45.44313 - ], - [ - -73.487487, - 45.443132 - ], - [ - -73.490545, - 45.443222 - ], - [ - -73.491559, - 45.443245 - ], - [ - -73.49153, - 45.443633 - ], - [ - -73.491504, - 45.443969 - ], - [ - -73.491285, - 45.444689 - ], - [ - -73.491116, - 45.445211 - ], - [ - -73.491092, - 45.445287 - ], - [ - -73.491055, - 45.445404 - ], - [ - -73.49061, - 45.446822 - ], - [ - -73.490573, - 45.447292 - ], - [ - -73.490565, - 45.447402 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.490554, - 45.447636 - ], - [ - -73.490536, - 45.447992 - ], - [ - -73.490521, - 45.448293 - ], - [ - -73.490447, - 45.449075 - ], - [ - -73.490406, - 45.449508 - ], - [ - -73.490386, - 45.449719 - ], - [ - -73.490356, - 45.450109 - ], - [ - -73.490274, - 45.451145 - ], - [ - -73.490184, - 45.451911 - ], - [ - -73.490174, - 45.451996 - ], - [ - -73.490164, - 45.452099 - ], - [ - -73.490107, - 45.452689 - ], - [ - -73.490099, - 45.452842 - ], - [ - -73.490095, - 45.452936 - ], - [ - -73.490138, - 45.453076 - ], - [ - -73.490177, - 45.453161 - ], - [ - -73.490251, - 45.453269 - ], - [ - -73.490337, - 45.453359 - ], - [ - -73.490543, - 45.453512 - ], - [ - -73.49064, - 45.453584 - ], - [ - -73.490922, - 45.453778 - ], - [ - -73.491049, - 45.453868 - ], - [ - -73.491205, - 45.454016 - ], - [ - -73.491307, - 45.454169 - ], - [ - -73.491353, - 45.454286 - ], - [ - -73.491385, - 45.45439 - ], - [ - -73.491385, - 45.45452 - ], - [ - -73.491384, - 45.454537 - ], - [ - -73.491379, - 45.454673 - ], - [ - -73.491306, - 45.455478 - ], - [ - -73.491179, - 45.455672 - ], - [ - -73.49101, - 45.455802 - ], - [ - -73.491002, - 45.455806 - ], - [ - -73.490874, - 45.45587 - ], - [ - -73.490235, - 45.456194 - ], - [ - -73.490047, - 45.45632 - ], - [ - -73.489891, - 45.45645 - ], - [ - -73.489837, - 45.456558 - ], - [ - -73.489805, - 45.456679 - ], - [ - -73.489788, - 45.4568 - ], - [ - -73.489787, - 45.45681 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.488883, - 45.456902 - ], - [ - -73.488779, - 45.456899 - ], - [ - -73.488212, - 45.456877 - ], - [ - -73.486508, - 45.456819 - ], - [ - -73.486364, - 45.456814 - ], - [ - -73.485148, - 45.456777 - ], - [ - -73.483698, - 45.456733 - ], - [ - -73.483692, - 45.456872 - ], - [ - -73.483678, - 45.457203 - ], - [ - -73.483653, - 45.457786 - ], - [ - -73.48364, - 45.457923 - ], - [ - -73.483634, - 45.457988 - ], - [ - -73.483603, - 45.458325 - ], - [ - -73.483595, - 45.45842 - ], - [ - -73.483547, - 45.458852 - ], - [ - -73.4835, - 45.459081 - ], - [ - -73.483406, - 45.459504 - ], - [ - -73.483319, - 45.459756 - ], - [ - -73.483304, - 45.459801 - ], - [ - -73.482827, - 45.460805 - ], - [ - -73.482782, - 45.460899 - ], - [ - -73.482626, - 45.461448 - ], - [ - -73.482575, - 45.461956 - ], - [ - -73.482571, - 45.462082 - ], - [ - -73.482568, - 45.462177 - ], - [ - -73.48256, - 45.462375 - ], - [ - -73.482548, - 45.462559 - ], - [ - -73.482585, - 45.462708 - ], - [ - -73.482613, - 45.462807 - ], - [ - -73.482595, - 45.463423 - ], - [ - -73.482573, - 45.463964 - ], - [ - -73.48257, - 45.464048 - ], - [ - -73.482309, - 45.464098 - ], - [ - -73.482029, - 45.464171 - ], - [ - -73.481982, - 45.464183 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.480952, - 45.464593 - ], - [ - -73.480652, - 45.464687 - ], - [ - -73.480287, - 45.464772 - ], - [ - -73.479951, - 45.464831 - ], - [ - -73.479651, - 45.464862 - ], - [ - -73.479281, - 45.464889 - ], - [ - -73.478969, - 45.464889 - ], - [ - -73.478726, - 45.46488 - ], - [ - -73.478688, - 45.464879 - ], - [ - -73.476229, - 45.46479 - ], - [ - -73.475061, - 45.464753 - ], - [ - -73.474661, - 45.464744 - ], - [ - -73.474508, - 45.464734 - ], - [ - -73.474286, - 45.464723 - ], - [ - -73.474168, - 45.464717 - ], - [ - -73.473949, - 45.464699 - ], - [ - -73.473705, - 45.464641 - ], - [ - -73.473499, - 45.464573 - ], - [ - -73.473207, - 45.464434 - ], - [ - -73.473026, - 45.464318 - ], - [ - -73.472811, - 45.464181 - ], - [ - -73.472979, - 45.464046 - ], - [ - -73.474001, - 45.463224 - ], - [ - -73.474018, - 45.46321 - ], - [ - -73.47413, - 45.463142 - ], - [ - -73.474225, - 45.463052 - ], - [ - -73.474394, - 45.46281 - ], - [ - -73.474502, - 45.462639 - ], - [ - -73.474959, - 45.462171 - ], - [ - -73.474994, - 45.462135 - ], - [ - -73.475315, - 45.461869 - ], - [ - -73.475666, - 45.461613 - ], - [ - -73.47638, - 45.462061 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.474375, - 45.468229 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474256, - 45.468562 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.473204, - 45.468295 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.471427, - 45.468098 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469574, - 45.467137 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.46908, - 45.465912 - ], - [ - -73.469107, - 45.46587 - ] - ] - }, - "id": 119, - "properties": { - "id": "12e2e4bf-6074-410b-aeaf-0605434f5966", - "data": { - "gtfs": { - "shape_id": "46_1_A" - }, - "segments": [ - { - "distanceMeters": 430, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 374, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 78, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 329, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 347, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 738, - "travelTimeSeconds": 158 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 654, - "travelTimeSeconds": 141 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8064, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2640.1217649066293, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.11, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 5.38, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.11 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "601c2147-2f83-405b-be6a-8fe05117cb43", - "8f4ce296-9511-42d4-a138-f52bb761830f", - "0a5b3fec-6725-4b10-9b81-ad6506fe82d2", - "a532b39a-66ec-444f-abc1-766787d9387c", - "3518bfc1-7b5d-4295-9440-6fc17dd6b559", - "e9dbe1ee-244a-4556-8fa1-052d6f2dee5e", - "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", - "56755a3d-6779-4355-8b48-27271fb6ce0b", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "997c4af9-ab50-4dfb-941a-afadff58f267", - "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", - "c7c30949-db61-44fc-b7ab-a69b9fde12cc", - "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", - "f1131e74-6c65-4f22-a18d-41dbe35e4576", - "984def83-5f59-45f7-bb33-ed1dbca30502", - "1d56d4cb-0ab2-44f2-924d-aa119de8c362", - "258cb5fd-8795-41af-8e07-3de8ea977e23", - "d2127fc0-fbc1-4459-b6f9-07c0b8d9cdbe", - "e51dbc0e-9385-4f59-b401-fd29a59c8b5b", - "2d435714-a542-4404-9910-0df9675e2087", - "2ecca6ee-e688-465d-a0b1-929435b41047", - "57de752e-d268-4125-8223-581e6c2ff56e", - "eee98f97-7434-4d16-88a6-93a424bc6846", - "4bbdfb79-c7dc-46c0-893b-48e38ccd2db0", - "70ace55a-2f3c-410b-8740-bea06ecb9924", - "7389acbe-1784-4fea-a2ab-a4a9c9239e83", - "06992afa-6d7e-4650-bffc-5a747de5860c", - "ff23cabb-ca11-421b-a582-f6413aa21fa0", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "482f6809-9300-45ae-8346-18e995a1cb75", - "segments": [ - 0, - 4, - 21, - 27, - 30, - 38, - 50, - 54, - 57, - 61, - 65, - 68, - 72, - 82, - 91, - 96, - 103, - 109, - 114, - 118, - 123, - 125, - 129, - 136, - 149, - 155, - 161, - 164, - 170, - 174, - 202, - 211, - 218 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 119, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469107, - 45.46587 - ], - [ - -73.469152, - 45.465801 - ], - [ - -73.469114, - 45.465711 - ], - [ - -73.469034, - 45.465669 - ], - [ - -73.468913, - 45.46567 - ], - [ - -73.468751, - 45.465752 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469327, - 45.468092 - ], - [ - -73.469492, - 45.4681 - ], - [ - -73.469734, - 45.468114 - ], - [ - -73.470299, - 45.468145 - ], - [ - -73.471061, - 45.468181 - ], - [ - -73.471238, - 45.46819 - ], - [ - -73.471526, - 45.468208 - ], - [ - -73.472194, - 45.468244 - ], - [ - -73.472441, - 45.468255 - ], - [ - -73.472597, - 45.468262 - ], - [ - -73.472728, - 45.468276 - ], - [ - -73.472834, - 45.468294 - ], - [ - -73.472877, - 45.468307 - ], - [ - -73.473025, - 45.468348 - ], - [ - -73.473214, - 45.468424 - ], - [ - -73.473673, - 45.468604 - ], - [ - -73.473905, - 45.468649 - ], - [ - -73.474077, - 45.468676 - ], - [ - -73.474259, - 45.46869 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474543, - 45.468507 - ], - [ - -73.474544, - 45.468492 - ], - [ - -73.474545, - 45.468488 - ], - [ - -73.474528, - 45.468236 - ], - [ - -73.474508, - 45.467936 - ], - [ - -73.474508, - 45.467294 - ], - [ - -73.474542, - 45.4665 - ], - [ - -73.474546, - 45.466404 - ], - [ - -73.474554, - 45.466199 - ], - [ - -73.474621, - 45.465194 - ], - [ - -73.474664, - 45.464506 - ], - [ - -73.474669, - 45.464397 - ], - [ - -73.474734, - 45.464067 - ], - [ - -73.474884, - 45.463697 - ], - [ - -73.475002, - 45.463492 - ], - [ - -73.47522, - 45.463212 - ], - [ - -73.475408, - 45.463039 - ], - [ - -73.47556, - 45.462909 - ], - [ - -73.475821, - 45.462711 - ], - [ - -73.476105, - 45.462495 - ], - [ - -73.476557, - 45.462176 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476065, - 45.461863 - ], - [ - -73.475959, - 45.461796 - ], - [ - -73.475666, - 45.461613 - ], - [ - -73.475315, - 45.461869 - ], - [ - -73.475118, - 45.462032 - ], - [ - -73.474994, - 45.462135 - ], - [ - -73.474502, - 45.462639 - ], - [ - -73.474394, - 45.46281 - ], - [ - -73.474225, - 45.463052 - ], - [ - -73.47413, - 45.463142 - ], - [ - -73.474123, - 45.463147 - ], - [ - -73.474018, - 45.46321 - ], - [ - -73.472905, - 45.464106 - ], - [ - -73.472811, - 45.464181 - ], - [ - -73.472881, - 45.464226 - ], - [ - -73.473207, - 45.464434 - ], - [ - -73.473499, - 45.464573 - ], - [ - -73.473705, - 45.464641 - ], - [ - -73.473949, - 45.464699 - ], - [ - -73.474168, - 45.464717 - ], - [ - -73.474508, - 45.464734 - ], - [ - -73.474661, - 45.464744 - ], - [ - -73.474787, - 45.464747 - ], - [ - -73.475061, - 45.464753 - ], - [ - -73.476229, - 45.46479 - ], - [ - -73.478166, - 45.46486 - ], - [ - -73.478688, - 45.464879 - ], - [ - -73.478969, - 45.464889 - ], - [ - -73.479281, - 45.464889 - ], - [ - -73.479651, - 45.464862 - ], - [ - -73.479951, - 45.464831 - ], - [ - -73.480287, - 45.464772 - ], - [ - -73.480652, - 45.464687 - ], - [ - -73.480952, - 45.464593 - ], - [ - -73.481347, - 45.464436 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.481982, - 45.464183 - ], - [ - -73.482309, - 45.464098 - ], - [ - -73.48257, - 45.464048 - ], - [ - -73.482585, - 45.463683 - ], - [ - -73.482595, - 45.463423 - ], - [ - -73.482613, - 45.462807 - ], - [ - -73.482585, - 45.462708 - ], - [ - -73.482548, - 45.462559 - ], - [ - -73.48256, - 45.462375 - ], - [ - -73.482561, - 45.462339 - ], - [ - -73.482568, - 45.462177 - ], - [ - -73.482575, - 45.461956 - ], - [ - -73.482626, - 45.461448 - ], - [ - -73.482758, - 45.460984 - ], - [ - -73.482782, - 45.460899 - ], - [ - -73.482858, - 45.460738 - ], - [ - -73.48327, - 45.459873 - ], - [ - -73.483304, - 45.459801 - ], - [ - -73.483406, - 45.459504 - ], - [ - -73.4835, - 45.459081 - ], - [ - -73.483547, - 45.458852 - ], - [ - -73.483589, - 45.458474 - ], - [ - -73.483595, - 45.45842 - ], - [ - -73.48364, - 45.457923 - ], - [ - -73.483653, - 45.457786 - ], - [ - -73.483675, - 45.457272 - ], - [ - -73.483692, - 45.456872 - ], - [ - -73.485139, - 45.456916 - ], - [ - -73.486297, - 45.456952 - ], - [ - -73.48636, - 45.456954 - ], - [ - -73.488203, - 45.457017 - ], - [ - -73.489765, - 45.457071 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.489787, - 45.45681 - ], - [ - -73.489805, - 45.456679 - ], - [ - -73.489837, - 45.456558 - ], - [ - -73.489878, - 45.456476 - ], - [ - -73.489891, - 45.45645 - ], - [ - -73.490047, - 45.45632 - ], - [ - -73.490235, - 45.456194 - ], - [ - -73.490842, - 45.455886 - ], - [ - -73.490874, - 45.45587 - ], - [ - -73.49101, - 45.455802 - ], - [ - -73.491179, - 45.455672 - ], - [ - -73.491306, - 45.455478 - ], - [ - -73.491365, - 45.454827 - ], - [ - -73.491379, - 45.454673 - ], - [ - -73.491385, - 45.45452 - ], - [ - -73.491385, - 45.45439 - ], - [ - -73.491353, - 45.454286 - ], - [ - -73.491307, - 45.454169 - ], - [ - -73.491205, - 45.454016 - ], - [ - -73.491049, - 45.453868 - ], - [ - -73.490922, - 45.453778 - ], - [ - -73.490733, - 45.453648 - ], - [ - -73.49064, - 45.453584 - ], - [ - -73.490337, - 45.453359 - ], - [ - -73.490251, - 45.453269 - ], - [ - -73.490177, - 45.453161 - ], - [ - -73.490138, - 45.453076 - ], - [ - -73.490095, - 45.452936 - ], - [ - -73.490099, - 45.452842 - ], - [ - -73.490107, - 45.452689 - ], - [ - -73.490162, - 45.452119 - ], - [ - -73.490164, - 45.452099 - ], - [ - -73.490174, - 45.451996 - ], - [ - -73.490274, - 45.451145 - ], - [ - -73.490347, - 45.450218 - ], - [ - -73.490356, - 45.450109 - ], - [ - -73.490386, - 45.449719 - ], - [ - -73.490521, - 45.448293 - ], - [ - -73.490549, - 45.447733 - ] - ] - }, - "id": 120, - "properties": { - "id": "8a39e1ea-2ec5-45fa-b525-cd25f9b7f06a", - "data": { - "gtfs": { - "shape_id": "46_2_R" - }, - "segments": [ - { - "distanceMeters": 662, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 1002, - "travelTimeSeconds": 102 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 439, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 60 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5382, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2640.1217649066293, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.9, - "travelTimeWithoutDwellTimesSeconds": 780, - "operatingTimeWithLayoverTimeSeconds": 960, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 780, - "operatingSpeedWithLayoverMetersPerSecond": 5.61, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.9 - }, - "mode": "bus", - "name": "Sect. R Brossard", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "06992afa-6d7e-4650-bffc-5a747de5860c", - "7389acbe-1784-4fea-a2ab-a4a9c9239e83", - "70ace55a-2f3c-410b-8740-bea06ecb9924", - "5a01eede-d090-4bda-988f-792a987bafc2", - "eee98f97-7434-4d16-88a6-93a424bc6846", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "57de752e-d268-4125-8223-581e6c2ff56e", - "2ecca6ee-e688-465d-a0b1-929435b41047", - "57b17011-c22d-458b-b4e5-e636c5436ed9", - "e51dbc0e-9385-4f59-b401-fd29a59c8b5b", - "d2127fc0-fbc1-4459-b6f9-07c0b8d9cdbe", - "258cb5fd-8795-41af-8e07-3de8ea977e23", - "1d56d4cb-0ab2-44f2-924d-aa119de8c362", - "f1131e74-6c65-4f22-a18d-41dbe35e4576", - "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", - "c7c30949-db61-44fc-b7ab-a69b9fde12cc", - "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", - "997c4af9-ab50-4dfb-941a-afadff58f267", - "11a7e876-eb5a-402b-8bb8-10625e7584e3" - ], - "stops": [], - "line_id": "482f6809-9300-45ae-8346-18e995a1cb75", - "segments": [ - 0, - 28, - 32, - 68, - 72, - 78, - 80, - 90, - 93, - 102, - 107, - 113, - 117, - 120, - 125, - 129, - 132, - 144, - 149, - 158, - 167, - 171 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 120, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.490549, - 45.447733 - ], - [ - -73.490554, - 45.447636 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.486184, - 45.447402 - ], - [ - -73.485334, - 45.447383 - ], - [ - -73.484501, - 45.447365 - ], - [ - -73.483174, - 45.447338 - ], - [ - -73.483047, - 45.447334 - ], - [ - -73.482811, - 45.447302 - ], - [ - -73.4826, - 45.447257 - ], - [ - -73.482392, - 45.447199 - ], - [ - -73.482245, - 45.447145 - ], - [ - -73.482082, - 45.447077 - ], - [ - -73.481942, - 45.447005 - ], - [ - -73.481839, - 45.446947 - ], - [ - -73.481644, - 45.446821 - ], - [ - -73.481637, - 45.446815 - ], - [ - -73.481469, - 45.446695 - ], - [ - -73.481319, - 45.446551 - ], - [ - -73.481245, - 45.446479 - ], - [ - -73.481089, - 45.446285 - ], - [ - -73.480926, - 45.445993 - ], - [ - -73.480839, - 45.445718 - ], - [ - -73.480811, - 45.445444 - ], - [ - -73.480848, - 45.445021 - ], - [ - -73.481012, - 45.443676 - ], - [ - -73.481207, - 45.442083 - ], - [ - -73.481219, - 45.441988 - ], - [ - -73.481299, - 45.441295 - ], - [ - -73.482016, - 45.441346 - ], - [ - -73.482262, - 45.441363 - ], - [ - -73.482811, - 45.441395 - ], - [ - -73.483146, - 45.441426 - ], - [ - -73.483482, - 45.441503 - ], - [ - -73.483768, - 45.441606 - ], - [ - -73.484016, - 45.441723 - ], - [ - -73.484181, - 45.441813 - ], - [ - -73.484668, - 45.442183 - ], - [ - -73.485324, - 45.442682 - ], - [ - -73.485435, - 45.442763 - ], - [ - -73.48577, - 45.442902 - ], - [ - -73.486077, - 45.44301 - ], - [ - -73.486385, - 45.443073 - ], - [ - -73.486658, - 45.4431 - ], - [ - -73.48683, - 45.443109 - ], - [ - -73.487183, - 45.443127 - ], - [ - -73.487487, - 45.443132 - ], - [ - -73.490545, - 45.443222 - ], - [ - -73.491559, - 45.443245 - ], - [ - -73.491504, - 45.443969 - ], - [ - -73.491287, - 45.44468 - ], - [ - -73.491285, - 45.444689 - ], - [ - -73.491092, - 45.445287 - ], - [ - -73.491055, - 45.445404 - ], - [ - -73.49061, - 45.446822 - ], - [ - -73.490565, - 45.447402 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.490554, - 45.447636 - ], - [ - -73.490521, - 45.448293 - ], - [ - -73.490447, - 45.449075 - ], - [ - -73.490386, - 45.449719 - ], - [ - -73.490356, - 45.450109 - ], - [ - -73.490274, - 45.451145 - ], - [ - -73.490174, - 45.451996 - ], - [ - -73.490164, - 45.452099 - ], - [ - -73.490124, - 45.452513 - ], - [ - -73.490107, - 45.452689 - ], - [ - -73.490099, - 45.452842 - ], - [ - -73.490095, - 45.452936 - ], - [ - -73.490138, - 45.453076 - ], - [ - -73.490177, - 45.453161 - ], - [ - -73.490251, - 45.453269 - ], - [ - -73.490337, - 45.453359 - ], - [ - -73.49064, - 45.453584 - ], - [ - -73.490922, - 45.453778 - ], - [ - -73.491049, - 45.453868 - ], - [ - -73.491205, - 45.454016 - ], - [ - -73.491307, - 45.454169 - ], - [ - -73.491353, - 45.454286 - ], - [ - -73.491385, - 45.45439 - ], - [ - -73.491385, - 45.45452 - ], - [ - -73.491379, - 45.454673 - ], - [ - -73.491306, - 45.455478 - ], - [ - -73.491179, - 45.455672 - ], - [ - -73.49101, - 45.455802 - ], - [ - -73.490874, - 45.45587 - ], - [ - -73.490235, - 45.456194 - ], - [ - -73.490047, - 45.45632 - ], - [ - -73.489891, - 45.45645 - ], - [ - -73.489837, - 45.456558 - ], - [ - -73.489805, - 45.456679 - ], - [ - -73.489787, - 45.45681 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.488883, - 45.456902 - ], - [ - -73.488779, - 45.456899 - ], - [ - -73.488212, - 45.456877 - ], - [ - -73.487092, - 45.456839 - ], - [ - -73.486364, - 45.456814 - ], - [ - -73.485148, - 45.456777 - ], - [ - -73.483698, - 45.456733 - ], - [ - -73.483692, - 45.456872 - ], - [ - -73.483653, - 45.457786 - ], - [ - -73.48364, - 45.457923 - ], - [ - -73.483634, - 45.457988 - ], - [ - -73.483595, - 45.45842 - ], - [ - -73.483547, - 45.458852 - ], - [ - -73.4835, - 45.459081 - ], - [ - -73.483406, - 45.459504 - ], - [ - -73.483304, - 45.459801 - ], - [ - -73.483203, - 45.460013 - ], - [ - -73.482782, - 45.460899 - ], - [ - -73.482626, - 45.461448 - ], - [ - -73.482575, - 45.461956 - ], - [ - -73.482568, - 45.462177 - ], - [ - -73.48256, - 45.462375 - ], - [ - -73.482548, - 45.462559 - ], - [ - -73.482585, - 45.462708 - ], - [ - -73.482613, - 45.462807 - ], - [ - -73.482595, - 45.463423 - ], - [ - -73.48257, - 45.464048 - ], - [ - -73.482309, - 45.464098 - ], - [ - -73.482029, - 45.464171 - ], - [ - -73.481982, - 45.464183 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.480952, - 45.464593 - ], - [ - -73.480652, - 45.464687 - ], - [ - -73.480287, - 45.464772 - ], - [ - -73.479951, - 45.464831 - ], - [ - -73.479651, - 45.464862 - ], - [ - -73.479281, - 45.464889 - ], - [ - -73.478969, - 45.464889 - ], - [ - -73.478688, - 45.464879 - ], - [ - -73.476229, - 45.46479 - ], - [ - -73.475649, - 45.464772 - ], - [ - -73.475061, - 45.464753 - ], - [ - -73.474661, - 45.464744 - ], - [ - -73.474508, - 45.464734 - ], - [ - -73.474168, - 45.464717 - ], - [ - -73.473949, - 45.464699 - ], - [ - -73.473705, - 45.464641 - ], - [ - -73.473499, - 45.464573 - ], - [ - -73.473207, - 45.464434 - ], - [ - -73.472811, - 45.464181 - ], - [ - -73.472979, - 45.464046 - ], - [ - -73.474018, - 45.46321 - ], - [ - -73.47413, - 45.463142 - ], - [ - -73.474225, - 45.463052 - ], - [ - -73.474394, - 45.46281 - ], - [ - -73.474502, - 45.462639 - ], - [ - -73.474994, - 45.462135 - ], - [ - -73.475315, - 45.461869 - ], - [ - -73.475666, - 45.461613 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474482, - 45.465486 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474256, - 45.468562 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.472085, - 45.468129 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469574, - 45.467137 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.46908, - 45.465912 - ], - [ - -73.469107, - 45.46587 - ] - ] - }, - "id": 121, - "properties": { - "id": "ff88549f-1374-4a51-bd94-ea0a55cd8bcb", - "data": { - "gtfs": { - "shape_id": "46_1_A" - }, - "segments": [ - { - "distanceMeters": 1285, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 1117, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 879, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 786, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 634, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 1016, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 1111, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 535, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 705, - "travelTimeSeconds": 32 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8064, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 0, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 22.4, - "travelTimeWithoutDwellTimesSeconds": 360, - "operatingTimeWithLayoverTimeSeconds": 540, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 360, - "operatingSpeedWithLayoverMetersPerSecond": 14.93, - "averageSpeedWithoutDwellTimesMetersPerSecond": 22.4 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "601c2147-2f83-405b-be6a-8fe05117cb43", - "8f4ce296-9511-42d4-a138-f52bb761830f", - "0a5b3fec-6725-4b10-9b81-ad6506fe82d2", - "a532b39a-66ec-444f-abc1-766787d9387c", - "3518bfc1-7b5d-4295-9440-6fc17dd6b559", - "e9dbe1ee-244a-4556-8fa1-052d6f2dee5e", - "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", - "56755a3d-6779-4355-8b48-27271fb6ce0b", - "11a7e876-eb5a-402b-8bb8-10625e7584e3" - ], - "stops": [], - "line_id": "482f6809-9300-45ae-8346-18e995a1cb75", - "segments": [ - 0, - 26, - 50, - 65, - 96, - 109, - 133, - 171, - 193 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 121, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469043, - 45.46624 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467814, - 45.466067 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469327, - 45.468092 - ], - [ - -73.469492, - 45.4681 - ], - [ - -73.470299, - 45.468145 - ], - [ - -73.471071, - 45.468182 - ], - [ - -73.471238, - 45.46819 - ], - [ - -73.471526, - 45.468208 - ], - [ - -73.472194, - 45.468244 - ], - [ - -73.472438, - 45.468255 - ], - [ - -73.472597, - 45.468262 - ], - [ - -73.472728, - 45.468276 - ], - [ - -73.472736, - 45.468277 - ], - [ - -73.472834, - 45.468294 - ], - [ - -73.472877, - 45.468307 - ], - [ - -73.473025, - 45.468348 - ], - [ - -73.473214, - 45.468424 - ], - [ - -73.473673, - 45.468604 - ], - [ - -73.473905, - 45.468649 - ], - [ - -73.474077, - 45.468676 - ], - [ - -73.474259, - 45.46869 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474544, - 45.468492 - ], - [ - -73.474545, - 45.468488 - ], - [ - -73.474528, - 45.468236 - ], - [ - -73.474508, - 45.467936 - ], - [ - -73.474508, - 45.467294 - ], - [ - -73.474542, - 45.4665 - ], - [ - -73.474546, - 45.466404 - ], - [ - -73.474554, - 45.466199 - ], - [ - -73.474621, - 45.465194 - ], - [ - -73.474664, - 45.464506 - ], - [ - -73.474669, - 45.464397 - ], - [ - -73.474734, - 45.464067 - ], - [ - -73.474884, - 45.463697 - ], - [ - -73.475002, - 45.463492 - ], - [ - -73.47522, - 45.463212 - ], - [ - -73.475408, - 45.463039 - ], - [ - -73.47556, - 45.462909 - ], - [ - -73.475821, - 45.462711 - ], - [ - -73.476105, - 45.462495 - ], - [ - -73.476448, - 45.462252 - ], - [ - -73.476557, - 45.462176 - ], - [ - -73.477249, - 45.461685 - ], - [ - -73.478219, - 45.460953 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.47888, - 45.460399 - ], - [ - -73.479008, - 45.460264 - ], - [ - -73.479302, - 45.459904 - ], - [ - -73.479398, - 45.459769 - ], - [ - -73.479488, - 45.459616 - ], - [ - -73.479616, - 45.459382 - ], - [ - -73.479649, - 45.459311 - ], - [ - -73.479699, - 45.459202 - ], - [ - -73.47976, - 45.459027 - ], - [ - -73.479776, - 45.458968 - ], - [ - -73.479808, - 45.458865 - ], - [ - -73.479852, - 45.458707 - ], - [ - -73.479891, - 45.458478 - ], - [ - -73.479913, - 45.458325 - ], - [ - -73.479923, - 45.458145 - ], - [ - -73.479926, - 45.458073 - ], - [ - -73.479893, - 45.457659 - ], - [ - -73.479819, - 45.456897 - ], - [ - -73.479803, - 45.456723 - ], - [ - -73.479792, - 45.456611 - ], - [ - -73.479747, - 45.456084 - ], - [ - -73.479731, - 45.4559 - ], - [ - -73.479696, - 45.455396 - ], - [ - -73.479646, - 45.454851 - ], - [ - -73.479629, - 45.454671 - ], - [ - -73.479566, - 45.454028 - ], - [ - -73.479521, - 45.453709 - ], - [ - -73.47946, - 45.45338 - ], - [ - -73.479374, - 45.453016 - ], - [ - -73.479309, - 45.452772 - ], - [ - -73.479278, - 45.452656 - ], - [ - -73.479074, - 45.452084 - ], - [ - -73.478902, - 45.451688 - ], - [ - -73.478649, - 45.451162 - ], - [ - -73.478451, - 45.450779 - ], - [ - -73.47833, - 45.450536 - ], - [ - -73.478167, - 45.450257 - ], - [ - -73.478015, - 45.45006 - ], - [ - -73.478004, - 45.450046 - ], - [ - -73.477921, - 45.449951 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.479229, - 45.449466 - ], - [ - -73.479291, - 45.449444 - ], - [ - -73.480707, - 45.44894 - ], - [ - -73.480948, - 45.448841 - ], - [ - -73.481186, - 45.448724 - ], - [ - -73.481319, - 45.448638 - ], - [ - -73.481405, - 45.448562 - ], - [ - -73.481538, - 45.448436 - ], - [ - -73.481595, - 45.448363 - ], - [ - -73.481672, - 45.448265 - ], - [ - -73.482262, - 45.447391 - ] - ] - }, - "id": 122, - "properties": { - "id": "28e0bb75-8007-474e-8bb1-865ce909a4e5", - "data": { - "gtfs": { - "shape_id": "47_2_R" - }, - "segments": [ - { - "distanceMeters": 111, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 518, - "travelTimeSeconds": 79 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 938, - "travelTimeSeconds": 143 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 91 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 35 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 3615, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2293.7049268168794, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.02, - "travelTimeWithoutDwellTimesSeconds": 720, - "operatingTimeWithLayoverTimeSeconds": 900, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 720, - "operatingSpeedWithLayoverMetersPerSecond": 4.02, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.02 - }, - "mode": "bus", - "name": "Sect. R Brossard", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "7b9bfdae-7d0d-4463-a7d7-1a62138b83b5", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", - "87774b57-5ee3-418d-948c-ba4db73d3893", - "c25adb1f-635e-4881-a89d-af8a9ea5ca92", - "4509b80b-76a5-49de-acb2-533a50bafac5", - "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", - "3e4f29c9-7bf2-4ca4-9cb4-2a3c4710cea6", - "91b595a9-abca-41fb-9723-f6ca055bd16b" - ], - "stops": [], - "line_id": "7fb41c77-2376-4573-8588-47eaa467011a", - "segments": [ - 0, - 2, - 21, - 25, - 59, - 62, - 70, - 81, - 87, - 93, - 101, - 106, - 113 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 122, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.482262, - 45.447391 - ], - [ - -73.48231, - 45.44732 - ], - [ - -73.482392, - 45.447199 - ], - [ - -73.482245, - 45.447145 - ], - [ - -73.482082, - 45.447077 - ], - [ - -73.481942, - 45.447005 - ], - [ - -73.481839, - 45.446947 - ], - [ - -73.481672, - 45.446839 - ], - [ - -73.481644, - 45.446821 - ], - [ - -73.481469, - 45.446695 - ], - [ - -73.481319, - 45.446551 - ], - [ - -73.481245, - 45.446479 - ], - [ - -73.481153, - 45.446365 - ], - [ - -73.481089, - 45.446285 - ], - [ - -73.480926, - 45.445993 - ], - [ - -73.480839, - 45.445718 - ], - [ - -73.480811, - 45.445444 - ], - [ - -73.480848, - 45.445021 - ], - [ - -73.481, - 45.44378 - ], - [ - -73.481012, - 45.443676 - ], - [ - -73.481219, - 45.441988 - ], - [ - -73.481285, - 45.441417 - ], - [ - -73.481299, - 45.441295 - ], - [ - -73.481973, - 45.441343 - ], - [ - -73.482262, - 45.441363 - ], - [ - -73.482811, - 45.441395 - ], - [ - -73.483146, - 45.441426 - ], - [ - -73.483482, - 45.441503 - ], - [ - -73.483768, - 45.441606 - ], - [ - -73.483774, - 45.441609 - ], - [ - -73.484016, - 45.441723 - ], - [ - -73.484181, - 45.441813 - ], - [ - -73.484668, - 45.442183 - ], - [ - -73.485324, - 45.442682 - ], - [ - -73.485435, - 45.442763 - ], - [ - -73.48577, - 45.442902 - ], - [ - -73.486077, - 45.44301 - ], - [ - -73.486385, - 45.443073 - ], - [ - -73.486658, - 45.4431 - ], - [ - -73.48683, - 45.443109 - ], - [ - -73.487183, - 45.443127 - ], - [ - -73.487333, - 45.44313 - ], - [ - -73.487487, - 45.443132 - ], - [ - -73.490545, - 45.443222 - ], - [ - -73.491559, - 45.443245 - ], - [ - -73.491531, - 45.443618 - ], - [ - -73.491504, - 45.443969 - ], - [ - -73.491285, - 45.444689 - ], - [ - -73.491121, - 45.445196 - ], - [ - -73.491092, - 45.445287 - ], - [ - -73.491055, - 45.445404 - ], - [ - -73.49061, - 45.446822 - ], - [ - -73.490575, - 45.447275 - ], - [ - -73.490565, - 45.447402 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.489956, - 45.447483 - ], - [ - -73.486184, - 45.447402 - ], - [ - -73.485413, - 45.447385 - ], - [ - -73.485334, - 45.447383 - ], - [ - -73.484501, - 45.447365 - ], - [ - -73.483174, - 45.447338 - ], - [ - -73.483047, - 45.447334 - ], - [ - -73.482811, - 45.447302 - ], - [ - -73.4826, - 45.447257 - ], - [ - -73.482392, - 45.447199 - ], - [ - -73.48231, - 45.44732 - ], - [ - -73.482044, - 45.447715 - ], - [ - -73.481672, - 45.448265 - ], - [ - -73.481538, - 45.448436 - ], - [ - -73.481405, - 45.448562 - ], - [ - -73.481319, - 45.448638 - ], - [ - -73.481186, - 45.448724 - ], - [ - -73.480948, - 45.448841 - ], - [ - -73.480707, - 45.44894 - ], - [ - -73.479536, - 45.449357 - ], - [ - -73.479229, - 45.449466 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.478222, - 45.449842 - ], - [ - -73.477921, - 45.449951 - ], - [ - -73.477783, - 45.450014 - ], - [ - -73.477866, - 45.4501 - ], - [ - -73.478024, - 45.450307 - ], - [ - -73.478182, - 45.450577 - ], - [ - -73.4785, - 45.451198 - ], - [ - -73.478751, - 45.451724 - ], - [ - -73.478921, - 45.452116 - ], - [ - -73.479079, - 45.452556 - ], - [ - -73.479123, - 45.452678 - ], - [ - -73.479207, - 45.453038 - ], - [ - -73.479292, - 45.453398 - ], - [ - -73.479352, - 45.453722 - ], - [ - -73.479396, - 45.454042 - ], - [ - -73.47947, - 45.454755 - ], - [ - -73.47953, - 45.455342 - ], - [ - -73.479549, - 45.455666 - ], - [ - -73.479585, - 45.456089 - ], - [ - -73.479606, - 45.456387 - ], - [ - -73.479622, - 45.456606 - ], - [ - -73.479632, - 45.456719 - ], - [ - -73.47972, - 45.457668 - ], - [ - -73.479747, - 45.458082 - ], - [ - -73.479754, - 45.45832 - ], - [ - -73.479732, - 45.458469 - ], - [ - -73.479695, - 45.458689 - ], - [ - -73.479603, - 45.459 - ], - [ - -73.479545, - 45.459171 - ], - [ - -73.479525, - 45.459214 - ], - [ - -73.479465, - 45.459342 - ], - [ - -73.479339, - 45.459576 - ], - [ - -73.479253, - 45.45972 - ], - [ - -73.479162, - 45.45985 - ], - [ - -73.478872, - 45.460205 - ], - [ - -73.478751, - 45.460331 - ], - [ - -73.478345, - 45.460681 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.476671, - 45.461955 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.474373, - 45.468197 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.473978, - 45.468528 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.473245, - 45.468312 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.471475, - 45.468101 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469574, - 45.467137 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.468602, - 45.466372 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.46904, - 45.466278 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467869, - 45.466069 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469319, - 45.467991 - ], - [ - -73.469043, - 45.467983 - ], - [ - -73.468598, - 45.467969 - ], - [ - -73.468434, - 45.467978 - ], - [ - -73.467926, - 45.468045 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.46758, - 45.467757 - ], - [ - -73.467357, - 45.467296 - ], - [ - -73.467335, - 45.467098 - ], - [ - -73.467287, - 45.466921 - ], - [ - -73.46724, - 45.46679 - ], - [ - -73.467201, - 45.466621 - ], - [ - -73.467171, - 45.466457 - ], - [ - -73.467168, - 45.466361 - ], - [ - -73.467171, - 45.466266 - ], - [ - -73.46719, - 45.46616 - ], - [ - -73.467233, - 45.466051 - ], - [ - -73.467286, - 45.465947 - ], - [ - -73.467286, - 45.465946 - ], - [ - -73.467347, - 45.465852 - ], - [ - -73.46743, - 45.465768 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467565, - 45.465647 - ], - [ - -73.467708, - 45.465556 - ], - [ - -73.467899, - 45.465442 - ], - [ - -73.46805, - 45.465387 - ], - [ - -73.468287, - 45.465321 - ], - [ - -73.468514, - 45.465288 - ], - [ - -73.468859, - 45.465256 - ], - [ - -73.469207, - 45.465245 - ], - [ - -73.471824, - 45.46534 - ], - [ - -73.47278, - 45.465351 - ], - [ - -73.473923, - 45.465346 - ], - [ - -73.474792, - 45.465284 - ], - [ - -73.476448, - 45.465339 - ], - [ - -73.478069, - 45.465419 - ], - [ - -73.47931, - 45.465481 - ], - [ - -73.480681, - 45.465584 - ], - [ - -73.481658, - 45.465665 - ], - [ - -73.483804, - 45.465854 - ], - [ - -73.485886, - 45.466123 - ], - [ - -73.488038, - 45.466444 - ], - [ - -73.489088, - 45.466602 - ], - [ - -73.491585, - 45.46694 - ], - [ - -73.494707, - 45.467307 - ], - [ - -73.494917, - 45.467332 - ], - [ - -73.494999, - 45.467342 - ], - [ - -73.497318, - 45.467635 - ], - [ - -73.501976, - 45.468162 - ], - [ - -73.50546, - 45.468524 - ], - [ - -73.508994, - 45.468874 - ], - [ - -73.510795, - 45.469064 - ], - [ - -73.516615, - 45.469606 - ], - [ - -73.520513, - 45.469901 - ], - [ - -73.524263, - 45.470138 - ], - [ - -73.526895, - 45.470234 - ], - [ - -73.536203, - 45.470502 - ], - [ - -73.537479, - 45.470611 - ], - [ - -73.540035, - 45.470737 - ], - [ - -73.540574, - 45.470754 - ], - [ - -73.541689, - 45.470806 - ], - [ - -73.54236, - 45.470938 - ], - [ - -73.542685, - 45.471019 - ], - [ - -73.543056, - 45.471172 - ], - [ - -73.543235, - 45.471297 - ], - [ - -73.543427, - 45.47153 - ], - [ - -73.543495, - 45.471781 - ], - [ - -73.543487, - 45.471977 - ], - [ - -73.543374, - 45.472246 - ], - [ - -73.543123, - 45.472648 - ], - [ - -73.543053, - 45.472745 - ], - [ - -73.543034, - 45.472772 - ], - [ - -73.543013, - 45.472801 - ], - [ - -73.542473, - 45.473549 - ], - [ - -73.542275, - 45.473832 - ], - [ - -73.542255, - 45.473861 - ], - [ - -73.542175, - 45.473976 - ], - [ - -73.542016, - 45.474229 - ], - [ - -73.541794, - 45.474618 - ], - [ - -73.541458, - 45.475221 - ], - [ - -73.541094, - 45.47588 - ], - [ - -73.540722, - 45.476557 - ], - [ - -73.540393, - 45.477154 - ], - [ - -73.540141, - 45.477612 - ], - [ - -73.539989, - 45.477937 - ], - [ - -73.539912, - 45.478117 - ], - [ - -73.53962, - 45.478792 - ], - [ - -73.539453, - 45.479242 - ], - [ - -73.539011, - 45.480452 - ], - [ - -73.538771, - 45.481137 - ], - [ - -73.538372, - 45.4823 - ], - [ - -73.537796, - 45.483909 - ], - [ - -73.537682, - 45.484235 - ], - [ - -73.537533, - 45.484742 - ], - [ - -73.537501, - 45.485252 - ], - [ - -73.537565, - 45.485765 - ], - [ - -73.537725, - 45.486206 - ], - [ - -73.537953, - 45.486613 - ], - [ - -73.538211, - 45.486968 - ], - [ - -73.538564, - 45.487319 - ], - [ - -73.538991, - 45.48766 - ], - [ - -73.539413, - 45.487933 - ], - [ - -73.540409, - 45.488352 - ], - [ - -73.540999, - 45.488508 - ], - [ - -73.545779, - 45.489431 - ], - [ - -73.547415, - 45.489732 - ], - [ - -73.548107, - 45.48986 - ], - [ - -73.549549, - 45.490154 - ], - [ - -73.549968, - 45.490239 - ], - [ - -73.550646, - 45.490459 - ], - [ - -73.551261, - 45.490742 - ], - [ - -73.55163, - 45.490924 - ], - [ - -73.551996, - 45.491154 - ], - [ - -73.552466, - 45.491495 - ], - [ - -73.552812, - 45.491812 - ], - [ - -73.553225, - 45.492293 - ], - [ - -73.553459, - 45.492647 - ], - [ - -73.553701, - 45.493121 - ], - [ - -73.553714, - 45.493155 - ], - [ - -73.554005, - 45.493935 - ], - [ - -73.554229, - 45.494495 - ], - [ - -73.55441, - 45.494962 - ], - [ - -73.554709, - 45.495574 - ], - [ - -73.554963, - 45.495825 - ], - [ - -73.555225, - 45.496022 - ], - [ - -73.555665, - 45.496222 - ], - [ - -73.557268, - 45.496821 - ], - [ - -73.557934, - 45.497074 - ], - [ - -73.558499, - 45.497286 - ], - [ - -73.558754, - 45.497382 - ], - [ - -73.559665, - 45.497799 - ], - [ - -73.56055, - 45.498258 - ], - [ - -73.561247, - 45.498577 - ], - [ - -73.561574, - 45.498701 - ], - [ - -73.561917, - 45.498838 - ], - [ - -73.562165, - 45.49894 - ], - [ - -73.562545, - 45.499119 - ], - [ - -73.562571, - 45.499093 - ], - [ - -73.562654, - 45.499004 - ], - [ - -73.563341, - 45.498281 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.56431, - 45.497835 - ], - [ - -73.565142, - 45.498217 - ], - [ - -73.565601, - 45.498443 - ], - [ - -73.565748, - 45.49831 - ], - [ - -73.565849, - 45.498292 - ], - [ - -73.566051, - 45.498359 - ], - [ - -73.566361, - 45.498471 - ], - [ - -73.566492, - 45.498485 - ], - [ - -73.566611, - 45.498345 - ] - ] - }, - "id": 123, - "properties": { - "id": "f2c17895-ee0b-4936-9d82-4cac5f61195b", - "data": { - "gtfs": { - "shape_id": "47_1_A" - }, - "segments": [ - { - "distanceMeters": 160, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 427, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 317, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 749, - "travelTimeSeconds": 95 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 623, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 10687, - "travelTimeSeconds": 832 - }, - { - "distanceMeters": 831, - "travelTimeSeconds": 300 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 198, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17923, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8693.922388021205, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.05, - "travelTimeWithoutDwellTimesSeconds": 1980, - "operatingTimeWithLayoverTimeSeconds": 2178, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1980, - "operatingSpeedWithLayoverMetersPerSecond": 8.23, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.05 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "91b595a9-abca-41fb-9723-f6ca055bd16b", - "8f4ce296-9511-42d4-a138-f52bb761830f", - "0a5b3fec-6725-4b10-9b81-ad6506fe82d2", - "a532b39a-66ec-444f-abc1-766787d9387c", - "3518bfc1-7b5d-4295-9440-6fc17dd6b559", - "e9dbe1ee-244a-4556-8fa1-052d6f2dee5e", - "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", - "56755a3d-6779-4355-8b48-27271fb6ce0b", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "601c2147-2f83-405b-be6a-8fe05117cb43", - "91b595a9-abca-41fb-9723-f6ca055bd16b", - "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", - "4509b80b-76a5-49de-acb2-533a50bafac5", - "c25adb1f-635e-4881-a89d-af8a9ea5ca92", - "87774b57-5ee3-418d-948c-ba4db73d3893", - "1ea7db5e-3ee6-4553-9276-7c24296c866d", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "7b9bfdae-7d0d-4463-a7d7-1a62138b83b5", - "461a5d33-406e-481a-b773-6e450c48b670", - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" - ], - "stops": [], - "line_id": "7fb41c77-2376-4573-8588-47eaa467011a", - "segments": [ - 0, - 12, - 18, - 21, - 29, - 41, - 45, - 48, - 52, - 57, - 66, - 74, - 77, - 86, - 92, - 96, - 106, - 113, - 115, - 143, - 152, - 159, - 178, - 180, - 324 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 123, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.482262, - 45.447391 - ], - [ - -73.48231, - 45.44732 - ], - [ - -73.482392, - 45.447199 - ], - [ - -73.482245, - 45.447145 - ], - [ - -73.482082, - 45.447077 - ], - [ - -73.481942, - 45.447005 - ], - [ - -73.481839, - 45.446947 - ], - [ - -73.481672, - 45.446839 - ], - [ - -73.481644, - 45.446821 - ], - [ - -73.481469, - 45.446695 - ], - [ - -73.481319, - 45.446551 - ], - [ - -73.481245, - 45.446479 - ], - [ - -73.481153, - 45.446364 - ], - [ - -73.481089, - 45.446285 - ], - [ - -73.480926, - 45.445993 - ], - [ - -73.480839, - 45.445718 - ], - [ - -73.480811, - 45.445444 - ], - [ - -73.480848, - 45.445021 - ], - [ - -73.481, - 45.443777 - ], - [ - -73.481012, - 45.443676 - ], - [ - -73.481219, - 45.441988 - ], - [ - -73.481285, - 45.441413 - ], - [ - -73.481299, - 45.441295 - ], - [ - -73.481973, - 45.441343 - ], - [ - -73.482262, - 45.441363 - ], - [ - -73.482811, - 45.441395 - ], - [ - -73.483146, - 45.441426 - ], - [ - -73.483482, - 45.441503 - ], - [ - -73.483768, - 45.441606 - ], - [ - -73.48378, - 45.441612 - ], - [ - -73.484016, - 45.441723 - ], - [ - -73.484181, - 45.441813 - ], - [ - -73.484668, - 45.442183 - ], - [ - -73.485324, - 45.442682 - ], - [ - -73.485435, - 45.442763 - ], - [ - -73.48577, - 45.442902 - ], - [ - -73.486077, - 45.44301 - ], - [ - -73.486385, - 45.443073 - ], - [ - -73.486658, - 45.4431 - ], - [ - -73.48683, - 45.443109 - ], - [ - -73.487183, - 45.443127 - ], - [ - -73.487344, - 45.44313 - ], - [ - -73.487487, - 45.443132 - ], - [ - -73.490545, - 45.443222 - ], - [ - -73.491559, - 45.443245 - ], - [ - -73.49153, - 45.443628 - ], - [ - -73.491504, - 45.443969 - ], - [ - -73.491285, - 45.444689 - ], - [ - -73.491118, - 45.445206 - ], - [ - -73.491092, - 45.445287 - ], - [ - -73.491055, - 45.445404 - ], - [ - -73.49061, - 45.446822 - ], - [ - -73.490574, - 45.447287 - ], - [ - -73.490565, - 45.447402 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.489956, - 45.447483 - ], - [ - -73.486184, - 45.447402 - ], - [ - -73.485392, - 45.447385 - ], - [ - -73.485334, - 45.447383 - ], - [ - -73.484501, - 45.447365 - ], - [ - -73.483174, - 45.447338 - ], - [ - -73.483047, - 45.447334 - ], - [ - -73.482811, - 45.447302 - ], - [ - -73.4826, - 45.447257 - ], - [ - -73.482392, - 45.447199 - ], - [ - -73.48231, - 45.44732 - ], - [ - -73.482034, - 45.44773 - ], - [ - -73.481672, - 45.448265 - ], - [ - -73.481538, - 45.448436 - ], - [ - -73.481405, - 45.448562 - ], - [ - -73.481319, - 45.448638 - ], - [ - -73.481186, - 45.448724 - ], - [ - -73.480948, - 45.448841 - ], - [ - -73.480707, - 45.44894 - ], - [ - -73.479513, - 45.449365 - ], - [ - -73.479229, - 45.449466 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.478198, - 45.44985 - ], - [ - -73.477921, - 45.449951 - ], - [ - -73.477783, - 45.450014 - ], - [ - -73.477866, - 45.4501 - ], - [ - -73.478024, - 45.450307 - ], - [ - -73.478182, - 45.450577 - ], - [ - -73.4785, - 45.451198 - ], - [ - -73.478751, - 45.451724 - ], - [ - -73.478921, - 45.452116 - ], - [ - -73.479087, - 45.452577 - ], - [ - -73.479123, - 45.452678 - ], - [ - -73.479207, - 45.453038 - ], - [ - -73.479292, - 45.453398 - ], - [ - -73.479352, - 45.453722 - ], - [ - -73.479396, - 45.454042 - ], - [ - -73.479472, - 45.454777 - ], - [ - -73.47953, - 45.455342 - ], - [ - -73.479549, - 45.455666 - ], - [ - -73.479585, - 45.456089 - ], - [ - -73.479608, - 45.45641 - ], - [ - -73.479622, - 45.456606 - ], - [ - -73.479632, - 45.456719 - ], - [ - -73.47972, - 45.457668 - ], - [ - -73.479747, - 45.458082 - ], - [ - -73.479754, - 45.45832 - ], - [ - -73.479732, - 45.458469 - ], - [ - -73.479695, - 45.458689 - ], - [ - -73.479603, - 45.459 - ], - [ - -73.479545, - 45.459171 - ], - [ - -73.479513, - 45.459238 - ], - [ - -73.479465, - 45.459342 - ], - [ - -73.479339, - 45.459576 - ], - [ - -73.479253, - 45.45972 - ], - [ - -73.479162, - 45.45985 - ], - [ - -73.478872, - 45.460205 - ], - [ - -73.478751, - 45.460331 - ], - [ - -73.478321, - 45.460701 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.476645, - 45.461976 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.474375, - 45.468229 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473876, - 45.468507 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.473204, - 45.468295 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.471427, - 45.468098 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469574, - 45.467137 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469043, - 45.46624 - ] - ] - }, - "id": 124, - "properties": { - "id": "9135afa3-6a72-47bb-a17c-2f1d9254451f", - "data": { - "gtfs": { - "shape_id": "47_2_A" - }, - "segments": [ - { - "distanceMeters": 160, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 427, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 317, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 750, - "travelTimeSeconds": 95 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 623, - "travelTimeSeconds": 80 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6299, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2293.7049268168794, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.5, - "travelTimeWithoutDwellTimesSeconds": 840, - "operatingTimeWithLayoverTimeSeconds": 1020, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 840, - "operatingSpeedWithLayoverMetersPerSecond": 6.17, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.5 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "91b595a9-abca-41fb-9723-f6ca055bd16b", - "8f4ce296-9511-42d4-a138-f52bb761830f", - "0a5b3fec-6725-4b10-9b81-ad6506fe82d2", - "a532b39a-66ec-444f-abc1-766787d9387c", - "3518bfc1-7b5d-4295-9440-6fc17dd6b559", - "e9dbe1ee-244a-4556-8fa1-052d6f2dee5e", - "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", - "56755a3d-6779-4355-8b48-27271fb6ce0b", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "601c2147-2f83-405b-be6a-8fe05117cb43", - "91b595a9-abca-41fb-9723-f6ca055bd16b", - "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", - "4509b80b-76a5-49de-acb2-533a50bafac5", - "c25adb1f-635e-4881-a89d-af8a9ea5ca92", - "87774b57-5ee3-418d-948c-ba4db73d3893", - "1ea7db5e-3ee6-4553-9276-7c24296c866d", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "7fb41c77-2376-4573-8588-47eaa467011a", - "segments": [ - 0, - 12, - 18, - 21, - 29, - 41, - 45, - 48, - 52, - 57, - 66, - 74, - 77, - 86, - 92, - 96, - 106, - 113, - 115, - 143, - 152, - 159 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 124, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.566611, - 45.498345 - ], - [ - -73.566738, - 45.498195 - ], - [ - -73.566628, - 45.49808 - ], - [ - -73.566306, - 45.497931 - ], - [ - -73.566253, - 45.497841 - ], - [ - -73.56638, - 45.497699 - ], - [ - -73.566016, - 45.497523 - ], - [ - -73.564691, - 45.496892 - ], - [ - -73.563974, - 45.496566 - ], - [ - -73.562701, - 45.495919 - ], - [ - -73.562646, - 45.496027 - ], - [ - -73.562481, - 45.496317 - ], - [ - -73.562435, - 45.496383 - ], - [ - -73.562367, - 45.496479 - ], - [ - -73.562274, - 45.496658 - ], - [ - -73.562038, - 45.497108 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.561218, - 45.497864 - ], - [ - -73.561033, - 45.497765 - ], - [ - -73.560139, - 45.497347 - ], - [ - -73.559235, - 45.49696 - ], - [ - -73.55917, - 45.496938 - ], - [ - -73.558356, - 45.496631 - ], - [ - -73.558148, - 45.496557 - ], - [ - -73.557604, - 45.496364 - ], - [ - -73.556782, - 45.49606 - ], - [ - -73.555745, - 45.495673 - ], - [ - -73.555351, - 45.495512 - ], - [ - -73.555133, - 45.495401 - ], - [ - -73.554916, - 45.495262 - ], - [ - -73.554768, - 45.495125 - ], - [ - -73.55465, - 45.494994 - ], - [ - -73.553944, - 45.493258 - ], - [ - -73.553818, - 45.492971 - ], - [ - -73.553465, - 45.492338 - ], - [ - -73.552977, - 45.491759 - ], - [ - -73.552502, - 45.491344 - ], - [ - -73.551956, - 45.490962 - ], - [ - -73.551651, - 45.490791 - ], - [ - -73.551074, - 45.490513 - ], - [ - -73.550682, - 45.490367 - ], - [ - -73.550312, - 45.490228 - ], - [ - -73.54956, - 45.490034 - ], - [ - -73.548355, - 45.489798 - ], - [ - -73.542648, - 45.488704 - ], - [ - -73.541878, - 45.488554 - ], - [ - -73.541083, - 45.488397 - ], - [ - -73.540636, - 45.488282 - ], - [ - -73.540145, - 45.488119 - ], - [ - -73.539582, - 45.48786 - ], - [ - -73.539557, - 45.487845 - ], - [ - -73.539239, - 45.487663 - ], - [ - -73.538946, - 45.487462 - ], - [ - -73.538619, - 45.487192 - ], - [ - -73.538304, - 45.486863 - ], - [ - -73.538089, - 45.486564 - ], - [ - -73.537862, - 45.486139 - ], - [ - -73.537796, - 45.485958 - ], - [ - -73.537731, - 45.485785 - ], - [ - -73.53767, - 45.485461 - ], - [ - -73.537646, - 45.485264 - ], - [ - -73.537653, - 45.484914 - ], - [ - -73.537707, - 45.484604 - ], - [ - -73.537881, - 45.484168 - ], - [ - -73.537968, - 45.483893 - ], - [ - -73.538058, - 45.483623 - ], - [ - -73.539557, - 45.479354 - ], - [ - -73.53982, - 45.478652 - ], - [ - -73.540179, - 45.47782 - ], - [ - -73.540481, - 45.477177 - ], - [ - -73.540578, - 45.477027 - ], - [ - -73.540928, - 45.476409 - ], - [ - -73.5413, - 45.475732 - ], - [ - -73.541747, - 45.474937 - ], - [ - -73.542136, - 45.474264 - ], - [ - -73.542539, - 45.47363 - ], - [ - -73.543159, - 45.472786 - ], - [ - -73.543162, - 45.472781 - ], - [ - -73.5432, - 45.472729 - ], - [ - -73.543381, - 45.472482 - ], - [ - -73.543908, - 45.471834 - ], - [ - -73.544604, - 45.471016 - ], - [ - -73.54479, - 45.470824 - ], - [ - -73.544929, - 45.470679 - ], - [ - -73.54509, - 45.470477 - ], - [ - -73.545159, - 45.470391 - ], - [ - -73.545162, - 45.470289 - ], - [ - -73.54518, - 45.470102 - ], - [ - -73.54513, - 45.469912 - ], - [ - -73.545032, - 45.469762 - ], - [ - -73.544829, - 45.469589 - ], - [ - -73.544396, - 45.469456 - ], - [ - -73.544223, - 45.469408 - ], - [ - -73.544, - 45.469414 - ], - [ - -73.54385, - 45.469436 - ], - [ - -73.543665, - 45.469485 - ], - [ - -73.543125, - 45.469658 - ], - [ - -73.542795, - 45.46978 - ], - [ - -73.542335, - 45.469915 - ], - [ - -73.542042, - 45.469974 - ], - [ - -73.541634, - 45.469988 - ], - [ - -73.538583, - 45.470121 - ], - [ - -73.536645, - 45.47012 - ], - [ - -73.534843, - 45.470106 - ], - [ - -73.531663, - 45.470044 - ], - [ - -73.528901, - 45.469979 - ], - [ - -73.525636, - 45.469864 - ], - [ - -73.520215, - 45.469565 - ], - [ - -73.516228, - 45.469261 - ], - [ - -73.50737, - 45.468395 - ], - [ - -73.501604, - 45.467786 - ], - [ - -73.499262, - 45.467514 - ], - [ - -73.493921, - 45.466881 - ], - [ - -73.491932, - 45.466645 - ], - [ - -73.489852, - 45.466348 - ], - [ - -73.489119, - 45.46624 - ], - [ - -73.489027, - 45.466226 - ], - [ - -73.486848, - 45.465931 - ], - [ - -73.485714, - 45.465782 - ], - [ - -73.482904, - 45.465439 - ], - [ - -73.482123, - 45.46537 - ], - [ - -73.479736, - 45.465191 - ], - [ - -73.47968, - 45.465187 - ], - [ - -73.478363, - 45.465119 - ], - [ - -73.477796, - 45.465089 - ], - [ - -73.475753, - 45.464994 - ], - [ - -73.474695, - 45.464942 - ], - [ - -73.474262, - 45.464921 - ], - [ - -73.474113, - 45.464916 - ], - [ - -73.473291, - 45.464882 - ], - [ - -73.472501, - 45.46485 - ], - [ - -73.471447, - 45.46476 - ], - [ - -73.469875, - 45.464616 - ], - [ - -73.469333, - 45.464554 - ], - [ - -73.46902, - 45.464515 - ], - [ - -73.468704, - 45.464452 - ], - [ - -73.468392, - 45.464367 - ], - [ - -73.468066, - 45.46424 - ], - [ - -73.467826, - 45.46409 - ], - [ - -73.467593, - 45.463944 - ], - [ - -73.467415, - 45.463833 - ], - [ - -73.467133, - 45.463667 - ], - [ - -73.466953, - 45.463591 - ], - [ - -73.466529, - 45.463529 - ], - [ - -73.466232, - 45.463594 - ], - [ - -73.466092, - 45.463623 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.468838, - 45.466382 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469045, - 45.46621 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467773, - 45.466066 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469327, - 45.468092 - ], - [ - -73.469492, - 45.4681 - ], - [ - -73.470299, - 45.468145 - ], - [ - -73.471107, - 45.468184 - ], - [ - -73.471238, - 45.46819 - ], - [ - -73.471526, - 45.468208 - ], - [ - -73.471971, - 45.468232 - ], - [ - -73.472194, - 45.468244 - ], - [ - -73.472485, - 45.468257 - ], - [ - -73.472597, - 45.468262 - ], - [ - -73.472728, - 45.468276 - ], - [ - -73.472834, - 45.468294 - ], - [ - -73.472877, - 45.468307 - ], - [ - -73.473025, - 45.468348 - ], - [ - -73.473214, - 45.468424 - ], - [ - -73.473673, - 45.468604 - ], - [ - -73.473905, - 45.468649 - ], - [ - -73.474077, - 45.468676 - ], - [ - -73.474259, - 45.46869 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474544, - 45.468492 - ], - [ - -73.474545, - 45.468488 - ], - [ - -73.474528, - 45.468236 - ], - [ - -73.474508, - 45.467936 - ], - [ - -73.474508, - 45.467294 - ], - [ - -73.474542, - 45.4665 - ], - [ - -73.474546, - 45.466404 - ], - [ - -73.474554, - 45.466199 - ], - [ - -73.474621, - 45.465194 - ], - [ - -73.474664, - 45.464506 - ], - [ - -73.474669, - 45.464397 - ], - [ - -73.474734, - 45.464067 - ], - [ - -73.474884, - 45.463697 - ], - [ - -73.475002, - 45.463492 - ], - [ - -73.47522, - 45.463212 - ], - [ - -73.475408, - 45.463039 - ], - [ - -73.47556, - 45.462909 - ], - [ - -73.475821, - 45.462711 - ], - [ - -73.476105, - 45.462495 - ], - [ - -73.476465, - 45.462241 - ], - [ - -73.476557, - 45.462176 - ], - [ - -73.477249, - 45.461685 - ], - [ - -73.478242, - 45.460935 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.47888, - 45.460399 - ], - [ - -73.479008, - 45.460264 - ], - [ - -73.479302, - 45.459904 - ], - [ - -73.479398, - 45.459769 - ], - [ - -73.479488, - 45.459616 - ], - [ - -73.479616, - 45.459382 - ], - [ - -73.479654, - 45.459298 - ], - [ - -73.479699, - 45.459202 - ], - [ - -73.47976, - 45.459027 - ], - [ - -73.479776, - 45.458968 - ], - [ - -73.479808, - 45.458865 - ], - [ - -73.479852, - 45.458707 - ], - [ - -73.479891, - 45.458478 - ], - [ - -73.479913, - 45.458325 - ], - [ - -73.479923, - 45.458145 - ], - [ - -73.479926, - 45.458073 - ], - [ - -73.479893, - 45.457659 - ], - [ - -73.479818, - 45.456877 - ], - [ - -73.479803, - 45.456723 - ], - [ - -73.479792, - 45.456611 - ], - [ - -73.479747, - 45.456084 - ], - [ - -73.479731, - 45.4559 - ], - [ - -73.479696, - 45.455396 - ], - [ - -73.479645, - 45.454842 - ], - [ - -73.479629, - 45.454671 - ], - [ - -73.479566, - 45.454028 - ], - [ - -73.479521, - 45.453709 - ], - [ - -73.47946, - 45.45338 - ], - [ - -73.479374, - 45.453016 - ], - [ - -73.479305, - 45.452757 - ], - [ - -73.479278, - 45.452656 - ], - [ - -73.479074, - 45.452084 - ], - [ - -73.478902, - 45.451688 - ], - [ - -73.478649, - 45.451162 - ], - [ - -73.478451, - 45.450779 - ], - [ - -73.47833, - 45.450536 - ], - [ - -73.478167, - 45.450257 - ], - [ - -73.478006, - 45.450048 - ], - [ - -73.478004, - 45.450046 - ], - [ - -73.477921, - 45.449951 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.479229, - 45.449466 - ], - [ - -73.479306, - 45.449438 - ], - [ - -73.480707, - 45.44894 - ], - [ - -73.480948, - 45.448841 - ], - [ - -73.481186, - 45.448724 - ], - [ - -73.481319, - 45.448638 - ], - [ - -73.481405, - 45.448562 - ], - [ - -73.481538, - 45.448436 - ], - [ - -73.481602, - 45.448354 - ], - [ - -73.481672, - 45.448265 - ], - [ - -73.482262, - 45.447391 - ] - ] - }, - "id": 125, - "properties": { - "id": "2dc8c0fb-42f4-4440-966e-c416cca8e772", - "data": { - "gtfs": { - "shape_id": "47_1_R" - }, - "segments": [ - { - "distanceMeters": 1006, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 10885, - "travelTimeSeconds": 780 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 518, - "travelTimeSeconds": 79 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 936, - "travelTimeSeconds": 143 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 119, - "travelTimeSeconds": 23 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 15501, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8693.922388021205, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.94, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 8.91, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.94 - }, - "mode": "bus", - "name": "Sect. R Brossard", - "color": "#A32638", - "nodes": [ - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", - "0f8ef5e7-ff7c-4097-8d8a-9727f12190ea", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "7b9bfdae-7d0d-4463-a7d7-1a62138b83b5", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", - "87774b57-5ee3-418d-948c-ba4db73d3893", - "c25adb1f-635e-4881-a89d-af8a9ea5ca92", - "4509b80b-76a5-49de-acb2-533a50bafac5", - "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", - "3e4f29c9-7bf2-4ca4-9cb4-2a3c4710cea6", - "91b595a9-abca-41fb-9723-f6ca055bd16b" - ], - "stops": [], - "line_id": "7fb41c77-2376-4573-8588-47eaa467011a", - "segments": [ - 0, - 23, - 173, - 175, - 194, - 199, - 232, - 235, - 243, - 254, - 260, - 266, - 274, - 279, - 286 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 125, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469043, - 45.46624 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469327, - 45.468092 - ], - [ - -73.469492, - 45.4681 - ], - [ - -73.470299, - 45.468145 - ], - [ - -73.471072, - 45.468182 - ], - [ - -73.471238, - 45.46819 - ], - [ - -73.471526, - 45.468208 - ], - [ - -73.472194, - 45.468244 - ], - [ - -73.472439, - 45.468255 - ], - [ - -73.472597, - 45.468262 - ], - [ - -73.472654, - 45.468268 - ], - [ - -73.472728, - 45.468276 - ], - [ - -73.472834, - 45.468294 - ], - [ - -73.472877, - 45.468307 - ], - [ - -73.473025, - 45.468348 - ], - [ - -73.473214, - 45.468424 - ], - [ - -73.473673, - 45.468604 - ], - [ - -73.473905, - 45.468649 - ], - [ - -73.474077, - 45.468676 - ], - [ - -73.474259, - 45.46869 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474544, - 45.468492 - ], - [ - -73.474545, - 45.468488 - ], - [ - -73.474528, - 45.468236 - ], - [ - -73.474508, - 45.467936 - ], - [ - -73.474508, - 45.467294 - ], - [ - -73.474542, - 45.4665 - ], - [ - -73.474546, - 45.466404 - ], - [ - -73.474554, - 45.466199 - ], - [ - -73.474621, - 45.465194 - ], - [ - -73.474664, - 45.464506 - ], - [ - -73.474669, - 45.464397 - ], - [ - -73.474734, - 45.464067 - ], - [ - -73.474884, - 45.463697 - ], - [ - -73.475002, - 45.463492 - ], - [ - -73.47522, - 45.463212 - ], - [ - -73.475408, - 45.463039 - ], - [ - -73.47556, - 45.462909 - ], - [ - -73.475821, - 45.462711 - ], - [ - -73.476105, - 45.462495 - ], - [ - -73.476557, - 45.462176 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476053, - 45.461855 - ], - [ - -73.475666, - 45.461613 - ], - [ - -73.475315, - 45.461869 - ], - [ - -73.475116, - 45.462034 - ], - [ - -73.474994, - 45.462135 - ], - [ - -73.474502, - 45.462639 - ], - [ - -73.474394, - 45.46281 - ], - [ - -73.474225, - 45.463052 - ], - [ - -73.47413, - 45.463142 - ], - [ - -73.47412, - 45.463148 - ], - [ - -73.474018, - 45.46321 - ], - [ - -73.472903, - 45.464108 - ], - [ - -73.472811, - 45.464181 - ], - [ - -73.472107, - 45.4637 - ], - [ - -73.471841, - 45.463592 - ], - [ - -73.471685, - 45.463568 - ], - [ - -73.471666, - 45.463565 - ], - [ - -73.471494, - 45.463556 - ], - [ - -73.471257, - 45.463547 - ], - [ - -73.470687, - 45.463533 - ], - [ - -73.469164, - 45.463481 - ], - [ - -73.468972, - 45.463474 - ], - [ - -73.468884, - 45.463461 - ], - [ - -73.468833, - 45.46342 - ], - [ - -73.468836, - 45.463308 - ], - [ - -73.468837, - 45.463254 - ], - [ - -73.468876, - 45.462738 - ], - [ - -73.46897, - 45.46149 - ], - [ - -73.46901, - 45.460865 - ], - [ - -73.469029, - 45.46061 - ], - [ - -73.469045, - 45.460397 - ], - [ - -73.469046, - 45.459978 - ], - [ - -73.46901, - 45.459861 - ], - [ - -73.468938, - 45.459704 - ], - [ - -73.468742, - 45.459506 - ], - [ - -73.468425, - 45.459258 - ], - [ - -73.468212, - 45.459096 - ], - [ - -73.468158, - 45.459039 - ], - [ - -73.468056, - 45.45893 - ], - [ - -73.467979, - 45.458754 - ], - [ - -73.467956, - 45.458669 - ], - [ - -73.467971, - 45.458525 - ], - [ - -73.467975, - 45.458309 - ], - [ - -73.467993, - 45.458208 - ], - [ - -73.468021, - 45.458057 - ], - [ - -73.468109, - 45.457211 - ], - [ - -73.468147, - 45.457005 - ], - [ - -73.468158, - 45.456945 - ], - [ - -73.468342, - 45.456404 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468443, - 45.456109 - ], - [ - -73.468739, - 45.455281 - ], - [ - -73.468828, - 45.455033 - ], - [ - -73.468944, - 45.454656 - ], - [ - -73.469059, - 45.454371 - ], - [ - -73.469093, - 45.454287 - ], - [ - -73.469306, - 45.453787 - ], - [ - -73.469579, - 45.453148 - ], - [ - -73.469962, - 45.452249 - ], - [ - -73.470381, - 45.451277 - ], - [ - -73.470498, - 45.451021 - ], - [ - -73.470665, - 45.450674 - ], - [ - -73.470688, - 45.450625 - ], - [ - -73.470954, - 45.450197 - ], - [ - -73.471118, - 45.449963 - ], - [ - -73.471258, - 45.449752 - ], - [ - -73.471364, - 45.449599 - ], - [ - -73.471456, - 45.449523 - ], - [ - -73.471562, - 45.449433 - ], - [ - -73.471718, - 45.449347 - ], - [ - -73.471866, - 45.449284 - ], - [ - -73.471995, - 45.449248 - ], - [ - -73.472128, - 45.449217 - ], - [ - -73.47242, - 45.449145 - ], - [ - -73.472583, - 45.449086 - ], - [ - -73.472758, - 45.448996 - ], - [ - -73.472948, - 45.448844 - ], - [ - -73.47303, - 45.448749 - ], - [ - -73.47338, - 45.448205 - ], - [ - -73.473437, - 45.448115 - ], - [ - -73.473507, - 45.448007 - ], - [ - -73.473833, - 45.447525 - ], - [ - -73.473962, - 45.447314 - ], - [ - -73.474095, - 45.447058 - ], - [ - -73.474171, - 45.446882 - ], - [ - -73.474217, - 45.446698 - ], - [ - -73.474269, - 45.446255 - ], - [ - -73.474281, - 45.446153 - ], - [ - -73.474377, - 45.444612 - ], - [ - -73.474384, - 45.444507 - ], - [ - -73.474438, - 45.443521 - ], - [ - -73.474469, - 45.443314 - ], - [ - -73.474541, - 45.443044 - ], - [ - -73.474682, - 45.442761 - ], - [ - -73.474902, - 45.442388 - ], - [ - -73.475039, - 45.44219 - ], - [ - -73.475115, - 45.442091 - ], - [ - -73.475247, - 45.441942 - ], - [ - -73.475479, - 45.441749 - ], - [ - -73.475658, - 45.441634 - ], - [ - -73.475703, - 45.441605 - ], - [ - -73.475852, - 45.44151 - ], - [ - -73.476413, - 45.441313 - ], - [ - -73.476584, - 45.441272 - ], - [ - -73.47678, - 45.441236 - ], - [ - -73.477021, - 45.4412 - ], - [ - -73.477247, - 45.441191 - ], - [ - -73.477718, - 45.441194 - ], - [ - -73.478107, - 45.441196 - ], - [ - -73.479034, - 45.441203 - ], - [ - -73.479817, - 45.44121 - ], - [ - -73.480147, - 45.441223 - ], - [ - -73.480968, - 45.441277 - ], - [ - -73.481107, - 45.441286 - ], - [ - -73.481299, - 45.441295 - ], - [ - -73.48139, - 45.440598 - ], - [ - -73.481487, - 45.439784 - ], - [ - -73.481519, - 45.439469 - ], - [ - -73.481531, - 45.439172 - ], - [ - -73.481538, - 45.438613 - ] - ] - }, - "id": 126, - "properties": { - "id": "0e73c9cf-536a-4ec9-b36d-a83270ecf019", - "data": { - "gtfs": { - "shape_id": "49_2_R" - }, - "segments": [ - { - "distanceMeters": 629, - "travelTimeSeconds": 106 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 1003, - "travelTimeSeconds": 169 - }, - { - "distanceMeters": 104, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 96, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 363, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 65 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5838, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3213.4164872454244, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.08, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 5.12, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.08 - }, - "mode": "bus", - "name": "Sect. R Brossard", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "06992afa-6d7e-4650-bffc-5a747de5860c", - "7389acbe-1784-4fea-a2ab-a4a9c9239e83", - "70ace55a-2f3c-410b-8740-bea06ecb9924", - "71ffac32-604a-4260-b51e-c427856a20c4", - "f872f4da-bae9-485b-a2fb-ae01787389fc", - "f045bfca-885e-4fa6-be24-3e8f1855457a", - "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", - "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", - "ca62a640-5508-4ced-94a0-1f22107c57c9", - "d5176685-5789-4135-ac00-ee677cfb093a", - "e21c6436-090b-4893-a347-5a67018da073", - "23085815-2dff-4082-9402-38931522fb99", - "9d8d74b7-fc1f-4af5-a4a4-0cee1ee7b556", - "aebecb3d-b7f4-4a39-9b68-19a1c1a3b2b2", - "eab0f5d6-db57-4bf2-a26d-a49e7fe11c54", - "972f2e12-8185-4823-8ce3-2c965170ad9a", - "ca880d29-2a91-4666-9ed1-c2825e5165f2", - "a532b39a-66ec-444f-abc1-766787d9387c", - "205aad7d-06ec-4492-b7ed-ac8ab79f10b2" - ], - "stops": [], - "line_id": "7a4e0a54-3576-4fd4-8663-468d225b84ff", - "segments": [ - 0, - 20, - 24, - 60, - 63, - 69, - 71, - 75, - 80, - 89, - 97, - 103, - 108, - 114, - 117, - 121, - 138, - 146, - 148, - 159, - 167, - 172 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 126, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.481538, - 45.438613 - ], - [ - -73.48154, - 45.438492 - ], - [ - -73.481571, - 45.437827 - ], - [ - -73.481572, - 45.437776 - ], - [ - -73.481581, - 45.437111 - ], - [ - -73.481588, - 45.436691 - ], - [ - -73.48159, - 45.436549 - ], - [ - -73.481583, - 45.435531 - ], - [ - -73.481582, - 45.43541 - ], - [ - -73.482932, - 45.435402 - ], - [ - -73.484572, - 45.435388 - ], - [ - -73.484708, - 45.435387 - ], - [ - -73.487428, - 45.435365 - ], - [ - -73.487529, - 45.435364 - ], - [ - -73.487766, - 45.435362 - ], - [ - -73.488499, - 45.435353 - ], - [ - -73.489074, - 45.435353 - ], - [ - -73.489078, - 45.435353 - ], - [ - -73.490339, - 45.435335 - ], - [ - -73.490512, - 45.435353 - ], - [ - -73.490636, - 45.435389 - ], - [ - -73.49074, - 45.435443 - ], - [ - -73.490825, - 45.43552 - ], - [ - -73.490911, - 45.435596 - ], - [ - -73.490933, - 45.4358 - ], - [ - -73.490941, - 45.43588 - ], - [ - -73.490978, - 45.436131 - ], - [ - -73.491142, - 45.436851 - ], - [ - -73.491212, - 45.437097 - ], - [ - -73.491237, - 45.437184 - ], - [ - -73.49152, - 45.437954 - ], - [ - -73.491681, - 45.43831 - ], - [ - -73.491751, - 45.438464 - ], - [ - -73.491829, - 45.438638 - ], - [ - -73.488272, - 45.438589 - ], - [ - -73.488148, - 45.438588 - ], - [ - -73.485007, - 45.438549 - ], - [ - -73.484835, - 45.438547 - ], - [ - -73.484725, - 45.438545 - ], - [ - -73.481678, - 45.438495 - ], - [ - -73.48154, - 45.438492 - ], - [ - -73.481345, - 45.438492 - ], - [ - -73.481336, - 45.439167 - ], - [ - -73.481322, - 45.43946 - ], - [ - -73.481291, - 45.439775 - ], - [ - -73.481194, - 45.440589 - ], - [ - -73.481136, - 45.441053 - ], - [ - -73.481135, - 45.441066 - ], - [ - -73.481107, - 45.441286 - ], - [ - -73.480147, - 45.441223 - ], - [ - -73.479817, - 45.44121 - ], - [ - -73.478107, - 45.441196 - ], - [ - -73.477739, - 45.441194 - ], - [ - -73.477247, - 45.441191 - ], - [ - -73.477021, - 45.4412 - ], - [ - -73.47678, - 45.441236 - ], - [ - -73.476584, - 45.441272 - ], - [ - -73.476413, - 45.441313 - ], - [ - -73.475946, - 45.441477 - ], - [ - -73.475852, - 45.44151 - ], - [ - -73.475703, - 45.441605 - ], - [ - -73.475479, - 45.441749 - ], - [ - -73.475247, - 45.441942 - ], - [ - -73.475115, - 45.442091 - ], - [ - -73.475039, - 45.44219 - ], - [ - -73.474902, - 45.442388 - ], - [ - -73.474682, - 45.442761 - ], - [ - -73.474541, - 45.443044 - ], - [ - -73.474469, - 45.443314 - ], - [ - -73.474438, - 45.443521 - ], - [ - -73.474388, - 45.444425 - ], - [ - -73.474384, - 45.444507 - ], - [ - -73.474283, - 45.446131 - ], - [ - -73.474281, - 45.446153 - ], - [ - -73.474217, - 45.446698 - ], - [ - -73.474171, - 45.446882 - ], - [ - -73.474095, - 45.447058 - ], - [ - -73.473962, - 45.447314 - ], - [ - -73.473833, - 45.447525 - ], - [ - -73.473561, - 45.447927 - ], - [ - -73.473507, - 45.448007 - ], - [ - -73.473437, - 45.448115 - ], - [ - -73.473038, - 45.448738 - ], - [ - -73.47303, - 45.448749 - ], - [ - -73.472948, - 45.448844 - ], - [ - -73.472758, - 45.448996 - ], - [ - -73.472583, - 45.449086 - ], - [ - -73.47242, - 45.449145 - ], - [ - -73.472128, - 45.449217 - ], - [ - -73.471995, - 45.449248 - ], - [ - -73.471866, - 45.449284 - ], - [ - -73.471718, - 45.449347 - ], - [ - -73.471562, - 45.449433 - ], - [ - -73.471456, - 45.449523 - ], - [ - -73.471364, - 45.449599 - ], - [ - -73.471258, - 45.449752 - ], - [ - -73.471118, - 45.449963 - ], - [ - -73.470954, - 45.450197 - ], - [ - -73.470688, - 45.450625 - ], - [ - -73.470665, - 45.450673 - ], - [ - -73.470498, - 45.451021 - ], - [ - -73.470381, - 45.451277 - ], - [ - -73.469962, - 45.452249 - ], - [ - -73.469631, - 45.453026 - ], - [ - -73.469306, - 45.453787 - ], - [ - -73.469157, - 45.454137 - ], - [ - -73.469093, - 45.454287 - ], - [ - -73.468944, - 45.454656 - ], - [ - -73.468828, - 45.455033 - ], - [ - -73.468739, - 45.455281 - ], - [ - -73.4685, - 45.455947 - ], - [ - -73.468443, - 45.456109 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468158, - 45.456945 - ], - [ - -73.468147, - 45.457005 - ], - [ - -73.468109, - 45.457211 - ], - [ - -73.468044, - 45.457838 - ], - [ - -73.468021, - 45.458057 - ], - [ - -73.467975, - 45.458309 - ], - [ - -73.467971, - 45.458525 - ], - [ - -73.467956, - 45.458669 - ], - [ - -73.467979, - 45.458754 - ], - [ - -73.468053, - 45.458922 - ], - [ - -73.468056, - 45.45893 - ], - [ - -73.468212, - 45.459096 - ], - [ - -73.468425, - 45.459258 - ], - [ - -73.468742, - 45.459506 - ], - [ - -73.468938, - 45.459704 - ], - [ - -73.46901, - 45.459861 - ], - [ - -73.469046, - 45.459978 - ], - [ - -73.469045, - 45.460397 - ], - [ - -73.469024, - 45.460677 - ], - [ - -73.46901, - 45.460865 - ], - [ - -73.46897, - 45.46149 - ], - [ - -73.468876, - 45.462738 - ], - [ - -73.468837, - 45.463254 - ], - [ - -73.468834, - 45.463415 - ], - [ - -73.468833, - 45.46342 - ], - [ - -73.468884, - 45.463461 - ], - [ - -73.468972, - 45.463474 - ], - [ - -73.46938, - 45.463488 - ], - [ - -73.470687, - 45.463533 - ], - [ - -73.471257, - 45.463547 - ], - [ - -73.471494, - 45.463556 - ], - [ - -73.471524, - 45.463557 - ], - [ - -73.471666, - 45.463565 - ], - [ - -73.471841, - 45.463592 - ], - [ - -73.472107, - 45.4637 - ], - [ - -73.472767, - 45.464151 - ], - [ - -73.472811, - 45.464181 - ], - [ - -73.474007, - 45.463218 - ], - [ - -73.474018, - 45.46321 - ], - [ - -73.47413, - 45.463142 - ], - [ - -73.474225, - 45.463052 - ], - [ - -73.474394, - 45.46281 - ], - [ - -73.474502, - 45.462639 - ], - [ - -73.474965, - 45.462165 - ], - [ - -73.474994, - 45.462135 - ], - [ - -73.475315, - 45.461869 - ], - [ - -73.475666, - 45.461613 - ], - [ - -73.476379, - 45.46206 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.474375, - 45.468229 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.473995, - 45.46853 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.473204, - 45.468295 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.471427, - 45.468098 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469574, - 45.467137 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469043, - 45.46624 - ] - ] - }, - "id": 127, - "properties": { - "id": "885eb183-bc94-4c46-84f0-4eadc45ef44e", - "data": { - "gtfs": { - "shape_id": "49_2_A" - }, - "segments": [ - { - "distanceMeters": 214, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 121, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 738, - "travelTimeSeconds": 106 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 623, - "travelTimeSeconds": 90 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8032, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3213.4164872454244, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.44, - "travelTimeWithoutDwellTimesSeconds": 1080, - "operatingTimeWithLayoverTimeSeconds": 1260, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1080, - "operatingSpeedWithLayoverMetersPerSecond": 6.37, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.44 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", - "52fa062f-ca90-4e1d-998a-7b658a499b52", - "553f2fec-7dd4-475c-b1ed-ff9a62614e74", - "7a321951-38aa-4886-b297-59c69bcf3448", - "23afb18c-7e9a-4c38-a0e7-59d1aa5f5f5f", - "8f8e9cec-3b4e-465e-9db7-a68a74d060d1", - "a755707e-dbca-49b2-ba36-d6e6ffe0de89", - "70846d21-918c-4542-969d-4e5cccbc6e50", - "b88e581a-07f9-428f-bbb4-ab3a41e2dfe7", - "6195cfbf-10cd-4d7a-86f0-ca5dad76f9d9", - "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", - "a532b39a-66ec-444f-abc1-766787d9387c", - "ca880d29-2a91-4666-9ed1-c2825e5165f2", - "972f2e12-8185-4823-8ce3-2c965170ad9a", - "eab0f5d6-db57-4bf2-a26d-a49e7fe11c54", - "aebecb3d-b7f4-4a39-9b68-19a1c1a3b2b2", - "9d8d74b7-fc1f-4af5-a4a4-0cee1ee7b556", - "5847442f-86f3-431c-ac38-324378b56363", - "23085815-2dff-4082-9402-38931522fb99", - "e21c6436-090b-4893-a347-5a67018da073", - "d5176685-5789-4135-ac00-ee677cfb093a", - "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", - "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", - "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", - "ef880d61-7a9a-4504-a9a1-27967a52e95d", - "f872f4da-bae9-485b-a2fb-ae01787389fc", - "71ffac32-604a-4260-b51e-c427856a20c4", - "70ace55a-2f3c-410b-8740-bea06ecb9924", - "7389acbe-1784-4fea-a2ab-a4a9c9239e83", - "06992afa-6d7e-4650-bffc-5a747de5860c", - "ff23cabb-ca11-421b-a582-f6413aa21fa0", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "7a4e0a54-3576-4fd4-8663-468d225b84ff", - "segments": [ - 0, - 5, - 7, - 10, - 12, - 24, - 28, - 32, - 34, - 36, - 39, - 47, - 52, - 58, - 70, - 72, - 79, - 82, - 99, - 103, - 105, - 110, - 116, - 122, - 131, - 136, - 144, - 148, - 150, - 156, - 160, - 188, - 197, - 204 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 127, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.481538, - 45.438613 - ], - [ - -73.48154, - 45.438492 - ], - [ - -73.481571, - 45.437827 - ], - [ - -73.481572, - 45.437776 - ], - [ - -73.481581, - 45.437111 - ], - [ - -73.48159, - 45.436549 - ], - [ - -73.481582, - 45.43541 - ], - [ - -73.482932, - 45.435402 - ], - [ - -73.484708, - 45.435387 - ], - [ - -73.486868, - 45.435369 - ], - [ - -73.487529, - 45.435364 - ], - [ - -73.487766, - 45.435362 - ], - [ - -73.488499, - 45.435353 - ], - [ - -73.489074, - 45.435353 - ], - [ - -73.489078, - 45.435353 - ], - [ - -73.490339, - 45.435335 - ], - [ - -73.490512, - 45.435353 - ], - [ - -73.490636, - 45.435389 - ], - [ - -73.49074, - 45.435443 - ], - [ - -73.490825, - 45.43552 - ], - [ - -73.490911, - 45.435596 - ], - [ - -73.490941, - 45.43588 - ], - [ - -73.490978, - 45.436131 - ], - [ - -73.491134, - 45.436815 - ], - [ - -73.491142, - 45.436851 - ], - [ - -73.491237, - 45.437184 - ], - [ - -73.49152, - 45.437954 - ], - [ - -73.491681, - 45.43831 - ], - [ - -73.491829, - 45.438638 - ], - [ - -73.488148, - 45.438588 - ], - [ - -73.484835, - 45.438547 - ], - [ - -73.484725, - 45.438545 - ], - [ - -73.483151, - 45.438519 - ], - [ - -73.48154, - 45.438492 - ], - [ - -73.481345, - 45.438492 - ], - [ - -73.481336, - 45.439167 - ], - [ - -73.481322, - 45.43946 - ], - [ - -73.481291, - 45.439775 - ], - [ - -73.481194, - 45.440589 - ], - [ - -73.481136, - 45.441053 - ], - [ - -73.481107, - 45.441286 - ], - [ - -73.480147, - 45.441223 - ], - [ - -73.479817, - 45.44121 - ], - [ - -73.478107, - 45.441196 - ], - [ - -73.477247, - 45.441191 - ], - [ - -73.477021, - 45.4412 - ], - [ - -73.47678, - 45.441236 - ], - [ - -73.476653, - 45.441259 - ], - [ - -73.476584, - 45.441272 - ], - [ - -73.476413, - 45.441313 - ], - [ - -73.475852, - 45.44151 - ], - [ - -73.475703, - 45.441605 - ], - [ - -73.475479, - 45.441749 - ], - [ - -73.475247, - 45.441942 - ], - [ - -73.475115, - 45.442091 - ], - [ - -73.475039, - 45.44219 - ], - [ - -73.474902, - 45.442388 - ], - [ - -73.474682, - 45.442761 - ], - [ - -73.474541, - 45.443044 - ], - [ - -73.474469, - 45.443314 - ], - [ - -73.474438, - 45.443521 - ], - [ - -73.474384, - 45.444507 - ], - [ - -73.474281, - 45.446153 - ], - [ - -73.474217, - 45.446698 - ], - [ - -73.474171, - 45.446882 - ], - [ - -73.474095, - 45.447058 - ], - [ - -73.473962, - 45.447314 - ], - [ - -73.473833, - 45.447525 - ], - [ - -73.473507, - 45.448007 - ], - [ - -73.473437, - 45.448115 - ], - [ - -73.47303, - 45.448749 - ], - [ - -73.472948, - 45.448844 - ], - [ - -73.472758, - 45.448996 - ], - [ - -73.472583, - 45.449086 - ], - [ - -73.47242, - 45.449145 - ], - [ - -73.472128, - 45.449217 - ], - [ - -73.471995, - 45.449248 - ], - [ - -73.471866, - 45.449284 - ], - [ - -73.471718, - 45.449347 - ], - [ - -73.471562, - 45.449433 - ], - [ - -73.471456, - 45.449523 - ], - [ - -73.471364, - 45.449599 - ], - [ - -73.471313, - 45.449672 - ], - [ - -73.471258, - 45.449752 - ], - [ - -73.471118, - 45.449963 - ], - [ - -73.470954, - 45.450197 - ], - [ - -73.470688, - 45.450625 - ], - [ - -73.470498, - 45.451021 - ], - [ - -73.470381, - 45.451277 - ], - [ - -73.469962, - 45.452249 - ], - [ - -73.469306, - 45.453787 - ], - [ - -73.469159, - 45.454132 - ], - [ - -73.469093, - 45.454287 - ], - [ - -73.468944, - 45.454656 - ], - [ - -73.468828, - 45.455033 - ], - [ - -73.468739, - 45.455281 - ], - [ - -73.468443, - 45.456109 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468158, - 45.456945 - ], - [ - -73.468147, - 45.457005 - ], - [ - -73.468109, - 45.457211 - ], - [ - -73.468021, - 45.458057 - ], - [ - -73.467975, - 45.458309 - ], - [ - -73.467971, - 45.458525 - ], - [ - -73.467956, - 45.458669 - ], - [ - -73.467979, - 45.458754 - ], - [ - -73.468056, - 45.45893 - ], - [ - -73.468212, - 45.459096 - ], - [ - -73.468215, - 45.459099 - ], - [ - -73.468425, - 45.459258 - ], - [ - -73.468742, - 45.459506 - ], - [ - -73.468938, - 45.459704 - ], - [ - -73.46901, - 45.459861 - ], - [ - -73.469046, - 45.459978 - ], - [ - -73.469045, - 45.460397 - ], - [ - -73.46901, - 45.460865 - ], - [ - -73.46897, - 45.46149 - ], - [ - -73.468876, - 45.462738 - ], - [ - -73.468837, - 45.463254 - ], - [ - -73.468833, - 45.46342 - ], - [ - -73.468884, - 45.463461 - ], - [ - -73.468972, - 45.463474 - ], - [ - -73.46938, - 45.463488 - ], - [ - -73.470687, - 45.463533 - ], - [ - -73.471257, - 45.463547 - ], - [ - -73.471494, - 45.463556 - ], - [ - -73.471666, - 45.463565 - ], - [ - -73.471841, - 45.463592 - ], - [ - -73.472107, - 45.4637 - ], - [ - -73.472811, - 45.464181 - ], - [ - -73.474018, - 45.46321 - ], - [ - -73.47413, - 45.463142 - ], - [ - -73.474225, - 45.463052 - ], - [ - -73.474394, - 45.46281 - ], - [ - -73.474502, - 45.462639 - ], - [ - -73.474586, - 45.462553 - ], - [ - -73.474994, - 45.462135 - ], - [ - -73.475315, - 45.461869 - ], - [ - -73.475666, - 45.461613 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.474357, - 45.467954 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.473995, - 45.46853 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469574, - 45.467137 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469043, - 45.46624 - ] - ] - }, - "id": 128, - "properties": { - "id": "e2676ef9-8967-4f7b-9439-071e6e08162a", - "data": { - "gtfs": { - "shape_id": "49_2_A" - }, - "segments": [ - { - "distanceMeters": 769, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 464, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 888, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 802, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 1100, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 525, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 568, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 1071, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 916, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 934, - "travelTimeSeconds": 28 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8032, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 0, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 33.47, - "travelTimeWithoutDwellTimesSeconds": 240, - "operatingTimeWithLayoverTimeSeconds": 420, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 240, - "operatingSpeedWithLayoverMetersPerSecond": 19.12, - "averageSpeedWithoutDwellTimesMetersPerSecond": 33.47 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", - "52fa062f-ca90-4e1d-998a-7b658a499b52", - "553f2fec-7dd4-475c-b1ed-ff9a62614e74", - "7a321951-38aa-4886-b297-59c69bcf3448", - "23afb18c-7e9a-4c38-a0e7-59d1aa5f5f5f", - "8f8e9cec-3b4e-465e-9db7-a68a74d060d1", - "a755707e-dbca-49b2-ba36-d6e6ffe0de89", - "70846d21-918c-4542-969d-4e5cccbc6e50", - "b88e581a-07f9-428f-bbb4-ab3a41e2dfe7", - "6195cfbf-10cd-4d7a-86f0-ca5dad76f9d9", - "205aad7d-06ec-4492-b7ed-ac8ab79f10b2" - ], - "stops": [], - "line_id": "7a4e0a54-3576-4fd4-8663-468d225b84ff", - "segments": [ - 0, - 9, - 23, - 32, - 47, - 82, - 91, - 108, - 135, - 166 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 128, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469043, - 45.46624 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466446, - 45.465894 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.463779, - 45.468251 - ], - [ - -73.463257, - 45.46862 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463016, - 45.468741 - ], - [ - -73.462763, - 45.468943 - ], - [ - -73.462689, - 45.46902 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448625, - 45.478273 - ], - [ - -73.448305, - 45.478058 - ], - [ - -73.447769, - 45.477695 - ], - [ - -73.4477, - 45.477648 - ], - [ - -73.446992, - 45.477175 - ], - [ - -73.446393, - 45.476765 - ], - [ - -73.445743, - 45.476329 - ], - [ - -73.445364, - 45.476065 - ], - [ - -73.445205, - 45.475955 - ], - [ - -73.444867, - 45.475726 - ], - [ - -73.444508, - 45.475482 - ], - [ - -73.443609, - 45.474874 - ], - [ - -73.443515, - 45.474946 - ], - [ - -73.443474, - 45.474978 - ], - [ - -73.443381, - 45.47505 - ], - [ - -73.443257, - 45.475141 - ], - [ - -73.443079, - 45.475273 - ], - [ - -73.441123, - 45.476718 - ], - [ - -73.441038, - 45.476781 - ], - [ - -73.438955, - 45.478323 - ], - [ - -73.438567, - 45.47861 - ], - [ - -73.43848, - 45.478674 - ], - [ - -73.436743, - 45.479964 - ], - [ - -73.436011, - 45.480501 - ], - [ - -73.435909, - 45.480575 - ], - [ - -73.435802, - 45.480665 - ], - [ - -73.4357, - 45.480746 - ], - [ - -73.433397, - 45.48244 - ], - [ - -73.433303, - 45.482509 - ], - [ - -73.431493, - 45.483848 - ], - [ - -73.430767, - 45.484381 - ], - [ - -73.430708, - 45.484424 - ], - [ - -73.427769, - 45.486623 - ], - [ - -73.427651, - 45.486712 - ], - [ - -73.427512, - 45.486636 - ], - [ - -73.426791, - 45.486243 - ], - [ - -73.425934, - 45.48578 - ], - [ - -73.425069, - 45.485316 - ], - [ - -73.424818, - 45.485176 - ], - [ - -73.42419, - 45.484829 - ], - [ - -73.423325, - 45.484347 - ], - [ - -73.422743, - 45.484032 - ], - [ - -73.422435, - 45.483865 - ], - [ - -73.421542, - 45.483378 - ], - [ - -73.420946, - 45.483046 - ], - [ - -73.42066, - 45.482887 - ], - [ - -73.420042, - 45.482559 - ], - [ - -73.419826, - 45.482446 - ], - [ - -73.419695, - 45.482374 - ], - [ - -73.419097, - 45.48205 - ], - [ - -73.418881, - 45.481932 - ], - [ - -73.418984, - 45.481849 - ], - [ - -73.419019, - 45.48182 - ], - [ - -73.419233, - 45.481532 - ], - [ - -73.419409, - 45.481249 - ], - [ - -73.419411, - 45.481243 - ], - [ - -73.419428, - 45.481163 - ], - [ - -73.419425, - 45.481015 - ], - [ - -73.419388, - 45.480961 - ], - [ - -73.419545, - 45.480916 - ], - [ - -73.419768, - 45.480885 - ], - [ - -73.420004, - 45.480898 - ], - [ - -73.420262, - 45.480935 - ], - [ - -73.420402, - 45.480998 - ], - [ - -73.420899, - 45.481322 - ], - [ - -73.42092, - 45.481335 - ], - [ - -73.421017, - 45.481389 - ], - [ - -73.420853, - 45.481512 - ], - [ - -73.419775, - 45.482315 - ], - [ - -73.419122, - 45.482809 - ], - [ - -73.418378, - 45.483361 - ], - [ - -73.417919, - 45.483709 - ], - [ - -73.417812, - 45.483628 - ], - [ - -73.417557, - 45.483463 - ], - [ - -73.417096, - 45.483164 - ], - [ - -73.417029, - 45.483123 - ], - [ - -73.41701, - 45.483087 - ], - [ - -73.416987, - 45.483038 - ], - [ - -73.416999, - 45.482988 - ], - [ - -73.417044, - 45.482943 - ], - [ - -73.417259, - 45.482782 - ], - [ - -73.418062, - 45.48218 - ], - [ - -73.418268, - 45.482026 - ], - [ - -73.418999, - 45.482405 - ], - [ - -73.419134, - 45.482472 - ], - [ - -73.419285, - 45.482536 - ], - [ - -73.419388, - 45.482612 - ], - [ - -73.419497, - 45.482693 - ], - [ - -73.420093, - 45.483009 - ], - [ - -73.42011, - 45.483017 - ], - [ - -73.420308, - 45.483112 - ], - [ - -73.420348, - 45.483134 - ], - [ - -73.42046, - 45.483193 - ], - [ - -73.421429, - 45.483725 - ], - [ - -73.422428, - 45.48427 - ], - [ - -73.423447, - 45.484823 - ], - [ - -73.423524, - 45.484865 - ], - [ - -73.423667, - 45.484946 - ], - [ - -73.424722, - 45.485522 - ], - [ - -73.425074, - 45.485712 - ], - [ - -73.425082, - 45.485716 - ], - [ - -73.425509, - 45.485946 - ], - [ - -73.425286, - 45.486255 - ], - [ - -73.423328, - 45.488971 - ], - [ - -73.423292, - 45.489022 - ], - [ - -73.421235, - 45.491904 - ], - [ - -73.421183, - 45.491976 - ], - [ - -73.421099, - 45.492084 - ], - [ - -73.418957, - 45.495073 - ], - [ - -73.418892, - 45.495165 - ], - [ - -73.416874, - 45.498016 - ], - [ - -73.416828, - 45.498074 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.416635, - 45.498326 - ], - [ - -73.416523, - 45.498497 - ], - [ - -73.414847, - 45.500817 - ], - [ - -73.414616, - 45.501136 - ] - ] - }, - "id": 129, - "properties": { - "id": "b0042967-c51a-4d31-ba30-2d0c4aa11116", - "data": { - "gtfs": { - "shape_id": "50_2_R" - }, - "segments": [ - { - "distanceMeters": 2586, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 405, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 329, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 420, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 395, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 382, - "travelTimeSeconds": 72 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9196, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3725.609547512516, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.02, - "travelTimeWithoutDwellTimesSeconds": 1020, - "operatingTimeWithLayoverTimeSeconds": 1200, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1020, - "operatingSpeedWithLayoverMetersPerSecond": 7.66, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.02 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "76ff8292-f41f-4d17-998d-6dd3d2c32288", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "d6d99976-b155-4a29-b088-e41bf69a502a", - "3753be88-b479-4ca1-bd8a-5ea694207952", - "cfc3e1d1-58b4-4975-b310-259719029f69", - "cd932703-83f9-4acf-94fa-d521e6d427d0", - "dd69c268-00e5-467c-8e8d-2b0301743114", - "3b77dae0-2a5d-4b97-b5b6-65893df568aa", - "f026582d-e34c-4c8f-97d3-a9902c9cf75e", - "9b3c9288-610f-44d5-ac44-d6199a8a0d55", - "335b9e5b-fca5-4f4b-8f3b-2277caa27d7a", - "cb1c9669-6517-4a25-af17-321fc49ae537", - "d8baecf8-a12f-4e7f-9e2a-2cdfa71e72d0", - "784376eb-c666-4a01-b5d4-f21e9880ab84", - "f7218298-f862-4f68-aabe-7a0d51011bc1", - "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", - "07f8e631-764d-44cf-ab3a-dcf1276de1d6", - "495fd0d8-631d-48a3-bc48-4ec746693d10", - "c4df5893-41b2-4d6a-81b5-7128fb72aba4", - "5665bcec-62a1-4d01-9550-6900a57f083d", - "0e836f4e-0231-42bf-9c3d-37ea2aef8934", - "30c08115-a1b6-45b8-9122-c5fe99723d2e", - "bf4259d8-23ae-478a-8a93-ec28083b908d", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "853b0202-bae1-4c20-ab0e-8b27d1350e9a" - ], - "stops": [], - "line_id": "20f532fa-3da9-413b-be59-a6857696c35b", - "segments": [ - 0, - 53, - 58, - 66, - 68, - 71, - 74, - 78, - 81, - 83, - 89, - 92, - 95, - 100, - 106, - 115, - 124, - 132, - 140, - 146, - 150, - 154, - 156, - 159, - 162 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 129, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.414616, - 45.501136 - ], - [ - -73.414535, - 45.501249 - ], - [ - -73.414536, - 45.50133 - ], - [ - -73.414045, - 45.501145 - ], - [ - -73.413646, - 45.500992 - ], - [ - -73.413399, - 45.500906 - ], - [ - -73.41311, - 45.500798 - ], - [ - -73.412769, - 45.500658 - ], - [ - -73.412474, - 45.500548 - ], - [ - -73.412332, - 45.500496 - ], - [ - -73.411788, - 45.500288 - ], - [ - -73.411184, - 45.500063 - ], - [ - -73.410857, - 45.499937 - ], - [ - -73.410514, - 45.499802 - ], - [ - -73.410403, - 45.499758 - ], - [ - -73.40994, - 45.499576 - ], - [ - -73.409228, - 45.499298 - ], - [ - -73.409074, - 45.499238 - ], - [ - -73.408846, - 45.499152 - ], - [ - -73.408613, - 45.499067 - ], - [ - -73.408565, - 45.499044 - ], - [ - -73.407743, - 45.498715 - ], - [ - -73.407513, - 45.498634 - ], - [ - -73.406574, - 45.498264 - ], - [ - -73.406782, - 45.49797 - ], - [ - -73.406814, - 45.497925 - ], - [ - -73.407382, - 45.497122 - ], - [ - -73.407645, - 45.49675 - ], - [ - -73.407675, - 45.496708 - ], - [ - -73.407892, - 45.496394 - ], - [ - -73.408205, - 45.495957 - ], - [ - -73.408715, - 45.495247 - ], - [ - -73.408773, - 45.495157 - ], - [ - -73.408851, - 45.495036 - ], - [ - -73.4093, - 45.495297 - ], - [ - -73.410398, - 45.49591 - ], - [ - -73.410625, - 45.49603 - ], - [ - -73.410729, - 45.496085 - ], - [ - -73.411068, - 45.496248 - ], - [ - -73.41156, - 45.496461 - ], - [ - -73.411587, - 45.496473 - ], - [ - -73.412271, - 45.49673 - ], - [ - -73.412864, - 45.496955 - ], - [ - -73.413694, - 45.497257 - ], - [ - -73.414507, - 45.497553 - ], - [ - -73.415733, - 45.497998 - ], - [ - -73.416635, - 45.498326 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.416874, - 45.498016 - ], - [ - -73.417029, - 45.497796 - ], - [ - -73.41707, - 45.49774 - ], - [ - -73.418824, - 45.495261 - ], - [ - -73.418892, - 45.495165 - ], - [ - -73.421027, - 45.492185 - ], - [ - -73.421099, - 45.492084 - ], - [ - -73.421183, - 45.491976 - ], - [ - -73.423211, - 45.489134 - ], - [ - -73.423292, - 45.489022 - ], - [ - -73.425245, - 45.486311 - ], - [ - -73.425509, - 45.485946 - ], - [ - -73.425082, - 45.485716 - ], - [ - -73.425077, - 45.485713 - ], - [ - -73.424722, - 45.485522 - ], - [ - -73.423671, - 45.484948 - ], - [ - -73.423667, - 45.484946 - ], - [ - -73.423524, - 45.484865 - ], - [ - -73.422428, - 45.48427 - ], - [ - -73.421429, - 45.483725 - ], - [ - -73.42046, - 45.483193 - ], - [ - -73.420447, - 45.483186 - ], - [ - -73.420348, - 45.483134 - ], - [ - -73.420308, - 45.483112 - ], - [ - -73.419609, - 45.483652 - ], - [ - -73.418778, - 45.484272 - ], - [ - -73.418235, - 45.483922 - ], - [ - -73.418109, - 45.483842 - ], - [ - -73.418029, - 45.48379 - ], - [ - -73.419479, - 45.482708 - ], - [ - -73.420488, - 45.481958 - ], - [ - -73.420745, - 45.481758 - ], - [ - -73.42092, - 45.481704 - ], - [ - -73.421015, - 45.481695 - ], - [ - -73.421095, - 45.481704 - ], - [ - -73.421171, - 45.481741 - ], - [ - -73.421343, - 45.481822 - ], - [ - -73.421516, - 45.481941 - ], - [ - -73.421646, - 45.482031 - ], - [ - -73.42174, - 45.482096 - ], - [ - -73.421254, - 45.48246 - ], - [ - -73.420769, - 45.482809 - ], - [ - -73.42066, - 45.482887 - ], - [ - -73.420985, - 45.483068 - ], - [ - -73.421542, - 45.483378 - ], - [ - -73.422311, - 45.483797 - ], - [ - -73.422435, - 45.483865 - ], - [ - -73.423325, - 45.484347 - ], - [ - -73.42419, - 45.484829 - ], - [ - -73.424992, - 45.485273 - ], - [ - -73.425069, - 45.485316 - ], - [ - -73.425934, - 45.48578 - ], - [ - -73.426791, - 45.486243 - ], - [ - -73.427651, - 45.486712 - ], - [ - -73.427823, - 45.486583 - ], - [ - -73.428211, - 45.486293 - ], - [ - -73.43062, - 45.48449 - ], - [ - -73.430708, - 45.484424 - ], - [ - -73.431493, - 45.483848 - ], - [ - -73.433082, - 45.482672 - ], - [ - -73.433303, - 45.482509 - ], - [ - -73.435655, - 45.48078 - ], - [ - -73.4357, - 45.480746 - ], - [ - -73.435802, - 45.480665 - ], - [ - -73.435909, - 45.480575 - ], - [ - -73.436743, - 45.479964 - ], - [ - -73.43835, - 45.478771 - ], - [ - -73.43848, - 45.478674 - ], - [ - -73.438955, - 45.478323 - ], - [ - -73.440958, - 45.47684 - ], - [ - -73.441038, - 45.476781 - ], - [ - -73.443321, - 45.475094 - ], - [ - -73.443381, - 45.47505 - ], - [ - -73.443474, - 45.474978 - ], - [ - -73.443927, - 45.475285 - ], - [ - -73.44437, - 45.475586 - ], - [ - -73.445007, - 45.476018 - ], - [ - -73.445067, - 45.476058 - ], - [ - -73.445608, - 45.476432 - ], - [ - -73.446237, - 45.47686 - ], - [ - -73.446804, - 45.477248 - ], - [ - -73.446869, - 45.477292 - ], - [ - -73.44754, - 45.477747 - ], - [ - -73.448146, - 45.478157 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.448868, - 45.478494 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.44939, - 45.478141 - ], - [ - -73.449478, - 45.478081 - ], - [ - -73.451123, - 45.476955 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.453442, - 45.475367 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.455853, - 45.473716 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.458237, - 45.472085 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.460514, - 45.470531 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.46262, - 45.469086 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465234, - 45.468288 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469043, - 45.46624 - ] - ] - }, - "id": 130, - "properties": { - "id": "08d5dd74-5946-473f-acdf-8a9bc6086af3", - "data": { - "gtfs": { - "shape_id": "50_2_A" - }, - "segments": [ - { - "distanceMeters": 206, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 383, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 380, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 417, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 307, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 547, - "travelTimeSeconds": 104 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10034, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5775.568824827481, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.19, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 5.57, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.19 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "853b0202-bae1-4c20-ab0e-8b27d1350e9a", - "69889f24-c076-4661-981b-6008a401d446", - "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", - "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", - "50ca3159-13cc-4149-b07f-8267a31166e3", - "590769f9-bd2c-482c-8bd5-e3724936b683", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "bf4259d8-23ae-478a-8a93-ec28083b908d", - "30c08115-a1b6-45b8-9122-c5fe99723d2e", - "0e836f4e-0231-42bf-9c3d-37ea2aef8934", - "037aae6d-413d-4b3d-8987-50e8714ef6c5", - "c4df5893-41b2-4d6a-81b5-7128fb72aba4", - "495fd0d8-631d-48a3-bc48-4ec746693d10", - "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", - "8131cbf3-211d-4b69-adcb-9af688489a49", - "cb1c9669-6517-4a25-af17-321fc49ae537", - "335b9e5b-fca5-4f4b-8f3b-2277caa27d7a", - "9b3c9288-610f-44d5-ac44-d6199a8a0d55", - "f026582d-e34c-4c8f-97d3-a9902c9cf75e", - "3b77dae0-2a5d-4b97-b5b6-65893df568aa", - "dd69c268-00e5-467c-8e8d-2b0301743114", - "cd932703-83f9-4acf-94fa-d521e6d427d0", - "cfc3e1d1-58b4-4975-b310-259719029f69", - "3753be88-b479-4ca1-bd8a-5ea694207952", - "d6d99976-b155-4a29-b088-e41bf69a502a", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "c4061c94-e615-4bca-b219-1ff6ea9657d0", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "907f8610-452b-440d-849b-c803b07dedc1", - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "20f532fa-3da9-413b-be59-a6857696c35b", - "segments": [ - 0, - 8, - 14, - 16, - 25, - 27, - 32, - 36, - 43, - 50, - 51, - 53, - 56, - 58, - 63, - 69, - 74, - 86, - 89, - 93, - 97, - 103, - 104, - 107, - 109, - 114, - 117, - 119, - 124, - 128, - 135, - 137, - 139, - 141, - 143, - 145, - 148, - 161 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 130, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469043, - 45.46624 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466446, - 45.465894 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465582, - 45.46821 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.463779, - 45.468251 - ], - [ - -73.463257, - 45.46862 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463016, - 45.468741 - ], - [ - -73.462763, - 45.468943 - ], - [ - -73.462689, - 45.46902 - ], - [ - -73.462689, - 45.46902 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.460799, - 45.470335 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.45844, - 45.471946 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.456055, - 45.473577 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.453681, - 45.475203 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.451334, - 45.47681 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.449271, - 45.478222 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448625, - 45.478273 - ], - [ - -73.448305, - 45.478058 - ], - [ - -73.447769, - 45.477695 - ], - [ - -73.4477, - 45.477648 - ], - [ - -73.446992, - 45.477175 - ], - [ - -73.446393, - 45.476765 - ], - [ - -73.445743, - 45.476329 - ], - [ - -73.445364, - 45.476065 - ], - [ - -73.445205, - 45.475955 - ], - [ - -73.444867, - 45.475726 - ], - [ - -73.444508, - 45.475482 - ], - [ - -73.443609, - 45.474874 - ], - [ - -73.443515, - 45.474946 - ], - [ - -73.443474, - 45.474978 - ], - [ - -73.443381, - 45.47505 - ], - [ - -73.443257, - 45.475141 - ], - [ - -73.443079, - 45.475273 - ], - [ - -73.441123, - 45.476718 - ], - [ - -73.441038, - 45.476781 - ], - [ - -73.438955, - 45.478323 - ], - [ - -73.438567, - 45.47861 - ], - [ - -73.43848, - 45.478674 - ], - [ - -73.436743, - 45.479964 - ], - [ - -73.436011, - 45.480501 - ], - [ - -73.435909, - 45.480575 - ], - [ - -73.435802, - 45.480665 - ], - [ - -73.4357, - 45.480746 - ], - [ - -73.433397, - 45.48244 - ], - [ - -73.433303, - 45.482509 - ], - [ - -73.431493, - 45.483848 - ], - [ - -73.430767, - 45.484381 - ], - [ - -73.430708, - 45.484424 - ], - [ - -73.427769, - 45.486623 - ], - [ - -73.427651, - 45.486712 - ], - [ - -73.427512, - 45.486636 - ], - [ - -73.426791, - 45.486243 - ], - [ - -73.425934, - 45.48578 - ], - [ - -73.425069, - 45.485316 - ], - [ - -73.424818, - 45.485176 - ], - [ - -73.42419, - 45.484829 - ], - [ - -73.423325, - 45.484347 - ], - [ - -73.422743, - 45.484032 - ], - [ - -73.422435, - 45.483865 - ], - [ - -73.421542, - 45.483378 - ], - [ - -73.420946, - 45.483046 - ], - [ - -73.42066, - 45.482887 - ], - [ - -73.420042, - 45.482559 - ], - [ - -73.419826, - 45.482446 - ], - [ - -73.419695, - 45.482374 - ], - [ - -73.419097, - 45.48205 - ], - [ - -73.418881, - 45.481932 - ], - [ - -73.418984, - 45.481849 - ], - [ - -73.419019, - 45.48182 - ], - [ - -73.419233, - 45.481532 - ], - [ - -73.419409, - 45.481249 - ], - [ - -73.419411, - 45.481243 - ], - [ - -73.419428, - 45.481163 - ], - [ - -73.419425, - 45.481015 - ], - [ - -73.419388, - 45.480961 - ], - [ - -73.419545, - 45.480916 - ], - [ - -73.419768, - 45.480885 - ], - [ - -73.420004, - 45.480898 - ], - [ - -73.420262, - 45.480935 - ], - [ - -73.420402, - 45.480998 - ], - [ - -73.420899, - 45.481322 - ], - [ - -73.42092, - 45.481335 - ], - [ - -73.421017, - 45.481389 - ], - [ - -73.420853, - 45.481512 - ], - [ - -73.419775, - 45.482315 - ], - [ - -73.419122, - 45.482809 - ], - [ - -73.418378, - 45.483361 - ], - [ - -73.417919, - 45.483709 - ], - [ - -73.417812, - 45.483628 - ], - [ - -73.417557, - 45.483463 - ], - [ - -73.417096, - 45.483164 - ], - [ - -73.417029, - 45.483123 - ], - [ - -73.41701, - 45.483087 - ], - [ - -73.416987, - 45.483038 - ], - [ - -73.416999, - 45.482988 - ], - [ - -73.417044, - 45.482943 - ], - [ - -73.417259, - 45.482782 - ], - [ - -73.418062, - 45.48218 - ], - [ - -73.418268, - 45.482026 - ], - [ - -73.418999, - 45.482405 - ], - [ - -73.419134, - 45.482472 - ], - [ - -73.419285, - 45.482536 - ], - [ - -73.419388, - 45.482612 - ], - [ - -73.419497, - 45.482693 - ], - [ - -73.420093, - 45.483009 - ], - [ - -73.42011, - 45.483017 - ], - [ - -73.420308, - 45.483112 - ], - [ - -73.420348, - 45.483134 - ], - [ - -73.42046, - 45.483193 - ], - [ - -73.421429, - 45.483725 - ], - [ - -73.422428, - 45.48427 - ], - [ - -73.423447, - 45.484823 - ], - [ - -73.423524, - 45.484865 - ], - [ - -73.423667, - 45.484946 - ], - [ - -73.424722, - 45.485522 - ], - [ - -73.425074, - 45.485712 - ], - [ - -73.425082, - 45.485716 - ], - [ - -73.425509, - 45.485946 - ], - [ - -73.425286, - 45.486255 - ], - [ - -73.423328, - 45.488971 - ], - [ - -73.423292, - 45.489022 - ], - [ - -73.421235, - 45.491904 - ], - [ - -73.421183, - 45.491976 - ], - [ - -73.421099, - 45.492084 - ], - [ - -73.418957, - 45.495073 - ], - [ - -73.418892, - 45.495165 - ], - [ - -73.416874, - 45.498016 - ], - [ - -73.416828, - 45.498074 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.416635, - 45.498326 - ], - [ - -73.416523, - 45.498497 - ], - [ - -73.414847, - 45.500817 - ], - [ - -73.414616, - 45.501136 - ] - ] - }, - "id": 131, - "properties": { - "id": "66149db6-534c-4592-9687-c3b09e8a4f02", - "data": { - "gtfs": { - "shape_id": "50_2_R" - }, - "segments": [ - { - "distanceMeters": 694, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 405, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 329, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 420, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 395, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 382, - "travelTimeSeconds": 72 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9196, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5775.568824827481, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.39, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 5.68, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.39 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "907f8610-452b-440d-849b-c803b07dedc1", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "76ff8292-f41f-4d17-998d-6dd3d2c32288", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "d6d99976-b155-4a29-b088-e41bf69a502a", - "3753be88-b479-4ca1-bd8a-5ea694207952", - "cfc3e1d1-58b4-4975-b310-259719029f69", - "cd932703-83f9-4acf-94fa-d521e6d427d0", - "dd69c268-00e5-467c-8e8d-2b0301743114", - "3b77dae0-2a5d-4b97-b5b6-65893df568aa", - "f026582d-e34c-4c8f-97d3-a9902c9cf75e", - "9b3c9288-610f-44d5-ac44-d6199a8a0d55", - "335b9e5b-fca5-4f4b-8f3b-2277caa27d7a", - "cb1c9669-6517-4a25-af17-321fc49ae537", - "d8baecf8-a12f-4e7f-9e2a-2cdfa71e72d0", - "784376eb-c666-4a01-b5d4-f21e9880ab84", - "f7218298-f862-4f68-aabe-7a0d51011bc1", - "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", - "07f8e631-764d-44cf-ab3a-dcf1276de1d6", - "495fd0d8-631d-48a3-bc48-4ec746693d10", - "c4df5893-41b2-4d6a-81b5-7128fb72aba4", - "5665bcec-62a1-4d01-9550-6900a57f083d", - "0e836f4e-0231-42bf-9c3d-37ea2aef8934", - "30c08115-a1b6-45b8-9122-c5fe99723d2e", - "bf4259d8-23ae-478a-8a93-ec28083b908d", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "853b0202-bae1-4c20-ab0e-8b27d1350e9a" - ], - "stops": [], - "line_id": "20f532fa-3da9-413b-be59-a6857696c35b", - "segments": [ - 0, - 28, - 44, - 47, - 49, - 51, - 53, - 55, - 57, - 61, - 66, - 74, - 76, - 79, - 82, - 86, - 89, - 91, - 97, - 100, - 103, - 108, - 114, - 123, - 132, - 140, - 148, - 154, - 158, - 162, - 164, - 167, - 170 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 131, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.414616, - 45.501136 - ], - [ - -73.414535, - 45.501249 - ], - [ - -73.414536, - 45.50133 - ], - [ - -73.414045, - 45.501145 - ], - [ - -73.413646, - 45.500992 - ], - [ - -73.413399, - 45.500906 - ], - [ - -73.41311, - 45.500798 - ], - [ - -73.412769, - 45.500658 - ], - [ - -73.412332, - 45.500496 - ], - [ - -73.411788, - 45.500288 - ], - [ - -73.411184, - 45.500063 - ], - [ - -73.410857, - 45.499937 - ], - [ - -73.410514, - 45.499802 - ], - [ - -73.40994, - 45.499576 - ], - [ - -73.409074, - 45.499238 - ], - [ - -73.408846, - 45.499152 - ], - [ - -73.408613, - 45.499067 - ], - [ - -73.408565, - 45.499044 - ], - [ - -73.407743, - 45.498715 - ], - [ - -73.407513, - 45.498634 - ], - [ - -73.406574, - 45.498264 - ], - [ - -73.406782, - 45.49797 - ], - [ - -73.407382, - 45.497122 - ], - [ - -73.407675, - 45.496708 - ], - [ - -73.407892, - 45.496394 - ], - [ - -73.408205, - 45.495957 - ], - [ - -73.408552, - 45.495474 - ], - [ - -73.408715, - 45.495247 - ], - [ - -73.408851, - 45.495036 - ], - [ - -73.4093, - 45.495297 - ], - [ - -73.410398, - 45.49591 - ], - [ - -73.410729, - 45.496085 - ], - [ - -73.411068, - 45.496248 - ], - [ - -73.41156, - 45.496461 - ], - [ - -73.411587, - 45.496473 - ], - [ - -73.412271, - 45.49673 - ], - [ - -73.412864, - 45.496955 - ], - [ - -73.414507, - 45.497553 - ], - [ - -73.415733, - 45.497998 - ], - [ - -73.416635, - 45.498326 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.416874, - 45.498016 - ], - [ - -73.417029, - 45.497796 - ], - [ - -73.417777, - 45.496741 - ], - [ - -73.418892, - 45.495165 - ], - [ - -73.420928, - 45.492323 - ], - [ - -73.421099, - 45.492084 - ], - [ - -73.421183, - 45.491976 - ], - [ - -73.423292, - 45.489022 - ], - [ - -73.425509, - 45.485946 - ], - [ - -73.425082, - 45.485716 - ], - [ - -73.425077, - 45.485713 - ], - [ - -73.424722, - 45.485522 - ], - [ - -73.423667, - 45.484946 - ], - [ - -73.423524, - 45.484865 - ], - [ - -73.422428, - 45.48427 - ], - [ - -73.421429, - 45.483725 - ], - [ - -73.42046, - 45.483193 - ], - [ - -73.420348, - 45.483134 - ], - [ - -73.420308, - 45.483112 - ], - [ - -73.419609, - 45.483652 - ], - [ - -73.418985, - 45.484117 - ], - [ - -73.418778, - 45.484272 - ], - [ - -73.418109, - 45.483842 - ], - [ - -73.418029, - 45.48379 - ], - [ - -73.419479, - 45.482708 - ], - [ - -73.420488, - 45.481958 - ], - [ - -73.420745, - 45.481758 - ], - [ - -73.42092, - 45.481704 - ], - [ - -73.421015, - 45.481695 - ], - [ - -73.421095, - 45.481704 - ], - [ - -73.421171, - 45.481741 - ], - [ - -73.421343, - 45.481822 - ], - [ - -73.421516, - 45.481941 - ], - [ - -73.42174, - 45.482096 - ], - [ - -73.421254, - 45.48246 - ], - [ - -73.42066, - 45.482887 - ], - [ - -73.420985, - 45.483068 - ], - [ - -73.421542, - 45.483378 - ], - [ - -73.42201, - 45.483634 - ], - [ - -73.422435, - 45.483865 - ], - [ - -73.423325, - 45.484347 - ], - [ - -73.42419, - 45.484829 - ], - [ - -73.425069, - 45.485316 - ], - [ - -73.425934, - 45.48578 - ], - [ - -73.426791, - 45.486243 - ], - [ - -73.427651, - 45.486712 - ], - [ - -73.427823, - 45.486583 - ], - [ - -73.430708, - 45.484424 - ], - [ - -73.431493, - 45.483848 - ], - [ - -73.431857, - 45.483578 - ], - [ - -73.433303, - 45.482509 - ], - [ - -73.4357, - 45.480746 - ], - [ - -73.435802, - 45.480665 - ], - [ - -73.435909, - 45.480575 - ], - [ - -73.436743, - 45.479964 - ], - [ - -73.43848, - 45.478674 - ], - [ - -73.438955, - 45.478323 - ], - [ - -73.440715, - 45.47702 - ], - [ - -73.441038, - 45.476781 - ], - [ - -73.443381, - 45.47505 - ], - [ - -73.443474, - 45.474978 - ], - [ - -73.443927, - 45.475285 - ], - [ - -73.44437, - 45.475586 - ], - [ - -73.445067, - 45.476058 - ], - [ - -73.445608, - 45.476432 - ], - [ - -73.446237, - 45.47686 - ], - [ - -73.446869, - 45.477292 - ], - [ - -73.44754, - 45.477747 - ], - [ - -73.448146, - 45.478157 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.448868, - 45.478494 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.449478, - 45.478081 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.453878, - 45.475068 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469043, - 45.46624 - ] - ] - }, - "id": 132, - "properties": { - "id": "8b258900-b588-486f-ab86-80085195acc4", - "data": { - "gtfs": { - "shape_id": "50_2_A" - }, - "segments": [ - { - "distanceMeters": 1078, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 963, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 550, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 1460, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 764, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 1036, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 1005, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 1444, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 1737, - "travelTimeSeconds": 52 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10034, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 402.25170076447296, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 33.44, - "travelTimeWithoutDwellTimesSeconds": 300, - "operatingTimeWithLayoverTimeSeconds": 480, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 300, - "operatingSpeedWithLayoverMetersPerSecond": 20.9, - "averageSpeedWithoutDwellTimesMetersPerSecond": 33.44 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "853b0202-bae1-4c20-ab0e-8b27d1350e9a", - "69889f24-c076-4661-981b-6008a401d446", - "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", - "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", - "50ca3159-13cc-4149-b07f-8267a31166e3", - "590769f9-bd2c-482c-8bd5-e3724936b683", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e" - ], - "stops": [], - "line_id": "20f532fa-3da9-413b-be59-a6857696c35b", - "segments": [ - 0, - 26, - 43, - 45, - 61, - 79, - 90, - 98, - 116 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 132, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469107, - 45.46587 - ], - [ - -73.469152, - 45.465801 - ], - [ - -73.469114, - 45.465711 - ], - [ - -73.469034, - 45.465669 - ], - [ - -73.468913, - 45.46567 - ], - [ - -73.468751, - 45.465752 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466385, - 45.46577 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467476, - 45.467991 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467548, - 45.468225 - ], - [ - -73.467698, - 45.468792 - ], - [ - -73.467776, - 45.469183 - ], - [ - -73.46782, - 45.469453 - ], - [ - -73.46784, - 45.469692 - ], - [ - -73.467865, - 45.469989 - ], - [ - -73.467864, - 45.470057 - ], - [ - -73.467862, - 45.470168 - ], - [ - -73.46786, - 45.470362 - ], - [ - -73.467821, - 45.470781 - ], - [ - -73.467786, - 45.471019 - ], - [ - -73.467768, - 45.4711 - ], - [ - -73.467742, - 45.471226 - ], - [ - -73.467655, - 45.471563 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467508, - 45.472063 - ], - [ - -73.467493, - 45.472108 - ], - [ - -73.467344, - 45.472561 - ], - [ - -73.467254, - 45.472832 - ], - [ - -73.467075, - 45.473412 - ], - [ - -73.467018, - 45.473612 - ], - [ - -73.46686, - 45.474168 - ], - [ - -73.466715, - 45.474632 - ], - [ - -73.466501, - 45.475269 - ], - [ - -73.466278, - 45.475935 - ], - [ - -73.466234, - 45.476067 - ], - [ - -73.46613, - 45.476375 - ], - [ - -73.465592, - 45.477979 - ], - [ - -73.465357, - 45.478703 - ], - [ - -73.46534, - 45.478747 - ], - [ - -73.465269, - 45.478932 - ], - [ - -73.465247, - 45.479 - ], - [ - -73.464879, - 45.480107 - ], - [ - -73.464823, - 45.480273 - ], - [ - -73.464733, - 45.480574 - ], - [ - -73.464664, - 45.480885 - ], - [ - -73.464648, - 45.481003 - ], - [ - -73.464634, - 45.481108 - ], - [ - -73.464622, - 45.481195 - ], - [ - -73.464619, - 45.481245 - ], - [ - -73.464603, - 45.481524 - ], - [ - -73.464619, - 45.481956 - ], - [ - -73.464693, - 45.482383 - ], - [ - -73.464736, - 45.482559 - ], - [ - -73.46485, - 45.482905 - ], - [ - -73.46499, - 45.483243 - ], - [ - -73.465069, - 45.483405 - ], - [ - -73.465231, - 45.483688 - ], - [ - -73.465328, - 45.483837 - ], - [ - -73.465383, - 45.483922 - ], - [ - -73.465513, - 45.484102 - ], - [ - -73.465839, - 45.48448 - ], - [ - -73.466022, - 45.484682 - ], - [ - -73.46613, - 45.484773 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.46623, - 45.484867 - ], - [ - -73.466294, - 45.484926 - ], - [ - -73.466447, - 45.485047 - ], - [ - -73.466566, - 45.485142 - ], - [ - -73.466759, - 45.48529 - ], - [ - -73.466948, - 45.485421 - ], - [ - -73.467024, - 45.48547 - ], - [ - -73.468004, - 45.486118 - ], - [ - -73.469888, - 45.487365 - ], - [ - -73.470621, - 45.487851 - ], - [ - -73.471588, - 45.488492 - ], - [ - -73.471789, - 45.488626 - ], - [ - -73.473768, - 45.489935 - ], - [ - -73.473993, - 45.490084 - ], - [ - -73.474218, - 45.490232 - ], - [ - -73.476501, - 45.49174 - ], - [ - -73.4777, - 45.49253 - ], - [ - -73.47907, - 45.493434 - ], - [ - -73.479217, - 45.493531 - ], - [ - -73.480275, - 45.494231 - ], - [ - -73.481907, - 45.495309 - ], - [ - -73.482, - 45.495372 - ], - [ - -73.482343, - 45.495598 - ], - [ - -73.483276, - 45.496213 - ], - [ - -73.483953, - 45.496659 - ], - [ - -73.484022, - 45.496708 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.483872, - 45.497077 - ], - [ - -73.483787, - 45.497139 - ], - [ - -73.483504, - 45.497347 - ], - [ - -73.483382, - 45.497433 - ], - [ - -73.483338, - 45.497469 - ], - [ - -73.483277, - 45.497509 - ], - [ - -73.482985, - 45.497707 - ], - [ - -73.482752, - 45.497863 - ], - [ - -73.482636, - 45.497941 - ], - [ - -73.482124, - 45.49831 - ], - [ - -73.481899, - 45.498472 - ], - [ - -73.481589, - 45.498697 - ], - [ - -73.481169, - 45.498994 - ], - [ - -73.480847, - 45.499223 - ], - [ - -73.480624, - 45.499383 - ], - [ - -73.480477, - 45.499488 - ], - [ - -73.480579, - 45.499552 - ], - [ - -73.481224, - 45.499993 - ], - [ - -73.481536, - 45.5002 - ], - [ - -73.481569, - 45.500222 - ], - [ - -73.481963, - 45.500488 - ], - [ - -73.48218, - 45.500628 - ], - [ - -73.482611, - 45.500906 - ], - [ - -73.48273, - 45.501001 - ], - [ - -73.482854, - 45.500942 - ], - [ - -73.48327, - 45.500861 - ], - [ - -73.483824, - 45.500767 - ], - [ - -73.484456, - 45.500681 - ], - [ - -73.485116, - 45.500596 - ], - [ - -73.485618, - 45.500533 - ], - [ - -73.486298, - 45.500448 - ], - [ - -73.486817, - 45.500683 - ], - [ - -73.48707, - 45.500799 - ], - [ - -73.487208, - 45.500862 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487613, - 45.501033 - ], - [ - -73.487728, - 45.501082 - ], - [ - -73.487936, - 45.501136 - ], - [ - -73.488187, - 45.501204 - ], - [ - -73.488486, - 45.501271 - ], - [ - -73.488837, - 45.501352 - ], - [ - -73.48926, - 45.501478 - ], - [ - -73.489491, - 45.501551 - ], - [ - -73.489761, - 45.501636 - ], - [ - -73.490233, - 45.501775 - ], - [ - -73.490675, - 45.501901 - ], - [ - -73.490913, - 45.501973 - ], - [ - -73.491171, - 45.502054 - ], - [ - -73.491899, - 45.502265 - ], - [ - -73.491979, - 45.502288 - ], - [ - -73.492173, - 45.502351 - ], - [ - -73.492553, - 45.502563 - ], - [ - -73.492653, - 45.50263 - ], - [ - -73.492961, - 45.502842 - ], - [ - -73.49317, - 45.503004 - ], - [ - -73.493353, - 45.503152 - ], - [ - -73.493565, - 45.503319 - ], - [ - -73.493725, - 45.503481 - ], - [ - -73.493899, - 45.503679 - ], - [ - -73.494111, - 45.503931 - ], - [ - -73.494232, - 45.504142 - ], - [ - -73.494283, - 45.504249 - ], - [ - -73.494313, - 45.504313 - ], - [ - -73.494395, - 45.504574 - ], - [ - -73.494481, - 45.50484 - ], - [ - -73.494522, - 45.504943 - ], - [ - -73.494738, - 45.505308 - ], - [ - -73.494875, - 45.505497 - ], - [ - -73.494934, - 45.505596 - ], - [ - -73.49495, - 45.505622 - ], - [ - -73.495007, - 45.505712 - ], - [ - -73.495705, - 45.506635 - ], - [ - -73.496706, - 45.507958 - ], - [ - -73.496737, - 45.507998 - ], - [ - -73.496824, - 45.508111 - ], - [ - -73.497769, - 45.509294 - ], - [ - -73.498065, - 45.509586 - ], - [ - -73.498161, - 45.50968 - ], - [ - -73.498287, - 45.509766 - ], - [ - -73.498376, - 45.509807 - ], - [ - -73.498525, - 45.509874 - ], - [ - -73.498839, - 45.509996 - ], - [ - -73.49986, - 45.510306 - ], - [ - -73.50032, - 45.51045 - ], - [ - -73.500624, - 45.510549 - ], - [ - -73.500724, - 45.510581 - ], - [ - -73.501152, - 45.51072 - ], - [ - -73.501574, - 45.510855 - ], - [ - -73.501949, - 45.510981 - ], - [ - -73.502532, - 45.511175 - ], - [ - -73.50299, - 45.511323 - ], - [ - -73.503113, - 45.511377 - ], - [ - -73.503356, - 45.511479 - ], - [ - -73.503468, - 45.511526 - ], - [ - -73.50359, - 45.511574 - ], - [ - -73.503649, - 45.511597 - ], - [ - -73.504821, - 45.512052 - ], - [ - -73.504953, - 45.512101 - ], - [ - -73.505513, - 45.512322 - ], - [ - -73.506058, - 45.51253 - ], - [ - -73.506149, - 45.512565 - ], - [ - -73.506238, - 45.512601 - ], - [ - -73.506546, - 45.512721 - ], - [ - -73.508131, - 45.513338 - ], - [ - -73.508565, - 45.513511 - ], - [ - -73.508741, - 45.513581 - ], - [ - -73.509393, - 45.513802 - ], - [ - -73.50981, - 45.513942 - ], - [ - -73.510118, - 45.514045 - ], - [ - -73.511388, - 45.514467 - ], - [ - -73.511507, - 45.514508 - ], - [ - -73.512165, - 45.514728 - ], - [ - -73.512733, - 45.514923 - ], - [ - -73.512796, - 45.514944 - ], - [ - -73.514439, - 45.515505 - ], - [ - -73.514563, - 45.515547 - ], - [ - -73.515414, - 45.515844 - ], - [ - -73.516876, - 45.516355 - ], - [ - -73.51692, - 45.51637 - ], - [ - -73.517225, - 45.516484 - ], - [ - -73.51726, - 45.516497 - ], - [ - -73.517318, - 45.516518 - ], - [ - -73.517741, - 45.516671 - ], - [ - -73.517978, - 45.516757 - ], - [ - -73.518077, - 45.516793 - ], - [ - -73.518456, - 45.516887 - ], - [ - -73.519044, - 45.517037 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.51945, - 45.517552 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520113, - 45.519732 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520194, - 45.520238 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 133, - "properties": { - "id": "511bc800-33bc-4c10-80f2-d96745fe4b5a", - "data": { - "gtfs": { - "shape_id": "54_1_A" - }, - "segments": [ - { - "distanceMeters": 716, - "travelTimeSeconds": 103 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 435, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 485, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 555, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 544, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 394, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 435, - "travelTimeSeconds": 99 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 768, - "travelTimeSeconds": 167 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9701, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7618.188458394157, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.58, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 5.05, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.58 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "acb7092d-3b2a-4d79-a4e3-09e7e52af475", - "47d29e21-b442-4f1e-bc41-0d7871af14e8", - "7eaffbff-c86c-4810-b174-bda8780c04b4", - "e76a6766-6730-419b-bd29-f65b80bb6721", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "4996264a-c3f0-4fe8-be81-9ca3d8659c61", - "e089008c-4123-4897-95b5-a61e5e049f48", - "03b1ef77-b509-4f21-97d5-d511eeb821cb", - "56af9248-f973-4335-84c1-2e5e744a3910", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "fd062866-a8eb-4466-b53a-6adf8fc3f09a", - "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", - "47ef73cf-7799-46e3-b2f1-76a6533f7746", - "36289bfc-a55e-4b55-a0d2-14f7b26cd739", - "59a23245-0190-4421-8038-2ea1cbdc6419", - "dbf189ce-b09f-4cff-a75f-31e014aad97b", - "36bd50e2-1478-4fd8-8def-c1c8e0359032", - "9158bca7-e437-40a4-83b0-5632dd53d6ee", - "f31baed5-09fe-46fd-9f4a-0a7da7aeef56", - "a331dc32-b29f-4455-9199-5b289acc7d53", - "a73a9d8f-0a4d-4f45-8ed5-05aa8ce7acde", - "0f0a758f-b2db-4611-9b64-d413bfce8846", - "2227a38f-9c32-4890-9719-eef7445fa1fc", - "969092dd-fcfd-493a-be55-d0467c757fb1", - "2a197d72-1b4b-4077-a350-4c8656ad7bb1", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "f250cba5-329e-4403-912d-778f924ce25e", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "e14cc329-23e3-4591-a281-87e8e9f1b7f7", - "segments": [ - 0, - 29, - 43, - 52, - 55, - 62, - 83, - 91, - 94, - 98, - 103, - 106, - 115, - 122, - 129, - 139, - 156, - 169, - 176, - 181, - 187, - 192, - 200, - 207, - 212, - 220, - 222, - 227, - 234, - 243 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 133, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521447, - 45.524278 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519706, - 45.52323 - ], - [ - -73.519869, - 45.522907 - ], - [ - -73.520158, - 45.522337 - ], - [ - -73.520306, - 45.521899 - ], - [ - -73.520306, - 45.521896 - ], - [ - -73.520354, - 45.521696 - ], - [ - -73.520401, - 45.521498 - ], - [ - -73.520405, - 45.521373 - ], - [ - -73.520408, - 45.521195 - ], - [ - -73.520409, - 45.52119 - ], - [ - -73.520398, - 45.521025 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520123, - 45.519903 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.518685, - 45.516946 - ], - [ - -73.518456, - 45.516887 - ], - [ - -73.518077, - 45.516793 - ], - [ - -73.517978, - 45.516757 - ], - [ - -73.517741, - 45.516671 - ], - [ - -73.517487, - 45.516579 - ], - [ - -73.517318, - 45.516518 - ], - [ - -73.517055, - 45.51642 - ], - [ - -73.51692, - 45.51637 - ], - [ - -73.516876, - 45.516355 - ], - [ - -73.515414, - 45.515844 - ], - [ - -73.514727, - 45.515604 - ], - [ - -73.514563, - 45.515547 - ], - [ - -73.512796, - 45.514944 - ], - [ - -73.512165, - 45.514728 - ], - [ - -73.51159, - 45.514536 - ], - [ - -73.511507, - 45.514508 - ], - [ - -73.511388, - 45.514467 - ], - [ - -73.510118, - 45.514045 - ], - [ - -73.50981, - 45.513942 - ], - [ - -73.509393, - 45.513802 - ], - [ - -73.508859, - 45.513621 - ], - [ - -73.508741, - 45.513581 - ], - [ - -73.508131, - 45.513338 - ], - [ - -73.506729, - 45.512792 - ], - [ - -73.506238, - 45.512601 - ], - [ - -73.506149, - 45.512565 - ], - [ - -73.505644, - 45.512372 - ], - [ - -73.505513, - 45.512322 - ], - [ - -73.504953, - 45.512101 - ], - [ - -73.504821, - 45.512052 - ], - [ - -73.503649, - 45.511597 - ], - [ - -73.50359, - 45.511574 - ], - [ - -73.503468, - 45.511526 - ], - [ - -73.503333, - 45.511469 - ], - [ - -73.503113, - 45.511377 - ], - [ - -73.50299, - 45.511323 - ], - [ - -73.502532, - 45.511175 - ], - [ - -73.501949, - 45.510981 - ], - [ - -73.501574, - 45.510855 - ], - [ - -73.501152, - 45.51072 - ], - [ - -73.500914, - 45.510643 - ], - [ - -73.500724, - 45.510581 - ], - [ - -73.50032, - 45.51045 - ], - [ - -73.49986, - 45.510306 - ], - [ - -73.498839, - 45.509996 - ], - [ - -73.498525, - 45.509874 - ], - [ - -73.498287, - 45.509766 - ], - [ - -73.498252, - 45.509742 - ], - [ - -73.498161, - 45.50968 - ], - [ - -73.498065, - 45.509586 - ], - [ - -73.497769, - 45.509294 - ], - [ - -73.496946, - 45.508264 - ], - [ - -73.496824, - 45.508111 - ], - [ - -73.496706, - 45.507958 - ], - [ - -73.495705, - 45.506635 - ], - [ - -73.495059, - 45.505781 - ], - [ - -73.495007, - 45.505712 - ], - [ - -73.49495, - 45.505622 - ], - [ - -73.494875, - 45.505497 - ], - [ - -73.494738, - 45.505308 - ], - [ - -73.494522, - 45.504943 - ], - [ - -73.494516, - 45.504928 - ], - [ - -73.494481, - 45.50484 - ], - [ - -73.494395, - 45.504574 - ], - [ - -73.494313, - 45.504313 - ], - [ - -73.494232, - 45.504142 - ], - [ - -73.494111, - 45.503931 - ], - [ - -73.493899, - 45.503679 - ], - [ - -73.493725, - 45.503481 - ], - [ - -73.493565, - 45.503319 - ], - [ - -73.493353, - 45.503152 - ], - [ - -73.49317, - 45.503004 - ], - [ - -73.492961, - 45.502842 - ], - [ - -73.492653, - 45.50263 - ], - [ - -73.492622, - 45.502609 - ], - [ - -73.492553, - 45.502563 - ], - [ - -73.492173, - 45.502351 - ], - [ - -73.491979, - 45.502288 - ], - [ - -73.491171, - 45.502054 - ], - [ - -73.490913, - 45.501973 - ], - [ - -73.490675, - 45.501901 - ], - [ - -73.490406, - 45.501825 - ], - [ - -73.490233, - 45.501775 - ], - [ - -73.489761, - 45.501636 - ], - [ - -73.48926, - 45.501478 - ], - [ - -73.488837, - 45.501352 - ], - [ - -73.488486, - 45.501271 - ], - [ - -73.488187, - 45.501204 - ], - [ - -73.487936, - 45.501136 - ], - [ - -73.487728, - 45.501082 - ], - [ - -73.487613, - 45.501033 - ], - [ - -73.487519, - 45.500719 - ], - [ - -73.487509, - 45.500686 - ], - [ - -73.487464, - 45.50056 - ], - [ - -73.487346, - 45.500232 - ], - [ - -73.487223, - 45.499973 - ], - [ - -73.487139, - 45.499795 - ], - [ - -73.486985, - 45.499512 - ], - [ - -73.48683, - 45.499253 - ], - [ - -73.486818, - 45.499233 - ], - [ - -73.48673, - 45.4991 - ], - [ - -73.486631, - 45.498949 - ], - [ - -73.486428, - 45.498675 - ], - [ - -73.486216, - 45.498401 - ], - [ - -73.486166, - 45.498342 - ], - [ - -73.486, - 45.498149 - ], - [ - -73.485576, - 45.497708 - ], - [ - -73.485299, - 45.497456 - ], - [ - -73.485251, - 45.497415 - ], - [ - -73.485239, - 45.497404 - ], - [ - -73.484899, - 45.497123 - ], - [ - -73.484434, - 45.496776 - ], - [ - -73.484387, - 45.49674 - ], - [ - -73.484357, - 45.496722 - ], - [ - -73.482226, - 45.495313 - ], - [ - -73.482144, - 45.49526 - ], - [ - -73.482055, - 45.495201 - ], - [ - -73.479532, - 45.49353 - ], - [ - -73.479372, - 45.493423 - ], - [ - -73.474514, - 45.490213 - ], - [ - -73.474366, - 45.490115 - ], - [ - -73.473909, - 45.489814 - ], - [ - -73.472098, - 45.488616 - ], - [ - -73.471942, - 45.488513 - ], - [ - -73.46708, - 45.485304 - ], - [ - -73.466642, - 45.484984 - ], - [ - -73.466501, - 45.484867 - ], - [ - -73.466473, - 45.484845 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466302, - 45.484687 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466188, - 45.484448 - ], - [ - -73.466149, - 45.484395 - ], - [ - -73.465905, - 45.484113 - ], - [ - -73.465719, - 45.4839 - ], - [ - -73.46546, - 45.483541 - ], - [ - -73.465236, - 45.483174 - ], - [ - -73.465161, - 45.483037 - ], - [ - -73.465057, - 45.482799 - ], - [ - -73.464968, - 45.48254 - ], - [ - -73.46489, - 45.482284 - ], - [ - -73.464833, - 45.481906 - ], - [ - -73.464816, - 45.481524 - ], - [ - -73.464841, - 45.481188 - ], - [ - -73.464843, - 45.481165 - ], - [ - -73.464847, - 45.481114 - ], - [ - -73.464866, - 45.480979 - ], - [ - -73.46492, - 45.48071 - ], - [ - -73.465032, - 45.480327 - ], - [ - -73.465198, - 45.479819 - ], - [ - -73.46547, - 45.479009 - ], - [ - -73.46555, - 45.47877 - ], - [ - -73.465652, - 45.478467 - ], - [ - -73.465874, - 45.477808 - ], - [ - -73.466477, - 45.475987 - ], - [ - -73.466484, - 45.475966 - ], - [ - -73.466637, - 45.475504 - ], - [ - -73.467366, - 45.473305 - ], - [ - -73.467616, - 45.472553 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467869, - 45.471793 - ], - [ - -73.467954, - 45.471482 - ], - [ - -73.467979, - 45.471365 - ], - [ - -73.468005, - 45.471249 - ], - [ - -73.468064, - 45.470898 - ], - [ - -73.468089, - 45.470647 - ], - [ - -73.468112, - 45.470407 - ], - [ - -73.468119, - 45.470155 - ], - [ - -73.468115, - 45.470044 - ], - [ - -73.468111, - 45.469894 - ], - [ - -73.468108, - 45.469818 - ], - [ - -73.468107, - 45.469773 - ], - [ - -73.46805, - 45.4693 - ], - [ - -73.467952, - 45.46883 - ], - [ - -73.467932, - 45.468733 - ], - [ - -73.467793, - 45.468274 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.46908, - 45.465912 - ], - [ - -73.469107, - 45.46587 - ] - ] - }, - "id": 134, - "properties": { - "id": "d4cc57da-cbfb-4514-84b6-56d4965e7b21", - "data": { - "gtfs": { - "shape_id": "54_1_R" - }, - "segments": [ - { - "distanceMeters": 823, - "travelTimeSeconds": 110 - }, - { - "distanceMeters": 471, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 104, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 304, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 195, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 538, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 604, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 440, - "travelTimeSeconds": 91 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 608, - "travelTimeSeconds": 127 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 453, - "travelTimeSeconds": 95 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9083, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7618.188458394157, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.06, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 5.41, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.06 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "f250cba5-329e-4403-912d-778f924ce25e", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "f1be4054-f28c-45a4-bc0b-58b82e1e6e83", - "969092dd-fcfd-493a-be55-d0467c757fb1", - "2227a38f-9c32-4890-9719-eef7445fa1fc", - "0f0a758f-b2db-4611-9b64-d413bfce8846", - "a73a9d8f-0a4d-4f45-8ed5-05aa8ce7acde", - "a331dc32-b29f-4455-9199-5b289acc7d53", - "f31baed5-09fe-46fd-9f4a-0a7da7aeef56", - "9158bca7-e437-40a4-83b0-5632dd53d6ee", - "36bd50e2-1478-4fd8-8def-c1c8e0359032", - "433424db-8ed2-48db-aa2a-385d6850eb86", - "62e9a71c-d705-430b-ba91-a24283924f89", - "bcd0a901-5384-443e-9be4-1f0faa123ccb", - "fdd9bfef-c8dc-4f65-9008-847050729854", - "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", - "7ad37664-fa6b-478f-8d31-2d3ae7009709", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "94cd69e7-ebc9-452b-a357-367107db73b4", - "03b1ef77-b509-4f21-97d5-d511eeb821cb", - "351136d8-2c40-4c3f-8032-a52e48738c07", - "159a0fe9-bedb-40f2-9806-32ab49594978", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "579043e1-54f7-411f-9a36-e7ee3324290f", - "1758013c-4193-42f0-a495-c36930003f5b", - "51e1600d-418e-4477-9b26-9e5507d72a03", - "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "e14cc329-23e3-4591-a281-87e8e9f1b7f7", - "segments": [ - 0, - 32, - 46, - 52, - 56, - 62, - 65, - 75, - 82, - 89, - 93, - 97, - 103, - 116, - 123, - 133, - 140, - 151, - 153, - 156, - 159, - 161, - 164, - 168, - 185, - 193, - 196, - 208, - 216 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 134, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.508337, - 45.486547 - ], - [ - -73.508385, - 45.486622 - ], - [ - -73.508489, - 45.486784 - ], - [ - -73.508543, - 45.486852 - ], - [ - -73.509573, - 45.488342 - ], - [ - -73.509675, - 45.488489 - ], - [ - -73.509764, - 45.488615 - ], - [ - -73.509971, - 45.488912 - ], - [ - -73.510806, - 45.490109 - ], - [ - -73.510813, - 45.490118 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.512403, - 45.492411 - ], - [ - -73.512404, - 45.492412 - ], - [ - -73.51245, - 45.492507 - ], - [ - -73.512764, - 45.493074 - ], - [ - -73.512921, - 45.493393 - ], - [ - -73.512971, - 45.493496 - ], - [ - -73.512984, - 45.493515 - ], - [ - -73.513008, - 45.493622 - ], - [ - -73.513012, - 45.493663 - ], - [ - -73.513019, - 45.493721 - ], - [ - -73.513009, - 45.493798 - ], - [ - -73.512984, - 45.493864 - ], - [ - -73.512954, - 45.493917 - ], - [ - -73.512916, - 45.493951 - ], - [ - -73.512873, - 45.493987 - ], - [ - -73.512839, - 45.494011 - ], - [ - -73.512778, - 45.494036 - ], - [ - -73.512753, - 45.494043 - ], - [ - -73.512664, - 45.494068 - ], - [ - -73.512506, - 45.494102 - ], - [ - -73.511393, - 45.494185 - ], - [ - -73.51105, - 45.494174 - ], - [ - -73.510846, - 45.494189 - ], - [ - -73.510793, - 45.4942 - ], - [ - -73.510474, - 45.49419 - ], - [ - -73.51005, - 45.494183 - ], - [ - -73.509926, - 45.494181 - ], - [ - -73.50913, - 45.494175 - ], - [ - -73.508103, - 45.494169 - ], - [ - -73.507903, - 45.494167 - ], - [ - -73.506279, - 45.494154 - ], - [ - -73.505489, - 45.494143 - ], - [ - -73.505309, - 45.49414 - ], - [ - -73.504834, - 45.494136 - ], - [ - -73.504012, - 45.494128 - ], - [ - -73.503889, - 45.494127 - ], - [ - -73.502661, - 45.494132 - ], - [ - -73.501918, - 45.494118 - ], - [ - -73.501485, - 45.494123 - ], - [ - -73.501355, - 45.494132 - ], - [ - -73.50111, - 45.494181 - ], - [ - -73.50099, - 45.494217 - ], - [ - -73.500901, - 45.494253 - ], - [ - -73.500871, - 45.494267 - ], - [ - -73.500761, - 45.494325 - ], - [ - -73.500559, - 45.494465 - ], - [ - -73.50052, - 45.494499 - ], - [ - -73.500469, - 45.494546 - ], - [ - -73.500384, - 45.494631 - ], - [ - -73.500337, - 45.494686 - ], - [ - -73.500261, - 45.494702 - ], - [ - -73.500224, - 45.494724 - ], - [ - -73.500159, - 45.494783 - ], - [ - -73.500133, - 45.494806 - ], - [ - -73.500094, - 45.494829 - ], - [ - -73.500044, - 45.494845 - ], - [ - -73.499998, - 45.494851 - ], - [ - -73.499973, - 45.494852 - ], - [ - -73.499929, - 45.494844 - ], - [ - -73.499829, - 45.494828 - ], - [ - -73.499778, - 45.494815 - ], - [ - -73.499763, - 45.494802 - ], - [ - -73.49959, - 45.494676 - ], - [ - -73.499359, - 45.494506 - ], - [ - -73.499315, - 45.494474 - ], - [ - -73.499159, - 45.494361 - ], - [ - -73.498924, - 45.49419 - ], - [ - -73.498797, - 45.494096 - ], - [ - -73.498616, - 45.49397 - ], - [ - -73.49848, - 45.493866 - ], - [ - -73.498238, - 45.493691 - ], - [ - -73.498234, - 45.493687 - ], - [ - -73.49804, - 45.493547 - ], - [ - -73.497995, - 45.493515 - ], - [ - -73.497927, - 45.49347 - ], - [ - -73.497866, - 45.493425 - ], - [ - -73.497771, - 45.493353 - ], - [ - -73.497557, - 45.493191 - ], - [ - -73.497339, - 45.493038 - ], - [ - -73.497128, - 45.492885 - ], - [ - -73.496772, - 45.492629 - ], - [ - -73.496459, - 45.492404 - ], - [ - -73.496416, - 45.492372 - ], - [ - -73.496321, - 45.492305 - ], - [ - -73.496235, - 45.492242 - ], - [ - -73.495851, - 45.491976 - ], - [ - -73.49562, - 45.491814 - ], - [ - -73.495442, - 45.491684 - ], - [ - -73.495204, - 45.491517 - ], - [ - -73.494917, - 45.491315 - ], - [ - -73.49433, - 45.490897 - ], - [ - -73.494242, - 45.490838 - ], - [ - -73.494221, - 45.490823 - ], - [ - -73.493838, - 45.49055 - ], - [ - -73.493701, - 45.490456 - ], - [ - -73.493573, - 45.490366 - ], - [ - -73.492976, - 45.489943 - ], - [ - -73.492778, - 45.489803 - ], - [ - -73.492674, - 45.48973 - ], - [ - -73.492465, - 45.489583 - ], - [ - -73.492419, - 45.48955 - ], - [ - -73.492218, - 45.489407 - ], - [ - -73.49203, - 45.489272 - ], - [ - -73.491721, - 45.489052 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.492055, - 45.488705 - ], - [ - -73.492138, - 45.488647 - ], - [ - -73.492246, - 45.488512 - ], - [ - -73.492413, - 45.48862 - ], - [ - -73.492658, - 45.488782 - ], - [ - -73.492831, - 45.488903 - ], - [ - -73.492984, - 45.489012 - ], - [ - -73.493685, - 45.489511 - ], - [ - -73.493971, - 45.489715 - ], - [ - -73.494044, - 45.489767 - ], - [ - -73.494284, - 45.489943 - ], - [ - -73.494463, - 45.490073 - ], - [ - -73.494432, - 45.490141 - ], - [ - -73.494158, - 45.490222 - ], - [ - -73.49392, - 45.490316 - ], - [ - -73.493794, - 45.490397 - ], - [ - -73.493701, - 45.490456 - ], - [ - -73.493838, - 45.49055 - ], - [ - -73.494242, - 45.490838 - ], - [ - -73.494255, - 45.490846 - ], - [ - -73.49433, - 45.490897 - ], - [ - -73.494917, - 45.491315 - ], - [ - -73.495204, - 45.491517 - ], - [ - -73.495442, - 45.491684 - ], - [ - -73.49562, - 45.491814 - ], - [ - -73.495851, - 45.491976 - ], - [ - -73.496235, - 45.492242 - ], - [ - -73.496321, - 45.492305 - ], - [ - -73.496367, - 45.492338 - ], - [ - -73.496416, - 45.492372 - ], - [ - -73.496772, - 45.492629 - ], - [ - -73.497128, - 45.492885 - ], - [ - -73.497339, - 45.493038 - ], - [ - -73.497557, - 45.493191 - ], - [ - -73.497619, - 45.493238 - ], - [ - -73.497771, - 45.493353 - ], - [ - -73.497866, - 45.493425 - ], - [ - -73.497927, - 45.49347 - ], - [ - -73.497995, - 45.493515 - ], - [ - -73.49804, - 45.493547 - ], - [ - -73.498238, - 45.493691 - ], - [ - -73.49848, - 45.493866 - ], - [ - -73.498616, - 45.49397 - ], - [ - -73.498797, - 45.494096 - ], - [ - -73.498924, - 45.49419 - ], - [ - -73.499159, - 45.494361 - ], - [ - -73.499315, - 45.494474 - ], - [ - -73.499359, - 45.494506 - ], - [ - -73.49959, - 45.494676 - ], - [ - -73.499763, - 45.494802 - ], - [ - -73.499778, - 45.494815 - ], - [ - -73.499802, - 45.494831 - ], - [ - -73.500025, - 45.494979 - ], - [ - -73.500064, - 45.495 - ], - [ - -73.500106, - 45.495026 - ], - [ - -73.500592, - 45.495409 - ], - [ - -73.50081, - 45.495567 - ], - [ - -73.501059, - 45.495724 - ], - [ - -73.501182, - 45.495805 - ], - [ - -73.501279, - 45.495868 - ], - [ - -73.501285, - 45.495872 - ], - [ - -73.501808, - 45.496251 - ], - [ - -73.502239, - 45.49655 - ], - [ - -73.502293, - 45.496588 - ], - [ - -73.502336, - 45.49662 - ], - [ - -73.50284, - 45.49698 - ], - [ - -73.50327, - 45.49729 - ], - [ - -73.503408, - 45.497389 - ], - [ - -73.503475, - 45.497438 - ], - [ - -73.504131, - 45.497897 - ], - [ - -73.504473, - 45.49814 - ], - [ - -73.504683, - 45.498293 - ], - [ - -73.504752, - 45.498345 - ], - [ - -73.504839, - 45.49841 - ], - [ - -73.505105, - 45.498595 - ], - [ - -73.505329, - 45.498757 - ], - [ - -73.505704, - 45.498928 - ], - [ - -73.506001, - 45.499076 - ], - [ - -73.506259, - 45.499211 - ], - [ - -73.506709, - 45.499427 - ], - [ - -73.506801, - 45.499467 - ], - [ - -73.507241, - 45.499655 - ], - [ - -73.50735, - 45.499701 - ], - [ - -73.507712, - 45.499859 - ], - [ - -73.508861, - 45.50034 - ], - [ - -73.508958, - 45.500376 - ], - [ - -73.509608, - 45.500651 - ], - [ - -73.509762, - 45.500713 - ], - [ - -73.50993, - 45.500781 - ], - [ - -73.510419, - 45.501005 - ], - [ - -73.511327, - 45.50142 - ], - [ - -73.512063, - 45.501735 - ], - [ - -73.512398, - 45.501874 - ], - [ - -73.512677, - 45.501991 - ], - [ - -73.512872, - 45.502072 - ], - [ - -73.513437, - 45.502275 - ], - [ - -73.513621, - 45.502342 - ], - [ - -73.513711, - 45.502384 - ], - [ - -73.513806, - 45.502427 - ], - [ - -73.513873, - 45.50226 - ], - [ - -73.513907, - 45.50218 - ], - [ - -73.514024, - 45.501904 - ], - [ - -73.514045, - 45.501797 - ], - [ - -73.514104, - 45.501797 - ], - [ - -73.514193, - 45.501801 - ], - [ - -73.514212, - 45.501802 - ], - [ - -73.514398, - 45.501805 - ], - [ - -73.516158, - 45.501834 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.516514, - 45.501512 - ], - [ - -73.51647, - 45.501401 - ], - [ - -73.516373, - 45.50114 - ], - [ - -73.516146, - 45.500501 - ], - [ - -73.515977, - 45.500074 - ], - [ - -73.515873, - 45.499831 - ], - [ - -73.515686, - 45.499475 - ], - [ - -73.515674, - 45.499453 - ], - [ - -73.515623, - 45.499359 - ], - [ - -73.51517, - 45.49854 - ], - [ - -73.515085, - 45.498391 - ], - [ - -73.514769, - 45.497838 - ], - [ - -73.514552, - 45.497478 - ], - [ - -73.514219, - 45.49697 - ], - [ - -73.514166, - 45.496911 - ], - [ - -73.514104, - 45.49683 - ], - [ - -73.514054, - 45.496749 - ], - [ - -73.514009, - 45.496686 - ], - [ - -73.513974, - 45.496614 - ], - [ - -73.513925, - 45.49652 - ], - [ - -73.513899, - 45.496425 - ], - [ - -73.51384, - 45.496187 - ], - [ - -73.513786, - 45.49598 - ], - [ - -73.513387, - 45.495977 - ], - [ - -73.511796, - 45.495963 - ], - [ - -73.511699, - 45.495962 - ], - [ - -73.510863, - 45.495956 - ], - [ - -73.510445, - 45.495953 - ], - [ - -73.510455, - 45.495391 - ], - [ - -73.510455, - 45.495229 - ], - [ - -73.510456, - 45.495157 - ], - [ - -73.510453, - 45.494797 - ], - [ - -73.510455, - 45.494482 - ], - [ - -73.510459, - 45.494414 - ], - [ - -73.510464, - 45.494334 - ], - [ - -73.510575, - 45.494333 - ], - [ - -73.510666, - 45.494306 - ], - [ - -73.510805, - 45.494295 - ], - [ - -73.511632, - 45.49429 - ], - [ - -73.512028, - 45.4943 - ], - [ - -73.513238, - 45.494329 - ], - [ - -73.513716, - 45.494311 - ], - [ - -73.514173, - 45.494261 - ], - [ - -73.514565, - 45.494198 - ], - [ - -73.515032, - 45.494113 - ], - [ - -73.515165, - 45.494089 - ], - [ - -73.515213, - 45.494088 - ], - [ - -73.515313, - 45.4941 - ], - [ - -73.51545, - 45.494141 - ], - [ - -73.515538, - 45.49417 - ], - [ - -73.515619, - 45.49421 - ], - [ - -73.51569, - 45.494262 - ], - [ - -73.515767, - 45.494337 - ], - [ - -73.515965, - 45.494618 - ], - [ - -73.516201, - 45.494969 - ], - [ - -73.516422, - 45.49528 - ], - [ - -73.516609, - 45.49556 - ], - [ - -73.51677, - 45.495808 - ], - [ - -73.516972, - 45.4961 - ], - [ - -73.517047, - 45.49623 - ], - [ - -73.517102, - 45.496355 - ], - [ - -73.517135, - 45.496512 - ], - [ - -73.517146, - 45.496606 - ], - [ - -73.517124, - 45.496741 - ], - [ - -73.517077, - 45.496814 - ], - [ - -73.517019, - 45.496872 - ], - [ - -73.51692, - 45.496932 - ], - [ - -73.51678, - 45.49698 - ], - [ - -73.516623, - 45.497004 - ], - [ - -73.516491, - 45.497003 - ], - [ - -73.516439, - 45.496993 - ], - [ - -73.516327, - 45.496957 - ], - [ - -73.516222, - 45.496916 - ], - [ - -73.516138, - 45.496858 - ], - [ - -73.516092, - 45.496818 - ], - [ - -73.516045, - 45.496746 - ], - [ - -73.516026, - 45.496702 - ], - [ - -73.51602, - 45.496632 - ], - [ - -73.516024, - 45.496491 - ], - [ - -73.516041, - 45.496421 - ], - [ - -73.516096, - 45.496339 - ], - [ - -73.516157, - 45.496273 - ], - [ - -73.51624, - 45.496205 - ], - [ - -73.516439, - 45.496104 - ], - [ - -73.51654, - 45.496057 - ], - [ - -73.516548, - 45.496054 - ], - [ - -73.516793, - 45.49596 - ], - [ - -73.517034, - 45.495878 - ], - [ - -73.517452, - 45.495744 - ], - [ - -73.517812, - 45.495628 - ], - [ - -73.518724, - 45.495318 - ], - [ - -73.519008, - 45.495223 - ], - [ - -73.526903, - 45.492546 - ], - [ - -73.539774, - 45.488181 - ], - [ - -73.539901, - 45.488138 - ], - [ - -73.540024, - 45.488096 - ], - [ - -73.540676, - 45.487875 - ], - [ - -73.541063, - 45.487748 - ], - [ - -73.541434, - 45.487668 - ], - [ - -73.54173, - 45.487614 - ], - [ - -73.542302, - 45.487537 - ], - [ - -73.54292, - 45.48745 - ], - [ - -73.5435, - 45.487375 - ], - [ - -73.544331, - 45.487261 - ], - [ - -73.545074, - 45.487154 - ], - [ - -73.545182, - 45.487134 - ], - [ - -73.545339, - 45.487094 - ], - [ - -73.545558, - 45.487062 - ], - [ - -73.5458, - 45.487022 - ], - [ - -73.546021, - 45.486972 - ], - [ - -73.547381, - 45.486666 - ], - [ - -73.547964, - 45.486576 - ], - [ - -73.548856, - 45.48654 - ], - [ - -73.550282, - 45.486665 - ], - [ - -73.552303, - 45.486842 - ], - [ - -73.55227, - 45.48703 - ], - [ - -73.552227, - 45.487278 - ], - [ - -73.551897, - 45.489194 - ], - [ - -73.551639, - 45.490868 - ], - [ - -73.551636, - 45.490883 - ], - [ - -73.55163, - 45.490926 - ], - [ - -73.551621, - 45.490981 - ], - [ - -73.550905, - 45.495342 - ], - [ - -73.552737, - 45.496232 - ], - [ - -73.552979, - 45.496354 - ], - [ - -73.552989, - 45.496621 - ], - [ - -73.552979, - 45.496729 - ], - [ - -73.552935, - 45.497044 - ], - [ - -73.552883, - 45.497413 - ], - [ - -73.55284, - 45.498141 - ], - [ - -73.55286, - 45.49878 - ], - [ - -73.553055, - 45.498786 - ], - [ - -73.554295, - 45.4992 - ], - [ - -73.554782, - 45.499367 - ], - [ - -73.554892, - 45.499405 - ], - [ - -73.555129, - 45.499075 - ], - [ - -73.555173, - 45.499014 - ], - [ - -73.555269, - 45.498308 - ], - [ - -73.555414, - 45.497651 - ], - [ - -73.555549, - 45.496965 - ], - [ - -73.555614, - 45.496551 - ], - [ - -73.555665, - 45.496222 - ], - [ - -73.556187, - 45.496417 - ], - [ - -73.557268, - 45.496821 - ], - [ - -73.557934, - 45.497074 - ], - [ - -73.558754, - 45.497382 - ], - [ - -73.559665, - 45.497799 - ], - [ - -73.56055, - 45.498258 - ], - [ - -73.561247, - 45.498577 - ], - [ - -73.561292, - 45.498594 - ], - [ - -73.561574, - 45.498701 - ], - [ - -73.561917, - 45.498838 - ], - [ - -73.562165, - 45.49894 - ], - [ - -73.562545, - 45.499119 - ], - [ - -73.562571, - 45.499093 - ], - [ - -73.562654, - 45.499004 - ], - [ - -73.562195, - 45.498662 - ], - [ - -73.561924, - 45.498365 - ], - [ - -73.561721, - 45.498171 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.562038, - 45.497108 - ], - [ - -73.562152, - 45.497164 - ], - [ - -73.562611, - 45.497387 - ], - [ - -73.562698, - 45.497457 - ], - [ - -73.562791, - 45.497486 - ], - [ - -73.562898, - 45.497495 - ], - [ - -73.563026, - 45.497486 - ], - [ - -73.563269, - 45.497461 - ], - [ - -73.563391, - 45.497457 - ], - [ - -73.563535, - 45.497468 - ], - [ - -73.56365, - 45.497486 - ], - [ - -73.56376, - 45.497514 - ], - [ - -73.563861, - 45.497562 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.56431, - 45.497835 - ], - [ - -73.565142, - 45.498217 - ], - [ - -73.565601, - 45.498443 - ], - [ - -73.565748, - 45.49831 - ], - [ - -73.565849, - 45.498292 - ], - [ - -73.566051, - 45.498359 - ], - [ - -73.566361, - 45.498471 - ], - [ - -73.566492, - 45.498485 - ], - [ - -73.566611, - 45.498345 - ] - ] - }, - "id": 135, - "properties": { - "id": "4fdebed2-95b9-4530-a85b-d19f21fe9f09", - "data": { - "gtfs": { - "shape_id": "55_1_A" - }, - "segments": [ - { - "distanceMeters": 222, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 411, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 445, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 337, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 312, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 93 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 3996, - "travelTimeSeconds": 644 - }, - { - "distanceMeters": 404, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 774, - "travelTimeSeconds": 125 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 1356, - "travelTimeSeconds": 298 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 228, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13957, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4736.079082751775, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.12, - "travelTimeWithoutDwellTimesSeconds": 2280, - "operatingTimeWithLayoverTimeSeconds": 2508, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2280, - "operatingSpeedWithLayoverMetersPerSecond": 5.56, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.12 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "41d7b6d4-1fe4-44ed-a774-b005607fc59d", - "bc9b9243-e0ec-461a-9898-6eb69ecd511a", - "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "5d15d6e1-5f1d-4e9c-8c3a-63a3b3f11da3", - "17130fb5-7835-48a4-911b-07c08af792bb", - "f09bea25-9e7f-4f46-8a1e-1137fbe57059", - "16f75d06-f538-4735-a99f-9bc7eaa6eaab", - "ea9801c9-a110-4900-bcae-f1b3a40050e8", - "0b6032e7-414a-429f-9df2-796599b947c2", - "88d8365e-2528-4422-a483-bb2efd9de617", - "196681e4-c9e5-4a79-a3b1-ce225227e0aa", - "fa220212-b6b2-4456-934f-7248f9884444", - "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", - "88d8365e-2528-4422-a483-bb2efd9de617", - "0b6032e7-414a-429f-9df2-796599b947c2", - "1cedf968-65c8-4c0f-b92c-c06da7b8fe69", - "16f75d06-f538-4735-a99f-9bc7eaa6eaab", - "1cea6199-481e-43b0-8d4a-8c7593ff485f", - "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", - "6557d1fe-6975-49e2-871c-ab07d42ea35b", - "0ac44bed-6f37-406e-8654-f8d5f36c840e", - "443288e2-2ae9-4c97-a015-0e176d8f71b2", - "a230c1b0-ee13-40c1-8d3f-12ae20006cc6", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "0b09b82c-ec97-406d-9f1c-690cc935b5ea", - "114aaaad-d40e-4930-853f-ef5cebdd299f", - "144dbf94-6da5-4246-8207-b5ee6c953066", - "c56a5ffb-5390-4f94-8172-c9ab40c1a523", - "b622f016-a8e6-4f2a-835d-417fa16ddd32", - "f0399757-57fe-401c-85d1-a8835da56bb7", - "72bc37a1-b03c-4149-8154-962f4512a12d", - "8e6eba9f-71d7-47ba-ab56-7f4eadc64281", - "587bca45-e028-437b-8c17-3d0fa1f4d9bd", - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" - ], - "stops": [], - "line_id": "9728c421-e658-48b0-86dc-586caebce3cc", - "segments": [ - 0, - 4, - 8, - 11, - 36, - 39, - 42, - 63, - 82, - 92, - 103, - 113, - 122, - 126, - 135, - 144, - 150, - 167, - 176, - 178, - 188, - 197, - 205, - 216, - 223, - 231, - 248, - 251, - 258, - 341, - 344, - 352, - 360, - 365 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 135, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.566668, - 45.498277 - ], - [ - -73.566738, - 45.498195 - ], - [ - -73.566628, - 45.49808 - ], - [ - -73.566306, - 45.497931 - ], - [ - -73.566253, - 45.497841 - ], - [ - -73.56638, - 45.497699 - ], - [ - -73.566016, - 45.497523 - ], - [ - -73.564691, - 45.496892 - ], - [ - -73.564548, - 45.497036 - ], - [ - -73.564308, - 45.497279 - ], - [ - -73.564223, - 45.497363 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.562654, - 45.499004 - ], - [ - -73.562195, - 45.498662 - ], - [ - -73.561924, - 45.498365 - ], - [ - -73.561751, - 45.4982 - ], - [ - -73.561721, - 45.498171 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.561033, - 45.497765 - ], - [ - -73.560139, - 45.497347 - ], - [ - -73.559235, - 45.49696 - ], - [ - -73.55917, - 45.496938 - ], - [ - -73.558356, - 45.496631 - ], - [ - -73.557604, - 45.496364 - ], - [ - -73.556782, - 45.49606 - ], - [ - -73.55595, - 45.49575 - ], - [ - -73.555745, - 45.495673 - ], - [ - -73.555351, - 45.495512 - ], - [ - -73.555133, - 45.495401 - ], - [ - -73.554916, - 45.495262 - ], - [ - -73.554768, - 45.495125 - ], - [ - -73.55465, - 45.494994 - ], - [ - -73.553944, - 45.493258 - ], - [ - -73.553818, - 45.492971 - ], - [ - -73.553465, - 45.492338 - ], - [ - -73.552977, - 45.491759 - ], - [ - -73.552502, - 45.491344 - ], - [ - -73.551956, - 45.490962 - ], - [ - -73.551651, - 45.490791 - ], - [ - -73.551074, - 45.490513 - ], - [ - -73.550682, - 45.490367 - ], - [ - -73.550312, - 45.490228 - ], - [ - -73.54956, - 45.490034 - ], - [ - -73.548355, - 45.489798 - ], - [ - -73.542648, - 45.488704 - ], - [ - -73.541878, - 45.488554 - ], - [ - -73.541483, - 45.488476 - ], - [ - -73.541083, - 45.488397 - ], - [ - -73.540636, - 45.488282 - ], - [ - -73.540145, - 45.488119 - ], - [ - -73.539582, - 45.48786 - ], - [ - -73.539239, - 45.487663 - ], - [ - -73.538946, - 45.487462 - ], - [ - -73.538619, - 45.487192 - ], - [ - -73.538304, - 45.486863 - ], - [ - -73.538089, - 45.486564 - ], - [ - -73.537862, - 45.486139 - ], - [ - -73.537796, - 45.485958 - ], - [ - -73.537731, - 45.485785 - ], - [ - -73.53767, - 45.485461 - ], - [ - -73.537646, - 45.485264 - ], - [ - -73.537653, - 45.484914 - ], - [ - -73.537707, - 45.484604 - ], - [ - -73.537881, - 45.484168 - ], - [ - -73.537968, - 45.483893 - ], - [ - -73.538058, - 45.483623 - ], - [ - -73.539557, - 45.479354 - ], - [ - -73.53982, - 45.478652 - ], - [ - -73.540179, - 45.47782 - ], - [ - -73.540481, - 45.477177 - ], - [ - -73.540578, - 45.477027 - ], - [ - -73.540928, - 45.476409 - ], - [ - -73.5413, - 45.475732 - ], - [ - -73.541747, - 45.474937 - ], - [ - -73.542136, - 45.474264 - ], - [ - -73.542539, - 45.47363 - ], - [ - -73.543159, - 45.472786 - ], - [ - -73.543162, - 45.472781 - ], - [ - -73.5432, - 45.472729 - ], - [ - -73.543381, - 45.472482 - ], - [ - -73.543908, - 45.471834 - ], - [ - -73.544604, - 45.471016 - ], - [ - -73.54479, - 45.470824 - ], - [ - -73.544929, - 45.470679 - ], - [ - -73.54509, - 45.470477 - ], - [ - -73.545159, - 45.470391 - ], - [ - -73.545162, - 45.470289 - ], - [ - -73.54518, - 45.470102 - ], - [ - -73.54513, - 45.469912 - ], - [ - -73.545039, - 45.469774 - ], - [ - -73.545032, - 45.469762 - ], - [ - -73.544829, - 45.469589 - ], - [ - -73.544396, - 45.469456 - ], - [ - -73.544223, - 45.469408 - ], - [ - -73.544, - 45.469414 - ], - [ - -73.54385, - 45.469436 - ], - [ - -73.543665, - 45.469485 - ], - [ - -73.543125, - 45.469658 - ], - [ - -73.542795, - 45.46978 - ], - [ - -73.542335, - 45.469915 - ], - [ - -73.542042, - 45.469974 - ], - [ - -73.541634, - 45.469988 - ], - [ - -73.538583, - 45.470121 - ], - [ - -73.536645, - 45.47012 - ], - [ - -73.534843, - 45.470106 - ], - [ - -73.531663, - 45.470044 - ], - [ - -73.528901, - 45.469979 - ], - [ - -73.525636, - 45.469864 - ], - [ - -73.520215, - 45.469565 - ], - [ - -73.516228, - 45.469261 - ], - [ - -73.50737, - 45.468395 - ], - [ - -73.501604, - 45.467786 - ], - [ - -73.499262, - 45.467514 - ], - [ - -73.493921, - 45.466881 - ], - [ - -73.491932, - 45.466645 - ], - [ - -73.489852, - 45.466348 - ], - [ - -73.489119, - 45.46624 - ], - [ - -73.488353, - 45.466099 - ], - [ - -73.487947, - 45.465982 - ], - [ - -73.487624, - 45.465833 - ], - [ - -73.487378, - 45.465638 - ], - [ - -73.487289, - 45.465389 - ], - [ - -73.487411, - 45.465142 - ], - [ - -73.487606, - 45.464949 - ], - [ - -73.487929, - 45.464813 - ], - [ - -73.488584, - 45.464665 - ], - [ - -73.489559, - 45.464575 - ], - [ - -73.49019, - 45.464579 - ], - [ - -73.490836, - 45.464607 - ], - [ - -73.491353, - 45.464709 - ], - [ - -73.492266, - 45.464916 - ], - [ - -73.493024, - 45.46511 - ], - [ - -73.493289, - 45.465231 - ], - [ - -73.49355, - 45.46545 - ], - [ - -73.493833, - 45.466097 - ], - [ - -73.493922, - 45.46638 - ], - [ - -73.494209, - 45.467172 - ], - [ - -73.494809, - 45.468733 - ], - [ - -73.495076, - 45.469359 - ], - [ - -73.495234, - 45.469683 - ], - [ - -73.495362, - 45.469939 - ], - [ - -73.495491, - 45.470173 - ], - [ - -73.49554, - 45.470262 - ], - [ - -73.495895, - 45.470906 - ], - [ - -73.495967, - 45.471037 - ], - [ - -73.496018, - 45.471127 - ], - [ - -73.496235, - 45.471478 - ], - [ - -73.496323, - 45.471617 - ], - [ - -73.496799, - 45.472387 - ], - [ - -73.497277, - 45.473188 - ], - [ - -73.497508, - 45.473543 - ], - [ - -73.497684, - 45.473744 - ], - [ - -73.49797, - 45.473998 - ], - [ - -73.497971, - 45.473998 - ], - [ - -73.498154, - 45.474204 - ], - [ - -73.498345, - 45.474398 - ], - [ - -73.498759, - 45.474776 - ], - [ - -73.498981, - 45.474956 - ], - [ - -73.499212, - 45.475131 - ], - [ - -73.499453, - 45.475307 - ], - [ - -73.502533, - 45.47734 - ], - [ - -73.504857, - 45.478866 - ], - [ - -73.505913, - 45.479567 - ], - [ - -73.50636, - 45.479923 - ], - [ - -73.506669, - 45.480206 - ], - [ - -73.506703, - 45.480242 - ], - [ - -73.507214, - 45.480985 - ], - [ - -73.5074, - 45.481264 - ], - [ - -73.507557, - 45.481556 - ], - [ - -73.507623, - 45.481709 - ], - [ - -73.507749, - 45.482028 - ], - [ - -73.507806, - 45.482204 - ], - [ - -73.507893, - 45.482523 - ], - [ - -73.508036, - 45.483162 - ], - [ - -73.508086, - 45.483459 - ], - [ - -73.50815, - 45.483909 - ], - [ - -73.508179, - 45.484188 - ], - [ - -73.508181, - 45.484296 - ], - [ - -73.50814, - 45.484525 - ], - [ - -73.508054, - 45.484759 - ], - [ - -73.508002, - 45.484854 - ], - [ - -73.507955, - 45.484919 - ], - [ - -73.507937, - 45.484944 - ], - [ - -73.507769, - 45.485092 - ], - [ - -73.507516, - 45.485245 - ], - [ - -73.507431, - 45.485295 - ], - [ - -73.507518, - 45.485367 - ], - [ - -73.50762, - 45.485484 - ], - [ - -73.507754, - 45.485677 - ], - [ - -73.508077, - 45.486145 - ], - [ - -73.508225, - 45.48637 - ], - [ - -73.508337, - 45.486547 - ] - ] - }, - "id": 136, - "properties": { - "id": "45158145-9537-42e5-a793-889b7b82d42c", - "data": { - "gtfs": { - "shape_id": "55_1_R" - }, - "segments": [ - { - "distanceMeters": 1173, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 11746, - "travelTimeSeconds": 873 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12919, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4736.079082751775, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 13.46, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 11.33, - "averageSpeedWithoutDwellTimesMetersPerSecond": 13.46 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", - "41c5e691-5e17-40ab-889a-89c7787b0afb", - "41d7b6d4-1fe4-44ed-a774-b005607fc59d" - ], - "stops": [], - "line_id": "9728c421-e658-48b0-86dc-586caebce3cc", - "segments": [ - 0, - 25 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 136, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.566611, - 45.498345 - ], - [ - -73.566663, - 45.498283 - ], - [ - -73.566738, - 45.498195 - ], - [ - -73.566628, - 45.49808 - ], - [ - -73.566306, - 45.497931 - ], - [ - -73.566253, - 45.497841 - ], - [ - -73.56638, - 45.497699 - ], - [ - -73.566016, - 45.497523 - ], - [ - -73.564691, - 45.496892 - ], - [ - -73.563974, - 45.496566 - ], - [ - -73.562701, - 45.495919 - ], - [ - -73.562646, - 45.496027 - ], - [ - -73.562481, - 45.496317 - ], - [ - -73.562435, - 45.496383 - ], - [ - -73.562367, - 45.496479 - ], - [ - -73.562274, - 45.496658 - ], - [ - -73.562038, - 45.497108 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.561461, - 45.49816 - ], - [ - -73.561417, - 45.498249 - ], - [ - -73.561384, - 45.498316 - ], - [ - -73.561361, - 45.498363 - ], - [ - -73.561311, - 45.498457 - ], - [ - -73.561247, - 45.498577 - ], - [ - -73.560252, - 45.500015 - ], - [ - -73.559986, - 45.500369 - ], - [ - -73.559795, - 45.500646 - ], - [ - -73.559563, - 45.501001 - ], - [ - -73.559259, - 45.500902 - ], - [ - -73.559035, - 45.500829 - ], - [ - -73.558351, - 45.500588 - ], - [ - -73.557917, - 45.500441 - ], - [ - -73.557166, - 45.500183 - ], - [ - -73.556646, - 45.500001 - ], - [ - -73.556233, - 45.499854 - ], - [ - -73.55496, - 45.499427 - ], - [ - -73.554892, - 45.499405 - ], - [ - -73.555129, - 45.499076 - ], - [ - -73.555173, - 45.499014 - ], - [ - -73.555269, - 45.498308 - ], - [ - -73.555414, - 45.497651 - ], - [ - -73.555549, - 45.496965 - ], - [ - -73.555612, - 45.496561 - ], - [ - -73.555665, - 45.496222 - ], - [ - -73.55571, - 45.495915 - ], - [ - -73.555745, - 45.495673 - ], - [ - -73.555436, - 45.495547 - ], - [ - -73.555351, - 45.495512 - ], - [ - -73.555133, - 45.495401 - ], - [ - -73.554916, - 45.495262 - ], - [ - -73.554768, - 45.495125 - ], - [ - -73.55465, - 45.494994 - ], - [ - -73.553944, - 45.493258 - ], - [ - -73.553818, - 45.492971 - ], - [ - -73.553465, - 45.492338 - ], - [ - -73.552977, - 45.491759 - ], - [ - -73.552502, - 45.491344 - ], - [ - -73.551956, - 45.490962 - ], - [ - -73.551651, - 45.490791 - ], - [ - -73.551074, - 45.490513 - ], - [ - -73.550682, - 45.490367 - ], - [ - -73.550465, - 45.490243 - ], - [ - -73.55013, - 45.490094 - ], - [ - -73.549603, - 45.489918 - ], - [ - -73.548474, - 45.489705 - ], - [ - -73.547199, - 45.489425 - ], - [ - -73.546739, - 45.489334 - ], - [ - -73.546333, - 45.489254 - ], - [ - -73.546022, - 45.489193 - ], - [ - -73.545864, - 45.489079 - ], - [ - -73.54579, - 45.489001 - ], - [ - -73.545696, - 45.488867 - ], - [ - -73.545692, - 45.488569 - ], - [ - -73.545588, - 45.488027 - ], - [ - -73.545574, - 45.487952 - ], - [ - -73.545551, - 45.487831 - ], - [ - -73.545339, - 45.487094 - ], - [ - -73.545236, - 45.487092 - ], - [ - -73.54504, - 45.487116 - ], - [ - -73.543974, - 45.487251 - ], - [ - -73.542985, - 45.487395 - ], - [ - -73.541983, - 45.487533 - ], - [ - -73.54164, - 45.487587 - ], - [ - -73.541188, - 45.487707 - ], - [ - -73.541063, - 45.487748 - ], - [ - -73.540676, - 45.487875 - ], - [ - -73.540024, - 45.488096 - ], - [ - -73.539901, - 45.488138 - ], - [ - -73.539774, - 45.488181 - ], - [ - -73.537894, - 45.488819 - ], - [ - -73.526903, - 45.492546 - ], - [ - -73.519008, - 45.495223 - ], - [ - -73.518724, - 45.495318 - ], - [ - -73.518635, - 45.495403 - ], - [ - -73.518629, - 45.49541 - ], - [ - -73.518545, - 45.495511 - ], - [ - -73.518484, - 45.495601 - ], - [ - -73.518441, - 45.495718 - ], - [ - -73.518426, - 45.495907 - ], - [ - -73.518469, - 45.496038 - ], - [ - -73.518536, - 45.496128 - ], - [ - -73.518615, - 45.496182 - ], - [ - -73.518722, - 45.496222 - ], - [ - -73.518881, - 45.496245 - ], - [ - -73.519001, - 45.49624 - ], - [ - -73.51909, - 45.496218 - ], - [ - -73.519187, - 45.496191 - ], - [ - -73.519277, - 45.496141 - ], - [ - -73.519341, - 45.496083 - ], - [ - -73.519379, - 45.496011 - ], - [ - -73.519379, - 45.495813 - ], - [ - -73.519328, - 45.495682 - ], - [ - -73.519241, - 45.495552 - ], - [ - -73.519238, - 45.495547 - ], - [ - -73.519103, - 45.495363 - ], - [ - -73.519008, - 45.495223 - ], - [ - -73.518969, - 45.495174 - ], - [ - -73.518955, - 45.495156 - ], - [ - -73.518899, - 45.495084 - ], - [ - -73.518835, - 45.494971 - ], - [ - -73.518466, - 45.494463 - ], - [ - -73.518217, - 45.494139 - ], - [ - -73.518079, - 45.493932 - ], - [ - -73.518029, - 45.493842 - ], - [ - -73.518022, - 45.493784 - ], - [ - -73.518019, - 45.493707 - ], - [ - -73.518007, - 45.493527 - ], - [ - -73.518012, - 45.49337 - ], - [ - -73.517974, - 45.492915 - ], - [ - -73.517967, - 45.492735 - ], - [ - -73.517917, - 45.492636 - ], - [ - -73.517844, - 45.49256 - ], - [ - -73.517716, - 45.492488 - ], - [ - -73.517581, - 45.492434 - ], - [ - -73.517376, - 45.49238 - ], - [ - -73.517193, - 45.492403 - ], - [ - -73.516784, - 45.492461 - ], - [ - -73.516125, - 45.492551 - ], - [ - -73.515824, - 45.492601 - ], - [ - -73.515723, - 45.492632 - ], - [ - -73.515592, - 45.4927 - ], - [ - -73.51548, - 45.492821 - ], - [ - -73.515432, - 45.492911 - ], - [ - -73.515429, - 45.493064 - ], - [ - -73.515475, - 45.493199 - ], - [ - -73.515528, - 45.493384 - ], - [ - -73.515566, - 45.493523 - ], - [ - -73.515582, - 45.493618 - ], - [ - -73.515582, - 45.493699 - ], - [ - -73.515544, - 45.493775 - ], - [ - -73.515517, - 45.493829 - ], - [ - -73.515444, - 45.493879 - ], - [ - -73.515351, - 45.493969 - ], - [ - -73.515349, - 45.493969 - ], - [ - -73.515173, - 45.494005 - ], - [ - -73.514588, - 45.494108 - ], - [ - -73.514568, - 45.494108 - ], - [ - -73.514121, - 45.494176 - ], - [ - -73.513695, - 45.494221 - ], - [ - -73.513332, - 45.494239 - ], - [ - -73.513204, - 45.494243 - ], - [ - -73.511549, - 45.49423 - ], - [ - -73.511202, - 45.494223 - ], - [ - -73.510793, - 45.4942 - ], - [ - -73.510474, - 45.49419 - ], - [ - -73.510478, - 45.494145 - ], - [ - -73.510481, - 45.494082 - ], - [ - -73.510482, - 45.493708 - ], - [ - -73.510483, - 45.493422 - ], - [ - -73.510483, - 45.493366 - ], - [ - -73.510492, - 45.492939 - ], - [ - -73.5105, - 45.492713 - ], - [ - -73.510502, - 45.492624 - ], - [ - -73.510682, - 45.492628 - ], - [ - -73.510871, - 45.492628 - ], - [ - -73.511144, - 45.492628 - ], - [ - -73.511254, - 45.492628 - ], - [ - -73.511437, - 45.492619 - ], - [ - -73.512134, - 45.492542 - ], - [ - -73.51245, - 45.492507 - ], - [ - -73.512553, - 45.492693 - ], - [ - -73.512764, - 45.493074 - ], - [ - -73.512921, - 45.493393 - ], - [ - -73.512971, - 45.493496 - ], - [ - -73.512984, - 45.493515 - ], - [ - -73.513094, - 45.493766 - ], - [ - -73.513261, - 45.494078 - ], - [ - -73.513283, - 45.494149 - ], - [ - -73.513342, - 45.494287 - ], - [ - -73.513459, - 45.494626 - ], - [ - -73.513505, - 45.494783 - ], - [ - -73.513561, - 45.49499 - ], - [ - -73.513604, - 45.495179 - ], - [ - -73.513621, - 45.495251 - ], - [ - -73.513692, - 45.495557 - ], - [ - -73.513764, - 45.495883 - ], - [ - -73.513786, - 45.49598 - ], - [ - -73.51384, - 45.496187 - ], - [ - -73.513899, - 45.496425 - ], - [ - -73.513925, - 45.49652 - ], - [ - -73.513974, - 45.496614 - ], - [ - -73.514009, - 45.496686 - ], - [ - -73.514054, - 45.496749 - ], - [ - -73.514104, - 45.49683 - ], - [ - -73.514166, - 45.496911 - ], - [ - -73.514219, - 45.49697 - ], - [ - -73.514552, - 45.497478 - ], - [ - -73.514769, - 45.497838 - ], - [ - -73.515085, - 45.498391 - ], - [ - -73.51517, - 45.49854 - ], - [ - -73.515544, - 45.499217 - ], - [ - -73.515623, - 45.499359 - ], - [ - -73.515674, - 45.499453 - ], - [ - -73.515873, - 45.499831 - ], - [ - -73.515977, - 45.500074 - ], - [ - -73.516146, - 45.500501 - ], - [ - -73.516373, - 45.50114 - ], - [ - -73.51647, - 45.501401 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.516245, - 45.501835 - ], - [ - -73.516043, - 45.501832 - ], - [ - -73.514398, - 45.501805 - ], - [ - -73.514212, - 45.501802 - ], - [ - -73.514104, - 45.501797 - ], - [ - -73.514045, - 45.501797 - ], - [ - -73.513805, - 45.501793 - ], - [ - -73.5136, - 45.501784 - ], - [ - -73.513522, - 45.501784 - ], - [ - -73.51344, - 45.501784 - ], - [ - -73.513284, - 45.501793 - ], - [ - -73.513035, - 45.501807 - ], - [ - -73.512897, - 45.501829 - ], - [ - -73.5127, - 45.501847 - ], - [ - -73.512499, - 45.501865 - ], - [ - -73.512398, - 45.501874 - ], - [ - -73.512063, - 45.501735 - ], - [ - -73.511984, - 45.501701 - ], - [ - -73.511327, - 45.50142 - ], - [ - -73.50993, - 45.500781 - ], - [ - -73.509894, - 45.500767 - ], - [ - -73.509762, - 45.500713 - ], - [ - -73.509608, - 45.500651 - ], - [ - -73.508958, - 45.500376 - ], - [ - -73.508861, - 45.50034 - ], - [ - -73.507712, - 45.499859 - ], - [ - -73.50735, - 45.499701 - ], - [ - -73.507069, - 45.499581 - ], - [ - -73.506801, - 45.499467 - ], - [ - -73.506709, - 45.499427 - ], - [ - -73.506259, - 45.499211 - ], - [ - -73.506001, - 45.499076 - ], - [ - -73.505704, - 45.498928 - ], - [ - -73.505329, - 45.498757 - ], - [ - -73.505105, - 45.498595 - ], - [ - -73.504951, - 45.498488 - ], - [ - -73.504839, - 45.49841 - ], - [ - -73.504683, - 45.498293 - ], - [ - -73.504473, - 45.49814 - ], - [ - -73.504131, - 45.497897 - ], - [ - -73.503475, - 45.497438 - ], - [ - -73.503408, - 45.497389 - ], - [ - -73.50327, - 45.49729 - ], - [ - -73.50284, - 45.49698 - ], - [ - -73.502635, - 45.496834 - ], - [ - -73.502336, - 45.49662 - ], - [ - -73.502293, - 45.496588 - ], - [ - -73.501808, - 45.496251 - ], - [ - -73.501447, - 45.49599 - ], - [ - -73.501279, - 45.495868 - ], - [ - -73.501182, - 45.495805 - ], - [ - -73.501059, - 45.495724 - ], - [ - -73.50081, - 45.495567 - ], - [ - -73.500592, - 45.495409 - ], - [ - -73.500498, - 45.495335 - ], - [ - -73.500106, - 45.495026 - ], - [ - -73.500064, - 45.495 - ], - [ - -73.500025, - 45.494979 - ], - [ - -73.499778, - 45.494815 - ], - [ - -73.499763, - 45.494802 - ], - [ - -73.49959, - 45.494676 - ], - [ - -73.499359, - 45.494506 - ], - [ - -73.499315, - 45.494474 - ], - [ - -73.499159, - 45.494361 - ], - [ - -73.498924, - 45.49419 - ], - [ - -73.498797, - 45.494096 - ], - [ - -73.498616, - 45.49397 - ], - [ - -73.49848, - 45.493866 - ], - [ - -73.498241, - 45.493693 - ], - [ - -73.498238, - 45.493691 - ], - [ - -73.49804, - 45.493547 - ], - [ - -73.497995, - 45.493515 - ], - [ - -73.497927, - 45.49347 - ], - [ - -73.497866, - 45.493425 - ], - [ - -73.497771, - 45.493353 - ], - [ - -73.497557, - 45.493191 - ], - [ - -73.497339, - 45.493038 - ], - [ - -73.497128, - 45.492885 - ], - [ - -73.496772, - 45.492629 - ], - [ - -73.496458, - 45.492403 - ], - [ - -73.496416, - 45.492372 - ], - [ - -73.496321, - 45.492305 - ], - [ - -73.496235, - 45.492242 - ], - [ - -73.495851, - 45.491976 - ], - [ - -73.49562, - 45.491814 - ], - [ - -73.495442, - 45.491684 - ], - [ - -73.495204, - 45.491517 - ], - [ - -73.494917, - 45.491315 - ], - [ - -73.49433, - 45.490897 - ], - [ - -73.494242, - 45.490838 - ], - [ - -73.494219, - 45.490822 - ], - [ - -73.493838, - 45.49055 - ], - [ - -73.493701, - 45.490456 - ], - [ - -73.493573, - 45.490366 - ], - [ - -73.492976, - 45.489943 - ], - [ - -73.492778, - 45.489803 - ], - [ - -73.492465, - 45.489583 - ], - [ - -73.492419, - 45.48955 - ], - [ - -73.492218, - 45.489407 - ], - [ - -73.492028, - 45.489271 - ], - [ - -73.491735, - 45.489062 - ], - [ - -73.491721, - 45.489052 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.492138, - 45.488647 - ], - [ - -73.492246, - 45.488512 - ], - [ - -73.492413, - 45.48862 - ], - [ - -73.492658, - 45.488782 - ], - [ - -73.492831, - 45.488903 - ], - [ - -73.492977, - 45.489007 - ], - [ - -73.493685, - 45.489511 - ], - [ - -73.494044, - 45.489767 - ], - [ - -73.494123, - 45.489824 - ], - [ - -73.494277, - 45.489938 - ], - [ - -73.494463, - 45.490073 - ], - [ - -73.495016, - 45.490456 - ], - [ - -73.495224, - 45.490582 - ], - [ - -73.495457, - 45.490703 - ], - [ - -73.495685, - 45.490802 - ], - [ - -73.495823, - 45.490837 - ], - [ - -73.495827, - 45.490838 - ], - [ - -73.495938, - 45.490852 - ], - [ - -73.496542, - 45.490861 - ], - [ - -73.497071, - 45.49087 - ], - [ - -73.497636, - 45.490865 - ], - [ - -73.49822, - 45.490861 - ], - [ - -73.49837, - 45.490865 - ], - [ - -73.498703, - 45.49087 - ], - [ - -73.498972, - 45.490879 - ], - [ - -73.499099, - 45.490883 - ], - [ - -73.499523, - 45.490883 - ], - [ - -73.500019, - 45.490892 - ], - [ - -73.500399, - 45.490897 - ], - [ - -73.500765, - 45.4909 - ], - [ - -73.500934, - 45.490901 - ], - [ - -73.501389, - 45.49091 - ], - [ - -73.502611, - 45.490928 - ], - [ - -73.502759, - 45.49091 - ], - [ - -73.502923, - 45.490879 - ], - [ - -73.503314, - 45.490753 - ], - [ - -73.503637, - 45.490636 - ], - [ - -73.503868, - 45.49055 - ], - [ - -73.504078, - 45.490474 - ], - [ - -73.504178, - 45.490438 - ], - [ - -73.504792, - 45.490226 - ], - [ - -73.504891, - 45.490195 - ], - [ - -73.505021, - 45.490186 - ], - [ - -73.505114, - 45.490179 - ], - [ - -73.505151, - 45.490177 - ], - [ - -73.505337, - 45.490177 - ], - [ - -73.507035, - 45.490202 - ], - [ - -73.508965, - 45.49023 - ], - [ - -73.509495, - 45.490235 - ], - [ - -73.509541, - 45.490235 - ], - [ - -73.510213, - 45.490248 - ], - [ - -73.510776, - 45.490256 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.510846, - 45.490168 - ], - [ - -73.510813, - 45.490118 - ], - [ - -73.509971, - 45.488912 - ], - [ - -73.509789, - 45.488652 - ], - [ - -73.509764, - 45.488615 - ], - [ - -73.509675, - 45.488489 - ], - [ - -73.508553, - 45.486866 - ], - [ - -73.508543, - 45.486852 - ], - [ - -73.508489, - 45.486784 - ], - [ - -73.508385, - 45.486622 - ], - [ - -73.508225, - 45.48637 - ], - [ - -73.508077, - 45.486145 - ], - [ - -73.507754, - 45.485677 - ], - [ - -73.50762, - 45.485484 - ], - [ - -73.507518, - 45.485367 - ], - [ - -73.507431, - 45.485295 - ], - [ - -73.507329, - 45.4852 - ], - [ - -73.507185, - 45.485097 - ], - [ - -73.507115, - 45.485056 - ], - [ - -73.506951, - 45.484962 - ], - [ - -73.506746, - 45.484863 - ], - [ - -73.506624, - 45.484814 - ], - [ - -73.505993, - 45.484584 - ], - [ - -73.505851, - 45.484535 - ], - [ - -73.505663, - 45.484463 - ], - [ - -73.505521, - 45.484395 - ], - [ - -73.505364, - 45.484314 - ], - [ - -73.505242, - 45.484242 - ], - [ - -73.505108, - 45.484152 - ], - [ - -73.504924, - 45.483995 - ], - [ - -73.504889, - 45.483959 - ], - [ - -73.504857, - 45.483927 - ], - [ - -73.504846, - 45.483915 - ], - [ - -73.504614, - 45.483657 - ], - [ - -73.504141, - 45.483117 - ], - [ - -73.503641, - 45.482546 - ], - [ - -73.503598, - 45.482497 - ], - [ - -73.503512, - 45.48238 - ], - [ - -73.50345, - 45.482308 - ], - [ - -73.503272, - 45.482092 - ], - [ - -73.502806, - 45.48156 - ], - [ - -73.502676, - 45.481412 - ], - [ - -73.501939, - 45.480602 - ] - ] - }, - "id": 137, - "properties": { - "id": "f8dc3bc5-f503-4bb3-a85c-204550e965f7", - "data": { - "gtfs": { - "shape_id": "55_2_R" - }, - "segments": [ - { - "distanceMeters": 8, - "travelTimeSeconds": 2 - }, - { - "distanceMeters": 1498, - "travelTimeSeconds": 418 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 1375, - "travelTimeSeconds": 152 - }, - { - "distanceMeters": 3770, - "travelTimeSeconds": 417 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 416, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 89 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 79 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 104, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 195, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 358, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 100, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 447, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 46 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 240, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13725, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5430.598658537578, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.72, - "travelTimeWithoutDwellTimesSeconds": 2400, - "operatingTimeWithLayoverTimeSeconds": 2640, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2400, - "operatingSpeedWithLayoverMetersPerSecond": 5.2, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.72 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", - "8e6eba9f-71d7-47ba-ab56-7f4eadc64281", - "587bca45-e028-437b-8c17-3d0fa1f4d9bd", - "92af9da4-27c5-4709-ac8c-743f6f7a85c2", - "b1a22815-cfc5-4e07-95ed-3ff84f5dc613", - "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "114aaaad-d40e-4930-853f-ef5cebdd299f", - "0b09b82c-ec97-406d-9f1c-690cc935b5ea", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "46687bb1-1189-4edc-bbd4-c90db18d4ff5", - "df5b9592-81e3-4b2c-8a30-7f3a9144671b", - "d24bea6e-da8d-4183-8a5f-0e99be199484", - "6557d1fe-6975-49e2-871c-ab07d42ea35b", - "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", - "1cea6199-481e-43b0-8d4a-8c7593ff485f", - "467e03f3-2556-4d22-ae48-618a76e6b0b4", - "ea9801c9-a110-4900-bcae-f1b3a40050e8", - "0b6032e7-414a-429f-9df2-796599b947c2", - "88d8365e-2528-4422-a483-bb2efd9de617", - "196681e4-c9e5-4a79-a3b1-ce225227e0aa", - "fa220212-b6b2-4456-934f-7248f9884444", - "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", - "1fc11ea4-4e32-4f30-8519-34208d0f8931", - "1fa03421-8026-43d9-b21a-b3e57dfa43c2", - "d67aee3e-be1e-429b-b464-c7a6549e761a", - "51191948-9067-4256-853f-d80a1333a164", - "602dc8fb-62ff-45ed-888f-4b4172318b5d", - "5224c05b-57d6-4d5c-87fd-b9e78147c66e", - "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "bc9b9243-e0ec-461a-9898-6eb69ecd511a", - "41d7b6d4-1fe4-44ed-a774-b005607fc59d", - "9f22d75f-cc66-4020-8804-7912f49950d8", - "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "4df7f34c-ec49-4d48-90b3-56f3faffc976" - ], - "stops": [], - "line_id": "9728c421-e658-48b0-86dc-586caebce3cc", - "segments": [ - 0, - 1, - 37, - 42, - 74, - 168, - 178, - 195, - 210, - 219, - 233, - 239, - 246, - 254, - 263, - 267, - 273, - 287, - 298, - 309, - 318, - 327, - 331, - 337, - 346, - 351, - 365, - 368, - 370, - 373, - 378, - 381, - 405, - 410 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 137, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.50194, - 45.480604 - ], - [ - -73.501828, - 45.48048 - ], - [ - -73.50163, - 45.480263 - ], - [ - -73.501562, - 45.480174 - ], - [ - -73.501309, - 45.479775 - ], - [ - -73.501238, - 45.479689 - ], - [ - -73.501074, - 45.479488 - ], - [ - -73.500829, - 45.479284 - ], - [ - -73.50074, - 45.479167 - ], - [ - -73.500635, - 45.479076 - ], - [ - -73.500662, - 45.478997 - ], - [ - -73.500703, - 45.478888 - ], - [ - -73.500736, - 45.478807 - ], - [ - -73.50145, - 45.478313 - ], - [ - -73.501961, - 45.477845 - ], - [ - -73.502052, - 45.477777 - ], - [ - -73.502296, - 45.477583 - ], - [ - -73.502952, - 45.477093 - ], - [ - -73.502403, - 45.476724 - ], - [ - -73.50056, - 45.475514 - ], - [ - -73.499645, - 45.474902 - ], - [ - -73.499299, - 45.47465 - ], - [ - -73.498979, - 45.474389 - ], - [ - -73.498685, - 45.474119 - ], - [ - -73.498411, - 45.47384 - ], - [ - -73.498325, - 45.473782 - ], - [ - -73.498219, - 45.473741 - ], - [ - -73.498167, - 45.473683 - ], - [ - -73.49797, - 45.473435 - ], - [ - -73.497878, - 45.473309 - ], - [ - -73.497713, - 45.473057 - ], - [ - -73.497572, - 45.47281 - ], - [ - -73.497162, - 45.472027 - ], - [ - -73.496825, - 45.471419 - ], - [ - -73.496511, - 45.470727 - ], - [ - -73.496402, - 45.47047 - ], - [ - -73.496381, - 45.470358 - ], - [ - -73.496379, - 45.470241 - ], - [ - -73.496428, - 45.470119 - ], - [ - -73.496499, - 45.470002 - ], - [ - -73.496531, - 45.469965 - ], - [ - -73.496579, - 45.469908 - ], - [ - -73.496686, - 45.469804 - ], - [ - -73.496817, - 45.469701 - ], - [ - -73.49702, - 45.469503 - ], - [ - -73.497096, - 45.469404 - ], - [ - -73.49716, - 45.469287 - ], - [ - -73.497202, - 45.469174 - ], - [ - -73.497215, - 45.468981 - ], - [ - -73.497183, - 45.468841 - ], - [ - -73.497127, - 45.468733 - ], - [ - -73.497047, - 45.468625 - ], - [ - -73.496943, - 45.468526 - ], - [ - -73.496821, - 45.468441 - ], - [ - -73.496676, - 45.468364 - ], - [ - -73.496512, - 45.46831 - ], - [ - -73.496333, - 45.46827 - ], - [ - -73.496141, - 45.468247 - ], - [ - -73.493047, - 45.468 - ], - [ - -73.492105, - 45.467932 - ], - [ - -73.490403, - 45.467775 - ], - [ - -73.488766, - 45.467638 - ], - [ - -73.487489, - 45.467534 - ], - [ - -73.487032, - 45.467476 - ], - [ - -73.486892, - 45.467435 - ], - [ - -73.486646, - 45.467309 - ], - [ - -73.48649, - 45.467138 - ], - [ - -73.486474, - 45.467037 - ], - [ - -73.486472, - 45.466929 - ], - [ - -73.486596, - 45.466721 - ], - [ - -73.486839, - 45.466557 - ], - [ - -73.487156, - 45.466478 - ], - [ - -73.487511, - 45.466464 - ], - [ - -73.488017, - 45.466487 - ], - [ - -73.489088, - 45.466602 - ], - [ - -73.491585, - 45.46694 - ], - [ - -73.494707, - 45.467307 - ], - [ - -73.494917, - 45.467332 - ], - [ - -73.494999, - 45.467342 - ], - [ - -73.497318, - 45.467635 - ], - [ - -73.501976, - 45.468162 - ], - [ - -73.50546, - 45.468524 - ], - [ - -73.508994, - 45.468874 - ], - [ - -73.510795, - 45.469064 - ], - [ - -73.516615, - 45.469606 - ], - [ - -73.520513, - 45.469901 - ], - [ - -73.524263, - 45.470138 - ], - [ - -73.526895, - 45.470234 - ], - [ - -73.536203, - 45.470502 - ], - [ - -73.537479, - 45.470611 - ], - [ - -73.540035, - 45.470737 - ], - [ - -73.540574, - 45.470754 - ], - [ - -73.541689, - 45.470806 - ], - [ - -73.54236, - 45.470938 - ], - [ - -73.542685, - 45.471019 - ], - [ - -73.543056, - 45.471172 - ], - [ - -73.543235, - 45.471297 - ], - [ - -73.543427, - 45.47153 - ], - [ - -73.543495, - 45.471781 - ], - [ - -73.543487, - 45.471977 - ], - [ - -73.543374, - 45.472246 - ], - [ - -73.543123, - 45.472648 - ], - [ - -73.543053, - 45.472745 - ], - [ - -73.543034, - 45.472772 - ], - [ - -73.543013, - 45.472801 - ], - [ - -73.542473, - 45.473549 - ], - [ - -73.542275, - 45.473832 - ], - [ - -73.542255, - 45.473861 - ], - [ - -73.542175, - 45.473976 - ], - [ - -73.542016, - 45.474229 - ], - [ - -73.541794, - 45.474618 - ], - [ - -73.541458, - 45.475221 - ], - [ - -73.541094, - 45.47588 - ], - [ - -73.540722, - 45.476557 - ], - [ - -73.540393, - 45.477154 - ], - [ - -73.540141, - 45.477612 - ], - [ - -73.539989, - 45.477937 - ], - [ - -73.539912, - 45.478117 - ], - [ - -73.53962, - 45.478792 - ], - [ - -73.539453, - 45.479242 - ], - [ - -73.539011, - 45.480452 - ], - [ - -73.538771, - 45.481137 - ], - [ - -73.538372, - 45.4823 - ], - [ - -73.537796, - 45.483909 - ], - [ - -73.537682, - 45.484235 - ], - [ - -73.537533, - 45.484742 - ], - [ - -73.537501, - 45.485252 - ], - [ - -73.537565, - 45.485765 - ], - [ - -73.537725, - 45.486206 - ], - [ - -73.537953, - 45.486613 - ], - [ - -73.538211, - 45.486968 - ], - [ - -73.538564, - 45.487319 - ], - [ - -73.538991, - 45.48766 - ], - [ - -73.539413, - 45.487933 - ], - [ - -73.540409, - 45.488352 - ], - [ - -73.540999, - 45.488508 - ], - [ - -73.545779, - 45.489431 - ], - [ - -73.547415, - 45.489732 - ], - [ - -73.548107, - 45.48986 - ], - [ - -73.549549, - 45.490154 - ], - [ - -73.549968, - 45.490239 - ], - [ - -73.550646, - 45.490459 - ], - [ - -73.551261, - 45.490742 - ], - [ - -73.55163, - 45.490924 - ], - [ - -73.551996, - 45.491154 - ], - [ - -73.552466, - 45.491495 - ], - [ - -73.552812, - 45.491812 - ], - [ - -73.553225, - 45.492293 - ], - [ - -73.553459, - 45.492647 - ], - [ - -73.553701, - 45.493121 - ], - [ - -73.553714, - 45.493155 - ], - [ - -73.554005, - 45.493935 - ], - [ - -73.554229, - 45.494495 - ], - [ - -73.55441, - 45.494962 - ], - [ - -73.554709, - 45.495574 - ], - [ - -73.554963, - 45.495825 - ], - [ - -73.555225, - 45.496022 - ], - [ - -73.555665, - 45.496222 - ], - [ - -73.557268, - 45.496821 - ], - [ - -73.557934, - 45.497074 - ], - [ - -73.558754, - 45.497382 - ], - [ - -73.559129, - 45.497554 - ], - [ - -73.559665, - 45.497799 - ], - [ - -73.56055, - 45.498258 - ], - [ - -73.561247, - 45.498577 - ], - [ - -73.561311, - 45.498457 - ], - [ - -73.561361, - 45.498363 - ], - [ - -73.561384, - 45.498316 - ], - [ - -73.561417, - 45.498249 - ], - [ - -73.561461, - 45.49816 - ], - [ - -73.561504, - 45.498074 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.562038, - 45.497108 - ], - [ - -73.562161, - 45.497168 - ], - [ - -73.562611, - 45.497387 - ], - [ - -73.562698, - 45.497457 - ], - [ - -73.562791, - 45.497486 - ], - [ - -73.562898, - 45.497495 - ], - [ - -73.563026, - 45.497486 - ], - [ - -73.563269, - 45.497461 - ], - [ - -73.563391, - 45.497457 - ], - [ - -73.563535, - 45.497468 - ], - [ - -73.56365, - 45.497486 - ], - [ - -73.56376, - 45.497514 - ], - [ - -73.563861, - 45.497562 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.56431, - 45.497835 - ], - [ - -73.565142, - 45.498217 - ], - [ - -73.565601, - 45.498443 - ], - [ - -73.565748, - 45.49831 - ], - [ - -73.565849, - 45.498292 - ], - [ - -73.566051, - 45.498359 - ], - [ - -73.566361, - 45.498471 - ], - [ - -73.566492, - 45.498485 - ], - [ - -73.566611, - 45.498345 - ] - ] - }, - "id": 138, - "properties": { - "id": "450ac9fb-bbf0-4aaa-b9eb-061a8d717967", - "data": { - "gtfs": { - "shape_id": "55_2_A" - }, - "segments": [ - { - "distanceMeters": 11801, - "travelTimeSeconds": 1380 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11801, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5430.598658537579, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.55, - "travelTimeWithoutDwellTimesSeconds": 1380, - "operatingTimeWithLayoverTimeSeconds": 1560, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1380, - "operatingSpeedWithLayoverMetersPerSecond": 7.56, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.55 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "4df7f34c-ec49-4d48-90b3-56f3faffc976", - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" - ], - "stops": [], - "line_id": "9728c421-e658-48b0-86dc-586caebce3cc", - "segments": [ - 0 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 138, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.442122, - 45.495875 - ], - [ - -73.441071, - 45.497396 - ], - [ - -73.440992, - 45.497509 - ], - [ - -73.439779, - 45.499267 - ], - [ - -73.439705, - 45.499371 - ], - [ - -73.439312, - 45.499933 - ], - [ - -73.439307, - 45.49994 - ], - [ - -73.43919, - 45.500108 - ], - [ - -73.438982, - 45.500329 - ], - [ - -73.438767, - 45.500522 - ], - [ - -73.438604, - 45.500652 - ], - [ - -73.438428, - 45.500778 - ], - [ - -73.437976, - 45.501106 - ], - [ - -73.437808, - 45.501228 - ], - [ - -73.437244, - 45.501651 - ], - [ - -73.436813, - 45.501961 - ], - [ - -73.436689, - 45.502032 - ], - [ - -73.436593, - 45.502087 - ], - [ - -73.43603, - 45.502316 - ], - [ - -73.435796, - 45.502406 - ], - [ - -73.435545, - 45.502486 - ], - [ - -73.435163, - 45.502576 - ], - [ - -73.434928, - 45.502621 - ], - [ - -73.434661, - 45.502657 - ], - [ - -73.433922, - 45.502755 - ], - [ - -73.433848, - 45.502765 - ], - [ - -73.433805, - 45.50277 - ], - [ - -73.432211, - 45.50297 - ], - [ - -73.432026, - 45.502993 - ], - [ - -73.431799, - 45.503033 - ], - [ - -73.431685, - 45.503059 - ], - [ - -73.431525, - 45.503096 - ], - [ - -73.431196, - 45.503181 - ], - [ - -73.430935, - 45.503271 - ], - [ - -73.430699, - 45.503361 - ], - [ - -73.43052, - 45.503446 - ], - [ - -73.430068, - 45.503683 - ], - [ - -73.430031, - 45.503702 - ], - [ - -73.429757, - 45.503783 - ], - [ - -73.429672, - 45.503797 - ], - [ - -73.429584, - 45.503797 - ], - [ - -73.429496, - 45.503792 - ], - [ - -73.429392, - 45.50377 - ], - [ - -73.429307, - 45.503738 - ], - [ - -73.429206, - 45.503684 - ], - [ - -73.429121, - 45.503648 - ], - [ - -73.429007, - 45.503562 - ], - [ - -73.428781, - 45.503414 - ], - [ - -73.428662, - 45.503344 - ], - [ - -73.428528, - 45.503265 - ], - [ - -73.428383, - 45.503193 - ], - [ - -73.428061, - 45.503062 - ], - [ - -73.427348, - 45.502808 - ], - [ - -73.427282, - 45.502785 - ], - [ - -73.42662, - 45.502548 - ], - [ - -73.426292, - 45.502431 - ], - [ - -73.42672, - 45.501739 - ], - [ - -73.426823, - 45.501595 - ], - [ - -73.427084, - 45.50123 - ], - [ - -73.427197, - 45.501073 - ], - [ - -73.427378, - 45.500821 - ], - [ - -73.428135, - 45.49975 - ], - [ - -73.428857, - 45.49873 - ], - [ - -73.428976, - 45.498568 - ], - [ - -73.429191, - 45.498276 - ], - [ - -73.429247, - 45.498199 - ], - [ - -73.429364, - 45.498159 - ], - [ - -73.429465, - 45.498146 - ], - [ - -73.429588, - 45.498159 - ], - [ - -73.430906, - 45.49864 - ], - [ - -73.430984, - 45.498668 - ], - [ - -73.431441, - 45.498021 - ], - [ - -73.431832, - 45.497459 - ], - [ - -73.432149, - 45.497026 - ], - [ - -73.432274, - 45.496856 - ], - [ - -73.432352, - 45.496748 - ], - [ - -73.431192, - 45.49634 - ], - [ - -73.430595, - 45.496131 - ], - [ - -73.430662, - 45.496027 - ], - [ - -73.431051, - 45.495488 - ], - [ - -73.431456, - 45.494916 - ], - [ - -73.431797, - 45.494463 - ], - [ - -73.431866, - 45.494372 - ], - [ - -73.432269, - 45.493788 - ], - [ - -73.432568, - 45.493374 - ], - [ - -73.432639, - 45.493293 - ], - [ - -73.43277, - 45.493221 - ], - [ - -73.432927, - 45.49323 - ], - [ - -73.433324, - 45.493373 - ], - [ - -73.433602, - 45.493473 - ], - [ - -73.433946, - 45.493598 - ], - [ - -73.434513, - 45.493802 - ], - [ - -73.435361, - 45.494049 - ], - [ - -73.435472, - 45.494082 - ], - [ - -73.435723, - 45.494151 - ], - [ - -73.436664, - 45.494411 - ], - [ - -73.437312, - 45.494598 - ], - [ - -73.43754, - 45.494663 - ], - [ - -73.438053, - 45.493957 - ], - [ - -73.438134, - 45.493858 - ], - [ - -73.438287, - 45.49358 - ], - [ - -73.438402, - 45.493454 - ], - [ - -73.438551, - 45.493308 - ], - [ - -73.438558, - 45.493301 - ], - [ - -73.438673, - 45.493188 - ], - [ - -73.440776, - 45.494361 - ], - [ - -73.440795, - 45.494371 - ], - [ - -73.44114, - 45.494563 - ], - [ - -73.4419, - 45.494987 - ], - [ - -73.442288, - 45.495204 - ], - [ - -73.442397, - 45.495264 - ], - [ - -73.442507, - 45.495318 - ], - [ - -73.442662, - 45.495404 - ], - [ - -73.442881, - 45.495526 - ], - [ - -73.445644, - 45.497056 - ], - [ - -73.445726, - 45.497102 - ], - [ - -73.446114, - 45.497358 - ], - [ - -73.4462, - 45.497417 - ], - [ - -73.446473, - 45.497601 - ], - [ - -73.446666, - 45.497444 - ], - [ - -73.446768, - 45.497359 - ], - [ - -73.446827, - 45.497326 - ], - [ - -73.44702, - 45.497219 - ], - [ - -73.447146, - 45.497146 - ], - [ - -73.447323, - 45.497044 - ], - [ - -73.448168, - 45.496536 - ], - [ - -73.44881, - 45.496149 - ], - [ - -73.449164, - 45.495938 - ], - [ - -73.451626, - 45.494472 - ], - [ - -73.451675, - 45.494444 - ], - [ - -73.451788, - 45.494378 - ], - [ - -73.454215, - 45.492926 - ], - [ - -73.45465, - 45.492666 - ], - [ - -73.454766, - 45.492597 - ], - [ - -73.455091, - 45.492872 - ], - [ - -73.455092, - 45.492873 - ], - [ - -73.455334, - 45.493075 - ], - [ - -73.455637, - 45.493327 - ], - [ - -73.455847, - 45.4935 - ], - [ - -73.455921, - 45.493561 - ], - [ - -73.455445, - 45.493846 - ], - [ - -73.453925, - 45.494757 - ], - [ - -73.452944, - 45.495341 - ], - [ - -73.453272, - 45.495611 - ], - [ - -73.453454, - 45.495766 - ], - [ - -73.453569, - 45.495863 - ], - [ - -73.452688, - 45.496389 - ], - [ - -73.450515, - 45.497686 - ], - [ - -73.45036, - 45.497779 - ], - [ - -73.450085, - 45.497941 - ], - [ - -73.450487, - 45.498161 - ], - [ - -73.450534, - 45.498187 - ], - [ - -73.451013, - 45.498449 - ], - [ - -73.451357, - 45.498643 - ], - [ - -73.451834, - 45.498904 - ], - [ - -73.452113, - 45.499057 - ], - [ - -73.452413, - 45.499224 - ], - [ - -73.452639, - 45.49935 - ], - [ - -73.452794, - 45.499431 - ], - [ - -73.453172, - 45.499634 - ], - [ - -73.453483, - 45.499755 - ], - [ - -73.45482, - 45.500233 - ], - [ - -73.454914, - 45.500255 - ], - [ - -73.455067, - 45.500305 - ], - [ - -73.455166, - 45.5003 - ], - [ - -73.455262, - 45.5003 - ], - [ - -73.455439, - 45.500273 - ], - [ - -73.455554, - 45.500255 - ], - [ - -73.455726, - 45.500228 - ], - [ - -73.455806, - 45.50017 - ], - [ - -73.456009, - 45.500058 - ], - [ - -73.458133, - 45.498798 - ], - [ - -73.45823, - 45.49874 - ], - [ - -73.45866, - 45.498475 - ], - [ - -73.459486, - 45.49798 - ], - [ - -73.45999, - 45.497679 - ], - [ - -73.460119, - 45.497603 - ], - [ - -73.460224, - 45.497535 - ], - [ - -73.460362, - 45.497454 - ], - [ - -73.461046, - 45.497049 - ], - [ - -73.461541, - 45.496748 - ], - [ - -73.462777, - 45.49601 - ], - [ - -73.462904, - 45.495934 - ], - [ - -73.465269, - 45.494527 - ], - [ - -73.465632, - 45.494314 - ], - [ - -73.465714, - 45.494266 - ], - [ - -73.466671, - 45.49369 - ], - [ - -73.469134, - 45.492221 - ], - [ - -73.469303, - 45.492121 - ], - [ - -73.469006, - 45.491923 - ], - [ - -73.468992, - 45.491914 - ], - [ - -73.468656, - 45.491698 - ], - [ - -73.468573, - 45.49163 - ], - [ - -73.468166, - 45.49136 - ], - [ - -73.468537, - 45.491086 - ], - [ - -73.468726, - 45.490951 - ], - [ - -73.468846, - 45.490865 - ], - [ - -73.469097, - 45.490677 - ], - [ - -73.469549, - 45.490326 - ], - [ - -73.469835, - 45.49011 - ], - [ - -73.470185, - 45.489841 - ], - [ - -73.470269, - 45.489777 - ], - [ - -73.470505, - 45.489602 - ], - [ - -73.470987, - 45.489246 - ], - [ - -73.471332, - 45.488982 - ], - [ - -73.47145, - 45.488891 - ], - [ - -73.471789, - 45.488626 - ], - [ - -73.47187, - 45.488576 - ], - [ - -73.471942, - 45.488513 - ], - [ - -73.471603, - 45.48829 - ], - [ - -73.46708, - 45.485304 - ], - [ - -73.466642, - 45.484984 - ], - [ - -73.46651, - 45.484875 - ], - [ - -73.466473, - 45.484845 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466302, - 45.484687 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466188, - 45.484448 - ], - [ - -73.466149, - 45.484395 - ], - [ - -73.465905, - 45.484113 - ], - [ - -73.465719, - 45.4839 - ], - [ - -73.46546, - 45.483541 - ], - [ - -73.465236, - 45.483174 - ], - [ - -73.465161, - 45.483037 - ], - [ - -73.465057, - 45.482799 - ], - [ - -73.464968, - 45.48254 - ], - [ - -73.46489, - 45.482284 - ], - [ - -73.464833, - 45.481906 - ], - [ - -73.464816, - 45.481524 - ], - [ - -73.464841, - 45.48119 - ], - [ - -73.464843, - 45.481165 - ], - [ - -73.464847, - 45.481114 - ], - [ - -73.464866, - 45.480979 - ], - [ - -73.46492, - 45.48071 - ], - [ - -73.465032, - 45.480327 - ], - [ - -73.465198, - 45.479819 - ], - [ - -73.46547, - 45.479009 - ], - [ - -73.465549, - 45.478772 - ], - [ - -73.465652, - 45.478467 - ], - [ - -73.465874, - 45.477808 - ], - [ - -73.466476, - 45.47599 - ], - [ - -73.466484, - 45.475966 - ], - [ - -73.466637, - 45.475504 - ], - [ - -73.467366, - 45.473305 - ], - [ - -73.467616, - 45.472553 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467869, - 45.471793 - ], - [ - -73.467954, - 45.471482 - ], - [ - -73.467979, - 45.471365 - ], - [ - -73.468005, - 45.471249 - ], - [ - -73.468064, - 45.470898 - ], - [ - -73.468088, - 45.470651 - ], - [ - -73.468112, - 45.470407 - ], - [ - -73.468119, - 45.470155 - ], - [ - -73.468115, - 45.470044 - ], - [ - -73.468111, - 45.469894 - ], - [ - -73.468108, - 45.469818 - ], - [ - -73.468107, - 45.469773 - ], - [ - -73.46805, - 45.4693 - ], - [ - -73.467953, - 45.468834 - ], - [ - -73.467932, - 45.468733 - ], - [ - -73.467793, - 45.468274 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466768 - ] - ] - }, - "id": 139, - "properties": { - "id": "25ac6328-b789-4a95-a77f-6dbe93804ee3", - "data": { - "gtfs": { - "shape_id": "59_1_A" - }, - "segments": [ - { - "distanceMeters": 188, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 112, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 376, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 327, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 359, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 657, - "travelTimeSeconds": 137 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 95 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 608, - "travelTimeSeconds": 133 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 79 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 192, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11508, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3861.488572820391, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.99, - "travelTimeWithoutDwellTimesSeconds": 1920, - "operatingTimeWithLayoverTimeSeconds": 2112, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1920, - "operatingSpeedWithLayoverMetersPerSecond": 5.45, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.99 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "662f52e5-0ed5-4ba7-81cb-757051eefa2c", - "015193c6-e760-4b43-b20c-28dc44f0558a", - "565e8198-26d9-4715-bc5d-75974e6721d9", - "9b336d4e-db84-472b-aee3-9690d5d224b6", - "3b96e6d6-e4f7-4e24-903e-8fb3993ff6c9", - "22b915c8-bf8d-4e3f-9fa4-f7abce5fa7bb", - "3c0bf327-9e6c-4db5-9401-9cdab070b521", - "959a039b-3225-4812-af55-0e181302cf5d", - "b904303e-de8b-4c71-8b48-48af0de2a9a1", - "2b273df9-aa5e-4062-ae81-92ee60a67a5c", - "450e4ca7-36c4-47db-b1ed-be5672eba5df", - "467e0f7f-f932-4d5e-ba82-9bb0389d7158", - "747c9196-e225-4f37-90ad-0a4fef1b26af", - "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", - "d9bf2534-8f61-4d16-adab-8e4d84e855be", - "f1d23184-1962-40c7-b052-f1f4b7010174", - "0de64186-5455-4222-b348-dab3af89fb3c", - "648c28de-ca97-4dbf-950c-84a7af5578c7", - "20955fbd-1587-4ce3-bc7b-59e84c9c964d", - "3437d9a1-68b8-4d3b-8599-7f7b86a577b8", - "f5c53aa7-466b-4eea-b3e2-5399d8d7f806", - "2e1dd055-2856-439e-b231-cd2b626a492f", - "e9e722ad-a155-4750-9a2a-a126be84e7ec", - "e49c515c-3414-4a88-aaec-43f9499177ec", - "c6b0edc5-b07e-4471-93c5-2b6117d67602", - "43297c29-6e25-4fbe-a1b6-70a1ce96533d", - "923afb03-b5b7-44ed-a97d-4785d2468e97", - "31cd9a31-1ee8-4458-8681-91c1c006b9aa", - "c335387f-3250-40f6-a22d-cdf683517398", - "f46c44d6-0823-444d-9902-d03499774c08", - "69ce0958-621c-4e07-9f8c-41bd64014240", - "800a1d6c-4d5b-4560-b691-99e1b0db1343", - "e827aa2c-577c-4249-9fc7-9a6572084b69", - "12181a0a-32eb-4333-b444-1760ecaa417c", - "bfc273c8-ec5d-4e76-b6a3-3d443d9f65a2", - "c988f5aa-9ab5-48a6-898c-21c53961d2f3", - "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", - "cee5ccf3-ece1-4350-8264-3c360d07d279", - "d5196968-9845-4e31-966a-0ac0f5f77b83", - "e089008c-4123-4897-95b5-a61e5e049f48", - "159a0fe9-bedb-40f2-9806-32ab49594978", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "579043e1-54f7-411f-9a36-e7ee3324290f", - "1758013c-4193-42f0-a495-c36930003f5b", - "51e1600d-418e-4477-9b26-9e5507d72a03", - "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "131616ed-8c78-458b-a65e-78f1aeac1fc7" - ], - "stops": [], - "line_id": "4e9421ca-697a-46ef-ab77-d977505dec90", - "segments": [ - 0, - 1, - 5, - 12, - 16, - 25, - 30, - 36, - 54, - 58, - 61, - 63, - 69, - 73, - 76, - 81, - 88, - 92, - 96, - 102, - 105, - 108, - 114, - 123, - 127, - 129, - 132, - 138, - 144, - 147, - 156, - 167, - 171, - 175, - 181, - 184, - 187, - 195, - 200, - 204, - 212, - 229, - 237, - 240, - 252, - 260 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 139, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469004, - 45.466768 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46641, - 45.465821 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467476, - 45.467991 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467548, - 45.468225 - ], - [ - -73.467698, - 45.468792 - ], - [ - -73.467776, - 45.469183 - ], - [ - -73.46782, - 45.469453 - ], - [ - -73.46784, - 45.469698 - ], - [ - -73.467865, - 45.469989 - ], - [ - -73.467864, - 45.470057 - ], - [ - -73.467862, - 45.470168 - ], - [ - -73.46786, - 45.470362 - ], - [ - -73.467821, - 45.470781 - ], - [ - -73.467786, - 45.471019 - ], - [ - -73.467768, - 45.4711 - ], - [ - -73.467742, - 45.471226 - ], - [ - -73.467655, - 45.471563 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467508, - 45.472063 - ], - [ - -73.467493, - 45.472108 - ], - [ - -73.467344, - 45.472558 - ], - [ - -73.467254, - 45.472832 - ], - [ - -73.467075, - 45.473412 - ], - [ - -73.467018, - 45.473612 - ], - [ - -73.46686, - 45.474168 - ], - [ - -73.466715, - 45.474632 - ], - [ - -73.466501, - 45.475269 - ], - [ - -73.466278, - 45.475935 - ], - [ - -73.466234, - 45.476067 - ], - [ - -73.466128, - 45.476383 - ], - [ - -73.465592, - 45.477979 - ], - [ - -73.465357, - 45.478703 - ], - [ - -73.46534, - 45.478746 - ], - [ - -73.465269, - 45.478932 - ], - [ - -73.465247, - 45.479 - ], - [ - -73.464879, - 45.480107 - ], - [ - -73.464823, - 45.480273 - ], - [ - -73.464733, - 45.480574 - ], - [ - -73.464664, - 45.480885 - ], - [ - -73.464647, - 45.481012 - ], - [ - -73.464634, - 45.481108 - ], - [ - -73.464622, - 45.481195 - ], - [ - -73.464619, - 45.481245 - ], - [ - -73.464603, - 45.481524 - ], - [ - -73.464619, - 45.481956 - ], - [ - -73.464693, - 45.482383 - ], - [ - -73.464736, - 45.482559 - ], - [ - -73.46485, - 45.482905 - ], - [ - -73.46499, - 45.483243 - ], - [ - -73.465069, - 45.483405 - ], - [ - -73.465231, - 45.483688 - ], - [ - -73.465328, - 45.483837 - ], - [ - -73.465383, - 45.483922 - ], - [ - -73.465513, - 45.484102 - ], - [ - -73.465839, - 45.48448 - ], - [ - -73.466022, - 45.484682 - ], - [ - -73.46613, - 45.484773 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.46623, - 45.484867 - ], - [ - -73.466294, - 45.484926 - ], - [ - -73.466457, - 45.485056 - ], - [ - -73.466566, - 45.485142 - ], - [ - -73.466759, - 45.48529 - ], - [ - -73.466948, - 45.485421 - ], - [ - -73.467024, - 45.48547 - ], - [ - -73.468004, - 45.486118 - ], - [ - -73.467659, - 45.486389 - ], - [ - -73.467603, - 45.486433 - ], - [ - -73.467188, - 45.486748 - ], - [ - -73.466683, - 45.487126 - ], - [ - -73.466468, - 45.487283 - ], - [ - -73.466112, - 45.487553 - ], - [ - -73.465746, - 45.487828 - ], - [ - -73.46537, - 45.488106 - ], - [ - -73.465024, - 45.488363 - ], - [ - -73.464766, - 45.488561 - ], - [ - -73.464472, - 45.488786 - ], - [ - -73.464379, - 45.488857 - ], - [ - -73.46422, - 45.488754 - ], - [ - -73.464097, - 45.488673 - ], - [ - -73.463537, - 45.488299 - ], - [ - -73.463291, - 45.488146 - ], - [ - -73.463053, - 45.487989 - ], - [ - -73.462983, - 45.487944 - ], - [ - -73.46278, - 45.487809 - ], - [ - -73.462163, - 45.488174 - ], - [ - -73.461945, - 45.488303 - ], - [ - -73.46072, - 45.489032 - ], - [ - -73.459285, - 45.489895 - ], - [ - -73.457963, - 45.490686 - ], - [ - -73.457738, - 45.49083 - ], - [ - -73.456382, - 45.491631 - ], - [ - -73.454851, - 45.492546 - ], - [ - -73.454766, - 45.492597 - ], - [ - -73.454215, - 45.492926 - ], - [ - -73.451866, - 45.494331 - ], - [ - -73.451788, - 45.494378 - ], - [ - -73.451626, - 45.494472 - ], - [ - -73.448884, - 45.496105 - ], - [ - -73.44881, - 45.496149 - ], - [ - -73.448168, - 45.496536 - ], - [ - -73.447755, - 45.496784 - ], - [ - -73.447323, - 45.497044 - ], - [ - -73.44702, - 45.497219 - ], - [ - -73.446768, - 45.497359 - ], - [ - -73.446666, - 45.497444 - ], - [ - -73.446534, - 45.497471 - ], - [ - -73.44646, - 45.497475 - ], - [ - -73.44636, - 45.497457 - ], - [ - -73.4462, - 45.497417 - ], - [ - -73.446114, - 45.497358 - ], - [ - -73.445877, - 45.497202 - ], - [ - -73.445726, - 45.497102 - ], - [ - -73.442891, - 45.495531 - ], - [ - -73.442881, - 45.495526 - ], - [ - -73.442662, - 45.495404 - ], - [ - -73.442507, - 45.495318 - ], - [ - -73.442122, - 45.495875 - ] - ] - }, - "id": 140, - "properties": { - "id": "27f8601c-024f-48b9-a12d-d7e1f5289604", - "data": { - "gtfs": { - "shape_id": "59_1_R" - }, - "segments": [ - { - "distanceMeters": 805, - "travelTimeSeconds": 112 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 436, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 485, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 574, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 994, - "travelTimeSeconds": 104 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 12 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5459, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3861.488572820391, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.27, - "travelTimeWithoutDwellTimesSeconds": 660, - "operatingTimeWithLayoverTimeSeconds": 840, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 660, - "operatingSpeedWithLayoverMetersPerSecond": 6.5, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.27 - }, - "mode": "bus", - "name": "boul. Gareau", - "color": "#A32638", - "nodes": [ - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "acb7092d-3b2a-4d79-a4e3-09e7e52af475", - "47d29e21-b442-4f1e-bc41-0d7871af14e8", - "7eaffbff-c86c-4810-b174-bda8780c04b4", - "e76a6766-6730-419b-bd29-f65b80bb6721", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "4996264a-c3f0-4fe8-be81-9ca3d8659c61", - "e49dac95-6777-4527-88d9-43533c4c81ab", - "923afb03-b5b7-44ed-a97d-4785d2468e97", - "43297c29-6e25-4fbe-a1b6-70a1ce96533d", - "c6b0edc5-b07e-4471-93c5-2b6117d67602", - "e49c515c-3414-4a88-aaec-43f9499177ec", - "e9e722ad-a155-4750-9a2a-a126be84e7ec", - "a03c8e5e-b707-45da-b2b1-2e8109893679", - "662f52e5-0ed5-4ba7-81cb-757051eefa2c" - ], - "stops": [], - "line_id": "4e9421ca-697a-46ef-ab77-d977505dec90", - "segments": [ - 0, - 31, - 45, - 54, - 57, - 64, - 85, - 101, - 117, - 120, - 123, - 126, - 136, - 138 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 140, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469004, - 45.466768 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46641, - 45.465821 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467476, - 45.467991 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467548, - 45.468225 - ], - [ - -73.467698, - 45.468792 - ], - [ - -73.467776, - 45.469183 - ], - [ - -73.46782, - 45.469453 - ], - [ - -73.46784, - 45.469694 - ], - [ - -73.467865, - 45.469989 - ], - [ - -73.467864, - 45.470057 - ], - [ - -73.467862, - 45.470168 - ], - [ - -73.46786, - 45.470362 - ], - [ - -73.467821, - 45.470781 - ], - [ - -73.467786, - 45.471019 - ], - [ - -73.467768, - 45.4711 - ], - [ - -73.467742, - 45.471226 - ], - [ - -73.467655, - 45.471563 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467508, - 45.472063 - ], - [ - -73.467493, - 45.472108 - ], - [ - -73.467346, - 45.472554 - ], - [ - -73.467254, - 45.472832 - ], - [ - -73.467075, - 45.473412 - ], - [ - -73.467018, - 45.473612 - ], - [ - -73.46686, - 45.474168 - ], - [ - -73.466715, - 45.474632 - ], - [ - -73.466501, - 45.475269 - ], - [ - -73.466278, - 45.475935 - ], - [ - -73.466234, - 45.476067 - ], - [ - -73.46613, - 45.476377 - ], - [ - -73.465592, - 45.477979 - ], - [ - -73.465357, - 45.478703 - ], - [ - -73.465343, - 45.478739 - ], - [ - -73.465269, - 45.478932 - ], - [ - -73.465247, - 45.479 - ], - [ - -73.464879, - 45.480107 - ], - [ - -73.464823, - 45.480273 - ], - [ - -73.464733, - 45.480574 - ], - [ - -73.464664, - 45.480885 - ], - [ - -73.464648, - 45.481004 - ], - [ - -73.464634, - 45.481108 - ], - [ - -73.464622, - 45.481195 - ], - [ - -73.464619, - 45.481245 - ], - [ - -73.464603, - 45.481524 - ], - [ - -73.464619, - 45.481956 - ], - [ - -73.464693, - 45.482383 - ], - [ - -73.464736, - 45.482559 - ], - [ - -73.46485, - 45.482905 - ], - [ - -73.46499, - 45.483243 - ], - [ - -73.465069, - 45.483405 - ], - [ - -73.465231, - 45.483688 - ], - [ - -73.465328, - 45.483837 - ], - [ - -73.465383, - 45.483922 - ], - [ - -73.465513, - 45.484102 - ], - [ - -73.465839, - 45.48448 - ], - [ - -73.466022, - 45.484682 - ], - [ - -73.46613, - 45.484773 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.46623, - 45.484867 - ], - [ - -73.466294, - 45.484926 - ], - [ - -73.466447, - 45.485048 - ], - [ - -73.466566, - 45.485142 - ], - [ - -73.466759, - 45.48529 - ], - [ - -73.466948, - 45.485421 - ], - [ - -73.467024, - 45.48547 - ], - [ - -73.468004, - 45.486118 - ], - [ - -73.469888, - 45.487365 - ], - [ - -73.470621, - 45.487851 - ], - [ - -73.471789, - 45.488626 - ], - [ - -73.471521, - 45.488835 - ], - [ - -73.47145, - 45.488891 - ], - [ - -73.471357, - 45.488962 - ], - [ - -73.470987, - 45.489246 - ], - [ - -73.470505, - 45.489602 - ], - [ - -73.470376, - 45.489697 - ], - [ - -73.470269, - 45.489777 - ], - [ - -73.469835, - 45.49011 - ], - [ - -73.469549, - 45.490326 - ], - [ - -73.469097, - 45.490677 - ], - [ - -73.468846, - 45.490865 - ], - [ - -73.468537, - 45.491086 - ], - [ - -73.468316, - 45.491249 - ], - [ - -73.468166, - 45.49136 - ], - [ - -73.468573, - 45.49163 - ], - [ - -73.468656, - 45.491698 - ], - [ - -73.469006, - 45.491923 - ], - [ - -73.469037, - 45.491943 - ], - [ - -73.469303, - 45.492121 - ], - [ - -73.468677, - 45.492494 - ], - [ - -73.466671, - 45.49369 - ], - [ - -73.465866, - 45.494175 - ], - [ - -73.465714, - 45.494266 - ], - [ - -73.465269, - 45.494527 - ], - [ - -73.46304, - 45.495853 - ], - [ - -73.462904, - 45.495934 - ], - [ - -73.461541, - 45.496748 - ], - [ - -73.461046, - 45.497049 - ], - [ - -73.460407, - 45.497428 - ], - [ - -73.460362, - 45.497454 - ], - [ - -73.460224, - 45.497535 - ], - [ - -73.460119, - 45.497603 - ], - [ - -73.459486, - 45.49798 - ], - [ - -73.45866, - 45.498475 - ], - [ - -73.458451, - 45.498604 - ], - [ - -73.45823, - 45.49874 - ], - [ - -73.456009, - 45.500058 - ], - [ - -73.455817, - 45.500164 - ], - [ - -73.455806, - 45.50017 - ], - [ - -73.455726, - 45.500228 - ], - [ - -73.455439, - 45.500273 - ], - [ - -73.455262, - 45.5003 - ], - [ - -73.455166, - 45.5003 - ], - [ - -73.455067, - 45.500305 - ], - [ - -73.454914, - 45.500255 - ], - [ - -73.45482, - 45.500233 - ], - [ - -73.453483, - 45.499755 - ], - [ - -73.453172, - 45.499634 - ], - [ - -73.452889, - 45.499482 - ], - [ - -73.452794, - 45.499431 - ], - [ - -73.452639, - 45.49935 - ], - [ - -73.452113, - 45.499057 - ], - [ - -73.451834, - 45.498904 - ], - [ - -73.451357, - 45.498643 - ], - [ - -73.451013, - 45.498449 - ], - [ - -73.450805, - 45.498335 - ], - [ - -73.450487, - 45.498161 - ], - [ - -73.450387, - 45.498107 - ], - [ - -73.450085, - 45.497941 - ], - [ - -73.45036, - 45.497779 - ], - [ - -73.452688, - 45.496389 - ], - [ - -73.453569, - 45.495863 - ], - [ - -73.453272, - 45.495611 - ], - [ - -73.453008, - 45.495394 - ], - [ - -73.452944, - 45.495341 - ], - [ - -73.453925, - 45.494757 - ], - [ - -73.455147, - 45.494025 - ], - [ - -73.455814, - 45.493625 - ], - [ - -73.455921, - 45.493561 - ], - [ - -73.455637, - 45.493327 - ], - [ - -73.455334, - 45.493075 - ], - [ - -73.455091, - 45.492872 - ], - [ - -73.454873, - 45.492688 - ], - [ - -73.454766, - 45.492597 - ], - [ - -73.454215, - 45.492926 - ], - [ - -73.453992, - 45.493059 - ], - [ - -73.45188, - 45.494323 - ], - [ - -73.451788, - 45.494378 - ], - [ - -73.451626, - 45.494472 - ], - [ - -73.448899, - 45.496096 - ], - [ - -73.44881, - 45.496149 - ], - [ - -73.448168, - 45.496536 - ], - [ - -73.447761, - 45.496781 - ], - [ - -73.447323, - 45.497044 - ], - [ - -73.44702, - 45.497219 - ], - [ - -73.446768, - 45.497359 - ], - [ - -73.446666, - 45.497444 - ], - [ - -73.446534, - 45.497471 - ], - [ - -73.44646, - 45.497475 - ], - [ - -73.44636, - 45.497457 - ], - [ - -73.4462, - 45.497417 - ], - [ - -73.446114, - 45.497358 - ], - [ - -73.445884, - 45.497206 - ], - [ - -73.445726, - 45.497102 - ], - [ - -73.442899, - 45.495536 - ], - [ - -73.442881, - 45.495526 - ], - [ - -73.442662, - 45.495404 - ], - [ - -73.442507, - 45.495318 - ], - [ - -73.442397, - 45.495264 - ], - [ - -73.442288, - 45.495204 - ], - [ - -73.44114, - 45.494563 - ], - [ - -73.440907, - 45.494434 - ], - [ - -73.440795, - 45.494371 - ], - [ - -73.438673, - 45.493188 - ], - [ - -73.438558, - 45.493301 - ], - [ - -73.438402, - 45.493454 - ], - [ - -73.438287, - 45.49358 - ], - [ - -73.438194, - 45.49375 - ], - [ - -73.438134, - 45.493858 - ], - [ - -73.438053, - 45.493957 - ], - [ - -73.437626, - 45.494545 - ], - [ - -73.43754, - 45.494663 - ], - [ - -73.437089, - 45.494534 - ], - [ - -73.436664, - 45.494411 - ], - [ - -73.435723, - 45.494151 - ], - [ - -73.435623, - 45.494123 - ], - [ - -73.435472, - 45.494082 - ], - [ - -73.434513, - 45.493802 - ], - [ - -73.43378, - 45.493538 - ], - [ - -73.433602, - 45.493473 - ], - [ - -73.432927, - 45.49323 - ], - [ - -73.43277, - 45.493221 - ], - [ - -73.432639, - 45.493293 - ], - [ - -73.432568, - 45.493374 - ], - [ - -73.432269, - 45.493788 - ], - [ - -73.43193, - 45.494279 - ], - [ - -73.431866, - 45.494372 - ], - [ - -73.431456, - 45.494916 - ], - [ - -73.431051, - 45.495488 - ], - [ - -73.430859, - 45.495754 - ], - [ - -73.430693, - 45.495984 - ], - [ - -73.430662, - 45.496027 - ], - [ - -73.430595, - 45.496131 - ], - [ - -73.430519, - 45.496234 - ], - [ - -73.432076, - 45.496786 - ], - [ - -73.432274, - 45.496856 - ], - [ - -73.431832, - 45.497459 - ], - [ - -73.431441, - 45.498021 - ], - [ - -73.431182, - 45.498388 - ], - [ - -73.430984, - 45.498668 - ], - [ - -73.429588, - 45.498159 - ], - [ - -73.429465, - 45.498146 - ], - [ - -73.429364, - 45.498159 - ], - [ - -73.429247, - 45.498199 - ], - [ - -73.429191, - 45.498276 - ], - [ - -73.429062, - 45.498451 - ], - [ - -73.428857, - 45.49873 - ], - [ - -73.428065, - 45.49985 - ], - [ - -73.427378, - 45.500821 - ], - [ - -73.427249, - 45.501 - ], - [ - -73.427197, - 45.501073 - ], - [ - -73.426823, - 45.501594 - ], - [ - -73.426823, - 45.501595 - ], - [ - -73.42672, - 45.501739 - ], - [ - -73.426492, - 45.502108 - ], - [ - -73.426292, - 45.502431 - ], - [ - -73.426184, - 45.502584 - ], - [ - -73.427788, - 45.503152 - ], - [ - -73.428083, - 45.503265 - ], - [ - -73.428273, - 45.50335 - ], - [ - -73.428512, - 45.503472 - ], - [ - -73.428643, - 45.503549 - ], - [ - -73.428884, - 45.503715 - ], - [ - -73.428992, - 45.503801 - ], - [ - -73.429012, - 45.50382 - ], - [ - -73.429175, - 45.503967 - ], - [ - -73.429253, - 45.504057 - ], - [ - -73.429303, - 45.504111 - ], - [ - -73.429332, - 45.504143 - ], - [ - -73.429534, - 45.504058 - ], - [ - -73.429729, - 45.503968 - ], - [ - -73.429957, - 45.503864 - ], - [ - -73.430302, - 45.503725 - ], - [ - -73.430634, - 45.503559 - ], - [ - -73.430802, - 45.503483 - ], - [ - -73.431026, - 45.503393 - ], - [ - -73.431274, - 45.503312 - ], - [ - -73.431374, - 45.503285 - ], - [ - -73.431595, - 45.503227 - ], - [ - -73.431855, - 45.503168 - ], - [ - -73.432067, - 45.503128 - ], - [ - -73.433772, - 45.502914 - ], - [ - -73.433958, - 45.50289 - ], - [ - -73.434701, - 45.502796 - ], - [ - -73.434919, - 45.50277 - ], - [ - -73.43507, - 45.502747 - ], - [ - -73.435218, - 45.502711 - ], - [ - -73.435619, - 45.502617 - ], - [ - -73.435671, - 45.5026 - ], - [ - -73.435885, - 45.502532 - ], - [ - -73.436128, - 45.502437 - ], - [ - -73.436599, - 45.50223 - ], - [ - -73.436771, - 45.502154 - ], - [ - -73.437089, - 45.501929 - ], - [ - -73.437803, - 45.501427 - ], - [ - -73.437952, - 45.501322 - ], - [ - -73.438749, - 45.500747 - ], - [ - -73.438772, - 45.500729 - ], - [ - -73.43892, - 45.500612 - ], - [ - -73.439048, - 45.500497 - ], - [ - -73.439144, - 45.50041 - ], - [ - -73.439363, - 45.500176 - ], - [ - -73.439833, - 45.499501 - ], - [ - -73.43988, - 45.499434 - ], - [ - -73.439954, - 45.499326 - ], - [ - -73.441093, - 45.497682 - ], - [ - -73.441172, - 45.497567 - ], - [ - -73.442302, - 45.495927 - ] - ] - }, - "id": 141, - "properties": { - "id": "58441819-df62-44c5-8947-b39865be55f6", - "data": { - "gtfs": { - "shape_id": "59_2_R" - }, - "segments": [ - { - "distanceMeters": 805, - "travelTimeSeconds": 131 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 436, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 485, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 627, - "travelTimeSeconds": 103 - }, - { - "distanceMeters": 112, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 455, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 74, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 613, - "travelTimeSeconds": 175 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 63 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 210, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11903, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3856.754273888441, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.67, - "travelTimeWithoutDwellTimesSeconds": 2100, - "operatingTimeWithLayoverTimeSeconds": 2310, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2100, - "operatingSpeedWithLayoverMetersPerSecond": 5.15, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.67 - }, - "mode": "bus", - "name": "boul. Gareau", - "color": "#A32638", - "nodes": [ - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "acb7092d-3b2a-4d79-a4e3-09e7e52af475", - "47d29e21-b442-4f1e-bc41-0d7871af14e8", - "7eaffbff-c86c-4810-b174-bda8780c04b4", - "e76a6766-6730-419b-bd29-f65b80bb6721", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "4996264a-c3f0-4fe8-be81-9ca3d8659c61", - "e089008c-4123-4897-95b5-a61e5e049f48", - "d5196968-9845-4e31-966a-0ac0f5f77b83", - "cee5ccf3-ece1-4350-8264-3c360d07d279", - "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", - "c988f5aa-9ab5-48a6-898c-21c53961d2f3", - "bfc273c8-ec5d-4e76-b6a3-3d443d9f65a2", - "12181a0a-32eb-4333-b444-1760ecaa417c", - "e827aa2c-577c-4249-9fc7-9a6572084b69", - "800a1d6c-4d5b-4560-b691-99e1b0db1343", - "69ce0958-621c-4e07-9f8c-41bd64014240", - "f46c44d6-0823-444d-9902-d03499774c08", - "c335387f-3250-40f6-a22d-cdf683517398", - "31cd9a31-1ee8-4458-8681-91c1c006b9aa", - "923afb03-b5b7-44ed-a97d-4785d2468e97", - "43297c29-6e25-4fbe-a1b6-70a1ce96533d", - "c6b0edc5-b07e-4471-93c5-2b6117d67602", - "e49c515c-3414-4a88-aaec-43f9499177ec", - "e9e722ad-a155-4750-9a2a-a126be84e7ec", - "a03c8e5e-b707-45da-b2b1-2e8109893679", - "f5c53aa7-466b-4eea-b3e2-5399d8d7f806", - "3437d9a1-68b8-4d3b-8599-7f7b86a577b8", - "20955fbd-1587-4ce3-bc7b-59e84c9c964d", - "648c28de-ca97-4dbf-950c-84a7af5578c7", - "0de64186-5455-4222-b348-dab3af89fb3c", - "f1d23184-1962-40c7-b052-f1f4b7010174", - "d9bf2534-8f61-4d16-adab-8e4d84e855be", - "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", - "747c9196-e225-4f37-90ad-0a4fef1b26af", - "467e0f7f-f932-4d5e-ba82-9bb0389d7158", - "450e4ca7-36c4-47db-b1ed-be5672eba5df", - "2b273df9-aa5e-4062-ae81-92ee60a67a5c", - "2b273df9-aa5e-4062-ae81-92ee60a67a5c", - "175e7e04-90a9-48d6-93fb-0788b2b7dc79", - "cb99f0c8-b0c6-47e9-9827-66190161063b", - "3b96e6d6-e4f7-4e24-903e-8fb3993ff6c9", - "9b336d4e-db84-472b-aee3-9690d5d224b6", - "a39b7f03-1a32-4d28-9091-59543b1980d1", - "2eba5ff6-a088-4286-aafa-5c6b0646f734", - "015193c6-e760-4b43-b20c-28dc44f0558a", - "280e5a85-9e1a-4b2a-8fde-6cc3d439dfe9" - ], - "stops": [], - "line_id": "4e9421ca-697a-46ef-ab77-d977505dec90", - "segments": [ - 0, - 31, - 45, - 54, - 57, - 64, - 85, - 96, - 99, - 106, - 111, - 115, - 118, - 122, - 128, - 131, - 142, - 151, - 157, - 161, - 166, - 170, - 173, - 176, - 186, - 188, - 195, - 201, - 204, - 209, - 212, - 219, - 224, - 228, - 232, - 239, - 241, - 243, - 245, - 271, - 275, - 285, - 288, - 293, - 296, - 299 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 141, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.442302, - 45.495927 - ], - [ - -73.442662, - 45.495404 - ], - [ - -73.442507, - 45.495318 - ], - [ - -73.442397, - 45.495264 - ], - [ - -73.442288, - 45.495204 - ], - [ - -73.44114, - 45.494563 - ], - [ - -73.440908, - 45.494434 - ], - [ - -73.440795, - 45.494371 - ], - [ - -73.438673, - 45.493188 - ], - [ - -73.438254, - 45.492959 - ], - [ - -73.437906, - 45.492769 - ], - [ - -73.437413, - 45.492495 - ], - [ - -73.436849, - 45.492184 - ], - [ - -73.436481, - 45.491981 - ], - [ - -73.436012, - 45.49172 - ], - [ - -73.435273, - 45.491315 - ], - [ - -73.435169, - 45.491256 - ], - [ - -73.435083, - 45.491207 - ], - [ - -73.434375, - 45.49081 - ], - [ - -73.433245, - 45.490184 - ], - [ - -73.432787, - 45.489937 - ], - [ - -73.432356, - 45.489693 - ], - [ - -73.432063, - 45.489531 - ], - [ - -73.43217, - 45.489383 - ], - [ - -73.43219, - 45.48936 - ], - [ - -73.432305, - 45.489239 - ], - [ - -73.432556, - 45.489041 - ], - [ - -73.432684, - 45.488933 - ], - [ - -73.432921, - 45.48878 - ], - [ - -73.433484, - 45.488439 - ], - [ - -73.435153, - 45.487468 - ], - [ - -73.437094, - 45.486331 - ], - [ - -73.437465, - 45.486115 - ], - [ - -73.43775, - 45.485944 - ], - [ - -73.438008, - 45.485782 - ], - [ - -73.439264, - 45.485036 - ], - [ - -73.439959, - 45.484631 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.443018, - 45.482865 - ], - [ - -73.443745, - 45.48242 - ], - [ - -73.445624, - 45.481309 - ], - [ - -73.446581, - 45.480738 - ], - [ - -73.448771, - 45.479431 - ], - [ - -73.449044, - 45.479268 - ], - [ - -73.449242, - 45.479145 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.44954, - 45.478958 - ], - [ - -73.449587, - 45.478931 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.44904, - 45.47838 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.465226, - 45.468287 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466768 - ] - ] - }, - "id": 142, - "properties": { - "id": "28bb247a-d7e4-486e-98bf-3391f4d65e70", - "data": { - "gtfs": { - "shape_id": "59_2_A" - }, - "segments": [ - { - "distanceMeters": 239, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 4491, - "travelTimeSeconds": 930 - }, - { - "distanceMeters": 487, - "travelTimeSeconds": 101 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5216, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3856.754273888441, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 4.83, - "travelTimeWithoutDwellTimesSeconds": 1080, - "operatingTimeWithLayoverTimeSeconds": 1260, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1080, - "operatingSpeedWithLayoverMetersPerSecond": 4.14, - "averageSpeedWithoutDwellTimesMetersPerSecond": 4.83 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "280e5a85-9e1a-4b2a-8fde-6cc3d439dfe9", - "f5c53aa7-466b-4eea-b3e2-5399d8d7f806", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "131616ed-8c78-458b-a65e-78f1aeac1fc7" - ], - "stops": [], - "line_id": "4e9421ca-697a-46ef-ab77-d977505dec90", - "segments": [ - 0, - 6, - 68 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 142, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.385045, - 45.506579 - ], - [ - -73.384797, - 45.506518 - ], - [ - -73.383777, - 45.506274 - ], - [ - -73.382498, - 45.505967 - ], - [ - -73.382363, - 45.505931 - ], - [ - -73.382185, - 45.50589 - ], - [ - -73.382118, - 45.506021 - ], - [ - -73.381988, - 45.506301 - ], - [ - -73.381841, - 45.50662 - ], - [ - -73.38158, - 45.507188 - ], - [ - -73.381335, - 45.507721 - ], - [ - -73.38128, - 45.507806 - ], - [ - -73.380619, - 45.508917 - ], - [ - -73.380471, - 45.509177 - ], - [ - -73.380338, - 45.509474 - ], - [ - -73.380312, - 45.5096 - ], - [ - -73.380265, - 45.50983 - ], - [ - -73.380243, - 45.510001 - ], - [ - -73.380445, - 45.509992 - ], - [ - -73.380791, - 45.509943 - ], - [ - -73.380949, - 45.509965 - ], - [ - -73.380985, - 45.509971 - ], - [ - -73.382527, - 45.510205 - ], - [ - -73.382962, - 45.510282 - ], - [ - -73.383372, - 45.510346 - ], - [ - -73.383559, - 45.510373 - ], - [ - -73.383894, - 45.510396 - ], - [ - -73.384418, - 45.510414 - ], - [ - -73.384628, - 45.51041 - ], - [ - -73.38478, - 45.510388 - ], - [ - -73.384919, - 45.510388 - ], - [ - -73.385295, - 45.510379 - ], - [ - -73.385917, - 45.510362 - ], - [ - -73.386235, - 45.510353 - ], - [ - -73.387775, - 45.510287 - ], - [ - -73.388662, - 45.510288 - ], - [ - -73.38988, - 45.510258 - ], - [ - -73.39086, - 45.510227 - ], - [ - -73.391524, - 45.510196 - ], - [ - -73.392204, - 45.510161 - ], - [ - -73.392652, - 45.510134 - ], - [ - -73.393167, - 45.510108 - ], - [ - -73.393621, - 45.510086 - ], - [ - -73.393726, - 45.510072 - ], - [ - -73.393813, - 45.510063 - ], - [ - -73.394181, - 45.510028 - ], - [ - -73.394199, - 45.510028 - ], - [ - -73.395527, - 45.509872 - ], - [ - -73.399448, - 45.509601 - ], - [ - -73.399404, - 45.509279 - ], - [ - -73.399352, - 45.508899 - ], - [ - -73.399307, - 45.508559 - ], - [ - -73.399294, - 45.508462 - ], - [ - -73.399228, - 45.507945 - ], - [ - -73.399213, - 45.507801 - ], - [ - -73.399133, - 45.507198 - ], - [ - -73.399108, - 45.507031 - ], - [ - -73.399111, - 45.507003 - ], - [ - -73.399117, - 45.50695 - ], - [ - -73.39914, - 45.506797 - ], - [ - -73.399188, - 45.506676 - ], - [ - -73.399379, - 45.50637 - ], - [ - -73.399802, - 45.506078 - ], - [ - -73.399985, - 45.50597 - ], - [ - -73.400046, - 45.505939 - ], - [ - -73.400152, - 45.505885 - ], - [ - -73.400052, - 45.505795 - ], - [ - -73.399949, - 45.505664 - ], - [ - -73.399886, - 45.505552 - ], - [ - -73.39982, - 45.505426 - ], - [ - -73.399787, - 45.505322 - ], - [ - -73.39976, - 45.505156 - ], - [ - -73.399734, - 45.504783 - ], - [ - -73.399729, - 45.504706 - ], - [ - -73.399657, - 45.504175 - ], - [ - -73.399561, - 45.503495 - ], - [ - -73.399542, - 45.50336 - ], - [ - -73.399508, - 45.503131 - ], - [ - -73.399441, - 45.502676 - ], - [ - -73.399417, - 45.50246 - ], - [ - -73.3994, - 45.502333 - ], - [ - -73.399355, - 45.501992 - ], - [ - -73.399825, - 45.501965 - ], - [ - -73.400848, - 45.501905 - ], - [ - -73.40102, - 45.501895 - ], - [ - -73.402013, - 45.501846 - ], - [ - -73.402508, - 45.501802 - ], - [ - -73.402812, - 45.501766 - ], - [ - -73.402823, - 45.501763 - ], - [ - -73.402978, - 45.501726 - ], - [ - -73.403257, - 45.501667 - ], - [ - -73.403564, - 45.501582 - ], - [ - -73.4038, - 45.50151 - ], - [ - -73.404012, - 45.501416 - ], - [ - -73.404181, - 45.501344 - ], - [ - -73.404368, - 45.50125 - ], - [ - -73.404541, - 45.501151 - ], - [ - -73.404768, - 45.501003 - ], - [ - -73.405014, - 45.500818 - ], - [ - -73.405183, - 45.500652 - ], - [ - -73.405207, - 45.500629 - ], - [ - -73.40521, - 45.500625 - ], - [ - -73.405385, - 45.500423 - ], - [ - -73.405524, - 45.500243 - ], - [ - -73.405638, - 45.500032 - ], - [ - -73.405906, - 45.499487 - ], - [ - -73.406057, - 45.499182 - ], - [ - -73.40631, - 45.498674 - ], - [ - -73.406337, - 45.498619 - ], - [ - -73.406472, - 45.498417 - ], - [ - -73.406574, - 45.498264 - ], - [ - -73.406814, - 45.497925 - ], - [ - -73.407382, - 45.497122 - ], - [ - -73.407646, - 45.49675 - ], - [ - -73.407675, - 45.496708 - ], - [ - -73.407892, - 45.496394 - ], - [ - -73.408205, - 45.495957 - ], - [ - -73.408715, - 45.495247 - ], - [ - -73.408773, - 45.495157 - ], - [ - -73.408851, - 45.495036 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.409273, - 45.494513 - ], - [ - -73.409537, - 45.494129 - ], - [ - -73.409872, - 45.493642 - ], - [ - -73.411364, - 45.49154 - ], - [ - -73.41144, - 45.491434 - ], - [ - -73.412048, - 45.490575 - ], - [ - -73.413095, - 45.489094 - ], - [ - -73.41317, - 45.488987 - ], - [ - -73.413246, - 45.48888 - ], - [ - -73.414235, - 45.487508 - ], - [ - -73.414543, - 45.487058 - ], - [ - -73.414879, - 45.486604 - ], - [ - -73.415045, - 45.486384 - ], - [ - -73.415216, - 45.486168 - ], - [ - -73.41547, - 45.485876 - ], - [ - -73.415618, - 45.485723 - ], - [ - -73.415653, - 45.485687 - ], - [ - -73.415881, - 45.485467 - ], - [ - -73.415979, - 45.485368 - ], - [ - -73.416171, - 45.485201 - ], - [ - -73.416634, - 45.484828 - ], - [ - -73.417619, - 45.484091 - ], - [ - -73.417797, - 45.483961 - ], - [ - -73.418029, - 45.48379 - ], - [ - -73.419479, - 45.482708 - ], - [ - -73.420488, - 45.481958 - ], - [ - -73.420745, - 45.481758 - ], - [ - -73.421034, - 45.481545 - ], - [ - -73.421135, - 45.481471 - ], - [ - -73.423418, - 45.479788 - ], - [ - -73.423539, - 45.479699 - ], - [ - -73.42384, - 45.47947 - ], - [ - -73.424374, - 45.479093 - ], - [ - -73.424606, - 45.47894 - ], - [ - -73.42499, - 45.478702 - ], - [ - -73.425384, - 45.478481 - ], - [ - -73.425755, - 45.478293 - ], - [ - -73.426224, - 45.478077 - ], - [ - -73.426575, - 45.477924 - ], - [ - -73.426885, - 45.477807 - ], - [ - -73.427064, - 45.47774 - ], - [ - -73.427293, - 45.477659 - ], - [ - -73.427592, - 45.477565 - ], - [ - -73.427919, - 45.477471 - ], - [ - -73.428417, - 45.477332 - ], - [ - -73.430191, - 45.476874 - ], - [ - -73.430341, - 45.476838 - ], - [ - -73.430884, - 45.476699 - ], - [ - -73.430981, - 45.476674 - ], - [ - -73.431616, - 45.47651 - ], - [ - -73.432188, - 45.476362 - ], - [ - -73.434429, - 45.475783 - ], - [ - -73.435101, - 45.475604 - ], - [ - -73.435306, - 45.475549 - ], - [ - -73.435634, - 45.475469 - ], - [ - -73.436518, - 45.475235 - ], - [ - -73.437045, - 45.475069 - ], - [ - -73.437596, - 45.47488 - ], - [ - -73.437872, - 45.474768 - ], - [ - -73.438084, - 45.474678 - ], - [ - -73.438199, - 45.474624 - ], - [ - -73.43841, - 45.474525 - ], - [ - -73.438836, - 45.474314 - ], - [ - -73.43909, - 45.474175 - ], - [ - -73.440044, - 45.473644 - ], - [ - -73.440381, - 45.473457 - ], - [ - -73.440528, - 45.473375 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.440904, - 45.473168 - ], - [ - -73.441015, - 45.473108 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.442522, - 45.472046 - ], - [ - -73.442653, - 45.471954 - ], - [ - -73.444466, - 45.470668 - ], - [ - -73.444558, - 45.470603 - ], - [ - -73.444693, - 45.470507 - ], - [ - -73.445328, - 45.470057 - ], - [ - -73.445338, - 45.470052 - ], - [ - -73.445622, - 45.469854 - ], - [ - -73.446091, - 45.469543 - ], - [ - -73.446378, - 45.469352 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.447066, - 45.468996 - ], - [ - -73.4474, - 45.468829 - ], - [ - -73.447822, - 45.468645 - ], - [ - -73.448427, - 45.468407 - ], - [ - -73.449383, - 45.468079 - ], - [ - -73.449742, - 45.467957 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450233, - 45.467787 - ], - [ - -73.451014, - 45.467517 - ], - [ - -73.451685, - 45.467271 - ], - [ - -73.451729, - 45.467255 - ], - [ - -73.451774, - 45.467238 - ], - [ - -73.452547, - 45.466971 - ], - [ - -73.452657, - 45.466933 - ], - [ - -73.453014, - 45.466803 - ], - [ - -73.45314, - 45.466749 - ], - [ - -73.453548, - 45.466537 - ], - [ - -73.453946, - 45.466304 - ], - [ - -73.454693, - 45.465786 - ], - [ - -73.454706, - 45.465778 - ], - [ - -73.45516, - 45.46545 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.455952, - 45.465079 - ], - [ - -73.456078, - 45.465023 - ], - [ - -73.456262, - 45.464907 - ], - [ - -73.456407, - 45.464824 - ], - [ - -73.456567, - 45.464772 - ], - [ - -73.456717, - 45.464744 - ], - [ - -73.456798, - 45.464739 - ], - [ - -73.456888, - 45.464733 - ], - [ - -73.457035, - 45.464719 - ], - [ - -73.45718, - 45.464674 - ], - [ - -73.457301, - 45.4646 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.458744, - 45.465452 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.4601, - 45.466432 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.460554, - 45.466805 - ], - [ - -73.460661, - 45.466886 - ], - [ - -73.461028, - 45.467148 - ], - [ - -73.46125, - 45.467305 - ], - [ - -73.461806, - 45.46771 - ], - [ - -73.461902, - 45.467781 - ], - [ - -73.461978, - 45.467836 - ], - [ - -73.462611, - 45.468268 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464452, - 45.468222 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465234, - 45.468288 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.46908, - 45.465912 - ], - [ - -73.469107, - 45.46587 - ] - ] - }, - "id": 143, - "properties": { - "id": "de3cf47e-6775-4ffa-b95b-caae23e0ce99", - "data": { - "gtfs": { - "shape_id": "60_2_A" - }, - "segments": [ - { - "distanceMeters": 388, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 1955, - "travelTimeSeconds": 221 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 61, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 82, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 304, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 424, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 344, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 343, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 102 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 82 - }, - { - "distanceMeters": 578, - "travelTimeSeconds": 146 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10965, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7973.128099927979, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.77, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 6.09, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.77 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "71f7bbc9-363a-40ba-86f7-7f9ec638da55", - "f20e2154-4487-4d25-8e73-57adbf7414bd", - "ff0214aa-5a67-4237-87c2-863aa17e8087", - "6765611d-305b-41e3-b519-b65e608494ba", - "b20c17a3-277e-418e-90be-8f8d32918ba9", - "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", - "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", - "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", - "00ed067b-7627-492d-ac0f-5d03bd3b185c", - "dc630e4d-102e-48b9-8b4a-920cafc01d4a", - "d2cca46c-df28-490b-b5de-9bc99956bc15", - "aab8672e-86c9-4a43-9806-f5135dc02b4e", - "50ca3159-13cc-4149-b07f-8267a31166e3", - "590769f9-bd2c-482c-8bd5-e3724936b683", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "78262195-7c3a-4ed5-81d8-a33c906e3099", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", - "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", - "8131cbf3-211d-4b69-adcb-9af688489a49", - "e865e27f-7453-42b2-9745-a8e5425a0276", - "0e293c4f-51c2-4ecd-9469-442389cb7915", - "71881b96-39d5-48ea-9242-5e05ded39cda", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "46c30d80-c93e-497b-a096-3a7c13e3723f", - "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", - "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "4fc83229-a15e-48e1-aa4f-fae0073dacf9", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "41820b50-a095-40c0-8d54-449e5a8d8c41", - "segments": [ - 0, - 9, - 51, - 57, - 64, - 72, - 75, - 80, - 83, - 88, - 100, - 109, - 111, - 113, - 118, - 121, - 124, - 127, - 136, - 143, - 148, - 150, - 160, - 169, - 173, - 181, - 187, - 192, - 196, - 201, - 208, - 215, - 222, - 240, - 242, - 249, - 265 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 143, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.385045, - 45.506579 - ], - [ - -73.384797, - 45.506518 - ], - [ - -73.383777, - 45.506274 - ], - [ - -73.382498, - 45.505967 - ], - [ - -73.382363, - 45.505931 - ], - [ - -73.382185, - 45.50589 - ], - [ - -73.382118, - 45.506021 - ], - [ - -73.381988, - 45.506301 - ], - [ - -73.381841, - 45.50662 - ], - [ - -73.38158, - 45.507187 - ], - [ - -73.381335, - 45.507721 - ], - [ - -73.38128, - 45.507806 - ], - [ - -73.380619, - 45.508917 - ], - [ - -73.380471, - 45.509177 - ], - [ - -73.380338, - 45.509474 - ], - [ - -73.380312, - 45.5096 - ], - [ - -73.380265, - 45.50983 - ], - [ - -73.380243, - 45.510001 - ], - [ - -73.380445, - 45.509992 - ], - [ - -73.380791, - 45.509943 - ], - [ - -73.380949, - 45.509965 - ], - [ - -73.380985, - 45.509971 - ], - [ - -73.382527, - 45.510205 - ], - [ - -73.382962, - 45.510282 - ], - [ - -73.383372, - 45.510346 - ], - [ - -73.383559, - 45.510373 - ], - [ - -73.383894, - 45.510396 - ], - [ - -73.384418, - 45.510414 - ], - [ - -73.384628, - 45.51041 - ], - [ - -73.38478, - 45.510388 - ], - [ - -73.384919, - 45.510388 - ], - [ - -73.385295, - 45.510379 - ], - [ - -73.385917, - 45.510362 - ], - [ - -73.386235, - 45.510353 - ], - [ - -73.387775, - 45.510287 - ], - [ - -73.388662, - 45.510288 - ], - [ - -73.38988, - 45.510258 - ], - [ - -73.39086, - 45.510227 - ], - [ - -73.391524, - 45.510196 - ], - [ - -73.392204, - 45.510161 - ], - [ - -73.392652, - 45.510134 - ], - [ - -73.393167, - 45.510108 - ], - [ - -73.393621, - 45.510086 - ], - [ - -73.393726, - 45.510072 - ], - [ - -73.393813, - 45.510063 - ], - [ - -73.394181, - 45.510028 - ], - [ - -73.394199, - 45.510028 - ], - [ - -73.395527, - 45.509872 - ], - [ - -73.399448, - 45.509601 - ], - [ - -73.399404, - 45.509279 - ], - [ - -73.399352, - 45.508899 - ], - [ - -73.399308, - 45.508566 - ], - [ - -73.399294, - 45.508462 - ], - [ - -73.399228, - 45.507945 - ], - [ - -73.399213, - 45.507801 - ], - [ - -73.399133, - 45.507198 - ], - [ - -73.399108, - 45.507031 - ], - [ - -73.39911, - 45.50701 - ], - [ - -73.399117, - 45.50695 - ], - [ - -73.39914, - 45.506797 - ], - [ - -73.399188, - 45.506676 - ], - [ - -73.399379, - 45.50637 - ], - [ - -73.399802, - 45.506078 - ], - [ - -73.399985, - 45.50597 - ], - [ - -73.400037, - 45.505943 - ], - [ - -73.400152, - 45.505885 - ], - [ - -73.400052, - 45.505795 - ], - [ - -73.399949, - 45.505664 - ], - [ - -73.399886, - 45.505552 - ], - [ - -73.39982, - 45.505426 - ], - [ - -73.399787, - 45.505322 - ], - [ - -73.39976, - 45.505156 - ], - [ - -73.399735, - 45.504791 - ], - [ - -73.399729, - 45.504706 - ], - [ - -73.399657, - 45.504175 - ], - [ - -73.399562, - 45.503503 - ], - [ - -73.399542, - 45.50336 - ], - [ - -73.399508, - 45.503131 - ], - [ - -73.399441, - 45.502676 - ], - [ - -73.399417, - 45.50246 - ], - [ - -73.399401, - 45.502342 - ], - [ - -73.399355, - 45.501992 - ], - [ - -73.399825, - 45.501965 - ], - [ - -73.400835, - 45.501906 - ], - [ - -73.40102, - 45.501895 - ], - [ - -73.402013, - 45.501846 - ], - [ - -73.402508, - 45.501802 - ], - [ - -73.40281, - 45.501766 - ], - [ - -73.402812, - 45.501766 - ], - [ - -73.402978, - 45.501726 - ], - [ - -73.403257, - 45.501667 - ], - [ - -73.403564, - 45.501582 - ], - [ - -73.4038, - 45.50151 - ], - [ - -73.404012, - 45.501416 - ], - [ - -73.404181, - 45.501344 - ], - [ - -73.404368, - 45.50125 - ], - [ - -73.404541, - 45.501151 - ], - [ - -73.404768, - 45.501003 - ], - [ - -73.405014, - 45.500818 - ], - [ - -73.405183, - 45.500652 - ], - [ - -73.405198, - 45.500637 - ], - [ - -73.40521, - 45.500625 - ], - [ - -73.405385, - 45.500423 - ], - [ - -73.405524, - 45.500243 - ], - [ - -73.405638, - 45.500032 - ], - [ - -73.405906, - 45.499487 - ], - [ - -73.406057, - 45.499182 - ], - [ - -73.40631, - 45.498674 - ], - [ - -73.406337, - 45.498619 - ], - [ - -73.406465, - 45.498427 - ], - [ - -73.406574, - 45.498264 - ], - [ - -73.406807, - 45.497934 - ], - [ - -73.407382, - 45.497122 - ], - [ - -73.407638, - 45.49676 - ], - [ - -73.407675, - 45.496708 - ], - [ - -73.407892, - 45.496394 - ], - [ - -73.408205, - 45.495957 - ], - [ - -73.408715, - 45.495247 - ], - [ - -73.408766, - 45.495167 - ], - [ - -73.408851, - 45.495036 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.409265, - 45.494524 - ], - [ - -73.409537, - 45.494129 - ], - [ - -73.409872, - 45.493642 - ], - [ - -73.411356, - 45.491552 - ], - [ - -73.41144, - 45.491434 - ], - [ - -73.412048, - 45.490575 - ], - [ - -73.413086, - 45.489106 - ], - [ - -73.41317, - 45.488987 - ], - [ - -73.413246, - 45.48888 - ], - [ - -73.414235, - 45.487508 - ], - [ - -73.414543, - 45.487058 - ], - [ - -73.414879, - 45.486604 - ], - [ - -73.415045, - 45.486384 - ], - [ - -73.415216, - 45.486168 - ], - [ - -73.41547, - 45.485876 - ], - [ - -73.415606, - 45.485736 - ], - [ - -73.415653, - 45.485687 - ], - [ - -73.415881, - 45.485467 - ], - [ - -73.415979, - 45.485368 - ], - [ - -73.416171, - 45.485201 - ], - [ - -73.416634, - 45.484828 - ], - [ - -73.417619, - 45.484091 - ], - [ - -73.417781, - 45.483972 - ], - [ - -73.418029, - 45.48379 - ], - [ - -73.419479, - 45.482708 - ], - [ - -73.420488, - 45.481958 - ], - [ - -73.420745, - 45.481758 - ], - [ - -73.421017, - 45.481557 - ], - [ - -73.421135, - 45.481471 - ], - [ - -73.423401, - 45.479801 - ], - [ - -73.423539, - 45.479699 - ], - [ - -73.42384, - 45.47947 - ], - [ - -73.424374, - 45.479093 - ], - [ - -73.424606, - 45.47894 - ], - [ - -73.42499, - 45.478702 - ], - [ - -73.425384, - 45.478481 - ], - [ - -73.425755, - 45.478293 - ], - [ - -73.426224, - 45.478077 - ], - [ - -73.426575, - 45.477924 - ], - [ - -73.426861, - 45.477816 - ], - [ - -73.427064, - 45.47774 - ], - [ - -73.427293, - 45.477659 - ], - [ - -73.427592, - 45.477565 - ], - [ - -73.427919, - 45.477471 - ], - [ - -73.428417, - 45.477332 - ], - [ - -73.430191, - 45.476874 - ], - [ - -73.430341, - 45.476838 - ], - [ - -73.430884, - 45.476699 - ], - [ - -73.430954, - 45.476681 - ], - [ - -73.431616, - 45.47651 - ], - [ - -73.432188, - 45.476362 - ], - [ - -73.434429, - 45.475783 - ], - [ - -73.435074, - 45.475611 - ], - [ - -73.435306, - 45.475549 - ], - [ - -73.435634, - 45.475469 - ], - [ - -73.436518, - 45.475235 - ], - [ - -73.437045, - 45.475069 - ], - [ - -73.437596, - 45.47488 - ], - [ - -73.437872, - 45.474768 - ], - [ - -73.438084, - 45.474678 - ], - [ - -73.438174, - 45.474636 - ], - [ - -73.43841, - 45.474525 - ], - [ - -73.438836, - 45.474314 - ], - [ - -73.43909, - 45.474175 - ], - [ - -73.440044, - 45.473644 - ], - [ - -73.440381, - 45.473457 - ], - [ - -73.440504, - 45.473389 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.440904, - 45.473168 - ], - [ - -73.441015, - 45.473108 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.442499, - 45.472062 - ], - [ - -73.442653, - 45.471954 - ], - [ - -73.444466, - 45.470668 - ], - [ - -73.444558, - 45.470603 - ], - [ - -73.444669, - 45.470524 - ], - [ - -73.445328, - 45.470057 - ], - [ - -73.445338, - 45.470052 - ], - [ - -73.445622, - 45.469854 - ], - [ - -73.446091, - 45.469543 - ], - [ - -73.446353, - 45.469369 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.447066, - 45.468996 - ], - [ - -73.4474, - 45.468829 - ], - [ - -73.447822, - 45.468645 - ], - [ - -73.448427, - 45.468407 - ], - [ - -73.449383, - 45.468079 - ], - [ - -73.44971, - 45.467968 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450233, - 45.467787 - ], - [ - -73.451014, - 45.467517 - ], - [ - -73.451685, - 45.467271 - ], - [ - -73.451729, - 45.467255 - ], - [ - -73.451774, - 45.467238 - ], - [ - -73.452515, - 45.466982 - ], - [ - -73.452657, - 45.466933 - ], - [ - -73.453014, - 45.466803 - ], - [ - -73.45314, - 45.466749 - ], - [ - -73.453548, - 45.466537 - ], - [ - -73.453946, - 45.466304 - ], - [ - -73.45468, - 45.465796 - ], - [ - -73.454693, - 45.465786 - ], - [ - -73.45516, - 45.46545 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.455952, - 45.465079 - ], - [ - -73.456078, - 45.465023 - ], - [ - -73.456262, - 45.464907 - ], - [ - -73.456407, - 45.464824 - ], - [ - -73.456567, - 45.464772 - ], - [ - -73.456717, - 45.464744 - ], - [ - -73.456888, - 45.464733 - ], - [ - -73.457035, - 45.464719 - ], - [ - -73.45718, - 45.464674 - ], - [ - -73.457301, - 45.4646 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.457995, - 45.464902 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.458717, - 45.465433 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.460073, - 45.466412 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.460554, - 45.466805 - ], - [ - -73.460661, - 45.466886 - ], - [ - -73.461028, - 45.467148 - ], - [ - -73.46125, - 45.467305 - ], - [ - -73.461806, - 45.46771 - ], - [ - -73.461874, - 45.46776 - ], - [ - -73.461978, - 45.467836 - ], - [ - -73.462611, - 45.468268 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.464665, - 45.468237 - ], - [ - -73.465193, - 45.468284 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.468602, - 45.466372 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469041, - 45.466263 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469319, - 45.467991 - ], - [ - -73.469043, - 45.467983 - ], - [ - -73.468598, - 45.467969 - ], - [ - -73.468434, - 45.467978 - ], - [ - -73.467926, - 45.468045 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.46758, - 45.467757 - ], - [ - -73.467357, - 45.467296 - ], - [ - -73.467335, - 45.467098 - ], - [ - -73.467287, - 45.466921 - ], - [ - -73.46724, - 45.46679 - ], - [ - -73.467201, - 45.466621 - ], - [ - -73.467171, - 45.466457 - ], - [ - -73.467168, - 45.466361 - ], - [ - -73.467171, - 45.466266 - ], - [ - -73.46719, - 45.46616 - ], - [ - -73.467233, - 45.466051 - ], - [ - -73.467286, - 45.465947 - ], - [ - -73.467286, - 45.465946 - ], - [ - -73.467347, - 45.465852 - ], - [ - -73.46743, - 45.465768 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467565, - 45.465647 - ], - [ - -73.467708, - 45.465556 - ], - [ - -73.467899, - 45.465442 - ], - [ - -73.46805, - 45.465387 - ], - [ - -73.468287, - 45.465321 - ], - [ - -73.468514, - 45.465288 - ], - [ - -73.468859, - 45.465256 - ], - [ - -73.469207, - 45.465245 - ], - [ - -73.471824, - 45.46534 - ], - [ - -73.47278, - 45.465351 - ], - [ - -73.473923, - 45.465346 - ], - [ - -73.474792, - 45.465284 - ], - [ - -73.476448, - 45.465339 - ], - [ - -73.478069, - 45.465419 - ], - [ - -73.47931, - 45.465481 - ], - [ - -73.480681, - 45.465584 - ], - [ - -73.481658, - 45.465665 - ], - [ - -73.483804, - 45.465854 - ], - [ - -73.485886, - 45.466123 - ], - [ - -73.488038, - 45.466444 - ], - [ - -73.489088, - 45.466602 - ], - [ - -73.491585, - 45.46694 - ], - [ - -73.494707, - 45.467307 - ], - [ - -73.494917, - 45.467332 - ], - [ - -73.494999, - 45.467342 - ], - [ - -73.497318, - 45.467635 - ], - [ - -73.501976, - 45.468162 - ], - [ - -73.50546, - 45.468524 - ], - [ - -73.508994, - 45.468874 - ], - [ - -73.510795, - 45.469064 - ], - [ - -73.516615, - 45.469606 - ], - [ - -73.520513, - 45.469901 - ], - [ - -73.524263, - 45.470138 - ], - [ - -73.526895, - 45.470234 - ], - [ - -73.536203, - 45.470502 - ], - [ - -73.537479, - 45.470611 - ], - [ - -73.540035, - 45.470737 - ], - [ - -73.540574, - 45.470754 - ], - [ - -73.541689, - 45.470806 - ], - [ - -73.54236, - 45.470938 - ], - [ - -73.542685, - 45.471019 - ], - [ - -73.543056, - 45.471172 - ], - [ - -73.543235, - 45.471297 - ], - [ - -73.543427, - 45.47153 - ], - [ - -73.543495, - 45.471781 - ], - [ - -73.543487, - 45.471977 - ], - [ - -73.543374, - 45.472246 - ], - [ - -73.543123, - 45.472648 - ], - [ - -73.543053, - 45.472745 - ], - [ - -73.543034, - 45.472772 - ], - [ - -73.543013, - 45.472801 - ], - [ - -73.542473, - 45.473549 - ], - [ - -73.542275, - 45.473832 - ], - [ - -73.542255, - 45.473861 - ], - [ - -73.542175, - 45.473976 - ], - [ - -73.542016, - 45.474229 - ], - [ - -73.541794, - 45.474618 - ], - [ - -73.541458, - 45.475221 - ], - [ - -73.541094, - 45.47588 - ], - [ - -73.540722, - 45.476557 - ], - [ - -73.540393, - 45.477154 - ], - [ - -73.540141, - 45.477612 - ], - [ - -73.539989, - 45.477937 - ], - [ - -73.539912, - 45.478117 - ], - [ - -73.53962, - 45.478792 - ], - [ - -73.539453, - 45.479242 - ], - [ - -73.539011, - 45.480452 - ], - [ - -73.538771, - 45.481137 - ], - [ - -73.538372, - 45.4823 - ], - [ - -73.537796, - 45.483909 - ], - [ - -73.537682, - 45.484235 - ], - [ - -73.537533, - 45.484742 - ], - [ - -73.537501, - 45.485252 - ], - [ - -73.537565, - 45.485765 - ], - [ - -73.537725, - 45.486206 - ], - [ - -73.537953, - 45.486613 - ], - [ - -73.538211, - 45.486968 - ], - [ - -73.538564, - 45.487319 - ], - [ - -73.538991, - 45.48766 - ], - [ - -73.539413, - 45.487933 - ], - [ - -73.540409, - 45.488352 - ], - [ - -73.540999, - 45.488508 - ], - [ - -73.545779, - 45.489431 - ], - [ - -73.547415, - 45.489732 - ], - [ - -73.548107, - 45.48986 - ], - [ - -73.549549, - 45.490154 - ], - [ - -73.549968, - 45.490239 - ], - [ - -73.550646, - 45.490459 - ], - [ - -73.551261, - 45.490742 - ], - [ - -73.55163, - 45.490924 - ], - [ - -73.551996, - 45.491154 - ], - [ - -73.552466, - 45.491495 - ], - [ - -73.552812, - 45.491812 - ], - [ - -73.553225, - 45.492293 - ], - [ - -73.553459, - 45.492647 - ], - [ - -73.553701, - 45.493121 - ], - [ - -73.553714, - 45.493155 - ], - [ - -73.554005, - 45.493935 - ], - [ - -73.554229, - 45.494495 - ], - [ - -73.55441, - 45.494962 - ], - [ - -73.554709, - 45.495574 - ], - [ - -73.554963, - 45.495825 - ], - [ - -73.555225, - 45.496022 - ], - [ - -73.555665, - 45.496222 - ], - [ - -73.557268, - 45.496821 - ], - [ - -73.557934, - 45.497074 - ], - [ - -73.558511, - 45.497291 - ], - [ - -73.558754, - 45.497382 - ], - [ - -73.559665, - 45.497799 - ], - [ - -73.56055, - 45.498258 - ], - [ - -73.561247, - 45.498577 - ], - [ - -73.561574, - 45.498701 - ], - [ - -73.561917, - 45.498838 - ], - [ - -73.562165, - 45.49894 - ], - [ - -73.562545, - 45.499119 - ], - [ - -73.562571, - 45.499093 - ], - [ - -73.562654, - 45.499004 - ], - [ - -73.563341, - 45.498281 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.56431, - 45.497835 - ], - [ - -73.565142, - 45.498217 - ], - [ - -73.565601, - 45.498443 - ], - [ - -73.565748, - 45.49831 - ], - [ - -73.565849, - 45.498292 - ], - [ - -73.566051, - 45.498359 - ], - [ - -73.566361, - 45.498471 - ], - [ - -73.566492, - 45.498485 - ], - [ - -73.566611, - 45.498345 - ] - ] - }, - "id": 144, - "properties": { - "id": "cd2bcdae-2c3f-4989-a98b-9f57338e5dc9", - "data": { - "gtfs": { - "shape_id": "60_1_A" - }, - "segments": [ - { - "distanceMeters": 388, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 1955, - "travelTimeSeconds": 221 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 61, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 82, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 304, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 424, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 344, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 343, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 548, - "travelTimeSeconds": 101 - }, - { - "distanceMeters": 10798, - "travelTimeSeconds": 840 - }, - { - "distanceMeters": 830, - "travelTimeSeconds": 540 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 300, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 22558, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 14216.124465200928, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.52, - "travelTimeWithoutDwellTimesSeconds": 3000, - "operatingTimeWithLayoverTimeSeconds": 3300, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3000, - "operatingSpeedWithLayoverMetersPerSecond": 6.84, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.52 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "71f7bbc9-363a-40ba-86f7-7f9ec638da55", - "f20e2154-4487-4d25-8e73-57adbf7414bd", - "ff0214aa-5a67-4237-87c2-863aa17e8087", - "6765611d-305b-41e3-b519-b65e608494ba", - "b20c17a3-277e-418e-90be-8f8d32918ba9", - "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", - "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", - "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", - "00ed067b-7627-492d-ac0f-5d03bd3b185c", - "dc630e4d-102e-48b9-8b4a-920cafc01d4a", - "d2cca46c-df28-490b-b5de-9bc99956bc15", - "aab8672e-86c9-4a43-9806-f5135dc02b4e", - "50ca3159-13cc-4149-b07f-8267a31166e3", - "590769f9-bd2c-482c-8bd5-e3724936b683", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "78262195-7c3a-4ed5-81d8-a33c906e3099", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", - "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", - "8131cbf3-211d-4b69-adcb-9af688489a49", - "e865e27f-7453-42b2-9745-a8e5425a0276", - "0e293c4f-51c2-4ecd-9469-442389cb7915", - "71881b96-39d5-48ea-9242-5e05ded39cda", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "46c30d80-c93e-497b-a096-3a7c13e3723f", - "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", - "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "4fc83229-a15e-48e1-aa4f-fae0073dacf9", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "461a5d33-406e-481a-b773-6e450c48b670", - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" - ], - "stops": [], - "line_id": "41820b50-a095-40c0-8d54-449e5a8d8c41", - "segments": [ - 0, - 9, - 51, - 57, - 64, - 72, - 75, - 80, - 83, - 87, - 100, - 109, - 111, - 113, - 118, - 121, - 124, - 127, - 136, - 143, - 148, - 150, - 160, - 169, - 173, - 181, - 187, - 192, - 196, - 201, - 208, - 215, - 221, - 240, - 242, - 249, - 264, - 289, - 434 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 144, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469107, - 45.46587 - ], - [ - -73.469152, - 45.465801 - ], - [ - -73.469114, - 45.465711 - ], - [ - -73.469034, - 45.465669 - ], - [ - -73.468913, - 45.46567 - ], - [ - -73.468751, - 45.465752 - ], - [ - -73.468452, - 45.465865 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466568, - 45.466141 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465592, - 45.468211 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.46363, - 45.4683 - ], - [ - -73.463472, - 45.468395 - ], - [ - -73.463397, - 45.468431 - ], - [ - -73.463306, - 45.468449 - ], - [ - -73.463219, - 45.468458 - ], - [ - -73.463124, - 45.468449 - ], - [ - -73.463037, - 45.468413 - ], - [ - -73.462702, - 45.468201 - ], - [ - -73.462688, - 45.468192 - ], - [ - -73.462471, - 45.468057 - ], - [ - -73.462195, - 45.467872 - ], - [ - -73.462011, - 45.46774 - ], - [ - -73.461894, - 45.467656 - ], - [ - -73.461788, - 45.46758 - ], - [ - -73.46133, - 45.467251 - ], - [ - -73.461109, - 45.467094 - ], - [ - -73.460905, - 45.466945 - ], - [ - -73.460722, - 45.466815 - ], - [ - -73.460722, - 45.466814 - ], - [ - -73.460629, - 45.466751 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.458929, - 45.465587 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457079, - 45.464307 - ], - [ - -73.45658, - 45.463947 - ], - [ - -73.45655, - 45.463924 - ], - [ - -73.455675, - 45.463282 - ], - [ - -73.454797, - 45.462637 - ], - [ - -73.454278, - 45.462276 - ], - [ - -73.454092, - 45.462406 - ], - [ - -73.454017, - 45.462437 - ], - [ - -73.453888, - 45.462462 - ], - [ - -73.453729, - 45.462455 - ], - [ - -73.453553, - 45.462428 - ], - [ - -73.453343, - 45.462373 - ], - [ - -73.453161, - 45.462302 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.452835, - 45.462344 - ], - [ - -73.452819, - 45.462371 - ], - [ - -73.452775, - 45.462447 - ], - [ - -73.452703, - 45.4626 - ], - [ - -73.452686, - 45.462652 - ], - [ - -73.452663, - 45.462722 - ], - [ - -73.452634, - 45.462879 - ], - [ - -73.45263, - 45.463001 - ], - [ - -73.452662, - 45.463158 - ], - [ - -73.452721, - 45.463379 - ], - [ - -73.452802, - 45.463536 - ], - [ - -73.452912, - 45.463662 - ], - [ - -73.453261, - 45.463932 - ], - [ - -73.453531, - 45.46413 - ], - [ - -73.453617, - 45.464193 - ], - [ - -73.453971, - 45.464449 - ], - [ - -73.45432, - 45.464702 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.454657, - 45.465622 - ], - [ - -73.45456, - 45.465692 - ], - [ - -73.453819, - 45.466205 - ], - [ - -73.453432, - 45.466434 - ], - [ - -73.453035, - 45.466641 - ], - [ - -73.452922, - 45.46669 - ], - [ - -73.452777, - 45.466753 - ], - [ - -73.452589, - 45.466834 - ], - [ - -73.451705, - 45.467139 - ], - [ - -73.451627, - 45.467166 - ], - [ - -73.45158, - 45.467183 - ], - [ - -73.451006, - 45.467381 - ], - [ - -73.450937, - 45.467405 - ], - [ - -73.450156, - 45.467679 - ], - [ - -73.449888, - 45.467769 - ], - [ - -73.449338, - 45.467948 - ], - [ - -73.44837, - 45.46829 - ], - [ - -73.447748, - 45.468524 - ], - [ - -73.447289, - 45.468721 - ], - [ - -73.446429, - 45.469167 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445905, - 45.469485 - ], - [ - -73.445671, - 45.469643 - ], - [ - -73.445475, - 45.469778 - ], - [ - -73.445396, - 45.469832 - ], - [ - -73.445298, - 45.469899 - ], - [ - -73.444328, - 45.470583 - ], - [ - -73.444072, - 45.470764 - ], - [ - -73.442654, - 45.471764 - ], - [ - -73.442644, - 45.471771 - ], - [ - -73.442519, - 45.471859 - ], - [ - -73.441942, - 45.47227 - ], - [ - -73.441018, - 45.472928 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.440777, - 45.473082 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.439918, - 45.473559 - ], - [ - -73.438731, - 45.47422 - ], - [ - -73.438304, - 45.474435 - ], - [ - -73.438265, - 45.474453 - ], - [ - -73.437984, - 45.474579 - ], - [ - -73.437774, - 45.474669 - ], - [ - -73.437493, - 45.474781 - ], - [ - -73.436979, - 45.47497 - ], - [ - -73.436441, - 45.475136 - ], - [ - -73.43565, - 45.475338 - ], - [ - -73.435354, - 45.475414 - ], - [ - -73.435246, - 45.475441 - ], - [ - -73.434371, - 45.475675 - ], - [ - -73.43213, - 45.476249 - ], - [ - -73.430984, - 45.476543 - ], - [ - -73.430437, - 45.476683 - ], - [ - -73.430219, - 45.476739 - ], - [ - -73.43007, - 45.476775 - ], - [ - -73.429697, - 45.476873 - ], - [ - -73.429193, - 45.477005 - ], - [ - -73.428358, - 45.477224 - ], - [ - -73.427857, - 45.477363 - ], - [ - -73.427526, - 45.477457 - ], - [ - -73.427221, - 45.477556 - ], - [ - -73.427144, - 45.477583 - ], - [ - -73.426989, - 45.477637 - ], - [ - -73.426493, - 45.477825 - ], - [ - -73.426135, - 45.477978 - ], - [ - -73.425662, - 45.478198 - ], - [ - -73.425284, - 45.478387 - ], - [ - -73.424884, - 45.478612 - ], - [ - -73.424494, - 45.47885 - ], - [ - -73.424258, - 45.479012 - ], - [ - -73.423721, - 45.479389 - ], - [ - -73.423507, - 45.479553 - ], - [ - -73.423421, - 45.479618 - ], - [ - -73.421124, - 45.481311 - ], - [ - -73.421017, - 45.481389 - ], - [ - -73.419775, - 45.482315 - ], - [ - -73.419122, - 45.482809 - ], - [ - -73.418378, - 45.483361 - ], - [ - -73.417919, - 45.483709 - ], - [ - -73.417514, - 45.484019 - ], - [ - -73.417494, - 45.484034 - ], - [ - -73.416526, - 45.484761 - ], - [ - -73.416059, - 45.485134 - ], - [ - -73.415863, - 45.485305 - ], - [ - -73.415534, - 45.485624 - ], - [ - -73.415528, - 45.48563 - ], - [ - -73.415347, - 45.485822 - ], - [ - -73.41509, - 45.486114 - ], - [ - -73.414917, - 45.486334 - ], - [ - -73.41475, - 45.486555 - ], - [ - -73.414412, - 45.487013 - ], - [ - -73.41409, - 45.487458 - ], - [ - -73.413179, - 45.48875 - ], - [ - -73.413119, - 45.488834 - ], - [ - -73.413049, - 45.488947 - ], - [ - -73.411857, - 45.490612 - ], - [ - -73.411377, - 45.491281 - ], - [ - -73.4113, - 45.491389 - ], - [ - -73.410804, - 45.492083 - ], - [ - -73.410177, - 45.492961 - ], - [ - -73.409729, - 45.493588 - ], - [ - -73.409634, - 45.493716 - ], - [ - -73.409271, - 45.494208 - ], - [ - -73.409075, - 45.494472 - ], - [ - -73.409048, - 45.494509 - ], - [ - -73.408825, - 45.494811 - ], - [ - -73.408748, - 45.494972 - ], - [ - -73.408585, - 45.495202 - ], - [ - -73.408395, - 45.495466 - ], - [ - -73.408074, - 45.495912 - ], - [ - -73.407847, - 45.49623 - ], - [ - -73.407762, - 45.496348 - ], - [ - -73.407636, - 45.496526 - ], - [ - -73.407544, - 45.496654 - ], - [ - -73.40725, - 45.497068 - ], - [ - -73.406795, - 45.497708 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.406288, - 45.49843 - ], - [ - -73.406193, - 45.498579 - ], - [ - -73.406192, - 45.498581 - ], - [ - -73.406163, - 45.49864 - ], - [ - -73.405911, - 45.499145 - ], - [ - -73.405493, - 45.499995 - ], - [ - -73.405383, - 45.500198 - ], - [ - -73.405251, - 45.500369 - ], - [ - -73.405082, - 45.500567 - ], - [ - -73.405029, - 45.500617 - ], - [ - -73.404894, - 45.500746 - ], - [ - -73.404658, - 45.500926 - ], - [ - -73.404439, - 45.50107 - ], - [ - -73.404275, - 45.501164 - ], - [ - -73.404095, - 45.501254 - ], - [ - -73.403728, - 45.501411 - ], - [ - -73.403505, - 45.501483 - ], - [ - -73.40323, - 45.501557 - ], - [ - -73.403207, - 45.501564 - ], - [ - -73.402929, - 45.501627 - ], - [ - -73.402747, - 45.501658 - ], - [ - -73.402456, - 45.501689 - ], - [ - -73.401996, - 45.50172 - ], - [ - -73.401158, - 45.501773 - ], - [ - -73.401007, - 45.501782 - ], - [ - -73.399341, - 45.501884 - ], - [ - -73.399355, - 45.501992 - ], - [ - -73.399389, - 45.50225 - ], - [ - -73.399401, - 45.502338 - ], - [ - -73.399417, - 45.50246 - ], - [ - -73.399441, - 45.502676 - ], - [ - -73.399508, - 45.503131 - ], - [ - -73.399524, - 45.503241 - ], - [ - -73.399542, - 45.50336 - ], - [ - -73.399657, - 45.504175 - ], - [ - -73.399715, - 45.5046 - ], - [ - -73.399729, - 45.504706 - ], - [ - -73.39976, - 45.505156 - ], - [ - -73.399787, - 45.505322 - ], - [ - -73.39982, - 45.505426 - ], - [ - -73.399886, - 45.505552 - ], - [ - -73.399949, - 45.505664 - ], - [ - -73.400043, - 45.505783 - ], - [ - -73.400052, - 45.505795 - ], - [ - -73.400152, - 45.505885 - ], - [ - -73.399985, - 45.50597 - ], - [ - -73.399802, - 45.506078 - ], - [ - -73.399379, - 45.50637 - ], - [ - -73.399188, - 45.506676 - ], - [ - -73.39914, - 45.506797 - ], - [ - -73.399138, - 45.506811 - ], - [ - -73.399117, - 45.50695 - ], - [ - -73.399108, - 45.507031 - ], - [ - -73.399133, - 45.507198 - ], - [ - -73.399213, - 45.507801 - ], - [ - -73.399228, - 45.507945 - ], - [ - -73.399281, - 45.508358 - ], - [ - -73.399294, - 45.508462 - ], - [ - -73.399352, - 45.508899 - ], - [ - -73.399432, - 45.509485 - ], - [ - -73.399448, - 45.509601 - ], - [ - -73.399031, - 45.509629 - ], - [ - -73.395527, - 45.509872 - ], - [ - -73.394199, - 45.510028 - ], - [ - -73.394181, - 45.510028 - ], - [ - -73.393813, - 45.510063 - ], - [ - -73.393726, - 45.510072 - ], - [ - -73.393621, - 45.510086 - ], - [ - -73.393167, - 45.510108 - ], - [ - -73.392652, - 45.510134 - ], - [ - -73.392204, - 45.510161 - ], - [ - -73.391524, - 45.510196 - ], - [ - -73.39086, - 45.510227 - ], - [ - -73.38988, - 45.510258 - ], - [ - -73.388662, - 45.510288 - ], - [ - -73.387775, - 45.510287 - ], - [ - -73.386235, - 45.510353 - ], - [ - -73.385917, - 45.510362 - ], - [ - -73.385295, - 45.510379 - ], - [ - -73.384919, - 45.510388 - ], - [ - -73.38478, - 45.510388 - ], - [ - -73.384446, - 45.510311 - ], - [ - -73.383925, - 45.510283 - ], - [ - -73.383581, - 45.510269 - ], - [ - -73.383401, - 45.510242 - ], - [ - -73.382986, - 45.510188 - ], - [ - -73.382978, - 45.510188 - ], - [ - -73.382559, - 45.510111 - ], - [ - -73.381159, - 45.509898 - ], - [ - -73.380887, - 45.509763 - ], - [ - -73.38076, - 45.509682 - ], - [ - -73.380689, - 45.509601 - ], - [ - -73.380643, - 45.509506 - ], - [ - -73.380639, - 45.509412 - ], - [ - -73.380633, - 45.509322 - ], - [ - -73.380641, - 45.509218 - ], - [ - -73.380743, - 45.509009 - ], - [ - -73.380768, - 45.508957 - ], - [ - -73.38135, - 45.507922 - ], - [ - -73.381389, - 45.507851 - ], - [ - -73.381468, - 45.507752 - ], - [ - -73.381562, - 45.507572 - ], - [ - -73.381667, - 45.507356 - ], - [ - -73.381733, - 45.507226 - ], - [ - -73.381816, - 45.507051 - ], - [ - -73.381935, - 45.506785 - ], - [ - -73.382054, - 45.506552 - ], - [ - -73.382181, - 45.506291 - ], - [ - -73.382207, - 45.50624 - ], - [ - -73.382294, - 45.50607 - ], - [ - -73.382297, - 45.506061 - ], - [ - -73.382427, - 45.506097 - ], - [ - -73.384621, - 45.506625 - ] - ] - }, - "id": 145, - "properties": { - "id": "ea2a6fb9-0518-4dec-b40d-e7c6c83675cb", - "data": { - "gtfs": { - "shape_id": "60_2_R" - }, - "segments": [ - { - "distanceMeters": 673, - "travelTimeSeconds": 99 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 433, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 415, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 1697, - "travelTimeSeconds": 279 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 35 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11622, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7973.128099927979, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.45, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 6.68, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.45 - }, - "mode": "bus", - "name": "Promenades St-Bruno", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "b6dfeeab-9981-4db8-9a90-2e14691bf516", - "bd9b4c12-08ed-4715-ae67-eb179ed7f974", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "ff779c9a-cd83-463a-8d0c-a93f3584a187", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", - "c8919560-2bb2-4063-8184-8e6c296badbe", - "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", - "0e293c4f-51c2-4ecd-9469-442389cb7915", - "e865e27f-7453-42b2-9745-a8e5425a0276", - "f7218298-f862-4f68-aabe-7a0d51011bc1", - "7f82f5fb-e61e-43a9-957c-0c400fd3ecbd", - "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "78262195-7c3a-4ed5-81d8-a33c906e3099", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "d1cd707b-8ed5-4d1d-b1cb-7633cade451b", - "590769f9-bd2c-482c-8bd5-e3724936b683", - "3e90658d-8898-49d9-be57-5b29936d4a9e", - "aab8672e-86c9-4a43-9806-f5135dc02b4e", - "7414010b-fe1f-4d77-8cdd-701cc437e73a", - "dc630e4d-102e-48b9-8b4a-920cafc01d4a", - "00ed067b-7627-492d-ac0f-5d03bd3b185c", - "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", - "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", - "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", - "b20c17a3-277e-418e-90be-8f8d32918ba9", - "6765611d-305b-41e3-b519-b65e608494ba", - "ff0214aa-5a67-4237-87c2-863aa17e8087", - "c22b0880-b3ca-4797-aa47-0cda85146514", - "a6d38dbd-ef0c-4533-9d2c-7149d1941078", - "c4c03f6a-b2dc-4fb8-87cd-df1a4417beae", - "71f7bbc9-363a-40ba-86f7-7f9ec638da55" - ], - "stops": [], - "line_id": "41820b50-a095-40c0-8d54-449e5a8d8c41", - "segments": [ - 0, - 31, - 52, - 58, - 62, - 68, - 85, - 94, - 99, - 105, - 110, - 118, - 126, - 127, - 131, - 138, - 145, - 150, - 159, - 169, - 171, - 178, - 183, - 190, - 194, - 201, - 206, - 210, - 213, - 217, - 224, - 232, - 238, - 243, - 247, - 250, - 257, - 265, - 271, - 274, - 313, - 323 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 145, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.566611, - 45.498345 - ], - [ - -73.566738, - 45.498195 - ], - [ - -73.566628, - 45.49808 - ], - [ - -73.566306, - 45.497931 - ], - [ - -73.566253, - 45.497841 - ], - [ - -73.56638, - 45.497699 - ], - [ - -73.566016, - 45.497523 - ], - [ - -73.564691, - 45.496892 - ], - [ - -73.563974, - 45.496566 - ], - [ - -73.562701, - 45.495919 - ], - [ - -73.562651, - 45.496018 - ], - [ - -73.562646, - 45.496027 - ], - [ - -73.562481, - 45.496317 - ], - [ - -73.562367, - 45.496479 - ], - [ - -73.562274, - 45.496658 - ], - [ - -73.562038, - 45.497108 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.561446, - 45.497988 - ], - [ - -73.561033, - 45.497765 - ], - [ - -73.560139, - 45.497347 - ], - [ - -73.559235, - 45.49696 - ], - [ - -73.55917, - 45.496938 - ], - [ - -73.558356, - 45.496631 - ], - [ - -73.558149, - 45.496557 - ], - [ - -73.557604, - 45.496364 - ], - [ - -73.556782, - 45.49606 - ], - [ - -73.555745, - 45.495673 - ], - [ - -73.555351, - 45.495512 - ], - [ - -73.555133, - 45.495401 - ], - [ - -73.554916, - 45.495262 - ], - [ - -73.554768, - 45.495125 - ], - [ - -73.55465, - 45.494994 - ], - [ - -73.553944, - 45.493258 - ], - [ - -73.553818, - 45.492971 - ], - [ - -73.553465, - 45.492338 - ], - [ - -73.552977, - 45.491759 - ], - [ - -73.552502, - 45.491344 - ], - [ - -73.551956, - 45.490962 - ], - [ - -73.551651, - 45.490791 - ], - [ - -73.551074, - 45.490513 - ], - [ - -73.550682, - 45.490367 - ], - [ - -73.550312, - 45.490228 - ], - [ - -73.54956, - 45.490034 - ], - [ - -73.548355, - 45.489798 - ], - [ - -73.542648, - 45.488704 - ], - [ - -73.541878, - 45.488554 - ], - [ - -73.541083, - 45.488397 - ], - [ - -73.540636, - 45.488282 - ], - [ - -73.540145, - 45.488119 - ], - [ - -73.539582, - 45.48786 - ], - [ - -73.539239, - 45.487663 - ], - [ - -73.538946, - 45.487462 - ], - [ - -73.538619, - 45.487192 - ], - [ - -73.538548, - 45.487117 - ], - [ - -73.538304, - 45.486863 - ], - [ - -73.538089, - 45.486564 - ], - [ - -73.537862, - 45.486139 - ], - [ - -73.537796, - 45.485958 - ], - [ - -73.537731, - 45.485785 - ], - [ - -73.53767, - 45.485461 - ], - [ - -73.537646, - 45.485264 - ], - [ - -73.537653, - 45.484914 - ], - [ - -73.537707, - 45.484604 - ], - [ - -73.537881, - 45.484168 - ], - [ - -73.537968, - 45.483893 - ], - [ - -73.538058, - 45.483623 - ], - [ - -73.539557, - 45.479354 - ], - [ - -73.53982, - 45.478652 - ], - [ - -73.540179, - 45.47782 - ], - [ - -73.540481, - 45.477177 - ], - [ - -73.540578, - 45.477027 - ], - [ - -73.540928, - 45.476409 - ], - [ - -73.5413, - 45.475732 - ], - [ - -73.541747, - 45.474937 - ], - [ - -73.542136, - 45.474264 - ], - [ - -73.542539, - 45.47363 - ], - [ - -73.543159, - 45.472786 - ], - [ - -73.543162, - 45.472781 - ], - [ - -73.5432, - 45.472729 - ], - [ - -73.543381, - 45.472482 - ], - [ - -73.543908, - 45.471834 - ], - [ - -73.544604, - 45.471016 - ], - [ - -73.54479, - 45.470824 - ], - [ - -73.544929, - 45.470679 - ], - [ - -73.54509, - 45.470477 - ], - [ - -73.545159, - 45.470391 - ], - [ - -73.545162, - 45.470289 - ], - [ - -73.54518, - 45.470102 - ], - [ - -73.54513, - 45.469912 - ], - [ - -73.545032, - 45.469762 - ], - [ - -73.544829, - 45.469589 - ], - [ - -73.544396, - 45.469456 - ], - [ - -73.544223, - 45.469408 - ], - [ - -73.544, - 45.469414 - ], - [ - -73.54385, - 45.469436 - ], - [ - -73.543665, - 45.469485 - ], - [ - -73.543125, - 45.469658 - ], - [ - -73.542795, - 45.46978 - ], - [ - -73.542335, - 45.469915 - ], - [ - -73.542042, - 45.469974 - ], - [ - -73.541634, - 45.469988 - ], - [ - -73.538583, - 45.470121 - ], - [ - -73.536645, - 45.47012 - ], - [ - -73.534843, - 45.470106 - ], - [ - -73.531663, - 45.470044 - ], - [ - -73.528901, - 45.469979 - ], - [ - -73.525636, - 45.469864 - ], - [ - -73.520215, - 45.469565 - ], - [ - -73.516228, - 45.469261 - ], - [ - -73.50737, - 45.468395 - ], - [ - -73.501604, - 45.467786 - ], - [ - -73.499262, - 45.467514 - ], - [ - -73.493921, - 45.466881 - ], - [ - -73.491932, - 45.466645 - ], - [ - -73.489852, - 45.466348 - ], - [ - -73.489119, - 45.46624 - ], - [ - -73.489027, - 45.466226 - ], - [ - -73.486848, - 45.465931 - ], - [ - -73.485714, - 45.465782 - ], - [ - -73.482904, - 45.465439 - ], - [ - -73.482123, - 45.46537 - ], - [ - -73.479736, - 45.465191 - ], - [ - -73.47968, - 45.465187 - ], - [ - -73.478363, - 45.465119 - ], - [ - -73.477796, - 45.465089 - ], - [ - -73.475753, - 45.464994 - ], - [ - -73.474695, - 45.464942 - ], - [ - -73.474262, - 45.464921 - ], - [ - -73.474113, - 45.464916 - ], - [ - -73.473291, - 45.464882 - ], - [ - -73.472501, - 45.46485 - ], - [ - -73.471447, - 45.46476 - ], - [ - -73.469875, - 45.464616 - ], - [ - -73.469333, - 45.464554 - ], - [ - -73.46902, - 45.464515 - ], - [ - -73.468704, - 45.464452 - ], - [ - -73.468392, - 45.464367 - ], - [ - -73.468066, - 45.46424 - ], - [ - -73.467826, - 45.46409 - ], - [ - -73.467593, - 45.463944 - ], - [ - -73.467415, - 45.463833 - ], - [ - -73.467133, - 45.463667 - ], - [ - -73.466953, - 45.463591 - ], - [ - -73.466529, - 45.463529 - ], - [ - -73.466232, - 45.463594 - ], - [ - -73.466092, - 45.463623 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.468391, - 45.466363 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469044, - 45.466215 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466863, - 45.466735 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465538, - 45.468206 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.46363, - 45.4683 - ], - [ - -73.463472, - 45.468395 - ], - [ - -73.463397, - 45.468431 - ], - [ - -73.463306, - 45.468449 - ], - [ - -73.463219, - 45.468458 - ], - [ - -73.463124, - 45.468449 - ], - [ - -73.463037, - 45.468413 - ], - [ - -73.462702, - 45.468201 - ], - [ - -73.462471, - 45.468057 - ], - [ - -73.462195, - 45.467872 - ], - [ - -73.461982, - 45.467719 - ], - [ - -73.461894, - 45.467656 - ], - [ - -73.461788, - 45.46758 - ], - [ - -73.46133, - 45.467251 - ], - [ - -73.461109, - 45.467094 - ], - [ - -73.460905, - 45.466945 - ], - [ - -73.460722, - 45.466814 - ], - [ - -73.460693, - 45.466795 - ], - [ - -73.460629, - 45.466751 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.458902, - 45.465568 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457079, - 45.464307 - ], - [ - -73.456554, - 45.463927 - ], - [ - -73.45655, - 45.463924 - ], - [ - -73.455675, - 45.463282 - ], - [ - -73.454797, - 45.462637 - ], - [ - -73.454278, - 45.462276 - ], - [ - -73.454092, - 45.462406 - ], - [ - -73.454017, - 45.462437 - ], - [ - -73.453888, - 45.462462 - ], - [ - -73.453844, - 45.46246 - ], - [ - -73.453729, - 45.462455 - ], - [ - -73.453553, - 45.462428 - ], - [ - -73.453343, - 45.462373 - ], - [ - -73.453161, - 45.462302 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.452835, - 45.462344 - ], - [ - -73.452775, - 45.462447 - ], - [ - -73.452703, - 45.4626 - ], - [ - -73.452677, - 45.462677 - ], - [ - -73.452663, - 45.462722 - ], - [ - -73.452634, - 45.462879 - ], - [ - -73.45263, - 45.463001 - ], - [ - -73.452662, - 45.463158 - ], - [ - -73.452668, - 45.46318 - ], - [ - -73.452721, - 45.463379 - ], - [ - -73.452802, - 45.463536 - ], - [ - -73.452912, - 45.463662 - ], - [ - -73.453261, - 45.463932 - ], - [ - -73.453556, - 45.464148 - ], - [ - -73.453617, - 45.464193 - ], - [ - -73.453971, - 45.464449 - ], - [ - -73.45432, - 45.464702 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.454921, - 45.465432 - ], - [ - -73.454633, - 45.46564 - ], - [ - -73.45456, - 45.465692 - ], - [ - -73.453819, - 45.466205 - ], - [ - -73.453432, - 45.466434 - ], - [ - -73.453035, - 45.466641 - ], - [ - -73.452922, - 45.46669 - ], - [ - -73.452747, - 45.466765 - ], - [ - -73.452589, - 45.466834 - ], - [ - -73.451705, - 45.467139 - ], - [ - -73.451627, - 45.467166 - ], - [ - -73.45158, - 45.467183 - ], - [ - -73.450976, - 45.467391 - ], - [ - -73.450937, - 45.467405 - ], - [ - -73.450156, - 45.467679 - ], - [ - -73.449888, - 45.467769 - ], - [ - -73.449338, - 45.467948 - ], - [ - -73.44837, - 45.46829 - ], - [ - -73.447748, - 45.468524 - ], - [ - -73.447289, - 45.468721 - ], - [ - -73.446403, - 45.469181 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445905, - 45.469485 - ], - [ - -73.445671, - 45.469643 - ], - [ - -73.445475, - 45.469778 - ], - [ - -73.445396, - 45.469832 - ], - [ - -73.445298, - 45.469899 - ], - [ - -73.444328, - 45.470583 - ], - [ - -73.444049, - 45.470779 - ], - [ - -73.442644, - 45.471771 - ], - [ - -73.442632, - 45.471779 - ], - [ - -73.442519, - 45.471859 - ], - [ - -73.441942, - 45.47227 - ], - [ - -73.440996, - 45.472943 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.440777, - 45.473082 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.439918, - 45.473559 - ], - [ - -73.438731, - 45.47422 - ], - [ - -73.438304, - 45.474435 - ], - [ - -73.43824, - 45.474464 - ], - [ - -73.437984, - 45.474579 - ], - [ - -73.437774, - 45.474669 - ], - [ - -73.437493, - 45.474781 - ], - [ - -73.436979, - 45.47497 - ], - [ - -73.436441, - 45.475136 - ], - [ - -73.43565, - 45.475338 - ], - [ - -73.435327, - 45.475421 - ], - [ - -73.435246, - 45.475441 - ], - [ - -73.434371, - 45.475675 - ], - [ - -73.43213, - 45.476249 - ], - [ - -73.430984, - 45.476543 - ], - [ - -73.430412, - 45.476689 - ], - [ - -73.430219, - 45.476739 - ], - [ - -73.43007, - 45.476775 - ], - [ - -73.429697, - 45.476873 - ], - [ - -73.429193, - 45.477005 - ], - [ - -73.428358, - 45.477224 - ], - [ - -73.427857, - 45.477363 - ], - [ - -73.427526, - 45.477457 - ], - [ - -73.427221, - 45.477556 - ], - [ - -73.427121, - 45.477591 - ], - [ - -73.426989, - 45.477637 - ], - [ - -73.426493, - 45.477825 - ], - [ - -73.426135, - 45.477978 - ], - [ - -73.425662, - 45.478198 - ], - [ - -73.425284, - 45.478387 - ], - [ - -73.424884, - 45.478612 - ], - [ - -73.424494, - 45.47885 - ], - [ - -73.424258, - 45.479012 - ], - [ - -73.423721, - 45.479389 - ], - [ - -73.423491, - 45.479565 - ], - [ - -73.423421, - 45.479618 - ], - [ - -73.421108, - 45.481322 - ], - [ - -73.421017, - 45.481389 - ], - [ - -73.419775, - 45.482315 - ], - [ - -73.419122, - 45.482809 - ], - [ - -73.418378, - 45.483361 - ], - [ - -73.417919, - 45.483709 - ], - [ - -73.417514, - 45.484019 - ], - [ - -73.417479, - 45.484045 - ], - [ - -73.416526, - 45.484761 - ], - [ - -73.416059, - 45.485134 - ], - [ - -73.415863, - 45.485305 - ], - [ - -73.415534, - 45.485624 - ], - [ - -73.415516, - 45.485642 - ], - [ - -73.415347, - 45.485822 - ], - [ - -73.41509, - 45.486114 - ], - [ - -73.414917, - 45.486334 - ], - [ - -73.41475, - 45.486555 - ], - [ - -73.414412, - 45.487013 - ], - [ - -73.41409, - 45.487458 - ], - [ - -73.41317, - 45.488762 - ], - [ - -73.413119, - 45.488834 - ], - [ - -73.413049, - 45.488947 - ], - [ - -73.411857, - 45.490612 - ], - [ - -73.411369, - 45.491293 - ], - [ - -73.4113, - 45.491389 - ], - [ - -73.410804, - 45.492083 - ], - [ - -73.410177, - 45.492961 - ], - [ - -73.409729, - 45.493588 - ], - [ - -73.409634, - 45.493716 - ], - [ - -73.409271, - 45.494208 - ], - [ - -73.409068, - 45.494482 - ], - [ - -73.409048, - 45.494509 - ], - [ - -73.408825, - 45.494811 - ], - [ - -73.408748, - 45.494972 - ], - [ - -73.408585, - 45.495202 - ], - [ - -73.408388, - 45.495476 - ], - [ - -73.408074, - 45.495912 - ], - [ - -73.407847, - 45.49623 - ], - [ - -73.407762, - 45.496348 - ], - [ - -73.407629, - 45.496536 - ], - [ - -73.407544, - 45.496654 - ], - [ - -73.40725, - 45.497068 - ], - [ - -73.406789, - 45.497717 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.406288, - 45.49843 - ], - [ - -73.406193, - 45.498579 - ], - [ - -73.406188, - 45.49859 - ], - [ - -73.406163, - 45.49864 - ], - [ - -73.405911, - 45.499145 - ], - [ - -73.405493, - 45.499995 - ], - [ - -73.405383, - 45.500198 - ], - [ - -73.405251, - 45.500369 - ], - [ - -73.405082, - 45.500567 - ], - [ - -73.405021, - 45.500624 - ], - [ - -73.404894, - 45.500746 - ], - [ - -73.404658, - 45.500926 - ], - [ - -73.404439, - 45.50107 - ], - [ - -73.404275, - 45.501164 - ], - [ - -73.404095, - 45.501254 - ], - [ - -73.403728, - 45.501411 - ], - [ - -73.403505, - 45.501483 - ], - [ - -73.403218, - 45.501561 - ], - [ - -73.403207, - 45.501564 - ], - [ - -73.402929, - 45.501627 - ], - [ - -73.402747, - 45.501658 - ], - [ - -73.402456, - 45.501689 - ], - [ - -73.401996, - 45.50172 - ], - [ - -73.401146, - 45.501774 - ], - [ - -73.401007, - 45.501782 - ], - [ - -73.399341, - 45.501884 - ], - [ - -73.399355, - 45.501992 - ], - [ - -73.399389, - 45.50225 - ], - [ - -73.399402, - 45.502346 - ], - [ - -73.399417, - 45.50246 - ], - [ - -73.399441, - 45.502676 - ], - [ - -73.399508, - 45.503131 - ], - [ - -73.399525, - 45.503248 - ], - [ - -73.399542, - 45.50336 - ], - [ - -73.399657, - 45.504175 - ], - [ - -73.399716, - 45.504607 - ], - [ - -73.399729, - 45.504706 - ], - [ - -73.39976, - 45.505156 - ], - [ - -73.399787, - 45.505322 - ], - [ - -73.39982, - 45.505426 - ], - [ - -73.399886, - 45.505552 - ], - [ - -73.399949, - 45.505664 - ], - [ - -73.400048, - 45.505789 - ], - [ - -73.400052, - 45.505795 - ], - [ - -73.400152, - 45.505885 - ], - [ - -73.399985, - 45.50597 - ], - [ - -73.399802, - 45.506078 - ], - [ - -73.399379, - 45.50637 - ], - [ - -73.399188, - 45.506676 - ], - [ - -73.39914, - 45.506797 - ], - [ - -73.399137, - 45.506817 - ], - [ - -73.399117, - 45.50695 - ], - [ - -73.399108, - 45.507031 - ], - [ - -73.399133, - 45.507198 - ], - [ - -73.399213, - 45.507801 - ], - [ - -73.399228, - 45.507945 - ], - [ - -73.399281, - 45.508364 - ], - [ - -73.399294, - 45.508462 - ], - [ - -73.399352, - 45.508899 - ], - [ - -73.399433, - 45.50949 - ], - [ - -73.399448, - 45.509601 - ], - [ - -73.399031, - 45.509629 - ], - [ - -73.395527, - 45.509872 - ], - [ - -73.394199, - 45.510028 - ], - [ - -73.394181, - 45.510028 - ], - [ - -73.393813, - 45.510063 - ], - [ - -73.393726, - 45.510072 - ], - [ - -73.393621, - 45.510086 - ], - [ - -73.393167, - 45.510108 - ], - [ - -73.392652, - 45.510134 - ], - [ - -73.392204, - 45.510161 - ], - [ - -73.391524, - 45.510196 - ], - [ - -73.39086, - 45.510227 - ], - [ - -73.38988, - 45.510258 - ], - [ - -73.388662, - 45.510288 - ], - [ - -73.387775, - 45.510287 - ], - [ - -73.386235, - 45.510353 - ], - [ - -73.385917, - 45.510362 - ], - [ - -73.385295, - 45.510379 - ], - [ - -73.384919, - 45.510388 - ], - [ - -73.38478, - 45.510388 - ], - [ - -73.384446, - 45.510311 - ], - [ - -73.383925, - 45.510283 - ], - [ - -73.383581, - 45.510269 - ], - [ - -73.383401, - 45.510242 - ], - [ - -73.382986, - 45.510188 - ], - [ - -73.382978, - 45.510188 - ], - [ - -73.382559, - 45.510111 - ], - [ - -73.381159, - 45.509898 - ], - [ - -73.380887, - 45.509763 - ], - [ - -73.38076, - 45.509682 - ], - [ - -73.380689, - 45.509601 - ], - [ - -73.380643, - 45.509506 - ], - [ - -73.380639, - 45.509412 - ], - [ - -73.380633, - 45.509322 - ], - [ - -73.380641, - 45.509218 - ], - [ - -73.380743, - 45.509009 - ], - [ - -73.380768, - 45.508957 - ], - [ - -73.38135, - 45.507921 - ], - [ - -73.381389, - 45.507851 - ], - [ - -73.381468, - 45.507752 - ], - [ - -73.381562, - 45.507572 - ], - [ - -73.381667, - 45.507356 - ], - [ - -73.381733, - 45.507226 - ], - [ - -73.381816, - 45.507051 - ], - [ - -73.381935, - 45.506785 - ], - [ - -73.382054, - 45.506552 - ], - [ - -73.382181, - 45.506291 - ], - [ - -73.382207, - 45.50624 - ], - [ - -73.382294, - 45.50607 - ], - [ - -73.382297, - 45.506061 - ], - [ - -73.382427, - 45.506097 - ], - [ - -73.384621, - 45.506625 - ] - ] - }, - "id": 146, - "properties": { - "id": "40a77a53-08e9-4835-8b5a-7f2208f65c59", - "data": { - "gtfs": { - "shape_id": "60_1_R" - }, - "segments": [ - { - "distanceMeters": 1006, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 10885, - "travelTimeSeconds": 1080 - }, - { - "distanceMeters": 694, - "travelTimeSeconds": 118 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 433, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 415, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 1696, - "travelTimeSeconds": 239 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 30 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 288, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 23529, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 14216.124465200928, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.17, - "travelTimeWithoutDwellTimesSeconds": 2880, - "operatingTimeWithLayoverTimeSeconds": 3168, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2880, - "operatingSpeedWithLayoverMetersPerSecond": 7.43, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.17 - }, - "mode": "bus", - "name": "Promenades St-Bruno", - "color": "#A32638", - "nodes": [ - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", - "0f8ef5e7-ff7c-4097-8d8a-9727f12190ea", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "b6dfeeab-9981-4db8-9a90-2e14691bf516", - "bd9b4c12-08ed-4715-ae67-eb179ed7f974", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "ff779c9a-cd83-463a-8d0c-a93f3584a187", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", - "c8919560-2bb2-4063-8184-8e6c296badbe", - "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", - "0e293c4f-51c2-4ecd-9469-442389cb7915", - "e865e27f-7453-42b2-9745-a8e5425a0276", - "f7218298-f862-4f68-aabe-7a0d51011bc1", - "7f82f5fb-e61e-43a9-957c-0c400fd3ecbd", - "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "78262195-7c3a-4ed5-81d8-a33c906e3099", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "d1cd707b-8ed5-4d1d-b1cb-7633cade451b", - "590769f9-bd2c-482c-8bd5-e3724936b683", - "3e90658d-8898-49d9-be57-5b29936d4a9e", - "aab8672e-86c9-4a43-9806-f5135dc02b4e", - "7414010b-fe1f-4d77-8cdd-701cc437e73a", - "dc630e4d-102e-48b9-8b4a-920cafc01d4a", - "00ed067b-7627-492d-ac0f-5d03bd3b185c", - "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", - "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", - "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", - "b20c17a3-277e-418e-90be-8f8d32918ba9", - "6765611d-305b-41e3-b519-b65e608494ba", - "ff0214aa-5a67-4237-87c2-863aa17e8087", - "c22b0880-b3ca-4797-aa47-0cda85146514", - "a6d38dbd-ef0c-4533-9d2c-7149d1941078", - "c4c03f6a-b2dc-4fb8-87cd-df1a4417beae", - "71f7bbc9-363a-40ba-86f7-7f9ec638da55" - ], - "stops": [], - "line_id": "41820b50-a095-40c0-8d54-449e5a8d8c41", - "segments": [ - 0, - 23, - 173, - 201, - 221, - 228, - 231, - 237, - 254, - 264, - 270, - 276, - 281, - 289, - 297, - 299, - 302, - 309, - 316, - 321, - 330, - 340, - 342, - 349, - 354, - 361, - 365, - 372, - 377, - 381, - 384, - 388, - 395, - 403, - 409, - 414, - 418, - 421, - 428, - 436, - 442, - 445, - 484, - 494 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 146, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.453106, - 45.603884 - ], - [ - -73.453124, - 45.603897 - ], - [ - -73.453269, - 45.60401 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453904, - 45.604474 - ], - [ - -73.454133, - 45.604694 - ], - [ - -73.454539, - 45.605032 - ], - [ - -73.454917, - 45.605315 - ], - [ - -73.455171, - 45.605504 - ], - [ - -73.455782, - 45.605973 - ], - [ - -73.456001, - 45.606135 - ], - [ - -73.456106, - 45.606225 - ], - [ - -73.45638, - 45.606432 - ], - [ - -73.456447, - 45.606464 - ], - [ - -73.456464, - 45.606472 - ], - [ - -73.456606, - 45.606499 - ], - [ - -73.456615, - 45.606661 - ], - [ - -73.456615, - 45.606796 - ], - [ - -73.456613, - 45.606975 - ], - [ - -73.45661, - 45.607368 - ], - [ - -73.456599, - 45.607836 - ], - [ - -73.456595, - 45.608188 - ], - [ - -73.456594, - 45.608335 - ], - [ - -73.456582, - 45.60905 - ], - [ - -73.456558, - 45.609802 - ], - [ - -73.456543, - 45.610011 - ], - [ - -73.456534, - 45.610121 - ], - [ - -73.456537, - 45.610463 - ], - [ - -73.456508, - 45.610998 - ], - [ - -73.4565, - 45.611138 - ], - [ - -73.456491, - 45.611268 - ], - [ - -73.456473, - 45.611516 - ], - [ - -73.456454, - 45.611725 - ], - [ - -73.456449, - 45.611777 - ], - [ - -73.456429, - 45.612204 - ], - [ - -73.456403, - 45.612587 - ], - [ - -73.456367, - 45.613122 - ], - [ - -73.456346, - 45.613356 - ], - [ - -73.45632, - 45.613646 - ], - [ - -73.456315, - 45.613702 - ], - [ - -73.456295, - 45.613828 - ], - [ - -73.456125, - 45.615281 - ], - [ - -73.45606, - 45.615718 - ], - [ - -73.456015, - 45.616024 - ], - [ - -73.455984, - 45.616307 - ], - [ - -73.45596, - 45.616501 - ], - [ - -73.455915, - 45.616856 - ], - [ - -73.4559, - 45.616984 - ], - [ - -73.455888, - 45.617081 - ], - [ - -73.455879, - 45.617157 - ], - [ - -73.45581, - 45.617621 - ], - [ - -73.455762, - 45.617967 - ], - [ - -73.455729, - 45.618206 - ], - [ - -73.455676, - 45.618606 - ], - [ - -73.45562, - 45.619025 - ], - [ - -73.455571, - 45.619434 - ], - [ - -73.455487, - 45.620124 - ], - [ - -73.455479, - 45.620194 - ], - [ - -73.455459, - 45.620347 - ], - [ - -73.455364, - 45.621566 - ], - [ - -73.455352, - 45.621774 - ], - [ - -73.455345, - 45.621886 - ], - [ - -73.455228, - 45.623663 - ], - [ - -73.455175, - 45.624106 - ], - [ - -73.455153, - 45.624288 - ], - [ - -73.454435, - 45.626407 - ], - [ - -73.454319, - 45.626723 - ], - [ - -73.454243, - 45.626929 - ], - [ - -73.454024, - 45.62755 - ], - [ - -73.453881, - 45.627971 - ], - [ - -73.453834, - 45.628108 - ], - [ - -73.453601, - 45.628791 - ], - [ - -73.453393, - 45.629394 - ], - [ - -73.453358, - 45.629493 - ], - [ - -73.453315, - 45.629624 - ], - [ - -73.453257, - 45.629785 - ], - [ - -73.453011, - 45.630504 - ], - [ - -73.452942, - 45.630703 - ], - [ - -73.452778, - 45.631153 - ], - [ - -73.452686, - 45.631346 - ], - [ - -73.452502, - 45.631778 - ], - [ - -73.452319, - 45.632093 - ], - [ - -73.452094, - 45.632426 - ], - [ - -73.451791, - 45.632821 - ], - [ - -73.451773, - 45.632844 - ], - [ - -73.451693, - 45.632925 - ], - [ - -73.451614, - 45.633011 - ], - [ - -73.451195, - 45.633474 - ], - [ - -73.450679, - 45.634027 - ], - [ - -73.450136, - 45.634603 - ], - [ - -73.449542, - 45.635227 - ], - [ - -73.449434, - 45.63534 - ], - [ - -73.449285, - 45.635498 - ], - [ - -73.449067, - 45.635736 - ], - [ - -73.448723, - 45.636136 - ], - [ - -73.448535, - 45.636361 - ], - [ - -73.448252, - 45.636716 - ], - [ - -73.448132, - 45.636874 - ], - [ - -73.447882, - 45.637201 - ], - [ - -73.447778, - 45.637337 - ], - [ - -73.447634, - 45.637301 - ], - [ - -73.447384, - 45.637215 - ], - [ - -73.447064, - 45.637088 - ], - [ - -73.446874, - 45.637013 - ], - [ - -73.446777, - 45.636959 - ], - [ - -73.446639, - 45.63686 - ], - [ - -73.446407, - 45.636689 - ], - [ - -73.44625, - 45.636558 - ], - [ - -73.446134, - 45.636441 - ], - [ - -73.445951, - 45.636247 - ], - [ - -73.445769, - 45.636018 - ], - [ - -73.445712, - 45.635937 - ], - [ - -73.445634, - 45.635856 - ], - [ - -73.445562, - 45.635784 - ], - [ - -73.445466, - 45.635698 - ], - [ - -73.445268, - 45.635536 - ], - [ - -73.445251, - 45.635524 - ], - [ - -73.445104, - 45.635415 - ], - [ - -73.444715, - 45.635109 - ], - [ - -73.44467, - 45.635073 - ], - [ - -73.444422, - 45.63487 - ], - [ - -73.444148, - 45.634658 - ], - [ - -73.444049, - 45.634573 - ], - [ - -73.443845, - 45.634429 - ], - [ - -73.443417, - 45.63408 - ], - [ - -73.443242, - 45.633938 - ], - [ - -73.442909, - 45.633686 - ], - [ - -73.442563, - 45.633434 - ], - [ - -73.442416, - 45.633371 - ], - [ - -73.44208, - 45.633254 - ], - [ - -73.441599, - 45.633114 - ], - [ - -73.440871, - 45.632915 - ], - [ - -73.440824, - 45.632902 - ], - [ - -73.440392, - 45.632771 - ], - [ - -73.440856, - 45.631968 - ], - [ - -73.441271, - 45.631251 - ], - [ - -73.441456, - 45.630932 - ], - [ - -73.441684, - 45.63054 - ], - [ - -73.441866, - 45.630228 - ], - [ - -73.442088, - 45.629846 - ], - [ - -73.443114, - 45.62808 - ], - [ - -73.443242, - 45.627856 - ], - [ - -73.443605, - 45.627221 - ], - [ - -73.444022, - 45.626488 - ], - [ - -73.444047, - 45.626446 - ], - [ - -73.444573, - 45.625552 - ], - [ - -73.445344, - 45.624206 - ], - [ - -73.445387, - 45.624131 - ], - [ - -73.445586, - 45.623794 - ], - [ - -73.445824, - 45.623425 - ], - [ - -73.446146, - 45.622876 - ], - [ - -73.446829, - 45.62169 - ], - [ - -73.446834, - 45.62168 - ], - [ - -73.447011, - 45.621372 - ], - [ - -73.447396, - 45.620704 - ], - [ - -73.448364, - 45.619075 - ], - [ - -73.448491, - 45.618837 - ], - [ - -73.448637, - 45.61859 - ], - [ - -73.448711, - 45.618462 - ], - [ - -73.44919, - 45.617636 - ], - [ - -73.449409, - 45.617264 - ], - [ - -73.449512, - 45.617087 - ], - [ - -73.449827, - 45.616539 - ], - [ - -73.450142, - 45.615999 - ], - [ - -73.450551, - 45.61523 - ], - [ - -73.450783, - 45.614775 - ], - [ - -73.450957, - 45.614433 - ], - [ - -73.451219, - 45.613822 - ], - [ - -73.451496, - 45.613129 - ], - [ - -73.451588, - 45.612886 - ], - [ - -73.451731, - 45.612481 - ], - [ - -73.451764, - 45.612387 - ], - [ - -73.451963, - 45.611811 - ], - [ - -73.452038, - 45.611557 - ], - [ - -73.452151, - 45.611172 - ], - [ - -73.452319, - 45.610623 - ], - [ - -73.45242, - 45.610223 - ], - [ - -73.452502, - 45.609899 - ], - [ - -73.452742, - 45.608653 - ], - [ - -73.452838, - 45.608171 - ], - [ - -73.452843, - 45.608151 - ], - [ - -73.452894, - 45.607902 - ], - [ - -73.452956, - 45.607582 - ], - [ - -73.45303, - 45.607204 - ], - [ - -73.45313, - 45.606689 - ], - [ - -73.45351, - 45.604734 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453269, - 45.60401 - ], - [ - -73.453124, - 45.603897 - ], - [ - -73.452881, - 45.60371 - ], - [ - -73.452751, - 45.603609 - ], - [ - -73.452634, - 45.603524 - ], - [ - -73.45156, - 45.602679 - ], - [ - -73.45153, - 45.602655 - ], - [ - -73.451134, - 45.602344 - ], - [ - -73.450997, - 45.602236 - ], - [ - -73.450804, - 45.602087 - ], - [ - -73.450717, - 45.602019 - ], - [ - -73.450711, - 45.601962 - ], - [ - -73.450652, - 45.601878 - ], - [ - -73.450633, - 45.601851 - ], - [ - -73.45062, - 45.601823 - ], - [ - -73.450613, - 45.6018 - ], - [ - -73.450612, - 45.601775 - ], - [ - -73.450612, - 45.601745 - ], - [ - -73.450617, - 45.601719 - ], - [ - -73.450626, - 45.601694 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450359, - 45.600861 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.450329, - 45.600811 - ], - [ - -73.45028, - 45.600747 - ], - [ - -73.45017, - 45.600666 - ], - [ - -73.450081, - 45.60062 - ], - [ - -73.449968, - 45.600603 - ], - [ - -73.449925, - 45.600607 - ], - [ - -73.449868, - 45.600621 - ], - [ - -73.449802, - 45.600661 - ], - [ - -73.449715, - 45.600713 - ], - [ - -73.449674, - 45.600743 - ], - [ - -73.449661, - 45.600772 - ], - [ - -73.449666, - 45.600812 - ], - [ - -73.449924, - 45.601045 - ], - [ - -73.449978, - 45.601072 - ], - [ - -73.450055, - 45.601083 - ], - [ - -73.45017, - 45.60109 - ], - [ - -73.450263, - 45.601099 - ], - [ - -73.450328, - 45.601118 - ], - [ - -73.450379, - 45.601155 - ], - [ - -73.450393, - 45.601201 - ], - [ - -73.450376, - 45.60125 - ], - [ - -73.450362, - 45.601293 - ], - [ - -73.450349, - 45.601366 - ], - [ - -73.450328, - 45.601396 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450247, - 45.601412 - ], - [ - -73.450159, - 45.601408 - ], - [ - -73.450117, - 45.6014 - ], - [ - -73.450076, - 45.601382 - ], - [ - -73.450018, - 45.601356 - ], - [ - -73.449945, - 45.60132 - ], - [ - -73.449881, - 45.6013 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.447966, - 45.599856 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.446985, - 45.599062 - ], - [ - -73.446713, - 45.59886 - ], - [ - -73.446259, - 45.598527 - ], - [ - -73.445451, - 45.597962 - ], - [ - -73.445261, - 45.597829 - ], - [ - -73.444803, - 45.597518 - ], - [ - -73.44364, - 45.596727 - ], - [ - -73.443394, - 45.596559 - ], - [ - -73.442992, - 45.59628 - ], - [ - -73.442927, - 45.596235 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.439978, - 45.594044 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438316, - 45.592819 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.436924, - 45.591152 - ], - [ - -73.437164, - 45.591013 - ], - [ - -73.437547, - 45.590791 - ], - [ - -73.438173, - 45.590429 - ], - [ - -73.438715, - 45.590114 - ], - [ - -73.438952, - 45.589961 - ], - [ - -73.439419, - 45.589653 - ], - [ - -73.439421, - 45.589651 - ], - [ - -73.439556, - 45.58957 - ], - [ - -73.43977, - 45.589417 - ], - [ - -73.43999, - 45.589251 - ], - [ - -73.440162, - 45.58912 - ], - [ - -73.440356, - 45.588972 - ], - [ - -73.440499, - 45.588855 - ], - [ - -73.440849, - 45.588559 - ], - [ - -73.441414, - 45.588033 - ], - [ - -73.441626, - 45.587839 - ], - [ - -73.442055, - 45.587448 - ], - [ - -73.442542, - 45.586998 - ], - [ - -73.443306, - 45.586303 - ], - [ - -73.4435, - 45.586126 - ], - [ - -73.444399, - 45.585304 - ], - [ - -73.444685, - 45.585042 - ], - [ - -73.445533, - 45.584264 - ], - [ - -73.445779, - 45.584064 - ], - [ - -73.446073, - 45.583824 - ], - [ - -73.446281, - 45.583662 - ], - [ - -73.446365, - 45.583594 - ], - [ - -73.446509, - 45.583477 - ], - [ - -73.446663, - 45.583334 - ], - [ - -73.446759, - 45.583239 - ], - [ - -73.446885, - 45.583095 - ], - [ - -73.447026, - 45.582915 - ], - [ - -73.44712, - 45.582776 - ], - [ - -73.447147, - 45.582728 - ], - [ - -73.447216, - 45.582605 - ], - [ - -73.447288, - 45.582456 - ], - [ - -73.447348, - 45.582322 - ], - [ - -73.447422, - 45.58211 - ], - [ - -73.447475, - 45.581885 - ], - [ - -73.447497, - 45.581732 - ], - [ - -73.447521, - 45.581602 - ], - [ - -73.447516, - 45.581462 - ], - [ - -73.447513, - 45.581287 - ], - [ - -73.447477, - 45.581057 - ], - [ - -73.447342, - 45.58039 - ], - [ - -73.447286, - 45.580117 - ], - [ - -73.447144, - 45.579424 - ], - [ - -73.447107, - 45.579243 - ], - [ - -73.447056, - 45.578992 - ], - [ - -73.447038, - 45.578907 - ], - [ - -73.446989, - 45.578673 - ], - [ - -73.446939, - 45.578425 - ], - [ - -73.446764, - 45.577557 - ], - [ - -73.446738, - 45.577422 - ], - [ - -73.446692, - 45.57717 - ], - [ - -73.446671, - 45.576945 - ], - [ - -73.446671, - 45.57667 - ], - [ - -73.446671, - 45.576571 - ], - [ - -73.446676, - 45.576533 - ], - [ - -73.44669, - 45.576436 - ], - [ - -73.446707, - 45.576333 - ], - [ - -73.446734, - 45.576243 - ], - [ - -73.446807, - 45.576018 - ], - [ - -73.446886, - 45.575843 - ], - [ - -73.446894, - 45.575825 - ], - [ - -73.447166, - 45.575249 - ], - [ - -73.447388, - 45.574789 - ], - [ - -73.447238, - 45.574749 - ], - [ - -73.446746, - 45.574587 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.443147, - 45.572802 - ], - [ - -73.443228, - 45.572879 - ], - [ - -73.443273, - 45.572955 - ], - [ - -73.443271, - 45.573 - ], - [ - -73.443276, - 45.573125 - ], - [ - -73.443281, - 45.573166 - ], - [ - -73.443386, - 45.57326 - ], - [ - -73.443502, - 45.573319 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.44468, - 45.573697 - ], - [ - -73.444697, - 45.573706 - ], - [ - -73.444729, - 45.573713 - ], - [ - -73.444769, - 45.573716 - ], - [ - -73.444831, - 45.573715 - ], - [ - -73.444884, - 45.573708 - ], - [ - -73.44491, - 45.573694 - ], - [ - -73.444932, - 45.573662 - ], - [ - -73.444953, - 45.573633 - ], - [ - -73.44492, - 45.573618 - ], - [ - -73.444872, - 45.573601 - ], - [ - -73.444829, - 45.573598 - ], - [ - -73.44477, - 45.57361 - ], - [ - -73.444749, - 45.573615 - ], - [ - -73.44471, - 45.573635 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.443568, - 45.573245 - ], - [ - -73.443539, - 45.573203 - ], - [ - -73.44348, - 45.573034 - ], - [ - -73.443427, - 45.572912 - ], - [ - -73.44336, - 45.572841 - ], - [ - -73.443253, - 45.572772 - ], - [ - -73.443199, - 45.572746 - ], - [ - -73.443114, - 45.572731 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.446746, - 45.574587 - ], - [ - -73.447238, - 45.574749 - ], - [ - -73.447388, - 45.574789 - ], - [ - -73.447436, - 45.574664 - ], - [ - -73.447747, - 45.574246 - ], - [ - -73.447911, - 45.574048 - ], - [ - -73.448003, - 45.573949 - ], - [ - -73.448105, - 45.573859 - ], - [ - -73.448208, - 45.573776 - ], - [ - -73.448217, - 45.573769 - ], - [ - -73.448342, - 45.573688 - ], - [ - -73.448479, - 45.573616 - ], - [ - -73.448612, - 45.573562 - ], - [ - -73.448944, - 45.573459 - ], - [ - -73.449123, - 45.573428 - ], - [ - -73.449305, - 45.573405 - ], - [ - -73.4495, - 45.573396 - ], - [ - -73.449708, - 45.573401 - ], - [ - -73.450131, - 45.573437 - ], - [ - -73.45057, - 45.573487 - ], - [ - -73.452027, - 45.573685 - ], - [ - -73.45367, - 45.573951 - ], - [ - -73.455009, - 45.57424 - ], - [ - -73.456205, - 45.574501 - ], - [ - -73.457846, - 45.574844 - ], - [ - -73.459196, - 45.575101 - ], - [ - -73.460081, - 45.575263 - ], - [ - -73.460408, - 45.575326 - ], - [ - -73.462346, - 45.575705 - ], - [ - -73.463166, - 45.575871 - ], - [ - -73.466047, - 45.576484 - ], - [ - -73.467519, - 45.576809 - ], - [ - -73.469081, - 45.577137 - ], - [ - -73.469847, - 45.5773 - ], - [ - -73.46993, - 45.577318 - ], - [ - -73.470459, - 45.57743 - ], - [ - -73.474313, - 45.578254 - ], - [ - -73.475326, - 45.578471 - ], - [ - -73.475636, - 45.578538 - ], - [ - -73.475932, - 45.578601 - ], - [ - -73.476433, - 45.578707 - ], - [ - -73.481329, - 45.579745 - ], - [ - -73.48155, - 45.579795 - ], - [ - -73.484545, - 45.580447 - ], - [ - -73.485965, - 45.580767 - ], - [ - -73.497124, - 45.583147 - ], - [ - -73.508904, - 45.585656 - ], - [ - -73.509302, - 45.58574 - ], - [ - -73.509739, - 45.585835 - ], - [ - -73.510248, - 45.585943 - ], - [ - -73.510753, - 45.58605 - ], - [ - -73.511089, - 45.586122 - ], - [ - -73.512652, - 45.586456 - ], - [ - -73.513072, - 45.586547 - ], - [ - -73.513383, - 45.586622 - ], - [ - -73.513615, - 45.586679 - ], - [ - -73.513896, - 45.586752 - ], - [ - -73.51435, - 45.586877 - ], - [ - -73.514692, - 45.586978 - ], - [ - -73.514943, - 45.587051 - ], - [ - -73.515214, - 45.587137 - ], - [ - -73.515381, - 45.587189 - ], - [ - -73.515499, - 45.58723 - ], - [ - -73.515615, - 45.587265 - ], - [ - -73.515863, - 45.587347 - ], - [ - -73.516018, - 45.587396 - ], - [ - -73.516093, - 45.587421 - ], - [ - -73.516263, - 45.587478 - ], - [ - -73.516374, - 45.587512 - ], - [ - -73.517412, - 45.587855 - ], - [ - -73.517647, - 45.587929 - ], - [ - -73.517898, - 45.588012 - ], - [ - -73.518165, - 45.5881 - ], - [ - -73.518383, - 45.588169 - ], - [ - -73.51862, - 45.588243 - ], - [ - -73.518873, - 45.588329 - ], - [ - -73.519146, - 45.588421 - ], - [ - -73.519592, - 45.588583 - ], - [ - -73.519868, - 45.588673 - ], - [ - -73.520234, - 45.588791 - ], - [ - -73.520667, - 45.588925 - ], - [ - -73.520851, - 45.588978 - ], - [ - -73.521073, - 45.589039 - ], - [ - -73.521333, - 45.589108 - ], - [ - -73.521497, - 45.589152 - ], - [ - -73.521544, - 45.589163 - ], - [ - -73.521823, - 45.58923 - ], - [ - -73.522033, - 45.589281 - ], - [ - -73.522524, - 45.589399 - ], - [ - -73.522914, - 45.589494 - ], - [ - -73.52345, - 45.589622 - ], - [ - -73.523991, - 45.589764 - ], - [ - -73.52438, - 45.58988 - ], - [ - -73.524584, - 45.589945 - ], - [ - -73.524734, - 45.589998 - ], - [ - -73.52493, - 45.590067 - ], - [ - -73.525178, - 45.590158 - ], - [ - -73.525533, - 45.5903 - ], - [ - -73.526168, - 45.590581 - ], - [ - -73.526515, - 45.590738 - ], - [ - -73.526839, - 45.590884 - ], - [ - -73.527065, - 45.590977 - ], - [ - -73.527417, - 45.591124 - ], - [ - -73.527746, - 45.591255 - ], - [ - -73.527969, - 45.591342 - ], - [ - -73.528175, - 45.59142 - ], - [ - -73.52845, - 45.591517 - ], - [ - -73.528558, - 45.591559 - ], - [ - -73.528686, - 45.591601 - ], - [ - -73.528843, - 45.591657 - ], - [ - -73.528989, - 45.591705 - ], - [ - -73.529147, - 45.591753 - ], - [ - -73.529298, - 45.591799 - ], - [ - -73.529667, - 45.591896 - ], - [ - -73.530088, - 45.591993 - ], - [ - -73.530428, - 45.592062 - ], - [ - -73.530573, - 45.592092 - ], - [ - -73.530708, - 45.592118 - ], - [ - -73.530821, - 45.59214 - ], - [ - -73.531509, - 45.592269 - ], - [ - -73.531903, - 45.592341 - ], - [ - -73.532263, - 45.592438 - ], - [ - -73.532659, - 45.592533 - ], - [ - -73.532915, - 45.592591 - ], - [ - -73.533081, - 45.592632 - ], - [ - -73.533228, - 45.592666 - ], - [ - -73.534254, - 45.592895 - ], - [ - -73.53476, - 45.593005 - ], - [ - -73.535125, - 45.593079 - ], - [ - -73.53543, - 45.59314 - ], - [ - -73.535913, - 45.593237 - ], - [ - -73.536223, - 45.593308 - ], - [ - -73.536422, - 45.593363 - ], - [ - -73.536757, - 45.593427 - ], - [ - -73.536928, - 45.593461 - ], - [ - -73.537323, - 45.593537 - ], - [ - -73.53774, - 45.59364 - ], - [ - -73.538073, - 45.593797 - ], - [ - -73.538329, - 45.593961 - ], - [ - -73.538376, - 45.594194 - ], - [ - -73.538248, - 45.594374 - ], - [ - -73.538003, - 45.594472 - ], - [ - -73.537828, - 45.594497 - ], - [ - -73.537529, - 45.594425 - ], - [ - -73.536539, - 45.594133 - ], - [ - -73.536896, - 45.593513 - ], - [ - -73.536928, - 45.593461 - ], - [ - -73.537021, - 45.593311 - ], - [ - -73.537094, - 45.593191 - ], - [ - -73.537199, - 45.593022 - ], - [ - -73.537249, - 45.59294 - ], - [ - -73.537595, - 45.592349 - ], - [ - -73.538187, - 45.591323 - ], - [ - -73.538445, - 45.590876 - ], - [ - -73.539019, - 45.589891 - ], - [ - -73.538858, - 45.589857 - ], - [ - -73.538782, - 45.58985 - ], - [ - -73.538619, - 45.589794 - ], - [ - -73.537871, - 45.589536 - ], - [ - -73.537763, - 45.589685 - ], - [ - -73.537641, - 45.589854 - ], - [ - -73.53791, - 45.589946 - ], - [ - -73.538217, - 45.59005 - ], - [ - -73.538311, - 45.590083 - ], - [ - -73.538428, - 45.589913 - ], - [ - -73.538041, - 45.58978 - ] - ] - }, - "id": 147, - "properties": { - "id": "85da5396-940e-4c03-9ee3-ddbf78746840", - "data": { - "gtfs": { - "shape_id": "61_2_A" - }, - "segments": [ - { - "distanceMeters": 213, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 388, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 520, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 390, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 439, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 78, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 335, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 83, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 92, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 1000, - "travelTimeSeconds": 166 - }, - { - "distanceMeters": 9040, - "travelTimeSeconds": 660 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 252, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 22325, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6800.672553992669, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.86, - "travelTimeWithoutDwellTimesSeconds": 2520, - "operatingTimeWithLayoverTimeSeconds": 2772, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2520, - "operatingSpeedWithLayoverMetersPerSecond": 8.05, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.86 - }, - "mode": "bus", - "name": "Métro Radisson", - "color": "#A32638", - "nodes": [ - "ca205394-9833-4e14-b4fa-653c28b9a37d", - "dd170d68-d567-4a2d-8a93-47dec3a52cd1", - "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", - "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", - "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", - "204b558a-c106-4589-888d-4bd6528787b5", - "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", - "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", - "949c3098-32ca-4f3b-81ba-cbe506f68923", - "518135ae-62e9-44c2-bac7-e8c50c56eec9", - "148d4b0f-418e-4993-b335-f1dcd1c4df41", - "568437d9-2de5-4e5e-b111-1a7811ac5c99", - "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", - "6928ef4b-2825-4234-84d9-1c82edb211b0", - "777d67e8-62c3-46b4-a71f-e76a88b45f45", - "d04543e8-f38e-4937-b92b-1bc9ff97fd25", - "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", - "389622d0-ee1f-428b-9366-e69f134ff23e", - "02fef102-0f62-42d0-b4ed-790bc76ef1ad", - "f659a652-a61c-4199-abbc-a42f3ceef5cb", - "90b41412-0c12-4505-b7c9-b915901b1dd2", - "78a9a588-c1f0-470f-bbcc-52b6da866dad", - "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", - "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", - "253353ba-aba2-4e63-bf86-819bb7c9cecd", - "706f0077-9543-4662-8684-a321216a8a90", - "589f0f16-2c87-45fc-856c-d82dc5449f14", - "0778ac37-7369-4d81-abbc-9aa1d13b1c38", - "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", - "039c87a4-2647-4079-9a79-c7d3278ef6b2", - "e2d71c2d-a170-4ce7-a381-519755a00e36", - "a2b2c8d3-da2c-46a1-8009-597d5c6a0c19", - "ca205394-9833-4e14-b4fa-653c28b9a37d", - "bbe875bc-cb85-4a61-923d-53ee4746a213", - "96c08dfd-d2e7-4584-a6b3-36c3a2e1abcc", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "4c25cc73-ac26-4e31-9812-bc4ad7f583b5", - "49262d07-72b2-466f-bf49-88656466e4a4", - "0872c388-8faf-4852-b4ce-cf3f6312e0ef", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "e177b755-3bcf-4a35-afd7-a49fb240f250", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", - "2cdb15ef-cdbd-4b50-8947-cb9baee33626", - "7b512bac-ad2d-4d5a-87d8-173290a7b311", - "44ce6da8-ee79-4e09-9c16-f31566643c0c", - "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", - "6c99422e-05cb-48dc-811f-162fee50cf80", - "7c5ab4a9-cc9e-4b88-bc68-d214d8c04000", - "a83efd44-0d7a-49ef-b344-ef523d875f87", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "b49806f2-28c3-484e-bd5a-b46e80d9eb6f" - ], - "stops": [], - "line_id": "edf773b4-79da-4881-a607-1b6f2dc9fb32", - "segments": [ - 0, - 7, - 13, - 21, - 25, - 32, - 38, - 47, - 51, - 56, - 60, - 63, - 66, - 69, - 76, - 83, - 90, - 98, - 116, - 124, - 131, - 138, - 141, - 144, - 146, - 151, - 158, - 160, - 165, - 170, - 176, - 180, - 189, - 223, - 262, - 268, - 271, - 274, - 277, - 283, - 290, - 295, - 300, - 305, - 313, - 315, - 318, - 328, - 339, - 342, - 346, - 353, - 406 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 147, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.538041, - 45.58978 - ], - [ - -73.537763, - 45.589685 - ], - [ - -73.537412, - 45.589569 - ], - [ - -73.537296, - 45.589531 - ], - [ - -73.537175, - 45.589492 - ], - [ - -73.537061, - 45.589663 - ], - [ - -73.537347, - 45.589757 - ], - [ - -73.537641, - 45.589854 - ], - [ - -73.537763, - 45.589685 - ], - [ - -73.537871, - 45.589536 - ], - [ - -73.538619, - 45.589794 - ], - [ - -73.538782, - 45.58985 - ], - [ - -73.538858, - 45.589857 - ], - [ - -73.538292, - 45.590834 - ], - [ - -73.53801, - 45.591289 - ], - [ - -73.53724, - 45.592229 - ], - [ - -73.536919, - 45.592462 - ], - [ - -73.536427, - 45.592632 - ], - [ - -73.536128, - 45.592668 - ], - [ - -73.535634, - 45.592691 - ], - [ - -73.535039, - 45.592586 - ], - [ - -73.534497, - 45.592491 - ], - [ - -73.534162, - 45.592432 - ], - [ - -73.533328, - 45.592284 - ], - [ - -73.532072, - 45.592016 - ], - [ - -73.529941, - 45.591524 - ], - [ - -73.529126, - 45.591256 - ], - [ - -73.527811, - 45.590825 - ], - [ - -73.527241, - 45.590441 - ], - [ - -73.52689, - 45.590006 - ], - [ - -73.526662, - 45.589263 - ], - [ - -73.526448, - 45.58921 - ], - [ - -73.526233, - 45.589625 - ], - [ - -73.526099, - 45.589887 - ], - [ - -73.525936, - 45.590207 - ], - [ - -73.525676, - 45.590715 - ], - [ - -73.525536, - 45.590657 - ], - [ - -73.524684, - 45.590291 - ], - [ - -73.523747, - 45.589931 - ], - [ - -73.522883, - 45.5897 - ], - [ - -73.520235, - 45.589073 - ], - [ - -73.520459, - 45.5886 - ], - [ - -73.520755, - 45.588049 - ], - [ - -73.52084, - 45.587831 - ], - [ - -73.52129, - 45.586836 - ], - [ - -73.521505, - 45.586119 - ], - [ - -73.521883, - 45.584855 - ], - [ - -73.521921, - 45.584808 - ], - [ - -73.521957, - 45.584763 - ], - [ - -73.522003, - 45.584698 - ], - [ - -73.522045, - 45.584645 - ], - [ - -73.522061, - 45.584629 - ], - [ - -73.522081, - 45.58461 - ], - [ - -73.522109, - 45.58459 - ], - [ - -73.522134, - 45.584576 - ], - [ - -73.522163, - 45.584561 - ], - [ - -73.522192, - 45.584549 - ], - [ - -73.522235, - 45.584534 - ], - [ - -73.522274, - 45.584523 - ], - [ - -73.522325, - 45.584515 - ], - [ - -73.522374, - 45.584509 - ], - [ - -73.522429, - 45.58451 - ], - [ - -73.522571, - 45.584531 - ], - [ - -73.52343, - 45.584815 - ], - [ - -73.52376, - 45.584927 - ], - [ - -73.523841, - 45.584954 - ], - [ - -73.523945, - 45.584989 - ], - [ - -73.524016, - 45.585015 - ], - [ - -73.524096, - 45.585047 - ], - [ - -73.524151, - 45.585073 - ], - [ - -73.524197, - 45.585098 - ], - [ - -73.524236, - 45.585122 - ], - [ - -73.524278, - 45.585148 - ], - [ - -73.524324, - 45.585178 - ], - [ - -73.524369, - 45.585214 - ], - [ - -73.524406, - 45.585247 - ], - [ - -73.524463, - 45.585303 - ], - [ - -73.524503, - 45.585349 - ], - [ - -73.524542, - 45.58539 - ], - [ - -73.524569, - 45.58543 - ], - [ - -73.524587, - 45.58546 - ], - [ - -73.524593, - 45.58547 - ], - [ - -73.52462, - 45.585521 - ], - [ - -73.52464, - 45.58557 - ], - [ - -73.52466, - 45.585624 - ], - [ - -73.524672, - 45.58567 - ], - [ - -73.524685, - 45.585725 - ], - [ - -73.524689, - 45.585768 - ], - [ - -73.524691, - 45.585817 - ], - [ - -73.524689, - 45.585864 - ], - [ - -73.524682, - 45.585915 - ], - [ - -73.524667, - 45.585966 - ], - [ - -73.524655, - 45.586011 - ], - [ - -73.524638, - 45.586057 - ], - [ - -73.524579, - 45.586185 - ], - [ - -73.5243, - 45.586752 - ], - [ - -73.524239, - 45.586876 - ], - [ - -73.524205, - 45.586942 - ], - [ - -73.524179, - 45.586987 - ], - [ - -73.524164, - 45.587015 - ], - [ - -73.524145, - 45.587045 - ], - [ - -73.524103, - 45.587109 - ], - [ - -73.524067, - 45.587159 - ], - [ - -73.524034, - 45.587198 - ], - [ - -73.523996, - 45.587242 - ], - [ - -73.523958, - 45.587276 - ], - [ - -73.523927, - 45.587306 - ], - [ - -73.523898, - 45.587332 - ], - [ - -73.523863, - 45.587361 - ], - [ - -73.523831, - 45.587386 - ], - [ - -73.523767, - 45.587435 - ], - [ - -73.5237, - 45.58748 - ], - [ - -73.523647, - 45.587515 - ], - [ - -73.523625, - 45.587528 - ], - [ - -73.523564, - 45.587565 - ], - [ - -73.523503, - 45.587597 - ], - [ - -73.523435, - 45.587631 - ], - [ - -73.523361, - 45.587666 - ], - [ - -73.522995, - 45.587814 - ], - [ - -73.522789, - 45.587888 - ], - [ - -73.522534, - 45.587959 - ], - [ - -73.522332, - 45.588012 - ], - [ - -73.522084, - 45.58807 - ], - [ - -73.521851, - 45.588105 - ], - [ - -73.521643, - 45.588133 - ], - [ - -73.521312, - 45.588151 - ], - [ - -73.521043, - 45.588156 - ], - [ - -73.520917, - 45.588158 - ], - [ - -73.52081, - 45.588158 - ], - [ - -73.520688, - 45.588159 - ], - [ - -73.520523, - 45.588154 - ], - [ - -73.520408, - 45.588148 - ], - [ - -73.520268, - 45.588141 - ], - [ - -73.520163, - 45.588135 - ], - [ - -73.520068, - 45.588129 - ], - [ - -73.51998, - 45.588122 - ], - [ - -73.519887, - 45.588116 - ], - [ - -73.51979, - 45.588107 - ], - [ - -73.519696, - 45.588097 - ], - [ - -73.519541, - 45.588083 - ], - [ - -73.519413, - 45.588068 - ], - [ - -73.519239, - 45.588046 - ], - [ - -73.519068, - 45.588023 - ], - [ - -73.518923, - 45.588002 - ], - [ - -73.518749, - 45.587973 - ], - [ - -73.518537, - 45.587936 - ], - [ - -73.518361, - 45.587901 - ], - [ - -73.518208, - 45.587865 - ], - [ - -73.518073, - 45.587834 - ], - [ - -73.517947, - 45.587803 - ], - [ - -73.517919, - 45.587796 - ], - [ - -73.517669, - 45.587733 - ], - [ - -73.517466, - 45.587675 - ], - [ - -73.517114, - 45.587597 - ], - [ - -73.516945, - 45.587542 - ], - [ - -73.516325, - 45.587341 - ], - [ - -73.515858, - 45.587189 - ], - [ - -73.515252, - 45.586992 - ], - [ - -73.514772, - 45.586839 - ], - [ - -73.514455, - 45.586742 - ], - [ - -73.51397, - 45.586605 - ], - [ - -73.513711, - 45.586533 - ], - [ - -73.51342, - 45.586456 - ], - [ - -73.513232, - 45.586405 - ], - [ - -73.513046, - 45.586357 - ], - [ - -73.512839, - 45.586307 - ], - [ - -73.512478, - 45.586224 - ], - [ - -73.511402, - 45.585995 - ], - [ - -73.508969, - 45.585479 - ], - [ - -73.497184, - 45.582969 - ], - [ - -73.48603, - 45.580596 - ], - [ - -73.484605, - 45.580304 - ], - [ - -73.481594, - 45.579682 - ], - [ - -73.481299, - 45.579619 - ], - [ - -73.476527, - 45.578597 - ], - [ - -73.475793, - 45.57844 - ], - [ - -73.471564, - 45.577476 - ], - [ - -73.470253, - 45.577185 - ], - [ - -73.470227, - 45.577179 - ], - [ - -73.470082, - 45.577148 - ], - [ - -73.469737, - 45.577073 - ], - [ - -73.469494, - 45.57702 - ], - [ - -73.468711, - 45.57685 - ], - [ - -73.465956, - 45.57631 - ], - [ - -73.462443, - 45.575565 - ], - [ - -73.457218, - 45.5744 - ], - [ - -73.456588, - 45.574263 - ], - [ - -73.454467, - 45.573722 - ], - [ - -73.453947, - 45.573587 - ], - [ - -73.453448, - 45.573447 - ], - [ - -73.452981, - 45.573299 - ], - [ - -73.452764, - 45.573218 - ], - [ - -73.452558, - 45.573128 - ], - [ - -73.452363, - 45.573028 - ], - [ - -73.452177, - 45.572916 - ], - [ - -73.452006, - 45.572794 - ], - [ - -73.45185, - 45.572659 - ], - [ - -73.451709, - 45.572515 - ], - [ - -73.451584, - 45.572362 - ], - [ - -73.451481, - 45.5722 - ], - [ - -73.451391, - 45.572034 - ], - [ - -73.451086, - 45.571422 - ], - [ - -73.451003, - 45.571291 - ], - [ - -73.450904, - 45.571179 - ], - [ - -73.450791, - 45.571075 - ], - [ - -73.450667, - 45.570994 - ], - [ - -73.450535, - 45.570922 - ], - [ - -73.450463, - 45.570891 - ], - [ - -73.450402, - 45.570864 - ], - [ - -73.449347, - 45.570476 - ], - [ - -73.449264, - 45.570454 - ], - [ - -73.449093, - 45.570413 - ], - [ - -73.449089, - 45.570422 - ], - [ - -73.44907, - 45.570467 - ], - [ - -73.449049, - 45.570517 - ], - [ - -73.448873, - 45.570917 - ], - [ - -73.448823, - 45.571034 - ], - [ - -73.448756, - 45.571199 - ], - [ - -73.44818, - 45.572625 - ], - [ - -73.447654, - 45.573778 - ], - [ - -73.447519, - 45.574084 - ], - [ - -73.447518, - 45.574088 - ], - [ - -73.447455, - 45.574133 - ], - [ - -73.447308, - 45.574407 - ], - [ - -73.447267, - 45.574466 - ], - [ - -73.447241, - 45.574497 - ], - [ - -73.447197, - 45.574529 - ], - [ - -73.447149, - 45.574547 - ], - [ - -73.447112, - 45.574556 - ], - [ - -73.447049, - 45.574565 - ], - [ - -73.446965, - 45.574569 - ], - [ - -73.446884, - 45.574565 - ], - [ - -73.446792, - 45.574547 - ], - [ - -73.446652, - 45.574511 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.443147, - 45.572802 - ], - [ - -73.443228, - 45.572879 - ], - [ - -73.443273, - 45.572955 - ], - [ - -73.443271, - 45.573 - ], - [ - -73.443276, - 45.573125 - ], - [ - -73.443281, - 45.573166 - ], - [ - -73.443386, - 45.57326 - ], - [ - -73.443502, - 45.573319 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.44468, - 45.573697 - ], - [ - -73.444697, - 45.573706 - ], - [ - -73.444729, - 45.573713 - ], - [ - -73.444769, - 45.573716 - ], - [ - -73.444831, - 45.573715 - ], - [ - -73.444884, - 45.573708 - ], - [ - -73.44491, - 45.573694 - ], - [ - -73.444924, - 45.573673 - ], - [ - -73.444953, - 45.573633 - ], - [ - -73.44492, - 45.573618 - ], - [ - -73.444872, - 45.573601 - ], - [ - -73.444829, - 45.573598 - ], - [ - -73.444749, - 45.573615 - ], - [ - -73.44471, - 45.573635 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.443539, - 45.573203 - ], - [ - -73.443513, - 45.573129 - ], - [ - -73.44348, - 45.573034 - ], - [ - -73.443427, - 45.572912 - ], - [ - -73.44336, - 45.572841 - ], - [ - -73.443253, - 45.572772 - ], - [ - -73.443199, - 45.572746 - ], - [ - -73.443114, - 45.572731 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.446698, - 45.574646 - ], - [ - -73.446963, - 45.574749 - ], - [ - -73.446986, - 45.574767 - ], - [ - -73.447005, - 45.574781 - ], - [ - -73.447026, - 45.574808 - ], - [ - -73.447042, - 45.57483 - ], - [ - -73.447056, - 45.574857 - ], - [ - -73.44707, - 45.574889 - ], - [ - -73.447082, - 45.57492 - ], - [ - -73.447099, - 45.575037 - ], - [ - -73.447045, - 45.575158 - ], - [ - -73.446765, - 45.575789 - ], - [ - -73.446759, - 45.575802 - ], - [ - -73.446721, - 45.575887 - ], - [ - -73.446618, - 45.576202 - ], - [ - -73.446585, - 45.576297 - ], - [ - -73.446578, - 45.576319 - ], - [ - -73.446558, - 45.576387 - ], - [ - -73.44653, - 45.57654 - ], - [ - -73.446519, - 45.57667 - ], - [ - -73.446516, - 45.576796 - ], - [ - -73.446516, - 45.576958 - ], - [ - -73.446539, - 45.577179 - ], - [ - -73.446584, - 45.57744 - ], - [ - -73.446591, - 45.577468 - ], - [ - -73.446615, - 45.57757 - ], - [ - -73.446868, - 45.578828 - ], - [ - -73.446887, - 45.57892 - ], - [ - -73.446904, - 45.579005 - ], - [ - -73.447128, - 45.58009 - ], - [ - -73.447136, - 45.58013 - ], - [ - -73.447307, - 45.58099 - ], - [ - -73.447337, - 45.581174 - ], - [ - -73.447364, - 45.581462 - ], - [ - -73.447358, - 45.581597 - ], - [ - -73.447346, - 45.581723 - ], - [ - -73.447325, - 45.581872 - ], - [ - -73.447274, - 45.582088 - ], - [ - -73.447195, - 45.582299 - ], - [ - -73.447186, - 45.582322 - ], - [ - -73.447144, - 45.582429 - ], - [ - -73.447053, - 45.582609 - ], - [ - -73.44698, - 45.58274 - ], - [ - -73.446895, - 45.58287 - ], - [ - -73.446759, - 45.583041 - ], - [ - -73.446638, - 45.583181 - ], - [ - -73.446546, - 45.58327 - ], - [ - -73.446413, - 45.583392 - ], - [ - -73.446149, - 45.583603 - ], - [ - -73.446105, - 45.583638 - ], - [ - -73.446013, - 45.583711 - ], - [ - -73.445968, - 45.583747 - ], - [ - -73.44592, - 45.583788 - ], - [ - -73.445774, - 45.583904 - ], - [ - -73.445416, - 45.584201 - ], - [ - -73.44456, - 45.584979 - ], - [ - -73.444559, - 45.58498 - ], - [ - -73.444401, - 45.585119 - ], - [ - -73.443474, - 45.585971 - ], - [ - -73.443398, - 45.58604 - ], - [ - -73.44263, - 45.586742 - ], - [ - -73.442422, - 45.586935 - ], - [ - -73.442064, - 45.587259 - ], - [ - -73.44183, - 45.58747 - ], - [ - -73.441505, - 45.587776 - ], - [ - -73.441295, - 45.58797 - ], - [ - -73.440302, - 45.588851 - ], - [ - -73.440242, - 45.588905 - ], - [ - -73.439836, - 45.589215 - ], - [ - -73.439587, - 45.589392 - ], - [ - -73.439545, - 45.589422 - ], - [ - -73.43944, - 45.589489 - ], - [ - -73.439298, - 45.589588 - ], - [ - -73.438772, - 45.589939 - ], - [ - -73.438073, - 45.590343 - ], - [ - -73.437854, - 45.590472 - ], - [ - -73.436355, - 45.59135 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.437792, - 45.592431 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.43834, - 45.592837 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.440079, - 45.594121 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.442158, - 45.595675 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442992, - 45.59628 - ], - [ - -73.443305, - 45.596498 - ], - [ - -73.443394, - 45.596559 - ], - [ - -73.444803, - 45.597518 - ], - [ - -73.445261, - 45.597829 - ], - [ - -73.445346, - 45.597888 - ], - [ - -73.446259, - 45.598527 - ], - [ - -73.446713, - 45.59886 - ], - [ - -73.447005, - 45.599077 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.448105, - 45.599966 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449825, - 45.601331 - ], - [ - -73.449842, - 45.601358 - ], - [ - -73.449882, - 45.601394 - ], - [ - -73.449937, - 45.601432 - ], - [ - -73.449974, - 45.601468 - ], - [ - -73.450006, - 45.601497 - ], - [ - -73.450033, - 45.601528 - ], - [ - -73.450045, - 45.601571 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.450309, - 45.600785 - ], - [ - -73.45028, - 45.600747 - ], - [ - -73.45017, - 45.600666 - ], - [ - -73.45012, - 45.60064 - ], - [ - -73.450081, - 45.60062 - ], - [ - -73.449968, - 45.600603 - ], - [ - -73.449925, - 45.600607 - ], - [ - -73.449868, - 45.600621 - ], - [ - -73.449802, - 45.600661 - ], - [ - -73.449715, - 45.600713 - ], - [ - -73.449674, - 45.600743 - ], - [ - -73.449661, - 45.600772 - ], - [ - -73.449666, - 45.600812 - ], - [ - -73.449924, - 45.601045 - ], - [ - -73.449978, - 45.601072 - ], - [ - -73.450055, - 45.601083 - ], - [ - -73.45017, - 45.60109 - ], - [ - -73.450263, - 45.601099 - ], - [ - -73.450328, - 45.601118 - ], - [ - -73.450379, - 45.601155 - ], - [ - -73.450393, - 45.601201 - ], - [ - -73.450376, - 45.60125 - ], - [ - -73.450362, - 45.601293 - ], - [ - -73.450349, - 45.601366 - ], - [ - -73.450328, - 45.601396 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450295, - 45.60142 - ], - [ - -73.450274, - 45.60143 - ], - [ - -73.450229, - 45.60144 - ], - [ - -73.450195, - 45.601446 - ], - [ - -73.450161, - 45.601455 - ], - [ - -73.450131, - 45.601466 - ], - [ - -73.450095, - 45.601482 - ], - [ - -73.450073, - 45.601501 - ], - [ - -73.450052, - 45.601522 - ], - [ - -73.450048, - 45.601541 - ], - [ - -73.450048, - 45.601565 - ], - [ - -73.450051, - 45.601586 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450452, - 45.601873 - ], - [ - -73.45054, - 45.60193 - ], - [ - -73.450604, - 45.601966 - ], - [ - -73.450658, - 45.602007 - ], - [ - -73.450717, - 45.602019 - ], - [ - -73.450804, - 45.602087 - ], - [ - -73.450997, - 45.602236 - ], - [ - -73.451134, - 45.602344 - ], - [ - -73.45153, - 45.602655 - ], - [ - -73.45156, - 45.602679 - ], - [ - -73.452634, - 45.603524 - ], - [ - -73.452751, - 45.603609 - ], - [ - -73.453106, - 45.603884 - ] - ] - }, - "id": 148, - "properties": { - "id": "926b2d65-e2b3-4b21-98d7-f1233dd40c45", - "data": { - "gtfs": { - "shape_id": "61_2_R" - }, - "segments": [ - { - "distanceMeters": 2553, - "travelTimeSeconds": 199 - }, - { - "distanceMeters": 6987, - "travelTimeSeconds": 548 - }, - { - "distanceMeters": 1184, - "travelTimeSeconds": 93 - }, - { - "distanceMeters": 548, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 405, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 82, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 415, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 559, - "travelTimeSeconds": 120 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 15696, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6800.672553992669, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 10.06, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 9.02, - "averageSpeedWithoutDwellTimesMetersPerSecond": 10.06 - }, - "mode": "bus", - "name": "boul. De Montarville", - "color": "#A32638", - "nodes": [ - "b49806f2-28c3-484e-bd5a-b46e80d9eb6f", - "e3b3b7c9-8cf4-450f-95eb-c8f9836e391d", - "6672cb43-3241-42d7-b5c0-fdaed10338b9", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "c520acc8-980c-45c0-9195-152ad50ee471", - "18aabfcd-f4e1-4782-a757-80cdf1597763", - "6c99422e-05cb-48dc-811f-162fee50cf80", - "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", - "44ce6da8-ee79-4e09-9c16-f31566643c0c", - "7b512bac-ad2d-4d5a-87d8-173290a7b311", - "2cdb15ef-cdbd-4b50-8947-cb9baee33626", - "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "617c5711-4aaa-4c7f-bebe-63268ac405bb", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "4fcc129f-8015-4b36-a21f-2437aa91a265", - "49262d07-72b2-466f-bf49-88656466e4a4", - "9e857d67-44b9-48aa-aa36-d1284504d820", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", - "bbe875bc-cb85-4a61-923d-53ee4746a213", - "ca205394-9833-4e14-b4fa-653c28b9a37d" - ], - "stops": [], - "line_id": "edf773b4-79da-4881-a607-1b6f2dc9fb32", - "segments": [ - 0, - 45, - 217, - 276, - 308, - 322, - 324, - 327, - 337, - 347, - 354, - 356, - 364, - 367, - 373, - 379, - 386, - 390, - 394, - 398, - 401, - 407, - 455 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 148, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.453106, - 45.603884 - ], - [ - -73.453124, - 45.603897 - ], - [ - -73.453269, - 45.60401 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453904, - 45.604474 - ], - [ - -73.454133, - 45.604694 - ], - [ - -73.454539, - 45.605032 - ], - [ - -73.455171, - 45.605504 - ], - [ - -73.455782, - 45.605973 - ], - [ - -73.456001, - 45.606135 - ], - [ - -73.456106, - 45.606225 - ], - [ - -73.45638, - 45.606432 - ], - [ - -73.456464, - 45.606472 - ], - [ - -73.456606, - 45.606499 - ], - [ - -73.456615, - 45.606661 - ], - [ - -73.456615, - 45.606796 - ], - [ - -73.456613, - 45.606975 - ], - [ - -73.45661, - 45.607368 - ], - [ - -73.456599, - 45.607836 - ], - [ - -73.456596, - 45.608119 - ], - [ - -73.456594, - 45.608335 - ], - [ - -73.456582, - 45.60905 - ], - [ - -73.456558, - 45.609802 - ], - [ - -73.456534, - 45.610121 - ], - [ - -73.456537, - 45.610463 - ], - [ - -73.456508, - 45.610998 - ], - [ - -73.4565, - 45.611138 - ], - [ - -73.456491, - 45.611268 - ], - [ - -73.456473, - 45.611516 - ], - [ - -73.456449, - 45.611777 - ], - [ - -73.456429, - 45.612204 - ], - [ - -73.456415, - 45.612407 - ], - [ - -73.456403, - 45.612587 - ], - [ - -73.456367, - 45.613122 - ], - [ - -73.456346, - 45.613356 - ], - [ - -73.456315, - 45.613702 - ], - [ - -73.456295, - 45.613828 - ], - [ - -73.456125, - 45.615281 - ], - [ - -73.45606, - 45.615718 - ], - [ - -73.456015, - 45.616024 - ], - [ - -73.455984, - 45.616307 - ], - [ - -73.45596, - 45.616501 - ], - [ - -73.455915, - 45.616856 - ], - [ - -73.455888, - 45.617081 - ], - [ - -73.455879, - 45.617157 - ], - [ - -73.455855, - 45.617319 - ], - [ - -73.45581, - 45.617621 - ], - [ - -73.455729, - 45.618206 - ], - [ - -73.455676, - 45.618606 - ], - [ - -73.45562, - 45.619025 - ], - [ - -73.455571, - 45.619434 - ], - [ - -73.455479, - 45.620194 - ], - [ - -73.455459, - 45.620347 - ], - [ - -73.455364, - 45.621566 - ], - [ - -73.455345, - 45.621886 - ], - [ - -73.455319, - 45.622282 - ], - [ - -73.455228, - 45.623663 - ], - [ - -73.455153, - 45.624288 - ], - [ - -73.454435, - 45.626407 - ], - [ - -73.454258, - 45.626887 - ], - [ - -73.454243, - 45.626929 - ], - [ - -73.454024, - 45.62755 - ], - [ - -73.453834, - 45.628108 - ], - [ - -73.453601, - 45.628791 - ], - [ - -73.453393, - 45.629394 - ], - [ - -73.453358, - 45.629493 - ], - [ - -73.453315, - 45.629624 - ], - [ - -73.453257, - 45.629785 - ], - [ - -73.452942, - 45.630703 - ], - [ - -73.452778, - 45.631153 - ], - [ - -73.452686, - 45.631346 - ], - [ - -73.452502, - 45.631778 - ], - [ - -73.452393, - 45.631966 - ], - [ - -73.452319, - 45.632093 - ], - [ - -73.452094, - 45.632426 - ], - [ - -73.451773, - 45.632844 - ], - [ - -73.451693, - 45.632925 - ], - [ - -73.451614, - 45.633011 - ], - [ - -73.451195, - 45.633474 - ], - [ - -73.450679, - 45.634027 - ], - [ - -73.450136, - 45.634603 - ], - [ - -73.449434, - 45.63534 - ], - [ - -73.449285, - 45.635498 - ], - [ - -73.449067, - 45.635736 - ], - [ - -73.448723, - 45.636136 - ], - [ - -73.448535, - 45.636361 - ], - [ - -73.448252, - 45.636716 - ], - [ - -73.448132, - 45.636874 - ], - [ - -73.447778, - 45.637337 - ], - [ - -73.447634, - 45.637301 - ], - [ - -73.447384, - 45.637215 - ], - [ - -73.447064, - 45.637088 - ], - [ - -73.446874, - 45.637013 - ], - [ - -73.446777, - 45.636959 - ], - [ - -73.446639, - 45.63686 - ], - [ - -73.446407, - 45.636689 - ], - [ - -73.44625, - 45.636558 - ], - [ - -73.446134, - 45.636441 - ], - [ - -73.445951, - 45.636247 - ], - [ - -73.445769, - 45.636018 - ], - [ - -73.445712, - 45.635937 - ], - [ - -73.445634, - 45.635856 - ], - [ - -73.445562, - 45.635784 - ], - [ - -73.445466, - 45.635698 - ], - [ - -73.445268, - 45.635536 - ], - [ - -73.445104, - 45.635415 - ], - [ - -73.444983, - 45.635319 - ], - [ - -73.444715, - 45.635109 - ], - [ - -73.44467, - 45.635073 - ], - [ - -73.444422, - 45.63487 - ], - [ - -73.444148, - 45.634658 - ], - [ - -73.444049, - 45.634573 - ], - [ - -73.443845, - 45.634429 - ], - [ - -73.443242, - 45.633938 - ], - [ - -73.442909, - 45.633686 - ], - [ - -73.442563, - 45.633434 - ], - [ - -73.442416, - 45.633371 - ], - [ - -73.442362, - 45.633352 - ], - [ - -73.44208, - 45.633254 - ], - [ - -73.441599, - 45.633114 - ], - [ - -73.440824, - 45.632902 - ], - [ - -73.440392, - 45.632771 - ], - [ - -73.440856, - 45.631968 - ], - [ - -73.441271, - 45.631251 - ], - [ - -73.441456, - 45.630932 - ], - [ - -73.441684, - 45.63054 - ], - [ - -73.442088, - 45.629846 - ], - [ - -73.442765, - 45.628681 - ], - [ - -73.443114, - 45.62808 - ], - [ - -73.443605, - 45.627221 - ], - [ - -73.444022, - 45.626488 - ], - [ - -73.444573, - 45.625552 - ], - [ - -73.445177, - 45.624497 - ], - [ - -73.445387, - 45.624131 - ], - [ - -73.445586, - 45.623794 - ], - [ - -73.445824, - 45.623425 - ], - [ - -73.446146, - 45.622876 - ], - [ - -73.446834, - 45.62168 - ], - [ - -73.447011, - 45.621372 - ], - [ - -73.447396, - 45.620704 - ], - [ - -73.448364, - 45.619075 - ], - [ - -73.448491, - 45.618837 - ], - [ - -73.448632, - 45.618598 - ], - [ - -73.448637, - 45.61859 - ], - [ - -73.44919, - 45.617636 - ], - [ - -73.449512, - 45.617087 - ], - [ - -73.449827, - 45.616539 - ], - [ - -73.450142, - 45.615999 - ], - [ - -73.450551, - 45.61523 - ], - [ - -73.450957, - 45.614433 - ], - [ - -73.451219, - 45.613822 - ], - [ - -73.451496, - 45.613129 - ], - [ - -73.451588, - 45.612886 - ], - [ - -73.451764, - 45.612387 - ], - [ - -73.451963, - 45.611811 - ], - [ - -73.452004, - 45.61167 - ], - [ - -73.452038, - 45.611557 - ], - [ - -73.452151, - 45.611172 - ], - [ - -73.452319, - 45.610623 - ], - [ - -73.452502, - 45.609899 - ], - [ - -73.452742, - 45.608653 - ], - [ - -73.45283, - 45.608213 - ], - [ - -73.452838, - 45.608171 - ], - [ - -73.452894, - 45.607902 - ], - [ - -73.452956, - 45.607582 - ], - [ - -73.45303, - 45.607204 - ], - [ - -73.45313, - 45.606689 - ], - [ - -73.45351, - 45.604734 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453269, - 45.60401 - ], - [ - -73.453124, - 45.603897 - ], - [ - -73.452751, - 45.603609 - ], - [ - -73.452634, - 45.603524 - ], - [ - -73.45156, - 45.602679 - ], - [ - -73.45153, - 45.602655 - ], - [ - -73.451134, - 45.602344 - ], - [ - -73.450997, - 45.602236 - ], - [ - -73.450804, - 45.602087 - ], - [ - -73.450717, - 45.602019 - ], - [ - -73.450711, - 45.601962 - ], - [ - -73.45068, - 45.601918 - ], - [ - -73.450652, - 45.601878 - ], - [ - -73.450633, - 45.601851 - ], - [ - -73.45062, - 45.601823 - ], - [ - -73.450613, - 45.6018 - ], - [ - -73.450612, - 45.601775 - ], - [ - -73.450612, - 45.601745 - ], - [ - -73.450617, - 45.601719 - ], - [ - -73.450626, - 45.601694 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.450329, - 45.600811 - ], - [ - -73.45028, - 45.600747 - ], - [ - -73.45017, - 45.600666 - ], - [ - -73.450081, - 45.60062 - ], - [ - -73.449968, - 45.600603 - ], - [ - -73.449925, - 45.600607 - ], - [ - -73.449868, - 45.600621 - ], - [ - -73.449802, - 45.600661 - ], - [ - -73.449715, - 45.600713 - ], - [ - -73.449674, - 45.600743 - ], - [ - -73.449661, - 45.600772 - ], - [ - -73.449666, - 45.600812 - ], - [ - -73.449924, - 45.601045 - ], - [ - -73.449978, - 45.601072 - ], - [ - -73.450055, - 45.601083 - ], - [ - -73.45017, - 45.60109 - ], - [ - -73.450263, - 45.601099 - ], - [ - -73.450328, - 45.601118 - ], - [ - -73.450379, - 45.601155 - ], - [ - -73.450393, - 45.601201 - ], - [ - -73.450376, - 45.60125 - ], - [ - -73.450362, - 45.601293 - ], - [ - -73.450349, - 45.601366 - ], - [ - -73.450328, - 45.601396 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450247, - 45.601412 - ], - [ - -73.450159, - 45.601408 - ], - [ - -73.450117, - 45.6014 - ], - [ - -73.450076, - 45.601382 - ], - [ - -73.450018, - 45.601356 - ], - [ - -73.449945, - 45.60132 - ], - [ - -73.449881, - 45.6013 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.446713, - 45.59886 - ], - [ - -73.446351, - 45.598594 - ], - [ - -73.446259, - 45.598527 - ], - [ - -73.445261, - 45.597829 - ], - [ - -73.444803, - 45.597518 - ], - [ - -73.443394, - 45.596559 - ], - [ - -73.442992, - 45.59628 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438528, - 45.592975 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.436924, - 45.591152 - ], - [ - -73.437547, - 45.590791 - ], - [ - -73.438173, - 45.590429 - ], - [ - -73.438715, - 45.590114 - ], - [ - -73.438952, - 45.589961 - ], - [ - -73.439421, - 45.589651 - ], - [ - -73.439556, - 45.58957 - ], - [ - -73.43977, - 45.589417 - ], - [ - -73.43999, - 45.589251 - ], - [ - -73.440356, - 45.588972 - ], - [ - -73.440499, - 45.588855 - ], - [ - -73.440774, - 45.588622 - ], - [ - -73.440849, - 45.588559 - ], - [ - -73.441414, - 45.588033 - ], - [ - -73.441626, - 45.587839 - ], - [ - -73.442055, - 45.587448 - ], - [ - -73.442542, - 45.586998 - ], - [ - -73.4435, - 45.586126 - ], - [ - -73.444685, - 45.585042 - ], - [ - -73.445533, - 45.584264 - ], - [ - -73.446073, - 45.583824 - ], - [ - -73.446281, - 45.583662 - ], - [ - -73.446365, - 45.583594 - ], - [ - -73.446509, - 45.583477 - ], - [ - -73.446663, - 45.583334 - ], - [ - -73.446759, - 45.583239 - ], - [ - -73.446885, - 45.583095 - ], - [ - -73.447026, - 45.582915 - ], - [ - -73.44712, - 45.582776 - ], - [ - -73.447199, - 45.582634 - ], - [ - -73.447216, - 45.582605 - ], - [ - -73.447288, - 45.582456 - ], - [ - -73.447348, - 45.582322 - ], - [ - -73.447422, - 45.58211 - ], - [ - -73.447475, - 45.581885 - ], - [ - -73.447497, - 45.581732 - ], - [ - -73.447521, - 45.581602 - ], - [ - -73.447516, - 45.581462 - ], - [ - -73.447513, - 45.581287 - ], - [ - -73.447477, - 45.581057 - ], - [ - -73.447286, - 45.580117 - ], - [ - -73.447144, - 45.579424 - ], - [ - -73.447056, - 45.578992 - ], - [ - -73.447038, - 45.578907 - ], - [ - -73.446989, - 45.578673 - ], - [ - -73.446764, - 45.577557 - ], - [ - -73.446739, - 45.577429 - ], - [ - -73.446738, - 45.577422 - ], - [ - -73.446692, - 45.57717 - ], - [ - -73.446671, - 45.576945 - ], - [ - -73.446671, - 45.57667 - ], - [ - -73.446671, - 45.576571 - ], - [ - -73.44669, - 45.576436 - ], - [ - -73.446707, - 45.576333 - ], - [ - -73.446734, - 45.576243 - ], - [ - -73.446807, - 45.576018 - ], - [ - -73.446886, - 45.575843 - ], - [ - -73.446894, - 45.575825 - ], - [ - -73.447166, - 45.575249 - ], - [ - -73.447388, - 45.574789 - ], - [ - -73.447238, - 45.574749 - ], - [ - -73.446746, - 45.574587 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443252, - 45.573408 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.443147, - 45.572802 - ], - [ - -73.443228, - 45.572879 - ], - [ - -73.443273, - 45.572955 - ], - [ - -73.443271, - 45.573 - ], - [ - -73.443276, - 45.573125 - ], - [ - -73.443281, - 45.573166 - ], - [ - -73.443386, - 45.57326 - ], - [ - -73.443502, - 45.573319 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.44468, - 45.573697 - ], - [ - -73.444697, - 45.573706 - ], - [ - -73.444729, - 45.573713 - ], - [ - -73.444769, - 45.573716 - ], - [ - -73.444831, - 45.573715 - ], - [ - -73.444884, - 45.573708 - ], - [ - -73.44491, - 45.573694 - ], - [ - -73.444932, - 45.573662 - ], - [ - -73.444953, - 45.573633 - ], - [ - -73.44492, - 45.573618 - ], - [ - -73.444872, - 45.573601 - ], - [ - -73.444829, - 45.573598 - ], - [ - -73.44477, - 45.57361 - ], - [ - -73.444749, - 45.573615 - ], - [ - -73.44471, - 45.573635 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.443539, - 45.573203 - ], - [ - -73.44348, - 45.573034 - ], - [ - -73.443427, - 45.572912 - ], - [ - -73.44336, - 45.572841 - ], - [ - -73.443253, - 45.572772 - ], - [ - -73.443199, - 45.572746 - ], - [ - -73.443114, - 45.572731 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.446746, - 45.574587 - ], - [ - -73.446924, - 45.574646 - ], - [ - -73.447238, - 45.574749 - ], - [ - -73.447388, - 45.574789 - ], - [ - -73.447436, - 45.574664 - ], - [ - -73.447747, - 45.574246 - ], - [ - -73.447911, - 45.574048 - ], - [ - -73.448003, - 45.573949 - ], - [ - -73.448105, - 45.573859 - ], - [ - -73.448208, - 45.573776 - ], - [ - -73.448217, - 45.573769 - ], - [ - -73.448342, - 45.573688 - ], - [ - -73.448479, - 45.573616 - ], - [ - -73.448612, - 45.573562 - ], - [ - -73.448944, - 45.573459 - ], - [ - -73.449123, - 45.573428 - ], - [ - -73.449305, - 45.573405 - ], - [ - -73.4495, - 45.573396 - ], - [ - -73.449708, - 45.573401 - ], - [ - -73.450131, - 45.573437 - ], - [ - -73.45057, - 45.573487 - ], - [ - -73.452027, - 45.573685 - ], - [ - -73.45367, - 45.573951 - ], - [ - -73.455009, - 45.57424 - ], - [ - -73.45569, - 45.574389 - ], - [ - -73.456205, - 45.574501 - ], - [ - -73.457846, - 45.574844 - ], - [ - -73.459196, - 45.575101 - ], - [ - -73.460081, - 45.575263 - ], - [ - -73.460408, - 45.575326 - ], - [ - -73.461386, - 45.575517 - ], - [ - -73.462346, - 45.575705 - ], - [ - -73.463166, - 45.575871 - ], - [ - -73.466047, - 45.576484 - ], - [ - -73.467519, - 45.576809 - ], - [ - -73.469081, - 45.577137 - ], - [ - -73.469847, - 45.5773 - ], - [ - -73.46993, - 45.577318 - ], - [ - -73.470408, - 45.57742 - ], - [ - -73.470459, - 45.57743 - ], - [ - -73.474313, - 45.578254 - ], - [ - -73.475326, - 45.578471 - ], - [ - -73.475636, - 45.578538 - ], - [ - -73.475932, - 45.578601 - ], - [ - -73.476433, - 45.578707 - ], - [ - -73.480563, - 45.579583 - ], - [ - -73.481329, - 45.579745 - ], - [ - -73.48155, - 45.579795 - ], - [ - -73.484545, - 45.580447 - ], - [ - -73.485965, - 45.580767 - ], - [ - -73.493552, - 45.582386 - ], - [ - -73.497124, - 45.583147 - ], - [ - -73.498378, - 45.583415 - ], - [ - -73.508333, - 45.585534 - ], - [ - -73.508904, - 45.585656 - ], - [ - -73.509302, - 45.58574 - ], - [ - -73.509739, - 45.585835 - ], - [ - -73.510248, - 45.585943 - ], - [ - -73.510753, - 45.58605 - ], - [ - -73.511089, - 45.586122 - ], - [ - -73.512652, - 45.586456 - ], - [ - -73.513072, - 45.586547 - ], - [ - -73.513383, - 45.586622 - ], - [ - -73.513615, - 45.586679 - ], - [ - -73.513896, - 45.586752 - ], - [ - -73.51435, - 45.586877 - ], - [ - -73.514692, - 45.586978 - ], - [ - -73.514943, - 45.587051 - ], - [ - -73.515214, - 45.587137 - ], - [ - -73.515381, - 45.587189 - ], - [ - -73.515499, - 45.58723 - ], - [ - -73.515615, - 45.587265 - ], - [ - -73.515863, - 45.587347 - ], - [ - -73.516018, - 45.587396 - ], - [ - -73.516093, - 45.587421 - ], - [ - -73.516263, - 45.587478 - ], - [ - -73.516374, - 45.587512 - ], - [ - -73.517083, - 45.587747 - ], - [ - -73.517412, - 45.587855 - ], - [ - -73.517647, - 45.587929 - ], - [ - -73.517898, - 45.588012 - ], - [ - -73.518165, - 45.5881 - ], - [ - -73.518383, - 45.588169 - ], - [ - -73.51862, - 45.588243 - ], - [ - -73.518873, - 45.588329 - ], - [ - -73.519146, - 45.588421 - ], - [ - -73.519592, - 45.588583 - ], - [ - -73.519868, - 45.588673 - ], - [ - -73.520234, - 45.588791 - ], - [ - -73.520667, - 45.588925 - ], - [ - -73.520851, - 45.588978 - ], - [ - -73.521073, - 45.589039 - ], - [ - -73.521333, - 45.589108 - ], - [ - -73.521497, - 45.589152 - ], - [ - -73.521544, - 45.589163 - ], - [ - -73.521823, - 45.58923 - ], - [ - -73.522033, - 45.589281 - ], - [ - -73.522524, - 45.589399 - ], - [ - -73.522914, - 45.589494 - ], - [ - -73.52345, - 45.589622 - ], - [ - -73.523991, - 45.589764 - ], - [ - -73.52438, - 45.58988 - ], - [ - -73.524584, - 45.589945 - ], - [ - -73.524734, - 45.589998 - ], - [ - -73.52493, - 45.590067 - ], - [ - -73.525178, - 45.590158 - ], - [ - -73.525348, - 45.590226 - ], - [ - -73.525533, - 45.5903 - ], - [ - -73.526168, - 45.590581 - ], - [ - -73.526515, - 45.590738 - ], - [ - -73.526839, - 45.590884 - ], - [ - -73.527065, - 45.590977 - ], - [ - -73.527417, - 45.591124 - ], - [ - -73.527746, - 45.591255 - ], - [ - -73.527969, - 45.591342 - ], - [ - -73.528175, - 45.59142 - ], - [ - -73.52845, - 45.591517 - ], - [ - -73.528558, - 45.591559 - ], - [ - -73.528686, - 45.591601 - ], - [ - -73.528843, - 45.591657 - ], - [ - -73.528989, - 45.591705 - ], - [ - -73.529147, - 45.591753 - ], - [ - -73.529298, - 45.591799 - ], - [ - -73.529667, - 45.591896 - ], - [ - -73.530088, - 45.591993 - ], - [ - -73.530428, - 45.592062 - ], - [ - -73.530573, - 45.592092 - ], - [ - -73.530708, - 45.592118 - ], - [ - -73.530821, - 45.59214 - ], - [ - -73.531509, - 45.592269 - ], - [ - -73.531903, - 45.592341 - ], - [ - -73.532263, - 45.592438 - ], - [ - -73.532659, - 45.592533 - ], - [ - -73.532744, - 45.592553 - ], - [ - -73.532915, - 45.592591 - ], - [ - -73.533081, - 45.592632 - ], - [ - -73.533228, - 45.592666 - ], - [ - -73.534254, - 45.592895 - ], - [ - -73.53476, - 45.593005 - ], - [ - -73.535125, - 45.593079 - ], - [ - -73.53543, - 45.59314 - ], - [ - -73.535913, - 45.593237 - ], - [ - -73.536223, - 45.593308 - ], - [ - -73.536422, - 45.593363 - ], - [ - -73.536757, - 45.593427 - ], - [ - -73.536928, - 45.593461 - ], - [ - -73.537323, - 45.593537 - ], - [ - -73.53774, - 45.59364 - ], - [ - -73.538073, - 45.593797 - ], - [ - -73.538329, - 45.593961 - ], - [ - -73.538376, - 45.594194 - ], - [ - -73.538248, - 45.594374 - ], - [ - -73.538003, - 45.594472 - ], - [ - -73.537828, - 45.594497 - ], - [ - -73.537529, - 45.594425 - ], - [ - -73.536539, - 45.594133 - ], - [ - -73.536896, - 45.593513 - ], - [ - -73.536928, - 45.593461 - ], - [ - -73.537021, - 45.593311 - ], - [ - -73.537094, - 45.593191 - ], - [ - -73.537199, - 45.593022 - ], - [ - -73.537249, - 45.59294 - ], - [ - -73.537595, - 45.592349 - ], - [ - -73.538187, - 45.591323 - ], - [ - -73.538445, - 45.590876 - ], - [ - -73.539019, - 45.589891 - ], - [ - -73.538858, - 45.589857 - ], - [ - -73.538782, - 45.58985 - ], - [ - -73.538619, - 45.589794 - ], - [ - -73.537871, - 45.589536 - ], - [ - -73.537763, - 45.589685 - ], - [ - -73.537641, - 45.589854 - ], - [ - -73.53791, - 45.589946 - ], - [ - -73.538217, - 45.59005 - ], - [ - -73.538311, - 45.590083 - ], - [ - -73.538428, - 45.589913 - ], - [ - -73.538041, - 45.58978 - ] - ] - }, - "id": 149, - "properties": { - "id": "e390968a-8f3d-4da1-b558-834b6c1b993f", - "data": { - "gtfs": { - "shape_id": "61_2_A" - }, - "segments": [ - { - "distanceMeters": 581, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 478, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 549, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 554, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 521, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 584, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 1017, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 658, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 502, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 709, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 816, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 390, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 791, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 753, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 873, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 696, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 835, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 587, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 660, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 944, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 778, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 461, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 734, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 827, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 1058, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 810, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 726, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 701, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 636, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 1418, - "travelTimeSeconds": 63 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 22325, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 0, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 23.25, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 19.58, - "averageSpeedWithoutDwellTimesMetersPerSecond": 23.25 - }, - "mode": "bus", - "name": "Métro Radisson", - "color": "#A32638", - "nodes": [ - "ca205394-9833-4e14-b4fa-653c28b9a37d", - "dd170d68-d567-4a2d-8a93-47dec3a52cd1", - "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", - "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", - "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", - "204b558a-c106-4589-888d-4bd6528787b5", - "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", - "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", - "949c3098-32ca-4f3b-81ba-cbe506f68923", - "518135ae-62e9-44c2-bac7-e8c50c56eec9", - "148d4b0f-418e-4993-b335-f1dcd1c4df41", - "568437d9-2de5-4e5e-b111-1a7811ac5c99", - "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", - "6928ef4b-2825-4234-84d9-1c82edb211b0", - "777d67e8-62c3-46b4-a71f-e76a88b45f45", - "d04543e8-f38e-4937-b92b-1bc9ff97fd25", - "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", - "389622d0-ee1f-428b-9366-e69f134ff23e", - "02fef102-0f62-42d0-b4ed-790bc76ef1ad", - "f659a652-a61c-4199-abbc-a42f3ceef5cb", - "90b41412-0c12-4505-b7c9-b915901b1dd2", - "78a9a588-c1f0-470f-bbcc-52b6da866dad", - "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", - "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", - "253353ba-aba2-4e63-bf86-819bb7c9cecd", - "706f0077-9543-4662-8684-a321216a8a90", - "589f0f16-2c87-45fc-856c-d82dc5449f14", - "0778ac37-7369-4d81-abbc-9aa1d13b1c38", - "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", - "039c87a4-2647-4079-9a79-c7d3278ef6b2", - "e2d71c2d-a170-4ce7-a381-519755a00e36", - "a2b2c8d3-da2c-46a1-8009-597d5c6a0c19", - "ca205394-9833-4e14-b4fa-653c28b9a37d" - ], - "stops": [], - "line_id": "edf773b4-79da-4881-a607-1b6f2dc9fb32", - "segments": [ - 0, - 19, - 31, - 45, - 55, - 59, - 72, - 106, - 117, - 127, - 132, - 142, - 155, - 161, - 180, - 249, - 265, - 281, - 299, - 316, - 340, - 398, - 421, - 427, - 435, - 442, - 447, - 449, - 450, - 474, - 503, - 530 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 149, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.477962, - 45.536183 - ], - [ - -73.477686, - 45.536714 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479481, - 45.538072 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.478347, - 45.539271 - ], - [ - -73.478211, - 45.539381 - ], - [ - -73.478021, - 45.539535 - ], - [ - -73.47788, - 45.539657 - ], - [ - -73.476575, - 45.540723 - ], - [ - -73.475701, - 45.541436 - ], - [ - -73.475595, - 45.541524 - ], - [ - -73.475008, - 45.542027 - ], - [ - -73.474845, - 45.542176 - ], - [ - -73.474596, - 45.542482 - ], - [ - -73.474386, - 45.54274 - ], - [ - -73.474133, - 45.543051 - ], - [ - -73.473915, - 45.543318 - ], - [ - -73.473362, - 45.542963 - ], - [ - -73.472636, - 45.54249 - ], - [ - -73.472231, - 45.542247 - ], - [ - -73.471821, - 45.542012 - ], - [ - -73.471763, - 45.541978 - ], - [ - -73.47173, - 45.541959 - ], - [ - -73.471636, - 45.541824 - ], - [ - -73.471767, - 45.541743 - ], - [ - -73.472855, - 45.540974 - ], - [ - -73.473584, - 45.540484 - ], - [ - -73.473775, - 45.540344 - ], - [ - -73.474071, - 45.540124 - ], - [ - -73.474153, - 45.540067 - ], - [ - -73.475129, - 45.539395 - ], - [ - -73.476288, - 45.538569 - ], - [ - -73.476737, - 45.538248 - ], - [ - -73.476875, - 45.538142 - ], - [ - -73.47704, - 45.538015 - ], - [ - -73.477271, - 45.537781 - ], - [ - -73.477387, - 45.537628 - ], - [ - -73.477399, - 45.537608 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477644, - 45.537235 - ], - [ - -73.477761, - 45.537128 - ], - [ - -73.47795, - 45.537029 - ], - [ - -73.478248, - 45.536966 - ], - [ - -73.47847, - 45.536877 - ], - [ - -73.478805, - 45.536643 - ], - [ - -73.479405, - 45.535102 - ], - [ - -73.479448, - 45.534992 - ], - [ - -73.480261, - 45.532909 - ], - [ - -73.480308, - 45.532787 - ], - [ - -73.481263, - 45.530321 - ], - [ - -73.481304, - 45.530061 - ], - [ - -73.481326, - 45.530017 - ], - [ - -73.481353, - 45.529963 - ], - [ - -73.481466, - 45.529737 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.482017, - 45.528653 - ], - [ - -73.482357, - 45.528098 - ], - [ - -73.482414, - 45.528005 - ], - [ - -73.482806, - 45.527438 - ], - [ - -73.483138, - 45.526916 - ], - [ - -73.483206, - 45.526808 - ], - [ - -73.483691, - 45.526075 - ], - [ - -73.484041, - 45.525555 - ], - [ - -73.4841, - 45.525467 - ], - [ - -73.48433, - 45.525112 - ], - [ - -73.484525, - 45.524815 - ], - [ - -73.484791, - 45.524401 - ], - [ - -73.485113, - 45.523913 - ], - [ - -73.48523, - 45.523735 - ], - [ - -73.485667, - 45.523079 - ], - [ - -73.486062, - 45.52248 - ], - [ - -73.486402, - 45.521974 - ], - [ - -73.486488, - 45.521846 - ], - [ - -73.487114, - 45.52091 - ], - [ - -73.487432, - 45.520427 - ], - [ - -73.487508, - 45.520312 - ], - [ - -73.487872, - 45.519763 - ], - [ - -73.488237, - 45.519187 - ], - [ - -73.488494, - 45.518801 - ], - [ - -73.488593, - 45.518652 - ], - [ - -73.488968, - 45.518103 - ], - [ - -73.489152, - 45.517788 - ], - [ - -73.489519, - 45.517242 - ], - [ - -73.489606, - 45.517113 - ], - [ - -73.49002, - 45.51647 - ], - [ - -73.490427, - 45.515876 - ], - [ - -73.490762, - 45.515388 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.491255, - 45.514612 - ], - [ - -73.491732, - 45.513901 - ], - [ - -73.492115, - 45.513322 - ], - [ - -73.492199, - 45.513195 - ], - [ - -73.49237, - 45.512938 - ], - [ - -73.493364, - 45.512745 - ], - [ - -73.493619, - 45.512695 - ], - [ - -73.494452, - 45.512965 - ], - [ - -73.495612, - 45.513332 - ], - [ - -73.495635, - 45.51334 - ], - [ - -73.495774, - 45.513384 - ], - [ - -73.498931, - 45.514382 - ], - [ - -73.499247, - 45.514482 - ], - [ - -73.501091, - 45.515069 - ], - [ - -73.501252, - 45.51512 - ], - [ - -73.501676, - 45.515264 - ], - [ - -73.503119, - 45.515714 - ], - [ - -73.503239, - 45.515746 - ], - [ - -73.503355, - 45.515767 - ], - [ - -73.503487, - 45.515791 - ], - [ - -73.503653, - 45.515813 - ], - [ - -73.504061, - 45.515903 - ], - [ - -73.504906, - 45.516155 - ], - [ - -73.505397, - 45.516314 - ], - [ - -73.505601, - 45.51638 - ], - [ - -73.506087, - 45.516538 - ], - [ - -73.506374, - 45.516632 - ], - [ - -73.506766, - 45.516758 - ], - [ - -73.507004, - 45.516835 - ], - [ - -73.509646, - 45.51769 - ], - [ - -73.509783, - 45.517734 - ], - [ - -73.51201, - 45.518455 - ], - [ - -73.512173, - 45.518508 - ], - [ - -73.513534, - 45.51895 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515002, - 45.519422 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518898, - 45.52063 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522194, - 45.522338 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.521609, - 45.523676 - ], - [ - -73.521556, - 45.52368 - ], - [ - -73.521506, - 45.523698 - ], - [ - -73.521494, - 45.523725 - ], - [ - -73.521489, - 45.523788 - ], - [ - -73.521486, - 45.523819 - ] - ] - }, - "id": 150, - "properties": { - "id": "ce0fc8f6-ca75-444e-b19f-9448525535f4", - "data": { - "gtfs": { - "shape_id": "71_1_A" - }, - "segments": [ - { - "distanceMeters": 338, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 374, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 339, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 693, - "travelTimeSeconds": 181 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7948, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3637.0108816876414, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.3, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 4.73, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.3 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "41617015-5d74-4430-aee6-934b0fd13e70", - "5f672947-8abc-447c-bf60-535abbf76fae", - "31db3d90-e07f-4dbc-995f-00186e6ce5e0", - "1396e79d-a217-431f-ba1d-6596c1924ac0", - "3a5ea563-a764-4bb6-b2d3-d98a1c377161", - "a1edad0a-8432-4850-b895-9d97092489b6", - "f7649797-fc15-4753-8189-cbc65d444f77", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "4b62100a-5cde-4d2b-8815-1a60c1ba3220", - "d488846f-abf4-41f2-9dd0-43b9cbb645a3", - "ec90d5a6-8d45-4327-b9de-7b521004b298", - "250954ca-54cd-4e08-bea5-5c6ef0e42c4e", - "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", - "5bc0109e-fc2a-4d2a-8204-5be74af579b9", - "a87339f4-b5b3-4402-b9ee-9ea1d8fcf569", - "212f4608-5163-4f8c-b126-acfdafddd04a", - "88e6eee9-3b8c-474d-aeb4-599447d404be", - "ee7545d3-966c-460d-94a1-5e0d16623919", - "e88f5f2a-b0b5-4bb5-afb4-833f49fbaeea", - "315b8823-6c3a-493b-9af5-7325cbc48096", - "d76fa63a-1787-4749-9166-b1ecce1f4af2", - "4a0c512f-2ce4-41cc-a200-cf81d75487c1", - "09272548-09d5-4afa-a45f-80ba6dd656dd", - "4070ca4c-584b-43bd-a874-a91871fdf63a", - "9e3f5b7f-c832-420a-b6d0-a87946ebafd2", - "d2f3e0fa-8998-4ca4-96de-f858c0088aad", - "60f00f0f-eca3-4ad1-beab-4b6811c87e8c", - "e66fb997-f83d-42a0-a232-e5b0a94a0caf", - "608948b3-8ac4-493b-a2b3-48bd266c12ab", - "9da92501-0f80-4a3e-b324-83bbfa32d05c", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "1168ae71-ead9-46c4-b667-5aed1e607ad6", - "segments": [ - 0, - 9, - 12, - 16, - 22, - 27, - 36, - 44, - 53, - 55, - 60, - 64, - 67, - 70, - 75, - 79, - 82, - 86, - 90, - 94, - 98, - 104, - 107, - 109, - 114, - 119, - 124, - 125, - 127, - 129, - 134, - 140 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 150, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521486, - 45.523819 - ], - [ - -73.521481, - 45.523874 - ], - [ - -73.52149, - 45.523892 - ], - [ - -73.521509, - 45.523906 - ], - [ - -73.521542, - 45.523919 - ], - [ - -73.521581, - 45.523923 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522215, - 45.522112 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519255, - 45.520728 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514994, - 45.519327 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514253, - 45.51909 - ], - [ - -73.513885, - 45.518962 - ], - [ - -73.51387, - 45.518957 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513317, - 45.518773 - ], - [ - -73.512368, - 45.518467 - ], - [ - -73.51223, - 45.518422 - ], - [ - -73.510168, - 45.517754 - ], - [ - -73.509841, - 45.517649 - ], - [ - -73.506886, - 45.51669 - ], - [ - -73.506681, - 45.516623 - ], - [ - -73.506298, - 45.516497 - ], - [ - -73.506049, - 45.516416 - ], - [ - -73.505657, - 45.516295 - ], - [ - -73.505303, - 45.516177 - ], - [ - -73.504964, - 45.516065 - ], - [ - -73.504125, - 45.515804 - ], - [ - -73.50387, - 45.515738 - ], - [ - -73.503729, - 45.515701 - ], - [ - -73.503503, - 45.515692 - ], - [ - -73.5034, - 45.515678 - ], - [ - -73.503275, - 45.51566 - ], - [ - -73.503167, - 45.515633 - ], - [ - -73.50173, - 45.515183 - ], - [ - -73.50143, - 45.515086 - ], - [ - -73.501301, - 45.515044 - ], - [ - -73.499299, - 45.514405 - ], - [ - -73.499247, - 45.514482 - ], - [ - -73.49901, - 45.514836 - ], - [ - -73.498727, - 45.51526 - ], - [ - -73.49801, - 45.515033 - ], - [ - -73.495404, - 45.514208 - ], - [ - -73.495274, - 45.514166 - ], - [ - -73.493385, - 45.51357 - ], - [ - -73.492199, - 45.513195 - ], - [ - -73.491774, - 45.513837 - ], - [ - -73.491732, - 45.513901 - ], - [ - -73.491255, - 45.514612 - ], - [ - -73.490896, - 45.515186 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.490427, - 45.515876 - ], - [ - -73.49002, - 45.51647 - ], - [ - -73.489669, - 45.517016 - ], - [ - -73.489606, - 45.517113 - ], - [ - -73.489152, - 45.517788 - ], - [ - -73.488968, - 45.518103 - ], - [ - -73.488657, - 45.518558 - ], - [ - -73.488593, - 45.518652 - ], - [ - -73.488237, - 45.519187 - ], - [ - -73.487872, - 45.519763 - ], - [ - -73.487582, - 45.5202 - ], - [ - -73.487508, - 45.520312 - ], - [ - -73.487114, - 45.52091 - ], - [ - -73.486537, - 45.521772 - ], - [ - -73.486488, - 45.521846 - ], - [ - -73.486062, - 45.52248 - ], - [ - -73.485667, - 45.523079 - ], - [ - -73.485333, - 45.52358 - ], - [ - -73.48523, - 45.523735 - ], - [ - -73.484791, - 45.524401 - ], - [ - -73.484525, - 45.524815 - ], - [ - -73.48433, - 45.525112 - ], - [ - -73.484137, - 45.52541 - ], - [ - -73.4841, - 45.525467 - ], - [ - -73.483691, - 45.526075 - ], - [ - -73.483307, - 45.526656 - ], - [ - -73.483206, - 45.526808 - ], - [ - -73.482806, - 45.527438 - ], - [ - -73.482472, - 45.52792 - ], - [ - -73.482414, - 45.528005 - ], - [ - -73.482017, - 45.528653 - ], - [ - -73.481724, - 45.5292 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.481466, - 45.529737 - ], - [ - -73.481445, - 45.529779 - ], - [ - -73.481326, - 45.530017 - ], - [ - -73.481304, - 45.530061 - ], - [ - -73.481198, - 45.530124 - ], - [ - -73.47991, - 45.532587 - ], - [ - -73.479864, - 45.532675 - ], - [ - -73.478747, - 45.534738 - ], - [ - -73.478696, - 45.534834 - ], - [ - -73.478274, - 45.535591 - ], - [ - -73.478188, - 45.535747 - ], - [ - -73.477962, - 45.536183 - ] - ] - }, - "id": 151, - "properties": { - "id": "0b93b409-1945-41ed-ad17-2ba91d169f69", - "data": { - "gtfs": { - "shape_id": "71_1_R" - }, - "segments": [ - { - "distanceMeters": 706, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 353, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 68, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 121 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 92 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 63 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5869, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3637.0108816876414, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.75, - "travelTimeWithoutDwellTimesSeconds": 1020, - "operatingTimeWithLayoverTimeSeconds": 1200, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1020, - "operatingSpeedWithLayoverMetersPerSecond": 4.89, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.75 - }, - "mode": "bus", - "name": "boul. Curé-Poirier", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "608948b3-8ac4-493b-a2b3-48bd266c12ab", - "e66fb997-f83d-42a0-a232-e5b0a94a0caf", - "aaca7ee9-974a-47d8-922b-2905590b6265", - "37e8736b-c9d0-4a33-a437-1f0196c113f1", - "9e3f5b7f-c832-420a-b6d0-a87946ebafd2", - "4070ca4c-584b-43bd-a874-a91871fdf63a", - "3760f02e-7f2c-4906-8d8a-455bbf644cec", - "2c0958f9-14bd-4467-9157-d96db49f68da", - "5e6dbb10-5962-4ed1-802d-bc3c0e5d2742", - "315b8823-6c3a-493b-9af5-7325cbc48096", - "e88f5f2a-b0b5-4bb5-afb4-833f49fbaeea", - "ee7545d3-966c-460d-94a1-5e0d16623919", - "88e6eee9-3b8c-474d-aeb4-599447d404be", - "212f4608-5163-4f8c-b126-acfdafddd04a", - "a87339f4-b5b3-4402-b9ee-9ea1d8fcf569", - "5bc0109e-fc2a-4d2a-8204-5be74af579b9", - "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", - "250954ca-54cd-4e08-bea5-5c6ef0e42c4e", - "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", - "48e0fb78-b91c-4eec-a77a-11ad01e61d0c", - "d488846f-abf4-41f2-9dd0-43b9cbb645a3", - "24abc23f-a2cf-493e-ad62-b789edf9cd26", - "41617015-5d74-4430-aee6-934b0fd13e70" - ], - "stops": [], - "line_id": "1168ae71-ead9-46c4-b667-5aed1e607ad6", - "segments": [ - 0, - 46, - 53, - 60, - 62, - 64, - 69, - 72, - 79, - 85, - 86, - 90, - 93, - 97, - 101, - 105, - 108, - 112, - 117, - 120, - 123, - 126, - 129, - 133, - 135 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 151, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.477962, - 45.536183 - ], - [ - -73.477686, - 45.536714 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.478347, - 45.539271 - ], - [ - -73.478021, - 45.539535 - ], - [ - -73.47788, - 45.539657 - ], - [ - -73.476575, - 45.540723 - ], - [ - -73.475595, - 45.541524 - ], - [ - -73.475008, - 45.542027 - ], - [ - -73.474845, - 45.542176 - ], - [ - -73.474596, - 45.542482 - ], - [ - -73.474386, - 45.54274 - ], - [ - -73.473915, - 45.543318 - ], - [ - -73.473362, - 45.542963 - ], - [ - -73.472636, - 45.54249 - ], - [ - -73.472231, - 45.542247 - ], - [ - -73.471763, - 45.541978 - ], - [ - -73.47173, - 45.541959 - ], - [ - -73.471636, - 45.541824 - ], - [ - -73.471767, - 45.541743 - ], - [ - -73.471798, - 45.541721 - ], - [ - -73.472855, - 45.540974 - ], - [ - -73.473584, - 45.540484 - ], - [ - -73.473775, - 45.540344 - ], - [ - -73.474071, - 45.540124 - ], - [ - -73.475129, - 45.539395 - ], - [ - -73.476288, - 45.538569 - ], - [ - -73.476737, - 45.538248 - ], - [ - -73.476875, - 45.538142 - ], - [ - -73.47704, - 45.538015 - ], - [ - -73.477271, - 45.537781 - ], - [ - -73.477387, - 45.537628 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477644, - 45.537235 - ], - [ - -73.477761, - 45.537128 - ], - [ - -73.47795, - 45.537029 - ], - [ - -73.478248, - 45.536966 - ], - [ - -73.47847, - 45.536877 - ], - [ - -73.478805, - 45.536643 - ], - [ - -73.478827, - 45.536587 - ], - [ - -73.479448, - 45.534992 - ], - [ - -73.480308, - 45.532787 - ], - [ - -73.481263, - 45.530321 - ], - [ - -73.481304, - 45.530061 - ], - [ - -73.481326, - 45.530017 - ], - [ - -73.481466, - 45.529737 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.482017, - 45.528653 - ], - [ - -73.482414, - 45.528005 - ], - [ - -73.482806, - 45.527438 - ], - [ - -73.483206, - 45.526808 - ], - [ - -73.483537, - 45.526307 - ], - [ - -73.483691, - 45.526075 - ], - [ - -73.4841, - 45.525467 - ], - [ - -73.48433, - 45.525112 - ], - [ - -73.484525, - 45.524815 - ], - [ - -73.484791, - 45.524401 - ], - [ - -73.48523, - 45.523735 - ], - [ - -73.485667, - 45.523079 - ], - [ - -73.486062, - 45.52248 - ], - [ - -73.486488, - 45.521846 - ], - [ - -73.487114, - 45.52091 - ], - [ - -73.487508, - 45.520312 - ], - [ - -73.487872, - 45.519763 - ], - [ - -73.488235, - 45.51919 - ], - [ - -73.488237, - 45.519187 - ], - [ - -73.488593, - 45.518652 - ], - [ - -73.488968, - 45.518103 - ], - [ - -73.489152, - 45.517788 - ], - [ - -73.489606, - 45.517113 - ], - [ - -73.49002, - 45.51647 - ], - [ - -73.490427, - 45.515876 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.491255, - 45.514612 - ], - [ - -73.491732, - 45.513901 - ], - [ - -73.492199, - 45.513195 - ], - [ - -73.49237, - 45.512938 - ], - [ - -73.493364, - 45.512745 - ], - [ - -73.493619, - 45.512695 - ], - [ - -73.494452, - 45.512965 - ], - [ - -73.495307, - 45.513236 - ], - [ - -73.495635, - 45.51334 - ], - [ - -73.495774, - 45.513384 - ], - [ - -73.499247, - 45.514482 - ], - [ - -73.501252, - 45.51512 - ], - [ - -73.501676, - 45.515264 - ], - [ - -73.503119, - 45.515714 - ], - [ - -73.503239, - 45.515746 - ], - [ - -73.503487, - 45.515791 - ], - [ - -73.503653, - 45.515813 - ], - [ - -73.504061, - 45.515903 - ], - [ - -73.504906, - 45.516155 - ], - [ - -73.505601, - 45.51638 - ], - [ - -73.506087, - 45.516538 - ], - [ - -73.506374, - 45.516632 - ], - [ - -73.506766, - 45.516758 - ], - [ - -73.509517, - 45.517648 - ], - [ - -73.509783, - 45.517734 - ], - [ - -73.512173, - 45.518508 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522194, - 45.522338 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.521609, - 45.523676 - ], - [ - -73.521556, - 45.52368 - ], - [ - -73.521506, - 45.523698 - ], - [ - -73.521494, - 45.523725 - ], - [ - -73.521489, - 45.523788 - ], - [ - -73.521486, - 45.523819 - ] - ] - }, - "id": 152, - "properties": { - "id": "9b8332d9-ebb1-456d-9866-b7d5e7e3d406", - "data": { - "gtfs": { - "shape_id": "71_1_A" - }, - "segments": [ - { - "distanceMeters": 1352, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 800, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 1204, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 872, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 1012, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 1212, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 1496, - "travelTimeSeconds": 73 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7948, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 167.1576570680154, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 22.08, - "travelTimeWithoutDwellTimesSeconds": 360, - "operatingTimeWithLayoverTimeSeconds": 540, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 360, - "operatingSpeedWithLayoverMetersPerSecond": 14.72, - "averageSpeedWithoutDwellTimesMetersPerSecond": 22.08 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "41617015-5d74-4430-aee6-934b0fd13e70", - "5f672947-8abc-447c-bf60-535abbf76fae", - "31db3d90-e07f-4dbc-995f-00186e6ce5e0", - "1396e79d-a217-431f-ba1d-6596c1924ac0", - "3a5ea563-a764-4bb6-b2d3-d98a1c377161", - "a1edad0a-8432-4850-b895-9d97092489b6", - "f7649797-fc15-4753-8189-cbc65d444f77", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7" - ], - "stops": [], - "line_id": "1168ae71-ead9-46c4-b667-5aed1e607ad6", - "segments": [ - 0, - 27, - 47, - 59, - 72, - 88, - 104 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 152, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.457475, - 45.518459 - ], - [ - -73.457496, - 45.518478 - ], - [ - -73.457557, - 45.518527 - ], - [ - -73.457569, - 45.518527 - ], - [ - -73.457816, - 45.518604 - ], - [ - -73.458054, - 45.518618 - ], - [ - -73.458153, - 45.5186 - ], - [ - -73.458265, - 45.518568 - ], - [ - -73.458385, - 45.518523 - ], - [ - -73.458481, - 45.51846 - ], - [ - -73.458593, - 45.518303 - ], - [ - -73.458982, - 45.517723 - ], - [ - -73.458702, - 45.517621 - ], - [ - -73.458025, - 45.517374 - ], - [ - -73.457868, - 45.517317 - ], - [ - -73.456975, - 45.516997 - ], - [ - -73.456441, - 45.516772 - ], - [ - -73.456248, - 45.516691 - ], - [ - -73.455542, - 45.516417 - ], - [ - -73.455236, - 45.516302 - ], - [ - -73.454979, - 45.516206 - ], - [ - -73.454831, - 45.516151 - ], - [ - -73.454013, - 45.515854 - ], - [ - -73.455202, - 45.514131 - ], - [ - -73.455279, - 45.514018 - ], - [ - -73.456161, - 45.512754 - ], - [ - -73.456504, - 45.512268 - ], - [ - -73.456608, - 45.51212 - ], - [ - -73.456698, - 45.51199 - ], - [ - -73.456753, - 45.511846 - ], - [ - -73.456808, - 45.511652 - ], - [ - -73.456888, - 45.511378 - ], - [ - -73.45704, - 45.510771 - ], - [ - -73.457089, - 45.510627 - ], - [ - -73.457162, - 45.510496 - ], - [ - -73.457236, - 45.510384 - ], - [ - -73.457391, - 45.510154 - ], - [ - -73.457734, - 45.509682 - ], - [ - -73.457832, - 45.509547 - ], - [ - -73.458054, - 45.509219 - ], - [ - -73.458146, - 45.509057 - ], - [ - -73.458208, - 45.508913 - ], - [ - -73.458247, - 45.508832 - ], - [ - -73.458287, - 45.508665 - ], - [ - -73.458312, - 45.508463 - ], - [ - -73.458313, - 45.508315 - ], - [ - -73.458163, - 45.508323 - ], - [ - -73.458045, - 45.508331 - ], - [ - -73.457712, - 45.508354 - ], - [ - -73.456906, - 45.508408 - ], - [ - -73.456055, - 45.508471 - ], - [ - -73.45574, - 45.508494 - ], - [ - -73.454618, - 45.50857 - ], - [ - -73.453912, - 45.508619 - ], - [ - -73.453476, - 45.50865 - ], - [ - -73.452659, - 45.508713 - ], - [ - -73.452308, - 45.50874 - ], - [ - -73.451594, - 45.508784 - ], - [ - -73.451512, - 45.508816 - ], - [ - -73.451476, - 45.508843 - ], - [ - -73.451466, - 45.508892 - ], - [ - -73.451538, - 45.509395 - ], - [ - -73.451588, - 45.509738 - ], - [ - -73.451657, - 45.510181 - ], - [ - -73.451682, - 45.510341 - ], - [ - -73.451973, - 45.510422 - ], - [ - -73.452035, - 45.510443 - ], - [ - -73.452277, - 45.510526 - ], - [ - -73.45322, - 45.510876 - ], - [ - -73.453343, - 45.510922 - ], - [ - -73.454142, - 45.511217 - ], - [ - -73.455144, - 45.511587 - ], - [ - -73.455589, - 45.511751 - ], - [ - -73.456374, - 45.512037 - ], - [ - -73.456479, - 45.512075 - ], - [ - -73.456608, - 45.51212 - ], - [ - -73.457632, - 45.512503 - ], - [ - -73.458519, - 45.512827 - ], - [ - -73.459541, - 45.51322 - ], - [ - -73.45968, - 45.513273 - ], - [ - -73.460138, - 45.51344 - ], - [ - -73.460261, - 45.513273 - ], - [ - -73.460623, - 45.512783 - ], - [ - -73.461001, - 45.512272 - ], - [ - -73.461069, - 45.51218 - ], - [ - -73.461539, - 45.511564 - ], - [ - -73.46197, - 45.510961 - ], - [ - -73.462383, - 45.510395 - ], - [ - -73.462553, - 45.510233 - ], - [ - -73.462779, - 45.510066 - ], - [ - -73.463045, - 45.509936 - ], - [ - -73.463106, - 45.509911 - ], - [ - -73.463381, - 45.509801 - ], - [ - -73.463431, - 45.509882 - ], - [ - -73.463519, - 45.509999 - ], - [ - -73.463611, - 45.510088 - ], - [ - -73.463631, - 45.510107 - ], - [ - -73.463794, - 45.510215 - ], - [ - -73.464529, - 45.510665 - ], - [ - -73.464919, - 45.510915 - ], - [ - -73.465268, - 45.511138 - ], - [ - -73.464982, - 45.511318 - ], - [ - -73.464762, - 45.511493 - ], - [ - -73.464626, - 45.511606 - ], - [ - -73.464478, - 45.511745 - ], - [ - -73.464282, - 45.512001 - ], - [ - -73.463932, - 45.512501 - ], - [ - -73.463557, - 45.513003 - ], - [ - -73.463478, - 45.513108 - ], - [ - -73.463065, - 45.513684 - ], - [ - -73.462747, - 45.514125 - ], - [ - -73.462726, - 45.514155 - ], - [ - -73.462602, - 45.514327 - ], - [ - -73.462954, - 45.51446 - ], - [ - -73.464082, - 45.514885 - ], - [ - -73.465771, - 45.515522 - ], - [ - -73.465949, - 45.515589 - ], - [ - -73.466056, - 45.515628 - ], - [ - -73.466138, - 45.51566 - ], - [ - -73.466232, - 45.515695 - ], - [ - -73.466474, - 45.515795 - ], - [ - -73.466702, - 45.515853 - ], - [ - -73.466807, - 45.515867 - ], - [ - -73.466838, - 45.515871 - ], - [ - -73.466992, - 45.515894 - ], - [ - -73.467576, - 45.515962 - ], - [ - -73.467711, - 45.515993 - ], - [ - -73.467803, - 45.516016 - ], - [ - -73.467947, - 45.51607 - ], - [ - -73.46809, - 45.516124 - ], - [ - -73.468254, - 45.516187 - ], - [ - -73.468571, - 45.51575 - ], - [ - -73.468993, - 45.515905 - ], - [ - -73.472494, - 45.517187 - ], - [ - -73.472524, - 45.517197 - ], - [ - -73.472693, - 45.517254 - ], - [ - -73.473088, - 45.517412 - ], - [ - -73.473656, - 45.51761 - ], - [ - -73.47566, - 45.518326 - ], - [ - -73.476615, - 45.51865 - ], - [ - -73.476759, - 45.51865 - ], - [ - -73.476929, - 45.518627 - ], - [ - -73.477134, - 45.518529 - ], - [ - -73.477396, - 45.518622 - ], - [ - -73.477613, - 45.5187 - ], - [ - -73.477896, - 45.51831 - ], - [ - -73.478269, - 45.517795 - ], - [ - -73.478446, - 45.517555 - ], - [ - -73.478676, - 45.517242 - ], - [ - -73.479419, - 45.517499 - ], - [ - -73.480051, - 45.517717 - ], - [ - -73.480625, - 45.517916 - ], - [ - -73.481238, - 45.518128 - ], - [ - -73.481789, - 45.518318 - ], - [ - -73.481931, - 45.518367 - ], - [ - -73.48228, - 45.51849 - ], - [ - -73.482651, - 45.51862 - ], - [ - -73.484182, - 45.519156 - ], - [ - -73.484224, - 45.519171 - ], - [ - -73.484747, - 45.519354 - ], - [ - -73.484886, - 45.519403 - ], - [ - -73.487078, - 45.520163 - ], - [ - -73.487389, - 45.520271 - ], - [ - -73.487508, - 45.520312 - ], - [ - -73.487872, - 45.520438 - ], - [ - -73.488243, - 45.520566 - ], - [ - -73.490748, - 45.521428 - ], - [ - -73.490877, - 45.521473 - ], - [ - -73.492238, - 45.521946 - ], - [ - -73.493734, - 45.522466 - ], - [ - -73.493855, - 45.522508 - ], - [ - -73.496555, - 45.523453 - ], - [ - -73.496788, - 45.523534 - ], - [ - -73.49715, - 45.52366 - ], - [ - -73.499753, - 45.524564 - ], - [ - -73.499894, - 45.524635 - ], - [ - -73.500013, - 45.524695 - ], - [ - -73.500147, - 45.524758 - ], - [ - -73.500458, - 45.524879 - ], - [ - -73.501143, - 45.525113 - ], - [ - -73.502371, - 45.525517 - ], - [ - -73.502691, - 45.525622 - ], - [ - -73.503591, - 45.525919 - ], - [ - -73.505271, - 45.526473 - ], - [ - -73.505347, - 45.526499 - ], - [ - -73.506628, - 45.52692 - ], - [ - -73.506756, - 45.526962 - ], - [ - -73.507316, - 45.527151 - ], - [ - -73.510077, - 45.528048 - ], - [ - -73.510194, - 45.528086 - ], - [ - -73.510236, - 45.528108 - ], - [ - -73.510285, - 45.528134 - ], - [ - -73.510385, - 45.528186 - ], - [ - -73.510473, - 45.528213 - ], - [ - -73.512606, - 45.528919 - ], - [ - -73.51289, - 45.529013 - ], - [ - -73.513005, - 45.529045 - ], - [ - -73.513248, - 45.529135 - ], - [ - -73.513336, - 45.529202 - ], - [ - -73.513366, - 45.529261 - ], - [ - -73.513446, - 45.529391 - ], - [ - -73.513457, - 45.529436 - ], - [ - -73.51347, - 45.529553 - ], - [ - -73.513494, - 45.529621 - ], - [ - -73.513538, - 45.52967 - ], - [ - -73.513588, - 45.529733 - ], - [ - -73.513638, - 45.529769 - ], - [ - -73.513734, - 45.529818 - ], - [ - -73.514759, - 45.53017 - ], - [ - -73.514771, - 45.530174 - ], - [ - -73.514912, - 45.530221 - ], - [ - -73.516478, - 45.530744 - ], - [ - -73.516786, - 45.530847 - ], - [ - -73.516824, - 45.53086 - ], - [ - -73.516951, - 45.530902 - ], - [ - -73.517254, - 45.531006 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518212, - 45.531168 - ], - [ - -73.51845, - 45.53088 - ], - [ - -73.518608, - 45.530695 - ], - [ - -73.518713, - 45.530574 - ], - [ - -73.518834, - 45.53043 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519035, - 45.530137 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519398, - 45.526003 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 153, - "properties": { - "id": "3e6396bf-57fa-4784-b05f-5d70c2371c5b", - "data": { - "gtfs": { - "shape_id": "73_1_A" - }, - "segments": [ - { - "distanceMeters": 264, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 88, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 90, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 417, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 425, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 310, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 311, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 725, - "travelTimeSeconds": 156 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 116 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10213, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5011.742126295151, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.08, - "travelTimeWithoutDwellTimesSeconds": 1680, - "operatingTimeWithLayoverTimeSeconds": 1860, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1680, - "operatingSpeedWithLayoverMetersPerSecond": 5.49, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.08 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "6fe3defb-8d6f-405c-8fb2-44b73532b240", - "329dac46-2c72-4ec4-aeeb-8492af5be014", - "ff7f9dbf-a0e0-4bfa-86dc-2f9a0bdd5926", - "4ecd13b4-71e4-4328-bc7f-b30325894d82", - "065b0112-1102-48ec-b10a-c88cde002f4f", - "77540404-5599-4bb2-b15d-add1fcb9fe20", - "1fdfd4f4-c553-4a7d-8963-4eb750e13bff", - "98d2ace5-e4e8-4113-91e3-89c01d89a89f", - "3dcc9db5-75c0-46a8-8247-d3d2e0220e07", - "e10756d4-095f-4fec-94fb-19ac7075bc43", - "e7cd0200-d7e2-4808-b4af-d251dcc23019", - "b79429dc-e0f7-44a7-b564-ff6f9831d545", - "065b0112-1102-48ec-b10a-c88cde002f4f", - "d8f16090-e69f-45d8-b535-45f45ab1b739", - "7183eaac-7645-401f-919b-91209487af61", - "3d29747a-7b75-4b0e-ad8a-50eec4e70061", - "5b565a57-bd7f-42f0-a279-0af0bf5f2a4d", - "0751a485-9efa-4491-b69f-eed5163417d8", - "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", - "5ca73944-03b3-4fca-ab1f-781dd6f959a4", - "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", - "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9", - "41c46bd6-8021-4abc-88c9-f9d4d32afe26", - "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", - "40cc5489-ce8f-4df1-916b-c682450d39d7", - "e9c79425-c47b-44ec-82ff-b480b97ceae7", - "e31a1f56-4ede-4f4f-a7a7-2fdbee444a41", - "88e6eee9-3b8c-474d-aeb4-599447d404be", - "a63c10e3-b289-47b6-9867-4d82c043e2cb", - "a76bf032-5164-44ff-92fb-30023319517e", - "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "d41672d0-e186-418e-b20f-1d82b60c3365", - "3166d228-f358-4741-9950-420cebd0aa4c", - "20a17f7f-4c8c-4119-ac8f-7160c6595370", - "43f366d5-ac33-41ca-be94-6282f0233cd1", - "0abd44bc-ce59-4161-a0a7-b31176db0e89", - "05160b93-3ef3-4dd9-83e8-740d2dc282d9", - "1f0868f3-8164-4687-b1c9-c08ae88ce2f3", - "75f8e698-ddc5-4206-bed4-8258ad166d7e", - "4fb4515b-e129-4622-b855-89143c2fd488", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "9f852c1c-4b54-4204-a46d-ef0fcc79ef7a", - "segments": [ - 0, - 13, - 20, - 23, - 26, - 37, - 48, - 50, - 53, - 61, - 63, - 68, - 73, - 78, - 83, - 91, - 99, - 107, - 110, - 115, - 122, - 129, - 134, - 143, - 147, - 153, - 159, - 162, - 166, - 169, - 171, - 175, - 180, - 183, - 185, - 190, - 194, - 210, - 212, - 234 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 153, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519446, - 45.523424 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519332, - 45.526816 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517858, - 45.526792 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517465, - 45.528168 - ], - [ - -73.517458, - 45.528249 - ], - [ - -73.517471, - 45.528385 - ], - [ - -73.517504, - 45.528565 - ], - [ - -73.517516, - 45.528652 - ], - [ - -73.517553, - 45.52877 - ], - [ - -73.517635, - 45.529002 - ], - [ - -73.517693, - 45.529249 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.517924, - 45.530466 - ], - [ - -73.517924, - 45.530565 - ], - [ - -73.517923, - 45.530682 - ], - [ - -73.517904, - 45.530799 - ], - [ - -73.517858, - 45.530853 - ], - [ - -73.517828, - 45.530889 - ], - [ - -73.517788, - 45.53092 - ], - [ - -73.517759, - 45.530933 - ], - [ - -73.517724, - 45.530947 - ], - [ - -73.517669, - 45.530974 - ], - [ - -73.517613, - 45.530983 - ], - [ - -73.517533, - 45.530997 - ], - [ - -73.517254, - 45.531006 - ], - [ - -73.516951, - 45.530902 - ], - [ - -73.516824, - 45.53086 - ], - [ - -73.51664, - 45.530799 - ], - [ - -73.516478, - 45.530744 - ], - [ - -73.514771, - 45.530174 - ], - [ - -73.514759, - 45.53017 - ], - [ - -73.514639, - 45.530129 - ], - [ - -73.513734, - 45.529818 - ], - [ - -73.513638, - 45.529769 - ], - [ - -73.513588, - 45.529733 - ], - [ - -73.513538, - 45.52967 - ], - [ - -73.513494, - 45.529621 - ], - [ - -73.51347, - 45.529553 - ], - [ - -73.513457, - 45.529436 - ], - [ - -73.513446, - 45.529391 - ], - [ - -73.513471, - 45.529252 - ], - [ - -73.513425, - 45.529166 - ], - [ - -73.513314, - 45.529076 - ], - [ - -73.513051, - 45.528977 - ], - [ - -73.51294, - 45.528941 - ], - [ - -73.512091, - 45.528661 - ], - [ - -73.510517, - 45.528141 - ], - [ - -73.510429, - 45.528114 - ], - [ - -73.510285, - 45.528097 - ], - [ - -73.510194, - 45.528086 - ], - [ - -73.509273, - 45.527787 - ], - [ - -73.507529, - 45.52722 - ], - [ - -73.507316, - 45.527151 - ], - [ - -73.506756, - 45.526962 - ], - [ - -73.5055, - 45.526549 - ], - [ - -73.505347, - 45.526499 - ], - [ - -73.503591, - 45.525919 - ], - [ - -73.502833, - 45.525669 - ], - [ - -73.502691, - 45.525622 - ], - [ - -73.501143, - 45.525113 - ], - [ - -73.500458, - 45.524879 - ], - [ - -73.500147, - 45.524758 - ], - [ - -73.500146, - 45.524757 - ], - [ - -73.500013, - 45.524695 - ], - [ - -73.499753, - 45.524564 - ], - [ - -73.49715, - 45.52366 - ], - [ - -73.496944, - 45.523588 - ], - [ - -73.496788, - 45.523534 - ], - [ - -73.49395, - 45.522541 - ], - [ - -73.493855, - 45.522508 - ], - [ - -73.492238, - 45.521946 - ], - [ - -73.490999, - 45.521515 - ], - [ - -73.490877, - 45.521473 - ], - [ - -73.488564, - 45.520676 - ], - [ - -73.488243, - 45.520566 - ], - [ - -73.487872, - 45.520438 - ], - [ - -73.487606, - 45.520346 - ], - [ - -73.487508, - 45.520312 - ], - [ - -73.487078, - 45.520163 - ], - [ - -73.484987, - 45.519438 - ], - [ - -73.484886, - 45.519403 - ], - [ - -73.484224, - 45.519171 - ], - [ - -73.484182, - 45.519156 - ], - [ - -73.482651, - 45.51862 - ], - [ - -73.48228, - 45.51849 - ], - [ - -73.482075, - 45.518418 - ], - [ - -73.481931, - 45.518367 - ], - [ - -73.481238, - 45.518128 - ], - [ - -73.480625, - 45.517916 - ], - [ - -73.479419, - 45.517499 - ], - [ - -73.478857, - 45.517304 - ], - [ - -73.478676, - 45.517242 - ], - [ - -73.478461, - 45.517535 - ], - [ - -73.478269, - 45.517795 - ], - [ - -73.477613, - 45.5187 - ], - [ - -73.477397, - 45.518622 - ], - [ - -73.477236, - 45.518565 - ], - [ - -73.477134, - 45.518529 - ], - [ - -73.476929, - 45.518627 - ], - [ - -73.476759, - 45.51865 - ], - [ - -73.476615, - 45.51865 - ], - [ - -73.47566, - 45.518326 - ], - [ - -73.473656, - 45.51761 - ], - [ - -73.473088, - 45.517412 - ], - [ - -73.472997, - 45.517376 - ], - [ - -73.472693, - 45.517254 - ], - [ - -73.472494, - 45.517187 - ], - [ - -73.468979, - 45.5159 - ], - [ - -73.468571, - 45.51575 - ], - [ - -73.468254, - 45.516187 - ], - [ - -73.467947, - 45.51607 - ], - [ - -73.467803, - 45.516016 - ], - [ - -73.467711, - 45.515993 - ], - [ - -73.467576, - 45.515962 - ], - [ - -73.466992, - 45.515894 - ], - [ - -73.466838, - 45.515871 - ], - [ - -73.466702, - 45.515853 - ], - [ - -73.466474, - 45.515795 - ], - [ - -73.466367, - 45.515751 - ], - [ - -73.466232, - 45.515695 - ], - [ - -73.466138, - 45.51566 - ], - [ - -73.466056, - 45.515628 - ], - [ - -73.465949, - 45.515589 - ], - [ - -73.464082, - 45.514885 - ], - [ - -73.463063, - 45.514501 - ], - [ - -73.462602, - 45.514327 - ], - [ - -73.462726, - 45.514155 - ], - [ - -73.463065, - 45.513684 - ], - [ - -73.463478, - 45.513108 - ], - [ - -73.46386, - 45.512598 - ], - [ - -73.463932, - 45.512501 - ], - [ - -73.464282, - 45.512001 - ], - [ - -73.464478, - 45.511745 - ], - [ - -73.464626, - 45.511606 - ], - [ - -73.464762, - 45.511493 - ], - [ - -73.464982, - 45.511318 - ], - [ - -73.465008, - 45.511301 - ], - [ - -73.465268, - 45.511138 - ], - [ - -73.464812, - 45.510846 - ], - [ - -73.464529, - 45.510665 - ], - [ - -73.463794, - 45.510215 - ], - [ - -73.463631, - 45.510107 - ], - [ - -73.463519, - 45.509999 - ], - [ - -73.463476, - 45.509942 - ], - [ - -73.463431, - 45.509882 - ], - [ - -73.463381, - 45.509801 - ], - [ - -73.463045, - 45.509936 - ], - [ - -73.462779, - 45.510066 - ], - [ - -73.462553, - 45.510233 - ], - [ - -73.462383, - 45.510395 - ], - [ - -73.462003, - 45.510916 - ], - [ - -73.46197, - 45.510961 - ], - [ - -73.461539, - 45.511564 - ], - [ - -73.461157, - 45.512065 - ], - [ - -73.461069, - 45.51218 - ], - [ - -73.460623, - 45.512783 - ], - [ - -73.460194, - 45.513364 - ], - [ - -73.460138, - 45.51344 - ], - [ - -73.459872, - 45.513343 - ], - [ - -73.45968, - 45.513273 - ], - [ - -73.458666, - 45.512884 - ], - [ - -73.458519, - 45.512827 - ], - [ - -73.457632, - 45.512503 - ], - [ - -73.456763, - 45.512178 - ], - [ - -73.456608, - 45.51212 - ], - [ - -73.456479, - 45.512075 - ], - [ - -73.455589, - 45.511751 - ], - [ - -73.455144, - 45.511587 - ], - [ - -73.454142, - 45.511217 - ], - [ - -73.453539, - 45.510994 - ], - [ - -73.453343, - 45.510922 - ], - [ - -73.452277, - 45.510526 - ], - [ - -73.451973, - 45.510422 - ], - [ - -73.451828, - 45.510382 - ], - [ - -73.451682, - 45.510341 - ], - [ - -73.451588, - 45.509738 - ], - [ - -73.451505, - 45.509164 - ], - [ - -73.451466, - 45.508892 - ], - [ - -73.451476, - 45.508843 - ], - [ - -73.451512, - 45.508816 - ], - [ - -73.451594, - 45.508784 - ], - [ - -73.451816, - 45.50877 - ], - [ - -73.452308, - 45.50874 - ], - [ - -73.452659, - 45.508713 - ], - [ - -73.453272, - 45.508666 - ], - [ - -73.453476, - 45.50865 - ], - [ - -73.454618, - 45.50857 - ], - [ - -73.455619, - 45.508502 - ], - [ - -73.45574, - 45.508494 - ], - [ - -73.456906, - 45.508408 - ], - [ - -73.458029, - 45.508333 - ], - [ - -73.458163, - 45.508323 - ], - [ - -73.458169, - 45.508458 - ], - [ - -73.458145, - 45.508652 - ], - [ - -73.458115, - 45.508773 - ], - [ - -73.458072, - 45.508881 - ], - [ - -73.458056, - 45.508918 - ], - [ - -73.458012, - 45.509021 - ], - [ - -73.457924, - 45.509178 - ], - [ - -73.457755, - 45.509426 - ], - [ - -73.457704, - 45.509502 - ], - [ - -73.457273, - 45.510105 - ], - [ - -73.457109, - 45.510339 - ], - [ - -73.457034, - 45.51046 - ], - [ - -73.456955, - 45.5106 - ], - [ - -73.456904, - 45.510748 - ], - [ - -73.456748, - 45.51131 - ], - [ - -73.456616, - 45.511823 - ], - [ - -73.456565, - 45.511954 - ], - [ - -73.456558, - 45.511964 - ], - [ - -73.456479, - 45.512075 - ], - [ - -73.456035, - 45.512709 - ], - [ - -73.455222, - 45.513885 - ], - [ - -73.455157, - 45.513978 - ], - [ - -73.454374, - 45.515104 - ], - [ - -73.454257, - 45.515272 - ], - [ - -73.453884, - 45.515808 - ], - [ - -73.454013, - 45.515854 - ], - [ - -73.454366, - 45.515982 - ], - [ - -73.454831, - 45.516151 - ], - [ - -73.455236, - 45.516302 - ], - [ - -73.455505, - 45.516403 - ], - [ - -73.455542, - 45.516417 - ], - [ - -73.456248, - 45.516691 - ], - [ - -73.456441, - 45.516772 - ], - [ - -73.456975, - 45.516997 - ], - [ - -73.457301, - 45.517114 - ], - [ - -73.457868, - 45.517317 - ], - [ - -73.457427, - 45.517884 - ], - [ - -73.457318, - 45.518118 - ], - [ - -73.457329, - 45.518248 - ], - [ - -73.457353, - 45.518325 - ], - [ - -73.457425, - 45.518415 - ], - [ - -73.457475, - 45.518459 - ] - ] - }, - "id": 154, - "properties": { - "id": "5469b770-5d8c-42ac-80a8-71e88959775f", - "data": { - "gtfs": { - "shape_id": "73_1_R" - }, - "segments": [ - { - "distanceMeters": 1308, - "travelTimeSeconds": 178 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 48 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10117, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5011.742126295151, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.74, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 6.02, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.74 - }, - "mode": "bus", - "name": "de Fontainebleau", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "75f8e698-ddc5-4206-bed4-8258ad166d7e", - "1f0868f3-8164-4687-b1c9-c08ae88ce2f3", - "acba124b-c690-43dc-b717-ae889034a110", - "0bf73f5f-c68a-4a9e-ae23-67c7ea602d08", - "43f366d5-ac33-41ca-be94-6282f0233cd1", - "20a17f7f-4c8c-4119-ac8f-7160c6595370", - "3166d228-f358-4741-9950-420cebd0aa4c", - "d41672d0-e186-418e-b20f-1d82b60c3365", - "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "a76bf032-5164-44ff-92fb-30023319517e", - "a63c10e3-b289-47b6-9867-4d82c043e2cb", - "88e6eee9-3b8c-474d-aeb4-599447d404be", - "e31a1f56-4ede-4f4f-a7a7-2fdbee444a41", - "e9c79425-c47b-44ec-82ff-b480b97ceae7", - "40cc5489-ce8f-4df1-916b-c682450d39d7", - "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", - "41c46bd6-8021-4abc-88c9-f9d4d32afe26", - "ddeef6c2-ef0f-4d9f-a765-534563936049", - "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", - "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", - "0751a485-9efa-4491-b69f-eed5163417d8", - "5b565a57-bd7f-42f0-a279-0af0bf5f2a4d", - "3d29747a-7b75-4b0e-ad8a-50eec4e70061", - "1f1dcc94-03fa-4333-b695-c1027c760604", - "7183eaac-7645-401f-919b-91209487af61", - "d8f16090-e69f-45d8-b535-45f45ab1b739", - "2f3f3f3e-941f-4165-a7c4-41af6cf1cc84", - "065b0112-1102-48ec-b10a-c88cde002f4f", - "b79429dc-e0f7-44a7-b564-ff6f9831d545", - "e7cd0200-d7e2-4808-b4af-d251dcc23019", - "e10756d4-095f-4fec-94fb-19ac7075bc43", - "3dcc9db5-75c0-46a8-8247-d3d2e0220e07", - "98d2ace5-e4e8-4113-91e3-89c01d89a89f", - "1fdfd4f4-c553-4a7d-8963-4eb750e13bff", - "77540404-5599-4bb2-b15d-add1fcb9fe20", - "065b0112-1102-48ec-b10a-c88cde002f4f", - "4ecd13b4-71e4-4328-bc7f-b30325894d82", - "6716e17d-58d0-427c-a6f7-62e8d8197b2a", - "ff7f9dbf-a0e0-4bfa-86dc-2f9a0bdd5926", - "c5f578ca-60dd-46cb-8482-2978ed0e3898", - "6fe3defb-8d6f-405c-8fb2-44b73532b240" - ], - "stops": [], - "line_id": "9f852c1c-4b54-4204-a46d-ef0fcc79ef7a", - "segments": [ - 0, - 65, - 69, - 83, - 88, - 89, - 92, - 95, - 100, - 104, - 106, - 109, - 114, - 117, - 123, - 128, - 134, - 142, - 145, - 156, - 162, - 167, - 174, - 181, - 188, - 191, - 194, - 198, - 201, - 207, - 211, - 214, - 222, - 225, - 228, - 237, - 247, - 250, - 252, - 259, - 264 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 154, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.492289, - 45.54075 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.491774, - 45.540689 - ], - [ - -73.491536, - 45.540936 - ], - [ - -73.491291, - 45.541175 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.490856, - 45.541391 - ], - [ - -73.490437, - 45.541395 - ], - [ - -73.490356, - 45.541476 - ], - [ - -73.490311, - 45.541521 - ], - [ - -73.49018, - 45.541653 - ], - [ - -73.489395, - 45.542444 - ], - [ - -73.488704, - 45.543195 - ], - [ - -73.488001, - 45.543908 - ], - [ - -73.487884, - 45.544027 - ], - [ - -73.48768, - 45.544252 - ], - [ - -73.487059, - 45.544886 - ], - [ - -73.486552, - 45.545435 - ], - [ - -73.486097, - 45.545903 - ], - [ - -73.486005, - 45.545998 - ], - [ - -73.486053, - 45.546041 - ], - [ - -73.486189, - 45.54616 - ], - [ - -73.486468, - 45.546407 - ], - [ - -73.486482, - 45.54642 - ], - [ - -73.486479, - 45.546436 - ], - [ - -73.486458, - 45.546464 - ], - [ - -73.486409, - 45.546515 - ], - [ - -73.486013, - 45.546983 - ], - [ - -73.485652, - 45.547424 - ], - [ - -73.485491, - 45.547622 - ], - [ - -73.485401, - 45.547541 - ], - [ - -73.485366, - 45.547509 - ], - [ - -73.485238, - 45.547406 - ], - [ - -73.484884, - 45.547199 - ], - [ - -73.482637, - 45.545463 - ], - [ - -73.48256, - 45.545403 - ], - [ - -73.483053, - 45.544877 - ], - [ - -73.482584, - 45.544656 - ], - [ - -73.482193, - 45.54447 - ], - [ - -73.482083, - 45.544418 - ], - [ - -73.481629, - 45.544211 - ], - [ - -73.481279, - 45.544013 - ], - [ - -73.480617, - 45.543637 - ], - [ - -73.480477, - 45.543558 - ], - [ - -73.479661, - 45.543171 - ], - [ - -73.47897, - 45.542857 - ], - [ - -73.478849, - 45.542802 - ], - [ - -73.47904, - 45.542608 - ], - [ - -73.480877, - 45.540737 - ], - [ - -73.481259, - 45.540921 - ], - [ - -73.481531, - 45.541053 - ], - [ - -73.48168, - 45.541124 - ], - [ - -73.482506, - 45.541502 - ], - [ - -73.483318, - 45.54188 - ], - [ - -73.484046, - 45.542234 - ], - [ - -73.484143, - 45.542281 - ], - [ - -73.484216, - 45.542206 - ], - [ - -73.485485, - 45.540909 - ], - [ - -73.486028, - 45.540333 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486472, - 45.540363 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.491356, - 45.541251 - ], - [ - -73.491461, - 45.541175 - ], - [ - -73.491486, - 45.541152 - ], - [ - -73.49164, - 45.540995 - ], - [ - -73.49186, - 45.54077 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.493936, - 45.541747 - ], - [ - -73.494874, - 45.542315 - ], - [ - -73.496064, - 45.543035 - ], - [ - -73.496254, - 45.54315 - ], - [ - -73.496791, - 45.543474 - ], - [ - -73.496867, - 45.543519 - ], - [ - -73.499661, - 45.545207 - ], - [ - -73.499752, - 45.545132 - ], - [ - -73.500101, - 45.544844 - ], - [ - -73.500523, - 45.544496 - ], - [ - -73.500751, - 45.544302 - ], - [ - -73.501211, - 45.54392 - ], - [ - -73.501781, - 45.54345 - ], - [ - -73.501834, - 45.543407 - ], - [ - -73.501981, - 45.543281 - ], - [ - -73.502286, - 45.543051 - ], - [ - -73.502846, - 45.54261 - ], - [ - -73.502328, - 45.542295 - ], - [ - -73.502111, - 45.542162 - ], - [ - -73.502034, - 45.542116 - ], - [ - -73.503012, - 45.541243 - ], - [ - -73.503038, - 45.54122 - ], - [ - -73.503066, - 45.541193 - ], - [ - -73.503699, - 45.540599 - ], - [ - -73.504224, - 45.540133 - ], - [ - -73.50482, - 45.539603 - ], - [ - -73.504898, - 45.539533 - ], - [ - -73.504975, - 45.539443 - ], - [ - -73.50558, - 45.538773 - ], - [ - -73.505956, - 45.538332 - ], - [ - -73.50648, - 45.537755 - ], - [ - -73.506577, - 45.537648 - ], - [ - -73.507126, - 45.537027 - ], - [ - -73.507696, - 45.536401 - ], - [ - -73.508162, - 45.535873 - ], - [ - -73.508267, - 45.535753 - ], - [ - -73.508747, - 45.535178 - ], - [ - -73.508996, - 45.534802 - ], - [ - -73.509057, - 45.53471 - ], - [ - -73.509584, - 45.533933 - ], - [ - -73.509676, - 45.533796 - ], - [ - -73.510203, - 45.533014 - ], - [ - -73.510297, - 45.532874 - ], - [ - -73.510341, - 45.532811 - ], - [ - -73.510685, - 45.532302 - ], - [ - -73.511187, - 45.531582 - ], - [ - -73.511629, - 45.530912 - ], - [ - -73.511673, - 45.530845 - ], - [ - -73.512251, - 45.529999 - ], - [ - -73.512894, - 45.529094 - ], - [ - -73.512896, - 45.529091 - ], - [ - -73.512953, - 45.529067 - ], - [ - -73.513005, - 45.529045 - ], - [ - -73.513051, - 45.528977 - ], - [ - -73.513252, - 45.528721 - ], - [ - -73.513325, - 45.528595 - ], - [ - -73.513328, - 45.528589 - ], - [ - -73.513398, - 45.528455 - ], - [ - -73.513452, - 45.528302 - ], - [ - -73.513516, - 45.528104 - ], - [ - -73.513533, - 45.528001 - ], - [ - -73.513546, - 45.527897 - ], - [ - -73.513561, - 45.527753 - ], - [ - -73.51356, - 45.527686 - ], - [ - -73.513558, - 45.527573 - ], - [ - -73.513561, - 45.527191 - ], - [ - -73.513541, - 45.526452 - ], - [ - -73.513539, - 45.526341 - ], - [ - -73.513537, - 45.526287 - ], - [ - -73.513532, - 45.525958 - ], - [ - -73.513526, - 45.525517 - ], - [ - -73.513522, - 45.525432 - ], - [ - -73.513519, - 45.52504 - ], - [ - -73.513516, - 45.524743 - ], - [ - -73.513509, - 45.524386 - ], - [ - -73.513496, - 45.523736 - ], - [ - -73.513488, - 45.523187 - ], - [ - -73.513483, - 45.522998 - ], - [ - -73.51347, - 45.522512 - ], - [ - -73.513465, - 45.522094 - ], - [ - -73.513454, - 45.521135 - ], - [ - -73.513455, - 45.520586 - ], - [ - -73.513456, - 45.520393 - ], - [ - -73.51347, - 45.52019 - ], - [ - -73.513487, - 45.520033 - ], - [ - -73.513501, - 45.519929 - ], - [ - -73.513525, - 45.519803 - ], - [ - -73.51356, - 45.519673 - ], - [ - -73.513601, - 45.519583 - ], - [ - -73.51367, - 45.519425 - ], - [ - -73.513716, - 45.519349 - ], - [ - -73.513785, - 45.519236 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.51499, - 45.519418 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518886, - 45.520627 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.520811, - 45.523427 - ] - ] - }, - "id": 155, - "properties": { - "id": "2782f422-4db3-4a90-adbf-8f2f38bebe61", - "data": { - "gtfs": { - "shape_id": "74_2_A" - }, - "segments": [ - { - "distanceMeters": 234, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 353, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 538, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 439, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 423, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 113, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 846, - "travelTimeSeconds": 196 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8583, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2931.147715673713, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.3, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 4.77, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.3 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "c1b679f5-d94a-4515-826d-dd0fd3e8ca0c", - "e44b3c5f-74b7-4e0a-acc8-bc0a05baf09f", - "b51729a5-1e80-46dd-9ed7-163c961e0d95", - "c4313974-2fe8-435a-a8ec-78bf1341b346", - "1b5000a9-d080-4281-9d35-635cb0e911cd", - "e3a6e93e-902a-4799-a8c4-465418843387", - "2e76faaa-8ff2-48d3-89f2-a3a048b7ecca", - "cdc9ba38-1ba1-4c7e-a7a9-ae7024ff0e4d", - "d7cbf513-910d-43ce-9c34-aa1e924c7d28", - "05e26e6f-35ac-45f7-bc21-12a31eb161dc", - "46596ba7-53c7-438c-8206-a65ed3391683", - "0d1ddd51-f4a3-4891-9182-dbefd8d042a9", - "411bafbe-bac8-4586-9af4-bc0b3163bdde", - "0266ed3c-e279-4178-b7ea-9f611780869a", - "29cae4d6-53eb-4c22-9faf-214af53be38b", - "8634d456-175f-4ee5-a685-5738fae49ba8", - "840bd1e4-f448-41f0-a87f-5dae42946219", - "4e61612c-2f48-47d6-ad42-7c0737853911", - "04ab1113-dedd-49f1-b83b-245bc43e1753", - "400be995-0bb4-471e-9c4c-3e3721339f13", - "65c1dd37-3015-432d-9f39-899ad6f7cc49", - "0cafd6f5-a2c7-4cf8-830a-6909e29ea5a5", - "71c8be20-aaf2-429f-a16b-1898198bf831", - "a38bb101-9e0e-47dc-b58f-8ec1437b1704", - "d3ebe7a8-432f-4ee4-be20-7363589d4629", - "5c162246-d3ef-4a9f-b99a-0c101155442e", - "7c2cb131-4fec-4986-8542-841b59b571c8", - "234e805d-82ab-4d93-bec5-6c8c331d4f7b", - "b412dc8e-18d6-40de-b77b-38439256c33f", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "acabc807-b0f5-4579-b183-cef0484a7cc2" - ], - "stops": [], - "line_id": "ba3d9f18-da7a-4c29-9ded-b203538f6c74", - "segments": [ - 0, - 12, - 15, - 20, - 30, - 36, - 40, - 44, - 47, - 52, - 56, - 60, - 83, - 87, - 93, - 97, - 103, - 110, - 115, - 119, - 122, - 124, - 126, - 131, - 141, - 151, - 159, - 164, - 175, - 180, - 187 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 155, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.520811, - 45.523427 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522224, - 45.522012 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519245, - 45.520729 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514253, - 45.51909 - ], - [ - -73.513885, - 45.518962 - ], - [ - -73.51387, - 45.518957 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.51366, - 45.519196 - ], - [ - -73.513552, - 45.519371 - ], - [ - -73.513541, - 45.519389 - ], - [ - -73.513476, - 45.519506 - ], - [ - -73.513414, - 45.519673 - ], - [ - -73.513365, - 45.519832 - ], - [ - -73.513342, - 45.519907 - ], - [ - -73.513328, - 45.519997 - ], - [ - -73.513311, - 45.520181 - ], - [ - -73.513297, - 45.520388 - ], - [ - -73.513304, - 45.520586 - ], - [ - -73.51331, - 45.521135 - ], - [ - -73.513325, - 45.522121 - ], - [ - -73.513329, - 45.522453 - ], - [ - -73.513335, - 45.523191 - ], - [ - -73.51335, - 45.523736 - ], - [ - -73.513351, - 45.523799 - ], - [ - -73.51336, - 45.524503 - ], - [ - -73.513363, - 45.524689 - ], - [ - -73.513378, - 45.52504 - ], - [ - -73.513377, - 45.525436 - ], - [ - -73.513379, - 45.525517 - ], - [ - -73.513391, - 45.525995 - ], - [ - -73.513398, - 45.526291 - ], - [ - -73.513408, - 45.526678 - ], - [ - -73.513441, - 45.527191 - ], - [ - -73.513439, - 45.527573 - ], - [ - -73.513442, - 45.527753 - ], - [ - -73.513414, - 45.527992 - ], - [ - -73.513387, - 45.528104 - ], - [ - -73.513328, - 45.528284 - ], - [ - -73.513278, - 45.528428 - ], - [ - -73.513176, - 45.528612 - ], - [ - -73.513138, - 45.52868 - ], - [ - -73.51294, - 45.528941 - ], - [ - -73.51289, - 45.529013 - ], - [ - -73.512893, - 45.529054 - ], - [ - -73.512896, - 45.529091 - ], - [ - -73.512894, - 45.529094 - ], - [ - -73.512251, - 45.529999 - ], - [ - -73.511755, - 45.530725 - ], - [ - -73.511673, - 45.530845 - ], - [ - -73.511187, - 45.531582 - ], - [ - -73.510685, - 45.532302 - ], - [ - -73.510412, - 45.532706 - ], - [ - -73.510341, - 45.532811 - ], - [ - -73.510297, - 45.532874 - ], - [ - -73.509786, - 45.533633 - ], - [ - -73.509676, - 45.533796 - ], - [ - -73.509138, - 45.534591 - ], - [ - -73.509057, - 45.53471 - ], - [ - -73.508747, - 45.535178 - ], - [ - -73.508346, - 45.535659 - ], - [ - -73.508267, - 45.535753 - ], - [ - -73.507696, - 45.536401 - ], - [ - -73.507126, - 45.537027 - ], - [ - -73.506677, - 45.537536 - ], - [ - -73.506577, - 45.537648 - ], - [ - -73.505956, - 45.538332 - ], - [ - -73.50558, - 45.538773 - ], - [ - -73.505121, - 45.539282 - ], - [ - -73.504975, - 45.539443 - ], - [ - -73.504898, - 45.539533 - ], - [ - -73.504224, - 45.540133 - ], - [ - -73.50377, - 45.540537 - ], - [ - -73.503699, - 45.540599 - ], - [ - -73.503066, - 45.541193 - ], - [ - -73.503038, - 45.54122 - ], - [ - -73.503012, - 45.541243 - ], - [ - -73.502254, - 45.541919 - ], - [ - -73.502034, - 45.542116 - ], - [ - -73.501988, - 45.542215 - ], - [ - -73.501922, - 45.542287 - ], - [ - -73.501896, - 45.542336 - ], - [ - -73.501899, - 45.542395 - ], - [ - -73.501984, - 45.542655 - ], - [ - -73.502028, - 45.542939 - ], - [ - -73.502024, - 45.542997 - ], - [ - -73.501981, - 45.543281 - ], - [ - -73.501834, - 45.543407 - ], - [ - -73.501211, - 45.54392 - ], - [ - -73.500872, - 45.544202 - ], - [ - -73.500751, - 45.544302 - ], - [ - -73.500523, - 45.544496 - ], - [ - -73.499788, - 45.545102 - ], - [ - -73.499752, - 45.545132 - ], - [ - -73.499661, - 45.545207 - ], - [ - -73.496867, - 45.543519 - ], - [ - -73.496791, - 45.543474 - ], - [ - -73.496378, - 45.543225 - ], - [ - -73.496254, - 45.54315 - ], - [ - -73.494874, - 45.542315 - ], - [ - -73.493936, - 45.541747 - ], - [ - -73.492289, - 45.54075 - ] - ] - }, - "id": 156, - "properties": { - "id": "5ea3f58b-4695-414f-b7b6-47f6ca482040", - "data": { - "gtfs": { - "shape_id": "74_1_R" - }, - "segments": [ - { - "distanceMeters": 631, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 571, - "travelTimeSeconds": 79 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 353, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 421, - "travelTimeSeconds": 81 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5095, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2931.1477156737124, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.06, - "travelTimeWithoutDwellTimesSeconds": 840, - "operatingTimeWithLayoverTimeSeconds": 1020, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 840, - "operatingSpeedWithLayoverMetersPerSecond": 4.99, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.06 - }, - "mode": "bus", - "name": "Sect. Bellerive", - "color": "#A32638", - "nodes": [ - "acabc807-b0f5-4579-b183-cef0484a7cc2", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "a4d70496-3fc5-40c1-865f-08991bdf0a19", - "3e3330f1-b4ce-44de-ae6a-efb45bab99e2", - "7c2cb131-4fec-4986-8542-841b59b571c8", - "474f6d90-0342-4671-a3ab-be4a9490140d", - "1c9586e9-c28e-4ee4-84b8-583c2c8a23be", - "a38bb101-9e0e-47dc-b58f-8ec1437b1704", - "71c8be20-aaf2-429f-a16b-1898198bf831", - "0cafd6f5-a2c7-4cf8-830a-6909e29ea5a5", - "65c1dd37-3015-432d-9f39-899ad6f7cc49", - "400be995-0bb4-471e-9c4c-3e3721339f13", - "04ab1113-dedd-49f1-b83b-245bc43e1753", - "7f65f816-23ac-464f-829f-09002e2fc4f7", - "337549aa-ba36-4710-9a0e-ef42ab0adcd5", - "840bd1e4-f448-41f0-a87f-5dae42946219", - "038fb8b8-8fc5-42c2-a9eb-69fdd39d83de", - "29cae4d6-53eb-4c22-9faf-214af53be38b", - "0266ed3c-e279-4178-b7ea-9f611780869a", - "c1b679f5-d94a-4515-826d-dd0fd3e8ca0c" - ], - "stops": [], - "line_id": "ba3d9f18-da7a-4c29-9ded-b203538f6c74", - "segments": [ - 0, - 39, - 56, - 63, - 68, - 73, - 83, - 91, - 95, - 98, - 100, - 103, - 107, - 111, - 115, - 120, - 132, - 135, - 140 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 156, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.492289, - 45.54075 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.491774, - 45.540689 - ], - [ - -73.491536, - 45.540936 - ], - [ - -73.491291, - 45.541175 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.490856, - 45.541391 - ], - [ - -73.490437, - 45.541395 - ], - [ - -73.490356, - 45.541476 - ], - [ - -73.490311, - 45.541521 - ], - [ - -73.49018, - 45.541653 - ], - [ - -73.489395, - 45.542444 - ], - [ - -73.488704, - 45.543195 - ], - [ - -73.488001, - 45.543908 - ], - [ - -73.487884, - 45.544027 - ], - [ - -73.48768, - 45.544252 - ], - [ - -73.487059, - 45.544886 - ], - [ - -73.486552, - 45.545435 - ], - [ - -73.486097, - 45.545903 - ], - [ - -73.486005, - 45.545998 - ], - [ - -73.486053, - 45.546041 - ], - [ - -73.486189, - 45.54616 - ], - [ - -73.486468, - 45.546407 - ], - [ - -73.486482, - 45.54642 - ], - [ - -73.486479, - 45.546436 - ], - [ - -73.486458, - 45.546464 - ], - [ - -73.486409, - 45.546515 - ], - [ - -73.486013, - 45.546983 - ], - [ - -73.485652, - 45.547424 - ], - [ - -73.485491, - 45.547622 - ], - [ - -73.485401, - 45.547541 - ], - [ - -73.485366, - 45.547509 - ], - [ - -73.485238, - 45.547406 - ], - [ - -73.484884, - 45.547199 - ], - [ - -73.482637, - 45.545463 - ], - [ - -73.48256, - 45.545403 - ], - [ - -73.483053, - 45.544877 - ], - [ - -73.482584, - 45.544656 - ], - [ - -73.482193, - 45.54447 - ], - [ - -73.482083, - 45.544418 - ], - [ - -73.481629, - 45.544211 - ], - [ - -73.481279, - 45.544013 - ], - [ - -73.480617, - 45.543637 - ], - [ - -73.480477, - 45.543558 - ], - [ - -73.479661, - 45.543171 - ], - [ - -73.47897, - 45.542857 - ], - [ - -73.478849, - 45.542802 - ], - [ - -73.47904, - 45.542608 - ], - [ - -73.480877, - 45.540737 - ], - [ - -73.481259, - 45.540921 - ], - [ - -73.481531, - 45.541053 - ], - [ - -73.48168, - 45.541124 - ], - [ - -73.482506, - 45.541502 - ], - [ - -73.483318, - 45.54188 - ], - [ - -73.484046, - 45.542234 - ], - [ - -73.484143, - 45.542281 - ], - [ - -73.484216, - 45.542206 - ], - [ - -73.485485, - 45.540909 - ], - [ - -73.486028, - 45.540333 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486472, - 45.540363 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.491356, - 45.541251 - ], - [ - -73.491461, - 45.541175 - ], - [ - -73.491486, - 45.541152 - ], - [ - -73.49164, - 45.540995 - ], - [ - -73.49186, - 45.54077 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.493936, - 45.541747 - ], - [ - -73.494874, - 45.542315 - ], - [ - -73.496064, - 45.543035 - ], - [ - -73.496254, - 45.54315 - ], - [ - -73.496791, - 45.543474 - ], - [ - -73.496867, - 45.543519 - ], - [ - -73.499661, - 45.545207 - ], - [ - -73.499752, - 45.545132 - ], - [ - -73.500101, - 45.544844 - ], - [ - -73.500523, - 45.544496 - ], - [ - -73.500751, - 45.544302 - ], - [ - -73.501211, - 45.54392 - ], - [ - -73.501781, - 45.54345 - ], - [ - -73.501834, - 45.543407 - ], - [ - -73.501981, - 45.543281 - ], - [ - -73.502286, - 45.543051 - ], - [ - -73.502846, - 45.54261 - ], - [ - -73.502328, - 45.542295 - ], - [ - -73.502111, - 45.542162 - ], - [ - -73.502034, - 45.542116 - ], - [ - -73.503012, - 45.541243 - ], - [ - -73.503038, - 45.54122 - ], - [ - -73.503066, - 45.541193 - ], - [ - -73.503699, - 45.540599 - ], - [ - -73.504224, - 45.540133 - ], - [ - -73.50482, - 45.539603 - ], - [ - -73.504898, - 45.539533 - ], - [ - -73.504975, - 45.539443 - ], - [ - -73.50558, - 45.538773 - ], - [ - -73.505956, - 45.538332 - ], - [ - -73.50648, - 45.537755 - ], - [ - -73.506577, - 45.537648 - ], - [ - -73.507126, - 45.537027 - ], - [ - -73.507696, - 45.536401 - ], - [ - -73.508162, - 45.535873 - ], - [ - -73.508267, - 45.535753 - ], - [ - -73.508747, - 45.535178 - ], - [ - -73.508996, - 45.534802 - ], - [ - -73.509057, - 45.53471 - ], - [ - -73.509584, - 45.533933 - ], - [ - -73.509676, - 45.533796 - ], - [ - -73.510203, - 45.533014 - ], - [ - -73.510297, - 45.532874 - ], - [ - -73.510341, - 45.532811 - ], - [ - -73.510685, - 45.532302 - ], - [ - -73.511187, - 45.531582 - ], - [ - -73.511629, - 45.530912 - ], - [ - -73.511673, - 45.530845 - ], - [ - -73.512251, - 45.529999 - ], - [ - -73.512894, - 45.529094 - ], - [ - -73.512896, - 45.529091 - ], - [ - -73.512953, - 45.529067 - ], - [ - -73.513005, - 45.529045 - ], - [ - -73.513051, - 45.528977 - ], - [ - -73.513252, - 45.528721 - ], - [ - -73.513325, - 45.528595 - ], - [ - -73.513328, - 45.528589 - ], - [ - -73.513398, - 45.528455 - ], - [ - -73.513452, - 45.528302 - ], - [ - -73.513516, - 45.528104 - ], - [ - -73.513533, - 45.528001 - ], - [ - -73.513546, - 45.527897 - ], - [ - -73.513561, - 45.527753 - ], - [ - -73.51356, - 45.527686 - ], - [ - -73.513558, - 45.527573 - ], - [ - -73.513561, - 45.527191 - ], - [ - -73.513541, - 45.526452 - ], - [ - -73.513539, - 45.526341 - ], - [ - -73.513537, - 45.526287 - ], - [ - -73.513532, - 45.525958 - ], - [ - -73.513526, - 45.525517 - ], - [ - -73.513522, - 45.525432 - ], - [ - -73.513519, - 45.52504 - ], - [ - -73.513516, - 45.524743 - ], - [ - -73.513509, - 45.524386 - ], - [ - -73.513496, - 45.523736 - ], - [ - -73.513488, - 45.523187 - ], - [ - -73.513483, - 45.522998 - ], - [ - -73.51347, - 45.522512 - ], - [ - -73.513465, - 45.522094 - ], - [ - -73.513454, - 45.521135 - ], - [ - -73.513455, - 45.520586 - ], - [ - -73.513456, - 45.520393 - ], - [ - -73.51347, - 45.52019 - ], - [ - -73.513487, - 45.520033 - ], - [ - -73.513501, - 45.519929 - ], - [ - -73.513525, - 45.519803 - ], - [ - -73.51356, - 45.519673 - ], - [ - -73.513601, - 45.519583 - ], - [ - -73.51367, - 45.519425 - ], - [ - -73.513716, - 45.519349 - ], - [ - -73.513785, - 45.519236 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.51499, - 45.519418 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518886, - 45.520627 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.520811, - 45.523427 - ] - ] - }, - "id": 157, - "properties": { - "id": "2269ed5b-ceb4-452c-ad1b-020d2b6c69b1", - "data": { - "gtfs": { - "shape_id": "74_1_A" - }, - "segments": [ - { - "distanceMeters": 234, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 353, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 538, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 439, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 423, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 113, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 846, - "travelTimeSeconds": 174 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8583, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2931.147715673713, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.5, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 4.93, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.5 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "c1b679f5-d94a-4515-826d-dd0fd3e8ca0c", - "e44b3c5f-74b7-4e0a-acc8-bc0a05baf09f", - "b51729a5-1e80-46dd-9ed7-163c961e0d95", - "c4313974-2fe8-435a-a8ec-78bf1341b346", - "1b5000a9-d080-4281-9d35-635cb0e911cd", - "e3a6e93e-902a-4799-a8c4-465418843387", - "2e76faaa-8ff2-48d3-89f2-a3a048b7ecca", - "cdc9ba38-1ba1-4c7e-a7a9-ae7024ff0e4d", - "d7cbf513-910d-43ce-9c34-aa1e924c7d28", - "05e26e6f-35ac-45f7-bc21-12a31eb161dc", - "46596ba7-53c7-438c-8206-a65ed3391683", - "0d1ddd51-f4a3-4891-9182-dbefd8d042a9", - "411bafbe-bac8-4586-9af4-bc0b3163bdde", - "0266ed3c-e279-4178-b7ea-9f611780869a", - "29cae4d6-53eb-4c22-9faf-214af53be38b", - "8634d456-175f-4ee5-a685-5738fae49ba8", - "840bd1e4-f448-41f0-a87f-5dae42946219", - "4e61612c-2f48-47d6-ad42-7c0737853911", - "04ab1113-dedd-49f1-b83b-245bc43e1753", - "400be995-0bb4-471e-9c4c-3e3721339f13", - "65c1dd37-3015-432d-9f39-899ad6f7cc49", - "0cafd6f5-a2c7-4cf8-830a-6909e29ea5a5", - "71c8be20-aaf2-429f-a16b-1898198bf831", - "a38bb101-9e0e-47dc-b58f-8ec1437b1704", - "d3ebe7a8-432f-4ee4-be20-7363589d4629", - "5c162246-d3ef-4a9f-b99a-0c101155442e", - "7c2cb131-4fec-4986-8542-841b59b571c8", - "234e805d-82ab-4d93-bec5-6c8c331d4f7b", - "b412dc8e-18d6-40de-b77b-38439256c33f", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "acabc807-b0f5-4579-b183-cef0484a7cc2" - ], - "stops": [], - "line_id": "ba3d9f18-da7a-4c29-9ded-b203538f6c74", - "segments": [ - 0, - 12, - 15, - 20, - 30, - 36, - 40, - 44, - 47, - 52, - 56, - 60, - 83, - 87, - 93, - 97, - 103, - 110, - 115, - 119, - 122, - 124, - 126, - 131, - 141, - 151, - 159, - 164, - 175, - 180, - 187 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 157, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.464983, - 45.520729 - ], - [ - -73.46486, - 45.520895 - ], - [ - -73.464878, - 45.520901 - ], - [ - -73.464952, - 45.520927 - ], - [ - -73.465718, - 45.521198 - ], - [ - -73.467193, - 45.521726 - ], - [ - -73.468184, - 45.522081 - ], - [ - -73.468838, - 45.522313 - ], - [ - -73.468996, - 45.522369 - ], - [ - -73.469137, - 45.522183 - ], - [ - -73.4694, - 45.521838 - ], - [ - -73.469592, - 45.521572 - ], - [ - -73.469782, - 45.521307 - ], - [ - -73.472273, - 45.522194 - ], - [ - -73.472365, - 45.522221 - ], - [ - -73.472449, - 45.522239 - ], - [ - -73.472533, - 45.522244 - ], - [ - -73.472695, - 45.522222 - ], - [ - -73.473177, - 45.522159 - ], - [ - -73.473235, - 45.522395 - ], - [ - -73.473364, - 45.522923 - ], - [ - -73.473544, - 45.523567 - ], - [ - -73.473606, - 45.523607 - ], - [ - -73.473836, - 45.523655 - ], - [ - -73.474023, - 45.523693 - ], - [ - -73.477228, - 45.524781 - ], - [ - -73.477339, - 45.524818 - ], - [ - -73.480209, - 45.525784 - ], - [ - -73.480349, - 45.525831 - ], - [ - -73.482756, - 45.526654 - ], - [ - -73.483206, - 45.526808 - ], - [ - -73.48624, - 45.527837 - ], - [ - -73.486324, - 45.527866 - ], - [ - -73.488239, - 45.52853 - ], - [ - -73.488593, - 45.528653 - ], - [ - -73.490396, - 45.529257 - ], - [ - -73.4904, - 45.529257 - ], - [ - -73.490523, - 45.529279 - ], - [ - -73.493082, - 45.530154 - ], - [ - -73.493221, - 45.530202 - ], - [ - -73.493403, - 45.529945 - ], - [ - -73.493736, - 45.529477 - ], - [ - -73.494083, - 45.528958 - ], - [ - -73.494145, - 45.528865 - ], - [ - -73.494363, - 45.528568 - ], - [ - -73.494718, - 45.528046 - ], - [ - -73.494816, - 45.527903 - ], - [ - -73.495197, - 45.528015 - ], - [ - -73.495362, - 45.52806 - ], - [ - -73.495453, - 45.528078 - ], - [ - -73.495497, - 45.528087 - ], - [ - -73.495567, - 45.528087 - ], - [ - -73.495797, - 45.528078 - ], - [ - -73.495971, - 45.528083 - ], - [ - -73.496095, - 45.528092 - ], - [ - -73.496147, - 45.528092 - ], - [ - -73.496204, - 45.528146 - ], - [ - -73.49645, - 45.528221 - ], - [ - -73.496584, - 45.528263 - ], - [ - -73.498361, - 45.528857 - ], - [ - -73.498495, - 45.528901 - ], - [ - -73.50108, - 45.529766 - ], - [ - -73.501294, - 45.529837 - ], - [ - -73.504093, - 45.530787 - ], - [ - -73.504601, - 45.530957 - ], - [ - -73.505899, - 45.531394 - ], - [ - -73.5077, - 45.531998 - ], - [ - -73.507857, - 45.532051 - ], - [ - -73.510172, - 45.532831 - ], - [ - -73.510297, - 45.532874 - ], - [ - -73.512251, - 45.533535 - ], - [ - -73.512873, - 45.533746 - ], - [ - -73.514731, - 45.534379 - ], - [ - -73.514842, - 45.53442 - ], - [ - -73.514898, - 45.534357 - ], - [ - -73.515048, - 45.534191 - ], - [ - -73.515145, - 45.534084 - ], - [ - -73.515317, - 45.533897 - ], - [ - -73.515372, - 45.533842 - ], - [ - -73.515504, - 45.533699 - ], - [ - -73.515508, - 45.533694 - ], - [ - -73.515888, - 45.533287 - ], - [ - -73.515986, - 45.533193 - ], - [ - -73.516613, - 45.532649 - ], - [ - -73.516729, - 45.532549 - ], - [ - -73.517579, - 45.531802 - ], - [ - -73.517925, - 45.531464 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518212, - 45.531168 - ], - [ - -73.51845, - 45.53088 - ], - [ - -73.518608, - 45.530695 - ], - [ - -73.518713, - 45.530574 - ], - [ - -73.518834, - 45.53043 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519398, - 45.526003 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.521017, - 45.523892 - ], - [ - -73.521053, - 45.523883 - ], - [ - -73.521061, - 45.523869 - ], - [ - -73.521065, - 45.523851 - ], - [ - -73.521071, - 45.523799 - ] - ] - }, - "id": 158, - "properties": { - "id": "73699353-1163-43bc-a7f2-a855651c85af", - "data": { - "gtfs": { - "shape_id": "75_1_A" - }, - "segments": [ - { - "distanceMeters": 225, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 113, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 636, - "travelTimeSeconds": 151 - }, - { - "distanceMeters": 471, - "travelTimeSeconds": 112 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6190, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4425.628912314127, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.07, - "travelTimeWithoutDwellTimesSeconds": 1020, - "operatingTimeWithLayoverTimeSeconds": 1200, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1020, - "operatingSpeedWithLayoverMetersPerSecond": 5.16, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.07 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "39c3eab5-6995-4187-aaec-6f0b6badd5cf", - "a19868d7-c9fb-4897-bf6a-82b0033e3c99", - "04824713-a1de-4a19-8b1a-89e11d974239", - "155dd6bc-ae76-4503-8b2b-d216841c4707", - "1426b4ef-4dd9-466b-8c3e-012df230f19a", - "75f82802-187b-4386-b435-5da7ab066898", - "30b4855a-ec3f-4079-bee1-0b92e6c4e1b7", - "1926fe87-9eee-4758-bf0a-1f846178b541", - "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", - "1d3f02c5-7aee-413f-85a4-ed64749a6a77", - "db8d9e51-701d-47ce-b55e-d7d57227adcb", - "37861c82-a45a-4026-bde0-eec4ce121a64", - "26271fe7-0782-47bf-8004-074c0d15a687", - "b9fb2a74-12ac-47e5-aa61-be591a0ecc88", - "b698a0cc-85d5-482c-b2a6-121d92347ec2", - "823b1092-4711-483c-9263-9ad04625e16e", - "477ced41-131e-4c2f-8fce-4f1ed3d08b09", - "9cff00e1-2ab5-4f6d-8e36-32c660c30d08", - "91d2eb2a-bbfe-4d2d-887b-5ab9a417b7e2", - "2b80c3a0-2156-4dd8-b0cd-326bc34d2ed2", - "71c8be20-aaf2-429f-a16b-1898198bf831", - "cab743f1-61f7-4321-bc18-32e2897e9a10", - "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "649e6394-9376-40eb-bc0e-4a376a0044aa", - "4fb4515b-e129-4622-b855-89143c2fd488", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "ceb81ce7-4f5a-4b36-ba17-e4d6ee601c1f", - "segments": [ - 0, - 5, - 7, - 11, - 17, - 23, - 25, - 27, - 29, - 31, - 33, - 36, - 38, - 42, - 45, - 57, - 59, - 61, - 64, - 66, - 68, - 71, - 80, - 83, - 86, - 103 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 158, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521071, - 45.523799 - ], - [ - -73.521073, - 45.52378 - ], - [ - -73.521082, - 45.523698 - ], - [ - -73.521077, - 45.523679 - ], - [ - -73.52106, - 45.523665 - ], - [ - -73.521034, - 45.523659 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519057, - 45.525166 - ], - [ - -73.518828, - 45.525169 - ], - [ - -73.518662, - 45.525195 - ], - [ - -73.518477, - 45.525222 - ], - [ - -73.51841, - 45.525229 - ], - [ - -73.518309, - 45.525233 - ], - [ - -73.518165, - 45.525238 - ], - [ - -73.517846, - 45.525224 - ], - [ - -73.516858, - 45.525188 - ], - [ - -73.516329, - 45.525185 - ], - [ - -73.51586, - 45.52522 - ], - [ - -73.515879, - 45.525306 - ], - [ - -73.515954, - 45.525625 - ], - [ - -73.515993, - 45.52576 - ], - [ - -73.516048, - 45.525946 - ], - [ - -73.516108, - 45.52615 - ], - [ - -73.51612, - 45.526192 - ], - [ - -73.516245, - 45.52653 - ], - [ - -73.516302, - 45.526687 - ], - [ - -73.516434, - 45.526894 - ], - [ - -73.517006, - 45.527735 - ], - [ - -73.517118, - 45.52798 - ], - [ - -73.517261, - 45.528296 - ], - [ - -73.517272, - 45.52832 - ], - [ - -73.517504, - 45.528922 - ], - [ - -73.517577, - 45.529094 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.517456, - 45.531762 - ], - [ - -73.516901, - 45.532276 - ], - [ - -73.51664, - 45.532518 - ], - [ - -73.515885, - 45.533161 - ], - [ - -73.515753, - 45.533238 - ], - [ - -73.515672, - 45.533321 - ], - [ - -73.515326, - 45.53371 - ], - [ - -73.515257, - 45.533788 - ], - [ - -73.515202, - 45.533848 - ], - [ - -73.514831, - 45.534265 - ], - [ - -73.514791, - 45.534311 - ], - [ - -73.514372, - 45.534169 - ], - [ - -73.513081, - 45.533732 - ], - [ - -73.5123, - 45.533467 - ], - [ - -73.510526, - 45.532873 - ], - [ - -73.510341, - 45.532811 - ], - [ - -73.508089, - 45.532051 - ], - [ - -73.5079, - 45.531988 - ], - [ - -73.50594, - 45.531331 - ], - [ - -73.50432, - 45.530785 - ], - [ - -73.504137, - 45.530724 - ], - [ - -73.501539, - 45.529843 - ], - [ - -73.501337, - 45.529774 - ], - [ - -73.498713, - 45.528902 - ], - [ - -73.498535, - 45.528843 - ], - [ - -73.4968, - 45.52825 - ], - [ - -73.496653, - 45.5282 - ], - [ - -73.496381, - 45.528119 - ], - [ - -73.496239, - 45.528083 - ], - [ - -73.496147, - 45.528092 - ], - [ - -73.496095, - 45.528092 - ], - [ - -73.495971, - 45.528083 - ], - [ - -73.495797, - 45.528078 - ], - [ - -73.495567, - 45.528087 - ], - [ - -73.495497, - 45.528087 - ], - [ - -73.49548, - 45.528084 - ], - [ - -73.495453, - 45.528078 - ], - [ - -73.495362, - 45.52806 - ], - [ - -73.495197, - 45.528015 - ], - [ - -73.494816, - 45.527903 - ], - [ - -73.494618, - 45.528194 - ], - [ - -73.494363, - 45.528568 - ], - [ - -73.494209, - 45.528778 - ], - [ - -73.494145, - 45.528865 - ], - [ - -73.493736, - 45.529477 - ], - [ - -73.493297, - 45.530095 - ], - [ - -73.493221, - 45.530202 - ], - [ - -73.492644, - 45.530004 - ], - [ - -73.490632, - 45.529316 - ], - [ - -73.490523, - 45.529279 - ], - [ - -73.490396, - 45.529257 - ], - [ - -73.488761, - 45.52871 - ], - [ - -73.488593, - 45.528653 - ], - [ - -73.486474, - 45.527918 - ], - [ - -73.486324, - 45.527866 - ], - [ - -73.483382, - 45.526868 - ], - [ - -73.483206, - 45.526808 - ], - [ - -73.480548, - 45.525899 - ], - [ - -73.480349, - 45.525831 - ], - [ - -73.477602, - 45.524907 - ], - [ - -73.477339, - 45.524818 - ], - [ - -73.474221, - 45.52376 - ], - [ - -73.474023, - 45.523693 - ], - [ - -73.473606, - 45.523607 - ], - [ - -73.473544, - 45.523567 - ], - [ - -73.473364, - 45.522923 - ], - [ - -73.473207, - 45.522283 - ], - [ - -73.473177, - 45.522159 - ], - [ - -73.472533, - 45.522244 - ], - [ - -73.472449, - 45.522239 - ], - [ - -73.472365, - 45.522221 - ], - [ - -73.472273, - 45.522194 - ], - [ - -73.472025, - 45.522106 - ], - [ - -73.469935, - 45.521362 - ], - [ - -73.469782, - 45.521307 - ], - [ - -73.467299, - 45.52042 - ], - [ - -73.467196, - 45.52038 - ], - [ - -73.467101, - 45.520339 - ], - [ - -73.467083, - 45.520326 - ], - [ - -73.467042, - 45.520272 - ], - [ - -73.466862, - 45.52 - ], - [ - -73.466791, - 45.519894 - ], - [ - -73.465827, - 45.520235 - ], - [ - -73.465207, - 45.520429 - ], - [ - -73.464983, - 45.520729 - ] - ] - }, - "id": 159, - "properties": { - "id": "941db450-3655-4040-b8c7-7cdb47686afc", - "data": { - "gtfs": { - "shape_id": "75_1_R" - }, - "segments": [ - { - "distanceMeters": 994, - "travelTimeSeconds": 156 - }, - { - "distanceMeters": 482, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 90 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 90 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 58 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6374, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4425.628912314127, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.59, - "travelTimeWithoutDwellTimesSeconds": 1140, - "operatingTimeWithLayoverTimeSeconds": 1320, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1140, - "operatingSpeedWithLayoverMetersPerSecond": 4.83, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.59 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "b19be6c8-c333-401a-98e4-d16876257831", - "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "7c6d588b-9971-4708-89a6-d92fb634eb39", - "71c8be20-aaf2-429f-a16b-1898198bf831", - "2b80c3a0-2156-4dd8-b0cd-326bc34d2ed2", - "91d2eb2a-bbfe-4d2d-887b-5ab9a417b7e2", - "9cff00e1-2ab5-4f6d-8e36-32c660c30d08", - "477ced41-131e-4c2f-8fce-4f1ed3d08b09", - "823b1092-4711-483c-9263-9ad04625e16e", - "b698a0cc-85d5-482c-b2a6-121d92347ec2", - "b9fb2a74-12ac-47e5-aa61-be591a0ecc88", - "26271fe7-0782-47bf-8004-074c0d15a687", - "37861c82-a45a-4026-bde0-eec4ce121a64", - "280d705c-e41e-4a8f-8450-ac212bf84d99", - "1d3f02c5-7aee-413f-85a4-ed64749a6a77", - "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", - "1926fe87-9eee-4758-bf0a-1f846178b541", - "30b4855a-ec3f-4079-bee1-0b92e6c4e1b7", - "75f82802-187b-4386-b435-5da7ab066898", - "1426b4ef-4dd9-466b-8c3e-012df230f19a", - "155dd6bc-ae76-4503-8b2b-d216841c4707", - "fd80e727-4261-4c36-aabc-b0a2c48d1470", - "39c3eab5-6995-4187-aaec-6f0b6badd5cf" - ], - "stops": [], - "line_id": "ceb81ce7-4f5a-4b36-ba17-e4d6ee601c1f", - "segments": [ - 0, - 38, - 57, - 62, - 68, - 70, - 72, - 75, - 77, - 79, - 81, - 91, - 98, - 101, - 104, - 107, - 109, - 111, - 113, - 115, - 117, - 122, - 129, - 136 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 159, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519446, - 45.523424 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519332, - 45.526816 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517858, - 45.526792 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517465, - 45.528168 - ], - [ - -73.517458, - 45.528249 - ], - [ - -73.517471, - 45.528385 - ], - [ - -73.517504, - 45.528565 - ], - [ - -73.517516, - 45.528652 - ], - [ - -73.517553, - 45.52877 - ], - [ - -73.517635, - 45.529002 - ], - [ - -73.517693, - 45.529249 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.51956, - 45.531975 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501211, - 45.549971 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.499756, - 45.550039 - ], - [ - -73.499564, - 45.550308 - ], - [ - -73.499518, - 45.550373 - ], - [ - -73.499348, - 45.550589 - ], - [ - -73.499249, - 45.550718 - ], - [ - -73.499149, - 45.550849 - ], - [ - -73.49909, - 45.551 - ], - [ - -73.499052, - 45.551292 - ], - [ - -73.498947, - 45.552086 - ], - [ - -73.498793, - 45.55209 - ], - [ - -73.498694, - 45.552086 - ], - [ - -73.498592, - 45.552072 - ], - [ - -73.498413, - 45.552 - ], - [ - -73.498201, - 45.551838 - ], - [ - -73.497569, - 45.551352 - ], - [ - -73.496964, - 45.550873 - ], - [ - -73.496546, - 45.550543 - ], - [ - -73.496482, - 45.550493 - ], - [ - -73.495901, - 45.550034 - ], - [ - -73.494604, - 45.549013 - ], - [ - -73.494377, - 45.548846 - ], - [ - -73.494352, - 45.548779 - ], - [ - -73.494351, - 45.54877 - ], - [ - -73.494341, - 45.548702 - ], - [ - -73.494355, - 45.548662 - ], - [ - -73.494517, - 45.548567 - ], - [ - -73.494756, - 45.548419 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491296, - 45.54289 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.460868, - 45.531797 - ], - [ - -73.460137, - 45.531468 - ], - [ - -73.459095, - 45.531013 - ], - [ - -73.457591, - 45.530387 - ], - [ - -73.456631, - 45.529983 - ], - [ - -73.45522, - 45.529388 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.453608, - 45.528719 - ], - [ - -73.45246, - 45.528241 - ], - [ - -73.452419, - 45.528224 - ], - [ - -73.452095, - 45.528089 - ], - [ - -73.451849, - 45.527987 - ], - [ - -73.449586, - 45.5271 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.449239, - 45.527747 - ], - [ - -73.449096, - 45.528021 - ], - [ - -73.448776, - 45.528634 - ], - [ - -73.448472, - 45.529257 - ], - [ - -73.448445, - 45.529313 - ], - [ - -73.448085, - 45.530001 - ], - [ - -73.448024, - 45.530118 - ], - [ - -73.447862, - 45.53032 - ], - [ - -73.44764, - 45.530474 - ], - [ - -73.447631, - 45.53048 - ], - [ - -73.447543, - 45.530541 - ], - [ - -73.447385, - 45.530442 - ], - [ - -73.447236, - 45.530379 - ], - [ - -73.44713, - 45.530342 - ], - [ - -73.44702, - 45.530311 - ], - [ - -73.446897, - 45.530293 - ], - [ - -73.446778, - 45.530284 - ], - [ - -73.446722, - 45.530284 - ], - [ - -73.446558, - 45.530297 - ], - [ - -73.446426, - 45.53032 - ], - [ - -73.446303, - 45.53036 - ], - [ - -73.446188, - 45.530392 - ], - [ - -73.44616, - 45.530403 - ], - [ - -73.446078, - 45.530436 - ], - [ - -73.445986, - 45.530495 - ], - [ - -73.445934, - 45.530553 - ], - [ - -73.44588, - 45.530594 - ], - [ - -73.445655, - 45.53081 - ], - [ - -73.445416, - 45.531246 - ], - [ - -73.445297, - 45.531608 - ], - [ - -73.445262, - 45.531714 - ], - [ - -73.445217, - 45.531876 - ], - [ - -73.445159, - 45.532011 - ], - [ - -73.445133, - 45.532069 - ], - [ - -73.44472, - 45.532816 - ], - [ - -73.444441, - 45.533378 - ], - [ - -73.444119, - 45.533972 - ], - [ - -73.444063, - 45.534075 - ], - [ - -73.443132, - 45.533854 - ], - [ - -73.443002, - 45.533823 - ], - [ - -73.442012, - 45.533579 - ], - [ - -73.441709, - 45.533503 - ], - [ - -73.441658, - 45.533491 - ], - [ - -73.441109, - 45.53336 - ], - [ - -73.440969, - 45.533327 - ], - [ - -73.439556, - 45.532972 - ], - [ - -73.439437, - 45.532943 - ], - [ - -73.439417, - 45.532938 - ], - [ - -73.439309, - 45.532912 - ], - [ - -73.440141, - 45.531003 - ], - [ - -73.440178, - 45.530918 - ], - [ - -73.440526, - 45.530139 - ], - [ - -73.440987, - 45.529108 - ], - [ - -73.441026, - 45.529021 - ], - [ - -73.441195, - 45.528603 - ], - [ - -73.441689, - 45.527492 - ], - [ - -73.441723, - 45.527415 - ], - [ - -73.442111, - 45.526543 - ], - [ - -73.442305, - 45.526133 - ], - [ - -73.442765, - 45.52521 - ], - [ - -73.442852, - 45.525036 - ], - [ - -73.442988, - 45.525071 - ], - [ - -73.443284, - 45.525148 - ] - ] - }, - "id": 160, - "properties": { - "id": "51028f85-c71c-4a75-8da1-9ccb7c51b69f", - "data": { - "gtfs": { - "shape_id": "76_1_R" - }, - "segments": [ - { - "distanceMeters": 9235, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 63 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11820, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 1021.7958591439391, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 21.89, - "travelTimeWithoutDwellTimesSeconds": 540, - "operatingTimeWithLayoverTimeSeconds": 720, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 540, - "operatingSpeedWithLayoverMetersPerSecond": 16.42, - "averageSpeedWithoutDwellTimesMetersPerSecond": 21.89 - }, - "mode": "bus", - "name": "Sect. B Vieux-Longueuil", - "color": "#A32638", - "nodes": [ - "6e83e147-802a-4695-95f3-96585bd15c4a", - "51878141-1194-4666-977c-0597ee638ffb", - "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "da0ea2a1-8305-4096-84b5-3da6997f0293", - "69483ac1-331d-4f0e-93b5-d8134f380763", - "23ef9461-bbd0-492e-8678-c51238629a13", - "51637772-6b85-4c49-a14a-4de104a8f1f5", - "210e532b-2acc-4a3e-b173-3471add098b1", - "576ef8c5-693c-4ae9-bb41-68685f43e174", - "2dda318d-8bf9-4860-b60d-6fcb1dd29156", - "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", - "de69f95c-e485-42da-bcac-5eeb8a8928ad", - "e36c087c-d78e-48bb-9430-6af9d10493cf", - "5b35096e-2561-4a9f-8bf4-a3e7609358bf" - ], - "stops": [], - "line_id": "9dee9443-6118-4400-be3e-92e85733a02b", - "segments": [ - 0, - 253, - 260, - 262, - 268, - 281, - 288, - 295, - 302, - 306, - 308, - 311, - 314 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 160, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.443284, - 45.525148 - ], - [ - -73.444342, - 45.525423 - ], - [ - -73.444482, - 45.52546 - ], - [ - -73.444863, - 45.525554 - ], - [ - -73.4451, - 45.525613 - ], - [ - -73.445298, - 45.525685 - ], - [ - -73.4455, - 45.525762 - ], - [ - -73.446302, - 45.526081 - ], - [ - -73.446307, - 45.526083 - ], - [ - -73.446395, - 45.526117 - ], - [ - -73.447841, - 45.526653 - ], - [ - -73.449341, - 45.527225 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.45067, - 45.527735 - ], - [ - -73.450838, - 45.527798 - ], - [ - -73.451123, - 45.527906 - ], - [ - -73.451519, - 45.528063 - ], - [ - -73.452176, - 45.528364 - ], - [ - -73.452276, - 45.528409 - ], - [ - -73.452337, - 45.528437 - ], - [ - -73.45321, - 45.528797 - ], - [ - -73.454095, - 45.529149 - ], - [ - -73.454901, - 45.529494 - ], - [ - -73.454978, - 45.529527 - ], - [ - -73.45507, - 45.529563 - ], - [ - -73.457307, - 45.530474 - ], - [ - -73.457482, - 45.530545 - ], - [ - -73.458332, - 45.530905 - ], - [ - -73.460581, - 45.531882 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.462043, - 45.532634 - ], - [ - -73.462751, - 45.533003 - ], - [ - -73.463714, - 45.533571 - ], - [ - -73.463873, - 45.533665 - ], - [ - -73.464875, - 45.534543 - ], - [ - -73.465742, - 45.535342 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.468816, - 45.53705 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469941, - 45.537318 - ], - [ - -73.470305, - 45.537406 - ], - [ - -73.470749, - 45.537487 - ], - [ - -73.471335, - 45.537563 - ], - [ - -73.471845, - 45.53759 - ], - [ - -73.47195, - 45.53759 - ], - [ - -73.472146, - 45.537591 - ], - [ - -73.472355, - 45.537591 - ], - [ - -73.473126, - 45.537555 - ], - [ - -73.473826, - 45.537492 - ], - [ - -73.474517, - 45.537429 - ], - [ - -73.47454, - 45.537427 - ], - [ - -73.474599, - 45.537423 - ], - [ - -73.475173, - 45.53738 - ], - [ - -73.47563, - 45.537344 - ], - [ - -73.476192, - 45.537353 - ], - [ - -73.476662, - 45.537394 - ], - [ - -73.477026, - 45.537434 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.477902, - 45.537605 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479519, - 45.538086 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.482479, - 45.53892 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.485793, - 45.540123 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491035, - 45.541427 - ], - [ - -73.491084, - 45.541584 - ], - [ - -73.491099, - 45.541724 - ], - [ - -73.491105, - 45.541835 - ], - [ - -73.491106, - 45.541854 - ], - [ - -73.491092, - 45.542156 - ], - [ - -73.491081, - 45.542381 - ], - [ - -73.49104, - 45.543146 - ], - [ - -73.490998, - 45.543726 - ], - [ - -73.491037, - 45.544117 - ], - [ - -73.491071, - 45.544252 - ], - [ - -73.491113, - 45.544396 - ], - [ - -73.491272, - 45.544698 - ], - [ - -73.491367, - 45.544855 - ], - [ - -73.491449, - 45.544981 - ], - [ - -73.491608, - 45.545148 - ], - [ - -73.491886, - 45.545409 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.492812, - 45.546146 - ], - [ - -73.492868, - 45.546192 - ], - [ - -73.492976, - 45.546278 - ], - [ - -73.493835, - 45.546966 - ], - [ - -73.494604, - 45.547573 - ], - [ - -73.495185, - 45.548034 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.495043, - 45.548244 - ], - [ - -73.494756, - 45.548419 - ], - [ - -73.494517, - 45.548567 - ], - [ - -73.494355, - 45.548662 - ], - [ - -73.494341, - 45.548702 - ], - [ - -73.494351, - 45.54877 - ], - [ - -73.494352, - 45.548779 - ], - [ - -73.494377, - 45.548846 - ], - [ - -73.494604, - 45.549013 - ], - [ - -73.495901, - 45.550034 - ], - [ - -73.496337, - 45.550379 - ], - [ - -73.496482, - 45.550493 - ], - [ - -73.496546, - 45.550543 - ], - [ - -73.496964, - 45.550873 - ], - [ - -73.497569, - 45.551352 - ], - [ - -73.498413, - 45.552 - ], - [ - -73.498592, - 45.552072 - ], - [ - -73.498694, - 45.552086 - ], - [ - -73.498793, - 45.55209 - ], - [ - -73.498947, - 45.552086 - ], - [ - -73.499127, - 45.552095 - ], - [ - -73.499133, - 45.552039 - ], - [ - -73.499161, - 45.551758 - ], - [ - -73.499199, - 45.551371 - ], - [ - -73.49924, - 45.551092 - ], - [ - -73.499284, - 45.550946 - ], - [ - -73.499366, - 45.550811 - ], - [ - -73.499487, - 45.550651 - ], - [ - -73.499689, - 45.550396 - ], - [ - -73.499747, - 45.550322 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.500118, - 45.550075 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.503237, - 45.548311 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.503789, - 45.547771 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.505418, - 45.546103 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507884, - 45.543476 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.509785, - 45.541602 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.511281, - 45.54035 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512997, - 45.539125 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.514327, - 45.538177 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.515316, - 45.537387 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.516479, - 45.536183 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.518224, - 45.53413 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519165, - 45.531639 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.518817, - 45.531415 - ], - [ - -73.518763, - 45.531374 - ], - [ - -73.518709, - 45.531325 - ], - [ - -73.518655, - 45.531271 - ], - [ - -73.518619, - 45.531213 - ], - [ - -73.518601, - 45.531154 - ], - [ - -73.518588, - 45.531096 - ], - [ - -73.518588, - 45.531055 - ], - [ - -73.518597, - 45.531006 - ], - [ - -73.518619, - 45.530952 - ], - [ - -73.518659, - 45.530884 - ], - [ - -73.518691, - 45.530826 - ], - [ - -73.518718, - 45.530785 - ], - [ - -73.518753, - 45.530731 - ], - [ - -73.518803, - 45.530646 - ], - [ - -73.518839, - 45.530596 - ], - [ - -73.518875, - 45.530547 - ], - [ - -73.518897, - 45.530497 - ], - [ - -73.518915, - 45.530448 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519398, - 45.526004 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 161, - "properties": { - "id": "fdf6b031-1df2-4640-9354-84940344a0a8", - "data": { - "gtfs": { - "shape_id": "76_1_A" - }, - "segments": [ - { - "distanceMeters": 88, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 507, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 524, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 463, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 655, - "travelTimeSeconds": 85 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 70 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9840, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6104.888068714351, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.13, - "travelTimeWithoutDwellTimesSeconds": 1380, - "operatingTimeWithLayoverTimeSeconds": 1560, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1380, - "operatingSpeedWithLayoverMetersPerSecond": 6.31, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.13 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "5b35096e-2561-4a9f-8bf4-a3e7609358bf", - "37e0037c-1e13-45e4-a410-24f20d2177f9", - "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", - "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "51878141-1194-4666-977c-0597ee638ffb", - "0a078431-12d6-4e73-9908-076c3a27e8ed", - "211cb268-dcfa-4d7b-810c-681bfa65d4c8", - "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "1e4facbf-29da-4515-97c4-4ef86c22290e", - "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", - "06d26eca-08e9-467e-9ff0-9595778162a0", - "abdcf999-0861-4881-a478-42fa957c7f17", - "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "5f672947-8abc-447c-bf60-535abbf76fae", - "31e8057b-0fb0-44bd-83cf-3acad24654ec", - "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", - "038a22ba-4928-42fc-aaed-50fbd831df37", - "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", - "64648218-6b63-436c-9a46-4770987ba432", - "87d520cc-f77e-449c-88c9-cee424bbc329", - "66456437-f154-4a2f-a12f-2f54cf668687", - "820a9d7c-25e9-487c-9e51-cfefcb1432f7", - "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", - "72c849ab-069a-4dc5-92fe-9ecc63ba074d", - "d9324afd-9cb7-46ba-ad04-bb8387256785", - "45ed93e4-f128-470f-b287-4d6ddc400e49", - "52f97fd3-6c91-420e-82d2-2198f2064d40", - "2d2815ee-443f-48d9-a68e-7f53a9aa6216", - "dadcd93c-5469-44bf-8e3e-ccac4a5af110", - "28d90293-1261-41be-a75c-5fc82c3acd49", - "28559490-1b1e-4bd4-83e1-408fd6a20c77", - "72e3e510-0ae4-407e-a30d-82f52f41e278", - "2e804fba-75d7-4c69-a7f7-706998c1a6f1", - "4fb4515b-e129-4622-b855-89143c2fd488", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "9dee9443-6118-4400-be3e-92e85733a02b", - "segments": [ - 0, - 1, - 7, - 11, - 17, - 22, - 25, - 31, - 33, - 36, - 46, - 53, - 59, - 69, - 73, - 79, - 84, - 104, - 119, - 124, - 136, - 148, - 154, - 172, - 175, - 179, - 183, - 190, - 193, - 195, - 199, - 202, - 205, - 219, - 250 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 161, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519446, - 45.523424 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519332, - 45.526816 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517858, - 45.526792 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517465, - 45.528168 - ], - [ - -73.517458, - 45.528249 - ], - [ - -73.517471, - 45.528385 - ], - [ - -73.517504, - 45.528565 - ], - [ - -73.517516, - 45.528652 - ], - [ - -73.517553, - 45.52877 - ], - [ - -73.517635, - 45.529002 - ], - [ - -73.517693, - 45.529249 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518849, - 45.531518 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.51956, - 45.531975 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.518107, - 45.534268 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.516367, - 45.536313 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.515482, - 45.537237 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.514572, - 45.537992 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.512979, - 45.539138 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.511379, - 45.540279 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.509929, - 45.541464 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.50782, - 45.543544 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.505657, - 45.545849 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.503925, - 45.547642 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501211, - 45.549971 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500335, - 45.550074 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.499756, - 45.550039 - ], - [ - -73.499564, - 45.550308 - ], - [ - -73.499518, - 45.550373 - ], - [ - -73.499348, - 45.550589 - ], - [ - -73.499249, - 45.550718 - ], - [ - -73.499149, - 45.550849 - ], - [ - -73.49909, - 45.551 - ], - [ - -73.499052, - 45.551292 - ], - [ - -73.498994, - 45.551736 - ], - [ - -73.498947, - 45.552086 - ], - [ - -73.498793, - 45.55209 - ], - [ - -73.498694, - 45.552086 - ], - [ - -73.498592, - 45.552072 - ], - [ - -73.498413, - 45.552 - ], - [ - -73.498201, - 45.551838 - ], - [ - -73.497834, - 45.551556 - ], - [ - -73.497569, - 45.551352 - ], - [ - -73.496964, - 45.550873 - ], - [ - -73.496546, - 45.550543 - ], - [ - -73.496482, - 45.550493 - ], - [ - -73.495901, - 45.550034 - ], - [ - -73.495899, - 45.550032 - ], - [ - -73.494604, - 45.549013 - ], - [ - -73.494377, - 45.548846 - ], - [ - -73.494352, - 45.548779 - ], - [ - -73.494351, - 45.54877 - ], - [ - -73.494341, - 45.548702 - ], - [ - -73.494355, - 45.548662 - ], - [ - -73.494517, - 45.548567 - ], - [ - -73.494756, - 45.548419 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494907, - 45.547553 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.491996, - 45.545207 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491296, - 45.54289 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.490614, - 45.540705 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486499, - 45.540159 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482923, - 45.53886 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.480042, - 45.53806 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476967, - 45.537233 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472348, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.469386, - 45.536997 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466189, - 45.53548 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464128, - 45.533599 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461207, - 45.531963 - ], - [ - -73.460868, - 45.531797 - ], - [ - -73.460137, - 45.531468 - ], - [ - -73.459095, - 45.531013 - ], - [ - -73.457812, - 45.53048 - ], - [ - -73.457591, - 45.530387 - ], - [ - -73.456631, - 45.529983 - ], - [ - -73.45522, - 45.529388 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.454676, - 45.529164 - ], - [ - -73.453608, - 45.528719 - ], - [ - -73.45246, - 45.528241 - ], - [ - -73.452419, - 45.528224 - ], - [ - -73.452095, - 45.528089 - ], - [ - -73.451849, - 45.527987 - ], - [ - -73.449586, - 45.5271 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.449239, - 45.527747 - ], - [ - -73.449096, - 45.528021 - ], - [ - -73.448776, - 45.528634 - ], - [ - -73.448472, - 45.529257 - ], - [ - -73.448445, - 45.529313 - ], - [ - -73.448085, - 45.530001 - ], - [ - -73.448024, - 45.530118 - ], - [ - -73.447862, - 45.53032 - ], - [ - -73.44764, - 45.530474 - ], - [ - -73.447631, - 45.53048 - ], - [ - -73.447543, - 45.530541 - ], - [ - -73.447385, - 45.530442 - ], - [ - -73.447236, - 45.530379 - ], - [ - -73.44713, - 45.530342 - ], - [ - -73.44702, - 45.530311 - ], - [ - -73.446897, - 45.530293 - ], - [ - -73.446778, - 45.530284 - ], - [ - -73.446722, - 45.530284 - ], - [ - -73.446558, - 45.530297 - ], - [ - -73.446426, - 45.53032 - ], - [ - -73.446303, - 45.53036 - ], - [ - -73.446188, - 45.530392 - ], - [ - -73.44616, - 45.530403 - ], - [ - -73.446078, - 45.530436 - ], - [ - -73.445986, - 45.530495 - ], - [ - -73.445934, - 45.530553 - ], - [ - -73.44588, - 45.530594 - ], - [ - -73.445655, - 45.53081 - ], - [ - -73.445416, - 45.531246 - ], - [ - -73.445297, - 45.531608 - ], - [ - -73.445262, - 45.531714 - ], - [ - -73.445217, - 45.531876 - ], - [ - -73.445159, - 45.532011 - ], - [ - -73.445133, - 45.532069 - ], - [ - -73.44472, - 45.532816 - ], - [ - -73.444441, - 45.533378 - ], - [ - -73.444119, - 45.533972 - ], - [ - -73.444063, - 45.534075 - ], - [ - -73.443132, - 45.533854 - ], - [ - -73.443002, - 45.533823 - ], - [ - -73.442012, - 45.533579 - ], - [ - -73.441709, - 45.533503 - ], - [ - -73.441658, - 45.533491 - ], - [ - -73.441109, - 45.53336 - ], - [ - -73.440969, - 45.533327 - ], - [ - -73.439556, - 45.532972 - ], - [ - -73.439437, - 45.532943 - ], - [ - -73.439417, - 45.532938 - ], - [ - -73.439309, - 45.532912 - ], - [ - -73.440141, - 45.531003 - ], - [ - -73.440178, - 45.530918 - ], - [ - -73.440526, - 45.530139 - ], - [ - -73.440987, - 45.529108 - ], - [ - -73.441026, - 45.529021 - ], - [ - -73.441195, - 45.528603 - ], - [ - -73.441689, - 45.527492 - ], - [ - -73.441723, - 45.527415 - ], - [ - -73.442111, - 45.526543 - ], - [ - -73.442305, - 45.526133 - ], - [ - -73.442765, - 45.52521 - ], - [ - -73.442852, - 45.525036 - ], - [ - -73.442988, - 45.525071 - ], - [ - -73.443284, - 45.525148 - ] - ] - }, - "id": 162, - "properties": { - "id": "fc27f367-8c72-4e36-98e5-5d88e4a8c4c8", - "data": { - "gtfs": { - "shape_id": "76_1_R" - }, - "segments": [ - { - "distanceMeters": 1321, - "travelTimeSeconds": 176 - }, - { - "distanceMeters": 364, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 307, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 376, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 310, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 312, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 63 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11820, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6104.888068714351, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.57, - "travelTimeWithoutDwellTimesSeconds": 1800, - "operatingTimeWithLayoverTimeSeconds": 1980, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1800, - "operatingSpeedWithLayoverMetersPerSecond": 5.97, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.57 - }, - "mode": "bus", - "name": "Sect. B Vieux-Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "2e804fba-75d7-4c69-a7f7-706998c1a6f1", - "72e3e510-0ae4-407e-a30d-82f52f41e278", - "28559490-1b1e-4bd4-83e1-408fd6a20c77", - "28d90293-1261-41be-a75c-5fc82c3acd49", - "dadcd93c-5469-44bf-8e3e-ccac4a5af110", - "2d2815ee-443f-48d9-a68e-7f53a9aa6216", - "52f97fd3-6c91-420e-82d2-2198f2064d40", - "45ed93e4-f128-470f-b287-4d6ddc400e49", - "d9324afd-9cb7-46ba-ad04-bb8387256785", - "72c849ab-069a-4dc5-92fe-9ecc63ba074d", - "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", - "09bf17cd-9db1-41e3-b993-62146cb91158", - "bc056e84-1f20-4604-aad7-40427c6685a6", - "f8b461c2-c03e-4da6-aa56-a50e7e1d9db0", - "86b1f9fa-fc35-4bee-a9b9-a70269091ef1", - "8a3f1208-7ffb-452e-8ebb-c436acba82d6", - "2d7687a5-f458-4ce1-a3df-9639d89c0154", - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "ce58f095-9b51-4521-8a41-e64bfb0df31e", - "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", - "65003b15-0baf-4f82-9e15-665e17fd1c75", - "81b3573e-d948-478d-a011-db20e21b0c62", - "def08726-b847-4fc6-b901-78e04519a492", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "3b70b024-5c5b-4081-8c70-3fc026422289", - "1e4facbf-29da-4515-97c4-4ef86c22290e", - "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "53aec761-3dae-44a6-bc58-9d5003bfa1bb", - "6e83e147-802a-4695-95f3-96585bd15c4a", - "51878141-1194-4666-977c-0597ee638ffb", - "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "da0ea2a1-8305-4096-84b5-3da6997f0293", - "69483ac1-331d-4f0e-93b5-d8134f380763", - "23ef9461-bbd0-492e-8678-c51238629a13", - "51637772-6b85-4c49-a14a-4de104a8f1f5", - "210e532b-2acc-4a3e-b173-3471add098b1", - "576ef8c5-693c-4ae9-bb41-68685f43e174", - "2dda318d-8bf9-4860-b60d-6fcb1dd29156", - "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", - "de69f95c-e485-42da-bcac-5eeb8a8928ad", - "e36c087c-d78e-48bb-9430-6af9d10493cf", - "5b35096e-2561-4a9f-8bf4-a3e7609358bf" - ], - "stops": [], - "line_id": "9dee9443-6118-4400-be3e-92e85733a02b", - "segments": [ - 0, - 61, - 77, - 80, - 82, - 86, - 89, - 92, - 98, - 103, - 106, - 109, - 124, - 135, - 142, - 148, - 159, - 165, - 189, - 199, - 204, - 213, - 222, - 234, - 244, - 257, - 263, - 271, - 275, - 280, - 282, - 289, - 291, - 297, - 310, - 317, - 324, - 331, - 335, - 337, - 340, - 343 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 162, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.496722, - 45.536592 - ], - [ - -73.498721, - 45.537445 - ], - [ - -73.499294, - 45.537014 - ], - [ - -73.499301, - 45.537008 - ], - [ - -73.49936, - 45.536964 - ], - [ - -73.499435, - 45.536897 - ], - [ - -73.499534, - 45.536807 - ], - [ - -73.498456, - 45.536361 - ], - [ - -73.497345, - 45.53588 - ], - [ - -73.497166, - 45.535794 - ], - [ - -73.496932, - 45.535682 - ], - [ - -73.496814, - 45.535632 - ], - [ - -73.495741, - 45.5352 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.494412, - 45.534682 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.492621, - 45.533943 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.491097, - 45.533312 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.488583, - 45.532281 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.485494, - 45.530997 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.485571, - 45.530652 - ], - [ - -73.485959, - 45.530394 - ], - [ - -73.486628, - 45.52994 - ], - [ - -73.487089, - 45.529621 - ], - [ - -73.487775, - 45.529162 - ], - [ - -73.488524, - 45.528696 - ], - [ - -73.488593, - 45.528653 - ], - [ - -73.489528, - 45.528064 - ], - [ - -73.490298, - 45.527569 - ], - [ - -73.490653, - 45.527304 - ], - [ - -73.491341, - 45.526748 - ], - [ - -73.4914, - 45.526701 - ], - [ - -73.492088, - 45.526179 - ], - [ - -73.492707, - 45.525635 - ], - [ - -73.49291, - 45.52541 - ], - [ - -73.49318, - 45.525113 - ], - [ - -73.493408, - 45.524902 - ], - [ - -73.493799, - 45.524641 - ], - [ - -73.494186, - 45.524488 - ], - [ - -73.49472, - 45.524299 - ], - [ - -73.494785, - 45.524276 - ], - [ - -73.495166, - 45.524155 - ], - [ - -73.495493, - 45.524047 - ], - [ - -73.495888, - 45.523925 - ], - [ - -73.496536, - 45.523723 - ], - [ - -73.496725, - 45.523581 - ], - [ - -73.496788, - 45.523534 - ], - [ - -73.497235, - 45.523003 - ], - [ - -73.497422, - 45.522652 - ], - [ - -73.497435, - 45.5224 - ], - [ - -73.497299, - 45.521792 - ], - [ - -73.497269, - 45.521658 - ], - [ - -73.497101, - 45.520911 - ], - [ - -73.497017, - 45.520339 - ], - [ - -73.497012, - 45.520222 - ], - [ - -73.49702, - 45.520083 - ], - [ - -73.497044, - 45.519908 - ], - [ - -73.497064, - 45.519764 - ], - [ - -73.497084, - 45.519669 - ], - [ - -73.497108, - 45.519561 - ], - [ - -73.497278, - 45.518832 - ], - [ - -73.497354, - 45.518522 - ], - [ - -73.497411, - 45.518364 - ], - [ - -73.497477, - 45.518175 - ], - [ - -73.497619, - 45.517812 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.498036, - 45.516808 - ], - [ - -73.498302, - 45.516239 - ], - [ - -73.498388, - 45.516056 - ], - [ - -73.498727, - 45.51526 - ], - [ - -73.499247, - 45.514482 - ], - [ - -73.499299, - 45.514405 - ], - [ - -73.498854, - 45.514264 - ], - [ - -73.498543, - 45.514166 - ], - [ - -73.495977, - 45.513355 - ], - [ - -73.495825, - 45.513307 - ], - [ - -73.494505, - 45.512884 - ], - [ - -73.493805, - 45.512659 - ], - [ - -73.493619, - 45.512695 - ], - [ - -73.493364, - 45.512745 - ], - [ - -73.492988, - 45.512628 - ], - [ - -73.492639, - 45.51252 - ], - [ - -73.492845, - 45.512216 - ], - [ - -73.493081, - 45.511867 - ], - [ - -73.493369, - 45.51144 - ], - [ - -73.493508, - 45.511225 - ], - [ - -73.493538, - 45.511179 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494003, - 45.510501 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491831, - 45.50868 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488541, - 45.503629 - ], - [ - -73.48831, - 45.50321 - ], - [ - -73.48823, - 45.503039 - ], - [ - -73.488092, - 45.502693 - ], - [ - -73.487989, - 45.502369 - ], - [ - -73.487959, - 45.502275 - ], - [ - -73.487746, - 45.501478 - ], - [ - -73.487613, - 45.501033 - ], - [ - -73.48752, - 45.500725 - ], - [ - -73.487509, - 45.500686 - ], - [ - -73.487464, - 45.50056 - ], - [ - -73.487346, - 45.500232 - ], - [ - -73.487139, - 45.499795 - ], - [ - -73.486985, - 45.499512 - ], - [ - -73.486833, - 45.499258 - ], - [ - -73.486818, - 45.499233 - ], - [ - -73.48673, - 45.4991 - ], - [ - -73.486631, - 45.498949 - ], - [ - -73.486428, - 45.498675 - ], - [ - -73.486216, - 45.498401 - ], - [ - -73.486166, - 45.498342 - ], - [ - -73.486, - 45.498149 - ], - [ - -73.485576, - 45.497708 - ], - [ - -73.485299, - 45.497456 - ], - [ - -73.485251, - 45.497415 - ], - [ - -73.485243, - 45.497408 - ], - [ - -73.484899, - 45.497123 - ], - [ - -73.484431, - 45.496773 - ], - [ - -73.484387, - 45.49674 - ], - [ - -73.484357, - 45.496722 - ], - [ - -73.482221, - 45.49531 - ], - [ - -73.482144, - 45.49526 - ], - [ - -73.482055, - 45.495201 - ], - [ - -73.479528, - 45.493526 - ], - [ - -73.479372, - 45.493423 - ], - [ - -73.474518, - 45.490216 - ], - [ - -73.474366, - 45.490115 - ], - [ - -73.473909, - 45.489814 - ], - [ - -73.472092, - 45.488613 - ], - [ - -73.471942, - 45.488513 - ], - [ - -73.46708, - 45.485304 - ], - [ - -73.466642, - 45.484984 - ], - [ - -73.466504, - 45.48487 - ], - [ - -73.466473, - 45.484845 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466302, - 45.484687 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466188, - 45.484448 - ], - [ - -73.466149, - 45.484395 - ], - [ - -73.465905, - 45.484113 - ], - [ - -73.465719, - 45.4839 - ], - [ - -73.46546, - 45.483541 - ], - [ - -73.465236, - 45.483174 - ], - [ - -73.465161, - 45.483037 - ], - [ - -73.465057, - 45.482799 - ], - [ - -73.464968, - 45.48254 - ], - [ - -73.46489, - 45.482284 - ], - [ - -73.464833, - 45.481906 - ], - [ - -73.464816, - 45.481524 - ], - [ - -73.464842, - 45.481182 - ], - [ - -73.464843, - 45.481165 - ], - [ - -73.464847, - 45.481114 - ], - [ - -73.464866, - 45.480979 - ], - [ - -73.46492, - 45.48071 - ], - [ - -73.465032, - 45.480327 - ], - [ - -73.465198, - 45.479819 - ], - [ - -73.46547, - 45.479009 - ], - [ - -73.465549, - 45.478773 - ], - [ - -73.465652, - 45.478467 - ], - [ - -73.465874, - 45.477808 - ], - [ - -73.466476, - 45.475989 - ], - [ - -73.466484, - 45.475966 - ], - [ - -73.466637, - 45.475504 - ], - [ - -73.467366, - 45.473305 - ], - [ - -73.467616, - 45.472553 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467869, - 45.471793 - ], - [ - -73.467954, - 45.471482 - ], - [ - -73.467979, - 45.471365 - ], - [ - -73.468005, - 45.471249 - ], - [ - -73.468064, - 45.470898 - ], - [ - -73.468089, - 45.470648 - ], - [ - -73.468112, - 45.470407 - ], - [ - -73.468119, - 45.470155 - ], - [ - -73.468115, - 45.470044 - ], - [ - -73.468111, - 45.469894 - ], - [ - -73.468108, - 45.469818 - ], - [ - -73.468107, - 45.469773 - ], - [ - -73.46805, - 45.4693 - ], - [ - -73.467952, - 45.468831 - ], - [ - -73.467932, - 45.468733 - ], - [ - -73.467793, - 45.468274 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.468955, - 45.466871 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466764 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466352, - 45.465288 - ], - [ - -73.466238, - 45.465062 - ], - [ - -73.466142, - 45.464853 - ], - [ - -73.466048, - 45.464638 - ], - [ - -73.46599, - 45.464498 - ], - [ - -73.465967, - 45.464441 - ], - [ - -73.465777, - 45.463945 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465663, - 45.463449 - ], - [ - -73.465646, - 45.463238 - ], - [ - -73.465636, - 45.463073 - ], - [ - -73.465461, - 45.461275 - ], - [ - -73.465446, - 45.461132 - ], - [ - -73.465251, - 45.459263 - ], - [ - -73.465215, - 45.45889 - ], - [ - -73.465199, - 45.458728 - ], - [ - -73.465132, - 45.458038 - ], - [ - -73.465113, - 45.457592 - ], - [ - -73.465124, - 45.457143 - ], - [ - -73.465143, - 45.45685 - ], - [ - -73.465153, - 45.456755 - ], - [ - -73.465199, - 45.456301 - ], - [ - -73.465244, - 45.456 - ], - [ - -73.465335, - 45.455572 - ], - [ - -73.465339, - 45.455554 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465617, - 45.454677 - ], - [ - -73.465629, - 45.454641 - ], - [ - -73.465631, - 45.454637 - ], - [ - -73.465694, - 45.454481 - ], - [ - -73.465735, - 45.45438 - ], - [ - -73.465853, - 45.45411 - ], - [ - -73.466087, - 45.453654 - ], - [ - -73.46613, - 45.45357 - ], - [ - -73.466877, - 45.452297 - ], - [ - -73.467521, - 45.451236 - ], - [ - -73.468182, - 45.450183 - ], - [ - -73.469986, - 45.447403 - ], - [ - -73.470113, - 45.447209 - ], - [ - -73.470215, - 45.447052 - ], - [ - -73.47028, - 45.446953 - ], - [ - -73.470478, - 45.446647 - ], - [ - -73.471792, - 45.444623 - ], - [ - -73.47221, - 45.443966 - ], - [ - -73.472405, - 45.443633 - ], - [ - -73.472572, - 45.443287 - ], - [ - -73.472646, - 45.443111 - ], - [ - -73.472778, - 45.442752 - ], - [ - -73.472833, - 45.442567 - ], - [ - -73.472919, - 45.442194 - ], - [ - -73.472951, - 45.442005 - ], - [ - -73.473027, - 45.441433 - ], - [ - -73.473089, - 45.441055 - ], - [ - -73.47323, - 45.44052 - ], - [ - -73.473412, - 45.440048 - ], - [ - -73.47351, - 45.439841 - ], - [ - -73.47354, - 45.439773 - ], - [ - -73.473721, - 45.439445 - ], - [ - -73.474086, - 45.43886 - ], - [ - -73.474303, - 45.438527 - ], - [ - -73.474451, - 45.438299 - ], - [ - -73.474529, - 45.438181 - ], - [ - -73.474754, - 45.437834 - ], - [ - -73.474796, - 45.437771 - ], - [ - -73.476491, - 45.435131 - ], - [ - -73.476679, - 45.434838 - ], - [ - -73.476735, - 45.434748 - ], - [ - -73.47646, - 45.434649 - ], - [ - -73.475468, - 45.434329 - ], - [ - -73.475339, - 45.434286 - ], - [ - -73.474709, - 45.434072 - ], - [ - -73.473919, - 45.433803 - ], - [ - -73.472029, - 45.433164 - ], - [ - -73.469852, - 45.432429 - ], - [ - -73.46881, - 45.432083 - ], - [ - -73.467709, - 45.431733 - ], - [ - -73.467377, - 45.431628 - ], - [ - -73.468527, - 45.429807 - ], - [ - -73.468612, - 45.429671 - ], - [ - -73.469521, - 45.428308 - ], - [ - -73.469323, - 45.428236 - ], - [ - -73.468819, - 45.428066 - ], - [ - -73.46628, - 45.427209 - ], - [ - -73.465707, - 45.427016 - ], - [ - -73.465691, - 45.42701 - ], - [ - -73.465621, - 45.426984 - ], - [ - -73.465518, - 45.426984 - ], - [ - -73.465439, - 45.427007 - ], - [ - -73.465404, - 45.427043 - ], - [ - -73.465004, - 45.427618 - ], - [ - -73.464866, - 45.42783 - ], - [ - -73.464713, - 45.428068 - ], - [ - -73.464654, - 45.428172 - ], - [ - -73.464636, - 45.428221 - ], - [ - -73.464646, - 45.428266 - ], - [ - -73.464674, - 45.428302 - ], - [ - -73.464725, - 45.428338 - ], - [ - -73.46484, - 45.428383 - ], - [ - -73.466697, - 45.429014 - ], - [ - -73.467149, - 45.429168 - ], - [ - -73.468287, - 45.429554 - ], - [ - -73.468473, - 45.429621 - ] - ] - }, - "id": 163, - "properties": { - "id": "0e33d615-63e2-421c-b659-d17ef3f90b7c", - "data": { - "gtfs": { - "shape_id": "77_1_R" - }, - "segments": [ - { - "distanceMeters": 248, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 953, - "travelTimeSeconds": 138 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 95, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 537, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 603, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 608, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 837, - "travelTimeSeconds": 128 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 477, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 898, - "travelTimeSeconds": 126 - }, - { - "distanceMeters": 1055, - "travelTimeSeconds": 148 - }, - { - "distanceMeters": 554, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 34 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 246, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 16548, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 12092.399309267032, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.73, - "travelTimeWithoutDwellTimesSeconds": 2460, - "operatingTimeWithLayoverTimeSeconds": 2706, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2460, - "operatingSpeedWithLayoverMetersPerSecond": 6.12, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.73 - }, - "mode": "bus", - "name": "CÉGEP Édouard-Montpetit", - "color": "#A32638", - "nodes": [ - "4ae33b06-30dd-4ad3-8df9-3ce610880853", - "02ddb4e4-c9f0-483c-9ae1-3f0d44c6367b", - "25e9b688-116d-4828-87b8-e7d0946c452f", - "28f2fe65-961c-4550-a722-1e7790fe94ad", - "9d0a7ab6-be66-4ca9-b863-8712d8cd028c", - "999ed130-7d99-4115-ac3c-cabba7731288", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "27c5df15-201f-4855-9f49-556fd659fd8e", - "280d705c-e41e-4a8f-8450-ac212bf84d99", - "dc7a6dd7-6fde-40ea-9f37-85aaefe35169", - "16c6c90b-9ef2-4203-a4a2-74a27e23dc94", - "afda06bb-9f3e-43a6-883f-96226fa884c5", - "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "6c8872a8-685f-49ed-9246-92743dd113de", - "161f72ac-926f-49be-80a4-a3cb10884d02", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "d32c5a5b-6e6f-48c3-9f4e-37b94ed6e20d", - "09272548-09d5-4afa-a45f-80ba6dd656dd", - "4a0c512f-2ce4-41cc-a200-cf81d75487c1", - "7095ff94-e6bf-4956-8b59-9e66be631584", - "5d573c90-ed41-4ac1-9f58-abc862e00f93", - "37199bb2-9740-4484-b68f-12d3c82f8bf9", - "bcd0a901-5384-443e-9be4-1f0faa123ccb", - "fdd9bfef-c8dc-4f65-9008-847050729854", - "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", - "7ad37664-fa6b-478f-8d31-2d3ae7009709", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "94cd69e7-ebc9-452b-a357-367107db73b4", - "03b1ef77-b509-4f21-97d5-d511eeb821cb", - "351136d8-2c40-4c3f-8032-a52e48738c07", - "159a0fe9-bedb-40f2-9806-32ab49594978", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "579043e1-54f7-411f-9a36-e7ee3324290f", - "1758013c-4193-42f0-a495-c36930003f5b", - "51e1600d-418e-4477-9b26-9e5507d72a03", - "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "74887516-47d5-4269-9513-84672d18e287", - "1e3a74d9-9d8a-467f-a82e-3dafee501e32", - "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", - "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", - "9d435e32-ad0d-41e2-bb28-30458533923f", - "46f71035-3e65-4e46-9e5d-154a9fb90fc8", - "c5dd3e08-dca5-473a-b3e2-b94affceddb5", - "99ed9a7e-9c9a-49bd-8a93-0c7a4fc5376d", - "f58a318f-2fac-4a22-b374-38335fe92155", - "bce84a67-72ba-4847-b756-b7ff7e256fb0", - "46ee0c64-acf7-4889-b8c8-a5aa9e1d42ae", - "a1ca7f00-0457-4527-945c-e70fcf3a2d14", - "02173302-0d13-4f4c-b805-a10732912553", - "dd75840f-4ec8-4ee8-b04f-ae7639f6c994" - ], - "stops": [], - "line_id": "27ac94b8-b83e-4a3e-a222-91dec1b1b4bd", - "segments": [ - 0, - 2, - 9, - 15, - 18, - 21, - 26, - 29, - 36, - 41, - 45, - 50, - 56, - 61, - 69, - 75, - 78, - 83, - 85, - 91, - 96, - 110, - 128, - 134, - 145, - 147, - 150, - 153, - 155, - 158, - 162, - 179, - 187, - 190, - 202, - 210, - 225, - 254, - 256, - 271, - 281, - 303, - 312, - 315, - 318, - 320, - 324, - 325, - 333, - 342 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 163, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.468473, - 45.429621 - ], - [ - -73.468612, - 45.429671 - ], - [ - -73.467519, - 45.431403 - ], - [ - -73.467377, - 45.431628 - ], - [ - -73.467321, - 45.431724 - ], - [ - -73.469507, - 45.432418 - ], - [ - -73.472271, - 45.433358 - ], - [ - -73.473856, - 45.433897 - ], - [ - -73.474588, - 45.434146 - ], - [ - -73.475417, - 45.434428 - ], - [ - -73.476079, - 45.43472 - ], - [ - -73.476112, - 45.434747 - ], - [ - -73.476145, - 45.434786 - ], - [ - -73.47617, - 45.434839 - ], - [ - -73.476192, - 45.43492 - ], - [ - -73.476201, - 45.434971 - ], - [ - -73.476213, - 45.435032 - ], - [ - -73.476032, - 45.435312 - ], - [ - -73.474803, - 45.437222 - ], - [ - -73.474468, - 45.437749 - ], - [ - -73.474322, - 45.437976 - ], - [ - -73.474202, - 45.438163 - ], - [ - -73.474023, - 45.438441 - ], - [ - -73.47371, - 45.438932 - ], - [ - -73.473393, - 45.439449 - ], - [ - -73.473246, - 45.439724 - ], - [ - -73.473111, - 45.440012 - ], - [ - -73.472993, - 45.440308 - ], - [ - -73.472892, - 45.440614 - ], - [ - -73.472775, - 45.441091 - ], - [ - -73.472634, - 45.442077 - ], - [ - -73.472562, - 45.44241 - ], - [ - -73.472464, - 45.442742 - ], - [ - -73.47234, - 45.44308 - ], - [ - -73.47219, - 45.443413 - ], - [ - -73.472106, - 45.443579 - ], - [ - -73.471921, - 45.443899 - ], - [ - -73.471725, - 45.444209 - ], - [ - -73.470198, - 45.446562 - ], - [ - -73.470086, - 45.446734 - ], - [ - -73.470002, - 45.446863 - ], - [ - -73.469936, - 45.446962 - ], - [ - -73.4697, - 45.447326 - ], - [ - -73.467906, - 45.450089 - ], - [ - -73.467328, - 45.451002 - ], - [ - -73.46669, - 45.452054 - ], - [ - -73.465968, - 45.453278 - ], - [ - -73.465918, - 45.453363 - ], - [ - -73.465707, - 45.453755 - ], - [ - -73.46558, - 45.454016 - ], - [ - -73.46536, - 45.454529 - ], - [ - -73.465344, - 45.454574 - ], - [ - -73.46526, - 45.454818 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.465167, - 45.455082 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465048, - 45.455509 - ], - [ - -73.465041, - 45.455536 - ], - [ - -73.464975, - 45.455829 - ], - [ - -73.464919, - 45.45613 - ], - [ - -73.464878, - 45.456427 - ], - [ - -73.464848, - 45.456873 - ], - [ - -73.464844, - 45.457169 - ], - [ - -73.464871, - 45.457574 - ], - [ - -73.464981, - 45.459097 - ], - [ - -73.464994, - 45.459278 - ], - [ - -73.465215, - 45.461562 - ], - [ - -73.465247, - 45.461893 - ], - [ - -73.465328, - 45.462497 - ], - [ - -73.465435, - 45.463211 - ], - [ - -73.465484, - 45.463543 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467476, - 45.467991 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467548, - 45.468225 - ], - [ - -73.467698, - 45.468792 - ], - [ - -73.467776, - 45.469183 - ], - [ - -73.46782, - 45.469453 - ], - [ - -73.467839, - 45.469682 - ], - [ - -73.467865, - 45.469989 - ], - [ - -73.467864, - 45.470057 - ], - [ - -73.467862, - 45.470168 - ], - [ - -73.46786, - 45.470362 - ], - [ - -73.467821, - 45.470781 - ], - [ - -73.467786, - 45.471019 - ], - [ - -73.467768, - 45.4711 - ], - [ - -73.467742, - 45.471226 - ], - [ - -73.467655, - 45.471563 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467508, - 45.472063 - ], - [ - -73.467493, - 45.472108 - ], - [ - -73.467349, - 45.472543 - ], - [ - -73.467254, - 45.472832 - ], - [ - -73.467075, - 45.473412 - ], - [ - -73.467018, - 45.473612 - ], - [ - -73.46686, - 45.474168 - ], - [ - -73.466715, - 45.474632 - ], - [ - -73.466501, - 45.475269 - ], - [ - -73.466278, - 45.475935 - ], - [ - -73.466234, - 45.476067 - ], - [ - -73.466132, - 45.476368 - ], - [ - -73.465592, - 45.477979 - ], - [ - -73.465357, - 45.478703 - ], - [ - -73.465343, - 45.478741 - ], - [ - -73.465269, - 45.478932 - ], - [ - -73.465247, - 45.479 - ], - [ - -73.464879, - 45.480107 - ], - [ - -73.464823, - 45.480273 - ], - [ - -73.464733, - 45.480574 - ], - [ - -73.464664, - 45.480885 - ], - [ - -73.464649, - 45.480998 - ], - [ - -73.464634, - 45.481108 - ], - [ - -73.464622, - 45.481195 - ], - [ - -73.464619, - 45.481245 - ], - [ - -73.464603, - 45.481524 - ], - [ - -73.464619, - 45.481956 - ], - [ - -73.464693, - 45.482383 - ], - [ - -73.464736, - 45.482559 - ], - [ - -73.46485, - 45.482905 - ], - [ - -73.46499, - 45.483243 - ], - [ - -73.465069, - 45.483405 - ], - [ - -73.465231, - 45.483688 - ], - [ - -73.465328, - 45.483837 - ], - [ - -73.465383, - 45.483922 - ], - [ - -73.465513, - 45.484102 - ], - [ - -73.465839, - 45.48448 - ], - [ - -73.466022, - 45.484682 - ], - [ - -73.46613, - 45.484773 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.46623, - 45.484867 - ], - [ - -73.466294, - 45.484926 - ], - [ - -73.466444, - 45.485045 - ], - [ - -73.466566, - 45.485142 - ], - [ - -73.466759, - 45.48529 - ], - [ - -73.466948, - 45.485421 - ], - [ - -73.467024, - 45.48547 - ], - [ - -73.468004, - 45.486118 - ], - [ - -73.469888, - 45.487365 - ], - [ - -73.470621, - 45.487851 - ], - [ - -73.471587, - 45.488492 - ], - [ - -73.471789, - 45.488626 - ], - [ - -73.473768, - 45.489935 - ], - [ - -73.473993, - 45.490084 - ], - [ - -73.474218, - 45.490232 - ], - [ - -73.476501, - 45.49174 - ], - [ - -73.4777, - 45.49253 - ], - [ - -73.479072, - 45.493436 - ], - [ - -73.479217, - 45.493531 - ], - [ - -73.480275, - 45.494231 - ], - [ - -73.481907, - 45.495309 - ], - [ - -73.482, - 45.495372 - ], - [ - -73.482347, - 45.495601 - ], - [ - -73.483276, - 45.496213 - ], - [ - -73.483953, - 45.496659 - ], - [ - -73.484027, - 45.496711 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.48442, - 45.496983 - ], - [ - -73.484708, - 45.497199 - ], - [ - -73.484931, - 45.497378 - ], - [ - -73.485095, - 45.49751 - ], - [ - -73.485397, - 45.497784 - ], - [ - -73.485739, - 45.498135 - ], - [ - -73.485877, - 45.498284 - ], - [ - -73.486105, - 45.498553 - ], - [ - -73.486286, - 45.498787 - ], - [ - -73.486368, - 45.498907 - ], - [ - -73.486538, - 45.499154 - ], - [ - -73.486685, - 45.499381 - ], - [ - -73.486823, - 45.499615 - ], - [ - -73.486951, - 45.499858 - ], - [ - -73.487138, - 45.500263 - ], - [ - -73.487159, - 45.500317 - ], - [ - -73.487261, - 45.500591 - ], - [ - -73.487306, - 45.500713 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487417, - 45.501077 - ], - [ - -73.487455, - 45.501208 - ], - [ - -73.487464, - 45.50124 - ], - [ - -73.48765, - 45.50191 - ], - [ - -73.487855, - 45.502589 - ], - [ - -73.488032, - 45.50303 - ], - [ - -73.488178, - 45.503309 - ], - [ - -73.488409, - 45.50371 - ], - [ - -73.489159, - 45.504974 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492912, - 45.510101 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497907, - 45.512049 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.499949, - 45.513375 - ], - [ - -73.4998, - 45.513609 - ], - [ - -73.499373, - 45.514289 - ], - [ - -73.499299, - 45.514405 - ], - [ - -73.499247, - 45.514482 - ], - [ - -73.498727, - 45.51526 - ], - [ - -73.498434, - 45.515947 - ], - [ - -73.498388, - 45.516056 - ], - [ - -73.498036, - 45.516808 - ], - [ - -73.497778, - 45.517414 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.497477, - 45.518175 - ], - [ - -73.497411, - 45.518364 - ], - [ - -73.497354, - 45.518522 - ], - [ - -73.497278, - 45.518832 - ], - [ - -73.497143, - 45.519412 - ], - [ - -73.497108, - 45.519561 - ], - [ - -73.497064, - 45.519764 - ], - [ - -73.497044, - 45.519908 - ], - [ - -73.49702, - 45.520083 - ], - [ - -73.497012, - 45.520222 - ], - [ - -73.497017, - 45.520339 - ], - [ - -73.497101, - 45.520911 - ], - [ - -73.497229, - 45.521482 - ], - [ - -73.497269, - 45.521658 - ], - [ - -73.497435, - 45.5224 - ], - [ - -73.497422, - 45.522652 - ], - [ - -73.497235, - 45.523003 - ], - [ - -73.496903, - 45.523397 - ], - [ - -73.496788, - 45.523534 - ], - [ - -73.496536, - 45.523723 - ], - [ - -73.495888, - 45.523925 - ], - [ - -73.495493, - 45.524047 - ], - [ - -73.495166, - 45.524155 - ], - [ - -73.494785, - 45.524276 - ], - [ - -73.494282, - 45.524454 - ], - [ - -73.494186, - 45.524488 - ], - [ - -73.493799, - 45.524641 - ], - [ - -73.493408, - 45.524902 - ], - [ - -73.49318, - 45.525113 - ], - [ - -73.492799, - 45.525533 - ], - [ - -73.492707, - 45.525635 - ], - [ - -73.492088, - 45.526179 - ], - [ - -73.491468, - 45.526649 - ], - [ - -73.4914, - 45.526701 - ], - [ - -73.490653, - 45.527304 - ], - [ - -73.490298, - 45.527569 - ], - [ - -73.489528, - 45.528064 - ], - [ - -73.488693, - 45.52859 - ], - [ - -73.488593, - 45.528653 - ], - [ - -73.487775, - 45.529162 - ], - [ - -73.487089, - 45.529621 - ], - [ - -73.486767, - 45.529844 - ], - [ - -73.486628, - 45.52994 - ], - [ - -73.485959, - 45.530394 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.485545, - 45.531018 - ], - [ - -73.485764, - 45.531107 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.488401, - 45.532204 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.490614, - 45.533115 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.492947, - 45.534078 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.494075, - 45.534543 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.495628, - 45.535241 - ], - [ - -73.495883, - 45.535371 - ], - [ - -73.496535, - 45.535675 - ], - [ - -73.496645, - 45.535727 - ], - [ - -73.496517, - 45.535856 - ], - [ - -73.496068, - 45.536307 - ], - [ - -73.496193, - 45.536366 - ], - [ - -73.496722, - 45.536592 - ] - ] - }, - "id": 164, - "properties": { - "id": "d4a5c810-4fc7-4839-b263-fa0d3d4b2179", - "data": { - "gtfs": { - "shape_id": "77_1_A" - }, - "segments": [ - { - "distanceMeters": 223, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 466, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 1036, - "travelTimeSeconds": 109 - }, - { - "distanceMeters": 976, - "travelTimeSeconds": 103 - }, - { - "distanceMeters": 479, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 1206, - "travelTimeSeconds": 129 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 436, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 485, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 555, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 544, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 507, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 1157, - "travelTimeSeconds": 151 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 384, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 102, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 48 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 216, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 14751, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 12092.399309267032, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.83, - "travelTimeWithoutDwellTimesSeconds": 2160, - "operatingTimeWithLayoverTimeSeconds": 2376, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2160, - "operatingSpeedWithLayoverMetersPerSecond": 6.21, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.83 - }, - "mode": "bus", - "name": "Parc ind. Brossard", - "color": "#A32638", - "nodes": [ - "dd75840f-4ec8-4ee8-b04f-ae7639f6c994", - "fbc5c4f7-343a-481e-867b-6e46cf998478", - "24ba4b22-45ca-4a49-b97e-fa35f5d53093", - "4c302a60-4ab3-44a3-be17-43359562aaf4", - "a09465ea-562d-48bd-b60a-ae948c06a28a", - "f673dd78-5910-4b73-a147-fdcaa1bf6a01", - "25804924-ba76-4ef4-b42b-ff451a0d33dc", - "3481b163-efe1-4b08-b6af-eecb2141ddbe", - "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", - "acb7092d-3b2a-4d79-a4e3-09e7e52af475", - "47d29e21-b442-4f1e-bc41-0d7871af14e8", - "7eaffbff-c86c-4810-b174-bda8780c04b4", - "e76a6766-6730-419b-bd29-f65b80bb6721", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "4996264a-c3f0-4fe8-be81-9ca3d8659c61", - "e089008c-4123-4897-95b5-a61e5e049f48", - "03b1ef77-b509-4f21-97d5-d511eeb821cb", - "56af9248-f973-4335-84c1-2e5e744a3910", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "fd062866-a8eb-4466-b53a-6adf8fc3f09a", - "6c42a8f6-a98f-4058-9992-d00706a03dff", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "09272548-09d5-4afa-a45f-80ba6dd656dd", - "d32c5a5b-6e6f-48c3-9f4e-37b94ed6e20d", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "161f72ac-926f-49be-80a4-a3cb10884d02", - "6c8872a8-685f-49ed-9246-92743dd113de", - "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "afda06bb-9f3e-43a6-883f-96226fa884c5", - "16c6c90b-9ef2-4203-a4a2-74a27e23dc94", - "dc7a6dd7-6fde-40ea-9f37-85aaefe35169", - "280d705c-e41e-4a8f-8450-ac212bf84d99", - "79974834-930d-4e4d-921b-dafd49580553", - "27c5df15-201f-4855-9f49-556fd659fd8e", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "999ed130-7d99-4115-ac3c-cabba7731288", - "d15f81ba-7519-47f7-aa07-0026f1b03e42", - "28f2fe65-961c-4550-a722-1e7790fe94ad", - "9cf81604-6d70-4ba8-a3fc-521104742058", - "4ae33b06-30dd-4ad3-8df9-3ce610880853" - ], - "stops": [], - "line_id": "27ac94b8-b83e-4a3e-a222-91dec1b1b4bd", - "segments": [ - 0, - 2, - 6, - 8, - 17, - 20, - 39, - 52, - 64, - 95, - 109, - 118, - 121, - 128, - 149, - 157, - 160, - 164, - 169, - 172, - 190, - 212, - 225, - 230, - 234, - 237, - 243, - 251, - 256, - 263, - 268, - 271, - 276, - 280, - 285, - 287, - 291, - 296, - 298, - 304 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 164, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.456382, - 45.545018 - ], - [ - -73.456413, - 45.545022 - ], - [ - -73.456506, - 45.545025 - ], - [ - -73.456655, - 45.545026 - ], - [ - -73.45681, - 45.545021 - ], - [ - -73.457082, - 45.545011 - ], - [ - -73.457324, - 45.544996 - ], - [ - -73.457656, - 45.544978 - ], - [ - -73.458865, - 45.54493 - ], - [ - -73.459543, - 45.544902 - ], - [ - -73.461426, - 45.544804 - ], - [ - -73.461417, - 45.544731 - ], - [ - -73.461405, - 45.544617 - ], - [ - -73.461397, - 45.544555 - ], - [ - -73.461383, - 45.54449 - ], - [ - -73.461378, - 45.544474 - ], - [ - -73.461351, - 45.54439 - ], - [ - -73.461333, - 45.544338 - ], - [ - -73.46128, - 45.544184 - ], - [ - -73.461265, - 45.544142 - ], - [ - -73.461237, - 45.544054 - ], - [ - -73.461219, - 45.543973 - ], - [ - -73.461207, - 45.543881 - ], - [ - -73.461191, - 45.543707 - ], - [ - -73.461179, - 45.543582 - ], - [ - -73.461166, - 45.543438 - ], - [ - -73.461154, - 45.543353 - ], - [ - -73.461131, - 45.543264 - ], - [ - -73.461124, - 45.543242 - ], - [ - -73.461112, - 45.543205 - ], - [ - -73.461098, - 45.543164 - ], - [ - -73.461081, - 45.543126 - ], - [ - -73.461069, - 45.543101 - ], - [ - -73.461055, - 45.543072 - ], - [ - -73.46101, - 45.542995 - ], - [ - -73.460943, - 45.542899 - ], - [ - -73.460902, - 45.54285 - ], - [ - -73.460879, - 45.542823 - ], - [ - -73.46086, - 45.542802 - ], - [ - -73.460836, - 45.542778 - ], - [ - -73.460809, - 45.542751 - ], - [ - -73.460787, - 45.542731 - ], - [ - -73.460762, - 45.542708 - ], - [ - -73.460739, - 45.542689 - ], - [ - -73.460712, - 45.542667 - ], - [ - -73.46069, - 45.542652 - ], - [ - -73.460685, - 45.542649 - ], - [ - -73.460657, - 45.542626 - ], - [ - -73.460649, - 45.542622 - ], - [ - -73.460643, - 45.542617 - ], - [ - -73.460635, - 45.542613 - ], - [ - -73.460629, - 45.542608 - ], - [ - -73.460601, - 45.54259 - ], - [ - -73.4606, - 45.54259 - ], - [ - -73.460571, - 45.542572 - ], - [ - -73.460541, - 45.542554 - ], - [ - -73.460511, - 45.542536 - ], - [ - -73.460481, - 45.542518 - ], - [ - -73.46045, - 45.542505 - ], - [ - -73.460419, - 45.542487 - ], - [ - -73.460387, - 45.542469 - ], - [ - -73.460355, - 45.542455 - ], - [ - -73.460322, - 45.542437 - ], - [ - -73.460289, - 45.542424 - ], - [ - -73.460256, - 45.54241 - ], - [ - -73.460223, - 45.542397 - ], - [ - -73.460189, - 45.542383 - ], - [ - -73.460154, - 45.54237 - ], - [ - -73.460119, - 45.542356 - ], - [ - -73.460085, - 45.542343 - ], - [ - -73.460079, - 45.542341 - ], - [ - -73.460014, - 45.54232 - ], - [ - -73.459951, - 45.542301 - ], - [ - -73.459906, - 45.542289 - ], - [ - -73.459869, - 45.54228 - ], - [ - -73.459827, - 45.542271 - ], - [ - -73.45951, - 45.542189 - ], - [ - -73.459471, - 45.54218 - ], - [ - -73.459432, - 45.542171 - ], - [ - -73.459394, - 45.542162 - ], - [ - -73.45936, - 45.54215 - ], - [ - -73.459356, - 45.542149 - ], - [ - -73.459318, - 45.54214 - ], - [ - -73.459297, - 45.542133 - ], - [ - -73.45928, - 45.542126 - ], - [ - -73.459243, - 45.542113 - ], - [ - -73.459206, - 45.542099 - ], - [ - -73.459169, - 45.542086 - ], - [ - -73.459133, - 45.542072 - ], - [ - -73.459097, - 45.542059 - ], - [ - -73.459062, - 45.542045 - ], - [ - -73.459026, - 45.542027 - ], - [ - -73.458992, - 45.542014 - ], - [ - -73.458957, - 45.541996 - ], - [ - -73.458923, - 45.541982 - ], - [ - -73.458889, - 45.541964 - ], - [ - -73.458856, - 45.541946 - ], - [ - -73.458823, - 45.541928 - ], - [ - -73.458791, - 45.54191 - ], - [ - -73.458759, - 45.541892 - ], - [ - -73.458728, - 45.541874 - ], - [ - -73.458697, - 45.541852 - ], - [ - -73.458666, - 45.541834 - ], - [ - -73.458636, - 45.541816 - ], - [ - -73.458598, - 45.541789 - ], - [ - -73.4585, - 45.541718 - ], - [ - -73.458394, - 45.54164 - ], - [ - -73.458385, - 45.541636 - ], - [ - -73.458368, - 45.541622 - ], - [ - -73.457785, - 45.541206 - ], - [ - -73.457586, - 45.541064 - ], - [ - -73.457684, - 45.540996 - ], - [ - -73.458502, - 45.54043 - ], - [ - -73.458577, - 45.540376 - ], - [ - -73.459325, - 45.539858 - ], - [ - -73.459859, - 45.539489 - ], - [ - -73.459971, - 45.539411 - ], - [ - -73.460057, - 45.539352 - ], - [ - -73.460539, - 45.539018 - ], - [ - -73.460731, - 45.538885 - ], - [ - -73.460897, - 45.538771 - ], - [ - -73.461553, - 45.538316 - ], - [ - -73.461725, - 45.538197 - ], - [ - -73.461864, - 45.5381 - ], - [ - -73.462187, - 45.53833 - ], - [ - -73.462514, - 45.538538 - ], - [ - -73.462534, - 45.538551 - ], - [ - -73.462697, - 45.53865 - ], - [ - -73.462874, - 45.538753 - ], - [ - -73.463118, - 45.538911 - ], - [ - -73.463271, - 45.539023 - ], - [ - -73.463464, - 45.539174 - ], - [ - -73.463513, - 45.539212 - ], - [ - -73.463699, - 45.539363 - ], - [ - -73.463797, - 45.539442 - ], - [ - -73.463819, - 45.53946 - ], - [ - -73.463869, - 45.5395 - ], - [ - -73.463917, - 45.539539 - ], - [ - -73.463967, - 45.539581 - ], - [ - -73.464033, - 45.539628 - ], - [ - -73.464064, - 45.539651 - ], - [ - -73.464104, - 45.539676 - ], - [ - -73.46414, - 45.539697 - ], - [ - -73.46418, - 45.539719 - ], - [ - -73.464231, - 45.539745 - ], - [ - -73.464269, - 45.539763 - ], - [ - -73.464334, - 45.539792 - ], - [ - -73.464385, - 45.539815 - ], - [ - -73.464445, - 45.539835 - ], - [ - -73.464497, - 45.539849 - ], - [ - -73.464558, - 45.53987 - ], - [ - -73.464679, - 45.539901 - ], - [ - -73.464825, - 45.539928 - ], - [ - -73.464951, - 45.539943 - ], - [ - -73.465098, - 45.539953 - ], - [ - -73.465216, - 45.539952 - ], - [ - -73.465315, - 45.539947 - ], - [ - -73.465335, - 45.539946 - ], - [ - -73.465482, - 45.539933 - ], - [ - -73.4656, - 45.539921 - ], - [ - -73.465709, - 45.539906 - ], - [ - -73.465848, - 45.539899 - ], - [ - -73.46602, - 45.539896 - ], - [ - -73.466115, - 45.539901 - ], - [ - -73.466142, - 45.539902 - ], - [ - -73.466227, - 45.539907 - ], - [ - -73.466407, - 45.539932 - ], - [ - -73.466559, - 45.539965 - ], - [ - -73.466727, - 45.539999 - ], - [ - -73.466892, - 45.540019 - ], - [ - -73.467302, - 45.540031 - ], - [ - -73.46737, - 45.540049 - ], - [ - -73.467487, - 45.540063 - ], - [ - -73.467665, - 45.540072 - ], - [ - -73.467897, - 45.540082 - ], - [ - -73.468103, - 45.540091 - ], - [ - -73.468119, - 45.540092 - ], - [ - -73.468265, - 45.540108 - ], - [ - -73.468441, - 45.540138 - ], - [ - -73.468505, - 45.54015 - ], - [ - -73.468874, - 45.540244 - ], - [ - -73.469159, - 45.540339 - ], - [ - -73.469347, - 45.540429 - ], - [ - -73.469589, - 45.540555 - ], - [ - -73.469962, - 45.540807 - ], - [ - -73.470428, - 45.541135 - ], - [ - -73.470827, - 45.541423 - ], - [ - -73.471228, - 45.5417 - ], - [ - -73.471277, - 45.541734 - ], - [ - -73.471378, - 45.541806 - ], - [ - -73.471513, - 45.541905 - ], - [ - -73.47173, - 45.541959 - ], - [ - -73.472231, - 45.542247 - ], - [ - -73.472636, - 45.54249 - ], - [ - -73.473362, - 45.542963 - ], - [ - -73.473833, - 45.543265 - ], - [ - -73.473915, - 45.543318 - ], - [ - -73.474124, - 45.54344 - ], - [ - -73.474404, - 45.543587 - ], - [ - -73.474586, - 45.543683 - ], - [ - -73.475053, - 45.543884 - ], - [ - -73.475109, - 45.543908 - ], - [ - -73.475416, - 45.544033 - ], - [ - -73.475463, - 45.544052 - ], - [ - -73.475489, - 45.544062 - ], - [ - -73.475906, - 45.544232 - ], - [ - -73.476368, - 45.544484 - ], - [ - -73.476738, - 45.5447 - ], - [ - -73.477125, - 45.544952 - ], - [ - -73.47749, - 45.545227 - ], - [ - -73.478085, - 45.54574 - ], - [ - -73.47809, - 45.545745 - ], - [ - -73.478167, - 45.545816 - ], - [ - -73.478252, - 45.545902 - ], - [ - -73.479053, - 45.546743 - ], - [ - -73.47929, - 45.546982 - ], - [ - -73.479428, - 45.54712 - ], - [ - -73.479532, - 45.547225 - ], - [ - -73.479872, - 45.547514 - ], - [ - -73.479981, - 45.547607 - ], - [ - -73.480465, - 45.547976 - ], - [ - -73.480787, - 45.548206 - ], - [ - -73.481574, - 45.548732 - ], - [ - -73.481869, - 45.548945 - ], - [ - -73.481961, - 45.549011 - ], - [ - -73.482061, - 45.549092 - ], - [ - -73.482468, - 45.549434 - ], - [ - -73.482621, - 45.549591 - ], - [ - -73.48267, - 45.549641 - ], - [ - -73.482956, - 45.549956 - ], - [ - -73.483212, - 45.550235 - ], - [ - -73.483487, - 45.550526 - ], - [ - -73.483692, - 45.550744 - ], - [ - -73.483956, - 45.551023 - ], - [ - -73.484888, - 45.550545 - ], - [ - -73.485059, - 45.550458 - ], - [ - -73.485528, - 45.550218 - ], - [ - -73.485955, - 45.549961 - ], - [ - -73.489407, - 45.547816 - ], - [ - -73.48951, - 45.547751 - ], - [ - -73.490714, - 45.547006 - ], - [ - -73.491216, - 45.546506 - ], - [ - -73.491431, - 45.546368 - ], - [ - -73.491829, - 45.546111 - ], - [ - -73.491911, - 45.546057 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.492793, - 45.54613 - ], - [ - -73.492868, - 45.546192 - ], - [ - -73.492976, - 45.546278 - ], - [ - -73.493835, - 45.546966 - ], - [ - -73.494604, - 45.547573 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.495748, - 45.548498 - ], - [ - -73.495811, - 45.548549 - ], - [ - -73.49673, - 45.549278 - ], - [ - -73.497087, - 45.549548 - ], - [ - -73.49736, - 45.549719 - ], - [ - -73.497501, - 45.549805 - ], - [ - -73.497722, - 45.549908 - ], - [ - -73.497944, - 45.549998 - ], - [ - -73.498136, - 45.55007 - ], - [ - -73.498405, - 45.550151 - ], - [ - -73.498716, - 45.550237 - ], - [ - -73.499009, - 45.550295 - ], - [ - -73.499514, - 45.550349 - ], - [ - -73.499763, - 45.550363 - ], - [ - -73.501515, - 45.550448 - ], - [ - -73.502446, - 45.550493 - ], - [ - -73.502797, - 45.550502 - ], - [ - -73.502913, - 45.550498 - ], - [ - -73.503017, - 45.550484 - ], - [ - -73.503194, - 45.550453 - ], - [ - -73.503355, - 45.550399 - ], - [ - -73.503504, - 45.550327 - ], - [ - -73.503636, - 45.550237 - ], - [ - -73.503751, - 45.550133 - ], - [ - -73.503955, - 45.549904 - ], - [ - -73.504046, - 45.549787 - ], - [ - -73.504119, - 45.549647 - ], - [ - -73.50416, - 45.549508 - ], - [ - -73.504212, - 45.548909 - ], - [ - -73.504289, - 45.548585 - ], - [ - -73.504342, - 45.548423 - ], - [ - -73.504477, - 45.548095 - ], - [ - -73.504558, - 45.547933 - ], - [ - -73.504654, - 45.547771 - ], - [ - -73.504887, - 45.547461 - ], - [ - -73.505281, - 45.546997 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.52282, - 45.530146 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.517872, - 45.525397 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.521017, - 45.523892 - ], - [ - -73.521053, - 45.523883 - ], - [ - -73.521061, - 45.523869 - ], - [ - -73.521065, - 45.523851 - ], - [ - -73.521071, - 45.523799 - ] - ] - }, - "id": 165, - "properties": { - "id": "b466d4c8-fa43-4f0f-ac9f-fe51b209a22b", - "data": { - "gtfs": { - "shape_id": "78_1_A" - }, - "segments": [ - { - "distanceMeters": 194, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 435, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 464, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 997, - "travelTimeSeconds": 126 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 5077, - "travelTimeSeconds": 562 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10102, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5569.104551797418, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.42, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 7.32, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.42 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "7297ee1d-b36d-46fd-b6df-e9807a5791cf", - "ed9c5edc-a8fc-42c1-8283-02b881c76ff4", - "81ceaeba-df2d-476d-a80e-d7112cda70cb", - "b42cc3ff-2da3-4535-b070-1150cc42c135", - "e11daa5e-3189-4684-b63e-0ec15544872f", - "aa7a5ed8-9a21-492a-a960-c6b24bbf08aa", - "3f5db866-fafa-412d-a611-8e8ceedc9d66", - "a392bf4c-9790-451e-a9bc-51428fa10a69", - "497c7cbc-7c2a-4684-ae90-71dc2a66863f", - "8e9d3a93-2217-4362-8631-6cc69bd428bc", - "248781a4-a949-4c45-bc5a-1de80211510e", - "d179e57e-d1e0-4e92-9205-bca60d3115b1", - "3a5ea563-a764-4bb6-b2d3-d98a1c377161", - "0e8b7968-4242-43b0-a1a6-300cb3c93219", - "06cdca3a-f2d1-4f41-837c-693f8619463c", - "221d32b3-ef8a-416e-a402-91b2f0007208", - "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", - "64648218-6b63-436c-9a46-4770987ba432", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "abb1e85e-1feb-4df9-9b0a-8176309def3f", - "segments": [ - 0, - 8, - 15, - 28, - 80, - 109, - 119, - 122, - 133, - 156, - 175, - 187, - 195, - 211, - 223, - 231, - 246, - 252 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 165, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521071, - 45.523799 - ], - [ - -73.521073, - 45.52378 - ], - [ - -73.521082, - 45.523698 - ], - [ - -73.521077, - 45.523679 - ], - [ - -73.52106, - 45.523665 - ], - [ - -73.521034, - 45.523659 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519421, - 45.523501 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519273, - 45.526813 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517718, - 45.527204 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517465, - 45.528168 - ], - [ - -73.517458, - 45.528249 - ], - [ - -73.517471, - 45.528385 - ], - [ - -73.517504, - 45.528565 - ], - [ - -73.517516, - 45.528652 - ], - [ - -73.517553, - 45.52877 - ], - [ - -73.517635, - 45.529002 - ], - [ - -73.517693, - 45.529249 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518574, - 45.533716 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501288, - 45.549946 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500328, - 45.550074 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.499756, - 45.550039 - ], - [ - -73.499583, - 45.550043 - ], - [ - -73.499254, - 45.550048 - ], - [ - -73.49904, - 45.550039 - ], - [ - -73.498716, - 45.549998 - ], - [ - -73.49829, - 45.549868 - ], - [ - -73.497924, - 45.54971 - ], - [ - -73.497576, - 45.54953 - ], - [ - -73.497225, - 45.549332 - ], - [ - -73.497041, - 45.549211 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494903, - 45.54755 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.491911, - 45.546057 - ], - [ - -73.491829, - 45.546111 - ], - [ - -73.491647, - 45.546228 - ], - [ - -73.491431, - 45.546368 - ], - [ - -73.491216, - 45.546506 - ], - [ - -73.491073, - 45.546649 - ], - [ - -73.490714, - 45.547006 - ], - [ - -73.48951, - 45.547751 - ], - [ - -73.489407, - 45.547816 - ], - [ - -73.485955, - 45.549961 - ], - [ - -73.485528, - 45.550218 - ], - [ - -73.485059, - 45.550458 - ], - [ - -73.484679, - 45.550653 - ], - [ - -73.484195, - 45.5509 - ], - [ - -73.483956, - 45.551023 - ], - [ - -73.483692, - 45.550744 - ], - [ - -73.483212, - 45.550235 - ], - [ - -73.482956, - 45.549956 - ], - [ - -73.48267, - 45.549641 - ], - [ - -73.482621, - 45.549591 - ], - [ - -73.482468, - 45.549434 - ], - [ - -73.482152, - 45.549169 - ], - [ - -73.482061, - 45.549092 - ], - [ - -73.481961, - 45.549011 - ], - [ - -73.481574, - 45.548732 - ], - [ - -73.480787, - 45.548206 - ], - [ - -73.480465, - 45.547976 - ], - [ - -73.479981, - 45.547607 - ], - [ - -73.479872, - 45.547514 - ], - [ - -73.479532, - 45.547225 - ], - [ - -73.479428, - 45.54712 - ], - [ - -73.47929, - 45.546982 - ], - [ - -73.479053, - 45.546743 - ], - [ - -73.478328, - 45.545982 - ], - [ - -73.478252, - 45.545902 - ], - [ - -73.478167, - 45.545816 - ], - [ - -73.478085, - 45.54574 - ], - [ - -73.47749, - 45.545227 - ], - [ - -73.477125, - 45.544952 - ], - [ - -73.476738, - 45.5447 - ], - [ - -73.476368, - 45.544484 - ], - [ - -73.475906, - 45.544232 - ], - [ - -73.475489, - 45.544062 - ], - [ - -73.475463, - 45.544052 - ], - [ - -73.475416, - 45.544033 - ], - [ - -73.475109, - 45.543908 - ], - [ - -73.475053, - 45.543884 - ], - [ - -73.474586, - 45.543683 - ], - [ - -73.474404, - 45.543587 - ], - [ - -73.474124, - 45.54344 - ], - [ - -73.474009, - 45.543373 - ], - [ - -73.473915, - 45.543318 - ], - [ - -73.473362, - 45.542963 - ], - [ - -73.473189, - 45.54285 - ], - [ - -73.472636, - 45.54249 - ], - [ - -73.472231, - 45.542247 - ], - [ - -73.471823, - 45.542013 - ], - [ - -73.47173, - 45.541959 - ], - [ - -73.471636, - 45.541824 - ], - [ - -73.471512, - 45.54173 - ], - [ - -73.471385, - 45.541635 - ], - [ - -73.470953, - 45.541334 - ], - [ - -73.470086, - 45.540717 - ], - [ - -73.469639, - 45.540393 - ], - [ - -73.469465, - 45.540289 - ], - [ - -73.469233, - 45.540177 - ], - [ - -73.468887, - 45.540078 - ], - [ - -73.468519, - 45.54001 - ], - [ - -73.468512, - 45.540009 - ], - [ - -73.468289, - 45.539983 - ], - [ - -73.468097, - 45.539977 - ], - [ - -73.467889, - 45.539974 - ], - [ - -73.467676, - 45.539978 - ], - [ - -73.467668, - 45.539978 - ], - [ - -73.467407, - 45.539989 - ], - [ - -73.467341, - 45.540003 - ], - [ - -73.467302, - 45.540031 - ], - [ - -73.466892, - 45.540019 - ], - [ - -73.466727, - 45.539999 - ], - [ - -73.466559, - 45.539965 - ], - [ - -73.466407, - 45.539932 - ], - [ - -73.466227, - 45.539907 - ], - [ - -73.466142, - 45.539902 - ], - [ - -73.466115, - 45.539901 - ], - [ - -73.46602, - 45.539896 - ], - [ - -73.465926, - 45.539898 - ], - [ - -73.465848, - 45.539899 - ], - [ - -73.465709, - 45.539906 - ], - [ - -73.4656, - 45.539921 - ], - [ - -73.465482, - 45.539933 - ], - [ - -73.465335, - 45.539946 - ], - [ - -73.465216, - 45.539952 - ], - [ - -73.465098, - 45.539953 - ], - [ - -73.464951, - 45.539943 - ], - [ - -73.464825, - 45.539928 - ], - [ - -73.464679, - 45.539901 - ], - [ - -73.464558, - 45.53987 - ], - [ - -73.464497, - 45.539849 - ], - [ - -73.464445, - 45.539835 - ], - [ - -73.464385, - 45.539815 - ], - [ - -73.464334, - 45.539792 - ], - [ - -73.464269, - 45.539763 - ], - [ - -73.464231, - 45.539745 - ], - [ - -73.46418, - 45.539719 - ], - [ - -73.46414, - 45.539697 - ], - [ - -73.464104, - 45.539676 - ], - [ - -73.464064, - 45.539651 - ], - [ - -73.464033, - 45.539628 - ], - [ - -73.46402, - 45.539619 - ], - [ - -73.463967, - 45.539581 - ], - [ - -73.463917, - 45.539539 - ], - [ - -73.463869, - 45.5395 - ], - [ - -73.463819, - 45.53946 - ], - [ - -73.463797, - 45.539442 - ], - [ - -73.463513, - 45.539212 - ], - [ - -73.463464, - 45.539174 - ], - [ - -73.463271, - 45.539023 - ], - [ - -73.463118, - 45.538911 - ], - [ - -73.462874, - 45.538753 - ], - [ - -73.462697, - 45.53865 - ], - [ - -73.462534, - 45.538551 - ], - [ - -73.462187, - 45.53833 - ], - [ - -73.461988, - 45.538188 - ], - [ - -73.461864, - 45.5381 - ], - [ - -73.461621, - 45.538269 - ], - [ - -73.461553, - 45.538316 - ], - [ - -73.460897, - 45.538771 - ], - [ - -73.460767, - 45.53886 - ], - [ - -73.460539, - 45.539018 - ], - [ - -73.460057, - 45.539352 - ], - [ - -73.459971, - 45.539411 - ], - [ - -73.459859, - 45.539489 - ], - [ - -73.459325, - 45.539858 - ], - [ - -73.458596, - 45.540363 - ], - [ - -73.458577, - 45.540376 - ], - [ - -73.458502, - 45.54043 - ], - [ - -73.457586, - 45.541064 - ], - [ - -73.457727, - 45.541165 - ], - [ - -73.458046, - 45.541392 - ], - [ - -73.458368, - 45.541622 - ], - [ - -73.458385, - 45.541636 - ], - [ - -73.458394, - 45.54164 - ], - [ - -73.4585, - 45.541718 - ], - [ - -73.458598, - 45.541789 - ], - [ - -73.458636, - 45.541816 - ], - [ - -73.458666, - 45.541834 - ], - [ - -73.458697, - 45.541852 - ], - [ - -73.458728, - 45.541874 - ], - [ - -73.458759, - 45.541892 - ], - [ - -73.458791, - 45.54191 - ], - [ - -73.458823, - 45.541928 - ], - [ - -73.458856, - 45.541946 - ], - [ - -73.458889, - 45.541964 - ], - [ - -73.458923, - 45.541982 - ], - [ - -73.458957, - 45.541996 - ], - [ - -73.458992, - 45.542014 - ], - [ - -73.459026, - 45.542027 - ], - [ - -73.459062, - 45.542045 - ], - [ - -73.459097, - 45.542059 - ], - [ - -73.459133, - 45.542072 - ], - [ - -73.459169, - 45.542086 - ], - [ - -73.459206, - 45.542099 - ], - [ - -73.459243, - 45.542113 - ], - [ - -73.45928, - 45.542126 - ], - [ - -73.459297, - 45.542133 - ], - [ - -73.459318, - 45.54214 - ], - [ - -73.459356, - 45.542149 - ], - [ - -73.459394, - 45.542162 - ], - [ - -73.459432, - 45.542171 - ], - [ - -73.459471, - 45.54218 - ], - [ - -73.45951, - 45.542189 - ], - [ - -73.459794, - 45.542262 - ], - [ - -73.459827, - 45.542271 - ], - [ - -73.459869, - 45.54228 - ], - [ - -73.459906, - 45.542289 - ], - [ - -73.459951, - 45.542301 - ], - [ - -73.460014, - 45.54232 - ], - [ - -73.460079, - 45.542341 - ], - [ - -73.460085, - 45.542343 - ], - [ - -73.460119, - 45.542356 - ], - [ - -73.460154, - 45.54237 - ], - [ - -73.460189, - 45.542383 - ], - [ - -73.460223, - 45.542397 - ], - [ - -73.460256, - 45.54241 - ], - [ - -73.460289, - 45.542424 - ], - [ - -73.460322, - 45.542437 - ], - [ - -73.460355, - 45.542455 - ], - [ - -73.460387, - 45.542469 - ], - [ - -73.460419, - 45.542487 - ], - [ - -73.46045, - 45.542505 - ], - [ - -73.460481, - 45.542518 - ], - [ - -73.460511, - 45.542536 - ], - [ - -73.460541, - 45.542554 - ], - [ - -73.460571, - 45.542572 - ], - [ - -73.4606, - 45.54259 - ], - [ - -73.460601, - 45.54259 - ], - [ - -73.460629, - 45.542608 - ], - [ - -73.460635, - 45.542613 - ], - [ - -73.460643, - 45.542617 - ], - [ - -73.460649, - 45.542622 - ], - [ - -73.460657, - 45.542626 - ], - [ - -73.460685, - 45.542649 - ], - [ - -73.46069, - 45.542652 - ], - [ - -73.460712, - 45.542667 - ], - [ - -73.460739, - 45.542689 - ], - [ - -73.460762, - 45.542708 - ], - [ - -73.460787, - 45.542731 - ], - [ - -73.460809, - 45.542751 - ], - [ - -73.460812, - 45.542754 - ], - [ - -73.460836, - 45.542778 - ], - [ - -73.46086, - 45.542802 - ], - [ - -73.460879, - 45.542823 - ], - [ - -73.460902, - 45.54285 - ], - [ - -73.460943, - 45.542899 - ], - [ - -73.46101, - 45.542995 - ], - [ - -73.461055, - 45.543072 - ], - [ - -73.461069, - 45.543101 - ], - [ - -73.461081, - 45.543126 - ], - [ - -73.461098, - 45.543164 - ], - [ - -73.461112, - 45.543205 - ], - [ - -73.461131, - 45.543264 - ], - [ - -73.461154, - 45.543353 - ], - [ - -73.461166, - 45.543438 - ], - [ - -73.461179, - 45.543582 - ], - [ - -73.461191, - 45.543707 - ], - [ - -73.461207, - 45.543881 - ], - [ - -73.461219, - 45.543973 - ], - [ - -73.461237, - 45.544054 - ], - [ - -73.461265, - 45.544142 - ], - [ - -73.46128, - 45.544184 - ], - [ - -73.461333, - 45.544338 - ], - [ - -73.461351, - 45.54439 - ], - [ - -73.461383, - 45.54449 - ], - [ - -73.461397, - 45.544555 - ], - [ - -73.461405, - 45.544617 - ], - [ - -73.461409, - 45.544654 - ], - [ - -73.461426, - 45.544804 - ], - [ - -73.459568, - 45.544901 - ], - [ - -73.459545, - 45.544902 - ], - [ - -73.459543, - 45.544902 - ], - [ - -73.457656, - 45.544978 - ], - [ - -73.457324, - 45.544996 - ], - [ - -73.457082, - 45.545011 - ], - [ - -73.456903, - 45.545306 - ], - [ - -73.456635, - 45.545662 - ], - [ - -73.456377, - 45.545905 - ], - [ - -73.456057, - 45.546152 - ], - [ - -73.455906, - 45.546254 - ], - [ - -73.455904, - 45.546255 - ], - [ - -73.455836, - 45.5463 - ], - [ - -73.45572, - 45.546377 - ], - [ - -73.455632, - 45.546287 - ], - [ - -73.45524, - 45.54599 - ], - [ - -73.455132, - 45.545846 - ], - [ - -73.455065, - 45.545787 - ], - [ - -73.455026, - 45.545751 - ], - [ - -73.455001, - 45.545724 - ], - [ - -73.454986, - 45.545697 - ], - [ - -73.454971, - 45.545648 - ], - [ - -73.454962, - 45.545589 - ], - [ - -73.454971, - 45.545535 - ], - [ - -73.454997, - 45.54547 - ], - [ - -73.455003, - 45.545454 - ], - [ - -73.45504, - 45.545414 - ], - [ - -73.455094, - 45.545301 - ], - [ - -73.455158, - 45.545252 - ], - [ - -73.455247, - 45.545184 - ], - [ - -73.455332, - 45.545094 - ], - [ - -73.455461, - 45.54495 - ], - [ - -73.455559, - 45.544829 - ], - [ - -73.456108, - 45.544969 - ], - [ - -73.456291, - 45.545005 - ], - [ - -73.456382, - 45.545018 - ] - ] - }, - "id": 166, - "properties": { - "id": "3ab91717-5c76-40b7-bf26-f29de615a350", - "data": { - "gtfs": { - "shape_id": "78_1_R" - }, - "segments": [ - { - "distanceMeters": 3895, - "travelTimeSeconds": 480 - }, - { - "distanceMeters": 534, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 782, - "travelTimeSeconds": 106 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 465, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 348, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 67 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9768, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5569.104551797418, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.78, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 6.03, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.78 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "09bf17cd-9db1-41e3-b993-62146cb91158", - "8a3f1208-7ffb-452e-8ebb-c436acba82d6", - "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", - "cd788179-2c9b-4e1e-9ba3-10b35bfde3fa", - "06cdca3a-f2d1-4f41-837c-693f8619463c", - "0e8b7968-4242-43b0-a1a6-300cb3c93219", - "3a5ea563-a764-4bb6-b2d3-d98a1c377161", - "a1edad0a-8432-4850-b895-9d97092489b6", - "248781a4-a949-4c45-bc5a-1de80211510e", - "8e9d3a93-2217-4362-8631-6cc69bd428bc", - "497c7cbc-7c2a-4684-ae90-71dc2a66863f", - "a392bf4c-9790-451e-a9bc-51428fa10a69", - "3f5db866-fafa-412d-a611-8e8ceedc9d66", - "6fd0bc88-4e0d-40ae-bdaa-413bd47146b0", - "aa7a5ed8-9a21-492a-a960-c6b24bbf08aa", - "c7d03075-5044-4f36-93d3-b0ab9d315d42", - "b42cc3ff-2da3-4535-b070-1150cc42c135", - "81ceaeba-df2d-476d-a80e-d7112cda70cb", - "ed9c5edc-a8fc-42c1-8283-02b881c76ff4", - "10018cb4-bab7-4531-9c02-bb0d227ab19c", - "7297ee1d-b36d-46fd-b6df-e9807a5791cf" - ], - "stops": [], - "line_id": "abb1e85e-1feb-4df9-9b0a-8176309def3f", - "segments": [ - 0, - 109, - 126, - 133, - 144, - 152, - 164, - 181, - 187, - 199, - 216, - 239, - 253, - 258, - 264, - 269, - 302, - 339, - 366, - 368, - 379 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 166, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521071, - 45.523799 - ], - [ - -73.521073, - 45.52378 - ], - [ - -73.521082, - 45.523698 - ], - [ - -73.521077, - 45.523679 - ], - [ - -73.52106, - 45.523665 - ], - [ - -73.521034, - 45.523659 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523523, - 45.527958 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.502818, - 45.54899 - ], - [ - -73.502212, - 45.54962 - ], - [ - -73.501984, - 45.549836 - ], - [ - -73.50186, - 45.549926 - ], - [ - -73.501728, - 45.550007 - ], - [ - -73.501592, - 45.550079 - ], - [ - -73.501452, - 45.550133 - ], - [ - -73.501309, - 45.550183 - ], - [ - -73.50116, - 45.550219 - ], - [ - -73.501011, - 45.55025 - ], - [ - -73.500705, - 45.550282 - ], - [ - -73.500547, - 45.550286 - ], - [ - -73.49991, - 45.550295 - ], - [ - -73.499238, - 45.550226 - ], - [ - -73.498778, - 45.550153 - ], - [ - -73.498464, - 45.550065 - ], - [ - -73.498138, - 45.54995 - ], - [ - -73.497746, - 45.549767 - ], - [ - -73.497494, - 45.54961 - ], - [ - -73.497234, - 45.549428 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494901, - 45.547549 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.491911, - 45.546057 - ], - [ - -73.491829, - 45.546111 - ], - [ - -73.491646, - 45.546229 - ], - [ - -73.491431, - 45.546368 - ], - [ - -73.491216, - 45.546506 - ], - [ - -73.491073, - 45.546649 - ], - [ - -73.490714, - 45.547006 - ], - [ - -73.48951, - 45.547751 - ], - [ - -73.489407, - 45.547816 - ], - [ - -73.485955, - 45.549961 - ], - [ - -73.485528, - 45.550218 - ], - [ - -73.485059, - 45.550458 - ], - [ - -73.484322, - 45.550836 - ], - [ - -73.484194, - 45.550901 - ], - [ - -73.483956, - 45.551023 - ], - [ - -73.483692, - 45.550744 - ], - [ - -73.483212, - 45.550235 - ], - [ - -73.482956, - 45.549956 - ], - [ - -73.48267, - 45.549641 - ], - [ - -73.482621, - 45.549591 - ], - [ - -73.482468, - 45.549434 - ], - [ - -73.482151, - 45.549168 - ], - [ - -73.482061, - 45.549092 - ], - [ - -73.481961, - 45.549011 - ], - [ - -73.481574, - 45.548732 - ], - [ - -73.480787, - 45.548206 - ], - [ - -73.480465, - 45.547976 - ], - [ - -73.479981, - 45.547607 - ], - [ - -73.479872, - 45.547514 - ], - [ - -73.479532, - 45.547225 - ], - [ - -73.479428, - 45.54712 - ], - [ - -73.47929, - 45.546982 - ], - [ - -73.479053, - 45.546743 - ], - [ - -73.478327, - 45.545981 - ], - [ - -73.478252, - 45.545902 - ], - [ - -73.478167, - 45.545816 - ], - [ - -73.478085, - 45.54574 - ], - [ - -73.47749, - 45.545227 - ], - [ - -73.477125, - 45.544952 - ], - [ - -73.476738, - 45.5447 - ], - [ - -73.476368, - 45.544484 - ], - [ - -73.475906, - 45.544232 - ], - [ - -73.475489, - 45.544062 - ], - [ - -73.475463, - 45.544052 - ], - [ - -73.475416, - 45.544033 - ], - [ - -73.475109, - 45.543908 - ], - [ - -73.475053, - 45.543884 - ], - [ - -73.474586, - 45.543683 - ], - [ - -73.474404, - 45.543587 - ], - [ - -73.474124, - 45.54344 - ], - [ - -73.474008, - 45.543372 - ], - [ - -73.473915, - 45.543318 - ], - [ - -73.473362, - 45.542963 - ], - [ - -73.473189, - 45.54285 - ], - [ - -73.472636, - 45.54249 - ], - [ - -73.472231, - 45.542247 - ], - [ - -73.471822, - 45.542012 - ], - [ - -73.47173, - 45.541959 - ], - [ - -73.471636, - 45.541824 - ], - [ - -73.471512, - 45.54173 - ], - [ - -73.471385, - 45.541635 - ], - [ - -73.470953, - 45.541334 - ], - [ - -73.470086, - 45.540717 - ], - [ - -73.469639, - 45.540393 - ], - [ - -73.469465, - 45.540289 - ], - [ - -73.469233, - 45.540177 - ], - [ - -73.468887, - 45.540078 - ], - [ - -73.468519, - 45.54001 - ], - [ - -73.468511, - 45.540009 - ], - [ - -73.468289, - 45.539983 - ], - [ - -73.468097, - 45.539977 - ], - [ - -73.467889, - 45.539974 - ], - [ - -73.467676, - 45.539978 - ], - [ - -73.467668, - 45.539978 - ], - [ - -73.467407, - 45.539989 - ], - [ - -73.467341, - 45.540003 - ], - [ - -73.467302, - 45.540031 - ], - [ - -73.466892, - 45.540019 - ], - [ - -73.466727, - 45.539999 - ], - [ - -73.466559, - 45.539965 - ], - [ - -73.466407, - 45.539932 - ], - [ - -73.466227, - 45.539907 - ], - [ - -73.466142, - 45.539902 - ], - [ - -73.466115, - 45.539901 - ], - [ - -73.46602, - 45.539896 - ], - [ - -73.465938, - 45.539898 - ], - [ - -73.465848, - 45.539899 - ], - [ - -73.465709, - 45.539906 - ], - [ - -73.4656, - 45.539921 - ], - [ - -73.465482, - 45.539933 - ], - [ - -73.465335, - 45.539946 - ], - [ - -73.465216, - 45.539952 - ], - [ - -73.465098, - 45.539953 - ], - [ - -73.464951, - 45.539943 - ], - [ - -73.464825, - 45.539928 - ], - [ - -73.464679, - 45.539901 - ], - [ - -73.464558, - 45.53987 - ], - [ - -73.464497, - 45.539849 - ], - [ - -73.464445, - 45.539835 - ], - [ - -73.464385, - 45.539815 - ], - [ - -73.464334, - 45.539792 - ], - [ - -73.464269, - 45.539763 - ], - [ - -73.464231, - 45.539745 - ], - [ - -73.46418, - 45.539719 - ], - [ - -73.46414, - 45.539697 - ], - [ - -73.464104, - 45.539676 - ], - [ - -73.464064, - 45.539651 - ], - [ - -73.464033, - 45.539628 - ], - [ - -73.46402, - 45.539618 - ], - [ - -73.463967, - 45.539581 - ], - [ - -73.463917, - 45.539539 - ], - [ - -73.463869, - 45.5395 - ], - [ - -73.463819, - 45.53946 - ], - [ - -73.463797, - 45.539442 - ], - [ - -73.463513, - 45.539212 - ], - [ - -73.463464, - 45.539174 - ], - [ - -73.463271, - 45.539023 - ], - [ - -73.463118, - 45.538911 - ], - [ - -73.462874, - 45.538753 - ], - [ - -73.462697, - 45.53865 - ], - [ - -73.462534, - 45.538551 - ], - [ - -73.462187, - 45.53833 - ], - [ - -73.461987, - 45.538188 - ], - [ - -73.461864, - 45.5381 - ], - [ - -73.461621, - 45.538269 - ], - [ - -73.461553, - 45.538316 - ], - [ - -73.460897, - 45.538771 - ], - [ - -73.460767, - 45.538861 - ], - [ - -73.460539, - 45.539018 - ], - [ - -73.460057, - 45.539352 - ], - [ - -73.459971, - 45.539411 - ], - [ - -73.459859, - 45.539489 - ], - [ - -73.459325, - 45.539858 - ], - [ - -73.458595, - 45.540364 - ], - [ - -73.458577, - 45.540376 - ], - [ - -73.458502, - 45.54043 - ], - [ - -73.457586, - 45.541064 - ], - [ - -73.457727, - 45.541165 - ], - [ - -73.458047, - 45.541393 - ], - [ - -73.458368, - 45.541622 - ], - [ - -73.458385, - 45.541636 - ], - [ - -73.458394, - 45.54164 - ], - [ - -73.4585, - 45.541718 - ], - [ - -73.458598, - 45.541789 - ], - [ - -73.458636, - 45.541816 - ], - [ - -73.458666, - 45.541834 - ], - [ - -73.458697, - 45.541852 - ], - [ - -73.458728, - 45.541874 - ], - [ - -73.458759, - 45.541892 - ], - [ - -73.458791, - 45.54191 - ], - [ - -73.458823, - 45.541928 - ], - [ - -73.458856, - 45.541946 - ], - [ - -73.458889, - 45.541964 - ], - [ - -73.458923, - 45.541982 - ], - [ - -73.458957, - 45.541996 - ], - [ - -73.458992, - 45.542014 - ], - [ - -73.459026, - 45.542027 - ], - [ - -73.459062, - 45.542045 - ], - [ - -73.459097, - 45.542059 - ], - [ - -73.459133, - 45.542072 - ], - [ - -73.459169, - 45.542086 - ], - [ - -73.459206, - 45.542099 - ], - [ - -73.459243, - 45.542113 - ], - [ - -73.45928, - 45.542126 - ], - [ - -73.459297, - 45.542133 - ], - [ - -73.459318, - 45.54214 - ], - [ - -73.459356, - 45.542149 - ], - [ - -73.459394, - 45.542162 - ], - [ - -73.459432, - 45.542171 - ], - [ - -73.459471, - 45.54218 - ], - [ - -73.45951, - 45.542189 - ], - [ - -73.459795, - 45.542262 - ], - [ - -73.459827, - 45.542271 - ], - [ - -73.459869, - 45.54228 - ], - [ - -73.459906, - 45.542289 - ], - [ - -73.459951, - 45.542301 - ], - [ - -73.460014, - 45.54232 - ], - [ - -73.460079, - 45.542341 - ], - [ - -73.460085, - 45.542343 - ], - [ - -73.460119, - 45.542356 - ], - [ - -73.460154, - 45.54237 - ], - [ - -73.460189, - 45.542383 - ], - [ - -73.460223, - 45.542397 - ], - [ - -73.460256, - 45.54241 - ], - [ - -73.460289, - 45.542424 - ], - [ - -73.460322, - 45.542437 - ], - [ - -73.460355, - 45.542455 - ], - [ - -73.460387, - 45.542469 - ], - [ - -73.460419, - 45.542487 - ], - [ - -73.46045, - 45.542505 - ], - [ - -73.460481, - 45.542518 - ], - [ - -73.460511, - 45.542536 - ], - [ - -73.460541, - 45.542554 - ], - [ - -73.460571, - 45.542572 - ], - [ - -73.4606, - 45.54259 - ], - [ - -73.460601, - 45.54259 - ], - [ - -73.460629, - 45.542608 - ], - [ - -73.460635, - 45.542613 - ], - [ - -73.460643, - 45.542617 - ], - [ - -73.460649, - 45.542622 - ], - [ - -73.460657, - 45.542626 - ], - [ - -73.460685, - 45.542649 - ], - [ - -73.46069, - 45.542652 - ], - [ - -73.460712, - 45.542667 - ], - [ - -73.460739, - 45.542689 - ], - [ - -73.460762, - 45.542708 - ], - [ - -73.460787, - 45.542731 - ], - [ - -73.460809, - 45.542751 - ], - [ - -73.460812, - 45.542755 - ], - [ - -73.460836, - 45.542778 - ], - [ - -73.46086, - 45.542802 - ], - [ - -73.460879, - 45.542823 - ], - [ - -73.460902, - 45.54285 - ], - [ - -73.460943, - 45.542899 - ], - [ - -73.46101, - 45.542995 - ], - [ - -73.461055, - 45.543072 - ], - [ - -73.461069, - 45.543101 - ], - [ - -73.461081, - 45.543126 - ], - [ - -73.461098, - 45.543164 - ], - [ - -73.461112, - 45.543205 - ], - [ - -73.461131, - 45.543264 - ], - [ - -73.461154, - 45.543353 - ], - [ - -73.461166, - 45.543438 - ], - [ - -73.461179, - 45.543582 - ], - [ - -73.461191, - 45.543707 - ], - [ - -73.461207, - 45.543881 - ], - [ - -73.461219, - 45.543973 - ], - [ - -73.461237, - 45.544054 - ], - [ - -73.461265, - 45.544142 - ], - [ - -73.46128, - 45.544184 - ], - [ - -73.4613, - 45.544241 - ], - [ - -73.461333, - 45.544338 - ], - [ - -73.461351, - 45.54439 - ], - [ - -73.461383, - 45.54449 - ], - [ - -73.461397, - 45.544555 - ], - [ - -73.461405, - 45.544617 - ], - [ - -73.461409, - 45.544654 - ], - [ - -73.461426, - 45.544804 - ], - [ - -73.459567, - 45.544901 - ], - [ - -73.459543, - 45.544902 - ], - [ - -73.457656, - 45.544978 - ], - [ - -73.457324, - 45.544996 - ], - [ - -73.457082, - 45.545011 - ], - [ - -73.456903, - 45.545306 - ], - [ - -73.456635, - 45.545662 - ], - [ - -73.456377, - 45.545905 - ], - [ - -73.456057, - 45.546152 - ], - [ - -73.455906, - 45.546254 - ], - [ - -73.455903, - 45.546255 - ], - [ - -73.455836, - 45.5463 - ], - [ - -73.45572, - 45.546377 - ], - [ - -73.455632, - 45.546287 - ], - [ - -73.45524, - 45.54599 - ], - [ - -73.455132, - 45.545846 - ], - [ - -73.455065, - 45.545787 - ], - [ - -73.455026, - 45.545751 - ], - [ - -73.455001, - 45.545724 - ], - [ - -73.454986, - 45.545697 - ], - [ - -73.454971, - 45.545648 - ], - [ - -73.454962, - 45.545589 - ], - [ - -73.454971, - 45.545535 - ], - [ - -73.454997, - 45.54547 - ], - [ - -73.455003, - 45.545454 - ], - [ - -73.45504, - 45.545414 - ], - [ - -73.455094, - 45.545301 - ], - [ - -73.455158, - 45.545252 - ], - [ - -73.455247, - 45.545184 - ], - [ - -73.455332, - 45.545094 - ], - [ - -73.455461, - 45.54495 - ], - [ - -73.455559, - 45.544829 - ], - [ - -73.456108, - 45.544969 - ], - [ - -73.456291, - 45.545005 - ], - [ - -73.456382, - 45.545018 - ] - ] - }, - "id": 167, - "properties": { - "id": "2102d6e8-70cb-4b1e-af3a-af76451933d5", - "data": { - "gtfs": { - "shape_id": "78_2_R" - }, - "segments": [ - { - "distanceMeters": 4539, - "travelTimeSeconds": 332 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 782, - "travelTimeSeconds": 106 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 465, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 348, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 67 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9878, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5569.104551797418, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.23, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 7.16, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.23 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "8a3f1208-7ffb-452e-8ebb-c436acba82d6", - "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", - "cd788179-2c9b-4e1e-9ba3-10b35bfde3fa", - "06cdca3a-f2d1-4f41-837c-693f8619463c", - "0e8b7968-4242-43b0-a1a6-300cb3c93219", - "3a5ea563-a764-4bb6-b2d3-d98a1c377161", - "a1edad0a-8432-4850-b895-9d97092489b6", - "248781a4-a949-4c45-bc5a-1de80211510e", - "8e9d3a93-2217-4362-8631-6cc69bd428bc", - "497c7cbc-7c2a-4684-ae90-71dc2a66863f", - "a392bf4c-9790-451e-a9bc-51428fa10a69", - "3f5db866-fafa-412d-a611-8e8ceedc9d66", - "6fd0bc88-4e0d-40ae-bdaa-413bd47146b0", - "aa7a5ed8-9a21-492a-a960-c6b24bbf08aa", - "c7d03075-5044-4f36-93d3-b0ab9d315d42", - "b42cc3ff-2da3-4535-b070-1150cc42c135", - "81ceaeba-df2d-476d-a80e-d7112cda70cb", - "ed9c5edc-a8fc-42c1-8283-02b881c76ff4", - "10018cb4-bab7-4531-9c02-bb0d227ab19c", - "7297ee1d-b36d-46fd-b6df-e9807a5791cf" - ], - "stops": [], - "line_id": "abb1e85e-1feb-4df9-9b0a-8176309def3f", - "segments": [ - 0, - 73, - 80, - 91, - 99, - 111, - 128, - 134, - 146, - 163, - 186, - 200, - 205, - 211, - 216, - 249, - 286, - 314, - 316, - 326 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 167, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.404465, - 45.573132 - ], - [ - -73.404516, - 45.573227 - ], - [ - -73.405062, - 45.574199 - ], - [ - -73.405195, - 45.574394 - ], - [ - -73.405268, - 45.574469 - ], - [ - -73.405457, - 45.574621 - ], - [ - -73.40583, - 45.574917 - ], - [ - -73.405913, - 45.574988 - ], - [ - -73.406351, - 45.574604 - ], - [ - -73.406355, - 45.5746 - ], - [ - -73.407375, - 45.573704 - ], - [ - -73.407648, - 45.573464 - ], - [ - -73.407902, - 45.573272 - ], - [ - -73.408156, - 45.573119 - ], - [ - -73.408432, - 45.572987 - ], - [ - -73.40901, - 45.572865 - ], - [ - -73.410733, - 45.572762 - ], - [ - -73.410922, - 45.572751 - ], - [ - -73.411036, - 45.572745 - ], - [ - -73.412381, - 45.572673 - ], - [ - -73.412661, - 45.572692 - ], - [ - -73.412713, - 45.572696 - ], - [ - -73.413219, - 45.572818 - ], - [ - -73.413504, - 45.572924 - ], - [ - -73.413615, - 45.572947 - ], - [ - -73.413719, - 45.573015 - ], - [ - -73.413779, - 45.573055 - ], - [ - -73.413834, - 45.573102 - ], - [ - -73.413911, - 45.573168 - ], - [ - -73.414077, - 45.573294 - ], - [ - -73.414647, - 45.573758 - ], - [ - -73.414791, - 45.57387 - ], - [ - -73.415442, - 45.574385 - ], - [ - -73.415714, - 45.5746 - ], - [ - -73.416156, - 45.574947 - ], - [ - -73.417067, - 45.575663 - ], - [ - -73.418497, - 45.576798 - ], - [ - -73.418642, - 45.576911 - ], - [ - -73.418667, - 45.576931 - ], - [ - -73.41886, - 45.577081 - ], - [ - -73.418953, - 45.577153 - ], - [ - -73.419, - 45.577192 - ], - [ - -73.419047, - 45.57723 - ], - [ - -73.419313, - 45.577437 - ], - [ - -73.41953, - 45.577608 - ], - [ - -73.420061, - 45.578025 - ], - [ - -73.420081, - 45.578041 - ], - [ - -73.420386, - 45.578284 - ], - [ - -73.420532, - 45.578396 - ], - [ - -73.421072, - 45.578819 - ], - [ - -73.4211, - 45.578841 - ], - [ - -73.421662, - 45.579281 - ], - [ - -73.421745, - 45.579346 - ], - [ - -73.421793, - 45.579382 - ], - [ - -73.421846, - 45.579423 - ], - [ - -73.42208, - 45.579603 - ], - [ - -73.422546, - 45.579959 - ], - [ - -73.422663, - 45.580049 - ], - [ - -73.422804, - 45.580157 - ], - [ - -73.423009, - 45.580315 - ], - [ - -73.423236, - 45.580486 - ], - [ - -73.423455, - 45.580651 - ], - [ - -73.423789, - 45.580905 - ], - [ - -73.424012, - 45.581077 - ], - [ - -73.424062, - 45.581115 - ], - [ - -73.424788, - 45.581676 - ], - [ - -73.425168, - 45.581969 - ], - [ - -73.425206, - 45.581999 - ], - [ - -73.425286, - 45.58206 - ], - [ - -73.425816, - 45.582464 - ], - [ - -73.426256, - 45.5828 - ], - [ - -73.426384, - 45.582896 - ], - [ - -73.426528, - 45.583004 - ], - [ - -73.429814, - 45.585537 - ], - [ - -73.429847, - 45.585562 - ], - [ - -73.429958, - 45.585646 - ], - [ - -73.430085, - 45.585745 - ], - [ - -73.430467, - 45.586051 - ], - [ - -73.430716, - 45.586245 - ], - [ - -73.430893, - 45.586393 - ], - [ - -73.431289, - 45.586718 - ], - [ - -73.431332, - 45.586755 - ], - [ - -73.431717, - 45.587092 - ], - [ - -73.431818, - 45.587179 - ], - [ - -73.431883, - 45.587238 - ], - [ - -73.432034, - 45.587385 - ], - [ - -73.432226, - 45.587579 - ], - [ - -73.433253, - 45.588702 - ], - [ - -73.433542, - 45.589015 - ], - [ - -73.433674, - 45.589158 - ], - [ - -73.433885, - 45.58936 - ], - [ - -73.4342, - 45.589657 - ], - [ - -73.434715, - 45.590103 - ], - [ - -73.434884, - 45.590234 - ], - [ - -73.434944, - 45.590279 - ], - [ - -73.434983, - 45.59031 - ], - [ - -73.434992, - 45.590318 - ], - [ - -73.435014, - 45.590337 - ], - [ - -73.435057, - 45.590373 - ], - [ - -73.435107, - 45.590414 - ], - [ - -73.435254, - 45.590517 - ], - [ - -73.435815, - 45.590941 - ], - [ - -73.436192, - 45.591218 - ], - [ - -73.43623, - 45.591247 - ], - [ - -73.436355, - 45.59135 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.438332, - 45.592831 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.440081, - 45.594123 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.442162, - 45.595678 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442992, - 45.59628 - ], - [ - -73.44331, - 45.596501 - ], - [ - -73.443394, - 45.596559 - ], - [ - -73.444803, - 45.597518 - ], - [ - -73.445261, - 45.597829 - ], - [ - -73.445352, - 45.597893 - ], - [ - -73.446259, - 45.598527 - ], - [ - -73.446713, - 45.59886 - ], - [ - -73.447012, - 45.599082 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.448113, - 45.599972 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449825, - 45.601331 - ], - [ - -73.449842, - 45.601358 - ], - [ - -73.449882, - 45.601394 - ], - [ - -73.449937, - 45.601432 - ], - [ - -73.449974, - 45.601468 - ], - [ - -73.450006, - 45.601497 - ], - [ - -73.450033, - 45.601528 - ], - [ - -73.450045, - 45.601571 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.450329, - 45.600811 - ], - [ - -73.450302, - 45.600775 - ], - [ - -73.45028, - 45.600747 - ], - [ - -73.45017, - 45.600666 - ], - [ - -73.450081, - 45.60062 - ], - [ - -73.449968, - 45.600603 - ], - [ - -73.449925, - 45.600607 - ], - [ - -73.449868, - 45.600621 - ], - [ - -73.449802, - 45.600661 - ], - [ - -73.449715, - 45.600713 - ], - [ - -73.449674, - 45.600743 - ], - [ - -73.449661, - 45.600772 - ], - [ - -73.449666, - 45.600812 - ], - [ - -73.449924, - 45.601045 - ], - [ - -73.449978, - 45.601072 - ], - [ - -73.450055, - 45.601083 - ], - [ - -73.45017, - 45.60109 - ], - [ - -73.450263, - 45.601099 - ], - [ - -73.450328, - 45.601118 - ], - [ - -73.450379, - 45.601155 - ], - [ - -73.450393, - 45.601201 - ], - [ - -73.450376, - 45.60125 - ], - [ - -73.450362, - 45.601293 - ], - [ - -73.450349, - 45.601366 - ], - [ - -73.450328, - 45.601396 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450295, - 45.60142 - ], - [ - -73.450274, - 45.60143 - ], - [ - -73.450229, - 45.60144 - ], - [ - -73.450195, - 45.601446 - ], - [ - -73.450161, - 45.601455 - ], - [ - -73.450131, - 45.601466 - ], - [ - -73.450095, - 45.601482 - ], - [ - -73.450073, - 45.601501 - ], - [ - -73.450052, - 45.601522 - ], - [ - -73.450048, - 45.601541 - ], - [ - -73.450048, - 45.601565 - ], - [ - -73.450051, - 45.601586 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450683, - 45.601629 - ], - [ - -73.45076, - 45.601581 - ], - [ - -73.450865, - 45.60153 - ], - [ - -73.451136, - 45.601427 - ], - [ - -73.451322, - 45.601341 - ], - [ - -73.45143, - 45.601269 - ], - [ - -73.451545, - 45.601187 - ], - [ - -73.451753, - 45.601 - ], - [ - -73.451831, - 45.600914 - ], - [ - -73.451899, - 45.600828 - ], - [ - -73.451961, - 45.600734 - ], - [ - -73.452054, - 45.600554 - ], - [ - -73.452082, - 45.600442 - ], - [ - -73.452078, - 45.600293 - ], - [ - -73.452054, - 45.600172 - ], - [ - -73.45194, - 45.599798 - ], - [ - -73.451915, - 45.599672 - ], - [ - -73.451904, - 45.599524 - ], - [ - -73.451926, - 45.59938 - ], - [ - -73.451964, - 45.599267 - ], - [ - -73.452063, - 45.599123 - ], - [ - -73.452183, - 45.598993 - ], - [ - -73.452318, - 45.598881 - ], - [ - -73.452477, - 45.598768 - ], - [ - -73.452963, - 45.598458 - ], - [ - -73.45458, - 45.597401 - ], - [ - -73.459437, - 45.594497 - ], - [ - -73.459888, - 45.594213 - ], - [ - -73.46035, - 45.593903 - ], - [ - -73.460702, - 45.593647 - ], - [ - -73.461218, - 45.593251 - ], - [ - -73.46178, - 45.592783 - ], - [ - -73.465585, - 45.589586 - ], - [ - -73.468548, - 45.587089 - ], - [ - -73.468925, - 45.586766 - ], - [ - -73.469282, - 45.586424 - ], - [ - -73.469476, - 45.586217 - ], - [ - -73.46977, - 45.585875 - ], - [ - -73.470065, - 45.585497 - ], - [ - -73.470208, - 45.585295 - ], - [ - -73.470515, - 45.584795 - ], - [ - -73.470777, - 45.584346 - ], - [ - -73.470818, - 45.584266 - ], - [ - -73.471151, - 45.583659 - ], - [ - -73.471441, - 45.583163 - ], - [ - -73.471782, - 45.582588 - ], - [ - -73.471999, - 45.582223 - ], - [ - -73.472179, - 45.58194 - ], - [ - -73.472331, - 45.581716 - ], - [ - -73.472649, - 45.581329 - ], - [ - -73.47273, - 45.58124 - ], - [ - -73.472825, - 45.58114 - ], - [ - -73.473026, - 45.580958 - ], - [ - -73.473162, - 45.580835 - ], - [ - -73.473456, - 45.580601 - ], - [ - -73.473548, - 45.580529 - ], - [ - -73.474056, - 45.580187 - ], - [ - -73.474914, - 45.579634 - ], - [ - -73.475349, - 45.579354 - ], - [ - -73.475514, - 45.57924 - ], - [ - -73.475748, - 45.579059 - ], - [ - -73.476005, - 45.578855 - ], - [ - -73.476092, - 45.578785 - ], - [ - -73.476311, - 45.578613 - ], - [ - -73.476531, - 45.578426 - ], - [ - -73.477316, - 45.577756 - ], - [ - -73.478746, - 45.576546 - ], - [ - -73.485291, - 45.570941 - ], - [ - -73.485924, - 45.570374 - ], - [ - -73.486543, - 45.569794 - ], - [ - -73.487144, - 45.5692 - ], - [ - -73.487725, - 45.568597 - ], - [ - -73.488283, - 45.567985 - ], - [ - -73.489005, - 45.567148 - ], - [ - -73.489524, - 45.56651 - ], - [ - -73.490025, - 45.565857 - ], - [ - -73.490348, - 45.565416 - ], - [ - -73.490811, - 45.564746 - ], - [ - -73.492757, - 45.561799 - ], - [ - -73.493231, - 45.561129 - ], - [ - -73.493558, - 45.560688 - ], - [ - -73.493892, - 45.560256 - ], - [ - -73.494237, - 45.559829 - ], - [ - -73.499922, - 45.552981 - ], - [ - -73.501151, - 45.551492 - ], - [ - -73.501844, - 45.550646 - ], - [ - -73.502872, - 45.549445 - ], - [ - -73.503558, - 45.548684 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523837, - 45.530517 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522438, - 45.524142 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524363 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 168, - "properties": { - "id": "aaf5c8ba-2506-4514-a4a1-8cfb54912190", - "data": { - "gtfs": { - "shape_id": "80_1_A" - }, - "segments": [ - { - "distanceMeters": 293, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 552, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 328, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 415, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 12140, - "travelTimeSeconds": 840 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17537, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10704.036435587395, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 10.82, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 9.74, - "averageSpeedWithoutDwellTimesMetersPerSecond": 10.82 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "2f7dafc2-f82c-429d-8ce9-0ab21c7cde49", - "0f2d673a-8365-425e-adb1-c97927e1fe04", - "33427dde-b7ac-44e3-ba8b-3d835422c2dc", - "c6549833-3800-4d1f-a789-747fc95c595a", - "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", - "88dc439b-1c69-4b99-b3d0-d19592029cc1", - "ed651d5d-88ba-4ece-bfe1-02e5832cfee7", - "31ed7f59-0c7b-45ae-b437-8270ad7f8e62", - "cc142acd-cd00-4b27-8c30-0fb03b101fb8", - "8602485c-23c0-44fe-9b32-fa177f723a3a", - "3dedf179-3478-4b4d-b706-36e0a8981094", - "c4a07fb5-3745-472e-8e03-a61e6908d906", - "3e60c63a-1f50-42ff-98f0-f081a7dc4017", - "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", - "ebf7fd24-b756-481f-9a88-33b6362fcbda", - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "4fcc129f-8015-4b36-a21f-2437aa91a265", - "49262d07-72b2-466f-bf49-88656466e4a4", - "9e857d67-44b9-48aa-aa36-d1284504d820", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", - "bbe875bc-cb85-4a61-923d-53ee4746a213", - "4c755ece-2475-4915-941e-37859f0f391f" - ], - "stops": [], - "line_id": "85ada749-0996-4a0e-a41e-34953d66ac4a", - "segments": [ - 0, - 8, - 10, - 27, - 32, - 39, - 51, - 58, - 63, - 66, - 71, - 74, - 81, - 88, - 96, - 102, - 108, - 115, - 119, - 123, - 127, - 130, - 136, - 185 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 168, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.52252, - 45.524045 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.503549, - 45.548419 - ], - [ - -73.502986, - 45.54904 - ], - [ - -73.502097, - 45.550079 - ], - [ - -73.501025, - 45.551361 - ], - [ - -73.500319, - 45.55223 - ], - [ - -73.497146, - 45.556054 - ], - [ - -73.496787, - 45.55649 - ], - [ - -73.495905, - 45.557543 - ], - [ - -73.495369, - 45.558173 - ], - [ - -73.494314, - 45.559446 - ], - [ - -73.493461, - 45.560499 - ], - [ - -73.492975, - 45.561151 - ], - [ - -73.492659, - 45.561597 - ], - [ - -73.492068, - 45.562474 - ], - [ - -73.49148, - 45.563383 - ], - [ - -73.490434, - 45.564962 - ], - [ - -73.489967, - 45.565619 - ], - [ - -73.489477, - 45.566267 - ], - [ - -73.488962, - 45.566906 - ], - [ - -73.48825, - 45.567747 - ], - [ - -73.487877, - 45.568161 - ], - [ - -73.487301, - 45.568777 - ], - [ - -73.486712, - 45.56938 - ], - [ - -73.486308, - 45.569771 - ], - [ - -73.485474, - 45.570545 - ], - [ - -73.48461, - 45.571301 - ], - [ - -73.483654, - 45.572115 - ], - [ - -73.478606, - 45.576433 - ], - [ - -73.478028, - 45.576933 - ], - [ - -73.477248, - 45.577607 - ], - [ - -73.476645, - 45.578128 - ], - [ - -73.475915, - 45.578754 - ], - [ - -73.475553, - 45.579033 - ], - [ - -73.474887, - 45.579478 - ], - [ - -73.474437, - 45.579762 - ], - [ - -73.474095, - 45.580005 - ], - [ - -73.473853, - 45.580158 - ], - [ - -73.473398, - 45.580472 - ], - [ - -73.473077, - 45.58072 - ], - [ - -73.472886, - 45.580886 - ], - [ - -73.472612, - 45.581152 - ], - [ - -73.472574, - 45.581196 - ], - [ - -73.472319, - 45.581482 - ], - [ - -73.472175, - 45.581673 - ], - [ - -73.471994, - 45.581936 - ], - [ - -73.47191, - 45.582061 - ], - [ - -73.471753, - 45.582326 - ], - [ - -73.471543, - 45.582681 - ], - [ - -73.471245, - 45.583188 - ], - [ - -73.471013, - 45.58358 - ], - [ - -73.470714, - 45.584071 - ], - [ - -73.470067, - 45.585151 - ], - [ - -73.469784, - 45.585547 - ], - [ - -73.469628, - 45.585749 - ], - [ - -73.469287, - 45.586145 - ], - [ - -73.469101, - 45.586343 - ], - [ - -73.468904, - 45.586536 - ], - [ - -73.468695, - 45.586725 - ], - [ - -73.466029, - 45.588965 - ], - [ - -73.465851, - 45.589127 - ], - [ - -73.465429, - 45.589482 - ], - [ - -73.463709, - 45.590917 - ], - [ - -73.461267, - 45.592977 - ], - [ - -73.460579, - 45.593525 - ], - [ - -73.460036, - 45.593907 - ], - [ - -73.459551, - 45.594222 - ], - [ - -73.459088, - 45.594506 - ], - [ - -73.458501, - 45.594856 - ], - [ - -73.45527, - 45.596781 - ], - [ - -73.453729, - 45.597707 - ], - [ - -73.452183, - 45.598512 - ], - [ - -73.45172, - 45.598745 - ], - [ - -73.451404, - 45.598885 - ], - [ - -73.451234, - 45.598934 - ], - [ - -73.451048, - 45.598979 - ], - [ - -73.450747, - 45.59901 - ], - [ - -73.450606, - 45.59901 - ], - [ - -73.450404, - 45.598988 - ], - [ - -73.449896, - 45.598898 - ], - [ - -73.449552, - 45.598852 - ], - [ - -73.44936, - 45.598848 - ], - [ - -73.449191, - 45.598861 - ], - [ - -73.449046, - 45.598888 - ], - [ - -73.448769, - 45.598987 - ], - [ - -73.448631, - 45.599054 - ], - [ - -73.448365, - 45.599212 - ], - [ - -73.447787, - 45.599567 - ], - [ - -73.447737, - 45.599598 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.448089, - 45.599954 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449825, - 45.601331 - ], - [ - -73.449842, - 45.601358 - ], - [ - -73.449882, - 45.601394 - ], - [ - -73.449937, - 45.601432 - ], - [ - -73.449974, - 45.601468 - ], - [ - -73.450006, - 45.601497 - ], - [ - -73.450033, - 45.601528 - ], - [ - -73.450045, - 45.601571 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.450329, - 45.600811 - ], - [ - -73.450324, - 45.600805 - ], - [ - -73.45028, - 45.600747 - ], - [ - -73.45017, - 45.600666 - ], - [ - -73.450081, - 45.60062 - ], - [ - -73.449968, - 45.600603 - ], - [ - -73.449925, - 45.600607 - ], - [ - -73.449868, - 45.600621 - ], - [ - -73.449802, - 45.600661 - ], - [ - -73.449715, - 45.600713 - ], - [ - -73.449674, - 45.600743 - ], - [ - -73.449661, - 45.600772 - ], - [ - -73.449666, - 45.600812 - ], - [ - -73.449924, - 45.601045 - ], - [ - -73.449978, - 45.601072 - ], - [ - -73.450055, - 45.601083 - ], - [ - -73.45017, - 45.60109 - ], - [ - -73.450263, - 45.601099 - ], - [ - -73.450328, - 45.601118 - ], - [ - -73.450379, - 45.601155 - ], - [ - -73.450393, - 45.601201 - ], - [ - -73.450376, - 45.60125 - ], - [ - -73.450362, - 45.601293 - ], - [ - -73.450349, - 45.601366 - ], - [ - -73.450328, - 45.601396 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450247, - 45.601412 - ], - [ - -73.450159, - 45.601408 - ], - [ - -73.450117, - 45.6014 - ], - [ - -73.450076, - 45.601382 - ], - [ - -73.450018, - 45.601356 - ], - [ - -73.449945, - 45.60132 - ], - [ - -73.449881, - 45.6013 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.447908, - 45.59981 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.446915, - 45.59901 - ], - [ - -73.446713, - 45.59886 - ], - [ - -73.446259, - 45.598527 - ], - [ - -73.445388, - 45.597918 - ], - [ - -73.445261, - 45.597829 - ], - [ - -73.444803, - 45.597518 - ], - [ - -73.443575, - 45.596683 - ], - [ - -73.443394, - 45.596559 - ], - [ - -73.442992, - 45.59628 - ], - [ - -73.442853, - 45.596184 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.439915, - 45.593997 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438252, - 45.592772 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.436616, - 45.591542 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.436355, - 45.59135 - ], - [ - -73.43623, - 45.591247 - ], - [ - -73.435815, - 45.590941 - ], - [ - -73.435254, - 45.590517 - ], - [ - -73.435107, - 45.590414 - ], - [ - -73.435057, - 45.590373 - ], - [ - -73.435056, - 45.590373 - ], - [ - -73.435014, - 45.590337 - ], - [ - -73.434983, - 45.59031 - ], - [ - -73.434944, - 45.590279 - ], - [ - -73.434884, - 45.590234 - ], - [ - -73.434715, - 45.590103 - ], - [ - -73.4342, - 45.589657 - ], - [ - -73.433901, - 45.589375 - ], - [ - -73.433885, - 45.58936 - ], - [ - -73.433674, - 45.589158 - ], - [ - -73.433253, - 45.588702 - ], - [ - -73.432226, - 45.587579 - ], - [ - -73.432034, - 45.587385 - ], - [ - -73.431891, - 45.587246 - ], - [ - -73.431883, - 45.587238 - ], - [ - -73.431818, - 45.587179 - ], - [ - -73.431717, - 45.587092 - ], - [ - -73.431289, - 45.586718 - ], - [ - -73.430893, - 45.586393 - ], - [ - -73.430716, - 45.586245 - ], - [ - -73.430467, - 45.586051 - ], - [ - -73.430114, - 45.585768 - ], - [ - -73.430085, - 45.585745 - ], - [ - -73.429958, - 45.585646 - ], - [ - -73.429814, - 45.585537 - ], - [ - -73.428491, - 45.584517 - ], - [ - -73.426696, - 45.583133 - ], - [ - -73.426528, - 45.583004 - ], - [ - -73.426256, - 45.5828 - ], - [ - -73.425816, - 45.582464 - ], - [ - -73.425306, - 45.582075 - ], - [ - -73.425286, - 45.58206 - ], - [ - -73.425206, - 45.581999 - ], - [ - -73.424788, - 45.581676 - ], - [ - -73.424167, - 45.581196 - ], - [ - -73.424062, - 45.581115 - ], - [ - -73.423789, - 45.580905 - ], - [ - -73.423455, - 45.580651 - ], - [ - -73.423236, - 45.580486 - ], - [ - -73.423009, - 45.580315 - ], - [ - -73.422847, - 45.58019 - ], - [ - -73.422663, - 45.580049 - ], - [ - -73.422546, - 45.579959 - ], - [ - -73.42208, - 45.579603 - ], - [ - -73.421972, - 45.57952 - ], - [ - -73.421846, - 45.579423 - ], - [ - -73.421793, - 45.579382 - ], - [ - -73.421745, - 45.579346 - ], - [ - -73.4211, - 45.578841 - ], - [ - -73.421072, - 45.578819 - ], - [ - -73.420532, - 45.578396 - ], - [ - -73.420386, - 45.578284 - ], - [ - -73.420081, - 45.578041 - ], - [ - -73.420061, - 45.578025 - ], - [ - -73.41953, - 45.577608 - ], - [ - -73.419313, - 45.577437 - ], - [ - -73.419217, - 45.577363 - ], - [ - -73.419047, - 45.57723 - ], - [ - -73.419, - 45.577192 - ], - [ - -73.418953, - 45.577153 - ], - [ - -73.418667, - 45.576931 - ], - [ - -73.418642, - 45.576911 - ], - [ - -73.418497, - 45.576798 - ], - [ - -73.417067, - 45.575663 - ], - [ - -73.416156, - 45.574947 - ], - [ - -73.415825, - 45.574687 - ], - [ - -73.415714, - 45.5746 - ], - [ - -73.414791, - 45.57387 - ], - [ - -73.414647, - 45.573758 - ], - [ - -73.414077, - 45.573294 - ], - [ - -73.414071, - 45.57329 - ], - [ - -73.413911, - 45.573168 - ], - [ - -73.413779, - 45.573055 - ], - [ - -73.413719, - 45.573015 - ], - [ - -73.413615, - 45.572947 - ], - [ - -73.413498, - 45.572835 - ], - [ - -73.413315, - 45.572731 - ], - [ - -73.413116, - 45.572645 - ], - [ - -73.412923, - 45.572596 - ], - [ - -73.412759, - 45.572574 - ], - [ - -73.412619, - 45.572555 - ], - [ - -73.412388, - 45.572541 - ], - [ - -73.412156, - 45.572541 - ], - [ - -73.411544, - 45.572577 - ], - [ - -73.411304, - 45.572588 - ], - [ - -73.41125, - 45.57259 - ], - [ - -73.411126, - 45.572594 - ], - [ - -73.410903, - 45.572608 - ], - [ - -73.410714, - 45.572617 - ], - [ - -73.410503, - 45.57263 - ], - [ - -73.410213, - 45.572647 - ], - [ - -73.409062, - 45.572719 - ], - [ - -73.409057, - 45.572719 - ], - [ - -73.409052, - 45.572719 - ], - [ - -73.409047, - 45.572719 - ], - [ - -73.409041, - 45.57272 - ], - [ - -73.409036, - 45.57272 - ], - [ - -73.409031, - 45.57272 - ], - [ - -73.409026, - 45.57272 - ], - [ - -73.409021, - 45.57272 - ], - [ - -73.409016, - 45.572721 - ], - [ - -73.409011, - 45.572721 - ], - [ - -73.409006, - 45.572721 - ], - [ - -73.409, - 45.572722 - ], - [ - -73.408995, - 45.572722 - ], - [ - -73.40899, - 45.572722 - ], - [ - -73.408985, - 45.572722 - ], - [ - -73.40898, - 45.572723 - ], - [ - -73.408975, - 45.572723 - ], - [ - -73.40897, - 45.572723 - ], - [ - -73.408965, - 45.572724 - ], - [ - -73.40896, - 45.572724 - ], - [ - -73.408955, - 45.572725 - ], - [ - -73.408949, - 45.572725 - ], - [ - -73.408944, - 45.572725 - ], - [ - -73.408939, - 45.572726 - ], - [ - -73.408934, - 45.572726 - ], - [ - -73.408929, - 45.572727 - ], - [ - -73.408924, - 45.572727 - ], - [ - -73.408919, - 45.572728 - ], - [ - -73.408914, - 45.572728 - ], - [ - -73.408909, - 45.572729 - ], - [ - -73.408904, - 45.572729 - ], - [ - -73.408899, - 45.572729 - ], - [ - -73.408894, - 45.57273 - ], - [ - -73.408889, - 45.572731 - ], - [ - -73.408883, - 45.572731 - ], - [ - -73.408878, - 45.572732 - ], - [ - -73.408873, - 45.572732 - ], - [ - -73.408868, - 45.572733 - ], - [ - -73.408863, - 45.572733 - ], - [ - -73.408858, - 45.572734 - ], - [ - -73.408853, - 45.572734 - ], - [ - -73.408848, - 45.572735 - ], - [ - -73.408843, - 45.572736 - ], - [ - -73.408838, - 45.572736 - ], - [ - -73.408833, - 45.572737 - ], - [ - -73.408828, - 45.572737 - ], - [ - -73.408823, - 45.572738 - ], - [ - -73.408818, - 45.572739 - ], - [ - -73.408813, - 45.572739 - ], - [ - -73.408808, - 45.57274 - ], - [ - -73.408803, - 45.572741 - ], - [ - -73.408798, - 45.572742 - ], - [ - -73.408793, - 45.572742 - ], - [ - -73.408788, - 45.572743 - ], - [ - -73.408783, - 45.572744 - ], - [ - -73.408778, - 45.572744 - ], - [ - -73.408773, - 45.572745 - ], - [ - -73.408768, - 45.572746 - ], - [ - -73.408762, - 45.572747 - ], - [ - -73.408757, - 45.572747 - ], - [ - -73.408752, - 45.572748 - ], - [ - -73.408747, - 45.572749 - ], - [ - -73.408742, - 45.57275 - ], - [ - -73.408738, - 45.572751 - ], - [ - -73.408733, - 45.572752 - ], - [ - -73.408728, - 45.572752 - ], - [ - -73.408723, - 45.572753 - ], - [ - -73.408718, - 45.572754 - ], - [ - -73.408713, - 45.572755 - ], - [ - -73.408708, - 45.572756 - ], - [ - -73.408703, - 45.572757 - ], - [ - -73.408698, - 45.572758 - ], - [ - -73.408693, - 45.572759 - ], - [ - -73.408688, - 45.572759 - ], - [ - -73.408683, - 45.57276 - ], - [ - -73.408678, - 45.572761 - ], - [ - -73.408673, - 45.572762 - ], - [ - -73.408668, - 45.572763 - ], - [ - -73.408663, - 45.572764 - ], - [ - -73.408658, - 45.572765 - ], - [ - -73.408653, - 45.572766 - ], - [ - -73.408648, - 45.572767 - ], - [ - -73.408643, - 45.572768 - ], - [ - -73.408638, - 45.572769 - ], - [ - -73.408634, - 45.57277 - ], - [ - -73.408629, - 45.572771 - ], - [ - -73.408624, - 45.572772 - ], - [ - -73.408619, - 45.572773 - ], - [ - -73.408614, - 45.572774 - ], - [ - -73.408609, - 45.572775 - ], - [ - -73.408604, - 45.572777 - ], - [ - -73.408599, - 45.572778 - ], - [ - -73.408594, - 45.572779 - ], - [ - -73.40859, - 45.57278 - ], - [ - -73.408585, - 45.572781 - ], - [ - -73.40858, - 45.572782 - ], - [ - -73.408575, - 45.572783 - ], - [ - -73.40857, - 45.572784 - ], - [ - -73.408565, - 45.572786 - ], - [ - -73.40856, - 45.572787 - ], - [ - -73.408556, - 45.572788 - ], - [ - -73.408551, - 45.572789 - ], - [ - -73.408546, - 45.57279 - ], - [ - -73.408541, - 45.572792 - ], - [ - -73.408536, - 45.572793 - ], - [ - -73.408531, - 45.572794 - ], - [ - -73.408527, - 45.572795 - ], - [ - -73.408522, - 45.572797 - ], - [ - -73.408517, - 45.572798 - ], - [ - -73.408512, - 45.572799 - ], - [ - -73.408507, - 45.5728 - ], - [ - -73.408503, - 45.572802 - ], - [ - -73.408498, - 45.572803 - ], - [ - -73.408493, - 45.572804 - ], - [ - -73.408488, - 45.572806 - ], - [ - -73.408484, - 45.572807 - ], - [ - -73.408479, - 45.572808 - ], - [ - -73.408474, - 45.57281 - ], - [ - -73.408469, - 45.572811 - ], - [ - -73.408465, - 45.572812 - ], - [ - -73.40846, - 45.572814 - ], - [ - -73.408455, - 45.572815 - ], - [ - -73.40845, - 45.572817 - ], - [ - -73.408446, - 45.572818 - ], - [ - -73.408441, - 45.572819 - ], - [ - -73.408436, - 45.572821 - ], - [ - -73.408432, - 45.572822 - ], - [ - -73.408427, - 45.572824 - ], - [ - -73.408422, - 45.572825 - ], - [ - -73.408418, - 45.572827 - ], - [ - -73.408413, - 45.572828 - ], - [ - -73.408408, - 45.57283 - ], - [ - -73.408404, - 45.572831 - ], - [ - -73.408399, - 45.572833 - ], - [ - -73.408394, - 45.572834 - ], - [ - -73.40839, - 45.572836 - ], - [ - -73.408385, - 45.572837 - ], - [ - -73.40838, - 45.572839 - ], - [ - -73.408376, - 45.57284 - ], - [ - -73.408371, - 45.572842 - ], - [ - -73.408367, - 45.572843 - ], - [ - -73.408362, - 45.572845 - ], - [ - -73.408357, - 45.572847 - ], - [ - -73.408353, - 45.572848 - ], - [ - -73.408348, - 45.57285 - ], - [ - -73.408344, - 45.572851 - ], - [ - -73.408339, - 45.572853 - ], - [ - -73.408334, - 45.572855 - ], - [ - -73.40833, - 45.572856 - ], - [ - -73.408325, - 45.572858 - ], - [ - -73.408321, - 45.57286 - ], - [ - -73.408316, - 45.572861 - ], - [ - -73.408312, - 45.572863 - ], - [ - -73.408307, - 45.572865 - ], - [ - -73.408303, - 45.572867 - ], - [ - -73.408298, - 45.572868 - ], - [ - -73.408294, - 45.57287 - ], - [ - -73.408289, - 45.572872 - ], - [ - -73.408285, - 45.572874 - ], - [ - -73.40828, - 45.572875 - ], - [ - -73.408276, - 45.572877 - ], - [ - -73.408271, - 45.572879 - ], - [ - -73.408267, - 45.572881 - ], - [ - -73.408263, - 45.572883 - ], - [ - -73.408258, - 45.572884 - ], - [ - -73.408254, - 45.572886 - ], - [ - -73.408249, - 45.572888 - ], - [ - -73.408245, - 45.57289 - ], - [ - -73.408241, - 45.572892 - ], - [ - -73.408236, - 45.572894 - ], - [ - -73.408232, - 45.572895 - ], - [ - -73.408227, - 45.572897 - ], - [ - -73.408223, - 45.572899 - ], - [ - -73.408219, - 45.572901 - ], - [ - -73.408214, - 45.572903 - ], - [ - -73.40821, - 45.572905 - ], - [ - -73.408206, - 45.572907 - ], - [ - -73.408201, - 45.572909 - ], - [ - -73.408197, - 45.572911 - ], - [ - -73.408193, - 45.572913 - ], - [ - -73.408188, - 45.572915 - ], - [ - -73.408184, - 45.572917 - ], - [ - -73.40818, - 45.572919 - ], - [ - -73.408176, - 45.572921 - ], - [ - -73.408171, - 45.572923 - ], - [ - -73.408167, - 45.572925 - ], - [ - -73.408163, - 45.572927 - ], - [ - -73.408159, - 45.572929 - ], - [ - -73.408154, - 45.572931 - ], - [ - -73.40815, - 45.572933 - ], - [ - -73.408146, - 45.572935 - ], - [ - -73.408142, - 45.572937 - ], - [ - -73.408138, - 45.572939 - ], - [ - -73.408133, - 45.572941 - ], - [ - -73.408129, - 45.572943 - ], - [ - -73.408125, - 45.572945 - ], - [ - -73.408121, - 45.572947 - ], - [ - -73.408117, - 45.572949 - ], - [ - -73.408112, - 45.572951 - ], - [ - -73.408108, - 45.572953 - ], - [ - -73.408104, - 45.572955 - ], - [ - -73.4081, - 45.572958 - ], - [ - -73.408096, - 45.57296 - ], - [ - -73.408092, - 45.572962 - ], - [ - -73.408087, - 45.572964 - ], - [ - -73.408083, - 45.572966 - ], - [ - -73.408079, - 45.572968 - ], - [ - -73.408075, - 45.57297 - ], - [ - -73.408071, - 45.572972 - ], - [ - -73.408067, - 45.572975 - ], - [ - -73.408063, - 45.572977 - ], - [ - -73.408059, - 45.572979 - ], - [ - -73.408055, - 45.572981 - ], - [ - -73.408051, - 45.572983 - ], - [ - -73.408046, - 45.572985 - ], - [ - -73.408042, - 45.572988 - ], - [ - -73.408038, - 45.57299 - ], - [ - -73.408034, - 45.572992 - ], - [ - -73.40803, - 45.572994 - ], - [ - -73.408026, - 45.572996 - ], - [ - -73.408022, - 45.572999 - ], - [ - -73.408018, - 45.573001 - ], - [ - -73.408014, - 45.573003 - ], - [ - -73.40801, - 45.573005 - ], - [ - -73.408006, - 45.573008 - ], - [ - -73.408002, - 45.57301 - ], - [ - -73.407998, - 45.573012 - ], - [ - -73.407994, - 45.573014 - ], - [ - -73.40799, - 45.573017 - ], - [ - -73.407986, - 45.573019 - ], - [ - -73.407982, - 45.573021 - ], - [ - -73.407978, - 45.573024 - ], - [ - -73.407974, - 45.573026 - ], - [ - -73.40797, - 45.573028 - ], - [ - -73.407966, - 45.57303 - ], - [ - -73.407962, - 45.573033 - ], - [ - -73.407959, - 45.573035 - ], - [ - -73.407955, - 45.573037 - ], - [ - -73.407951, - 45.57304 - ], - [ - -73.407947, - 45.573042 - ], - [ - -73.407943, - 45.573044 - ], - [ - -73.407939, - 45.573047 - ], - [ - -73.407935, - 45.573049 - ], - [ - -73.407931, - 45.573052 - ], - [ - -73.407928, - 45.573054 - ], - [ - -73.407924, - 45.573056 - ], - [ - -73.40792, - 45.573059 - ], - [ - -73.407916, - 45.573061 - ], - [ - -73.407913, - 45.573064 - ], - [ - -73.407909, - 45.573066 - ], - [ - -73.407905, - 45.573069 - ], - [ - -73.407901, - 45.573071 - ], - [ - -73.407898, - 45.573074 - ], - [ - -73.407894, - 45.573076 - ], - [ - -73.40789, - 45.573079 - ], - [ - -73.407887, - 45.573081 - ], - [ - -73.407883, - 45.573084 - ], - [ - -73.40788, - 45.573086 - ], - [ - -73.407876, - 45.573089 - ], - [ - -73.407872, - 45.573091 - ], - [ - -73.407869, - 45.573094 - ], - [ - -73.407865, - 45.573097 - ], - [ - -73.407862, - 45.573099 - ], - [ - -73.407858, - 45.573102 - ], - [ - -73.407855, - 45.573105 - ], - [ - -73.407851, - 45.573107 - ], - [ - -73.407848, - 45.57311 - ], - [ - -73.407844, - 45.573112 - ], - [ - -73.407841, - 45.573115 - ], - [ - -73.407837, - 45.573118 - ], - [ - -73.407834, - 45.573121 - ], - [ - -73.407831, - 45.573123 - ], - [ - -73.407827, - 45.573126 - ], - [ - -73.407824, - 45.573129 - ], - [ - -73.407821, - 45.573131 - ], - [ - -73.407817, - 45.573134 - ], - [ - -73.407812, - 45.57314 - ], - [ - -73.407617, - 45.573325 - ], - [ - -73.407546, - 45.573392 - ], - [ - -73.406884, - 45.572882 - ], - [ - -73.405962, - 45.572152 - ], - [ - -73.405928, - 45.572128 - ], - [ - -73.405899, - 45.572108 - ], - [ - -73.405852, - 45.572099 - ], - [ - -73.405787, - 45.572088 - ], - [ - -73.405648, - 45.572091 - ], - [ - -73.40501, - 45.572118 - ], - [ - -73.404937, - 45.572127 - ], - [ - -73.404887, - 45.572144 - ], - [ - -73.404824, - 45.572173 - ], - [ - -73.404363, - 45.572463 - ], - [ - -73.404167, - 45.572586 - ], - [ - -73.404077, - 45.572646 - ], - [ - -73.404226, - 45.572758 - ], - [ - -73.404305, - 45.572839 - ], - [ - -73.404344, - 45.572907 - ], - [ - -73.404465, - 45.573132 - ] - ] - }, - "id": 169, - "properties": { - "id": "24063ca7-69e9-4bf9-b540-31386cdece08", - "data": { - "gtfs": { - "shape_id": "80_1_R" - }, - "segments": [ - { - "distanceMeters": 10799, - "travelTimeSeconds": 520 - }, - { - "distanceMeters": 414, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 439, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 79, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 334, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 757, - "travelTimeSeconds": 228 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 70 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 16596, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10704.036435587395, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 12.03, - "travelTimeWithoutDwellTimesSeconds": 1380, - "operatingTimeWithLayoverTimeSeconds": 1560, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1380, - "operatingSpeedWithLayoverMetersPerSecond": 10.64, - "averageSpeedWithoutDwellTimesMetersPerSecond": 12.03 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "4c755ece-2475-4915-941e-37859f0f391f", - "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", - "bbe875bc-cb85-4a61-923d-53ee4746a213", - "96c08dfd-d2e7-4584-a6b3-36c3a2e1abcc", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "4c25cc73-ac26-4e31-9812-bc4ad7f583b5", - "49262d07-72b2-466f-bf49-88656466e4a4", - "0872c388-8faf-4852-b4ce-cf3f6312e0ef", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "ebf7fd24-b756-481f-9a88-33b6362fcbda", - "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", - "3613b472-6055-4b55-9c89-01a451d82804", - "4cd6eb13-aeec-4716-a3d3-8e1a38389723", - "9ad04c6c-abc1-49fe-8f36-db6146dd5c5c", - "3dedf179-3478-4b4d-b706-36e0a8981094", - "91fae16f-d2f7-4af8-a4e7-3156976c0aae", - "cc142acd-cd00-4b27-8c30-0fb03b101fb8", - "38f108ec-7ce2-4f60-84c9-81ee447773a8", - "ed651d5d-88ba-4ece-bfe1-02e5832cfee7", - "88dc439b-1c69-4b99-b3d0-d19592029cc1", - "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", - "c6549833-3800-4d1f-a789-747fc95c595a", - "9adb2d51-794e-405a-84b9-dacf33a046bb", - "2f7dafc2-f82c-429d-8ce9-0ab21c7cde49" - ], - "stops": [], - "line_id": "85ada749-0996-4a0e-a41e-34953d66ac4a", - "segments": [ - 0, - 132, - 181, - 218, - 224, - 227, - 230, - 233, - 239, - 246, - 249, - 257, - 264, - 270, - 278, - 282, - 283, - 287, - 291, - 297, - 301, - 313, - 322, - 327, - 630 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 169, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.404465, - 45.573132 - ], - [ - -73.404516, - 45.573227 - ], - [ - -73.405062, - 45.574199 - ], - [ - -73.405195, - 45.574394 - ], - [ - -73.405268, - 45.574469 - ], - [ - -73.405457, - 45.574621 - ], - [ - -73.40583, - 45.574917 - ], - [ - -73.405913, - 45.574988 - ], - [ - -73.406355, - 45.5746 - ], - [ - -73.407648, - 45.573464 - ], - [ - -73.407902, - 45.573272 - ], - [ - -73.408156, - 45.573119 - ], - [ - -73.408432, - 45.572987 - ], - [ - -73.40901, - 45.572865 - ], - [ - -73.410733, - 45.572762 - ], - [ - -73.410922, - 45.572751 - ], - [ - -73.411036, - 45.572745 - ], - [ - -73.412381, - 45.572673 - ], - [ - -73.412661, - 45.572692 - ], - [ - -73.412713, - 45.572696 - ], - [ - -73.413219, - 45.572818 - ], - [ - -73.413504, - 45.572924 - ], - [ - -73.413615, - 45.572947 - ], - [ - -73.413719, - 45.573015 - ], - [ - -73.413779, - 45.573055 - ], - [ - -73.413911, - 45.573168 - ], - [ - -73.414077, - 45.573294 - ], - [ - -73.414647, - 45.573758 - ], - [ - -73.414791, - 45.57387 - ], - [ - -73.415714, - 45.5746 - ], - [ - -73.416156, - 45.574947 - ], - [ - -73.417067, - 45.575663 - ], - [ - -73.418497, - 45.576798 - ], - [ - -73.418642, - 45.576911 - ], - [ - -73.418667, - 45.576931 - ], - [ - -73.418953, - 45.577153 - ], - [ - -73.419, - 45.577192 - ], - [ - -73.419047, - 45.57723 - ], - [ - -73.419313, - 45.577437 - ], - [ - -73.41953, - 45.577608 - ], - [ - -73.420061, - 45.578025 - ], - [ - -73.420081, - 45.578041 - ], - [ - -73.420386, - 45.578284 - ], - [ - -73.420532, - 45.578396 - ], - [ - -73.421072, - 45.578819 - ], - [ - -73.4211, - 45.578841 - ], - [ - -73.421745, - 45.579346 - ], - [ - -73.421793, - 45.579382 - ], - [ - -73.421846, - 45.579423 - ], - [ - -73.42208, - 45.579603 - ], - [ - -73.422546, - 45.579959 - ], - [ - -73.422663, - 45.580049 - ], - [ - -73.423009, - 45.580315 - ], - [ - -73.423236, - 45.580486 - ], - [ - -73.423455, - 45.580651 - ], - [ - -73.423789, - 45.580905 - ], - [ - -73.424062, - 45.581115 - ], - [ - -73.424788, - 45.581676 - ], - [ - -73.425206, - 45.581999 - ], - [ - -73.425286, - 45.58206 - ], - [ - -73.425816, - 45.582464 - ], - [ - -73.426256, - 45.5828 - ], - [ - -73.426528, - 45.583004 - ], - [ - -73.429814, - 45.585537 - ], - [ - -73.429958, - 45.585646 - ], - [ - -73.430085, - 45.585745 - ], - [ - -73.430467, - 45.586051 - ], - [ - -73.430716, - 45.586245 - ], - [ - -73.430893, - 45.586393 - ], - [ - -73.431289, - 45.586718 - ], - [ - -73.431717, - 45.587092 - ], - [ - -73.431818, - 45.587179 - ], - [ - -73.431883, - 45.587238 - ], - [ - -73.432034, - 45.587385 - ], - [ - -73.432226, - 45.587579 - ], - [ - -73.433253, - 45.588702 - ], - [ - -73.433674, - 45.589158 - ], - [ - -73.433885, - 45.58936 - ], - [ - -73.4342, - 45.589657 - ], - [ - -73.434715, - 45.590103 - ], - [ - -73.434884, - 45.590234 - ], - [ - -73.434944, - 45.590279 - ], - [ - -73.434983, - 45.59031 - ], - [ - -73.435014, - 45.590337 - ], - [ - -73.435057, - 45.590373 - ], - [ - -73.435107, - 45.590414 - ], - [ - -73.435254, - 45.590517 - ], - [ - -73.435815, - 45.590941 - ], - [ - -73.43623, - 45.591247 - ], - [ - -73.436355, - 45.59135 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442992, - 45.59628 - ], - [ - -73.443394, - 45.596559 - ], - [ - -73.444803, - 45.597518 - ], - [ - -73.445261, - 45.597829 - ], - [ - -73.446259, - 45.598527 - ], - [ - -73.446713, - 45.59886 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449825, - 45.601331 - ], - [ - -73.449842, - 45.601358 - ], - [ - -73.449882, - 45.601394 - ], - [ - -73.449937, - 45.601432 - ], - [ - -73.449974, - 45.601468 - ], - [ - -73.450006, - 45.601497 - ], - [ - -73.450033, - 45.601528 - ], - [ - -73.450045, - 45.601571 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.450329, - 45.600811 - ], - [ - -73.45028, - 45.600747 - ], - [ - -73.45017, - 45.600666 - ], - [ - -73.450081, - 45.60062 - ], - [ - -73.449968, - 45.600603 - ], - [ - -73.449925, - 45.600607 - ], - [ - -73.449868, - 45.600621 - ], - [ - -73.449802, - 45.600661 - ], - [ - -73.449715, - 45.600713 - ], - [ - -73.449674, - 45.600743 - ], - [ - -73.449661, - 45.600772 - ], - [ - -73.449666, - 45.600812 - ], - [ - -73.449924, - 45.601045 - ], - [ - -73.449978, - 45.601072 - ], - [ - -73.450055, - 45.601083 - ], - [ - -73.45017, - 45.60109 - ], - [ - -73.450263, - 45.601099 - ], - [ - -73.450328, - 45.601118 - ], - [ - -73.450379, - 45.601155 - ], - [ - -73.450393, - 45.601201 - ], - [ - -73.450376, - 45.60125 - ], - [ - -73.450362, - 45.601293 - ], - [ - -73.450349, - 45.601366 - ], - [ - -73.450328, - 45.601396 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450295, - 45.60142 - ], - [ - -73.450274, - 45.60143 - ], - [ - -73.450229, - 45.60144 - ], - [ - -73.450195, - 45.601446 - ], - [ - -73.450161, - 45.601455 - ], - [ - -73.450131, - 45.601466 - ], - [ - -73.450095, - 45.601482 - ], - [ - -73.450073, - 45.601501 - ], - [ - -73.450052, - 45.601522 - ], - [ - -73.450048, - 45.601541 - ], - [ - -73.450048, - 45.601565 - ], - [ - -73.450051, - 45.601586 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450683, - 45.601629 - ], - [ - -73.45076, - 45.601581 - ], - [ - -73.450865, - 45.60153 - ], - [ - -73.451136, - 45.601427 - ], - [ - -73.451322, - 45.601341 - ], - [ - -73.45143, - 45.601269 - ], - [ - -73.451545, - 45.601187 - ], - [ - -73.451753, - 45.601 - ], - [ - -73.451831, - 45.600914 - ], - [ - -73.451899, - 45.600828 - ], - [ - -73.451961, - 45.600734 - ], - [ - -73.452054, - 45.600554 - ], - [ - -73.452082, - 45.600442 - ], - [ - -73.452078, - 45.600293 - ], - [ - -73.452054, - 45.600172 - ], - [ - -73.45194, - 45.599798 - ], - [ - -73.451915, - 45.599672 - ], - [ - -73.451904, - 45.599524 - ], - [ - -73.451926, - 45.59938 - ], - [ - -73.451964, - 45.599267 - ], - [ - -73.452063, - 45.599123 - ], - [ - -73.452183, - 45.598993 - ], - [ - -73.452318, - 45.598881 - ], - [ - -73.452477, - 45.598768 - ], - [ - -73.452963, - 45.598458 - ], - [ - -73.45458, - 45.597401 - ], - [ - -73.459437, - 45.594497 - ], - [ - -73.459888, - 45.594213 - ], - [ - -73.46035, - 45.593903 - ], - [ - -73.460702, - 45.593647 - ], - [ - -73.461218, - 45.593251 - ], - [ - -73.46178, - 45.592783 - ], - [ - -73.465585, - 45.589586 - ], - [ - -73.468548, - 45.587089 - ], - [ - -73.468925, - 45.586766 - ], - [ - -73.469282, - 45.586424 - ], - [ - -73.469476, - 45.586217 - ], - [ - -73.46977, - 45.585875 - ], - [ - -73.470065, - 45.585497 - ], - [ - -73.470208, - 45.585295 - ], - [ - -73.470515, - 45.584795 - ], - [ - -73.470777, - 45.584346 - ], - [ - -73.470818, - 45.584266 - ], - [ - -73.471151, - 45.583659 - ], - [ - -73.471441, - 45.583163 - ], - [ - -73.471782, - 45.582588 - ], - [ - -73.471999, - 45.582223 - ], - [ - -73.472179, - 45.58194 - ], - [ - -73.472331, - 45.581716 - ], - [ - -73.472649, - 45.581329 - ], - [ - -73.47273, - 45.58124 - ], - [ - -73.472825, - 45.58114 - ], - [ - -73.473026, - 45.580958 - ], - [ - -73.473162, - 45.580835 - ], - [ - -73.473456, - 45.580601 - ], - [ - -73.473548, - 45.580529 - ], - [ - -73.474056, - 45.580187 - ], - [ - -73.474914, - 45.579634 - ], - [ - -73.475349, - 45.579354 - ], - [ - -73.475514, - 45.57924 - ], - [ - -73.475748, - 45.579059 - ], - [ - -73.476005, - 45.578855 - ], - [ - -73.476092, - 45.578785 - ], - [ - -73.476311, - 45.578613 - ], - [ - -73.476531, - 45.578426 - ], - [ - -73.477316, - 45.577756 - ], - [ - -73.478746, - 45.576546 - ], - [ - -73.485291, - 45.570941 - ], - [ - -73.485924, - 45.570374 - ], - [ - -73.486543, - 45.569794 - ], - [ - -73.487144, - 45.5692 - ], - [ - -73.487725, - 45.568597 - ], - [ - -73.488283, - 45.567985 - ], - [ - -73.489005, - 45.567148 - ], - [ - -73.489524, - 45.56651 - ], - [ - -73.490025, - 45.565857 - ], - [ - -73.490348, - 45.565416 - ], - [ - -73.490811, - 45.564746 - ], - [ - -73.492757, - 45.561799 - ], - [ - -73.493231, - 45.561129 - ], - [ - -73.493558, - 45.560688 - ], - [ - -73.493892, - 45.560256 - ], - [ - -73.494237, - 45.559829 - ], - [ - -73.499922, - 45.552981 - ], - [ - -73.501151, - 45.551492 - ], - [ - -73.501844, - 45.550646 - ], - [ - -73.502872, - 45.549445 - ], - [ - -73.503558, - 45.548684 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523837, - 45.530517 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522438, - 45.524142 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524363 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 170, - "properties": { - "id": "1382015a-d241-4e4a-9351-26e48d507f7a", - "data": { - "gtfs": { - "shape_id": "80_1_A" - }, - "segments": [ - { - "distanceMeters": 17537, - "travelTimeSeconds": 60 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17537, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 228.22527110989932, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 292.27, - "travelTimeWithoutDwellTimesSeconds": 60, - "operatingTimeWithLayoverTimeSeconds": 240, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 60, - "operatingSpeedWithLayoverMetersPerSecond": 73.07, - "averageSpeedWithoutDwellTimesMetersPerSecond": 292.27 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "2f7dafc2-f82c-429d-8ce9-0ab21c7cde49", - "0f2d673a-8365-425e-adb1-c97927e1fe04" - ], - "stops": [], - "line_id": "85ada749-0996-4a0e-a41e-34953d66ac4a", - "segments": [ - 0 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 170, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.466116, - 45.587789 - ], - [ - -73.464043, - 45.586191 - ], - [ - -73.463882, - 45.586067 - ], - [ - -73.463008, - 45.585396 - ], - [ - -73.462695, - 45.585153 - ], - [ - -73.462695, - 45.585153 - ], - [ - -73.462432, - 45.584973 - ], - [ - -73.461939, - 45.585508 - ], - [ - -73.461685, - 45.585787 - ], - [ - -73.46157, - 45.585914 - ], - [ - -73.461498, - 45.585994 - ], - [ - -73.461393, - 45.586113 - ], - [ - -73.461391, - 45.586115 - ], - [ - -73.461235, - 45.586304 - ], - [ - -73.461153, - 45.586394 - ], - [ - -73.46075, - 45.586842 - ], - [ - -73.46024, - 45.587403 - ], - [ - -73.460107, - 45.58755 - ], - [ - -73.459738, - 45.587955 - ], - [ - -73.459672, - 45.588027 - ], - [ - -73.459565, - 45.588139 - ], - [ - -73.459411, - 45.588319 - ], - [ - -73.45918, - 45.588576 - ], - [ - -73.458866, - 45.588918 - ], - [ - -73.458377, - 45.58947 - ], - [ - -73.458224, - 45.589642 - ], - [ - -73.457847, - 45.590109 - ], - [ - -73.457798, - 45.590177 - ], - [ - -73.457344, - 45.590807 - ], - [ - -73.457079, - 45.591212 - ], - [ - -73.456938, - 45.591427 - ], - [ - -73.456884, - 45.591509 - ], - [ - -73.45679, - 45.591652 - ], - [ - -73.456499, - 45.592179 - ], - [ - -73.456406, - 45.592363 - ], - [ - -73.456312, - 45.592549 - ], - [ - -73.456207, - 45.592759 - ], - [ - -73.456153, - 45.59288 - ], - [ - -73.455854, - 45.593569 - ], - [ - -73.455756, - 45.593816 - ], - [ - -73.455693, - 45.594005 - ], - [ - -73.455619, - 45.594225 - ], - [ - -73.455491, - 45.594772 - ], - [ - -73.455406, - 45.595139 - ], - [ - -73.455188, - 45.59625 - ], - [ - -73.455037, - 45.597022 - ], - [ - -73.454939, - 45.597508 - ], - [ - -73.454897, - 45.597712 - ], - [ - -73.454896, - 45.597721 - ], - [ - -73.454793, - 45.598157 - ], - [ - -73.454668, - 45.598841 - ], - [ - -73.454596, - 45.599241 - ], - [ - -73.454497, - 45.599705 - ], - [ - -73.454335, - 45.600562 - ], - [ - -73.454318, - 45.600654 - ], - [ - -73.454139, - 45.601545 - ], - [ - -73.454053, - 45.601959 - ], - [ - -73.453996, - 45.602252 - ], - [ - -73.453844, - 45.603045 - ], - [ - -73.453814, - 45.6032 - ], - [ - -73.453688, - 45.60384 - ], - [ - -73.453667, - 45.603947 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.45351, - 45.604734 - ], - [ - -73.45313, - 45.606689 - ], - [ - -73.453067, - 45.607012 - ], - [ - -73.45303, - 45.607204 - ], - [ - -73.452956, - 45.607582 - ], - [ - -73.452894, - 45.607902 - ], - [ - -73.452838, - 45.608171 - ], - [ - -73.452742, - 45.608653 - ], - [ - -73.452525, - 45.609783 - ], - [ - -73.452502, - 45.609899 - ], - [ - -73.452319, - 45.610623 - ], - [ - -73.452151, - 45.611172 - ], - [ - -73.452038, - 45.611557 - ], - [ - -73.451963, - 45.611811 - ], - [ - -73.451872, - 45.612075 - ], - [ - -73.451764, - 45.612387 - ], - [ - -73.451588, - 45.612886 - ], - [ - -73.451496, - 45.613129 - ], - [ - -73.451219, - 45.613822 - ], - [ - -73.451034, - 45.614254 - ], - [ - -73.450957, - 45.614433 - ], - [ - -73.450551, - 45.61523 - ], - [ - -73.450142, - 45.615999 - ], - [ - -73.449827, - 45.616539 - ], - [ - -73.449564, - 45.616998 - ], - [ - -73.449512, - 45.617087 - ], - [ - -73.44919, - 45.617636 - ], - [ - -73.448686, - 45.618505 - ], - [ - -73.448637, - 45.61859 - ], - [ - -73.448491, - 45.618837 - ], - [ - -73.448364, - 45.619075 - ], - [ - -73.447396, - 45.620704 - ], - [ - -73.447018, - 45.62136 - ], - [ - -73.447011, - 45.621372 - ], - [ - -73.446834, - 45.62168 - ], - [ - -73.446146, - 45.622876 - ], - [ - -73.445824, - 45.623425 - ], - [ - -73.445586, - 45.623794 - ], - [ - -73.445565, - 45.62383 - ], - [ - -73.445387, - 45.624131 - ], - [ - -73.444573, - 45.625552 - ], - [ - -73.444159, - 45.626255 - ], - [ - -73.444022, - 45.626488 - ], - [ - -73.443605, - 45.627221 - ], - [ - -73.443179, - 45.627966 - ], - [ - -73.443114, - 45.62808 - ], - [ - -73.442091, - 45.629841 - ], - [ - -73.442088, - 45.629846 - ], - [ - -73.441684, - 45.63054 - ], - [ - -73.441456, - 45.630932 - ], - [ - -73.441271, - 45.631251 - ], - [ - -73.440501, - 45.632582 - ], - [ - -73.440392, - 45.632771 - ], - [ - -73.440824, - 45.632902 - ], - [ - -73.440907, - 45.632925 - ], - [ - -73.441299, - 45.633032 - ], - [ - -73.441599, - 45.633114 - ], - [ - -73.44208, - 45.633254 - ], - [ - -73.442416, - 45.633371 - ], - [ - -73.442563, - 45.633434 - ], - [ - -73.442909, - 45.633686 - ], - [ - -73.443242, - 45.633938 - ], - [ - -73.443651, - 45.634271 - ], - [ - -73.443845, - 45.634429 - ], - [ - -73.444049, - 45.634573 - ], - [ - -73.444148, - 45.634658 - ], - [ - -73.444422, - 45.63487 - ], - [ - -73.44467, - 45.635073 - ], - [ - -73.444715, - 45.635109 - ], - [ - -73.445026, - 45.635353 - ], - [ - -73.445104, - 45.635415 - ], - [ - -73.445268, - 45.635536 - ], - [ - -73.445466, - 45.635698 - ], - [ - -73.445562, - 45.635784 - ], - [ - -73.445634, - 45.635856 - ], - [ - -73.445712, - 45.635937 - ], - [ - -73.445769, - 45.636018 - ], - [ - -73.445951, - 45.636247 - ], - [ - -73.446134, - 45.636441 - ], - [ - -73.44625, - 45.636558 - ], - [ - -73.446407, - 45.636689 - ], - [ - -73.446639, - 45.63686 - ], - [ - -73.446777, - 45.636959 - ], - [ - -73.446874, - 45.637013 - ], - [ - -73.447384, - 45.637215 - ], - [ - -73.447605, - 45.637291 - ], - [ - -73.447634, - 45.637301 - ], - [ - -73.447778, - 45.637337 - ], - [ - -73.44802, - 45.63702 - ], - [ - -73.448132, - 45.636874 - ], - [ - -73.448252, - 45.636716 - ], - [ - -73.448535, - 45.636361 - ], - [ - -73.448723, - 45.636136 - ], - [ - -73.449067, - 45.635736 - ], - [ - -73.449285, - 45.635498 - ], - [ - -73.449333, - 45.635447 - ], - [ - -73.449434, - 45.63534 - ], - [ - -73.450136, - 45.634603 - ], - [ - -73.450679, - 45.634027 - ], - [ - -73.451195, - 45.633474 - ], - [ - -73.451614, - 45.633011 - ], - [ - -73.451693, - 45.632925 - ], - [ - -73.451773, - 45.632844 - ], - [ - -73.45193, - 45.632639 - ], - [ - -73.452094, - 45.632426 - ], - [ - -73.452319, - 45.632093 - ], - [ - -73.452502, - 45.631778 - ], - [ - -73.452686, - 45.631346 - ], - [ - -73.452778, - 45.631153 - ], - [ - -73.452942, - 45.630703 - ], - [ - -73.452951, - 45.630677 - ], - [ - -73.453257, - 45.629785 - ], - [ - -73.453315, - 45.629624 - ], - [ - -73.453358, - 45.629493 - ], - [ - -73.453393, - 45.629394 - ], - [ - -73.453601, - 45.628791 - ], - [ - -73.453834, - 45.628108 - ], - [ - -73.453835, - 45.628107 - ], - [ - -73.454024, - 45.62755 - ], - [ - -73.454194, - 45.627067 - ], - [ - -73.454243, - 45.626929 - ], - [ - -73.454435, - 45.626407 - ], - [ - -73.455127, - 45.624366 - ], - [ - -73.455153, - 45.624288 - ], - [ - -73.455228, - 45.623663 - ], - [ - -73.455339, - 45.62198 - ], - [ - -73.455345, - 45.621886 - ], - [ - -73.455364, - 45.621566 - ], - [ - -73.455459, - 45.620347 - ], - [ - -73.455477, - 45.620211 - ], - [ - -73.455479, - 45.620194 - ], - [ - -73.455571, - 45.619434 - ], - [ - -73.45562, - 45.619025 - ], - [ - -73.455676, - 45.618606 - ], - [ - -73.455729, - 45.618206 - ], - [ - -73.455745, - 45.618089 - ], - [ - -73.45581, - 45.617621 - ], - [ - -73.455879, - 45.617157 - ], - [ - -73.455888, - 45.617081 - ], - [ - -73.455915, - 45.616856 - ], - [ - -73.455942, - 45.616638 - ], - [ - -73.45596, - 45.616501 - ], - [ - -73.455984, - 45.616307 - ], - [ - -73.456015, - 45.616024 - ], - [ - -73.45606, - 45.615718 - ], - [ - -73.456125, - 45.615281 - ], - [ - -73.456295, - 45.613828 - ], - [ - -73.456295, - 45.613826 - ], - [ - -73.456315, - 45.613702 - ], - [ - -73.456346, - 45.613356 - ], - [ - -73.456367, - 45.613122 - ], - [ - -73.456403, - 45.612587 - ], - [ - -73.456429, - 45.612204 - ], - [ - -73.456443, - 45.611905 - ], - [ - -73.456449, - 45.611777 - ], - [ - -73.456473, - 45.611516 - ], - [ - -73.456491, - 45.611268 - ], - [ - -73.4565, - 45.611138 - ], - [ - -73.456508, - 45.610998 - ], - [ - -73.456537, - 45.610463 - ], - [ - -73.456535, - 45.610252 - ], - [ - -73.456534, - 45.610121 - ], - [ - -73.456558, - 45.609802 - ], - [ - -73.456582, - 45.60905 - ], - [ - -73.456591, - 45.608481 - ], - [ - -73.456594, - 45.608335 - ], - [ - -73.456599, - 45.607836 - ], - [ - -73.45661, - 45.607368 - ], - [ - -73.456615, - 45.606796 - ], - [ - -73.456615, - 45.60671 - ], - [ - -73.456615, - 45.606661 - ], - [ - -73.456606, - 45.606499 - ], - [ - -73.456639, - 45.606189 - ], - [ - -73.456765, - 45.605708 - ], - [ - -73.456875, - 45.605321 - ], - [ - -73.457004, - 45.60488 - ], - [ - -73.457092, - 45.604538 - ], - [ - -73.457136, - 45.604362 - ], - [ - -73.457297, - 45.603715 - ], - [ - -73.457484, - 45.603017 - ], - [ - -73.457663, - 45.602423 - ], - [ - -73.457682, - 45.602374 - ], - [ - -73.457833, - 45.601965 - ], - [ - -73.458077, - 45.601272 - ], - [ - -73.458405, - 45.600443 - ], - [ - -73.458417, - 45.600413 - ], - [ - -73.45861, - 45.599891 - ], - [ - -73.458773, - 45.599468 - ], - [ - -73.458929, - 45.599081 - ], - [ - -73.45906, - 45.598784 - ], - [ - -73.459093, - 45.598711 - ], - [ - -73.459106, - 45.598681 - ], - [ - -73.459297, - 45.598249 - ], - [ - -73.459417, - 45.597961 - ], - [ - -73.459667, - 45.59743 - ], - [ - -73.459796, - 45.597151 - ], - [ - -73.459954, - 45.596865 - ], - [ - -73.459959, - 45.596854 - ], - [ - -73.460279, - 45.596211 - ], - [ - -73.460377, - 45.59604 - ], - [ - -73.460508, - 45.595878 - ], - [ - -73.46106, - 45.594719 - ], - [ - -73.461071, - 45.594695 - ], - [ - -73.461222, - 45.594399 - ], - [ - -73.461303, - 45.594263 - ], - [ - -73.461165, - 45.594245 - ], - [ - -73.461088, - 45.594223 - ], - [ - -73.461052, - 45.594209 - ], - [ - -73.461012, - 45.594187 - ], - [ - -73.460975, - 45.594164 - ], - [ - -73.460934, - 45.594133 - ], - [ - -73.460903, - 45.594083 - ], - [ - -73.460874, - 45.594007 - ], - [ - -73.460786, - 45.593638 - ], - [ - -73.460732, - 45.593472 - ], - [ - -73.46065, - 45.593102 - ], - [ - -73.460612, - 45.592945 - ], - [ - -73.460597, - 45.592846 - ], - [ - -73.460594, - 45.592756 - ], - [ - -73.460592, - 45.592639 - ], - [ - -73.460627, - 45.592463 - ], - [ - -73.460652, - 45.592387 - ], - [ - -73.460702, - 45.592266 - ], - [ - -73.460724, - 45.592225 - ], - [ - -73.460758, - 45.592162 - ], - [ - -73.460841, - 45.59205 - ], - [ - -73.460858, - 45.592023 - ], - [ - -73.460873, - 45.592 - ], - [ - -73.46094, - 45.591928 - ], - [ - -73.461084, - 45.591784 - ], - [ - -73.46113, - 45.591753 - ], - [ - -73.461225, - 45.59169 - ], - [ - -73.461314, - 45.591613 - ], - [ - -73.462065, - 45.590961 - ], - [ - -73.462195, - 45.590862 - ], - [ - -73.462294, - 45.590799 - ], - [ - -73.462386, - 45.590754 - ], - [ - -73.462519, - 45.590705 - ], - [ - -73.462602, - 45.590678 - ], - [ - -73.462706, - 45.590656 - ], - [ - -73.462813, - 45.590642 - ], - [ - -73.462888, - 45.590633 - ], - [ - -73.463001, - 45.590624 - ], - [ - -73.46316, - 45.59062 - ], - [ - -73.463269, - 45.590611 - ], - [ - -73.463357, - 45.590597 - ], - [ - -73.463462, - 45.590579 - ], - [ - -73.463571, - 45.590548 - ], - [ - -73.463709, - 45.590498 - ], - [ - -73.463772, - 45.590426 - ], - [ - -73.463826, - 45.590404 - ], - [ - -73.463931, - 45.590341 - ], - [ - -73.464069, - 45.590233 - ], - [ - -73.46414, - 45.59017 - ], - [ - -73.464647, - 45.589698 - ], - [ - -73.464743, - 45.589617 - ], - [ - -73.46517, - 45.589257 - ], - [ - -73.465623, - 45.588888 - ], - [ - -73.466111, - 45.588492 - ], - [ - -73.466543, - 45.588142 - ], - [ - -73.466899, - 45.587854 - ], - [ - -73.467583, - 45.587301 - ], - [ - -73.468078, - 45.586878 - ], - [ - -73.468705, - 45.586302 - ], - [ - -73.469343, - 45.585587 - ], - [ - -73.46961, - 45.585203 - ], - [ - -73.470132, - 45.584453 - ], - [ - -73.470152, - 45.584422 - ], - [ - -73.470218, - 45.584246 - ], - [ - -73.470251, - 45.584156 - ], - [ - -73.470298, - 45.583954 - ], - [ - -73.470385, - 45.583842 - ], - [ - -73.470456, - 45.583585 - ], - [ - -73.47052, - 45.583429 - ], - [ - -73.470545, - 45.583369 - ], - [ - -73.470612, - 45.583247 - ], - [ - -73.470683, - 45.583117 - ], - [ - -73.470812, - 45.582911 - ], - [ - -73.470915, - 45.582744 - ], - [ - -73.470923, - 45.582731 - ], - [ - -73.471346, - 45.582051 - ], - [ - -73.471398, - 45.581925 - ], - [ - -73.471433, - 45.581808 - ], - [ - -73.471453, - 45.581699 - ], - [ - -73.471458, - 45.581595 - ], - [ - -73.471454, - 45.581489 - ], - [ - -73.471389, - 45.581345 - ], - [ - -73.471335, - 45.581232 - ], - [ - -73.471105, - 45.580881 - ], - [ - -73.470884, - 45.580526 - ], - [ - -73.470654, - 45.580152 - ], - [ - -73.470298, - 45.579576 - ], - [ - -73.47012, - 45.579347 - ], - [ - -73.469587, - 45.578501 - ], - [ - -73.469497, - 45.578352 - ], - [ - -73.469458, - 45.578217 - ], - [ - -73.469412, - 45.578105 - ], - [ - -73.469426, - 45.578028 - ], - [ - -73.469459, - 45.577871 - ], - [ - -73.469567, - 45.577727 - ], - [ - -73.469918, - 45.577331 - ], - [ - -73.46993, - 45.577318 - ], - [ - -73.46998, - 45.577261 - ], - [ - -73.470749, - 45.576405 - ], - [ - -73.471056, - 45.576076 - ], - [ - -73.471154, - 45.575991 - ], - [ - -73.471267, - 45.57591 - ], - [ - -73.471454, - 45.575824 - ], - [ - -73.471573, - 45.575815 - ], - [ - -73.47168, - 45.575793 - ], - [ - -73.471784, - 45.575788 - ], - [ - -73.47189, - 45.575788 - ], - [ - -73.472025, - 45.575797 - ], - [ - -73.472112, - 45.575815 - ], - [ - -73.472263, - 45.575852 - ], - [ - -73.472355, - 45.575892 - ], - [ - -73.472462, - 45.575951 - ], - [ - -73.472549, - 45.576014 - ], - [ - -73.472694, - 45.576122 - ], - [ - -73.473301, - 45.576594 - ], - [ - -73.473336, - 45.576621 - ], - [ - -73.473371, - 45.57665 - ], - [ - -73.473655, - 45.576878 - ], - [ - -73.474504, - 45.577526 - ], - [ - -73.47467, - 45.577629 - ], - [ - -73.474832, - 45.577728 - ], - [ - -73.474992, - 45.57776 - ], - [ - -73.475075, - 45.577797 - ], - [ - -73.475207, - 45.577851 - ], - [ - -73.4753, - 45.577885 - ], - [ - -73.47539, - 45.577914 - ], - [ - -73.475552, - 45.577947 - ], - [ - -73.475661, - 45.577961 - ], - [ - -73.475789, - 45.577962 - ], - [ - -73.475882, - 45.577959 - ], - [ - -73.475958, - 45.57795 - ], - [ - -73.476012, - 45.577939 - ], - [ - -73.476079, - 45.577928 - ], - [ - -73.476157, - 45.577912 - ], - [ - -73.476217, - 45.577897 - ], - [ - -73.476293, - 45.57787 - ], - [ - -73.476435, - 45.577844 - ], - [ - -73.476547, - 45.57778 - ], - [ - -73.476747, - 45.57765 - ], - [ - -73.476958, - 45.577498 - ], - [ - -73.477027, - 45.57744 - ], - [ - -73.477113, - 45.577369 - ], - [ - -73.477145, - 45.577342 - ], - [ - -73.477324, - 45.577191 - ], - [ - -73.477483, - 45.577054 - ], - [ - -73.477759, - 45.576825 - ], - [ - -73.477862, - 45.576731 - ], - [ - -73.478006, - 45.576618 - ], - [ - -73.478291, - 45.576373 - ], - [ - -73.478455, - 45.576238 - ], - [ - -73.478599, - 45.576116 - ], - [ - -73.478806, - 45.575943 - ], - [ - -73.478978, - 45.575795 - ], - [ - -73.47914, - 45.575661 - ], - [ - -73.479155, - 45.575649 - ], - [ - -73.479274, - 45.575534 - ], - [ - -73.47941, - 45.575433 - ], - [ - -73.479622, - 45.575253 - ], - [ - -73.4798, - 45.575097 - ], - [ - -73.479996, - 45.574941 - ], - [ - -73.480237, - 45.574738 - ], - [ - -73.480297, - 45.574686 - ], - [ - -73.480453, - 45.574551 - ], - [ - -73.480801, - 45.574263 - ], - [ - -73.481358, - 45.573789 - ], - [ - -73.481529, - 45.573644 - ], - [ - -73.481972, - 45.573269 - ], - [ - -73.48204, - 45.57321 - ], - [ - -73.482204, - 45.573068 - ], - [ - -73.482412, - 45.572903 - ], - [ - -73.482823, - 45.572557 - ], - [ - -73.482916, - 45.572476 - ], - [ - -73.482986, - 45.57241 - ], - [ - -73.483315, - 45.572122 - ], - [ - -73.483678, - 45.571813 - ], - [ - -73.483694, - 45.571799 - ], - [ - -73.483843, - 45.57167 - ], - [ - -73.484123, - 45.57144 - ], - [ - -73.484526, - 45.571099 - ], - [ - -73.484935, - 45.570755 - ], - [ - -73.484967, - 45.570727 - ], - [ - -73.485483, - 45.570269 - ], - [ - -73.485845, - 45.569929 - ], - [ - -73.485867, - 45.569908 - ], - [ - -73.485994, - 45.569784 - ], - [ - -73.486085, - 45.569691 - ], - [ - -73.486421, - 45.569373 - ], - [ - -73.487037, - 45.568739 - ], - [ - -73.487188, - 45.568584 - ], - [ - -73.487556, - 45.568196 - ], - [ - -73.487608, - 45.568138 - ], - [ - -73.488016, - 45.567684 - ], - [ - -73.488394, - 45.567236 - ], - [ - -73.488809, - 45.566744 - ], - [ - -73.488926, - 45.566606 - ], - [ - -73.489299, - 45.566117 - ], - [ - -73.489627, - 45.565684 - ], - [ - -73.489917, - 45.565286 - ], - [ - -73.490075, - 45.56507 - ], - [ - -73.490593, - 45.5643 - ], - [ - -73.490731, - 45.564091 - ], - [ - -73.491532, - 45.562873 - ], - [ - -73.491593, - 45.562778 - ], - [ - -73.491605, - 45.562759 - ], - [ - -73.4917, - 45.562606 - ], - [ - -73.491908, - 45.562298 - ], - [ - -73.49207, - 45.56203 - ], - [ - -73.492185, - 45.561871 - ], - [ - -73.492368, - 45.56159 - ], - [ - -73.492369, - 45.561588 - ], - [ - -73.492391, - 45.561555 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.494691, - 45.558396 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498677, - 45.553944 - ], - [ - -73.498726, - 45.553872 - ], - [ - -73.498813, - 45.553714 - ], - [ - -73.498895, - 45.553562 - ], - [ - -73.49895, - 45.553404 - ], - [ - -73.498964, - 45.55335 - ], - [ - -73.498988, - 45.55326 - ], - [ - -73.499026, - 45.553035 - ], - [ - -73.499051, - 45.55281 - ], - [ - -73.49911, - 45.552261 - ], - [ - -73.499127, - 45.552095 - ], - [ - -73.499157, - 45.551794 - ], - [ - -73.499199, - 45.551371 - ], - [ - -73.49924, - 45.551092 - ], - [ - -73.499284, - 45.550946 - ], - [ - -73.499366, - 45.550811 - ], - [ - -73.499487, - 45.550651 - ], - [ - -73.499665, - 45.550425 - ], - [ - -73.499747, - 45.550322 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.50022, - 45.549728 - ], - [ - -73.500444, - 45.549454 - ], - [ - -73.500464, - 45.549427 - ], - [ - -73.501566, - 45.548104 - ], - [ - -73.50204, - 45.547519 - ], - [ - -73.502267, - 45.547252 - ], - [ - -73.502471, - 45.547011 - ], - [ - -73.502541, - 45.546943 - ], - [ - -73.502557, - 45.546876 - ], - [ - -73.502577, - 45.546795 - ], - [ - -73.502631, - 45.546736 - ], - [ - -73.50284, - 45.546532 - ], - [ - -73.503243, - 45.546138 - ], - [ - -73.503599, - 45.545809 - ], - [ - -73.504068, - 45.545423 - ], - [ - -73.504222, - 45.545296 - ], - [ - -73.505423, - 45.544306 - ], - [ - -73.505527, - 45.544221 - ], - [ - -73.505579, - 45.544179 - ], - [ - -73.505629, - 45.54414 - ], - [ - -73.505954, - 45.54387 - ], - [ - -73.506032, - 45.543786 - ], - [ - -73.506072, - 45.543744 - ], - [ - -73.506245, - 45.543564 - ], - [ - -73.506394, - 45.543393 - ], - [ - -73.506629, - 45.543083 - ], - [ - -73.506908, - 45.542688 - ], - [ - -73.507112, - 45.542399 - ], - [ - -73.507514, - 45.541778 - ], - [ - -73.507752, - 45.541396 - ], - [ - -73.508031, - 45.540951 - ], - [ - -73.508096, - 45.540847 - ], - [ - -73.508112, - 45.54082 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.509486, - 45.538888 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.51157, - 45.537143 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.513272, - 45.536035 - ], - [ - -73.513413, - 45.535879 - ], - [ - -73.513707, - 45.535583 - ], - [ - -73.513941, - 45.535349 - ], - [ - -73.51396, - 45.535331 - ], - [ - -73.514031, - 45.535263 - ], - [ - -73.514312, - 45.534967 - ], - [ - -73.514735, - 45.53454 - ], - [ - -73.514842, - 45.53442 - ], - [ - -73.514898, - 45.534357 - ], - [ - -73.515145, - 45.534084 - ], - [ - -73.515317, - 45.533897 - ], - [ - -73.515372, - 45.533842 - ], - [ - -73.515492, - 45.533712 - ], - [ - -73.515504, - 45.533699 - ], - [ - -73.515888, - 45.533287 - ], - [ - -73.515986, - 45.533193 - ], - [ - -73.516604, - 45.532657 - ], - [ - -73.516729, - 45.532549 - ], - [ - -73.517579, - 45.531802 - ], - [ - -73.51791, - 45.531479 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518212, - 45.531168 - ], - [ - -73.51845, - 45.53088 - ], - [ - -73.518608, - 45.530695 - ], - [ - -73.518713, - 45.530574 - ], - [ - -73.518834, - 45.53043 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519399, - 45.526014 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521985, - 45.524134 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 171, - "properties": { - "id": "974f7916-c967-4b1a-85dc-7389dcaa43b9", - "data": { - "gtfs": { - "shape_id": "81_1_A" - }, - "segments": [ - { - "distanceMeters": 240, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 417, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 368, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 356, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 311, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 343, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 329, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 119, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 384, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 364, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 1420, - "travelTimeSeconds": 162 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 423, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 331, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 829, - "travelTimeSeconds": 150 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 407, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 636, - "travelTimeSeconds": 156 - }, - { - "distanceMeters": 829, - "travelTimeSeconds": 204 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 282, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 22407, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8347.563976383852, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.95, - "travelTimeWithoutDwellTimesSeconds": 2820, - "operatingTimeWithLayoverTimeSeconds": 3102, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2820, - "operatingSpeedWithLayoverMetersPerSecond": 7.22, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.95 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "2f7a97d2-c790-4f58-9a63-010938bbaf69", - "b54db9a8-0c8c-43a8-a385-bc532fde3f70", - "21aac851-6052-4e4d-8167-df2d9a876338", - "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", - "c650007a-bdeb-4831-9df5-833406e44887", - "8babca8c-ebff-46bc-b0c6-b6576c4fada6", - "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", - "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", - "50c385af-a7f1-479f-b40d-4ed198aca8ce", - "c70f5c69-70b5-4f23-92e4-0440931e6d31", - "0c7061af-3fd1-4686-aa29-c78d142ae807", - "bef3dd7a-32fd-4081-9a62-9328ee51057a", - "1fa5bec6-00bf-4d49-9290-67a2b0919f84", - "e2d71c2d-a170-4ce7-a381-519755a00e36", - "039c87a4-2647-4079-9a79-c7d3278ef6b2", - "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", - "0778ac37-7369-4d81-abbc-9aa1d13b1c38", - "fe768f5e-31ce-413a-b9fa-a7bf91a912eb", - "706f0077-9543-4662-8684-a321216a8a90", - "253353ba-aba2-4e63-bf86-819bb7c9cecd", - "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", - "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", - "78a9a588-c1f0-470f-bbcc-52b6da866dad", - "90b41412-0c12-4505-b7c9-b915901b1dd2", - "90b41412-0c12-4505-b7c9-b915901b1dd2", - "f659a652-a61c-4199-abbc-a42f3ceef5cb", - "02fef102-0f62-42d0-b4ed-790bc76ef1ad", - "389622d0-ee1f-428b-9366-e69f134ff23e", - "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", - "17cb8bb3-d8b7-472f-9a1a-e49fc66b519c", - "777d67e8-62c3-46b4-a71f-e76a88b45f45", - "6928ef4b-2825-4234-84d9-1c82edb211b0", - "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", - "568437d9-2de5-4e5e-b111-1a7811ac5c99", - "148d4b0f-418e-4993-b335-f1dcd1c4df41", - "518135ae-62e9-44c2-bac7-e8c50c56eec9", - "949c3098-32ca-4f3b-81ba-cbe506f68923", - "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", - "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", - "204b558a-c106-4589-888d-4bd6528787b5", - "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", - "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", - "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", - "bc367579-e120-4c24-8a22-9700d9580818", - "0d10f2fd-9087-48c2-a3cc-d12114887a2b", - "cc54b5e7-0d92-40a3-a2d0-962bd60dc85b", - "695f9244-0dd1-45c0-ba42-b49de2270ee6", - "51dc5cf7-92db-46c8-8c42-9f02a7f9e23c", - "0c601e52-04e5-43e0-9137-7225c37d4cdc", - "6460b11a-31ec-4bbc-b7b7-22be32195079", - "b2bf7d79-9175-4e1d-be9c-4f4140537e43", - "48f19a5c-0937-4c87-ba6d-c01e50729a6a", - "064a6f97-fc69-48b1-8038-7d9a4eea77de", - "da1ccd92-4d5e-4317-ad9f-7a8daa9e9230", - "bf75043d-39f5-40a1-89fa-2154a9f2a45f", - "75347f42-115f-47ec-b394-c1f56ce167fb", - "dc112aae-906c-47be-a1fb-06ef714fd1ab", - "ab105343-272d-4aa3-9238-846c2fa787cb", - "24527bed-7ea6-44d6-b6db-18ac609f4938", - "1b1077ca-8a37-46a1-a7be-751ea2f7f2ae", - "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", - "d5099816-374e-4ebc-ab50-5ca4d2f829e5", - "84a0424b-0f35-4bd8-8109-5ac9219d5869", - "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", - "261a087b-9323-4696-9046-146a299af43d", - "66456437-f154-4a2f-a12f-2f54cf668687", - "820a9d7c-25e9-487c-9e51-cfefcb1432f7", - "7fd25a62-c81c-42ae-bd39-f61c05418964", - "17f362e0-58a1-4091-a2cb-677491725ae9", - "cca1a0cf-beb4-489c-8f77-d54546a85821", - "a8133dc5-71bf-42ce-a22f-48f31a731720", - "21e2e89a-3df0-4ff7-aa64-17a07fbd660e", - "48ea0d06-7b69-4895-b55b-2a18e6e6f906", - "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", - "d00d9138-966b-4522-be1d-8c665c71246b", - "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "649e6394-9376-40eb-bc0e-4a376a0044aa", - "4fb4515b-e129-4622-b855-89143c2fd488", - "4c755ece-2475-4915-941e-37859f0f391f" - ], - "stops": [], - "line_id": "8b333337-1f1c-43e8-ac99-49e33bd82aa9", - "segments": [ - 0, - 1, - 4, - 11, - 18, - 24, - 31, - 35, - 40, - 47, - 53, - 60, - 65, - 71, - 77, - 82, - 87, - 90, - 95, - 101, - 104, - 107, - 109, - 114, - 118, - 125, - 132, - 148, - 158, - 166, - 173, - 180, - 182, - 185, - 188, - 192, - 198, - 203, - 210, - 216, - 223, - 227, - 232, - 239, - 244, - 247, - 253, - 259, - 264, - 293, - 318, - 323, - 328, - 342, - 409, - 421, - 429, - 435, - 443, - 450, - 461, - 468, - 471, - 476, - 483, - 499, - 505, - 513, - 522, - 524, - 534, - 538, - 547, - 555, - 563, - 572, - 576, - 579, - 596 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 171, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.52252, - 45.524045 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519449, - 45.523414 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519343, - 45.526817 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517851, - 45.526813 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517465, - 45.528168 - ], - [ - -73.517458, - 45.528249 - ], - [ - -73.517471, - 45.528385 - ], - [ - -73.517504, - 45.528565 - ], - [ - -73.517516, - 45.528652 - ], - [ - -73.517553, - 45.52877 - ], - [ - -73.517635, - 45.529002 - ], - [ - -73.517693, - 45.529249 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.517456, - 45.531762 - ], - [ - -73.516887, - 45.532289 - ], - [ - -73.51664, - 45.532518 - ], - [ - -73.515885, - 45.533161 - ], - [ - -73.515753, - 45.533238 - ], - [ - -73.515672, - 45.533321 - ], - [ - -73.515319, - 45.533717 - ], - [ - -73.515257, - 45.533788 - ], - [ - -73.515202, - 45.533848 - ], - [ - -73.514831, - 45.534265 - ], - [ - -73.514791, - 45.534311 - ], - [ - -73.514731, - 45.534379 - ], - [ - -73.514684, - 45.534434 - ], - [ - -73.51432, - 45.534799 - ], - [ - -73.513994, - 45.535129 - ], - [ - -73.513904, - 45.53522 - ], - [ - -73.513681, - 45.535468 - ], - [ - -73.51342, - 45.535713 - ], - [ - -73.513155, - 45.535985 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.511226, - 45.537342 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.509622, - 45.538701 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.508112, - 45.54082 - ], - [ - -73.508096, - 45.540847 - ], - [ - -73.507713, - 45.541459 - ], - [ - -73.507514, - 45.541778 - ], - [ - -73.507112, - 45.542399 - ], - [ - -73.506629, - 45.543083 - ], - [ - -73.506394, - 45.543393 - ], - [ - -73.506245, - 45.543564 - ], - [ - -73.506072, - 45.543744 - ], - [ - -73.506032, - 45.543786 - ], - [ - -73.505954, - 45.54387 - ], - [ - -73.505637, - 45.544133 - ], - [ - -73.505629, - 45.54414 - ], - [ - -73.505579, - 45.544179 - ], - [ - -73.505527, - 45.544221 - ], - [ - -73.504297, - 45.545235 - ], - [ - -73.504222, - 45.545296 - ], - [ - -73.503599, - 45.545809 - ], - [ - -73.503243, - 45.546138 - ], - [ - -73.50284, - 45.546532 - ], - [ - -73.502631, - 45.546736 - ], - [ - -73.502629, - 45.546739 - ], - [ - -73.502577, - 45.546795 - ], - [ - -73.502495, - 45.546833 - ], - [ - -73.502421, - 45.546867 - ], - [ - -73.502363, - 45.54693 - ], - [ - -73.501891, - 45.547483 - ], - [ - -73.501089, - 45.54845 - ], - [ - -73.500323, - 45.549368 - ], - [ - -73.500142, - 45.549578 - ], - [ - -73.500016, - 45.549724 - ], - [ - -73.499756, - 45.550039 - ], - [ - -73.499564, - 45.550308 - ], - [ - -73.499518, - 45.550373 - ], - [ - -73.499348, - 45.550589 - ], - [ - -73.499249, - 45.550718 - ], - [ - -73.499149, - 45.550849 - ], - [ - -73.49909, - 45.551 - ], - [ - -73.499052, - 45.551292 - ], - [ - -73.498992, - 45.551746 - ], - [ - -73.498947, - 45.552086 - ], - [ - -73.49893, - 45.552473 - ], - [ - -73.498889, - 45.552801 - ], - [ - -73.498863, - 45.552968 - ], - [ - -73.498848, - 45.553058 - ], - [ - -73.498813, - 45.553251 - ], - [ - -73.498782, - 45.553386 - ], - [ - -73.498737, - 45.553535 - ], - [ - -73.498669, - 45.55371 - ], - [ - -73.498603, - 45.553836 - ], - [ - -73.498557, - 45.553912 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498167, - 45.554475 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.496104, - 45.556848 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.494566, - 45.558538 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.493668, - 45.559597 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.492544, - 45.561193 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.49226, - 45.561543 - ], - [ - -73.492112, - 45.561761 - ], - [ - -73.491962, - 45.561977 - ], - [ - -73.491763, - 45.562292 - ], - [ - -73.491686, - 45.562407 - ], - [ - -73.491585, - 45.562559 - ], - [ - -73.491441, - 45.562784 - ], - [ - -73.490929, - 45.563578 - ], - [ - -73.490558, - 45.564142 - ], - [ - -73.490532, - 45.564181 - ], - [ - -73.490496, - 45.564236 - ], - [ - -73.49016, - 45.564742 - ], - [ - -73.48995, - 45.565062 - ], - [ - -73.48981, - 45.565248 - ], - [ - -73.489559, - 45.565581 - ], - [ - -73.489458, - 45.565721 - ], - [ - -73.489162, - 45.566112 - ], - [ - -73.488997, - 45.566327 - ], - [ - -73.488959, - 45.566375 - ], - [ - -73.488811, - 45.566565 - ], - [ - -73.488635, - 45.566766 - ], - [ - -73.488461, - 45.56699 - ], - [ - -73.488294, - 45.567186 - ], - [ - -73.488221, - 45.567273 - ], - [ - -73.488004, - 45.567517 - ], - [ - -73.487807, - 45.567755 - ], - [ - -73.487503, - 45.56809 - ], - [ - -73.48741, - 45.568192 - ], - [ - -73.487163, - 45.568458 - ], - [ - -73.487007, - 45.568622 - ], - [ - -73.486935, - 45.568697 - ], - [ - -73.486687, - 45.568953 - ], - [ - -73.486371, - 45.569275 - ], - [ - -73.486314, - 45.569328 - ], - [ - -73.486289, - 45.569352 - ], - [ - -73.486149, - 45.569492 - ], - [ - -73.485998, - 45.569634 - ], - [ - -73.485903, - 45.569729 - ], - [ - -73.485627, - 45.569986 - ], - [ - -73.485317, - 45.570269 - ], - [ - -73.484918, - 45.570637 - ], - [ - -73.484877, - 45.570674 - ], - [ - -73.484851, - 45.570698 - ], - [ - -73.484572, - 45.570948 - ], - [ - -73.484207, - 45.571258 - ], - [ - -73.484112, - 45.571335 - ], - [ - -73.483948, - 45.571467 - ], - [ - -73.483827, - 45.571565 - ], - [ - -73.483769, - 45.571618 - ], - [ - -73.483389, - 45.571944 - ], - [ - -73.482893, - 45.572344 - ], - [ - -73.482643, - 45.572566 - ], - [ - -73.482219, - 45.572923 - ], - [ - -73.482208, - 45.572932 - ], - [ - -73.482105, - 45.573016 - ], - [ - -73.481582, - 45.573467 - ], - [ - -73.481445, - 45.573583 - ], - [ - -73.481127, - 45.573851 - ], - [ - -73.480471, - 45.574399 - ], - [ - -73.480455, - 45.574414 - ], - [ - -73.480365, - 45.574496 - ], - [ - -73.480179, - 45.57465 - ], - [ - -73.47988, - 45.574896 - ], - [ - -73.479721, - 45.575038 - ], - [ - -73.479529, - 45.575196 - ], - [ - -73.479284, - 45.575404 - ], - [ - -73.479275, - 45.575411 - ], - [ - -73.47919, - 45.575474 - ], - [ - -73.478877, - 45.575745 - ], - [ - -73.478615, - 45.575963 - ], - [ - -73.478505, - 45.576047 - ], - [ - -73.478299, - 45.576232 - ], - [ - -73.478026, - 45.576459 - ], - [ - -73.477786, - 45.576664 - ], - [ - -73.477515, - 45.576891 - ], - [ - -73.477206, - 45.57715 - ], - [ - -73.477057, - 45.577276 - ], - [ - -73.47701, - 45.577315 - ], - [ - -73.476937, - 45.57737 - ], - [ - -73.476851, - 45.577447 - ], - [ - -73.476716, - 45.577554 - ], - [ - -73.476574, - 45.577658 - ], - [ - -73.476472, - 45.577734 - ], - [ - -73.47642, - 45.577765 - ], - [ - -73.476382, - 45.577787 - ], - [ - -73.476293, - 45.57787 - ], - [ - -73.476217, - 45.577897 - ], - [ - -73.476157, - 45.577912 - ], - [ - -73.476079, - 45.577928 - ], - [ - -73.476012, - 45.577939 - ], - [ - -73.475958, - 45.57795 - ], - [ - -73.475882, - 45.577959 - ], - [ - -73.475789, - 45.577962 - ], - [ - -73.475661, - 45.577961 - ], - [ - -73.475552, - 45.577947 - ], - [ - -73.47539, - 45.577914 - ], - [ - -73.4753, - 45.577885 - ], - [ - -73.475207, - 45.577851 - ], - [ - -73.475075, - 45.577797 - ], - [ - -73.474992, - 45.57776 - ], - [ - -73.47493, - 45.577679 - ], - [ - -73.474765, - 45.577566 - ], - [ - -73.474216, - 45.577139 - ], - [ - -73.473916, - 45.576909 - ], - [ - -73.473451, - 45.576545 - ], - [ - -73.473056, - 45.576248 - ], - [ - -73.472547, - 45.575861 - ], - [ - -73.472442, - 45.575811 - ], - [ - -73.472341, - 45.575771 - ], - [ - -73.472134, - 45.575721 - ], - [ - -73.472025, - 45.575712 - ], - [ - -73.47191, - 45.575703 - ], - [ - -73.471753, - 45.575725 - ], - [ - -73.471621, - 45.575752 - ], - [ - -73.471517, - 45.575779 - ], - [ - -73.471454, - 45.575824 - ], - [ - -73.471267, - 45.57591 - ], - [ - -73.471154, - 45.575991 - ], - [ - -73.471056, - 45.576076 - ], - [ - -73.470749, - 45.576405 - ], - [ - -73.470431, - 45.576759 - ], - [ - -73.46998, - 45.577261 - ], - [ - -73.46993, - 45.577318 - ], - [ - -73.469918, - 45.577331 - ], - [ - -73.469567, - 45.577727 - ], - [ - -73.469459, - 45.577871 - ], - [ - -73.469426, - 45.578028 - ], - [ - -73.469412, - 45.578105 - ], - [ - -73.469387, - 45.578199 - ], - [ - -73.469407, - 45.578361 - ], - [ - -73.469455, - 45.578532 - ], - [ - -73.469488, - 45.578586 - ], - [ - -73.469681, - 45.578892 - ], - [ - -73.469995, - 45.579387 - ], - [ - -73.470195, - 45.579689 - ], - [ - -73.470515, - 45.580203 - ], - [ - -73.470754, - 45.580571 - ], - [ - -73.470975, - 45.580922 - ], - [ - -73.471124, - 45.581142 - ], - [ - -73.471202, - 45.581268 - ], - [ - -73.471253, - 45.581372 - ], - [ - -73.471275, - 45.58143 - ], - [ - -73.471293, - 45.581494 - ], - [ - -73.471312, - 45.581592 - ], - [ - -73.471312, - 45.581772 - ], - [ - -73.471307, - 45.581816 - ], - [ - -73.471303, - 45.581844 - ], - [ - -73.47128, - 45.581907 - ], - [ - -73.471211, - 45.582033 - ], - [ - -73.470821, - 45.582712 - ], - [ - -73.470771, - 45.582791 - ], - [ - -73.470706, - 45.582894 - ], - [ - -73.470582, - 45.58309 - ], - [ - -73.470505, - 45.58323 - ], - [ - -73.470441, - 45.583347 - ], - [ - -73.470413, - 45.583413 - ], - [ - -73.470407, - 45.583428 - ], - [ - -73.470349, - 45.583567 - ], - [ - -73.470274, - 45.583837 - ], - [ - -73.470298, - 45.583954 - ], - [ - -73.470251, - 45.584156 - ], - [ - -73.470218, - 45.584246 - ], - [ - -73.470152, - 45.584422 - ], - [ - -73.470132, - 45.584453 - ], - [ - -73.469343, - 45.585587 - ], - [ - -73.469014, - 45.585956 - ], - [ - -73.468705, - 45.586302 - ], - [ - -73.468078, - 45.586878 - ], - [ - -73.467583, - 45.587301 - ], - [ - -73.466543, - 45.588142 - ], - [ - -73.466439, - 45.588038 - ], - [ - -73.466116, - 45.587789 - ] - ] - }, - "id": 172, - "properties": { - "id": "ca794cb6-4832-4099-9cdb-0142014b7101", - "data": { - "gtfs": { - "shape_id": "81_1_R" - }, - "segments": [ - { - "distanceMeters": 1468, - "travelTimeSeconds": 261 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 388, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 1438, - "travelTimeSeconds": 181 - }, - { - "distanceMeters": 382, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 46 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9609, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8347.563976383852, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.96, - "travelTimeWithoutDwellTimesSeconds": 1380, - "operatingTimeWithLayoverTimeSeconds": 1560, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1380, - "operatingSpeedWithLayoverMetersPerSecond": 6.16, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.96 - }, - "mode": "bus", - "name": "boul. du Fort-St-Louis", - "color": "#A32638", - "nodes": [ - "4c755ece-2475-4915-941e-37859f0f391f", - "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "d00d9138-966b-4522-be1d-8c665c71246b", - "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", - "48ea0d06-7b69-4895-b55b-2a18e6e6f906", - "2759f6fd-0d91-4292-9174-1b3724fde57a", - "cca1a0cf-beb4-489c-8f77-d54546a85821", - "17f362e0-58a1-4091-a2cb-677491725ae9", - "c5521133-14cc-4988-b8c2-4360698fa4ec", - "a42ad0c8-61c2-4ea6-ba0d-de9a1cb40394", - "bc056e84-1f20-4604-aad7-40427c6685a6", - "c879a803-d58b-4487-8291-391e9b516d3c", - "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", - "261a087b-9323-4696-9046-146a299af43d", - "0bcb0e97-db40-44bb-afe9-f6212a5b6387", - "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", - "84a0424b-0f35-4bd8-8109-5ac9219d5869", - "2d4bab42-76d4-4d53-9416-1ff754c71d1d", - "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", - "de56e105-40ff-411e-a830-378b68780088", - "24527bed-7ea6-44d6-b6db-18ac609f4938", - "ab105343-272d-4aa3-9238-846c2fa787cb", - "dc112aae-906c-47be-a1fb-06ef714fd1ab", - "75347f42-115f-47ec-b394-c1f56ce167fb", - "bf75043d-39f5-40a1-89fa-2154a9f2a45f", - "49a50701-87e7-4e72-af25-0a8ac3f9cb08", - "294d6510-b687-486c-b1aa-a7e5b91bdac4", - "2f7a97d2-c790-4f58-9a63-010938bbaf69" - ], - "stops": [], - "line_id": "8b333337-1f1c-43e8-ac99-49e33bd82aa9", - "segments": [ - 0, - 56, - 61, - 69, - 77, - 84, - 94, - 103, - 107, - 113, - 121, - 131, - 145, - 147, - 150, - 152, - 154, - 160, - 164, - 174, - 189, - 202, - 209, - 215, - 221, - 232, - 306, - 321 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 172, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.466116, - 45.587789 - ], - [ - -73.463882, - 45.586067 - ], - [ - -73.463008, - 45.585396 - ], - [ - -73.462695, - 45.585153 - ], - [ - -73.462466, - 45.584997 - ], - [ - -73.462432, - 45.584973 - ], - [ - -73.461939, - 45.585508 - ], - [ - -73.461685, - 45.585787 - ], - [ - -73.46157, - 45.585914 - ], - [ - -73.461498, - 45.585994 - ], - [ - -73.461391, - 45.586115 - ], - [ - -73.461235, - 45.586304 - ], - [ - -73.461153, - 45.586394 - ], - [ - -73.46075, - 45.586842 - ], - [ - -73.460583, - 45.587025 - ], - [ - -73.46024, - 45.587403 - ], - [ - -73.460107, - 45.58755 - ], - [ - -73.459672, - 45.588027 - ], - [ - -73.459565, - 45.588139 - ], - [ - -73.459411, - 45.588319 - ], - [ - -73.45918, - 45.588576 - ], - [ - -73.458866, - 45.588918 - ], - [ - -73.458429, - 45.589411 - ], - [ - -73.458224, - 45.589642 - ], - [ - -73.457847, - 45.590109 - ], - [ - -73.457798, - 45.590177 - ], - [ - -73.457344, - 45.590807 - ], - [ - -73.457079, - 45.591212 - ], - [ - -73.456938, - 45.591427 - ], - [ - -73.45679, - 45.591652 - ], - [ - -73.456499, - 45.592179 - ], - [ - -73.456406, - 45.592363 - ], - [ - -73.456207, - 45.592759 - ], - [ - -73.456158, - 45.59287 - ], - [ - -73.456153, - 45.59288 - ], - [ - -73.455854, - 45.593569 - ], - [ - -73.455756, - 45.593816 - ], - [ - -73.455619, - 45.594225 - ], - [ - -73.455491, - 45.594772 - ], - [ - -73.455406, - 45.595139 - ], - [ - -73.455249, - 45.595936 - ], - [ - -73.455188, - 45.59625 - ], - [ - -73.455037, - 45.597022 - ], - [ - -73.454939, - 45.597508 - ], - [ - -73.454896, - 45.597721 - ], - [ - -73.454793, - 45.598157 - ], - [ - -73.454668, - 45.598841 - ], - [ - -73.454596, - 45.599241 - ], - [ - -73.454497, - 45.599705 - ], - [ - -73.454457, - 45.599919 - ], - [ - -73.454318, - 45.600654 - ], - [ - -73.454139, - 45.601545 - ], - [ - -73.454074, - 45.601856 - ], - [ - -73.454053, - 45.601959 - ], - [ - -73.453996, - 45.602252 - ], - [ - -73.453844, - 45.603045 - ], - [ - -73.453814, - 45.6032 - ], - [ - -73.453667, - 45.603947 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453558, - 45.604496 - ], - [ - -73.45351, - 45.604734 - ], - [ - -73.45313, - 45.606689 - ], - [ - -73.45303, - 45.607204 - ], - [ - -73.452956, - 45.607582 - ], - [ - -73.452894, - 45.607902 - ], - [ - -73.452838, - 45.608171 - ], - [ - -73.452742, - 45.608653 - ], - [ - -73.452502, - 45.609899 - ], - [ - -73.452319, - 45.610623 - ], - [ - -73.452203, - 45.611001 - ], - [ - -73.452151, - 45.611172 - ], - [ - -73.452038, - 45.611557 - ], - [ - -73.451963, - 45.611811 - ], - [ - -73.451764, - 45.612387 - ], - [ - -73.451588, - 45.612886 - ], - [ - -73.451496, - 45.613129 - ], - [ - -73.451219, - 45.613822 - ], - [ - -73.450957, - 45.614433 - ], - [ - -73.450551, - 45.61523 - ], - [ - -73.450224, - 45.615846 - ], - [ - -73.450142, - 45.615999 - ], - [ - -73.449827, - 45.616539 - ], - [ - -73.449512, - 45.617087 - ], - [ - -73.44919, - 45.617636 - ], - [ - -73.448637, - 45.61859 - ], - [ - -73.448491, - 45.618837 - ], - [ - -73.448364, - 45.619075 - ], - [ - -73.447396, - 45.620704 - ], - [ - -73.447098, - 45.621221 - ], - [ - -73.447011, - 45.621372 - ], - [ - -73.446834, - 45.62168 - ], - [ - -73.446146, - 45.622876 - ], - [ - -73.445824, - 45.623425 - ], - [ - -73.445586, - 45.623794 - ], - [ - -73.445387, - 45.624131 - ], - [ - -73.444573, - 45.625552 - ], - [ - -73.444063, - 45.626417 - ], - [ - -73.444022, - 45.626488 - ], - [ - -73.443605, - 45.627221 - ], - [ - -73.443114, - 45.62808 - ], - [ - -73.442088, - 45.629846 - ], - [ - -73.441684, - 45.63054 - ], - [ - -73.441456, - 45.630932 - ], - [ - -73.441437, - 45.630964 - ], - [ - -73.441271, - 45.631251 - ], - [ - -73.440392, - 45.632771 - ], - [ - -73.440824, - 45.632902 - ], - [ - -73.440907, - 45.632925 - ], - [ - -73.441599, - 45.633114 - ], - [ - -73.44208, - 45.633254 - ], - [ - -73.442416, - 45.633371 - ], - [ - -73.442563, - 45.633434 - ], - [ - -73.442909, - 45.633686 - ], - [ - -73.443048, - 45.633791 - ], - [ - -73.443242, - 45.633938 - ], - [ - -73.443845, - 45.634429 - ], - [ - -73.444049, - 45.634573 - ], - [ - -73.444148, - 45.634658 - ], - [ - -73.444422, - 45.63487 - ], - [ - -73.44467, - 45.635073 - ], - [ - -73.444715, - 45.635109 - ], - [ - -73.445104, - 45.635415 - ], - [ - -73.445268, - 45.635536 - ], - [ - -73.445466, - 45.635698 - ], - [ - -73.445562, - 45.635784 - ], - [ - -73.445634, - 45.635856 - ], - [ - -73.445712, - 45.635937 - ], - [ - -73.445769, - 45.636018 - ], - [ - -73.445951, - 45.636247 - ], - [ - -73.446134, - 45.636441 - ], - [ - -73.44625, - 45.636558 - ], - [ - -73.446407, - 45.636689 - ], - [ - -73.44662, - 45.636845 - ], - [ - -73.446639, - 45.63686 - ], - [ - -73.446777, - 45.636959 - ], - [ - -73.446874, - 45.637013 - ], - [ - -73.447384, - 45.637215 - ], - [ - -73.447634, - 45.637301 - ], - [ - -73.447778, - 45.637337 - ], - [ - -73.44802, - 45.63702 - ], - [ - -73.448132, - 45.636874 - ], - [ - -73.448252, - 45.636716 - ], - [ - -73.448535, - 45.636361 - ], - [ - -73.448723, - 45.636136 - ], - [ - -73.449067, - 45.635736 - ], - [ - -73.449285, - 45.635498 - ], - [ - -73.449434, - 45.63534 - ], - [ - -73.450136, - 45.634603 - ], - [ - -73.450679, - 45.634027 - ], - [ - -73.450913, - 45.633777 - ], - [ - -73.451195, - 45.633474 - ], - [ - -73.451614, - 45.633011 - ], - [ - -73.451693, - 45.632925 - ], - [ - -73.451773, - 45.632844 - ], - [ - -73.452094, - 45.632426 - ], - [ - -73.452319, - 45.632093 - ], - [ - -73.452502, - 45.631778 - ], - [ - -73.452686, - 45.631346 - ], - [ - -73.452736, - 45.631241 - ], - [ - -73.452778, - 45.631153 - ], - [ - -73.452942, - 45.630703 - ], - [ - -73.453257, - 45.629785 - ], - [ - -73.453315, - 45.629624 - ], - [ - -73.453358, - 45.629493 - ], - [ - -73.453393, - 45.629394 - ], - [ - -73.453601, - 45.628791 - ], - [ - -73.453834, - 45.628108 - ], - [ - -73.454024, - 45.62755 - ], - [ - -73.454243, - 45.626929 - ], - [ - -73.454435, - 45.626407 - ], - [ - -73.454577, - 45.625988 - ], - [ - -73.455153, - 45.624288 - ], - [ - -73.455228, - 45.623663 - ], - [ - -73.455345, - 45.621886 - ], - [ - -73.455364, - 45.621566 - ], - [ - -73.455381, - 45.621357 - ], - [ - -73.455459, - 45.620347 - ], - [ - -73.455479, - 45.620194 - ], - [ - -73.455571, - 45.619434 - ], - [ - -73.45562, - 45.619025 - ], - [ - -73.455676, - 45.618606 - ], - [ - -73.455729, - 45.618206 - ], - [ - -73.45581, - 45.617621 - ], - [ - -73.455879, - 45.617157 - ], - [ - -73.455888, - 45.617081 - ], - [ - -73.455915, - 45.616856 - ], - [ - -73.455924, - 45.616785 - ], - [ - -73.45596, - 45.616501 - ], - [ - -73.455984, - 45.616307 - ], - [ - -73.456015, - 45.616024 - ], - [ - -73.45606, - 45.615718 - ], - [ - -73.456125, - 45.615281 - ], - [ - -73.456295, - 45.613828 - ], - [ - -73.456315, - 45.613702 - ], - [ - -73.456327, - 45.613565 - ], - [ - -73.456346, - 45.613356 - ], - [ - -73.456367, - 45.613122 - ], - [ - -73.456403, - 45.612587 - ], - [ - -73.456429, - 45.612204 - ], - [ - -73.456449, - 45.611777 - ], - [ - -73.456473, - 45.611516 - ], - [ - -73.456491, - 45.611268 - ], - [ - -73.4565, - 45.611138 - ], - [ - -73.456508, - 45.610998 - ], - [ - -73.456537, - 45.610463 - ], - [ - -73.456534, - 45.610121 - ], - [ - -73.456542, - 45.610021 - ], - [ - -73.456558, - 45.609802 - ], - [ - -73.456582, - 45.60905 - ], - [ - -73.456594, - 45.608335 - ], - [ - -73.456599, - 45.607836 - ], - [ - -73.45661, - 45.607368 - ], - [ - -73.456615, - 45.606796 - ], - [ - -73.456615, - 45.606661 - ], - [ - -73.456606, - 45.606499 - ], - [ - -73.456639, - 45.606189 - ], - [ - -73.456765, - 45.605708 - ], - [ - -73.456875, - 45.605321 - ], - [ - -73.457004, - 45.60488 - ], - [ - -73.45701, - 45.60486 - ], - [ - -73.457136, - 45.604362 - ], - [ - -73.457297, - 45.603715 - ], - [ - -73.457402, - 45.603323 - ], - [ - -73.457484, - 45.603017 - ], - [ - -73.457663, - 45.602423 - ], - [ - -73.457833, - 45.601965 - ], - [ - -73.458077, - 45.601272 - ], - [ - -73.458417, - 45.600413 - ], - [ - -73.45861, - 45.599891 - ], - [ - -73.458667, - 45.599742 - ], - [ - -73.458773, - 45.599468 - ], - [ - -73.458929, - 45.599081 - ], - [ - -73.45906, - 45.598784 - ], - [ - -73.459106, - 45.598681 - ], - [ - -73.459297, - 45.598249 - ], - [ - -73.459417, - 45.597961 - ], - [ - -73.459667, - 45.59743 - ], - [ - -73.459721, - 45.597313 - ], - [ - -73.459796, - 45.597151 - ], - [ - -73.459959, - 45.596854 - ], - [ - -73.460279, - 45.596211 - ], - [ - -73.460377, - 45.59604 - ], - [ - -73.460508, - 45.595878 - ], - [ - -73.461071, - 45.594695 - ], - [ - -73.461222, - 45.594399 - ], - [ - -73.461303, - 45.594263 - ], - [ - -73.461165, - 45.594245 - ], - [ - -73.461088, - 45.594223 - ], - [ - -73.461052, - 45.594209 - ], - [ - -73.461012, - 45.594187 - ], - [ - -73.460975, - 45.594164 - ], - [ - -73.460934, - 45.594133 - ], - [ - -73.460903, - 45.594083 - ], - [ - -73.460874, - 45.594007 - ], - [ - -73.460786, - 45.593638 - ], - [ - -73.460732, - 45.593472 - ], - [ - -73.46065, - 45.593102 - ], - [ - -73.460618, - 45.592971 - ], - [ - -73.460612, - 45.592945 - ], - [ - -73.460597, - 45.592846 - ], - [ - -73.460594, - 45.592756 - ], - [ - -73.460592, - 45.592639 - ], - [ - -73.460627, - 45.592463 - ], - [ - -73.460652, - 45.592387 - ], - [ - -73.460702, - 45.592266 - ], - [ - -73.460724, - 45.592225 - ], - [ - -73.460758, - 45.592162 - ], - [ - -73.460841, - 45.59205 - ], - [ - -73.460858, - 45.592023 - ], - [ - -73.460873, - 45.592 - ], - [ - -73.46094, - 45.591928 - ], - [ - -73.461084, - 45.591784 - ], - [ - -73.461225, - 45.59169 - ], - [ - -73.461314, - 45.591613 - ], - [ - -73.462065, - 45.590961 - ], - [ - -73.462195, - 45.590862 - ], - [ - -73.462294, - 45.590799 - ], - [ - -73.462386, - 45.590754 - ], - [ - -73.462519, - 45.590705 - ], - [ - -73.462602, - 45.590678 - ], - [ - -73.462706, - 45.590656 - ], - [ - -73.462813, - 45.590642 - ], - [ - -73.462888, - 45.590633 - ], - [ - -73.463001, - 45.590624 - ], - [ - -73.46316, - 45.59062 - ], - [ - -73.463269, - 45.590611 - ], - [ - -73.463357, - 45.590597 - ], - [ - -73.463462, - 45.590579 - ], - [ - -73.463571, - 45.590548 - ], - [ - -73.463709, - 45.590498 - ], - [ - -73.463772, - 45.590426 - ], - [ - -73.463826, - 45.590404 - ], - [ - -73.463931, - 45.590341 - ], - [ - -73.464069, - 45.590233 - ], - [ - -73.464125, - 45.590184 - ], - [ - -73.46414, - 45.59017 - ], - [ - -73.464647, - 45.589698 - ], - [ - -73.46517, - 45.589257 - ], - [ - -73.465623, - 45.588888 - ], - [ - -73.466111, - 45.588492 - ], - [ - -73.466543, - 45.588142 - ], - [ - -73.467583, - 45.587301 - ], - [ - -73.468078, - 45.586878 - ], - [ - -73.468705, - 45.586302 - ], - [ - -73.469333, - 45.585598 - ], - [ - -73.469343, - 45.585587 - ], - [ - -73.470132, - 45.584453 - ], - [ - -73.470152, - 45.584422 - ], - [ - -73.470218, - 45.584246 - ], - [ - -73.470251, - 45.584156 - ], - [ - -73.470298, - 45.583954 - ], - [ - -73.470385, - 45.583842 - ], - [ - -73.470456, - 45.583585 - ], - [ - -73.47052, - 45.583429 - ], - [ - -73.470545, - 45.583369 - ], - [ - -73.470612, - 45.583247 - ], - [ - -73.470683, - 45.583117 - ], - [ - -73.470812, - 45.582911 - ], - [ - -73.470915, - 45.582744 - ], - [ - -73.471254, - 45.582198 - ], - [ - -73.471346, - 45.582051 - ], - [ - -73.471398, - 45.581925 - ], - [ - -73.471433, - 45.581808 - ], - [ - -73.471453, - 45.581699 - ], - [ - -73.471458, - 45.581595 - ], - [ - -73.471454, - 45.581489 - ], - [ - -73.471389, - 45.581345 - ], - [ - -73.471335, - 45.581232 - ], - [ - -73.471105, - 45.580881 - ], - [ - -73.470884, - 45.580526 - ], - [ - -73.470654, - 45.580152 - ], - [ - -73.470298, - 45.579576 - ], - [ - -73.47012, - 45.579347 - ], - [ - -73.469587, - 45.578501 - ], - [ - -73.469497, - 45.578352 - ], - [ - -73.469458, - 45.578217 - ], - [ - -73.469412, - 45.578105 - ], - [ - -73.469426, - 45.578028 - ], - [ - -73.469457, - 45.577882 - ], - [ - -73.469459, - 45.577871 - ], - [ - -73.469567, - 45.577727 - ], - [ - -73.469918, - 45.577331 - ], - [ - -73.46993, - 45.577318 - ], - [ - -73.46998, - 45.577261 - ], - [ - -73.470749, - 45.576405 - ], - [ - -73.470861, - 45.576285 - ], - [ - -73.471056, - 45.576076 - ], - [ - -73.471154, - 45.575991 - ], - [ - -73.471267, - 45.57591 - ], - [ - -73.471454, - 45.575824 - ], - [ - -73.471573, - 45.575815 - ], - [ - -73.47168, - 45.575793 - ], - [ - -73.471784, - 45.575788 - ], - [ - -73.47189, - 45.575788 - ], - [ - -73.472025, - 45.575797 - ], - [ - -73.472112, - 45.575815 - ], - [ - -73.472263, - 45.575852 - ], - [ - -73.472355, - 45.575892 - ], - [ - -73.472462, - 45.575951 - ], - [ - -73.472549, - 45.576014 - ], - [ - -73.472694, - 45.576122 - ], - [ - -73.473301, - 45.576594 - ], - [ - -73.473336, - 45.576621 - ], - [ - -73.473371, - 45.57665 - ], - [ - -73.473655, - 45.576878 - ], - [ - -73.474504, - 45.577526 - ], - [ - -73.47467, - 45.577629 - ], - [ - -73.474832, - 45.577728 - ], - [ - -73.474992, - 45.57776 - ], - [ - -73.475075, - 45.577797 - ], - [ - -73.475207, - 45.577851 - ], - [ - -73.4753, - 45.577885 - ], - [ - -73.47539, - 45.577914 - ], - [ - -73.475552, - 45.577947 - ], - [ - -73.475661, - 45.577961 - ], - [ - -73.475789, - 45.577962 - ], - [ - -73.475882, - 45.577959 - ], - [ - -73.475958, - 45.57795 - ], - [ - -73.476012, - 45.577939 - ], - [ - -73.476079, - 45.577928 - ], - [ - -73.476157, - 45.577912 - ], - [ - -73.476217, - 45.577897 - ], - [ - -73.476257, - 45.577883 - ], - [ - -73.476293, - 45.57787 - ], - [ - -73.476435, - 45.577844 - ], - [ - -73.476547, - 45.57778 - ], - [ - -73.476747, - 45.57765 - ], - [ - -73.476958, - 45.577498 - ], - [ - -73.477027, - 45.57744 - ], - [ - -73.477145, - 45.577342 - ], - [ - -73.477324, - 45.577191 - ], - [ - -73.477483, - 45.577054 - ], - [ - -73.477759, - 45.576825 - ], - [ - -73.477862, - 45.576731 - ], - [ - -73.478006, - 45.576618 - ], - [ - -73.478291, - 45.576373 - ], - [ - -73.478455, - 45.576238 - ], - [ - -73.478599, - 45.576116 - ], - [ - -73.478806, - 45.575943 - ], - [ - -73.478978, - 45.575795 - ], - [ - -73.479155, - 45.575649 - ], - [ - -73.479274, - 45.575534 - ], - [ - -73.47941, - 45.575433 - ], - [ - -73.479622, - 45.575253 - ], - [ - -73.4798, - 45.575097 - ], - [ - -73.479996, - 45.574941 - ], - [ - -73.480208, - 45.574762 - ], - [ - -73.480237, - 45.574738 - ], - [ - -73.480453, - 45.574551 - ], - [ - -73.480801, - 45.574263 - ], - [ - -73.481358, - 45.573789 - ], - [ - -73.481529, - 45.573644 - ], - [ - -73.481972, - 45.573269 - ], - [ - -73.482204, - 45.573068 - ], - [ - -73.482412, - 45.572903 - ], - [ - -73.482823, - 45.572557 - ], - [ - -73.482916, - 45.572476 - ], - [ - -73.482986, - 45.57241 - ], - [ - -73.483034, - 45.572367 - ], - [ - -73.483315, - 45.572122 - ], - [ - -73.483678, - 45.571813 - ], - [ - -73.483843, - 45.57167 - ], - [ - -73.484123, - 45.57144 - ], - [ - -73.484526, - 45.571099 - ], - [ - -73.484935, - 45.570755 - ], - [ - -73.484967, - 45.570727 - ], - [ - -73.485483, - 45.570269 - ], - [ - -73.485867, - 45.569908 - ], - [ - -73.485994, - 45.569784 - ], - [ - -73.486085, - 45.569691 - ], - [ - -73.48635, - 45.56944 - ], - [ - -73.486421, - 45.569373 - ], - [ - -73.487037, - 45.568739 - ], - [ - -73.487188, - 45.568584 - ], - [ - -73.487556, - 45.568196 - ], - [ - -73.487608, - 45.568138 - ], - [ - -73.488016, - 45.567684 - ], - [ - -73.48834, - 45.5673 - ], - [ - -73.488394, - 45.567236 - ], - [ - -73.488926, - 45.566606 - ], - [ - -73.489299, - 45.566117 - ], - [ - -73.489627, - 45.565684 - ], - [ - -73.489917, - 45.565286 - ], - [ - -73.490075, - 45.56507 - ], - [ - -73.490593, - 45.5643 - ], - [ - -73.491526, - 45.562883 - ], - [ - -73.491532, - 45.562873 - ], - [ - -73.491593, - 45.562778 - ], - [ - -73.4917, - 45.562606 - ], - [ - -73.491908, - 45.562298 - ], - [ - -73.49207, - 45.56203 - ], - [ - -73.492185, - 45.561871 - ], - [ - -73.492369, - 45.561588 - ], - [ - -73.492391, - 45.561555 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.493493, - 45.559821 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.495649, - 45.557344 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.497974, - 45.554699 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498677, - 45.553944 - ], - [ - -73.498726, - 45.553872 - ], - [ - -73.498813, - 45.553714 - ], - [ - -73.498895, - 45.553562 - ], - [ - -73.49895, - 45.553404 - ], - [ - -73.498964, - 45.55335 - ], - [ - -73.498988, - 45.55326 - ], - [ - -73.499026, - 45.553035 - ], - [ - -73.499051, - 45.55281 - ], - [ - -73.49911, - 45.552261 - ], - [ - -73.499127, - 45.552095 - ], - [ - -73.499158, - 45.551787 - ], - [ - -73.499199, - 45.551371 - ], - [ - -73.49924, - 45.551092 - ], - [ - -73.499284, - 45.550946 - ], - [ - -73.499366, - 45.550811 - ], - [ - -73.499487, - 45.550651 - ], - [ - -73.499747, - 45.550322 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.50022, - 45.549728 - ], - [ - -73.500444, - 45.549454 - ], - [ - -73.500464, - 45.549427 - ], - [ - -73.501389, - 45.548316 - ], - [ - -73.501566, - 45.548104 - ], - [ - -73.50204, - 45.547519 - ], - [ - -73.502471, - 45.547011 - ], - [ - -73.502541, - 45.546943 - ], - [ - -73.502557, - 45.546876 - ], - [ - -73.502577, - 45.546795 - ], - [ - -73.502631, - 45.546736 - ], - [ - -73.50284, - 45.546532 - ], - [ - -73.503243, - 45.546138 - ], - [ - -73.503599, - 45.545809 - ], - [ - -73.504222, - 45.545296 - ], - [ - -73.504433, - 45.545122 - ], - [ - -73.505527, - 45.544221 - ], - [ - -73.505579, - 45.544179 - ], - [ - -73.505629, - 45.54414 - ], - [ - -73.505954, - 45.54387 - ], - [ - -73.506032, - 45.543786 - ], - [ - -73.506072, - 45.543744 - ], - [ - -73.506245, - 45.543564 - ], - [ - -73.506394, - 45.543393 - ], - [ - -73.506629, - 45.543083 - ], - [ - -73.507112, - 45.542399 - ], - [ - -73.507215, - 45.54224 - ], - [ - -73.507514, - 45.541778 - ], - [ - -73.507752, - 45.541396 - ], - [ - -73.508096, - 45.540847 - ], - [ - -73.508112, - 45.54082 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.50912, - 45.539383 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.512149, - 45.536805 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.513272, - 45.536035 - ], - [ - -73.513413, - 45.535879 - ], - [ - -73.513707, - 45.535583 - ], - [ - -73.513941, - 45.535349 - ], - [ - -73.514031, - 45.535263 - ], - [ - -73.514312, - 45.534967 - ], - [ - -73.514735, - 45.53454 - ], - [ - -73.514842, - 45.53442 - ], - [ - -73.514898, - 45.534357 - ], - [ - -73.515145, - 45.534084 - ], - [ - -73.515317, - 45.533897 - ], - [ - -73.515372, - 45.533842 - ], - [ - -73.515504, - 45.533699 - ], - [ - -73.51557, - 45.533628 - ], - [ - -73.515888, - 45.533287 - ], - [ - -73.515986, - 45.533193 - ], - [ - -73.516729, - 45.532549 - ], - [ - -73.517579, - 45.531802 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518212, - 45.531168 - ], - [ - -73.51845, - 45.53088 - ], - [ - -73.518608, - 45.530695 - ], - [ - -73.518713, - 45.530574 - ], - [ - -73.518834, - 45.53043 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519422, - 45.528683 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.520673, - 45.523422 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521985, - 45.524134 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 173, - "properties": { - "id": "670a322a-87eb-4bf8-8789-eca152d72e75", - "data": { - "gtfs": { - "shape_id": "81_1_A" - }, - "segments": [ - { - "distanceMeters": 421, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 425, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 448, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 732, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 562, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 646, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 625, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 546, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 456, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 572, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 602, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 521, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 511, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 360, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 395, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 577, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 411, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 527, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 451, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 653, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 516, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 542, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 467, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 416, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 551, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 376, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 430, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 430, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 390, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 446, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 640, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 674, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 453, - "travelTimeSeconds": 25 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 22407, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 58.65116365707441, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 16.24, - "travelTimeWithoutDwellTimesSeconds": 1380, - "operatingTimeWithLayoverTimeSeconds": 1560, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1380, - "operatingSpeedWithLayoverMetersPerSecond": 14.36, - "averageSpeedWithoutDwellTimesMetersPerSecond": 16.24 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "2f7a97d2-c790-4f58-9a63-010938bbaf69", - "b54db9a8-0c8c-43a8-a385-bc532fde3f70", - "21aac851-6052-4e4d-8167-df2d9a876338", - "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", - "c650007a-bdeb-4831-9df5-833406e44887", - "8babca8c-ebff-46bc-b0c6-b6576c4fada6", - "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", - "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", - "50c385af-a7f1-479f-b40d-4ed198aca8ce", - "c70f5c69-70b5-4f23-92e4-0440931e6d31", - "0c7061af-3fd1-4686-aa29-c78d142ae807", - "bef3dd7a-32fd-4081-9a62-9328ee51057a", - "1fa5bec6-00bf-4d49-9290-67a2b0919f84", - "e2d71c2d-a170-4ce7-a381-519755a00e36", - "039c87a4-2647-4079-9a79-c7d3278ef6b2", - "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", - "0778ac37-7369-4d81-abbc-9aa1d13b1c38", - "fe768f5e-31ce-413a-b9fa-a7bf91a912eb", - "706f0077-9543-4662-8684-a321216a8a90", - "253353ba-aba2-4e63-bf86-819bb7c9cecd", - "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", - "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", - "78a9a588-c1f0-470f-bbcc-52b6da866dad", - "90b41412-0c12-4505-b7c9-b915901b1dd2", - "90b41412-0c12-4505-b7c9-b915901b1dd2", - "f659a652-a61c-4199-abbc-a42f3ceef5cb", - "02fef102-0f62-42d0-b4ed-790bc76ef1ad", - "389622d0-ee1f-428b-9366-e69f134ff23e", - "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", - "17cb8bb3-d8b7-472f-9a1a-e49fc66b519c", - "777d67e8-62c3-46b4-a71f-e76a88b45f45", - "6928ef4b-2825-4234-84d9-1c82edb211b0", - "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", - "568437d9-2de5-4e5e-b111-1a7811ac5c99", - "148d4b0f-418e-4993-b335-f1dcd1c4df41", - "518135ae-62e9-44c2-bac7-e8c50c56eec9", - "949c3098-32ca-4f3b-81ba-cbe506f68923", - "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", - "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", - "204b558a-c106-4589-888d-4bd6528787b5", - "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", - "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", - "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", - "bc367579-e120-4c24-8a22-9700d9580818", - "0d10f2fd-9087-48c2-a3cc-d12114887a2b", - "cc54b5e7-0d92-40a3-a2d0-962bd60dc85b", - "695f9244-0dd1-45c0-ba42-b49de2270ee6", - "51dc5cf7-92db-46c8-8c42-9f02a7f9e23c", - "0c601e52-04e5-43e0-9137-7225c37d4cdc", - "6460b11a-31ec-4bbc-b7b7-22be32195079", - "b2bf7d79-9175-4e1d-be9c-4f4140537e43", - "48f19a5c-0937-4c87-ba6d-c01e50729a6a" - ], - "stops": [], - "line_id": "8b333337-1f1c-43e8-ac99-49e33bd82aa9", - "segments": [ - 0, - 4, - 14, - 22, - 33, - 40, - 49, - 52, - 59, - 69, - 79, - 88, - 96, - 103, - 113, - 132, - 149, - 158, - 170, - 175, - 186, - 194, - 206, - 219, - 222, - 229, - 237, - 257, - 294, - 304, - 319, - 338, - 345, - 382, - 406, - 418, - 430, - 437, - 445, - 456, - 459, - 462, - 476, - 487, - 499, - 510, - 521, - 530, - 546, - 563, - 579 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 173, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.52252, - 45.524045 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523674, - 45.523537 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.503549, - 45.548419 - ], - [ - -73.502986, - 45.54904 - ], - [ - -73.502097, - 45.550079 - ], - [ - -73.501025, - 45.551361 - ], - [ - -73.500319, - 45.55223 - ], - [ - -73.497146, - 45.556054 - ], - [ - -73.496787, - 45.55649 - ], - [ - -73.495905, - 45.557543 - ], - [ - -73.495369, - 45.558173 - ], - [ - -73.494314, - 45.559446 - ], - [ - -73.493461, - 45.560499 - ], - [ - -73.492975, - 45.561151 - ], - [ - -73.492659, - 45.561597 - ], - [ - -73.492068, - 45.562474 - ], - [ - -73.49148, - 45.563383 - ], - [ - -73.490434, - 45.564962 - ], - [ - -73.489967, - 45.565619 - ], - [ - -73.489477, - 45.566267 - ], - [ - -73.488962, - 45.566906 - ], - [ - -73.48825, - 45.567747 - ], - [ - -73.487877, - 45.568161 - ], - [ - -73.487301, - 45.568777 - ], - [ - -73.486712, - 45.56938 - ], - [ - -73.486308, - 45.569771 - ], - [ - -73.485474, - 45.570545 - ], - [ - -73.48461, - 45.571301 - ], - [ - -73.483654, - 45.572115 - ], - [ - -73.478606, - 45.576433 - ], - [ - -73.478028, - 45.576933 - ], - [ - -73.477248, - 45.577607 - ], - [ - -73.476645, - 45.578128 - ], - [ - -73.475915, - 45.578754 - ], - [ - -73.475553, - 45.579033 - ], - [ - -73.474887, - 45.579478 - ], - [ - -73.474437, - 45.579762 - ], - [ - -73.474095, - 45.580005 - ], - [ - -73.473853, - 45.580158 - ], - [ - -73.473398, - 45.580472 - ], - [ - -73.473077, - 45.58072 - ], - [ - -73.472886, - 45.580886 - ], - [ - -73.472612, - 45.581152 - ], - [ - -73.472574, - 45.581196 - ], - [ - -73.472319, - 45.581482 - ], - [ - -73.472175, - 45.581673 - ], - [ - -73.471994, - 45.581936 - ], - [ - -73.47191, - 45.582061 - ], - [ - -73.471753, - 45.582326 - ], - [ - -73.471543, - 45.582681 - ], - [ - -73.471245, - 45.583188 - ], - [ - -73.471013, - 45.58358 - ], - [ - -73.470714, - 45.584071 - ], - [ - -73.470067, - 45.585151 - ], - [ - -73.469784, - 45.585547 - ], - [ - -73.469628, - 45.585749 - ], - [ - -73.469287, - 45.586145 - ], - [ - -73.469101, - 45.586343 - ], - [ - -73.468904, - 45.586536 - ], - [ - -73.468695, - 45.586725 - ], - [ - -73.466029, - 45.588965 - ], - [ - -73.465851, - 45.589127 - ], - [ - -73.465429, - 45.589482 - ], - [ - -73.463709, - 45.590917 - ], - [ - -73.461267, - 45.592977 - ], - [ - -73.460579, - 45.593525 - ], - [ - -73.460036, - 45.593907 - ], - [ - -73.459551, - 45.594222 - ], - [ - -73.459088, - 45.594506 - ], - [ - -73.458501, - 45.594856 - ], - [ - -73.45527, - 45.596781 - ], - [ - -73.453729, - 45.597707 - ], - [ - -73.452183, - 45.598512 - ], - [ - -73.45172, - 45.598745 - ], - [ - -73.451404, - 45.598885 - ], - [ - -73.451234, - 45.598934 - ], - [ - -73.4511, - 45.598966 - ], - [ - -73.451048, - 45.598979 - ], - [ - -73.450747, - 45.59901 - ], - [ - -73.450606, - 45.59901 - ], - [ - -73.450404, - 45.598988 - ], - [ - -73.449896, - 45.598898 - ], - [ - -73.449552, - 45.598852 - ], - [ - -73.44936, - 45.598848 - ], - [ - -73.449191, - 45.598861 - ], - [ - -73.449046, - 45.598888 - ], - [ - -73.448769, - 45.598987 - ], - [ - -73.448631, - 45.599054 - ], - [ - -73.448365, - 45.599212 - ], - [ - -73.447787, - 45.599567 - ], - [ - -73.447737, - 45.599598 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.448109, - 45.599969 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449825, - 45.601331 - ], - [ - -73.449842, - 45.601358 - ], - [ - -73.449882, - 45.601394 - ], - [ - -73.449937, - 45.601432 - ], - [ - -73.449974, - 45.601468 - ], - [ - -73.450006, - 45.601497 - ], - [ - -73.450033, - 45.601528 - ], - [ - -73.450045, - 45.601571 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.45031, - 45.600786 - ] - ] - }, - "id": 174, - "properties": { - "id": "ce5950df-56d3-438b-8198-9a130d42743d", - "data": { - "gtfs": { - "shape_id": "82_1_R" - }, - "segments": [ - { - "distanceMeters": 10801, - "travelTimeSeconds": 577 - }, - { - "distanceMeters": 414, - "travelTimeSeconds": 23 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11215, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10218.50144861644, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 18.69, - "travelTimeWithoutDwellTimesSeconds": 600, - "operatingTimeWithLayoverTimeSeconds": 780, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 600, - "operatingSpeedWithLayoverMetersPerSecond": 14.38, - "averageSpeedWithoutDwellTimesMetersPerSecond": 18.69 - }, - "mode": "bus", - "name": "boul. Marie-Victorin", - "color": "#A32638", - "nodes": [ - "4c755ece-2475-4915-941e-37859f0f391f", - "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", - "bbe875bc-cb85-4a61-923d-53ee4746a213" - ], - "stops": [], - "line_id": "f98fc62f-d869-4694-92ce-358619754322", - "segments": [ - 0, - 134 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 174, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.45031, - 45.600786 - ], - [ - -73.45028, - 45.600747 - ], - [ - -73.45017, - 45.600666 - ], - [ - -73.450081, - 45.60062 - ], - [ - -73.449968, - 45.600603 - ], - [ - -73.449925, - 45.600607 - ], - [ - -73.449868, - 45.600621 - ], - [ - -73.449802, - 45.600661 - ], - [ - -73.449715, - 45.600713 - ], - [ - -73.449674, - 45.600743 - ], - [ - -73.449661, - 45.600772 - ], - [ - -73.449666, - 45.600812 - ], - [ - -73.449924, - 45.601045 - ], - [ - -73.449978, - 45.601072 - ], - [ - -73.450055, - 45.601083 - ], - [ - -73.45017, - 45.60109 - ], - [ - -73.450263, - 45.601099 - ], - [ - -73.450328, - 45.601118 - ], - [ - -73.450379, - 45.601155 - ], - [ - -73.450393, - 45.601201 - ], - [ - -73.450376, - 45.60125 - ], - [ - -73.450362, - 45.601293 - ], - [ - -73.450349, - 45.601366 - ], - [ - -73.450328, - 45.601396 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450295, - 45.60142 - ], - [ - -73.450274, - 45.60143 - ], - [ - -73.450229, - 45.60144 - ], - [ - -73.450195, - 45.601446 - ], - [ - -73.450161, - 45.601455 - ], - [ - -73.450131, - 45.601466 - ], - [ - -73.450095, - 45.601482 - ], - [ - -73.450073, - 45.601501 - ], - [ - -73.450052, - 45.601522 - ], - [ - -73.450048, - 45.601541 - ], - [ - -73.450048, - 45.601565 - ], - [ - -73.450051, - 45.601586 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450452, - 45.601873 - ], - [ - -73.45054, - 45.60193 - ], - [ - -73.450604, - 45.601966 - ], - [ - -73.450658, - 45.602007 - ], - [ - -73.450717, - 45.602019 - ], - [ - -73.450804, - 45.602087 - ], - [ - -73.450997, - 45.602236 - ], - [ - -73.451134, - 45.602344 - ], - [ - -73.45153, - 45.602655 - ], - [ - -73.45156, - 45.602679 - ], - [ - -73.452634, - 45.603524 - ], - [ - -73.452751, - 45.603609 - ], - [ - -73.453102, - 45.603881 - ], - [ - -73.453124, - 45.603897 - ], - [ - -73.453269, - 45.60401 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453904, - 45.604474 - ], - [ - -73.454133, - 45.604694 - ], - [ - -73.454539, - 45.605032 - ], - [ - -73.454923, - 45.605319 - ], - [ - -73.455171, - 45.605504 - ], - [ - -73.455782, - 45.605973 - ], - [ - -73.456001, - 45.606135 - ], - [ - -73.456106, - 45.606225 - ], - [ - -73.45638, - 45.606432 - ], - [ - -73.456455, - 45.606468 - ], - [ - -73.456464, - 45.606472 - ], - [ - -73.456606, - 45.606499 - ], - [ - -73.456615, - 45.606661 - ], - [ - -73.456615, - 45.606796 - ], - [ - -73.456614, - 45.606898 - ], - [ - -73.45661, - 45.607368 - ], - [ - -73.456599, - 45.607836 - ], - [ - -73.456595, - 45.608187 - ], - [ - -73.456594, - 45.608335 - ], - [ - -73.456582, - 45.60905 - ], - [ - -73.456558, - 45.609802 - ], - [ - -73.456542, - 45.61002 - ], - [ - -73.456534, - 45.610121 - ], - [ - -73.456537, - 45.610463 - ], - [ - -73.456508, - 45.610998 - ], - [ - -73.4565, - 45.611138 - ], - [ - -73.456491, - 45.611268 - ], - [ - -73.456473, - 45.611516 - ], - [ - -73.456454, - 45.611727 - ], - [ - -73.456449, - 45.611777 - ], - [ - -73.456429, - 45.612204 - ], - [ - -73.456403, - 45.612587 - ], - [ - -73.456367, - 45.613122 - ], - [ - -73.456346, - 45.613356 - ], - [ - -73.456319, - 45.613657 - ], - [ - -73.456315, - 45.613702 - ], - [ - -73.456295, - 45.613828 - ], - [ - -73.456125, - 45.615281 - ], - [ - -73.45606, - 45.615718 - ], - [ - -73.456015, - 45.616024 - ], - [ - -73.455984, - 45.616307 - ], - [ - -73.45596, - 45.616501 - ], - [ - -73.455915, - 45.616856 - ], - [ - -73.455898, - 45.616998 - ], - [ - -73.455888, - 45.617081 - ], - [ - -73.455879, - 45.617157 - ], - [ - -73.45581, - 45.617621 - ], - [ - -73.45576, - 45.617982 - ], - [ - -73.455729, - 45.618206 - ], - [ - -73.455676, - 45.618606 - ], - [ - -73.45562, - 45.619025 - ], - [ - -73.455571, - 45.619434 - ], - [ - -73.455486, - 45.620131 - ], - [ - -73.455479, - 45.620194 - ], - [ - -73.455459, - 45.620347 - ], - [ - -73.455364, - 45.621566 - ], - [ - -73.455351, - 45.621791 - ], - [ - -73.455345, - 45.621886 - ], - [ - -73.455228, - 45.623663 - ], - [ - -73.455172, - 45.624125 - ], - [ - -73.455153, - 45.624288 - ], - [ - -73.454435, - 45.626407 - ], - [ - -73.454312, - 45.626743 - ], - [ - -73.454243, - 45.626929 - ], - [ - -73.454024, - 45.62755 - ], - [ - -73.453874, - 45.627991 - ], - [ - -73.453834, - 45.628108 - ], - [ - -73.453601, - 45.628791 - ], - [ - -73.453393, - 45.629394 - ], - [ - -73.453358, - 45.629493 - ], - [ - -73.453315, - 45.629624 - ], - [ - -73.453257, - 45.629785 - ], - [ - -73.453003, - 45.630526 - ], - [ - -73.452942, - 45.630703 - ], - [ - -73.452778, - 45.631153 - ], - [ - -73.452686, - 45.631346 - ], - [ - -73.452502, - 45.631778 - ], - [ - -73.452319, - 45.632093 - ], - [ - -73.452094, - 45.632426 - ], - [ - -73.451781, - 45.632835 - ], - [ - -73.451773, - 45.632844 - ], - [ - -73.451693, - 45.632925 - ], - [ - -73.451614, - 45.633011 - ], - [ - -73.451195, - 45.633474 - ], - [ - -73.450679, - 45.634027 - ], - [ - -73.450136, - 45.634603 - ], - [ - -73.449528, - 45.635242 - ], - [ - -73.449434, - 45.63534 - ], - [ - -73.449285, - 45.635498 - ], - [ - -73.449067, - 45.635736 - ], - [ - -73.448723, - 45.636136 - ], - [ - -73.448535, - 45.636361 - ], - [ - -73.448252, - 45.636716 - ], - [ - -73.448132, - 45.636874 - ], - [ - -73.447863, - 45.637226 - ], - [ - -73.447778, - 45.637337 - ], - [ - -73.447634, - 45.637301 - ], - [ - -73.447384, - 45.637215 - ], - [ - -73.447064, - 45.637088 - ], - [ - -73.446874, - 45.637013 - ], - [ - -73.446777, - 45.636959 - ], - [ - -73.446639, - 45.63686 - ], - [ - -73.446407, - 45.636689 - ], - [ - -73.44625, - 45.636558 - ], - [ - -73.446134, - 45.636441 - ], - [ - -73.445951, - 45.636247 - ], - [ - -73.445769, - 45.636018 - ], - [ - -73.445712, - 45.635937 - ], - [ - -73.445634, - 45.635856 - ], - [ - -73.445562, - 45.635784 - ], - [ - -73.445466, - 45.635698 - ], - [ - -73.445268, - 45.635536 - ], - [ - -73.445231, - 45.635509 - ], - [ - -73.445104, - 45.635415 - ], - [ - -73.444715, - 45.635109 - ], - [ - -73.44467, - 45.635073 - ], - [ - -73.444422, - 45.63487 - ], - [ - -73.444148, - 45.634658 - ], - [ - -73.444049, - 45.634573 - ], - [ - -73.443845, - 45.634429 - ], - [ - -73.443396, - 45.634064 - ], - [ - -73.443242, - 45.633938 - ], - [ - -73.442909, - 45.633686 - ], - [ - -73.442563, - 45.633434 - ], - [ - -73.442416, - 45.633371 - ], - [ - -73.44208, - 45.633254 - ], - [ - -73.441599, - 45.633114 - ], - [ - -73.440828, - 45.632903 - ], - [ - -73.440824, - 45.632902 - ], - [ - -73.440392, - 45.632771 - ], - [ - -73.440856, - 45.631968 - ], - [ - -73.441271, - 45.631251 - ], - [ - -73.441456, - 45.630932 - ], - [ - -73.441684, - 45.63054 - ], - [ - -73.441884, - 45.630196 - ], - [ - -73.442088, - 45.629846 - ], - [ - -73.443114, - 45.62808 - ], - [ - -73.443261, - 45.627822 - ], - [ - -73.443605, - 45.627221 - ], - [ - -73.444022, - 45.626488 - ], - [ - -73.444062, - 45.626419 - ], - [ - -73.444573, - 45.625552 - ], - [ - -73.445365, - 45.62417 - ], - [ - -73.445387, - 45.624131 - ], - [ - -73.445586, - 45.623794 - ], - [ - -73.445824, - 45.623425 - ], - [ - -73.446146, - 45.622876 - ], - [ - -73.446834, - 45.62168 - ], - [ - -73.446846, - 45.62166 - ], - [ - -73.447011, - 45.621372 - ], - [ - -73.447396, - 45.620704 - ], - [ - -73.448364, - 45.619075 - ], - [ - -73.448491, - 45.618837 - ], - [ - -73.448637, - 45.61859 - ], - [ - -73.448734, - 45.618422 - ], - [ - -73.44919, - 45.617636 - ], - [ - -73.449432, - 45.617223 - ], - [ - -73.449512, - 45.617087 - ], - [ - -73.449827, - 45.616539 - ], - [ - -73.450142, - 45.615999 - ], - [ - -73.450551, - 45.61523 - ], - [ - -73.450804, - 45.614732 - ], - [ - -73.450957, - 45.614433 - ], - [ - -73.451219, - 45.613822 - ], - [ - -73.451496, - 45.613129 - ], - [ - -73.451588, - 45.612886 - ], - [ - -73.451747, - 45.612435 - ], - [ - -73.451764, - 45.612387 - ], - [ - -73.451963, - 45.611811 - ], - [ - -73.452038, - 45.611557 - ], - [ - -73.452151, - 45.611172 - ], - [ - -73.452319, - 45.610623 - ], - [ - -73.45243, - 45.610184 - ], - [ - -73.452502, - 45.609899 - ], - [ - -73.452742, - 45.608653 - ], - [ - -73.452838, - 45.608171 - ], - [ - -73.452853, - 45.608101 - ], - [ - -73.452894, - 45.607902 - ], - [ - -73.452956, - 45.607582 - ], - [ - -73.45303, - 45.607204 - ], - [ - -73.45313, - 45.606689 - ], - [ - -73.45351, - 45.604734 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453437, - 45.604141 - ], - [ - -73.453269, - 45.60401 - ], - [ - -73.453124, - 45.603897 - ], - [ - -73.45283, - 45.60367 - ], - [ - -73.452751, - 45.603609 - ], - [ - -73.452634, - 45.603524 - ], - [ - -73.45156, - 45.602679 - ], - [ - -73.45153, - 45.602655 - ], - [ - -73.451134, - 45.602344 - ], - [ - -73.450997, - 45.602236 - ], - [ - -73.450804, - 45.602087 - ], - [ - -73.450717, - 45.602019 - ], - [ - -73.450711, - 45.601962 - ], - [ - -73.450652, - 45.601878 - ], - [ - -73.450633, - 45.601851 - ], - [ - -73.45062, - 45.601823 - ], - [ - -73.450613, - 45.6018 - ], - [ - -73.450612, - 45.601775 - ], - [ - -73.450612, - 45.601745 - ], - [ - -73.450617, - 45.601719 - ], - [ - -73.450626, - 45.601694 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450392, - 45.600923 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.450328, - 45.60081 - ], - [ - -73.45028, - 45.600747 - ], - [ - -73.45017, - 45.600666 - ], - [ - -73.450081, - 45.60062 - ], - [ - -73.449968, - 45.600603 - ], - [ - -73.449925, - 45.600607 - ], - [ - -73.449868, - 45.600621 - ], - [ - -73.449802, - 45.600661 - ], - [ - -73.449715, - 45.600713 - ], - [ - -73.449674, - 45.600743 - ], - [ - -73.449661, - 45.600772 - ], - [ - -73.449666, - 45.600812 - ], - [ - -73.449924, - 45.601045 - ], - [ - -73.449978, - 45.601072 - ], - [ - -73.450055, - 45.601083 - ], - [ - -73.45017, - 45.60109 - ], - [ - -73.450263, - 45.601099 - ], - [ - -73.450328, - 45.601118 - ], - [ - -73.450379, - 45.601155 - ], - [ - -73.450393, - 45.601201 - ], - [ - -73.450376, - 45.60125 - ], - [ - -73.450362, - 45.601293 - ], - [ - -73.450349, - 45.601366 - ], - [ - -73.450328, - 45.601396 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450295, - 45.60142 - ], - [ - -73.450274, - 45.60143 - ], - [ - -73.450229, - 45.60144 - ], - [ - -73.450195, - 45.601446 - ], - [ - -73.450161, - 45.601455 - ], - [ - -73.450131, - 45.601466 - ], - [ - -73.450095, - 45.601482 - ], - [ - -73.450073, - 45.601501 - ], - [ - -73.450052, - 45.601522 - ], - [ - -73.450048, - 45.601541 - ], - [ - -73.450048, - 45.601565 - ], - [ - -73.450051, - 45.601586 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450683, - 45.601629 - ], - [ - -73.45076, - 45.601581 - ], - [ - -73.450865, - 45.60153 - ], - [ - -73.451136, - 45.601427 - ], - [ - -73.451322, - 45.601341 - ], - [ - -73.45143, - 45.601269 - ], - [ - -73.451545, - 45.601187 - ], - [ - -73.451753, - 45.601 - ], - [ - -73.451831, - 45.600914 - ], - [ - -73.451899, - 45.600828 - ], - [ - -73.451961, - 45.600734 - ], - [ - -73.452054, - 45.600554 - ], - [ - -73.452082, - 45.600442 - ], - [ - -73.452078, - 45.600293 - ], - [ - -73.452054, - 45.600172 - ], - [ - -73.45194, - 45.599798 - ], - [ - -73.451915, - 45.599672 - ], - [ - -73.451904, - 45.599524 - ], - [ - -73.451926, - 45.59938 - ], - [ - -73.451964, - 45.599267 - ], - [ - -73.452063, - 45.599123 - ], - [ - -73.452082, - 45.599103 - ], - [ - -73.452183, - 45.598993 - ], - [ - -73.452318, - 45.598881 - ], - [ - -73.452477, - 45.598768 - ], - [ - -73.452963, - 45.598458 - ], - [ - -73.45458, - 45.597401 - ], - [ - -73.459437, - 45.594497 - ], - [ - -73.459888, - 45.594213 - ], - [ - -73.46035, - 45.593903 - ], - [ - -73.460702, - 45.593647 - ], - [ - -73.461218, - 45.593251 - ], - [ - -73.46178, - 45.592783 - ], - [ - -73.465585, - 45.589586 - ], - [ - -73.468548, - 45.587089 - ], - [ - -73.468925, - 45.586766 - ], - [ - -73.469282, - 45.586424 - ], - [ - -73.469476, - 45.586217 - ], - [ - -73.46977, - 45.585875 - ], - [ - -73.470065, - 45.585497 - ], - [ - -73.470208, - 45.585295 - ], - [ - -73.470515, - 45.584795 - ], - [ - -73.470777, - 45.584346 - ], - [ - -73.470818, - 45.584266 - ], - [ - -73.471151, - 45.583659 - ], - [ - -73.471441, - 45.583163 - ], - [ - -73.471782, - 45.582588 - ], - [ - -73.471999, - 45.582223 - ], - [ - -73.472179, - 45.58194 - ], - [ - -73.472331, - 45.581716 - ], - [ - -73.472649, - 45.581329 - ], - [ - -73.47273, - 45.58124 - ], - [ - -73.472825, - 45.58114 - ], - [ - -73.473026, - 45.580958 - ], - [ - -73.473162, - 45.580835 - ], - [ - -73.473456, - 45.580601 - ], - [ - -73.473548, - 45.580529 - ], - [ - -73.474056, - 45.580187 - ], - [ - -73.474914, - 45.579634 - ], - [ - -73.475349, - 45.579354 - ], - [ - -73.475514, - 45.57924 - ], - [ - -73.475748, - 45.579059 - ], - [ - -73.476005, - 45.578855 - ], - [ - -73.476092, - 45.578785 - ], - [ - -73.476311, - 45.578613 - ], - [ - -73.476531, - 45.578426 - ], - [ - -73.477316, - 45.577756 - ], - [ - -73.478746, - 45.576546 - ], - [ - -73.485291, - 45.570941 - ], - [ - -73.485924, - 45.570374 - ], - [ - -73.486543, - 45.569794 - ], - [ - -73.487144, - 45.5692 - ], - [ - -73.487725, - 45.568597 - ], - [ - -73.488283, - 45.567985 - ], - [ - -73.489005, - 45.567148 - ], - [ - -73.489524, - 45.56651 - ], - [ - -73.490025, - 45.565857 - ], - [ - -73.490348, - 45.565416 - ], - [ - -73.490811, - 45.564746 - ], - [ - -73.492757, - 45.561799 - ], - [ - -73.493231, - 45.561129 - ], - [ - -73.493558, - 45.560688 - ], - [ - -73.493892, - 45.560256 - ], - [ - -73.494237, - 45.559829 - ], - [ - -73.499922, - 45.552981 - ], - [ - -73.501151, - 45.551492 - ], - [ - -73.501844, - 45.550646 - ], - [ - -73.502872, - 45.549445 - ], - [ - -73.503558, - 45.548684 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521985, - 45.524134 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 175, - "properties": { - "id": "c856b728-4681-462d-8b3d-562478ee3882", - "data": { - "gtfs": { - "shape_id": "82_1_A" - }, - "segments": [ - { - "distanceMeters": 558, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 389, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 520, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 390, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 12144, - "travelTimeSeconds": 840 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 204, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 21278, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10218.50144861644, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 10.43, - "travelTimeWithoutDwellTimesSeconds": 2040, - "operatingTimeWithLayoverTimeSeconds": 2244, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2040, - "operatingSpeedWithLayoverMetersPerSecond": 9.48, - "averageSpeedWithoutDwellTimesMetersPerSecond": 10.43 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "bbe875bc-cb85-4a61-923d-53ee4746a213", - "ca205394-9833-4e14-b4fa-653c28b9a37d", - "dd170d68-d567-4a2d-8a93-47dec3a52cd1", - "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", - "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", - "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", - "204b558a-c106-4589-888d-4bd6528787b5", - "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", - "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", - "949c3098-32ca-4f3b-81ba-cbe506f68923", - "518135ae-62e9-44c2-bac7-e8c50c56eec9", - "148d4b0f-418e-4993-b335-f1dcd1c4df41", - "568437d9-2de5-4e5e-b111-1a7811ac5c99", - "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", - "6928ef4b-2825-4234-84d9-1c82edb211b0", - "777d67e8-62c3-46b4-a71f-e76a88b45f45", - "d04543e8-f38e-4937-b92b-1bc9ff97fd25", - "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", - "389622d0-ee1f-428b-9366-e69f134ff23e", - "02fef102-0f62-42d0-b4ed-790bc76ef1ad", - "f659a652-a61c-4199-abbc-a42f3ceef5cb", - "90b41412-0c12-4505-b7c9-b915901b1dd2", - "78a9a588-c1f0-470f-bbcc-52b6da866dad", - "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", - "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", - "253353ba-aba2-4e63-bf86-819bb7c9cecd", - "706f0077-9543-4662-8684-a321216a8a90", - "589f0f16-2c87-45fc-856c-d82dc5449f14", - "0778ac37-7369-4d81-abbc-9aa1d13b1c38", - "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", - "039c87a4-2647-4079-9a79-c7d3278ef6b2", - "e2d71c2d-a170-4ce7-a381-519755a00e36", - "a2b2c8d3-da2c-46a1-8009-597d5c6a0c19", - "ca205394-9833-4e14-b4fa-653c28b9a37d", - "bbe875bc-cb85-4a61-923d-53ee4746a213", - "4c755ece-2475-4915-941e-37859f0f391f" - ], - "stops": [], - "line_id": "f98fc62f-d869-4694-92ce-358619754322", - "segments": [ - 0, - 60, - 67, - 73, - 81, - 85, - 92, - 98, - 107, - 111, - 116, - 120, - 123, - 126, - 129, - 136, - 143, - 150, - 158, - 176, - 184, - 191, - 198, - 201, - 204, - 206, - 212, - 218, - 220, - 225, - 230, - 236, - 240, - 250, - 286 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 175, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.52252, - 45.524045 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523674, - 45.523537 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.503549, - 45.548419 - ], - [ - -73.502986, - 45.54904 - ], - [ - -73.502097, - 45.550079 - ], - [ - -73.501025, - 45.551361 - ], - [ - -73.500319, - 45.55223 - ], - [ - -73.497146, - 45.556054 - ], - [ - -73.496787, - 45.55649 - ], - [ - -73.495905, - 45.557543 - ], - [ - -73.495369, - 45.558173 - ], - [ - -73.494314, - 45.559446 - ], - [ - -73.493461, - 45.560499 - ], - [ - -73.492975, - 45.561151 - ], - [ - -73.492659, - 45.561597 - ], - [ - -73.492068, - 45.562474 - ], - [ - -73.49148, - 45.563383 - ], - [ - -73.490434, - 45.564962 - ], - [ - -73.489967, - 45.565619 - ], - [ - -73.489477, - 45.566267 - ], - [ - -73.488962, - 45.566906 - ], - [ - -73.48825, - 45.567747 - ], - [ - -73.487877, - 45.568161 - ], - [ - -73.487301, - 45.568777 - ], - [ - -73.486712, - 45.56938 - ], - [ - -73.486308, - 45.569771 - ], - [ - -73.485474, - 45.570545 - ], - [ - -73.48461, - 45.571301 - ], - [ - -73.483654, - 45.572115 - ], - [ - -73.478606, - 45.576433 - ], - [ - -73.478028, - 45.576933 - ], - [ - -73.477248, - 45.577607 - ], - [ - -73.476645, - 45.578128 - ], - [ - -73.475915, - 45.578754 - ], - [ - -73.475553, - 45.579033 - ], - [ - -73.474887, - 45.579478 - ], - [ - -73.474437, - 45.579762 - ], - [ - -73.474095, - 45.580005 - ], - [ - -73.473853, - 45.580158 - ], - [ - -73.473398, - 45.580472 - ], - [ - -73.473077, - 45.58072 - ], - [ - -73.472886, - 45.580886 - ], - [ - -73.472612, - 45.581152 - ], - [ - -73.472574, - 45.581196 - ], - [ - -73.472319, - 45.581482 - ], - [ - -73.472175, - 45.581673 - ], - [ - -73.471994, - 45.581936 - ], - [ - -73.47191, - 45.582061 - ], - [ - -73.471753, - 45.582326 - ], - [ - -73.471543, - 45.582681 - ], - [ - -73.471245, - 45.583188 - ], - [ - -73.471013, - 45.58358 - ], - [ - -73.470714, - 45.584071 - ], - [ - -73.470067, - 45.585151 - ], - [ - -73.469784, - 45.585547 - ], - [ - -73.469628, - 45.585749 - ], - [ - -73.469287, - 45.586145 - ], - [ - -73.469101, - 45.586343 - ], - [ - -73.468904, - 45.586536 - ], - [ - -73.468695, - 45.586725 - ], - [ - -73.466029, - 45.588965 - ], - [ - -73.465851, - 45.589127 - ], - [ - -73.465429, - 45.589482 - ], - [ - -73.463709, - 45.590917 - ], - [ - -73.461267, - 45.592977 - ], - [ - -73.460579, - 45.593525 - ], - [ - -73.460036, - 45.593907 - ], - [ - -73.459551, - 45.594222 - ], - [ - -73.459088, - 45.594506 - ], - [ - -73.458501, - 45.594856 - ], - [ - -73.45527, - 45.596781 - ], - [ - -73.453729, - 45.597707 - ], - [ - -73.452183, - 45.598512 - ], - [ - -73.45172, - 45.598745 - ], - [ - -73.451404, - 45.598885 - ], - [ - -73.451234, - 45.598934 - ], - [ - -73.4511, - 45.598966 - ], - [ - -73.451048, - 45.598979 - ], - [ - -73.450747, - 45.59901 - ], - [ - -73.450606, - 45.59901 - ], - [ - -73.450404, - 45.598988 - ], - [ - -73.449896, - 45.598898 - ], - [ - -73.449552, - 45.598852 - ], - [ - -73.44936, - 45.598848 - ], - [ - -73.449191, - 45.598861 - ], - [ - -73.449046, - 45.598888 - ], - [ - -73.448769, - 45.598987 - ], - [ - -73.448631, - 45.599054 - ], - [ - -73.448365, - 45.599212 - ], - [ - -73.447787, - 45.599567 - ], - [ - -73.447737, - 45.599598 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.448129, - 45.599985 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449825, - 45.601331 - ], - [ - -73.449842, - 45.601358 - ], - [ - -73.449882, - 45.601394 - ], - [ - -73.449937, - 45.601432 - ], - [ - -73.449974, - 45.601468 - ], - [ - -73.450006, - 45.601497 - ], - [ - -73.450033, - 45.601528 - ], - [ - -73.450045, - 45.601571 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.450295, - 45.600766 - ], - [ - -73.45028, - 45.600747 - ], - [ - -73.45017, - 45.600666 - ], - [ - -73.450133, - 45.600647 - ], - [ - -73.450081, - 45.60062 - ], - [ - -73.449968, - 45.600603 - ], - [ - -73.449925, - 45.600607 - ], - [ - -73.449868, - 45.600621 - ], - [ - -73.449802, - 45.600661 - ], - [ - -73.449715, - 45.600713 - ], - [ - -73.449674, - 45.600743 - ], - [ - -73.449661, - 45.600772 - ], - [ - -73.449666, - 45.600812 - ], - [ - -73.449924, - 45.601045 - ], - [ - -73.449978, - 45.601072 - ], - [ - -73.450055, - 45.601083 - ], - [ - -73.45017, - 45.60109 - ], - [ - -73.450263, - 45.601099 - ], - [ - -73.450328, - 45.601118 - ], - [ - -73.450379, - 45.601155 - ], - [ - -73.450393, - 45.601201 - ], - [ - -73.450376, - 45.60125 - ], - [ - -73.450362, - 45.601293 - ], - [ - -73.450349, - 45.601366 - ], - [ - -73.450328, - 45.601396 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450295, - 45.60142 - ], - [ - -73.450274, - 45.60143 - ], - [ - -73.450229, - 45.60144 - ], - [ - -73.450195, - 45.601446 - ], - [ - -73.450161, - 45.601455 - ], - [ - -73.450131, - 45.601466 - ], - [ - -73.450095, - 45.601482 - ], - [ - -73.450073, - 45.601501 - ], - [ - -73.450052, - 45.601522 - ], - [ - -73.450048, - 45.601541 - ], - [ - -73.450048, - 45.601565 - ], - [ - -73.450051, - 45.601586 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450452, - 45.601873 - ], - [ - -73.45054, - 45.60193 - ], - [ - -73.450604, - 45.601966 - ], - [ - -73.450658, - 45.602007 - ], - [ - -73.450717, - 45.602019 - ], - [ - -73.450804, - 45.602087 - ], - [ - -73.450997, - 45.602236 - ], - [ - -73.451134, - 45.602344 - ], - [ - -73.45153, - 45.602655 - ], - [ - -73.45156, - 45.602679 - ], - [ - -73.452634, - 45.603524 - ], - [ - -73.452751, - 45.603609 - ], - [ - -73.453124, - 45.603897 - ], - [ - -73.453132, - 45.603904 - ], - [ - -73.453269, - 45.60401 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453904, - 45.604474 - ], - [ - -73.454133, - 45.604694 - ], - [ - -73.454539, - 45.605032 - ], - [ - -73.454954, - 45.605342 - ], - [ - -73.455171, - 45.605504 - ], - [ - -73.455782, - 45.605973 - ], - [ - -73.456001, - 45.606135 - ], - [ - -73.456106, - 45.606225 - ], - [ - -73.45638, - 45.606432 - ], - [ - -73.456464, - 45.606472 - ], - [ - -73.456485, - 45.606476 - ], - [ - -73.456606, - 45.606499 - ], - [ - -73.456615, - 45.606661 - ], - [ - -73.456615, - 45.606796 - ], - [ - -73.456614, - 45.60687 - ], - [ - -73.45661, - 45.607368 - ], - [ - -73.456599, - 45.607836 - ], - [ - -73.456595, - 45.608219 - ], - [ - -73.456594, - 45.608335 - ], - [ - -73.456582, - 45.60905 - ], - [ - -73.456558, - 45.609802 - ], - [ - -73.45654, - 45.610052 - ], - [ - -73.456534, - 45.610121 - ], - [ - -73.456537, - 45.610463 - ], - [ - -73.456508, - 45.610998 - ], - [ - -73.4565, - 45.611138 - ], - [ - -73.456491, - 45.611268 - ], - [ - -73.456473, - 45.611516 - ], - [ - -73.456451, - 45.611759 - ], - [ - -73.456449, - 45.611777 - ], - [ - -73.456429, - 45.612204 - ], - [ - -73.456403, - 45.612587 - ], - [ - -73.456367, - 45.613122 - ], - [ - -73.456346, - 45.613356 - ], - [ - -73.456317, - 45.61368 - ], - [ - -73.456315, - 45.613702 - ], - [ - -73.456295, - 45.613828 - ], - [ - -73.456125, - 45.615281 - ], - [ - -73.45606, - 45.615718 - ], - [ - -73.456015, - 45.616024 - ], - [ - -73.455984, - 45.616307 - ], - [ - -73.45596, - 45.616501 - ], - [ - -73.455915, - 45.616856 - ], - [ - -73.455895, - 45.617021 - ], - [ - -73.455888, - 45.617081 - ], - [ - -73.455879, - 45.617157 - ], - [ - -73.45581, - 45.617621 - ], - [ - -73.455755, - 45.618014 - ], - [ - -73.455729, - 45.618206 - ], - [ - -73.455676, - 45.618606 - ], - [ - -73.45562, - 45.619025 - ], - [ - -73.455571, - 45.619434 - ], - [ - -73.455483, - 45.620163 - ], - [ - -73.455479, - 45.620194 - ], - [ - -73.455459, - 45.620347 - ], - [ - -73.455364, - 45.621566 - ], - [ - -73.455349, - 45.621824 - ], - [ - -73.455345, - 45.621886 - ], - [ - -73.455228, - 45.623663 - ], - [ - -73.455169, - 45.624157 - ], - [ - -73.455153, - 45.624288 - ], - [ - -73.454435, - 45.626407 - ], - [ - -73.4543, - 45.626775 - ], - [ - -73.454243, - 45.626929 - ], - [ - -73.454024, - 45.62755 - ], - [ - -73.453863, - 45.628023 - ], - [ - -73.453834, - 45.628108 - ], - [ - -73.453601, - 45.628791 - ], - [ - -73.453393, - 45.629394 - ], - [ - -73.453358, - 45.629493 - ], - [ - -73.453315, - 45.629624 - ], - [ - -73.453257, - 45.629785 - ], - [ - -73.452992, - 45.630558 - ], - [ - -73.452942, - 45.630703 - ], - [ - -73.452778, - 45.631153 - ], - [ - -73.452686, - 45.631346 - ], - [ - -73.452502, - 45.631778 - ], - [ - -73.452319, - 45.632093 - ], - [ - -73.452094, - 45.632426 - ], - [ - -73.451773, - 45.632844 - ], - [ - -73.451755, - 45.632863 - ], - [ - -73.451693, - 45.632925 - ], - [ - -73.451614, - 45.633011 - ], - [ - -73.451195, - 45.633474 - ], - [ - -73.450679, - 45.634027 - ], - [ - -73.450136, - 45.634603 - ], - [ - -73.449502, - 45.635269 - ], - [ - -73.449434, - 45.63534 - ], - [ - -73.449285, - 45.635498 - ], - [ - -73.449067, - 45.635736 - ], - [ - -73.448723, - 45.636136 - ], - [ - -73.448535, - 45.636361 - ], - [ - -73.448252, - 45.636716 - ], - [ - -73.448132, - 45.636874 - ], - [ - -73.447841, - 45.637255 - ], - [ - -73.447778, - 45.637337 - ], - [ - -73.447634, - 45.637301 - ], - [ - -73.447384, - 45.637215 - ], - [ - -73.447064, - 45.637088 - ], - [ - -73.446874, - 45.637013 - ], - [ - -73.446777, - 45.636959 - ], - [ - -73.446639, - 45.63686 - ], - [ - -73.446407, - 45.636689 - ], - [ - -73.44625, - 45.636558 - ], - [ - -73.446134, - 45.636441 - ], - [ - -73.445951, - 45.636247 - ], - [ - -73.445769, - 45.636018 - ], - [ - -73.445712, - 45.635937 - ], - [ - -73.445634, - 45.635856 - ], - [ - -73.445562, - 45.635784 - ], - [ - -73.445466, - 45.635698 - ], - [ - -73.445268, - 45.635536 - ], - [ - -73.445198, - 45.635484 - ], - [ - -73.445104, - 45.635415 - ], - [ - -73.444715, - 45.635109 - ], - [ - -73.44467, - 45.635073 - ], - [ - -73.444422, - 45.63487 - ], - [ - -73.444148, - 45.634658 - ], - [ - -73.444049, - 45.634573 - ], - [ - -73.443845, - 45.634429 - ], - [ - -73.443365, - 45.634038 - ], - [ - -73.443242, - 45.633938 - ], - [ - -73.442909, - 45.633686 - ], - [ - -73.442563, - 45.633434 - ], - [ - -73.442416, - 45.633371 - ], - [ - -73.44208, - 45.633254 - ], - [ - -73.441599, - 45.633114 - ], - [ - -73.440824, - 45.632902 - ], - [ - -73.440783, - 45.63289 - ], - [ - -73.440392, - 45.632771 - ], - [ - -73.440856, - 45.631968 - ], - [ - -73.441271, - 45.631251 - ], - [ - -73.441456, - 45.630932 - ], - [ - -73.441684, - 45.63054 - ], - [ - -73.441903, - 45.630165 - ], - [ - -73.442088, - 45.629846 - ], - [ - -73.443114, - 45.62808 - ], - [ - -73.44328, - 45.62779 - ], - [ - -73.443605, - 45.627221 - ], - [ - -73.444022, - 45.626488 - ], - [ - -73.444081, - 45.626388 - ], - [ - -73.444573, - 45.625552 - ], - [ - -73.445383, - 45.624138 - ], - [ - -73.445387, - 45.624131 - ], - [ - -73.445586, - 45.623794 - ], - [ - -73.445824, - 45.623425 - ], - [ - -73.446146, - 45.622876 - ], - [ - -73.446834, - 45.62168 - ], - [ - -73.446864, - 45.621628 - ], - [ - -73.447011, - 45.621372 - ], - [ - -73.447396, - 45.620704 - ], - [ - -73.448364, - 45.619075 - ], - [ - -73.448491, - 45.618837 - ], - [ - -73.448637, - 45.61859 - ], - [ - -73.448753, - 45.61839 - ], - [ - -73.44919, - 45.617636 - ], - [ - -73.449451, - 45.617191 - ], - [ - -73.449512, - 45.617087 - ], - [ - -73.449827, - 45.616539 - ], - [ - -73.450142, - 45.615999 - ], - [ - -73.450551, - 45.61523 - ], - [ - -73.450821, - 45.614699 - ], - [ - -73.450957, - 45.614433 - ], - [ - -73.451219, - 45.613822 - ], - [ - -73.451496, - 45.613129 - ], - [ - -73.451588, - 45.612886 - ], - [ - -73.451756, - 45.612409 - ], - [ - -73.451764, - 45.612387 - ], - [ - -73.451963, - 45.611811 - ], - [ - -73.452038, - 45.611557 - ], - [ - -73.452151, - 45.611172 - ], - [ - -73.452319, - 45.610623 - ], - [ - -73.452439, - 45.610149 - ], - [ - -73.452502, - 45.609899 - ], - [ - -73.452742, - 45.608653 - ], - [ - -73.452838, - 45.608171 - ], - [ - -73.45286, - 45.608066 - ], - [ - -73.452894, - 45.607902 - ], - [ - -73.452956, - 45.607582 - ], - [ - -73.45303, - 45.607204 - ], - [ - -73.45313, - 45.606689 - ], - [ - -73.45351, - 45.604734 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453269, - 45.60401 - ], - [ - -73.453124, - 45.603897 - ], - [ - -73.452804, - 45.60365 - ], - [ - -73.452751, - 45.603609 - ], - [ - -73.452634, - 45.603524 - ], - [ - -73.45156, - 45.602679 - ], - [ - -73.45153, - 45.602655 - ], - [ - -73.451134, - 45.602344 - ], - [ - -73.450997, - 45.602236 - ], - [ - -73.450804, - 45.602087 - ], - [ - -73.450717, - 45.602019 - ], - [ - -73.450711, - 45.601962 - ], - [ - -73.450652, - 45.601878 - ], - [ - -73.450633, - 45.601851 - ], - [ - -73.45062, - 45.601823 - ], - [ - -73.450613, - 45.6018 - ], - [ - -73.450612, - 45.601775 - ], - [ - -73.450612, - 45.601745 - ], - [ - -73.450617, - 45.601719 - ], - [ - -73.450626, - 45.601694 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.45031, - 45.600786 - ] - ] - }, - "id": 176, - "properties": { - "id": "08ef95ac-0f2b-4799-87b8-72a016e144be", - "data": { - "gtfs": { - "shape_id": "82_3_R" - }, - "segments": [ - { - "distanceMeters": 10803, - "travelTimeSeconds": 577 - }, - { - "distanceMeters": 414, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 559, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 389, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 519, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 390, - "travelTimeSeconds": 120 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 192, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 20352, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10218.50144861644, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 10.6, - "travelTimeWithoutDwellTimesSeconds": 1920, - "operatingTimeWithLayoverTimeSeconds": 2112, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1920, - "operatingSpeedWithLayoverMetersPerSecond": 9.64, - "averageSpeedWithoutDwellTimesMetersPerSecond": 10.6 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "4c755ece-2475-4915-941e-37859f0f391f", - "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", - "bbe875bc-cb85-4a61-923d-53ee4746a213", - "ca205394-9833-4e14-b4fa-653c28b9a37d", - "dd170d68-d567-4a2d-8a93-47dec3a52cd1", - "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", - "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", - "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", - "204b558a-c106-4589-888d-4bd6528787b5", - "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", - "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", - "949c3098-32ca-4f3b-81ba-cbe506f68923", - "518135ae-62e9-44c2-bac7-e8c50c56eec9", - "148d4b0f-418e-4993-b335-f1dcd1c4df41", - "568437d9-2de5-4e5e-b111-1a7811ac5c99", - "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", - "6928ef4b-2825-4234-84d9-1c82edb211b0", - "777d67e8-62c3-46b4-a71f-e76a88b45f45", - "d04543e8-f38e-4937-b92b-1bc9ff97fd25", - "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", - "389622d0-ee1f-428b-9366-e69f134ff23e", - "02fef102-0f62-42d0-b4ed-790bc76ef1ad", - "f659a652-a61c-4199-abbc-a42f3ceef5cb", - "90b41412-0c12-4505-b7c9-b915901b1dd2", - "78a9a588-c1f0-470f-bbcc-52b6da866dad", - "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", - "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", - "253353ba-aba2-4e63-bf86-819bb7c9cecd", - "706f0077-9543-4662-8684-a321216a8a90", - "589f0f16-2c87-45fc-856c-d82dc5449f14", - "0778ac37-7369-4d81-abbc-9aa1d13b1c38", - "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", - "039c87a4-2647-4079-9a79-c7d3278ef6b2", - "e2d71c2d-a170-4ce7-a381-519755a00e36", - "a2b2c8d3-da2c-46a1-8009-597d5c6a0c19", - "ca205394-9833-4e14-b4fa-653c28b9a37d", - "bbe875bc-cb85-4a61-923d-53ee4746a213" - ], - "stops": [], - "line_id": "f98fc62f-d869-4694-92ce-358619754322", - "segments": [ - 0, - 134, - 182, - 244, - 250, - 257, - 264, - 268, - 275, - 281, - 290, - 294, - 299, - 303, - 306, - 309, - 312, - 319, - 327, - 333, - 341, - 359, - 367, - 375, - 381, - 384, - 387, - 389, - 395, - 401, - 403, - 408, - 413, - 419, - 423, - 432 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 176, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.45031, - 45.600786 - ], - [ - -73.45028, - 45.600747 - ], - [ - -73.45017, - 45.600666 - ], - [ - -73.450081, - 45.60062 - ], - [ - -73.449968, - 45.600603 - ], - [ - -73.449925, - 45.600607 - ], - [ - -73.449868, - 45.600621 - ], - [ - -73.449802, - 45.600661 - ], - [ - -73.449715, - 45.600713 - ], - [ - -73.449674, - 45.600743 - ], - [ - -73.449661, - 45.600772 - ], - [ - -73.449666, - 45.600812 - ], - [ - -73.449924, - 45.601045 - ], - [ - -73.449978, - 45.601072 - ], - [ - -73.450055, - 45.601083 - ], - [ - -73.45017, - 45.60109 - ], - [ - -73.450263, - 45.601099 - ], - [ - -73.450328, - 45.601118 - ], - [ - -73.450379, - 45.601155 - ], - [ - -73.450393, - 45.601201 - ], - [ - -73.450376, - 45.60125 - ], - [ - -73.450362, - 45.601293 - ], - [ - -73.450349, - 45.601366 - ], - [ - -73.450328, - 45.601396 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450295, - 45.60142 - ], - [ - -73.450274, - 45.60143 - ], - [ - -73.450229, - 45.60144 - ], - [ - -73.450195, - 45.601446 - ], - [ - -73.450161, - 45.601455 - ], - [ - -73.450131, - 45.601466 - ], - [ - -73.450095, - 45.601482 - ], - [ - -73.450073, - 45.601501 - ], - [ - -73.450052, - 45.601522 - ], - [ - -73.450048, - 45.601541 - ], - [ - -73.450048, - 45.601565 - ], - [ - -73.450051, - 45.601586 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450683, - 45.601629 - ], - [ - -73.45076, - 45.601581 - ], - [ - -73.450865, - 45.60153 - ], - [ - -73.451136, - 45.601427 - ], - [ - -73.451322, - 45.601341 - ], - [ - -73.45143, - 45.601269 - ], - [ - -73.451545, - 45.601187 - ], - [ - -73.451753, - 45.601 - ], - [ - -73.451831, - 45.600914 - ], - [ - -73.451899, - 45.600828 - ], - [ - -73.451961, - 45.600734 - ], - [ - -73.452054, - 45.600554 - ], - [ - -73.452082, - 45.600442 - ], - [ - -73.452078, - 45.600293 - ], - [ - -73.452054, - 45.600172 - ], - [ - -73.45194, - 45.599798 - ], - [ - -73.451915, - 45.599672 - ], - [ - -73.451904, - 45.599524 - ], - [ - -73.451926, - 45.59938 - ], - [ - -73.451964, - 45.599267 - ], - [ - -73.452063, - 45.599123 - ], - [ - -73.452082, - 45.599103 - ], - [ - -73.452183, - 45.598993 - ], - [ - -73.452318, - 45.598881 - ], - [ - -73.452477, - 45.598768 - ], - [ - -73.452963, - 45.598458 - ], - [ - -73.45458, - 45.597401 - ], - [ - -73.459437, - 45.594497 - ], - [ - -73.459888, - 45.594213 - ], - [ - -73.46035, - 45.593903 - ], - [ - -73.460702, - 45.593647 - ], - [ - -73.461218, - 45.593251 - ], - [ - -73.46178, - 45.592783 - ], - [ - -73.465585, - 45.589586 - ], - [ - -73.468548, - 45.587089 - ], - [ - -73.468925, - 45.586766 - ], - [ - -73.469282, - 45.586424 - ], - [ - -73.469476, - 45.586217 - ], - [ - -73.46977, - 45.585875 - ], - [ - -73.470065, - 45.585497 - ], - [ - -73.470208, - 45.585295 - ], - [ - -73.470515, - 45.584795 - ], - [ - -73.470777, - 45.584346 - ], - [ - -73.470818, - 45.584266 - ], - [ - -73.471151, - 45.583659 - ], - [ - -73.471441, - 45.583163 - ], - [ - -73.471782, - 45.582588 - ], - [ - -73.471999, - 45.582223 - ], - [ - -73.472179, - 45.58194 - ], - [ - -73.472331, - 45.581716 - ], - [ - -73.472649, - 45.581329 - ], - [ - -73.47273, - 45.58124 - ], - [ - -73.472825, - 45.58114 - ], - [ - -73.473026, - 45.580958 - ], - [ - -73.473162, - 45.580835 - ], - [ - -73.473456, - 45.580601 - ], - [ - -73.473548, - 45.580529 - ], - [ - -73.474056, - 45.580187 - ], - [ - -73.474914, - 45.579634 - ], - [ - -73.475349, - 45.579354 - ], - [ - -73.475514, - 45.57924 - ], - [ - -73.475748, - 45.579059 - ], - [ - -73.476005, - 45.578855 - ], - [ - -73.476092, - 45.578785 - ], - [ - -73.476311, - 45.578613 - ], - [ - -73.476531, - 45.578426 - ], - [ - -73.477316, - 45.577756 - ], - [ - -73.478746, - 45.576546 - ], - [ - -73.485291, - 45.570941 - ], - [ - -73.485924, - 45.570374 - ], - [ - -73.486543, - 45.569794 - ], - [ - -73.487144, - 45.5692 - ], - [ - -73.487725, - 45.568597 - ], - [ - -73.488283, - 45.567985 - ], - [ - -73.489005, - 45.567148 - ], - [ - -73.489524, - 45.56651 - ], - [ - -73.490025, - 45.565857 - ], - [ - -73.490348, - 45.565416 - ], - [ - -73.490811, - 45.564746 - ], - [ - -73.492757, - 45.561799 - ], - [ - -73.493231, - 45.561129 - ], - [ - -73.493558, - 45.560688 - ], - [ - -73.493892, - 45.560256 - ], - [ - -73.494237, - 45.559829 - ], - [ - -73.499922, - 45.552981 - ], - [ - -73.501151, - 45.551492 - ], - [ - -73.501844, - 45.550646 - ], - [ - -73.502872, - 45.549445 - ], - [ - -73.503558, - 45.548684 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521985, - 45.524134 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 177, - "properties": { - "id": "fc1fb26f-df37-4fff-86e1-d216776389d3", - "data": { - "gtfs": { - "shape_id": "82_3_A" - }, - "segments": [ - { - "distanceMeters": 12141, - "travelTimeSeconds": 720 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12141, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10218.50144861644, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 16.86, - "travelTimeWithoutDwellTimesSeconds": 720, - "operatingTimeWithLayoverTimeSeconds": 900, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 720, - "operatingSpeedWithLayoverMetersPerSecond": 13.49, - "averageSpeedWithoutDwellTimesMetersPerSecond": 16.86 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "bbe875bc-cb85-4a61-923d-53ee4746a213", - "4c755ece-2475-4915-941e-37859f0f391f" - ], - "stops": [], - "line_id": "f98fc62f-d869-4694-92ce-358619754322", - "segments": [ - 0 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 177, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.466116, - 45.587789 - ], - [ - -73.464044, - 45.586192 - ], - [ - -73.463882, - 45.586067 - ], - [ - -73.463008, - 45.585396 - ], - [ - -73.462697, - 45.585155 - ], - [ - -73.462695, - 45.585153 - ], - [ - -73.462432, - 45.584973 - ], - [ - -73.461939, - 45.585508 - ], - [ - -73.461685, - 45.585787 - ], - [ - -73.461498, - 45.585994 - ], - [ - -73.461396, - 45.58611 - ], - [ - -73.461391, - 45.586115 - ], - [ - -73.461235, - 45.586304 - ], - [ - -73.460864, - 45.586017 - ], - [ - -73.460241, - 45.585535 - ], - [ - -73.460108, - 45.585431 - ], - [ - -73.459866, - 45.585242 - ], - [ - -73.459738, - 45.585143 - ], - [ - -73.459334, - 45.584828 - ], - [ - -73.458776, - 45.584396 - ], - [ - -73.458406, - 45.584108 - ], - [ - -73.45817, - 45.583923 - ], - [ - -73.4579, - 45.583713 - ], - [ - -73.457597, - 45.583478 - ], - [ - -73.456185, - 45.582393 - ], - [ - -73.455855, - 45.582137 - ], - [ - -73.45575, - 45.582055 - ], - [ - -73.454385, - 45.580997 - ], - [ - -73.454001, - 45.5807 - ], - [ - -73.453713, - 45.58048 - ], - [ - -73.453279, - 45.580142 - ], - [ - -73.453165, - 45.580047 - ], - [ - -73.452919, - 45.579851 - ], - [ - -73.452651, - 45.579638 - ], - [ - -73.452413, - 45.579449 - ], - [ - -73.452177, - 45.579269 - ], - [ - -73.451973, - 45.579107 - ], - [ - -73.451897, - 45.579057 - ], - [ - -73.451728, - 45.578945 - ], - [ - -73.451578, - 45.57885 - ], - [ - -73.451104, - 45.578697 - ], - [ - -73.450828, - 45.578634 - ], - [ - -73.450592, - 45.578602 - ], - [ - -73.450371, - 45.578589 - ], - [ - -73.450127, - 45.578588 - ], - [ - -73.450095, - 45.578593 - ], - [ - -73.449875, - 45.578611 - ], - [ - -73.449811, - 45.578618 - ], - [ - -73.44906, - 45.578696 - ], - [ - -73.448846, - 45.578718 - ], - [ - -73.448502, - 45.578754 - ], - [ - -73.448017, - 45.578803 - ], - [ - -73.447593, - 45.578848 - ], - [ - -73.447038, - 45.578907 - ], - [ - -73.446887, - 45.57892 - ], - [ - -73.446904, - 45.579005 - ], - [ - -73.44692, - 45.579082 - ], - [ - -73.447125, - 45.580074 - ], - [ - -73.447136, - 45.58013 - ], - [ - -73.447307, - 45.58099 - ], - [ - -73.447337, - 45.581174 - ], - [ - -73.447364, - 45.581462 - ], - [ - -73.447358, - 45.581597 - ], - [ - -73.447346, - 45.581723 - ], - [ - -73.447325, - 45.581872 - ], - [ - -73.447274, - 45.582088 - ], - [ - -73.447195, - 45.582299 - ], - [ - -73.447192, - 45.582308 - ], - [ - -73.447144, - 45.582429 - ], - [ - -73.447053, - 45.582609 - ], - [ - -73.44698, - 45.58274 - ], - [ - -73.446895, - 45.58287 - ], - [ - -73.446759, - 45.583041 - ], - [ - -73.446638, - 45.583181 - ], - [ - -73.446546, - 45.58327 - ], - [ - -73.446413, - 45.583392 - ], - [ - -73.446149, - 45.583603 - ], - [ - -73.446118, - 45.583628 - ], - [ - -73.446013, - 45.583711 - ], - [ - -73.445939, - 45.583653 - ], - [ - -73.445855, - 45.583587 - ], - [ - -73.445465, - 45.583283 - ], - [ - -73.445375, - 45.583216 - ], - [ - -73.445296, - 45.583162 - ], - [ - -73.445278, - 45.58316 - ], - [ - -73.445214, - 45.583154 - ], - [ - -73.445192, - 45.583151 - ], - [ - -73.443826, - 45.582072 - ], - [ - -73.443724, - 45.581969 - ], - [ - -73.443647, - 45.581873 - ], - [ - -73.443575, - 45.581784 - ], - [ - -73.443489, - 45.581649 - ], - [ - -73.443437, - 45.581532 - ], - [ - -73.443375, - 45.581348 - ], - [ - -73.443359, - 45.581199 - ], - [ - -73.443264, - 45.580785 - ], - [ - -73.443201, - 45.580462 - ], - [ - -73.443169, - 45.580299 - ], - [ - -73.443122, - 45.580146 - ], - [ - -73.44301, - 45.579552 - ], - [ - -73.442822, - 45.57868 - ], - [ - -73.442754, - 45.578324 - ], - [ - -73.442692, - 45.577982 - ], - [ - -73.442643, - 45.57775 - ], - [ - -73.442632, - 45.577699 - ], - [ - -73.442584, - 45.577456 - ], - [ - -73.442456, - 45.576961 - ], - [ - -73.442427, - 45.576893 - ], - [ - -73.442391, - 45.576835 - ], - [ - -73.442323, - 45.576754 - ], - [ - -73.44223, - 45.576659 - ], - [ - -73.44214, - 45.576587 - ], - [ - -73.441907, - 45.576399 - ], - [ - -73.441498, - 45.576071 - ], - [ - -73.441396, - 45.575988 - ], - [ - -73.441078, - 45.575736 - ], - [ - -73.440733, - 45.575462 - ], - [ - -73.440381, - 45.575187 - ], - [ - -73.440036, - 45.574917 - ], - [ - -73.439719, - 45.574665 - ], - [ - -73.439615, - 45.574593 - ], - [ - -73.43947, - 45.574525 - ], - [ - -73.43935, - 45.574476 - ], - [ - -73.439324, - 45.574468 - ], - [ - -73.439097, - 45.574403 - ], - [ - -73.438625, - 45.5743 - ], - [ - -73.438216, - 45.5742 - ], - [ - -73.437342, - 45.573989 - ], - [ - -73.436584, - 45.573804 - ], - [ - -73.436507, - 45.573962 - ], - [ - -73.436268, - 45.574456 - ], - [ - -73.436266, - 45.574459 - ], - [ - -73.436179, - 45.574618 - ], - [ - -73.436118, - 45.574717 - ], - [ - -73.43596, - 45.574982 - ], - [ - -73.435699, - 45.575382 - ], - [ - -73.435467, - 45.575724 - ], - [ - -73.43543, - 45.575778 - ], - [ - -73.43534, - 45.575913 - ], - [ - -73.435197, - 45.576138 - ], - [ - -73.435093, - 45.576309 - ], - [ - -73.434836, - 45.576741 - ], - [ - -73.434754, - 45.576879 - ], - [ - -73.434669, - 45.577024 - ], - [ - -73.434583, - 45.577154 - ], - [ - -73.434306, - 45.577609 - ], - [ - -73.434048, - 45.57804 - ], - [ - -73.433813, - 45.578436 - ], - [ - -73.433689, - 45.578652 - ], - [ - -73.43354, - 45.57889 - ], - [ - -73.433463, - 45.578994 - ], - [ - -73.433444, - 45.579021 - ], - [ - -73.43335, - 45.57912 - ], - [ - -73.433199, - 45.579264 - ], - [ - -73.433076, - 45.579354 - ], - [ - -73.43294, - 45.579444 - ], - [ - -73.432711, - 45.579565 - ], - [ - -73.432272, - 45.579794 - ], - [ - -73.4319, - 45.579983 - ], - [ - -73.431767, - 45.580048 - ], - [ - -73.431616, - 45.580122 - ], - [ - -73.431357, - 45.580245 - ], - [ - -73.431218, - 45.580311 - ], - [ - -73.430652, - 45.580544 - ], - [ - -73.430169, - 45.580742 - ], - [ - -73.430012, - 45.580805 - ], - [ - -73.42982, - 45.580902 - ], - [ - -73.429773, - 45.580926 - ], - [ - -73.429655, - 45.581003 - ], - [ - -73.429134, - 45.581335 - ], - [ - -73.428882, - 45.581497 - ], - [ - -73.428761, - 45.581574 - ], - [ - -73.42763, - 45.582284 - ], - [ - -73.427138, - 45.582598 - ], - [ - -73.427107, - 45.582619 - ], - [ - -73.427063, - 45.582648 - ], - [ - -73.426641, - 45.582922 - ], - [ - -73.426528, - 45.583004 - ], - [ - -73.426639, - 45.583089 - ], - [ - -73.429814, - 45.585537 - ], - [ - -73.429838, - 45.585555 - ], - [ - -73.429958, - 45.585646 - ], - [ - -73.430085, - 45.585745 - ], - [ - -73.430467, - 45.586051 - ], - [ - -73.430716, - 45.586245 - ], - [ - -73.430893, - 45.586393 - ], - [ - -73.431289, - 45.586718 - ], - [ - -73.431323, - 45.586747 - ], - [ - -73.431717, - 45.587092 - ], - [ - -73.431535, - 45.58712 - ], - [ - -73.431364, - 45.587136 - ], - [ - -73.431218, - 45.587159 - ], - [ - -73.431197, - 45.587162 - ], - [ - -73.431023, - 45.587199 - ], - [ - -73.430126, - 45.587748 - ], - [ - -73.429364, - 45.588228 - ], - [ - -73.428812, - 45.588575 - ], - [ - -73.428677, - 45.58866 - ], - [ - -73.428716, - 45.588691 - ], - [ - -73.428853, - 45.588803 - ], - [ - -73.429011, - 45.588919 - ], - [ - -73.429127, - 45.589004 - ], - [ - -73.429375, - 45.589198 - ], - [ - -73.429464, - 45.589267 - ], - [ - -73.429522, - 45.589319 - ], - [ - -73.429567, - 45.589376 - ], - [ - -73.429601, - 45.589438 - ], - [ - -73.429621, - 45.589502 - ], - [ - -73.429799, - 45.590246 - ], - [ - -73.429965, - 45.590937 - ], - [ - -73.430035, - 45.591102 - ], - [ - -73.430052, - 45.591144 - ], - [ - -73.430249, - 45.591315 - ], - [ - -73.43063, - 45.591631 - ], - [ - -73.430742, - 45.591724 - ], - [ - -73.430999, - 45.591887 - ], - [ - -73.431426, - 45.592216 - ], - [ - -73.431736, - 45.592481 - ], - [ - -73.432411, - 45.593022 - ], - [ - -73.43312, - 45.593626 - ], - [ - -73.433267, - 45.593751 - ], - [ - -73.433327, - 45.59372 - ], - [ - -73.433582, - 45.593589 - ], - [ - -73.433689, - 45.593585 - ], - [ - -73.433785, - 45.593535 - ], - [ - -73.434067, - 45.593383 - ], - [ - -73.434286, - 45.593257 - ], - [ - -73.434482, - 45.593117 - ], - [ - -73.434699, - 45.59296 - ], - [ - -73.434861, - 45.592843 - ], - [ - -73.43505, - 45.592699 - ], - [ - -73.435304, - 45.592506 - ], - [ - -73.435474, - 45.592362 - ], - [ - -73.435781, - 45.592007 - ], - [ - -73.43601, - 45.591773 - ], - [ - -73.436179, - 45.591633 - ], - [ - -73.436205, - 45.591611 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.436746, - 45.591641 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.438331, - 45.59283 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.440071, - 45.594115 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.442151, - 45.59567 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442211, - 45.596301 - ], - [ - -73.442031, - 45.596415 - ], - [ - -73.441835, - 45.596541 - ], - [ - -73.441552, - 45.59672 - ], - [ - -73.441367, - 45.596828 - ], - [ - -73.441264, - 45.59688 - ], - [ - -73.440742, - 45.597138 - ], - [ - -73.439976, - 45.597521 - ], - [ - -73.43978, - 45.597624 - ], - [ - -73.43874, - 45.598164 - ], - [ - -73.438619, - 45.598226 - ], - [ - -73.438241, - 45.598406 - ], - [ - -73.437622, - 45.598721 - ], - [ - -73.43732, - 45.5989 - ], - [ - -73.437156, - 45.599026 - ], - [ - -73.437089, - 45.599085 - ], - [ - -73.437027, - 45.599139 - ], - [ - -73.43685, - 45.599305 - ], - [ - -73.436458, - 45.599696 - ], - [ - -73.436408, - 45.599746 - ], - [ - -73.436103, - 45.600029 - ], - [ - -73.435984, - 45.600152 - ], - [ - -73.435806, - 45.600335 - ], - [ - -73.435516, - 45.600609 - ], - [ - -73.435271, - 45.600843 - ], - [ - -73.43499, - 45.601122 - ], - [ - -73.434679, - 45.601402 - ], - [ - -73.434596, - 45.601477 - ], - [ - -73.434475, - 45.601531 - ], - [ - -73.434166, - 45.601679 - ], - [ - -73.433739, - 45.601863 - ], - [ - -73.432706, - 45.602245 - ], - [ - -73.431263, - 45.60278 - ], - [ - -73.430877, - 45.603027 - ], - [ - -73.430609, - 45.603197 - ], - [ - -73.430523, - 45.603252 - ], - [ - -73.429967, - 45.603607 - ], - [ - -73.429453, - 45.603926 - ], - [ - -73.42903, - 45.604191 - ], - [ - -73.428653, - 45.604427 - ], - [ - -73.42865, - 45.604429 - ], - [ - -73.428564, - 45.604483 - ], - [ - -73.427475, - 45.60518 - ], - [ - -73.427444, - 45.605211 - ], - [ - -73.427423, - 45.605237 - ], - [ - -73.427407, - 45.605278 - ], - [ - -73.427406, - 45.605312 - ], - [ - -73.427424, - 45.605353 - ], - [ - -73.42746, - 45.605399 - ], - [ - -73.427603, - 45.605522 - ], - [ - -73.427963, - 45.605801 - ], - [ - -73.427998, - 45.605828 - ], - [ - -73.428173, - 45.605959 - ], - [ - -73.428311, - 45.606067 - ], - [ - -73.428456, - 45.606159 - ], - [ - -73.428495, - 45.606184 - ], - [ - -73.42867, - 45.606274 - ], - [ - -73.42886, - 45.60635 - ], - [ - -73.429112, - 45.606427 - ], - [ - -73.429341, - 45.606472 - ], - [ - -73.429649, - 45.606522 - ], - [ - -73.429954, - 45.606572 - ], - [ - -73.430121, - 45.606599 - ], - [ - -73.430876, - 45.606707 - ], - [ - -73.431493, - 45.606793 - ], - [ - -73.431775, - 45.606798 - ], - [ - -73.431993, - 45.60678 - ], - [ - -73.43227, - 45.606721 - ], - [ - -73.432434, - 45.606672 - ], - [ - -73.432607, - 45.606605 - ], - [ - -73.432938, - 45.606459 - ], - [ - -73.433088, - 45.606393 - ], - [ - -73.433751, - 45.606088 - ], - [ - -73.436303, - 45.60492 - ], - [ - -73.436609, - 45.60478 - ], - [ - -73.436819, - 45.604684 - ], - [ - -73.436923, - 45.604637 - ], - [ - -73.437443, - 45.604403 - ], - [ - -73.437908, - 45.604191 - ], - [ - -73.437975, - 45.60416 - ], - [ - -73.438466, - 45.603935 - ], - [ - -73.438822, - 45.603769 - ], - [ - -73.441516, - 45.602542 - ], - [ - -73.441922, - 45.602327 - ], - [ - -73.442509, - 45.60198 - ], - [ - -73.443055, - 45.601648 - ], - [ - -73.443189, - 45.601568 - ], - [ - -73.443509, - 45.601378 - ], - [ - -73.444182, - 45.600973 - ], - [ - -73.444832, - 45.600591 - ], - [ - -73.445172, - 45.600385 - ], - [ - -73.44538, - 45.600264 - ], - [ - -73.445606, - 45.600133 - ], - [ - -73.446043, - 45.599863 - ], - [ - -73.446679, - 45.599485 - ], - [ - -73.446908, - 45.599337 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447633, - 45.598914 - ], - [ - -73.447731, - 45.598856 - ], - [ - -73.448171, - 45.59861 - ], - [ - -73.448549, - 45.598398 - ], - [ - -73.448792, - 45.598273 - ], - [ - -73.448839, - 45.598249 - ], - [ - -73.448998, - 45.598218 - ], - [ - -73.44922, - 45.59824 - ], - [ - -73.449408, - 45.598272 - ], - [ - -73.449753, - 45.598322 - ], - [ - -73.449948, - 45.598342 - ], - [ - -73.450323, - 45.59838 - ], - [ - -73.450519, - 45.598376 - ], - [ - -73.451106, - 45.598269 - ], - [ - -73.451434, - 45.59821 - ], - [ - -73.45171, - 45.598138 - ], - [ - -73.45178, - 45.59812 - ], - [ - -73.451924, - 45.598053 - ], - [ - -73.452243, - 45.597868 - ], - [ - -73.452948, - 45.597441 - ], - [ - -73.453377, - 45.59718 - ], - [ - -73.453592, - 45.597032 - ], - [ - -73.453626, - 45.596997 - ], - [ - -73.453715, - 45.596906 - ], - [ - -73.453794, - 45.596785 - ], - [ - -73.453871, - 45.596596 - ], - [ - -73.453885, - 45.59653 - ], - [ - -73.453931, - 45.596308 - ], - [ - -73.453991, - 45.596137 - ], - [ - -73.454092, - 45.595664 - ], - [ - -73.454151, - 45.595322 - ], - [ - -73.454178, - 45.595189 - ], - [ - -73.454204, - 45.595062 - ], - [ - -73.45424, - 45.594796 - ], - [ - -73.454266, - 45.59466 - ], - [ - -73.454311, - 45.594418 - ], - [ - -73.454348, - 45.594256 - ], - [ - -73.454385, - 45.594198 - ], - [ - -73.454452, - 45.594099 - ], - [ - -73.454523, - 45.594018 - ], - [ - -73.454739, - 45.593883 - ], - [ - -73.454817, - 45.593955 - ], - [ - -73.454889, - 45.594009 - ], - [ - -73.454906, - 45.59402 - ], - [ - -73.455013, - 45.59409 - ], - [ - -73.455072, - 45.594122 - ], - [ - -73.455163, - 45.594144 - ], - [ - -73.455387, - 45.594185 - ], - [ - -73.455619, - 45.594225 - ], - [ - -73.455723, - 45.593915 - ], - [ - -73.455756, - 45.593816 - ], - [ - -73.455854, - 45.593569 - ], - [ - -73.456153, - 45.59288 - ], - [ - -73.456207, - 45.592759 - ], - [ - -73.456292, - 45.59259 - ], - [ - -73.456406, - 45.592363 - ], - [ - -73.456499, - 45.592179 - ], - [ - -73.45679, - 45.591652 - ], - [ - -73.456853, - 45.591557 - ], - [ - -73.456938, - 45.591427 - ], - [ - -73.457079, - 45.591212 - ], - [ - -73.457344, - 45.590807 - ], - [ - -73.457798, - 45.590177 - ], - [ - -73.457847, - 45.590109 - ], - [ - -73.458224, - 45.589642 - ], - [ - -73.458281, - 45.589577 - ], - [ - -73.458866, - 45.588918 - ], - [ - -73.45918, - 45.588576 - ], - [ - -73.459411, - 45.588319 - ], - [ - -73.459565, - 45.588139 - ], - [ - -73.459672, - 45.588027 - ], - [ - -73.460061, - 45.587601 - ], - [ - -73.460107, - 45.58755 - ], - [ - -73.46024, - 45.587403 - ], - [ - -73.46075, - 45.586842 - ], - [ - -73.461153, - 45.586394 - ], - [ - -73.461181, - 45.586363 - ], - [ - -73.461235, - 45.586304 - ], - [ - -73.461391, - 45.586115 - ], - [ - -73.461498, - 45.585994 - ], - [ - -73.461685, - 45.585787 - ], - [ - -73.461939, - 45.585508 - ], - [ - -73.462342, - 45.58507 - ], - [ - -73.462432, - 45.584973 - ], - [ - -73.462695, - 45.585153 - ], - [ - -73.463008, - 45.585396 - ], - [ - -73.463073, - 45.585446 - ], - [ - -73.463882, - 45.586067 - ], - [ - -73.464038, - 45.586187 - ], - [ - -73.466411, - 45.588017 - ], - [ - -73.466439, - 45.588038 - ], - [ - -73.466543, - 45.588142 - ], - [ - -73.466111, - 45.588492 - ], - [ - -73.465623, - 45.588888 - ], - [ - -73.46517, - 45.589257 - ], - [ - -73.464687, - 45.589664 - ], - [ - -73.464647, - 45.589698 - ], - [ - -73.46414, - 45.59017 - ], - [ - -73.464069, - 45.590233 - ], - [ - -73.463931, - 45.590341 - ], - [ - -73.463826, - 45.590404 - ], - [ - -73.463772, - 45.590426 - ], - [ - -73.463577, - 45.590467 - ], - [ - -73.463489, - 45.590489 - ], - [ - -73.463333, - 45.590507 - ], - [ - -73.463163, - 45.590516 - ], - [ - -73.462973, - 45.590525 - ], - [ - -73.462784, - 45.590539 - ], - [ - -73.462612, - 45.59057 - ], - [ - -73.46246, - 45.590601 - ], - [ - -73.462308, - 45.590655 - ], - [ - -73.462124, - 45.59075 - ], - [ - -73.462023, - 45.590822 - ], - [ - -73.461943, - 45.590894 - ], - [ - -73.461232, - 45.591481 - ], - [ - -73.461223, - 45.591488 - ], - [ - -73.461175, - 45.591528 - ], - [ - -73.46107, - 45.591613 - ], - [ - -73.460957, - 45.591717 - ], - [ - -73.460805, - 45.591865 - ], - [ - -73.460701, - 45.591996 - ], - [ - -73.460612, - 45.592117 - ], - [ - -73.460536, - 45.592252 - ], - [ - -73.460484, - 45.592382 - ], - [ - -73.46046, - 45.592459 - ], - [ - -73.46044, - 45.592544 - ], - [ - -73.460424, - 45.592634 - ], - [ - -73.460424, - 45.592715 - ], - [ - -73.460428, - 45.592832 - ], - [ - -73.46044, - 45.592958 - ], - [ - -73.460595, - 45.593596 - ], - [ - -73.460755, - 45.594214 - ], - [ - -73.460803, - 45.594245 - ], - [ - -73.460875, - 45.594286 - ], - [ - -73.460951, - 45.594317 - ], - [ - -73.461075, - 45.594358 - ], - [ - -73.461106, - 45.594366 - ], - [ - -73.461222, - 45.594399 - ], - [ - -73.461303, - 45.594263 - ], - [ - -73.461665, - 45.593593 - ], - [ - -73.461732, - 45.593494 - ], - [ - -73.461974, - 45.593139 - ], - [ - -73.462288, - 45.59272 - ], - [ - -73.462683, - 45.592307 - ], - [ - -73.463002, - 45.59201 - ], - [ - -73.463511, - 45.591551 - ], - [ - -73.464164, - 45.590993 - ], - [ - -73.464488, - 45.590697 - ], - [ - -73.464968, - 45.59022 - ], - [ - -73.465402, - 45.589802 - ], - [ - -73.465585, - 45.589586 - ], - [ - -73.468548, - 45.587089 - ], - [ - -73.468925, - 45.586766 - ], - [ - -73.469282, - 45.586424 - ], - [ - -73.469476, - 45.586217 - ], - [ - -73.46977, - 45.585875 - ], - [ - -73.470065, - 45.585497 - ], - [ - -73.470208, - 45.585295 - ], - [ - -73.470515, - 45.584795 - ], - [ - -73.470777, - 45.584346 - ], - [ - -73.470818, - 45.584266 - ], - [ - -73.471151, - 45.583659 - ], - [ - -73.471441, - 45.583163 - ], - [ - -73.471782, - 45.582588 - ], - [ - -73.471999, - 45.582223 - ], - [ - -73.472179, - 45.58194 - ], - [ - -73.472331, - 45.581716 - ], - [ - -73.472649, - 45.581329 - ], - [ - -73.47273, - 45.58124 - ], - [ - -73.472825, - 45.58114 - ], - [ - -73.473026, - 45.580958 - ], - [ - -73.473162, - 45.580835 - ], - [ - -73.473456, - 45.580601 - ], - [ - -73.473548, - 45.580529 - ], - [ - -73.474056, - 45.580187 - ], - [ - -73.474914, - 45.579634 - ], - [ - -73.475349, - 45.579354 - ], - [ - -73.475514, - 45.57924 - ], - [ - -73.475748, - 45.579059 - ], - [ - -73.476005, - 45.578855 - ], - [ - -73.476092, - 45.578785 - ], - [ - -73.476311, - 45.578613 - ], - [ - -73.476531, - 45.578426 - ], - [ - -73.477316, - 45.577756 - ], - [ - -73.478746, - 45.576546 - ], - [ - -73.485291, - 45.570941 - ], - [ - -73.485924, - 45.570374 - ], - [ - -73.486543, - 45.569794 - ], - [ - -73.487144, - 45.5692 - ], - [ - -73.487725, - 45.568597 - ], - [ - -73.488283, - 45.567985 - ], - [ - -73.489005, - 45.567148 - ], - [ - -73.489524, - 45.56651 - ], - [ - -73.490025, - 45.565857 - ], - [ - -73.490348, - 45.565416 - ], - [ - -73.490811, - 45.564746 - ], - [ - -73.492757, - 45.561799 - ], - [ - -73.493231, - 45.561129 - ], - [ - -73.493558, - 45.560688 - ], - [ - -73.493892, - 45.560256 - ], - [ - -73.494237, - 45.559829 - ], - [ - -73.499922, - 45.552981 - ], - [ - -73.501151, - 45.551492 - ], - [ - -73.501844, - 45.550646 - ], - [ - -73.502872, - 45.549445 - ], - [ - -73.503558, - 45.548684 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523837, - 45.530517 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521985, - 45.524134 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 178, - "properties": { - "id": "d0bd78d2-ff31-48eb-9eb5-389716bf5da0", - "data": { - "gtfs": { - "shape_id": "83_1_A" - }, - "segments": [ - { - "distanceMeters": 240, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 119, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 360, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 335, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 391, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 84, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 377, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 505, - "travelTimeSeconds": 93 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 356, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 10681, - "travelTimeSeconds": 772 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 288, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 25832, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8347.563976383852, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.97, - "travelTimeWithoutDwellTimesSeconds": 2880, - "operatingTimeWithLayoverTimeSeconds": 3168, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2880, - "operatingSpeedWithLayoverMetersPerSecond": 8.15, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.97 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "2f7a97d2-c790-4f58-9a63-010938bbaf69", - "b54db9a8-0c8c-43a8-a385-bc532fde3f70", - "21aac851-6052-4e4d-8167-df2d9a876338", - "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", - "1f0a0267-b7e7-48ae-bd8a-a1242dd984ed", - "a3ce54d5-25e0-4e55-a21f-2d2c2139447f", - "3370bd8e-b7b2-4aab-8679-28f57be8da19", - "a6014278-4b2c-4dc8-a0d9-22c0ac11eb1c", - "b0a54de7-81a4-4a54-ac92-70b7a1a6f8cd", - "5d689515-eb8c-46f5-b76c-9783188effbb", - "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", - "44ce6da8-ee79-4e09-9c16-f31566643c0c", - "7b512bac-ad2d-4d5a-87d8-173290a7b311", - "b94a5730-dab3-4715-a12c-41d1c300a3ab", - "3f07914c-7958-4cd1-a0a6-c2c9e04cc913", - "589841be-b3c7-4f02-a8e7-b24569959def", - "d63304a9-15dd-4cf4-8ec7-3f7d0c080252", - "969d12ef-c40c-4428-9c70-2251a9d71a5e", - "8a45829f-032b-46f2-a537-7925e71ca5d2", - "dda3c3c1-6952-475f-8547-789fb757f7c6", - "3ff2d59e-aa78-4d80-b1c5-f7852a289411", - "ba6e04e1-77fc-4b3f-86d2-fd956b418882", - "3bd4e28f-2392-4d87-96de-a2ab53d75020", - "e0ad666d-6319-4692-a7ee-a3080772e28d", - "c4a07fb5-3745-472e-8e03-a61e6908d906", - "3e60c63a-1f50-42ff-98f0-f081a7dc4017", - "de3d06d6-88af-49e3-b183-9464b2f111c8", - "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", - "ed16ff8f-f2f4-4914-b93b-f48229e580b7", - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "4fcc129f-8015-4b36-a21f-2437aa91a265", - "3d278b9f-fcbb-4681-9833-769bdbe48eaf", - "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", - "47dc43f6-90db-4837-be84-0b5d8a2becb4", - "628308c5-3a00-44cb-908b-068616e8e618", - "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", - "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", - "abeb197b-490c-4d67-8abe-37d08d73ce70", - "7d34a327-717a-432e-93f5-7310ac20c2c2", - "7ca4f3b1-99df-4499-964b-1702513ad59f", - "e134e428-8d59-4d84-966a-ce83afff1c1c", - "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", - "f7429ca8-1ccc-41e7-acab-a5d3915affbb", - "494d9db6-32c6-4aa3-9c11-91eba915c58f", - "6b55fd05-7687-457e-ae9d-e87027c7100f", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", - "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", - "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", - "b32eb408-e9c7-49ab-afd7-56523f4ec990", - "50c385af-a7f1-479f-b40d-4ed198aca8ce", - "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", - "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", - "8babca8c-ebff-46bc-b0c6-b6576c4fada6", - "c650007a-bdeb-4831-9df5-833406e44887", - "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", - "21aac851-6052-4e4d-8167-df2d9a876338", - "b54db9a8-0c8c-43a8-a385-bc532fde3f70", - "2f7a97d2-c790-4f58-9a63-010938bbaf69", - "b2bf7d79-9175-4e1d-be9c-4f4140537e43", - "6460b11a-31ec-4bbc-b7b7-22be32195079", - "0c601e52-04e5-43e0-9137-7225c37d4cdc", - "4c755ece-2475-4915-941e-37859f0f391f" - ], - "stops": [], - "line_id": "c2c9a413-072c-4acc-9975-efb3460f5ff3", - "segments": [ - 0, - 1, - 4, - 10, - 17, - 22, - 25, - 32, - 37, - 47, - 57, - 67, - 77, - 89, - 96, - 103, - 113, - 123, - 131, - 142, - 150, - 161, - 170, - 175, - 180, - 187, - 196, - 213, - 219, - 235, - 241, - 248, - 252, - 260, - 264, - 270, - 273, - 281, - 289, - 295, - 305, - 315, - 325, - 330, - 333, - 341, - 346, - 352, - 356, - 367, - 378, - 383, - 401, - 406, - 410, - 417, - 423, - 428, - 434, - 440, - 441, - 447, - 466, - 488 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 178, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.52252, - 45.524045 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.503549, - 45.548419 - ], - [ - -73.502986, - 45.54904 - ], - [ - -73.502097, - 45.550079 - ], - [ - -73.501025, - 45.551361 - ], - [ - -73.500319, - 45.55223 - ], - [ - -73.497146, - 45.556054 - ], - [ - -73.496787, - 45.55649 - ], - [ - -73.495905, - 45.557543 - ], - [ - -73.495369, - 45.558173 - ], - [ - -73.494314, - 45.559446 - ], - [ - -73.493461, - 45.560499 - ], - [ - -73.492975, - 45.561151 - ], - [ - -73.492659, - 45.561597 - ], - [ - -73.492068, - 45.562474 - ], - [ - -73.49148, - 45.563383 - ], - [ - -73.490434, - 45.564962 - ], - [ - -73.489967, - 45.565619 - ], - [ - -73.489477, - 45.566267 - ], - [ - -73.488962, - 45.566906 - ], - [ - -73.48825, - 45.567747 - ], - [ - -73.487877, - 45.568161 - ], - [ - -73.487301, - 45.568777 - ], - [ - -73.486712, - 45.56938 - ], - [ - -73.486308, - 45.569771 - ], - [ - -73.485474, - 45.570545 - ], - [ - -73.48461, - 45.571301 - ], - [ - -73.483654, - 45.572115 - ], - [ - -73.478606, - 45.576433 - ], - [ - -73.478028, - 45.576933 - ], - [ - -73.477248, - 45.577607 - ], - [ - -73.476645, - 45.578128 - ], - [ - -73.475915, - 45.578754 - ], - [ - -73.475553, - 45.579033 - ], - [ - -73.474887, - 45.579478 - ], - [ - -73.474437, - 45.579762 - ], - [ - -73.474095, - 45.580005 - ], - [ - -73.473853, - 45.580158 - ], - [ - -73.473398, - 45.580472 - ], - [ - -73.473077, - 45.58072 - ], - [ - -73.472886, - 45.580886 - ], - [ - -73.472612, - 45.581152 - ], - [ - -73.472574, - 45.581196 - ], - [ - -73.472319, - 45.581482 - ], - [ - -73.472175, - 45.581673 - ], - [ - -73.471994, - 45.581936 - ], - [ - -73.47191, - 45.582061 - ], - [ - -73.471753, - 45.582326 - ], - [ - -73.471543, - 45.582681 - ], - [ - -73.471245, - 45.583188 - ], - [ - -73.471013, - 45.58358 - ], - [ - -73.470714, - 45.584071 - ], - [ - -73.470067, - 45.585151 - ], - [ - -73.469784, - 45.585547 - ], - [ - -73.469628, - 45.585749 - ], - [ - -73.469287, - 45.586145 - ], - [ - -73.469101, - 45.586343 - ], - [ - -73.468904, - 45.586536 - ], - [ - -73.468695, - 45.586725 - ], - [ - -73.466029, - 45.588965 - ], - [ - -73.465851, - 45.589127 - ], - [ - -73.464661, - 45.590008 - ], - [ - -73.463452, - 45.59093 - ], - [ - -73.462873, - 45.59133 - ], - [ - -73.462371, - 45.591654 - ], - [ - -73.46224, - 45.591722 - ], - [ - -73.462125, - 45.591758 - ], - [ - -73.462005, - 45.59178 - ], - [ - -73.461886, - 45.591789 - ], - [ - -73.461876, - 45.591789 - ], - [ - -73.461768, - 45.591789 - ], - [ - -73.461658, - 45.591771 - ], - [ - -73.461565, - 45.591739 - ], - [ - -73.461497, - 45.591709 - ], - [ - -73.461385, - 45.591658 - ], - [ - -73.461314, - 45.591613 - ], - [ - -73.462065, - 45.590961 - ], - [ - -73.462195, - 45.590862 - ], - [ - -73.462294, - 45.590799 - ], - [ - -73.462386, - 45.590754 - ], - [ - -73.462519, - 45.590705 - ], - [ - -73.462602, - 45.590678 - ], - [ - -73.462706, - 45.590656 - ], - [ - -73.462813, - 45.590642 - ], - [ - -73.462888, - 45.590633 - ], - [ - -73.463001, - 45.590624 - ], - [ - -73.46316, - 45.59062 - ], - [ - -73.463269, - 45.590611 - ], - [ - -73.463357, - 45.590597 - ], - [ - -73.463462, - 45.590579 - ], - [ - -73.463571, - 45.590548 - ], - [ - -73.463709, - 45.590498 - ], - [ - -73.463772, - 45.590426 - ], - [ - -73.463826, - 45.590404 - ], - [ - -73.463931, - 45.590341 - ], - [ - -73.464069, - 45.590233 - ], - [ - -73.46414, - 45.59017 - ], - [ - -73.464647, - 45.589698 - ], - [ - -73.464762, - 45.589601 - ], - [ - -73.46517, - 45.589257 - ], - [ - -73.465623, - 45.588888 - ], - [ - -73.466111, - 45.588492 - ], - [ - -73.466543, - 45.588142 - ], - [ - -73.466439, - 45.588038 - ], - [ - -73.466116, - 45.587789 - ] - ] - }, - "id": 179, - "properties": { - "id": "8b5de12b-f79f-41fa-9857-c90beb2e1024", - "data": { - "gtfs": { - "shape_id": "83_1_R" - }, - "segments": [ - { - "distanceMeters": 9324, - "travelTimeSeconds": 504 - }, - { - "distanceMeters": 383, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 15 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9971, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8347.563976383852, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 18.46, - "travelTimeWithoutDwellTimesSeconds": 540, - "operatingTimeWithLayoverTimeSeconds": 720, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 540, - "operatingSpeedWithLayoverMetersPerSecond": 13.85, - "averageSpeedWithoutDwellTimesMetersPerSecond": 18.46 - }, - "mode": "bus", - "name": "boul. De Montarville", - "color": "#A32638", - "nodes": [ - "4c755ece-2475-4915-941e-37859f0f391f", - "6460b11a-31ec-4bbc-b7b7-22be32195079", - "b2bf7d79-9175-4e1d-be9c-4f4140537e43", - "2f7a97d2-c790-4f58-9a63-010938bbaf69" - ], - "stops": [], - "line_id": "c2c9a413-072c-4acc-9975-efb3460f5ff3", - "segments": [ - 0, - 113, - 138 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 179, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.466116, - 45.587789 - ], - [ - -73.463882, - 45.586067 - ], - [ - -73.463008, - 45.585396 - ], - [ - -73.462695, - 45.585153 - ], - [ - -73.462432, - 45.584973 - ], - [ - -73.462351, - 45.585061 - ], - [ - -73.461939, - 45.585508 - ], - [ - -73.461685, - 45.585787 - ], - [ - -73.461498, - 45.585994 - ], - [ - -73.461391, - 45.586115 - ], - [ - -73.461235, - 45.586304 - ], - [ - -73.460864, - 45.586017 - ], - [ - -73.460241, - 45.585535 - ], - [ - -73.460199, - 45.585502 - ], - [ - -73.460108, - 45.585431 - ], - [ - -73.459866, - 45.585242 - ], - [ - -73.459334, - 45.584828 - ], - [ - -73.458776, - 45.584396 - ], - [ - -73.458406, - 45.584108 - ], - [ - -73.45817, - 45.583923 - ], - [ - -73.457597, - 45.583478 - ], - [ - -73.457402, - 45.583327 - ], - [ - -73.456185, - 45.582393 - ], - [ - -73.45575, - 45.582055 - ], - [ - -73.454385, - 45.580997 - ], - [ - -73.454281, - 45.580917 - ], - [ - -73.454001, - 45.5807 - ], - [ - -73.453713, - 45.58048 - ], - [ - -73.453279, - 45.580142 - ], - [ - -73.453165, - 45.580047 - ], - [ - -73.452651, - 45.579638 - ], - [ - -73.452413, - 45.579449 - ], - [ - -73.452177, - 45.579269 - ], - [ - -73.451973, - 45.579107 - ], - [ - -73.451728, - 45.578945 - ], - [ - -73.451578, - 45.57885 - ], - [ - -73.451104, - 45.578697 - ], - [ - -73.450828, - 45.578634 - ], - [ - -73.450652, - 45.57861 - ], - [ - -73.450592, - 45.578602 - ], - [ - -73.450371, - 45.578589 - ], - [ - -73.450127, - 45.578588 - ], - [ - -73.450095, - 45.578593 - ], - [ - -73.449875, - 45.578611 - ], - [ - -73.44906, - 45.578696 - ], - [ - -73.448846, - 45.578718 - ], - [ - -73.448502, - 45.578754 - ], - [ - -73.448017, - 45.578803 - ], - [ - -73.447593, - 45.578848 - ], - [ - -73.447038, - 45.578907 - ], - [ - -73.446887, - 45.57892 - ], - [ - -73.446904, - 45.579005 - ], - [ - -73.44692, - 45.579082 - ], - [ - -73.447134, - 45.580121 - ], - [ - -73.447136, - 45.58013 - ], - [ - -73.447307, - 45.58099 - ], - [ - -73.447337, - 45.581174 - ], - [ - -73.447364, - 45.581462 - ], - [ - -73.447358, - 45.581597 - ], - [ - -73.447346, - 45.581723 - ], - [ - -73.447325, - 45.581872 - ], - [ - -73.447274, - 45.582088 - ], - [ - -73.447195, - 45.582299 - ], - [ - -73.447144, - 45.582429 - ], - [ - -73.447053, - 45.582609 - ], - [ - -73.44698, - 45.58274 - ], - [ - -73.446895, - 45.58287 - ], - [ - -73.446759, - 45.583041 - ], - [ - -73.446638, - 45.583181 - ], - [ - -73.446546, - 45.58327 - ], - [ - -73.446413, - 45.583392 - ], - [ - -73.446149, - 45.583603 - ], - [ - -73.446013, - 45.583711 - ], - [ - -73.445939, - 45.583653 - ], - [ - -73.445855, - 45.583587 - ], - [ - -73.445465, - 45.583283 - ], - [ - -73.445375, - 45.583216 - ], - [ - -73.445296, - 45.583162 - ], - [ - -73.445278, - 45.58316 - ], - [ - -73.445214, - 45.583154 - ], - [ - -73.445192, - 45.583151 - ], - [ - -73.444324, - 45.582465 - ], - [ - -73.443826, - 45.582072 - ], - [ - -73.443724, - 45.581969 - ], - [ - -73.443575, - 45.581784 - ], - [ - -73.443489, - 45.581649 - ], - [ - -73.443437, - 45.581532 - ], - [ - -73.443375, - 45.581348 - ], - [ - -73.443359, - 45.581199 - ], - [ - -73.443264, - 45.580785 - ], - [ - -73.443254, - 45.580732 - ], - [ - -73.443169, - 45.580299 - ], - [ - -73.443122, - 45.580146 - ], - [ - -73.44301, - 45.579552 - ], - [ - -73.442822, - 45.57868 - ], - [ - -73.442754, - 45.578324 - ], - [ - -73.442692, - 45.577982 - ], - [ - -73.442668, - 45.577868 - ], - [ - -73.442632, - 45.577699 - ], - [ - -73.442584, - 45.577456 - ], - [ - -73.442456, - 45.576961 - ], - [ - -73.442427, - 45.576893 - ], - [ - -73.442391, - 45.576835 - ], - [ - -73.442323, - 45.576754 - ], - [ - -73.44223, - 45.576659 - ], - [ - -73.44214, - 45.576587 - ], - [ - -73.441907, - 45.576399 - ], - [ - -73.441396, - 45.575988 - ], - [ - -73.441078, - 45.575736 - ], - [ - -73.440733, - 45.575462 - ], - [ - -73.440381, - 45.575187 - ], - [ - -73.440036, - 45.574917 - ], - [ - -73.439719, - 45.574665 - ], - [ - -73.439615, - 45.574593 - ], - [ - -73.43947, - 45.574525 - ], - [ - -73.43935, - 45.574476 - ], - [ - -73.439097, - 45.574403 - ], - [ - -73.438625, - 45.5743 - ], - [ - -73.438216, - 45.5742 - ], - [ - -73.437342, - 45.573989 - ], - [ - -73.437135, - 45.573938 - ], - [ - -73.436584, - 45.573804 - ], - [ - -73.436507, - 45.573962 - ], - [ - -73.436268, - 45.574456 - ], - [ - -73.436179, - 45.574618 - ], - [ - -73.436118, - 45.574717 - ], - [ - -73.43596, - 45.574982 - ], - [ - -73.435699, - 45.575382 - ], - [ - -73.435467, - 45.575724 - ], - [ - -73.43543, - 45.575778 - ], - [ - -73.43534, - 45.575913 - ], - [ - -73.435197, - 45.576138 - ], - [ - -73.435093, - 45.576309 - ], - [ - -73.434836, - 45.576741 - ], - [ - -73.434669, - 45.577024 - ], - [ - -73.434583, - 45.577154 - ], - [ - -73.43455, - 45.57721 - ], - [ - -73.434306, - 45.577609 - ], - [ - -73.434048, - 45.57804 - ], - [ - -73.433813, - 45.578436 - ], - [ - -73.433689, - 45.578652 - ], - [ - -73.43354, - 45.57889 - ], - [ - -73.433444, - 45.579021 - ], - [ - -73.43335, - 45.57912 - ], - [ - -73.433199, - 45.579264 - ], - [ - -73.433076, - 45.579354 - ], - [ - -73.43294, - 45.579444 - ], - [ - -73.432711, - 45.579565 - ], - [ - -73.432629, - 45.579608 - ], - [ - -73.432272, - 45.579794 - ], - [ - -73.4319, - 45.579983 - ], - [ - -73.431767, - 45.580048 - ], - [ - -73.431616, - 45.580122 - ], - [ - -73.431218, - 45.580311 - ], - [ - -73.430652, - 45.580544 - ], - [ - -73.430169, - 45.580742 - ], - [ - -73.430012, - 45.580805 - ], - [ - -73.42982, - 45.580902 - ], - [ - -73.429773, - 45.580926 - ], - [ - -73.429655, - 45.581003 - ], - [ - -73.429134, - 45.581335 - ], - [ - -73.428761, - 45.581574 - ], - [ - -73.42763, - 45.582284 - ], - [ - -73.427293, - 45.582499 - ], - [ - -73.427138, - 45.582598 - ], - [ - -73.427107, - 45.582619 - ], - [ - -73.426641, - 45.582922 - ], - [ - -73.426528, - 45.583004 - ], - [ - -73.426639, - 45.583089 - ], - [ - -73.428365, - 45.58442 - ], - [ - -73.429814, - 45.585537 - ], - [ - -73.429958, - 45.585646 - ], - [ - -73.430085, - 45.585745 - ], - [ - -73.430467, - 45.586051 - ], - [ - -73.430716, - 45.586245 - ], - [ - -73.430893, - 45.586393 - ], - [ - -73.431289, - 45.586718 - ], - [ - -73.431717, - 45.587092 - ], - [ - -73.431535, - 45.58712 - ], - [ - -73.431364, - 45.587136 - ], - [ - -73.431218, - 45.587159 - ], - [ - -73.431197, - 45.587162 - ], - [ - -73.431023, - 45.587199 - ], - [ - -73.430126, - 45.587748 - ], - [ - -73.430024, - 45.587812 - ], - [ - -73.429364, - 45.588228 - ], - [ - -73.428677, - 45.58866 - ], - [ - -73.428716, - 45.588691 - ], - [ - -73.428853, - 45.588803 - ], - [ - -73.429011, - 45.588919 - ], - [ - -73.429127, - 45.589004 - ], - [ - -73.429375, - 45.589198 - ], - [ - -73.429464, - 45.589267 - ], - [ - -73.429522, - 45.589319 - ], - [ - -73.429567, - 45.589376 - ], - [ - -73.429601, - 45.589438 - ], - [ - -73.429621, - 45.589502 - ], - [ - -73.429799, - 45.590246 - ], - [ - -73.429892, - 45.590634 - ], - [ - -73.429965, - 45.590937 - ], - [ - -73.430035, - 45.591102 - ], - [ - -73.430052, - 45.591144 - ], - [ - -73.430249, - 45.591315 - ], - [ - -73.430742, - 45.591724 - ], - [ - -73.430999, - 45.591887 - ], - [ - -73.431426, - 45.592216 - ], - [ - -73.431736, - 45.592481 - ], - [ - -73.432411, - 45.593022 - ], - [ - -73.433267, - 45.593751 - ], - [ - -73.433327, - 45.59372 - ], - [ - -73.433346, - 45.593711 - ], - [ - -73.433582, - 45.593589 - ], - [ - -73.433689, - 45.593585 - ], - [ - -73.433785, - 45.593535 - ], - [ - -73.434067, - 45.593383 - ], - [ - -73.434286, - 45.593257 - ], - [ - -73.434482, - 45.593117 - ], - [ - -73.434699, - 45.59296 - ], - [ - -73.434861, - 45.592843 - ], - [ - -73.43505, - 45.592699 - ], - [ - -73.435304, - 45.592506 - ], - [ - -73.435474, - 45.592362 - ], - [ - -73.435781, - 45.592007 - ], - [ - -73.43601, - 45.591773 - ], - [ - -73.436205, - 45.591611 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.436746, - 45.591641 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.43816, - 45.592705 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442388, - 45.59619 - ], - [ - -73.442211, - 45.596301 - ], - [ - -73.442031, - 45.596415 - ], - [ - -73.441835, - 45.596541 - ], - [ - -73.441552, - 45.59672 - ], - [ - -73.441367, - 45.596828 - ], - [ - -73.440742, - 45.597138 - ], - [ - -73.439976, - 45.597521 - ], - [ - -73.43978, - 45.597624 - ], - [ - -73.438619, - 45.598226 - ], - [ - -73.438241, - 45.598406 - ], - [ - -73.437629, - 45.598717 - ], - [ - -73.437622, - 45.598721 - ], - [ - -73.43732, - 45.5989 - ], - [ - -73.437156, - 45.599026 - ], - [ - -73.437027, - 45.599139 - ], - [ - -73.43685, - 45.599305 - ], - [ - -73.436408, - 45.599746 - ], - [ - -73.436103, - 45.600029 - ], - [ - -73.435984, - 45.600152 - ], - [ - -73.435806, - 45.600335 - ], - [ - -73.435516, - 45.600609 - ], - [ - -73.435271, - 45.600843 - ], - [ - -73.43499, - 45.601122 - ], - [ - -73.434596, - 45.601477 - ], - [ - -73.434527, - 45.601508 - ], - [ - -73.434475, - 45.601531 - ], - [ - -73.434166, - 45.601679 - ], - [ - -73.433739, - 45.601863 - ], - [ - -73.432706, - 45.602245 - ], - [ - -73.431263, - 45.60278 - ], - [ - -73.430877, - 45.603027 - ], - [ - -73.430523, - 45.603252 - ], - [ - -73.429967, - 45.603607 - ], - [ - -73.429899, - 45.603649 - ], - [ - -73.429453, - 45.603926 - ], - [ - -73.42903, - 45.604191 - ], - [ - -73.428653, - 45.604427 - ], - [ - -73.428564, - 45.604483 - ], - [ - -73.427475, - 45.60518 - ], - [ - -73.427444, - 45.605211 - ], - [ - -73.427423, - 45.605237 - ], - [ - -73.427407, - 45.605278 - ], - [ - -73.427406, - 45.605312 - ], - [ - -73.427424, - 45.605353 - ], - [ - -73.42746, - 45.605399 - ], - [ - -73.427603, - 45.605522 - ], - [ - -73.427998, - 45.605828 - ], - [ - -73.428024, - 45.605847 - ], - [ - -73.428173, - 45.605959 - ], - [ - -73.428311, - 45.606067 - ], - [ - -73.428456, - 45.606159 - ], - [ - -73.428495, - 45.606184 - ], - [ - -73.42867, - 45.606274 - ], - [ - -73.42886, - 45.60635 - ], - [ - -73.429112, - 45.606427 - ], - [ - -73.429341, - 45.606472 - ], - [ - -73.429954, - 45.606572 - ], - [ - -73.430121, - 45.606599 - ], - [ - -73.430876, - 45.606707 - ], - [ - -73.431493, - 45.606793 - ], - [ - -73.431775, - 45.606798 - ], - [ - -73.431993, - 45.60678 - ], - [ - -73.43227, - 45.606721 - ], - [ - -73.432434, - 45.606672 - ], - [ - -73.432607, - 45.606605 - ], - [ - -73.433088, - 45.606393 - ], - [ - -73.433751, - 45.606088 - ], - [ - -73.436303, - 45.60492 - ], - [ - -73.436609, - 45.60478 - ], - [ - -73.436923, - 45.604637 - ], - [ - -73.437059, - 45.604576 - ], - [ - -73.437443, - 45.604403 - ], - [ - -73.437975, - 45.60416 - ], - [ - -73.438466, - 45.603935 - ], - [ - -73.438822, - 45.603769 - ], - [ - -73.440503, - 45.603004 - ], - [ - -73.441516, - 45.602542 - ], - [ - -73.441922, - 45.602327 - ], - [ - -73.442509, - 45.60198 - ], - [ - -73.443055, - 45.601648 - ], - [ - -73.443509, - 45.601378 - ], - [ - -73.444182, - 45.600973 - ], - [ - -73.444832, - 45.600591 - ], - [ - -73.445172, - 45.600385 - ], - [ - -73.445606, - 45.600133 - ], - [ - -73.446043, - 45.599863 - ], - [ - -73.446567, - 45.599552 - ], - [ - -73.446679, - 45.599485 - ], - [ - -73.446908, - 45.599337 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447731, - 45.598856 - ], - [ - -73.448171, - 45.59861 - ], - [ - -73.448549, - 45.598398 - ], - [ - -73.448839, - 45.598249 - ], - [ - -73.448998, - 45.598218 - ], - [ - -73.44922, - 45.59824 - ], - [ - -73.449408, - 45.598272 - ], - [ - -73.449753, - 45.598322 - ], - [ - -73.449948, - 45.598342 - ], - [ - -73.450323, - 45.59838 - ], - [ - -73.450519, - 45.598376 - ], - [ - -73.451106, - 45.598269 - ], - [ - -73.451434, - 45.59821 - ], - [ - -73.45178, - 45.59812 - ], - [ - -73.451924, - 45.598053 - ], - [ - -73.452243, - 45.597868 - ], - [ - -73.452948, - 45.597441 - ], - [ - -73.453377, - 45.59718 - ], - [ - -73.453592, - 45.597032 - ], - [ - -73.453626, - 45.596997 - ], - [ - -73.453715, - 45.596906 - ], - [ - -73.453794, - 45.596785 - ], - [ - -73.453871, - 45.596596 - ], - [ - -73.453885, - 45.596531 - ], - [ - -73.453931, - 45.596308 - ], - [ - -73.453991, - 45.596137 - ], - [ - -73.454092, - 45.595664 - ], - [ - -73.454151, - 45.595322 - ], - [ - -73.454204, - 45.595062 - ], - [ - -73.45424, - 45.594796 - ], - [ - -73.454266, - 45.59466 - ], - [ - -73.454311, - 45.594418 - ], - [ - -73.454348, - 45.594256 - ], - [ - -73.454385, - 45.594198 - ], - [ - -73.454452, - 45.594099 - ], - [ - -73.454523, - 45.594018 - ], - [ - -73.454739, - 45.593883 - ], - [ - -73.454817, - 45.593955 - ], - [ - -73.454889, - 45.594009 - ], - [ - -73.454906, - 45.59402 - ], - [ - -73.455013, - 45.59409 - ], - [ - -73.455072, - 45.594122 - ], - [ - -73.455163, - 45.594144 - ], - [ - -73.455387, - 45.594185 - ], - [ - -73.455619, - 45.594225 - ], - [ - -73.455756, - 45.593816 - ], - [ - -73.455854, - 45.593569 - ], - [ - -73.456122, - 45.592953 - ], - [ - -73.456153, - 45.59288 - ], - [ - -73.456207, - 45.592759 - ], - [ - -73.456406, - 45.592363 - ], - [ - -73.456499, - 45.592179 - ], - [ - -73.45679, - 45.591652 - ], - [ - -73.456938, - 45.591427 - ], - [ - -73.457079, - 45.591212 - ], - [ - -73.457344, - 45.590807 - ], - [ - -73.457798, - 45.590177 - ], - [ - -73.457847, - 45.590109 - ], - [ - -73.458224, - 45.589642 - ], - [ - -73.458866, - 45.588918 - ], - [ - -73.45918, - 45.588576 - ], - [ - -73.459411, - 45.588319 - ], - [ - -73.459565, - 45.588139 - ], - [ - -73.459672, - 45.588027 - ], - [ - -73.459813, - 45.587872 - ], - [ - -73.460107, - 45.58755 - ], - [ - -73.46024, - 45.587403 - ], - [ - -73.46075, - 45.586842 - ], - [ - -73.461153, - 45.586394 - ], - [ - -73.461235, - 45.586304 - ], - [ - -73.461391, - 45.586115 - ], - [ - -73.461498, - 45.585994 - ], - [ - -73.461685, - 45.585787 - ], - [ - -73.461939, - 45.585508 - ], - [ - -73.462432, - 45.584973 - ], - [ - -73.462695, - 45.585153 - ], - [ - -73.463008, - 45.585396 - ], - [ - -73.463014, - 45.5854 - ], - [ - -73.463073, - 45.585446 - ], - [ - -73.463882, - 45.586067 - ], - [ - -73.466109, - 45.587783 - ], - [ - -73.466439, - 45.588038 - ], - [ - -73.466543, - 45.588142 - ], - [ - -73.466111, - 45.588492 - ], - [ - -73.465623, - 45.588888 - ], - [ - -73.46517, - 45.589257 - ], - [ - -73.464647, - 45.589698 - ], - [ - -73.46414, - 45.59017 - ], - [ - -73.464069, - 45.590233 - ], - [ - -73.463931, - 45.590341 - ], - [ - -73.463826, - 45.590404 - ], - [ - -73.463772, - 45.590426 - ], - [ - -73.463577, - 45.590467 - ], - [ - -73.463489, - 45.590489 - ], - [ - -73.463333, - 45.590507 - ], - [ - -73.463215, - 45.590513 - ], - [ - -73.463163, - 45.590516 - ], - [ - -73.462973, - 45.590525 - ], - [ - -73.462784, - 45.590539 - ], - [ - -73.462612, - 45.59057 - ], - [ - -73.46246, - 45.590601 - ], - [ - -73.462308, - 45.590655 - ], - [ - -73.462124, - 45.59075 - ], - [ - -73.462023, - 45.590822 - ], - [ - -73.461943, - 45.590894 - ], - [ - -73.461223, - 45.591488 - ], - [ - -73.461175, - 45.591528 - ], - [ - -73.46107, - 45.591613 - ], - [ - -73.460957, - 45.591717 - ], - [ - -73.460805, - 45.591865 - ], - [ - -73.460701, - 45.591996 - ], - [ - -73.460612, - 45.592117 - ], - [ - -73.460536, - 45.592252 - ], - [ - -73.460484, - 45.592382 - ], - [ - -73.46046, - 45.592459 - ], - [ - -73.46044, - 45.592544 - ], - [ - -73.460424, - 45.592634 - ], - [ - -73.460424, - 45.592715 - ], - [ - -73.460426, - 45.592783 - ], - [ - -73.460428, - 45.592832 - ], - [ - -73.46044, - 45.592958 - ], - [ - -73.460595, - 45.593596 - ], - [ - -73.460755, - 45.594214 - ], - [ - -73.460803, - 45.594245 - ], - [ - -73.460875, - 45.594286 - ], - [ - -73.460951, - 45.594317 - ], - [ - -73.461075, - 45.594358 - ], - [ - -73.461222, - 45.594399 - ], - [ - -73.461303, - 45.594263 - ], - [ - -73.461665, - 45.593593 - ], - [ - -73.461732, - 45.593494 - ], - [ - -73.461974, - 45.593139 - ], - [ - -73.462288, - 45.59272 - ], - [ - -73.462529, - 45.592468 - ], - [ - -73.462683, - 45.592307 - ], - [ - -73.463002, - 45.59201 - ], - [ - -73.463511, - 45.591551 - ], - [ - -73.464164, - 45.590993 - ], - [ - -73.464488, - 45.590697 - ], - [ - -73.464864, - 45.590324 - ], - [ - -73.464968, - 45.59022 - ], - [ - -73.465402, - 45.589802 - ], - [ - -73.465585, - 45.589586 - ], - [ - -73.466022, - 45.589218 - ], - [ - -73.468548, - 45.587089 - ], - [ - -73.468925, - 45.586766 - ], - [ - -73.469282, - 45.586424 - ], - [ - -73.469465, - 45.586229 - ], - [ - -73.469476, - 45.586217 - ], - [ - -73.46977, - 45.585875 - ], - [ - -73.470065, - 45.585497 - ], - [ - -73.470208, - 45.585295 - ], - [ - -73.470515, - 45.584795 - ], - [ - -73.470777, - 45.584346 - ], - [ - -73.470818, - 45.584266 - ], - [ - -73.471151, - 45.583659 - ], - [ - -73.471441, - 45.583163 - ], - [ - -73.471782, - 45.582588 - ], - [ - -73.471999, - 45.582223 - ], - [ - -73.472179, - 45.58194 - ], - [ - -73.472331, - 45.581716 - ], - [ - -73.472649, - 45.581329 - ], - [ - -73.47273, - 45.58124 - ], - [ - -73.472825, - 45.58114 - ], - [ - -73.473026, - 45.580958 - ], - [ - -73.473162, - 45.580835 - ], - [ - -73.473312, - 45.580715 - ], - [ - -73.473456, - 45.580601 - ], - [ - -73.473548, - 45.580529 - ], - [ - -73.474056, - 45.580187 - ], - [ - -73.474914, - 45.579634 - ], - [ - -73.475349, - 45.579354 - ], - [ - -73.475514, - 45.57924 - ], - [ - -73.475748, - 45.579059 - ], - [ - -73.476005, - 45.578855 - ], - [ - -73.476092, - 45.578785 - ], - [ - -73.476311, - 45.578613 - ], - [ - -73.476531, - 45.578426 - ], - [ - -73.476653, - 45.578321 - ], - [ - -73.477316, - 45.577756 - ], - [ - -73.478746, - 45.576546 - ], - [ - -73.479768, - 45.575671 - ], - [ - -73.482103, - 45.573671 - ], - [ - -73.485291, - 45.570941 - ], - [ - -73.485924, - 45.570374 - ], - [ - -73.48604, - 45.570266 - ], - [ - -73.486543, - 45.569794 - ], - [ - -73.487144, - 45.5692 - ], - [ - -73.487725, - 45.568597 - ], - [ - -73.488283, - 45.567985 - ], - [ - -73.489005, - 45.567148 - ], - [ - -73.489524, - 45.56651 - ], - [ - -73.490025, - 45.565857 - ], - [ - -73.490348, - 45.565416 - ], - [ - -73.490461, - 45.565252 - ], - [ - -73.490811, - 45.564746 - ], - [ - -73.491463, - 45.563758 - ], - [ - -73.492757, - 45.561799 - ], - [ - -73.493231, - 45.561129 - ], - [ - -73.493558, - 45.560688 - ], - [ - -73.493892, - 45.560256 - ], - [ - -73.494237, - 45.559829 - ], - [ - -73.497014, - 45.556483 - ], - [ - -73.499642, - 45.553318 - ], - [ - -73.499922, - 45.552981 - ], - [ - -73.501151, - 45.551492 - ], - [ - -73.501844, - 45.550646 - ], - [ - -73.502351, - 45.550053 - ], - [ - -73.502872, - 45.549445 - ], - [ - -73.503558, - 45.548684 - ], - [ - -73.503771, - 45.548458 - ], - [ - -73.506775, - 45.545264 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.51015, - 45.541873 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.512523, - 45.54005 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.516725, - 45.53669 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.518569, - 45.53453 - ], - [ - -73.520037, - 45.532802 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523708, - 45.530307 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523837, - 45.530517 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.51978, - 45.529229 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527263 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.518323, - 45.525374 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520064, - 45.523395 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521985, - 45.524134 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 180, - "properties": { - "id": "9c840050-7b60-409b-b6c0-4a8883e5be16", - "data": { - "gtfs": { - "shape_id": "83_1_A" - }, - "segments": [ - { - "distanceMeters": 437, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 389, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 431, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 622, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 655, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 457, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 311, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 528, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 555, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 389, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 551, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 535, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 466, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 395, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 435, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 348, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 802, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 609, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 711, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 537, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 637, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 448, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 359, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 431, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 360, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 442, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 428, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 686, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 382, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 488, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 657, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 918, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 420, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 426, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 460, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 499, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 473, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 359, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 500, - "travelTimeSeconds": 32 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 25832, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 0, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 14.35, - "travelTimeWithoutDwellTimesSeconds": 1800, - "operatingTimeWithLayoverTimeSeconds": 1980, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1800, - "operatingSpeedWithLayoverMetersPerSecond": 13.05, - "averageSpeedWithoutDwellTimesMetersPerSecond": 14.35 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "2f7a97d2-c790-4f58-9a63-010938bbaf69", - "b54db9a8-0c8c-43a8-a385-bc532fde3f70", - "21aac851-6052-4e4d-8167-df2d9a876338", - "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", - "1f0a0267-b7e7-48ae-bd8a-a1242dd984ed", - "a3ce54d5-25e0-4e55-a21f-2d2c2139447f", - "3370bd8e-b7b2-4aab-8679-28f57be8da19", - "a6014278-4b2c-4dc8-a0d9-22c0ac11eb1c", - "b0a54de7-81a4-4a54-ac92-70b7a1a6f8cd", - "5d689515-eb8c-46f5-b76c-9783188effbb", - "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", - "44ce6da8-ee79-4e09-9c16-f31566643c0c", - "7b512bac-ad2d-4d5a-87d8-173290a7b311", - "b94a5730-dab3-4715-a12c-41d1c300a3ab", - "3f07914c-7958-4cd1-a0a6-c2c9e04cc913", - "589841be-b3c7-4f02-a8e7-b24569959def", - "d63304a9-15dd-4cf4-8ec7-3f7d0c080252", - "969d12ef-c40c-4428-9c70-2251a9d71a5e", - "8a45829f-032b-46f2-a537-7925e71ca5d2", - "dda3c3c1-6952-475f-8547-789fb757f7c6", - "3ff2d59e-aa78-4d80-b1c5-f7852a289411", - "ba6e04e1-77fc-4b3f-86d2-fd956b418882", - "3bd4e28f-2392-4d87-96de-a2ab53d75020", - "e0ad666d-6319-4692-a7ee-a3080772e28d", - "c4a07fb5-3745-472e-8e03-a61e6908d906", - "3e60c63a-1f50-42ff-98f0-f081a7dc4017", - "de3d06d6-88af-49e3-b183-9464b2f111c8", - "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", - "ed16ff8f-f2f4-4914-b93b-f48229e580b7", - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "4fcc129f-8015-4b36-a21f-2437aa91a265", - "3d278b9f-fcbb-4681-9833-769bdbe48eaf", - "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", - "47dc43f6-90db-4837-be84-0b5d8a2becb4", - "628308c5-3a00-44cb-908b-068616e8e618", - "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", - "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", - "abeb197b-490c-4d67-8abe-37d08d73ce70", - "7d34a327-717a-432e-93f5-7310ac20c2c2", - "7ca4f3b1-99df-4499-964b-1702513ad59f", - "e134e428-8d59-4d84-966a-ce83afff1c1c", - "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", - "f7429ca8-1ccc-41e7-acab-a5d3915affbb", - "494d9db6-32c6-4aa3-9c11-91eba915c58f", - "6b55fd05-7687-457e-ae9d-e87027c7100f", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", - "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", - "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", - "b32eb408-e9c7-49ab-afd7-56523f4ec990", - "50c385af-a7f1-479f-b40d-4ed198aca8ce", - "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", - "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", - "8babca8c-ebff-46bc-b0c6-b6576c4fada6", - "c650007a-bdeb-4831-9df5-833406e44887", - "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", - "21aac851-6052-4e4d-8167-df2d9a876338", - "b54db9a8-0c8c-43a8-a385-bc532fde3f70", - "2f7a97d2-c790-4f58-9a63-010938bbaf69" - ], - "stops": [], - "line_id": "c2c9a413-072c-4acc-9975-efb3460f5ff3", - "segments": [ - 0, - 5, - 13, - 21, - 25, - 38, - 53, - 81, - 90, - 97, - 120, - 136, - 148, - 163, - 169, - 184, - 198, - 210, - 229, - 241, - 252, - 266, - 275, - 289, - 312, - 317, - 328, - 355, - 379, - 396, - 409, - 412, - 427, - 450, - 465, - 471, - 475, - 479, - 498, - 510, - 513, - 514, - 517, - 526, - 528, - 534, - 535, - 539, - 542, - 543, - 548, - 552, - 560, - 562, - 563, - 577, - 602, - 608, - 628, - 642 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 180, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.466116, - 45.587789 - ], - [ - -73.464044, - 45.586192 - ], - [ - -73.463882, - 45.586067 - ], - [ - -73.463008, - 45.585396 - ], - [ - -73.462697, - 45.585155 - ], - [ - -73.462695, - 45.585153 - ], - [ - -73.462432, - 45.584973 - ], - [ - -73.461939, - 45.585508 - ], - [ - -73.461685, - 45.585787 - ], - [ - -73.46157, - 45.585914 - ], - [ - -73.461498, - 45.585994 - ], - [ - -73.461396, - 45.58611 - ], - [ - -73.461391, - 45.586115 - ], - [ - -73.461235, - 45.586304 - ], - [ - -73.461153, - 45.586394 - ], - [ - -73.46075, - 45.586842 - ], - [ - -73.46024, - 45.587403 - ], - [ - -73.460107, - 45.58755 - ], - [ - -73.459741, - 45.587951 - ], - [ - -73.459672, - 45.588027 - ], - [ - -73.459565, - 45.588139 - ], - [ - -73.459411, - 45.588319 - ], - [ - -73.45918, - 45.588576 - ], - [ - -73.458866, - 45.588918 - ], - [ - -73.458381, - 45.589465 - ], - [ - -73.458224, - 45.589642 - ], - [ - -73.457847, - 45.590109 - ], - [ - -73.457798, - 45.590177 - ], - [ - -73.457344, - 45.590807 - ], - [ - -73.457079, - 45.591212 - ], - [ - -73.456938, - 45.591427 - ], - [ - -73.456889, - 45.591502 - ], - [ - -73.45679, - 45.591652 - ], - [ - -73.456499, - 45.592179 - ], - [ - -73.456406, - 45.592363 - ], - [ - -73.456316, - 45.592541 - ], - [ - -73.456207, - 45.592759 - ], - [ - -73.456153, - 45.59288 - ], - [ - -73.455854, - 45.593569 - ], - [ - -73.455756, - 45.593816 - ], - [ - -73.455696, - 45.593996 - ], - [ - -73.455619, - 45.594225 - ], - [ - -73.455387, - 45.594185 - ], - [ - -73.455272, - 45.594164 - ], - [ - -73.455163, - 45.594144 - ], - [ - -73.455072, - 45.594122 - ], - [ - -73.455013, - 45.59409 - ], - [ - -73.454889, - 45.594009 - ], - [ - -73.454817, - 45.593955 - ], - [ - -73.454739, - 45.593883 - ], - [ - -73.454523, - 45.594018 - ], - [ - -73.454452, - 45.594099 - ], - [ - -73.454385, - 45.594198 - ], - [ - -73.454348, - 45.594256 - ], - [ - -73.454311, - 45.594418 - ], - [ - -73.454266, - 45.59466 - ], - [ - -73.45424, - 45.594796 - ], - [ - -73.454228, - 45.594888 - ], - [ - -73.454204, - 45.595062 - ], - [ - -73.454151, - 45.595322 - ], - [ - -73.454092, - 45.595664 - ], - [ - -73.454001, - 45.596091 - ], - [ - -73.453991, - 45.596137 - ], - [ - -73.453931, - 45.596308 - ], - [ - -73.453871, - 45.596596 - ], - [ - -73.453794, - 45.596785 - ], - [ - -73.453715, - 45.596906 - ], - [ - -73.453626, - 45.596997 - ], - [ - -73.453592, - 45.597032 - ], - [ - -73.453377, - 45.59718 - ], - [ - -73.452948, - 45.597441 - ], - [ - -73.452243, - 45.597868 - ], - [ - -73.452067, - 45.59797 - ], - [ - -73.451924, - 45.598053 - ], - [ - -73.45178, - 45.59812 - ], - [ - -73.451434, - 45.59821 - ], - [ - -73.451106, - 45.598269 - ], - [ - -73.450519, - 45.598376 - ], - [ - -73.450323, - 45.59838 - ], - [ - -73.449948, - 45.598342 - ], - [ - -73.449753, - 45.598322 - ], - [ - -73.449408, - 45.598272 - ], - [ - -73.44922, - 45.59824 - ], - [ - -73.448998, - 45.598218 - ], - [ - -73.448839, - 45.598249 - ], - [ - -73.448696, - 45.598322 - ], - [ - -73.448549, - 45.598398 - ], - [ - -73.448171, - 45.59861 - ], - [ - -73.447731, - 45.598856 - ], - [ - -73.447317, - 45.599101 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.446908, - 45.599337 - ], - [ - -73.446679, - 45.599485 - ], - [ - -73.446043, - 45.599863 - ], - [ - -73.445865, - 45.599973 - ], - [ - -73.445606, - 45.600133 - ], - [ - -73.445172, - 45.600385 - ], - [ - -73.444832, - 45.600591 - ], - [ - -73.444182, - 45.600973 - ], - [ - -73.443509, - 45.601378 - ], - [ - -73.443055, - 45.601648 - ], - [ - -73.442778, - 45.601816 - ], - [ - -73.442509, - 45.60198 - ], - [ - -73.441922, - 45.602327 - ], - [ - -73.441516, - 45.602542 - ], - [ - -73.438822, - 45.603769 - ], - [ - -73.438466, - 45.603935 - ], - [ - -73.43811, - 45.604098 - ], - [ - -73.437975, - 45.60416 - ], - [ - -73.437443, - 45.604403 - ], - [ - -73.436923, - 45.604637 - ], - [ - -73.436609, - 45.60478 - ], - [ - -73.436419, - 45.604867 - ], - [ - -73.436303, - 45.60492 - ], - [ - -73.433751, - 45.606088 - ], - [ - -73.433088, - 45.606393 - ], - [ - -73.433001, - 45.606432 - ], - [ - -73.432607, - 45.606605 - ], - [ - -73.432434, - 45.606672 - ], - [ - -73.43227, - 45.606721 - ], - [ - -73.431993, - 45.60678 - ], - [ - -73.431775, - 45.606798 - ], - [ - -73.431493, - 45.606793 - ], - [ - -73.430876, - 45.606707 - ], - [ - -73.43026, - 45.606619 - ], - [ - -73.430121, - 45.606599 - ], - [ - -73.429954, - 45.606572 - ], - [ - -73.429341, - 45.606472 - ], - [ - -73.429112, - 45.606427 - ], - [ - -73.42886, - 45.60635 - ], - [ - -73.42867, - 45.606274 - ], - [ - -73.428652, - 45.606264 - ], - [ - -73.428495, - 45.606184 - ], - [ - -73.428311, - 45.606067 - ], - [ - -73.428239, - 45.60601 - ], - [ - -73.428173, - 45.605959 - ], - [ - -73.427998, - 45.605828 - ], - [ - -73.427603, - 45.605522 - ], - [ - -73.42746, - 45.605399 - ], - [ - -73.427424, - 45.605353 - ], - [ - -73.427406, - 45.605312 - ], - [ - -73.427407, - 45.605278 - ], - [ - -73.427423, - 45.605237 - ], - [ - -73.427444, - 45.605211 - ], - [ - -73.427475, - 45.60518 - ], - [ - -73.428453, - 45.604554 - ], - [ - -73.428564, - 45.604483 - ], - [ - -73.428653, - 45.604427 - ], - [ - -73.42903, - 45.604191 - ], - [ - -73.429453, - 45.603926 - ], - [ - -73.429967, - 45.603607 - ], - [ - -73.430523, - 45.603252 - ], - [ - -73.430877, - 45.603027 - ], - [ - -73.431227, - 45.602802 - ], - [ - -73.431263, - 45.60278 - ], - [ - -73.432706, - 45.602245 - ], - [ - -73.433739, - 45.601863 - ], - [ - -73.434166, - 45.601679 - ], - [ - -73.434273, - 45.601628 - ], - [ - -73.434475, - 45.601531 - ], - [ - -73.434596, - 45.601477 - ], - [ - -73.43499, - 45.601122 - ], - [ - -73.435271, - 45.600843 - ], - [ - -73.435516, - 45.600609 - ], - [ - -73.435806, - 45.600335 - ], - [ - -73.435984, - 45.600152 - ], - [ - -73.436103, - 45.600029 - ], - [ - -73.436276, - 45.599868 - ], - [ - -73.436408, - 45.599746 - ], - [ - -73.43685, - 45.599305 - ], - [ - -73.437027, - 45.599139 - ], - [ - -73.437067, - 45.599104 - ], - [ - -73.437156, - 45.599026 - ], - [ - -73.43732, - 45.5989 - ], - [ - -73.437622, - 45.598721 - ], - [ - -73.438241, - 45.598406 - ], - [ - -73.43847, - 45.598297 - ], - [ - -73.438619, - 45.598226 - ], - [ - -73.43978, - 45.597624 - ], - [ - -73.439976, - 45.597521 - ], - [ - -73.440742, - 45.597138 - ], - [ - -73.441214, - 45.596904 - ], - [ - -73.441367, - 45.596828 - ], - [ - -73.441552, - 45.59672 - ], - [ - -73.441835, - 45.596541 - ], - [ - -73.442031, - 45.596415 - ], - [ - -73.44251, - 45.596113 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.442151, - 45.59567 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.439877, - 45.593968 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438222, - 45.592751 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.436355, - 45.59135 - ], - [ - -73.436241, - 45.591437 - ], - [ - -73.43623, - 45.591445 - ], - [ - -73.435937, - 45.591669 - ], - [ - -73.435841, - 45.59175 - ], - [ - -73.435771, - 45.591809 - ], - [ - -73.435656, - 45.59193 - ], - [ - -73.435482, - 45.592133 - ], - [ - -73.435328, - 45.592303 - ], - [ - -73.435201, - 45.592416 - ], - [ - -73.435194, - 45.59242 - ], - [ - -73.434937, - 45.592614 - ], - [ - -73.434583, - 45.592879 - ], - [ - -73.434575, - 45.592883 - ], - [ - -73.434342, - 45.593054 - ], - [ - -73.434176, - 45.59318 - ], - [ - -73.433984, - 45.593306 - ], - [ - -73.433723, - 45.593472 - ], - [ - -73.433623, - 45.593526 - ], - [ - -73.433582, - 45.593589 - ], - [ - -73.433505, - 45.593629 - ], - [ - -73.433267, - 45.593751 - ], - [ - -73.43308, - 45.593591 - ], - [ - -73.432411, - 45.593022 - ], - [ - -73.431736, - 45.592481 - ], - [ - -73.431426, - 45.592216 - ], - [ - -73.430999, - 45.591887 - ], - [ - -73.430852, - 45.591793 - ], - [ - -73.430742, - 45.591724 - ], - [ - -73.430249, - 45.591315 - ], - [ - -73.430052, - 45.591144 - ], - [ - -73.430035, - 45.591102 - ], - [ - -73.429965, - 45.590937 - ], - [ - -73.429799, - 45.590246 - ], - [ - -73.429621, - 45.589502 - ], - [ - -73.429601, - 45.589438 - ], - [ - -73.429567, - 45.589376 - ], - [ - -73.429522, - 45.589319 - ], - [ - -73.429464, - 45.589267 - ], - [ - -73.429127, - 45.589004 - ], - [ - -73.429109, - 45.588991 - ], - [ - -73.429011, - 45.588919 - ], - [ - -73.429137, - 45.588834 - ], - [ - -73.429252, - 45.588761 - ], - [ - -73.429681, - 45.58849 - ], - [ - -73.430455, - 45.587999 - ], - [ - -73.43085, - 45.58775 - ], - [ - -73.431273, - 45.587482 - ], - [ - -73.431644, - 45.587248 - ], - [ - -73.431818, - 45.587179 - ], - [ - -73.431717, - 45.587092 - ], - [ - -73.431654, - 45.587036 - ], - [ - -73.431289, - 45.586718 - ], - [ - -73.430893, - 45.586393 - ], - [ - -73.430716, - 45.586245 - ], - [ - -73.430467, - 45.586051 - ], - [ - -73.430089, - 45.585748 - ], - [ - -73.430085, - 45.585745 - ], - [ - -73.429958, - 45.585646 - ], - [ - -73.429814, - 45.585537 - ], - [ - -73.428457, - 45.584491 - ], - [ - -73.426662, - 45.583107 - ], - [ - -73.426528, - 45.583004 - ], - [ - -73.426641, - 45.582922 - ], - [ - -73.426651, - 45.582915 - ], - [ - -73.427107, - 45.582619 - ], - [ - -73.427138, - 45.582598 - ], - [ - -73.42763, - 45.582284 - ], - [ - -73.428586, - 45.581684 - ], - [ - -73.428761, - 45.581574 - ], - [ - -73.429134, - 45.581335 - ], - [ - -73.429655, - 45.581003 - ], - [ - -73.429773, - 45.580926 - ], - [ - -73.42982, - 45.580902 - ], - [ - -73.430012, - 45.580805 - ], - [ - -73.430169, - 45.580742 - ], - [ - -73.430652, - 45.580544 - ], - [ - -73.431075, - 45.58037 - ], - [ - -73.431218, - 45.580311 - ], - [ - -73.431616, - 45.580122 - ], - [ - -73.431767, - 45.580048 - ], - [ - -73.4319, - 45.579983 - ], - [ - -73.432272, - 45.579794 - ], - [ - -73.432711, - 45.579565 - ], - [ - -73.43294, - 45.579444 - ], - [ - -73.433076, - 45.579354 - ], - [ - -73.433199, - 45.579264 - ], - [ - -73.433286, - 45.579181 - ], - [ - -73.43335, - 45.57912 - ], - [ - -73.433444, - 45.579021 - ], - [ - -73.43354, - 45.57889 - ], - [ - -73.433689, - 45.578652 - ], - [ - -73.433813, - 45.578436 - ], - [ - -73.434048, - 45.57804 - ], - [ - -73.434306, - 45.577609 - ], - [ - -73.434583, - 45.577154 - ], - [ - -73.434585, - 45.577151 - ], - [ - -73.434669, - 45.577024 - ], - [ - -73.434836, - 45.576741 - ], - [ - -73.435093, - 45.576309 - ], - [ - -73.435197, - 45.576138 - ], - [ - -73.43534, - 45.575913 - ], - [ - -73.43543, - 45.575778 - ], - [ - -73.435467, - 45.575724 - ], - [ - -73.435699, - 45.575382 - ], - [ - -73.43596, - 45.574982 - ], - [ - -73.436118, - 45.574717 - ], - [ - -73.436179, - 45.574618 - ], - [ - -73.436268, - 45.574456 - ], - [ - -73.436505, - 45.573966 - ], - [ - -73.436584, - 45.573804 - ], - [ - -73.437066, - 45.573921 - ], - [ - -73.437342, - 45.573989 - ], - [ - -73.438216, - 45.5742 - ], - [ - -73.438625, - 45.5743 - ], - [ - -73.439012, - 45.574385 - ], - [ - -73.439097, - 45.574403 - ], - [ - -73.43935, - 45.574476 - ], - [ - -73.43947, - 45.574525 - ], - [ - -73.439615, - 45.574593 - ], - [ - -73.439719, - 45.574665 - ], - [ - -73.440036, - 45.574917 - ], - [ - -73.440381, - 45.575187 - ], - [ - -73.440733, - 45.575462 - ], - [ - -73.441078, - 45.575736 - ], - [ - -73.441329, - 45.575935 - ], - [ - -73.441396, - 45.575988 - ], - [ - -73.441907, - 45.576399 - ], - [ - -73.44214, - 45.576587 - ], - [ - -73.44223, - 45.576659 - ], - [ - -73.442323, - 45.576754 - ], - [ - -73.442391, - 45.576835 - ], - [ - -73.442427, - 45.576893 - ], - [ - -73.442456, - 45.576961 - ], - [ - -73.442584, - 45.577456 - ], - [ - -73.442632, - 45.577699 - ], - [ - -73.442673, - 45.577892 - ], - [ - -73.442692, - 45.577982 - ], - [ - -73.442754, - 45.578324 - ], - [ - -73.442822, - 45.57868 - ], - [ - -73.44301, - 45.579552 - ], - [ - -73.443122, - 45.580146 - ], - [ - -73.443129, - 45.58017 - ], - [ - -73.443169, - 45.580299 - ], - [ - -73.443264, - 45.580785 - ], - [ - -73.443359, - 45.581199 - ], - [ - -73.443375, - 45.581348 - ], - [ - -73.443437, - 45.581532 - ], - [ - -73.443442, - 45.581544 - ], - [ - -73.443489, - 45.581649 - ], - [ - -73.443575, - 45.581784 - ], - [ - -73.443724, - 45.581969 - ], - [ - -73.443826, - 45.582072 - ], - [ - -73.445192, - 45.583151 - ], - [ - -73.445199, - 45.583169 - ], - [ - -73.445212, - 45.583213 - ], - [ - -73.445216, - 45.583229 - ], - [ - -73.445297, - 45.583292 - ], - [ - -73.44537, - 45.583351 - ], - [ - -73.445826, - 45.583707 - ], - [ - -73.445835, - 45.583715 - ], - [ - -73.44592, - 45.583788 - ], - [ - -73.446073, - 45.583824 - ], - [ - -73.446219, - 45.58371 - ], - [ - -73.446281, - 45.583662 - ], - [ - -73.446365, - 45.583594 - ], - [ - -73.446509, - 45.583477 - ], - [ - -73.446663, - 45.583334 - ], - [ - -73.446759, - 45.583239 - ], - [ - -73.446885, - 45.583095 - ], - [ - -73.447026, - 45.582915 - ], - [ - -73.44712, - 45.582776 - ], - [ - -73.447199, - 45.582634 - ], - [ - -73.447216, - 45.582605 - ], - [ - -73.447288, - 45.582456 - ], - [ - -73.447348, - 45.582322 - ], - [ - -73.447422, - 45.58211 - ], - [ - -73.447475, - 45.581885 - ], - [ - -73.447497, - 45.581732 - ], - [ - -73.447521, - 45.581602 - ], - [ - -73.447516, - 45.581462 - ], - [ - -73.447513, - 45.581287 - ], - [ - -73.447477, - 45.581057 - ], - [ - -73.447321, - 45.58029 - ], - [ - -73.447286, - 45.580117 - ], - [ - -73.447144, - 45.579424 - ], - [ - -73.447056, - 45.578992 - ], - [ - -73.447354, - 45.578963 - ], - [ - -73.447608, - 45.578938 - ], - [ - -73.447895, - 45.578908 - ], - [ - -73.448031, - 45.578893 - ], - [ - -73.44852, - 45.578844 - ], - [ - -73.449074, - 45.578786 - ], - [ - -73.450004, - 45.578692 - ], - [ - -73.450095, - 45.578683 - ], - [ - -73.450109, - 45.578683 - ], - [ - -73.450463, - 45.578688 - ], - [ - -73.450661, - 45.578706 - ], - [ - -73.450775, - 45.578719 - ], - [ - -73.450895, - 45.578737 - ], - [ - -73.451093, - 45.578791 - ], - [ - -73.451234, - 45.578836 - ], - [ - -73.451251, - 45.578842 - ], - [ - -73.451309, - 45.578863 - ], - [ - -73.451495, - 45.578945 - ], - [ - -73.451582, - 45.57899 - ], - [ - -73.451744, - 45.579089 - ], - [ - -73.451869, - 45.579174 - ], - [ - -73.452082, - 45.579336 - ], - [ - -73.452313, - 45.579516 - ], - [ - -73.452549, - 45.579701 - ], - [ - -73.45305, - 45.580087 - ], - [ - -73.453063, - 45.580097 - ], - [ - -73.453179, - 45.580196 - ], - [ - -73.453622, - 45.580543 - ], - [ - -73.453903, - 45.580759 - ], - [ - -73.45429, - 45.581056 - ], - [ - -73.455188, - 45.581753 - ], - [ - -73.45539, - 45.581913 - ], - [ - -73.455648, - 45.582118 - ], - [ - -73.456087, - 45.582456 - ], - [ - -73.456184, - 45.582528 - ], - [ - -73.457344, - 45.583427 - ], - [ - -73.457491, - 45.583541 - ], - [ - -73.458062, - 45.583986 - ], - [ - -73.458301, - 45.584171 - ], - [ - -73.458672, - 45.584459 - ], - [ - -73.459229, - 45.584891 - ], - [ - -73.459558, - 45.585148 - ], - [ - -73.459569, - 45.585156 - ], - [ - -73.459766, - 45.58531 - ], - [ - -73.459861, - 45.585382 - ], - [ - -73.460007, - 45.585499 - ], - [ - -73.460666, - 45.586014 - ], - [ - -73.460691, - 45.586033 - ], - [ - -73.461153, - 45.586394 - ], - [ - -73.461235, - 45.586304 - ], - [ - -73.461391, - 45.586115 - ], - [ - -73.461498, - 45.585994 - ], - [ - -73.461685, - 45.585787 - ], - [ - -73.461939, - 45.585508 - ], - [ - -73.462335, - 45.585078 - ], - [ - -73.462432, - 45.584973 - ], - [ - -73.462695, - 45.585153 - ], - [ - -73.463008, - 45.585396 - ], - [ - -73.463882, - 45.586067 - ], - [ - -73.464038, - 45.586187 - ], - [ - -73.466411, - 45.588017 - ], - [ - -73.466439, - 45.588038 - ], - [ - -73.466543, - 45.588142 - ], - [ - -73.466111, - 45.588492 - ], - [ - -73.465623, - 45.588888 - ], - [ - -73.46517, - 45.589257 - ], - [ - -73.464687, - 45.589664 - ], - [ - -73.464647, - 45.589698 - ], - [ - -73.46414, - 45.59017 - ], - [ - -73.464069, - 45.590233 - ], - [ - -73.463931, - 45.590341 - ], - [ - -73.463826, - 45.590404 - ], - [ - -73.463772, - 45.590426 - ], - [ - -73.463577, - 45.590467 - ], - [ - -73.463489, - 45.590489 - ], - [ - -73.463333, - 45.590507 - ], - [ - -73.463163, - 45.590516 - ], - [ - -73.462973, - 45.590525 - ], - [ - -73.462784, - 45.590539 - ], - [ - -73.462612, - 45.59057 - ], - [ - -73.46246, - 45.590601 - ], - [ - -73.462308, - 45.590655 - ], - [ - -73.462124, - 45.59075 - ], - [ - -73.462023, - 45.590822 - ], - [ - -73.461943, - 45.590894 - ], - [ - -73.461232, - 45.591481 - ], - [ - -73.461223, - 45.591488 - ], - [ - -73.461175, - 45.591528 - ], - [ - -73.46107, - 45.591613 - ], - [ - -73.460957, - 45.591717 - ], - [ - -73.460805, - 45.591865 - ], - [ - -73.460701, - 45.591996 - ], - [ - -73.460612, - 45.592117 - ], - [ - -73.460536, - 45.592252 - ], - [ - -73.460484, - 45.592382 - ], - [ - -73.46046, - 45.592459 - ], - [ - -73.46044, - 45.592544 - ], - [ - -73.460424, - 45.592634 - ], - [ - -73.460424, - 45.592715 - ], - [ - -73.460428, - 45.592832 - ], - [ - -73.46044, - 45.592958 - ], - [ - -73.460595, - 45.593596 - ], - [ - -73.460755, - 45.594214 - ], - [ - -73.460803, - 45.594245 - ], - [ - -73.460875, - 45.594286 - ], - [ - -73.460951, - 45.594317 - ], - [ - -73.461075, - 45.594358 - ], - [ - -73.461106, - 45.594366 - ], - [ - -73.461222, - 45.594399 - ], - [ - -73.461303, - 45.594263 - ], - [ - -73.461665, - 45.593593 - ], - [ - -73.461732, - 45.593494 - ], - [ - -73.461974, - 45.593139 - ], - [ - -73.462288, - 45.59272 - ], - [ - -73.462683, - 45.592307 - ], - [ - -73.463002, - 45.59201 - ], - [ - -73.463511, - 45.591551 - ], - [ - -73.464164, - 45.590993 - ], - [ - -73.464488, - 45.590697 - ], - [ - -73.464968, - 45.59022 - ], - [ - -73.465402, - 45.589802 - ], - [ - -73.465585, - 45.589586 - ], - [ - -73.468548, - 45.587089 - ], - [ - -73.468925, - 45.586766 - ], - [ - -73.469282, - 45.586424 - ], - [ - -73.469476, - 45.586217 - ], - [ - -73.46977, - 45.585875 - ], - [ - -73.470065, - 45.585497 - ], - [ - -73.470208, - 45.585295 - ], - [ - -73.470515, - 45.584795 - ], - [ - -73.470777, - 45.584346 - ], - [ - -73.470818, - 45.584266 - ], - [ - -73.471151, - 45.583659 - ], - [ - -73.471441, - 45.583163 - ], - [ - -73.471782, - 45.582588 - ], - [ - -73.471999, - 45.582223 - ], - [ - -73.472179, - 45.58194 - ], - [ - -73.472331, - 45.581716 - ], - [ - -73.472649, - 45.581329 - ], - [ - -73.47273, - 45.58124 - ], - [ - -73.472825, - 45.58114 - ], - [ - -73.473026, - 45.580958 - ], - [ - -73.473162, - 45.580835 - ], - [ - -73.473456, - 45.580601 - ], - [ - -73.473548, - 45.580529 - ], - [ - -73.474056, - 45.580187 - ], - [ - -73.474914, - 45.579634 - ], - [ - -73.475349, - 45.579354 - ], - [ - -73.475514, - 45.57924 - ], - [ - -73.475748, - 45.579059 - ], - [ - -73.476005, - 45.578855 - ], - [ - -73.476092, - 45.578785 - ], - [ - -73.476311, - 45.578613 - ], - [ - -73.476531, - 45.578426 - ], - [ - -73.477316, - 45.577756 - ], - [ - -73.478746, - 45.576546 - ], - [ - -73.485291, - 45.570941 - ], - [ - -73.485924, - 45.570374 - ], - [ - -73.486543, - 45.569794 - ], - [ - -73.487144, - 45.5692 - ], - [ - -73.487725, - 45.568597 - ], - [ - -73.488283, - 45.567985 - ], - [ - -73.489005, - 45.567148 - ], - [ - -73.489524, - 45.56651 - ], - [ - -73.490025, - 45.565857 - ], - [ - -73.490348, - 45.565416 - ], - [ - -73.490811, - 45.564746 - ], - [ - -73.492757, - 45.561799 - ], - [ - -73.493231, - 45.561129 - ], - [ - -73.493558, - 45.560688 - ], - [ - -73.493892, - 45.560256 - ], - [ - -73.494237, - 45.559829 - ], - [ - -73.499922, - 45.552981 - ], - [ - -73.501151, - 45.551492 - ], - [ - -73.501844, - 45.550646 - ], - [ - -73.502872, - 45.549445 - ], - [ - -73.503558, - 45.548684 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523837, - 45.530517 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521985, - 45.524134 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 181, - "properties": { - "id": "ad30e3ac-9bfc-459c-a8b9-32b86468638f", - "data": { - "gtfs": { - "shape_id": "84_1_A" - }, - "segments": [ - { - "distanceMeters": 240, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 316, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 444, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 328, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 311, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 385, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 100, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 356, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 10681, - "travelTimeSeconds": 827 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 282, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 25820, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8347.563976383852, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.16, - "travelTimeWithoutDwellTimesSeconds": 2820, - "operatingTimeWithLayoverTimeSeconds": 3102, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2820, - "operatingSpeedWithLayoverMetersPerSecond": 8.32, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.16 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "2f7a97d2-c790-4f58-9a63-010938bbaf69", - "b54db9a8-0c8c-43a8-a385-bc532fde3f70", - "21aac851-6052-4e4d-8167-df2d9a876338", - "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", - "c650007a-bdeb-4831-9df5-833406e44887", - "8babca8c-ebff-46bc-b0c6-b6576c4fada6", - "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", - "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", - "50c385af-a7f1-479f-b40d-4ed198aca8ce", - "b32eb408-e9c7-49ab-afd7-56523f4ec990", - "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", - "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", - "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "6b55fd05-7687-457e-ae9d-e87027c7100f", - "494d9db6-32c6-4aa3-9c11-91eba915c58f", - "f7429ca8-1ccc-41e7-acab-a5d3915affbb", - "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", - "e134e428-8d59-4d84-966a-ce83afff1c1c", - "7ca4f3b1-99df-4499-964b-1702513ad59f", - "7d34a327-717a-432e-93f5-7310ac20c2c2", - "abeb197b-490c-4d67-8abe-37d08d73ce70", - "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", - "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", - "628308c5-3a00-44cb-908b-068616e8e618", - "47dc43f6-90db-4837-be84-0b5d8a2becb4", - "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", - "fc32be78-9480-4dfc-b10c-475dc000dd04", - "0872c388-8faf-4852-b4ce-cf3f6312e0ef", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "ed16ff8f-f2f4-4914-b93b-f48229e580b7", - "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", - "de3d06d6-88af-49e3-b183-9464b2f111c8", - "3613b472-6055-4b55-9c89-01a451d82804", - "4cd6eb13-aeec-4716-a3d3-8e1a38389723", - "9ad04c6c-abc1-49fe-8f36-db6146dd5c5c", - "3dedf179-3478-4b4d-b706-36e0a8981094", - "3bd4e28f-2392-4d87-96de-a2ab53d75020", - "ba6e04e1-77fc-4b3f-86d2-fd956b418882", - "3ff2d59e-aa78-4d80-b1c5-f7852a289411", - "dda3c3c1-6952-475f-8547-789fb757f7c6", - "b09cf260-c832-4cf7-bb1b-ef1c96c3308c", - "969d12ef-c40c-4428-9c70-2251a9d71a5e", - "d63304a9-15dd-4cf4-8ec7-3f7d0c080252", - "589841be-b3c7-4f02-a8e7-b24569959def", - "3f07914c-7958-4cd1-a0a6-c2c9e04cc913", - "b94a5730-dab3-4715-a12c-41d1c300a3ab", - "7b512bac-ad2d-4d5a-87d8-173290a7b311", - "44ce6da8-ee79-4e09-9c16-f31566643c0c", - "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", - "43c9714a-9286-4827-a621-a7c2f8cbdfb6", - "5d689515-eb8c-46f5-b76c-9783188effbb", - "b0a54de7-81a4-4a54-ac92-70b7a1a6f8cd", - "a6014278-4b2c-4dc8-a0d9-22c0ac11eb1c", - "3370bd8e-b7b2-4aab-8679-28f57be8da19", - "a3ce54d5-25e0-4e55-a21f-2d2c2139447f", - "1f0a0267-b7e7-48ae-bd8a-a1242dd984ed", - "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", - "21aac851-6052-4e4d-8167-df2d9a876338", - "b54db9a8-0c8c-43a8-a385-bc532fde3f70", - "2f7a97d2-c790-4f58-9a63-010938bbaf69", - "b2bf7d79-9175-4e1d-be9c-4f4140537e43", - "6460b11a-31ec-4bbc-b7b7-22be32195079", - "0c601e52-04e5-43e0-9137-7225c37d4cdc", - "4c755ece-2475-4915-941e-37859f0f391f" - ], - "stops": [], - "line_id": "e597daaa-7703-4108-a2f9-fbf932e44edb", - "segments": [ - 0, - 1, - 4, - 11, - 18, - 24, - 31, - 35, - 40, - 57, - 61, - 72, - 85, - 89, - 94, - 101, - 107, - 112, - 116, - 124, - 134, - 145, - 153, - 158, - 167, - 171, - 176, - 181, - 186, - 193, - 200, - 208, - 224, - 231, - 244, - 251, - 260, - 264, - 265, - 272, - 281, - 291, - 300, - 313, - 319, - 329, - 340, - 346, - 352, - 364, - 376, - 387, - 393, - 397, - 406, - 415, - 422, - 426, - 433, - 438, - 445, - 450, - 451, - 457, - 476, - 498 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 181, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.52252, - 45.524045 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.503549, - 45.548419 - ], - [ - -73.502986, - 45.54904 - ], - [ - -73.502097, - 45.550079 - ], - [ - -73.501025, - 45.551361 - ], - [ - -73.500319, - 45.55223 - ], - [ - -73.497146, - 45.556054 - ], - [ - -73.496787, - 45.55649 - ], - [ - -73.495905, - 45.557543 - ], - [ - -73.495369, - 45.558173 - ], - [ - -73.494314, - 45.559446 - ], - [ - -73.493461, - 45.560499 - ], - [ - -73.492975, - 45.561151 - ], - [ - -73.492659, - 45.561597 - ], - [ - -73.492068, - 45.562474 - ], - [ - -73.49148, - 45.563383 - ], - [ - -73.490434, - 45.564962 - ], - [ - -73.489967, - 45.565619 - ], - [ - -73.489477, - 45.566267 - ], - [ - -73.488962, - 45.566906 - ], - [ - -73.48825, - 45.567747 - ], - [ - -73.487877, - 45.568161 - ], - [ - -73.487301, - 45.568777 - ], - [ - -73.486712, - 45.56938 - ], - [ - -73.486308, - 45.569771 - ], - [ - -73.485474, - 45.570545 - ], - [ - -73.48461, - 45.571301 - ], - [ - -73.483654, - 45.572115 - ], - [ - -73.478606, - 45.576433 - ], - [ - -73.478028, - 45.576933 - ], - [ - -73.477248, - 45.577607 - ], - [ - -73.476645, - 45.578128 - ], - [ - -73.475915, - 45.578754 - ], - [ - -73.475553, - 45.579033 - ], - [ - -73.474887, - 45.579478 - ], - [ - -73.474437, - 45.579762 - ], - [ - -73.474095, - 45.580005 - ], - [ - -73.473853, - 45.580158 - ], - [ - -73.473398, - 45.580472 - ], - [ - -73.473077, - 45.58072 - ], - [ - -73.472886, - 45.580886 - ], - [ - -73.472612, - 45.581152 - ], - [ - -73.472574, - 45.581196 - ], - [ - -73.472319, - 45.581482 - ], - [ - -73.472175, - 45.581673 - ], - [ - -73.471994, - 45.581936 - ], - [ - -73.47191, - 45.582061 - ], - [ - -73.471753, - 45.582326 - ], - [ - -73.471543, - 45.582681 - ], - [ - -73.471245, - 45.583188 - ], - [ - -73.471013, - 45.58358 - ], - [ - -73.470714, - 45.584071 - ], - [ - -73.470067, - 45.585151 - ], - [ - -73.469784, - 45.585547 - ], - [ - -73.469628, - 45.585749 - ], - [ - -73.469287, - 45.586145 - ], - [ - -73.469101, - 45.586343 - ], - [ - -73.468904, - 45.586536 - ], - [ - -73.468695, - 45.586725 - ], - [ - -73.466029, - 45.588965 - ], - [ - -73.465851, - 45.589127 - ], - [ - -73.464661, - 45.590008 - ], - [ - -73.463452, - 45.59093 - ], - [ - -73.462873, - 45.59133 - ], - [ - -73.462371, - 45.591654 - ], - [ - -73.46224, - 45.591722 - ], - [ - -73.462125, - 45.591758 - ], - [ - -73.462005, - 45.59178 - ], - [ - -73.461886, - 45.591789 - ], - [ - -73.461876, - 45.591789 - ], - [ - -73.461768, - 45.591789 - ], - [ - -73.461658, - 45.591771 - ], - [ - -73.461565, - 45.591739 - ], - [ - -73.461497, - 45.591709 - ], - [ - -73.461385, - 45.591658 - ], - [ - -73.461314, - 45.591613 - ], - [ - -73.462065, - 45.590961 - ], - [ - -73.462195, - 45.590862 - ], - [ - -73.462294, - 45.590799 - ], - [ - -73.462386, - 45.590754 - ], - [ - -73.462519, - 45.590705 - ], - [ - -73.462602, - 45.590678 - ], - [ - -73.462706, - 45.590656 - ], - [ - -73.462813, - 45.590642 - ], - [ - -73.462888, - 45.590633 - ], - [ - -73.463001, - 45.590624 - ], - [ - -73.46316, - 45.59062 - ], - [ - -73.463269, - 45.590611 - ], - [ - -73.463357, - 45.590597 - ], - [ - -73.463462, - 45.590579 - ], - [ - -73.463571, - 45.590548 - ], - [ - -73.463709, - 45.590498 - ], - [ - -73.463772, - 45.590426 - ], - [ - -73.463826, - 45.590404 - ], - [ - -73.463931, - 45.590341 - ], - [ - -73.464069, - 45.590233 - ], - [ - -73.46414, - 45.59017 - ], - [ - -73.464647, - 45.589698 - ], - [ - -73.464762, - 45.589601 - ], - [ - -73.46517, - 45.589257 - ], - [ - -73.465623, - 45.588888 - ], - [ - -73.466111, - 45.588492 - ], - [ - -73.466543, - 45.588142 - ], - [ - -73.466439, - 45.588038 - ], - [ - -73.466116, - 45.587789 - ] - ] - }, - "id": 182, - "properties": { - "id": "99bb0b7f-3c95-46e1-809f-d82dee4481c3", - "data": { - "gtfs": { - "shape_id": "84_1_R" - }, - "segments": [ - { - "distanceMeters": 9324, - "travelTimeSeconds": 504 - }, - { - "distanceMeters": 383, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 15 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9971, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8347.563976383852, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 18.46, - "travelTimeWithoutDwellTimesSeconds": 540, - "operatingTimeWithLayoverTimeSeconds": 720, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 540, - "operatingSpeedWithLayoverMetersPerSecond": 13.85, - "averageSpeedWithoutDwellTimesMetersPerSecond": 18.46 - }, - "mode": "bus", - "name": "boul. De Montarville", - "color": "#A32638", - "nodes": [ - "4c755ece-2475-4915-941e-37859f0f391f", - "6460b11a-31ec-4bbc-b7b7-22be32195079", - "b2bf7d79-9175-4e1d-be9c-4f4140537e43", - "2f7a97d2-c790-4f58-9a63-010938bbaf69" - ], - "stops": [], - "line_id": "e597daaa-7703-4108-a2f9-fbf932e44edb", - "segments": [ - 0, - 113, - 138 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 182, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.466116, - 45.587789 - ], - [ - -73.463882, - 45.586067 - ], - [ - -73.463008, - 45.585396 - ], - [ - -73.462695, - 45.585153 - ], - [ - -73.462432, - 45.584973 - ], - [ - -73.46235, - 45.585062 - ], - [ - -73.461939, - 45.585508 - ], - [ - -73.461685, - 45.585787 - ], - [ - -73.46157, - 45.585914 - ], - [ - -73.461498, - 45.585994 - ], - [ - -73.461391, - 45.586115 - ], - [ - -73.461235, - 45.586304 - ], - [ - -73.461153, - 45.586394 - ], - [ - -73.46075, - 45.586842 - ], - [ - -73.460407, - 45.58722 - ], - [ - -73.46024, - 45.587403 - ], - [ - -73.460107, - 45.58755 - ], - [ - -73.459672, - 45.588027 - ], - [ - -73.459565, - 45.588139 - ], - [ - -73.459411, - 45.588319 - ], - [ - -73.45918, - 45.588576 - ], - [ - -73.458866, - 45.588918 - ], - [ - -73.458224, - 45.589642 - ], - [ - -73.458179, - 45.589697 - ], - [ - -73.457847, - 45.590109 - ], - [ - -73.457798, - 45.590177 - ], - [ - -73.457344, - 45.590807 - ], - [ - -73.457079, - 45.591212 - ], - [ - -73.456938, - 45.591427 - ], - [ - -73.45679, - 45.591652 - ], - [ - -73.456499, - 45.592179 - ], - [ - -73.456406, - 45.592363 - ], - [ - -73.456207, - 45.592759 - ], - [ - -73.456153, - 45.59288 - ], - [ - -73.455959, - 45.593326 - ], - [ - -73.455854, - 45.593569 - ], - [ - -73.455756, - 45.593816 - ], - [ - -73.455619, - 45.594225 - ], - [ - -73.455387, - 45.594185 - ], - [ - -73.455272, - 45.594164 - ], - [ - -73.455163, - 45.594144 - ], - [ - -73.455072, - 45.594122 - ], - [ - -73.455013, - 45.59409 - ], - [ - -73.454889, - 45.594009 - ], - [ - -73.454817, - 45.593955 - ], - [ - -73.454739, - 45.593883 - ], - [ - -73.454523, - 45.594018 - ], - [ - -73.454452, - 45.594099 - ], - [ - -73.454385, - 45.594198 - ], - [ - -73.454348, - 45.594256 - ], - [ - -73.454311, - 45.594418 - ], - [ - -73.454266, - 45.59466 - ], - [ - -73.45424, - 45.594796 - ], - [ - -73.454204, - 45.595062 - ], - [ - -73.454151, - 45.595322 - ], - [ - -73.454143, - 45.595367 - ], - [ - -73.454092, - 45.595664 - ], - [ - -73.453991, - 45.596137 - ], - [ - -73.453931, - 45.596308 - ], - [ - -73.453871, - 45.596596 - ], - [ - -73.453794, - 45.596785 - ], - [ - -73.453715, - 45.596906 - ], - [ - -73.453626, - 45.596997 - ], - [ - -73.453592, - 45.597032 - ], - [ - -73.453377, - 45.59718 - ], - [ - -73.452948, - 45.597441 - ], - [ - -73.452243, - 45.597868 - ], - [ - -73.451924, - 45.598053 - ], - [ - -73.45178, - 45.59812 - ], - [ - -73.451434, - 45.59821 - ], - [ - -73.451106, - 45.598269 - ], - [ - -73.450724, - 45.598339 - ], - [ - -73.450519, - 45.598376 - ], - [ - -73.450323, - 45.59838 - ], - [ - -73.449948, - 45.598342 - ], - [ - -73.449753, - 45.598322 - ], - [ - -73.449408, - 45.598272 - ], - [ - -73.44922, - 45.59824 - ], - [ - -73.448998, - 45.598218 - ], - [ - -73.448839, - 45.598249 - ], - [ - -73.448549, - 45.598398 - ], - [ - -73.448171, - 45.59861 - ], - [ - -73.448066, - 45.598669 - ], - [ - -73.447731, - 45.598856 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.446908, - 45.599337 - ], - [ - -73.446679, - 45.599485 - ], - [ - -73.446043, - 45.599863 - ], - [ - -73.445606, - 45.600133 - ], - [ - -73.445172, - 45.600385 - ], - [ - -73.445054, - 45.600456 - ], - [ - -73.444832, - 45.600591 - ], - [ - -73.444182, - 45.600973 - ], - [ - -73.443509, - 45.601378 - ], - [ - -73.443055, - 45.601648 - ], - [ - -73.442509, - 45.60198 - ], - [ - -73.441922, - 45.602327 - ], - [ - -73.441516, - 45.602542 - ], - [ - -73.44087, - 45.602836 - ], - [ - -73.438822, - 45.603769 - ], - [ - -73.438466, - 45.603935 - ], - [ - -73.438229, - 45.604044 - ], - [ - -73.437975, - 45.60416 - ], - [ - -73.437443, - 45.604403 - ], - [ - -73.436923, - 45.604637 - ], - [ - -73.436609, - 45.60478 - ], - [ - -73.436303, - 45.60492 - ], - [ - -73.433751, - 45.606088 - ], - [ - -73.433088, - 45.606393 - ], - [ - -73.432964, - 45.606448 - ], - [ - -73.432607, - 45.606605 - ], - [ - -73.432434, - 45.606672 - ], - [ - -73.43227, - 45.606721 - ], - [ - -73.431993, - 45.60678 - ], - [ - -73.431775, - 45.606798 - ], - [ - -73.431493, - 45.606793 - ], - [ - -73.430876, - 45.606707 - ], - [ - -73.430121, - 45.606599 - ], - [ - -73.429954, - 45.606572 - ], - [ - -73.429341, - 45.606472 - ], - [ - -73.429112, - 45.606427 - ], - [ - -73.42886, - 45.60635 - ], - [ - -73.42867, - 45.606274 - ], - [ - -73.428652, - 45.606264 - ], - [ - -73.428495, - 45.606184 - ], - [ - -73.428311, - 45.606067 - ], - [ - -73.428173, - 45.605959 - ], - [ - -73.427998, - 45.605828 - ], - [ - -73.427603, - 45.605522 - ], - [ - -73.42746, - 45.605399 - ], - [ - -73.427424, - 45.605353 - ], - [ - -73.427406, - 45.605312 - ], - [ - -73.427407, - 45.605278 - ], - [ - -73.427414, - 45.605262 - ], - [ - -73.427423, - 45.605237 - ], - [ - -73.427444, - 45.605211 - ], - [ - -73.427475, - 45.60518 - ], - [ - -73.428564, - 45.604483 - ], - [ - -73.428653, - 45.604427 - ], - [ - -73.42903, - 45.604191 - ], - [ - -73.429453, - 45.603926 - ], - [ - -73.429769, - 45.60373 - ], - [ - -73.429967, - 45.603607 - ], - [ - -73.430523, - 45.603252 - ], - [ - -73.430877, - 45.603027 - ], - [ - -73.431263, - 45.60278 - ], - [ - -73.432557, - 45.602301 - ], - [ - -73.432706, - 45.602245 - ], - [ - -73.433739, - 45.601863 - ], - [ - -73.434166, - 45.601679 - ], - [ - -73.434475, - 45.601531 - ], - [ - -73.434596, - 45.601477 - ], - [ - -73.43499, - 45.601122 - ], - [ - -73.435271, - 45.600843 - ], - [ - -73.435516, - 45.600609 - ], - [ - -73.435806, - 45.600335 - ], - [ - -73.435984, - 45.600152 - ], - [ - -73.436103, - 45.600029 - ], - [ - -73.436408, - 45.599746 - ], - [ - -73.43685, - 45.599305 - ], - [ - -73.437027, - 45.599139 - ], - [ - -73.437156, - 45.599026 - ], - [ - -73.43732, - 45.5989 - ], - [ - -73.437622, - 45.598721 - ], - [ - -73.437661, - 45.598701 - ], - [ - -73.438241, - 45.598406 - ], - [ - -73.438619, - 45.598226 - ], - [ - -73.43978, - 45.597624 - ], - [ - -73.439976, - 45.597521 - ], - [ - -73.440742, - 45.597138 - ], - [ - -73.441367, - 45.596828 - ], - [ - -73.441552, - 45.59672 - ], - [ - -73.441835, - 45.596541 - ], - [ - -73.442031, - 45.596415 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.442151, - 45.59567 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.439837, - 45.593937 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.437317, - 45.592072 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.436355, - 45.59135 - ], - [ - -73.436241, - 45.591437 - ], - [ - -73.43623, - 45.591445 - ], - [ - -73.435937, - 45.591669 - ], - [ - -73.435771, - 45.591809 - ], - [ - -73.435656, - 45.59193 - ], - [ - -73.435482, - 45.592133 - ], - [ - -73.435328, - 45.592303 - ], - [ - -73.435201, - 45.592416 - ], - [ - -73.435194, - 45.59242 - ], - [ - -73.434937, - 45.592614 - ], - [ - -73.434583, - 45.592879 - ], - [ - -73.434575, - 45.592883 - ], - [ - -73.434342, - 45.593054 - ], - [ - -73.434176, - 45.59318 - ], - [ - -73.433984, - 45.593306 - ], - [ - -73.433723, - 45.593472 - ], - [ - -73.433623, - 45.593526 - ], - [ - -73.433582, - 45.593589 - ], - [ - -73.433267, - 45.593751 - ], - [ - -73.43308, - 45.593591 - ], - [ - -73.432411, - 45.593022 - ], - [ - -73.432395, - 45.593009 - ], - [ - -73.431736, - 45.592481 - ], - [ - -73.431426, - 45.592216 - ], - [ - -73.430999, - 45.591887 - ], - [ - -73.430742, - 45.591724 - ], - [ - -73.430249, - 45.591315 - ], - [ - -73.430052, - 45.591144 - ], - [ - -73.430035, - 45.591102 - ], - [ - -73.429965, - 45.590937 - ], - [ - -73.429799, - 45.590246 - ], - [ - -73.429733, - 45.589972 - ], - [ - -73.429621, - 45.589502 - ], - [ - -73.429601, - 45.589438 - ], - [ - -73.429567, - 45.589376 - ], - [ - -73.429522, - 45.589319 - ], - [ - -73.429464, - 45.589267 - ], - [ - -73.429127, - 45.589004 - ], - [ - -73.429011, - 45.588919 - ], - [ - -73.429137, - 45.588834 - ], - [ - -73.429252, - 45.588761 - ], - [ - -73.429681, - 45.58849 - ], - [ - -73.430455, - 45.587999 - ], - [ - -73.430757, - 45.587808 - ], - [ - -73.43085, - 45.58775 - ], - [ - -73.431644, - 45.587248 - ], - [ - -73.431818, - 45.587179 - ], - [ - -73.431717, - 45.587092 - ], - [ - -73.431654, - 45.587036 - ], - [ - -73.431289, - 45.586718 - ], - [ - -73.430893, - 45.586393 - ], - [ - -73.430716, - 45.586245 - ], - [ - -73.430467, - 45.586051 - ], - [ - -73.430085, - 45.585745 - ], - [ - -73.429958, - 45.585646 - ], - [ - -73.429814, - 45.585537 - ], - [ - -73.429355, - 45.585183 - ], - [ - -73.426528, - 45.583004 - ], - [ - -73.426641, - 45.582922 - ], - [ - -73.426651, - 45.582915 - ], - [ - -73.427107, - 45.582619 - ], - [ - -73.427138, - 45.582598 - ], - [ - -73.42763, - 45.582284 - ], - [ - -73.428438, - 45.581777 - ], - [ - -73.428761, - 45.581574 - ], - [ - -73.429134, - 45.581335 - ], - [ - -73.429655, - 45.581003 - ], - [ - -73.429773, - 45.580926 - ], - [ - -73.42982, - 45.580902 - ], - [ - -73.430012, - 45.580805 - ], - [ - -73.430169, - 45.580742 - ], - [ - -73.430652, - 45.580544 - ], - [ - -73.431218, - 45.580311 - ], - [ - -73.431616, - 45.580122 - ], - [ - -73.431767, - 45.580048 - ], - [ - -73.4319, - 45.579983 - ], - [ - -73.432272, - 45.579794 - ], - [ - -73.432711, - 45.579565 - ], - [ - -73.43294, - 45.579444 - ], - [ - -73.433076, - 45.579354 - ], - [ - -73.433199, - 45.579264 - ], - [ - -73.43335, - 45.57912 - ], - [ - -73.433401, - 45.579067 - ], - [ - -73.433444, - 45.579021 - ], - [ - -73.43354, - 45.57889 - ], - [ - -73.433689, - 45.578652 - ], - [ - -73.433813, - 45.578436 - ], - [ - -73.434048, - 45.57804 - ], - [ - -73.434306, - 45.577609 - ], - [ - -73.434583, - 45.577154 - ], - [ - -73.434669, - 45.577024 - ], - [ - -73.434836, - 45.576741 - ], - [ - -73.435093, - 45.576309 - ], - [ - -73.435197, - 45.576138 - ], - [ - -73.43534, - 45.575913 - ], - [ - -73.43543, - 45.575778 - ], - [ - -73.435467, - 45.575724 - ], - [ - -73.435699, - 45.575382 - ], - [ - -73.435758, - 45.575293 - ], - [ - -73.43596, - 45.574982 - ], - [ - -73.436118, - 45.574717 - ], - [ - -73.436179, - 45.574618 - ], - [ - -73.436268, - 45.574456 - ], - [ - -73.436584, - 45.573804 - ], - [ - -73.436743, - 45.573842 - ], - [ - -73.437066, - 45.573921 - ], - [ - -73.437342, - 45.573989 - ], - [ - -73.438216, - 45.5742 - ], - [ - -73.438625, - 45.5743 - ], - [ - -73.439097, - 45.574403 - ], - [ - -73.43935, - 45.574476 - ], - [ - -73.43947, - 45.574525 - ], - [ - -73.439615, - 45.574593 - ], - [ - -73.439719, - 45.574665 - ], - [ - -73.439783, - 45.574716 - ], - [ - -73.440036, - 45.574917 - ], - [ - -73.440381, - 45.575187 - ], - [ - -73.440733, - 45.575462 - ], - [ - -73.441078, - 45.575736 - ], - [ - -73.441396, - 45.575988 - ], - [ - -73.441907, - 45.576399 - ], - [ - -73.44214, - 45.576587 - ], - [ - -73.44223, - 45.576659 - ], - [ - -73.442323, - 45.576754 - ], - [ - -73.442391, - 45.576835 - ], - [ - -73.442427, - 45.576893 - ], - [ - -73.442456, - 45.576961 - ], - [ - -73.442584, - 45.577456 - ], - [ - -73.442632, - 45.577699 - ], - [ - -73.442692, - 45.577982 - ], - [ - -73.442754, - 45.578324 - ], - [ - -73.442755, - 45.578328 - ], - [ - -73.442822, - 45.57868 - ], - [ - -73.44301, - 45.579552 - ], - [ - -73.443122, - 45.580146 - ], - [ - -73.443169, - 45.580299 - ], - [ - -73.443208, - 45.580496 - ], - [ - -73.443264, - 45.580785 - ], - [ - -73.443359, - 45.581199 - ], - [ - -73.443375, - 45.581348 - ], - [ - -73.443437, - 45.581532 - ], - [ - -73.443489, - 45.581649 - ], - [ - -73.443575, - 45.581784 - ], - [ - -73.443724, - 45.581969 - ], - [ - -73.443826, - 45.582072 - ], - [ - -73.445192, - 45.583151 - ], - [ - -73.445199, - 45.583169 - ], - [ - -73.445212, - 45.583213 - ], - [ - -73.445216, - 45.583229 - ], - [ - -73.445297, - 45.583292 - ], - [ - -73.44537, - 45.583351 - ], - [ - -73.445826, - 45.583707 - ], - [ - -73.44592, - 45.583788 - ], - [ - -73.446073, - 45.583824 - ], - [ - -73.446219, - 45.58371 - ], - [ - -73.446281, - 45.583662 - ], - [ - -73.446365, - 45.583594 - ], - [ - -73.446509, - 45.583477 - ], - [ - -73.446663, - 45.583334 - ], - [ - -73.446759, - 45.583239 - ], - [ - -73.446885, - 45.583095 - ], - [ - -73.447026, - 45.582915 - ], - [ - -73.44712, - 45.582776 - ], - [ - -73.447141, - 45.582738 - ], - [ - -73.447216, - 45.582605 - ], - [ - -73.447288, - 45.582456 - ], - [ - -73.447348, - 45.582322 - ], - [ - -73.447422, - 45.58211 - ], - [ - -73.447475, - 45.581885 - ], - [ - -73.447497, - 45.581732 - ], - [ - -73.447521, - 45.581602 - ], - [ - -73.447516, - 45.581462 - ], - [ - -73.447513, - 45.581287 - ], - [ - -73.447477, - 45.581057 - ], - [ - -73.447286, - 45.580117 - ], - [ - -73.447207, - 45.57973 - ], - [ - -73.447144, - 45.579424 - ], - [ - -73.447056, - 45.578992 - ], - [ - -73.447354, - 45.578963 - ], - [ - -73.447608, - 45.578938 - ], - [ - -73.448031, - 45.578893 - ], - [ - -73.44852, - 45.578844 - ], - [ - -73.449074, - 45.578786 - ], - [ - -73.450095, - 45.578683 - ], - [ - -73.450109, - 45.578683 - ], - [ - -73.450463, - 45.578688 - ], - [ - -73.450661, - 45.578706 - ], - [ - -73.450775, - 45.578719 - ], - [ - -73.450895, - 45.578737 - ], - [ - -73.451093, - 45.578791 - ], - [ - -73.451234, - 45.578836 - ], - [ - -73.451309, - 45.578863 - ], - [ - -73.451495, - 45.578945 - ], - [ - -73.451582, - 45.57899 - ], - [ - -73.451744, - 45.579089 - ], - [ - -73.451869, - 45.579174 - ], - [ - -73.452049, - 45.579311 - ], - [ - -73.452082, - 45.579336 - ], - [ - -73.452313, - 45.579516 - ], - [ - -73.452549, - 45.579701 - ], - [ - -73.453063, - 45.580097 - ], - [ - -73.453179, - 45.580196 - ], - [ - -73.453622, - 45.580543 - ], - [ - -73.453903, - 45.580759 - ], - [ - -73.45429, - 45.581056 - ], - [ - -73.455188, - 45.581753 - ], - [ - -73.455648, - 45.582118 - ], - [ - -73.456087, - 45.582456 - ], - [ - -73.456184, - 45.582528 - ], - [ - -73.456409, - 45.582702 - ], - [ - -73.457491, - 45.583541 - ], - [ - -73.458062, - 45.583986 - ], - [ - -73.458301, - 45.584171 - ], - [ - -73.458672, - 45.584459 - ], - [ - -73.459229, - 45.584891 - ], - [ - -73.459558, - 45.585148 - ], - [ - -73.459766, - 45.58531 - ], - [ - -73.459861, - 45.585382 - ], - [ - -73.460007, - 45.585499 - ], - [ - -73.460666, - 45.586014 - ], - [ - -73.461153, - 45.586394 - ], - [ - -73.461235, - 45.586304 - ], - [ - -73.461244, - 45.586293 - ], - [ - -73.461391, - 45.586115 - ], - [ - -73.461498, - 45.585994 - ], - [ - -73.461685, - 45.585787 - ], - [ - -73.461939, - 45.585508 - ], - [ - -73.462432, - 45.584973 - ], - [ - -73.462695, - 45.585153 - ], - [ - -73.463008, - 45.585396 - ], - [ - -73.463882, - 45.586067 - ], - [ - -73.466439, - 45.588038 - ], - [ - -73.466473, - 45.588072 - ], - [ - -73.466543, - 45.588142 - ], - [ - -73.466111, - 45.588492 - ], - [ - -73.465623, - 45.588888 - ], - [ - -73.46517, - 45.589257 - ], - [ - -73.464647, - 45.589698 - ], - [ - -73.46414, - 45.59017 - ], - [ - -73.464069, - 45.590233 - ], - [ - -73.463931, - 45.590341 - ], - [ - -73.463826, - 45.590404 - ], - [ - -73.463772, - 45.590426 - ], - [ - -73.463577, - 45.590467 - ], - [ - -73.463489, - 45.590489 - ], - [ - -73.463333, - 45.590507 - ], - [ - -73.463163, - 45.590516 - ], - [ - -73.462973, - 45.590525 - ], - [ - -73.462784, - 45.590539 - ], - [ - -73.462612, - 45.59057 - ], - [ - -73.46246, - 45.590601 - ], - [ - -73.462403, - 45.590622 - ], - [ - -73.462308, - 45.590655 - ], - [ - -73.462124, - 45.59075 - ], - [ - -73.462023, - 45.590822 - ], - [ - -73.461943, - 45.590894 - ], - [ - -73.461223, - 45.591488 - ], - [ - -73.461175, - 45.591528 - ], - [ - -73.46107, - 45.591613 - ], - [ - -73.460957, - 45.591717 - ], - [ - -73.460805, - 45.591865 - ], - [ - -73.460701, - 45.591996 - ], - [ - -73.460612, - 45.592117 - ], - [ - -73.460536, - 45.592252 - ], - [ - -73.460484, - 45.592382 - ], - [ - -73.46046, - 45.592459 - ], - [ - -73.46044, - 45.592544 - ], - [ - -73.460424, - 45.592634 - ], - [ - -73.460424, - 45.592715 - ], - [ - -73.460428, - 45.592832 - ], - [ - -73.46044, - 45.592958 - ], - [ - -73.460595, - 45.593596 - ], - [ - -73.460755, - 45.594214 - ], - [ - -73.460803, - 45.594245 - ], - [ - -73.460875, - 45.594286 - ], - [ - -73.460951, - 45.594317 - ], - [ - -73.460983, - 45.594327 - ], - [ - -73.461075, - 45.594358 - ], - [ - -73.461222, - 45.594399 - ], - [ - -73.461303, - 45.594263 - ], - [ - -73.461665, - 45.593593 - ], - [ - -73.461732, - 45.593494 - ], - [ - -73.461974, - 45.593139 - ], - [ - -73.462288, - 45.59272 - ], - [ - -73.462683, - 45.592307 - ], - [ - -73.463002, - 45.59201 - ], - [ - -73.463177, - 45.591852 - ], - [ - -73.463511, - 45.591551 - ], - [ - -73.464164, - 45.590993 - ], - [ - -73.464488, - 45.590697 - ], - [ - -73.464968, - 45.59022 - ], - [ - -73.465402, - 45.589802 - ], - [ - -73.465585, - 45.589586 - ], - [ - -73.46611, - 45.589143 - ], - [ - -73.468548, - 45.587089 - ], - [ - -73.468925, - 45.586766 - ], - [ - -73.469282, - 45.586424 - ], - [ - -73.469476, - 45.586217 - ], - [ - -73.469514, - 45.586173 - ], - [ - -73.46977, - 45.585875 - ], - [ - -73.470065, - 45.585497 - ], - [ - -73.470208, - 45.585295 - ], - [ - -73.470515, - 45.584795 - ], - [ - -73.470777, - 45.584346 - ], - [ - -73.470818, - 45.584266 - ], - [ - -73.471151, - 45.583659 - ], - [ - -73.471441, - 45.583163 - ], - [ - -73.471782, - 45.582588 - ], - [ - -73.471817, - 45.58253 - ], - [ - -73.471999, - 45.582223 - ], - [ - -73.472179, - 45.58194 - ], - [ - -73.472331, - 45.581716 - ], - [ - -73.472649, - 45.581329 - ], - [ - -73.47273, - 45.58124 - ], - [ - -73.472825, - 45.58114 - ], - [ - -73.473026, - 45.580958 - ], - [ - -73.473162, - 45.580835 - ], - [ - -73.473456, - 45.580601 - ], - [ - -73.473548, - 45.580529 - ], - [ - -73.474056, - 45.580187 - ], - [ - -73.474808, - 45.579703 - ], - [ - -73.474914, - 45.579634 - ], - [ - -73.475349, - 45.579354 - ], - [ - -73.475514, - 45.57924 - ], - [ - -73.475748, - 45.579059 - ], - [ - -73.476005, - 45.578855 - ], - [ - -73.476092, - 45.578785 - ], - [ - -73.476311, - 45.578613 - ], - [ - -73.476531, - 45.578426 - ], - [ - -73.477316, - 45.577756 - ], - [ - -73.478619, - 45.576654 - ], - [ - -73.478746, - 45.576546 - ], - [ - -73.484311, - 45.57178 - ], - [ - -73.485291, - 45.570941 - ], - [ - -73.485924, - 45.570374 - ], - [ - -73.486543, - 45.569794 - ], - [ - -73.487144, - 45.5692 - ], - [ - -73.487404, - 45.56893 - ], - [ - -73.487725, - 45.568597 - ], - [ - -73.488283, - 45.567985 - ], - [ - -73.489005, - 45.567148 - ], - [ - -73.489524, - 45.56651 - ], - [ - -73.490025, - 45.565857 - ], - [ - -73.490348, - 45.565416 - ], - [ - -73.490386, - 45.565361 - ], - [ - -73.490811, - 45.564746 - ], - [ - -73.492757, - 45.561799 - ], - [ - -73.492857, - 45.561658 - ], - [ - -73.493231, - 45.561129 - ], - [ - -73.493558, - 45.560688 - ], - [ - -73.493892, - 45.560256 - ], - [ - -73.494237, - 45.559829 - ], - [ - -73.495756, - 45.557998 - ], - [ - -73.497576, - 45.555807 - ], - [ - -73.499922, - 45.552981 - ], - [ - -73.501151, - 45.551492 - ], - [ - -73.501185, - 45.551451 - ], - [ - -73.501844, - 45.550646 - ], - [ - -73.502872, - 45.549445 - ], - [ - -73.503379, - 45.548883 - ], - [ - -73.503558, - 45.548684 - ], - [ - -73.506777, - 45.545262 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.509561, - 45.542397 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.512103, - 45.540351 - ], - [ - -73.513737, - 45.539183 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.516706, - 45.536713 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.519972, - 45.53288 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523209, - 45.53011 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523837, - 45.530517 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.520207, - 45.529538 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.518113, - 45.527978 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.518296, - 45.525369 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520062, - 45.523395 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521985, - 45.524134 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 183, - "properties": { - "id": "e9453549-3239-4b07-93e8-78ed7c02fab2", - "data": { - "gtfs": { - "shape_id": "84_1_A" - }, - "segments": [ - { - "distanceMeters": 437, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 464, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 421, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 490, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 504, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 575, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 808, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 579, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 402, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 530, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 493, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 459, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 481, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 597, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 497, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 508, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 566, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 641, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 453, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 479, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 344, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 424, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 444, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 397, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 451, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 701, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 399, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 461, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 455, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 466, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 561, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 482, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 386, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 497, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 413, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 471, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 413, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 501, - "travelTimeSeconds": 33 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 25820, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 0, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 14.34, - "travelTimeWithoutDwellTimesSeconds": 1800, - "operatingTimeWithLayoverTimeSeconds": 1980, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1800, - "operatingSpeedWithLayoverMetersPerSecond": 13.04, - "averageSpeedWithoutDwellTimesMetersPerSecond": 14.34 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "2f7a97d2-c790-4f58-9a63-010938bbaf69", - "b54db9a8-0c8c-43a8-a385-bc532fde3f70", - "21aac851-6052-4e4d-8167-df2d9a876338", - "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", - "c650007a-bdeb-4831-9df5-833406e44887", - "8babca8c-ebff-46bc-b0c6-b6576c4fada6", - "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", - "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", - "50c385af-a7f1-479f-b40d-4ed198aca8ce", - "b32eb408-e9c7-49ab-afd7-56523f4ec990", - "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", - "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", - "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "6b55fd05-7687-457e-ae9d-e87027c7100f", - "494d9db6-32c6-4aa3-9c11-91eba915c58f", - "f7429ca8-1ccc-41e7-acab-a5d3915affbb", - "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", - "e134e428-8d59-4d84-966a-ce83afff1c1c", - "7ca4f3b1-99df-4499-964b-1702513ad59f", - "7d34a327-717a-432e-93f5-7310ac20c2c2", - "abeb197b-490c-4d67-8abe-37d08d73ce70", - "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", - "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", - "628308c5-3a00-44cb-908b-068616e8e618", - "47dc43f6-90db-4837-be84-0b5d8a2becb4", - "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", - "fc32be78-9480-4dfc-b10c-475dc000dd04", - "0872c388-8faf-4852-b4ce-cf3f6312e0ef", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "ed16ff8f-f2f4-4914-b93b-f48229e580b7", - "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", - "de3d06d6-88af-49e3-b183-9464b2f111c8", - "3613b472-6055-4b55-9c89-01a451d82804", - "4cd6eb13-aeec-4716-a3d3-8e1a38389723", - "9ad04c6c-abc1-49fe-8f36-db6146dd5c5c", - "3dedf179-3478-4b4d-b706-36e0a8981094", - "3bd4e28f-2392-4d87-96de-a2ab53d75020", - "ba6e04e1-77fc-4b3f-86d2-fd956b418882", - "3ff2d59e-aa78-4d80-b1c5-f7852a289411", - "dda3c3c1-6952-475f-8547-789fb757f7c6", - "b09cf260-c832-4cf7-bb1b-ef1c96c3308c", - "969d12ef-c40c-4428-9c70-2251a9d71a5e", - "d63304a9-15dd-4cf4-8ec7-3f7d0c080252", - "589841be-b3c7-4f02-a8e7-b24569959def", - "3f07914c-7958-4cd1-a0a6-c2c9e04cc913", - "b94a5730-dab3-4715-a12c-41d1c300a3ab", - "7b512bac-ad2d-4d5a-87d8-173290a7b311", - "44ce6da8-ee79-4e09-9c16-f31566643c0c", - "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", - "43c9714a-9286-4827-a621-a7c2f8cbdfb6", - "5d689515-eb8c-46f5-b76c-9783188effbb", - "b0a54de7-81a4-4a54-ac92-70b7a1a6f8cd", - "a6014278-4b2c-4dc8-a0d9-22c0ac11eb1c", - "3370bd8e-b7b2-4aab-8679-28f57be8da19", - "a3ce54d5-25e0-4e55-a21f-2d2c2139447f", - "1f0a0267-b7e7-48ae-bd8a-a1242dd984ed", - "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", - "21aac851-6052-4e4d-8167-df2d9a876338", - "b54db9a8-0c8c-43a8-a385-bc532fde3f70", - "2f7a97d2-c790-4f58-9a63-010938bbaf69" - ], - "stops": [], - "line_id": "e597daaa-7703-4108-a2f9-fbf932e44edb", - "segments": [ - 0, - 5, - 14, - 23, - 34, - 55, - 71, - 82, - 90, - 98, - 101, - 109, - 133, - 141, - 146, - 164, - 180, - 188, - 213, - 223, - 235, - 248, - 255, - 274, - 290, - 296, - 306, - 323, - 328, - 355, - 367, - 388, - 401, - 414, - 424, - 443, - 468, - 478, - 485, - 490, - 500, - 512, - 522, - 524, - 529, - 536, - 539, - 544, - 545, - 548, - 551, - 553, - 558, - 562, - 563, - 571, - 573, - 583, - 611, - 616, - 638, - 652 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 183, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.417166, - 45.573686 - ], - [ - -73.417361, - 45.573566 - ], - [ - -73.417844, - 45.573274 - ], - [ - -73.418465, - 45.57287 - ], - [ - -73.418508, - 45.572842 - ], - [ - -73.418867, - 45.572673 - ], - [ - -73.419305, - 45.572484 - ], - [ - -73.419819, - 45.572339 - ], - [ - -73.420285, - 45.572239 - ], - [ - -73.420304, - 45.572236 - ], - [ - -73.420344, - 45.572231 - ], - [ - -73.420818, - 45.572175 - ], - [ - -73.421486, - 45.572145 - ], - [ - -73.42168, - 45.572163 - ], - [ - -73.422173, - 45.572209 - ], - [ - -73.422755, - 45.572304 - ], - [ - -73.423131, - 45.572412 - ], - [ - -73.423691, - 45.572591 - ], - [ - -73.423823, - 45.572648 - ], - [ - -73.423927, - 45.572694 - ], - [ - -73.424736, - 45.573135 - ], - [ - -73.424874, - 45.573252 - ], - [ - -73.425125, - 45.573486 - ], - [ - -73.425353, - 45.573729 - ], - [ - -73.425532, - 45.573954 - ], - [ - -73.425663, - 45.574161 - ], - [ - -73.425717, - 45.574247 - ], - [ - -73.426126, - 45.574157 - ], - [ - -73.426291, - 45.574126 - ], - [ - -73.426552, - 45.57418 - ], - [ - -73.426825, - 45.574234 - ], - [ - -73.427053, - 45.574401 - ], - [ - -73.427243, - 45.574532 - ], - [ - -73.427298, - 45.57457 - ], - [ - -73.427307, - 45.574576 - ], - [ - -73.427385, - 45.574631 - ], - [ - -73.426917, - 45.574981 - ], - [ - -73.426842, - 45.575057 - ], - [ - -73.426691, - 45.57521 - ], - [ - -73.426479, - 45.575525 - ], - [ - -73.426344, - 45.575782 - ], - [ - -73.426267, - 45.575971 - ], - [ - -73.426217, - 45.576146 - ], - [ - -73.426194, - 45.576312 - ], - [ - -73.426191, - 45.576488 - ], - [ - -73.426194, - 45.576722 - ], - [ - -73.426236, - 45.576978 - ], - [ - -73.426309, - 45.577172 - ], - [ - -73.426471, - 45.577494 - ], - [ - -73.42652, - 45.57759 - ], - [ - -73.426569, - 45.577671 - ], - [ - -73.426668, - 45.577779 - ], - [ - -73.426759, - 45.577874 - ], - [ - -73.426905, - 45.578027 - ], - [ - -73.427025, - 45.578144 - ], - [ - -73.427164, - 45.578266 - ], - [ - -73.42839, - 45.579198 - ], - [ - -73.428455, - 45.579247 - ], - [ - -73.429652, - 45.580152 - ], - [ - -73.4299, - 45.580427 - ], - [ - -73.430074, - 45.58063 - ], - [ - -73.430169, - 45.580742 - ], - [ - -73.430652, - 45.580544 - ], - [ - -73.431047, - 45.580381 - ], - [ - -73.431218, - 45.580311 - ], - [ - -73.43177, - 45.580734 - ], - [ - -73.431814, - 45.580767 - ], - [ - -73.432012, - 45.580914 - ], - [ - -73.432359, - 45.581193 - ], - [ - -73.432709, - 45.581473 - ], - [ - -73.433005, - 45.581702 - ], - [ - -73.433016, - 45.581711 - ], - [ - -73.433315, - 45.58195 - ], - [ - -73.434334, - 45.58272 - ], - [ - -73.434479, - 45.582859 - ], - [ - -73.43455, - 45.582945 - ], - [ - -73.434594, - 45.583057 - ], - [ - -73.434593, - 45.583147 - ], - [ - -73.434573, - 45.58326 - ], - [ - -73.434532, - 45.583372 - ], - [ - -73.434475, - 45.583458 - ], - [ - -73.434434, - 45.58351 - ], - [ - -73.434386, - 45.58357 - ], - [ - -73.43465, - 45.583624 - ], - [ - -73.434811, - 45.583651 - ], - [ - -73.434837, - 45.583656 - ], - [ - -73.435024, - 45.583692 - ], - [ - -73.435442, - 45.583791 - ], - [ - -73.435641, - 45.583881 - ], - [ - -73.435838, - 45.584003 - ], - [ - -73.437185, - 45.585048 - ], - [ - -73.437636, - 45.585399 - ], - [ - -73.438042, - 45.585678 - ], - [ - -73.4381, - 45.585741 - ], - [ - -73.438139, - 45.585831 - ], - [ - -73.438171, - 45.586006 - ], - [ - -73.43819, - 45.586156 - ], - [ - -73.438207, - 45.586281 - ], - [ - -73.438254, - 45.586654 - ], - [ - -73.438278, - 45.58696 - ], - [ - -73.438322, - 45.587343 - ], - [ - -73.438347, - 45.587571 - ], - [ - -73.438361, - 45.587689 - ], - [ - -73.438397, - 45.58804 - ], - [ - -73.438434, - 45.588373 - ], - [ - -73.438459, - 45.588481 - ], - [ - -73.438525, - 45.588647 - ], - [ - -73.438608, - 45.58876 - ], - [ - -73.438667, - 45.588827 - ], - [ - -73.438743, - 45.588908 - ], - [ - -73.438814, - 45.588976 - ], - [ - -73.439357, - 45.589421 - ], - [ - -73.43944, - 45.589489 - ], - [ - -73.439556, - 45.58957 - ], - [ - -73.439699, - 45.589468 - ], - [ - -73.43977, - 45.589417 - ], - [ - -73.43999, - 45.589251 - ], - [ - -73.440244, - 45.589057 - ], - [ - -73.440356, - 45.588972 - ], - [ - -73.440499, - 45.588855 - ], - [ - -73.440849, - 45.588559 - ], - [ - -73.441414, - 45.588033 - ], - [ - -73.441626, - 45.587839 - ], - [ - -73.442055, - 45.587448 - ], - [ - -73.442542, - 45.586998 - ], - [ - -73.443381, - 45.586235 - ], - [ - -73.4435, - 45.586126 - ], - [ - -73.444473, - 45.585236 - ], - [ - -73.444685, - 45.585042 - ], - [ - -73.445533, - 45.584264 - ], - [ - -73.445859, - 45.583998 - ], - [ - -73.446073, - 45.583824 - ], - [ - -73.446281, - 45.583662 - ], - [ - -73.446365, - 45.583594 - ], - [ - -73.446509, - 45.583477 - ], - [ - -73.446663, - 45.583334 - ], - [ - -73.446759, - 45.583239 - ], - [ - -73.446885, - 45.583095 - ], - [ - -73.447026, - 45.582915 - ], - [ - -73.44712, - 45.582776 - ], - [ - -73.447192, - 45.582647 - ], - [ - -73.447216, - 45.582605 - ], - [ - -73.447288, - 45.582456 - ], - [ - -73.447435, - 45.582484 - ], - [ - -73.447444, - 45.582485 - ], - [ - -73.447893, - 45.582578 - ], - [ - -73.448106, - 45.582673 - ], - [ - -73.44829, - 45.582785 - ], - [ - -73.448524, - 45.582986 - ], - [ - -73.448601, - 45.583051 - ], - [ - -73.448755, - 45.583159 - ], - [ - -73.448893, - 45.583258 - ], - [ - -73.450205, - 45.584302 - ], - [ - -73.45063, - 45.58464 - ], - [ - -73.450731, - 45.584712 - ], - [ - -73.450841, - 45.584784 - ], - [ - -73.450993, - 45.584856 - ], - [ - -73.451251, - 45.58494 - ], - [ - -73.451368, - 45.584978 - ], - [ - -73.451209, - 45.585217 - ], - [ - -73.451142, - 45.58532 - ], - [ - -73.450986, - 45.585558 - ], - [ - -73.45054, - 45.586242 - ], - [ - -73.450427, - 45.586473 - ], - [ - -73.450426, - 45.586476 - ], - [ - -73.450392, - 45.586557 - ], - [ - -73.450263, - 45.586754 - ], - [ - -73.449511, - 45.58791 - ], - [ - -73.449458, - 45.58799 - ], - [ - -73.449407, - 45.588068 - ], - [ - -73.449275, - 45.588284 - ], - [ - -73.44924, - 45.588342 - ], - [ - -73.449234, - 45.588387 - ], - [ - -73.449252, - 45.588411 - ], - [ - -73.449272, - 45.588437 - ], - [ - -73.44976, - 45.588831 - ], - [ - -73.449846, - 45.5889 - ], - [ - -73.45019, - 45.589166 - ], - [ - -73.450502, - 45.589414 - ], - [ - -73.450902, - 45.58972 - ], - [ - -73.451407, - 45.590116 - ], - [ - -73.451448, - 45.590149 - ], - [ - -73.451698, - 45.59035 - ], - [ - -73.452327, - 45.590854 - ], - [ - -73.452695, - 45.591147 - ], - [ - -73.45292, - 45.591326 - ], - [ - -73.453034, - 45.591417 - ], - [ - -73.453444, - 45.591745 - ], - [ - -73.453948, - 45.592143 - ], - [ - -73.454347, - 45.592458 - ], - [ - -73.454414, - 45.592511 - ], - [ - -73.454848, - 45.592862 - ], - [ - -73.455223, - 45.593082 - ], - [ - -73.455854, - 45.593569 - ], - [ - -73.455819, - 45.593656 - ], - [ - -73.455756, - 45.593816 - ], - [ - -73.455693, - 45.594006 - ], - [ - -73.455619, - 45.594225 - ], - [ - -73.455387, - 45.594185 - ], - [ - -73.455163, - 45.594144 - ], - [ - -73.455072, - 45.594122 - ], - [ - -73.455013, - 45.59409 - ], - [ - -73.454889, - 45.594009 - ], - [ - -73.454817, - 45.593955 - ], - [ - -73.454739, - 45.593883 - ], - [ - -73.454523, - 45.594018 - ], - [ - -73.454452, - 45.594099 - ], - [ - -73.454385, - 45.594198 - ], - [ - -73.454348, - 45.594256 - ], - [ - -73.454311, - 45.594418 - ], - [ - -73.45429, - 45.594533 - ], - [ - -73.454266, - 45.59466 - ], - [ - -73.45424, - 45.594796 - ], - [ - -73.454226, - 45.594898 - ], - [ - -73.454204, - 45.595062 - ], - [ - -73.454151, - 45.595322 - ], - [ - -73.454092, - 45.595664 - ], - [ - -73.453999, - 45.596101 - ], - [ - -73.453991, - 45.596137 - ], - [ - -73.453931, - 45.596308 - ], - [ - -73.453871, - 45.596596 - ], - [ - -73.453794, - 45.596785 - ], - [ - -73.453715, - 45.596906 - ], - [ - -73.453626, - 45.596997 - ], - [ - -73.453592, - 45.597032 - ], - [ - -73.453377, - 45.59718 - ], - [ - -73.452948, - 45.597441 - ], - [ - -73.452243, - 45.597868 - ], - [ - -73.452056, - 45.597977 - ], - [ - -73.451924, - 45.598053 - ], - [ - -73.45178, - 45.59812 - ], - [ - -73.451434, - 45.59821 - ], - [ - -73.451106, - 45.598269 - ], - [ - -73.450519, - 45.598376 - ], - [ - -73.450323, - 45.59838 - ], - [ - -73.449948, - 45.598342 - ], - [ - -73.449753, - 45.598322 - ], - [ - -73.449408, - 45.598272 - ], - [ - -73.44922, - 45.59824 - ], - [ - -73.448998, - 45.598218 - ], - [ - -73.448839, - 45.598249 - ], - [ - -73.448684, - 45.598328 - ], - [ - -73.448549, - 45.598398 - ], - [ - -73.448171, - 45.59861 - ], - [ - -73.447731, - 45.598856 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447421, - 45.599401 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.448106, - 45.599967 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449825, - 45.601331 - ], - [ - -73.449842, - 45.601358 - ], - [ - -73.449882, - 45.601394 - ], - [ - -73.449937, - 45.601432 - ], - [ - -73.449974, - 45.601468 - ], - [ - -73.450006, - 45.601497 - ], - [ - -73.450033, - 45.601528 - ], - [ - -73.450045, - 45.601571 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.450329, - 45.600811 - ], - [ - -73.450306, - 45.600781 - ], - [ - -73.45028, - 45.600747 - ], - [ - -73.45017, - 45.600666 - ], - [ - -73.450081, - 45.60062 - ], - [ - -73.449968, - 45.600603 - ], - [ - -73.449925, - 45.600607 - ], - [ - -73.449868, - 45.600621 - ], - [ - -73.449802, - 45.600661 - ], - [ - -73.449715, - 45.600713 - ], - [ - -73.449674, - 45.600743 - ], - [ - -73.449661, - 45.600772 - ], - [ - -73.449666, - 45.600812 - ], - [ - -73.449924, - 45.601045 - ], - [ - -73.449978, - 45.601072 - ], - [ - -73.450055, - 45.601083 - ], - [ - -73.45017, - 45.60109 - ], - [ - -73.450263, - 45.601099 - ], - [ - -73.450328, - 45.601118 - ], - [ - -73.450379, - 45.601155 - ], - [ - -73.450393, - 45.601201 - ], - [ - -73.450376, - 45.60125 - ], - [ - -73.450362, - 45.601293 - ], - [ - -73.450349, - 45.601366 - ], - [ - -73.450328, - 45.601396 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450295, - 45.60142 - ], - [ - -73.450274, - 45.60143 - ], - [ - -73.450229, - 45.60144 - ], - [ - -73.450195, - 45.601446 - ], - [ - -73.450161, - 45.601455 - ], - [ - -73.450131, - 45.601466 - ], - [ - -73.450095, - 45.601482 - ], - [ - -73.450073, - 45.601501 - ], - [ - -73.450052, - 45.601522 - ], - [ - -73.450048, - 45.601541 - ], - [ - -73.450048, - 45.601565 - ], - [ - -73.450051, - 45.601586 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450683, - 45.601629 - ], - [ - -73.45076, - 45.601581 - ], - [ - -73.450865, - 45.60153 - ], - [ - -73.451136, - 45.601427 - ], - [ - -73.451322, - 45.601341 - ], - [ - -73.45143, - 45.601269 - ], - [ - -73.451545, - 45.601187 - ], - [ - -73.451753, - 45.601 - ], - [ - -73.451762, - 45.60099 - ], - [ - -73.451831, - 45.600914 - ], - [ - -73.451899, - 45.600828 - ], - [ - -73.451961, - 45.600734 - ], - [ - -73.452054, - 45.600554 - ], - [ - -73.452082, - 45.600442 - ], - [ - -73.452078, - 45.600293 - ], - [ - -73.452054, - 45.600172 - ], - [ - -73.45194, - 45.599798 - ], - [ - -73.451915, - 45.599672 - ], - [ - -73.451904, - 45.599524 - ], - [ - -73.451926, - 45.59938 - ], - [ - -73.451964, - 45.599267 - ], - [ - -73.452063, - 45.599123 - ], - [ - -73.452183, - 45.598993 - ], - [ - -73.452318, - 45.598881 - ], - [ - -73.452477, - 45.598768 - ], - [ - -73.452963, - 45.598458 - ], - [ - -73.45458, - 45.597401 - ], - [ - -73.459437, - 45.594497 - ], - [ - -73.459888, - 45.594213 - ], - [ - -73.46035, - 45.593903 - ], - [ - -73.460702, - 45.593647 - ], - [ - -73.461218, - 45.593251 - ], - [ - -73.46178, - 45.592783 - ], - [ - -73.465585, - 45.589586 - ], - [ - -73.468548, - 45.587089 - ], - [ - -73.468925, - 45.586766 - ], - [ - -73.469282, - 45.586424 - ], - [ - -73.469476, - 45.586217 - ], - [ - -73.46977, - 45.585875 - ], - [ - -73.470065, - 45.585497 - ], - [ - -73.470208, - 45.585295 - ], - [ - -73.470515, - 45.584795 - ], - [ - -73.470777, - 45.584346 - ], - [ - -73.470818, - 45.584266 - ], - [ - -73.471151, - 45.583659 - ], - [ - -73.471441, - 45.583163 - ], - [ - -73.471782, - 45.582588 - ], - [ - -73.471999, - 45.582223 - ], - [ - -73.472179, - 45.58194 - ], - [ - -73.472331, - 45.581716 - ], - [ - -73.472649, - 45.581329 - ], - [ - -73.47273, - 45.58124 - ], - [ - -73.472825, - 45.58114 - ], - [ - -73.473026, - 45.580958 - ], - [ - -73.473162, - 45.580835 - ], - [ - -73.473456, - 45.580601 - ], - [ - -73.473548, - 45.580529 - ], - [ - -73.474056, - 45.580187 - ], - [ - -73.474914, - 45.579634 - ], - [ - -73.475349, - 45.579354 - ], - [ - -73.475514, - 45.57924 - ], - [ - -73.475748, - 45.579059 - ], - [ - -73.476005, - 45.578855 - ], - [ - -73.476092, - 45.578785 - ], - [ - -73.476311, - 45.578613 - ], - [ - -73.476531, - 45.578426 - ], - [ - -73.477316, - 45.577756 - ], - [ - -73.478746, - 45.576546 - ], - [ - -73.485291, - 45.570941 - ], - [ - -73.485924, - 45.570374 - ], - [ - -73.486543, - 45.569794 - ], - [ - -73.487144, - 45.5692 - ], - [ - -73.487725, - 45.568597 - ], - [ - -73.488283, - 45.567985 - ], - [ - -73.489005, - 45.567148 - ], - [ - -73.489524, - 45.56651 - ], - [ - -73.490025, - 45.565857 - ], - [ - -73.490348, - 45.565416 - ], - [ - -73.490811, - 45.564746 - ], - [ - -73.492757, - 45.561799 - ], - [ - -73.493231, - 45.561129 - ], - [ - -73.493558, - 45.560688 - ], - [ - -73.493892, - 45.560256 - ], - [ - -73.494237, - 45.559829 - ], - [ - -73.499922, - 45.552981 - ], - [ - -73.501151, - 45.551492 - ], - [ - -73.501844, - 45.550646 - ], - [ - -73.502872, - 45.549445 - ], - [ - -73.503558, - 45.548684 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.522965, - 45.530118 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.517551, - 45.525432 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519846, - 45.523384 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522394, - 45.524142 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 184, - "properties": { - "id": "e3f6b19f-982f-496b-8f5f-0d77862f6b98", - "data": { - "gtfs": { - "shape_id": "85_1_A" - }, - "segments": [ - { - "distanceMeters": 136, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 364, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 112, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 415, - "travelTimeSeconds": 94 - }, - { - "distanceMeters": 12141, - "travelTimeSeconds": 840 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 222, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 19583, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 9879.2506362516, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.82, - "travelTimeWithoutDwellTimesSeconds": 2220, - "operatingTimeWithLayoverTimeSeconds": 2442, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2220, - "operatingSpeedWithLayoverMetersPerSecond": 8.02, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.82 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "80eb2b2c-3d80-431d-851d-8665038b93b7", - "8c73c7f2-6a19-4272-8988-4cd9987871b8", - "0b2fb021-eaa4-4107-8980-c7b3bc7fd9a9", - "dba0b7ad-62f7-4b47-ac93-15546ef421d6", - "90388705-b26a-4b3b-a643-8ef39d04ff02", - "25b68a02-d85c-4b7b-b822-bc26c51b07b7", - "0a48a466-5f09-4ad5-911d-e79d40ef78d2", - "8680b7f3-dcb9-422f-a458-e2745493c66f", - "9f16d6ec-8397-4d95-9ce8-1980aa76ecbc", - "ba6e04e1-77fc-4b3f-86d2-fd956b418882", - "c02424dc-f033-4be6-a66b-8712f3e4b064", - "a304bcbf-a90b-4a1c-90fd-af05d73c3bdb", - "f2e35f7f-c43e-48a9-8610-6fc945acde4b", - "39ff7687-30f4-4336-ad6e-7651a86ce308", - "5195ea00-9368-4dce-8167-c17b61cec6aa", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", - "2cdb15ef-cdbd-4b50-8947-cb9baee33626", - "7b512bac-ad2d-4d5a-87d8-173290a7b311", - "44ce6da8-ee79-4e09-9c16-f31566643c0c", - "aa89250f-af50-4115-bf1b-21a034e9dba5", - "f68b9483-e1df-4343-949f-67cf0f140f1c", - "78a5cdb0-2073-4ddc-876e-4b4491cc4cd9", - "e57d7fe5-d3ac-4549-8c17-bc7891d2fb5c", - "7556ee28-3088-47e4-8621-ee5ed1aeb9fd", - "aa3e9b29-cdbb-464c-8a8b-fae908f7b00f", - "7a859698-99f4-4c31-b351-953ef9867df6", - "e4ed3729-d139-4568-882c-36c81b8c1d41", - "50c385af-a7f1-479f-b40d-4ed198aca8ce", - "b32eb408-e9c7-49ab-afd7-56523f4ec990", - "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", - "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", - "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", - "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", - "bbe875bc-cb85-4a61-923d-53ee4746a213", - "4c755ece-2475-4915-941e-37859f0f391f" - ], - "stops": [], - "line_id": "da4ec63c-1521-4b36-8457-a6d5caa1b3e7", - "segments": [ - 0, - 3, - 9, - 13, - 18, - 25, - 32, - 48, - 56, - 63, - 71, - 81, - 90, - 96, - 101, - 111, - 117, - 125, - 127, - 130, - 140, - 148, - 157, - 163, - 168, - 175, - 181, - 185, - 189, - 196, - 213, - 217, - 228, - 241, - 251, - 300 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 184, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.52252, - 45.524045 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523527, - 45.52795 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.503549, - 45.548419 - ], - [ - -73.502986, - 45.54904 - ], - [ - -73.502097, - 45.550079 - ], - [ - -73.501025, - 45.551361 - ], - [ - -73.500319, - 45.55223 - ], - [ - -73.497146, - 45.556054 - ], - [ - -73.496787, - 45.55649 - ], - [ - -73.495905, - 45.557543 - ], - [ - -73.495369, - 45.558173 - ], - [ - -73.494314, - 45.559446 - ], - [ - -73.493461, - 45.560499 - ], - [ - -73.492975, - 45.561151 - ], - [ - -73.492659, - 45.561597 - ], - [ - -73.492068, - 45.562474 - ], - [ - -73.49148, - 45.563383 - ], - [ - -73.490434, - 45.564962 - ], - [ - -73.489967, - 45.565619 - ], - [ - -73.489477, - 45.566267 - ], - [ - -73.488962, - 45.566906 - ], - [ - -73.48825, - 45.567747 - ], - [ - -73.487877, - 45.568161 - ], - [ - -73.487301, - 45.568777 - ], - [ - -73.486712, - 45.56938 - ], - [ - -73.486308, - 45.569771 - ], - [ - -73.485474, - 45.570545 - ], - [ - -73.48461, - 45.571301 - ], - [ - -73.483654, - 45.572115 - ], - [ - -73.478606, - 45.576433 - ], - [ - -73.478028, - 45.576933 - ], - [ - -73.477248, - 45.577607 - ], - [ - -73.476645, - 45.578128 - ], - [ - -73.475915, - 45.578754 - ], - [ - -73.475553, - 45.579033 - ], - [ - -73.474887, - 45.579478 - ], - [ - -73.474437, - 45.579762 - ], - [ - -73.474095, - 45.580005 - ], - [ - -73.473853, - 45.580158 - ], - [ - -73.473398, - 45.580472 - ], - [ - -73.473077, - 45.58072 - ], - [ - -73.472886, - 45.580886 - ], - [ - -73.472612, - 45.581152 - ], - [ - -73.472574, - 45.581196 - ], - [ - -73.472319, - 45.581482 - ], - [ - -73.472175, - 45.581673 - ], - [ - -73.471994, - 45.581936 - ], - [ - -73.47191, - 45.582061 - ], - [ - -73.471753, - 45.582326 - ], - [ - -73.471543, - 45.582681 - ], - [ - -73.471245, - 45.583188 - ], - [ - -73.471013, - 45.58358 - ], - [ - -73.470714, - 45.584071 - ], - [ - -73.470067, - 45.585151 - ], - [ - -73.469784, - 45.585547 - ], - [ - -73.469628, - 45.585749 - ], - [ - -73.469287, - 45.586145 - ], - [ - -73.469101, - 45.586343 - ], - [ - -73.468904, - 45.586536 - ], - [ - -73.468695, - 45.586725 - ], - [ - -73.466029, - 45.588965 - ], - [ - -73.465851, - 45.589127 - ], - [ - -73.465429, - 45.589482 - ], - [ - -73.463709, - 45.590917 - ], - [ - -73.461267, - 45.592977 - ], - [ - -73.460579, - 45.593525 - ], - [ - -73.460036, - 45.593907 - ], - [ - -73.459551, - 45.594222 - ], - [ - -73.459088, - 45.594506 - ], - [ - -73.458501, - 45.594856 - ], - [ - -73.45527, - 45.596781 - ], - [ - -73.453729, - 45.597707 - ], - [ - -73.451702, - 45.598916 - ], - [ - -73.448041, - 45.60111 - ], - [ - -73.447074, - 45.601603 - ], - [ - -73.446821, - 45.601731 - ], - [ - -73.446355, - 45.601965 - ], - [ - -73.445994, - 45.602119 - ], - [ - -73.445612, - 45.602242 - ], - [ - -73.44521, - 45.602301 - ], - [ - -73.444975, - 45.602301 - ], - [ - -73.444719, - 45.602254 - ], - [ - -73.444513, - 45.602165 - ], - [ - -73.444191, - 45.601923 - ], - [ - -73.443738, - 45.601567 - ], - [ - -73.443655, - 45.601499 - ], - [ - -73.443509, - 45.601378 - ], - [ - -73.444182, - 45.600973 - ], - [ - -73.444832, - 45.600591 - ], - [ - -73.445172, - 45.600385 - ], - [ - -73.445341, - 45.600286 - ], - [ - -73.445606, - 45.600133 - ], - [ - -73.446043, - 45.599863 - ], - [ - -73.446679, - 45.599485 - ], - [ - -73.446908, - 45.599337 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447375, - 45.599364 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.448089, - 45.599953 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449825, - 45.601331 - ], - [ - -73.449842, - 45.601358 - ], - [ - -73.449882, - 45.601394 - ], - [ - -73.449937, - 45.601432 - ], - [ - -73.449974, - 45.601468 - ], - [ - -73.450006, - 45.601497 - ], - [ - -73.450033, - 45.601528 - ], - [ - -73.450045, - 45.601571 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.45023, - 45.601805 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.450329, - 45.600811 - ], - [ - -73.450319, - 45.600797 - ], - [ - -73.45028, - 45.600747 - ], - [ - -73.45017, - 45.600666 - ], - [ - -73.450081, - 45.60062 - ], - [ - -73.449968, - 45.600603 - ], - [ - -73.449925, - 45.600607 - ], - [ - -73.449868, - 45.600621 - ], - [ - -73.449802, - 45.600661 - ], - [ - -73.449715, - 45.600713 - ], - [ - -73.449674, - 45.600743 - ], - [ - -73.449661, - 45.600772 - ], - [ - -73.449666, - 45.600812 - ], - [ - -73.449924, - 45.601045 - ], - [ - -73.449978, - 45.601072 - ], - [ - -73.450055, - 45.601083 - ], - [ - -73.45017, - 45.60109 - ], - [ - -73.450263, - 45.601099 - ], - [ - -73.450328, - 45.601118 - ], - [ - -73.450379, - 45.601155 - ], - [ - -73.450393, - 45.601201 - ], - [ - -73.450376, - 45.60125 - ], - [ - -73.450362, - 45.601293 - ], - [ - -73.450349, - 45.601366 - ], - [ - -73.450328, - 45.601396 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450247, - 45.601412 - ], - [ - -73.450159, - 45.601408 - ], - [ - -73.450117, - 45.6014 - ], - [ - -73.450076, - 45.601382 - ], - [ - -73.450018, - 45.601356 - ], - [ - -73.449945, - 45.60132 - ], - [ - -73.449881, - 45.6013 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.4479, - 45.599803 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447328, - 45.599095 - ], - [ - -73.447593, - 45.598938 - ], - [ - -73.447731, - 45.598856 - ], - [ - -73.448171, - 45.59861 - ], - [ - -73.448549, - 45.598398 - ], - [ - -73.448749, - 45.598295 - ], - [ - -73.448839, - 45.598249 - ], - [ - -73.448998, - 45.598218 - ], - [ - -73.44922, - 45.59824 - ], - [ - -73.449408, - 45.598272 - ], - [ - -73.449753, - 45.598322 - ], - [ - -73.449948, - 45.598342 - ], - [ - -73.450323, - 45.59838 - ], - [ - -73.450519, - 45.598376 - ], - [ - -73.451106, - 45.598269 - ], - [ - -73.451434, - 45.59821 - ], - [ - -73.45166, - 45.598151 - ], - [ - -73.45178, - 45.59812 - ], - [ - -73.451924, - 45.598053 - ], - [ - -73.452243, - 45.597868 - ], - [ - -73.452948, - 45.597441 - ], - [ - -73.453377, - 45.59718 - ], - [ - -73.453592, - 45.597032 - ], - [ - -73.453626, - 45.596997 - ], - [ - -73.453715, - 45.596906 - ], - [ - -73.453794, - 45.596785 - ], - [ - -73.453871, - 45.596596 - ], - [ - -73.453877, - 45.596566 - ], - [ - -73.453931, - 45.596308 - ], - [ - -73.453991, - 45.596137 - ], - [ - -73.454092, - 45.595664 - ], - [ - -73.454151, - 45.595322 - ], - [ - -73.454172, - 45.595217 - ], - [ - -73.454204, - 45.595062 - ], - [ - -73.45424, - 45.594796 - ], - [ - -73.454266, - 45.59466 - ], - [ - -73.454311, - 45.594418 - ], - [ - -73.454348, - 45.594256 - ], - [ - -73.454385, - 45.594198 - ], - [ - -73.454452, - 45.594099 - ], - [ - -73.454523, - 45.594018 - ], - [ - -73.454739, - 45.593883 - ], - [ - -73.454817, - 45.593955 - ], - [ - -73.454889, - 45.594009 - ], - [ - -73.455013, - 45.59409 - ], - [ - -73.455072, - 45.594122 - ], - [ - -73.455163, - 45.594144 - ], - [ - -73.455276, - 45.594165 - ], - [ - -73.455387, - 45.594185 - ], - [ - -73.455619, - 45.594225 - ], - [ - -73.455711, - 45.593951 - ], - [ - -73.455756, - 45.593816 - ], - [ - -73.455854, - 45.593569 - ], - [ - -73.455297, - 45.593139 - ], - [ - -73.455223, - 45.593082 - ], - [ - -73.454848, - 45.592862 - ], - [ - -73.454505, - 45.592584 - ], - [ - -73.454414, - 45.592511 - ], - [ - -73.453444, - 45.591745 - ], - [ - -73.453112, - 45.591479 - ], - [ - -73.453034, - 45.591417 - ], - [ - -73.452695, - 45.591147 - ], - [ - -73.452327, - 45.590854 - ], - [ - -73.451698, - 45.59035 - ], - [ - -73.45153, - 45.590215 - ], - [ - -73.451407, - 45.590116 - ], - [ - -73.450902, - 45.58972 - ], - [ - -73.450502, - 45.589414 - ], - [ - -73.45019, - 45.589166 - ], - [ - -73.449979, - 45.589003 - ], - [ - -73.449846, - 45.5889 - ], - [ - -73.449272, - 45.588437 - ], - [ - -73.449234, - 45.588387 - ], - [ - -73.44924, - 45.588342 - ], - [ - -73.449275, - 45.588284 - ], - [ - -73.449407, - 45.588068 - ], - [ - -73.449428, - 45.588037 - ], - [ - -73.449511, - 45.58791 - ], - [ - -73.450216, - 45.586826 - ], - [ - -73.450263, - 45.586754 - ], - [ - -73.450392, - 45.586557 - ], - [ - -73.450426, - 45.586476 - ], - [ - -73.45054, - 45.586242 - ], - [ - -73.450986, - 45.585558 - ], - [ - -73.451142, - 45.58532 - ], - [ - -73.451311, - 45.585064 - ], - [ - -73.451368, - 45.584978 - ], - [ - -73.451108, - 45.584893 - ], - [ - -73.450993, - 45.584856 - ], - [ - -73.450841, - 45.584784 - ], - [ - -73.450731, - 45.584712 - ], - [ - -73.45063, - 45.58464 - ], - [ - -73.450205, - 45.584302 - ], - [ - -73.449028, - 45.583365 - ], - [ - -73.448893, - 45.583258 - ], - [ - -73.448755, - 45.583159 - ], - [ - -73.448601, - 45.583051 - ], - [ - -73.44829, - 45.582785 - ], - [ - -73.448106, - 45.582673 - ], - [ - -73.447893, - 45.582578 - ], - [ - -73.447563, - 45.58251 - ], - [ - -73.447435, - 45.582484 - ], - [ - -73.447288, - 45.582456 - ], - [ - -73.447144, - 45.582429 - ], - [ - -73.447073, - 45.582571 - ], - [ - -73.447053, - 45.582609 - ], - [ - -73.44698, - 45.58274 - ], - [ - -73.446895, - 45.58287 - ], - [ - -73.446759, - 45.583041 - ], - [ - -73.446638, - 45.583181 - ], - [ - -73.446546, - 45.58327 - ], - [ - -73.446413, - 45.583392 - ], - [ - -73.446149, - 45.583603 - ], - [ - -73.446124, - 45.583623 - ], - [ - -73.446013, - 45.583711 - ], - [ - -73.445968, - 45.583747 - ], - [ - -73.44592, - 45.583788 - ], - [ - -73.445774, - 45.583904 - ], - [ - -73.445416, - 45.584201 - ], - [ - -73.444583, - 45.584958 - ], - [ - -73.44456, - 45.584979 - ], - [ - -73.444401, - 45.585119 - ], - [ - -73.443489, - 45.585956 - ], - [ - -73.443398, - 45.58604 - ], - [ - -73.44263, - 45.586742 - ], - [ - -73.442422, - 45.586935 - ], - [ - -73.442064, - 45.587259 - ], - [ - -73.44183, - 45.58747 - ], - [ - -73.441505, - 45.587776 - ], - [ - -73.441295, - 45.58797 - ], - [ - -73.440323, - 45.588832 - ], - [ - -73.440242, - 45.588905 - ], - [ - -73.439836, - 45.589215 - ], - [ - -73.439603, - 45.589381 - ], - [ - -73.439545, - 45.589422 - ], - [ - -73.43944, - 45.589489 - ], - [ - -73.439052, - 45.589171 - ], - [ - -73.438814, - 45.588976 - ], - [ - -73.438743, - 45.588908 - ], - [ - -73.438667, - 45.588827 - ], - [ - -73.438608, - 45.58876 - ], - [ - -73.438525, - 45.588647 - ], - [ - -73.438459, - 45.588481 - ], - [ - -73.438434, - 45.588373 - ], - [ - -73.438397, - 45.58804 - ], - [ - -73.438382, - 45.587898 - ], - [ - -73.438361, - 45.587689 - ], - [ - -73.438322, - 45.587343 - ], - [ - -73.438278, - 45.58696 - ], - [ - -73.438254, - 45.586654 - ], - [ - -73.438229, - 45.586455 - ], - [ - -73.438207, - 45.586281 - ], - [ - -73.438171, - 45.586006 - ], - [ - -73.438139, - 45.585831 - ], - [ - -73.4381, - 45.585741 - ], - [ - -73.438042, - 45.585678 - ], - [ - -73.437636, - 45.585399 - ], - [ - -73.437154, - 45.585024 - ], - [ - -73.435838, - 45.584003 - ], - [ - -73.435641, - 45.583881 - ], - [ - -73.435442, - 45.583791 - ], - [ - -73.435024, - 45.583692 - ], - [ - -73.434811, - 45.583651 - ], - [ - -73.43465, - 45.583624 - ], - [ - -73.434643, - 45.583623 - ], - [ - -73.434386, - 45.58357 - ], - [ - -73.434475, - 45.583458 - ], - [ - -73.434512, - 45.583402 - ], - [ - -73.434532, - 45.583372 - ], - [ - -73.434573, - 45.58326 - ], - [ - -73.434593, - 45.583147 - ], - [ - -73.434594, - 45.583057 - ], - [ - -73.43455, - 45.582945 - ], - [ - -73.434479, - 45.582859 - ], - [ - -73.434334, - 45.58272 - ], - [ - -73.433525, - 45.582109 - ], - [ - -73.433315, - 45.58195 - ], - [ - -73.433005, - 45.581702 - ], - [ - -73.432709, - 45.581473 - ], - [ - -73.432359, - 45.581193 - ], - [ - -73.432012, - 45.580914 - ], - [ - -73.43177, - 45.580734 - ], - [ - -73.431382, - 45.580437 - ], - [ - -73.431218, - 45.580311 - ], - [ - -73.430904, - 45.580441 - ], - [ - -73.430652, - 45.580544 - ], - [ - -73.430169, - 45.580742 - ], - [ - -73.4299, - 45.580427 - ], - [ - -73.429663, - 45.580164 - ], - [ - -73.429652, - 45.580152 - ], - [ - -73.428455, - 45.579247 - ], - [ - -73.428306, - 45.579134 - ], - [ - -73.427164, - 45.578266 - ], - [ - -73.427025, - 45.578144 - ], - [ - -73.426905, - 45.578027 - ], - [ - -73.426759, - 45.577874 - ], - [ - -73.426668, - 45.577779 - ], - [ - -73.426569, - 45.577671 - ], - [ - -73.426565, - 45.577665 - ], - [ - -73.42652, - 45.57759 - ], - [ - -73.426309, - 45.577172 - ], - [ - -73.426236, - 45.576978 - ], - [ - -73.426194, - 45.576722 - ], - [ - -73.426191, - 45.576488 - ], - [ - -73.426194, - 45.576312 - ], - [ - -73.426217, - 45.576146 - ], - [ - -73.426267, - 45.575971 - ], - [ - -73.426344, - 45.575782 - ], - [ - -73.426479, - 45.575525 - ], - [ - -73.426691, - 45.57521 - ], - [ - -73.426842, - 45.575057 - ], - [ - -73.426917, - 45.574981 - ], - [ - -73.427246, - 45.574734 - ], - [ - -73.427385, - 45.574631 - ], - [ - -73.427307, - 45.574576 - ], - [ - -73.427053, - 45.574401 - ], - [ - -73.427033, - 45.574386 - ], - [ - -73.426825, - 45.574234 - ], - [ - -73.426552, - 45.57418 - ], - [ - -73.426291, - 45.574126 - ], - [ - -73.426126, - 45.574157 - ], - [ - -73.425912, - 45.574204 - ], - [ - -73.425717, - 45.574247 - ], - [ - -73.425532, - 45.573954 - ], - [ - -73.425353, - 45.573729 - ], - [ - -73.425125, - 45.573486 - ], - [ - -73.424874, - 45.573252 - ], - [ - -73.424736, - 45.573135 - ], - [ - -73.424027, - 45.572748 - ], - [ - -73.423927, - 45.572694 - ], - [ - -73.423691, - 45.572591 - ], - [ - -73.423131, - 45.572412 - ], - [ - -73.422755, - 45.572304 - ], - [ - -73.422173, - 45.572209 - ], - [ - -73.421978, - 45.572191 - ], - [ - -73.421486, - 45.572145 - ], - [ - -73.420818, - 45.572175 - ], - [ - -73.420398, - 45.572225 - ], - [ - -73.420344, - 45.572231 - ], - [ - -73.420285, - 45.572239 - ], - [ - -73.419819, - 45.572339 - ], - [ - -73.419305, - 45.572484 - ], - [ - -73.418867, - 45.572673 - ], - [ - -73.418645, - 45.572778 - ], - [ - -73.418508, - 45.572842 - ], - [ - -73.417844, - 45.573274 - ], - [ - -73.41744, - 45.573518 - ] - ] - }, - "id": 185, - "properties": { - "id": "490764e1-ce5b-4ebd-a05e-84a0f3fe3da9", - "data": { - "gtfs": { - "shape_id": "85_2_R" - }, - "segments": [ - { - "distanceMeters": 11205, - "travelTimeSeconds": 665 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 415, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 439, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 404, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 83, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 345, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 353, - "travelTimeSeconds": 79 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 29 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 192, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 19529, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 9879.2506362516, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 10.17, - "travelTimeWithoutDwellTimesSeconds": 1920, - "operatingTimeWithLayoverTimeSeconds": 2112, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1920, - "operatingSpeedWithLayoverMetersPerSecond": 9.25, - "averageSpeedWithoutDwellTimesMetersPerSecond": 10.17 - }, - "mode": "bus", - "name": "de Gascogne", - "color": "#A32638", - "nodes": [ - "4c755ece-2475-4915-941e-37859f0f391f", - "494d9db6-32c6-4aa3-9c11-91eba915c58f", - "6b55fd05-7687-457e-ae9d-e87027c7100f", - "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", - "bbe875bc-cb85-4a61-923d-53ee4746a213", - "96c08dfd-d2e7-4584-a6b3-36c3a2e1abcc", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", - "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", - "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", - "b32eb408-e9c7-49ab-afd7-56523f4ec990", - "50c385af-a7f1-479f-b40d-4ed198aca8ce", - "e4ed3729-d139-4568-882c-36c81b8c1d41", - "7a859698-99f4-4c31-b351-953ef9867df6", - "aa3e9b29-cdbb-464c-8a8b-fae908f7b00f", - "7556ee28-3088-47e4-8621-ee5ed1aeb9fd", - "e57d7fe5-d3ac-4549-8c17-bc7891d2fb5c", - "78a5cdb0-2073-4ddc-876e-4b4491cc4cd9", - "f68b9483-e1df-4343-949f-67cf0f140f1c", - "aa89250f-af50-4115-bf1b-21a034e9dba5", - "44ce6da8-ee79-4e09-9c16-f31566643c0c", - "7b512bac-ad2d-4d5a-87d8-173290a7b311", - "2cdb15ef-cdbd-4b50-8947-cb9baee33626", - "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "5195ea00-9368-4dce-8167-c17b61cec6aa", - "39ff7687-30f4-4336-ad6e-7651a86ce308", - "f2e35f7f-c43e-48a9-8610-6fc945acde4b", - "a304bcbf-a90b-4a1c-90fd-af05d73c3bdb", - "c02424dc-f033-4be6-a66b-8712f3e4b064", - "ba6e04e1-77fc-4b3f-86d2-fd956b418882", - "9f16d6ec-8397-4d95-9ce8-1980aa76ecbc", - "8680b7f3-dcb9-422f-a458-e2745493c66f", - "0a48a466-5f09-4ad5-911d-e79d40ef78d2", - "25b68a02-d85c-4b7b-b822-bc26c51b07b7", - "90388705-b26a-4b3b-a643-8ef39d04ff02", - "dba0b7ad-62f7-4b47-ac93-15546ef421d6", - "0b2fb021-eaa4-4107-8980-c7b3bc7fd9a9", - "8c73c7f2-6a19-4272-8988-4cd9987871b8", - "80eb2b2c-3d80-431d-851d-8665038b93b7" - ], - "stops": [], - "line_id": "da4ec63c-1521-4b36-8457-a6d5caa1b3e7", - "segments": [ - 0, - 125, - 130, - 141, - 191, - 228, - 235, - 239, - 250, - 261, - 266, - 284, - 290, - 293, - 298, - 303, - 310, - 312, - 319, - 327, - 334, - 347, - 353, - 356, - 364, - 367, - 379, - 384, - 391, - 398, - 409, - 416, - 425, - 432, - 446, - 455, - 462, - 468, - 471, - 477 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 185, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.435041, - 45.59036 - ], - [ - -73.435014, - 45.590337 - ], - [ - -73.434983, - 45.59031 - ], - [ - -73.434944, - 45.590279 - ], - [ - -73.434884, - 45.590234 - ], - [ - -73.434715, - 45.590103 - ], - [ - -73.4342, - 45.589657 - ], - [ - -73.433894, - 45.589368 - ], - [ - -73.433885, - 45.58936 - ], - [ - -73.433674, - 45.589158 - ], - [ - -73.433253, - 45.588702 - ], - [ - -73.432226, - 45.587579 - ], - [ - -73.432034, - 45.587385 - ], - [ - -73.431883, - 45.587238 - ], - [ - -73.431877, - 45.587232 - ], - [ - -73.431818, - 45.587179 - ], - [ - -73.431717, - 45.587092 - ], - [ - -73.431289, - 45.586718 - ], - [ - -73.430893, - 45.586393 - ], - [ - -73.430716, - 45.586245 - ], - [ - -73.430467, - 45.586051 - ], - [ - -73.430107, - 45.585762 - ], - [ - -73.430085, - 45.585745 - ], - [ - -73.429958, - 45.585646 - ], - [ - -73.429814, - 45.585537 - ], - [ - -73.428484, - 45.584512 - ], - [ - -73.42668, - 45.583121 - ], - [ - -73.426528, - 45.583004 - ], - [ - -73.426641, - 45.582922 - ], - [ - -73.427107, - 45.582619 - ], - [ - -73.427138, - 45.582598 - ], - [ - -73.42763, - 45.582284 - ], - [ - -73.428145, - 45.581961 - ], - [ - -73.428556, - 45.581702 - ], - [ - -73.428761, - 45.581574 - ], - [ - -73.429134, - 45.581335 - ], - [ - -73.429655, - 45.581003 - ], - [ - -73.429773, - 45.580926 - ], - [ - -73.42982, - 45.580902 - ], - [ - -73.430012, - 45.580805 - ], - [ - -73.430169, - 45.580742 - ], - [ - -73.430652, - 45.580544 - ], - [ - -73.43104, - 45.580384 - ], - [ - -73.431218, - 45.580311 - ], - [ - -73.43177, - 45.580734 - ], - [ - -73.432012, - 45.580914 - ], - [ - -73.432359, - 45.581193 - ], - [ - -73.432709, - 45.581473 - ], - [ - -73.433005, - 45.581702 - ], - [ - -73.433011, - 45.581707 - ], - [ - -73.433315, - 45.58195 - ], - [ - -73.434334, - 45.58272 - ], - [ - -73.434479, - 45.582859 - ], - [ - -73.43455, - 45.582945 - ], - [ - -73.434594, - 45.583057 - ], - [ - -73.434593, - 45.583147 - ], - [ - -73.434573, - 45.58326 - ], - [ - -73.434532, - 45.583372 - ], - [ - -73.434475, - 45.583458 - ], - [ - -73.434438, - 45.583505 - ], - [ - -73.434386, - 45.58357 - ], - [ - -73.43465, - 45.583624 - ], - [ - -73.43469, - 45.583631 - ], - [ - -73.434811, - 45.583651 - ], - [ - -73.435024, - 45.583692 - ], - [ - -73.435442, - 45.583791 - ], - [ - -73.435641, - 45.583881 - ], - [ - -73.435838, - 45.584003 - ], - [ - -73.437179, - 45.585044 - ], - [ - -73.437636, - 45.585399 - ], - [ - -73.438042, - 45.585678 - ], - [ - -73.4381, - 45.585741 - ], - [ - -73.438139, - 45.585831 - ], - [ - -73.438171, - 45.586006 - ], - [ - -73.43819, - 45.58615 - ], - [ - -73.438207, - 45.586281 - ], - [ - -73.438254, - 45.586654 - ], - [ - -73.438278, - 45.58696 - ], - [ - -73.438322, - 45.587343 - ], - [ - -73.438347, - 45.587565 - ], - [ - -73.438361, - 45.587689 - ], - [ - -73.438397, - 45.58804 - ], - [ - -73.438434, - 45.588373 - ], - [ - -73.438459, - 45.588481 - ], - [ - -73.438525, - 45.588647 - ], - [ - -73.438608, - 45.58876 - ], - [ - -73.438667, - 45.588827 - ], - [ - -73.438743, - 45.588908 - ], - [ - -73.438814, - 45.588976 - ], - [ - -73.439133, - 45.589237 - ], - [ - -73.439351, - 45.589416 - ], - [ - -73.43944, - 45.589489 - ], - [ - -73.439556, - 45.58957 - ], - [ - -73.43977, - 45.589417 - ], - [ - -73.43999, - 45.589251 - ], - [ - -73.440237, - 45.589062 - ], - [ - -73.440356, - 45.588972 - ], - [ - -73.440489, - 45.58904 - ], - [ - -73.4409, - 45.589283 - ], - [ - -73.441126, - 45.589423 - ], - [ - -73.441169, - 45.589469 - ], - [ - -73.441196, - 45.589499 - ], - [ - -73.441426, - 45.589823 - ], - [ - -73.441784, - 45.590332 - ], - [ - -73.442026, - 45.59066 - ], - [ - -73.442182, - 45.590883 - ], - [ - -73.44224, - 45.590966 - ], - [ - -73.442582, - 45.591336 - ], - [ - -73.442948, - 45.591732 - ], - [ - -73.443153, - 45.591988 - ], - [ - -73.443182, - 45.592056 - ], - [ - -73.443255, - 45.592258 - ], - [ - -73.443289, - 45.59238 - ], - [ - -73.443333, - 45.592528 - ], - [ - -73.443364, - 45.592618 - ], - [ - -73.443554, - 45.593158 - ], - [ - -73.443581, - 45.593242 - ], - [ - -73.443815, - 45.593977 - ], - [ - -73.44393, - 45.594306 - ], - [ - -73.444038, - 45.594472 - ], - [ - -73.444209, - 45.594648 - ], - [ - -73.444384, - 45.594778 - ], - [ - -73.444601, - 45.594868 - ], - [ - -73.444881, - 45.594976 - ], - [ - -73.445271, - 45.595115 - ], - [ - -73.445274, - 45.595116 - ], - [ - -73.445401, - 45.595148 - ], - [ - -73.445373, - 45.595278 - ], - [ - -73.445328, - 45.595355 - ], - [ - -73.445245, - 45.595436 - ], - [ - -73.4452, - 45.595467 - ], - [ - -73.445101, - 45.595534 - ], - [ - -73.444968, - 45.595606 - ], - [ - -73.444718, - 45.595759 - ], - [ - -73.444544, - 45.595865 - ], - [ - -73.444437, - 45.59593 - ], - [ - -73.443627, - 45.596451 - ], - [ - -73.443528, - 45.596515 - ], - [ - -73.443394, - 45.596559 - ], - [ - -73.442992, - 45.59628 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442031, - 45.596415 - ], - [ - -73.441835, - 45.596541 - ], - [ - -73.441552, - 45.59672 - ], - [ - -73.441367, - 45.596828 - ], - [ - -73.441272, - 45.596875 - ], - [ - -73.440742, - 45.597138 - ], - [ - -73.439976, - 45.597521 - ], - [ - -73.43978, - 45.597624 - ], - [ - -73.438748, - 45.598159 - ], - [ - -73.438619, - 45.598226 - ], - [ - -73.438241, - 45.598406 - ], - [ - -73.437622, - 45.598721 - ], - [ - -73.43732, - 45.5989 - ], - [ - -73.437156, - 45.599026 - ], - [ - -73.437096, - 45.599079 - ], - [ - -73.437027, - 45.599139 - ], - [ - -73.43685, - 45.599305 - ], - [ - -73.436464, - 45.59969 - ], - [ - -73.436408, - 45.599746 - ], - [ - -73.436103, - 45.600029 - ], - [ - -73.435984, - 45.600152 - ], - [ - -73.435806, - 45.600335 - ], - [ - -73.435516, - 45.600609 - ], - [ - -73.435271, - 45.600843 - ], - [ - -73.43499, - 45.601122 - ], - [ - -73.434686, - 45.601396 - ], - [ - -73.434596, - 45.601477 - ], - [ - -73.434475, - 45.601531 - ], - [ - -73.434166, - 45.601679 - ], - [ - -73.433739, - 45.601863 - ], - [ - -73.432706, - 45.602245 - ], - [ - -73.431263, - 45.60278 - ], - [ - -73.430877, - 45.603027 - ], - [ - -73.430617, - 45.603192 - ], - [ - -73.430523, - 45.603252 - ], - [ - -73.429967, - 45.603607 - ], - [ - -73.429453, - 45.603926 - ], - [ - -73.42903, - 45.604191 - ], - [ - -73.428659, - 45.604423 - ], - [ - -73.428653, - 45.604427 - ], - [ - -73.428564, - 45.604483 - ], - [ - -73.427475, - 45.60518 - ], - [ - -73.427444, - 45.605211 - ], - [ - -73.427423, - 45.605237 - ], - [ - -73.427407, - 45.605278 - ], - [ - -73.427406, - 45.605312 - ], - [ - -73.427424, - 45.605353 - ], - [ - -73.427432, - 45.605363 - ], - [ - -73.42746, - 45.605399 - ], - [ - -73.427603, - 45.605522 - ], - [ - -73.427955, - 45.605795 - ], - [ - -73.427998, - 45.605828 - ], - [ - -73.428173, - 45.605959 - ], - [ - -73.428311, - 45.606067 - ], - [ - -73.428495, - 45.606184 - ], - [ - -73.42867, - 45.606274 - ], - [ - -73.42886, - 45.60635 - ], - [ - -73.429112, - 45.606427 - ], - [ - -73.429341, - 45.606472 - ], - [ - -73.429637, - 45.60652 - ], - [ - -73.429954, - 45.606572 - ], - [ - -73.430121, - 45.606599 - ], - [ - -73.430876, - 45.606707 - ], - [ - -73.431493, - 45.606793 - ], - [ - -73.431775, - 45.606798 - ], - [ - -73.431993, - 45.60678 - ], - [ - -73.43227, - 45.606721 - ], - [ - -73.432434, - 45.606672 - ], - [ - -73.432556, - 45.606624 - ], - [ - -73.432607, - 45.606605 - ], - [ - -73.432928, - 45.606464 - ], - [ - -73.433088, - 45.606393 - ], - [ - -73.433751, - 45.606088 - ], - [ - -73.436303, - 45.60492 - ], - [ - -73.436609, - 45.60478 - ], - [ - -73.436809, - 45.604689 - ], - [ - -73.436923, - 45.604637 - ], - [ - -73.437443, - 45.604403 - ], - [ - -73.437897, - 45.604195 - ], - [ - -73.437975, - 45.60416 - ], - [ - -73.438466, - 45.603935 - ], - [ - -73.438822, - 45.603769 - ], - [ - -73.441516, - 45.602542 - ], - [ - -73.441922, - 45.602327 - ], - [ - -73.442509, - 45.60198 - ], - [ - -73.443055, - 45.601648 - ], - [ - -73.443179, - 45.601574 - ], - [ - -73.443509, - 45.601378 - ], - [ - -73.444182, - 45.600973 - ], - [ - -73.444832, - 45.600591 - ], - [ - -73.445172, - 45.600385 - ], - [ - -73.44537, - 45.60027 - ], - [ - -73.445606, - 45.600133 - ], - [ - -73.446043, - 45.599863 - ], - [ - -73.446679, - 45.599485 - ], - [ - -73.446908, - 45.599337 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.448286, - 45.60011 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449825, - 45.601331 - ], - [ - -73.449842, - 45.601358 - ], - [ - -73.449882, - 45.601394 - ], - [ - -73.449937, - 45.601432 - ], - [ - -73.449974, - 45.601468 - ], - [ - -73.450006, - 45.601497 - ], - [ - -73.450033, - 45.601528 - ], - [ - -73.450045, - 45.601571 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450452, - 45.601873 - ], - [ - -73.45054, - 45.60193 - ], - [ - -73.450604, - 45.601966 - ], - [ - -73.450658, - 45.602007 - ], - [ - -73.450717, - 45.602019 - ], - [ - -73.450804, - 45.602087 - ], - [ - -73.450997, - 45.602236 - ], - [ - -73.451134, - 45.602344 - ], - [ - -73.45153, - 45.602655 - ], - [ - -73.45156, - 45.602679 - ], - [ - -73.452634, - 45.603524 - ], - [ - -73.452751, - 45.603609 - ], - [ - -73.453115, - 45.603891 - ], - [ - -73.453124, - 45.603897 - ], - [ - -73.453269, - 45.60401 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453904, - 45.604474 - ], - [ - -73.454133, - 45.604694 - ], - [ - -73.454539, - 45.605032 - ], - [ - -73.454935, - 45.605328 - ], - [ - -73.455171, - 45.605504 - ], - [ - -73.455782, - 45.605973 - ], - [ - -73.456001, - 45.606135 - ], - [ - -73.456106, - 45.606225 - ], - [ - -73.45638, - 45.606432 - ], - [ - -73.456464, - 45.606472 - ], - [ - -73.45647, - 45.606473 - ], - [ - -73.456606, - 45.606499 - ], - [ - -73.456639, - 45.606189 - ], - [ - -73.456753, - 45.605752 - ], - [ - -73.456765, - 45.605708 - ], - [ - -73.456875, - 45.605321 - ], - [ - -73.457004, - 45.60488 - ], - [ - -73.457101, - 45.604499 - ], - [ - -73.457136, - 45.604362 - ], - [ - -73.457297, - 45.603715 - ], - [ - -73.457484, - 45.603017 - ], - [ - -73.457663, - 45.602423 - ], - [ - -73.457695, - 45.602338 - ], - [ - -73.457833, - 45.601965 - ], - [ - -73.458077, - 45.601272 - ], - [ - -73.458415, - 45.600417 - ], - [ - -73.458417, - 45.600413 - ], - [ - -73.45861, - 45.599891 - ], - [ - -73.458773, - 45.599468 - ], - [ - -73.458929, - 45.599081 - ], - [ - -73.45906, - 45.598784 - ], - [ - -73.459106, - 45.598681 - ], - [ - -73.459108, - 45.598678 - ], - [ - -73.459297, - 45.598249 - ], - [ - -73.459417, - 45.597961 - ], - [ - -73.459667, - 45.59743 - ], - [ - -73.459796, - 45.597151 - ], - [ - -73.459959, - 45.596854 - ], - [ - -73.459966, - 45.596842 - ], - [ - -73.460279, - 45.596211 - ], - [ - -73.460377, - 45.59604 - ], - [ - -73.460508, - 45.595878 - ], - [ - -73.461071, - 45.594695 - ], - [ - -73.461074, - 45.594689 - ], - [ - -73.461222, - 45.594399 - ], - [ - -73.461303, - 45.594263 - ], - [ - -73.461665, - 45.593593 - ], - [ - -73.461974, - 45.593139 - ], - [ - -73.462288, - 45.59272 - ], - [ - -73.462683, - 45.592307 - ], - [ - -73.463002, - 45.59201 - ], - [ - -73.463511, - 45.591551 - ], - [ - -73.464164, - 45.590993 - ], - [ - -73.464488, - 45.590697 - ], - [ - -73.464968, - 45.59022 - ], - [ - -73.465402, - 45.589802 - ], - [ - -73.465585, - 45.589586 - ], - [ - -73.468548, - 45.587089 - ], - [ - -73.468925, - 45.586766 - ], - [ - -73.469282, - 45.586424 - ], - [ - -73.469476, - 45.586217 - ], - [ - -73.46977, - 45.585875 - ], - [ - -73.470065, - 45.585497 - ], - [ - -73.470208, - 45.585295 - ], - [ - -73.470515, - 45.584795 - ], - [ - -73.470777, - 45.584346 - ], - [ - -73.470818, - 45.584266 - ], - [ - -73.471151, - 45.583659 - ], - [ - -73.471441, - 45.583163 - ], - [ - -73.471782, - 45.582588 - ], - [ - -73.471999, - 45.582223 - ], - [ - -73.472179, - 45.58194 - ], - [ - -73.472331, - 45.581716 - ], - [ - -73.472649, - 45.581329 - ], - [ - -73.47273, - 45.58124 - ], - [ - -73.472825, - 45.58114 - ], - [ - -73.473026, - 45.580958 - ], - [ - -73.473162, - 45.580835 - ], - [ - -73.473456, - 45.580601 - ], - [ - -73.473548, - 45.580529 - ], - [ - -73.474056, - 45.580187 - ], - [ - -73.474914, - 45.579634 - ], - [ - -73.475349, - 45.579354 - ], - [ - -73.475514, - 45.57924 - ], - [ - -73.475748, - 45.579059 - ], - [ - -73.476005, - 45.578855 - ], - [ - -73.476092, - 45.578785 - ], - [ - -73.476311, - 45.578613 - ], - [ - -73.476531, - 45.578426 - ], - [ - -73.477316, - 45.577756 - ], - [ - -73.478746, - 45.576546 - ], - [ - -73.485291, - 45.570941 - ], - [ - -73.485924, - 45.570374 - ], - [ - -73.486543, - 45.569794 - ], - [ - -73.487144, - 45.5692 - ], - [ - -73.487725, - 45.568597 - ], - [ - -73.488283, - 45.567985 - ], - [ - -73.489005, - 45.567148 - ], - [ - -73.489524, - 45.56651 - ], - [ - -73.490025, - 45.565857 - ], - [ - -73.490348, - 45.565416 - ], - [ - -73.490811, - 45.564746 - ], - [ - -73.492757, - 45.561799 - ], - [ - -73.493231, - 45.561129 - ], - [ - -73.493558, - 45.560688 - ], - [ - -73.493892, - 45.560256 - ], - [ - -73.494237, - 45.559829 - ], - [ - -73.499922, - 45.552981 - ], - [ - -73.501151, - 45.551492 - ], - [ - -73.501844, - 45.550646 - ], - [ - -73.502872, - 45.549445 - ], - [ - -73.503558, - 45.548684 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522764, - 45.530162 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.51669, - 45.526331 - ], - [ - -73.516564, - 45.52594 - ], - [ - -73.516314, - 45.525224 - ], - [ - -73.516296, - 45.525161 - ], - [ - -73.516288, - 45.525131 - ], - [ - -73.516317, - 45.525053 - ], - [ - -73.516302, - 45.524919 - ], - [ - -73.516294, - 45.524734 - ], - [ - -73.516303, - 45.524604 - ], - [ - -73.516345, - 45.52437 - ], - [ - -73.516405, - 45.524203 - ], - [ - -73.516578, - 45.523623 - ], - [ - -73.516683, - 45.523438 - ], - [ - -73.516765, - 45.523305 - ], - [ - -73.516823, - 45.523209 - ], - [ - -73.516951, - 45.523069 - ], - [ - -73.517159, - 45.522876 - ], - [ - -73.517395, - 45.522705 - ], - [ - -73.517522, - 45.522552 - ], - [ - -73.518003, - 45.522345 - ], - [ - -73.518219, - 45.522255 - ], - [ - -73.518483, - 45.522178 - ], - [ - -73.518751, - 45.522111 - ], - [ - -73.518959, - 45.52207 - ], - [ - -73.519211, - 45.522021 - ], - [ - -73.519463, - 45.521967 - ], - [ - -73.520583, - 45.521872 - ], - [ - -73.522213, - 45.521732 - ], - [ - -73.523688, - 45.521608 - ], - [ - -73.525933, - 45.521416 - ], - [ - -73.534391, - 45.520735 - ], - [ - -73.534716, - 45.520716 - ], - [ - -73.535006, - 45.520706 - ], - [ - -73.535439, - 45.520719 - ], - [ - -73.535574, - 45.520734 - ], - [ - -73.535886, - 45.520771 - ], - [ - -73.536216, - 45.520827 - ], - [ - -73.538962, - 45.521314 - ], - [ - -73.546713, - 45.522688 - ], - [ - -73.546899, - 45.522724 - ], - [ - -73.547126, - 45.522828 - ], - [ - -73.550978, - 45.524639 - ], - [ - -73.5511, - 45.524684 - ], - [ - -73.551293, - 45.524734 - ], - [ - -73.553654, - 45.525353 - ], - [ - -73.553877, - 45.52543 - ], - [ - -73.554163, - 45.525542 - ], - [ - -73.554506, - 45.525695 - ], - [ - -73.554687, - 45.525824 - ], - [ - -73.554811, - 45.525929 - ], - [ - -73.554929, - 45.526059 - ], - [ - -73.55493, - 45.526059 - ], - [ - -73.554993, - 45.526176 - ], - [ - -73.555026, - 45.52628 - ], - [ - -73.554833, - 45.526514 - ], - [ - -73.554697, - 45.526599 - ], - [ - -73.554558, - 45.526626 - ], - [ - -73.554315, - 45.526628 - ], - [ - -73.553319, - 45.526172 - ], - [ - -73.553138, - 45.526114 - ], - [ - -73.551756, - 45.525462 - ], - [ - -73.551291, - 45.52526 - ], - [ - -73.550364, - 45.524824 - ], - [ - -73.549511, - 45.524419 - ], - [ - -73.548735, - 45.524051 - ], - [ - -73.548198, - 45.52379 - ], - [ - -73.548092, - 45.523688 - ], - [ - -73.547877, - 45.523575 - ], - [ - -73.547516, - 45.523402 - ], - [ - -73.547208, - 45.52326 - ], - [ - -73.546709, - 45.522954 - ], - [ - -73.546707, - 45.522951 - ], - [ - -73.54663, - 45.522846 - ], - [ - -73.546597, - 45.522733 - ], - [ - -73.546634, - 45.522544 - ], - [ - -73.54672, - 45.522337 - ], - [ - -73.547896, - 45.520642 - ], - [ - -73.548022, - 45.520458 - ], - [ - -73.5497, - 45.518116 - ], - [ - -73.550049, - 45.517629 - ], - [ - -73.550362, - 45.51717 - ], - [ - -73.55058, - 45.516878 - ], - [ - -73.551064, - 45.516329 - ], - [ - -73.552085, - 45.515312 - ], - [ - -73.552825, - 45.51449 - ], - [ - -73.555931, - 45.510258 - ], - [ - -73.556297, - 45.509815 - ], - [ - -73.556685, - 45.509346 - ], - [ - -73.556881, - 45.509106 - ], - [ - -73.557097, - 45.508843 - ], - [ - -73.558098, - 45.507631 - ], - [ - -73.558733, - 45.506895 - ], - [ - -73.558902, - 45.506688 - ], - [ - -73.559399, - 45.506102 - ], - [ - -73.559674, - 45.505789 - ], - [ - -73.559961, - 45.505451 - ], - [ - -73.560315, - 45.505045 - ], - [ - -73.560946, - 45.504294 - ], - [ - -73.561138, - 45.504148 - ], - [ - -73.56137, - 45.5039 - ], - [ - -73.561633, - 45.503594 - ], - [ - -73.561765, - 45.503418 - ], - [ - -73.562022, - 45.503083 - ], - [ - -73.562229, - 45.50281 - ], - [ - -73.562656, - 45.502227 - ], - [ - -73.563344, - 45.501278 - ], - [ - -73.563437, - 45.501142 - ], - [ - -73.563582, - 45.500891 - ], - [ - -73.563637, - 45.500782 - ], - [ - -73.563686, - 45.500673 - ], - [ - -73.563742, - 45.500523 - ], - [ - -73.563784, - 45.50037 - ], - [ - -73.563792, - 45.500339 - ], - [ - -73.563799, - 45.500277 - ], - [ - -73.56381, - 45.500164 - ], - [ - -73.563817, - 45.499951 - ], - [ - -73.563801, - 45.499845 - ], - [ - -73.563769, - 45.499726 - ], - [ - -73.563716, - 45.499593 - ], - [ - -73.563657, - 45.499455 - ], - [ - -73.563568, - 45.499314 - ], - [ - -73.56346, - 45.499182 - ], - [ - -73.563335, - 45.499056 - ], - [ - -73.563258, - 45.498987 - ], - [ - -73.563134, - 45.498882 - ], - [ - -73.56301, - 45.498798 - ], - [ - -73.562842, - 45.498706 - ], - [ - -73.562717, - 45.498629 - ], - [ - -73.562641, - 45.498572 - ], - [ - -73.562606, - 45.498541 - ], - [ - -73.562542, - 45.498477 - ], - [ - -73.562514, - 45.498441 - ], - [ - -73.562489, - 45.498405 - ], - [ - -73.56245, - 45.498328 - ], - [ - -73.562437, - 45.498288 - ], - [ - -73.562419, - 45.498207 - ], - [ - -73.562416, - 45.498166 - ], - [ - -73.562423, - 45.498084 - ], - [ - -73.562444, - 45.498004 - ], - [ - -73.562461, - 45.497965 - ], - [ - -73.562483, - 45.497927 - ], - [ - -73.562498, - 45.497907 - ], - [ - -73.562535, - 45.497857 - ], - [ - -73.562592, - 45.497793 - ], - [ - -73.562675, - 45.497717 - ], - [ - -73.562831, - 45.497627 - ], - [ - -73.562983, - 45.497576 - ], - [ - -73.56315, - 45.497541 - ], - [ - -73.563299, - 45.497536 - ], - [ - -73.563474, - 45.497544 - ], - [ - -73.563652, - 45.497556 - ], - [ - -73.563841, - 45.497592 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.56431, - 45.497835 - ], - [ - -73.564363, - 45.497859 - ], - [ - -73.565142, - 45.498217 - ], - [ - -73.565601, - 45.498443 - ], - [ - -73.565748, - 45.49831 - ], - [ - -73.565849, - 45.498292 - ], - [ - -73.566051, - 45.498359 - ], - [ - -73.566361, - 45.498471 - ], - [ - -73.566492, - 45.498485 - ], - [ - -73.566611, - 45.498345 - ] - ] - }, - "id": 186, - "properties": { - "id": "17c1664d-c215-499a-b474-54dbd5b4612e", - "data": { - "gtfs": { - "shape_id": "86_1_A" - }, - "segments": [ - { - "distanceMeters": 142, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 84, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 377, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 505, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 890, - "travelTimeSeconds": 133 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 17552, - "travelTimeSeconds": 2189 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 354, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 27536, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 14487.932640615621, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.78, - "travelTimeWithoutDwellTimesSeconds": 3540, - "operatingTimeWithLayoverTimeSeconds": 3894, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3540, - "operatingSpeedWithLayoverMetersPerSecond": 7.07, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.78 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "ebf7fd24-b756-481f-9a88-33b6362fcbda", - "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", - "3613b472-6055-4b55-9c89-01a451d82804", - "4cd6eb13-aeec-4716-a3d3-8e1a38389723", - "9ad04c6c-abc1-49fe-8f36-db6146dd5c5c", - "3dedf179-3478-4b4d-b706-36e0a8981094", - "3bd4e28f-2392-4d87-96de-a2ab53d75020", - "ba6e04e1-77fc-4b3f-86d2-fd956b418882", - "c02424dc-f033-4be6-a66b-8712f3e4b064", - "a304bcbf-a90b-4a1c-90fd-af05d73c3bdb", - "f2e35f7f-c43e-48a9-8610-6fc945acde4b", - "39ff7687-30f4-4336-ad6e-7651a86ce308", - "5195ea00-9368-4dce-8167-c17b61cec6aa", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "b87ee1fa-53a3-46fa-9d30-2da964c500aa", - "5aedd246-6893-494f-8756-0a623654ca1d", - "cbb95297-898f-493c-b22a-5755d4356a5c", - "49262d07-72b2-466f-bf49-88656466e4a4", - "3d278b9f-fcbb-4681-9833-769bdbe48eaf", - "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", - "47dc43f6-90db-4837-be84-0b5d8a2becb4", - "628308c5-3a00-44cb-908b-068616e8e618", - "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", - "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", - "abeb197b-490c-4d67-8abe-37d08d73ce70", - "7d34a327-717a-432e-93f5-7310ac20c2c2", - "7ca4f3b1-99df-4499-964b-1702513ad59f", - "e134e428-8d59-4d84-966a-ce83afff1c1c", - "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", - "f7429ca8-1ccc-41e7-acab-a5d3915affbb", - "494d9db6-32c6-4aa3-9c11-91eba915c58f", - "6b55fd05-7687-457e-ae9d-e87027c7100f", - "ca205394-9833-4e14-b4fa-653c28b9a37d", - "dd170d68-d567-4a2d-8a93-47dec3a52cd1", - "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", - "bc367579-e120-4c24-8a22-9700d9580818", - "0d10f2fd-9087-48c2-a3cc-d12114887a2b", - "cc54b5e7-0d92-40a3-a2d0-962bd60dc85b", - "695f9244-0dd1-45c0-ba42-b49de2270ee6", - "51dc5cf7-92db-46c8-8c42-9f02a7f9e23c", - "0c601e52-04e5-43e0-9137-7225c37d4cdc", - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" - ], - "stops": [], - "line_id": "494ea6bd-6582-45fe-a505-c8cb0bc59e5f", - "segments": [ - 0, - 7, - 14, - 21, - 25, - 26, - 33, - 42, - 49, - 59, - 68, - 74, - 79, - 90, - 95, - 105, - 116, - 124, - 136, - 145, - 149, - 155, - 158, - 166, - 174, - 179, - 191, - 200, - 211, - 216, - 219, - 227, - 232, - 279, - 286, - 293, - 300, - 305, - 308, - 315, - 321, - 326 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 186, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.566611, - 45.498345 - ], - [ - -73.566738, - 45.498195 - ], - [ - -73.566628, - 45.49808 - ], - [ - -73.566306, - 45.497931 - ], - [ - -73.566253, - 45.497841 - ], - [ - -73.56638, - 45.497699 - ], - [ - -73.566016, - 45.497523 - ], - [ - -73.564691, - 45.496892 - ], - [ - -73.564645, - 45.496938 - ], - [ - -73.564308, - 45.497279 - ], - [ - -73.564223, - 45.497363 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.563751, - 45.497848 - ], - [ - -73.562654, - 45.499004 - ], - [ - -73.562195, - 45.498662 - ], - [ - -73.561924, - 45.498365 - ], - [ - -73.561721, - 45.498171 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.561033, - 45.497765 - ], - [ - -73.560456, - 45.497495 - ], - [ - -73.560139, - 45.497347 - ], - [ - -73.559235, - 45.49696 - ], - [ - -73.55917, - 45.496938 - ], - [ - -73.558356, - 45.496631 - ], - [ - -73.557604, - 45.496364 - ], - [ - -73.556782, - 45.49606 - ], - [ - -73.555745, - 45.495673 - ], - [ - -73.555351, - 45.495512 - ], - [ - -73.555133, - 45.495401 - ], - [ - -73.554916, - 45.495262 - ], - [ - -73.554768, - 45.495125 - ], - [ - -73.55465, - 45.494994 - ], - [ - -73.553944, - 45.493258 - ], - [ - -73.553818, - 45.492971 - ], - [ - -73.553465, - 45.492338 - ], - [ - -73.552977, - 45.491759 - ], - [ - -73.552502, - 45.491344 - ], - [ - -73.551956, - 45.490962 - ], - [ - -73.551651, - 45.490791 - ], - [ - -73.551074, - 45.490513 - ], - [ - -73.550682, - 45.490367 - ], - [ - -73.550312, - 45.490228 - ], - [ - -73.54956, - 45.490034 - ], - [ - -73.548355, - 45.489798 - ], - [ - -73.542648, - 45.488704 - ], - [ - -73.541878, - 45.488554 - ], - [ - -73.541086, - 45.488398 - ], - [ - -73.541083, - 45.488397 - ], - [ - -73.540636, - 45.488282 - ], - [ - -73.540145, - 45.488119 - ], - [ - -73.539582, - 45.48786 - ], - [ - -73.539239, - 45.487663 - ], - [ - -73.538946, - 45.487462 - ], - [ - -73.538619, - 45.487192 - ], - [ - -73.538304, - 45.486863 - ], - [ - -73.538089, - 45.486564 - ], - [ - -73.537862, - 45.486139 - ], - [ - -73.537796, - 45.485958 - ], - [ - -73.537731, - 45.485785 - ], - [ - -73.53767, - 45.485461 - ], - [ - -73.537646, - 45.485264 - ], - [ - -73.537653, - 45.484914 - ], - [ - -73.537707, - 45.484604 - ], - [ - -73.537881, - 45.484168 - ], - [ - -73.537968, - 45.483893 - ], - [ - -73.538058, - 45.483623 - ], - [ - -73.539557, - 45.479354 - ], - [ - -73.53982, - 45.478652 - ], - [ - -73.540179, - 45.47782 - ], - [ - -73.540481, - 45.477177 - ], - [ - -73.540578, - 45.477027 - ], - [ - -73.540928, - 45.476409 - ], - [ - -73.5413, - 45.475732 - ], - [ - -73.541747, - 45.474937 - ], - [ - -73.542136, - 45.474264 - ], - [ - -73.542539, - 45.47363 - ], - [ - -73.543159, - 45.472786 - ], - [ - -73.543162, - 45.472781 - ], - [ - -73.5432, - 45.472729 - ], - [ - -73.543381, - 45.472482 - ], - [ - -73.543908, - 45.471834 - ], - [ - -73.544604, - 45.471016 - ], - [ - -73.54479, - 45.470824 - ], - [ - -73.544929, - 45.470679 - ], - [ - -73.54509, - 45.470477 - ], - [ - -73.545159, - 45.470391 - ], - [ - -73.545162, - 45.470289 - ], - [ - -73.54518, - 45.470102 - ], - [ - -73.54513, - 45.469912 - ], - [ - -73.545032, - 45.469762 - ], - [ - -73.544829, - 45.469589 - ], - [ - -73.544396, - 45.469456 - ], - [ - -73.544223, - 45.469408 - ], - [ - -73.544, - 45.469414 - ], - [ - -73.54385, - 45.469436 - ], - [ - -73.543665, - 45.469485 - ], - [ - -73.543125, - 45.469658 - ], - [ - -73.542795, - 45.46978 - ], - [ - -73.542335, - 45.469915 - ], - [ - -73.542042, - 45.469974 - ], - [ - -73.541634, - 45.469988 - ], - [ - -73.538583, - 45.470121 - ], - [ - -73.536645, - 45.47012 - ], - [ - -73.534843, - 45.470106 - ], - [ - -73.531663, - 45.470044 - ], - [ - -73.528901, - 45.469979 - ], - [ - -73.525636, - 45.469864 - ], - [ - -73.520215, - 45.469565 - ], - [ - -73.516228, - 45.469261 - ], - [ - -73.50737, - 45.468395 - ], - [ - -73.501604, - 45.467786 - ], - [ - -73.499262, - 45.467514 - ], - [ - -73.493921, - 45.466881 - ], - [ - -73.491932, - 45.466645 - ], - [ - -73.489852, - 45.466348 - ], - [ - -73.489119, - 45.46624 - ], - [ - -73.488353, - 45.466099 - ], - [ - -73.487947, - 45.465982 - ], - [ - -73.487624, - 45.465833 - ], - [ - -73.487378, - 45.465638 - ], - [ - -73.487289, - 45.465389 - ], - [ - -73.487411, - 45.465142 - ], - [ - -73.487606, - 45.464949 - ], - [ - -73.487929, - 45.464813 - ], - [ - -73.488584, - 45.464665 - ], - [ - -73.489559, - 45.464575 - ], - [ - -73.49019, - 45.464579 - ], - [ - -73.490836, - 45.464607 - ], - [ - -73.491353, - 45.464709 - ], - [ - -73.492266, - 45.464916 - ], - [ - -73.492298, - 45.464924 - ], - [ - -73.493024, - 45.46511 - ], - [ - -73.493289, - 45.465231 - ], - [ - -73.49355, - 45.46545 - ], - [ - -73.493833, - 45.466097 - ], - [ - -73.493922, - 45.46638 - ], - [ - -73.494209, - 45.467172 - ], - [ - -73.494809, - 45.468733 - ], - [ - -73.495076, - 45.469359 - ], - [ - -73.495234, - 45.469683 - ], - [ - -73.495362, - 45.469939 - ], - [ - -73.495491, - 45.470173 - ], - [ - -73.49554, - 45.470262 - ], - [ - -73.495895, - 45.470906 - ], - [ - -73.495967, - 45.471037 - ], - [ - -73.496018, - 45.471127 - ], - [ - -73.496235, - 45.471478 - ], - [ - -73.496323, - 45.471617 - ], - [ - -73.496799, - 45.472387 - ], - [ - -73.497277, - 45.473188 - ], - [ - -73.497508, - 45.473543 - ], - [ - -73.497684, - 45.473744 - ], - [ - -73.49797, - 45.473998 - ], - [ - -73.497971, - 45.473998 - ], - [ - -73.498154, - 45.474204 - ], - [ - -73.498345, - 45.474398 - ], - [ - -73.498759, - 45.474776 - ], - [ - -73.498981, - 45.474956 - ], - [ - -73.499212, - 45.475131 - ], - [ - -73.499453, - 45.475307 - ], - [ - -73.502533, - 45.47734 - ], - [ - -73.504857, - 45.478866 - ], - [ - -73.505913, - 45.479567 - ], - [ - -73.50636, - 45.479923 - ], - [ - -73.506669, - 45.480206 - ], - [ - -73.506703, - 45.480242 - ], - [ - -73.507146, - 45.480733 - ], - [ - -73.507302, - 45.480949 - ], - [ - -73.507442, - 45.481165 - ], - [ - -73.507569, - 45.481381 - ], - [ - -73.507678, - 45.48161 - ], - [ - -73.507857, - 45.482069 - ], - [ - -73.507995, - 45.482559 - ], - [ - -73.508478, - 45.484485 - ], - [ - -73.508692, - 45.485218 - ], - [ - -73.508857, - 45.485709 - ], - [ - -73.509037, - 45.486199 - ], - [ - -73.509236, - 45.486685 - ], - [ - -73.509454, - 45.487171 - ], - [ - -73.509688, - 45.487657 - ], - [ - -73.509939, - 45.488138 - ], - [ - -73.510206, - 45.488624 - ], - [ - -73.510497, - 45.489096 - ], - [ - -73.510511, - 45.489119 - ], - [ - -73.510962, - 45.489803 - ], - [ - -73.512569, - 45.492115 - ], - [ - -73.512867, - 45.49257 - ], - [ - -73.513116, - 45.493024 - ], - [ - -73.513214, - 45.493253 - ], - [ - -73.513607, - 45.494261 - ], - [ - -73.514156, - 45.495746 - ], - [ - -73.514429, - 45.49643 - ], - [ - -73.514695, - 45.496974 - ], - [ - -73.515628, - 45.498702 - ], - [ - -73.515861, - 45.49917 - ], - [ - -73.516166, - 45.499876 - ], - [ - -73.516897, - 45.501748 - ], - [ - -73.516988, - 45.501968 - ], - [ - -73.517173, - 45.5024 - ], - [ - -73.517284, - 45.502611 - ], - [ - -73.517524, - 45.503025 - ], - [ - -73.517729, - 45.503327 - ], - [ - -73.51827, - 45.504082 - ], - [ - -73.518977, - 45.505113 - ], - [ - -73.519147, - 45.505406 - ], - [ - -73.519228, - 45.505544 - ], - [ - -73.519438, - 45.50599 - ], - [ - -73.519526, - 45.506219 - ], - [ - -73.519678, - 45.506692 - ], - [ - -73.521082, - 45.511245 - ], - [ - -73.521438, - 45.51241 - ], - [ - -73.522146, - 45.514695 - ], - [ - -73.52301, - 45.517471 - ], - [ - -73.523266, - 45.518335 - ], - [ - -73.52329, - 45.518416 - ], - [ - -73.52338, - 45.518726 - ], - [ - -73.523575, - 45.519487 - ], - [ - -73.523691, - 45.519991 - ], - [ - -73.523836, - 45.520746 - ], - [ - -73.523856, - 45.520868 - ], - [ - -73.524112, - 45.522465 - ], - [ - -73.524354, - 45.524161 - ], - [ - -73.524413, - 45.524647 - ], - [ - -73.524445, - 45.525138 - ], - [ - -73.524426, - 45.525628 - ], - [ - -73.524401, - 45.525871 - ], - [ - -73.524367, - 45.526114 - ], - [ - -73.524264, - 45.526595 - ], - [ - -73.524195, - 45.526834 - ], - [ - -73.524183, - 45.526867 - ], - [ - -73.524025, - 45.527306 - ], - [ - -73.523924, - 45.52754 - ], - [ - -73.523683, - 45.528004 - ], - [ - -73.52355, - 45.528233 - ], - [ - -73.523265, - 45.528661 - ], - [ - -73.52295, - 45.529066 - ], - [ - -73.522634, - 45.529444 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.503549, - 45.548419 - ], - [ - -73.502986, - 45.54904 - ], - [ - -73.502097, - 45.550079 - ], - [ - -73.501025, - 45.551361 - ], - [ - -73.500319, - 45.55223 - ], - [ - -73.497146, - 45.556054 - ], - [ - -73.496787, - 45.55649 - ], - [ - -73.495905, - 45.557543 - ], - [ - -73.495369, - 45.558173 - ], - [ - -73.494314, - 45.559446 - ], - [ - -73.493461, - 45.560499 - ], - [ - -73.492975, - 45.561151 - ], - [ - -73.492659, - 45.561597 - ], - [ - -73.492068, - 45.562474 - ], - [ - -73.49148, - 45.563383 - ], - [ - -73.490434, - 45.564962 - ], - [ - -73.489967, - 45.565619 - ], - [ - -73.489477, - 45.566267 - ], - [ - -73.488962, - 45.566906 - ], - [ - -73.48825, - 45.567747 - ], - [ - -73.487877, - 45.568161 - ], - [ - -73.487301, - 45.568777 - ], - [ - -73.486712, - 45.56938 - ], - [ - -73.486308, - 45.569771 - ], - [ - -73.485474, - 45.570545 - ], - [ - -73.48461, - 45.571301 - ], - [ - -73.483654, - 45.572115 - ], - [ - -73.478606, - 45.576433 - ], - [ - -73.478028, - 45.576933 - ], - [ - -73.477248, - 45.577607 - ], - [ - -73.476645, - 45.578128 - ], - [ - -73.475915, - 45.578754 - ], - [ - -73.475553, - 45.579033 - ], - [ - -73.474887, - 45.579478 - ], - [ - -73.474437, - 45.579762 - ], - [ - -73.474095, - 45.580005 - ], - [ - -73.473853, - 45.580158 - ], - [ - -73.473398, - 45.580472 - ], - [ - -73.473077, - 45.58072 - ], - [ - -73.472886, - 45.580886 - ], - [ - -73.472612, - 45.581152 - ], - [ - -73.472574, - 45.581196 - ], - [ - -73.472319, - 45.581482 - ], - [ - -73.472175, - 45.581673 - ], - [ - -73.471994, - 45.581936 - ], - [ - -73.47191, - 45.582061 - ], - [ - -73.471753, - 45.582326 - ], - [ - -73.471543, - 45.582681 - ], - [ - -73.471245, - 45.583188 - ], - [ - -73.471013, - 45.58358 - ], - [ - -73.470714, - 45.584071 - ], - [ - -73.470067, - 45.585151 - ], - [ - -73.469784, - 45.585547 - ], - [ - -73.469628, - 45.585749 - ], - [ - -73.469287, - 45.586145 - ], - [ - -73.469101, - 45.586343 - ], - [ - -73.468904, - 45.586536 - ], - [ - -73.468695, - 45.586725 - ], - [ - -73.466029, - 45.588965 - ], - [ - -73.465851, - 45.589127 - ], - [ - -73.464661, - 45.590008 - ], - [ - -73.463452, - 45.59093 - ], - [ - -73.462873, - 45.59133 - ], - [ - -73.462371, - 45.591654 - ], - [ - -73.46224, - 45.591722 - ], - [ - -73.462125, - 45.591758 - ], - [ - -73.462005, - 45.59178 - ], - [ - -73.461886, - 45.591789 - ], - [ - -73.461768, - 45.591789 - ], - [ - -73.461658, - 45.591771 - ], - [ - -73.461565, - 45.591739 - ], - [ - -73.461494, - 45.591707 - ], - [ - -73.461385, - 45.591658 - ], - [ - -73.461314, - 45.591613 - ], - [ - -73.461175, - 45.591528 - ], - [ - -73.46107, - 45.591613 - ], - [ - -73.460957, - 45.591717 - ], - [ - -73.460805, - 45.591865 - ], - [ - -73.460701, - 45.591996 - ], - [ - -73.460612, - 45.592117 - ], - [ - -73.460536, - 45.592252 - ], - [ - -73.460484, - 45.592382 - ], - [ - -73.46046, - 45.592459 - ], - [ - -73.46044, - 45.592544 - ], - [ - -73.460424, - 45.592634 - ], - [ - -73.460424, - 45.592715 - ], - [ - -73.460428, - 45.592832 - ], - [ - -73.46044, - 45.592958 - ], - [ - -73.460595, - 45.593596 - ], - [ - -73.460755, - 45.594214 - ], - [ - -73.460806, - 45.594407 - ], - [ - -73.460827, - 45.594547 - ], - [ - -73.460833, - 45.594641 - ], - [ - -73.460826, - 45.594731 - ], - [ - -73.460813, - 45.594821 - ], - [ - -73.460783, - 45.59492 - ], - [ - -73.460735, - 45.595046 - ], - [ - -73.46039, - 45.595847 - ], - [ - -73.460377, - 45.59604 - ], - [ - -73.460279, - 45.596211 - ], - [ - -73.46002, - 45.596731 - ], - [ - -73.459959, - 45.596854 - ], - [ - -73.459796, - 45.597151 - ], - [ - -73.459667, - 45.59743 - ], - [ - -73.459417, - 45.597961 - ], - [ - -73.459297, - 45.598249 - ], - [ - -73.459134, - 45.598618 - ], - [ - -73.459106, - 45.598681 - ], - [ - -73.45906, - 45.598784 - ], - [ - -73.458929, - 45.599081 - ], - [ - -73.458773, - 45.599468 - ], - [ - -73.45861, - 45.599891 - ], - [ - -73.458476, - 45.600252 - ], - [ - -73.458417, - 45.600413 - ], - [ - -73.458077, - 45.601272 - ], - [ - -73.457833, - 45.601965 - ], - [ - -73.457685, - 45.602364 - ], - [ - -73.457663, - 45.602423 - ], - [ - -73.457484, - 45.603017 - ], - [ - -73.457297, - 45.603715 - ], - [ - -73.457201, - 45.604101 - ], - [ - -73.457136, - 45.604362 - ], - [ - -73.457004, - 45.60488 - ], - [ - -73.456875, - 45.605321 - ], - [ - -73.456765, - 45.605708 - ], - [ - -73.456649, - 45.60615 - ], - [ - -73.456639, - 45.606189 - ], - [ - -73.456606, - 45.606499 - ], - [ - -73.456464, - 45.606472 - ], - [ - -73.45638, - 45.606432 - ], - [ - -73.456116, - 45.606233 - ], - [ - -73.456106, - 45.606225 - ], - [ - -73.456001, - 45.606135 - ], - [ - -73.455782, - 45.605973 - ], - [ - -73.455171, - 45.605504 - ], - [ - -73.454909, - 45.605308 - ], - [ - -73.454539, - 45.605032 - ], - [ - -73.454133, - 45.604694 - ], - [ - -73.453904, - 45.604474 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453269, - 45.60401 - ], - [ - -73.453124, - 45.603897 - ], - [ - -73.452821, - 45.603664 - ], - [ - -73.452751, - 45.603609 - ], - [ - -73.452634, - 45.603524 - ], - [ - -73.45156, - 45.602679 - ], - [ - -73.45153, - 45.602655 - ], - [ - -73.451134, - 45.602344 - ], - [ - -73.450997, - 45.602236 - ], - [ - -73.450804, - 45.602087 - ], - [ - -73.450717, - 45.602019 - ], - [ - -73.450711, - 45.601962 - ], - [ - -73.450652, - 45.601878 - ], - [ - -73.450633, - 45.601851 - ], - [ - -73.45062, - 45.601823 - ], - [ - -73.450613, - 45.6018 - ], - [ - -73.450612, - 45.601775 - ], - [ - -73.450612, - 45.601745 - ], - [ - -73.450617, - 45.601719 - ], - [ - -73.450626, - 45.601694 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450455, - 45.601424 - ], - [ - -73.450415, - 45.60142 - ], - [ - -73.450377, - 45.601418 - ], - [ - -73.450324, - 45.601415 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450247, - 45.601412 - ], - [ - -73.450159, - 45.601408 - ], - [ - -73.450117, - 45.6014 - ], - [ - -73.450076, - 45.601382 - ], - [ - -73.450018, - 45.601356 - ], - [ - -73.449945, - 45.60132 - ], - [ - -73.449881, - 45.6013 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.446908, - 45.599337 - ], - [ - -73.446679, - 45.599485 - ], - [ - -73.446043, - 45.599863 - ], - [ - -73.445879, - 45.599964 - ], - [ - -73.445606, - 45.600133 - ], - [ - -73.445172, - 45.600385 - ], - [ - -73.444832, - 45.600591 - ], - [ - -73.444182, - 45.600973 - ], - [ - -73.443509, - 45.601378 - ], - [ - -73.443055, - 45.601648 - ], - [ - -73.442793, - 45.601808 - ], - [ - -73.442509, - 45.60198 - ], - [ - -73.441922, - 45.602327 - ], - [ - -73.441516, - 45.602542 - ], - [ - -73.438822, - 45.603769 - ], - [ - -73.438466, - 45.603935 - ], - [ - -73.438125, - 45.604091 - ], - [ - -73.437975, - 45.60416 - ], - [ - -73.437443, - 45.604403 - ], - [ - -73.436923, - 45.604637 - ], - [ - -73.436609, - 45.60478 - ], - [ - -73.436434, - 45.60486 - ], - [ - -73.436303, - 45.60492 - ], - [ - -73.433751, - 45.606088 - ], - [ - -73.433088, - 45.606393 - ], - [ - -73.433017, - 45.606425 - ], - [ - -73.432607, - 45.606605 - ], - [ - -73.432434, - 45.606672 - ], - [ - -73.43227, - 45.606721 - ], - [ - -73.431993, - 45.60678 - ], - [ - -73.431775, - 45.606798 - ], - [ - -73.431493, - 45.606793 - ], - [ - -73.430876, - 45.606707 - ], - [ - -73.430278, - 45.606621 - ], - [ - -73.430121, - 45.606599 - ], - [ - -73.429954, - 45.606572 - ], - [ - -73.429341, - 45.606472 - ], - [ - -73.429112, - 45.606427 - ], - [ - -73.42886, - 45.60635 - ], - [ - -73.42867, - 45.606274 - ], - [ - -73.428495, - 45.606184 - ], - [ - -73.428311, - 45.606067 - ], - [ - -73.428252, - 45.60602 - ], - [ - -73.428173, - 45.605959 - ], - [ - -73.427998, - 45.605828 - ], - [ - -73.427603, - 45.605522 - ], - [ - -73.42746, - 45.605399 - ], - [ - -73.427432, - 45.605363 - ], - [ - -73.427424, - 45.605353 - ], - [ - -73.427406, - 45.605312 - ], - [ - -73.427407, - 45.605278 - ], - [ - -73.427423, - 45.605237 - ], - [ - -73.427444, - 45.605211 - ], - [ - -73.427475, - 45.60518 - ], - [ - -73.428439, - 45.604563 - ], - [ - -73.428564, - 45.604483 - ], - [ - -73.428653, - 45.604427 - ], - [ - -73.42903, - 45.604191 - ], - [ - -73.429453, - 45.603926 - ], - [ - -73.429967, - 45.603607 - ], - [ - -73.430523, - 45.603252 - ], - [ - -73.430877, - 45.603027 - ], - [ - -73.431204, - 45.602817 - ], - [ - -73.431263, - 45.60278 - ], - [ - -73.432706, - 45.602245 - ], - [ - -73.433739, - 45.601863 - ], - [ - -73.434166, - 45.601679 - ], - [ - -73.434258, - 45.601635 - ], - [ - -73.434475, - 45.601531 - ], - [ - -73.434596, - 45.601477 - ], - [ - -73.43499, - 45.601122 - ], - [ - -73.435271, - 45.600843 - ], - [ - -73.435516, - 45.600609 - ], - [ - -73.435806, - 45.600335 - ], - [ - -73.435984, - 45.600152 - ], - [ - -73.436103, - 45.600029 - ], - [ - -73.436265, - 45.599879 - ], - [ - -73.436408, - 45.599746 - ], - [ - -73.43685, - 45.599305 - ], - [ - -73.437027, - 45.599139 - ], - [ - -73.437055, - 45.599114 - ], - [ - -73.437156, - 45.599026 - ], - [ - -73.43732, - 45.5989 - ], - [ - -73.437622, - 45.598721 - ], - [ - -73.438241, - 45.598406 - ], - [ - -73.438454, - 45.598305 - ], - [ - -73.438619, - 45.598226 - ], - [ - -73.43978, - 45.597624 - ], - [ - -73.439976, - 45.597521 - ], - [ - -73.440742, - 45.597138 - ], - [ - -73.441198, - 45.596912 - ], - [ - -73.441367, - 45.596828 - ], - [ - -73.441552, - 45.59672 - ], - [ - -73.441835, - 45.596541 - ], - [ - -73.442031, - 45.596415 - ], - [ - -73.442486, - 45.596128 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442992, - 45.59628 - ], - [ - -73.443394, - 45.596559 - ], - [ - -73.443528, - 45.596515 - ], - [ - -73.443788, - 45.596348 - ], - [ - -73.444437, - 45.59593 - ], - [ - -73.444718, - 45.595759 - ], - [ - -73.444968, - 45.595606 - ], - [ - -73.445101, - 45.595534 - ], - [ - -73.4452, - 45.595467 - ], - [ - -73.445245, - 45.595436 - ], - [ - -73.445328, - 45.595355 - ], - [ - -73.445345, - 45.595325 - ], - [ - -73.445373, - 45.595278 - ], - [ - -73.445401, - 45.595148 - ], - [ - -73.445274, - 45.595116 - ], - [ - -73.444881, - 45.594976 - ], - [ - -73.444601, - 45.594868 - ], - [ - -73.444384, - 45.594778 - ], - [ - -73.444209, - 45.594648 - ], - [ - -73.444038, - 45.594472 - ], - [ - -73.44393, - 45.594306 - ], - [ - -73.443815, - 45.593977 - ], - [ - -73.443598, - 45.593295 - ], - [ - -73.443554, - 45.593158 - ], - [ - -73.443364, - 45.592618 - ], - [ - -73.443333, - 45.592528 - ], - [ - -73.443289, - 45.59238 - ], - [ - -73.443278, - 45.592341 - ], - [ - -73.443255, - 45.592258 - ], - [ - -73.443182, - 45.592056 - ], - [ - -73.443153, - 45.591988 - ], - [ - -73.442948, - 45.591732 - ], - [ - -73.442582, - 45.591336 - ], - [ - -73.44228, - 45.591009 - ], - [ - -73.44224, - 45.590966 - ], - [ - -73.442026, - 45.59066 - ], - [ - -73.441784, - 45.590332 - ], - [ - -73.441426, - 45.589823 - ], - [ - -73.441196, - 45.589499 - ], - [ - -73.441126, - 45.589423 - ], - [ - -73.4409, - 45.589283 - ], - [ - -73.440622, - 45.589119 - ], - [ - -73.440489, - 45.58904 - ], - [ - -73.440356, - 45.588972 - ], - [ - -73.440242, - 45.588905 - ], - [ - -73.439836, - 45.589215 - ], - [ - -73.4396, - 45.589383 - ], - [ - -73.439545, - 45.589422 - ], - [ - -73.43944, - 45.589489 - ], - [ - -73.438814, - 45.588976 - ], - [ - -73.438743, - 45.588908 - ], - [ - -73.438667, - 45.588827 - ], - [ - -73.438608, - 45.58876 - ], - [ - -73.438525, - 45.588647 - ], - [ - -73.438459, - 45.588481 - ], - [ - -73.438434, - 45.588373 - ], - [ - -73.438397, - 45.58804 - ], - [ - -73.438381, - 45.587886 - ], - [ - -73.438361, - 45.587689 - ], - [ - -73.438322, - 45.587343 - ], - [ - -73.438278, - 45.58696 - ], - [ - -73.438254, - 45.586654 - ], - [ - -73.438228, - 45.586444 - ], - [ - -73.438207, - 45.586281 - ], - [ - -73.438171, - 45.586006 - ], - [ - -73.438139, - 45.585831 - ], - [ - -73.4381, - 45.585741 - ], - [ - -73.438042, - 45.585678 - ], - [ - -73.437636, - 45.585399 - ], - [ - -73.437143, - 45.585016 - ], - [ - -73.435838, - 45.584003 - ], - [ - -73.435641, - 45.583881 - ], - [ - -73.435442, - 45.583791 - ], - [ - -73.435024, - 45.583692 - ], - [ - -73.434811, - 45.583651 - ], - [ - -73.43465, - 45.583624 - ], - [ - -73.434628, - 45.58362 - ], - [ - -73.434386, - 45.58357 - ], - [ - -73.434475, - 45.583458 - ], - [ - -73.434532, - 45.583372 - ], - [ - -73.434573, - 45.58326 - ], - [ - -73.434593, - 45.583147 - ], - [ - -73.434594, - 45.583057 - ], - [ - -73.43455, - 45.582945 - ], - [ - -73.434479, - 45.582859 - ], - [ - -73.434334, - 45.58272 - ], - [ - -73.433523, - 45.582107 - ], - [ - -73.433315, - 45.58195 - ], - [ - -73.433005, - 45.581702 - ], - [ - -73.432709, - 45.581473 - ], - [ - -73.432359, - 45.581193 - ], - [ - -73.432012, - 45.580914 - ], - [ - -73.43177, - 45.580734 - ], - [ - -73.43138, - 45.580435 - ], - [ - -73.431218, - 45.580311 - ], - [ - -73.430652, - 45.580544 - ], - [ - -73.430169, - 45.580742 - ], - [ - -73.430012, - 45.580805 - ], - [ - -73.42982, - 45.580902 - ], - [ - -73.429773, - 45.580926 - ], - [ - -73.429655, - 45.581003 - ], - [ - -73.429134, - 45.581335 - ], - [ - -73.428878, - 45.581499 - ], - [ - -73.428761, - 45.581574 - ], - [ - -73.428049, - 45.582021 - ], - [ - -73.42763, - 45.582284 - ], - [ - -73.427138, - 45.582598 - ], - [ - -73.427107, - 45.582619 - ], - [ - -73.427059, - 45.58265 - ], - [ - -73.426641, - 45.582922 - ], - [ - -73.426528, - 45.583004 - ], - [ - -73.429814, - 45.585537 - ], - [ - -73.429841, - 45.585558 - ], - [ - -73.429958, - 45.585646 - ], - [ - -73.430085, - 45.585745 - ], - [ - -73.430467, - 45.586051 - ], - [ - -73.430716, - 45.586245 - ], - [ - -73.430893, - 45.586393 - ], - [ - -73.431289, - 45.586718 - ], - [ - -73.431326, - 45.58675 - ], - [ - -73.431717, - 45.587092 - ], - [ - -73.431818, - 45.587179 - ], - [ - -73.431883, - 45.587238 - ], - [ - -73.432034, - 45.587385 - ], - [ - -73.432226, - 45.587579 - ], - [ - -73.433253, - 45.588702 - ], - [ - -73.433537, - 45.589009 - ], - [ - -73.433674, - 45.589158 - ], - [ - -73.433885, - 45.58936 - ], - [ - -73.4342, - 45.589657 - ], - [ - -73.434715, - 45.590103 - ], - [ - -73.434884, - 45.590234 - ], - [ - -73.434944, - 45.590279 - ], - [ - -73.434983, - 45.59031 - ], - [ - -73.434986, - 45.590313 - ], - [ - -73.435014, - 45.590337 - ], - [ - -73.435057, - 45.590373 - ], - [ - -73.435107, - 45.590414 - ], - [ - -73.435254, - 45.590517 - ], - [ - -73.435815, - 45.590941 - ], - [ - -73.436185, - 45.591213 - ] - ] - }, - "id": 187, - "properties": { - "id": "4b21539d-ac51-4036-8437-cc8820a65c36", - "data": { - "gtfs": { - "shape_id": "86_2_R" - }, - "segments": [ - { - "distanceMeters": 26369, - "travelTimeSeconds": 1698 - }, - { - "distanceMeters": 639, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 818, - "travelTimeSeconds": 110 - }, - { - "distanceMeters": 316, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 444, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 91 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 29 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 336, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 36893, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 14511.029094960697, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 10.98, - "travelTimeWithoutDwellTimesSeconds": 3360, - "operatingTimeWithLayoverTimeSeconds": 3696, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3360, - "operatingSpeedWithLayoverMetersPerSecond": 9.98, - "averageSpeedWithoutDwellTimesMetersPerSecond": 10.98 - }, - "mode": "bus", - "name": "boul. De Montarville", - "color": "#A32638", - "nodes": [ - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", - "6460b11a-31ec-4bbc-b7b7-22be32195079", - "51dc5cf7-92db-46c8-8c42-9f02a7f9e23c", - "695f9244-0dd1-45c0-ba42-b49de2270ee6", - "cc54b5e7-0d92-40a3-a2d0-962bd60dc85b", - "0d10f2fd-9087-48c2-a3cc-d12114887a2b", - "bc367579-e120-4c24-8a22-9700d9580818", - "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", - "6e37aa2c-853a-4603-9807-c4f338ee1e72", - "ca205394-9833-4e14-b4fa-653c28b9a37d", - "6b55fd05-7687-457e-ae9d-e87027c7100f", - "494d9db6-32c6-4aa3-9c11-91eba915c58f", - "f7429ca8-1ccc-41e7-acab-a5d3915affbb", - "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", - "e134e428-8d59-4d84-966a-ce83afff1c1c", - "7ca4f3b1-99df-4499-964b-1702513ad59f", - "7d34a327-717a-432e-93f5-7310ac20c2c2", - "abeb197b-490c-4d67-8abe-37d08d73ce70", - "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", - "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", - "628308c5-3a00-44cb-908b-068616e8e618", - "47dc43f6-90db-4837-be84-0b5d8a2becb4", - "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", - "fc32be78-9480-4dfc-b10c-475dc000dd04", - "0872c388-8faf-4852-b4ce-cf3f6312e0ef", - "49262d07-72b2-466f-bf49-88656466e4a4", - "cbb95297-898f-493c-b22a-5755d4356a5c", - "5aedd246-6893-494f-8756-0a623654ca1d", - "b87ee1fa-53a3-46fa-9d30-2da964c500aa", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "5195ea00-9368-4dce-8167-c17b61cec6aa", - "39ff7687-30f4-4336-ad6e-7651a86ce308", - "f2e35f7f-c43e-48a9-8610-6fc945acde4b", - "a304bcbf-a90b-4a1c-90fd-af05d73c3bdb", - "c02424dc-f033-4be6-a66b-8712f3e4b064", - "ba6e04e1-77fc-4b3f-86d2-fd956b418882", - "3bd4e28f-2392-4d87-96de-a2ab53d75020", - "e0ad666d-6319-4692-a7ee-a3080772e28d", - "c4a07fb5-3745-472e-8e03-a61e6908d906", - "3e60c63a-1f50-42ff-98f0-f081a7dc4017", - "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", - "ebf7fd24-b756-481f-9a88-33b6362fcbda", - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9" - ], - "stops": [], - "line_id": "494ea6bd-6582-45fe-a505-c8cb0bc59e5f", - "segments": [ - 0, - 329, - 358, - 364, - 370, - 374, - 378, - 383, - 393, - 400, - 453, - 460, - 466, - 471, - 475, - 483, - 492, - 504, - 512, - 517, - 526, - 530, - 535, - 540, - 545, - 550, - 558, - 569, - 580, - 588, - 593, - 604, - 609, - 616, - 623, - 633, - 640, - 649, - 655, - 659, - 666, - 673, - 681 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 187, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.453106, - 45.603884 - ], - [ - -73.453124, - 45.603897 - ], - [ - -73.453269, - 45.60401 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453904, - 45.604474 - ], - [ - -73.454133, - 45.604694 - ], - [ - -73.454539, - 45.605032 - ], - [ - -73.454918, - 45.605315 - ], - [ - -73.455171, - 45.605504 - ], - [ - -73.455782, - 45.605973 - ], - [ - -73.456001, - 45.606135 - ], - [ - -73.456106, - 45.606225 - ], - [ - -73.45638, - 45.606432 - ], - [ - -73.456449, - 45.606465 - ], - [ - -73.456464, - 45.606472 - ], - [ - -73.456606, - 45.606499 - ], - [ - -73.456615, - 45.606661 - ], - [ - -73.456615, - 45.606737 - ], - [ - -73.456615, - 45.606796 - ], - [ - -73.45661, - 45.607368 - ], - [ - -73.456599, - 45.607836 - ], - [ - -73.456595, - 45.60819 - ], - [ - -73.456594, - 45.608335 - ], - [ - -73.456582, - 45.60905 - ], - [ - -73.456558, - 45.609802 - ], - [ - -73.456542, - 45.610014 - ], - [ - -73.456534, - 45.610121 - ], - [ - -73.456537, - 45.610463 - ], - [ - -73.456508, - 45.610998 - ], - [ - -73.4565, - 45.611138 - ], - [ - -73.456491, - 45.611268 - ], - [ - -73.456473, - 45.611516 - ], - [ - -73.456454, - 45.611729 - ], - [ - -73.456449, - 45.611777 - ], - [ - -73.456429, - 45.612204 - ], - [ - -73.456403, - 45.612587 - ], - [ - -73.456367, - 45.613122 - ], - [ - -73.456346, - 45.613356 - ], - [ - -73.456319, - 45.61365 - ], - [ - -73.456315, - 45.613702 - ], - [ - -73.456295, - 45.613828 - ], - [ - -73.456125, - 45.615281 - ], - [ - -73.45606, - 45.615718 - ], - [ - -73.456015, - 45.616024 - ], - [ - -73.455984, - 45.616307 - ], - [ - -73.45596, - 45.616501 - ], - [ - -73.455915, - 45.616856 - ], - [ - -73.455899, - 45.61699 - ], - [ - -73.455888, - 45.617081 - ], - [ - -73.455879, - 45.617157 - ], - [ - -73.45581, - 45.617621 - ], - [ - -73.455761, - 45.617974 - ], - [ - -73.455729, - 45.618206 - ], - [ - -73.455676, - 45.618606 - ], - [ - -73.45562, - 45.619025 - ], - [ - -73.455571, - 45.619434 - ], - [ - -73.455486, - 45.620131 - ], - [ - -73.455479, - 45.620194 - ], - [ - -73.455459, - 45.620347 - ], - [ - -73.455364, - 45.621566 - ], - [ - -73.455351, - 45.621782 - ], - [ - -73.455345, - 45.621886 - ], - [ - -73.455228, - 45.623663 - ], - [ - -73.455174, - 45.624115 - ], - [ - -73.455153, - 45.624288 - ], - [ - -73.454435, - 45.626407 - ], - [ - -73.454315, - 45.626733 - ], - [ - -73.454243, - 45.626929 - ], - [ - -73.454024, - 45.62755 - ], - [ - -73.453877, - 45.627981 - ], - [ - -73.453834, - 45.628108 - ], - [ - -73.453601, - 45.628791 - ], - [ - -73.453393, - 45.629394 - ], - [ - -73.453358, - 45.629493 - ], - [ - -73.453315, - 45.629624 - ], - [ - -73.453257, - 45.629785 - ], - [ - -73.453007, - 45.630515 - ], - [ - -73.452942, - 45.630703 - ], - [ - -73.452778, - 45.631153 - ], - [ - -73.452686, - 45.631346 - ], - [ - -73.452502, - 45.631778 - ], - [ - -73.452319, - 45.632093 - ], - [ - -73.452094, - 45.632426 - ], - [ - -73.451782, - 45.632832 - ], - [ - -73.451773, - 45.632844 - ], - [ - -73.451693, - 45.632925 - ], - [ - -73.451614, - 45.633011 - ], - [ - -73.451195, - 45.633474 - ], - [ - -73.450679, - 45.634027 - ], - [ - -73.450136, - 45.634603 - ], - [ - -73.449531, - 45.635239 - ], - [ - -73.449434, - 45.63534 - ], - [ - -73.449285, - 45.635498 - ], - [ - -73.449067, - 45.635736 - ], - [ - -73.448723, - 45.636136 - ], - [ - -73.448535, - 45.636361 - ], - [ - -73.448252, - 45.636716 - ], - [ - -73.448132, - 45.636874 - ], - [ - -73.447872, - 45.637214 - ], - [ - -73.447778, - 45.637337 - ], - [ - -73.447634, - 45.637301 - ], - [ - -73.447384, - 45.637215 - ], - [ - -73.447064, - 45.637088 - ], - [ - -73.446874, - 45.637013 - ], - [ - -73.446777, - 45.636959 - ], - [ - -73.446639, - 45.63686 - ], - [ - -73.446407, - 45.636689 - ], - [ - -73.44625, - 45.636558 - ], - [ - -73.446134, - 45.636441 - ], - [ - -73.445951, - 45.636247 - ], - [ - -73.445769, - 45.636018 - ], - [ - -73.445712, - 45.635937 - ], - [ - -73.445634, - 45.635856 - ], - [ - -73.445562, - 45.635784 - ], - [ - -73.445466, - 45.635698 - ], - [ - -73.445268, - 45.635536 - ], - [ - -73.445235, - 45.635512 - ], - [ - -73.445104, - 45.635415 - ], - [ - -73.444715, - 45.635109 - ], - [ - -73.44467, - 45.635073 - ], - [ - -73.444422, - 45.63487 - ], - [ - -73.444148, - 45.634658 - ], - [ - -73.444049, - 45.634573 - ], - [ - -73.443845, - 45.634429 - ], - [ - -73.443401, - 45.634067 - ], - [ - -73.443242, - 45.633938 - ], - [ - -73.442909, - 45.633686 - ], - [ - -73.442563, - 45.633434 - ], - [ - -73.442416, - 45.633371 - ], - [ - -73.44208, - 45.633254 - ], - [ - -73.441599, - 45.633114 - ], - [ - -73.440847, - 45.632908 - ], - [ - -73.440824, - 45.632902 - ], - [ - -73.440392, - 45.632771 - ], - [ - -73.440856, - 45.631968 - ], - [ - -73.441271, - 45.631251 - ], - [ - -73.441456, - 45.630932 - ], - [ - -73.441684, - 45.63054 - ], - [ - -73.441876, - 45.630211 - ], - [ - -73.442088, - 45.629846 - ], - [ - -73.443114, - 45.62808 - ], - [ - -73.443253, - 45.627837 - ], - [ - -73.443605, - 45.627221 - ], - [ - -73.444022, - 45.626488 - ], - [ - -73.444058, - 45.626426 - ], - [ - -73.444573, - 45.625552 - ], - [ - -73.445356, - 45.624185 - ], - [ - -73.445387, - 45.624131 - ], - [ - -73.445586, - 45.623794 - ], - [ - -73.445824, - 45.623425 - ], - [ - -73.446146, - 45.622876 - ], - [ - -73.446834, - 45.62168 - ], - [ - -73.446841, - 45.621668 - ], - [ - -73.447011, - 45.621372 - ], - [ - -73.447396, - 45.620704 - ], - [ - -73.448364, - 45.619075 - ], - [ - -73.448491, - 45.618837 - ], - [ - -73.448637, - 45.61859 - ], - [ - -73.448724, - 45.618439 - ], - [ - -73.44919, - 45.617636 - ], - [ - -73.449422, - 45.617241 - ], - [ - -73.449512, - 45.617087 - ], - [ - -73.449827, - 45.616539 - ], - [ - -73.450142, - 45.615999 - ], - [ - -73.450551, - 45.61523 - ], - [ - -73.450795, - 45.61475 - ], - [ - -73.450957, - 45.614433 - ], - [ - -73.451219, - 45.613822 - ], - [ - -73.451496, - 45.613129 - ], - [ - -73.451588, - 45.612886 - ], - [ - -73.45174, - 45.612454 - ], - [ - -73.451764, - 45.612387 - ], - [ - -73.451963, - 45.611811 - ], - [ - -73.452038, - 45.611557 - ], - [ - -73.452151, - 45.611172 - ], - [ - -73.452319, - 45.610623 - ], - [ - -73.452427, - 45.610195 - ], - [ - -73.452502, - 45.609899 - ], - [ - -73.452742, - 45.608653 - ], - [ - -73.452838, - 45.608171 - ], - [ - -73.452849, - 45.608122 - ], - [ - -73.452894, - 45.607902 - ], - [ - -73.452956, - 45.607582 - ], - [ - -73.45303, - 45.607204 - ], - [ - -73.45313, - 45.606689 - ], - [ - -73.45343, - 45.605147 - ], - [ - -73.45351, - 45.604734 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453269, - 45.60401 - ], - [ - -73.453124, - 45.603897 - ], - [ - -73.452851, - 45.603687 - ], - [ - -73.452751, - 45.603609 - ], - [ - -73.452634, - 45.603524 - ], - [ - -73.45156, - 45.602679 - ], - [ - -73.45153, - 45.602655 - ], - [ - -73.451134, - 45.602344 - ], - [ - -73.450997, - 45.602236 - ], - [ - -73.450804, - 45.602087 - ], - [ - -73.450717, - 45.602019 - ], - [ - -73.450711, - 45.601962 - ], - [ - -73.450652, - 45.601878 - ], - [ - -73.450633, - 45.601851 - ], - [ - -73.45062, - 45.601823 - ], - [ - -73.450613, - 45.6018 - ], - [ - -73.450612, - 45.601775 - ], - [ - -73.450612, - 45.601745 - ], - [ - -73.450617, - 45.601719 - ], - [ - -73.450626, - 45.601694 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450683, - 45.601629 - ], - [ - -73.45076, - 45.601581 - ], - [ - -73.450865, - 45.60153 - ], - [ - -73.451136, - 45.601427 - ], - [ - -73.451322, - 45.601341 - ], - [ - -73.45143, - 45.601269 - ], - [ - -73.451545, - 45.601187 - ], - [ - -73.451753, - 45.601 - ], - [ - -73.451831, - 45.600914 - ], - [ - -73.451899, - 45.600828 - ], - [ - -73.451961, - 45.600734 - ], - [ - -73.452054, - 45.600554 - ], - [ - -73.452082, - 45.600442 - ], - [ - -73.452078, - 45.600293 - ], - [ - -73.452054, - 45.600172 - ], - [ - -73.45194, - 45.599798 - ], - [ - -73.451915, - 45.599672 - ], - [ - -73.451904, - 45.599524 - ], - [ - -73.451926, - 45.59938 - ], - [ - -73.451964, - 45.599267 - ], - [ - -73.452053, - 45.599139 - ], - [ - -73.452063, - 45.599123 - ], - [ - -73.452183, - 45.598993 - ], - [ - -73.452318, - 45.598881 - ], - [ - -73.452477, - 45.598768 - ], - [ - -73.452963, - 45.598458 - ], - [ - -73.45458, - 45.597401 - ], - [ - -73.459437, - 45.594497 - ], - [ - -73.459888, - 45.594213 - ], - [ - -73.46035, - 45.593903 - ], - [ - -73.460702, - 45.593647 - ], - [ - -73.461218, - 45.593251 - ], - [ - -73.46178, - 45.592783 - ], - [ - -73.465585, - 45.589586 - ], - [ - -73.468548, - 45.587089 - ], - [ - -73.468925, - 45.586766 - ], - [ - -73.469282, - 45.586424 - ], - [ - -73.469476, - 45.586217 - ], - [ - -73.46977, - 45.585875 - ], - [ - -73.470065, - 45.585497 - ], - [ - -73.470208, - 45.585295 - ], - [ - -73.470515, - 45.584795 - ], - [ - -73.470777, - 45.584346 - ], - [ - -73.470818, - 45.584266 - ], - [ - -73.471151, - 45.583659 - ], - [ - -73.471441, - 45.583163 - ], - [ - -73.471782, - 45.582588 - ], - [ - -73.471999, - 45.582223 - ], - [ - -73.472179, - 45.58194 - ], - [ - -73.472331, - 45.581716 - ], - [ - -73.472649, - 45.581329 - ], - [ - -73.47273, - 45.58124 - ], - [ - -73.472825, - 45.58114 - ], - [ - -73.473026, - 45.580958 - ], - [ - -73.473162, - 45.580835 - ], - [ - -73.473456, - 45.580601 - ], - [ - -73.473548, - 45.580529 - ], - [ - -73.474056, - 45.580187 - ], - [ - -73.474914, - 45.579634 - ], - [ - -73.475349, - 45.579354 - ], - [ - -73.475514, - 45.57924 - ], - [ - -73.475748, - 45.579059 - ], - [ - -73.476005, - 45.578855 - ], - [ - -73.476092, - 45.578785 - ], - [ - -73.476311, - 45.578613 - ], - [ - -73.476531, - 45.578426 - ], - [ - -73.477316, - 45.577756 - ], - [ - -73.478746, - 45.576546 - ], - [ - -73.485291, - 45.570941 - ], - [ - -73.485924, - 45.570374 - ], - [ - -73.486543, - 45.569794 - ], - [ - -73.487144, - 45.5692 - ], - [ - -73.487725, - 45.568597 - ], - [ - -73.488283, - 45.567985 - ], - [ - -73.489005, - 45.567148 - ], - [ - -73.489524, - 45.56651 - ], - [ - -73.490025, - 45.565857 - ], - [ - -73.490348, - 45.565416 - ], - [ - -73.490811, - 45.564746 - ], - [ - -73.492757, - 45.561799 - ], - [ - -73.493231, - 45.561129 - ], - [ - -73.493558, - 45.560688 - ], - [ - -73.493892, - 45.560256 - ], - [ - -73.494237, - 45.559829 - ], - [ - -73.499922, - 45.552981 - ], - [ - -73.501151, - 45.551492 - ], - [ - -73.501844, - 45.550646 - ], - [ - -73.502872, - 45.549445 - ], - [ - -73.503558, - 45.548684 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522764, - 45.530162 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.51669, - 45.526331 - ], - [ - -73.516564, - 45.52594 - ], - [ - -73.516314, - 45.525224 - ], - [ - -73.516296, - 45.525161 - ], - [ - -73.516288, - 45.525131 - ], - [ - -73.516317, - 45.525053 - ], - [ - -73.516302, - 45.524919 - ], - [ - -73.516294, - 45.524734 - ], - [ - -73.516303, - 45.524604 - ], - [ - -73.516345, - 45.52437 - ], - [ - -73.516405, - 45.524203 - ], - [ - -73.516578, - 45.523623 - ], - [ - -73.516683, - 45.523438 - ], - [ - -73.516765, - 45.523305 - ], - [ - -73.516823, - 45.523209 - ], - [ - -73.516951, - 45.523069 - ], - [ - -73.517159, - 45.522876 - ], - [ - -73.517395, - 45.522705 - ], - [ - -73.517522, - 45.522552 - ], - [ - -73.518003, - 45.522345 - ], - [ - -73.518219, - 45.522255 - ], - [ - -73.518483, - 45.522178 - ], - [ - -73.518751, - 45.522111 - ], - [ - -73.518959, - 45.52207 - ], - [ - -73.519211, - 45.522021 - ], - [ - -73.519463, - 45.521967 - ], - [ - -73.520583, - 45.521872 - ], - [ - -73.522213, - 45.521732 - ], - [ - -73.523688, - 45.521608 - ], - [ - -73.525933, - 45.521416 - ], - [ - -73.534391, - 45.520735 - ], - [ - -73.534716, - 45.520716 - ], - [ - -73.535006, - 45.520706 - ], - [ - -73.535439, - 45.520719 - ], - [ - -73.535574, - 45.520734 - ], - [ - -73.535886, - 45.520771 - ], - [ - -73.536216, - 45.520827 - ], - [ - -73.538962, - 45.521314 - ], - [ - -73.546713, - 45.522688 - ], - [ - -73.546899, - 45.522724 - ], - [ - -73.547126, - 45.522828 - ], - [ - -73.550978, - 45.524639 - ], - [ - -73.5511, - 45.524684 - ], - [ - -73.551293, - 45.524734 - ], - [ - -73.553654, - 45.525353 - ], - [ - -73.553877, - 45.52543 - ], - [ - -73.554163, - 45.525542 - ], - [ - -73.554506, - 45.525695 - ], - [ - -73.554687, - 45.525824 - ], - [ - -73.554811, - 45.525929 - ], - [ - -73.554929, - 45.526059 - ], - [ - -73.55493, - 45.526059 - ], - [ - -73.554993, - 45.526176 - ], - [ - -73.555026, - 45.52628 - ], - [ - -73.554833, - 45.526514 - ], - [ - -73.554697, - 45.526599 - ], - [ - -73.554558, - 45.526626 - ], - [ - -73.554315, - 45.526628 - ], - [ - -73.553319, - 45.526172 - ], - [ - -73.553138, - 45.526114 - ], - [ - -73.551756, - 45.525462 - ], - [ - -73.551291, - 45.52526 - ], - [ - -73.550364, - 45.524824 - ], - [ - -73.549511, - 45.524419 - ], - [ - -73.548735, - 45.524051 - ], - [ - -73.548198, - 45.52379 - ], - [ - -73.548092, - 45.523688 - ], - [ - -73.547877, - 45.523575 - ], - [ - -73.547516, - 45.523402 - ], - [ - -73.547208, - 45.52326 - ], - [ - -73.546709, - 45.522954 - ], - [ - -73.546707, - 45.522951 - ], - [ - -73.54663, - 45.522846 - ], - [ - -73.546597, - 45.522733 - ], - [ - -73.546634, - 45.522544 - ], - [ - -73.54672, - 45.522337 - ], - [ - -73.547896, - 45.520642 - ], - [ - -73.548022, - 45.520458 - ], - [ - -73.5497, - 45.518116 - ], - [ - -73.550049, - 45.517629 - ], - [ - -73.550362, - 45.51717 - ], - [ - -73.55058, - 45.516878 - ], - [ - -73.551064, - 45.516329 - ], - [ - -73.552085, - 45.515312 - ], - [ - -73.552825, - 45.51449 - ], - [ - -73.555931, - 45.510258 - ], - [ - -73.556297, - 45.509815 - ], - [ - -73.556685, - 45.509346 - ], - [ - -73.556881, - 45.509106 - ], - [ - -73.557097, - 45.508843 - ], - [ - -73.558098, - 45.507631 - ], - [ - -73.558733, - 45.506895 - ], - [ - -73.558902, - 45.506688 - ], - [ - -73.559399, - 45.506102 - ], - [ - -73.559674, - 45.505789 - ], - [ - -73.559961, - 45.505451 - ], - [ - -73.560315, - 45.505045 - ], - [ - -73.560946, - 45.504294 - ], - [ - -73.561138, - 45.504148 - ], - [ - -73.56137, - 45.5039 - ], - [ - -73.561633, - 45.503594 - ], - [ - -73.561765, - 45.503418 - ], - [ - -73.562022, - 45.503083 - ], - [ - -73.562229, - 45.50281 - ], - [ - -73.562656, - 45.502227 - ], - [ - -73.563344, - 45.501278 - ], - [ - -73.563437, - 45.501142 - ], - [ - -73.563582, - 45.500891 - ], - [ - -73.563637, - 45.500782 - ], - [ - -73.563686, - 45.500673 - ], - [ - -73.563742, - 45.500523 - ], - [ - -73.563784, - 45.50037 - ], - [ - -73.563792, - 45.500339 - ], - [ - -73.563799, - 45.500277 - ], - [ - -73.56381, - 45.500164 - ], - [ - -73.563817, - 45.499951 - ], - [ - -73.563801, - 45.499845 - ], - [ - -73.563769, - 45.499726 - ], - [ - -73.563716, - 45.499593 - ], - [ - -73.563657, - 45.499455 - ], - [ - -73.563568, - 45.499314 - ], - [ - -73.56346, - 45.499182 - ], - [ - -73.563335, - 45.499056 - ], - [ - -73.563258, - 45.498987 - ], - [ - -73.563134, - 45.498882 - ], - [ - -73.56301, - 45.498798 - ], - [ - -73.562842, - 45.498706 - ], - [ - -73.562717, - 45.498629 - ], - [ - -73.562641, - 45.498572 - ], - [ - -73.562606, - 45.498541 - ], - [ - -73.562542, - 45.498477 - ], - [ - -73.562514, - 45.498441 - ], - [ - -73.562489, - 45.498405 - ], - [ - -73.56245, - 45.498328 - ], - [ - -73.562437, - 45.498288 - ], - [ - -73.562419, - 45.498207 - ], - [ - -73.562416, - 45.498166 - ], - [ - -73.562423, - 45.498084 - ], - [ - -73.562444, - 45.498004 - ], - [ - -73.562461, - 45.497965 - ], - [ - -73.562483, - 45.497927 - ], - [ - -73.562498, - 45.497907 - ], - [ - -73.562535, - 45.497857 - ], - [ - -73.562592, - 45.497793 - ], - [ - -73.562675, - 45.497717 - ], - [ - -73.562831, - 45.497627 - ], - [ - -73.562983, - 45.497576 - ], - [ - -73.56315, - 45.497541 - ], - [ - -73.563299, - 45.497536 - ], - [ - -73.563474, - 45.497544 - ], - [ - -73.563652, - 45.497556 - ], - [ - -73.563841, - 45.497592 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.56431, - 45.497835 - ], - [ - -73.564363, - 45.497859 - ], - [ - -73.565142, - 45.498217 - ], - [ - -73.565601, - 45.498443 - ], - [ - -73.565748, - 45.49831 - ], - [ - -73.565849, - 45.498292 - ], - [ - -73.566051, - 45.498359 - ], - [ - -73.566361, - 45.498471 - ], - [ - -73.566492, - 45.498485 - ], - [ - -73.566611, - 45.498345 - ] - ] - }, - "id": 188, - "properties": { - "id": "e3a0385b-4dd7-46f7-adfa-9e53e1c0cd7a", - "data": { - "gtfs": { - "shape_id": "87_1_A" - }, - "segments": [ - { - "distanceMeters": 213, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 388, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 520, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 19001, - "travelTimeSeconds": 2040 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 312, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 27185, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 14693.615320148416, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.71, - "travelTimeWithoutDwellTimesSeconds": 3120, - "operatingTimeWithLayoverTimeSeconds": 3432, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3120, - "operatingSpeedWithLayoverMetersPerSecond": 7.92, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.71 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "ca205394-9833-4e14-b4fa-653c28b9a37d", - "dd170d68-d567-4a2d-8a93-47dec3a52cd1", - "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", - "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", - "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", - "204b558a-c106-4589-888d-4bd6528787b5", - "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", - "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", - "949c3098-32ca-4f3b-81ba-cbe506f68923", - "518135ae-62e9-44c2-bac7-e8c50c56eec9", - "148d4b0f-418e-4993-b335-f1dcd1c4df41", - "568437d9-2de5-4e5e-b111-1a7811ac5c99", - "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", - "6928ef4b-2825-4234-84d9-1c82edb211b0", - "777d67e8-62c3-46b4-a71f-e76a88b45f45", - "d04543e8-f38e-4937-b92b-1bc9ff97fd25", - "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", - "389622d0-ee1f-428b-9366-e69f134ff23e", - "02fef102-0f62-42d0-b4ed-790bc76ef1ad", - "f659a652-a61c-4199-abbc-a42f3ceef5cb", - "90b41412-0c12-4505-b7c9-b915901b1dd2", - "78a9a588-c1f0-470f-bbcc-52b6da866dad", - "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", - "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", - "253353ba-aba2-4e63-bf86-819bb7c9cecd", - "706f0077-9543-4662-8684-a321216a8a90", - "589f0f16-2c87-45fc-856c-d82dc5449f14", - "0778ac37-7369-4d81-abbc-9aa1d13b1c38", - "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", - "039c87a4-2647-4079-9a79-c7d3278ef6b2", - "e2d71c2d-a170-4ce7-a381-519755a00e36", - "a2b2c8d3-da2c-46a1-8009-597d5c6a0c19", - "ca205394-9833-4e14-b4fa-653c28b9a37d", - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" - ], - "stops": [], - "line_id": "16f122ef-4dad-4be1-80cb-c2eaec33e34b", - "segments": [ - 0, - 7, - 13, - 21, - 25, - 32, - 38, - 47, - 51, - 56, - 60, - 63, - 66, - 69, - 76, - 83, - 90, - 98, - 116, - 124, - 131, - 138, - 141, - 144, - 146, - 152, - 158, - 160, - 165, - 170, - 176, - 180, - 190 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 188, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.566611, - 45.498345 - ], - [ - -73.566738, - 45.498195 - ], - [ - -73.566628, - 45.49808 - ], - [ - -73.566306, - 45.497931 - ], - [ - -73.566253, - 45.497841 - ], - [ - -73.56638, - 45.497699 - ], - [ - -73.566016, - 45.497523 - ], - [ - -73.564691, - 45.496892 - ], - [ - -73.564645, - 45.496938 - ], - [ - -73.564308, - 45.497279 - ], - [ - -73.564223, - 45.497363 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.563751, - 45.497848 - ], - [ - -73.562654, - 45.499004 - ], - [ - -73.562195, - 45.498662 - ], - [ - -73.561924, - 45.498365 - ], - [ - -73.561721, - 45.498171 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.561033, - 45.497765 - ], - [ - -73.560456, - 45.497495 - ], - [ - -73.560139, - 45.497347 - ], - [ - -73.559235, - 45.49696 - ], - [ - -73.55917, - 45.496938 - ], - [ - -73.558356, - 45.496631 - ], - [ - -73.557604, - 45.496364 - ], - [ - -73.556782, - 45.49606 - ], - [ - -73.555745, - 45.495673 - ], - [ - -73.555351, - 45.495512 - ], - [ - -73.555133, - 45.495401 - ], - [ - -73.554916, - 45.495262 - ], - [ - -73.554768, - 45.495125 - ], - [ - -73.55465, - 45.494994 - ], - [ - -73.553944, - 45.493258 - ], - [ - -73.553818, - 45.492971 - ], - [ - -73.553465, - 45.492338 - ], - [ - -73.552977, - 45.491759 - ], - [ - -73.552502, - 45.491344 - ], - [ - -73.551956, - 45.490962 - ], - [ - -73.551651, - 45.490791 - ], - [ - -73.551074, - 45.490513 - ], - [ - -73.550682, - 45.490367 - ], - [ - -73.550312, - 45.490228 - ], - [ - -73.54956, - 45.490034 - ], - [ - -73.548355, - 45.489798 - ], - [ - -73.542648, - 45.488704 - ], - [ - -73.541878, - 45.488554 - ], - [ - -73.541086, - 45.488398 - ], - [ - -73.541083, - 45.488397 - ], - [ - -73.540636, - 45.488282 - ], - [ - -73.540145, - 45.488119 - ], - [ - -73.539582, - 45.48786 - ], - [ - -73.539239, - 45.487663 - ], - [ - -73.538946, - 45.487462 - ], - [ - -73.538619, - 45.487192 - ], - [ - -73.538304, - 45.486863 - ], - [ - -73.538089, - 45.486564 - ], - [ - -73.537862, - 45.486139 - ], - [ - -73.537796, - 45.485958 - ], - [ - -73.537731, - 45.485785 - ], - [ - -73.53767, - 45.485461 - ], - [ - -73.537646, - 45.485264 - ], - [ - -73.537653, - 45.484914 - ], - [ - -73.537707, - 45.484604 - ], - [ - -73.537881, - 45.484168 - ], - [ - -73.537968, - 45.483893 - ], - [ - -73.538058, - 45.483623 - ], - [ - -73.539557, - 45.479354 - ], - [ - -73.53982, - 45.478652 - ], - [ - -73.540179, - 45.47782 - ], - [ - -73.540481, - 45.477177 - ], - [ - -73.540578, - 45.477027 - ], - [ - -73.540928, - 45.476409 - ], - [ - -73.5413, - 45.475732 - ], - [ - -73.541747, - 45.474937 - ], - [ - -73.542136, - 45.474264 - ], - [ - -73.542539, - 45.47363 - ], - [ - -73.543159, - 45.472786 - ], - [ - -73.543162, - 45.472781 - ], - [ - -73.5432, - 45.472729 - ], - [ - -73.543381, - 45.472482 - ], - [ - -73.543908, - 45.471834 - ], - [ - -73.544604, - 45.471016 - ], - [ - -73.54479, - 45.470824 - ], - [ - -73.544929, - 45.470679 - ], - [ - -73.54509, - 45.470477 - ], - [ - -73.545159, - 45.470391 - ], - [ - -73.545162, - 45.470289 - ], - [ - -73.54518, - 45.470102 - ], - [ - -73.54513, - 45.469912 - ], - [ - -73.545032, - 45.469762 - ], - [ - -73.544829, - 45.469589 - ], - [ - -73.544396, - 45.469456 - ], - [ - -73.544223, - 45.469408 - ], - [ - -73.544, - 45.469414 - ], - [ - -73.54385, - 45.469436 - ], - [ - -73.543665, - 45.469485 - ], - [ - -73.543125, - 45.469658 - ], - [ - -73.542795, - 45.46978 - ], - [ - -73.542335, - 45.469915 - ], - [ - -73.542042, - 45.469974 - ], - [ - -73.541634, - 45.469988 - ], - [ - -73.538583, - 45.470121 - ], - [ - -73.536645, - 45.47012 - ], - [ - -73.534843, - 45.470106 - ], - [ - -73.531663, - 45.470044 - ], - [ - -73.528901, - 45.469979 - ], - [ - -73.525636, - 45.469864 - ], - [ - -73.520215, - 45.469565 - ], - [ - -73.516228, - 45.469261 - ], - [ - -73.50737, - 45.468395 - ], - [ - -73.501604, - 45.467786 - ], - [ - -73.499262, - 45.467514 - ], - [ - -73.493921, - 45.466881 - ], - [ - -73.491932, - 45.466645 - ], - [ - -73.489852, - 45.466348 - ], - [ - -73.489119, - 45.46624 - ], - [ - -73.488353, - 45.466099 - ], - [ - -73.487947, - 45.465982 - ], - [ - -73.487624, - 45.465833 - ], - [ - -73.487378, - 45.465638 - ], - [ - -73.487289, - 45.465389 - ], - [ - -73.487411, - 45.465142 - ], - [ - -73.487606, - 45.464949 - ], - [ - -73.487929, - 45.464813 - ], - [ - -73.488584, - 45.464665 - ], - [ - -73.489559, - 45.464575 - ], - [ - -73.49019, - 45.464579 - ], - [ - -73.490836, - 45.464607 - ], - [ - -73.491353, - 45.464709 - ], - [ - -73.492266, - 45.464916 - ], - [ - -73.492298, - 45.464924 - ], - [ - -73.493024, - 45.46511 - ], - [ - -73.493289, - 45.465231 - ], - [ - -73.49355, - 45.46545 - ], - [ - -73.493833, - 45.466097 - ], - [ - -73.493922, - 45.46638 - ], - [ - -73.494209, - 45.467172 - ], - [ - -73.494809, - 45.468733 - ], - [ - -73.495076, - 45.469359 - ], - [ - -73.495234, - 45.469683 - ], - [ - -73.495362, - 45.469939 - ], - [ - -73.495491, - 45.470173 - ], - [ - -73.49554, - 45.470262 - ], - [ - -73.495895, - 45.470906 - ], - [ - -73.495967, - 45.471037 - ], - [ - -73.496018, - 45.471127 - ], - [ - -73.496235, - 45.471478 - ], - [ - -73.496323, - 45.471617 - ], - [ - -73.496799, - 45.472387 - ], - [ - -73.497277, - 45.473188 - ], - [ - -73.497508, - 45.473543 - ], - [ - -73.497684, - 45.473744 - ], - [ - -73.49797, - 45.473998 - ], - [ - -73.497971, - 45.473998 - ], - [ - -73.498154, - 45.474204 - ], - [ - -73.498345, - 45.474398 - ], - [ - -73.498759, - 45.474776 - ], - [ - -73.498981, - 45.474956 - ], - [ - -73.499212, - 45.475131 - ], - [ - -73.499453, - 45.475307 - ], - [ - -73.502533, - 45.47734 - ], - [ - -73.504857, - 45.478866 - ], - [ - -73.505913, - 45.479567 - ], - [ - -73.50636, - 45.479923 - ], - [ - -73.506669, - 45.480206 - ], - [ - -73.506703, - 45.480242 - ], - [ - -73.507146, - 45.480733 - ], - [ - -73.507302, - 45.480949 - ], - [ - -73.507442, - 45.481165 - ], - [ - -73.507569, - 45.481381 - ], - [ - -73.507678, - 45.48161 - ], - [ - -73.507857, - 45.482069 - ], - [ - -73.507995, - 45.482559 - ], - [ - -73.508478, - 45.484485 - ], - [ - -73.508692, - 45.485218 - ], - [ - -73.508857, - 45.485709 - ], - [ - -73.509037, - 45.486199 - ], - [ - -73.509236, - 45.486685 - ], - [ - -73.509454, - 45.487171 - ], - [ - -73.509688, - 45.487657 - ], - [ - -73.509939, - 45.488138 - ], - [ - -73.510206, - 45.488624 - ], - [ - -73.510497, - 45.489096 - ], - [ - -73.510511, - 45.489119 - ], - [ - -73.510962, - 45.489803 - ], - [ - -73.512569, - 45.492115 - ], - [ - -73.512867, - 45.49257 - ], - [ - -73.513116, - 45.493024 - ], - [ - -73.513214, - 45.493253 - ], - [ - -73.513607, - 45.494261 - ], - [ - -73.514156, - 45.495746 - ], - [ - -73.514429, - 45.49643 - ], - [ - -73.514695, - 45.496974 - ], - [ - -73.515628, - 45.498702 - ], - [ - -73.515861, - 45.49917 - ], - [ - -73.516166, - 45.499876 - ], - [ - -73.516897, - 45.501748 - ], - [ - -73.516988, - 45.501968 - ], - [ - -73.517173, - 45.5024 - ], - [ - -73.517284, - 45.502611 - ], - [ - -73.517524, - 45.503025 - ], - [ - -73.517729, - 45.503327 - ], - [ - -73.51827, - 45.504082 - ], - [ - -73.518977, - 45.505113 - ], - [ - -73.519147, - 45.505406 - ], - [ - -73.519228, - 45.505544 - ], - [ - -73.519438, - 45.50599 - ], - [ - -73.519526, - 45.506219 - ], - [ - -73.519678, - 45.506692 - ], - [ - -73.521082, - 45.511245 - ], - [ - -73.521438, - 45.51241 - ], - [ - -73.522146, - 45.514695 - ], - [ - -73.52301, - 45.517471 - ], - [ - -73.523266, - 45.518335 - ], - [ - -73.52329, - 45.518416 - ], - [ - -73.52338, - 45.518726 - ], - [ - -73.523575, - 45.519487 - ], - [ - -73.523691, - 45.519991 - ], - [ - -73.523836, - 45.520746 - ], - [ - -73.523856, - 45.520868 - ], - [ - -73.524112, - 45.522465 - ], - [ - -73.524354, - 45.524161 - ], - [ - -73.524413, - 45.524647 - ], - [ - -73.524445, - 45.525138 - ], - [ - -73.524426, - 45.525628 - ], - [ - -73.524401, - 45.525871 - ], - [ - -73.524367, - 45.526114 - ], - [ - -73.524264, - 45.526595 - ], - [ - -73.524195, - 45.526834 - ], - [ - -73.524183, - 45.526867 - ], - [ - -73.524025, - 45.527306 - ], - [ - -73.523924, - 45.52754 - ], - [ - -73.523683, - 45.528004 - ], - [ - -73.52355, - 45.528233 - ], - [ - -73.523265, - 45.528661 - ], - [ - -73.52295, - 45.529066 - ], - [ - -73.522634, - 45.529444 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.503549, - 45.548419 - ], - [ - -73.502986, - 45.54904 - ], - [ - -73.502097, - 45.550079 - ], - [ - -73.501025, - 45.551361 - ], - [ - -73.500319, - 45.55223 - ], - [ - -73.497146, - 45.556054 - ], - [ - -73.496787, - 45.55649 - ], - [ - -73.495905, - 45.557543 - ], - [ - -73.495369, - 45.558173 - ], - [ - -73.494314, - 45.559446 - ], - [ - -73.493461, - 45.560499 - ], - [ - -73.492975, - 45.561151 - ], - [ - -73.492659, - 45.561597 - ], - [ - -73.492068, - 45.562474 - ], - [ - -73.49148, - 45.563383 - ], - [ - -73.490434, - 45.564962 - ], - [ - -73.489967, - 45.565619 - ], - [ - -73.489477, - 45.566267 - ], - [ - -73.488962, - 45.566906 - ], - [ - -73.48825, - 45.567747 - ], - [ - -73.487877, - 45.568161 - ], - [ - -73.487301, - 45.568777 - ], - [ - -73.486712, - 45.56938 - ], - [ - -73.486308, - 45.569771 - ], - [ - -73.485474, - 45.570545 - ], - [ - -73.48461, - 45.571301 - ], - [ - -73.483654, - 45.572115 - ], - [ - -73.478606, - 45.576433 - ], - [ - -73.478028, - 45.576933 - ], - [ - -73.477248, - 45.577607 - ], - [ - -73.476645, - 45.578128 - ], - [ - -73.475915, - 45.578754 - ], - [ - -73.475553, - 45.579033 - ], - [ - -73.474887, - 45.579478 - ], - [ - -73.474437, - 45.579762 - ], - [ - -73.474095, - 45.580005 - ], - [ - -73.473853, - 45.580158 - ], - [ - -73.473398, - 45.580472 - ], - [ - -73.473077, - 45.58072 - ], - [ - -73.472886, - 45.580886 - ], - [ - -73.472612, - 45.581152 - ], - [ - -73.472574, - 45.581196 - ], - [ - -73.472319, - 45.581482 - ], - [ - -73.472175, - 45.581673 - ], - [ - -73.471994, - 45.581936 - ], - [ - -73.47191, - 45.582061 - ], - [ - -73.471753, - 45.582326 - ], - [ - -73.471543, - 45.582681 - ], - [ - -73.471245, - 45.583188 - ], - [ - -73.471013, - 45.58358 - ], - [ - -73.470714, - 45.584071 - ], - [ - -73.470067, - 45.585151 - ], - [ - -73.469784, - 45.585547 - ], - [ - -73.469628, - 45.585749 - ], - [ - -73.469287, - 45.586145 - ], - [ - -73.469101, - 45.586343 - ], - [ - -73.468904, - 45.586536 - ], - [ - -73.468695, - 45.586725 - ], - [ - -73.466029, - 45.588965 - ], - [ - -73.465851, - 45.589127 - ], - [ - -73.465429, - 45.589482 - ], - [ - -73.463709, - 45.590917 - ], - [ - -73.461267, - 45.592977 - ], - [ - -73.460579, - 45.593525 - ], - [ - -73.460036, - 45.593907 - ], - [ - -73.459551, - 45.594222 - ], - [ - -73.459088, - 45.594506 - ], - [ - -73.458501, - 45.594856 - ], - [ - -73.45527, - 45.596781 - ], - [ - -73.453729, - 45.597707 - ], - [ - -73.451702, - 45.598916 - ], - [ - -73.448041, - 45.60111 - ], - [ - -73.446821, - 45.601731 - ], - [ - -73.446355, - 45.601965 - ], - [ - -73.445994, - 45.602119 - ], - [ - -73.445612, - 45.602242 - ], - [ - -73.44521, - 45.602301 - ], - [ - -73.445109, - 45.602301 - ], - [ - -73.444975, - 45.602301 - ], - [ - -73.444719, - 45.602254 - ], - [ - -73.444513, - 45.602165 - ], - [ - -73.444191, - 45.601923 - ], - [ - -73.443738, - 45.601567 - ], - [ - -73.443603, - 45.601455 - ], - [ - -73.443509, - 45.601378 - ], - [ - -73.444182, - 45.600973 - ], - [ - -73.444832, - 45.600591 - ], - [ - -73.445172, - 45.600385 - ], - [ - -73.445404, - 45.60025 - ], - [ - -73.445606, - 45.600133 - ], - [ - -73.446043, - 45.599863 - ], - [ - -73.446679, - 45.599485 - ], - [ - -73.446908, - 45.599337 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449825, - 45.601331 - ], - [ - -73.449842, - 45.601358 - ], - [ - -73.449882, - 45.601394 - ], - [ - -73.449937, - 45.601432 - ], - [ - -73.449974, - 45.601468 - ], - [ - -73.450006, - 45.601497 - ], - [ - -73.450033, - 45.601528 - ], - [ - -73.450045, - 45.601571 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450452, - 45.601873 - ], - [ - -73.45054, - 45.60193 - ], - [ - -73.450604, - 45.601966 - ], - [ - -73.450658, - 45.602007 - ], - [ - -73.450717, - 45.602019 - ], - [ - -73.450804, - 45.602087 - ], - [ - -73.450997, - 45.602236 - ], - [ - -73.451134, - 45.602344 - ], - [ - -73.45153, - 45.602655 - ], - [ - -73.45156, - 45.602679 - ], - [ - -73.452634, - 45.603524 - ], - [ - -73.452751, - 45.603609 - ], - [ - -73.453124, - 45.603897 - ], - [ - -73.453147, - 45.603915 - ], - [ - -73.453269, - 45.60401 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453904, - 45.604474 - ], - [ - -73.454133, - 45.604694 - ], - [ - -73.454539, - 45.605032 - ], - [ - -73.454968, - 45.605353 - ], - [ - -73.455171, - 45.605504 - ], - [ - -73.455782, - 45.605973 - ], - [ - -73.456001, - 45.606135 - ], - [ - -73.456106, - 45.606225 - ], - [ - -73.45638, - 45.606432 - ], - [ - -73.456464, - 45.606472 - ], - [ - -73.456517, - 45.606482 - ], - [ - -73.456606, - 45.606499 - ], - [ - -73.456615, - 45.606661 - ], - [ - -73.456615, - 45.606796 - ], - [ - -73.456613, - 45.606975 - ], - [ - -73.45661, - 45.607368 - ], - [ - -73.456599, - 45.607836 - ], - [ - -73.456595, - 45.608241 - ], - [ - -73.456594, - 45.608335 - ], - [ - -73.456582, - 45.60905 - ], - [ - -73.456558, - 45.609802 - ], - [ - -73.456539, - 45.610065 - ], - [ - -73.456534, - 45.610121 - ], - [ - -73.456537, - 45.610463 - ], - [ - -73.456508, - 45.610998 - ], - [ - -73.4565, - 45.611138 - ], - [ - -73.456491, - 45.611268 - ], - [ - -73.456473, - 45.611516 - ], - [ - -73.45645, - 45.611771 - ], - [ - -73.456449, - 45.611777 - ], - [ - -73.456429, - 45.612204 - ], - [ - -73.456403, - 45.612587 - ], - [ - -73.456367, - 45.613122 - ], - [ - -73.456346, - 45.613356 - ], - [ - -73.456315, - 45.613701 - ], - [ - -73.456315, - 45.613702 - ], - [ - -73.456295, - 45.613828 - ], - [ - -73.456125, - 45.615281 - ], - [ - -73.45606, - 45.615718 - ], - [ - -73.456015, - 45.616024 - ], - [ - -73.455984, - 45.616307 - ], - [ - -73.45596, - 45.616501 - ], - [ - -73.455915, - 45.616856 - ], - [ - -73.455893, - 45.61704 - ], - [ - -73.455888, - 45.617081 - ], - [ - -73.455879, - 45.617157 - ], - [ - -73.45581, - 45.617621 - ], - [ - -73.455754, - 45.618024 - ], - [ - -73.455729, - 45.618206 - ], - [ - -73.455676, - 45.618606 - ], - [ - -73.45562, - 45.619025 - ], - [ - -73.455571, - 45.619434 - ], - [ - -73.45548, - 45.620182 - ], - [ - -73.455479, - 45.620194 - ], - [ - -73.455459, - 45.620347 - ], - [ - -73.455364, - 45.621566 - ], - [ - -73.455348, - 45.621833 - ], - [ - -73.455345, - 45.621886 - ], - [ - -73.455228, - 45.623663 - ], - [ - -73.455168, - 45.624166 - ], - [ - -73.455153, - 45.624288 - ], - [ - -73.454435, - 45.626407 - ], - [ - -73.454297, - 45.626782 - ], - [ - -73.454243, - 45.626929 - ], - [ - -73.454024, - 45.62755 - ], - [ - -73.453861, - 45.62803 - ], - [ - -73.453834, - 45.628108 - ], - [ - -73.453601, - 45.628791 - ], - [ - -73.453393, - 45.629394 - ], - [ - -73.453358, - 45.629493 - ], - [ - -73.453315, - 45.629624 - ], - [ - -73.453257, - 45.629785 - ], - [ - -73.45299, - 45.630565 - ], - [ - -73.452942, - 45.630703 - ], - [ - -73.452778, - 45.631153 - ], - [ - -73.452686, - 45.631346 - ], - [ - -73.452502, - 45.631778 - ], - [ - -73.452319, - 45.632093 - ], - [ - -73.452094, - 45.632426 - ], - [ - -73.451773, - 45.632844 - ], - [ - -73.451751, - 45.632867 - ], - [ - -73.451693, - 45.632925 - ], - [ - -73.451614, - 45.633011 - ], - [ - -73.451195, - 45.633474 - ], - [ - -73.450679, - 45.634027 - ], - [ - -73.450136, - 45.634603 - ], - [ - -73.449498, - 45.635273 - ], - [ - -73.449434, - 45.63534 - ], - [ - -73.449285, - 45.635498 - ], - [ - -73.449067, - 45.635736 - ], - [ - -73.448723, - 45.636136 - ], - [ - -73.448535, - 45.636361 - ], - [ - -73.448252, - 45.636716 - ], - [ - -73.448132, - 45.636874 - ], - [ - -73.447838, - 45.637258 - ], - [ - -73.447778, - 45.637337 - ], - [ - -73.447634, - 45.637301 - ], - [ - -73.447384, - 45.637215 - ], - [ - -73.447064, - 45.637088 - ], - [ - -73.446874, - 45.637013 - ], - [ - -73.446777, - 45.636959 - ], - [ - -73.446639, - 45.63686 - ], - [ - -73.446407, - 45.636689 - ], - [ - -73.44625, - 45.636558 - ], - [ - -73.446134, - 45.636441 - ], - [ - -73.445951, - 45.636247 - ], - [ - -73.445769, - 45.636018 - ], - [ - -73.445712, - 45.635937 - ], - [ - -73.445634, - 45.635856 - ], - [ - -73.445562, - 45.635784 - ], - [ - -73.445466, - 45.635698 - ], - [ - -73.445268, - 45.635536 - ], - [ - -73.445186, - 45.635476 - ], - [ - -73.445104, - 45.635415 - ], - [ - -73.444715, - 45.635109 - ], - [ - -73.44467, - 45.635073 - ], - [ - -73.444422, - 45.63487 - ], - [ - -73.444148, - 45.634658 - ], - [ - -73.444049, - 45.634573 - ], - [ - -73.443845, - 45.634429 - ], - [ - -73.443363, - 45.634036 - ], - [ - -73.443242, - 45.633938 - ], - [ - -73.442909, - 45.633686 - ], - [ - -73.442563, - 45.633434 - ], - [ - -73.442416, - 45.633371 - ], - [ - -73.44208, - 45.633254 - ], - [ - -73.441599, - 45.633114 - ], - [ - -73.440824, - 45.632902 - ], - [ - -73.440781, - 45.632889 - ], - [ - -73.440392, - 45.632771 - ], - [ - -73.440856, - 45.631968 - ], - [ - -73.441271, - 45.631251 - ], - [ - -73.441456, - 45.630932 - ], - [ - -73.441684, - 45.63054 - ], - [ - -73.441903, - 45.630164 - ], - [ - -73.442088, - 45.629846 - ], - [ - -73.443114, - 45.62808 - ], - [ - -73.443279, - 45.627791 - ], - [ - -73.443605, - 45.627221 - ], - [ - -73.444022, - 45.626488 - ], - [ - -73.44408, - 45.626388 - ], - [ - -73.444573, - 45.625552 - ], - [ - -73.445382, - 45.624139 - ], - [ - -73.445387, - 45.624131 - ], - [ - -73.445586, - 45.623794 - ], - [ - -73.445824, - 45.623425 - ], - [ - -73.446146, - 45.622876 - ], - [ - -73.446834, - 45.62168 - ], - [ - -73.446868, - 45.621622 - ], - [ - -73.447011, - 45.621372 - ], - [ - -73.447396, - 45.620704 - ], - [ - -73.448364, - 45.619075 - ], - [ - -73.448491, - 45.618837 - ], - [ - -73.448637, - 45.61859 - ], - [ - -73.448751, - 45.618393 - ], - [ - -73.44919, - 45.617636 - ], - [ - -73.449449, - 45.617195 - ], - [ - -73.449512, - 45.617087 - ], - [ - -73.449827, - 45.616539 - ], - [ - -73.450142, - 45.615999 - ], - [ - -73.450551, - 45.61523 - ], - [ - -73.450819, - 45.614704 - ], - [ - -73.450957, - 45.614433 - ], - [ - -73.451219, - 45.613822 - ], - [ - -73.451496, - 45.613129 - ], - [ - -73.451588, - 45.612886 - ], - [ - -73.451757, - 45.612406 - ], - [ - -73.451764, - 45.612387 - ], - [ - -73.451963, - 45.611811 - ], - [ - -73.452038, - 45.611557 - ], - [ - -73.452151, - 45.611172 - ], - [ - -73.452319, - 45.610623 - ], - [ - -73.452437, - 45.610156 - ], - [ - -73.452502, - 45.609899 - ], - [ - -73.452742, - 45.608653 - ], - [ - -73.452838, - 45.608171 - ], - [ - -73.452859, - 45.608073 - ], - [ - -73.452894, - 45.607902 - ], - [ - -73.452956, - 45.607582 - ], - [ - -73.45303, - 45.607204 - ], - [ - -73.45313, - 45.606689 - ], - [ - -73.45351, - 45.604734 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453269, - 45.60401 - ], - [ - -73.453124, - 45.603897 - ], - [ - -73.452804, - 45.60365 - ] - ] - }, - "id": 189, - "properties": { - "id": "aeea9a94-a106-422d-bb97-dd35b70b766f", - "data": { - "gtfs": { - "shape_id": "87_2_R" - }, - "segments": [ - { - "distanceMeters": 28256, - "travelTimeSeconds": 1848 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 890, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 388, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 520, - "travelTimeSeconds": 108 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 312, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 37534, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 14693.615320148416, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 12.03, - "travelTimeWithoutDwellTimesSeconds": 3120, - "operatingTimeWithLayoverTimeSeconds": 3432, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3120, - "operatingSpeedWithLayoverMetersPerSecond": 10.94, - "averageSpeedWithoutDwellTimesMetersPerSecond": 12.03 - }, - "mode": "bus", - "name": "boul. du Fort-St-Louis", - "color": "#A32638", - "nodes": [ - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", - "494d9db6-32c6-4aa3-9c11-91eba915c58f", - "6b55fd05-7687-457e-ae9d-e87027c7100f", - "ca205394-9833-4e14-b4fa-653c28b9a37d", - "dd170d68-d567-4a2d-8a93-47dec3a52cd1", - "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", - "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", - "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", - "204b558a-c106-4589-888d-4bd6528787b5", - "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", - "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", - "949c3098-32ca-4f3b-81ba-cbe506f68923", - "518135ae-62e9-44c2-bac7-e8c50c56eec9", - "148d4b0f-418e-4993-b335-f1dcd1c4df41", - "568437d9-2de5-4e5e-b111-1a7811ac5c99", - "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", - "6928ef4b-2825-4234-84d9-1c82edb211b0", - "777d67e8-62c3-46b4-a71f-e76a88b45f45", - "d04543e8-f38e-4937-b92b-1bc9ff97fd25", - "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", - "389622d0-ee1f-428b-9366-e69f134ff23e", - "02fef102-0f62-42d0-b4ed-790bc76ef1ad", - "f659a652-a61c-4199-abbc-a42f3ceef5cb", - "90b41412-0c12-4505-b7c9-b915901b1dd2", - "78a9a588-c1f0-470f-bbcc-52b6da866dad", - "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", - "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", - "253353ba-aba2-4e63-bf86-819bb7c9cecd", - "706f0077-9543-4662-8684-a321216a8a90", - "589f0f16-2c87-45fc-856c-d82dc5449f14", - "0778ac37-7369-4d81-abbc-9aa1d13b1c38", - "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", - "039c87a4-2647-4079-9a79-c7d3278ef6b2", - "e2d71c2d-a170-4ce7-a381-519755a00e36", - "a2b2c8d3-da2c-46a1-8009-597d5c6a0c19", - "ca205394-9833-4e14-b4fa-653c28b9a37d" - ], - "stops": [], - "line_id": "16f122ef-4dad-4be1-80cb-c2eaec33e34b", - "segments": [ - 0, - 341, - 346, - 393, - 399, - 406, - 413, - 417, - 424, - 430, - 439, - 443, - 448, - 452, - 455, - 458, - 461, - 468, - 476, - 482, - 490, - 508, - 516, - 524, - 530, - 533, - 536, - 538, - 544, - 550, - 552, - 557, - 562, - 568, - 572 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 189, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.383686, - 45.463029 - ], - [ - -73.383388, - 45.462852 - ], - [ - -73.383093, - 45.462681 - ], - [ - -73.382765, - 45.462469 - ], - [ - -73.382441, - 45.462268 - ], - [ - -73.382279, - 45.462167 - ], - [ - -73.382264, - 45.462188 - ], - [ - -73.382026, - 45.462513 - ], - [ - -73.380354, - 45.464826 - ], - [ - -73.380313, - 45.464882 - ], - [ - -73.380064, - 45.465238 - ], - [ - -73.378299, - 45.46769 - ], - [ - -73.3781, - 45.467967 - ], - [ - -73.377848, - 45.468313 - ], - [ - -73.375967, - 45.470909 - ], - [ - -73.375891, - 45.471015 - ], - [ - -73.37528, - 45.471878 - ], - [ - -73.374049, - 45.473595 - ], - [ - -73.373933, - 45.473762 - ], - [ - -73.373904, - 45.4738 - ], - [ - -73.373694, - 45.474085 - ], - [ - -73.37362, - 45.474193 - ], - [ - -73.373508, - 45.474319 - ], - [ - -73.373182, - 45.474772 - ], - [ - -73.373075, - 45.474921 - ], - [ - -73.372901, - 45.475178 - ], - [ - -73.37162, - 45.476955 - ], - [ - -73.36942, - 45.48001 - ], - [ - -73.36929, - 45.48019 - ], - [ - -73.369494, - 45.480301 - ], - [ - -73.369655, - 45.480389 - ], - [ - -73.37011, - 45.480637 - ], - [ - -73.372864, - 45.48216 - ], - [ - -73.373772, - 45.482665 - ], - [ - -73.373875, - 45.482724 - ], - [ - -73.373971, - 45.482778 - ], - [ - -73.374487, - 45.483067 - ], - [ - -73.374666, - 45.483163 - ], - [ - -73.37494, - 45.48331 - ], - [ - -73.375418, - 45.483571 - ], - [ - -73.376053, - 45.483919 - ], - [ - -73.376944, - 45.48441 - ], - [ - -73.377333, - 45.484662 - ], - [ - -73.377554, - 45.484785 - ], - [ - -73.377619, - 45.48482 - ], - [ - -73.377777, - 45.484906 - ], - [ - -73.378273, - 45.485158 - ], - [ - -73.379364, - 45.485713 - ], - [ - -73.379961, - 45.486024 - ], - [ - -73.381303, - 45.486687 - ], - [ - -73.381922, - 45.486987 - ], - [ - -73.382231, - 45.487138 - ], - [ - -73.38239, - 45.487214 - ], - [ - -73.382639, - 45.48734 - ], - [ - -73.383202, - 45.487615 - ], - [ - -73.383953, - 45.487976 - ], - [ - -73.384611, - 45.488271 - ], - [ - -73.384699, - 45.48831 - ], - [ - -73.384728, - 45.48832 - ], - [ - -73.384901, - 45.488369 - ], - [ - -73.385381, - 45.488599 - ], - [ - -73.385628, - 45.488725 - ], - [ - -73.386215, - 45.488995 - ], - [ - -73.386297, - 45.489034 - ], - [ - -73.387001, - 45.489365 - ], - [ - -73.387621, - 45.489654 - ], - [ - -73.387937, - 45.489803 - ], - [ - -73.388224, - 45.489938 - ], - [ - -73.388765, - 45.490199 - ], - [ - -73.388934, - 45.490277 - ], - [ - -73.389177, - 45.490388 - ], - [ - -73.389565, - 45.490569 - ], - [ - -73.390592, - 45.491047 - ], - [ - -73.391016, - 45.491244 - ], - [ - -73.391367, - 45.491407 - ], - [ - -73.391618, - 45.49152 - ], - [ - -73.39166, - 45.491539 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.394198, - 45.492723 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.395943, - 45.493543 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.399571, - 45.495233 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.401121, - 45.49596 - ], - [ - -73.401587, - 45.496174 - ], - [ - -73.402418, - 45.496555 - ], - [ - -73.402953, - 45.49679 - ], - [ - -73.403378, - 45.496978 - ], - [ - -73.403543, - 45.497051 - ], - [ - -73.403795, - 45.49716 - ], - [ - -73.404434, - 45.497426 - ], - [ - -73.404858, - 45.497588 - ], - [ - -73.405172, - 45.497723 - ], - [ - -73.405568, - 45.497876 - ], - [ - -73.406253, - 45.498139 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.406574, - 45.498264 - ], - [ - -73.407513, - 45.498634 - ], - [ - -73.407743, - 45.498715 - ], - [ - -73.408565, - 45.499044 - ], - [ - -73.408613, - 45.499067 - ], - [ - -73.408846, - 45.499152 - ], - [ - -73.409074, - 45.499238 - ], - [ - -73.409309, - 45.49933 - ], - [ - -73.40994, - 45.499576 - ], - [ - -73.410361, - 45.499742 - ], - [ - -73.410514, - 45.499802 - ], - [ - -73.410857, - 45.499937 - ], - [ - -73.411184, - 45.500063 - ], - [ - -73.411788, - 45.500288 - ], - [ - -73.412025, - 45.500379 - ], - [ - -73.412332, - 45.500496 - ], - [ - -73.412769, - 45.500658 - ], - [ - -73.41311, - 45.500798 - ], - [ - -73.413399, - 45.500906 - ], - [ - -73.413646, - 45.500992 - ], - [ - -73.414045, - 45.501145 - ], - [ - -73.414448, - 45.501297 - ], - [ - -73.414536, - 45.50133 - ], - [ - -73.414962, - 45.501488 - ], - [ - -73.415352, - 45.501632 - ], - [ - -73.415771, - 45.501785 - ], - [ - -73.416178, - 45.501934 - ], - [ - -73.416751, - 45.502146 - ], - [ - -73.417069, - 45.502262 - ], - [ - -73.417293, - 45.502344 - ], - [ - -73.417806, - 45.502538 - ], - [ - -73.418173, - 45.502669 - ], - [ - -73.418847, - 45.502921 - ], - [ - -73.418869, - 45.50293 - ], - [ - -73.419167, - 45.503047 - ], - [ - -73.419278, - 45.503088 - ], - [ - -73.419673, - 45.503241 - ], - [ - -73.420142, - 45.503431 - ], - [ - -73.42069, - 45.503665 - ], - [ - -73.420806, - 45.503714 - ], - [ - -73.421234, - 45.503904 - ], - [ - -73.421648, - 45.504084 - ], - [ - -73.422009, - 45.504242 - ], - [ - -73.422355, - 45.50439 - ], - [ - -73.423115, - 45.504715 - ], - [ - -73.423504, - 45.504882 - ], - [ - -73.42368, - 45.504958 - ], - [ - -73.423967, - 45.505084 - ], - [ - -73.424527, - 45.505328 - ], - [ - -73.424876, - 45.505479 - ], - [ - -73.424965, - 45.505517 - ], - [ - -73.425433, - 45.505715 - ], - [ - -73.425471, - 45.505742 - ], - [ - -73.425589, - 45.505823 - ], - [ - -73.425852, - 45.505949 - ], - [ - -73.426079, - 45.506046 - ], - [ - -73.426348, - 45.506161 - ], - [ - -73.426686, - 45.506305 - ], - [ - -73.426919, - 45.506405 - ], - [ - -73.42775, - 45.506774 - ], - [ - -73.427847, - 45.506792 - ], - [ - -73.428015, - 45.506824 - ], - [ - -73.428153, - 45.506828 - ], - [ - -73.428285, - 45.506833 - ], - [ - -73.428429, - 45.506818 - ], - [ - -73.428656, - 45.506779 - ], - [ - -73.428772, - 45.506761 - ], - [ - -73.428988, - 45.506721 - ], - [ - -73.429213, - 45.50668 - ], - [ - -73.429366, - 45.506674 - ], - [ - -73.429476, - 45.506669 - ], - [ - -73.429755, - 45.506651 - ], - [ - -73.429825, - 45.506654 - ], - [ - -73.429948, - 45.50668 - ], - [ - -73.430064, - 45.506725 - ], - [ - -73.4302, - 45.506807 - ], - [ - -73.430341, - 45.507086 - ], - [ - -73.430485, - 45.507257 - ], - [ - -73.430506, - 45.507276 - ], - [ - -73.430509, - 45.507278 - ], - [ - -73.430608, - 45.507365 - ], - [ - -73.430672, - 45.507415 - ], - [ - -73.431358, - 45.507856 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431666, - 45.508054 - ], - [ - -73.432482, - 45.508559 - ], - [ - -73.433021, - 45.508883 - ], - [ - -73.433395, - 45.509082 - ], - [ - -73.433453, - 45.509113 - ], - [ - -73.433504, - 45.509138 - ], - [ - -73.43374, - 45.509257 - ], - [ - -73.434128, - 45.509428 - ], - [ - -73.43476, - 45.509703 - ], - [ - -73.435357, - 45.509957 - ], - [ - -73.435478, - 45.510009 - ], - [ - -73.435758, - 45.510131 - ], - [ - -73.435893, - 45.510189 - ], - [ - -73.43661, - 45.510502 - ], - [ - -73.437183, - 45.510752 - ], - [ - -73.437938, - 45.511081 - ], - [ - -73.438224, - 45.511212 - ], - [ - -73.438495, - 45.511335 - ], - [ - -73.439008, - 45.511568 - ], - [ - -73.439439, - 45.511751 - ], - [ - -73.439738, - 45.511879 - ], - [ - -73.43983, - 45.511919 - ], - [ - -73.439896, - 45.511951 - ], - [ - -73.440237, - 45.512095 - ], - [ - -73.441448, - 45.512613 - ], - [ - -73.441811, - 45.512775 - ], - [ - -73.442895, - 45.513213 - ], - [ - -73.443061, - 45.51328 - ], - [ - -73.445634, - 45.514379 - ], - [ - -73.445666, - 45.514393 - ], - [ - -73.446646, - 45.514811 - ], - [ - -73.448409, - 45.515536 - ], - [ - -73.448481, - 45.515566 - ], - [ - -73.44854, - 45.51559 - ], - [ - -73.449494, - 45.515978 - ], - [ - -73.449844, - 45.516127 - ], - [ - -73.450296, - 45.51632 - ], - [ - -73.451368, - 45.516759 - ], - [ - -73.451373, - 45.516761 - ], - [ - -73.451903, - 45.516982 - ], - [ - -73.452053, - 45.517054 - ], - [ - -73.45224, - 45.517153 - ], - [ - -73.452412, - 45.517228 - ], - [ - -73.452518, - 45.517275 - ], - [ - -73.453808, - 45.5178 - ], - [ - -73.453996, - 45.517877 - ], - [ - -73.454088, - 45.517914 - ], - [ - -73.454764, - 45.518193 - ], - [ - -73.455195, - 45.518372 - ], - [ - -73.455625, - 45.518549 - ], - [ - -73.45631, - 45.518837 - ], - [ - -73.457043, - 45.519136 - ], - [ - -73.457149, - 45.51918 - ], - [ - -73.457268, - 45.519234 - ], - [ - -73.458416, - 45.519718 - ], - [ - -73.458582, - 45.519788 - ], - [ - -73.460207, - 45.520469 - ], - [ - -73.460326, - 45.520518 - ], - [ - -73.460513, - 45.520597 - ], - [ - -73.462498, - 45.52143 - ], - [ - -73.462791, - 45.521553 - ], - [ - -73.463787, - 45.521961 - ], - [ - -73.463823, - 45.521976 - ], - [ - -73.464215, - 45.522138 - ], - [ - -73.464352, - 45.522188 - ], - [ - -73.464459, - 45.522246 - ], - [ - -73.464607, - 45.522332 - ], - [ - -73.465171, - 45.522557 - ], - [ - -73.465496, - 45.522687 - ], - [ - -73.466002, - 45.522899 - ], - [ - -73.466103, - 45.522924 - ], - [ - -73.466276, - 45.522967 - ], - [ - -73.467237, - 45.523363 - ], - [ - -73.467909, - 45.523646 - ], - [ - -73.468048, - 45.523705 - ], - [ - -73.468866, - 45.524038 - ], - [ - -73.469522, - 45.524322 - ], - [ - -73.469659, - 45.524378 - ], - [ - -73.469721, - 45.524403 - ], - [ - -73.470239, - 45.524623 - ], - [ - -73.470555, - 45.524749 - ], - [ - -73.471094, - 45.524979 - ], - [ - -73.471997, - 45.525357 - ], - [ - -73.472463, - 45.525555 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.474669, - 45.526471 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.475467, - 45.526811 - ], - [ - -73.475894, - 45.526982 - ], - [ - -73.476167, - 45.527095 - ], - [ - -73.476219, - 45.527117 - ], - [ - -73.476969, - 45.527428 - ], - [ - -73.477725, - 45.527748 - ], - [ - -73.478344, - 45.528009 - ], - [ - -73.478598, - 45.528117 - ], - [ - -73.479454, - 45.528472 - ], - [ - -73.480164, - 45.528774 - ], - [ - -73.480753, - 45.529011 - ], - [ - -73.48089, - 45.529066 - ], - [ - -73.481425, - 45.529299 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.484972, - 45.530779 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.488434, - 45.532218 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.490645, - 45.533128 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.492965, - 45.534085 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.494103, - 45.534554 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.495628, - 45.535241 - ], - [ - -73.495883, - 45.535371 - ], - [ - -73.496559, - 45.535687 - ], - [ - -73.496645, - 45.535727 - ], - [ - -73.49677, - 45.535781 - ], - [ - -73.49726, - 45.535988 - ], - [ - -73.498459, - 45.536487 - ], - [ - -73.498944, - 45.536691 - ], - [ - -73.499435, - 45.536897 - ], - [ - -73.501142, - 45.537612 - ], - [ - -73.502066, - 45.537998 - ], - [ - -73.50327, - 45.538501 - ], - [ - -73.503424, - 45.538566 - ], - [ - -73.503808, - 45.538728 - ], - [ - -73.503912, - 45.538786 - ], - [ - -73.504095, - 45.538926 - ], - [ - -73.504553, - 45.539317 - ], - [ - -73.504747, - 45.539452 - ], - [ - -73.504776, - 45.539468 - ], - [ - -73.504898, - 45.539533 - ], - [ - -73.506469, - 45.540185 - ], - [ - -73.507029, - 45.540406 - ], - [ - -73.507958, - 45.540788 - ], - [ - -73.508096, - 45.540847 - ], - [ - -73.508112, - 45.54082 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.50824, - 45.540633 - ], - [ - -73.508343, - 45.540482 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.509505, - 45.538861 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.51159, - 45.537131 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.513272, - 45.536035 - ], - [ - -73.513413, - 45.535879 - ], - [ - -73.513707, - 45.535583 - ], - [ - -73.513941, - 45.535349 - ], - [ - -73.513972, - 45.535319 - ], - [ - -73.514031, - 45.535263 - ], - [ - -73.514312, - 45.534967 - ], - [ - -73.514735, - 45.53454 - ], - [ - -73.514842, - 45.53442 - ], - [ - -73.514898, - 45.534357 - ], - [ - -73.515145, - 45.534084 - ], - [ - -73.515317, - 45.533897 - ], - [ - -73.515372, - 45.533842 - ], - [ - -73.515504, - 45.533699 - ], - [ - -73.515508, - 45.533694 - ], - [ - -73.515888, - 45.533287 - ], - [ - -73.515986, - 45.533193 - ], - [ - -73.516614, - 45.532649 - ], - [ - -73.516729, - 45.532549 - ], - [ - -73.517579, - 45.531802 - ], - [ - -73.517926, - 45.531464 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518212, - 45.531168 - ], - [ - -73.51845, - 45.53088 - ], - [ - -73.518608, - 45.530695 - ], - [ - -73.518713, - 45.530574 - ], - [ - -73.518834, - 45.53043 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519398, - 45.526003 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 190, - "properties": { - "id": "6f88ce8f-117b-4e27-aa90-a00f88d8be58", - "data": { - "gtfs": { - "shape_id": "88_1_A" - }, - "segments": [ - { - "distanceMeters": 129, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 402, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 360, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 557, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 420, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 87, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 636, - "travelTimeSeconds": 141 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 119 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 282, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17681, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 12648.105767291585, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.27, - "travelTimeWithoutDwellTimesSeconds": 2820, - "operatingTimeWithLayoverTimeSeconds": 3102, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2820, - "operatingSpeedWithLayoverMetersPerSecond": 5.7, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.27 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "2bfdc814-6852-43cf-a60e-ce2e7fee82b8", - "2bad9abb-726e-4e19-bd55-ea4436446fe9", - "40363de6-68fe-4797-a6b6-a7c0b8b379e0", - "24542ec6-1b63-420d-8089-98a7341dfe66", - "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", - "2cd6db83-9a4e-4640-91da-759ec9e4a386", - "c5d63249-9c53-468b-a75e-33839919bc02", - "f585bf2c-536e-4916-a0ee-20092a76ccad", - "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", - "057da5dd-23f2-431d-8955-7a7d8f0dae40", - "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", - "88a428f4-cdde-43a8-a2c3-c4652eae6722", - "d664171d-6b67-486f-b850-92d7b923ec60", - "658aec75-ba5b-4e43-b93b-5305ff3f6685", - "8d50e155-65e6-4b67-8d83-f347e12cf6d7", - "a2ac9477-abf0-4b55-8588-e045bd0373a2", - "ced239e0-91f5-4429-96fd-20bbb8fcfd11", - "70ea9063-86f0-43f5-9e7d-16ea087fc4ce", - "69b9716f-dd31-4ae3-9736-6d5edb237b8a", - "cb20b749-b55e-4251-94cd-215651864e8b", - "33ed66fe-2193-4e2a-b51d-d25140b9ad80", - "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", - "aab8672e-86c9-4a43-9806-f5135dc02b4e", - "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", - "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", - "69889f24-c076-4661-981b-6008a401d446", - "853b0202-bae1-4c20-ab0e-8b27d1350e9a", - "46ea2114-c4d6-46e8-be5d-60d028340abb", - "e460be07-05e4-49f8-a725-e63809c74139", - "235a92b0-53e1-410c-b264-d57c7814303c", - "7207a900-095a-4a6f-9e58-d5821a46e7d1", - "2d759b9b-5efb-4a57-814c-915d6b6185d7", - "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", - "eb6126b3-b137-4dad-bcdc-63a4afe577c5", - "80008949-5a0f-4c5e-b778-592c2ee8487f", - "53ead0f5-ebe4-4285-9d12-aa867ff0e782", - "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", - "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", - "7b1c691c-8a55-45c2-8401-9d619a0efb76", - "c4825963-416e-404b-a744-6ffe763e2d89", - "344c16fc-7161-4015-9999-e3e0f325dd1e", - "5636d204-312b-4d1e-bac7-614621da4bb5", - "d3991811-d92b-4ba2-9732-26a74abc49b7", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "5981cea7-b196-4e72-820c-362fb9c4e212", - "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", - "130245ae-209b-4e27-b903-ff57832b92eb", - "0d6b35f8-1b6c-4403-a7a5-53247aec7649", - "c3a2368c-bf2d-4c72-9adb-41ee799004b3", - "011d1f54-164c-4564-a051-bdacad3e287d", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "49918c5a-8414-49fd-abf9-87ae6b9f3976", - "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", - "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", - "65175945-c54c-4732-85a9-890393a0975c", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "999ed130-7d99-4115-ac3c-cabba7731288", - "d15f81ba-7519-47f7-aa07-0026f1b03e42", - "28f2fe65-961c-4550-a722-1e7790fe94ad", - "9cf81604-6d70-4ba8-a3fc-521104742058", - "4d48f36b-2274-4392-afac-b2c2c64b98f0", - "5f58acb6-be68-437f-bde7-a77d03125af9", - "4e61612c-2f48-47d6-ad42-7c0737853911", - "e46ba2d2-9f30-419f-acae-c73c3ef665c5", - "48ea0d06-7b69-4895-b55b-2a18e6e6f906", - "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", - "d00d9138-966b-4522-be1d-8c665c71246b", - "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "649e6394-9376-40eb-bc0e-4a376a0044aa", - "4fb4515b-e129-4622-b855-89143c2fd488", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "82ddf491-8480-4b4d-bd2b-3b768c0a5350", - "segments": [ - 0, - 4, - 8, - 11, - 14, - 19, - 23, - 26, - 27, - 37, - 43, - 50, - 56, - 63, - 66, - 69, - 76, - 84, - 92, - 97, - 102, - 105, - 112, - 121, - 123, - 128, - 135, - 142, - 147, - 152, - 159, - 163, - 171, - 183, - 203, - 207, - 215, - 217, - 224, - 227, - 229, - 235, - 243, - 249, - 254, - 259, - 265, - 271, - 275, - 281, - 285, - 289, - 293, - 299, - 306, - 309, - 313, - 318, - 320, - 326, - 331, - 335, - 342, - 351, - 357, - 365, - 373, - 383, - 386, - 389, - 406 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 190, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519057, - 45.525166 - ], - [ - -73.518828, - 45.525169 - ], - [ - -73.518662, - 45.525195 - ], - [ - -73.518477, - 45.525222 - ], - [ - -73.51841, - 45.525229 - ], - [ - -73.518309, - 45.525233 - ], - [ - -73.518165, - 45.525238 - ], - [ - -73.517846, - 45.525224 - ], - [ - -73.516858, - 45.525188 - ], - [ - -73.516329, - 45.525185 - ], - [ - -73.51586, - 45.52522 - ], - [ - -73.515879, - 45.525306 - ], - [ - -73.515954, - 45.525625 - ], - [ - -73.515993, - 45.52576 - ], - [ - -73.516108, - 45.52615 - ], - [ - -73.51612, - 45.526192 - ], - [ - -73.516245, - 45.52653 - ], - [ - -73.516302, - 45.526687 - ], - [ - -73.516434, - 45.526894 - ], - [ - -73.517006, - 45.527735 - ], - [ - -73.517118, - 45.52798 - ], - [ - -73.51723, - 45.528227 - ], - [ - -73.517259, - 45.52829 - ], - [ - -73.517272, - 45.52832 - ], - [ - -73.517504, - 45.528922 - ], - [ - -73.517577, - 45.529094 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.517456, - 45.531762 - ], - [ - -73.516898, - 45.532279 - ], - [ - -73.51664, - 45.532518 - ], - [ - -73.515885, - 45.533161 - ], - [ - -73.515753, - 45.533238 - ], - [ - -73.515672, - 45.533321 - ], - [ - -73.515331, - 45.533704 - ], - [ - -73.515257, - 45.533788 - ], - [ - -73.515202, - 45.533848 - ], - [ - -73.514831, - 45.534265 - ], - [ - -73.514791, - 45.534311 - ], - [ - -73.514731, - 45.534379 - ], - [ - -73.514684, - 45.534434 - ], - [ - -73.51432, - 45.534799 - ], - [ - -73.514008, - 45.535115 - ], - [ - -73.513904, - 45.53522 - ], - [ - -73.513681, - 45.535468 - ], - [ - -73.51342, - 45.535713 - ], - [ - -73.513155, - 45.535985 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.511248, - 45.53733 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.509636, - 45.538682 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.508029, - 45.540693 - ], - [ - -73.508021, - 45.540689 - ], - [ - -73.50755, - 45.540498 - ], - [ - -73.507102, - 45.540316 - ], - [ - -73.506536, - 45.540077 - ], - [ - -73.505481, - 45.539649 - ], - [ - -73.504975, - 45.539443 - ], - [ - -73.50484, - 45.539375 - ], - [ - -73.504659, - 45.53925 - ], - [ - -73.504204, - 45.538858 - ], - [ - -73.50401, - 45.538714 - ], - [ - -73.504007, - 45.538713 - ], - [ - -73.503897, - 45.538651 - ], - [ - -73.5035, - 45.538476 - ], - [ - -73.502143, - 45.537905 - ], - [ - -73.501222, - 45.537517 - ], - [ - -73.499715, - 45.536883 - ], - [ - -73.499534, - 45.536807 - ], - [ - -73.498456, - 45.536361 - ], - [ - -73.497345, - 45.53588 - ], - [ - -73.496932, - 45.535682 - ], - [ - -73.496814, - 45.535632 - ], - [ - -73.496544, - 45.535524 - ], - [ - -73.495741, - 45.5352 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.494446, - 45.534696 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.492656, - 45.533958 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.491133, - 45.533327 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.488611, - 45.532293 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.485524, - 45.531009 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.481755, - 45.52944 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.48089, - 45.529066 - ], - [ - -73.480753, - 45.529011 - ], - [ - -73.480164, - 45.528774 - ], - [ - -73.479454, - 45.528472 - ], - [ - -73.478852, - 45.528222 - ], - [ - -73.478598, - 45.528117 - ], - [ - -73.477725, - 45.527748 - ], - [ - -73.476969, - 45.527428 - ], - [ - -73.476219, - 45.527117 - ], - [ - -73.476102, - 45.527069 - ], - [ - -73.475894, - 45.526982 - ], - [ - -73.475467, - 45.526811 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.474284, - 45.526312 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.472784, - 45.525689 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.471997, - 45.525357 - ], - [ - -73.471094, - 45.524979 - ], - [ - -73.470555, - 45.524749 - ], - [ - -73.470239, - 45.524623 - ], - [ - -73.469721, - 45.524403 - ], - [ - -73.469639, - 45.524369 - ], - [ - -73.469522, - 45.524322 - ], - [ - -73.468866, - 45.524038 - ], - [ - -73.46822, - 45.523775 - ], - [ - -73.468048, - 45.523705 - ], - [ - -73.467237, - 45.523363 - ], - [ - -73.466276, - 45.522967 - ], - [ - -73.466082, - 45.522841 - ], - [ - -73.465634, - 45.52266 - ], - [ - -73.46556, - 45.522629 - ], - [ - -73.464874, - 45.522336 - ], - [ - -73.464576, - 45.522215 - ], - [ - -73.464439, - 45.522143 - ], - [ - -73.464336, - 45.522093 - ], - [ - -73.464186, - 45.522017 - ], - [ - -73.463952, - 45.52192 - ], - [ - -73.463658, - 45.521798 - ], - [ - -73.463125, - 45.521577 - ], - [ - -73.462859, - 45.521467 - ], - [ - -73.46256, - 45.521341 - ], - [ - -73.460787, - 45.520595 - ], - [ - -73.460592, - 45.520513 - ], - [ - -73.460391, - 45.520427 - ], - [ - -73.460276, - 45.520379 - ], - [ - -73.458651, - 45.519707 - ], - [ - -73.457521, - 45.519224 - ], - [ - -73.457332, - 45.519144 - ], - [ - -73.457212, - 45.51909 - ], - [ - -73.456379, - 45.518756 - ], - [ - -73.455695, - 45.518468 - ], - [ - -73.454389, - 45.517908 - ], - [ - -73.454164, - 45.517811 - ], - [ - -73.453487, - 45.51753 - ], - [ - -73.452836, - 45.51726 - ], - [ - -73.452666, - 45.517189 - ], - [ - -73.452271, - 45.517027 - ], - [ - -73.452136, - 45.516973 - ], - [ - -73.452066, - 45.516942 - ], - [ - -73.450161, - 45.516161 - ], - [ - -73.450032, - 45.516108 - ], - [ - -73.448767, - 45.515571 - ], - [ - -73.448601, - 45.5155 - ], - [ - -73.445131, - 45.514041 - ], - [ - -73.444787, - 45.513896 - ], - [ - -73.443504, - 45.513357 - ], - [ - -73.443129, - 45.513199 - ], - [ - -73.440479, - 45.512077 - ], - [ - -73.440432, - 45.512057 - ], - [ - -73.440007, - 45.511874 - ], - [ - -73.439905, - 45.511834 - ], - [ - -73.439831, - 45.511802 - ], - [ - -73.439067, - 45.511482 - ], - [ - -73.438501, - 45.511223 - ], - [ - -73.438299, - 45.511131 - ], - [ - -73.438017, - 45.511 - ], - [ - -73.437245, - 45.510635 - ], - [ - -73.436246, - 45.510195 - ], - [ - -73.435988, - 45.510081 - ], - [ - -73.435895, - 45.510041 - ], - [ - -73.435854, - 45.510023 - ], - [ - -73.435569, - 45.509897 - ], - [ - -73.435059, - 45.509678 - ], - [ - -73.434856, - 45.50959 - ], - [ - -73.434257, - 45.509343 - ], - [ - -73.433925, - 45.509203 - ], - [ - -73.433726, - 45.509117 - ], - [ - -73.433485, - 45.509005 - ], - [ - -73.433108, - 45.508806 - ], - [ - -73.432574, - 45.508487 - ], - [ - -73.432044, - 45.508167 - ], - [ - -73.431846, - 45.508041 - ], - [ - -73.43182, - 45.508023 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.431538, - 45.507856 - ], - [ - -73.430825, - 45.507356 - ], - [ - -73.430679, - 45.507221 - ], - [ - -73.430612, - 45.507149 - ], - [ - -73.43049, - 45.506978 - ], - [ - -73.43046, - 45.50692 - ], - [ - -73.430405, - 45.506816 - ], - [ - -73.430319, - 45.506587 - ], - [ - -73.430298, - 45.506497 - ], - [ - -73.430275, - 45.506389 - ], - [ - -73.430066, - 45.506425 - ], - [ - -73.429201, - 45.506567 - ], - [ - -73.428871, - 45.506622 - ], - [ - -73.428841, - 45.506627 - ], - [ - -73.428419, - 45.506698 - ], - [ - -73.428282, - 45.506718 - ], - [ - -73.428165, - 45.506711 - ], - [ - -73.427996, - 45.506684 - ], - [ - -73.427898, - 45.506666 - ], - [ - -73.427771, - 45.506635 - ], - [ - -73.427639, - 45.506594 - ], - [ - -73.427205, - 45.506406 - ], - [ - -73.426972, - 45.506306 - ], - [ - -73.426422, - 45.506071 - ], - [ - -73.42613, - 45.505956 - ], - [ - -73.425918, - 45.505873 - ], - [ - -73.425637, - 45.505778 - ], - [ - -73.425471, - 45.505742 - ], - [ - -73.425433, - 45.505715 - ], - [ - -73.425244, - 45.505635 - ], - [ - -73.424965, - 45.505517 - ], - [ - -73.424527, - 45.505328 - ], - [ - -73.423967, - 45.505084 - ], - [ - -73.42368, - 45.504958 - ], - [ - -73.423532, - 45.504895 - ], - [ - -73.423115, - 45.504715 - ], - [ - -73.422355, - 45.50439 - ], - [ - -73.422122, - 45.50429 - ], - [ - -73.422009, - 45.504242 - ], - [ - -73.421648, - 45.504084 - ], - [ - -73.421234, - 45.503904 - ], - [ - -73.420806, - 45.503714 - ], - [ - -73.420522, - 45.503593 - ], - [ - -73.420142, - 45.503431 - ], - [ - -73.419673, - 45.503241 - ], - [ - -73.419471, - 45.503163 - ], - [ - -73.419278, - 45.503088 - ], - [ - -73.419167, - 45.503047 - ], - [ - -73.418847, - 45.502921 - ], - [ - -73.418173, - 45.502669 - ], - [ - -73.417806, - 45.502538 - ], - [ - -73.417348, - 45.502365 - ], - [ - -73.417293, - 45.502344 - ], - [ - -73.416751, - 45.502146 - ], - [ - -73.416178, - 45.501934 - ], - [ - -73.415771, - 45.501785 - ], - [ - -73.415352, - 45.501632 - ], - [ - -73.414962, - 45.501488 - ], - [ - -73.414671, - 45.50138 - ], - [ - -73.414536, - 45.50133 - ], - [ - -73.414045, - 45.501145 - ], - [ - -73.413646, - 45.500992 - ], - [ - -73.413399, - 45.500906 - ], - [ - -73.41311, - 45.500798 - ], - [ - -73.412769, - 45.500658 - ], - [ - -73.41245, - 45.50054 - ], - [ - -73.412332, - 45.500496 - ], - [ - -73.411788, - 45.500288 - ], - [ - -73.411184, - 45.500063 - ], - [ - -73.410857, - 45.499937 - ], - [ - -73.410514, - 45.499802 - ], - [ - -73.410391, - 45.499753 - ], - [ - -73.40994, - 45.499576 - ], - [ - -73.409205, - 45.499289 - ], - [ - -73.409074, - 45.499238 - ], - [ - -73.408846, - 45.499152 - ], - [ - -73.408613, - 45.499067 - ], - [ - -73.408565, - 45.499044 - ], - [ - -73.407743, - 45.498715 - ], - [ - -73.407513, - 45.498634 - ], - [ - -73.406708, - 45.498317 - ], - [ - -73.406574, - 45.498264 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.405568, - 45.497876 - ], - [ - -73.405172, - 45.497723 - ], - [ - -73.404858, - 45.497588 - ], - [ - -73.404434, - 45.497426 - ], - [ - -73.403795, - 45.49716 - ], - [ - -73.40369, - 45.497114 - ], - [ - -73.403543, - 45.497051 - ], - [ - -73.402953, - 45.49679 - ], - [ - -73.402418, - 45.496555 - ], - [ - -73.401755, - 45.496251 - ], - [ - -73.401121, - 45.49596 - ], - [ - -73.400097, - 45.495485 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.396658, - 45.493872 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.395068, - 45.493132 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.391618, - 45.49152 - ], - [ - -73.391367, - 45.491407 - ], - [ - -73.391238, - 45.491347 - ], - [ - -73.391016, - 45.491244 - ], - [ - -73.390592, - 45.491047 - ], - [ - -73.389565, - 45.490569 - ], - [ - -73.389562, - 45.490568 - ], - [ - -73.389177, - 45.490388 - ], - [ - -73.388765, - 45.490199 - ], - [ - -73.388224, - 45.489938 - ], - [ - -73.387871, - 45.489772 - ], - [ - -73.387621, - 45.489654 - ], - [ - -73.387001, - 45.489365 - ], - [ - -73.386327, - 45.489048 - ], - [ - -73.386215, - 45.488995 - ], - [ - -73.385628, - 45.488725 - ], - [ - -73.385381, - 45.488599 - ], - [ - -73.385161, - 45.488493 - ], - [ - -73.384901, - 45.488369 - ], - [ - -73.384743, - 45.488246 - ], - [ - -73.384445, - 45.488089 - ], - [ - -73.384044, - 45.487891 - ], - [ - -73.383491, - 45.487611 - ], - [ - -73.382868, - 45.487294 - ], - [ - -73.382606, - 45.48716 - ], - [ - -73.3825, - 45.487106 - ], - [ - -73.382345, - 45.487025 - ], - [ - -73.382237, - 45.486971 - ], - [ - -73.381986, - 45.486854 - ], - [ - -73.381371, - 45.486556 - ], - [ - -73.380021, - 45.485902 - ], - [ - -73.379495, - 45.485632 - ], - [ - -73.378643, - 45.485213 - ], - [ - -73.377846, - 45.484834 - ], - [ - -73.377614, - 45.484722 - ], - [ - -73.377163, - 45.484505 - ], - [ - -73.376944, - 45.48441 - ], - [ - -73.376053, - 45.483919 - ], - [ - -73.375418, - 45.483571 - ], - [ - -73.375036, - 45.483363 - ], - [ - -73.37494, - 45.48331 - ], - [ - -73.374487, - 45.483067 - ], - [ - -73.373971, - 45.482778 - ], - [ - -73.373875, - 45.482724 - ], - [ - -73.373772, - 45.482665 - ], - [ - -73.372864, - 45.48216 - ], - [ - -73.37011, - 45.480637 - ], - [ - -73.369655, - 45.480389 - ], - [ - -73.369494, - 45.480301 - ], - [ - -73.36929, - 45.48019 - ], - [ - -73.369631, - 45.479717 - ], - [ - -73.371681, - 45.476871 - ], - [ - -73.372901, - 45.475178 - ], - [ - -73.373075, - 45.474921 - ], - [ - -73.37341, - 45.474455 - ], - [ - -73.373508, - 45.474319 - ], - [ - -73.37362, - 45.474193 - ], - [ - -73.373694, - 45.474085 - ], - [ - -73.373933, - 45.473762 - ], - [ - -73.374049, - 45.473595 - ], - [ - -73.374382, - 45.47313 - ], - [ - -73.37528, - 45.471878 - ], - [ - -73.375849, - 45.471074 - ], - [ - -73.375891, - 45.471015 - ], - [ - -73.377848, - 45.468313 - ], - [ - -73.378058, - 45.468023 - ], - [ - -73.3781, - 45.467967 - ], - [ - -73.380064, - 45.465238 - ], - [ - -73.380231, - 45.465 - ], - [ - -73.380313, - 45.464882 - ], - [ - -73.382026, - 45.462513 - ], - [ - -73.382117, - 45.462388 - ], - [ - -73.382264, - 45.462188 - ], - [ - -73.382279, - 45.462167 - ], - [ - -73.382765, - 45.462469 - ], - [ - -73.383093, - 45.462681 - ], - [ - -73.383388, - 45.462852 - ], - [ - -73.383787, - 45.46309 - ] - ] - }, - "id": 191, - "properties": { - "id": "048d4596-80fa-447d-8e2e-36bec4147b8b", - "data": { - "gtfs": { - "shape_id": "88_1_R" - }, - "segments": [ - { - "distanceMeters": 1051, - "travelTimeSeconds": 182 - }, - { - "distanceMeters": 483, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 392, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 331, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 654, - "travelTimeSeconds": 149 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 95, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 359, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 475, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 630, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 377, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 33 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 300, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17954, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 12648.105767291585, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.98, - "travelTimeWithoutDwellTimesSeconds": 3000, - "operatingTimeWithLayoverTimeSeconds": 3300, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3000, - "operatingSpeedWithLayoverMetersPerSecond": 5.44, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.98 - }, - "mode": "bus", - "name": "boul. Mountainview", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "b19be6c8-c333-401a-98e4-d16876257831", - "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "d00d9138-966b-4522-be1d-8c665c71246b", - "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", - "48ea0d06-7b69-4895-b55b-2a18e6e6f906", - "21e2e89a-3df0-4ff7-aa64-17a07fbd660e", - "0b419003-a369-45de-8ce5-7da6890d7f0a", - "680dba5d-14fa-4f77-98bd-f3a49fec7b48", - "f45a38ac-0f3f-41d9-9da1-be7902cc983a", - "9cf81604-6d70-4ba8-a3fc-521104742058", - "28f2fe65-961c-4550-a722-1e7790fe94ad", - "9d0a7ab6-be66-4ca9-b863-8712d8cd028c", - "999ed130-7d99-4115-ac3c-cabba7731288", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "27c5df15-201f-4855-9f49-556fd659fd8e", - "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", - "aa7795c0-dd5c-4462-b672-459c92223af2", - "49918c5a-8414-49fd-abf9-87ae6b9f3976", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "011d1f54-164c-4564-a051-bdacad3e287d", - "c3a2368c-bf2d-4c72-9adb-41ee799004b3", - "6885c351-726d-4431-84b5-d9262699183f", - "4e3112b5-abc7-4db5-a6a8-19b4193263c2", - "a5ca0f69-bb6f-4ef0-aaaa-1498b5ff9d00", - "ca3fc9fc-e2eb-41c4-a8d2-0ad2d2109db1", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "d3991811-d92b-4ba2-9732-26a74abc49b7", - "a873c2b7-5c8e-4dd4-9140-a7e8d042d038", - "b8513e69-5eee-478d-b428-8f498c145b40", - "344c16fc-7161-4015-9999-e3e0f325dd1e", - "abd431b8-dcf2-4c7a-a458-732690905187", - "dcaa1460-3c81-4616-b65b-ed7fae894032", - "a3922a48-9f26-4845-9881-2b33d59d0127", - "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", - "686bdc34-3602-4c31-b05f-c41f9ebe2543", - "48cbd834-3690-4d56-af66-277be54f9820", - "e5c099f9-8206-4175-8a7b-065df2f3b304", - "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", - "2d759b9b-5efb-4a57-814c-915d6b6185d7", - "7207a900-095a-4a6f-9e58-d5821a46e7d1", - "1dee950f-860c-49ec-9656-8fcdc6bfa744", - "235a92b0-53e1-410c-b264-d57c7814303c", - "4a4fa494-b43c-4be6-b677-70874b8f73cc", - "46ea2114-c4d6-46e8-be5d-60d028340abb", - "853b0202-bae1-4c20-ab0e-8b27d1350e9a", - "69889f24-c076-4661-981b-6008a401d446", - "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", - "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", - "50ca3159-13cc-4149-b07f-8267a31166e3", - "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", - "33ed66fe-2193-4e2a-b51d-d25140b9ad80", - "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", - "69b9716f-dd31-4ae3-9736-6d5edb237b8a", - "8354e556-947c-481c-96bd-d61737767f2d", - "ced239e0-91f5-4429-96fd-20bbb8fcfd11", - "a2ac9477-abf0-4b55-8588-e045bd0373a2", - "8d50e155-65e6-4b67-8d83-f347e12cf6d7", - "658aec75-ba5b-4e43-b93b-5305ff3f6685", - "d664171d-6b67-486f-b850-92d7b923ec60", - "88a428f4-cdde-43a8-a2c3-c4652eae6722", - "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", - "057da5dd-23f2-431d-8955-7a7d8f0dae40", - "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", - "f585bf2c-536e-4916-a0ee-20092a76ccad", - "c5d63249-9c53-468b-a75e-33839919bc02", - "00770ec2-f385-4c5e-86f3-1e107a204be7", - "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", - "24542ec6-1b63-420d-8089-98a7341dfe66", - "40363de6-68fe-4797-a6b6-a7c0b8b379e0", - "2bad9abb-726e-4e19-bd55-ea4436446fe9", - "2bfdc814-6852-43cf-a60e-ce2e7fee82b8" - ], - "stops": [], - "line_id": "82ddf491-8480-4b4d-bd2b-3b768c0a5350", - "segments": [ - 0, - 42, - 61, - 66, - 74, - 82, - 89, - 99, - 102, - 108, - 113, - 119, - 123, - 126, - 129, - 134, - 137, - 144, - 150, - 155, - 159, - 162, - 169, - 172, - 178, - 185, - 189, - 194, - 199, - 202, - 207, - 209, - 211, - 213, - 216, - 221, - 225, - 230, - 255, - 263, - 271, - 276, - 279, - 284, - 287, - 293, - 300, - 307, - 313, - 315, - 322, - 330, - 334, - 336, - 342, - 349, - 362, - 366, - 370, - 373, - 377, - 384, - 394, - 399, - 410, - 411, - 414, - 420, - 422, - 425, - 428, - 431 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 191, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519057, - 45.525166 - ], - [ - -73.518828, - 45.525169 - ], - [ - -73.518662, - 45.525195 - ], - [ - -73.518477, - 45.525222 - ], - [ - -73.51841, - 45.525229 - ], - [ - -73.518309, - 45.525233 - ], - [ - -73.518165, - 45.525238 - ], - [ - -73.517846, - 45.525224 - ], - [ - -73.516858, - 45.525188 - ], - [ - -73.516329, - 45.525185 - ], - [ - -73.51586, - 45.52522 - ], - [ - -73.515879, - 45.525306 - ], - [ - -73.515954, - 45.525625 - ], - [ - -73.515993, - 45.52576 - ], - [ - -73.516108, - 45.52615 - ], - [ - -73.51612, - 45.526192 - ], - [ - -73.516245, - 45.52653 - ], - [ - -73.516302, - 45.526687 - ], - [ - -73.516434, - 45.526894 - ], - [ - -73.517006, - 45.527735 - ], - [ - -73.517118, - 45.52798 - ], - [ - -73.51723, - 45.528227 - ], - [ - -73.517272, - 45.52832 - ], - [ - -73.517504, - 45.528922 - ], - [ - -73.517577, - 45.529094 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.517456, - 45.531762 - ], - [ - -73.51664, - 45.532518 - ], - [ - -73.515885, - 45.533161 - ], - [ - -73.515753, - 45.533238 - ], - [ - -73.515672, - 45.533321 - ], - [ - -73.515257, - 45.533788 - ], - [ - -73.515202, - 45.533848 - ], - [ - -73.514831, - 45.534265 - ], - [ - -73.514791, - 45.534311 - ], - [ - -73.514731, - 45.534379 - ], - [ - -73.514684, - 45.534434 - ], - [ - -73.51432, - 45.534799 - ], - [ - -73.513904, - 45.53522 - ], - [ - -73.513681, - 45.535468 - ], - [ - -73.51342, - 45.535713 - ], - [ - -73.513155, - 45.535985 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.508029, - 45.540693 - ], - [ - -73.508021, - 45.540689 - ], - [ - -73.507102, - 45.540316 - ], - [ - -73.506536, - 45.540077 - ], - [ - -73.504975, - 45.539443 - ], - [ - -73.50484, - 45.539375 - ], - [ - -73.504659, - 45.53925 - ], - [ - -73.504204, - 45.538858 - ], - [ - -73.50401, - 45.538714 - ], - [ - -73.503897, - 45.538651 - ], - [ - -73.5035, - 45.538476 - ], - [ - -73.502143, - 45.537905 - ], - [ - -73.501222, - 45.537517 - ], - [ - -73.499534, - 45.536807 - ], - [ - -73.498456, - 45.536361 - ], - [ - -73.497345, - 45.53588 - ], - [ - -73.496932, - 45.535682 - ], - [ - -73.496814, - 45.535632 - ], - [ - -73.495741, - 45.5352 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.48089, - 45.529066 - ], - [ - -73.480753, - 45.529011 - ], - [ - -73.480164, - 45.528774 - ], - [ - -73.479454, - 45.528472 - ], - [ - -73.478598, - 45.528117 - ], - [ - -73.477725, - 45.527748 - ], - [ - -73.476969, - 45.527428 - ], - [ - -73.476219, - 45.527117 - ], - [ - -73.475894, - 45.526982 - ], - [ - -73.475467, - 45.526811 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.471997, - 45.525357 - ], - [ - -73.471094, - 45.524979 - ], - [ - -73.470555, - 45.524749 - ], - [ - -73.470239, - 45.524623 - ], - [ - -73.469721, - 45.524403 - ], - [ - -73.469522, - 45.524322 - ], - [ - -73.468866, - 45.524038 - ], - [ - -73.468048, - 45.523705 - ], - [ - -73.467237, - 45.523363 - ], - [ - -73.466276, - 45.522967 - ], - [ - -73.466082, - 45.522841 - ], - [ - -73.465634, - 45.52266 - ], - [ - -73.464874, - 45.522336 - ], - [ - -73.464576, - 45.522215 - ], - [ - -73.464439, - 45.522143 - ], - [ - -73.464336, - 45.522093 - ], - [ - -73.464186, - 45.522017 - ], - [ - -73.463952, - 45.52192 - ], - [ - -73.463125, - 45.521577 - ], - [ - -73.462859, - 45.521467 - ], - [ - -73.46256, - 45.521341 - ], - [ - -73.460592, - 45.520513 - ], - [ - -73.460391, - 45.520427 - ], - [ - -73.460276, - 45.520379 - ], - [ - -73.458651, - 45.519707 - ], - [ - -73.457332, - 45.519144 - ], - [ - -73.457212, - 45.51909 - ], - [ - -73.456379, - 45.518756 - ], - [ - -73.455695, - 45.518468 - ], - [ - -73.454164, - 45.517811 - ], - [ - -73.453487, - 45.51753 - ], - [ - -73.452666, - 45.517189 - ], - [ - -73.452271, - 45.517027 - ], - [ - -73.452136, - 45.516973 - ], - [ - -73.452066, - 45.516942 - ], - [ - -73.450032, - 45.516108 - ], - [ - -73.448601, - 45.5155 - ], - [ - -73.444787, - 45.513896 - ], - [ - -73.443129, - 45.513199 - ], - [ - -73.440479, - 45.512077 - ], - [ - -73.440007, - 45.511874 - ], - [ - -73.439905, - 45.511834 - ], - [ - -73.439831, - 45.511802 - ], - [ - -73.439067, - 45.511482 - ], - [ - -73.438299, - 45.511131 - ], - [ - -73.438017, - 45.511 - ], - [ - -73.437245, - 45.510635 - ], - [ - -73.435988, - 45.510081 - ], - [ - -73.435895, - 45.510041 - ], - [ - -73.435854, - 45.510023 - ], - [ - -73.435569, - 45.509897 - ], - [ - -73.434856, - 45.50959 - ], - [ - -73.434257, - 45.509343 - ], - [ - -73.433925, - 45.509203 - ], - [ - -73.433726, - 45.509117 - ], - [ - -73.433485, - 45.509005 - ], - [ - -73.433108, - 45.508806 - ], - [ - -73.432574, - 45.508487 - ], - [ - -73.432044, - 45.508167 - ], - [ - -73.431846, - 45.508041 - ], - [ - -73.43182, - 45.508023 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.431538, - 45.507856 - ], - [ - -73.430825, - 45.507356 - ], - [ - -73.430679, - 45.507221 - ], - [ - -73.430612, - 45.507149 - ], - [ - -73.43049, - 45.506978 - ], - [ - -73.43046, - 45.50692 - ], - [ - -73.430405, - 45.506816 - ], - [ - -73.430319, - 45.506587 - ], - [ - -73.430298, - 45.506497 - ], - [ - -73.430275, - 45.506389 - ], - [ - -73.430066, - 45.506425 - ], - [ - -73.429201, - 45.506567 - ], - [ - -73.428871, - 45.506622 - ], - [ - -73.428419, - 45.506698 - ], - [ - -73.428282, - 45.506718 - ], - [ - -73.428165, - 45.506711 - ], - [ - -73.427996, - 45.506684 - ], - [ - -73.427898, - 45.506666 - ], - [ - -73.427771, - 45.506635 - ], - [ - -73.427639, - 45.506594 - ], - [ - -73.426972, - 45.506306 - ], - [ - -73.426422, - 45.506071 - ], - [ - -73.42613, - 45.505956 - ], - [ - -73.425918, - 45.505873 - ], - [ - -73.425637, - 45.505778 - ], - [ - -73.425471, - 45.505742 - ], - [ - -73.425433, - 45.505715 - ], - [ - -73.424965, - 45.505517 - ], - [ - -73.424527, - 45.505328 - ], - [ - -73.423967, - 45.505084 - ], - [ - -73.42368, - 45.504958 - ], - [ - -73.423115, - 45.504715 - ], - [ - -73.422355, - 45.50439 - ], - [ - -73.422009, - 45.504242 - ], - [ - -73.421648, - 45.504084 - ], - [ - -73.421234, - 45.503904 - ], - [ - -73.420806, - 45.503714 - ], - [ - -73.420142, - 45.503431 - ], - [ - -73.419673, - 45.503241 - ], - [ - -73.419278, - 45.503088 - ], - [ - -73.419167, - 45.503047 - ], - [ - -73.418847, - 45.502921 - ], - [ - -73.418173, - 45.502669 - ], - [ - -73.417806, - 45.502538 - ], - [ - -73.417293, - 45.502344 - ], - [ - -73.416751, - 45.502146 - ], - [ - -73.416178, - 45.501934 - ], - [ - -73.415771, - 45.501785 - ], - [ - -73.415352, - 45.501632 - ], - [ - -73.414962, - 45.501488 - ], - [ - -73.414536, - 45.50133 - ], - [ - -73.414045, - 45.501145 - ], - [ - -73.413646, - 45.500992 - ], - [ - -73.413399, - 45.500906 - ], - [ - -73.41311, - 45.500798 - ], - [ - -73.412769, - 45.500658 - ], - [ - -73.412332, - 45.500496 - ], - [ - -73.411788, - 45.500288 - ], - [ - -73.411184, - 45.500063 - ], - [ - -73.410857, - 45.499937 - ], - [ - -73.410514, - 45.499802 - ], - [ - -73.40994, - 45.499576 - ], - [ - -73.409074, - 45.499238 - ], - [ - -73.408846, - 45.499152 - ], - [ - -73.408613, - 45.499067 - ], - [ - -73.408565, - 45.499044 - ], - [ - -73.407743, - 45.498715 - ], - [ - -73.407513, - 45.498634 - ], - [ - -73.406574, - 45.498264 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.405568, - 45.497876 - ], - [ - -73.405172, - 45.497723 - ], - [ - -73.404858, - 45.497588 - ], - [ - -73.404434, - 45.497426 - ], - [ - -73.403795, - 45.49716 - ], - [ - -73.40369, - 45.497114 - ], - [ - -73.403543, - 45.497051 - ], - [ - -73.402953, - 45.49679 - ], - [ - -73.402418, - 45.496555 - ], - [ - -73.401755, - 45.496251 - ], - [ - -73.401121, - 45.49596 - ], - [ - -73.400097, - 45.495485 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.396658, - 45.493872 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.395068, - 45.493132 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.391618, - 45.49152 - ], - [ - -73.391367, - 45.491407 - ], - [ - -73.391238, - 45.491347 - ], - [ - -73.391016, - 45.491244 - ], - [ - -73.390592, - 45.491047 - ], - [ - -73.389565, - 45.490569 - ], - [ - -73.389562, - 45.490568 - ], - [ - -73.389177, - 45.490388 - ], - [ - -73.388765, - 45.490199 - ], - [ - -73.388224, - 45.489938 - ], - [ - -73.387871, - 45.489772 - ], - [ - -73.387621, - 45.489654 - ], - [ - -73.387001, - 45.489365 - ], - [ - -73.386327, - 45.489048 - ], - [ - -73.386215, - 45.488995 - ], - [ - -73.385628, - 45.488725 - ], - [ - -73.385381, - 45.488599 - ], - [ - -73.385161, - 45.488493 - ], - [ - -73.384901, - 45.488369 - ], - [ - -73.384743, - 45.488246 - ], - [ - -73.384445, - 45.488089 - ], - [ - -73.384044, - 45.487891 - ], - [ - -73.383491, - 45.487611 - ], - [ - -73.382868, - 45.487294 - ], - [ - -73.382606, - 45.48716 - ], - [ - -73.3825, - 45.487106 - ], - [ - -73.382345, - 45.487025 - ], - [ - -73.382237, - 45.486971 - ], - [ - -73.381986, - 45.486854 - ], - [ - -73.381371, - 45.486556 - ], - [ - -73.380021, - 45.485902 - ], - [ - -73.379495, - 45.485632 - ], - [ - -73.378643, - 45.485213 - ], - [ - -73.377846, - 45.484834 - ], - [ - -73.377614, - 45.484722 - ], - [ - -73.377163, - 45.484505 - ], - [ - -73.376944, - 45.48441 - ], - [ - -73.376053, - 45.483919 - ], - [ - -73.375418, - 45.483571 - ], - [ - -73.375036, - 45.483363 - ], - [ - -73.37494, - 45.48331 - ], - [ - -73.374487, - 45.483067 - ], - [ - -73.373971, - 45.482778 - ], - [ - -73.373875, - 45.482724 - ], - [ - -73.373772, - 45.482665 - ], - [ - -73.372864, - 45.48216 - ], - [ - -73.37011, - 45.480637 - ], - [ - -73.369655, - 45.480389 - ], - [ - -73.369494, - 45.480301 - ], - [ - -73.36929, - 45.48019 - ], - [ - -73.369631, - 45.479717 - ], - [ - -73.371681, - 45.476871 - ], - [ - -73.372901, - 45.475178 - ], - [ - -73.373075, - 45.474921 - ], - [ - -73.37341, - 45.474455 - ], - [ - -73.373508, - 45.474319 - ], - [ - -73.37362, - 45.474193 - ], - [ - -73.373694, - 45.474085 - ], - [ - -73.373933, - 45.473762 - ], - [ - -73.374049, - 45.473595 - ], - [ - -73.374382, - 45.47313 - ], - [ - -73.37528, - 45.471878 - ], - [ - -73.375849, - 45.471074 - ], - [ - -73.375891, - 45.471015 - ], - [ - -73.377848, - 45.468313 - ], - [ - -73.378058, - 45.468023 - ], - [ - -73.3781, - 45.467967 - ], - [ - -73.380064, - 45.465238 - ], - [ - -73.380231, - 45.465 - ], - [ - -73.380313, - 45.464882 - ], - [ - -73.382026, - 45.462513 - ], - [ - -73.382117, - 45.462388 - ], - [ - -73.382264, - 45.462188 - ], - [ - -73.382279, - 45.462167 - ], - [ - -73.382765, - 45.462469 - ], - [ - -73.383093, - 45.462681 - ], - [ - -73.383388, - 45.462852 - ], - [ - -73.383787, - 45.46309 - ] - ] - }, - "id": 192, - "properties": { - "id": "c2efaeac-a462-44c9-8d39-ffde953c7ae4", - "data": { - "gtfs": { - "shape_id": "88_1_R" - }, - "segments": [ - { - "distanceMeters": 12274, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 359, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 475, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 630, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 377, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 33 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17954, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4260.297650997991, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 21.37, - "travelTimeWithoutDwellTimesSeconds": 840, - "operatingTimeWithLayoverTimeSeconds": 1020, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 840, - "operatingSpeedWithLayoverMetersPerSecond": 17.6, - "averageSpeedWithoutDwellTimesMetersPerSecond": 21.37 - }, - "mode": "bus", - "name": "boul. Mountainview", - "color": "#A32638", - "nodes": [ - "50ca3159-13cc-4149-b07f-8267a31166e3", - "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", - "33ed66fe-2193-4e2a-b51d-d25140b9ad80", - "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", - "69b9716f-dd31-4ae3-9736-6d5edb237b8a", - "8354e556-947c-481c-96bd-d61737767f2d", - "ced239e0-91f5-4429-96fd-20bbb8fcfd11", - "a2ac9477-abf0-4b55-8588-e045bd0373a2", - "8d50e155-65e6-4b67-8d83-f347e12cf6d7", - "658aec75-ba5b-4e43-b93b-5305ff3f6685", - "d664171d-6b67-486f-b850-92d7b923ec60", - "88a428f4-cdde-43a8-a2c3-c4652eae6722", - "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", - "057da5dd-23f2-431d-8955-7a7d8f0dae40", - "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", - "f585bf2c-536e-4916-a0ee-20092a76ccad", - "c5d63249-9c53-468b-a75e-33839919bc02", - "00770ec2-f385-4c5e-86f3-1e107a204be7", - "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", - "24542ec6-1b63-420d-8089-98a7341dfe66", - "40363de6-68fe-4797-a6b6-a7c0b8b379e0", - "2bad9abb-726e-4e19-bd55-ea4436446fe9", - "2bfdc814-6852-43cf-a60e-ce2e7fee82b8" - ], - "stops": [], - "line_id": "82ddf491-8480-4b4d-bd2b-3b768c0a5350", - "segments": [ - 0, - 280, - 284, - 286, - 292, - 299, - 312, - 316, - 320, - 323, - 327, - 334, - 344, - 349, - 360, - 361, - 364, - 370, - 372, - 375, - 378, - 381 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 192, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519057, - 45.525166 - ], - [ - -73.518828, - 45.525169 - ], - [ - -73.518662, - 45.525195 - ], - [ - -73.518477, - 45.525222 - ], - [ - -73.51841, - 45.525229 - ], - [ - -73.518309, - 45.525233 - ], - [ - -73.518165, - 45.525238 - ], - [ - -73.517846, - 45.525224 - ], - [ - -73.516858, - 45.525188 - ], - [ - -73.516329, - 45.525185 - ], - [ - -73.51586, - 45.52522 - ], - [ - -73.515879, - 45.525306 - ], - [ - -73.515954, - 45.525625 - ], - [ - -73.515993, - 45.52576 - ], - [ - -73.516108, - 45.52615 - ], - [ - -73.51612, - 45.526192 - ], - [ - -73.516245, - 45.52653 - ], - [ - -73.516302, - 45.526687 - ], - [ - -73.516434, - 45.526894 - ], - [ - -73.517006, - 45.527735 - ], - [ - -73.517118, - 45.52798 - ], - [ - -73.51723, - 45.528227 - ], - [ - -73.517272, - 45.52832 - ], - [ - -73.517504, - 45.528922 - ], - [ - -73.517577, - 45.529094 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.517456, - 45.531762 - ], - [ - -73.51664, - 45.532518 - ], - [ - -73.515885, - 45.533161 - ], - [ - -73.515753, - 45.533238 - ], - [ - -73.515672, - 45.533321 - ], - [ - -73.515257, - 45.533788 - ], - [ - -73.515202, - 45.533848 - ], - [ - -73.514831, - 45.534265 - ], - [ - -73.514791, - 45.534311 - ], - [ - -73.514731, - 45.534379 - ], - [ - -73.514684, - 45.534434 - ], - [ - -73.51432, - 45.534799 - ], - [ - -73.513904, - 45.53522 - ], - [ - -73.513681, - 45.535468 - ], - [ - -73.51342, - 45.535713 - ], - [ - -73.513155, - 45.535985 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.508029, - 45.540693 - ], - [ - -73.508021, - 45.540689 - ], - [ - -73.507102, - 45.540316 - ], - [ - -73.506536, - 45.540077 - ], - [ - -73.504975, - 45.539443 - ], - [ - -73.50484, - 45.539375 - ], - [ - -73.504659, - 45.53925 - ], - [ - -73.504204, - 45.538858 - ], - [ - -73.50401, - 45.538714 - ], - [ - -73.503897, - 45.538651 - ], - [ - -73.5035, - 45.538476 - ], - [ - -73.502143, - 45.537905 - ], - [ - -73.501222, - 45.537517 - ], - [ - -73.499534, - 45.536807 - ], - [ - -73.498456, - 45.536361 - ], - [ - -73.497345, - 45.53588 - ], - [ - -73.496932, - 45.535682 - ], - [ - -73.496814, - 45.535632 - ], - [ - -73.495741, - 45.5352 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.48089, - 45.529066 - ], - [ - -73.480753, - 45.529011 - ], - [ - -73.480164, - 45.528774 - ], - [ - -73.479454, - 45.528472 - ], - [ - -73.478598, - 45.528117 - ], - [ - -73.477725, - 45.527748 - ], - [ - -73.476969, - 45.527428 - ], - [ - -73.476219, - 45.527117 - ], - [ - -73.475894, - 45.526982 - ], - [ - -73.475467, - 45.526811 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.471997, - 45.525357 - ], - [ - -73.471094, - 45.524979 - ], - [ - -73.470555, - 45.524749 - ], - [ - -73.470239, - 45.524623 - ], - [ - -73.469721, - 45.524403 - ], - [ - -73.469522, - 45.524322 - ], - [ - -73.468866, - 45.524038 - ], - [ - -73.468048, - 45.523705 - ], - [ - -73.467237, - 45.523363 - ], - [ - -73.466276, - 45.522967 - ], - [ - -73.466082, - 45.522841 - ], - [ - -73.465634, - 45.52266 - ], - [ - -73.464874, - 45.522336 - ], - [ - -73.464576, - 45.522215 - ], - [ - -73.464439, - 45.522143 - ], - [ - -73.464336, - 45.522093 - ], - [ - -73.464186, - 45.522017 - ], - [ - -73.463952, - 45.52192 - ], - [ - -73.463125, - 45.521577 - ], - [ - -73.462859, - 45.521467 - ], - [ - -73.46256, - 45.521341 - ], - [ - -73.460592, - 45.520513 - ], - [ - -73.460391, - 45.520427 - ], - [ - -73.460276, - 45.520379 - ], - [ - -73.458651, - 45.519707 - ], - [ - -73.457332, - 45.519144 - ], - [ - -73.457212, - 45.51909 - ], - [ - -73.456379, - 45.518756 - ], - [ - -73.455695, - 45.518468 - ], - [ - -73.454164, - 45.517811 - ], - [ - -73.453487, - 45.51753 - ], - [ - -73.452666, - 45.517189 - ], - [ - -73.452271, - 45.517027 - ], - [ - -73.452136, - 45.516973 - ], - [ - -73.452066, - 45.516942 - ], - [ - -73.450032, - 45.516108 - ], - [ - -73.448601, - 45.5155 - ], - [ - -73.444787, - 45.513896 - ], - [ - -73.443129, - 45.513199 - ], - [ - -73.440479, - 45.512077 - ], - [ - -73.440007, - 45.511874 - ], - [ - -73.439905, - 45.511834 - ], - [ - -73.439831, - 45.511802 - ], - [ - -73.439067, - 45.511482 - ], - [ - -73.438299, - 45.511131 - ], - [ - -73.438017, - 45.511 - ], - [ - -73.437245, - 45.510635 - ], - [ - -73.436246, - 45.510195 - ], - [ - -73.435988, - 45.510081 - ], - [ - -73.435895, - 45.510041 - ], - [ - -73.435854, - 45.510023 - ], - [ - -73.435569, - 45.509897 - ], - [ - -73.435059, - 45.509678 - ], - [ - -73.434856, - 45.50959 - ], - [ - -73.434257, - 45.509343 - ], - [ - -73.433925, - 45.509203 - ], - [ - -73.433726, - 45.509117 - ], - [ - -73.433485, - 45.509005 - ], - [ - -73.433108, - 45.508806 - ], - [ - -73.432574, - 45.508487 - ], - [ - -73.432044, - 45.508167 - ], - [ - -73.431846, - 45.508041 - ], - [ - -73.43182, - 45.508023 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.431538, - 45.507856 - ], - [ - -73.430825, - 45.507356 - ], - [ - -73.430679, - 45.507221 - ], - [ - -73.430612, - 45.507149 - ], - [ - -73.43049, - 45.506978 - ], - [ - -73.43046, - 45.50692 - ], - [ - -73.430405, - 45.506816 - ], - [ - -73.430319, - 45.506587 - ], - [ - -73.430298, - 45.506497 - ], - [ - -73.430275, - 45.506389 - ], - [ - -73.430066, - 45.506425 - ], - [ - -73.429201, - 45.506567 - ], - [ - -73.428871, - 45.506622 - ], - [ - -73.428841, - 45.506627 - ], - [ - -73.428419, - 45.506698 - ], - [ - -73.428282, - 45.506718 - ], - [ - -73.428165, - 45.506711 - ], - [ - -73.427996, - 45.506684 - ], - [ - -73.427898, - 45.506666 - ], - [ - -73.427771, - 45.506635 - ], - [ - -73.427639, - 45.506594 - ], - [ - -73.427205, - 45.506406 - ], - [ - -73.426972, - 45.506306 - ], - [ - -73.426422, - 45.506071 - ], - [ - -73.42613, - 45.505956 - ], - [ - -73.425918, - 45.505873 - ], - [ - -73.425637, - 45.505778 - ], - [ - -73.425471, - 45.505742 - ], - [ - -73.425433, - 45.505715 - ], - [ - -73.425244, - 45.505635 - ], - [ - -73.424965, - 45.505517 - ], - [ - -73.424527, - 45.505328 - ], - [ - -73.423967, - 45.505084 - ], - [ - -73.42368, - 45.504958 - ], - [ - -73.423532, - 45.504895 - ], - [ - -73.423115, - 45.504715 - ], - [ - -73.422355, - 45.50439 - ], - [ - -73.422122, - 45.50429 - ], - [ - -73.422009, - 45.504242 - ], - [ - -73.421648, - 45.504084 - ], - [ - -73.421234, - 45.503904 - ], - [ - -73.420806, - 45.503714 - ], - [ - -73.420522, - 45.503593 - ], - [ - -73.420142, - 45.503431 - ], - [ - -73.419673, - 45.503241 - ], - [ - -73.419471, - 45.503163 - ], - [ - -73.419278, - 45.503088 - ], - [ - -73.419167, - 45.503047 - ], - [ - -73.418847, - 45.502921 - ], - [ - -73.418173, - 45.502669 - ], - [ - -73.417806, - 45.502538 - ], - [ - -73.417348, - 45.502365 - ], - [ - -73.417293, - 45.502344 - ], - [ - -73.416751, - 45.502146 - ], - [ - -73.416178, - 45.501934 - ], - [ - -73.415771, - 45.501785 - ], - [ - -73.415352, - 45.501632 - ], - [ - -73.414962, - 45.501488 - ], - [ - -73.414671, - 45.50138 - ], - [ - -73.414536, - 45.50133 - ], - [ - -73.414045, - 45.501145 - ], - [ - -73.413646, - 45.500992 - ], - [ - -73.413399, - 45.500906 - ], - [ - -73.41311, - 45.500798 - ], - [ - -73.412769, - 45.500658 - ], - [ - -73.41245, - 45.50054 - ], - [ - -73.412332, - 45.500496 - ], - [ - -73.411788, - 45.500288 - ], - [ - -73.411184, - 45.500063 - ], - [ - -73.410857, - 45.499937 - ], - [ - -73.410514, - 45.499802 - ], - [ - -73.410391, - 45.499753 - ], - [ - -73.40994, - 45.499576 - ], - [ - -73.409205, - 45.499289 - ], - [ - -73.409074, - 45.499238 - ], - [ - -73.408846, - 45.499152 - ], - [ - -73.408613, - 45.499067 - ], - [ - -73.408565, - 45.499044 - ], - [ - -73.407743, - 45.498715 - ], - [ - -73.407513, - 45.498634 - ], - [ - -73.406708, - 45.498317 - ], - [ - -73.406574, - 45.498264 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.405568, - 45.497876 - ], - [ - -73.405172, - 45.497723 - ], - [ - -73.404858, - 45.497588 - ], - [ - -73.404434, - 45.497426 - ], - [ - -73.403795, - 45.49716 - ], - [ - -73.40369, - 45.497114 - ], - [ - -73.403543, - 45.497051 - ], - [ - -73.402953, - 45.49679 - ], - [ - -73.402418, - 45.496555 - ], - [ - -73.401755, - 45.496251 - ], - [ - -73.401121, - 45.49596 - ], - [ - -73.400097, - 45.495485 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.396658, - 45.493872 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.395068, - 45.493132 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.391618, - 45.49152 - ], - [ - -73.391367, - 45.491407 - ], - [ - -73.391238, - 45.491347 - ], - [ - -73.391016, - 45.491244 - ], - [ - -73.390592, - 45.491047 - ], - [ - -73.389565, - 45.490569 - ], - [ - -73.389562, - 45.490568 - ], - [ - -73.389177, - 45.490388 - ], - [ - -73.388765, - 45.490199 - ], - [ - -73.388224, - 45.489938 - ], - [ - -73.387871, - 45.489772 - ], - [ - -73.387621, - 45.489654 - ], - [ - -73.387001, - 45.489365 - ], - [ - -73.386327, - 45.489048 - ], - [ - -73.386215, - 45.488995 - ], - [ - -73.385628, - 45.488725 - ], - [ - -73.385381, - 45.488599 - ], - [ - -73.385161, - 45.488493 - ], - [ - -73.384901, - 45.488369 - ], - [ - -73.384743, - 45.488246 - ], - [ - -73.384445, - 45.488089 - ], - [ - -73.384044, - 45.487891 - ], - [ - -73.383491, - 45.487611 - ], - [ - -73.382868, - 45.487294 - ], - [ - -73.382606, - 45.48716 - ], - [ - -73.3825, - 45.487106 - ], - [ - -73.382345, - 45.487025 - ], - [ - -73.382237, - 45.486971 - ], - [ - -73.381986, - 45.486854 - ], - [ - -73.381371, - 45.486556 - ], - [ - -73.380021, - 45.485902 - ], - [ - -73.379495, - 45.485632 - ], - [ - -73.378643, - 45.485213 - ], - [ - -73.377846, - 45.484834 - ], - [ - -73.377614, - 45.484722 - ], - [ - -73.377163, - 45.484505 - ], - [ - -73.376944, - 45.48441 - ], - [ - -73.376053, - 45.483919 - ], - [ - -73.375418, - 45.483571 - ], - [ - -73.375036, - 45.483363 - ], - [ - -73.37494, - 45.48331 - ], - [ - -73.374487, - 45.483067 - ], - [ - -73.373971, - 45.482778 - ], - [ - -73.373875, - 45.482724 - ], - [ - -73.373772, - 45.482665 - ], - [ - -73.372864, - 45.48216 - ], - [ - -73.37011, - 45.480637 - ], - [ - -73.369655, - 45.480389 - ], - [ - -73.369494, - 45.480301 - ], - [ - -73.36929, - 45.48019 - ], - [ - -73.369631, - 45.479717 - ], - [ - -73.371681, - 45.476871 - ], - [ - -73.372901, - 45.475178 - ], - [ - -73.373075, - 45.474921 - ], - [ - -73.37341, - 45.474455 - ], - [ - -73.373508, - 45.474319 - ], - [ - -73.37362, - 45.474193 - ], - [ - -73.373694, - 45.474085 - ], - [ - -73.373933, - 45.473762 - ], - [ - -73.374049, - 45.473595 - ], - [ - -73.374382, - 45.47313 - ], - [ - -73.37528, - 45.471878 - ], - [ - -73.375849, - 45.471074 - ], - [ - -73.375891, - 45.471015 - ], - [ - -73.377848, - 45.468313 - ], - [ - -73.378058, - 45.468023 - ], - [ - -73.3781, - 45.467967 - ], - [ - -73.380064, - 45.465238 - ], - [ - -73.380231, - 45.465 - ], - [ - -73.380313, - 45.464882 - ], - [ - -73.382026, - 45.462513 - ], - [ - -73.382117, - 45.462388 - ], - [ - -73.382264, - 45.462188 - ], - [ - -73.382279, - 45.462167 - ], - [ - -73.382765, - 45.462469 - ], - [ - -73.383093, - 45.462681 - ], - [ - -73.383388, - 45.462852 - ], - [ - -73.383787, - 45.46309 - ] - ] - }, - "id": 193, - "properties": { - "id": "472e1b57-e581-4754-bb3a-3ff53925caa5", - "data": { - "gtfs": { - "shape_id": "88_1_R" - }, - "segments": [ - { - "distanceMeters": 9270, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 654, - "travelTimeSeconds": 149 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 95, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 359, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 475, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 630, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 377, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 33 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17954, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6811.392517548296, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 12.47, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 11.08, - "averageSpeedWithoutDwellTimesMetersPerSecond": 12.47 - }, - "mode": "bus", - "name": "boul. Mountainview", - "color": "#A32638", - "nodes": [ - "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", - "686bdc34-3602-4c31-b05f-c41f9ebe2543", - "48cbd834-3690-4d56-af66-277be54f9820", - "e5c099f9-8206-4175-8a7b-065df2f3b304", - "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", - "2d759b9b-5efb-4a57-814c-915d6b6185d7", - "7207a900-095a-4a6f-9e58-d5821a46e7d1", - "1dee950f-860c-49ec-9656-8fcdc6bfa744", - "235a92b0-53e1-410c-b264-d57c7814303c", - "4a4fa494-b43c-4be6-b677-70874b8f73cc", - "46ea2114-c4d6-46e8-be5d-60d028340abb", - "853b0202-bae1-4c20-ab0e-8b27d1350e9a", - "69889f24-c076-4661-981b-6008a401d446", - "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", - "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", - "50ca3159-13cc-4149-b07f-8267a31166e3", - "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", - "33ed66fe-2193-4e2a-b51d-d25140b9ad80", - "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", - "69b9716f-dd31-4ae3-9736-6d5edb237b8a", - "8354e556-947c-481c-96bd-d61737767f2d", - "ced239e0-91f5-4429-96fd-20bbb8fcfd11", - "a2ac9477-abf0-4b55-8588-e045bd0373a2", - "8d50e155-65e6-4b67-8d83-f347e12cf6d7", - "658aec75-ba5b-4e43-b93b-5305ff3f6685", - "d664171d-6b67-486f-b850-92d7b923ec60", - "88a428f4-cdde-43a8-a2c3-c4652eae6722", - "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", - "057da5dd-23f2-431d-8955-7a7d8f0dae40", - "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", - "f585bf2c-536e-4916-a0ee-20092a76ccad", - "c5d63249-9c53-468b-a75e-33839919bc02", - "00770ec2-f385-4c5e-86f3-1e107a204be7", - "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", - "24542ec6-1b63-420d-8089-98a7341dfe66", - "40363de6-68fe-4797-a6b6-a7c0b8b379e0", - "2bad9abb-726e-4e19-bd55-ea4436446fe9", - "2bfdc814-6852-43cf-a60e-ce2e7fee82b8" - ], - "stops": [], - "line_id": "82ddf491-8480-4b4d-bd2b-3b768c0a5350", - "segments": [ - 0, - 190, - 195, - 220, - 228, - 236, - 241, - 244, - 249, - 252, - 258, - 265, - 272, - 278, - 280, - 287, - 295, - 299, - 301, - 307, - 314, - 327, - 331, - 335, - 338, - 342, - 349, - 359, - 364, - 375, - 376, - 379, - 385, - 387, - 390, - 393, - 396 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 193, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.441811, - 45.45839 - ], - [ - -73.441921, - 45.458262 - ], - [ - -73.442081, - 45.458141 - ], - [ - -73.442242, - 45.458029 - ], - [ - -73.442427, - 45.457912 - ], - [ - -73.442637, - 45.457768 - ], - [ - -73.442714, - 45.457714 - ], - [ - -73.442819, - 45.457642 - ], - [ - -73.44303, - 45.457498 - ], - [ - -73.44326, - 45.457345 - ], - [ - -73.443467, - 45.457179 - ], - [ - -73.443656, - 45.456972 - ], - [ - -73.443746, - 45.456833 - ], - [ - -73.4438, - 45.456747 - ], - [ - -73.443902, - 45.456603 - ], - [ - -73.444018, - 45.456432 - ], - [ - -73.444159, - 45.456216 - ], - [ - -73.444224, - 45.456104 - ], - [ - -73.444323, - 45.455987 - ], - [ - -73.444403, - 45.45592 - ], - [ - -73.444561, - 45.455812 - ], - [ - -73.445006, - 45.456208 - ], - [ - -73.445443, - 45.456518 - ], - [ - -73.445605, - 45.456635 - ], - [ - -73.445878, - 45.456816 - ], - [ - -73.445952, - 45.456865 - ], - [ - -73.446142, - 45.456982 - ], - [ - -73.446227, - 45.457004 - ], - [ - -73.446332, - 45.457032 - ], - [ - -73.446489, - 45.457095 - ], - [ - -73.446596, - 45.457158 - ], - [ - -73.446702, - 45.457243 - ], - [ - -73.446812, - 45.457324 - ], - [ - -73.446913, - 45.457357 - ], - [ - -73.446965, - 45.457368 - ], - [ - -73.447054, - 45.457381 - ], - [ - -73.447226, - 45.457406 - ], - [ - -73.447335, - 45.457449 - ], - [ - -73.447649, - 45.45765 - ], - [ - -73.448552, - 45.458228 - ], - [ - -73.448934, - 45.458388 - ], - [ - -73.449458, - 45.458593 - ], - [ - -73.449707, - 45.458708 - ], - [ - -73.450153, - 45.459037 - ], - [ - -73.451481, - 45.460003 - ], - [ - -73.452547, - 45.46077 - ], - [ - -73.454622, - 45.462265 - ], - [ - -73.454836, - 45.462367 - ], - [ - -73.455828, - 45.463057 - ], - [ - -73.456597, - 45.463496 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456946, - 45.463686 - ], - [ - -73.457318, - 45.463852 - ], - [ - -73.457856, - 45.464048 - ], - [ - -73.458071, - 45.464127 - ], - [ - -73.458485, - 45.464247 - ], - [ - -73.458755, - 45.464326 - ], - [ - -73.459354, - 45.46448 - ], - [ - -73.459627, - 45.464535 - ], - [ - -73.460221, - 45.464638 - ], - [ - -73.460645, - 45.464693 - ], - [ - -73.461091, - 45.464738 - ], - [ - -73.461573, - 45.464769 - ], - [ - -73.462433, - 45.464814 - ], - [ - -73.463232, - 45.464838 - ], - [ - -73.464263, - 45.464869 - ], - [ - -73.465023, - 45.464897 - ], - [ - -73.465951, - 45.464935 - ], - [ - -73.468282, - 45.465021 - ], - [ - -73.471035, - 45.465127 - ], - [ - -73.474689, - 45.465256 - ], - [ - -73.476448, - 45.465339 - ], - [ - -73.478069, - 45.465419 - ], - [ - -73.47931, - 45.465481 - ], - [ - -73.480681, - 45.465584 - ], - [ - -73.481658, - 45.465665 - ], - [ - -73.483804, - 45.465854 - ], - [ - -73.485886, - 45.466123 - ], - [ - -73.488038, - 45.466444 - ], - [ - -73.489088, - 45.466602 - ], - [ - -73.491585, - 45.46694 - ], - [ - -73.494707, - 45.467307 - ], - [ - -73.494917, - 45.467332 - ], - [ - -73.494999, - 45.467342 - ], - [ - -73.497318, - 45.467635 - ], - [ - -73.501976, - 45.468162 - ], - [ - -73.50546, - 45.468524 - ], - [ - -73.508994, - 45.468874 - ], - [ - -73.510795, - 45.469064 - ], - [ - -73.516615, - 45.469606 - ], - [ - -73.520513, - 45.469901 - ], - [ - -73.524263, - 45.470138 - ], - [ - -73.526895, - 45.470234 - ], - [ - -73.536203, - 45.470502 - ], - [ - -73.537479, - 45.470611 - ], - [ - -73.540035, - 45.470737 - ], - [ - -73.540574, - 45.470754 - ], - [ - -73.541689, - 45.470806 - ], - [ - -73.54236, - 45.470938 - ], - [ - -73.542685, - 45.471019 - ], - [ - -73.543056, - 45.471172 - ], - [ - -73.543235, - 45.471297 - ], - [ - -73.543427, - 45.47153 - ], - [ - -73.543495, - 45.471781 - ], - [ - -73.543487, - 45.471977 - ], - [ - -73.543374, - 45.472246 - ], - [ - -73.543123, - 45.472648 - ], - [ - -73.543053, - 45.472745 - ], - [ - -73.543034, - 45.472772 - ], - [ - -73.543013, - 45.472801 - ], - [ - -73.542473, - 45.473549 - ], - [ - -73.542275, - 45.473832 - ], - [ - -73.542255, - 45.473861 - ], - [ - -73.542175, - 45.473976 - ], - [ - -73.542016, - 45.474229 - ], - [ - -73.541794, - 45.474618 - ], - [ - -73.541458, - 45.475221 - ], - [ - -73.541094, - 45.47588 - ], - [ - -73.540722, - 45.476557 - ], - [ - -73.540393, - 45.477154 - ], - [ - -73.540141, - 45.477612 - ], - [ - -73.539989, - 45.477937 - ], - [ - -73.539912, - 45.478117 - ], - [ - -73.53962, - 45.478792 - ], - [ - -73.539453, - 45.479242 - ], - [ - -73.539011, - 45.480452 - ], - [ - -73.538771, - 45.481137 - ], - [ - -73.538372, - 45.4823 - ], - [ - -73.537796, - 45.483909 - ], - [ - -73.537682, - 45.484235 - ], - [ - -73.537533, - 45.484742 - ], - [ - -73.537501, - 45.485252 - ], - [ - -73.537565, - 45.485765 - ], - [ - -73.537725, - 45.486206 - ], - [ - -73.537953, - 45.486613 - ], - [ - -73.538211, - 45.486968 - ], - [ - -73.538564, - 45.487319 - ], - [ - -73.538991, - 45.48766 - ], - [ - -73.539413, - 45.487933 - ], - [ - -73.540409, - 45.488352 - ], - [ - -73.540999, - 45.488508 - ], - [ - -73.545779, - 45.489431 - ], - [ - -73.547415, - 45.489732 - ], - [ - -73.548107, - 45.48986 - ], - [ - -73.549549, - 45.490154 - ], - [ - -73.549968, - 45.490239 - ], - [ - -73.550646, - 45.490459 - ], - [ - -73.551261, - 45.490742 - ], - [ - -73.55163, - 45.490924 - ], - [ - -73.551996, - 45.491154 - ], - [ - -73.552466, - 45.491495 - ], - [ - -73.552812, - 45.491812 - ], - [ - -73.553225, - 45.492293 - ], - [ - -73.553459, - 45.492647 - ], - [ - -73.553701, - 45.493121 - ], - [ - -73.553714, - 45.493155 - ], - [ - -73.554005, - 45.493935 - ], - [ - -73.554229, - 45.494495 - ], - [ - -73.55441, - 45.494962 - ], - [ - -73.554709, - 45.495574 - ], - [ - -73.554963, - 45.495825 - ], - [ - -73.555225, - 45.496022 - ], - [ - -73.555665, - 45.496222 - ], - [ - -73.557268, - 45.496821 - ], - [ - -73.557934, - 45.497074 - ], - [ - -73.558513, - 45.497292 - ], - [ - -73.558754, - 45.497382 - ], - [ - -73.559665, - 45.497799 - ], - [ - -73.56055, - 45.498258 - ], - [ - -73.561247, - 45.498577 - ], - [ - -73.561574, - 45.498701 - ], - [ - -73.561917, - 45.498838 - ], - [ - -73.562165, - 45.49894 - ], - [ - -73.562545, - 45.499119 - ], - [ - -73.562571, - 45.499093 - ], - [ - -73.562654, - 45.499004 - ], - [ - -73.563341, - 45.498281 - ], - [ - -73.563953, - 45.497636 - ], - [ - -73.56431, - 45.497835 - ], - [ - -73.565142, - 45.498217 - ], - [ - -73.565601, - 45.498443 - ], - [ - -73.565748, - 45.49831 - ], - [ - -73.565849, - 45.498292 - ], - [ - -73.566051, - 45.498359 - ], - [ - -73.566361, - 45.498471 - ], - [ - -73.566492, - 45.498485 - ], - [ - -73.566611, - 45.498345 - ] - ] - }, - "id": 194, - "properties": { - "id": "0edc95d5-a715-4f6a-a02f-f112dd7c052a", - "data": { - "gtfs": { - "shape_id": "90_1_A" - }, - "segments": [ - { - "distanceMeters": 12421, - "travelTimeSeconds": 1080 - }, - { - "distanceMeters": 830, - "travelTimeSeconds": 240 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13251, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10715.224887275423, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 10.04, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 8.83, - "averageSpeedWithoutDwellTimesMetersPerSecond": 10.04 - }, - "mode": "bus", - "name": "Terminus Centre-ville", - "color": "#A32638", - "nodes": [ - "1449efa8-6a20-4d2f-bc23-aca981e0e0f6", - "461a5d33-406e-481a-b773-6e450c48b670", - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec" - ], - "stops": [], - "line_id": "537c2459-ee0a-43d3-a16f-7ea2c7591e07", - "segments": [ - 0, - 165 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 194, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.566611, - 45.498345 - ], - [ - -73.566738, - 45.498195 - ], - [ - -73.566628, - 45.49808 - ], - [ - -73.566306, - 45.497931 - ], - [ - -73.566253, - 45.497841 - ], - [ - -73.56638, - 45.497699 - ], - [ - -73.566016, - 45.497523 - ], - [ - -73.564691, - 45.496892 - ], - [ - -73.563974, - 45.496566 - ], - [ - -73.562701, - 45.495919 - ], - [ - -73.562646, - 45.496027 - ], - [ - -73.562481, - 45.496317 - ], - [ - -73.562435, - 45.496383 - ], - [ - -73.562367, - 45.496479 - ], - [ - -73.562274, - 45.496658 - ], - [ - -73.562038, - 45.497108 - ], - [ - -73.561525, - 45.498031 - ], - [ - -73.561218, - 45.497864 - ], - [ - -73.561033, - 45.497765 - ], - [ - -73.560139, - 45.497347 - ], - [ - -73.559235, - 45.49696 - ], - [ - -73.55917, - 45.496938 - ], - [ - -73.558356, - 45.496631 - ], - [ - -73.55815, - 45.496558 - ], - [ - -73.557604, - 45.496364 - ], - [ - -73.556782, - 45.49606 - ], - [ - -73.555745, - 45.495673 - ], - [ - -73.555351, - 45.495512 - ], - [ - -73.555133, - 45.495401 - ], - [ - -73.554916, - 45.495262 - ], - [ - -73.554768, - 45.495125 - ], - [ - -73.55465, - 45.494994 - ], - [ - -73.553944, - 45.493258 - ], - [ - -73.553818, - 45.492971 - ], - [ - -73.553465, - 45.492338 - ], - [ - -73.552977, - 45.491759 - ], - [ - -73.552502, - 45.491344 - ], - [ - -73.551956, - 45.490962 - ], - [ - -73.551651, - 45.490791 - ], - [ - -73.551074, - 45.490513 - ], - [ - -73.550682, - 45.490367 - ], - [ - -73.550312, - 45.490228 - ], - [ - -73.54956, - 45.490034 - ], - [ - -73.548355, - 45.489798 - ], - [ - -73.542648, - 45.488704 - ], - [ - -73.541878, - 45.488554 - ], - [ - -73.541083, - 45.488397 - ], - [ - -73.540636, - 45.488282 - ], - [ - -73.540145, - 45.488119 - ], - [ - -73.539582, - 45.48786 - ], - [ - -73.539551, - 45.487842 - ], - [ - -73.539239, - 45.487663 - ], - [ - -73.538946, - 45.487462 - ], - [ - -73.538619, - 45.487192 - ], - [ - -73.538304, - 45.486863 - ], - [ - -73.538089, - 45.486564 - ], - [ - -73.537862, - 45.486139 - ], - [ - -73.537796, - 45.485958 - ], - [ - -73.537731, - 45.485785 - ], - [ - -73.53767, - 45.485461 - ], - [ - -73.537646, - 45.485264 - ], - [ - -73.537653, - 45.484914 - ], - [ - -73.537707, - 45.484604 - ], - [ - -73.537881, - 45.484168 - ], - [ - -73.537968, - 45.483893 - ], - [ - -73.538058, - 45.483623 - ], - [ - -73.539557, - 45.479354 - ], - [ - -73.53982, - 45.478652 - ], - [ - -73.540179, - 45.47782 - ], - [ - -73.540481, - 45.477177 - ], - [ - -73.540578, - 45.477027 - ], - [ - -73.540928, - 45.476409 - ], - [ - -73.5413, - 45.475732 - ], - [ - -73.541747, - 45.474937 - ], - [ - -73.542136, - 45.474264 - ], - [ - -73.542539, - 45.47363 - ], - [ - -73.543159, - 45.472786 - ], - [ - -73.543162, - 45.472781 - ], - [ - -73.5432, - 45.472729 - ], - [ - -73.543381, - 45.472482 - ], - [ - -73.543908, - 45.471834 - ], - [ - -73.544604, - 45.471016 - ], - [ - -73.54479, - 45.470824 - ], - [ - -73.544929, - 45.470679 - ], - [ - -73.54509, - 45.470477 - ], - [ - -73.545159, - 45.470391 - ], - [ - -73.545162, - 45.470289 - ], - [ - -73.54518, - 45.470102 - ], - [ - -73.54513, - 45.469912 - ], - [ - -73.545032, - 45.469762 - ], - [ - -73.544829, - 45.469589 - ], - [ - -73.544396, - 45.469456 - ], - [ - -73.544223, - 45.469408 - ], - [ - -73.544, - 45.469414 - ], - [ - -73.54385, - 45.469436 - ], - [ - -73.543665, - 45.469485 - ], - [ - -73.543125, - 45.469658 - ], - [ - -73.542795, - 45.46978 - ], - [ - -73.542335, - 45.469915 - ], - [ - -73.542042, - 45.469974 - ], - [ - -73.541634, - 45.469988 - ], - [ - -73.538583, - 45.470121 - ], - [ - -73.536645, - 45.47012 - ], - [ - -73.534843, - 45.470106 - ], - [ - -73.531663, - 45.470044 - ], - [ - -73.528901, - 45.469979 - ], - [ - -73.525636, - 45.469864 - ], - [ - -73.520215, - 45.469565 - ], - [ - -73.516228, - 45.469261 - ], - [ - -73.50737, - 45.468395 - ], - [ - -73.501604, - 45.467786 - ], - [ - -73.499262, - 45.467514 - ], - [ - -73.493921, - 45.466881 - ], - [ - -73.491932, - 45.466645 - ], - [ - -73.489852, - 45.466348 - ], - [ - -73.489119, - 45.46624 - ], - [ - -73.489027, - 45.466226 - ], - [ - -73.486848, - 45.465931 - ], - [ - -73.485714, - 45.465782 - ], - [ - -73.482904, - 45.465439 - ], - [ - -73.482123, - 45.46537 - ], - [ - -73.479736, - 45.465191 - ], - [ - -73.47968, - 45.465187 - ], - [ - -73.478363, - 45.465119 - ], - [ - -73.478043, - 45.465102 - ], - [ - -73.477796, - 45.465089 - ], - [ - -73.475753, - 45.464994 - ], - [ - -73.474695, - 45.464942 - ], - [ - -73.474262, - 45.464921 - ], - [ - -73.474113, - 45.464916 - ], - [ - -73.473291, - 45.464882 - ], - [ - -73.472501, - 45.46485 - ], - [ - -73.472392, - 45.464846 - ], - [ - -73.471465, - 45.464834 - ], - [ - -73.470497, - 45.464799 - ], - [ - -73.468804, - 45.464739 - ], - [ - -73.467001, - 45.46467 - ], - [ - -73.466541, - 45.464652 - ], - [ - -73.465757, - 45.46458 - ], - [ - -73.464402, - 45.464429 - ], - [ - -73.463422, - 45.464395 - ], - [ - -73.462294, - 45.464357 - ], - [ - -73.461419, - 45.464323 - ], - [ - -73.460353, - 45.4642 - ], - [ - -73.459906, - 45.464144 - ], - [ - -73.459408, - 45.464052 - ], - [ - -73.458521, - 45.463796 - ], - [ - -73.458275, - 45.463724 - ], - [ - -73.457681, - 45.463496 - ], - [ - -73.457669, - 45.463491 - ], - [ - -73.456975, - 45.463149 - ], - [ - -73.456896, - 45.463092 - ], - [ - -73.456843, - 45.463043 - ], - [ - -73.456777, - 45.462977 - ], - [ - -73.456717, - 45.462912 - ], - [ - -73.456666, - 45.462833 - ], - [ - -73.456625, - 45.462758 - ], - [ - -73.456603, - 45.462667 - ], - [ - -73.456596, - 45.462586 - ], - [ - -73.456593, - 45.462539 - ], - [ - -73.4566, - 45.462399 - ], - [ - -73.456621, - 45.462264 - ], - [ - -73.456608, - 45.461964 - ], - [ - -73.457019, - 45.462007 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.457564, - 45.462346 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.454906, - 45.46511 - ], - [ - -73.45432, - 45.464702 - ], - [ - -73.453971, - 45.464449 - ], - [ - -73.453617, - 45.464193 - ], - [ - -73.453261, - 45.463932 - ], - [ - -73.452912, - 45.463662 - ], - [ - -73.452802, - 45.463536 - ], - [ - -73.452721, - 45.463379 - ], - [ - -73.452662, - 45.463158 - ], - [ - -73.45263, - 45.463001 - ], - [ - -73.452634, - 45.462879 - ], - [ - -73.452663, - 45.462722 - ], - [ - -73.452703, - 45.4626 - ], - [ - -73.452775, - 45.462447 - ], - [ - -73.452835, - 45.462344 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.453161, - 45.462302 - ], - [ - -73.453183, - 45.462311 - ], - [ - -73.453343, - 45.462373 - ], - [ - -73.453553, - 45.462428 - ], - [ - -73.453729, - 45.462455 - ], - [ - -73.453888, - 45.462462 - ], - [ - -73.454017, - 45.462437 - ], - [ - -73.454092, - 45.462406 - ], - [ - -73.454278, - 45.462276 - ], - [ - -73.454197, - 45.462218 - ], - [ - -73.453602, - 45.461785 - ], - [ - -73.453448, - 45.461674 - ], - [ - -73.453385, - 45.461629 - ], - [ - -73.45305, - 45.461381 - ], - [ - -73.45275, - 45.461169 - ], - [ - -73.452262, - 45.460814 - ], - [ - -73.449839, - 45.459072 - ], - [ - -73.449359, - 45.458774 - ], - [ - -73.448479, - 45.458383 - ], - [ - -73.448024, - 45.45813 - ], - [ - -73.447729, - 45.457941 - ], - [ - -73.447401, - 45.457716 - ], - [ - -73.447206, - 45.457532 - ], - [ - -73.447146, - 45.457473 - ], - [ - -73.447054, - 45.457381 - ], - [ - -73.446923, - 45.457262 - ], - [ - -73.446661, - 45.457072 - ], - [ - -73.44657, - 45.457027 - ], - [ - -73.446482, - 45.456996 - ], - [ - -73.446388, - 45.45696 - ], - [ - -73.446222, - 45.456915 - ], - [ - -73.445958, - 45.456735 - ], - [ - -73.445693, - 45.456555 - ], - [ - -73.445542, - 45.456451 - ], - [ - -73.445085, - 45.456131 - ], - [ - -73.444561, - 45.455812 - ], - [ - -73.444403, - 45.45592 - ], - [ - -73.444323, - 45.455987 - ], - [ - -73.444224, - 45.456104 - ], - [ - -73.444159, - 45.456216 - ], - [ - -73.444018, - 45.456432 - ], - [ - -73.443902, - 45.456603 - ], - [ - -73.4438, - 45.456747 - ], - [ - -73.443746, - 45.456833 - ], - [ - -73.443656, - 45.456972 - ], - [ - -73.443467, - 45.457179 - ], - [ - -73.44326, - 45.457345 - ], - [ - -73.44303, - 45.457498 - ], - [ - -73.442819, - 45.457642 - ], - [ - -73.442714, - 45.457714 - ], - [ - -73.442637, - 45.457768 - ], - [ - -73.442427, - 45.457912 - ], - [ - -73.442242, - 45.458029 - ], - [ - -73.442081, - 45.458141 - ], - [ - -73.441947, - 45.458242 - ] - ] - }, - "id": 195, - "properties": { - "id": "0ecc1b57-4489-40c6-8704-07b09b9b5b71", - "data": { - "gtfs": { - "shape_id": "90_3_R" - }, - "segments": [ - { - "distanceMeters": 1006, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 13578, - "travelTimeSeconds": 1260 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 14583, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10715.224887275423, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 10.13, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 9, - "averageSpeedWithoutDwellTimesMetersPerSecond": 10.13 - }, - "mode": "bus", - "name": "Stat. Chevrier", - "color": "#A32638", - "nodes": [ - "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", - "0f8ef5e7-ff7c-4097-8d8a-9727f12190ea", - "1449efa8-6a20-4d2f-bc23-aca981e0e0f6" - ], - "stops": [], - "line_id": "537c2459-ee0a-43d3-a16f-7ea2c7591e07", - "segments": [ - 0, - 23 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 195, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.356358, - 45.540824 - ], - [ - -73.352636, - 45.540909 - ], - [ - -73.352638, - 45.54104 - ], - [ - -73.352651, - 45.541254 - ], - [ - -73.352651, - 45.541266 - ], - [ - -73.352663, - 45.541454 - ], - [ - -73.352675, - 45.541634 - ], - [ - -73.352688, - 45.54167 - ], - [ - -73.3527, - 45.541715 - ], - [ - -73.352878, - 45.542192 - ], - [ - -73.352929, - 45.542336 - ], - [ - -73.352942, - 45.542426 - ], - [ - -73.352942, - 45.542465 - ], - [ - -73.352941, - 45.542552 - ], - [ - -73.352987, - 45.543596 - ], - [ - -73.35299, - 45.543668 - ], - [ - -73.352989, - 45.543812 - ], - [ - -73.353002, - 45.543947 - ], - [ - -73.353002, - 45.543974 - ], - [ - -73.353015, - 45.54401 - ], - [ - -73.353053, - 45.544064 - ], - [ - -73.353091, - 45.544109 - ], - [ - -73.353129, - 45.544145 - ], - [ - -73.353193, - 45.54419 - ], - [ - -73.353257, - 45.544235 - ], - [ - -73.353322, - 45.544281 - ], - [ - -73.353647, - 45.54451 - ], - [ - -73.353743, - 45.544578 - ], - [ - -73.35442, - 45.545064 - ], - [ - -73.35451, - 45.545136 - ], - [ - -73.354702, - 45.545272 - ], - [ - -73.354791, - 45.545326 - ], - [ - -73.354983, - 45.545425 - ], - [ - -73.355138, - 45.54549 - ], - [ - -73.355239, - 45.545533 - ], - [ - -73.355367, - 45.5454 - ], - [ - -73.35574, - 45.545012 - ], - [ - -73.355855, - 45.544895 - ], - [ - -73.355953, - 45.544789 - ], - [ - -73.356039, - 45.544697 - ], - [ - -73.356571, - 45.544149 - ], - [ - -73.356741, - 45.543942 - ], - [ - -73.356831, - 45.543826 - ], - [ - -73.356895, - 45.543736 - ], - [ - -73.356967, - 45.543641 - ], - [ - -73.357007, - 45.543556 - ], - [ - -73.357063, - 45.543466 - ], - [ - -73.357103, - 45.54338 - ], - [ - -73.357138, - 45.543286 - ], - [ - -73.357183, - 45.543183 - ], - [ - -73.357218, - 45.54307 - ], - [ - -73.357233, - 45.542994 - ], - [ - -73.357256, - 45.542917 - ], - [ - -73.357282, - 45.542827 - ], - [ - -73.357295, - 45.542728 - ], - [ - -73.357308, - 45.542647 - ], - [ - -73.357308, - 45.542557 - ], - [ - -73.357308, - 45.54244 - ], - [ - -73.357309, - 45.542348 - ], - [ - -73.357309, - 45.542332 - ], - [ - -73.357309, - 45.542233 - ], - [ - -73.357285, - 45.541622 - ], - [ - -73.357285, - 45.541541 - ], - [ - -73.357248, - 45.540956 - ], - [ - -73.357244, - 45.540879 - ], - [ - -73.357239, - 45.540776 - ], - [ - -73.357226, - 45.540389 - ], - [ - -73.357098, - 45.537903 - ], - [ - -73.35709, - 45.537752 - ], - [ - -73.356949, - 45.537752 - ], - [ - -73.356835, - 45.537752 - ], - [ - -73.356808, - 45.537752 - ], - [ - -73.35659, - 45.537733 - ], - [ - -73.356488, - 45.537706 - ], - [ - -73.356386, - 45.537688 - ], - [ - -73.356194, - 45.537616 - ], - [ - -73.356028, - 45.537517 - ], - [ - -73.35581, - 45.537381 - ], - [ - -73.355606, - 45.537228 - ], - [ - -73.354978, - 45.536786 - ], - [ - -73.354672, - 45.536579 - ], - [ - -73.35439, - 45.536363 - ], - [ - -73.354308, - 45.536305 - ], - [ - -73.354237, - 45.536255 - ], - [ - -73.354085, - 45.536133 - ], - [ - -73.353353, - 45.535601 - ], - [ - -73.352894, - 45.535275 - ], - [ - -73.352814, - 45.535218 - ], - [ - -73.352683, - 45.535132 - ], - [ - -73.352431, - 45.534966 - ], - [ - -73.352156, - 45.534794 - ], - [ - -73.351899, - 45.534632 - ], - [ - -73.351631, - 45.534461 - ], - [ - -73.351414, - 45.534325 - ], - [ - -73.351196, - 45.534181 - ], - [ - -73.350966, - 45.53401 - ], - [ - -73.350867, - 45.533941 - ], - [ - -73.350778, - 45.533879 - ], - [ - -73.350008, - 45.533298 - ], - [ - -73.348887, - 45.532482 - ], - [ - -73.348768, - 45.532396 - ], - [ - -73.34726, - 45.531272 - ], - [ - -73.346954, - 45.531044 - ], - [ - -73.345569, - 45.530044 - ], - [ - -73.345369, - 45.529899 - ], - [ - -73.345287, - 45.529841 - ], - [ - -73.344605, - 45.529334 - ], - [ - -73.343849, - 45.528772 - ], - [ - -73.343655, - 45.528635 - ], - [ - -73.343543, - 45.528556 - ], - [ - -73.343198, - 45.528321 - ], - [ - -73.342827, - 45.528033 - ], - [ - -73.342521, - 45.52779 - ], - [ - -73.342252, - 45.527555 - ], - [ - -73.342176, - 45.527484 - ], - [ - -73.342074, - 45.527389 - ], - [ - -73.341994, - 45.527303 - ], - [ - -73.34183, - 45.527172 - ], - [ - -73.341462, - 45.526915 - ], - [ - -73.341034, - 45.526636 - ], - [ - -73.340738, - 45.526442 - ], - [ - -73.340568, - 45.526316 - ], - [ - -73.340377, - 45.526198 - ], - [ - -73.340005, - 45.525968 - ], - [ - -73.339713, - 45.525764 - ], - [ - -73.339197, - 45.525405 - ], - [ - -73.338542, - 45.524956 - ], - [ - -73.338368, - 45.524837 - ], - [ - -73.338707, - 45.524638 - ], - [ - -73.338727, - 45.524626 - ], - [ - -73.339575, - 45.524088 - ], - [ - -73.340043, - 45.523791 - ], - [ - -73.340102, - 45.523754 - ], - [ - -73.340257, - 45.523692 - ], - [ - -73.340357, - 45.523652 - ], - [ - -73.340425, - 45.523602 - ], - [ - -73.341502, - 45.522865 - ], - [ - -73.341612, - 45.52279 - ], - [ - -73.342452, - 45.522224 - ], - [ - -73.343122, - 45.521777 - ], - [ - -73.343254, - 45.52169 - ], - [ - -73.343631, - 45.521425 - ], - [ - -73.343894, - 45.521227 - ], - [ - -73.344046, - 45.521061 - ], - [ - -73.344147, - 45.520913 - ], - [ - -73.344274, - 45.520719 - ], - [ - -73.344347, - 45.520476 - ], - [ - -73.344358, - 45.520296 - ], - [ - -73.344344, - 45.52004 - ], - [ - -73.344313, - 45.519763 - ], - [ - -73.344273, - 45.519406 - ], - [ - -73.344239, - 45.519032 - ], - [ - -73.344288, - 45.518834 - ], - [ - -73.344323, - 45.518735 - ], - [ - -73.344394, - 45.518668 - ], - [ - -73.344511, - 45.5186 - ], - [ - -73.344597, - 45.51856 - ], - [ - -73.344748, - 45.518511 - ], - [ - -73.344879, - 45.518512 - ], - [ - -73.345381, - 45.518517 - ], - [ - -73.346191, - 45.518524 - ], - [ - -73.34645, - 45.518527 - ], - [ - -73.346424, - 45.518967 - ], - [ - -73.346397, - 45.519174 - ], - [ - -73.346306, - 45.519804 - ], - [ - -73.346222, - 45.520303 - ], - [ - -73.346175, - 45.520518 - ], - [ - -73.346163, - 45.520569 - ], - [ - -73.346137, - 45.520677 - ], - [ - -73.346124, - 45.520785 - ], - [ - -73.346124, - 45.520857 - ], - [ - -73.346124, - 45.520929 - ], - [ - -73.346136, - 45.521001 - ], - [ - -73.346149, - 45.521073 - ], - [ - -73.346184, - 45.521289 - ], - [ - -73.346225, - 45.521478 - ], - [ - -73.346237, - 45.521631 - ], - [ - -73.346262, - 45.52182 - ], - [ - -73.346275, - 45.522009 - ], - [ - -73.346287, - 45.522153 - ], - [ - -73.346288, - 45.52231 - ], - [ - -73.346292, - 45.522585 - ], - [ - -73.346291, - 45.522845 - ], - [ - -73.346291, - 45.52285 - ], - [ - -73.346291, - 45.523053 - ], - [ - -73.346648, - 45.523103 - ], - [ - -73.346744, - 45.523116 - ], - [ - -73.347434, - 45.52321 - ], - [ - -73.347547, - 45.523225 - ], - [ - -73.347705, - 45.523243 - ], - [ - -73.347832, - 45.523257 - ], - [ - -73.348012, - 45.523289 - ], - [ - -73.348302, - 45.523361 - ], - [ - -73.348489, - 45.52342 - ], - [ - -73.348701, - 45.523497 - ], - [ - -73.348978, - 45.523614 - ], - [ - -73.349337, - 45.523831 - ], - [ - -73.349498, - 45.523938 - ], - [ - -73.349594, - 45.524002 - ], - [ - -73.349891, - 45.524214 - ], - [ - -73.350822, - 45.524876 - ], - [ - -73.351402, - 45.525286 - ], - [ - -73.351479, - 45.52535 - ], - [ - -73.3516, - 45.525453 - ], - [ - -73.351697, - 45.525557 - ], - [ - -73.351798, - 45.525714 - ], - [ - -73.351819, - 45.525754 - ], - [ - -73.351836, - 45.525786 - ], - [ - -73.351851, - 45.525827 - ], - [ - -73.351917, - 45.525931 - ], - [ - -73.352296, - 45.525836 - ], - [ - -73.352978, - 45.525664 - ], - [ - -73.353201, - 45.525608 - ], - [ - -73.353335, - 45.52555 - ], - [ - -73.354678, - 45.524634 - ], - [ - -73.355436, - 45.524122 - ], - [ - -73.355639, - 45.523981 - ], - [ - -73.355938, - 45.523772 - ], - [ - -73.356444, - 45.523445 - ], - [ - -73.356558, - 45.523372 - ], - [ - -73.358301, - 45.522285 - ], - [ - -73.358458, - 45.522186 - ], - [ - -73.359098, - 45.521773 - ], - [ - -73.359427, - 45.521571 - ], - [ - -73.359711, - 45.521432 - ], - [ - -73.359916, - 45.521342 - ], - [ - -73.360386, - 45.521186 - ], - [ - -73.360628, - 45.521128 - ], - [ - -73.360705, - 45.521109 - ], - [ - -73.360944, - 45.521085 - ], - [ - -73.361004, - 45.521078 - ], - [ - -73.361107, - 45.521068 - ], - [ - -73.361272, - 45.521052 - ], - [ - -73.36142, - 45.521039 - ], - [ - -73.361469, - 45.521035 - ], - [ - -73.362871, - 45.520914 - ], - [ - -73.365183, - 45.520725 - ], - [ - -73.36542, - 45.520706 - ], - [ - -73.366558, - 45.520607 - ], - [ - -73.366807, - 45.520586 - ], - [ - -73.367999, - 45.520506 - ], - [ - -73.368083, - 45.520501 - ], - [ - -73.368198, - 45.520488 - ], - [ - -73.368646, - 45.520466 - ], - [ - -73.369225, - 45.520454 - ], - [ - -73.370151, - 45.520446 - ], - [ - -73.371725, - 45.520433 - ], - [ - -73.373172, - 45.520409 - ], - [ - -73.373182, - 45.520409 - ], - [ - -73.37501, - 45.520379 - ], - [ - -73.375959, - 45.520362 - ], - [ - -73.377348, - 45.520341 - ], - [ - -73.377346, - 45.52022 - ], - [ - -73.37734, - 45.519909 - ], - [ - -73.377337, - 45.519729 - ], - [ - -73.377334, - 45.519653 - ], - [ - -73.377314, - 45.519063 - ], - [ - -73.377294, - 45.518433 - ], - [ - -73.377275, - 45.517673 - ], - [ - -73.377263, - 45.517007 - ], - [ - -73.377264, - 45.516616 - ], - [ - -73.377268, - 45.516238 - ], - [ - -73.377292, - 45.515896 - ], - [ - -73.377367, - 45.515599 - ], - [ - -73.377447, - 45.515419 - ], - [ - -73.377521, - 45.51528 - ], - [ - -73.377989, - 45.514709 - ], - [ - -73.378524, - 45.514309 - ], - [ - -73.379356, - 45.513825 - ], - [ - -73.379489, - 45.513748 - ], - [ - -73.379314, - 45.513594 - ], - [ - -73.379268, - 45.513559 - ], - [ - -73.379209, - 45.513513 - ], - [ - -73.379017, - 45.513356 - ], - [ - -73.378717, - 45.513117 - ], - [ - -73.378528, - 45.512964 - ], - [ - -73.378231, - 45.512729 - ], - [ - -73.378014, - 45.512549 - ], - [ - -73.377889, - 45.512446 - ], - [ - -73.377714, - 45.512315 - ], - [ - -73.377625, - 45.512257 - ], - [ - -73.377534, - 45.512198 - ], - [ - -73.377452, - 45.512144 - ], - [ - -73.377349, - 45.512085 - ], - [ - -73.377295, - 45.512063 - ], - [ - -73.377229, - 45.512053 - ], - [ - -73.375817, - 45.512144 - ], - [ - -73.375466, - 45.512202 - ], - [ - -73.37524, - 45.512313 - ], - [ - -73.375077, - 45.512319 - ], - [ - -73.374875, - 45.512316 - ], - [ - -73.374557, - 45.512323 - ], - [ - -73.374466, - 45.51242 - ], - [ - -73.374474, - 45.512564 - ], - [ - -73.374465, - 45.512782 - ] - ] - }, - "id": 196, - "properties": { - "id": "880e2073-70a4-4225-93b2-54240da66995", - "data": { - "gtfs": { - "shape_id": "93_1_A" - }, - "segments": [ - { - "distanceMeters": 330, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 389, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 368, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 113, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 806, - "travelTimeSeconds": 141 - }, - { - "distanceMeters": 708, - "travelTimeSeconds": 124 - }, - { - "distanceMeters": 540, - "travelTimeSeconds": 95 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9480, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3415.483195449818, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.52, - "travelTimeWithoutDwellTimesSeconds": 1260, - "operatingTimeWithLayoverTimeSeconds": 1440, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1260, - "operatingSpeedWithLayoverMetersPerSecond": 6.58, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.52 - }, - "mode": "bus", - "name": "Gare St-Bruno", - "color": "#A32638", - "nodes": [ - "57edc028-e6a8-4a6f-9b5c-85f95b27233f", - "25f62569-60d2-41e7-8610-c3538fe230bf", - "83499710-5b26-4bfd-b649-c008d0b7fde7", - "a09525fc-24fb-44bc-87d9-67be178e23ec", - "b46cca05-fe3c-4c2a-ae1b-28c207027915", - "cda3afce-794c-43b8-9347-1b384d64a116", - "ce2fb937-41be-4394-bf3f-6bb0d8d6413a", - "066272d0-7f9d-4ef7-82d0-25ad68986874", - "cecd1a42-805e-4b1f-971e-5486564ef354", - "ab32c22a-056a-40bc-bb99-58c049d50498", - "d4b97f89-0d15-4037-9293-a46292a3b826", - "a5fa3371-93c4-47f9-8972-32a538fcab1f", - "c144cdde-b47b-40cf-b640-e6399771f99b", - "a34242f1-b39e-4075-8b98-da7cc20aa985", - "16815d0a-9758-4c90-a572-66e1110e9895", - "0dae6aad-c792-48fd-a50b-e498ec730741", - "4451201f-23d0-4b66-a2ac-a72029810b3b", - "2c952684-5d97-4238-ae18-51cba6c9775e", - "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", - "60ea8a19-f195-4f9b-b60e-122a63bd86bd", - "9f67f31c-9015-4b9c-b5eb-210a53be617b", - "106469e3-38d2-4015-b627-c243c3d7f8cd", - "5c28c22e-79f1-4a2c-9171-d9cc96f1af7d", - "1903cbec-a898-4d1e-aa47-0930a7af3bd5", - "d6901f53-cd66-4086-8fc5-2643b6cfcce0", - "9f66e075-701a-442d-9c89-3fee641e6ceb", - "515b8790-77c6-4a3b-8347-a621b1167870", - "72167429-f4d5-4eda-870a-b71c9c47ec5e", - "57dc3582-89e5-4ef0-a1fc-ba8d7e551866", - "68d27bd7-271c-4390-8856-6b37460af70f", - "e7e2dd97-2e08-4a19-b024-ea6b319bdef6", - "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", - "8a70da04-d6f7-409c-846d-927fd9f23d96", - "36c85e4a-3286-45d4-878d-41eda74eb078", - "4087f6e1-342c-4090-94e9-c90c43ab2560", - "fc3ccf33-4026-4d4e-b0bc-03451e1ebb2d", - "d22226db-b31b-4480-a3d1-49a68d17d471", - "0bb0f4a3-6434-4d59-afee-258bc8cd81e4" - ], - "stops": [], - "line_id": "d3787513-77ed-4bb1-8e7a-a683370a562f", - "segments": [ - 0, - 4, - 12, - 26, - 33, - 38, - 58, - 63, - 67, - 82, - 86, - 96, - 99, - 101, - 103, - 114, - 122, - 126, - 133, - 136, - 139, - 149, - 160, - 166, - 182, - 187, - 197, - 206, - 211, - 218, - 220, - 229, - 236, - 238, - 240, - 255, - 268 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 196, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.374465, - 45.512782 - ], - [ - -73.374461, - 45.51287 - ], - [ - -73.374479, - 45.512971 - ], - [ - -73.374606, - 45.513029 - ], - [ - -73.374754, - 45.513071 - ], - [ - -73.374849, - 45.513101 - ], - [ - -73.374989, - 45.513126 - ], - [ - -73.375048, - 45.513031 - ], - [ - -73.37514, - 45.512883 - ], - [ - -73.375182, - 45.512794 - ], - [ - -73.375195, - 45.5127 - ], - [ - -73.375205, - 45.51259 - ], - [ - -73.375206, - 45.51251 - ], - [ - -73.375219, - 45.512423 - ], - [ - -73.37524, - 45.512313 - ], - [ - -73.375466, - 45.512202 - ], - [ - -73.375817, - 45.512144 - ], - [ - -73.377229, - 45.512053 - ], - [ - -73.377295, - 45.512063 - ], - [ - -73.377349, - 45.512085 - ], - [ - -73.377452, - 45.512144 - ], - [ - -73.377534, - 45.512198 - ], - [ - -73.377625, - 45.512257 - ], - [ - -73.377714, - 45.512315 - ], - [ - -73.377889, - 45.512446 - ], - [ - -73.378014, - 45.512549 - ], - [ - -73.378231, - 45.512729 - ], - [ - -73.378528, - 45.512964 - ], - [ - -73.378717, - 45.513117 - ], - [ - -73.379017, - 45.513356 - ], - [ - -73.379209, - 45.513513 - ], - [ - -73.379314, - 45.513594 - ], - [ - -73.379489, - 45.513748 - ], - [ - -73.379164, - 45.513936 - ], - [ - -73.379059, - 45.513998 - ], - [ - -73.378524, - 45.514309 - ], - [ - -73.377989, - 45.514709 - ], - [ - -73.377521, - 45.51528 - ], - [ - -73.377447, - 45.515419 - ], - [ - -73.377367, - 45.515599 - ], - [ - -73.377292, - 45.515896 - ], - [ - -73.377268, - 45.516238 - ], - [ - -73.377264, - 45.516616 - ], - [ - -73.377263, - 45.517007 - ], - [ - -73.377275, - 45.517673 - ], - [ - -73.377294, - 45.518433 - ], - [ - -73.377314, - 45.519063 - ], - [ - -73.377337, - 45.519729 - ], - [ - -73.377342, - 45.520004 - ], - [ - -73.377346, - 45.52022 - ], - [ - -73.37694, - 45.520228 - ], - [ - -73.375129, - 45.520264 - ], - [ - -73.375006, - 45.520267 - ], - [ - -73.371729, - 45.520317 - ], - [ - -73.370147, - 45.520338 - ], - [ - -73.36922, - 45.52035 - ], - [ - -73.368621, - 45.520354 - ], - [ - -73.368553, - 45.520357 - ], - [ - -73.368553, - 45.520357 - ], - [ - -73.368191, - 45.520371 - ], - [ - -73.367087, - 45.520466 - ], - [ - -73.366798, - 45.520491 - ], - [ - -73.365403, - 45.520602 - ], - [ - -73.362854, - 45.520815 - ], - [ - -73.361473, - 45.520938 - ], - [ - -73.361257, - 45.520957 - ], - [ - -73.360668, - 45.521019 - ], - [ - -73.360333, - 45.521091 - ], - [ - -73.359836, - 45.521252 - ], - [ - -73.359749, - 45.52129 - ], - [ - -73.359628, - 45.521342 - ], - [ - -73.359335, - 45.52149 - ], - [ - -73.358998, - 45.521697 - ], - [ - -73.35859, - 45.521962 - ], - [ - -73.358355, - 45.522114 - ], - [ - -73.356475, - 45.523309 - ], - [ - -73.356465, - 45.523315 - ], - [ - -73.35614, - 45.523515 - ], - [ - -73.355859, - 45.523708 - ], - [ - -73.355604, - 45.523861 - ], - [ - -73.355209, - 45.524131 - ], - [ - -73.354949, - 45.52431 - ], - [ - -73.35467, - 45.524494 - ], - [ - -73.354334, - 45.524723 - ], - [ - -73.354127, - 45.524863 - ], - [ - -73.353512, - 45.525289 - ], - [ - -73.353243, - 45.525465 - ], - [ - -73.353237, - 45.525469 - ], - [ - -73.353091, - 45.525518 - ], - [ - -73.351851, - 45.525827 - ], - [ - -73.351836, - 45.525786 - ], - [ - -73.351798, - 45.525714 - ], - [ - -73.351772, - 45.525675 - ], - [ - -73.351697, - 45.525557 - ], - [ - -73.3516, - 45.525453 - ], - [ - -73.351528, - 45.525392 - ], - [ - -73.351479, - 45.52535 - ], - [ - -73.351402, - 45.525286 - ], - [ - -73.350822, - 45.524876 - ], - [ - -73.349891, - 45.524214 - ], - [ - -73.349649, - 45.524041 - ], - [ - -73.349594, - 45.524002 - ], - [ - -73.349337, - 45.523831 - ], - [ - -73.348978, - 45.523614 - ], - [ - -73.348701, - 45.523497 - ], - [ - -73.348489, - 45.52342 - ], - [ - -73.348302, - 45.523361 - ], - [ - -73.348012, - 45.523289 - ], - [ - -73.347832, - 45.523257 - ], - [ - -73.347705, - 45.523243 - ], - [ - -73.34763, - 45.523235 - ], - [ - -73.347547, - 45.523225 - ], - [ - -73.346648, - 45.523103 - ], - [ - -73.346396, - 45.523067 - ], - [ - -73.346291, - 45.523053 - ], - [ - -73.346291, - 45.52285 - ], - [ - -73.346292, - 45.522585 - ], - [ - -73.346289, - 45.522407 - ], - [ - -73.346288, - 45.52231 - ], - [ - -73.346287, - 45.522153 - ], - [ - -73.346275, - 45.522009 - ], - [ - -73.346262, - 45.52182 - ], - [ - -73.346237, - 45.521631 - ], - [ - -73.346225, - 45.521478 - ], - [ - -73.346184, - 45.521289 - ], - [ - -73.346149, - 45.521073 - ], - [ - -73.346136, - 45.521001 - ], - [ - -73.346124, - 45.520929 - ], - [ - -73.346124, - 45.520857 - ], - [ - -73.346124, - 45.520785 - ], - [ - -73.346137, - 45.520677 - ], - [ - -73.346163, - 45.520569 - ], - [ - -73.346189, - 45.520451 - ], - [ - -73.346222, - 45.520303 - ], - [ - -73.346306, - 45.519804 - ], - [ - -73.346397, - 45.519174 - ], - [ - -73.346424, - 45.518967 - ], - [ - -73.346443, - 45.518655 - ], - [ - -73.34645, - 45.518527 - ], - [ - -73.346008, - 45.518523 - ], - [ - -73.345381, - 45.518517 - ], - [ - -73.344748, - 45.518511 - ], - [ - -73.344184, - 45.518506 - ], - [ - -73.344019, - 45.518505 - ], - [ - -73.344103, - 45.519059 - ], - [ - -73.344125, - 45.51925 - ], - [ - -73.344134, - 45.519324 - ], - [ - -73.34415, - 45.519419 - ], - [ - -73.344154, - 45.519453 - ], - [ - -73.344217, - 45.520058 - ], - [ - -73.344223, - 45.520328 - ], - [ - -73.344186, - 45.520584 - ], - [ - -73.344126, - 45.520715 - ], - [ - -73.344046, - 45.520881 - ], - [ - -73.343898, - 45.52107 - ], - [ - -73.343794, - 45.521169 - ], - [ - -73.343671, - 45.521281 - ], - [ - -73.343545, - 45.521362 - ], - [ - -73.343232, - 45.521573 - ], - [ - -73.34322, - 45.521581 - ], - [ - -73.34316, - 45.521627 - ], - [ - -73.342373, - 45.522165 - ], - [ - -73.341588, - 45.522687 - ], - [ - -73.341528, - 45.522727 - ], - [ - -73.340605, - 45.523357 - ], - [ - -73.340352, - 45.52353 - ], - [ - -73.340272, - 45.523584 - ], - [ - -73.340102, - 45.523754 - ], - [ - -73.340043, - 45.523791 - ], - [ - -73.339575, - 45.524088 - ], - [ - -73.338727, - 45.524626 - ], - [ - -73.338511, - 45.524753 - ], - [ - -73.338368, - 45.524837 - ], - [ - -73.338935, - 45.525225 - ], - [ - -73.339197, - 45.525405 - ], - [ - -73.339713, - 45.525764 - ], - [ - -73.339843, - 45.525855 - ], - [ - -73.340005, - 45.525968 - ], - [ - -73.340568, - 45.526316 - ], - [ - -73.340738, - 45.526442 - ], - [ - -73.341034, - 45.526636 - ], - [ - -73.341462, - 45.526915 - ], - [ - -73.34183, - 45.527172 - ], - [ - -73.341962, - 45.527278 - ], - [ - -73.341994, - 45.527303 - ], - [ - -73.342074, - 45.527389 - ], - [ - -73.342252, - 45.527555 - ], - [ - -73.342521, - 45.52779 - ], - [ - -73.342827, - 45.528033 - ], - [ - -73.343198, - 45.528321 - ], - [ - -73.343543, - 45.528556 - ], - [ - -73.343655, - 45.528635 - ], - [ - -73.343849, - 45.528772 - ], - [ - -73.344605, - 45.529334 - ], - [ - -73.345191, - 45.529769 - ], - [ - -73.345287, - 45.529841 - ], - [ - -73.345369, - 45.529899 - ], - [ - -73.346954, - 45.531044 - ], - [ - -73.347248, - 45.531263 - ], - [ - -73.348688, - 45.532336 - ], - [ - -73.348768, - 45.532396 - ], - [ - -73.350008, - 45.533298 - ], - [ - -73.350737, - 45.533848 - ], - [ - -73.350778, - 45.533879 - ], - [ - -73.350966, - 45.53401 - ], - [ - -73.351196, - 45.534181 - ], - [ - -73.351414, - 45.534325 - ], - [ - -73.351631, - 45.534461 - ], - [ - -73.351899, - 45.534632 - ], - [ - -73.352156, - 45.534794 - ], - [ - -73.352431, - 45.534966 - ], - [ - -73.352519, - 45.535024 - ], - [ - -73.352683, - 45.535132 - ], - [ - -73.352814, - 45.535218 - ], - [ - -73.353353, - 45.535601 - ], - [ - -73.353892, - 45.535993 - ], - [ - -73.354085, - 45.536133 - ], - [ - -73.354237, - 45.536255 - ], - [ - -73.35439, - 45.536363 - ], - [ - -73.354672, - 45.536579 - ], - [ - -73.354978, - 45.536786 - ], - [ - -73.355606, - 45.537228 - ], - [ - -73.35581, - 45.537381 - ], - [ - -73.356028, - 45.537517 - ], - [ - -73.356194, - 45.537616 - ], - [ - -73.356386, - 45.537688 - ], - [ - -73.356488, - 45.537706 - ], - [ - -73.35659, - 45.537733 - ], - [ - -73.356808, - 45.537752 - ], - [ - -73.356949, - 45.537752 - ], - [ - -73.356953, - 45.537752 - ], - [ - -73.35709, - 45.537752 - ], - [ - -73.357114, - 45.538216 - ], - [ - -73.357226, - 45.540389 - ], - [ - -73.357239, - 45.540776 - ], - [ - -73.357008, - 45.540789 - ], - [ - -73.356536, - 45.540819 - ], - [ - -73.356528, - 45.54082 - ], - [ - -73.35635, - 45.540824 - ], - [ - -73.352636, - 45.540909 - ], - [ - -73.352638, - 45.54104 - ], - [ - -73.352652, - 45.541271 - ], - [ - -73.352657, - 45.541362 - ], - [ - -73.352663, - 45.541454 - ], - [ - -73.352675, - 45.541634 - ], - [ - -73.352688, - 45.54167 - ], - [ - -73.3527, - 45.541715 - ], - [ - -73.352878, - 45.542192 - ], - [ - -73.352929, - 45.542336 - ], - [ - -73.352942, - 45.542426 - ], - [ - -73.352942, - 45.54247 - ], - [ - -73.352941, - 45.542552 - ], - [ - -73.352987, - 45.543596 - ], - [ - -73.35299, - 45.543668 - ], - [ - -73.352989, - 45.543812 - ], - [ - -73.353002, - 45.543947 - ], - [ - -73.353002, - 45.543974 - ], - [ - -73.353015, - 45.54401 - ], - [ - -73.353053, - 45.544064 - ], - [ - -73.353091, - 45.544109 - ], - [ - -73.353129, - 45.544145 - ], - [ - -73.353193, - 45.54419 - ], - [ - -73.353257, - 45.544235 - ], - [ - -73.353322, - 45.544281 - ], - [ - -73.353652, - 45.544514 - ], - [ - -73.353743, - 45.544578 - ], - [ - -73.35442, - 45.545064 - ], - [ - -73.35451, - 45.545136 - ], - [ - -73.354702, - 45.545272 - ], - [ - -73.354791, - 45.545326 - ], - [ - -73.354983, - 45.545425 - ], - [ - -73.355144, - 45.545493 - ], - [ - -73.355239, - 45.545533 - ], - [ - -73.355385, - 45.545381 - ], - [ - -73.35574, - 45.545012 - ], - [ - -73.355855, - 45.544895 - ], - [ - -73.355957, - 45.544785 - ], - [ - -73.356039, - 45.544697 - ], - [ - -73.356571, - 45.544149 - ], - [ - -73.356741, - 45.543942 - ], - [ - -73.356831, - 45.543826 - ], - [ - -73.356895, - 45.543736 - ], - [ - -73.356967, - 45.543641 - ], - [ - -73.357007, - 45.543556 - ], - [ - -73.357063, - 45.543466 - ], - [ - -73.357103, - 45.54338 - ], - [ - -73.357138, - 45.543286 - ], - [ - -73.357183, - 45.543183 - ], - [ - -73.357218, - 45.54307 - ], - [ - -73.357233, - 45.542994 - ], - [ - -73.357256, - 45.542917 - ], - [ - -73.357282, - 45.542827 - ], - [ - -73.357295, - 45.542728 - ], - [ - -73.357308, - 45.542647 - ], - [ - -73.357308, - 45.542557 - ], - [ - -73.357308, - 45.54244 - ], - [ - -73.357309, - 45.542343 - ], - [ - -73.357309, - 45.542332 - ], - [ - -73.357309, - 45.542233 - ], - [ - -73.357285, - 45.541622 - ], - [ - -73.357285, - 45.541541 - ], - [ - -73.357248, - 45.540943 - ] - ] - }, - "id": 197, - "properties": { - "id": "eb0a011f-3686-40a1-8d65-d7ecc19b4bfa", - "data": { - "gtfs": { - "shape_id": "93_1_R" - }, - "segments": [ - { - "distanceMeters": 622, - "travelTimeSeconds": 91 - }, - { - "distanceMeters": 717, - "travelTimeSeconds": 105 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 513, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 347, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 310, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 375, - "travelTimeSeconds": 116 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 317, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 417, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 330, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 14 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9592, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3400.643487499317, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.27, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 6.39, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.27 - }, - "mode": "bus", - "name": "Yvonne-Duckett", - "color": "#A32638", - "nodes": [ - "0bb0f4a3-6434-4d59-afee-258bc8cd81e4", - "d22226db-b31b-4480-a3d1-49a68d17d471", - "fc3ccf33-4026-4d4e-b0bc-03451e1ebb2d", - "4fd9bafc-afe7-46d0-b43c-1a1438691ab1", - "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", - "36c85e4a-3286-45d4-878d-41eda74eb078", - "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", - "e7e2dd97-2e08-4a19-b024-ea6b319bdef6", - "68d27bd7-271c-4390-8856-6b37460af70f", - "57dc3582-89e5-4ef0-a1fc-ba8d7e551866", - "72167429-f4d5-4eda-870a-b71c9c47ec5e", - "515b8790-77c6-4a3b-8347-a621b1167870", - "9f66e075-701a-442d-9c89-3fee641e6ceb", - "d6901f53-cd66-4086-8fc5-2643b6cfcce0", - "1903cbec-a898-4d1e-aa47-0930a7af3bd5", - "5c28c22e-79f1-4a2c-9171-d9cc96f1af7d", - "7ac3961a-0b0e-47c8-a264-69b6edbbd2b9", - "9f67f31c-9015-4b9c-b5eb-210a53be617b", - "60ea8a19-f195-4f9b-b60e-122a63bd86bd", - "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", - "2c952684-5d97-4238-ae18-51cba6c9775e", - "819e2afa-bfef-47b3-8a41-a55f4c2f9156", - "0dae6aad-c792-48fd-a50b-e498ec730741", - "16815d0a-9758-4c90-a572-66e1110e9895", - "a34242f1-b39e-4075-8b98-da7cc20aa985", - "c144cdde-b47b-40cf-b640-e6399771f99b", - "a5fa3371-93c4-47f9-8972-32a538fcab1f", - "d4b97f89-0d15-4037-9293-a46292a3b826", - "ab32c22a-056a-40bc-bb99-58c049d50498", - "cecd1a42-805e-4b1f-971e-5486564ef354", - "57edc028-e6a8-4a6f-9b5c-85f95b27233f", - "25f62569-60d2-41e7-8610-c3538fe230bf", - "83499710-5b26-4bfd-b649-c008d0b7fde7", - "a09525fc-24fb-44bc-87d9-67be178e23ec", - "b46cca05-fe3c-4c2a-ae1b-28c207027915", - "cda3afce-794c-43b8-9347-1b384d64a116", - "ce2fb937-41be-4394-bf3f-6bb0d8d6413a", - "066272d0-7f9d-4ef7-82d0-25ad68986874" - ], - "stops": [], - "line_id": "d3787513-77ed-4bb1-8e7a-a683370a562f", - "segments": [ - 0, - 34, - 48, - 51, - 58, - 60, - 64, - 73, - 76, - 86, - 95, - 100, - 110, - 113, - 132, - 137, - 148, - 159, - 162, - 164, - 171, - 176, - 183, - 194, - 198, - 199, - 202, - 211, - 215, - 230, - 238, - 241, - 250, - 264, - 271, - 276, - 296 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 197, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.520811, - 45.523427 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522259, - 45.521632 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519254, - 45.520728 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514996, - 45.519327 - ], - [ - -73.514793, - 45.519263 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509849, - 45.51557 - ], - [ - -73.509164, - 45.515381 - ], - [ - -73.508444, - 45.51521 - ], - [ - -73.506204, - 45.514496 - ], - [ - -73.503449, - 45.513618 - ], - [ - -73.500803, - 45.512776 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498209, - 45.511889 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.494311, - 45.510459 - ], - [ - -73.494196, - 45.510403 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488913, - 45.504255 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488355, - 45.503066 - ], - [ - -73.4883, - 45.502913 - ], - [ - -73.488219, - 45.502531 - ], - [ - -73.488223, - 45.502405 - ], - [ - -73.488245, - 45.502293 - ], - [ - -73.488296, - 45.502185 - ], - [ - -73.488375, - 45.502086 - ], - [ - -73.488484, - 45.502 - ], - [ - -73.488505, - 45.501989 - ], - [ - -73.488609, - 45.501937 - ], - [ - -73.48874, - 45.501892 - ], - [ - -73.48888, - 45.501865 - ], - [ - -73.489028, - 45.501856 - ], - [ - -73.489181, - 45.501865 - ], - [ - -73.489324, - 45.501892 - ], - [ - -73.489461, - 45.501933 - ], - [ - -73.489585, - 45.501991 - ], - [ - -73.489692, - 45.502068 - ], - [ - -73.489786, - 45.502153 - ], - [ - -73.489942, - 45.502342 - ], - [ - -73.490006, - 45.50245 - ], - [ - -73.490054, - 45.502558 - ], - [ - -73.490086, - 45.502666 - ], - [ - -73.490092, - 45.502779 - ], - [ - -73.490064, - 45.502891 - ], - [ - -73.490004, - 45.502995 - ], - [ - -73.489917, - 45.503094 - ], - [ - -73.489808, - 45.503175 - ], - [ - -73.489675, - 45.503242 - ], - [ - -73.489524, - 45.503287 - ], - [ - -73.489359, - 45.50331 - ], - [ - -73.489186, - 45.503323 - ], - [ - -73.488817, - 45.503318 - ], - [ - -73.487515, - 45.503242 - ], - [ - -73.486872, - 45.503273 - ], - [ - -73.486502, - 45.503323 - ], - [ - -73.486146, - 45.503381 - ], - [ - -73.484224, - 45.503808 - ], - [ - -73.483407, - 45.503957 - ], - [ - -73.482922, - 45.504029 - ], - [ - -73.482166, - 45.504114 - ], - [ - -73.481092, - 45.504204 - ], - [ - -73.4802, - 45.504262 - ], - [ - -73.47719, - 45.50446 - ], - [ - -73.470642, - 45.504895 - ], - [ - -73.464792, - 45.505284 - ], - [ - -73.464234, - 45.505325 - ], - [ - -73.463301, - 45.505392 - ], - [ - -73.461784, - 45.505526 - ], - [ - -73.460686, - 45.505647 - ], - [ - -73.45799, - 45.505984 - ], - [ - -73.456776, - 45.506127 - ], - [ - -73.455209, - 45.506284 - ], - [ - -73.454382, - 45.506356 - ], - [ - -73.452547, - 45.506481 - ], - [ - -73.450186, - 45.506642 - ], - [ - -73.439577, - 45.507343 - ], - [ - -73.439057, - 45.507379 - ], - [ - -73.438071, - 45.507414 - ], - [ - -73.437444, - 45.507428 - ], - [ - -73.436265, - 45.507427 - ], - [ - -73.435664, - 45.507418 - ], - [ - -73.43478, - 45.507413 - ], - [ - -73.433757, - 45.507439 - ], - [ - -73.432476, - 45.507501 - ], - [ - -73.432462, - 45.507502 - ], - [ - -73.430857, - 45.507609 - ], - [ - -73.43012, - 45.507658 - ], - [ - -73.43011, - 45.507658 - ], - [ - -73.429925, - 45.50767 - ], - [ - -73.429316, - 45.507711 - ], - [ - -73.429246, - 45.50772 - ], - [ - -73.427401, - 45.507872 - ], - [ - -73.425651, - 45.508046 - ], - [ - -73.425331, - 45.508082 - ], - [ - -73.423669, - 45.508256 - ], - [ - -73.421559, - 45.508471 - ], - [ - -73.420178, - 45.508555 - ], - [ - -73.418703, - 45.508644 - ], - [ - -73.414755, - 45.508904 - ], - [ - -73.40603, - 45.509467 - ], - [ - -73.399904, - 45.509875 - ], - [ - -73.3937, - 45.510275 - ], - [ - -73.39233, - 45.510359 - ], - [ - -73.390441, - 45.510452 - ], - [ - -73.389048, - 45.510473 - ], - [ - -73.387433, - 45.510512 - ], - [ - -73.386693, - 45.510538 - ], - [ - -73.384812, - 45.510577 - ], - [ - -73.381979, - 45.510646 - ], - [ - -73.381673, - 45.510645 - ], - [ - -73.381499, - 45.510635 - ], - [ - -73.381378, - 45.510627 - ], - [ - -73.381234, - 45.510609 - ], - [ - -73.3811, - 45.510577 - ], - [ - -73.380858, - 45.510492 - ], - [ - -73.380751, - 45.510437 - ], - [ - -73.380661, - 45.510379 - ], - [ - -73.380586, - 45.510311 - ], - [ - -73.380529, - 45.510239 - ], - [ - -73.380481, - 45.510154 - ], - [ - -73.380447, - 45.510037 - ], - [ - -73.380445, - 45.509992 - ], - [ - -73.380452, - 45.509828 - ], - [ - -73.38047, - 45.509573 - ], - [ - -73.380641, - 45.509218 - ], - [ - -73.380768, - 45.508957 - ], - [ - -73.381389, - 45.507851 - ], - [ - -73.381468, - 45.507752 - ], - [ - -73.381335, - 45.507721 - ], - [ - -73.380701, - 45.507418 - ], - [ - -73.380626, - 45.507481 - ], - [ - -73.380503, - 45.507585 - ], - [ - -73.380399, - 45.507666 - ], - [ - -73.380268, - 45.507759 - ], - [ - -73.380179, - 45.507823 - ], - [ - -73.380145, - 45.507842 - ], - [ - -73.380059, - 45.50789 - ], - [ - -73.379863, - 45.507975 - ], - [ - -73.379724, - 45.508025 - ], - [ - -73.379622, - 45.508047 - ], - [ - -73.379526, - 45.508074 - ], - [ - -73.379404, - 45.508091 - ], - [ - -73.3793, - 45.508105 - ], - [ - -73.379147, - 45.508114 - ], - [ - -73.379102, - 45.508116 - ], - [ - -73.378562, - 45.50814 - ], - [ - -73.378452, - 45.508145 - ], - [ - -73.378119, - 45.508163 - ], - [ - -73.377933, - 45.508153 - ], - [ - -73.377878, - 45.50815 - ], - [ - -73.377779, - 45.508144 - ], - [ - -73.377699, - 45.508135 - ], - [ - -73.377571, - 45.508108 - ], - [ - -73.377442, - 45.508081 - ], - [ - -73.377114, - 45.507982 - ], - [ - -73.376914, - 45.507917 - ], - [ - -73.376868, - 45.507902 - ], - [ - -73.376837, - 45.507891 - ], - [ - -73.376632, - 45.507801 - ], - [ - -73.376512, - 45.507729 - ], - [ - -73.3764, - 45.507639 - ], - [ - -73.376345, - 45.507576 - ], - [ - -73.376298, - 45.507513 - ], - [ - -73.376268, - 45.507459 - ], - [ - -73.376084, - 45.507108 - ], - [ - -73.376046, - 45.507022 - ], - [ - -73.375586, - 45.507112 - ], - [ - -73.37473, - 45.507255 - ], - [ - -73.374599, - 45.507263 - ], - [ - -73.374436, - 45.507272 - ], - [ - -73.372887, - 45.507302 - ], - [ - -73.372631, - 45.507306 - ], - [ - -73.371045, - 45.507325 - ], - [ - -73.370567, - 45.507304 - ], - [ - -73.370219, - 45.507317 - ], - [ - -73.369997, - 45.507299 - ], - [ - -73.369892, - 45.507281 - ], - [ - -73.369796, - 45.507254 - ], - [ - -73.369638, - 45.507181 - ], - [ - -73.369575, - 45.507141 - ], - [ - -73.369469, - 45.507051 - ], - [ - -73.369425, - 45.506956 - ], - [ - -73.369394, - 45.506848 - ], - [ - -73.369382, - 45.506749 - ], - [ - -73.369359, - 45.50557 - ], - [ - -73.36938, - 45.505143 - ], - [ - -73.36941, - 45.504851 - ], - [ - -73.369478, - 45.504423 - ], - [ - -73.369566, - 45.504005 - ], - [ - -73.369731, - 45.503452 - ], - [ - -73.369826, - 45.503177 - ], - [ - -73.369982, - 45.502795 - ], - [ - -73.370146, - 45.502444 - ], - [ - -73.370264, - 45.502238 - ], - [ - -73.370341, - 45.502143 - ], - [ - -73.370433, - 45.502062 - ], - [ - -73.370541, - 45.50199 - ], - [ - -73.370661, - 45.501932 - ], - [ - -73.370793, - 45.501892 - ], - [ - -73.370931, - 45.50186 - ], - [ - -73.371072, - 45.501851 - ], - [ - -73.371214, - 45.501852 - ], - [ - -73.371354, - 45.501874 - ], - [ - -73.37149, - 45.50191 - ], - [ - -73.371538, - 45.501931 - ], - [ - -73.371617, - 45.501965 - ], - [ - -73.371733, - 45.502032 - ], - [ - -73.371832, - 45.502109 - ], - [ - -73.371912, - 45.502199 - ], - [ - -73.371971, - 45.502302 - ], - [ - -73.372008, - 45.502406 - ], - [ - -73.372021, - 45.502523 - ], - [ - -73.372005, - 45.502653 - ], - [ - -73.371975, - 45.502775 - ], - [ - -73.371651, - 45.503566 - ], - [ - -73.371494, - 45.504025 - ], - [ - -73.371425, - 45.504371 - ], - [ - -73.371423, - 45.504641 - ], - [ - -73.371389, - 45.504844 - ], - [ - -73.371334, - 45.505406 - ], - [ - -73.371331, - 45.505789 - ], - [ - -73.37139, - 45.508007 - ], - [ - -73.371445, - 45.50933 - ], - [ - -73.37148, - 45.510657 - ], - [ - -73.371484, - 45.511363 - ], - [ - -73.371519, - 45.512673 - ], - [ - -73.371557, - 45.513397 - ], - [ - -73.371635, - 45.514319 - ], - [ - -73.371686, - 45.515089 - ], - [ - -73.371789, - 45.516871 - ], - [ - -73.371852, - 45.519003 - ], - [ - -73.371811, - 45.520164 - ], - [ - -73.371765, - 45.521019 - ], - [ - -73.371735, - 45.521284 - ], - [ - -73.371686, - 45.521563 - ], - [ - -73.371628, - 45.521757 - ], - [ - -73.371623, - 45.52177 - ], - [ - -73.371546, - 45.52195 - ], - [ - -73.371432, - 45.522139 - ], - [ - -73.371362, - 45.522224 - ], - [ - -73.371283, - 45.522305 - ], - [ - -73.371195, - 45.522377 - ], - [ - -73.371098, - 45.522444 - ], - [ - -73.370993, - 45.522503 - ], - [ - -73.370882, - 45.522548 - ], - [ - -73.370762, - 45.522583 - ], - [ - -73.370636, - 45.522601 - ], - [ - -73.370504, - 45.52261 - ], - [ - -73.36938, - 45.522631 - ], - [ - -73.369289, - 45.522629 - ], - [ - -73.369241, - 45.520998 - ], - [ - -73.369225, - 45.520454 - ], - [ - -73.36922, - 45.52035 - ], - [ - -73.368621, - 45.520354 - ], - [ - -73.368553, - 45.520357 - ], - [ - -73.36853, - 45.520358 - ], - [ - -73.368191, - 45.520371 - ], - [ - -73.367934, - 45.520394 - ], - [ - -73.367065, - 45.520468 - ], - [ - -73.366798, - 45.520491 - ], - [ - -73.365403, - 45.520602 - ], - [ - -73.362854, - 45.520815 - ], - [ - -73.361454, - 45.52094 - ], - [ - -73.361257, - 45.520957 - ], - [ - -73.361088, - 45.519832 - ], - [ - -73.361078, - 45.519769 - ], - [ - -73.361044, - 45.519729 - ], - [ - -73.360928, - 45.519697 - ], - [ - -73.36065, - 45.51971 - ], - [ - -73.360243, - 45.519741 - ], - [ - -73.359782, - 45.519783 - ], - [ - -73.358783, - 45.519873 - ], - [ - -73.358471, - 45.519901 - ], - [ - -73.358096, - 45.519923 - ], - [ - -73.358007, - 45.519923 - ], - [ - -73.357922, - 45.519918 - ], - [ - -73.357731, - 45.519864 - ], - [ - -73.357562, - 45.519805 - ], - [ - -73.357425, - 45.519702 - ], - [ - -73.35663, - 45.519068 - ], - [ - -73.356509, - 45.518972 - ], - [ - -73.356103, - 45.518661 - ], - [ - -73.355851, - 45.518453 - ], - [ - -73.3557, - 45.518336 - ], - [ - -73.35554, - 45.51821 - ], - [ - -73.355464, - 45.518151 - ], - [ - -73.355224, - 45.517998 - ], - [ - -73.355058, - 45.517908 - ], - [ - -73.354896, - 45.517822 - ], - [ - -73.354639, - 45.5177 - ], - [ - -73.354634, - 45.517699 - ], - [ - -73.354374, - 45.517597 - ], - [ - -73.35413, - 45.51752 - ], - [ - -73.353985, - 45.517488 - ], - [ - -73.353964, - 45.517484 - ], - [ - -73.353847, - 45.517452 - ], - [ - -73.353913, - 45.517241 - ], - [ - -73.353961, - 45.517124 - ], - [ - -73.354012, - 45.517002 - ], - [ - -73.354038, - 45.516939 - ], - [ - -73.354065, - 45.516876 - ], - [ - -73.354098, - 45.516813 - ], - [ - -73.354129, - 45.516755 - ], - [ - -73.35418, - 45.516665 - ], - [ - -73.354282, - 45.516521 - ], - [ - -73.354404, - 45.516368 - ], - [ - -73.354562, - 45.51622 - ], - [ - -73.354639, - 45.516144 - ], - [ - -73.354763, - 45.516045 - ], - [ - -73.354876, - 45.515964 - ], - [ - -73.355155, - 45.515784 - ], - [ - -73.355267, - 45.515713 - ], - [ - -73.355353, - 45.515673 - ], - [ - -73.355435, - 45.515636 - ], - [ - -73.355691, - 45.515529 - ], - [ - -73.355723, - 45.515515 - ], - [ - -73.35603, - 45.515426 - ], - [ - -73.356223, - 45.515381 - ], - [ - -73.356733, - 45.515323 - ], - [ - -73.357346, - 45.515261 - ], - [ - -73.35791, - 45.515226 - ], - [ - -73.358068, - 45.515215 - ], - [ - -73.358796, - 45.515168 - ], - [ - -73.358869, - 45.515164 - ], - [ - -73.361292, - 45.515014 - ], - [ - -73.362203, - 45.514954 - ], - [ - -73.364936, - 45.514775 - ], - [ - -73.365804, - 45.514718 - ], - [ - -73.366158, - 45.514696 - ], - [ - -73.366978, - 45.514647 - ], - [ - -73.367121, - 45.514638 - ], - [ - -73.36718, - 45.514638 - ], - [ - -73.367413, - 45.514639 - ], - [ - -73.36767, - 45.514675 - ], - [ - -73.367705, - 45.514684 - ], - [ - -73.367986, - 45.514774 - ], - [ - -73.368285, - 45.514919 - ], - [ - -73.368381, - 45.514986 - ], - [ - -73.368487, - 45.515058 - ], - [ - -73.368593, - 45.51513 - ], - [ - -73.368707, - 45.515243 - ], - [ - -73.368826, - 45.515365 - ], - [ - -73.368961, - 45.515549 - ], - [ - -73.369002, - 45.515653 - ], - [ - -73.36905, - 45.515765 - ], - [ - -73.369062, - 45.515873 - ], - [ - -73.369087, - 45.516022 - ], - [ - -73.369094, - 45.516179 - ], - [ - -73.369101, - 45.51639 - ], - [ - -73.369101, - 45.5164 - ], - [ - -73.36911, - 45.516625 - ], - [ - -73.36912, - 45.516899 - ], - [ - -73.369128, - 45.517111 - ], - [ - -73.369131, - 45.517363 - ], - [ - -73.369131, - 45.51741 - ], - [ - -73.369133, - 45.51752 - ], - [ - -73.369139, - 45.517651 - ], - [ - -73.369147, - 45.517839 - ], - [ - -73.369153, - 45.518145 - ], - [ - -73.369156, - 45.518379 - ], - [ - -73.369164, - 45.518717 - ], - [ - -73.369173, - 45.519041 - ], - [ - -73.369183, - 45.519383 - ], - [ - -73.369188, - 45.51961 - ], - [ - -73.369192, - 45.519761 - ], - [ - -73.369205, - 45.519905 - ], - [ - -73.369207, - 45.520049 - ], - [ - -73.36922, - 45.52035 - ], - [ - -73.369225, - 45.520454 - ], - [ - -73.369241, - 45.520998 - ], - [ - -73.369289, - 45.522629 - ], - [ - -73.369285, - 45.522762 - ], - [ - -73.369286, - 45.52303 - ], - [ - -73.369289, - 45.523693 - ], - [ - -73.36923, - 45.523923 - ], - [ - -73.36921, - 45.523999 - ], - [ - -73.369028, - 45.5243 - ], - [ - -73.368834, - 45.524507 - ], - [ - -73.368444, - 45.524772 - ], - [ - -73.367696, - 45.525244 - ], - [ - -73.367366, - 45.52545 - ], - [ - -73.36762, - 45.525662 - ], - [ - -73.368663, - 45.526469 - ], - [ - -73.369386, - 45.527027 - ], - [ - -73.369582, - 45.527324 - ], - [ - -73.369684, - 45.527581 - ], - [ - -73.369695, - 45.527688 - ], - [ - -73.369719, - 45.527905 - ], - [ - -73.369744, - 45.529772 - ], - [ - -73.369745, - 45.529797 - ], - [ - -73.369749, - 45.529908 - ], - [ - -73.369792, - 45.531176 - ], - [ - -73.369792, - 45.531189 - ] - ] - }, - "id": 198, - "properties": { - "id": "aca68be2-43a7-4bcb-b1fb-8e005d468e12", - "data": { - "gtfs": { - "shape_id": "98_1_R" - }, - "segments": [ - { - "distanceMeters": 631, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 1600, - "travelTimeSeconds": 163 - }, - { - "distanceMeters": 344, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 6034, - "travelTimeSeconds": 360 - }, - { - "distanceMeters": 4398, - "travelTimeSeconds": 240 - }, - { - "distanceMeters": 4257, - "travelTimeSeconds": 360 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 390, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 391, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 97 - }, - { - "distanceMeters": 480, - "travelTimeSeconds": 122 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 40 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 192, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 22225, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11807.260076001989, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 11.58, - "travelTimeWithoutDwellTimesSeconds": 1920, - "operatingTimeWithLayoverTimeSeconds": 2112, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1920, - "operatingSpeedWithLayoverMetersPerSecond": 10.52, - "averageSpeedWithoutDwellTimesMetersPerSecond": 11.58 - }, - "mode": "bus", - "name": "Parent", - "color": "#A32638", - "nodes": [ - "acabc807-b0f5-4579-b183-cef0484a7cc2", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "688a3f67-a176-441e-a399-c92a55de9c74", - "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", - "4aea3348-4995-4fc9-b06f-6698460c1f1d", - "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", - "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", - "36c85e4a-3286-45d4-878d-41eda74eb078", - "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", - "9b7439c4-a8e6-4ce8-8c94-dcac4e29b500", - "d58c68b9-bb4a-45d1-90ea-403c9b830625", - "15f81e09-81b0-4df0-aa79-d4603e691ccd", - "6cc3ca76-cd11-4240-ac37-33142410aacb", - "f9418d0c-9ee7-44b5-a2f0-bb6a76a0df3e", - "4f54f52f-b62c-4341-a4d5-24c02344f25b", - "d3614ff1-08ff-435f-b8f7-1a76f68a0071", - "b3d09d08-d2e3-4276-8b7a-d3d07d979e6c", - "635ebffd-b274-4e79-9618-a0203ceaa811", - "dca87cea-ccf9-454c-a18b-6489a3e1ab68", - "24a322e0-f890-4138-9c97-136b5a2cdd60", - "7d066d0e-6085-4155-a554-6e1116a797c6", - "4d10c33d-a086-4248-8e97-1236a7069436", - "1cb5ae0c-b01a-4888-87b4-f35cbbb956cf" - ], - "stops": [], - "line_id": "c735086b-1ce5-43d2-9786-14a2f474d602", - "segments": [ - 0, - 39, - 46, - 71, - 82, - 173, - 229, - 340, - 343, - 347, - 356, - 364, - 378, - 399, - 406, - 410, - 416, - 439, - 448, - 457, - 467, - 471, - 474 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 198, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.369792, - 45.531176 - ], - [ - -73.369749, - 45.529908 - ], - [ - -73.369744, - 45.529772 - ], - [ - -73.369744, - 45.529758 - ], - [ - -73.369719, - 45.527905 - ], - [ - -73.369697, - 45.527702 - ], - [ - -73.369684, - 45.527581 - ], - [ - -73.369582, - 45.527324 - ], - [ - -73.369386, - 45.527027 - ], - [ - -73.368626, - 45.526439 - ], - [ - -73.36762, - 45.525662 - ], - [ - -73.367366, - 45.52545 - ], - [ - -73.367696, - 45.525244 - ], - [ - -73.368444, - 45.524772 - ], - [ - -73.368834, - 45.524507 - ], - [ - -73.369028, - 45.5243 - ], - [ - -73.36921, - 45.523999 - ], - [ - -73.369289, - 45.523693 - ], - [ - -73.369286, - 45.52299 - ], - [ - -73.369285, - 45.522762 - ], - [ - -73.369289, - 45.522629 - ], - [ - -73.369241, - 45.520998 - ], - [ - -73.369225, - 45.520454 - ], - [ - -73.36922, - 45.52035 - ], - [ - -73.368621, - 45.520354 - ], - [ - -73.36858, - 45.520356 - ], - [ - -73.368553, - 45.520357 - ], - [ - -73.368191, - 45.520371 - ], - [ - -73.367115, - 45.520464 - ], - [ - -73.366798, - 45.520491 - ], - [ - -73.365403, - 45.520602 - ], - [ - -73.362854, - 45.520815 - ], - [ - -73.361517, - 45.520934 - ], - [ - -73.361257, - 45.520957 - ], - [ - -73.361088, - 45.519832 - ], - [ - -73.361078, - 45.519769 - ], - [ - -73.361044, - 45.519729 - ], - [ - -73.360928, - 45.519697 - ], - [ - -73.36065, - 45.51971 - ], - [ - -73.360243, - 45.519741 - ], - [ - -73.359782, - 45.519783 - ], - [ - -73.358833, - 45.519868 - ], - [ - -73.358471, - 45.519901 - ], - [ - -73.358096, - 45.519923 - ], - [ - -73.358007, - 45.519923 - ], - [ - -73.357922, - 45.519918 - ], - [ - -73.357731, - 45.519864 - ], - [ - -73.357562, - 45.519805 - ], - [ - -73.357425, - 45.519702 - ], - [ - -73.356663, - 45.519095 - ], - [ - -73.356509, - 45.518972 - ], - [ - -73.356103, - 45.518661 - ], - [ - -73.355851, - 45.518453 - ], - [ - -73.3557, - 45.518336 - ], - [ - -73.35554, - 45.51821 - ], - [ - -73.355464, - 45.518151 - ], - [ - -73.355224, - 45.517998 - ], - [ - -73.355058, - 45.517908 - ], - [ - -73.354896, - 45.517822 - ], - [ - -73.354639, - 45.5177 - ], - [ - -73.354374, - 45.517597 - ], - [ - -73.35413, - 45.51752 - ], - [ - -73.354033, - 45.517499 - ], - [ - -73.353964, - 45.517484 - ], - [ - -73.353847, - 45.517452 - ], - [ - -73.353913, - 45.517241 - ], - [ - -73.353961, - 45.517124 - ], - [ - -73.354012, - 45.517002 - ], - [ - -73.354038, - 45.516939 - ], - [ - -73.354065, - 45.516876 - ], - [ - -73.354098, - 45.516813 - ], - [ - -73.354129, - 45.516755 - ], - [ - -73.35418, - 45.516665 - ], - [ - -73.354282, - 45.516521 - ], - [ - -73.354404, - 45.516368 - ], - [ - -73.354562, - 45.51622 - ], - [ - -73.354639, - 45.516144 - ], - [ - -73.354763, - 45.516045 - ], - [ - -73.354876, - 45.515964 - ], - [ - -73.355155, - 45.515784 - ], - [ - -73.355267, - 45.515713 - ], - [ - -73.355353, - 45.515673 - ], - [ - -73.355435, - 45.515636 - ], - [ - -73.355637, - 45.515552 - ], - [ - -73.355723, - 45.515515 - ], - [ - -73.35603, - 45.515426 - ], - [ - -73.356223, - 45.515381 - ], - [ - -73.356733, - 45.515323 - ], - [ - -73.357346, - 45.515261 - ], - [ - -73.35791, - 45.515226 - ], - [ - -73.358018, - 45.515219 - ], - [ - -73.358869, - 45.515164 - ], - [ - -73.361292, - 45.515014 - ], - [ - -73.36156, - 45.514996 - ], - [ - -73.362153, - 45.514957 - ], - [ - -73.364936, - 45.514775 - ], - [ - -73.365804, - 45.514718 - ], - [ - -73.366158, - 45.514696 - ], - [ - -73.366978, - 45.514647 - ], - [ - -73.367117, - 45.514638 - ], - [ - -73.367121, - 45.514638 - ], - [ - -73.367413, - 45.514639 - ], - [ - -73.36767, - 45.514675 - ], - [ - -73.367705, - 45.514684 - ], - [ - -73.367986, - 45.514774 - ], - [ - -73.368285, - 45.514919 - ], - [ - -73.368381, - 45.514986 - ], - [ - -73.368487, - 45.515058 - ], - [ - -73.368593, - 45.51513 - ], - [ - -73.368707, - 45.515243 - ], - [ - -73.368826, - 45.515365 - ], - [ - -73.368961, - 45.515549 - ], - [ - -73.369002, - 45.515653 - ], - [ - -73.36905, - 45.515765 - ], - [ - -73.369062, - 45.515873 - ], - [ - -73.369087, - 45.516022 - ], - [ - -73.369094, - 45.516179 - ], - [ - -73.369101, - 45.5164 - ], - [ - -73.36911, - 45.516625 - ], - [ - -73.36912, - 45.516899 - ], - [ - -73.369128, - 45.517111 - ], - [ - -73.369131, - 45.517363 - ], - [ - -73.369131, - 45.517366 - ], - [ - -73.369133, - 45.51752 - ], - [ - -73.369139, - 45.517651 - ], - [ - -73.369147, - 45.517839 - ], - [ - -73.369153, - 45.518145 - ], - [ - -73.369156, - 45.518379 - ], - [ - -73.369164, - 45.518717 - ], - [ - -73.369173, - 45.519041 - ], - [ - -73.369183, - 45.519383 - ], - [ - -73.369187, - 45.519574 - ], - [ - -73.369192, - 45.519761 - ], - [ - -73.369205, - 45.519905 - ], - [ - -73.369207, - 45.520049 - ], - [ - -73.36922, - 45.52035 - ], - [ - -73.369225, - 45.520454 - ], - [ - -73.370151, - 45.520446 - ], - [ - -73.371725, - 45.520433 - ], - [ - -73.373172, - 45.520409 - ], - [ - -73.373182, - 45.520409 - ], - [ - -73.374498, - 45.520455 - ], - [ - -73.374645, - 45.520482 - ], - [ - -73.37474, - 45.520527 - ], - [ - -73.374813, - 45.520577 - ], - [ - -73.374873, - 45.52064 - ], - [ - -73.375034, - 45.520996 - ], - [ - -73.375039, - 45.521108 - ], - [ - -73.375076, - 45.522539 - ], - [ - -73.374949, - 45.522539 - ], - [ - -73.373886, - 45.522555 - ], - [ - -73.37374, - 45.522542 - ], - [ - -73.373586, - 45.522519 - ], - [ - -73.373444, - 45.522483 - ], - [ - -73.373311, - 45.522429 - ], - [ - -73.373188, - 45.522357 - ], - [ - -73.373072, - 45.522271 - ], - [ - -73.372969, - 45.522172 - ], - [ - -73.372875, - 45.522059 - ], - [ - -73.372796, - 45.521942 - ], - [ - -73.372726, - 45.521812 - ], - [ - -73.372669, - 45.521677 - ], - [ - -73.372586, - 45.521398 - ], - [ - -73.372564, - 45.521254 - ], - [ - -73.372403, - 45.519427 - ], - [ - -73.372315, - 45.518235 - ], - [ - -73.372258, - 45.516327 - ], - [ - -73.372237, - 45.516003 - ], - [ - -73.372279, - 45.515674 - ], - [ - -73.372302, - 45.515252 - ], - [ - -73.372346, - 45.51419 - ], - [ - -73.372352, - 45.513843 - ], - [ - -73.372333, - 45.513069 - ], - [ - -73.372273, - 45.511072 - ], - [ - -73.372238, - 45.510005 - ], - [ - -73.372123, - 45.505807 - ], - [ - -73.372124, - 45.50556 - ], - [ - -73.372243, - 45.505043 - ], - [ - -73.372302, - 45.504692 - ], - [ - -73.372354, - 45.504449 - ], - [ - -73.372503, - 45.503954 - ], - [ - -73.372655, - 45.503576 - ], - [ - -73.373011, - 45.502875 - ], - [ - -73.373173, - 45.502587 - ], - [ - -73.37323, - 45.502511 - ], - [ - -73.373299, - 45.502439 - ], - [ - -73.373386, - 45.502385 - ], - [ - -73.373485, - 45.50234 - ], - [ - -73.37359, - 45.502313 - ], - [ - -73.373645, - 45.502304 - ], - [ - -73.37369, - 45.5023 - ], - [ - -73.37385, - 45.502305 - ], - [ - -73.373969, - 45.502327 - ], - [ - -73.374235, - 45.502395 - ], - [ - -73.374326, - 45.502409 - ], - [ - -73.374466, - 45.502454 - ], - [ - -73.374786, - 45.50253 - ], - [ - -73.375092, - 45.502612 - ], - [ - -73.375264, - 45.502648 - ], - [ - -73.375427, - 45.502684 - ], - [ - -73.375574, - 45.502747 - ], - [ - -73.376319, - 45.503059 - ], - [ - -73.376016, - 45.503247 - ], - [ - -73.375972, - 45.503274 - ], - [ - -73.37579, - 45.503415 - ], - [ - -73.375709, - 45.503477 - ], - [ - -73.375698, - 45.503485 - ], - [ - -73.375447, - 45.503715 - ], - [ - -73.375293, - 45.503854 - ], - [ - -73.37517, - 45.50398 - ], - [ - -73.374998, - 45.504213 - ], - [ - -73.374854, - 45.504429 - ], - [ - -73.374722, - 45.5046 - ], - [ - -73.374697, - 45.504635 - ], - [ - -73.374625, - 45.504735 - ], - [ - -73.374598, - 45.504793 - ], - [ - -73.374583, - 45.504843 - ], - [ - -73.374565, - 45.504919 - ], - [ - -73.374581, - 45.50514 - ], - [ - -73.37462, - 45.505338 - ], - [ - -73.374746, - 45.505563 - ], - [ - -73.374844, - 45.505788 - ], - [ - -73.374845, - 45.50579 - ], - [ - -73.37485, - 45.505798 - ], - [ - -73.374951, - 45.505973 - ], - [ - -73.375061, - 45.506067 - ], - [ - -73.375295, - 45.506238 - ], - [ - -73.375424, - 45.506333 - ], - [ - -73.375748, - 45.506597 - ], - [ - -73.375784, - 45.506626 - ], - [ - -73.375859, - 45.506698 - ], - [ - -73.375911, - 45.506761 - ], - [ - -73.375985, - 45.506896 - ], - [ - -73.376046, - 45.507022 - ], - [ - -73.376084, - 45.507108 - ], - [ - -73.376268, - 45.507459 - ], - [ - -73.376298, - 45.507513 - ], - [ - -73.376345, - 45.507576 - ], - [ - -73.3764, - 45.507639 - ], - [ - -73.376512, - 45.507729 - ], - [ - -73.376632, - 45.507801 - ], - [ - -73.376837, - 45.507891 - ], - [ - -73.376868, - 45.507902 - ], - [ - -73.376914, - 45.507917 - ], - [ - -73.377114, - 45.507982 - ], - [ - -73.377442, - 45.508081 - ], - [ - -73.377571, - 45.508108 - ], - [ - -73.377699, - 45.508135 - ], - [ - -73.377779, - 45.508144 - ], - [ - -73.377878, - 45.50815 - ], - [ - -73.377933, - 45.508153 - ], - [ - -73.378119, - 45.508163 - ], - [ - -73.378452, - 45.508145 - ], - [ - -73.378562, - 45.50814 - ], - [ - -73.378912, - 45.508125 - ], - [ - -73.379147, - 45.508114 - ], - [ - -73.3793, - 45.508105 - ], - [ - -73.379404, - 45.508091 - ], - [ - -73.379526, - 45.508074 - ], - [ - -73.379622, - 45.508047 - ], - [ - -73.379724, - 45.508025 - ], - [ - -73.379863, - 45.507975 - ], - [ - -73.380059, - 45.50789 - ], - [ - -73.380145, - 45.507842 - ], - [ - -73.380179, - 45.507823 - ], - [ - -73.380268, - 45.507759 - ], - [ - -73.380399, - 45.507666 - ], - [ - -73.380421, - 45.507648 - ], - [ - -73.380503, - 45.507585 - ], - [ - -73.380626, - 45.507481 - ], - [ - -73.38128, - 45.507806 - ], - [ - -73.380619, - 45.508917 - ], - [ - -73.380471, - 45.509177 - ], - [ - -73.380338, - 45.509474 - ], - [ - -73.380312, - 45.5096 - ], - [ - -73.380265, - 45.50983 - ], - [ - -73.380243, - 45.510001 - ], - [ - -73.380243, - 45.510041 - ], - [ - -73.380292, - 45.510284 - ], - [ - -73.380332, - 45.510388 - ], - [ - -73.380377, - 45.510478 - ], - [ - -73.380512, - 45.51068 - ], - [ - -73.3806, - 45.510779 - ], - [ - -73.380706, - 45.510874 - ], - [ - -73.380825, - 45.510964 - ], - [ - -73.380962, - 45.511045 - ], - [ - -73.381113, - 45.511117 - ], - [ - -73.381279, - 45.511176 - ], - [ - -73.381458, - 45.511217 - ], - [ - -73.381649, - 45.511244 - ], - [ - -73.38181, - 45.511255 - ], - [ - -73.38185, - 45.511257 - ], - [ - -73.382059, - 45.511258 - ], - [ - -73.382278, - 45.511249 - ], - [ - -73.383255, - 45.51116 - ], - [ - -73.386918, - 45.510876 - ], - [ - -73.388705, - 45.510769 - ], - [ - -73.390511, - 45.510672 - ], - [ - -73.391744, - 45.51057 - ], - [ - -73.392277, - 45.510503 - ], - [ - -73.393587, - 45.510437 - ], - [ - -73.396575, - 45.510246 - ], - [ - -73.399702, - 45.510041 - ], - [ - -73.416479, - 45.508939 - ], - [ - -73.418591, - 45.508796 - ], - [ - -73.422517, - 45.50853 - ], - [ - -73.424264, - 45.508396 - ], - [ - -73.424552, - 45.508369 - ], - [ - -73.425839, - 45.508343 - ], - [ - -73.427203, - 45.508276 - ], - [ - -73.430462, - 45.508094 - ], - [ - -73.431367, - 45.508031 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431709, - 45.508009 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.432209, - 45.507974 - ], - [ - -73.432744, - 45.507937 - ], - [ - -73.435178, - 45.507773 - ], - [ - -73.437575, - 45.507662 - ], - [ - -73.438988, - 45.507572 - ], - [ - -73.440344, - 45.507425 - ], - [ - -73.445881, - 45.507063 - ], - [ - -73.452257, - 45.506638 - ], - [ - -73.452565, - 45.506616 - ], - [ - -73.453776, - 45.50654 - ], - [ - -73.455247, - 45.506419 - ], - [ - -73.456957, - 45.50624 - ], - [ - -73.460279, - 45.505832 - ], - [ - -73.460374, - 45.505823 - ], - [ - -73.461182, - 45.505728 - ], - [ - -73.462162, - 45.505642 - ], - [ - -73.463671, - 45.505509 - ], - [ - -73.465111, - 45.505401 - ], - [ - -73.467755, - 45.505222 - ], - [ - -73.468692, - 45.505168 - ], - [ - -73.47019, - 45.505064 - ], - [ - -73.470746, - 45.505025 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.482932, - 45.504143 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492934, - 45.510116 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494204, - 45.510801 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497942, - 45.512059 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.500628, - 45.512866 - ], - [ - -73.500836, - 45.512931 - ], - [ - -73.502033, - 45.513303 - ], - [ - -73.505335, - 45.514355 - ], - [ - -73.506642, - 45.51477 - ], - [ - -73.507293, - 45.514976 - ], - [ - -73.50757, - 45.515057 - ], - [ - -73.508383, - 45.515323 - ], - [ - -73.509009, - 45.515606 - ], - [ - -73.509231, - 45.515687 - ], - [ - -73.509741, - 45.515862 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513711, - 45.518781 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518894, - 45.520629 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520267, - 45.521193 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520363, - 45.524395 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520729, - 45.524095 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.520811, - 45.523427 - ] - ] - }, - "id": 199, - "properties": { - "id": "1a58c239-081a-4f9c-91ab-94af30f92a7a", - "data": { - "gtfs": { - "shape_id": "98_1_A" - }, - "segments": [ - { - "distanceMeters": 158, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 480, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 344, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 440, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 389, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 391, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 3470, - "travelTimeSeconds": 364 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 454, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 4430, - "travelTimeSeconds": 371 - }, - { - "distanceMeters": 5274, - "travelTimeSeconds": 300 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 1940, - "travelTimeSeconds": 323 - }, - { - "distanceMeters": 845, - "travelTimeSeconds": 142 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 216, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 21851, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11778.417279524518, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 10.12, - "travelTimeWithoutDwellTimesSeconds": 2160, - "operatingTimeWithLayoverTimeSeconds": 2376, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2160, - "operatingSpeedWithLayoverMetersPerSecond": 9.2, - "averageSpeedWithoutDwellTimesMetersPerSecond": 10.12 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "525aaea9-a48f-4335-b4bb-4f671d4d9a31", - "4d10c33d-a086-4248-8e97-1236a7069436", - "7d066d0e-6085-4155-a554-6e1116a797c6", - "24a322e0-f890-4138-9c97-136b5a2cdd60", - "dca87cea-ccf9-454c-a18b-6489a3e1ab68", - "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", - "36c85e4a-3286-45d4-878d-41eda74eb078", - "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", - "9b7439c4-a8e6-4ce8-8c94-dcac4e29b500", - "d58c68b9-bb4a-45d1-90ea-403c9b830625", - "15f81e09-81b0-4df0-aa79-d4603e691ccd", - "6cc3ca76-cd11-4240-ac37-33142410aacb", - "f9418d0c-9ee7-44b5-a2f0-bb6a76a0df3e", - "4f54f52f-b62c-4341-a4d5-24c02344f25b", - "d3614ff1-08ff-435f-b8f7-1a76f68a0071", - "b3d09d08-d2e3-4276-8b7a-d3d07d979e6c", - "635ebffd-b274-4e79-9618-a0203ceaa811", - "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", - "01e0bcb2-ac63-4c88-b110-c273905a1d5c", - "2c8a6d09-2eb8-47e3-86bb-ac6501351f3b", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "acabc807-b0f5-4579-b183-cef0484a7cc2" - ], - "stops": [], - "line_id": "c735086b-1ce5-43d2-9786-14a2f474d602", - "segments": [ - 0, - 3, - 5, - 9, - 18, - 25, - 28, - 32, - 41, - 49, - 62, - 83, - 90, - 94, - 99, - 122, - 131, - 204, - 223, - 254, - 267, - 311, - 371, - 384, - 425 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 199, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.520811, - 45.523427 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522259, - 45.521632 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519255, - 45.520728 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514998, - 45.519328 - ], - [ - -73.514793, - 45.519263 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509849, - 45.51557 - ], - [ - -73.509164, - 45.515381 - ], - [ - -73.508444, - 45.51521 - ], - [ - -73.506204, - 45.514496 - ], - [ - -73.503449, - 45.513618 - ], - [ - -73.500803, - 45.512776 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498214, - 45.511891 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.494315, - 45.510461 - ], - [ - -73.494196, - 45.510403 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488913, - 45.504255 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488355, - 45.503066 - ], - [ - -73.4883, - 45.502913 - ], - [ - -73.488219, - 45.502531 - ], - [ - -73.488223, - 45.502405 - ], - [ - -73.488245, - 45.502293 - ], - [ - -73.488296, - 45.502185 - ], - [ - -73.488375, - 45.502086 - ], - [ - -73.488484, - 45.502 - ], - [ - -73.488505, - 45.501989 - ], - [ - -73.488609, - 45.501937 - ], - [ - -73.48874, - 45.501892 - ], - [ - -73.48888, - 45.501865 - ], - [ - -73.489028, - 45.501856 - ], - [ - -73.489181, - 45.501865 - ], - [ - -73.489324, - 45.501892 - ], - [ - -73.489461, - 45.501933 - ], - [ - -73.489585, - 45.501991 - ], - [ - -73.489692, - 45.502068 - ], - [ - -73.489786, - 45.502153 - ], - [ - -73.489942, - 45.502342 - ], - [ - -73.490006, - 45.50245 - ], - [ - -73.490054, - 45.502558 - ], - [ - -73.490086, - 45.502666 - ], - [ - -73.490092, - 45.502779 - ], - [ - -73.490064, - 45.502891 - ], - [ - -73.490004, - 45.502995 - ], - [ - -73.489917, - 45.503094 - ], - [ - -73.489808, - 45.503175 - ], - [ - -73.489675, - 45.503242 - ], - [ - -73.489524, - 45.503287 - ], - [ - -73.489359, - 45.50331 - ], - [ - -73.489186, - 45.503323 - ], - [ - -73.488817, - 45.503318 - ], - [ - -73.487515, - 45.503242 - ], - [ - -73.486872, - 45.503273 - ], - [ - -73.486502, - 45.503323 - ], - [ - -73.486146, - 45.503381 - ], - [ - -73.484224, - 45.503808 - ], - [ - -73.483407, - 45.503957 - ], - [ - -73.482922, - 45.504029 - ], - [ - -73.482166, - 45.504114 - ], - [ - -73.481092, - 45.504204 - ], - [ - -73.4802, - 45.504262 - ], - [ - -73.47719, - 45.50446 - ], - [ - -73.470642, - 45.504895 - ], - [ - -73.464792, - 45.505284 - ], - [ - -73.464234, - 45.505325 - ], - [ - -73.463301, - 45.505392 - ], - [ - -73.461784, - 45.505526 - ], - [ - -73.460686, - 45.505647 - ], - [ - -73.45799, - 45.505984 - ], - [ - -73.456776, - 45.506127 - ], - [ - -73.455209, - 45.506284 - ], - [ - -73.454382, - 45.506356 - ], - [ - -73.452547, - 45.506481 - ], - [ - -73.450186, - 45.506642 - ], - [ - -73.439577, - 45.507343 - ], - [ - -73.439057, - 45.507379 - ], - [ - -73.438071, - 45.507414 - ], - [ - -73.437444, - 45.507428 - ], - [ - -73.436265, - 45.507427 - ], - [ - -73.435664, - 45.507418 - ], - [ - -73.43478, - 45.507413 - ], - [ - -73.433757, - 45.507439 - ], - [ - -73.432476, - 45.507501 - ], - [ - -73.432462, - 45.507502 - ], - [ - -73.430857, - 45.507609 - ], - [ - -73.43012, - 45.507658 - ], - [ - -73.43011, - 45.507658 - ], - [ - -73.429942, - 45.507669 - ], - [ - -73.429316, - 45.507711 - ], - [ - -73.429246, - 45.50772 - ], - [ - -73.427401, - 45.507872 - ], - [ - -73.425651, - 45.508046 - ], - [ - -73.425331, - 45.508082 - ], - [ - -73.423669, - 45.508256 - ], - [ - -73.421559, - 45.508471 - ], - [ - -73.420178, - 45.508555 - ], - [ - -73.418703, - 45.508644 - ], - [ - -73.414755, - 45.508904 - ], - [ - -73.40603, - 45.509467 - ], - [ - -73.399904, - 45.509875 - ], - [ - -73.3937, - 45.510275 - ], - [ - -73.39233, - 45.510359 - ], - [ - -73.390441, - 45.510452 - ], - [ - -73.389445, - 45.510505 - ], - [ - -73.387299, - 45.510633 - ], - [ - -73.381768, - 45.510924 - ], - [ - -73.37903, - 45.511061 - ], - [ - -73.378353, - 45.511087 - ], - [ - -73.377677, - 45.511105 - ], - [ - -73.376999, - 45.511104 - ], - [ - -73.375985, - 45.511071 - ], - [ - -73.375316, - 45.51103 - ], - [ - -73.373596, - 45.510947 - ], - [ - -73.372769, - 45.510937 - ], - [ - -73.371909, - 45.510936 - ], - [ - -73.370442, - 45.510912 - ], - [ - -73.370325, - 45.510908 - ], - [ - -73.370204, - 45.510894 - ], - [ - -73.369964, - 45.51084 - ], - [ - -73.369712, - 45.510763 - ], - [ - -73.369593, - 45.510709 - ], - [ - -73.369485, - 45.510641 - ], - [ - -73.369395, - 45.510569 - ], - [ - -73.36932, - 45.510488 - ], - [ - -73.369264, - 45.510398 - ], - [ - -73.369225, - 45.510303 - ], - [ - -73.369205, - 45.510204 - ], - [ - -73.369204, - 45.510101 - ], - [ - -73.369227, - 45.509997 - ], - [ - -73.369273, - 45.509894 - ], - [ - -73.36934, - 45.5098 - ], - [ - -73.369426, - 45.50971 - ], - [ - -73.369529, - 45.509633 - ], - [ - -73.369647, - 45.509566 - ], - [ - -73.369765, - 45.509521 - ], - [ - -73.369925, - 45.509481 - ], - [ - -73.370073, - 45.509463 - ], - [ - -73.37023, - 45.509459 - ], - [ - -73.370386, - 45.509468 - ], - [ - -73.370537, - 45.509491 - ], - [ - -73.370683, - 45.509531 - ], - [ - -73.370819, - 45.50959 - ], - [ - -73.370941, - 45.509662 - ], - [ - -73.371049, - 45.509748 - ], - [ - -73.371141, - 45.509842 - ], - [ - -73.371221, - 45.50995 - ], - [ - -73.371287, - 45.510058 - ], - [ - -73.371339, - 45.510175 - ], - [ - -73.371397, - 45.510418 - ], - [ - -73.371484, - 45.511363 - ], - [ - -73.371519, - 45.512673 - ], - [ - -73.371557, - 45.513397 - ], - [ - -73.371604, - 45.513956 - ], - [ - -73.371635, - 45.514319 - ], - [ - -73.371686, - 45.515089 - ], - [ - -73.371789, - 45.516871 - ], - [ - -73.371852, - 45.519003 - ], - [ - -73.371811, - 45.520164 - ], - [ - -73.371765, - 45.521019 - ], - [ - -73.371735, - 45.521284 - ], - [ - -73.371686, - 45.521563 - ], - [ - -73.371628, - 45.521757 - ], - [ - -73.371623, - 45.52177 - ], - [ - -73.371546, - 45.52195 - ], - [ - -73.371432, - 45.522139 - ], - [ - -73.371362, - 45.522224 - ], - [ - -73.371283, - 45.522305 - ], - [ - -73.371195, - 45.522377 - ], - [ - -73.371098, - 45.522444 - ], - [ - -73.370993, - 45.522503 - ], - [ - -73.370882, - 45.522548 - ], - [ - -73.370762, - 45.522583 - ], - [ - -73.370636, - 45.522601 - ], - [ - -73.370504, - 45.52261 - ], - [ - -73.36938, - 45.522631 - ], - [ - -73.369289, - 45.522629 - ], - [ - -73.369241, - 45.520998 - ], - [ - -73.369225, - 45.520454 - ], - [ - -73.36922, - 45.52035 - ], - [ - -73.368621, - 45.520354 - ], - [ - -73.368553, - 45.520357 - ], - [ - -73.368509, - 45.520359 - ], - [ - -73.368191, - 45.520371 - ], - [ - -73.367934, - 45.520394 - ], - [ - -73.367044, - 45.52047 - ], - [ - -73.366798, - 45.520491 - ], - [ - -73.365403, - 45.520602 - ], - [ - -73.362854, - 45.520815 - ], - [ - -73.361446, - 45.52094 - ], - [ - -73.361257, - 45.520957 - ], - [ - -73.361088, - 45.519832 - ], - [ - -73.361078, - 45.519769 - ], - [ - -73.361044, - 45.519729 - ], - [ - -73.360928, - 45.519697 - ], - [ - -73.36065, - 45.51971 - ], - [ - -73.360243, - 45.519741 - ], - [ - -73.359782, - 45.519783 - ], - [ - -73.358764, - 45.519875 - ], - [ - -73.358471, - 45.519901 - ], - [ - -73.358096, - 45.519923 - ], - [ - -73.358007, - 45.519923 - ], - [ - -73.357922, - 45.519918 - ], - [ - -73.357731, - 45.519864 - ], - [ - -73.357562, - 45.519805 - ], - [ - -73.357425, - 45.519702 - ], - [ - -73.356617, - 45.519058 - ], - [ - -73.356509, - 45.518972 - ], - [ - -73.356103, - 45.518661 - ], - [ - -73.355851, - 45.518453 - ], - [ - -73.3557, - 45.518336 - ], - [ - -73.35554, - 45.51821 - ], - [ - -73.355464, - 45.518151 - ], - [ - -73.355224, - 45.517998 - ], - [ - -73.355058, - 45.517908 - ], - [ - -73.354896, - 45.517822 - ], - [ - -73.354639, - 45.5177 - ], - [ - -73.354634, - 45.517699 - ], - [ - -73.354374, - 45.517597 - ], - [ - -73.35413, - 45.51752 - ], - [ - -73.353966, - 45.517484 - ], - [ - -73.353964, - 45.517484 - ], - [ - -73.353847, - 45.517452 - ], - [ - -73.353913, - 45.517241 - ], - [ - -73.353961, - 45.517124 - ], - [ - -73.354012, - 45.517002 - ], - [ - -73.354038, - 45.516939 - ], - [ - -73.354065, - 45.516876 - ], - [ - -73.354098, - 45.516813 - ], - [ - -73.354129, - 45.516755 - ], - [ - -73.35418, - 45.516665 - ], - [ - -73.354282, - 45.516521 - ], - [ - -73.354404, - 45.516368 - ], - [ - -73.354562, - 45.51622 - ], - [ - -73.354639, - 45.516144 - ], - [ - -73.354763, - 45.516045 - ], - [ - -73.354876, - 45.515964 - ], - [ - -73.355155, - 45.515784 - ], - [ - -73.355267, - 45.515713 - ], - [ - -73.355353, - 45.515673 - ], - [ - -73.355435, - 45.515636 - ], - [ - -73.355696, - 45.515527 - ], - [ - -73.355723, - 45.515515 - ], - [ - -73.35603, - 45.515426 - ], - [ - -73.356223, - 45.515381 - ], - [ - -73.356733, - 45.515323 - ], - [ - -73.357346, - 45.515261 - ], - [ - -73.35791, - 45.515226 - ], - [ - -73.358086, - 45.515214 - ], - [ - -73.358796, - 45.515168 - ], - [ - -73.358869, - 45.515164 - ], - [ - -73.361292, - 45.515014 - ], - [ - -73.362221, - 45.514953 - ], - [ - -73.364936, - 45.514775 - ], - [ - -73.365804, - 45.514718 - ], - [ - -73.366158, - 45.514696 - ], - [ - -73.366978, - 45.514647 - ], - [ - -73.367121, - 45.514638 - ], - [ - -73.367184, - 45.514638 - ], - [ - -73.367413, - 45.514639 - ], - [ - -73.36767, - 45.514675 - ], - [ - -73.367705, - 45.514684 - ], - [ - -73.367986, - 45.514774 - ], - [ - -73.368285, - 45.514919 - ], - [ - -73.368381, - 45.514986 - ], - [ - -73.368487, - 45.515058 - ], - [ - -73.368593, - 45.51513 - ], - [ - -73.368707, - 45.515243 - ], - [ - -73.368826, - 45.515365 - ], - [ - -73.368961, - 45.515549 - ], - [ - -73.369002, - 45.515653 - ], - [ - -73.36905, - 45.515765 - ], - [ - -73.369062, - 45.515873 - ], - [ - -73.369087, - 45.516022 - ], - [ - -73.369094, - 45.516179 - ], - [ - -73.369101, - 45.51639 - ], - [ - -73.369101, - 45.5164 - ], - [ - -73.36911, - 45.516625 - ], - [ - -73.36912, - 45.516899 - ], - [ - -73.369128, - 45.517111 - ], - [ - -73.369131, - 45.517363 - ], - [ - -73.369131, - 45.517412 - ], - [ - -73.369133, - 45.51752 - ], - [ - -73.369139, - 45.517651 - ], - [ - -73.369147, - 45.517839 - ], - [ - -73.369153, - 45.518145 - ], - [ - -73.369156, - 45.518379 - ], - [ - -73.369164, - 45.518717 - ], - [ - -73.369173, - 45.519041 - ], - [ - -73.369183, - 45.519383 - ], - [ - -73.369188, - 45.51962 - ], - [ - -73.369192, - 45.519761 - ], - [ - -73.369205, - 45.519905 - ], - [ - -73.369207, - 45.520049 - ], - [ - -73.36922, - 45.52035 - ], - [ - -73.369225, - 45.520454 - ], - [ - -73.369241, - 45.520998 - ], - [ - -73.369289, - 45.522629 - ], - [ - -73.369285, - 45.522762 - ], - [ - -73.369286, - 45.52304 - ], - [ - -73.369289, - 45.523693 - ], - [ - -73.36923, - 45.523923 - ], - [ - -73.36921, - 45.523999 - ], - [ - -73.369028, - 45.5243 - ], - [ - -73.368834, - 45.524507 - ], - [ - -73.368444, - 45.524772 - ], - [ - -73.367696, - 45.525244 - ], - [ - -73.367366, - 45.52545 - ], - [ - -73.36762, - 45.525662 - ], - [ - -73.368673, - 45.526476 - ], - [ - -73.369386, - 45.527027 - ], - [ - -73.369582, - 45.527324 - ], - [ - -73.369684, - 45.527581 - ], - [ - -73.369695, - 45.527688 - ], - [ - -73.369719, - 45.527905 - ], - [ - -73.369744, - 45.529772 - ], - [ - -73.369745, - 45.529806 - ], - [ - -73.369749, - 45.529908 - ], - [ - -73.369792, - 45.531176 - ], - [ - -73.369792, - 45.531189 - ] - ] - }, - "id": 200, - "properties": { - "id": "b83de441-cf58-42ea-896c-903a035aac77", - "data": { - "gtfs": { - "shape_id": "98_2_R" - }, - "segments": [ - { - "distanceMeters": 630, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 1600, - "travelTimeSeconds": 163 - }, - { - "distanceMeters": 344, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 6033, - "travelTimeSeconds": 300 - }, - { - "distanceMeters": 6883, - "travelTimeSeconds": 360 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 440, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 389, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 391, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 97 - }, - { - "distanceMeters": 480, - "travelTimeSeconds": 122 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 40 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 20450, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11807.260076001989, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 13.11, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 11.75, - "averageSpeedWithoutDwellTimesMetersPerSecond": 13.11 - }, - "mode": "bus", - "name": "Parent", - "color": "#A32638", - "nodes": [ - "acabc807-b0f5-4579-b183-cef0484a7cc2", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "688a3f67-a176-441e-a399-c92a55de9c74", - "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", - "4aea3348-4995-4fc9-b06f-6698460c1f1d", - "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", - "36c85e4a-3286-45d4-878d-41eda74eb078", - "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", - "9b7439c4-a8e6-4ce8-8c94-dcac4e29b500", - "d58c68b9-bb4a-45d1-90ea-403c9b830625", - "15f81e09-81b0-4df0-aa79-d4603e691ccd", - "6cc3ca76-cd11-4240-ac37-33142410aacb", - "f9418d0c-9ee7-44b5-a2f0-bb6a76a0df3e", - "4f54f52f-b62c-4341-a4d5-24c02344f25b", - "d3614ff1-08ff-435f-b8f7-1a76f68a0071", - "b3d09d08-d2e3-4276-8b7a-d3d07d979e6c", - "635ebffd-b274-4e79-9618-a0203ceaa811", - "dca87cea-ccf9-454c-a18b-6489a3e1ab68", - "24a322e0-f890-4138-9c97-136b5a2cdd60", - "7d066d0e-6085-4155-a554-6e1116a797c6", - "4d10c33d-a086-4248-8e97-1236a7069436", - "1cb5ae0c-b01a-4888-87b4-f35cbbb956cf" - ], - "stops": [], - "line_id": "c735086b-1ce5-43d2-9786-14a2f474d602", - "segments": [ - 0, - 39, - 46, - 71, - 82, - 173, - 267, - 270, - 274, - 283, - 291, - 305, - 326, - 333, - 337, - 343, - 366, - 375, - 384, - 394, - 398, - 401 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 200, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.369792, - 45.531176 - ], - [ - -73.369749, - 45.529908 - ], - [ - -73.369744, - 45.529772 - ], - [ - -73.369744, - 45.529758 - ], - [ - -73.369719, - 45.527905 - ], - [ - -73.369697, - 45.527703 - ], - [ - -73.369684, - 45.527581 - ], - [ - -73.369582, - 45.527324 - ], - [ - -73.369386, - 45.527027 - ], - [ - -73.368627, - 45.52644 - ], - [ - -73.36762, - 45.525662 - ], - [ - -73.367366, - 45.52545 - ], - [ - -73.367696, - 45.525244 - ], - [ - -73.368444, - 45.524772 - ], - [ - -73.368834, - 45.524507 - ], - [ - -73.369028, - 45.5243 - ], - [ - -73.36921, - 45.523999 - ], - [ - -73.369289, - 45.523693 - ], - [ - -73.369286, - 45.522992 - ], - [ - -73.369285, - 45.522762 - ], - [ - -73.369289, - 45.522629 - ], - [ - -73.369241, - 45.520998 - ], - [ - -73.369225, - 45.520454 - ], - [ - -73.36922, - 45.52035 - ], - [ - -73.368621, - 45.520354 - ], - [ - -73.368584, - 45.520355 - ], - [ - -73.368553, - 45.520357 - ], - [ - -73.368191, - 45.520371 - ], - [ - -73.367119, - 45.520464 - ], - [ - -73.366798, - 45.520491 - ], - [ - -73.365403, - 45.520602 - ], - [ - -73.362854, - 45.520815 - ], - [ - -73.361522, - 45.520934 - ], - [ - -73.361257, - 45.520957 - ], - [ - -73.361088, - 45.519832 - ], - [ - -73.361078, - 45.519769 - ], - [ - -73.361044, - 45.519729 - ], - [ - -73.360928, - 45.519697 - ], - [ - -73.36065, - 45.51971 - ], - [ - -73.360243, - 45.519741 - ], - [ - -73.359782, - 45.519783 - ], - [ - -73.35884, - 45.519868 - ], - [ - -73.358471, - 45.519901 - ], - [ - -73.358096, - 45.519923 - ], - [ - -73.358007, - 45.519923 - ], - [ - -73.357922, - 45.519918 - ], - [ - -73.357731, - 45.519864 - ], - [ - -73.357562, - 45.519805 - ], - [ - -73.357425, - 45.519702 - ], - [ - -73.356668, - 45.519098 - ], - [ - -73.356509, - 45.518972 - ], - [ - -73.356103, - 45.518661 - ], - [ - -73.355851, - 45.518453 - ], - [ - -73.3557, - 45.518336 - ], - [ - -73.35554, - 45.51821 - ], - [ - -73.355464, - 45.518151 - ], - [ - -73.355224, - 45.517998 - ], - [ - -73.355058, - 45.517908 - ], - [ - -73.354896, - 45.517822 - ], - [ - -73.354639, - 45.5177 - ], - [ - -73.354374, - 45.517597 - ], - [ - -73.35413, - 45.51752 - ], - [ - -73.35404, - 45.5175 - ], - [ - -73.353964, - 45.517484 - ], - [ - -73.353847, - 45.517452 - ], - [ - -73.353913, - 45.517241 - ], - [ - -73.353961, - 45.517124 - ], - [ - -73.354012, - 45.517002 - ], - [ - -73.354038, - 45.516939 - ], - [ - -73.354065, - 45.516876 - ], - [ - -73.354098, - 45.516813 - ], - [ - -73.354129, - 45.516755 - ], - [ - -73.35418, - 45.516665 - ], - [ - -73.354282, - 45.516521 - ], - [ - -73.354404, - 45.516368 - ], - [ - -73.354562, - 45.51622 - ], - [ - -73.354639, - 45.516144 - ], - [ - -73.354763, - 45.516045 - ], - [ - -73.354876, - 45.515964 - ], - [ - -73.355155, - 45.515784 - ], - [ - -73.355267, - 45.515713 - ], - [ - -73.355353, - 45.515673 - ], - [ - -73.355435, - 45.515636 - ], - [ - -73.355629, - 45.515555 - ], - [ - -73.355723, - 45.515515 - ], - [ - -73.35603, - 45.515426 - ], - [ - -73.356223, - 45.515381 - ], - [ - -73.356733, - 45.515323 - ], - [ - -73.357346, - 45.515261 - ], - [ - -73.35791, - 45.515226 - ], - [ - -73.358009, - 45.515219 - ], - [ - -73.358869, - 45.515164 - ], - [ - -73.361292, - 45.515014 - ], - [ - -73.36156, - 45.514996 - ], - [ - -73.362143, - 45.514958 - ], - [ - -73.364936, - 45.514775 - ], - [ - -73.365804, - 45.514718 - ], - [ - -73.366158, - 45.514696 - ], - [ - -73.366978, - 45.514647 - ], - [ - -73.367106, - 45.514639 - ], - [ - -73.367121, - 45.514638 - ], - [ - -73.367413, - 45.514639 - ], - [ - -73.36767, - 45.514675 - ], - [ - -73.367705, - 45.514684 - ], - [ - -73.367986, - 45.514774 - ], - [ - -73.368285, - 45.514919 - ], - [ - -73.368381, - 45.514986 - ], - [ - -73.368487, - 45.515058 - ], - [ - -73.368593, - 45.51513 - ], - [ - -73.368707, - 45.515243 - ], - [ - -73.368826, - 45.515365 - ], - [ - -73.368961, - 45.515549 - ], - [ - -73.369002, - 45.515653 - ], - [ - -73.36905, - 45.515765 - ], - [ - -73.369062, - 45.515873 - ], - [ - -73.369087, - 45.516022 - ], - [ - -73.369094, - 45.516179 - ], - [ - -73.369101, - 45.5164 - ], - [ - -73.36911, - 45.516625 - ], - [ - -73.36912, - 45.516899 - ], - [ - -73.369128, - 45.517111 - ], - [ - -73.369131, - 45.517357 - ], - [ - -73.369131, - 45.517363 - ], - [ - -73.369133, - 45.51752 - ], - [ - -73.369139, - 45.517651 - ], - [ - -73.369147, - 45.517839 - ], - [ - -73.369153, - 45.518145 - ], - [ - -73.369156, - 45.518379 - ], - [ - -73.369164, - 45.518717 - ], - [ - -73.369173, - 45.519041 - ], - [ - -73.369183, - 45.519383 - ], - [ - -73.369187, - 45.519565 - ], - [ - -73.369192, - 45.519761 - ], - [ - -73.369205, - 45.519905 - ], - [ - -73.369207, - 45.520049 - ], - [ - -73.36922, - 45.52035 - ], - [ - -73.369225, - 45.520454 - ], - [ - -73.370151, - 45.520446 - ], - [ - -73.371725, - 45.520433 - ], - [ - -73.373172, - 45.520409 - ], - [ - -73.373182, - 45.520409 - ], - [ - -73.374498, - 45.520455 - ], - [ - -73.374645, - 45.520482 - ], - [ - -73.37474, - 45.520527 - ], - [ - -73.374813, - 45.520577 - ], - [ - -73.374873, - 45.52064 - ], - [ - -73.375034, - 45.520996 - ], - [ - -73.375039, - 45.521108 - ], - [ - -73.375076, - 45.522539 - ], - [ - -73.374949, - 45.522539 - ], - [ - -73.373886, - 45.522555 - ], - [ - -73.37374, - 45.522542 - ], - [ - -73.373586, - 45.522519 - ], - [ - -73.373444, - 45.522483 - ], - [ - -73.373311, - 45.522429 - ], - [ - -73.373188, - 45.522357 - ], - [ - -73.373072, - 45.522271 - ], - [ - -73.372969, - 45.522172 - ], - [ - -73.372875, - 45.522059 - ], - [ - -73.372796, - 45.521942 - ], - [ - -73.372726, - 45.521812 - ], - [ - -73.372669, - 45.521677 - ], - [ - -73.372586, - 45.521398 - ], - [ - -73.372564, - 45.521254 - ], - [ - -73.372403, - 45.519427 - ], - [ - -73.372315, - 45.518235 - ], - [ - -73.372258, - 45.516327 - ], - [ - -73.372237, - 45.516003 - ], - [ - -73.372279, - 45.515674 - ], - [ - -73.372302, - 45.515252 - ], - [ - -73.372346, - 45.51419 - ], - [ - -73.372352, - 45.513843 - ], - [ - -73.372333, - 45.513069 - ], - [ - -73.372367, - 45.512701 - ], - [ - -73.372379, - 45.512584 - ], - [ - -73.37241, - 45.512467 - ], - [ - -73.37248, - 45.512318 - ], - [ - -73.372584, - 45.512152 - ], - [ - -73.372728, - 45.512026 - ], - [ - -73.372841, - 45.511954 - ], - [ - -73.372963, - 45.511905 - ], - [ - -73.373166, - 45.511851 - ], - [ - -73.373291, - 45.511833 - ], - [ - -73.37374, - 45.511789 - ], - [ - -73.376336, - 45.511549 - ], - [ - -73.378654, - 45.511371 - ], - [ - -73.380532, - 45.511225 - ], - [ - -73.382346, - 45.511105 - ], - [ - -73.384597, - 45.510914 - ], - [ - -73.392277, - 45.510503 - ], - [ - -73.393587, - 45.510437 - ], - [ - -73.396204, - 45.51027 - ], - [ - -73.396575, - 45.510246 - ], - [ - -73.399702, - 45.510041 - ], - [ - -73.416479, - 45.508939 - ], - [ - -73.418591, - 45.508796 - ], - [ - -73.422517, - 45.50853 - ], - [ - -73.424264, - 45.508396 - ], - [ - -73.424552, - 45.508369 - ], - [ - -73.425839, - 45.508343 - ], - [ - -73.427203, - 45.508276 - ], - [ - -73.430462, - 45.508094 - ], - [ - -73.431379, - 45.50803 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431709, - 45.508009 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.432209, - 45.507974 - ], - [ - -73.432744, - 45.507937 - ], - [ - -73.435178, - 45.507773 - ], - [ - -73.437575, - 45.507662 - ], - [ - -73.438988, - 45.507572 - ], - [ - -73.440344, - 45.507425 - ], - [ - -73.445881, - 45.507063 - ], - [ - -73.452257, - 45.506638 - ], - [ - -73.452565, - 45.506616 - ], - [ - -73.453776, - 45.50654 - ], - [ - -73.455247, - 45.506419 - ], - [ - -73.456957, - 45.50624 - ], - [ - -73.460279, - 45.505832 - ], - [ - -73.460374, - 45.505823 - ], - [ - -73.461182, - 45.505728 - ], - [ - -73.462162, - 45.505642 - ], - [ - -73.463671, - 45.505509 - ], - [ - -73.465111, - 45.505401 - ], - [ - -73.467755, - 45.505222 - ], - [ - -73.468692, - 45.505168 - ], - [ - -73.47019, - 45.505064 - ], - [ - -73.470746, - 45.505025 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.482932, - 45.504143 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492932, - 45.510114 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494204, - 45.510801 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497937, - 45.512057 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.500628, - 45.512866 - ], - [ - -73.500836, - 45.512931 - ], - [ - -73.502033, - 45.513303 - ], - [ - -73.505335, - 45.514355 - ], - [ - -73.506642, - 45.51477 - ], - [ - -73.507293, - 45.514976 - ], - [ - -73.50757, - 45.515057 - ], - [ - -73.508383, - 45.515323 - ], - [ - -73.509009, - 45.515606 - ], - [ - -73.509231, - 45.515687 - ], - [ - -73.509741, - 45.515862 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513711, - 45.518781 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518897, - 45.52063 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520267, - 45.521193 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520363, - 45.524395 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520729, - 45.524095 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.520811, - 45.523427 - ] - ] - }, - "id": 201, - "properties": { - "id": "35fdcc70-f31d-44be-8a89-005ecc221068", - "data": { - "gtfs": { - "shape_id": "98_2_A" - }, - "segments": [ - { - "distanceMeters": 158, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 480, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 344, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 440, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 389, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 391, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 6678, - "travelTimeSeconds": 348 - }, - { - "distanceMeters": 5273, - "travelTimeSeconds": 300 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 1941, - "travelTimeSeconds": 360 - }, - { - "distanceMeters": 845, - "travelTimeSeconds": 157 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 186, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 19746, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11778.417279524518, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 10.62, - "travelTimeWithoutDwellTimesSeconds": 1860, - "operatingTimeWithLayoverTimeSeconds": 2046, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1860, - "operatingSpeedWithLayoverMetersPerSecond": 9.65, - "averageSpeedWithoutDwellTimesMetersPerSecond": 10.62 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "525aaea9-a48f-4335-b4bb-4f671d4d9a31", - "4d10c33d-a086-4248-8e97-1236a7069436", - "7d066d0e-6085-4155-a554-6e1116a797c6", - "24a322e0-f890-4138-9c97-136b5a2cdd60", - "dca87cea-ccf9-454c-a18b-6489a3e1ab68", - "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", - "36c85e4a-3286-45d4-878d-41eda74eb078", - "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", - "9b7439c4-a8e6-4ce8-8c94-dcac4e29b500", - "d58c68b9-bb4a-45d1-90ea-403c9b830625", - "15f81e09-81b0-4df0-aa79-d4603e691ccd", - "6cc3ca76-cd11-4240-ac37-33142410aacb", - "f9418d0c-9ee7-44b5-a2f0-bb6a76a0df3e", - "4f54f52f-b62c-4341-a4d5-24c02344f25b", - "d3614ff1-08ff-435f-b8f7-1a76f68a0071", - "b3d09d08-d2e3-4276-8b7a-d3d07d979e6c", - "635ebffd-b274-4e79-9618-a0203ceaa811", - "2c8a6d09-2eb8-47e3-86bb-ac6501351f3b", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "acabc807-b0f5-4579-b183-cef0484a7cc2" - ], - "stops": [], - "line_id": "c735086b-1ce5-43d2-9786-14a2f474d602", - "segments": [ - 0, - 3, - 5, - 9, - 18, - 25, - 28, - 32, - 41, - 49, - 62, - 83, - 90, - 94, - 99, - 121, - 131, - 202, - 262, - 275, - 316 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 201, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.343677, - 45.513165 - ], - [ - -73.34367, - 45.513061 - ], - [ - -73.343642, - 45.512791 - ], - [ - -73.343612, - 45.512647 - ], - [ - -73.343567, - 45.512534 - ], - [ - -73.343389, - 45.512141 - ], - [ - -73.343354, - 45.512062 - ], - [ - -73.343097, - 45.5121 - ], - [ - -73.343038, - 45.512092 - ], - [ - -73.342894, - 45.512074 - ], - [ - -73.342741, - 45.512043 - ], - [ - -73.342629, - 45.512011 - ], - [ - -73.342349, - 45.511934 - ], - [ - -73.341938, - 45.511803 - ], - [ - -73.341736, - 45.511731 - ], - [ - -73.341412, - 45.51159 - ], - [ - -73.341146, - 45.511475 - ], - [ - -73.341122, - 45.511465 - ], - [ - -73.340633, - 45.511225 - ], - [ - -73.340296, - 45.511027 - ], - [ - -73.340118, - 45.510905 - ], - [ - -73.340029, - 45.510841 - ], - [ - -73.33993, - 45.51077 - ], - [ - -73.339787, - 45.510662 - ], - [ - -73.33958, - 45.5105 - ], - [ - -73.339426, - 45.510378 - ], - [ - -73.33923, - 45.510225 - ], - [ - -73.339011, - 45.510053 - ], - [ - -73.338812, - 45.5099 - ], - [ - -73.338649, - 45.509765 - ], - [ - -73.338438, - 45.509603 - ], - [ - -73.338251, - 45.509472 - ], - [ - -73.338077, - 45.509382 - ], - [ - -73.337875, - 45.5093 - ], - [ - -73.337654, - 45.509233 - ], - [ - -73.337473, - 45.509192 - ], - [ - -73.337253, - 45.509165 - ], - [ - -73.337049, - 45.509155 - ], - [ - -73.336952, - 45.509157 - ], - [ - -73.336939, - 45.509159 - ], - [ - -73.336547, - 45.509188 - ], - [ - -73.336515, - 45.509192 - ], - [ - -73.336225, - 45.509224 - ], - [ - -73.33614, - 45.509238 - ], - [ - -73.336059, - 45.509261 - ], - [ - -73.335984, - 45.509292 - ], - [ - -73.335916, - 45.509331 - ], - [ - -73.335544, - 45.509572 - ], - [ - -73.335336, - 45.509723 - ], - [ - -73.335253, - 45.509783 - ], - [ - -73.33485, - 45.510077 - ], - [ - -73.334454, - 45.510366 - ], - [ - -73.334013, - 45.510683 - ], - [ - -73.333664, - 45.510909 - ], - [ - -73.333081, - 45.511289 - ], - [ - -73.332968, - 45.511363 - ], - [ - -73.332471, - 45.511692 - ], - [ - -73.332065, - 45.51196 - ], - [ - -73.331778, - 45.512149 - ], - [ - -73.331385, - 45.512407 - ], - [ - -73.33106, - 45.512615 - ], - [ - -73.330794, - 45.512786 - ], - [ - -73.330507, - 45.512975 - ], - [ - -73.32972, - 45.513518 - ], - [ - -73.32948, - 45.513693 - ], - [ - -73.329221, - 45.51389 - ], - [ - -73.32877, - 45.514101 - ], - [ - -73.328632, - 45.514161 - ], - [ - -73.328456, - 45.514236 - ], - [ - -73.328284, - 45.514321 - ], - [ - -73.327945, - 45.514388 - ], - [ - -73.32769, - 45.514424 - ], - [ - -73.326299, - 45.514534 - ], - [ - -73.325842, - 45.514565 - ], - [ - -73.325331, - 45.514602 - ], - [ - -73.324882, - 45.514635 - ], - [ - -73.324037, - 45.514697 - ], - [ - -73.323935, - 45.514703 - ], - [ - -73.323824, - 45.514709 - ], - [ - -73.32364, - 45.514723 - ], - [ - -73.322784, - 45.514785 - ], - [ - -73.320491, - 45.514943 - ], - [ - -73.320313, - 45.514954 - ], - [ - -73.320068, - 45.51497 - ], - [ - -73.319813, - 45.514987 - ], - [ - -73.319504, - 45.515014 - ], - [ - -73.31929, - 45.515022 - ], - [ - -73.319076, - 45.51504 - ], - [ - -73.318751, - 45.515062 - ], - [ - -73.318468, - 45.515075 - ], - [ - -73.318303, - 45.515085 - ], - [ - -73.318161, - 45.515093 - ], - [ - -73.317967, - 45.515098 - ], - [ - -73.317909, - 45.5151 - ], - [ - -73.317815, - 45.515109 - ], - [ - -73.317711, - 45.515131 - ], - [ - -73.317676, - 45.515131 - ], - [ - -73.317558, - 45.515133 - ], - [ - -73.317556, - 45.51535 - ], - [ - -73.317556, - 45.515379 - ], - [ - -73.317555, - 45.515401 - ], - [ - -73.317518, - 45.516504 - ], - [ - -73.317461, - 45.516823 - ], - [ - -73.317399, - 45.517358 - ], - [ - -73.31739, - 45.517605 - ], - [ - -73.317378, - 45.517798 - ], - [ - -73.31736, - 45.518111 - ], - [ - -73.317348, - 45.518295 - ], - [ - -73.317339, - 45.518442 - ], - [ - -73.31733, - 45.518584 - ], - [ - -73.317374, - 45.51884 - ], - [ - -73.317442, - 45.519063 - ], - [ - -73.317668, - 45.519485 - ], - [ - -73.317719, - 45.519565 - ], - [ - -73.317762, - 45.519631 - ], - [ - -73.318032, - 45.519996 - ], - [ - -73.318144, - 45.52016 - ], - [ - -73.318342, - 45.520362 - ], - [ - -73.318461, - 45.520393 - ], - [ - -73.318552, - 45.520474 - ], - [ - -73.31864, - 45.520551 - ], - [ - -73.318732, - 45.520632 - ], - [ - -73.318986, - 45.520847 - ], - [ - -73.319781, - 45.521516 - ], - [ - -73.32099, - 45.522525 - ], - [ - -73.321254, - 45.522753 - ], - [ - -73.321325, - 45.522814 - ], - [ - -73.322064, - 45.52344 - ], - [ - -73.322913, - 45.524157 - ], - [ - -73.323443, - 45.524603 - ], - [ - -73.324419, - 45.525429 - ], - [ - -73.324477, - 45.525478 - ], - [ - -73.324515, - 45.525523 - ], - [ - -73.325411, - 45.526298 - ], - [ - -73.325817, - 45.526587 - ], - [ - -73.32645, - 45.527068 - ], - [ - -73.326635, - 45.527209 - ], - [ - -73.327746, - 45.528029 - ], - [ - -73.328049, - 45.528245 - ], - [ - -73.328159, - 45.528322 - ], - [ - -73.328691, - 45.528715 - ], - [ - -73.330009, - 45.529693 - ], - [ - -73.330637, - 45.530164 - ], - [ - -73.330761, - 45.530256 - ], - [ - -73.330825, - 45.530292 - ], - [ - -73.331492, - 45.529797 - ], - [ - -73.331877, - 45.529511 - ], - [ - -73.331967, - 45.529457 - ], - [ - -73.332637, - 45.528977 - ], - [ - -73.332867, - 45.528823 - ], - [ - -73.333063, - 45.528692 - ], - [ - -73.333275, - 45.52855 - ], - [ - -73.333439, - 45.528436 - ], - [ - -73.333788, - 45.528191 - ], - [ - -73.334536, - 45.527695 - ], - [ - -73.334545, - 45.527688 - ], - [ - -73.334622, - 45.527643 - ], - [ - -73.334776, - 45.527545 - ], - [ - -73.335456, - 45.527046 - ], - [ - -73.336098, - 45.526556 - ], - [ - -73.336249, - 45.52644 - ], - [ - -73.336573, - 45.52618 - ], - [ - -73.337228, - 45.52569 - ], - [ - -73.337669, - 45.525344 - ], - [ - -73.338067, - 45.525056 - ], - [ - -73.338368, - 45.524837 - ], - [ - -73.339197, - 45.525405 - ], - [ - -73.339713, - 45.525764 - ], - [ - -73.339812, - 45.525833 - ], - [ - -73.340005, - 45.525968 - ], - [ - -73.340357, - 45.526185 - ], - [ - -73.340568, - 45.526316 - ], - [ - -73.340738, - 45.526442 - ], - [ - -73.341034, - 45.526636 - ], - [ - -73.341462, - 45.526915 - ], - [ - -73.34183, - 45.527172 - ], - [ - -73.341932, - 45.527254 - ], - [ - -73.341994, - 45.527303 - ], - [ - -73.342074, - 45.527389 - ], - [ - -73.341972, - 45.527469 - ], - [ - -73.341594, - 45.527797 - ], - [ - -73.341101, - 45.528233 - ], - [ - -73.341005, - 45.528323 - ], - [ - -73.340913, - 45.528409 - ], - [ - -73.340784, - 45.52853 - ], - [ - -73.340213, - 45.529055 - ], - [ - -73.339969, - 45.529289 - ], - [ - -73.339868, - 45.529375 - ], - [ - -73.339738, - 45.529486 - ], - [ - -73.340316, - 45.529904 - ], - [ - -73.340388, - 45.529956 - ], - [ - -73.340412, - 45.529974 - ], - [ - -73.341348, - 45.530649 - ], - [ - -73.341671, - 45.530886 - ], - [ - -73.34171, - 45.530915 - ], - [ - -73.342548, - 45.531528 - ], - [ - -73.34266, - 45.53161 - ], - [ - -73.342742, - 45.531673 - ], - [ - -73.34576, - 45.533862 - ], - [ - -73.34588, - 45.533949 - ], - [ - -73.346177, - 45.534156 - ], - [ - -73.346943, - 45.534715 - ], - [ - -73.347187, - 45.5349 - ], - [ - -73.347431, - 45.535038 - ], - [ - -73.347547, - 45.535103 - ], - [ - -73.347857, - 45.535261 - ], - [ - -73.348456, - 45.53559 - ], - [ - -73.348803, - 45.535802 - ], - [ - -73.349, - 45.535934 - ], - [ - -73.349066, - 45.535978 - ], - [ - -73.349411, - 45.536275 - ], - [ - -73.349756, - 45.536582 - ], - [ - -73.350274, - 45.537136 - ], - [ - -73.350577, - 45.537487 - ], - [ - -73.350671, - 45.537597 - ], - [ - -73.350743, - 45.537681 - ], - [ - -73.350799, - 45.537748 - ], - [ - -73.351092, - 45.537645 - ], - [ - -73.351237, - 45.53761 - ], - [ - -73.351597, - 45.537552 - ], - [ - -73.351624, - 45.538143 - ], - [ - -73.351634, - 45.538348 - ], - [ - -73.351725, - 45.540234 - ], - [ - -73.351731, - 45.540355 - ], - [ - -73.352072, - 45.540349 - ], - [ - -73.352742, - 45.540338 - ], - [ - -73.3537, - 45.540317 - ], - [ - -73.354369, - 45.540304 - ], - [ - -73.354373, - 45.5403 - ], - [ - -73.354728, - 45.540161 - ], - [ - -73.354784, - 45.540132 - ], - [ - -73.354958, - 45.540044 - ], - [ - -73.355561, - 45.539685 - ], - [ - -73.355856, - 45.539514 - ], - [ - -73.35601, - 45.539397 - ], - [ - -73.356049, - 45.53937 - ], - [ - -73.356087, - 45.539334 - ], - [ - -73.356151, - 45.539281 - ], - [ - -73.35618, - 45.539252 - ], - [ - -73.356215, - 45.539218 - ], - [ - -73.356254, - 45.539173 - ], - [ - -73.356267, - 45.539146 - ], - [ - -73.356318, - 45.539011 - ], - [ - -73.35637, - 45.538876 - ], - [ - -73.356333, - 45.538462 - ], - [ - -73.35632, - 45.5383 - ], - [ - -73.356334, - 45.538084 - ], - [ - -73.356384, - 45.537909 - ], - [ - -73.356385, - 45.537904 - ], - [ - -73.356488, - 45.537706 - ], - [ - -73.356386, - 45.537688 - ], - [ - -73.356194, - 45.537616 - ], - [ - -73.356138, - 45.537582 - ], - [ - -73.356028, - 45.537517 - ], - [ - -73.35581, - 45.537381 - ], - [ - -73.355606, - 45.537228 - ], - [ - -73.354978, - 45.536786 - ], - [ - -73.354672, - 45.536579 - ], - [ - -73.35439, - 45.536363 - ], - [ - -73.354342, - 45.536328 - ], - [ - -73.354237, - 45.536255 - ], - [ - -73.354085, - 45.536133 - ], - [ - -73.353353, - 45.535601 - ], - [ - -73.35292, - 45.535293 - ], - [ - -73.352814, - 45.535218 - ], - [ - -73.352683, - 45.535132 - ], - [ - -73.352431, - 45.534966 - ], - [ - -73.352156, - 45.534794 - ], - [ - -73.351899, - 45.534632 - ], - [ - -73.351631, - 45.534461 - ], - [ - -73.351414, - 45.534325 - ], - [ - -73.351196, - 45.534181 - ], - [ - -73.350966, - 45.53401 - ], - [ - -73.350903, - 45.533966 - ], - [ - -73.350778, - 45.533879 - ], - [ - -73.350008, - 45.533298 - ], - [ - -73.348915, - 45.532502 - ], - [ - -73.348768, - 45.532396 - ], - [ - -73.347297, - 45.5313 - ], - [ - -73.346954, - 45.531044 - ], - [ - -73.345599, - 45.530065 - ], - [ - -73.345369, - 45.529899 - ], - [ - -73.345813, - 45.52961 - ], - [ - -73.346177, - 45.529374 - ], - [ - -73.347158, - 45.528674 - ], - [ - -73.347279, - 45.528588 - ], - [ - -73.348094, - 45.52806 - ], - [ - -73.348499, - 45.527798 - ], - [ - -73.349319, - 45.52725 - ], - [ - -73.350087, - 45.526724 - ], - [ - -73.350285, - 45.52659 - ], - [ - -73.350534, - 45.526433 - ], - [ - -73.350958, - 45.526271 - ], - [ - -73.350985, - 45.526261 - ], - [ - -73.351151, - 45.526199 - ], - [ - -73.351917, - 45.525931 - ], - [ - -73.351851, - 45.525827 - ], - [ - -73.351836, - 45.525786 - ], - [ - -73.351798, - 45.525714 - ], - [ - -73.351721, - 45.525594 - ], - [ - -73.351697, - 45.525557 - ], - [ - -73.3516, - 45.525453 - ], - [ - -73.351587, - 45.525442 - ], - [ - -73.351479, - 45.52535 - ], - [ - -73.351402, - 45.525286 - ], - [ - -73.350822, - 45.524876 - ], - [ - -73.349891, - 45.524214 - ], - [ - -73.349706, - 45.524081 - ], - [ - -73.349594, - 45.524002 - ], - [ - -73.349337, - 45.523831 - ], - [ - -73.348978, - 45.523614 - ], - [ - -73.348701, - 45.523497 - ], - [ - -73.348489, - 45.52342 - ], - [ - -73.348302, - 45.523361 - ], - [ - -73.348012, - 45.523289 - ], - [ - -73.347832, - 45.523257 - ], - [ - -73.347724, - 45.523245 - ], - [ - -73.347705, - 45.523243 - ], - [ - -73.347547, - 45.523225 - ], - [ - -73.346648, - 45.523103 - ], - [ - -73.34649, - 45.52308 - ], - [ - -73.346291, - 45.523053 - ], - [ - -73.346291, - 45.52285 - ], - [ - -73.346292, - 45.522634 - ], - [ - -73.346292, - 45.522585 - ], - [ - -73.346288, - 45.52231 - ], - [ - -73.346287, - 45.522153 - ], - [ - -73.346275, - 45.522009 - ], - [ - -73.346262, - 45.52182 - ], - [ - -73.346237, - 45.521631 - ], - [ - -73.346225, - 45.521478 - ], - [ - -73.346184, - 45.521289 - ], - [ - -73.346149, - 45.521073 - ], - [ - -73.346136, - 45.521001 - ], - [ - -73.346124, - 45.520929 - ], - [ - -73.346124, - 45.520857 - ], - [ - -73.346124, - 45.520785 - ], - [ - -73.346137, - 45.520677 - ], - [ - -73.346163, - 45.520569 - ], - [ - -73.346174, - 45.520519 - ], - [ - -73.346222, - 45.520303 - ], - [ - -73.346306, - 45.519804 - ], - [ - -73.346397, - 45.519174 - ], - [ - -73.346424, - 45.518967 - ], - [ - -73.346438, - 45.518725 - ], - [ - -73.34645, - 45.518527 - ], - [ - -73.345381, - 45.518517 - ], - [ - -73.344748, - 45.518511 - ], - [ - -73.344537, - 45.51843 - ], - [ - -73.34438, - 45.518344 - ], - [ - -73.344264, - 45.518227 - ], - [ - -73.344137, - 45.518006 - ], - [ - -73.344045, - 45.516998 - ], - [ - -73.344008, - 45.516632 - ], - [ - -73.343805, - 45.514586 - ], - [ - -73.343782, - 45.514392 - ], - [ - -73.343763, - 45.514238 - ], - [ - -73.343701, - 45.513718 - ], - [ - -73.343799, - 45.513709 - ], - [ - -73.357647, - 45.512814 - ], - [ - -73.358491, - 45.512756 - ], - [ - -73.359423, - 45.512694 - ], - [ - -73.359555, - 45.512681 - ], - [ - -73.360882, - 45.512602 - ], - [ - -73.36168, - 45.512531 - ], - [ - -73.362369, - 45.512441 - ], - [ - -73.363202, - 45.512325 - ], - [ - -73.364624, - 45.512098 - ], - [ - -73.366158, - 45.511879 - ], - [ - -73.367686, - 45.511615 - ], - [ - -73.367934, - 45.51158 - ], - [ - -73.368481, - 45.511535 - ], - [ - -73.368699, - 45.511527 - ], - [ - -73.369078, - 45.51155 - ], - [ - -73.370401, - 45.511691 - ], - [ - -73.370685, - 45.511713 - ], - [ - -73.370961, - 45.511723 - ], - [ - -73.371234, - 45.511723 - ], - [ - -73.371918, - 45.511719 - ], - [ - -73.373195, - 45.511581 - ], - [ - -73.373585, - 45.511546 - ], - [ - -73.373778, - 45.511519 - ], - [ - -73.374154, - 45.511452 - ], - [ - -73.374325, - 45.511398 - ], - [ - -73.374487, - 45.51134 - ], - [ - -73.374637, - 45.511272 - ], - [ - -73.374771, - 45.511191 - ], - [ - -73.374884, - 45.511102 - ], - [ - -73.374978, - 45.511003 - ], - [ - -73.375051, - 45.510895 - ], - [ - -73.375109, - 45.510782 - ], - [ - -73.375141, - 45.51067 - ], - [ - -73.375153, - 45.510548 - ], - [ - -73.375148, - 45.510427 - ], - [ - -73.375124, - 45.510301 - ], - [ - -73.375099, - 45.510225 - ], - [ - -73.375083, - 45.510175 - ], - [ - -73.375023, - 45.510049 - ], - [ - -73.374952, - 45.509923 - ], - [ - -73.374866, - 45.509797 - ], - [ - -73.374765, - 45.509675 - ], - [ - -73.374649, - 45.509554 - ], - [ - -73.374517, - 45.509441 - ], - [ - -73.374091, - 45.50913 - ], - [ - -73.373634, - 45.508918 - ], - [ - -73.373366, - 45.508787 - ], - [ - -73.373092, - 45.508616 - ], - [ - -73.372808, - 45.508386 - ], - [ - -73.372681, - 45.508256 - ], - [ - -73.37257, - 45.508112 - ], - [ - -73.372476, - 45.507967 - ], - [ - -73.3724, - 45.507819 - ], - [ - -73.372343, - 45.507679 - ], - [ - -73.372306, - 45.507517 - ], - [ - -73.372287, - 45.507369 - ], - [ - -73.372226, - 45.506676 - ], - [ - -73.372198, - 45.50623 - ], - [ - -73.372124, - 45.50556 - ], - [ - -73.372243, - 45.505043 - ], - [ - -73.372302, - 45.504692 - ], - [ - -73.372354, - 45.504449 - ], - [ - -73.372503, - 45.503954 - ], - [ - -73.372655, - 45.503576 - ], - [ - -73.373011, - 45.502875 - ], - [ - -73.373173, - 45.502587 - ], - [ - -73.37323, - 45.502511 - ], - [ - -73.373299, - 45.502439 - ], - [ - -73.373386, - 45.502385 - ], - [ - -73.373485, - 45.50234 - ], - [ - -73.37359, - 45.502313 - ], - [ - -73.373645, - 45.502304 - ], - [ - -73.37369, - 45.5023 - ], - [ - -73.37385, - 45.502305 - ], - [ - -73.373969, - 45.502327 - ], - [ - -73.374235, - 45.502395 - ], - [ - -73.374326, - 45.502409 - ], - [ - -73.374466, - 45.502454 - ], - [ - -73.374786, - 45.50253 - ], - [ - -73.375092, - 45.502612 - ], - [ - -73.375264, - 45.502648 - ], - [ - -73.375427, - 45.502684 - ], - [ - -73.375574, - 45.502747 - ], - [ - -73.376319, - 45.503059 - ], - [ - -73.376016, - 45.503247 - ], - [ - -73.375972, - 45.503274 - ], - [ - -73.375788, - 45.503416 - ], - [ - -73.375698, - 45.503485 - ], - [ - -73.375447, - 45.503715 - ], - [ - -73.375293, - 45.503854 - ], - [ - -73.37517, - 45.50398 - ], - [ - -73.374998, - 45.504213 - ], - [ - -73.374854, - 45.504429 - ], - [ - -73.374722, - 45.5046 - ], - [ - -73.374697, - 45.504635 - ], - [ - -73.374625, - 45.504735 - ], - [ - -73.374598, - 45.504793 - ], - [ - -73.374583, - 45.504843 - ], - [ - -73.374565, - 45.504919 - ], - [ - -73.374581, - 45.50514 - ], - [ - -73.37462, - 45.505338 - ], - [ - -73.374746, - 45.505563 - ], - [ - -73.374844, - 45.505788 - ], - [ - -73.374851, - 45.5058 - ], - [ - -73.374873, - 45.505837 - ], - [ - -73.374919, - 45.505916 - ], - [ - -73.374951, - 45.505973 - ], - [ - -73.375061, - 45.506067 - ], - [ - -73.375295, - 45.506238 - ], - [ - -73.375424, - 45.506333 - ], - [ - -73.375748, - 45.506597 - ], - [ - -73.375784, - 45.506626 - ], - [ - -73.375859, - 45.506698 - ], - [ - -73.375911, - 45.506761 - ], - [ - -73.375985, - 45.506896 - ], - [ - -73.376046, - 45.507022 - ], - [ - -73.376084, - 45.507108 - ], - [ - -73.376268, - 45.507459 - ], - [ - -73.376298, - 45.507513 - ], - [ - -73.376345, - 45.507576 - ], - [ - -73.3764, - 45.507639 - ], - [ - -73.376512, - 45.507729 - ], - [ - -73.376632, - 45.507801 - ], - [ - -73.376837, - 45.507891 - ], - [ - -73.376868, - 45.507902 - ], - [ - -73.376914, - 45.507917 - ], - [ - -73.377114, - 45.507982 - ], - [ - -73.377442, - 45.508081 - ], - [ - -73.377571, - 45.508108 - ], - [ - -73.377699, - 45.508135 - ], - [ - -73.377779, - 45.508144 - ], - [ - -73.377878, - 45.50815 - ], - [ - -73.377933, - 45.508153 - ], - [ - -73.378119, - 45.508163 - ], - [ - -73.378452, - 45.508145 - ], - [ - -73.378562, - 45.50814 - ], - [ - -73.378928, - 45.508124 - ], - [ - -73.379147, - 45.508114 - ], - [ - -73.3793, - 45.508105 - ], - [ - -73.379404, - 45.508091 - ], - [ - -73.379526, - 45.508074 - ], - [ - -73.379622, - 45.508047 - ], - [ - -73.379724, - 45.508025 - ], - [ - -73.379863, - 45.507975 - ], - [ - -73.380059, - 45.50789 - ], - [ - -73.380179, - 45.507823 - ], - [ - -73.380268, - 45.507759 - ], - [ - -73.380399, - 45.507666 - ], - [ - -73.380423, - 45.507647 - ], - [ - -73.380503, - 45.507585 - ], - [ - -73.380626, - 45.507481 - ], - [ - -73.380959, - 45.507647 - ], - [ - -73.38128, - 45.507806 - ], - [ - -73.380619, - 45.508917 - ], - [ - -73.380471, - 45.509177 - ], - [ - -73.380338, - 45.509474 - ], - [ - -73.380312, - 45.5096 - ], - [ - -73.380265, - 45.50983 - ], - [ - -73.380243, - 45.510001 - ], - [ - -73.380243, - 45.510041 - ], - [ - -73.380292, - 45.510284 - ], - [ - -73.380332, - 45.510388 - ], - [ - -73.380377, - 45.510478 - ], - [ - -73.380512, - 45.51068 - ], - [ - -73.3806, - 45.510779 - ], - [ - -73.380706, - 45.510874 - ], - [ - -73.380825, - 45.510964 - ], - [ - -73.380962, - 45.511045 - ], - [ - -73.381113, - 45.511117 - ], - [ - -73.381279, - 45.511176 - ], - [ - -73.381458, - 45.511217 - ], - [ - -73.381649, - 45.511244 - ], - [ - -73.38185, - 45.511257 - ], - [ - -73.382059, - 45.511258 - ], - [ - -73.382278, - 45.511249 - ], - [ - -73.383255, - 45.51116 - ], - [ - -73.386918, - 45.510876 - ], - [ - -73.388705, - 45.510769 - ], - [ - -73.390511, - 45.510672 - ], - [ - -73.391744, - 45.51057 - ], - [ - -73.392277, - 45.510503 - ], - [ - -73.393587, - 45.510437 - ], - [ - -73.396575, - 45.510246 - ], - [ - -73.416479, - 45.508939 - ], - [ - -73.422517, - 45.50853 - ], - [ - -73.424264, - 45.508396 - ], - [ - -73.424552, - 45.508369 - ], - [ - -73.427299, - 45.508128 - ], - [ - -73.428057, - 45.508066 - ], - [ - -73.428658, - 45.508016 - ], - [ - -73.429661, - 45.507941 - ], - [ - -73.431208, - 45.507842 - ], - [ - -73.432577, - 45.507753 - ], - [ - -73.43342, - 45.507709 - ], - [ - -73.434603, - 45.507674 - ], - [ - -73.436686, - 45.507634 - ], - [ - -73.43758, - 45.507603 - ], - [ - -73.438175, - 45.507572 - ], - [ - -73.440344, - 45.507425 - ], - [ - -73.445881, - 45.507063 - ], - [ - -73.452257, - 45.506638 - ], - [ - -73.452565, - 45.506616 - ], - [ - -73.453776, - 45.50654 - ], - [ - -73.455247, - 45.506419 - ], - [ - -73.456957, - 45.50624 - ], - [ - -73.460279, - 45.505832 - ], - [ - -73.460374, - 45.505823 - ], - [ - -73.461182, - 45.505728 - ], - [ - -73.463671, - 45.505509 - ], - [ - -73.465111, - 45.505401 - ], - [ - -73.467755, - 45.505222 - ], - [ - -73.468692, - 45.505168 - ], - [ - -73.470746, - 45.505025 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492934, - 45.510116 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497942, - 45.512059 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.500628, - 45.512866 - ], - [ - -73.500836, - 45.512931 - ], - [ - -73.502033, - 45.513303 - ], - [ - -73.505335, - 45.514355 - ], - [ - -73.505365, - 45.514365 - ], - [ - -73.507293, - 45.514976 - ], - [ - -73.50757, - 45.515057 - ], - [ - -73.508383, - 45.515323 - ], - [ - -73.509009, - 45.515606 - ], - [ - -73.509231, - 45.515687 - ], - [ - -73.509741, - 45.515862 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515013, - 45.519426 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518906, - 45.520633 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520267, - 45.521193 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.52068, - 45.524093 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.520811, - 45.523427 - ] - ] - }, - "id": 202, - "properties": { - "id": "94a82da1-35b8-4b5a-8242-65f41deed062", - "data": { - "gtfs": { - "shape_id": "99_1_A" - }, - "segments": [ - { - "distanceMeters": 117, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 660, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 375, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 100, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 385, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 3921, - "travelTimeSeconds": 334 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 14, - "travelTimeSeconds": 1 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 7 - }, - { - "distanceMeters": 9703, - "travelTimeSeconds": 533 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 1609, - "travelTimeSeconds": 268 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 844, - "travelTimeSeconds": 141 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 318, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 29646, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 13816.863629181675, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.32, - "travelTimeWithoutDwellTimesSeconds": 3180, - "operatingTimeWithLayoverTimeSeconds": 3498, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3180, - "operatingSpeedWithLayoverMetersPerSecond": 8.47, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.32 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d", - "784a98f8-f964-4b51-9a84-d7aa241d6aab", - "a1087eae-a20b-4cd0-b8e7-26440d382937", - "1d0cf396-f4ae-4977-a367-c4cf2be5bc83", - "2b4013fd-f01f-46a6-a43b-07ee39c8fae1", - "23cec068-5e76-484b-b2ab-203e4ea55358", - "57a91181-2fc4-4e39-a5bf-0ff47bbe6e9b", - "b1b9e3d8-602d-45b4-ae3c-162955cba188", - "e39d2286-4090-4933-a88a-16d850b1afef", - "44828ff3-a75f-403d-9e17-7e902c4620b9", - "5f32a25e-7895-498c-b5cd-182adcfb40dd", - "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", - "0893f164-19ee-46d7-888c-b2f0ceb4c706", - "4f0816d5-67e0-4d4d-9413-6e045052da5f", - "e3c142cf-278c-41ec-b9f5-dff43803109b", - "6b369192-79e8-4382-aaa0-abddf0da08d7", - "93fcd4a5-ee80-4c79-b0bc-547231801133", - "3bbcea32-d474-49cc-8cd8-d77d2bac6158", - "b476282d-aa8d-4826-8ad2-39123a162025", - "39a7153a-bac3-4ac2-84e3-79ec24465317", - "2c952684-5d97-4238-ae18-51cba6c9775e", - "819e2afa-bfef-47b3-8a41-a55f4c2f9156", - "0dae6aad-c792-48fd-a50b-e498ec730741", - "664c0430-a4fa-4f7d-aa9b-f0bfd0ecd1e4", - "87b33360-b2b6-4448-85dd-00bcc2d6204c", - "6a18cdcb-7d78-46ad-a358-7895b3877421", - "bc16cbaa-5a30-48f3-9330-5ee7ec0441a1", - "33779f20-bdd2-4c97-8c57-e7f88093dfb0", - "5ee81343-27a6-4a75-a9d6-cfd2443e5ca4", - "202ead47-deaa-405e-b65f-b1c0ac914072", - "a559ed96-e206-444a-b3b1-e1eedefb1ccd", - "b8cfafe3-b6a4-49f2-a7bb-9ae8933f001e", - "ea96e923-e899-4f40-b55b-0ec5bd72c618", - "4511e120-86db-4b9f-bbc5-ef3d3a1627fd", - "57420416-a1c5-4dd0-bce2-fccdbb41630a", - "ab32c22a-056a-40bc-bb99-58c049d50498", - "d4b97f89-0d15-4037-9293-a46292a3b826", - "a5fa3371-93c4-47f9-8972-32a538fcab1f", - "c144cdde-b47b-40cf-b640-e6399771f99b", - "a34242f1-b39e-4075-8b98-da7cc20aa985", - "16815d0a-9758-4c90-a572-66e1110e9895", - "bb60f9d1-ae1a-4b44-81e5-f918c5a03052", - "a4342529-2476-4d58-89df-3af5cc46b2ed", - "847391f5-cdd6-49af-ac72-f7b987f65b7f", - "72167429-f4d5-4eda-870a-b71c9c47ec5e", - "515b8790-77c6-4a3b-8347-a621b1167870", - "9f66e075-701a-442d-9c89-3fee641e6ceb", - "d6901f53-cd66-4086-8fc5-2643b6cfcce0", - "1903cbec-a898-4d1e-aa47-0930a7af3bd5", - "5c28c22e-79f1-4a2c-9171-d9cc96f1af7d", - "0910a11d-1b83-4a5b-9c01-30b9a6d926ef", - "4c4fb532-1ed3-4dc8-ab02-b2a6e87e7b90", - "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", - "01e0bcb2-ac63-4c88-b110-c273905a1d5c", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "acabc807-b0f5-4579-b183-cef0484a7cc2" - ], - "stops": [], - "line_id": "c2ab17fa-7d98-4a1d-9fed-26a95aea0b7e", - "segments": [ - 0, - 5, - 41, - 54, - 60, - 67, - 77, - 82, - 96, - 107, - 120, - 125, - 128, - 130, - 135, - 138, - 142, - 149, - 154, - 159, - 164, - 168, - 176, - 183, - 187, - 195, - 198, - 203, - 208, - 214, - 220, - 222, - 230, - 238, - 247, - 259, - 263, - 273, - 276, - 278, - 280, - 284, - 286, - 293, - 302, - 307, - 316, - 320, - 339, - 344, - 353, - 355, - 445, - 462, - 464, - 495, - 507, - 605, - 618, - 653, - 660 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 202, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.520811, - 45.523427 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522185, - 45.522436 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519256, - 45.520728 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514999, - 45.519329 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509849, - 45.51557 - ], - [ - -73.509164, - 45.515381 - ], - [ - -73.508444, - 45.51521 - ], - [ - -73.505306, - 45.51421 - ], - [ - -73.503449, - 45.513618 - ], - [ - -73.500803, - 45.512776 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498218, - 45.511892 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.49432, - 45.510463 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488355, - 45.503066 - ], - [ - -73.4883, - 45.502913 - ], - [ - -73.488219, - 45.502531 - ], - [ - -73.488223, - 45.502405 - ], - [ - -73.488245, - 45.502293 - ], - [ - -73.488296, - 45.502185 - ], - [ - -73.488375, - 45.502086 - ], - [ - -73.488484, - 45.502 - ], - [ - -73.488609, - 45.501937 - ], - [ - -73.48874, - 45.501892 - ], - [ - -73.48888, - 45.501865 - ], - [ - -73.489028, - 45.501856 - ], - [ - -73.489181, - 45.501865 - ], - [ - -73.489324, - 45.501892 - ], - [ - -73.489461, - 45.501933 - ], - [ - -73.489585, - 45.501991 - ], - [ - -73.489692, - 45.502068 - ], - [ - -73.489786, - 45.502153 - ], - [ - -73.489893, - 45.502284 - ], - [ - -73.489942, - 45.502342 - ], - [ - -73.490006, - 45.50245 - ], - [ - -73.490054, - 45.502558 - ], - [ - -73.490086, - 45.502666 - ], - [ - -73.490092, - 45.502779 - ], - [ - -73.490064, - 45.502891 - ], - [ - -73.490004, - 45.502995 - ], - [ - -73.489917, - 45.503094 - ], - [ - -73.489808, - 45.503175 - ], - [ - -73.489675, - 45.503242 - ], - [ - -73.489524, - 45.503287 - ], - [ - -73.489359, - 45.50331 - ], - [ - -73.489186, - 45.503323 - ], - [ - -73.488817, - 45.503318 - ], - [ - -73.487515, - 45.503242 - ], - [ - -73.486872, - 45.503273 - ], - [ - -73.486502, - 45.503323 - ], - [ - -73.486146, - 45.503381 - ], - [ - -73.484224, - 45.503808 - ], - [ - -73.483407, - 45.503957 - ], - [ - -73.482922, - 45.504029 - ], - [ - -73.482166, - 45.504114 - ], - [ - -73.481092, - 45.504204 - ], - [ - -73.4802, - 45.504262 - ], - [ - -73.47719, - 45.50446 - ], - [ - -73.464792, - 45.505284 - ], - [ - -73.464234, - 45.505325 - ], - [ - -73.463301, - 45.505392 - ], - [ - -73.461784, - 45.505526 - ], - [ - -73.460686, - 45.505647 - ], - [ - -73.45799, - 45.505984 - ], - [ - -73.456776, - 45.506127 - ], - [ - -73.455209, - 45.506284 - ], - [ - -73.454382, - 45.506356 - ], - [ - -73.450186, - 45.506642 - ], - [ - -73.439577, - 45.507343 - ], - [ - -73.439057, - 45.507379 - ], - [ - -73.438071, - 45.507414 - ], - [ - -73.437444, - 45.507428 - ], - [ - -73.436265, - 45.507427 - ], - [ - -73.435664, - 45.507418 - ], - [ - -73.43478, - 45.507413 - ], - [ - -73.433757, - 45.507439 - ], - [ - -73.432476, - 45.507501 - ], - [ - -73.430857, - 45.507609 - ], - [ - -73.43012, - 45.507658 - ], - [ - -73.43011, - 45.507658 - ], - [ - -73.429984, - 45.507667 - ], - [ - -73.42996, - 45.507668 - ], - [ - -73.429316, - 45.507711 - ], - [ - -73.429246, - 45.50772 - ], - [ - -73.427401, - 45.507872 - ], - [ - -73.425651, - 45.508046 - ], - [ - -73.425331, - 45.508082 - ], - [ - -73.423669, - 45.508256 - ], - [ - -73.421559, - 45.508471 - ], - [ - -73.418703, - 45.508644 - ], - [ - -73.414755, - 45.508904 - ], - [ - -73.40603, - 45.509467 - ], - [ - -73.399904, - 45.509875 - ], - [ - -73.3937, - 45.510275 - ], - [ - -73.39233, - 45.510359 - ], - [ - -73.390441, - 45.510452 - ], - [ - -73.389048, - 45.510473 - ], - [ - -73.387433, - 45.510512 - ], - [ - -73.386693, - 45.510538 - ], - [ - -73.384812, - 45.510577 - ], - [ - -73.381979, - 45.510646 - ], - [ - -73.381673, - 45.510645 - ], - [ - -73.381378, - 45.510627 - ], - [ - -73.381234, - 45.510609 - ], - [ - -73.3811, - 45.510577 - ], - [ - -73.380858, - 45.510492 - ], - [ - -73.380751, - 45.510437 - ], - [ - -73.380661, - 45.510379 - ], - [ - -73.380586, - 45.510311 - ], - [ - -73.380529, - 45.510239 - ], - [ - -73.380481, - 45.510154 - ], - [ - -73.380447, - 45.510037 - ], - [ - -73.380445, - 45.509992 - ], - [ - -73.380452, - 45.509828 - ], - [ - -73.38047, - 45.509573 - ], - [ - -73.380641, - 45.509218 - ], - [ - -73.380768, - 45.508957 - ], - [ - -73.381367, - 45.507892 - ], - [ - -73.381389, - 45.507851 - ], - [ - -73.381468, - 45.507752 - ], - [ - -73.381562, - 45.507572 - ], - [ - -73.381667, - 45.507356 - ], - [ - -73.381733, - 45.507226 - ], - [ - -73.381816, - 45.507051 - ], - [ - -73.381935, - 45.506785 - ], - [ - -73.382054, - 45.506552 - ], - [ - -73.382181, - 45.506291 - ], - [ - -73.382218, - 45.506219 - ], - [ - -73.382294, - 45.50607 - ], - [ - -73.382297, - 45.506061 - ], - [ - -73.382363, - 45.505931 - ], - [ - -73.382444, - 45.505769 - ], - [ - -73.382566, - 45.505517 - ], - [ - -73.382593, - 45.505454 - ], - [ - -73.382731, - 45.505162 - ], - [ - -73.382892, - 45.504865 - ], - [ - -73.382933, - 45.504757 - ], - [ - -73.382959, - 45.504685 - ], - [ - -73.383272, - 45.504038 - ], - [ - -73.383312, - 45.503943 - ], - [ - -73.383175, - 45.503912 - ], - [ - -73.382957, - 45.503857 - ], - [ - -73.382592, - 45.503772 - ], - [ - -73.382532, - 45.503757 - ], - [ - -73.382365, - 45.503717 - ], - [ - -73.382247, - 45.50369 - ], - [ - -73.382017, - 45.503632 - ], - [ - -73.381788, - 45.503586 - ], - [ - -73.381702, - 45.503586 - ], - [ - -73.381614, - 45.503595 - ], - [ - -73.381525, - 45.503613 - ], - [ - -73.381438, - 45.503649 - ], - [ - -73.381271, - 45.503748 - ], - [ - -73.381063, - 45.5039 - ], - [ - -73.380649, - 45.503653 - ], - [ - -73.379998, - 45.503229 - ], - [ - -73.379576, - 45.50295 - ], - [ - -73.379384, - 45.502828 - ], - [ - -73.37932, - 45.502783 - ], - [ - -73.37913, - 45.502648 - ], - [ - -73.379006, - 45.50258 - ], - [ - -73.37878, - 45.502481 - ], - [ - -73.378631, - 45.502438 - ], - [ - -73.37856, - 45.502418 - ], - [ - -73.378407, - 45.502386 - ], - [ - -73.378319, - 45.502372 - ], - [ - -73.37822, - 45.502368 - ], - [ - -73.378037, - 45.502359 - ], - [ - -73.377961, - 45.502365 - ], - [ - -73.377873, - 45.502372 - ], - [ - -73.37772, - 45.50239 - ], - [ - -73.377578, - 45.502421 - ], - [ - -73.377427, - 45.502461 - ], - [ - -73.37726, - 45.502529 - ], - [ - -73.3771, - 45.502609 - ], - [ - -73.376904, - 45.502699 - ], - [ - -73.376645, - 45.502847 - ], - [ - -73.376535, - 45.502915 - ], - [ - -73.376411, - 45.502996 - ], - [ - -73.376319, - 45.503059 - ], - [ - -73.376016, - 45.503247 - ], - [ - -73.375972, - 45.503274 - ], - [ - -73.375716, - 45.503472 - ], - [ - -73.375698, - 45.503485 - ], - [ - -73.375447, - 45.503715 - ], - [ - -73.375293, - 45.503854 - ], - [ - -73.37517, - 45.50398 - ], - [ - -73.374998, - 45.504213 - ], - [ - -73.374854, - 45.504429 - ], - [ - -73.374722, - 45.5046 - ], - [ - -73.374697, - 45.504635 - ], - [ - -73.374625, - 45.504735 - ], - [ - -73.374598, - 45.504793 - ], - [ - -73.374583, - 45.504843 - ], - [ - -73.374565, - 45.504919 - ], - [ - -73.374581, - 45.50514 - ], - [ - -73.37462, - 45.505338 - ], - [ - -73.374746, - 45.505563 - ], - [ - -73.374844, - 45.505788 - ], - [ - -73.374849, - 45.505796 - ], - [ - -73.374891, - 45.505868 - ], - [ - -73.374951, - 45.505973 - ], - [ - -73.374971, - 45.50599 - ], - [ - -73.375061, - 45.506067 - ], - [ - -73.375295, - 45.506238 - ], - [ - -73.375424, - 45.506333 - ], - [ - -73.375748, - 45.506597 - ], - [ - -73.375784, - 45.506626 - ], - [ - -73.375859, - 45.506698 - ], - [ - -73.375911, - 45.506761 - ], - [ - -73.375985, - 45.506896 - ], - [ - -73.376046, - 45.507022 - ], - [ - -73.375586, - 45.507112 - ], - [ - -73.37473, - 45.507255 - ], - [ - -73.374599, - 45.507263 - ], - [ - -73.374436, - 45.507272 - ], - [ - -73.372887, - 45.507302 - ], - [ - -73.372631, - 45.507306 - ], - [ - -73.371045, - 45.507325 - ], - [ - -73.370567, - 45.507304 - ], - [ - -73.370219, - 45.507317 - ], - [ - -73.369997, - 45.507299 - ], - [ - -73.369892, - 45.507281 - ], - [ - -73.369796, - 45.507254 - ], - [ - -73.369638, - 45.507181 - ], - [ - -73.369575, - 45.507141 - ], - [ - -73.369469, - 45.507051 - ], - [ - -73.369425, - 45.506956 - ], - [ - -73.369394, - 45.506848 - ], - [ - -73.369382, - 45.506749 - ], - [ - -73.369359, - 45.50557 - ], - [ - -73.36938, - 45.505143 - ], - [ - -73.36941, - 45.504851 - ], - [ - -73.369478, - 45.504423 - ], - [ - -73.369566, - 45.504005 - ], - [ - -73.369731, - 45.503452 - ], - [ - -73.369826, - 45.503177 - ], - [ - -73.369982, - 45.502795 - ], - [ - -73.370146, - 45.502444 - ], - [ - -73.370264, - 45.502238 - ], - [ - -73.370341, - 45.502143 - ], - [ - -73.370433, - 45.502062 - ], - [ - -73.370541, - 45.50199 - ], - [ - -73.370661, - 45.501932 - ], - [ - -73.370793, - 45.501892 - ], - [ - -73.370931, - 45.50186 - ], - [ - -73.371072, - 45.501851 - ], - [ - -73.371214, - 45.501852 - ], - [ - -73.371354, - 45.501874 - ], - [ - -73.37149, - 45.50191 - ], - [ - -73.371538, - 45.501931 - ], - [ - -73.371617, - 45.501965 - ], - [ - -73.371733, - 45.502032 - ], - [ - -73.371832, - 45.502109 - ], - [ - -73.371912, - 45.502199 - ], - [ - -73.371971, - 45.502302 - ], - [ - -73.372008, - 45.502406 - ], - [ - -73.372021, - 45.502523 - ], - [ - -73.372005, - 45.502653 - ], - [ - -73.371975, - 45.502775 - ], - [ - -73.371651, - 45.503566 - ], - [ - -73.371494, - 45.504025 - ], - [ - -73.371425, - 45.504371 - ], - [ - -73.371423, - 45.504641 - ], - [ - -73.371335, - 45.504916 - ], - [ - -73.371277, - 45.50524 - ], - [ - -73.371265, - 45.505514 - ], - [ - -73.371277, - 45.506783 - ], - [ - -73.371269, - 45.506999 - ], - [ - -73.371245, - 45.507197 - ], - [ - -73.371137, - 45.507575 - ], - [ - -73.371013, - 45.507799 - ], - [ - -73.370954, - 45.50788 - ], - [ - -73.370878, - 45.507961 - ], - [ - -73.370789, - 45.508056 - ], - [ - -73.370682, - 45.50815 - ], - [ - -73.36969, - 45.508891 - ], - [ - -73.36704, - 45.510863 - ], - [ - -73.366756, - 45.511056 - ], - [ - -73.36661, - 45.511142 - ], - [ - -73.366459, - 45.511227 - ], - [ - -73.366155, - 45.51138 - ], - [ - -73.365972, - 45.51146 - ], - [ - -73.365657, - 45.511573 - ], - [ - -73.365337, - 45.511667 - ], - [ - -73.36321, - 45.512069 - ], - [ - -73.362045, - 45.512288 - ], - [ - -73.361529, - 45.512355 - ], - [ - -73.360893, - 45.512422 - ], - [ - -73.358459, - 45.512576 - ], - [ - -73.356757, - 45.512682 - ], - [ - -73.347571, - 45.513278 - ], - [ - -73.343703, - 45.513529 - ], - [ - -73.343677, - 45.513165 - ] - ] - }, - "id": 203, - "properties": { - "id": "a6f88111-99c9-45ee-92a4-7f97b564c464", - "data": { - "gtfs": { - "shape_id": "99_2_R" - }, - "segments": [ - { - "distanceMeters": 630, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 1600, - "travelTimeSeconds": 195 - }, - { - "distanceMeters": 344, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 6032, - "travelTimeSeconds": 360 - }, - { - "distanceMeters": 4160, - "travelTimeSeconds": 286 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 985, - "travelTimeSeconds": 182 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 15, - "travelTimeSeconds": 3 - }, - { - "distanceMeters": 4373, - "travelTimeSeconds": 360 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 18997, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 13816.863629181675, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 11.73, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 10.55, - "averageSpeedWithoutDwellTimesMetersPerSecond": 11.73 - }, - "mode": "bus", - "name": "St-Bruno", - "color": "#A32638", - "nodes": [ - "acabc807-b0f5-4579-b183-cef0484a7cc2", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "688a3f67-a176-441e-a399-c92a55de9c74", - "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", - "4aea3348-4995-4fc9-b06f-6698460c1f1d", - "a6d38dbd-ef0c-4533-9d2c-7149d1941078", - "c4c03f6a-b2dc-4fb8-87cd-df1a4417beae", - "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d" - ], - "stops": [], - "line_id": "c2ab17fa-7d98-4a1d-9fed-26a95aea0b7e", - "segments": [ - 0, - 39, - 46, - 70, - 81, - 168, - 204, - 214, - 269, - 287, - 289 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 203, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.343677, - 45.513165 - ], - [ - -73.34367, - 45.513061 - ], - [ - -73.343642, - 45.512791 - ], - [ - -73.343612, - 45.512647 - ], - [ - -73.343567, - 45.512534 - ], - [ - -73.343389, - 45.512141 - ], - [ - -73.343354, - 45.512062 - ], - [ - -73.343097, - 45.5121 - ], - [ - -73.343038, - 45.512092 - ], - [ - -73.342894, - 45.512074 - ], - [ - -73.342741, - 45.512043 - ], - [ - -73.342629, - 45.512011 - ], - [ - -73.342349, - 45.511934 - ], - [ - -73.341938, - 45.511803 - ], - [ - -73.341736, - 45.511731 - ], - [ - -73.341412, - 45.51159 - ], - [ - -73.341146, - 45.511475 - ], - [ - -73.341122, - 45.511465 - ], - [ - -73.340633, - 45.511225 - ], - [ - -73.340296, - 45.511027 - ], - [ - -73.340118, - 45.510905 - ], - [ - -73.340029, - 45.510841 - ], - [ - -73.33993, - 45.51077 - ], - [ - -73.339787, - 45.510662 - ], - [ - -73.33958, - 45.5105 - ], - [ - -73.339426, - 45.510378 - ], - [ - -73.33923, - 45.510225 - ], - [ - -73.339011, - 45.510053 - ], - [ - -73.338812, - 45.5099 - ], - [ - -73.338649, - 45.509765 - ], - [ - -73.338438, - 45.509603 - ], - [ - -73.338251, - 45.509472 - ], - [ - -73.338077, - 45.509382 - ], - [ - -73.337875, - 45.5093 - ], - [ - -73.337654, - 45.509233 - ], - [ - -73.337473, - 45.509192 - ], - [ - -73.337253, - 45.509165 - ], - [ - -73.337049, - 45.509155 - ], - [ - -73.336952, - 45.509157 - ], - [ - -73.336939, - 45.509159 - ], - [ - -73.336547, - 45.509188 - ], - [ - -73.336515, - 45.509192 - ], - [ - -73.336225, - 45.509224 - ], - [ - -73.33614, - 45.509238 - ], - [ - -73.336059, - 45.509261 - ], - [ - -73.335984, - 45.509292 - ], - [ - -73.335916, - 45.509331 - ], - [ - -73.335544, - 45.509572 - ], - [ - -73.335336, - 45.509723 - ], - [ - -73.335253, - 45.509783 - ], - [ - -73.33485, - 45.510077 - ], - [ - -73.334454, - 45.510366 - ], - [ - -73.334013, - 45.510683 - ], - [ - -73.333664, - 45.510909 - ], - [ - -73.333081, - 45.511289 - ], - [ - -73.332968, - 45.511363 - ], - [ - -73.332471, - 45.511692 - ], - [ - -73.332065, - 45.51196 - ], - [ - -73.331778, - 45.512149 - ], - [ - -73.331385, - 45.512407 - ], - [ - -73.33106, - 45.512615 - ], - [ - -73.330794, - 45.512786 - ], - [ - -73.330507, - 45.512975 - ], - [ - -73.32972, - 45.513518 - ], - [ - -73.32948, - 45.513693 - ], - [ - -73.329221, - 45.51389 - ], - [ - -73.32877, - 45.514101 - ], - [ - -73.328632, - 45.514161 - ], - [ - -73.328456, - 45.514236 - ], - [ - -73.328284, - 45.514321 - ], - [ - -73.327945, - 45.514388 - ], - [ - -73.32769, - 45.514424 - ], - [ - -73.326299, - 45.514534 - ], - [ - -73.325842, - 45.514565 - ], - [ - -73.325331, - 45.514602 - ], - [ - -73.324882, - 45.514635 - ], - [ - -73.324037, - 45.514697 - ], - [ - -73.323935, - 45.514703 - ], - [ - -73.323824, - 45.514709 - ], - [ - -73.32364, - 45.514723 - ], - [ - -73.322784, - 45.514785 - ], - [ - -73.320491, - 45.514943 - ], - [ - -73.320313, - 45.514954 - ], - [ - -73.320068, - 45.51497 - ], - [ - -73.319813, - 45.514987 - ], - [ - -73.319504, - 45.515014 - ], - [ - -73.31929, - 45.515022 - ], - [ - -73.319076, - 45.51504 - ], - [ - -73.318751, - 45.515062 - ], - [ - -73.318468, - 45.515075 - ], - [ - -73.318303, - 45.515085 - ], - [ - -73.318161, - 45.515093 - ], - [ - -73.317967, - 45.515098 - ], - [ - -73.317909, - 45.5151 - ], - [ - -73.317815, - 45.515109 - ], - [ - -73.317711, - 45.515131 - ], - [ - -73.317676, - 45.515131 - ], - [ - -73.317558, - 45.515133 - ], - [ - -73.317556, - 45.51535 - ], - [ - -73.317556, - 45.515379 - ], - [ - -73.317555, - 45.515401 - ], - [ - -73.317518, - 45.516504 - ], - [ - -73.317461, - 45.516823 - ], - [ - -73.317399, - 45.517358 - ], - [ - -73.31739, - 45.517605 - ], - [ - -73.317378, - 45.517798 - ], - [ - -73.31736, - 45.518111 - ], - [ - -73.317348, - 45.518295 - ], - [ - -73.317339, - 45.518442 - ], - [ - -73.31733, - 45.518584 - ], - [ - -73.317374, - 45.51884 - ], - [ - -73.317442, - 45.519063 - ], - [ - -73.317668, - 45.519485 - ], - [ - -73.317719, - 45.519565 - ], - [ - -73.317762, - 45.519631 - ], - [ - -73.318032, - 45.519996 - ], - [ - -73.318144, - 45.52016 - ], - [ - -73.318342, - 45.520362 - ], - [ - -73.318461, - 45.520393 - ], - [ - -73.318552, - 45.520474 - ], - [ - -73.318639, - 45.520551 - ], - [ - -73.318732, - 45.520632 - ], - [ - -73.318986, - 45.520847 - ], - [ - -73.319781, - 45.521516 - ], - [ - -73.32099, - 45.522525 - ], - [ - -73.321254, - 45.522753 - ], - [ - -73.321325, - 45.522814 - ], - [ - -73.322064, - 45.52344 - ], - [ - -73.322913, - 45.524157 - ], - [ - -73.323443, - 45.524603 - ], - [ - -73.324419, - 45.525429 - ], - [ - -73.324477, - 45.525478 - ], - [ - -73.324515, - 45.525523 - ], - [ - -73.325411, - 45.526298 - ], - [ - -73.325817, - 45.526587 - ], - [ - -73.326449, - 45.527068 - ], - [ - -73.326635, - 45.527209 - ], - [ - -73.327746, - 45.528029 - ], - [ - -73.328049, - 45.528244 - ], - [ - -73.328159, - 45.528322 - ], - [ - -73.328691, - 45.528715 - ], - [ - -73.330009, - 45.529693 - ], - [ - -73.330637, - 45.530163 - ], - [ - -73.330761, - 45.530256 - ], - [ - -73.330825, - 45.530292 - ], - [ - -73.331492, - 45.529797 - ], - [ - -73.331877, - 45.529511 - ], - [ - -73.331967, - 45.529457 - ], - [ - -73.332637, - 45.528977 - ], - [ - -73.332866, - 45.528823 - ], - [ - -73.333063, - 45.528692 - ], - [ - -73.333275, - 45.52855 - ], - [ - -73.333439, - 45.528436 - ], - [ - -73.333788, - 45.528191 - ], - [ - -73.334535, - 45.527695 - ], - [ - -73.334545, - 45.527688 - ], - [ - -73.334622, - 45.527643 - ], - [ - -73.334776, - 45.527545 - ], - [ - -73.335456, - 45.527046 - ], - [ - -73.336098, - 45.526556 - ], - [ - -73.336249, - 45.52644 - ], - [ - -73.336573, - 45.52618 - ], - [ - -73.337228, - 45.52569 - ], - [ - -73.337669, - 45.525344 - ], - [ - -73.338066, - 45.525056 - ], - [ - -73.338368, - 45.524837 - ], - [ - -73.339197, - 45.525405 - ], - [ - -73.339713, - 45.525764 - ], - [ - -73.339811, - 45.525833 - ], - [ - -73.340005, - 45.525968 - ], - [ - -73.340357, - 45.526185 - ], - [ - -73.340568, - 45.526316 - ], - [ - -73.340738, - 45.526442 - ], - [ - -73.341034, - 45.526636 - ], - [ - -73.341462, - 45.526915 - ], - [ - -73.34183, - 45.527172 - ], - [ - -73.341931, - 45.527253 - ], - [ - -73.341994, - 45.527303 - ], - [ - -73.342074, - 45.527389 - ], - [ - -73.341972, - 45.527469 - ], - [ - -73.341594, - 45.527797 - ], - [ - -73.341101, - 45.528233 - ], - [ - -73.341005, - 45.528323 - ], - [ - -73.340914, - 45.528408 - ], - [ - -73.340784, - 45.52853 - ], - [ - -73.340213, - 45.529055 - ], - [ - -73.339969, - 45.529289 - ], - [ - -73.339869, - 45.529374 - ], - [ - -73.339738, - 45.529486 - ], - [ - -73.340316, - 45.529904 - ], - [ - -73.340388, - 45.529956 - ], - [ - -73.340412, - 45.529974 - ], - [ - -73.341348, - 45.530649 - ], - [ - -73.341671, - 45.530886 - ], - [ - -73.34171, - 45.530915 - ], - [ - -73.342548, - 45.531528 - ], - [ - -73.34266, - 45.53161 - ], - [ - -73.342742, - 45.531673 - ], - [ - -73.345759, - 45.533862 - ], - [ - -73.34588, - 45.533949 - ], - [ - -73.346177, - 45.534156 - ], - [ - -73.346943, - 45.534715 - ], - [ - -73.347187, - 45.5349 - ], - [ - -73.347431, - 45.535038 - ], - [ - -73.347547, - 45.535103 - ], - [ - -73.347857, - 45.535261 - ], - [ - -73.348456, - 45.53559 - ], - [ - -73.348803, - 45.535802 - ], - [ - -73.348999, - 45.535933 - ], - [ - -73.349066, - 45.535978 - ], - [ - -73.349411, - 45.536275 - ], - [ - -73.349756, - 45.536582 - ], - [ - -73.350274, - 45.537136 - ], - [ - -73.350577, - 45.537487 - ], - [ - -73.350671, - 45.537596 - ], - [ - -73.350743, - 45.537681 - ], - [ - -73.350799, - 45.537748 - ], - [ - -73.351092, - 45.537645 - ], - [ - -73.351237, - 45.53761 - ], - [ - -73.351597, - 45.537552 - ], - [ - -73.351624, - 45.538143 - ], - [ - -73.351634, - 45.538348 - ], - [ - -73.351725, - 45.540234 - ], - [ - -73.351731, - 45.540355 - ], - [ - -73.352072, - 45.540349 - ], - [ - -73.352742, - 45.540338 - ], - [ - -73.3537, - 45.540317 - ], - [ - -73.354369, - 45.540304 - ], - [ - -73.354373, - 45.5403 - ], - [ - -73.354728, - 45.540161 - ], - [ - -73.354784, - 45.540132 - ], - [ - -73.354958, - 45.540044 - ], - [ - -73.355561, - 45.539685 - ], - [ - -73.355856, - 45.539514 - ], - [ - -73.35601, - 45.539397 - ], - [ - -73.356049, - 45.53937 - ], - [ - -73.356087, - 45.539334 - ], - [ - -73.356151, - 45.539281 - ], - [ - -73.35618, - 45.539252 - ], - [ - -73.356215, - 45.539218 - ], - [ - -73.356254, - 45.539173 - ], - [ - -73.356267, - 45.539146 - ], - [ - -73.356318, - 45.539011 - ], - [ - -73.35637, - 45.538876 - ], - [ - -73.356333, - 45.538462 - ], - [ - -73.35632, - 45.5383 - ], - [ - -73.356334, - 45.538084 - ], - [ - -73.356384, - 45.53791 - ], - [ - -73.356385, - 45.537904 - ], - [ - -73.356488, - 45.537706 - ], - [ - -73.356386, - 45.537688 - ], - [ - -73.356194, - 45.537616 - ], - [ - -73.356138, - 45.537582 - ], - [ - -73.356028, - 45.537517 - ], - [ - -73.35581, - 45.537381 - ], - [ - -73.355606, - 45.537228 - ], - [ - -73.354978, - 45.536786 - ], - [ - -73.354672, - 45.536579 - ], - [ - -73.35439, - 45.536363 - ], - [ - -73.354342, - 45.536329 - ], - [ - -73.354237, - 45.536255 - ], - [ - -73.354085, - 45.536133 - ], - [ - -73.353353, - 45.535601 - ], - [ - -73.35292, - 45.535293 - ], - [ - -73.352814, - 45.535218 - ], - [ - -73.352683, - 45.535132 - ], - [ - -73.352431, - 45.534966 - ], - [ - -73.352156, - 45.534794 - ], - [ - -73.351899, - 45.534632 - ], - [ - -73.351631, - 45.534461 - ], - [ - -73.351414, - 45.534325 - ], - [ - -73.351196, - 45.534181 - ], - [ - -73.350966, - 45.53401 - ], - [ - -73.350903, - 45.533966 - ], - [ - -73.350778, - 45.533879 - ], - [ - -73.350008, - 45.533298 - ], - [ - -73.348915, - 45.532503 - ], - [ - -73.348768, - 45.532396 - ], - [ - -73.347298, - 45.5313 - ], - [ - -73.346954, - 45.531044 - ], - [ - -73.345599, - 45.530065 - ], - [ - -73.345369, - 45.529899 - ], - [ - -73.345813, - 45.52961 - ], - [ - -73.346177, - 45.529374 - ], - [ - -73.347158, - 45.528674 - ], - [ - -73.347279, - 45.528588 - ], - [ - -73.348093, - 45.528061 - ], - [ - -73.348499, - 45.527798 - ], - [ - -73.349319, - 45.52725 - ], - [ - -73.350087, - 45.526724 - ], - [ - -73.350285, - 45.52659 - ], - [ - -73.350534, - 45.526433 - ], - [ - -73.350958, - 45.526271 - ], - [ - -73.350985, - 45.526261 - ], - [ - -73.351151, - 45.526199 - ], - [ - -73.351917, - 45.525931 - ], - [ - -73.351851, - 45.525827 - ], - [ - -73.351836, - 45.525786 - ], - [ - -73.351798, - 45.525714 - ], - [ - -73.351721, - 45.525594 - ], - [ - -73.351697, - 45.525557 - ], - [ - -73.3516, - 45.525453 - ], - [ - -73.351587, - 45.525442 - ], - [ - -73.351479, - 45.52535 - ], - [ - -73.351402, - 45.525286 - ], - [ - -73.350822, - 45.524876 - ], - [ - -73.349891, - 45.524214 - ], - [ - -73.349706, - 45.524082 - ], - [ - -73.349594, - 45.524002 - ], - [ - -73.349337, - 45.523831 - ], - [ - -73.348978, - 45.523614 - ], - [ - -73.348701, - 45.523497 - ], - [ - -73.348489, - 45.52342 - ], - [ - -73.348302, - 45.523361 - ], - [ - -73.348012, - 45.523289 - ], - [ - -73.347832, - 45.523257 - ], - [ - -73.347724, - 45.523246 - ], - [ - -73.347705, - 45.523243 - ], - [ - -73.347547, - 45.523225 - ], - [ - -73.346648, - 45.523103 - ], - [ - -73.346491, - 45.523081 - ], - [ - -73.346291, - 45.523053 - ], - [ - -73.346291, - 45.52285 - ], - [ - -73.346292, - 45.522634 - ], - [ - -73.346292, - 45.522585 - ], - [ - -73.346288, - 45.52231 - ], - [ - -73.346287, - 45.522153 - ], - [ - -73.346275, - 45.522009 - ], - [ - -73.346262, - 45.52182 - ], - [ - -73.346237, - 45.521631 - ], - [ - -73.346225, - 45.521478 - ], - [ - -73.346184, - 45.521289 - ], - [ - -73.346149, - 45.521073 - ], - [ - -73.346136, - 45.521001 - ], - [ - -73.346124, - 45.520929 - ], - [ - -73.346124, - 45.520857 - ], - [ - -73.346124, - 45.520785 - ], - [ - -73.346137, - 45.520677 - ], - [ - -73.346163, - 45.520569 - ], - [ - -73.346174, - 45.52052 - ], - [ - -73.346222, - 45.520303 - ], - [ - -73.346306, - 45.519804 - ], - [ - -73.346397, - 45.519174 - ], - [ - -73.346424, - 45.518967 - ], - [ - -73.346438, - 45.518725 - ], - [ - -73.34645, - 45.518527 - ], - [ - -73.345381, - 45.518517 - ], - [ - -73.344748, - 45.518511 - ], - [ - -73.344537, - 45.51843 - ], - [ - -73.34438, - 45.518344 - ], - [ - -73.344264, - 45.518227 - ], - [ - -73.344137, - 45.518006 - ], - [ - -73.344045, - 45.516998 - ], - [ - -73.344008, - 45.516632 - ], - [ - -73.343805, - 45.514586 - ], - [ - -73.343782, - 45.514393 - ], - [ - -73.343763, - 45.514238 - ], - [ - -73.343701, - 45.513718 - ], - [ - -73.343799, - 45.513709 - ], - [ - -73.357647, - 45.512814 - ], - [ - -73.358491, - 45.512756 - ], - [ - -73.359423, - 45.512694 - ], - [ - -73.359555, - 45.512681 - ], - [ - -73.360882, - 45.512602 - ], - [ - -73.36168, - 45.512531 - ], - [ - -73.362369, - 45.512441 - ], - [ - -73.363202, - 45.512325 - ], - [ - -73.364624, - 45.512098 - ], - [ - -73.366158, - 45.511879 - ], - [ - -73.367686, - 45.511615 - ], - [ - -73.367934, - 45.51158 - ], - [ - -73.368481, - 45.511535 - ], - [ - -73.368699, - 45.511527 - ], - [ - -73.369078, - 45.51155 - ], - [ - -73.370401, - 45.511691 - ], - [ - -73.370685, - 45.511713 - ], - [ - -73.370961, - 45.511723 - ], - [ - -73.371234, - 45.511723 - ], - [ - -73.371918, - 45.511719 - ], - [ - -73.373195, - 45.511581 - ], - [ - -73.373585, - 45.511546 - ], - [ - -73.373778, - 45.511519 - ], - [ - -73.374154, - 45.511452 - ], - [ - -73.374325, - 45.511398 - ], - [ - -73.374487, - 45.51134 - ], - [ - -73.374637, - 45.511272 - ], - [ - -73.374771, - 45.511191 - ], - [ - -73.374884, - 45.511102 - ], - [ - -73.374978, - 45.511003 - ], - [ - -73.375051, - 45.510895 - ], - [ - -73.375109, - 45.510782 - ], - [ - -73.375141, - 45.51067 - ], - [ - -73.375153, - 45.510548 - ], - [ - -73.375148, - 45.510427 - ], - [ - -73.375124, - 45.510301 - ], - [ - -73.375099, - 45.510225 - ], - [ - -73.375083, - 45.510175 - ], - [ - -73.375023, - 45.510049 - ], - [ - -73.374952, - 45.509923 - ], - [ - -73.374866, - 45.509797 - ], - [ - -73.374765, - 45.509675 - ], - [ - -73.374649, - 45.509554 - ], - [ - -73.374517, - 45.509441 - ], - [ - -73.374091, - 45.50913 - ], - [ - -73.373634, - 45.508918 - ], - [ - -73.373366, - 45.508787 - ], - [ - -73.373092, - 45.508616 - ], - [ - -73.372808, - 45.508386 - ], - [ - -73.372681, - 45.508256 - ], - [ - -73.37257, - 45.508112 - ], - [ - -73.372476, - 45.507967 - ], - [ - -73.3724, - 45.507819 - ], - [ - -73.372343, - 45.507679 - ], - [ - -73.372306, - 45.507517 - ], - [ - -73.372287, - 45.507369 - ], - [ - -73.372226, - 45.506676 - ], - [ - -73.372198, - 45.50623 - ], - [ - -73.372124, - 45.50556 - ], - [ - -73.372243, - 45.505043 - ], - [ - -73.372302, - 45.504692 - ], - [ - -73.372354, - 45.504449 - ], - [ - -73.372503, - 45.503954 - ], - [ - -73.372655, - 45.503576 - ], - [ - -73.373011, - 45.502875 - ], - [ - -73.373173, - 45.502587 - ], - [ - -73.37323, - 45.502511 - ], - [ - -73.373299, - 45.502439 - ], - [ - -73.373386, - 45.502385 - ], - [ - -73.373485, - 45.50234 - ], - [ - -73.37359, - 45.502313 - ], - [ - -73.373645, - 45.502304 - ], - [ - -73.37369, - 45.5023 - ], - [ - -73.37385, - 45.502305 - ], - [ - -73.373969, - 45.502327 - ], - [ - -73.374235, - 45.502395 - ], - [ - -73.374326, - 45.502409 - ], - [ - -73.374466, - 45.502454 - ], - [ - -73.374786, - 45.50253 - ], - [ - -73.375092, - 45.502612 - ], - [ - -73.375264, - 45.502648 - ], - [ - -73.375427, - 45.502684 - ], - [ - -73.375574, - 45.502747 - ], - [ - -73.376319, - 45.503059 - ], - [ - -73.376016, - 45.503247 - ], - [ - -73.375972, - 45.503274 - ], - [ - -73.375789, - 45.503416 - ], - [ - -73.375698, - 45.503485 - ], - [ - -73.375447, - 45.503715 - ], - [ - -73.375293, - 45.503854 - ], - [ - -73.37517, - 45.50398 - ], - [ - -73.374998, - 45.504213 - ], - [ - -73.374854, - 45.504429 - ], - [ - -73.374722, - 45.5046 - ], - [ - -73.374697, - 45.504635 - ], - [ - -73.374625, - 45.504735 - ], - [ - -73.374598, - 45.504793 - ], - [ - -73.374583, - 45.504843 - ], - [ - -73.374565, - 45.504919 - ], - [ - -73.374581, - 45.50514 - ], - [ - -73.37462, - 45.505338 - ], - [ - -73.374746, - 45.505563 - ], - [ - -73.374844, - 45.505788 - ], - [ - -73.374851, - 45.505799 - ], - [ - -73.374873, - 45.505837 - ], - [ - -73.374918, - 45.505916 - ], - [ - -73.374951, - 45.505973 - ], - [ - -73.375061, - 45.506067 - ], - [ - -73.375295, - 45.506238 - ], - [ - -73.375424, - 45.506333 - ], - [ - -73.375748, - 45.506597 - ], - [ - -73.375784, - 45.506626 - ], - [ - -73.375859, - 45.506698 - ], - [ - -73.375911, - 45.506761 - ], - [ - -73.375985, - 45.506896 - ], - [ - -73.376046, - 45.507022 - ], - [ - -73.376084, - 45.507108 - ], - [ - -73.376268, - 45.507459 - ], - [ - -73.376298, - 45.507513 - ], - [ - -73.376345, - 45.507576 - ], - [ - -73.3764, - 45.507639 - ], - [ - -73.376512, - 45.507729 - ], - [ - -73.376632, - 45.507801 - ], - [ - -73.376837, - 45.507891 - ], - [ - -73.376868, - 45.507902 - ], - [ - -73.376914, - 45.507917 - ], - [ - -73.377114, - 45.507982 - ], - [ - -73.377442, - 45.508081 - ], - [ - -73.377571, - 45.508108 - ], - [ - -73.377699, - 45.508135 - ], - [ - -73.377779, - 45.508144 - ], - [ - -73.377878, - 45.50815 - ], - [ - -73.377933, - 45.508153 - ], - [ - -73.378119, - 45.508163 - ], - [ - -73.378452, - 45.508145 - ], - [ - -73.378562, - 45.50814 - ], - [ - -73.378926, - 45.508124 - ], - [ - -73.379147, - 45.508114 - ], - [ - -73.3793, - 45.508105 - ], - [ - -73.379404, - 45.508091 - ], - [ - -73.379526, - 45.508074 - ], - [ - -73.379622, - 45.508047 - ], - [ - -73.379724, - 45.508025 - ], - [ - -73.379863, - 45.507975 - ], - [ - -73.380059, - 45.50789 - ], - [ - -73.380179, - 45.507823 - ], - [ - -73.380268, - 45.507759 - ], - [ - -73.380399, - 45.507666 - ], - [ - -73.380422, - 45.507648 - ], - [ - -73.380503, - 45.507585 - ], - [ - -73.380626, - 45.507481 - ], - [ - -73.380959, - 45.507647 - ], - [ - -73.38128, - 45.507806 - ], - [ - -73.380619, - 45.508917 - ], - [ - -73.380471, - 45.509177 - ], - [ - -73.380338, - 45.509474 - ], - [ - -73.380312, - 45.5096 - ], - [ - -73.380265, - 45.50983 - ], - [ - -73.380243, - 45.510001 - ], - [ - -73.380243, - 45.510041 - ], - [ - -73.380292, - 45.510284 - ], - [ - -73.380332, - 45.510388 - ], - [ - -73.380377, - 45.510478 - ], - [ - -73.380512, - 45.51068 - ], - [ - -73.3806, - 45.510779 - ], - [ - -73.380706, - 45.510874 - ], - [ - -73.380825, - 45.510964 - ], - [ - -73.380962, - 45.511045 - ], - [ - -73.381113, - 45.511117 - ], - [ - -73.381279, - 45.511176 - ], - [ - -73.381458, - 45.511217 - ], - [ - -73.381649, - 45.511244 - ], - [ - -73.38185, - 45.511257 - ], - [ - -73.382059, - 45.511258 - ], - [ - -73.382278, - 45.511249 - ], - [ - -73.383255, - 45.51116 - ], - [ - -73.386918, - 45.510876 - ], - [ - -73.388705, - 45.510769 - ], - [ - -73.390511, - 45.510672 - ], - [ - -73.391744, - 45.51057 - ], - [ - -73.392277, - 45.510503 - ], - [ - -73.393587, - 45.510437 - ], - [ - -73.396575, - 45.510246 - ], - [ - -73.416479, - 45.508939 - ], - [ - -73.422517, - 45.50853 - ], - [ - -73.424264, - 45.508396 - ], - [ - -73.424552, - 45.508369 - ], - [ - -73.425839, - 45.508343 - ], - [ - -73.427203, - 45.508276 - ], - [ - -73.430462, - 45.508094 - ], - [ - -73.430498, - 45.508091 - ], - [ - -73.431368, - 45.508031 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431709, - 45.508009 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.432209, - 45.507974 - ], - [ - -73.435178, - 45.507773 - ], - [ - -73.437575, - 45.507662 - ], - [ - -73.438988, - 45.507572 - ], - [ - -73.440344, - 45.507425 - ], - [ - -73.445881, - 45.507063 - ], - [ - -73.452257, - 45.506638 - ], - [ - -73.452565, - 45.506616 - ], - [ - -73.453776, - 45.50654 - ], - [ - -73.455247, - 45.506419 - ], - [ - -73.456957, - 45.50624 - ], - [ - -73.460279, - 45.505832 - ], - [ - -73.460374, - 45.505823 - ], - [ - -73.461182, - 45.505728 - ], - [ - -73.463671, - 45.505509 - ], - [ - -73.465111, - 45.505401 - ], - [ - -73.467755, - 45.505222 - ], - [ - -73.468692, - 45.505168 - ], - [ - -73.470746, - 45.505025 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492935, - 45.510116 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497942, - 45.512059 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.500628, - 45.512866 - ], - [ - -73.500836, - 45.512931 - ], - [ - -73.502033, - 45.513303 - ], - [ - -73.505335, - 45.514355 - ], - [ - -73.505365, - 45.514365 - ], - [ - -73.507293, - 45.514976 - ], - [ - -73.50757, - 45.515057 - ], - [ - -73.508383, - 45.515323 - ], - [ - -73.509009, - 45.515606 - ], - [ - -73.509231, - 45.515687 - ], - [ - -73.509741, - 45.515862 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515014, - 45.519426 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518906, - 45.520633 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520267, - 45.521193 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.52068, - 45.524093 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.520811, - 45.523427 - ] - ] - }, - "id": 204, - "properties": { - "id": "cbed69e7-e718-4fb6-8b5e-2e2a6798b723", - "data": { - "gtfs": { - "shape_id": "99_2_A" - }, - "segments": [ - { - "distanceMeters": 117, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 660, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 375, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 100, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 385, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 3921, - "travelTimeSeconds": 334 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 14, - "travelTimeSeconds": 1 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 4429, - "travelTimeSeconds": 292 - }, - { - "distanceMeters": 5274, - "travelTimeSeconds": 240 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 1609, - "travelTimeSeconds": 239 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 844, - "travelTimeSeconds": 126 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 318, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 29646, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 13816.863629181675, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.32, - "travelTimeWithoutDwellTimesSeconds": 3180, - "operatingTimeWithLayoverTimeSeconds": 3498, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3180, - "operatingSpeedWithLayoverMetersPerSecond": 8.47, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.32 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d", - "784a98f8-f964-4b51-9a84-d7aa241d6aab", - "a1087eae-a20b-4cd0-b8e7-26440d382937", - "1d0cf396-f4ae-4977-a367-c4cf2be5bc83", - "2b4013fd-f01f-46a6-a43b-07ee39c8fae1", - "23cec068-5e76-484b-b2ab-203e4ea55358", - "57a91181-2fc4-4e39-a5bf-0ff47bbe6e9b", - "b1b9e3d8-602d-45b4-ae3c-162955cba188", - "e39d2286-4090-4933-a88a-16d850b1afef", - "44828ff3-a75f-403d-9e17-7e902c4620b9", - "5f32a25e-7895-498c-b5cd-182adcfb40dd", - "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", - "0893f164-19ee-46d7-888c-b2f0ceb4c706", - "4f0816d5-67e0-4d4d-9413-6e045052da5f", - "e3c142cf-278c-41ec-b9f5-dff43803109b", - "6b369192-79e8-4382-aaa0-abddf0da08d7", - "93fcd4a5-ee80-4c79-b0bc-547231801133", - "3bbcea32-d474-49cc-8cd8-d77d2bac6158", - "b476282d-aa8d-4826-8ad2-39123a162025", - "39a7153a-bac3-4ac2-84e3-79ec24465317", - "2c952684-5d97-4238-ae18-51cba6c9775e", - "819e2afa-bfef-47b3-8a41-a55f4c2f9156", - "0dae6aad-c792-48fd-a50b-e498ec730741", - "664c0430-a4fa-4f7d-aa9b-f0bfd0ecd1e4", - "87b33360-b2b6-4448-85dd-00bcc2d6204c", - "6a18cdcb-7d78-46ad-a358-7895b3877421", - "bc16cbaa-5a30-48f3-9330-5ee7ec0441a1", - "33779f20-bdd2-4c97-8c57-e7f88093dfb0", - "5ee81343-27a6-4a75-a9d6-cfd2443e5ca4", - "202ead47-deaa-405e-b65f-b1c0ac914072", - "a559ed96-e206-444a-b3b1-e1eedefb1ccd", - "b8cfafe3-b6a4-49f2-a7bb-9ae8933f001e", - "ea96e923-e899-4f40-b55b-0ec5bd72c618", - "4511e120-86db-4b9f-bbc5-ef3d3a1627fd", - "57420416-a1c5-4dd0-bce2-fccdbb41630a", - "ab32c22a-056a-40bc-bb99-58c049d50498", - "d4b97f89-0d15-4037-9293-a46292a3b826", - "a5fa3371-93c4-47f9-8972-32a538fcab1f", - "c144cdde-b47b-40cf-b640-e6399771f99b", - "a34242f1-b39e-4075-8b98-da7cc20aa985", - "16815d0a-9758-4c90-a572-66e1110e9895", - "bb60f9d1-ae1a-4b44-81e5-f918c5a03052", - "a4342529-2476-4d58-89df-3af5cc46b2ed", - "847391f5-cdd6-49af-ac72-f7b987f65b7f", - "72167429-f4d5-4eda-870a-b71c9c47ec5e", - "515b8790-77c6-4a3b-8347-a621b1167870", - "9f66e075-701a-442d-9c89-3fee641e6ceb", - "d6901f53-cd66-4086-8fc5-2643b6cfcce0", - "1903cbec-a898-4d1e-aa47-0930a7af3bd5", - "5c28c22e-79f1-4a2c-9171-d9cc96f1af7d", - "0910a11d-1b83-4a5b-9c01-30b9a6d926ef", - "4c4fb532-1ed3-4dc8-ab02-b2a6e87e7b90", - "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", - "01e0bcb2-ac63-4c88-b110-c273905a1d5c", - "2c8a6d09-2eb8-47e3-86bb-ac6501351f3b", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "acabc807-b0f5-4579-b183-cef0484a7cc2" - ], - "stops": [], - "line_id": "c2ab17fa-7d98-4a1d-9fed-26a95aea0b7e", - "segments": [ - 0, - 5, - 41, - 54, - 60, - 67, - 77, - 82, - 96, - 107, - 120, - 125, - 128, - 130, - 135, - 138, - 142, - 149, - 154, - 159, - 164, - 168, - 176, - 183, - 187, - 195, - 198, - 203, - 208, - 214, - 220, - 222, - 230, - 238, - 247, - 259, - 263, - 273, - 276, - 278, - 280, - 284, - 286, - 293, - 302, - 307, - 316, - 320, - 339, - 344, - 353, - 355, - 445, - 462, - 464, - 495, - 507, - 550, - 606, - 619, - 654, - 661 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 204, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.343677, - 45.513165 - ], - [ - -73.34367, - 45.513061 - ], - [ - -73.343642, - 45.512791 - ], - [ - -73.343612, - 45.512647 - ], - [ - -73.343567, - 45.512534 - ], - [ - -73.343389, - 45.512141 - ], - [ - -73.343354, - 45.512062 - ], - [ - -73.343097, - 45.5121 - ], - [ - -73.343038, - 45.512092 - ], - [ - -73.342894, - 45.512074 - ], - [ - -73.342741, - 45.512043 - ], - [ - -73.342629, - 45.512011 - ], - [ - -73.342349, - 45.511934 - ], - [ - -73.341938, - 45.511803 - ], - [ - -73.341736, - 45.511731 - ], - [ - -73.341412, - 45.51159 - ], - [ - -73.341146, - 45.511475 - ], - [ - -73.341122, - 45.511465 - ], - [ - -73.340633, - 45.511225 - ], - [ - -73.340296, - 45.511027 - ], - [ - -73.340118, - 45.510905 - ], - [ - -73.340029, - 45.510841 - ], - [ - -73.33993, - 45.51077 - ], - [ - -73.339787, - 45.510662 - ], - [ - -73.33958, - 45.5105 - ], - [ - -73.339426, - 45.510378 - ], - [ - -73.33923, - 45.510225 - ], - [ - -73.339011, - 45.510053 - ], - [ - -73.338812, - 45.5099 - ], - [ - -73.338649, - 45.509765 - ], - [ - -73.338438, - 45.509603 - ], - [ - -73.338251, - 45.509472 - ], - [ - -73.338077, - 45.509382 - ], - [ - -73.337875, - 45.5093 - ], - [ - -73.337654, - 45.509233 - ], - [ - -73.337473, - 45.509192 - ], - [ - -73.337253, - 45.509165 - ], - [ - -73.337049, - 45.509155 - ], - [ - -73.336952, - 45.509157 - ], - [ - -73.336939, - 45.509159 - ], - [ - -73.336547, - 45.509188 - ], - [ - -73.336515, - 45.509192 - ], - [ - -73.336225, - 45.509224 - ], - [ - -73.33614, - 45.509238 - ], - [ - -73.336059, - 45.509261 - ], - [ - -73.335984, - 45.509292 - ], - [ - -73.335916, - 45.509331 - ], - [ - -73.335544, - 45.509572 - ], - [ - -73.335336, - 45.509723 - ], - [ - -73.335253, - 45.509783 - ], - [ - -73.33485, - 45.510077 - ], - [ - -73.334454, - 45.510366 - ], - [ - -73.334013, - 45.510683 - ], - [ - -73.333664, - 45.510909 - ], - [ - -73.333081, - 45.511289 - ], - [ - -73.332968, - 45.511363 - ], - [ - -73.332471, - 45.511692 - ], - [ - -73.332065, - 45.51196 - ], - [ - -73.331778, - 45.512149 - ], - [ - -73.331385, - 45.512407 - ], - [ - -73.33106, - 45.512615 - ], - [ - -73.330794, - 45.512786 - ], - [ - -73.330507, - 45.512975 - ], - [ - -73.32972, - 45.513518 - ], - [ - -73.32948, - 45.513693 - ], - [ - -73.329221, - 45.51389 - ], - [ - -73.32877, - 45.514101 - ], - [ - -73.328632, - 45.514161 - ], - [ - -73.328456, - 45.514236 - ], - [ - -73.328284, - 45.514321 - ], - [ - -73.327945, - 45.514388 - ], - [ - -73.32769, - 45.514424 - ], - [ - -73.326299, - 45.514534 - ], - [ - -73.325842, - 45.514565 - ], - [ - -73.325331, - 45.514602 - ], - [ - -73.324882, - 45.514635 - ], - [ - -73.324037, - 45.514697 - ], - [ - -73.323935, - 45.514703 - ], - [ - -73.323824, - 45.514709 - ], - [ - -73.32364, - 45.514723 - ], - [ - -73.322784, - 45.514785 - ], - [ - -73.320491, - 45.514943 - ], - [ - -73.320313, - 45.514954 - ], - [ - -73.320068, - 45.51497 - ], - [ - -73.319813, - 45.514987 - ], - [ - -73.319504, - 45.515014 - ], - [ - -73.31929, - 45.515022 - ], - [ - -73.319076, - 45.51504 - ], - [ - -73.318751, - 45.515062 - ], - [ - -73.318468, - 45.515075 - ], - [ - -73.318303, - 45.515085 - ], - [ - -73.318161, - 45.515093 - ], - [ - -73.317967, - 45.515098 - ], - [ - -73.317909, - 45.5151 - ], - [ - -73.317815, - 45.515109 - ], - [ - -73.317711, - 45.515131 - ], - [ - -73.317676, - 45.515131 - ], - [ - -73.317558, - 45.515133 - ], - [ - -73.317556, - 45.51535 - ], - [ - -73.317556, - 45.515379 - ], - [ - -73.317555, - 45.515401 - ], - [ - -73.317518, - 45.516504 - ], - [ - -73.317461, - 45.516823 - ], - [ - -73.317399, - 45.517358 - ], - [ - -73.31739, - 45.517605 - ], - [ - -73.317378, - 45.517798 - ], - [ - -73.31736, - 45.518111 - ], - [ - -73.317348, - 45.518295 - ], - [ - -73.317339, - 45.518442 - ], - [ - -73.31733, - 45.518584 - ], - [ - -73.317374, - 45.51884 - ], - [ - -73.317442, - 45.519063 - ], - [ - -73.317668, - 45.519485 - ], - [ - -73.317719, - 45.519565 - ], - [ - -73.317762, - 45.519631 - ], - [ - -73.318032, - 45.519996 - ], - [ - -73.318144, - 45.52016 - ], - [ - -73.318342, - 45.520362 - ], - [ - -73.318461, - 45.520393 - ], - [ - -73.318552, - 45.520474 - ], - [ - -73.318639, - 45.520551 - ], - [ - -73.318732, - 45.520632 - ], - [ - -73.318986, - 45.520847 - ], - [ - -73.319781, - 45.521516 - ], - [ - -73.32099, - 45.522525 - ], - [ - -73.321254, - 45.522753 - ], - [ - -73.321325, - 45.522814 - ], - [ - -73.322064, - 45.52344 - ], - [ - -73.322913, - 45.524157 - ], - [ - -73.323443, - 45.524603 - ], - [ - -73.324419, - 45.525429 - ], - [ - -73.324477, - 45.525478 - ], - [ - -73.324515, - 45.525523 - ], - [ - -73.325411, - 45.526298 - ], - [ - -73.325817, - 45.526587 - ], - [ - -73.326449, - 45.527068 - ], - [ - -73.326635, - 45.527209 - ], - [ - -73.327746, - 45.528029 - ], - [ - -73.328049, - 45.528244 - ], - [ - -73.328159, - 45.528322 - ], - [ - -73.328691, - 45.528715 - ], - [ - -73.330009, - 45.529693 - ], - [ - -73.330637, - 45.530163 - ], - [ - -73.330761, - 45.530256 - ], - [ - -73.330825, - 45.530292 - ], - [ - -73.331492, - 45.529797 - ], - [ - -73.331877, - 45.529511 - ], - [ - -73.331967, - 45.529457 - ], - [ - -73.332637, - 45.528977 - ], - [ - -73.332866, - 45.528823 - ], - [ - -73.333063, - 45.528692 - ], - [ - -73.333275, - 45.52855 - ], - [ - -73.333439, - 45.528436 - ], - [ - -73.333788, - 45.528191 - ], - [ - -73.334535, - 45.527695 - ], - [ - -73.334545, - 45.527688 - ], - [ - -73.334622, - 45.527643 - ], - [ - -73.334776, - 45.527545 - ], - [ - -73.335456, - 45.527046 - ], - [ - -73.336098, - 45.526556 - ], - [ - -73.336249, - 45.52644 - ], - [ - -73.336573, - 45.52618 - ], - [ - -73.337228, - 45.52569 - ], - [ - -73.337669, - 45.525344 - ], - [ - -73.338066, - 45.525056 - ], - [ - -73.338368, - 45.524837 - ], - [ - -73.339197, - 45.525405 - ], - [ - -73.339713, - 45.525764 - ], - [ - -73.339811, - 45.525833 - ], - [ - -73.340005, - 45.525968 - ], - [ - -73.340357, - 45.526185 - ], - [ - -73.340568, - 45.526316 - ], - [ - -73.340738, - 45.526442 - ], - [ - -73.341034, - 45.526636 - ], - [ - -73.341462, - 45.526915 - ], - [ - -73.34183, - 45.527172 - ], - [ - -73.341931, - 45.527253 - ], - [ - -73.341994, - 45.527303 - ], - [ - -73.342074, - 45.527389 - ], - [ - -73.341972, - 45.527469 - ], - [ - -73.341594, - 45.527797 - ], - [ - -73.341101, - 45.528233 - ], - [ - -73.341005, - 45.528323 - ], - [ - -73.340914, - 45.528408 - ], - [ - -73.340784, - 45.52853 - ], - [ - -73.340213, - 45.529055 - ], - [ - -73.339969, - 45.529289 - ], - [ - -73.339869, - 45.529374 - ], - [ - -73.339738, - 45.529486 - ], - [ - -73.340316, - 45.529904 - ], - [ - -73.340388, - 45.529956 - ], - [ - -73.340412, - 45.529974 - ], - [ - -73.341348, - 45.530649 - ], - [ - -73.341671, - 45.530886 - ], - [ - -73.34171, - 45.530915 - ], - [ - -73.342548, - 45.531528 - ], - [ - -73.34266, - 45.53161 - ], - [ - -73.342742, - 45.531673 - ], - [ - -73.345759, - 45.533862 - ], - [ - -73.34588, - 45.533949 - ], - [ - -73.346177, - 45.534156 - ], - [ - -73.346943, - 45.534715 - ], - [ - -73.347187, - 45.5349 - ], - [ - -73.347431, - 45.535038 - ], - [ - -73.347547, - 45.535103 - ], - [ - -73.347857, - 45.535261 - ], - [ - -73.348456, - 45.53559 - ], - [ - -73.348803, - 45.535802 - ], - [ - -73.348999, - 45.535933 - ], - [ - -73.349066, - 45.535978 - ], - [ - -73.349411, - 45.536275 - ], - [ - -73.349756, - 45.536582 - ], - [ - -73.350274, - 45.537136 - ], - [ - -73.350577, - 45.537487 - ], - [ - -73.350671, - 45.537596 - ], - [ - -73.350743, - 45.537681 - ], - [ - -73.350799, - 45.537748 - ], - [ - -73.351092, - 45.537645 - ], - [ - -73.351237, - 45.53761 - ], - [ - -73.351597, - 45.537552 - ], - [ - -73.351624, - 45.538143 - ], - [ - -73.351634, - 45.538348 - ], - [ - -73.351725, - 45.540234 - ], - [ - -73.351731, - 45.540355 - ], - [ - -73.352072, - 45.540349 - ], - [ - -73.352742, - 45.540338 - ], - [ - -73.3537, - 45.540317 - ], - [ - -73.354369, - 45.540304 - ], - [ - -73.354373, - 45.5403 - ], - [ - -73.354728, - 45.540161 - ], - [ - -73.354784, - 45.540132 - ], - [ - -73.354958, - 45.540044 - ], - [ - -73.355561, - 45.539685 - ], - [ - -73.355856, - 45.539514 - ], - [ - -73.35601, - 45.539397 - ], - [ - -73.356049, - 45.53937 - ], - [ - -73.356087, - 45.539334 - ], - [ - -73.356151, - 45.539281 - ], - [ - -73.35618, - 45.539252 - ], - [ - -73.356215, - 45.539218 - ], - [ - -73.356254, - 45.539173 - ], - [ - -73.356267, - 45.539146 - ], - [ - -73.356318, - 45.539011 - ], - [ - -73.35637, - 45.538876 - ], - [ - -73.356333, - 45.538462 - ], - [ - -73.35632, - 45.5383 - ], - [ - -73.356334, - 45.538084 - ], - [ - -73.356384, - 45.53791 - ], - [ - -73.356385, - 45.537904 - ], - [ - -73.356488, - 45.537706 - ], - [ - -73.356386, - 45.537688 - ], - [ - -73.356194, - 45.537616 - ], - [ - -73.356138, - 45.537582 - ], - [ - -73.356028, - 45.537517 - ], - [ - -73.35581, - 45.537381 - ], - [ - -73.355606, - 45.537228 - ], - [ - -73.354978, - 45.536786 - ], - [ - -73.354672, - 45.536579 - ], - [ - -73.35439, - 45.536363 - ], - [ - -73.354342, - 45.536329 - ], - [ - -73.354237, - 45.536255 - ], - [ - -73.354085, - 45.536133 - ], - [ - -73.353353, - 45.535601 - ], - [ - -73.35292, - 45.535293 - ], - [ - -73.352814, - 45.535218 - ], - [ - -73.352683, - 45.535132 - ], - [ - -73.352431, - 45.534966 - ], - [ - -73.352156, - 45.534794 - ], - [ - -73.351899, - 45.534632 - ], - [ - -73.351631, - 45.534461 - ], - [ - -73.351414, - 45.534325 - ], - [ - -73.351196, - 45.534181 - ], - [ - -73.350966, - 45.53401 - ], - [ - -73.350903, - 45.533966 - ], - [ - -73.350778, - 45.533879 - ], - [ - -73.350008, - 45.533298 - ], - [ - -73.348915, - 45.532503 - ], - [ - -73.348768, - 45.532396 - ], - [ - -73.347298, - 45.5313 - ], - [ - -73.346954, - 45.531044 - ], - [ - -73.345599, - 45.530065 - ], - [ - -73.345369, - 45.529899 - ], - [ - -73.345813, - 45.52961 - ], - [ - -73.346177, - 45.529374 - ], - [ - -73.347158, - 45.528674 - ], - [ - -73.347279, - 45.528588 - ], - [ - -73.348093, - 45.528061 - ], - [ - -73.348499, - 45.527798 - ], - [ - -73.349319, - 45.52725 - ], - [ - -73.350087, - 45.526724 - ], - [ - -73.350285, - 45.52659 - ], - [ - -73.350534, - 45.526433 - ], - [ - -73.350958, - 45.526271 - ], - [ - -73.350985, - 45.526261 - ], - [ - -73.351151, - 45.526199 - ], - [ - -73.351917, - 45.525931 - ], - [ - -73.351851, - 45.525827 - ], - [ - -73.351836, - 45.525786 - ], - [ - -73.351798, - 45.525714 - ], - [ - -73.351721, - 45.525594 - ], - [ - -73.351697, - 45.525557 - ], - [ - -73.3516, - 45.525453 - ], - [ - -73.351587, - 45.525442 - ], - [ - -73.351479, - 45.52535 - ], - [ - -73.351402, - 45.525286 - ], - [ - -73.350822, - 45.524876 - ], - [ - -73.349891, - 45.524214 - ], - [ - -73.349706, - 45.524082 - ], - [ - -73.349594, - 45.524002 - ], - [ - -73.349337, - 45.523831 - ], - [ - -73.348978, - 45.523614 - ], - [ - -73.348701, - 45.523497 - ], - [ - -73.348489, - 45.52342 - ], - [ - -73.348302, - 45.523361 - ], - [ - -73.348012, - 45.523289 - ], - [ - -73.347832, - 45.523257 - ], - [ - -73.347724, - 45.523246 - ], - [ - -73.347705, - 45.523243 - ], - [ - -73.347547, - 45.523225 - ], - [ - -73.346648, - 45.523103 - ], - [ - -73.346491, - 45.523081 - ], - [ - -73.346291, - 45.523053 - ], - [ - -73.346291, - 45.52285 - ], - [ - -73.346292, - 45.522634 - ], - [ - -73.346292, - 45.522585 - ], - [ - -73.346288, - 45.52231 - ], - [ - -73.346287, - 45.522153 - ], - [ - -73.346275, - 45.522009 - ], - [ - -73.346262, - 45.52182 - ], - [ - -73.346237, - 45.521631 - ], - [ - -73.346225, - 45.521478 - ], - [ - -73.346184, - 45.521289 - ], - [ - -73.346149, - 45.521073 - ], - [ - -73.346136, - 45.521001 - ], - [ - -73.346124, - 45.520929 - ], - [ - -73.346124, - 45.520857 - ], - [ - -73.346124, - 45.520785 - ], - [ - -73.346137, - 45.520677 - ], - [ - -73.346163, - 45.520569 - ], - [ - -73.346174, - 45.52052 - ], - [ - -73.346222, - 45.520303 - ], - [ - -73.346306, - 45.519804 - ], - [ - -73.346397, - 45.519174 - ], - [ - -73.346424, - 45.518967 - ], - [ - -73.346438, - 45.518725 - ], - [ - -73.34645, - 45.518527 - ], - [ - -73.345381, - 45.518517 - ], - [ - -73.344748, - 45.518511 - ], - [ - -73.344537, - 45.51843 - ], - [ - -73.34438, - 45.518344 - ], - [ - -73.344264, - 45.518227 - ], - [ - -73.344137, - 45.518006 - ], - [ - -73.344045, - 45.516998 - ], - [ - -73.344008, - 45.516632 - ], - [ - -73.343805, - 45.514586 - ], - [ - -73.343782, - 45.514393 - ], - [ - -73.343763, - 45.514238 - ], - [ - -73.343701, - 45.513718 - ], - [ - -73.343799, - 45.513709 - ], - [ - -73.357647, - 45.512814 - ], - [ - -73.358491, - 45.512756 - ], - [ - -73.359423, - 45.512694 - ], - [ - -73.359555, - 45.512681 - ], - [ - -73.360882, - 45.512602 - ], - [ - -73.36168, - 45.512531 - ], - [ - -73.362369, - 45.512441 - ], - [ - -73.363202, - 45.512325 - ], - [ - -73.364624, - 45.512098 - ], - [ - -73.366158, - 45.511879 - ], - [ - -73.367686, - 45.511615 - ], - [ - -73.367934, - 45.51158 - ], - [ - -73.368481, - 45.511535 - ], - [ - -73.368699, - 45.511527 - ], - [ - -73.369078, - 45.51155 - ], - [ - -73.370401, - 45.511691 - ], - [ - -73.370685, - 45.511713 - ], - [ - -73.370961, - 45.511723 - ], - [ - -73.371234, - 45.511723 - ], - [ - -73.371918, - 45.511719 - ], - [ - -73.373195, - 45.511581 - ], - [ - -73.373585, - 45.511546 - ], - [ - -73.373778, - 45.511519 - ], - [ - -73.374154, - 45.511452 - ], - [ - -73.374325, - 45.511398 - ], - [ - -73.374487, - 45.51134 - ], - [ - -73.374637, - 45.511272 - ], - [ - -73.374771, - 45.511191 - ], - [ - -73.374884, - 45.511102 - ], - [ - -73.374978, - 45.511003 - ], - [ - -73.375051, - 45.510895 - ], - [ - -73.375109, - 45.510782 - ], - [ - -73.375141, - 45.51067 - ], - [ - -73.375153, - 45.510548 - ], - [ - -73.375148, - 45.510427 - ], - [ - -73.375124, - 45.510301 - ], - [ - -73.375099, - 45.510225 - ], - [ - -73.375083, - 45.510175 - ], - [ - -73.375023, - 45.510049 - ], - [ - -73.374952, - 45.509923 - ], - [ - -73.374866, - 45.509797 - ], - [ - -73.374765, - 45.509675 - ], - [ - -73.374649, - 45.509554 - ], - [ - -73.374517, - 45.509441 - ], - [ - -73.374091, - 45.50913 - ], - [ - -73.373634, - 45.508918 - ], - [ - -73.373366, - 45.508787 - ], - [ - -73.373092, - 45.508616 - ], - [ - -73.372808, - 45.508386 - ], - [ - -73.372681, - 45.508256 - ], - [ - -73.37257, - 45.508112 - ], - [ - -73.372476, - 45.507967 - ], - [ - -73.3724, - 45.507819 - ], - [ - -73.372343, - 45.507679 - ], - [ - -73.372306, - 45.507517 - ], - [ - -73.372287, - 45.507369 - ], - [ - -73.372226, - 45.506676 - ], - [ - -73.372198, - 45.50623 - ], - [ - -73.372124, - 45.50556 - ], - [ - -73.372243, - 45.505043 - ], - [ - -73.372302, - 45.504692 - ], - [ - -73.372354, - 45.504449 - ], - [ - -73.372503, - 45.503954 - ], - [ - -73.372655, - 45.503576 - ], - [ - -73.373011, - 45.502875 - ], - [ - -73.373173, - 45.502587 - ], - [ - -73.37323, - 45.502511 - ], - [ - -73.373299, - 45.502439 - ], - [ - -73.373386, - 45.502385 - ], - [ - -73.373485, - 45.50234 - ], - [ - -73.37359, - 45.502313 - ], - [ - -73.373645, - 45.502304 - ], - [ - -73.37369, - 45.5023 - ], - [ - -73.37385, - 45.502305 - ], - [ - -73.373969, - 45.502327 - ], - [ - -73.374235, - 45.502395 - ], - [ - -73.374326, - 45.502409 - ], - [ - -73.374466, - 45.502454 - ], - [ - -73.374786, - 45.50253 - ], - [ - -73.375092, - 45.502612 - ], - [ - -73.375264, - 45.502648 - ], - [ - -73.375427, - 45.502684 - ], - [ - -73.375574, - 45.502747 - ], - [ - -73.376319, - 45.503059 - ], - [ - -73.376016, - 45.503247 - ], - [ - -73.375972, - 45.503274 - ], - [ - -73.375789, - 45.503416 - ], - [ - -73.375698, - 45.503485 - ], - [ - -73.375447, - 45.503715 - ], - [ - -73.375293, - 45.503854 - ], - [ - -73.37517, - 45.50398 - ], - [ - -73.374998, - 45.504213 - ], - [ - -73.374854, - 45.504429 - ], - [ - -73.374722, - 45.5046 - ], - [ - -73.374697, - 45.504635 - ], - [ - -73.374625, - 45.504735 - ], - [ - -73.374598, - 45.504793 - ], - [ - -73.374583, - 45.504843 - ], - [ - -73.374565, - 45.504919 - ], - [ - -73.374581, - 45.50514 - ], - [ - -73.37462, - 45.505338 - ], - [ - -73.374746, - 45.505563 - ], - [ - -73.374844, - 45.505788 - ], - [ - -73.374851, - 45.505799 - ], - [ - -73.374873, - 45.505837 - ], - [ - -73.374918, - 45.505916 - ], - [ - -73.374951, - 45.505973 - ], - [ - -73.375061, - 45.506067 - ], - [ - -73.375295, - 45.506238 - ], - [ - -73.375424, - 45.506333 - ], - [ - -73.375748, - 45.506597 - ], - [ - -73.375784, - 45.506626 - ], - [ - -73.375859, - 45.506698 - ], - [ - -73.375911, - 45.506761 - ], - [ - -73.375985, - 45.506896 - ], - [ - -73.376046, - 45.507022 - ], - [ - -73.376084, - 45.507108 - ], - [ - -73.376268, - 45.507459 - ], - [ - -73.376298, - 45.507513 - ], - [ - -73.376345, - 45.507576 - ], - [ - -73.3764, - 45.507639 - ], - [ - -73.376512, - 45.507729 - ], - [ - -73.376632, - 45.507801 - ], - [ - -73.376837, - 45.507891 - ], - [ - -73.376868, - 45.507902 - ], - [ - -73.376914, - 45.507917 - ], - [ - -73.377114, - 45.507982 - ], - [ - -73.377442, - 45.508081 - ], - [ - -73.377571, - 45.508108 - ], - [ - -73.377699, - 45.508135 - ], - [ - -73.377779, - 45.508144 - ], - [ - -73.377878, - 45.50815 - ], - [ - -73.377933, - 45.508153 - ], - [ - -73.378119, - 45.508163 - ], - [ - -73.378452, - 45.508145 - ], - [ - -73.378562, - 45.50814 - ], - [ - -73.378926, - 45.508124 - ], - [ - -73.379147, - 45.508114 - ], - [ - -73.3793, - 45.508105 - ], - [ - -73.379404, - 45.508091 - ], - [ - -73.379526, - 45.508074 - ], - [ - -73.379622, - 45.508047 - ], - [ - -73.379724, - 45.508025 - ], - [ - -73.379863, - 45.507975 - ], - [ - -73.380059, - 45.50789 - ], - [ - -73.380179, - 45.507823 - ], - [ - -73.380268, - 45.507759 - ], - [ - -73.380399, - 45.507666 - ], - [ - -73.380422, - 45.507648 - ], - [ - -73.380503, - 45.507585 - ], - [ - -73.380626, - 45.507481 - ], - [ - -73.380959, - 45.507647 - ], - [ - -73.38128, - 45.507806 - ], - [ - -73.380619, - 45.508917 - ], - [ - -73.380471, - 45.509177 - ], - [ - -73.380338, - 45.509474 - ], - [ - -73.380312, - 45.5096 - ], - [ - -73.380265, - 45.50983 - ], - [ - -73.380243, - 45.510001 - ], - [ - -73.380243, - 45.510041 - ], - [ - -73.380292, - 45.510284 - ], - [ - -73.380332, - 45.510388 - ], - [ - -73.380377, - 45.510478 - ], - [ - -73.380512, - 45.51068 - ], - [ - -73.3806, - 45.510779 - ], - [ - -73.380706, - 45.510874 - ], - [ - -73.380825, - 45.510964 - ], - [ - -73.380962, - 45.511045 - ], - [ - -73.381113, - 45.511117 - ], - [ - -73.381279, - 45.511176 - ], - [ - -73.381458, - 45.511217 - ], - [ - -73.381649, - 45.511244 - ], - [ - -73.38185, - 45.511257 - ], - [ - -73.382059, - 45.511258 - ], - [ - -73.382278, - 45.511249 - ], - [ - -73.383255, - 45.51116 - ], - [ - -73.386918, - 45.510876 - ], - [ - -73.388705, - 45.510769 - ], - [ - -73.390511, - 45.510672 - ], - [ - -73.391744, - 45.51057 - ], - [ - -73.392277, - 45.510503 - ], - [ - -73.393587, - 45.510437 - ], - [ - -73.396575, - 45.510246 - ], - [ - -73.416479, - 45.508939 - ], - [ - -73.422517, - 45.50853 - ], - [ - -73.424264, - 45.508396 - ], - [ - -73.424552, - 45.508369 - ], - [ - -73.425839, - 45.508343 - ], - [ - -73.427203, - 45.508276 - ], - [ - -73.430462, - 45.508094 - ], - [ - -73.430498, - 45.508091 - ], - [ - -73.431368, - 45.508031 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431709, - 45.508009 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.432209, - 45.507974 - ], - [ - -73.435178, - 45.507773 - ], - [ - -73.437575, - 45.507662 - ], - [ - -73.438988, - 45.507572 - ], - [ - -73.440344, - 45.507425 - ], - [ - -73.445881, - 45.507063 - ], - [ - -73.452257, - 45.506638 - ], - [ - -73.452565, - 45.506616 - ], - [ - -73.453776, - 45.50654 - ], - [ - -73.455247, - 45.506419 - ], - [ - -73.456957, - 45.50624 - ], - [ - -73.460279, - 45.505832 - ], - [ - -73.460374, - 45.505823 - ], - [ - -73.461182, - 45.505728 - ], - [ - -73.463671, - 45.505509 - ], - [ - -73.465111, - 45.505401 - ], - [ - -73.467755, - 45.505222 - ], - [ - -73.468692, - 45.505168 - ], - [ - -73.470746, - 45.505025 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492935, - 45.510116 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497942, - 45.512059 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.500628, - 45.512866 - ], - [ - -73.500836, - 45.512931 - ], - [ - -73.502033, - 45.513303 - ], - [ - -73.505335, - 45.514355 - ], - [ - -73.505365, - 45.514365 - ], - [ - -73.507293, - 45.514976 - ], - [ - -73.50757, - 45.515057 - ], - [ - -73.508383, - 45.515323 - ], - [ - -73.509009, - 45.515606 - ], - [ - -73.509231, - 45.515687 - ], - [ - -73.509741, - 45.515862 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515014, - 45.519426 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518906, - 45.520633 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520267, - 45.521193 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.52068, - 45.524093 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.520811, - 45.523427 - ] - ] - }, - "id": 205, - "properties": { - "id": "d2c82927-de0f-4420-9fb0-04f0a456a610", - "data": { - "gtfs": { - "shape_id": "99_3_A" - }, - "segments": [ - { - "distanceMeters": 117, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 660, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 375, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 100, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 385, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 3921, - "travelTimeSeconds": 334 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 14, - "travelTimeSeconds": 1 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 4429, - "travelTimeSeconds": 292 - }, - { - "distanceMeters": 5274, - "travelTimeSeconds": 240 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 1609, - "travelTimeSeconds": 209 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 844, - "travelTimeSeconds": 110 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 312, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 29646, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 13816.863629181675, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.5, - "travelTimeWithoutDwellTimesSeconds": 3120, - "operatingTimeWithLayoverTimeSeconds": 3432, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3120, - "operatingSpeedWithLayoverMetersPerSecond": 8.64, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.5 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d", - "784a98f8-f964-4b51-9a84-d7aa241d6aab", - "a1087eae-a20b-4cd0-b8e7-26440d382937", - "1d0cf396-f4ae-4977-a367-c4cf2be5bc83", - "2b4013fd-f01f-46a6-a43b-07ee39c8fae1", - "23cec068-5e76-484b-b2ab-203e4ea55358", - "57a91181-2fc4-4e39-a5bf-0ff47bbe6e9b", - "b1b9e3d8-602d-45b4-ae3c-162955cba188", - "e39d2286-4090-4933-a88a-16d850b1afef", - "44828ff3-a75f-403d-9e17-7e902c4620b9", - "5f32a25e-7895-498c-b5cd-182adcfb40dd", - "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", - "0893f164-19ee-46d7-888c-b2f0ceb4c706", - "4f0816d5-67e0-4d4d-9413-6e045052da5f", - "e3c142cf-278c-41ec-b9f5-dff43803109b", - "6b369192-79e8-4382-aaa0-abddf0da08d7", - "93fcd4a5-ee80-4c79-b0bc-547231801133", - "3bbcea32-d474-49cc-8cd8-d77d2bac6158", - "b476282d-aa8d-4826-8ad2-39123a162025", - "39a7153a-bac3-4ac2-84e3-79ec24465317", - "2c952684-5d97-4238-ae18-51cba6c9775e", - "819e2afa-bfef-47b3-8a41-a55f4c2f9156", - "0dae6aad-c792-48fd-a50b-e498ec730741", - "664c0430-a4fa-4f7d-aa9b-f0bfd0ecd1e4", - "87b33360-b2b6-4448-85dd-00bcc2d6204c", - "6a18cdcb-7d78-46ad-a358-7895b3877421", - "bc16cbaa-5a30-48f3-9330-5ee7ec0441a1", - "33779f20-bdd2-4c97-8c57-e7f88093dfb0", - "5ee81343-27a6-4a75-a9d6-cfd2443e5ca4", - "202ead47-deaa-405e-b65f-b1c0ac914072", - "a559ed96-e206-444a-b3b1-e1eedefb1ccd", - "b8cfafe3-b6a4-49f2-a7bb-9ae8933f001e", - "ea96e923-e899-4f40-b55b-0ec5bd72c618", - "4511e120-86db-4b9f-bbc5-ef3d3a1627fd", - "57420416-a1c5-4dd0-bce2-fccdbb41630a", - "ab32c22a-056a-40bc-bb99-58c049d50498", - "d4b97f89-0d15-4037-9293-a46292a3b826", - "a5fa3371-93c4-47f9-8972-32a538fcab1f", - "c144cdde-b47b-40cf-b640-e6399771f99b", - "a34242f1-b39e-4075-8b98-da7cc20aa985", - "16815d0a-9758-4c90-a572-66e1110e9895", - "bb60f9d1-ae1a-4b44-81e5-f918c5a03052", - "a4342529-2476-4d58-89df-3af5cc46b2ed", - "847391f5-cdd6-49af-ac72-f7b987f65b7f", - "72167429-f4d5-4eda-870a-b71c9c47ec5e", - "515b8790-77c6-4a3b-8347-a621b1167870", - "9f66e075-701a-442d-9c89-3fee641e6ceb", - "d6901f53-cd66-4086-8fc5-2643b6cfcce0", - "1903cbec-a898-4d1e-aa47-0930a7af3bd5", - "5c28c22e-79f1-4a2c-9171-d9cc96f1af7d", - "0910a11d-1b83-4a5b-9c01-30b9a6d926ef", - "4c4fb532-1ed3-4dc8-ab02-b2a6e87e7b90", - "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", - "01e0bcb2-ac63-4c88-b110-c273905a1d5c", - "2c8a6d09-2eb8-47e3-86bb-ac6501351f3b", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "acabc807-b0f5-4579-b183-cef0484a7cc2" - ], - "stops": [], - "line_id": "c2ab17fa-7d98-4a1d-9fed-26a95aea0b7e", - "segments": [ - 0, - 5, - 41, - 54, - 60, - 67, - 77, - 82, - 96, - 107, - 120, - 125, - 128, - 130, - 135, - 138, - 142, - 149, - 154, - 159, - 164, - 168, - 176, - 183, - 187, - 195, - 198, - 203, - 208, - 214, - 220, - 222, - 230, - 238, - 247, - 259, - 263, - 273, - 276, - 278, - 280, - 284, - 286, - 293, - 302, - 307, - 316, - 320, - 339, - 344, - 353, - 355, - 445, - 462, - 464, - 495, - 507, - 550, - 606, - 619, - 654, - 661 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 205, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.343677, - 45.513165 - ], - [ - -73.34367, - 45.513061 - ], - [ - -73.343642, - 45.512791 - ], - [ - -73.343612, - 45.512647 - ], - [ - -73.343567, - 45.512534 - ], - [ - -73.343354, - 45.512062 - ], - [ - -73.343097, - 45.5121 - ], - [ - -73.343038, - 45.512092 - ], - [ - -73.342894, - 45.512074 - ], - [ - -73.342741, - 45.512043 - ], - [ - -73.342629, - 45.512011 - ], - [ - -73.342349, - 45.511934 - ], - [ - -73.341938, - 45.511803 - ], - [ - -73.341736, - 45.511731 - ], - [ - -73.341412, - 45.51159 - ], - [ - -73.341407, - 45.511588 - ], - [ - -73.341146, - 45.511475 - ], - [ - -73.341122, - 45.511465 - ], - [ - -73.340633, - 45.511225 - ], - [ - -73.340296, - 45.511027 - ], - [ - -73.340118, - 45.510905 - ], - [ - -73.340029, - 45.510841 - ], - [ - -73.33993, - 45.51077 - ], - [ - -73.339787, - 45.510662 - ], - [ - -73.33958, - 45.5105 - ], - [ - -73.339426, - 45.510378 - ], - [ - -73.33923, - 45.510225 - ], - [ - -73.339011, - 45.510053 - ], - [ - -73.338812, - 45.5099 - ], - [ - -73.338649, - 45.509765 - ], - [ - -73.338438, - 45.509603 - ], - [ - -73.338251, - 45.509472 - ], - [ - -73.338077, - 45.509382 - ], - [ - -73.337875, - 45.5093 - ], - [ - -73.337654, - 45.509233 - ], - [ - -73.337473, - 45.509192 - ], - [ - -73.337253, - 45.509165 - ], - [ - -73.337049, - 45.509155 - ], - [ - -73.336952, - 45.509157 - ], - [ - -73.336939, - 45.509159 - ], - [ - -73.336547, - 45.509188 - ], - [ - -73.336225, - 45.509224 - ], - [ - -73.33614, - 45.509238 - ], - [ - -73.336059, - 45.509261 - ], - [ - -73.335984, - 45.509292 - ], - [ - -73.335916, - 45.509331 - ], - [ - -73.335544, - 45.509572 - ], - [ - -73.335336, - 45.509723 - ], - [ - -73.335253, - 45.509783 - ], - [ - -73.33485, - 45.510077 - ], - [ - -73.334454, - 45.510366 - ], - [ - -73.334013, - 45.510683 - ], - [ - -73.333664, - 45.510909 - ], - [ - -73.332968, - 45.511363 - ], - [ - -73.332471, - 45.511692 - ], - [ - -73.332065, - 45.51196 - ], - [ - -73.331778, - 45.512149 - ], - [ - -73.331385, - 45.512407 - ], - [ - -73.330794, - 45.512786 - ], - [ - -73.330507, - 45.512975 - ], - [ - -73.32972, - 45.513518 - ], - [ - -73.32948, - 45.513693 - ], - [ - -73.329221, - 45.51389 - ], - [ - -73.32877, - 45.514101 - ], - [ - -73.328456, - 45.514236 - ], - [ - -73.328284, - 45.514321 - ], - [ - -73.327945, - 45.514388 - ], - [ - -73.32769, - 45.514424 - ], - [ - -73.326299, - 45.514534 - ], - [ - -73.325842, - 45.514565 - ], - [ - -73.325331, - 45.514602 - ], - [ - -73.324882, - 45.514635 - ], - [ - -73.324568, - 45.514658 - ], - [ - -73.324037, - 45.514697 - ], - [ - -73.323824, - 45.514709 - ], - [ - -73.32364, - 45.514723 - ], - [ - -73.322784, - 45.514785 - ], - [ - -73.320491, - 45.514943 - ], - [ - -73.320068, - 45.51497 - ], - [ - -73.319813, - 45.514987 - ], - [ - -73.319504, - 45.515014 - ], - [ - -73.31929, - 45.515022 - ], - [ - -73.319076, - 45.51504 - ], - [ - -73.318751, - 45.515062 - ], - [ - -73.318468, - 45.515075 - ], - [ - -73.318303, - 45.515085 - ], - [ - -73.318161, - 45.515093 - ], - [ - -73.317967, - 45.515098 - ], - [ - -73.317909, - 45.5151 - ], - [ - -73.317815, - 45.515109 - ], - [ - -73.317711, - 45.515131 - ], - [ - -73.317558, - 45.515133 - ], - [ - -73.317556, - 45.51535 - ], - [ - -73.317556, - 45.515379 - ], - [ - -73.317555, - 45.515401 - ], - [ - -73.317518, - 45.516504 - ], - [ - -73.317461, - 45.516823 - ], - [ - -73.317399, - 45.517358 - ], - [ - -73.31739, - 45.517605 - ], - [ - -73.317378, - 45.517798 - ], - [ - -73.31736, - 45.518111 - ], - [ - -73.317351, - 45.518261 - ], - [ - -73.317339, - 45.518442 - ], - [ - -73.31733, - 45.518584 - ], - [ - -73.317374, - 45.51884 - ], - [ - -73.317442, - 45.519063 - ], - [ - -73.317668, - 45.519485 - ], - [ - -73.317719, - 45.519565 - ], - [ - -73.317762, - 45.519631 - ], - [ - -73.318032, - 45.519996 - ], - [ - -73.318144, - 45.52016 - ], - [ - -73.318342, - 45.520362 - ], - [ - -73.318461, - 45.520393 - ], - [ - -73.318552, - 45.520474 - ], - [ - -73.318732, - 45.520632 - ], - [ - -73.318986, - 45.520847 - ], - [ - -73.319781, - 45.521516 - ], - [ - -73.320724, - 45.522303 - ], - [ - -73.32099, - 45.522525 - ], - [ - -73.321325, - 45.522814 - ], - [ - -73.322064, - 45.52344 - ], - [ - -73.323443, - 45.524603 - ], - [ - -73.324477, - 45.525478 - ], - [ - -73.324515, - 45.525523 - ], - [ - -73.325411, - 45.526298 - ], - [ - -73.325817, - 45.526587 - ], - [ - -73.325981, - 45.526711 - ], - [ - -73.326635, - 45.527209 - ], - [ - -73.327746, - 45.528029 - ], - [ - -73.328159, - 45.528322 - ], - [ - -73.328691, - 45.528715 - ], - [ - -73.330009, - 45.529693 - ], - [ - -73.330761, - 45.530256 - ], - [ - -73.330825, - 45.530292 - ], - [ - -73.331492, - 45.529797 - ], - [ - -73.331877, - 45.529511 - ], - [ - -73.331967, - 45.529457 - ], - [ - -73.332637, - 45.528977 - ], - [ - -73.333063, - 45.528692 - ], - [ - -73.333275, - 45.52855 - ], - [ - -73.333439, - 45.528436 - ], - [ - -73.333788, - 45.528191 - ], - [ - -73.334301, - 45.52785 - ], - [ - -73.334545, - 45.527688 - ], - [ - -73.334622, - 45.527643 - ], - [ - -73.334776, - 45.527545 - ], - [ - -73.335456, - 45.527046 - ], - [ - -73.336249, - 45.52644 - ], - [ - -73.336573, - 45.52618 - ], - [ - -73.337228, - 45.52569 - ], - [ - -73.337669, - 45.525344 - ], - [ - -73.338368, - 45.524837 - ], - [ - -73.339197, - 45.525405 - ], - [ - -73.339713, - 45.525764 - ], - [ - -73.340005, - 45.525968 - ], - [ - -73.340357, - 45.526185 - ], - [ - -73.340568, - 45.526316 - ], - [ - -73.340631, - 45.526362 - ], - [ - -73.340738, - 45.526442 - ], - [ - -73.341034, - 45.526636 - ], - [ - -73.341462, - 45.526915 - ], - [ - -73.34183, - 45.527172 - ], - [ - -73.341994, - 45.527303 - ], - [ - -73.342074, - 45.527389 - ], - [ - -73.341972, - 45.527469 - ], - [ - -73.341594, - 45.527797 - ], - [ - -73.341101, - 45.528233 - ], - [ - -73.341005, - 45.528323 - ], - [ - -73.340784, - 45.52853 - ], - [ - -73.340213, - 45.529055 - ], - [ - -73.339969, - 45.529289 - ], - [ - -73.339738, - 45.529486 - ], - [ - -73.340258, - 45.529863 - ], - [ - -73.340316, - 45.529904 - ], - [ - -73.340388, - 45.529956 - ], - [ - -73.340412, - 45.529974 - ], - [ - -73.341348, - 45.530649 - ], - [ - -73.341671, - 45.530886 - ], - [ - -73.34171, - 45.530915 - ], - [ - -73.34266, - 45.53161 - ], - [ - -73.342742, - 45.531673 - ], - [ - -73.34588, - 45.533949 - ], - [ - -73.346177, - 45.534156 - ], - [ - -73.346943, - 45.534715 - ], - [ - -73.347187, - 45.5349 - ], - [ - -73.347547, - 45.535103 - ], - [ - -73.347857, - 45.535261 - ], - [ - -73.348425, - 45.535573 - ], - [ - -73.348456, - 45.53559 - ], - [ - -73.348803, - 45.535802 - ], - [ - -73.349066, - 45.535978 - ], - [ - -73.349411, - 45.536275 - ], - [ - -73.349756, - 45.536582 - ], - [ - -73.350274, - 45.537136 - ], - [ - -73.350577, - 45.537487 - ], - [ - -73.350743, - 45.537681 - ], - [ - -73.350799, - 45.537748 - ], - [ - -73.351092, - 45.537645 - ], - [ - -73.351237, - 45.53761 - ], - [ - -73.351597, - 45.537552 - ], - [ - -73.351634, - 45.538348 - ], - [ - -73.351731, - 45.540355 - ], - [ - -73.35188, - 45.540352 - ], - [ - -73.352072, - 45.540349 - ], - [ - -73.352742, - 45.540338 - ], - [ - -73.3537, - 45.540317 - ], - [ - -73.354369, - 45.540304 - ], - [ - -73.354373, - 45.5403 - ], - [ - -73.354728, - 45.540161 - ], - [ - -73.354958, - 45.540044 - ], - [ - -73.355561, - 45.539685 - ], - [ - -73.355856, - 45.539514 - ], - [ - -73.35601, - 45.539397 - ], - [ - -73.356049, - 45.53937 - ], - [ - -73.356087, - 45.539334 - ], - [ - -73.356151, - 45.539281 - ], - [ - -73.356215, - 45.539218 - ], - [ - -73.356254, - 45.539173 - ], - [ - -73.356267, - 45.539146 - ], - [ - -73.356318, - 45.539011 - ], - [ - -73.35637, - 45.538876 - ], - [ - -73.356333, - 45.538462 - ], - [ - -73.35632, - 45.5383 - ], - [ - -73.356334, - 45.538084 - ], - [ - -73.356385, - 45.537904 - ], - [ - -73.356488, - 45.537706 - ], - [ - -73.356386, - 45.537688 - ], - [ - -73.356194, - 45.537616 - ], - [ - -73.356138, - 45.537582 - ], - [ - -73.356028, - 45.537517 - ], - [ - -73.35581, - 45.537381 - ], - [ - -73.355606, - 45.537228 - ], - [ - -73.354978, - 45.536786 - ], - [ - -73.354672, - 45.536579 - ], - [ - -73.35439, - 45.536363 - ], - [ - -73.354257, - 45.536268 - ], - [ - -73.354237, - 45.536255 - ], - [ - -73.354085, - 45.536133 - ], - [ - -73.353353, - 45.535601 - ], - [ - -73.352814, - 45.535218 - ], - [ - -73.352683, - 45.535132 - ], - [ - -73.352431, - 45.534966 - ], - [ - -73.352156, - 45.534794 - ], - [ - -73.351899, - 45.534632 - ], - [ - -73.351631, - 45.534461 - ], - [ - -73.351414, - 45.534325 - ], - [ - -73.351196, - 45.534181 - ], - [ - -73.350966, - 45.53401 - ], - [ - -73.350778, - 45.533879 - ], - [ - -73.350008, - 45.533298 - ], - [ - -73.34968, - 45.533059 - ], - [ - -73.348768, - 45.532396 - ], - [ - -73.346954, - 45.531044 - ], - [ - -73.345625, - 45.530084 - ], - [ - -73.345369, - 45.529899 - ], - [ - -73.345813, - 45.52961 - ], - [ - -73.346177, - 45.529374 - ], - [ - -73.347279, - 45.528588 - ], - [ - -73.348499, - 45.527798 - ], - [ - -73.349319, - 45.52725 - ], - [ - -73.350087, - 45.526724 - ], - [ - -73.350285, - 45.52659 - ], - [ - -73.350534, - 45.526433 - ], - [ - -73.350711, - 45.526365 - ], - [ - -73.350958, - 45.526271 - ], - [ - -73.351151, - 45.526199 - ], - [ - -73.351917, - 45.525931 - ], - [ - -73.351851, - 45.525827 - ], - [ - -73.351836, - 45.525786 - ], - [ - -73.351798, - 45.525714 - ], - [ - -73.351721, - 45.525594 - ], - [ - -73.351697, - 45.525557 - ], - [ - -73.3516, - 45.525453 - ], - [ - -73.351479, - 45.52535 - ], - [ - -73.351402, - 45.525286 - ], - [ - -73.350822, - 45.524876 - ], - [ - -73.349891, - 45.524214 - ], - [ - -73.349594, - 45.524002 - ], - [ - -73.349337, - 45.523831 - ], - [ - -73.349014, - 45.523636 - ], - [ - -73.348978, - 45.523614 - ], - [ - -73.348701, - 45.523497 - ], - [ - -73.348489, - 45.52342 - ], - [ - -73.348302, - 45.523361 - ], - [ - -73.348012, - 45.523289 - ], - [ - -73.347832, - 45.523257 - ], - [ - -73.347705, - 45.523243 - ], - [ - -73.347547, - 45.523225 - ], - [ - -73.346648, - 45.523103 - ], - [ - -73.346291, - 45.523053 - ], - [ - -73.346291, - 45.52285 - ], - [ - -73.346292, - 45.522634 - ], - [ - -73.346292, - 45.522585 - ], - [ - -73.346288, - 45.52231 - ], - [ - -73.346287, - 45.522153 - ], - [ - -73.346275, - 45.522009 - ], - [ - -73.346262, - 45.52182 - ], - [ - -73.346237, - 45.521631 - ], - [ - -73.346225, - 45.521478 - ], - [ - -73.346184, - 45.521289 - ], - [ - -73.346149, - 45.521073 - ], - [ - -73.346136, - 45.521001 - ], - [ - -73.346124, - 45.520929 - ], - [ - -73.346124, - 45.520857 - ], - [ - -73.346124, - 45.520785 - ], - [ - -73.346137, - 45.520677 - ], - [ - -73.346163, - 45.520569 - ], - [ - -73.346222, - 45.520303 - ], - [ - -73.346306, - 45.519804 - ], - [ - -73.346397, - 45.519174 - ], - [ - -73.346424, - 45.518967 - ], - [ - -73.34645, - 45.518527 - ], - [ - -73.346432, - 45.518526 - ], - [ - -73.345381, - 45.518517 - ], - [ - -73.344748, - 45.518511 - ], - [ - -73.344537, - 45.51843 - ], - [ - -73.34438, - 45.518344 - ], - [ - -73.344264, - 45.518227 - ], - [ - -73.344137, - 45.518006 - ], - [ - -73.344045, - 45.516998 - ], - [ - -73.343805, - 45.514586 - ], - [ - -73.343773, - 45.514316 - ], - [ - -73.343763, - 45.514238 - ], - [ - -73.343701, - 45.513718 - ], - [ - -73.343799, - 45.513709 - ], - [ - -73.348598, - 45.513399 - ], - [ - -73.35419, - 45.513037 - ], - [ - -73.357647, - 45.512814 - ], - [ - -73.358491, - 45.512756 - ], - [ - -73.359423, - 45.512694 - ], - [ - -73.359555, - 45.512681 - ], - [ - -73.360882, - 45.512602 - ], - [ - -73.361399, - 45.512556 - ], - [ - -73.36168, - 45.512531 - ], - [ - -73.362369, - 45.512441 - ], - [ - -73.363202, - 45.512325 - ], - [ - -73.364624, - 45.512098 - ], - [ - -73.366158, - 45.511879 - ], - [ - -73.36739, - 45.511666 - ], - [ - -73.367686, - 45.511615 - ], - [ - -73.367934, - 45.51158 - ], - [ - -73.368481, - 45.511535 - ], - [ - -73.368699, - 45.511527 - ], - [ - -73.369078, - 45.51155 - ], - [ - -73.370401, - 45.511691 - ], - [ - -73.370685, - 45.511713 - ], - [ - -73.370961, - 45.511723 - ], - [ - -73.371234, - 45.511723 - ], - [ - -73.371918, - 45.511719 - ], - [ - -73.373195, - 45.511581 - ], - [ - -73.373585, - 45.511546 - ], - [ - -73.373778, - 45.511519 - ], - [ - -73.374154, - 45.511452 - ], - [ - -73.374325, - 45.511398 - ], - [ - -73.374487, - 45.51134 - ], - [ - -73.374573, - 45.511301 - ], - [ - -73.374637, - 45.511272 - ], - [ - -73.374771, - 45.511191 - ], - [ - -73.374884, - 45.511102 - ], - [ - -73.374978, - 45.511003 - ], - [ - -73.375051, - 45.510895 - ], - [ - -73.375109, - 45.510782 - ], - [ - -73.375141, - 45.51067 - ], - [ - -73.375153, - 45.510548 - ], - [ - -73.375148, - 45.510427 - ], - [ - -73.375124, - 45.510301 - ], - [ - -73.375099, - 45.510225 - ], - [ - -73.375083, - 45.510175 - ], - [ - -73.375023, - 45.510049 - ], - [ - -73.374952, - 45.509923 - ], - [ - -73.374866, - 45.509797 - ], - [ - -73.374765, - 45.509675 - ], - [ - -73.374649, - 45.509554 - ], - [ - -73.374517, - 45.509441 - ], - [ - -73.374091, - 45.50913 - ], - [ - -73.373634, - 45.508918 - ], - [ - -73.373366, - 45.508787 - ], - [ - -73.373092, - 45.508616 - ], - [ - -73.372853, - 45.508423 - ], - [ - -73.372808, - 45.508386 - ], - [ - -73.372681, - 45.508256 - ], - [ - -73.37257, - 45.508112 - ], - [ - -73.372476, - 45.507967 - ], - [ - -73.3724, - 45.507819 - ], - [ - -73.372343, - 45.507679 - ], - [ - -73.372306, - 45.507517 - ], - [ - -73.372287, - 45.507369 - ], - [ - -73.372226, - 45.506676 - ], - [ - -73.372198, - 45.50623 - ], - [ - -73.372124, - 45.50556 - ], - [ - -73.372138, - 45.5055 - ], - [ - -73.372243, - 45.505043 - ], - [ - -73.372302, - 45.504692 - ], - [ - -73.372354, - 45.504449 - ], - [ - -73.372503, - 45.503954 - ], - [ - -73.372655, - 45.503576 - ], - [ - -73.373011, - 45.502875 - ], - [ - -73.373173, - 45.502587 - ], - [ - -73.37323, - 45.502511 - ], - [ - -73.373299, - 45.502439 - ], - [ - -73.373386, - 45.502385 - ], - [ - -73.373485, - 45.50234 - ], - [ - -73.37359, - 45.502313 - ], - [ - -73.373645, - 45.502304 - ], - [ - -73.37369, - 45.5023 - ], - [ - -73.37385, - 45.502305 - ], - [ - -73.373969, - 45.502327 - ], - [ - -73.374235, - 45.502395 - ], - [ - -73.374326, - 45.502409 - ], - [ - -73.374466, - 45.502454 - ], - [ - -73.374786, - 45.50253 - ], - [ - -73.375092, - 45.502612 - ], - [ - -73.375264, - 45.502648 - ], - [ - -73.375427, - 45.502684 - ], - [ - -73.375574, - 45.502747 - ], - [ - -73.376319, - 45.503059 - ], - [ - -73.376016, - 45.503247 - ], - [ - -73.375972, - 45.503274 - ], - [ - -73.375698, - 45.503485 - ], - [ - -73.375447, - 45.503715 - ], - [ - -73.375293, - 45.503854 - ], - [ - -73.37517, - 45.50398 - ], - [ - -73.374998, - 45.504213 - ], - [ - -73.374854, - 45.504429 - ], - [ - -73.37473, - 45.504589 - ], - [ - -73.374722, - 45.5046 - ], - [ - -73.374697, - 45.504635 - ], - [ - -73.374625, - 45.504735 - ], - [ - -73.374598, - 45.504793 - ], - [ - -73.374583, - 45.504843 - ], - [ - -73.374565, - 45.504919 - ], - [ - -73.374581, - 45.50514 - ], - [ - -73.37462, - 45.505338 - ], - [ - -73.374746, - 45.505563 - ], - [ - -73.374844, - 45.505788 - ], - [ - -73.374873, - 45.505837 - ], - [ - -73.374951, - 45.505973 - ], - [ - -73.375061, - 45.506067 - ], - [ - -73.375295, - 45.506238 - ], - [ - -73.375424, - 45.506333 - ], - [ - -73.375748, - 45.506597 - ], - [ - -73.375784, - 45.506626 - ], - [ - -73.375859, - 45.506698 - ], - [ - -73.375911, - 45.506761 - ], - [ - -73.375985, - 45.506896 - ], - [ - -73.376046, - 45.507022 - ], - [ - -73.376084, - 45.507108 - ], - [ - -73.376268, - 45.507459 - ], - [ - -73.376298, - 45.507513 - ], - [ - -73.376345, - 45.507576 - ], - [ - -73.3764, - 45.507639 - ], - [ - -73.376512, - 45.507729 - ], - [ - -73.376632, - 45.507801 - ], - [ - -73.376837, - 45.507891 - ], - [ - -73.376868, - 45.507902 - ], - [ - -73.376914, - 45.507917 - ], - [ - -73.377114, - 45.507982 - ], - [ - -73.377442, - 45.508081 - ], - [ - -73.377571, - 45.508108 - ], - [ - -73.377699, - 45.508135 - ], - [ - -73.377779, - 45.508144 - ], - [ - -73.377878, - 45.50815 - ], - [ - -73.377933, - 45.508153 - ], - [ - -73.378119, - 45.508163 - ], - [ - -73.378452, - 45.508145 - ], - [ - -73.378562, - 45.50814 - ], - [ - -73.379147, - 45.508114 - ], - [ - -73.3793, - 45.508105 - ], - [ - -73.379404, - 45.508091 - ], - [ - -73.379526, - 45.508074 - ], - [ - -73.379622, - 45.508047 - ], - [ - -73.379724, - 45.508025 - ], - [ - -73.379863, - 45.507975 - ], - [ - -73.380059, - 45.50789 - ], - [ - -73.380179, - 45.507823 - ], - [ - -73.380268, - 45.507759 - ], - [ - -73.380399, - 45.507666 - ], - [ - -73.380503, - 45.507585 - ], - [ - -73.380626, - 45.507481 - ], - [ - -73.380959, - 45.507647 - ], - [ - -73.38128, - 45.507806 - ], - [ - -73.380869, - 45.508496 - ], - [ - -73.380619, - 45.508917 - ], - [ - -73.380471, - 45.509177 - ], - [ - -73.380338, - 45.509474 - ], - [ - -73.380312, - 45.5096 - ], - [ - -73.380265, - 45.50983 - ], - [ - -73.380243, - 45.510001 - ], - [ - -73.380243, - 45.510041 - ], - [ - -73.380292, - 45.510284 - ], - [ - -73.380332, - 45.510388 - ], - [ - -73.380377, - 45.510478 - ], - [ - -73.380512, - 45.51068 - ], - [ - -73.3806, - 45.510779 - ], - [ - -73.380706, - 45.510874 - ], - [ - -73.380825, - 45.510964 - ], - [ - -73.380962, - 45.511045 - ], - [ - -73.381113, - 45.511117 - ], - [ - -73.381279, - 45.511176 - ], - [ - -73.381458, - 45.511217 - ], - [ - -73.381649, - 45.511244 - ], - [ - -73.38185, - 45.511257 - ], - [ - -73.382059, - 45.511258 - ], - [ - -73.382278, - 45.511249 - ], - [ - -73.382833, - 45.511198 - ], - [ - -73.383255, - 45.51116 - ], - [ - -73.386918, - 45.510876 - ], - [ - -73.387845, - 45.510821 - ], - [ - -73.388705, - 45.510769 - ], - [ - -73.390511, - 45.510672 - ], - [ - -73.391744, - 45.51057 - ], - [ - -73.392277, - 45.510503 - ], - [ - -73.393587, - 45.510437 - ], - [ - -73.395053, - 45.510343 - ], - [ - -73.396575, - 45.510246 - ], - [ - -73.399882, - 45.510029 - ], - [ - -73.407283, - 45.509544 - ], - [ - -73.415447, - 45.509007 - ], - [ - -73.416479, - 45.508939 - ], - [ - -73.420115, - 45.508693 - ], - [ - -73.422517, - 45.50853 - ], - [ - -73.424264, - 45.508396 - ], - [ - -73.424552, - 45.508369 - ], - [ - -73.424972, - 45.508361 - ], - [ - -73.425839, - 45.508343 - ], - [ - -73.427203, - 45.508276 - ], - [ - -73.430462, - 45.508094 - ], - [ - -73.430498, - 45.508091 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431709, - 45.508009 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.432209, - 45.507974 - ], - [ - -73.433018, - 45.507919 - ], - [ - -73.435178, - 45.507773 - ], - [ - -73.437575, - 45.507662 - ], - [ - -73.438105, - 45.507628 - ], - [ - -73.438988, - 45.507572 - ], - [ - -73.440344, - 45.507425 - ], - [ - -73.444956, - 45.507123 - ], - [ - -73.445881, - 45.507063 - ], - [ - -73.452102, - 45.506649 - ], - [ - -73.452257, - 45.506638 - ], - [ - -73.452565, - 45.506616 - ], - [ - -73.453776, - 45.50654 - ], - [ - -73.455247, - 45.506419 - ], - [ - -73.456957, - 45.50624 - ], - [ - -73.457921, - 45.506121 - ], - [ - -73.460279, - 45.505832 - ], - [ - -73.460374, - 45.505823 - ], - [ - -73.461182, - 45.505728 - ], - [ - -73.463671, - 45.505509 - ], - [ - -73.463946, - 45.505488 - ], - [ - -73.465111, - 45.505401 - ], - [ - -73.467755, - 45.505222 - ], - [ - -73.468692, - 45.505168 - ], - [ - -73.470746, - 45.505025 - ], - [ - -73.470963, - 45.505012 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.474139, - 45.504804 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483738, - 45.50403 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488116, - 45.503682 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.490956, - 45.507944 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494664, - 45.511015 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497497, - 45.511938 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.500628, - 45.512866 - ], - [ - -73.500836, - 45.512931 - ], - [ - -73.502033, - 45.513303 - ], - [ - -73.505335, - 45.514355 - ], - [ - -73.505365, - 45.514365 - ], - [ - -73.506222, - 45.514637 - ], - [ - -73.507293, - 45.514976 - ], - [ - -73.50757, - 45.515057 - ], - [ - -73.508383, - 45.515323 - ], - [ - -73.509009, - 45.515606 - ], - [ - -73.509231, - 45.515687 - ], - [ - -73.509741, - 45.515862 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511809, - 45.516803 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520267, - 45.521193 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520165, - 45.521928 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.52068, - 45.524093 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.520811, - 45.523427 - ] - ] - }, - "id": 206, - "properties": { - "id": "0acb9215-8330-4e94-994f-5081c07130da", - "data": { - "gtfs": { - "shape_id": "99_2_A" - }, - "segments": [ - { - "distanceMeters": 291, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 1644, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 898, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 538, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 639, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 933, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 707, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 515, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 900, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 697, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 794, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 505, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 458, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 602, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 731, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 620, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 438, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 565, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 478, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 570, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 826, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 898, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 460, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 565, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 378, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 580, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 639, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 366, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 629, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 538, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 560, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 458, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 475, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 550, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 754, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 525, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 458, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 744, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 500, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 958, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 622, - "travelTimeSeconds": 38 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 29646, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 95.23448200525412, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 17.04, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 15.44, - "averageSpeedWithoutDwellTimesMetersPerSecond": 17.04 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d", - "784a98f8-f964-4b51-9a84-d7aa241d6aab", - "a1087eae-a20b-4cd0-b8e7-26440d382937", - "1d0cf396-f4ae-4977-a367-c4cf2be5bc83", - "2b4013fd-f01f-46a6-a43b-07ee39c8fae1", - "23cec068-5e76-484b-b2ab-203e4ea55358", - "57a91181-2fc4-4e39-a5bf-0ff47bbe6e9b", - "b1b9e3d8-602d-45b4-ae3c-162955cba188", - "e39d2286-4090-4933-a88a-16d850b1afef", - "44828ff3-a75f-403d-9e17-7e902c4620b9", - "5f32a25e-7895-498c-b5cd-182adcfb40dd", - "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", - "0893f164-19ee-46d7-888c-b2f0ceb4c706", - "4f0816d5-67e0-4d4d-9413-6e045052da5f", - "e3c142cf-278c-41ec-b9f5-dff43803109b", - "6b369192-79e8-4382-aaa0-abddf0da08d7", - "93fcd4a5-ee80-4c79-b0bc-547231801133", - "3bbcea32-d474-49cc-8cd8-d77d2bac6158", - "b476282d-aa8d-4826-8ad2-39123a162025", - "39a7153a-bac3-4ac2-84e3-79ec24465317", - "2c952684-5d97-4238-ae18-51cba6c9775e", - "819e2afa-bfef-47b3-8a41-a55f4c2f9156", - "0dae6aad-c792-48fd-a50b-e498ec730741", - "664c0430-a4fa-4f7d-aa9b-f0bfd0ecd1e4", - "87b33360-b2b6-4448-85dd-00bcc2d6204c", - "6a18cdcb-7d78-46ad-a358-7895b3877421", - "bc16cbaa-5a30-48f3-9330-5ee7ec0441a1", - "33779f20-bdd2-4c97-8c57-e7f88093dfb0", - "5ee81343-27a6-4a75-a9d6-cfd2443e5ca4", - "202ead47-deaa-405e-b65f-b1c0ac914072", - "a559ed96-e206-444a-b3b1-e1eedefb1ccd", - "b8cfafe3-b6a4-49f2-a7bb-9ae8933f001e", - "ea96e923-e899-4f40-b55b-0ec5bd72c618", - "4511e120-86db-4b9f-bbc5-ef3d3a1627fd", - "57420416-a1c5-4dd0-bce2-fccdbb41630a", - "ab32c22a-056a-40bc-bb99-58c049d50498", - "d4b97f89-0d15-4037-9293-a46292a3b826", - "a5fa3371-93c4-47f9-8972-32a538fcab1f", - "c144cdde-b47b-40cf-b640-e6399771f99b", - "a34242f1-b39e-4075-8b98-da7cc20aa985", - "16815d0a-9758-4c90-a572-66e1110e9895", - "bb60f9d1-ae1a-4b44-81e5-f918c5a03052", - "a4342529-2476-4d58-89df-3af5cc46b2ed", - "847391f5-cdd6-49af-ac72-f7b987f65b7f", - "72167429-f4d5-4eda-870a-b71c9c47ec5e", - "515b8790-77c6-4a3b-8347-a621b1167870", - "9f66e075-701a-442d-9c89-3fee641e6ceb", - "d6901f53-cd66-4086-8fc5-2643b6cfcce0", - "1903cbec-a898-4d1e-aa47-0930a7af3bd5", - "5c28c22e-79f1-4a2c-9171-d9cc96f1af7d", - "0910a11d-1b83-4a5b-9c01-30b9a6d926ef", - "4c4fb532-1ed3-4dc8-ab02-b2a6e87e7b90" - ], - "stops": [], - "line_id": "c2ab17fa-7d98-4a1d-9fed-26a95aea0b7e", - "segments": [ - 0, - 15, - 72, - 101, - 117, - 126, - 142, - 157, - 172, - 187, - 202, - 235, - 250, - 253, - 263, - 279, - 312, - 321, - 325, - 326, - 332, - 338, - 355, - 378, - 390, - 424, - 481, - 504, - 507, - 513, - 515, - 516, - 517, - 519, - 523, - 532, - 535, - 538, - 540, - 546, - 551, - 556, - 558, - 562, - 574, - 585, - 599, - 607, - 614, - 626, - 662 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 206, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521447, - 45.524278 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519379, - 45.523634 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519186, - 45.526809 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517663, - 45.527363 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517465, - 45.528168 - ], - [ - -73.517458, - 45.528249 - ], - [ - -73.517471, - 45.528385 - ], - [ - -73.517504, - 45.528565 - ], - [ - -73.517516, - 45.528652 - ], - [ - -73.517553, - 45.52877 - ], - [ - -73.517635, - 45.529002 - ], - [ - -73.517693, - 45.529249 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.51956, - 45.531975 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500328, - 45.550074 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.499756, - 45.550039 - ], - [ - -73.499583, - 45.550043 - ], - [ - -73.499254, - 45.550048 - ], - [ - -73.49904, - 45.550039 - ], - [ - -73.498716, - 45.549998 - ], - [ - -73.49829, - 45.549868 - ], - [ - -73.497924, - 45.54971 - ], - [ - -73.497576, - 45.54953 - ], - [ - -73.497529, - 45.549503 - ], - [ - -73.497225, - 45.549332 - ], - [ - -73.497041, - 45.549211 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494902, - 45.54755 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.491911, - 45.546057 - ], - [ - -73.491829, - 45.546111 - ], - [ - -73.491647, - 45.546228 - ], - [ - -73.491431, - 45.546368 - ], - [ - -73.491216, - 45.546506 - ], - [ - -73.491073, - 45.546649 - ], - [ - -73.490714, - 45.547006 - ], - [ - -73.48951, - 45.547751 - ], - [ - -73.489407, - 45.547816 - ], - [ - -73.485955, - 45.549961 - ], - [ - -73.485528, - 45.550218 - ], - [ - -73.485059, - 45.550458 - ], - [ - -73.484195, - 45.5509 - ], - [ - -73.483956, - 45.551023 - ], - [ - -73.483045, - 45.55149 - ], - [ - -73.482159, - 45.551945 - ], - [ - -73.482067, - 45.551991 - ], - [ - -73.482032, - 45.552008 - ], - [ - -73.480528, - 45.552777 - ], - [ - -73.480484, - 45.552799 - ], - [ - -73.480374, - 45.552853 - ], - [ - -73.479586, - 45.553272 - ], - [ - -73.478403, - 45.55387 - ], - [ - -73.47721, - 45.554495 - ], - [ - -73.47658, - 45.554819 - ], - [ - -73.47589, - 45.555179 - ], - [ - -73.475627, - 45.555342 - ], - [ - -73.475549, - 45.55539 - ], - [ - -73.475452, - 45.555449 - ], - [ - -73.473844, - 45.556506 - ], - [ - -73.473763, - 45.556559 - ], - [ - -73.473662, - 45.556622 - ], - [ - -73.472632, - 45.557275 - ], - [ - -73.472629, - 45.557279 - ], - [ - -73.472372, - 45.557373 - ], - [ - -73.472222, - 45.557423 - ], - [ - -73.472064, - 45.557495 - ], - [ - -73.471877, - 45.557607 - ], - [ - -73.471648, - 45.55776 - ], - [ - -73.471558, - 45.557832 - ], - [ - -73.471339, - 45.557976 - ], - [ - -73.470903, - 45.558228 - ], - [ - -73.470793, - 45.5583 - ], - [ - -73.469991, - 45.558844 - ], - [ - -73.469731, - 45.558997 - ], - [ - -73.469486, - 45.559163 - ], - [ - -73.46926, - 45.559316 - ], - [ - -73.468792, - 45.559631 - ], - [ - -73.468729, - 45.559676 - ], - [ - -73.468547, - 45.559798 - ], - [ - -73.467979, - 45.560279 - ], - [ - -73.467816, - 45.560373 - ], - [ - -73.467525, - 45.560508 - ], - [ - -73.467261, - 45.560621 - ], - [ - -73.46697, - 45.560742 - ], - [ - -73.466692, - 45.560841 - ], - [ - -73.466384, - 45.560949 - ], - [ - -73.466129, - 45.561025 - ], - [ - -73.465993, - 45.561066 - ], - [ - -73.465606, - 45.561173 - ], - [ - -73.465298, - 45.56125 - ], - [ - -73.464943, - 45.561331 - ], - [ - -73.464635, - 45.561385 - ], - [ - -73.464383, - 45.56143 - ], - [ - -73.464342, - 45.561416 - ], - [ - -73.46391, - 45.56142 - ], - [ - -73.463676, - 45.561411 - ], - [ - -73.463469, - 45.561416 - ], - [ - -73.463235, - 45.561434 - ], - [ - -73.463014, - 45.561456 - ], - [ - -73.462671, - 45.561478 - ], - [ - -73.462488, - 45.561483 - ], - [ - -73.462171, - 45.561492 - ], - [ - -73.461975, - 45.561496 - ], - [ - -73.460725, - 45.561527 - ], - [ - -73.460731, - 45.561644 - ], - [ - -73.460735, - 45.561923 - ], - [ - -73.460736, - 45.561977 - ], - [ - -73.460721, - 45.562027 - ], - [ - -73.460677, - 45.562085 - ], - [ - -73.460365, - 45.562319 - ], - [ - -73.459937, - 45.562638 - ], - [ - -73.459828, - 45.562728 - ], - [ - -73.459614, - 45.562904 - ], - [ - -73.459333, - 45.563151 - ], - [ - -73.459032, - 45.56341 - ], - [ - -73.458351, - 45.563996 - ], - [ - -73.457933, - 45.564352 - ], - [ - -73.457152, - 45.564936 - ], - [ - -73.457074, - 45.56499 - ], - [ - -73.456935, - 45.565085 - ], - [ - -73.456659, - 45.565283 - ], - [ - -73.45622, - 45.565633 - ], - [ - -73.455798, - 45.56598 - ], - [ - -73.455578, - 45.566174 - ], - [ - -73.455401, - 45.56633 - ], - [ - -73.45414, - 45.56753 - ], - [ - -73.453627, - 45.568017 - ], - [ - -73.453572, - 45.568062 - ], - [ - -73.453474, - 45.568093 - ], - [ - -73.453357, - 45.56812 - ], - [ - -73.453217, - 45.568102 - ], - [ - -73.451687, - 45.567778 - ], - [ - -73.450706, - 45.56757 - ], - [ - -73.450558, - 45.567561 - ], - [ - -73.45036, - 45.567548 - ], - [ - -73.450115, - 45.567548 - ], - [ - -73.450114, - 45.567557 - ], - [ - -73.450113, - 45.567561 - ], - [ - -73.450112, - 45.56757 - ], - [ - -73.450111, - 45.567575 - ], - [ - -73.45011, - 45.567584 - ], - [ - -73.450109, - 45.567593 - ], - [ - -73.450108, - 45.567597 - ], - [ - -73.450107, - 45.567606 - ], - [ - -73.450106, - 45.567611 - ], - [ - -73.450105, - 45.56762 - ], - [ - -73.450104, - 45.567629 - ], - [ - -73.450103, - 45.567633 - ], - [ - -73.450102, - 45.567642 - ], - [ - -73.450101, - 45.567647 - ], - [ - -73.4501, - 45.567656 - ], - [ - -73.450099, - 45.56766 - ], - [ - -73.450098, - 45.567669 - ], - [ - -73.450097, - 45.567678 - ], - [ - -73.450096, - 45.567683 - ], - [ - -73.450095, - 45.567691 - ], - [ - -73.450093, - 45.567696 - ], - [ - -73.450092, - 45.567705 - ], - [ - -73.450091, - 45.567714 - ], - [ - -73.45009, - 45.567718 - ], - [ - -73.450089, - 45.567727 - ], - [ - -73.450088, - 45.567732 - ], - [ - -73.450087, - 45.567741 - ], - [ - -73.450085, - 45.56775 - ], - [ - -73.450084, - 45.567754 - ], - [ - -73.450083, - 45.567763 - ], - [ - -73.450082, - 45.567768 - ], - [ - -73.450081, - 45.567777 - ], - [ - -73.450079, - 45.567781 - ], - [ - -73.450078, - 45.56779 - ], - [ - -73.450077, - 45.567799 - ], - [ - -73.450075, - 45.567804 - ], - [ - -73.450074, - 45.567813 - ], - [ - -73.450073, - 45.567817 - ], - [ - -73.450071, - 45.567826 - ], - [ - -73.45007, - 45.567835 - ], - [ - -73.450069, - 45.56784 - ], - [ - -73.450067, - 45.567849 - ], - [ - -73.450066, - 45.567853 - ], - [ - -73.450065, - 45.567862 - ], - [ - -73.450063, - 45.567871 - ], - [ - -73.450062, - 45.567876 - ], - [ - -73.45006, - 45.567885 - ], - [ - -73.450059, - 45.567889 - ], - [ - -73.450058, - 45.567898 - ], - [ - -73.450056, - 45.567903 - ], - [ - -73.450055, - 45.567912 - ], - [ - -73.450054, - 45.567921 - ], - [ - -73.450052, - 45.567925 - ], - [ - -73.450051, - 45.567934 - ], - [ - -73.450049, - 45.567939 - ], - [ - -73.450048, - 45.567948 - ], - [ - -73.450046, - 45.567957 - ], - [ - -73.450045, - 45.567961 - ], - [ - -73.450043, - 45.56797 - ], - [ - -73.450042, - 45.567975 - ], - [ - -73.45004, - 45.567984 - ], - [ - -73.450039, - 45.567988 - ], - [ - -73.450037, - 45.567997 - ], - [ - -73.450036, - 45.568006 - ], - [ - -73.450034, - 45.568011 - ], - [ - -73.450032, - 45.56802 - ], - [ - -73.450031, - 45.568024 - ], - [ - -73.450029, - 45.568033 - ], - [ - -73.450028, - 45.568042 - ], - [ - -73.450026, - 45.568047 - ], - [ - -73.450024, - 45.568056 - ], - [ - -73.450023, - 45.56806 - ], - [ - -73.450021, - 45.568069 - ], - [ - -73.450019, - 45.568074 - ], - [ - -73.450017, - 45.568083 - ], - [ - -73.450016, - 45.568092 - ], - [ - -73.450014, - 45.568096 - ], - [ - -73.450013, - 45.568105 - ], - [ - -73.450011, - 45.56811 - ], - [ - -73.450009, - 45.568119 - ], - [ - -73.450007, - 45.568123 - ], - [ - -73.450006, - 45.568132 - ], - [ - -73.450004, - 45.568141 - ], - [ - -73.450002, - 45.568146 - ], - [ - -73.45, - 45.568155 - ], - [ - -73.449999, - 45.568159 - ], - [ - -73.449997, - 45.568168 - ], - [ - -73.449995, - 45.568173 - ], - [ - -73.449993, - 45.568182 - ], - [ - -73.449991, - 45.568191 - ], - [ - -73.449989, - 45.568195 - ], - [ - -73.449988, - 45.568204 - ], - [ - -73.449986, - 45.568209 - ], - [ - -73.449984, - 45.568218 - ], - [ - -73.449982, - 45.568227 - ], - [ - -73.44998, - 45.568231 - ], - [ - -73.449978, - 45.56824 - ], - [ - -73.449976, - 45.568245 - ], - [ - -73.449974, - 45.568254 - ], - [ - -73.449972, - 45.568258 - ], - [ - -73.44997, - 45.568267 - ], - [ - -73.449968, - 45.568276 - ], - [ - -73.449967, - 45.568281 - ], - [ - -73.449965, - 45.56829 - ], - [ - -73.449963, - 45.568294 - ], - [ - -73.449961, - 45.568303 - ], - [ - -73.449959, - 45.568308 - ], - [ - -73.449957, - 45.568317 - ], - [ - -73.449955, - 45.568326 - ], - [ - -73.449953, - 45.56833 - ], - [ - -73.449951, - 45.568339 - ], - [ - -73.449949, - 45.568344 - ], - [ - -73.449946, - 45.568353 - ], - [ - -73.449944, - 45.568357 - ], - [ - -73.449942, - 45.568366 - ], - [ - -73.44994, - 45.568371 - ], - [ - -73.449938, - 45.56838 - ], - [ - -73.449936, - 45.568389 - ], - [ - -73.449934, - 45.568393 - ], - [ - -73.449932, - 45.568402 - ], - [ - -73.44993, - 45.568407 - ], - [ - -73.449927, - 45.568416 - ], - [ - -73.449925, - 45.56842 - ], - [ - -73.449923, - 45.568429 - ], - [ - -73.449921, - 45.568438 - ], - [ - -73.449919, - 45.568443 - ], - [ - -73.449917, - 45.568452 - ], - [ - -73.449915, - 45.568456 - ], - [ - -73.449912, - 45.568465 - ], - [ - -73.44991, - 45.56847 - ], - [ - -73.449908, - 45.568479 - ], - [ - -73.449905, - 45.568488 - ], - [ - -73.449903, - 45.568492 - ], - [ - -73.449901, - 45.568501 - ], - [ - -73.449899, - 45.568506 - ], - [ - -73.449897, - 45.568515 - ], - [ - -73.449894, - 45.568519 - ], - [ - -73.449892, - 45.568528 - ], - [ - -73.449889, - 45.568533 - ], - [ - -73.449887, - 45.568542 - ], - [ - -73.449885, - 45.568551 - ], - [ - -73.449883, - 45.568555 - ], - [ - -73.44988, - 45.568564 - ], - [ - -73.449878, - 45.568569 - ], - [ - -73.449875, - 45.568578 - ], - [ - -73.449873, - 45.568582 - ], - [ - -73.44987, - 45.568591 - ], - [ - -73.449868, - 45.568596 - ], - [ - -73.449866, - 45.568605 - ], - [ - -73.449863, - 45.568614 - ], - [ - -73.449861, - 45.568618 - ], - [ - -73.449856, - 45.568632 - ], - [ - -73.449825, - 45.568708 - ], - [ - -73.449762, - 45.568861 - ], - [ - -73.449744, - 45.568903 - ], - [ - -73.449625, - 45.569181 - ], - [ - -73.449277, - 45.569995 - ], - [ - -73.449093, - 45.570413 - ], - [ - -73.449089, - 45.570422 - ], - [ - -73.44907, - 45.570467 - ], - [ - -73.449049, - 45.570517 - ], - [ - -73.448873, - 45.570917 - ], - [ - -73.448823, - 45.571034 - ], - [ - -73.448769, - 45.571168 - ], - [ - -73.44818, - 45.572625 - ], - [ - -73.447654, - 45.573778 - ], - [ - -73.447519, - 45.574084 - ], - [ - -73.447518, - 45.574088 - ], - [ - -73.447455, - 45.574133 - ], - [ - -73.447308, - 45.574407 - ], - [ - -73.447267, - 45.574466 - ], - [ - -73.447241, - 45.574497 - ], - [ - -73.447197, - 45.574529 - ], - [ - -73.447149, - 45.574547 - ], - [ - -73.447112, - 45.574556 - ], - [ - -73.447049, - 45.574565 - ], - [ - -73.446965, - 45.574569 - ], - [ - -73.446884, - 45.574565 - ], - [ - -73.446792, - 45.574547 - ], - [ - -73.446652, - 45.574511 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.443147, - 45.572802 - ], - [ - -73.443228, - 45.572879 - ], - [ - -73.443273, - 45.572955 - ], - [ - -73.443271, - 45.573 - ], - [ - -73.443276, - 45.573125 - ], - [ - -73.443281, - 45.573166 - ], - [ - -73.443386, - 45.57326 - ], - [ - -73.443502, - 45.573319 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.44468, - 45.573697 - ], - [ - -73.444697, - 45.573706 - ], - [ - -73.444729, - 45.573713 - ], - [ - -73.444769, - 45.573716 - ], - [ - -73.444831, - 45.573715 - ], - [ - -73.444873, - 45.57371 - ], - [ - -73.444884, - 45.573708 - ], - [ - -73.44491, - 45.573694 - ], - [ - -73.444953, - 45.573633 - ], - [ - -73.44492, - 45.573618 - ], - [ - -73.444872, - 45.573601 - ], - [ - -73.444829, - 45.573598 - ], - [ - -73.444749, - 45.573615 - ], - [ - -73.44471, - 45.573635 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.443539, - 45.573203 - ], - [ - -73.443522, - 45.573154 - ] - ] - }, - "id": 207, - "properties": { - "id": "5817a3fa-0451-4569-ad11-5e63d52d53c9", - "data": { - "gtfs": { - "shape_id": "120_1_R" - }, - "segments": [ - { - "distanceMeters": 4167, - "travelTimeSeconds": 492 - }, - { - "distanceMeters": 534, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 782, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 477, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 452, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 1184, - "travelTimeSeconds": 348 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10900, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8130.481607090507, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.49, - "travelTimeWithoutDwellTimesSeconds": 1680, - "operatingTimeWithLayoverTimeSeconds": 1860, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1680, - "operatingSpeedWithLayoverMetersPerSecond": 5.86, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.49 - }, - "mode": "bus", - "name": "Stat. de Mortagne", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "09bf17cd-9db1-41e3-b993-62146cb91158", - "8a3f1208-7ffb-452e-8ebb-c436acba82d6", - "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", - "cd788179-2c9b-4e1e-9ba3-10b35bfde3fa", - "a388aa98-4c24-4671-8a33-a0e95f9d5ada", - "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", - "f5001112-5d1e-4489-87be-a34e9ded0d46", - "b070e296-b686-4ba3-bf68-049018a7af21", - "83389414-0049-46f6-a04b-557250511611", - "2b894d51-a427-4850-8fae-89ed3f29388d", - "bd99fd0e-cbdd-4d16-af5c-609bbef87ee4", - "adc9bcc9-8f6d-49e9-b7de-68b4f56033f4", - "bd467e22-a975-40b8-9a7a-9801529c3237", - "6150abd1-c8f6-4045-8e3e-f50bbef79a53", - "aff34f6b-5801-4e1a-bc66-3990844e0b4e", - "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", - "6672cb43-3241-42d7-b5c0-fdaed10338b9", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287" - ], - "stops": [], - "line_id": "2a610ac8-c7f7-4ff9-955a-e1d854beced8", - "segments": [ - 0, - 114, - 132, - 139, - 149, - 155, - 163, - 166, - 182, - 194, - 208, - 219, - 222, - 226, - 231, - 233, - 241, - 399, - 407 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 207, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.443522, - 45.573154 - ], - [ - -73.44348, - 45.573034 - ], - [ - -73.443427, - 45.572912 - ], - [ - -73.44336, - 45.572841 - ], - [ - -73.443253, - 45.572772 - ], - [ - -73.443199, - 45.572746 - ], - [ - -73.443114, - 45.572731 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.446746, - 45.574587 - ], - [ - -73.447238, - 45.574749 - ], - [ - -73.447388, - 45.574789 - ], - [ - -73.447436, - 45.574664 - ], - [ - -73.447623, - 45.574219 - ], - [ - -73.44779, - 45.573737 - ], - [ - -73.447926, - 45.573404 - ], - [ - -73.448288, - 45.57264 - ], - [ - -73.448668, - 45.571794 - ], - [ - -73.449152, - 45.570638 - ], - [ - -73.449223, - 45.570544 - ], - [ - -73.449264, - 45.570454 - ], - [ - -73.449543, - 45.569814 - ], - [ - -73.449722, - 45.56941 - ], - [ - -73.449947, - 45.568902 - ], - [ - -73.449982, - 45.56883 - ], - [ - -73.450051, - 45.568681 - ], - [ - -73.450055, - 45.568672 - ], - [ - -73.450057, - 45.568668 - ], - [ - -73.450059, - 45.568663 - ], - [ - -73.450061, - 45.568659 - ], - [ - -73.450063, - 45.568654 - ], - [ - -73.450065, - 45.56865 - ], - [ - -73.450067, - 45.568645 - ], - [ - -73.450069, - 45.568641 - ], - [ - -73.450071, - 45.568636 - ], - [ - -73.450072, - 45.568632 - ], - [ - -73.450074, - 45.568627 - ], - [ - -73.450076, - 45.568623 - ], - [ - -73.450078, - 45.568618 - ], - [ - -73.45008, - 45.568618 - ], - [ - -73.450082, - 45.568614 - ], - [ - -73.450084, - 45.568609 - ], - [ - -73.450086, - 45.568605 - ], - [ - -73.450087, - 45.5686 - ], - [ - -73.450089, - 45.568596 - ], - [ - -73.450091, - 45.568591 - ], - [ - -73.450093, - 45.568587 - ], - [ - -73.450095, - 45.568582 - ], - [ - -73.450097, - 45.568578 - ], - [ - -73.450099, - 45.568573 - ], - [ - -73.450101, - 45.568569 - ], - [ - -73.450102, - 45.568564 - ], - [ - -73.450104, - 45.56856 - ], - [ - -73.450106, - 45.568555 - ], - [ - -73.450108, - 45.568551 - ], - [ - -73.45011, - 45.568546 - ], - [ - -73.450112, - 45.568542 - ], - [ - -73.450114, - 45.568537 - ], - [ - -73.450115, - 45.568533 - ], - [ - -73.450117, - 45.568528 - ], - [ - -73.450119, - 45.568524 - ], - [ - -73.45012, - 45.568519 - ], - [ - -73.450122, - 45.568519 - ], - [ - -73.450124, - 45.568515 - ], - [ - -73.450126, - 45.56851 - ], - [ - -73.450128, - 45.568506 - ], - [ - -73.450129, - 45.568501 - ], - [ - -73.45013, - 45.5685 - ], - [ - -73.450131, - 45.568497 - ], - [ - -73.450133, - 45.568492 - ], - [ - -73.450134, - 45.568488 - ], - [ - -73.450136, - 45.568483 - ], - [ - -73.450138, - 45.568479 - ], - [ - -73.45014, - 45.568474 - ], - [ - -73.450141, - 45.56847 - ], - [ - -73.450143, - 45.568465 - ], - [ - -73.450145, - 45.568461 - ], - [ - -73.450146, - 45.568456 - ], - [ - -73.450148, - 45.568452 - ], - [ - -73.45015, - 45.568447 - ], - [ - -73.450151, - 45.568443 - ], - [ - -73.450153, - 45.568438 - ], - [ - -73.450154, - 45.568434 - ], - [ - -73.450156, - 45.568429 - ], - [ - -73.450158, - 45.568425 - ], - [ - -73.45016, - 45.56842 - ], - [ - -73.450161, - 45.568416 - ], - [ - -73.450163, - 45.568411 - ], - [ - -73.450164, - 45.568407 - ], - [ - -73.450166, - 45.568402 - ], - [ - -73.450168, - 45.568398 - ], - [ - -73.450169, - 45.568393 - ], - [ - -73.450171, - 45.568393 - ], - [ - -73.450173, - 45.568389 - ], - [ - -73.450174, - 45.568384 - ], - [ - -73.450175, - 45.56838 - ], - [ - -73.450177, - 45.568375 - ], - [ - -73.450179, - 45.568371 - ], - [ - -73.45018, - 45.568366 - ], - [ - -73.450182, - 45.568362 - ], - [ - -73.450183, - 45.568357 - ], - [ - -73.450185, - 45.568353 - ], - [ - -73.450186, - 45.568348 - ], - [ - -73.450188, - 45.568344 - ], - [ - -73.450189, - 45.568339 - ], - [ - -73.450191, - 45.568335 - ], - [ - -73.450192, - 45.56833 - ], - [ - -73.450194, - 45.568326 - ], - [ - -73.450195, - 45.568321 - ], - [ - -73.450197, - 45.568317 - ], - [ - -73.450198, - 45.568312 - ], - [ - -73.4502, - 45.568308 - ], - [ - -73.450201, - 45.568303 - ], - [ - -73.450203, - 45.568299 - ], - [ - -73.450204, - 45.568294 - ], - [ - -73.450205, - 45.56829 - ], - [ - -73.450207, - 45.568285 - ], - [ - -73.450208, - 45.568281 - ], - [ - -73.45021, - 45.568276 - ], - [ - -73.450211, - 45.568272 - ], - [ - -73.450213, - 45.568267 - ], - [ - -73.450214, - 45.568263 - ], - [ - -73.450215, - 45.568258 - ], - [ - -73.450217, - 45.568254 - ], - [ - -73.450218, - 45.568249 - ], - [ - -73.450219, - 45.568245 - ], - [ - -73.450221, - 45.56824 - ], - [ - -73.450222, - 45.568236 - ], - [ - -73.450224, - 45.568231 - ], - [ - -73.450225, - 45.568227 - ], - [ - -73.450226, - 45.568227 - ], - [ - -73.450228, - 45.568222 - ], - [ - -73.450229, - 45.568218 - ], - [ - -73.45023, - 45.568213 - ], - [ - -73.450232, - 45.568209 - ], - [ - -73.450233, - 45.568204 - ], - [ - -73.450234, - 45.5682 - ], - [ - -73.450236, - 45.568195 - ], - [ - -73.450237, - 45.568191 - ], - [ - -73.450238, - 45.568186 - ], - [ - -73.45024, - 45.568182 - ], - [ - -73.450241, - 45.568177 - ], - [ - -73.450242, - 45.568173 - ], - [ - -73.450244, - 45.568168 - ], - [ - -73.450245, - 45.568164 - ], - [ - -73.450246, - 45.568159 - ], - [ - -73.450247, - 45.568155 - ], - [ - -73.450248, - 45.56815 - ], - [ - -73.45025, - 45.568146 - ], - [ - -73.450251, - 45.568141 - ], - [ - -73.450252, - 45.568137 - ], - [ - -73.450253, - 45.568132 - ], - [ - -73.450254, - 45.568128 - ], - [ - -73.450256, - 45.568123 - ], - [ - -73.450257, - 45.568119 - ], - [ - -73.450258, - 45.568114 - ], - [ - -73.450259, - 45.56811 - ], - [ - -73.45026, - 45.568105 - ], - [ - -73.450262, - 45.568101 - ], - [ - -73.450263, - 45.568096 - ], - [ - -73.450264, - 45.568092 - ], - [ - -73.450265, - 45.568088 - ], - [ - -73.450266, - 45.568083 - ], - [ - -73.450267, - 45.568079 - ], - [ - -73.450268, - 45.568074 - ], - [ - -73.45027, - 45.56807 - ], - [ - -73.450271, - 45.568065 - ], - [ - -73.450272, - 45.568061 - ], - [ - -73.450273, - 45.568056 - ], - [ - -73.450274, - 45.568052 - ], - [ - -73.450275, - 45.568047 - ], - [ - -73.450277, - 45.568043 - ], - [ - -73.450277, - 45.568038 - ], - [ - -73.450279, - 45.568034 - ], - [ - -73.45028, - 45.568029 - ], - [ - -73.450281, - 45.568025 - ], - [ - -73.450282, - 45.56802 - ], - [ - -73.450283, - 45.568016 - ], - [ - -73.450284, - 45.568011 - ], - [ - -73.450285, - 45.568007 - ], - [ - -73.450286, - 45.568002 - ], - [ - -73.450287, - 45.567998 - ], - [ - -73.450288, - 45.567993 - ], - [ - -73.450289, - 45.567989 - ], - [ - -73.45029, - 45.567984 - ], - [ - -73.450291, - 45.56798 - ], - [ - -73.450292, - 45.567975 - ], - [ - -73.450293, - 45.567971 - ], - [ - -73.450294, - 45.567966 - ], - [ - -73.450295, - 45.567962 - ], - [ - -73.450296, - 45.567957 - ], - [ - -73.450297, - 45.567957 - ], - [ - -73.450298, - 45.567953 - ], - [ - -73.450299, - 45.567948 - ], - [ - -73.4503, - 45.567944 - ], - [ - -73.450301, - 45.567939 - ], - [ - -73.450301, - 45.567935 - ], - [ - -73.450302, - 45.56793 - ], - [ - -73.450303, - 45.567926 - ], - [ - -73.450304, - 45.567921 - ], - [ - -73.450305, - 45.567917 - ], - [ - -73.450306, - 45.567912 - ], - [ - -73.450307, - 45.567908 - ], - [ - -73.450308, - 45.567903 - ], - [ - -73.450309, - 45.567899 - ], - [ - -73.450309, - 45.567894 - ], - [ - -73.45031, - 45.56789 - ], - [ - -73.450311, - 45.567885 - ], - [ - -73.450312, - 45.567881 - ], - [ - -73.450313, - 45.567876 - ], - [ - -73.450314, - 45.567872 - ], - [ - -73.450315, - 45.567867 - ], - [ - -73.450316, - 45.567863 - ], - [ - -73.450316, - 45.567858 - ], - [ - -73.450317, - 45.567854 - ], - [ - -73.450318, - 45.567849 - ], - [ - -73.450319, - 45.567845 - ], - [ - -73.45032, - 45.56784 - ], - [ - -73.45032, - 45.567836 - ], - [ - -73.450321, - 45.567831 - ], - [ - -73.450322, - 45.567827 - ], - [ - -73.450323, - 45.567822 - ], - [ - -73.450324, - 45.567818 - ], - [ - -73.450324, - 45.567813 - ], - [ - -73.450325, - 45.567809 - ], - [ - -73.450326, - 45.567804 - ], - [ - -73.450326, - 45.5678 - ], - [ - -73.450327, - 45.567795 - ], - [ - -73.450328, - 45.567791 - ], - [ - -73.450329, - 45.567786 - ], - [ - -73.450329, - 45.567782 - ], - [ - -73.45033, - 45.567777 - ], - [ - -73.450331, - 45.567773 - ], - [ - -73.450332, - 45.567768 - ], - [ - -73.450332, - 45.567764 - ], - [ - -73.450333, - 45.567759 - ], - [ - -73.450334, - 45.567755 - ], - [ - -73.450334, - 45.56775 - ], - [ - -73.450335, - 45.567746 - ], - [ - -73.450336, - 45.567741 - ], - [ - -73.450336, - 45.567737 - ], - [ - -73.450337, - 45.567732 - ], - [ - -73.450337, - 45.567728 - ], - [ - -73.450338, - 45.567723 - ], - [ - -73.450339, - 45.567719 - ], - [ - -73.450339, - 45.567714 - ], - [ - -73.45034, - 45.56771 - ], - [ - -73.45034, - 45.567705 - ], - [ - -73.450341, - 45.567701 - ], - [ - -73.450341, - 45.567699 - ], - [ - -73.450342, - 45.567696 - ], - [ - -73.450342, - 45.567692 - ], - [ - -73.450343, - 45.567687 - ], - [ - -73.450343, - 45.567683 - ], - [ - -73.450344, - 45.567678 - ], - [ - -73.450345, - 45.567674 - ], - [ - -73.450345, - 45.567669 - ], - [ - -73.450346, - 45.567665 - ], - [ - -73.450346, - 45.56766 - ], - [ - -73.450347, - 45.567656 - ], - [ - -73.450347, - 45.567651 - ], - [ - -73.450348, - 45.567647 - ], - [ - -73.450348, - 45.567642 - ], - [ - -73.450349, - 45.567638 - ], - [ - -73.450349, - 45.567633 - ], - [ - -73.45035, - 45.567629 - ], - [ - -73.45035, - 45.567624 - ], - [ - -73.450351, - 45.56762 - ], - [ - -73.450351, - 45.567615 - ], - [ - -73.450352, - 45.567611 - ], - [ - -73.450352, - 45.567606 - ], - [ - -73.450353, - 45.567602 - ], - [ - -73.450353, - 45.567597 - ], - [ - -73.450353, - 45.567593 - ], - [ - -73.450354, - 45.567588 - ], - [ - -73.450355, - 45.567584 - ], - [ - -73.450355, - 45.567579 - ], - [ - -73.450355, - 45.567575 - ], - [ - -73.450356, - 45.56757 - ], - [ - -73.450356, - 45.567566 - ], - [ - -73.450357, - 45.567561 - ], - [ - -73.450357, - 45.567557 - ], - [ - -73.450357, - 45.567552 - ], - [ - -73.45036, - 45.567548 - ], - [ - -73.450706, - 45.56757 - ], - [ - -73.451687, - 45.567778 - ], - [ - -73.453217, - 45.568102 - ], - [ - -73.453357, - 45.56812 - ], - [ - -73.453474, - 45.568093 - ], - [ - -73.453572, - 45.568062 - ], - [ - -73.453627, - 45.568017 - ], - [ - -73.45428, - 45.567396 - ], - [ - -73.455401, - 45.56633 - ], - [ - -73.455798, - 45.56598 - ], - [ - -73.45622, - 45.565633 - ], - [ - -73.456569, - 45.565355 - ], - [ - -73.456659, - 45.565283 - ], - [ - -73.456935, - 45.565085 - ], - [ - -73.457152, - 45.564936 - ], - [ - -73.457922, - 45.56436 - ], - [ - -73.457933, - 45.564352 - ], - [ - -73.458351, - 45.563996 - ], - [ - -73.458906, - 45.563519 - ], - [ - -73.459333, - 45.563151 - ], - [ - -73.459614, - 45.562904 - ], - [ - -73.459937, - 45.562638 - ], - [ - -73.460365, - 45.562319 - ], - [ - -73.460677, - 45.562085 - ], - [ - -73.460721, - 45.562027 - ], - [ - -73.460736, - 45.561977 - ], - [ - -73.460735, - 45.561923 - ], - [ - -73.460731, - 45.561644 - ], - [ - -73.461384, - 45.561626 - ], - [ - -73.461679, - 45.561618 - ], - [ - -73.461978, - 45.561613 - ], - [ - -73.46207, - 45.561609 - ], - [ - -73.462165, - 45.561609 - ], - [ - -73.46239, - 45.561604 - ], - [ - -73.462462, - 45.561604 - ], - [ - -73.463036, - 45.561587 - ], - [ - -73.463459, - 45.561555 - ], - [ - -73.463851, - 45.561519 - ], - [ - -73.464159, - 45.561474 - ], - [ - -73.464383, - 45.56143 - ], - [ - -73.464635, - 45.561385 - ], - [ - -73.464943, - 45.561331 - ], - [ - -73.465298, - 45.56125 - ], - [ - -73.465606, - 45.561173 - ], - [ - -73.465725, - 45.56114 - ], - [ - -73.465993, - 45.561066 - ], - [ - -73.466384, - 45.560949 - ], - [ - -73.466692, - 45.560841 - ], - [ - -73.46697, - 45.560742 - ], - [ - -73.467261, - 45.560621 - ], - [ - -73.467525, - 45.560508 - ], - [ - -73.467816, - 45.560373 - ], - [ - -73.467979, - 45.560279 - ], - [ - -73.468117, - 45.560229 - ], - [ - -73.468235, - 45.560175 - ], - [ - -73.468563, - 45.559978 - ], - [ - -73.468878, - 45.559766 - ], - [ - -73.468988, - 45.55969 - ], - [ - -73.469562, - 45.559302 - ], - [ - -73.469567, - 45.559298 - ], - [ - -73.469855, - 45.559096 - ], - [ - -73.470074, - 45.558948 - ], - [ - -73.470224, - 45.55884 - ], - [ - -73.470906, - 45.55839 - ], - [ - -73.471028, - 45.558322 - ], - [ - -73.471824, - 45.557823 - ], - [ - -73.472324, - 45.557504 - ], - [ - -73.472479, - 45.557405 - ], - [ - -73.472629, - 45.557279 - ], - [ - -73.472632, - 45.557275 - ], - [ - -73.473535, - 45.556703 - ], - [ - -73.473662, - 45.556622 - ], - [ - -73.473763, - 45.556559 - ], - [ - -73.475297, - 45.55555 - ], - [ - -73.475452, - 45.555449 - ], - [ - -73.475549, - 45.55539 - ], - [ - -73.47589, - 45.555179 - ], - [ - -73.47658, - 45.554819 - ], - [ - -73.47721, - 45.554495 - ], - [ - -73.478403, - 45.55387 - ], - [ - -73.479586, - 45.553272 - ], - [ - -73.480211, - 45.55294 - ], - [ - -73.480374, - 45.552853 - ], - [ - -73.480484, - 45.552799 - ], - [ - -73.482032, - 45.552008 - ], - [ - -73.482067, - 45.551991 - ], - [ - -73.482159, - 45.551945 - ], - [ - -73.483045, - 45.55149 - ], - [ - -73.483557, - 45.551228 - ], - [ - -73.483956, - 45.551023 - ], - [ - -73.485059, - 45.550458 - ], - [ - -73.485528, - 45.550218 - ], - [ - -73.485955, - 45.549961 - ], - [ - -73.489407, - 45.547816 - ], - [ - -73.48951, - 45.547751 - ], - [ - -73.490714, - 45.547006 - ], - [ - -73.491216, - 45.546506 - ], - [ - -73.491431, - 45.546368 - ], - [ - -73.491829, - 45.546111 - ], - [ - -73.491911, - 45.546057 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.49279, - 45.546129 - ], - [ - -73.492868, - 45.546192 - ], - [ - -73.493835, - 45.546966 - ], - [ - -73.494604, - 45.547573 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.495738, - 45.548489 - ], - [ - -73.495811, - 45.548549 - ], - [ - -73.49673, - 45.549278 - ], - [ - -73.497087, - 45.549548 - ], - [ - -73.49736, - 45.549719 - ], - [ - -73.497501, - 45.549805 - ], - [ - -73.497722, - 45.549908 - ], - [ - -73.497944, - 45.549998 - ], - [ - -73.498136, - 45.55007 - ], - [ - -73.498405, - 45.550151 - ], - [ - -73.498716, - 45.550237 - ], - [ - -73.499009, - 45.550295 - ], - [ - -73.499514, - 45.550349 - ], - [ - -73.499763, - 45.550363 - ], - [ - -73.501515, - 45.550448 - ], - [ - -73.502446, - 45.550493 - ], - [ - -73.502797, - 45.550502 - ], - [ - -73.502913, - 45.550498 - ], - [ - -73.503017, - 45.550484 - ], - [ - -73.503194, - 45.550453 - ], - [ - -73.503355, - 45.550399 - ], - [ - -73.503504, - 45.550327 - ], - [ - -73.503636, - 45.550237 - ], - [ - -73.503751, - 45.550133 - ], - [ - -73.503955, - 45.549904 - ], - [ - -73.504046, - 45.549787 - ], - [ - -73.504119, - 45.549647 - ], - [ - -73.50416, - 45.549508 - ], - [ - -73.504212, - 45.548909 - ], - [ - -73.504289, - 45.548585 - ], - [ - -73.504342, - 45.548423 - ], - [ - -73.504477, - 45.548095 - ], - [ - -73.504558, - 45.547933 - ], - [ - -73.504654, - 45.547771 - ], - [ - -73.504887, - 45.547461 - ], - [ - -73.505281, - 45.546997 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522319, - 45.530355 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518451, - 45.525396 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 208, - "properties": { - "id": "b3392b4d-d6a9-4d2c-84d3-e89d3c69cc2a", - "data": { - "gtfs": { - "shape_id": "120_1_A" - }, - "segments": [ - { - "distanceMeters": 1264, - "travelTimeSeconds": 279 - }, - { - "distanceMeters": 91, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 121, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 312, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 345, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 366, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 424, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 481, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 970, - "travelTimeSeconds": 98 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 5298, - "travelTimeSeconds": 620 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11339, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8130.481607090507, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.27, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 6.52, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.27 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "ae6e0f03-aee3-4f3b-9a79-98bb90a35a7a", - "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "aff34f6b-5801-4e1a-bc66-3990844e0b4e", - "bd467e22-a975-40b8-9a7a-9801529c3237", - "9ff5cf2b-10c7-49b1-8a66-4ecc0e2b17d7", - "adc9bcc9-8f6d-49e9-b7de-68b4f56033f4", - "28b7e465-7627-4587-950e-0fe104f1bac7", - "83389414-0049-46f6-a04b-557250511611", - "5ed15359-4097-46e8-93c0-1b63029d1081", - "f5001112-5d1e-4489-87be-a34e9ded0d46", - "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", - "a388aa98-4c24-4671-8a33-a0e95f9d5ada", - "fc1c0989-eb4e-4e77-b261-f952dd40601e", - "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", - "64648218-6b63-436c-9a46-4770987ba432", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "2a610ac8-c7f7-4ff9-955a-e1d854beced8", - "segments": [ - 0, - 80, - 262, - 304, - 308, - 312, - 315, - 325, - 341, - 355, - 367, - 370, - 378, - 385, - 398, - 403 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 208, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521447, - 45.524278 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523531, - 45.52794 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.502818, - 45.54899 - ], - [ - -73.502212, - 45.54962 - ], - [ - -73.501984, - 45.549836 - ], - [ - -73.50186, - 45.549926 - ], - [ - -73.501728, - 45.550007 - ], - [ - -73.501592, - 45.550079 - ], - [ - -73.501452, - 45.550133 - ], - [ - -73.501309, - 45.550183 - ], - [ - -73.50116, - 45.550219 - ], - [ - -73.501011, - 45.55025 - ], - [ - -73.500705, - 45.550282 - ], - [ - -73.500547, - 45.550286 - ], - [ - -73.49991, - 45.550295 - ], - [ - -73.499238, - 45.550226 - ], - [ - -73.498778, - 45.550153 - ], - [ - -73.498464, - 45.550065 - ], - [ - -73.498138, - 45.54995 - ], - [ - -73.497746, - 45.549767 - ], - [ - -73.497494, - 45.54961 - ], - [ - -73.497234, - 45.549428 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494903, - 45.54755 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.491911, - 45.546057 - ], - [ - -73.491829, - 45.546111 - ], - [ - -73.491648, - 45.546227 - ], - [ - -73.491431, - 45.546368 - ], - [ - -73.491216, - 45.546506 - ], - [ - -73.490714, - 45.547006 - ], - [ - -73.490353, - 45.547229 - ], - [ - -73.48951, - 45.547751 - ], - [ - -73.489407, - 45.547816 - ], - [ - -73.485955, - 45.549961 - ], - [ - -73.485528, - 45.550218 - ], - [ - -73.485059, - 45.550458 - ], - [ - -73.484196, - 45.5509 - ], - [ - -73.483956, - 45.551023 - ], - [ - -73.483045, - 45.55149 - ], - [ - -73.482159, - 45.551945 - ], - [ - -73.482067, - 45.551991 - ], - [ - -73.482032, - 45.552008 - ], - [ - -73.480529, - 45.552777 - ], - [ - -73.480484, - 45.552799 - ], - [ - -73.480374, - 45.552853 - ], - [ - -73.479586, - 45.553272 - ], - [ - -73.478403, - 45.55387 - ], - [ - -73.47721, - 45.554495 - ], - [ - -73.47658, - 45.554819 - ], - [ - -73.47589, - 45.555179 - ], - [ - -73.475637, - 45.555335 - ], - [ - -73.475549, - 45.55539 - ], - [ - -73.475452, - 45.555449 - ], - [ - -73.473844, - 45.556506 - ], - [ - -73.473763, - 45.556559 - ], - [ - -73.473662, - 45.556622 - ], - [ - -73.472632, - 45.557275 - ], - [ - -73.472629, - 45.557279 - ], - [ - -73.472372, - 45.557373 - ], - [ - -73.472222, - 45.557423 - ], - [ - -73.472064, - 45.557495 - ], - [ - -73.471877, - 45.557607 - ], - [ - -73.471648, - 45.55776 - ], - [ - -73.471558, - 45.557832 - ], - [ - -73.471339, - 45.557976 - ], - [ - -73.470903, - 45.558228 - ], - [ - -73.470793, - 45.5583 - ], - [ - -73.469991, - 45.558844 - ], - [ - -73.469731, - 45.558997 - ], - [ - -73.469495, - 45.559157 - ], - [ - -73.46926, - 45.559316 - ], - [ - -73.468792, - 45.559631 - ], - [ - -73.468729, - 45.559676 - ], - [ - -73.468547, - 45.559798 - ], - [ - -73.467979, - 45.560279 - ], - [ - -73.467816, - 45.560373 - ], - [ - -73.467525, - 45.560508 - ], - [ - -73.467261, - 45.560621 - ], - [ - -73.46697, - 45.560742 - ], - [ - -73.466692, - 45.560841 - ], - [ - -73.466384, - 45.560949 - ], - [ - -73.466142, - 45.561021 - ], - [ - -73.465993, - 45.561066 - ], - [ - -73.465606, - 45.561173 - ], - [ - -73.465298, - 45.56125 - ], - [ - -73.464943, - 45.561331 - ], - [ - -73.464635, - 45.561385 - ], - [ - -73.464383, - 45.56143 - ], - [ - -73.464342, - 45.561416 - ], - [ - -73.46391, - 45.56142 - ], - [ - -73.463676, - 45.561411 - ], - [ - -73.463469, - 45.561416 - ], - [ - -73.463235, - 45.561434 - ], - [ - -73.463014, - 45.561456 - ], - [ - -73.462671, - 45.561478 - ], - [ - -73.462489, - 45.561483 - ], - [ - -73.462171, - 45.561492 - ], - [ - -73.461975, - 45.561496 - ], - [ - -73.460725, - 45.561527 - ], - [ - -73.460731, - 45.561644 - ], - [ - -73.460735, - 45.561923 - ], - [ - -73.460736, - 45.561977 - ], - [ - -73.460721, - 45.562027 - ], - [ - -73.460677, - 45.562085 - ], - [ - -73.460365, - 45.562319 - ], - [ - -73.459937, - 45.562638 - ], - [ - -73.459828, - 45.562728 - ], - [ - -73.459614, - 45.562904 - ], - [ - -73.459333, - 45.563151 - ], - [ - -73.459033, - 45.56341 - ], - [ - -73.458351, - 45.563996 - ], - [ - -73.457933, - 45.564352 - ], - [ - -73.457152, - 45.564936 - ], - [ - -73.457074, - 45.56499 - ], - [ - -73.456935, - 45.565085 - ], - [ - -73.456659, - 45.565283 - ], - [ - -73.45622, - 45.565633 - ], - [ - -73.455798, - 45.56598 - ], - [ - -73.455579, - 45.566173 - ], - [ - -73.455401, - 45.56633 - ], - [ - -73.45414, - 45.567529 - ], - [ - -73.453627, - 45.568017 - ], - [ - -73.453572, - 45.568062 - ], - [ - -73.453474, - 45.568093 - ], - [ - -73.453357, - 45.56812 - ], - [ - -73.453217, - 45.568102 - ], - [ - -73.451687, - 45.567778 - ], - [ - -73.450706, - 45.56757 - ], - [ - -73.450572, - 45.567561 - ], - [ - -73.45036, - 45.567548 - ], - [ - -73.450115, - 45.567548 - ], - [ - -73.450114, - 45.567557 - ], - [ - -73.450113, - 45.567561 - ], - [ - -73.450112, - 45.56757 - ], - [ - -73.450111, - 45.567575 - ], - [ - -73.45011, - 45.567584 - ], - [ - -73.450109, - 45.567593 - ], - [ - -73.450108, - 45.567597 - ], - [ - -73.450107, - 45.567606 - ], - [ - -73.450106, - 45.567611 - ], - [ - -73.450105, - 45.56762 - ], - [ - -73.450104, - 45.567629 - ], - [ - -73.450103, - 45.567633 - ], - [ - -73.450102, - 45.567642 - ], - [ - -73.450101, - 45.567647 - ], - [ - -73.4501, - 45.567656 - ], - [ - -73.450099, - 45.56766 - ], - [ - -73.450098, - 45.567669 - ], - [ - -73.450097, - 45.567678 - ], - [ - -73.450096, - 45.567683 - ], - [ - -73.450095, - 45.567691 - ], - [ - -73.450093, - 45.567696 - ], - [ - -73.450092, - 45.567705 - ], - [ - -73.450091, - 45.567714 - ], - [ - -73.45009, - 45.567718 - ], - [ - -73.450089, - 45.567727 - ], - [ - -73.450088, - 45.567732 - ], - [ - -73.450087, - 45.567741 - ], - [ - -73.450085, - 45.56775 - ], - [ - -73.450084, - 45.567754 - ], - [ - -73.450083, - 45.567763 - ], - [ - -73.450082, - 45.567768 - ], - [ - -73.450081, - 45.567777 - ], - [ - -73.450079, - 45.567781 - ], - [ - -73.450078, - 45.56779 - ], - [ - -73.450077, - 45.567799 - ], - [ - -73.450075, - 45.567804 - ], - [ - -73.450074, - 45.567813 - ], - [ - -73.450073, - 45.567817 - ], - [ - -73.450071, - 45.567826 - ], - [ - -73.45007, - 45.567835 - ], - [ - -73.450069, - 45.56784 - ], - [ - -73.450067, - 45.567849 - ], - [ - -73.450066, - 45.567853 - ], - [ - -73.450065, - 45.567862 - ], - [ - -73.450063, - 45.567871 - ], - [ - -73.450062, - 45.567876 - ], - [ - -73.45006, - 45.567885 - ], - [ - -73.450059, - 45.567889 - ], - [ - -73.450058, - 45.567898 - ], - [ - -73.450056, - 45.567903 - ], - [ - -73.450055, - 45.567912 - ], - [ - -73.450054, - 45.567921 - ], - [ - -73.450052, - 45.567925 - ], - [ - -73.450051, - 45.567934 - ], - [ - -73.450049, - 45.567939 - ], - [ - -73.450048, - 45.567948 - ], - [ - -73.450046, - 45.567957 - ], - [ - -73.450045, - 45.567961 - ], - [ - -73.450043, - 45.56797 - ], - [ - -73.450042, - 45.567975 - ], - [ - -73.45004, - 45.567984 - ], - [ - -73.450039, - 45.567988 - ], - [ - -73.450037, - 45.567997 - ], - [ - -73.450036, - 45.568006 - ], - [ - -73.450034, - 45.568011 - ], - [ - -73.450032, - 45.56802 - ], - [ - -73.450031, - 45.568024 - ], - [ - -73.450029, - 45.568033 - ], - [ - -73.450028, - 45.568042 - ], - [ - -73.450026, - 45.568047 - ], - [ - -73.450024, - 45.568056 - ], - [ - -73.450023, - 45.56806 - ], - [ - -73.450021, - 45.568069 - ], - [ - -73.450019, - 45.568074 - ], - [ - -73.450017, - 45.568083 - ], - [ - -73.450016, - 45.568092 - ], - [ - -73.450014, - 45.568096 - ], - [ - -73.450013, - 45.568105 - ], - [ - -73.450011, - 45.56811 - ], - [ - -73.450009, - 45.568119 - ], - [ - -73.450007, - 45.568123 - ], - [ - -73.450006, - 45.568132 - ], - [ - -73.450004, - 45.568141 - ], - [ - -73.450002, - 45.568146 - ], - [ - -73.45, - 45.568155 - ], - [ - -73.449999, - 45.568159 - ], - [ - -73.449997, - 45.568168 - ], - [ - -73.449995, - 45.568173 - ], - [ - -73.449993, - 45.568182 - ], - [ - -73.449991, - 45.568191 - ], - [ - -73.449989, - 45.568195 - ], - [ - -73.449988, - 45.568204 - ], - [ - -73.449986, - 45.568209 - ], - [ - -73.449984, - 45.568218 - ], - [ - -73.449982, - 45.568227 - ], - [ - -73.44998, - 45.568231 - ], - [ - -73.449978, - 45.56824 - ], - [ - -73.449976, - 45.568245 - ], - [ - -73.449974, - 45.568254 - ], - [ - -73.449972, - 45.568258 - ], - [ - -73.44997, - 45.568267 - ], - [ - -73.449968, - 45.568276 - ], - [ - -73.449967, - 45.568281 - ], - [ - -73.449965, - 45.56829 - ], - [ - -73.449963, - 45.568294 - ], - [ - -73.449961, - 45.568303 - ], - [ - -73.449959, - 45.568308 - ], - [ - -73.449957, - 45.568317 - ], - [ - -73.449955, - 45.568326 - ], - [ - -73.449953, - 45.56833 - ], - [ - -73.449951, - 45.568339 - ], - [ - -73.449949, - 45.568344 - ], - [ - -73.449946, - 45.568353 - ], - [ - -73.449944, - 45.568357 - ], - [ - -73.449942, - 45.568366 - ], - [ - -73.44994, - 45.568371 - ], - [ - -73.449938, - 45.56838 - ], - [ - -73.449936, - 45.568389 - ], - [ - -73.449934, - 45.568393 - ], - [ - -73.449932, - 45.568402 - ], - [ - -73.44993, - 45.568407 - ], - [ - -73.449927, - 45.568416 - ], - [ - -73.449925, - 45.56842 - ], - [ - -73.449923, - 45.568429 - ], - [ - -73.449921, - 45.568438 - ], - [ - -73.449919, - 45.568443 - ], - [ - -73.449917, - 45.568452 - ], - [ - -73.449915, - 45.568456 - ], - [ - -73.449912, - 45.568465 - ], - [ - -73.44991, - 45.56847 - ], - [ - -73.449908, - 45.568479 - ], - [ - -73.449905, - 45.568488 - ], - [ - -73.449903, - 45.568492 - ], - [ - -73.449901, - 45.568501 - ], - [ - -73.449899, - 45.568506 - ], - [ - -73.449897, - 45.568515 - ], - [ - -73.449894, - 45.568519 - ], - [ - -73.449892, - 45.568528 - ], - [ - -73.449889, - 45.568533 - ], - [ - -73.449887, - 45.568542 - ], - [ - -73.449885, - 45.568551 - ], - [ - -73.449883, - 45.568555 - ], - [ - -73.44988, - 45.568564 - ], - [ - -73.449878, - 45.568569 - ], - [ - -73.449875, - 45.568578 - ], - [ - -73.449873, - 45.568582 - ], - [ - -73.44987, - 45.568591 - ], - [ - -73.449868, - 45.568596 - ], - [ - -73.449866, - 45.568605 - ], - [ - -73.449863, - 45.568614 - ], - [ - -73.449861, - 45.568618 - ], - [ - -73.449856, - 45.568632 - ], - [ - -73.449825, - 45.568708 - ], - [ - -73.449762, - 45.568861 - ], - [ - -73.449744, - 45.568903 - ], - [ - -73.449625, - 45.569181 - ], - [ - -73.449277, - 45.569995 - ], - [ - -73.449093, - 45.570413 - ], - [ - -73.449089, - 45.570422 - ], - [ - -73.44907, - 45.570467 - ], - [ - -73.449049, - 45.570517 - ], - [ - -73.448873, - 45.570917 - ], - [ - -73.448823, - 45.571034 - ], - [ - -73.448769, - 45.571168 - ], - [ - -73.44818, - 45.572625 - ], - [ - -73.447654, - 45.573778 - ], - [ - -73.447519, - 45.574084 - ], - [ - -73.447518, - 45.574088 - ], - [ - -73.447455, - 45.574133 - ], - [ - -73.447308, - 45.574407 - ], - [ - -73.447267, - 45.574466 - ], - [ - -73.447241, - 45.574497 - ], - [ - -73.447197, - 45.574529 - ], - [ - -73.447149, - 45.574547 - ], - [ - -73.447112, - 45.574556 - ], - [ - -73.447049, - 45.574565 - ], - [ - -73.446965, - 45.574569 - ], - [ - -73.446884, - 45.574565 - ], - [ - -73.446792, - 45.574547 - ], - [ - -73.446652, - 45.574511 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.443147, - 45.572802 - ], - [ - -73.443228, - 45.572879 - ], - [ - -73.443273, - 45.572955 - ], - [ - -73.443271, - 45.573 - ], - [ - -73.443276, - 45.573125 - ], - [ - -73.443281, - 45.573166 - ], - [ - -73.443386, - 45.57326 - ], - [ - -73.443502, - 45.573319 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.44468, - 45.573697 - ], - [ - -73.444697, - 45.573706 - ], - [ - -73.444729, - 45.573713 - ], - [ - -73.444769, - 45.573716 - ], - [ - -73.444831, - 45.573715 - ], - [ - -73.444884, - 45.573708 - ], - [ - -73.444896, - 45.573701 - ], - [ - -73.44491, - 45.573694 - ], - [ - -73.444953, - 45.573633 - ], - [ - -73.44492, - 45.573618 - ], - [ - -73.444872, - 45.573601 - ], - [ - -73.444829, - 45.573598 - ], - [ - -73.444749, - 45.573615 - ], - [ - -73.44471, - 45.573635 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.443539, - 45.573203 - ], - [ - -73.443522, - 45.573154 - ] - ] - }, - "id": 209, - "properties": { - "id": "d86c0312-aea5-4bc8-83f2-e6faa1dfca62", - "data": { - "gtfs": { - "shape_id": "120_2_R" - }, - "segments": [ - { - "distanceMeters": 4458, - "travelTimeSeconds": 332 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 782, - "travelTimeSeconds": 124 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 476, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 451, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 1184, - "travelTimeSeconds": 391 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10659, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8130.481607090507, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.34, - "travelTimeWithoutDwellTimesSeconds": 1680, - "operatingTimeWithLayoverTimeSeconds": 1860, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1680, - "operatingSpeedWithLayoverMetersPerSecond": 5.73, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.34 - }, - "mode": "bus", - "name": "Stat. de Mortagne", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "8a3f1208-7ffb-452e-8ebb-c436acba82d6", - "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", - "cd788179-2c9b-4e1e-9ba3-10b35bfde3fa", - "a388aa98-4c24-4671-8a33-a0e95f9d5ada", - "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", - "f5001112-5d1e-4489-87be-a34e9ded0d46", - "b070e296-b686-4ba3-bf68-049018a7af21", - "83389414-0049-46f6-a04b-557250511611", - "2b894d51-a427-4850-8fae-89ed3f29388d", - "bd99fd0e-cbdd-4d16-af5c-609bbef87ee4", - "adc9bcc9-8f6d-49e9-b7de-68b4f56033f4", - "bd467e22-a975-40b8-9a7a-9801529c3237", - "6150abd1-c8f6-4045-8e3e-f50bbef79a53", - "aff34f6b-5801-4e1a-bc66-3990844e0b4e", - "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", - "6672cb43-3241-42d7-b5c0-fdaed10338b9", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287" - ], - "stops": [], - "line_id": "2a610ac8-c7f7-4ff9-955a-e1d854beced8", - "segments": [ - 0, - 73, - 80, - 90, - 96, - 104, - 107, - 123, - 135, - 149, - 160, - 163, - 167, - 172, - 174, - 182, - 340, - 348 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 209, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521486, - 45.523819 - ], - [ - -73.521481, - 45.523874 - ], - [ - -73.52149, - 45.523892 - ], - [ - -73.521509, - 45.523906 - ], - [ - -73.521542, - 45.523919 - ], - [ - -73.521581, - 45.523923 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509952, - 45.515502 - ], - [ - -73.509485, - 45.515357 - ], - [ - -73.509376, - 45.515323 - ], - [ - -73.508692, - 45.515143 - ], - [ - -73.508296, - 45.51503 - ], - [ - -73.507817, - 45.514868 - ], - [ - -73.507704, - 45.514841 - ], - [ - -73.507464, - 45.514765 - ], - [ - -73.506516, - 45.514432 - ], - [ - -73.505464, - 45.514054 - ], - [ - -73.505166, - 45.51396 - ], - [ - -73.504861, - 45.513863 - ], - [ - -73.504451, - 45.513734 - ], - [ - -73.50434, - 45.513699 - ], - [ - -73.504259, - 45.513672 - ], - [ - -73.503369, - 45.513397 - ], - [ - -73.502433, - 45.51315 - ], - [ - -73.502048, - 45.513078 - ], - [ - -73.501411, - 45.512898 - ], - [ - -73.50108, - 45.512799 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.494088, - 45.51035 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488541, - 45.503629 - ], - [ - -73.48831, - 45.50321 - ], - [ - -73.48823, - 45.503039 - ], - [ - -73.488092, - 45.502693 - ], - [ - -73.487989, - 45.502369 - ], - [ - -73.487959, - 45.502275 - ], - [ - -73.487746, - 45.501478 - ], - [ - -73.487613, - 45.501033 - ], - [ - -73.487509, - 45.500686 - ], - [ - -73.487464, - 45.50056 - ], - [ - -73.487346, - 45.500232 - ], - [ - -73.487139, - 45.499795 - ], - [ - -73.486985, - 45.499512 - ], - [ - -73.486818, - 45.499233 - ], - [ - -73.48673, - 45.4991 - ], - [ - -73.486631, - 45.498949 - ], - [ - -73.486428, - 45.498675 - ], - [ - -73.486216, - 45.498401 - ], - [ - -73.486166, - 45.498342 - ], - [ - -73.486, - 45.498149 - ], - [ - -73.485576, - 45.497708 - ], - [ - -73.485299, - 45.497456 - ], - [ - -73.485251, - 45.497415 - ], - [ - -73.484899, - 45.497123 - ], - [ - -73.484387, - 45.49674 - ], - [ - -73.484357, - 45.496722 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.483872, - 45.497077 - ], - [ - -73.483869, - 45.49708 - ], - [ - -73.483504, - 45.497347 - ], - [ - -73.483382, - 45.497433 - ], - [ - -73.483338, - 45.497469 - ], - [ - -73.483277, - 45.497509 - ], - [ - -73.482985, - 45.497707 - ], - [ - -73.482636, - 45.497941 - ], - [ - -73.482124, - 45.49831 - ], - [ - -73.481899, - 45.498472 - ], - [ - -73.481589, - 45.498697 - ], - [ - -73.481169, - 45.498994 - ], - [ - -73.480847, - 45.499223 - ], - [ - -73.480477, - 45.499488 - ], - [ - -73.480326, - 45.499398 - ], - [ - -73.47971, - 45.498993 - ], - [ - -73.479492, - 45.498848 - ], - [ - -73.479271, - 45.498701 - ], - [ - -73.478967, - 45.498498 - ], - [ - -73.4786, - 45.498251 - ], - [ - -73.478257, - 45.498026 - ], - [ - -73.478178, - 45.497976 - ], - [ - -73.477789, - 45.49772 - ], - [ - -73.477439, - 45.49749 - ], - [ - -73.477062, - 45.497238 - ], - [ - -73.476713, - 45.497004 - ], - [ - -73.47632, - 45.496748 - ], - [ - -73.475974, - 45.496523 - ], - [ - -73.475747, - 45.496374 - ], - [ - -73.475492, - 45.496208 - ], - [ - -73.475346, - 45.496118 - ], - [ - -73.475245, - 45.49605 - ], - [ - -73.474879, - 45.495798 - ], - [ - -73.474517, - 45.49556 - ], - [ - -73.474138, - 45.495312 - ], - [ - -73.473858, - 45.495132 - ], - [ - -73.473385, - 45.494817 - ], - [ - -73.473259, - 45.49474 - ], - [ - -73.473016, - 45.494578 - ], - [ - -73.472769, - 45.494416 - ], - [ - -73.472367, - 45.494146 - ], - [ - -73.471949, - 45.493867 - ], - [ - -73.471614, - 45.493642 - ], - [ - -73.471224, - 45.49339 - ], - [ - -73.470867, - 45.493152 - ], - [ - -73.470545, - 45.492931 - ], - [ - -73.470296, - 45.492769 - ], - [ - -73.469959, - 45.492553 - ], - [ - -73.469723, - 45.492395 - ], - [ - -73.469303, - 45.492121 - ], - [ - -73.469006, - 45.491923 - ], - [ - -73.468656, - 45.491698 - ], - [ - -73.468573, - 45.49163 - ], - [ - -73.468166, - 45.49136 - ], - [ - -73.468094, - 45.49132 - ], - [ - -73.468029, - 45.491284 - ], - [ - -73.467697, - 45.491059 - ], - [ - -73.467397, - 45.490865 - ], - [ - -73.466889, - 45.490518 - ], - [ - -73.466277, - 45.490113 - ], - [ - -73.466175, - 45.490041 - ], - [ - -73.466087, - 45.489983 - ], - [ - -73.465434, - 45.48956 - ], - [ - -73.46482, - 45.489155 - ], - [ - -73.464595, - 45.489001 - ], - [ - -73.464379, - 45.488857 - ], - [ - -73.46422, - 45.488754 - ], - [ - -73.464097, - 45.488673 - ], - [ - -73.463537, - 45.488299 - ], - [ - -73.463291, - 45.488146 - ], - [ - -73.463053, - 45.487989 - ], - [ - -73.462983, - 45.487944 - ], - [ - -73.46278, - 45.487809 - ], - [ - -73.462116, - 45.487367 - ], - [ - -73.461292, - 45.486823 - ], - [ - -73.461219, - 45.486774 - ], - [ - -73.460376, - 45.486211 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.45937, - 45.485544 - ], - [ - -73.458995, - 45.485292 - ], - [ - -73.458472, - 45.484946 - ], - [ - -73.45799, - 45.484621 - ], - [ - -73.457564, - 45.484333 - ], - [ - -73.457447, - 45.484256 - ], - [ - -73.456334, - 45.483523 - ], - [ - -73.456426, - 45.48346 - ], - [ - -73.45662, - 45.483329 - ], - [ - -73.456963, - 45.483096 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45645, - 45.482799 - ], - [ - -73.455886, - 45.482623 - ], - [ - -73.455654, - 45.482542 - ], - [ - -73.455462, - 45.482465 - ], - [ - -73.455276, - 45.482384 - ], - [ - -73.455009, - 45.482272 - ], - [ - -73.454605, - 45.482087 - ], - [ - -73.454381, - 45.481984 - ], - [ - -73.454145, - 45.481862 - ], - [ - -73.453796, - 45.481673 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452296, - 45.480719 - ], - [ - -73.452295, - 45.480718 - ], - [ - -73.451837, - 45.480421 - ], - [ - -73.451565, - 45.480238 - ], - [ - -73.450994, - 45.479853 - ], - [ - -73.450929, - 45.479809 - ], - [ - -73.450257, - 45.479368 - ], - [ - -73.449693, - 45.479 - ], - [ - -73.449587, - 45.478931 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448305, - 45.478058 - ], - [ - -73.447778, - 45.477701 - ], - [ - -73.4477, - 45.477648 - ], - [ - -73.446992, - 45.477175 - ], - [ - -73.446393, - 45.476765 - ], - [ - -73.445743, - 45.476329 - ], - [ - -73.445364, - 45.476066 - ], - [ - -73.445205, - 45.475955 - ], - [ - -73.444867, - 45.475726 - ], - [ - -73.444508, - 45.475482 - ], - [ - -73.443707, - 45.474941 - ], - [ - -73.443609, - 45.474874 - ], - [ - -73.44285, - 45.474357 - ], - [ - -73.441165, - 45.473204 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.439193, - 45.471877 - ], - [ - -73.438153, - 45.471176 - ], - [ - -73.438035, - 45.471097 - ], - [ - -73.43559, - 45.469482 - ], - [ - -73.435506, - 45.469426 - ], - [ - -73.434528, - 45.468778 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.433058, - 45.467863 - ], - [ - -73.430632, - 45.466255 - ], - [ - -73.430214, - 45.465978 - ], - [ - -73.426686, - 45.463639 - ], - [ - -73.426608, - 45.463587 - ], - [ - -73.425566, - 45.462896 - ], - [ - -73.425014, - 45.46253 - ], - [ - -73.424853, - 45.462423 - ], - [ - -73.4247, - 45.462321 - ], - [ - -73.42397, - 45.461837 - ], - [ - -73.423448, - 45.461491 - ], - [ - -73.423345, - 45.461423 - ], - [ - -73.422579, - 45.460915 - ], - [ - -73.419921, - 45.459152 - ], - [ - -73.419828, - 45.45909 - ], - [ - -73.419683, - 45.458994 - ], - [ - -73.417292, - 45.457408 - ], - [ - -73.417173, - 45.457494 - ], - [ - -73.41683, - 45.457739 - ], - [ - -73.416622, - 45.457887 - ], - [ - -73.416344, - 45.458017 - ], - [ - -73.416165, - 45.458062 - ], - [ - -73.415997, - 45.458084 - ], - [ - -73.415882, - 45.458093 - ], - [ - -73.415729, - 45.458102 - ], - [ - -73.415567, - 45.45812 - ], - [ - -73.415388, - 45.458142 - ], - [ - -73.415204, - 45.458183 - ], - [ - -73.415063, - 45.458237 - ], - [ - -73.414927, - 45.458313 - ], - [ - -73.414819, - 45.458381 - ], - [ - -73.414651, - 45.458488 - ], - [ - -73.41246, - 45.460117 - ], - [ - -73.411084, - 45.46114 - ], - [ - -73.410025, - 45.461927 - ], - [ - -73.410017, - 45.461933 - ], - [ - -73.40945, - 45.462354 - ], - [ - -73.407779, - 45.463577 - ], - [ - -73.40765, - 45.463671 - ], - [ - -73.404482, - 45.461543 - ], - [ - -73.404296, - 45.461418 - ], - [ - -73.406253, - 45.46006 - ] - ] - }, - "id": 210, - "properties": { - "id": "68708237-db2c-48f4-b541-3b13df282dc3", - "data": { - "gtfs": { - "shape_id": "121_1_R" - }, - "segments": [ - { - "distanceMeters": 8464, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 459, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 93 - }, - { - "distanceMeters": 334, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 89 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 58 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13706, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4276.526753760299, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 13.44, - "travelTimeWithoutDwellTimesSeconds": 1020, - "operatingTimeWithLayoverTimeSeconds": 1200, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1020, - "operatingSpeedWithLayoverMetersPerSecond": 11.42, - "averageSpeedWithoutDwellTimesMetersPerSecond": 13.44 - }, - "mode": "bus", - "name": "Armand-Frappier", - "color": "#A32638", - "nodes": [ - "5f21960f-8919-4407-8a49-57c39947c4fe", - "cc43f372-04e8-4c4c-b711-2e4159e3855d", - "9b7055a8-adca-44c6-9935-6026756d4460", - "76ff8292-f41f-4d17-998d-6dd3d2c32288", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "e80498a8-505d-4215-ba07-7582f8783d8e", - "014d61e3-acfc-41f6-b78a-5c2178c073b1", - "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", - "14e293a6-352a-4156-8578-66d0b5bdcc1f", - "62558b4d-75af-4b04-8040-a30de5a89658", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "988183db-88f1-47cb-87bf-b2a03dd4a38d", - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "bfb03303-2ee6-40dd-8e8f-859a06b338a6", - "2b6f210c-4f28-43d1-b096-b48c582f5274", - "cdda3c7c-b577-49de-afc0-aa4c4e60c34b", - "dc623539-3b98-4807-a5d5-f66507b8bc4c", - "84fd1601-f65a-4eb9-beba-06ee8c2970d2", - "fee943f3-e127-46e6-bc62-d6c4c320bd7a", - "22c42fca-2f2b-42d3-9449-3b9e7c474f2e", - "28acd503-64ba-4c57-925c-1acd27dd7dde", - "abd6e1bb-b826-4462-87f2-3bae5c6594ea" - ], - "stops": [], - "line_id": "4e1f2cfb-db00-499a-afdd-d36dcea45986", - "segments": [ - 0, - 250, - 253, - 257, - 262, - 266, - 269, - 273, - 275, - 277, - 281, - 282, - 286, - 289, - 292, - 297, - 309, - 311, - 313, - 316, - 318 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 210, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.406253, - 45.46006 - ], - [ - -73.406952, - 45.459576 - ], - [ - -73.408732, - 45.458422 - ], - [ - -73.409865, - 45.457688 - ], - [ - -73.410149, - 45.457553 - ], - [ - -73.410462, - 45.457446 - ], - [ - -73.410807, - 45.457387 - ], - [ - -73.411159, - 45.457347 - ], - [ - -73.411393, - 45.457343 - ], - [ - -73.411627, - 45.457361 - ], - [ - -73.412457, - 45.457447 - ], - [ - -73.412673, - 45.457474 - ], - [ - -73.412926, - 45.457502 - ], - [ - -73.413147, - 45.457542 - ], - [ - -73.413262, - 45.457587 - ], - [ - -73.413399, - 45.457668 - ], - [ - -73.414313, - 45.458267 - ], - [ - -73.414651, - 45.458488 - ], - [ - -73.414927, - 45.458313 - ], - [ - -73.415063, - 45.458237 - ], - [ - -73.415204, - 45.458183 - ], - [ - -73.415388, - 45.458142 - ], - [ - -73.415567, - 45.45812 - ], - [ - -73.415729, - 45.458102 - ], - [ - -73.415882, - 45.458093 - ], - [ - -73.415997, - 45.458084 - ], - [ - -73.416165, - 45.458062 - ], - [ - -73.416344, - 45.458017 - ], - [ - -73.416622, - 45.457887 - ], - [ - -73.416858, - 45.457719 - ], - [ - -73.417173, - 45.457494 - ], - [ - -73.419493, - 45.459028 - ], - [ - -73.419564, - 45.459076 - ], - [ - -73.419713, - 45.459174 - ], - [ - -73.422288, - 45.460877 - ], - [ - -73.422478, - 45.461003 - ], - [ - -73.423149, - 45.461446 - ], - [ - -73.42386, - 45.461916 - ], - [ - -73.424593, - 45.462401 - ], - [ - -73.424972, - 45.462652 - ], - [ - -73.425478, - 45.462986 - ], - [ - -73.426203, - 45.463465 - ], - [ - -73.426502, - 45.463663 - ], - [ - -73.43053, - 45.466326 - ], - [ - -73.430807, - 45.466509 - ], - [ - -73.432747, - 45.467791 - ], - [ - -73.434092, - 45.468675 - ], - [ - -73.434186, - 45.468737 - ], - [ - -73.435226, - 45.469429 - ], - [ - -73.435371, - 45.469525 - ], - [ - -73.437733, - 45.471086 - ], - [ - -73.437899, - 45.471196 - ], - [ - -73.440423, - 45.472896 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.441938, - 45.473928 - ], - [ - -73.442708, - 45.474456 - ], - [ - -73.44337, - 45.474907 - ], - [ - -73.443474, - 45.474978 - ], - [ - -73.44437, - 45.475586 - ], - [ - -73.445009, - 45.476019 - ], - [ - -73.445067, - 45.476058 - ], - [ - -73.445608, - 45.476432 - ], - [ - -73.446237, - 45.47686 - ], - [ - -73.446869, - 45.477292 - ], - [ - -73.447192, - 45.477511 - ], - [ - -73.44754, - 45.477747 - ], - [ - -73.448146, - 45.478157 - ], - [ - -73.44865, - 45.478496 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.450119, - 45.479471 - ], - [ - -73.450869, - 45.479962 - ], - [ - -73.451, - 45.480048 - ], - [ - -73.451438, - 45.480342 - ], - [ - -73.451689, - 45.480511 - ], - [ - -73.452165, - 45.480813 - ], - [ - -73.452541, - 45.481075 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452851, - 45.48129 - ], - [ - -73.453668, - 45.481781 - ], - [ - -73.454023, - 45.481974 - ], - [ - -73.454266, - 45.482101 - ], - [ - -73.454494, - 45.482204 - ], - [ - -73.454624, - 45.482357 - ], - [ - -73.455203, - 45.482812 - ], - [ - -73.455441, - 45.482965 - ], - [ - -73.456005, - 45.483321 - ], - [ - -73.456089, - 45.483375 - ], - [ - -73.456112, - 45.483393 - ], - [ - -73.456334, - 45.483523 - ], - [ - -73.457447, - 45.484256 - ], - [ - -73.457564, - 45.484333 - ], - [ - -73.45799, - 45.484621 - ], - [ - -73.458472, - 45.484946 - ], - [ - -73.458995, - 45.485292 - ], - [ - -73.459352, - 45.485532 - ], - [ - -73.45937, - 45.485544 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.460376, - 45.486211 - ], - [ - -73.461026, - 45.486645 - ], - [ - -73.461219, - 45.486774 - ], - [ - -73.461292, - 45.486823 - ], - [ - -73.462116, - 45.487367 - ], - [ - -73.462664, - 45.487731 - ], - [ - -73.46278, - 45.487809 - ], - [ - -73.462983, - 45.487944 - ], - [ - -73.463053, - 45.487989 - ], - [ - -73.463291, - 45.488146 - ], - [ - -73.463537, - 45.488299 - ], - [ - -73.464097, - 45.488673 - ], - [ - -73.46422, - 45.488754 - ], - [ - -73.464379, - 45.488857 - ], - [ - -73.464595, - 45.489001 - ], - [ - -73.464745, - 45.489104 - ], - [ - -73.46482, - 45.489155 - ], - [ - -73.465434, - 45.48956 - ], - [ - -73.466009, - 45.489932 - ], - [ - -73.466087, - 45.489983 - ], - [ - -73.466175, - 45.490041 - ], - [ - -73.466277, - 45.490113 - ], - [ - -73.466889, - 45.490518 - ], - [ - -73.467397, - 45.490865 - ], - [ - -73.467697, - 45.491059 - ], - [ - -73.467799, - 45.491128 - ], - [ - -73.468029, - 45.491284 - ], - [ - -73.468094, - 45.49132 - ], - [ - -73.468166, - 45.49136 - ], - [ - -73.468573, - 45.49163 - ], - [ - -73.468656, - 45.491698 - ], - [ - -73.469006, - 45.491923 - ], - [ - -73.469068, - 45.491964 - ], - [ - -73.469303, - 45.492121 - ], - [ - -73.469723, - 45.492395 - ], - [ - -73.469959, - 45.492553 - ], - [ - -73.470296, - 45.492769 - ], - [ - -73.470313, - 45.49278 - ], - [ - -73.470545, - 45.492931 - ], - [ - -73.470867, - 45.493152 - ], - [ - -73.471224, - 45.49339 - ], - [ - -73.471614, - 45.493642 - ], - [ - -73.471949, - 45.493867 - ], - [ - -73.472367, - 45.494146 - ], - [ - -73.472663, - 45.494345 - ], - [ - -73.472769, - 45.494416 - ], - [ - -73.473016, - 45.494578 - ], - [ - -73.473259, - 45.49474 - ], - [ - -73.473385, - 45.494817 - ], - [ - -73.473747, - 45.495058 - ], - [ - -73.473858, - 45.495132 - ], - [ - -73.474138, - 45.495312 - ], - [ - -73.474517, - 45.49556 - ], - [ - -73.474879, - 45.495798 - ], - [ - -73.475137, - 45.495976 - ], - [ - -73.475245, - 45.49605 - ], - [ - -73.475346, - 45.496118 - ], - [ - -73.475492, - 45.496208 - ], - [ - -73.475747, - 45.496374 - ], - [ - -73.475974, - 45.496523 - ], - [ - -73.47632, - 45.496748 - ], - [ - -73.476628, - 45.496949 - ], - [ - -73.476713, - 45.497004 - ], - [ - -73.477062, - 45.497238 - ], - [ - -73.477439, - 45.49749 - ], - [ - -73.477789, - 45.49772 - ], - [ - -73.478034, - 45.497881 - ], - [ - -73.478178, - 45.497976 - ], - [ - -73.478257, - 45.498026 - ], - [ - -73.4786, - 45.498251 - ], - [ - -73.478967, - 45.498498 - ], - [ - -73.479271, - 45.498701 - ], - [ - -73.47971, - 45.498993 - ], - [ - -73.480326, - 45.499398 - ], - [ - -73.480365, - 45.499422 - ], - [ - -73.480477, - 45.499488 - ], - [ - -73.480835, - 45.499231 - ], - [ - -73.480847, - 45.499223 - ], - [ - -73.481169, - 45.498994 - ], - [ - -73.481589, - 45.498697 - ], - [ - -73.481899, - 45.498472 - ], - [ - -73.482124, - 45.49831 - ], - [ - -73.482543, - 45.498008 - ], - [ - -73.482636, - 45.497941 - ], - [ - -73.482985, - 45.497707 - ], - [ - -73.483277, - 45.497509 - ], - [ - -73.483338, - 45.497469 - ], - [ - -73.483382, - 45.497433 - ], - [ - -73.483504, - 45.497347 - ], - [ - -73.483872, - 45.497077 - ], - [ - -73.484052, - 45.496945 - ], - [ - -73.484056, - 45.496942 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.48442, - 45.496983 - ], - [ - -73.484708, - 45.497199 - ], - [ - -73.484931, - 45.497378 - ], - [ - -73.485095, - 45.49751 - ], - [ - -73.485397, - 45.497784 - ], - [ - -73.485739, - 45.498135 - ], - [ - -73.485877, - 45.498284 - ], - [ - -73.486105, - 45.498553 - ], - [ - -73.486286, - 45.498787 - ], - [ - -73.486368, - 45.498907 - ], - [ - -73.486538, - 45.499154 - ], - [ - -73.486685, - 45.499381 - ], - [ - -73.486823, - 45.499615 - ], - [ - -73.486951, - 45.499858 - ], - [ - -73.487138, - 45.500263 - ], - [ - -73.487159, - 45.500317 - ], - [ - -73.487268, - 45.500609 - ], - [ - -73.487306, - 45.500713 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487417, - 45.501077 - ], - [ - -73.487455, - 45.501208 - ], - [ - -73.487464, - 45.50124 - ], - [ - -73.48765, - 45.50191 - ], - [ - -73.487855, - 45.502589 - ], - [ - -73.488032, - 45.50303 - ], - [ - -73.488178, - 45.503309 - ], - [ - -73.488409, - 45.50371 - ], - [ - -73.489159, - 45.504974 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492923, - 45.510108 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497918, - 45.512052 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.500882, - 45.513009 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505113, - 45.514482 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506107, - 45.514749 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511916, - 45.516872 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513432, - 45.5183 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.514994, - 45.51942 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518889, - 45.520627 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.521609, - 45.523676 - ], - [ - -73.521556, - 45.52368 - ], - [ - -73.521506, - 45.523698 - ], - [ - -73.521494, - 45.523725 - ], - [ - -73.521489, - 45.523788 - ], - [ - -73.521486, - 45.523819 - ] - ] - }, - "id": 211, - "properties": { - "id": "846aca2e-3a4b-4297-b529-e6410bd69601", - "data": { - "gtfs": { - "shape_id": "121_2_A" - }, - "segments": [ - { - "distanceMeters": 266, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 509, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 494, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 359, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 507, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 1156, - "travelTimeSeconds": 168 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 598, - "travelTimeSeconds": 116 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 694, - "travelTimeSeconds": 135 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 210, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12985, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11435.721751506964, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.18, - "travelTimeWithoutDwellTimesSeconds": 2100, - "operatingTimeWithLayoverTimeSeconds": 2310, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2100, - "operatingSpeedWithLayoverMetersPerSecond": 5.62, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.18 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "abd6e1bb-b826-4462-87f2-3bae5c6594ea", - "fcd51ec2-f1b1-4630-8f4f-bbfd7b67c91f", - "dc623539-3b98-4807-a5d5-f66507b8bc4c", - "cdda3c7c-b577-49de-afc0-aa4c4e60c34b", - "0b9048bd-dd82-42d8-ba47-b3d93d735fe8", - "d8582feb-8d83-457a-8a52-dc395b1f7390", - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "2f104875-795a-4778-a419-276272abfb07", - "ba86f45f-9fb5-4525-a50b-a876919fd012", - "988c86da-04eb-4067-b650-f13c447b17e7", - "14e293a6-352a-4156-8578-66d0b5bdcc1f", - "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", - "2881ced2-6a46-4738-a470-6ff64097e482", - "e80498a8-505d-4215-ba07-7582f8783d8e", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "c4061c94-e615-4bca-b219-1ff6ea9657d0", - "89553e99-6867-4296-935e-718bb768cb73", - "72a48bdf-3a35-4f3b-8d05-e465faf044cf", - "70af9f63-28e4-474e-896b-5462b7252980", - "1f1b5a64-7c8d-49de-8df3-369e30f799ef", - "c24b91da-a4a3-4b28-b987-5726c6a01fdb", - "720107c1-f0c2-4f37-8e59-ce7f32cd9461", - "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", - "e49dac95-6777-4527-88d9-43533c4c81ab", - "3690607e-a520-4b5c-bb6d-5e6ec4c83aec", - "cee5ccf3-ece1-4350-8264-3c360d07d279", - "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", - "9e73f7cd-aad7-4512-9984-973fdc775485", - "d8e1fde2-a0b2-4339-9d55-49a5f3be258b", - "dae79222-5b12-4269-8d31-6271170c1f54", - "4969c5f0-e6b6-4445-8d46-f637f2b3b640", - "b33d27b7-d555-4c52-b225-a20c1767dd3b", - "de8aa4d4-205c-4786-8a75-8902d51d8a41", - "47ef73cf-7799-46e3-b2f1-76a6533f7746", - "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", - "fd062866-a8eb-4466-b53a-6adf8fc3f09a", - "6c42a8f6-a98f-4058-9992-d00706a03dff", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "a5b9648a-83c0-4eab-a54b-68c23aecae43", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", - "be19484c-af95-45b2-bfe5-24342dd1b710", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "4e1f2cfb-db00-499a-afdd-d36dcea45986", - "segments": [ - 0, - 2, - 16, - 29, - 31, - 34, - 39, - 41, - 44, - 46, - 48, - 50, - 52, - 57, - 60, - 65, - 68, - 72, - 77, - 87, - 96, - 100, - 104, - 114, - 117, - 124, - 131, - 136, - 143, - 148, - 153, - 160, - 165, - 173, - 181, - 189, - 208, - 230, - 243, - 246, - 253, - 272, - 278, - 291, - 298 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 211, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521486, - 45.523819 - ], - [ - -73.521481, - 45.523874 - ], - [ - -73.52149, - 45.523892 - ], - [ - -73.521509, - 45.523906 - ], - [ - -73.521542, - 45.523919 - ], - [ - -73.521581, - 45.523923 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519258, - 45.520728 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514997, - 45.519328 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513223, - 45.517458 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509952, - 45.515502 - ], - [ - -73.509485, - 45.515357 - ], - [ - -73.509464, - 45.51535 - ], - [ - -73.509376, - 45.515323 - ], - [ - -73.508692, - 45.515143 - ], - [ - -73.508296, - 45.51503 - ], - [ - -73.507817, - 45.514868 - ], - [ - -73.507704, - 45.514841 - ], - [ - -73.507464, - 45.514765 - ], - [ - -73.506516, - 45.514432 - ], - [ - -73.505464, - 45.514054 - ], - [ - -73.505166, - 45.51396 - ], - [ - -73.504861, - 45.513863 - ], - [ - -73.504776, - 45.513836 - ], - [ - -73.504451, - 45.513734 - ], - [ - -73.50434, - 45.513699 - ], - [ - -73.504259, - 45.513672 - ], - [ - -73.503369, - 45.513397 - ], - [ - -73.502433, - 45.51315 - ], - [ - -73.502048, - 45.513078 - ], - [ - -73.50154, - 45.512934 - ], - [ - -73.501411, - 45.512898 - ], - [ - -73.50108, - 45.512799 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499658, - 45.512341 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.494295, - 45.510451 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.494088, - 45.51035 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491843, - 45.508694 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488541, - 45.503629 - ], - [ - -73.48831, - 45.50321 - ], - [ - -73.48823, - 45.503039 - ], - [ - -73.488092, - 45.502693 - ], - [ - -73.487989, - 45.502369 - ], - [ - -73.487959, - 45.502275 - ], - [ - -73.487746, - 45.501478 - ], - [ - -73.487613, - 45.501033 - ], - [ - -73.487524, - 45.500736 - ], - [ - -73.487509, - 45.500686 - ], - [ - -73.487464, - 45.50056 - ], - [ - -73.487346, - 45.500232 - ], - [ - -73.487139, - 45.499795 - ], - [ - -73.486985, - 45.499512 - ], - [ - -73.486818, - 45.499233 - ], - [ - -73.48673, - 45.4991 - ], - [ - -73.486631, - 45.498949 - ], - [ - -73.486428, - 45.498675 - ], - [ - -73.486216, - 45.498401 - ], - [ - -73.486166, - 45.498342 - ], - [ - -73.486, - 45.498149 - ], - [ - -73.485576, - 45.497708 - ], - [ - -73.485299, - 45.497456 - ], - [ - -73.485251, - 45.497415 - ], - [ - -73.484899, - 45.497123 - ], - [ - -73.484387, - 45.49674 - ], - [ - -73.484357, - 45.496722 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.483872, - 45.497077 - ], - [ - -73.483869, - 45.49708 - ], - [ - -73.483831, - 45.497108 - ], - [ - -73.483504, - 45.497347 - ], - [ - -73.483382, - 45.497433 - ], - [ - -73.483338, - 45.497469 - ], - [ - -73.483277, - 45.497509 - ], - [ - -73.482985, - 45.497707 - ], - [ - -73.482743, - 45.497869 - ], - [ - -73.482636, - 45.497941 - ], - [ - -73.482124, - 45.49831 - ], - [ - -73.481899, - 45.498472 - ], - [ - -73.481589, - 45.498697 - ], - [ - -73.481169, - 45.498994 - ], - [ - -73.480847, - 45.499223 - ], - [ - -73.480616, - 45.499389 - ], - [ - -73.480477, - 45.499488 - ], - [ - -73.480326, - 45.499398 - ], - [ - -73.47971, - 45.498993 - ], - [ - -73.479492, - 45.498848 - ], - [ - -73.479271, - 45.498701 - ], - [ - -73.478967, - 45.498498 - ], - [ - -73.4786, - 45.498251 - ], - [ - -73.478381, - 45.498107 - ], - [ - -73.478257, - 45.498026 - ], - [ - -73.478178, - 45.497976 - ], - [ - -73.477789, - 45.49772 - ], - [ - -73.477439, - 45.49749 - ], - [ - -73.477062, - 45.497238 - ], - [ - -73.476833, - 45.497084 - ], - [ - -73.476713, - 45.497004 - ], - [ - -73.47632, - 45.496748 - ], - [ - -73.475974, - 45.496523 - ], - [ - -73.475747, - 45.496374 - ], - [ - -73.475736, - 45.496367 - ], - [ - -73.475492, - 45.496208 - ], - [ - -73.475346, - 45.496118 - ], - [ - -73.475245, - 45.49605 - ], - [ - -73.474879, - 45.495798 - ], - [ - -73.474517, - 45.49556 - ], - [ - -73.474138, - 45.495312 - ], - [ - -73.473934, - 45.49518 - ], - [ - -73.473858, - 45.495132 - ], - [ - -73.473385, - 45.494817 - ], - [ - -73.473259, - 45.49474 - ], - [ - -73.473016, - 45.494578 - ], - [ - -73.472904, - 45.494505 - ], - [ - -73.472769, - 45.494416 - ], - [ - -73.472367, - 45.494146 - ], - [ - -73.471949, - 45.493867 - ], - [ - -73.471614, - 45.493642 - ], - [ - -73.471224, - 45.49339 - ], - [ - -73.470867, - 45.493152 - ], - [ - -73.470611, - 45.492976 - ], - [ - -73.470545, - 45.492931 - ], - [ - -73.470296, - 45.492769 - ], - [ - -73.469959, - 45.492553 - ], - [ - -73.469723, - 45.492395 - ], - [ - -73.469421, - 45.492198 - ], - [ - -73.469303, - 45.492121 - ], - [ - -73.469006, - 45.491923 - ], - [ - -73.468656, - 45.491698 - ], - [ - -73.468573, - 45.49163 - ], - [ - -73.468364, - 45.491492 - ], - [ - -73.468166, - 45.49136 - ], - [ - -73.468094, - 45.49132 - ], - [ - -73.468029, - 45.491284 - ], - [ - -73.467697, - 45.491059 - ], - [ - -73.467397, - 45.490865 - ], - [ - -73.466889, - 45.490518 - ], - [ - -73.466378, - 45.49018 - ], - [ - -73.466277, - 45.490113 - ], - [ - -73.466175, - 45.490041 - ], - [ - -73.466087, - 45.489983 - ], - [ - -73.465434, - 45.48956 - ], - [ - -73.464883, - 45.489196 - ], - [ - -73.46482, - 45.489155 - ], - [ - -73.464595, - 45.489001 - ], - [ - -73.464379, - 45.488857 - ], - [ - -73.46422, - 45.488754 - ], - [ - -73.464097, - 45.488673 - ], - [ - -73.463537, - 45.488299 - ], - [ - -73.463291, - 45.488146 - ], - [ - -73.463053, - 45.487989 - ], - [ - -73.462988, - 45.487947 - ], - [ - -73.462983, - 45.487944 - ], - [ - -73.46278, - 45.487809 - ], - [ - -73.462116, - 45.487367 - ], - [ - -73.461424, - 45.48691 - ], - [ - -73.461292, - 45.486823 - ], - [ - -73.461219, - 45.486774 - ], - [ - -73.460376, - 45.486211 - ], - [ - -73.459526, - 45.48565 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.45937, - 45.485544 - ], - [ - -73.458995, - 45.485292 - ], - [ - -73.458472, - 45.484946 - ], - [ - -73.45799, - 45.484621 - ], - [ - -73.457564, - 45.484333 - ], - [ - -73.457447, - 45.484256 - ], - [ - -73.457022, - 45.483976 - ], - [ - -73.456334, - 45.483523 - ], - [ - -73.456426, - 45.48346 - ], - [ - -73.45662, - 45.483329 - ], - [ - -73.456963, - 45.483096 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45645, - 45.482799 - ], - [ - -73.455886, - 45.482623 - ], - [ - -73.455654, - 45.482542 - ], - [ - -73.455462, - 45.482465 - ], - [ - -73.455276, - 45.482384 - ], - [ - -73.455272, - 45.482383 - ], - [ - -73.455009, - 45.482272 - ], - [ - -73.454605, - 45.482087 - ], - [ - -73.454381, - 45.481984 - ], - [ - -73.454145, - 45.481862 - ], - [ - -73.453796, - 45.481673 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452506, - 45.48085 - ], - [ - -73.452296, - 45.480719 - ], - [ - -73.452295, - 45.480718 - ], - [ - -73.451837, - 45.480421 - ], - [ - -73.451565, - 45.480238 - ], - [ - -73.450994, - 45.479853 - ], - [ - -73.450929, - 45.479809 - ], - [ - -73.450257, - 45.479368 - ], - [ - -73.449693, - 45.479 - ], - [ - -73.449587, - 45.478931 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448305, - 45.478058 - ], - [ - -73.447778, - 45.477701 - ], - [ - -73.4477, - 45.477648 - ], - [ - -73.446992, - 45.477175 - ], - [ - -73.446393, - 45.476765 - ], - [ - -73.445743, - 45.476329 - ], - [ - -73.445364, - 45.476066 - ], - [ - -73.445205, - 45.475955 - ], - [ - -73.444867, - 45.475726 - ], - [ - -73.444508, - 45.475482 - ], - [ - -73.443707, - 45.474941 - ], - [ - -73.443609, - 45.474874 - ], - [ - -73.44285, - 45.474357 - ], - [ - -73.441165, - 45.473204 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.439193, - 45.471877 - ], - [ - -73.438153, - 45.471176 - ], - [ - -73.438035, - 45.471097 - ], - [ - -73.43559, - 45.469482 - ], - [ - -73.435506, - 45.469426 - ], - [ - -73.434528, - 45.468778 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.433058, - 45.467863 - ], - [ - -73.430632, - 45.466255 - ], - [ - -73.430214, - 45.465978 - ], - [ - -73.426686, - 45.463639 - ], - [ - -73.426608, - 45.463587 - ], - [ - -73.425566, - 45.462896 - ], - [ - -73.425014, - 45.46253 - ], - [ - -73.424853, - 45.462423 - ], - [ - -73.4247, - 45.462321 - ], - [ - -73.42397, - 45.461837 - ], - [ - -73.423448, - 45.461491 - ], - [ - -73.423345, - 45.461423 - ], - [ - -73.422579, - 45.460915 - ], - [ - -73.419921, - 45.459152 - ], - [ - -73.419828, - 45.45909 - ], - [ - -73.419683, - 45.458994 - ], - [ - -73.417292, - 45.457408 - ], - [ - -73.417173, - 45.457494 - ], - [ - -73.41683, - 45.457739 - ], - [ - -73.416622, - 45.457887 - ], - [ - -73.416344, - 45.458017 - ], - [ - -73.416165, - 45.458062 - ], - [ - -73.415997, - 45.458084 - ], - [ - -73.415882, - 45.458093 - ], - [ - -73.415729, - 45.458102 - ], - [ - -73.415567, - 45.45812 - ], - [ - -73.415388, - 45.458142 - ], - [ - -73.415204, - 45.458183 - ], - [ - -73.415063, - 45.458237 - ], - [ - -73.414927, - 45.458313 - ], - [ - -73.414819, - 45.458381 - ], - [ - -73.414651, - 45.458488 - ], - [ - -73.41246, - 45.460117 - ], - [ - -73.411084, - 45.46114 - ], - [ - -73.410025, - 45.461927 - ], - [ - -73.410017, - 45.461933 - ], - [ - -73.40945, - 45.462354 - ], - [ - -73.407779, - 45.463577 - ], - [ - -73.40765, - 45.463671 - ], - [ - -73.404482, - 45.461543 - ], - [ - -73.404296, - 45.461418 - ], - [ - -73.406253, - 45.46006 - ] - ] - }, - "id": 212, - "properties": { - "id": "c2afdc1f-ea35-47d8-a3a8-18018e28bc4a", - "data": { - "gtfs": { - "shape_id": "121_1_R" - }, - "segments": [ - { - "distanceMeters": 706, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 384, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 403, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 345, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 953, - "travelTimeSeconds": 159 - }, - { - "distanceMeters": 577, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 459, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 93 - }, - { - "distanceMeters": 334, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 89 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 58 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 234, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13706, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11435.721751506964, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.86, - "travelTimeWithoutDwellTimesSeconds": 2340, - "operatingTimeWithLayoverTimeSeconds": 2574, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2340, - "operatingSpeedWithLayoverMetersPerSecond": 5.32, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.86 - }, - "mode": "bus", - "name": "Armand-Frappier", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "d3215c60-bb9e-40ac-89e4-1f922b39e266", - "f9358f54-8643-47f5-b0df-4a20b46cc22d", - "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", - "f4f29738-df3f-4d69-8632-9088ded0dc5a", - "741876fc-030a-42f6-a33a-8f1f9c2aba12", - "688a3f67-a176-441e-a399-c92a55de9c74", - "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", - "37199bb2-9740-4484-b68f-12d3c82f8bf9", - "bcd0a901-5384-443e-9be4-1f0faa123ccb", - "b2075e72-f3b5-420a-b22b-99e7608c7c0a", - "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", - "47ef73cf-7799-46e3-b2f1-76a6533f7746", - "de8aa4d4-205c-4786-8a75-8902d51d8a41", - "b33d27b7-d555-4c52-b225-a20c1767dd3b", - "4969c5f0-e6b6-4445-8d46-f637f2b3b640", - "dae79222-5b12-4269-8d31-6271170c1f54", - "d8e1fde2-a0b2-4339-9d55-49a5f3be258b", - "9e73f7cd-aad7-4512-9984-973fdc775485", - "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", - "cee5ccf3-ece1-4350-8264-3c360d07d279", - "3690607e-a520-4b5c-bb6d-5e6ec4c83aec", - "e49dac95-6777-4527-88d9-43533c4c81ab", - "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", - "720107c1-f0c2-4f37-8e59-ce7f32cd9461", - "a90c4da7-455c-41d3-9961-c7a64d627572", - "3fb067af-1fec-457b-80c2-3e3f8b141afb", - "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", - "5f21960f-8919-4407-8a49-57c39947c4fe", - "cc43f372-04e8-4c4c-b711-2e4159e3855d", - "9b7055a8-adca-44c6-9935-6026756d4460", - "76ff8292-f41f-4d17-998d-6dd3d2c32288", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "e80498a8-505d-4215-ba07-7582f8783d8e", - "014d61e3-acfc-41f6-b78a-5c2178c073b1", - "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", - "14e293a6-352a-4156-8578-66d0b5bdcc1f", - "62558b4d-75af-4b04-8040-a30de5a89658", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "988183db-88f1-47cb-87bf-b2a03dd4a38d", - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "bfb03303-2ee6-40dd-8e8f-859a06b338a6", - "2b6f210c-4f28-43d1-b096-b48c582f5274", - "cdda3c7c-b577-49de-afc0-aa4c4e60c34b", - "dc623539-3b98-4807-a5d5-f66507b8bc4c", - "84fd1601-f65a-4eb9-beba-06ee8c2970d2", - "fee943f3-e127-46e6-bc62-d6c4c320bd7a", - "22c42fca-2f2b-42d3-9449-3b9e7c474f2e", - "28acd503-64ba-4c57-925c-1acd27dd7dde", - "abd6e1bb-b826-4462-87f2-3bae5c6594ea" - ], - "stops": [], - "line_id": "4e1f2cfb-db00-499a-afdd-d36dcea45986", - "segments": [ - 0, - 45, - 52, - 59, - 69, - 80, - 87, - 91, - 96, - 106, - 118, - 136, - 158, - 164, - 171, - 179, - 185, - 190, - 197, - 202, - 209, - 214, - 219, - 226, - 231, - 240, - 244, - 248, - 256, - 267, - 275, - 280, - 283, - 287, - 292, - 296, - 299, - 303, - 305, - 307, - 311, - 312, - 316, - 319, - 322, - 327, - 339, - 341, - 343, - 346, - 348 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 212, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.406253, - 45.46006 - ], - [ - -73.406952, - 45.459576 - ], - [ - -73.409865, - 45.457688 - ], - [ - -73.410149, - 45.457553 - ], - [ - -73.410462, - 45.457446 - ], - [ - -73.410807, - 45.457387 - ], - [ - -73.411159, - 45.457347 - ], - [ - -73.411393, - 45.457343 - ], - [ - -73.411627, - 45.457361 - ], - [ - -73.412457, - 45.457447 - ], - [ - -73.412673, - 45.457474 - ], - [ - -73.412926, - 45.457502 - ], - [ - -73.413147, - 45.457542 - ], - [ - -73.413262, - 45.457587 - ], - [ - -73.413399, - 45.457668 - ], - [ - -73.414651, - 45.458488 - ], - [ - -73.414927, - 45.458313 - ], - [ - -73.415063, - 45.458237 - ], - [ - -73.415204, - 45.458183 - ], - [ - -73.415388, - 45.458142 - ], - [ - -73.415567, - 45.45812 - ], - [ - -73.415729, - 45.458102 - ], - [ - -73.415882, - 45.458093 - ], - [ - -73.415997, - 45.458084 - ], - [ - -73.416165, - 45.458062 - ], - [ - -73.416344, - 45.458017 - ], - [ - -73.416622, - 45.457887 - ], - [ - -73.417173, - 45.457494 - ], - [ - -73.419564, - 45.459076 - ], - [ - -73.419713, - 45.459174 - ], - [ - -73.422478, - 45.461003 - ], - [ - -73.423149, - 45.461446 - ], - [ - -73.42386, - 45.461916 - ], - [ - -73.424593, - 45.462401 - ], - [ - -73.425478, - 45.462986 - ], - [ - -73.426502, - 45.463663 - ], - [ - -73.43053, - 45.466326 - ], - [ - -73.432747, - 45.467791 - ], - [ - -73.434186, - 45.468737 - ], - [ - -73.435371, - 45.469525 - ], - [ - -73.437899, - 45.471196 - ], - [ - -73.439329, - 45.472159 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.441938, - 45.473928 - ], - [ - -73.442708, - 45.474456 - ], - [ - -73.443474, - 45.474978 - ], - [ - -73.44437, - 45.475586 - ], - [ - -73.445067, - 45.476058 - ], - [ - -73.445608, - 45.476432 - ], - [ - -73.446237, - 45.47686 - ], - [ - -73.446869, - 45.477292 - ], - [ - -73.44754, - 45.477747 - ], - [ - -73.448146, - 45.478157 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.450119, - 45.479471 - ], - [ - -73.451, - 45.480048 - ], - [ - -73.451438, - 45.480342 - ], - [ - -73.451689, - 45.480511 - ], - [ - -73.452165, - 45.480813 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452851, - 45.48129 - ], - [ - -73.453668, - 45.481781 - ], - [ - -73.454023, - 45.481974 - ], - [ - -73.454266, - 45.482101 - ], - [ - -73.454494, - 45.482204 - ], - [ - -73.454624, - 45.482357 - ], - [ - -73.455203, - 45.482812 - ], - [ - -73.455441, - 45.482965 - ], - [ - -73.456089, - 45.483375 - ], - [ - -73.456112, - 45.483393 - ], - [ - -73.456334, - 45.483523 - ], - [ - -73.457447, - 45.484256 - ], - [ - -73.457564, - 45.484333 - ], - [ - -73.45799, - 45.484621 - ], - [ - -73.458472, - 45.484946 - ], - [ - -73.458995, - 45.485292 - ], - [ - -73.45937, - 45.485544 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.460376, - 45.486211 - ], - [ - -73.461219, - 45.486774 - ], - [ - -73.461292, - 45.486823 - ], - [ - -73.462116, - 45.487367 - ], - [ - -73.46278, - 45.487809 - ], - [ - -73.462983, - 45.487944 - ], - [ - -73.463053, - 45.487989 - ], - [ - -73.463291, - 45.488146 - ], - [ - -73.463537, - 45.488299 - ], - [ - -73.464097, - 45.488673 - ], - [ - -73.46422, - 45.488754 - ], - [ - -73.464379, - 45.488857 - ], - [ - -73.464595, - 45.489001 - ], - [ - -73.46482, - 45.489155 - ], - [ - -73.465434, - 45.48956 - ], - [ - -73.466087, - 45.489983 - ], - [ - -73.466175, - 45.490041 - ], - [ - -73.466277, - 45.490113 - ], - [ - -73.466889, - 45.490518 - ], - [ - -73.467397, - 45.490865 - ], - [ - -73.467697, - 45.491059 - ], - [ - -73.468029, - 45.491284 - ], - [ - -73.468094, - 45.49132 - ], - [ - -73.468166, - 45.49136 - ], - [ - -73.468573, - 45.49163 - ], - [ - -73.468656, - 45.491698 - ], - [ - -73.469006, - 45.491923 - ], - [ - -73.469303, - 45.492121 - ], - [ - -73.469723, - 45.492395 - ], - [ - -73.469959, - 45.492553 - ], - [ - -73.470296, - 45.492769 - ], - [ - -73.470545, - 45.492931 - ], - [ - -73.470867, - 45.493152 - ], - [ - -73.471224, - 45.49339 - ], - [ - -73.471614, - 45.493642 - ], - [ - -73.471949, - 45.493867 - ], - [ - -73.472367, - 45.494146 - ], - [ - -73.472769, - 45.494416 - ], - [ - -73.473016, - 45.494578 - ], - [ - -73.473259, - 45.49474 - ], - [ - -73.473385, - 45.494817 - ], - [ - -73.473858, - 45.495132 - ], - [ - -73.474138, - 45.495312 - ], - [ - -73.474517, - 45.49556 - ], - [ - -73.474879, - 45.495798 - ], - [ - -73.475245, - 45.49605 - ], - [ - -73.475346, - 45.496118 - ], - [ - -73.475492, - 45.496208 - ], - [ - -73.475747, - 45.496374 - ], - [ - -73.475974, - 45.496523 - ], - [ - -73.47632, - 45.496748 - ], - [ - -73.476713, - 45.497004 - ], - [ - -73.477062, - 45.497238 - ], - [ - -73.477439, - 45.49749 - ], - [ - -73.477789, - 45.49772 - ], - [ - -73.478178, - 45.497976 - ], - [ - -73.478257, - 45.498026 - ], - [ - -73.4786, - 45.498251 - ], - [ - -73.478967, - 45.498498 - ], - [ - -73.479271, - 45.498701 - ], - [ - -73.47971, - 45.498993 - ], - [ - -73.480326, - 45.499398 - ], - [ - -73.480477, - 45.499488 - ], - [ - -73.480835, - 45.499231 - ], - [ - -73.480847, - 45.499223 - ], - [ - -73.481169, - 45.498994 - ], - [ - -73.481589, - 45.498697 - ], - [ - -73.481899, - 45.498472 - ], - [ - -73.482124, - 45.49831 - ], - [ - -73.482636, - 45.497941 - ], - [ - -73.482985, - 45.497707 - ], - [ - -73.483277, - 45.497509 - ], - [ - -73.483338, - 45.497469 - ], - [ - -73.483382, - 45.497433 - ], - [ - -73.483504, - 45.497347 - ], - [ - -73.483872, - 45.497077 - ], - [ - -73.484056, - 45.496942 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.48442, - 45.496983 - ], - [ - -73.484708, - 45.497199 - ], - [ - -73.484931, - 45.497378 - ], - [ - -73.485095, - 45.49751 - ], - [ - -73.485397, - 45.497784 - ], - [ - -73.485739, - 45.498135 - ], - [ - -73.485877, - 45.498284 - ], - [ - -73.486105, - 45.498553 - ], - [ - -73.486286, - 45.498787 - ], - [ - -73.486368, - 45.498907 - ], - [ - -73.486538, - 45.499154 - ], - [ - -73.486685, - 45.499381 - ], - [ - -73.486823, - 45.499615 - ], - [ - -73.486951, - 45.499858 - ], - [ - -73.487138, - 45.500263 - ], - [ - -73.487159, - 45.500317 - ], - [ - -73.487306, - 45.500713 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487417, - 45.501077 - ], - [ - -73.487455, - 45.501208 - ], - [ - -73.487464, - 45.50124 - ], - [ - -73.48765, - 45.50191 - ], - [ - -73.487855, - 45.502589 - ], - [ - -73.488032, - 45.50303 - ], - [ - -73.488178, - 45.503309 - ], - [ - -73.488409, - 45.50371 - ], - [ - -73.489159, - 45.504974 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493519, - 45.510497 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506107, - 45.514749 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.521609, - 45.523676 - ], - [ - -73.521556, - 45.52368 - ], - [ - -73.521506, - 45.523698 - ], - [ - -73.521494, - 45.523725 - ], - [ - -73.521489, - 45.523788 - ], - [ - -73.521486, - 45.523819 - ] - ] - }, - "id": 213, - "properties": { - "id": "69d746bb-2eae-46de-b01b-0a3b90ea9c63", - "data": { - "gtfs": { - "shape_id": "121_2_A" - }, - "segments": [ - { - "distanceMeters": 3420, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 6544, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 3022, - "travelTimeSeconds": 28 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12985, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 861.4686477443101, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 108.2, - "travelTimeWithoutDwellTimesSeconds": 120, - "operatingTimeWithLayoverTimeSeconds": 300, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 120, - "operatingSpeedWithLayoverMetersPerSecond": 43.28, - "averageSpeedWithoutDwellTimesMetersPerSecond": 108.2 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "abd6e1bb-b826-4462-87f2-3bae5c6594ea", - "fcd51ec2-f1b1-4630-8f4f-bbfd7b67c91f", - "dc623539-3b98-4807-a5d5-f66507b8bc4c", - "cdda3c7c-b577-49de-afc0-aa4c4e60c34b" - ], - "stops": [], - "line_id": "4e1f2cfb-db00-499a-afdd-d36dcea45986", - "segments": [ - 0, - 41, - 198 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 213, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.406253, - 45.46006 - ], - [ - -73.406952, - 45.459576 - ], - [ - -73.408732, - 45.458422 - ], - [ - -73.409865, - 45.457688 - ], - [ - -73.410149, - 45.457553 - ], - [ - -73.410462, - 45.457446 - ], - [ - -73.410807, - 45.457387 - ], - [ - -73.411159, - 45.457347 - ], - [ - -73.411393, - 45.457343 - ], - [ - -73.411627, - 45.457361 - ], - [ - -73.412457, - 45.457447 - ], - [ - -73.412673, - 45.457474 - ], - [ - -73.412926, - 45.457502 - ], - [ - -73.413147, - 45.457542 - ], - [ - -73.413262, - 45.457587 - ], - [ - -73.413399, - 45.457668 - ], - [ - -73.414313, - 45.458267 - ], - [ - -73.414651, - 45.458488 - ], - [ - -73.414927, - 45.458313 - ], - [ - -73.415063, - 45.458237 - ], - [ - -73.415204, - 45.458183 - ], - [ - -73.415388, - 45.458142 - ], - [ - -73.415567, - 45.45812 - ], - [ - -73.415729, - 45.458102 - ], - [ - -73.415882, - 45.458093 - ], - [ - -73.415997, - 45.458084 - ], - [ - -73.416165, - 45.458062 - ], - [ - -73.416344, - 45.458017 - ], - [ - -73.416622, - 45.457887 - ], - [ - -73.416858, - 45.457719 - ], - [ - -73.417173, - 45.457494 - ], - [ - -73.419493, - 45.459028 - ], - [ - -73.419564, - 45.459076 - ], - [ - -73.419713, - 45.459174 - ], - [ - -73.422288, - 45.460877 - ], - [ - -73.422478, - 45.461003 - ], - [ - -73.423149, - 45.461446 - ], - [ - -73.42386, - 45.461916 - ], - [ - -73.424593, - 45.462401 - ], - [ - -73.424972, - 45.462652 - ], - [ - -73.425478, - 45.462986 - ], - [ - -73.426203, - 45.463465 - ], - [ - -73.426502, - 45.463663 - ], - [ - -73.43053, - 45.466326 - ], - [ - -73.430807, - 45.466509 - ], - [ - -73.432747, - 45.467791 - ], - [ - -73.434092, - 45.468675 - ], - [ - -73.434186, - 45.468737 - ], - [ - -73.435226, - 45.469429 - ], - [ - -73.435371, - 45.469525 - ], - [ - -73.437733, - 45.471086 - ], - [ - -73.437899, - 45.471196 - ], - [ - -73.440423, - 45.472896 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.441938, - 45.473928 - ], - [ - -73.442708, - 45.474456 - ], - [ - -73.44337, - 45.474907 - ], - [ - -73.443474, - 45.474978 - ], - [ - -73.44437, - 45.475586 - ], - [ - -73.445009, - 45.476019 - ], - [ - -73.445067, - 45.476058 - ], - [ - -73.445608, - 45.476432 - ], - [ - -73.446237, - 45.47686 - ], - [ - -73.446869, - 45.477292 - ], - [ - -73.447192, - 45.477511 - ], - [ - -73.44754, - 45.477747 - ], - [ - -73.448146, - 45.478157 - ], - [ - -73.44865, - 45.478496 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.450119, - 45.479471 - ], - [ - -73.450869, - 45.479962 - ], - [ - -73.451, - 45.480048 - ], - [ - -73.451438, - 45.480342 - ], - [ - -73.451689, - 45.480511 - ], - [ - -73.452165, - 45.480813 - ], - [ - -73.452541, - 45.481075 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452851, - 45.48129 - ], - [ - -73.453668, - 45.481781 - ], - [ - -73.454023, - 45.481974 - ], - [ - -73.454266, - 45.482101 - ], - [ - -73.454494, - 45.482204 - ], - [ - -73.454624, - 45.482357 - ], - [ - -73.455203, - 45.482812 - ], - [ - -73.455441, - 45.482965 - ], - [ - -73.456005, - 45.483321 - ], - [ - -73.456089, - 45.483375 - ], - [ - -73.456112, - 45.483393 - ], - [ - -73.456334, - 45.483523 - ], - [ - -73.457447, - 45.484256 - ], - [ - -73.457564, - 45.484333 - ], - [ - -73.45799, - 45.484621 - ], - [ - -73.458472, - 45.484946 - ], - [ - -73.458995, - 45.485292 - ], - [ - -73.459352, - 45.485532 - ], - [ - -73.45937, - 45.485544 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.460376, - 45.486211 - ], - [ - -73.461026, - 45.486645 - ], - [ - -73.461219, - 45.486774 - ], - [ - -73.461292, - 45.486823 - ], - [ - -73.462116, - 45.487367 - ], - [ - -73.462664, - 45.487731 - ], - [ - -73.46278, - 45.487809 - ], - [ - -73.462983, - 45.487944 - ], - [ - -73.463053, - 45.487989 - ], - [ - -73.463291, - 45.488146 - ], - [ - -73.463537, - 45.488299 - ], - [ - -73.464097, - 45.488673 - ], - [ - -73.46422, - 45.488754 - ], - [ - -73.464379, - 45.488857 - ], - [ - -73.464595, - 45.489001 - ], - [ - -73.464745, - 45.489104 - ], - [ - -73.46482, - 45.489155 - ], - [ - -73.465434, - 45.48956 - ], - [ - -73.466009, - 45.489932 - ], - [ - -73.466087, - 45.489983 - ], - [ - -73.466175, - 45.490041 - ], - [ - -73.466277, - 45.490113 - ], - [ - -73.466889, - 45.490518 - ], - [ - -73.467397, - 45.490865 - ], - [ - -73.467697, - 45.491059 - ], - [ - -73.467799, - 45.491128 - ], - [ - -73.468029, - 45.491284 - ], - [ - -73.468094, - 45.49132 - ], - [ - -73.468166, - 45.49136 - ], - [ - -73.468573, - 45.49163 - ], - [ - -73.468656, - 45.491698 - ], - [ - -73.469006, - 45.491923 - ], - [ - -73.469068, - 45.491964 - ], - [ - -73.469303, - 45.492121 - ], - [ - -73.469723, - 45.492395 - ], - [ - -73.469959, - 45.492553 - ], - [ - -73.470296, - 45.492769 - ], - [ - -73.470313, - 45.49278 - ], - [ - -73.470545, - 45.492931 - ], - [ - -73.470867, - 45.493152 - ], - [ - -73.471224, - 45.49339 - ], - [ - -73.471614, - 45.493642 - ], - [ - -73.471949, - 45.493867 - ], - [ - -73.472367, - 45.494146 - ], - [ - -73.472663, - 45.494345 - ], - [ - -73.472769, - 45.494416 - ], - [ - -73.473016, - 45.494578 - ], - [ - -73.473259, - 45.49474 - ], - [ - -73.473385, - 45.494817 - ], - [ - -73.473747, - 45.495058 - ], - [ - -73.473858, - 45.495132 - ], - [ - -73.474138, - 45.495312 - ], - [ - -73.474517, - 45.49556 - ], - [ - -73.474879, - 45.495798 - ], - [ - -73.475137, - 45.495976 - ], - [ - -73.475245, - 45.49605 - ], - [ - -73.475346, - 45.496118 - ], - [ - -73.475492, - 45.496208 - ], - [ - -73.475747, - 45.496374 - ], - [ - -73.475974, - 45.496523 - ], - [ - -73.47632, - 45.496748 - ], - [ - -73.476628, - 45.496949 - ], - [ - -73.476713, - 45.497004 - ], - [ - -73.477062, - 45.497238 - ], - [ - -73.477439, - 45.49749 - ], - [ - -73.477789, - 45.49772 - ], - [ - -73.478034, - 45.497881 - ], - [ - -73.478178, - 45.497976 - ], - [ - -73.478257, - 45.498026 - ], - [ - -73.4786, - 45.498251 - ], - [ - -73.478967, - 45.498498 - ], - [ - -73.479271, - 45.498701 - ], - [ - -73.47971, - 45.498993 - ], - [ - -73.480326, - 45.499398 - ], - [ - -73.480365, - 45.499422 - ], - [ - -73.480477, - 45.499488 - ], - [ - -73.480835, - 45.499231 - ], - [ - -73.480847, - 45.499223 - ], - [ - -73.481169, - 45.498994 - ], - [ - -73.481589, - 45.498697 - ], - [ - -73.481899, - 45.498472 - ], - [ - -73.482124, - 45.49831 - ], - [ - -73.482543, - 45.498008 - ], - [ - -73.482636, - 45.497941 - ], - [ - -73.482985, - 45.497707 - ], - [ - -73.483277, - 45.497509 - ], - [ - -73.483338, - 45.497469 - ], - [ - -73.483382, - 45.497433 - ], - [ - -73.483504, - 45.497347 - ], - [ - -73.483872, - 45.497077 - ], - [ - -73.484052, - 45.496945 - ], - [ - -73.484056, - 45.496942 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.48442, - 45.496983 - ], - [ - -73.484708, - 45.497199 - ], - [ - -73.484931, - 45.497378 - ], - [ - -73.485095, - 45.49751 - ], - [ - -73.485397, - 45.497784 - ], - [ - -73.485739, - 45.498135 - ], - [ - -73.485877, - 45.498284 - ], - [ - -73.486105, - 45.498553 - ], - [ - -73.486286, - 45.498787 - ], - [ - -73.486368, - 45.498907 - ], - [ - -73.486538, - 45.499154 - ], - [ - -73.486685, - 45.499381 - ], - [ - -73.486823, - 45.499615 - ], - [ - -73.486951, - 45.499858 - ], - [ - -73.487138, - 45.500263 - ], - [ - -73.487159, - 45.500317 - ], - [ - -73.487268, - 45.500609 - ], - [ - -73.487306, - 45.500713 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487417, - 45.501077 - ], - [ - -73.487455, - 45.501208 - ], - [ - -73.487464, - 45.50124 - ], - [ - -73.48765, - 45.50191 - ], - [ - -73.487855, - 45.502589 - ], - [ - -73.488032, - 45.50303 - ], - [ - -73.488178, - 45.503309 - ], - [ - -73.488409, - 45.50371 - ], - [ - -73.489159, - 45.504974 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492923, - 45.510108 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497918, - 45.512052 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.500882, - 45.513009 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505113, - 45.514482 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506107, - 45.514749 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511916, - 45.516872 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513432, - 45.5183 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.514994, - 45.51942 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518889, - 45.520627 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.521609, - 45.523676 - ], - [ - -73.521556, - 45.52368 - ], - [ - -73.521506, - 45.523698 - ], - [ - -73.521494, - 45.523725 - ], - [ - -73.521489, - 45.523788 - ], - [ - -73.521486, - 45.523819 - ] - ] - }, - "id": 214, - "properties": { - "id": "ec35f8fa-77f0-4e34-88bf-61b7419fc8f2", - "data": { - "gtfs": { - "shape_id": "121_1_A" - }, - "segments": [ - { - "distanceMeters": 266, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 509, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 494, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 359, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 507, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 1156, - "travelTimeSeconds": 134 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 598, - "travelTimeSeconds": 116 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 694, - "travelTimeSeconds": 135 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 186, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12985, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11435.721751506964, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.98, - "travelTimeWithoutDwellTimesSeconds": 1860, - "operatingTimeWithLayoverTimeSeconds": 2046, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1860, - "operatingSpeedWithLayoverMetersPerSecond": 6.35, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.98 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "abd6e1bb-b826-4462-87f2-3bae5c6594ea", - "fcd51ec2-f1b1-4630-8f4f-bbfd7b67c91f", - "dc623539-3b98-4807-a5d5-f66507b8bc4c", - "cdda3c7c-b577-49de-afc0-aa4c4e60c34b", - "0b9048bd-dd82-42d8-ba47-b3d93d735fe8", - "d8582feb-8d83-457a-8a52-dc395b1f7390", - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "2f104875-795a-4778-a419-276272abfb07", - "ba86f45f-9fb5-4525-a50b-a876919fd012", - "988c86da-04eb-4067-b650-f13c447b17e7", - "14e293a6-352a-4156-8578-66d0b5bdcc1f", - "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", - "2881ced2-6a46-4738-a470-6ff64097e482", - "e80498a8-505d-4215-ba07-7582f8783d8e", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "c4061c94-e615-4bca-b219-1ff6ea9657d0", - "89553e99-6867-4296-935e-718bb768cb73", - "72a48bdf-3a35-4f3b-8d05-e465faf044cf", - "70af9f63-28e4-474e-896b-5462b7252980", - "1f1b5a64-7c8d-49de-8df3-369e30f799ef", - "c24b91da-a4a3-4b28-b987-5726c6a01fdb", - "720107c1-f0c2-4f37-8e59-ce7f32cd9461", - "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", - "e49dac95-6777-4527-88d9-43533c4c81ab", - "3690607e-a520-4b5c-bb6d-5e6ec4c83aec", - "cee5ccf3-ece1-4350-8264-3c360d07d279", - "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", - "9e73f7cd-aad7-4512-9984-973fdc775485", - "d8e1fde2-a0b2-4339-9d55-49a5f3be258b", - "dae79222-5b12-4269-8d31-6271170c1f54", - "4969c5f0-e6b6-4445-8d46-f637f2b3b640", - "b33d27b7-d555-4c52-b225-a20c1767dd3b", - "de8aa4d4-205c-4786-8a75-8902d51d8a41", - "47ef73cf-7799-46e3-b2f1-76a6533f7746", - "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", - "fd062866-a8eb-4466-b53a-6adf8fc3f09a", - "6c42a8f6-a98f-4058-9992-d00706a03dff", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "a5b9648a-83c0-4eab-a54b-68c23aecae43", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", - "be19484c-af95-45b2-bfe5-24342dd1b710", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "4e1f2cfb-db00-499a-afdd-d36dcea45986", - "segments": [ - 0, - 2, - 16, - 29, - 31, - 34, - 39, - 41, - 44, - 46, - 48, - 50, - 52, - 57, - 60, - 65, - 68, - 72, - 77, - 87, - 96, - 100, - 104, - 114, - 117, - 124, - 131, - 136, - 143, - 148, - 153, - 160, - 165, - 173, - 181, - 189, - 208, - 230, - 243, - 246, - 253, - 272, - 278, - 291, - 298 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 214, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.481862, - 45.570157 - ], - [ - -73.481822, - 45.570126 - ], - [ - -73.481332, - 45.569766 - ], - [ - -73.481257, - 45.569712 - ], - [ - -73.480428, - 45.569077 - ], - [ - -73.479866, - 45.568647 - ], - [ - -73.479009, - 45.567991 - ], - [ - -73.47867, - 45.567732 - ], - [ - -73.47894, - 45.567404 - ], - [ - -73.479087, - 45.567238 - ], - [ - -73.479946, - 45.566274 - ], - [ - -73.480076, - 45.566265 - ], - [ - -73.480517, - 45.566553 - ], - [ - -73.48115, - 45.567044 - ], - [ - -73.481186, - 45.567156 - ], - [ - -73.481181, - 45.5673 - ], - [ - -73.481322, - 45.567426 - ], - [ - -73.481439, - 45.567515 - ], - [ - -73.481715, - 45.567724 - ], - [ - -73.481834, - 45.567813 - ], - [ - -73.4825, - 45.567399 - ], - [ - -73.482644, - 45.56731 - ], - [ - -73.482793, - 45.567251 - ], - [ - -73.4815, - 45.566273 - ], - [ - -73.480444, - 45.565474 - ], - [ - -73.480073, - 45.565193 - ], - [ - -73.479021, - 45.564398 - ], - [ - -73.47891, - 45.564479 - ], - [ - -73.478585, - 45.56483 - ], - [ - -73.478566, - 45.564851 - ], - [ - -73.47812, - 45.565345 - ], - [ - -73.47668, - 45.56694 - ], - [ - -73.476555, - 45.567079 - ], - [ - -73.474702, - 45.569114 - ], - [ - -73.474569, - 45.569261 - ], - [ - -73.473259, - 45.570718 - ], - [ - -73.473129, - 45.570862 - ], - [ - -73.471786, - 45.572369 - ], - [ - -73.471784, - 45.572371 - ], - [ - -73.471017, - 45.573237 - ], - [ - -73.468662, - 45.575879 - ], - [ - -73.468543, - 45.576013 - ], - [ - -73.465403, - 45.575332 - ], - [ - -73.464208, - 45.575077 - ], - [ - -73.463036, - 45.574827 - ], - [ - -73.462109, - 45.574629 - ], - [ - -73.462297, - 45.574179 - ], - [ - -73.462304, - 45.574164 - ], - [ - -73.462399, - 45.573946 - ], - [ - -73.462548, - 45.573595 - ], - [ - -73.462729, - 45.573185 - ], - [ - -73.462953, - 45.572672 - ], - [ - -73.463215, - 45.57207 - ], - [ - -73.463283, - 45.571903 - ], - [ - -73.463344, - 45.571738 - ], - [ - -73.463385, - 45.571624 - ], - [ - -73.463591, - 45.571183 - ], - [ - -73.463906, - 45.570478 - ], - [ - -73.463994, - 45.570279 - ], - [ - -73.464296, - 45.569568 - ], - [ - -73.464344, - 45.569488 - ], - [ - -73.464421, - 45.56942 - ], - [ - -73.464662, - 45.56924 - ], - [ - -73.465336, - 45.568813 - ], - [ - -73.466185, - 45.56827 - ], - [ - -73.467929, - 45.567155 - ], - [ - -73.468142, - 45.567019 - ], - [ - -73.469933, - 45.565881 - ], - [ - -73.470076, - 45.565791 - ], - [ - -73.47094, - 45.565233 - ], - [ - -73.472551, - 45.564198 - ], - [ - -73.472712, - 45.564095 - ], - [ - -73.47553, - 45.562312 - ], - [ - -73.475818, - 45.56213 - ], - [ - -73.475938, - 45.562049 - ], - [ - -73.47554, - 45.561748 - ], - [ - -73.475231, - 45.561513 - ], - [ - -73.474585, - 45.561026 - ], - [ - -73.47445, - 45.560923 - ], - [ - -73.474349, - 45.560847 - ], - [ - -73.474262, - 45.560781 - ], - [ - -73.473051, - 45.559853 - ], - [ - -73.472951, - 45.559778 - ], - [ - -73.472285, - 45.559277 - ], - [ - -73.471768, - 45.558881 - ], - [ - -73.471028, - 45.558322 - ], - [ - -73.470903, - 45.558228 - ], - [ - -73.470793, - 45.5583 - ], - [ - -73.469991, - 45.558844 - ], - [ - -73.469731, - 45.558997 - ], - [ - -73.469503, - 45.559152 - ], - [ - -73.46926, - 45.559316 - ], - [ - -73.468792, - 45.559631 - ], - [ - -73.468729, - 45.559676 - ], - [ - -73.468547, - 45.559798 - ], - [ - -73.467979, - 45.560279 - ], - [ - -73.467816, - 45.560373 - ], - [ - -73.467525, - 45.560508 - ], - [ - -73.467261, - 45.560621 - ], - [ - -73.46697, - 45.560742 - ], - [ - -73.466692, - 45.560841 - ], - [ - -73.466384, - 45.560949 - ], - [ - -73.466152, - 45.561018 - ], - [ - -73.465993, - 45.561066 - ], - [ - -73.465606, - 45.561173 - ], - [ - -73.465298, - 45.56125 - ], - [ - -73.464943, - 45.561331 - ], - [ - -73.464635, - 45.561385 - ], - [ - -73.464383, - 45.56143 - ], - [ - -73.464342, - 45.561416 - ], - [ - -73.46391, - 45.56142 - ], - [ - -73.463676, - 45.561411 - ], - [ - -73.463469, - 45.561416 - ], - [ - -73.463235, - 45.561434 - ], - [ - -73.463014, - 45.561456 - ], - [ - -73.462671, - 45.561478 - ], - [ - -73.462514, - 45.561483 - ], - [ - -73.462171, - 45.561492 - ], - [ - -73.461975, - 45.561496 - ], - [ - -73.460725, - 45.561527 - ], - [ - -73.460731, - 45.561644 - ], - [ - -73.460735, - 45.561923 - ], - [ - -73.460736, - 45.561977 - ], - [ - -73.460721, - 45.562027 - ], - [ - -73.460677, - 45.562085 - ], - [ - -73.460365, - 45.562319 - ], - [ - -73.459937, - 45.562638 - ], - [ - -73.459845, - 45.562714 - ], - [ - -73.459614, - 45.562904 - ], - [ - -73.459333, - 45.563151 - ], - [ - -73.459049, - 45.563396 - ], - [ - -73.458351, - 45.563996 - ], - [ - -73.457933, - 45.564352 - ], - [ - -73.457152, - 45.564936 - ], - [ - -73.457093, - 45.564977 - ], - [ - -73.456935, - 45.565085 - ], - [ - -73.456659, - 45.565283 - ], - [ - -73.45622, - 45.565633 - ], - [ - -73.455798, - 45.56598 - ], - [ - -73.455595, - 45.566159 - ], - [ - -73.455401, - 45.56633 - ], - [ - -73.454148, - 45.567521 - ], - [ - -73.453627, - 45.568017 - ], - [ - -73.453572, - 45.568062 - ], - [ - -73.453474, - 45.568093 - ], - [ - -73.453357, - 45.56812 - ], - [ - -73.453217, - 45.568102 - ], - [ - -73.451687, - 45.567778 - ], - [ - -73.451488, - 45.567736 - ], - [ - -73.450706, - 45.56757 - ], - [ - -73.450587, - 45.567562 - ], - [ - -73.45036, - 45.567548 - ], - [ - -73.450115, - 45.567548 - ], - [ - -73.450114, - 45.567557 - ], - [ - -73.450113, - 45.567561 - ], - [ - -73.450112, - 45.56757 - ], - [ - -73.450111, - 45.567575 - ], - [ - -73.45011, - 45.567584 - ], - [ - -73.450109, - 45.567593 - ], - [ - -73.450108, - 45.567597 - ], - [ - -73.450107, - 45.567606 - ], - [ - -73.450106, - 45.567611 - ], - [ - -73.450105, - 45.56762 - ], - [ - -73.450104, - 45.567629 - ], - [ - -73.450103, - 45.567633 - ], - [ - -73.450102, - 45.567642 - ], - [ - -73.450101, - 45.567647 - ], - [ - -73.4501, - 45.567656 - ], - [ - -73.450099, - 45.56766 - ], - [ - -73.450098, - 45.567669 - ], - [ - -73.450097, - 45.567678 - ], - [ - -73.450096, - 45.567683 - ], - [ - -73.450095, - 45.567691 - ], - [ - -73.450093, - 45.567696 - ], - [ - -73.450092, - 45.567705 - ], - [ - -73.450091, - 45.567714 - ], - [ - -73.45009, - 45.567718 - ], - [ - -73.450089, - 45.567727 - ], - [ - -73.450088, - 45.567732 - ], - [ - -73.450087, - 45.567741 - ], - [ - -73.450085, - 45.56775 - ], - [ - -73.450084, - 45.567754 - ], - [ - -73.450083, - 45.567763 - ], - [ - -73.450082, - 45.567768 - ], - [ - -73.450081, - 45.567777 - ], - [ - -73.450079, - 45.567781 - ], - [ - -73.450078, - 45.56779 - ], - [ - -73.450077, - 45.567799 - ], - [ - -73.450075, - 45.567804 - ], - [ - -73.450074, - 45.567813 - ], - [ - -73.450073, - 45.567817 - ], - [ - -73.450071, - 45.567826 - ], - [ - -73.45007, - 45.567835 - ], - [ - -73.450069, - 45.56784 - ], - [ - -73.450067, - 45.567849 - ], - [ - -73.450066, - 45.567853 - ], - [ - -73.450065, - 45.567862 - ], - [ - -73.450063, - 45.567871 - ], - [ - -73.450062, - 45.567876 - ], - [ - -73.45006, - 45.567885 - ], - [ - -73.450059, - 45.567889 - ], - [ - -73.450058, - 45.567898 - ], - [ - -73.450056, - 45.567903 - ], - [ - -73.450055, - 45.567912 - ], - [ - -73.450054, - 45.567921 - ], - [ - -73.450052, - 45.567925 - ], - [ - -73.450051, - 45.567934 - ], - [ - -73.450049, - 45.567939 - ], - [ - -73.450048, - 45.567948 - ], - [ - -73.450046, - 45.567957 - ], - [ - -73.450045, - 45.567961 - ], - [ - -73.450043, - 45.56797 - ], - [ - -73.450042, - 45.567975 - ], - [ - -73.45004, - 45.567984 - ], - [ - -73.450039, - 45.567988 - ], - [ - -73.450037, - 45.567997 - ], - [ - -73.450036, - 45.568006 - ], - [ - -73.450034, - 45.568011 - ], - [ - -73.450032, - 45.56802 - ], - [ - -73.450031, - 45.568024 - ], - [ - -73.450029, - 45.568033 - ], - [ - -73.450028, - 45.568042 - ], - [ - -73.450026, - 45.568047 - ], - [ - -73.450024, - 45.568056 - ], - [ - -73.450023, - 45.56806 - ], - [ - -73.450021, - 45.568069 - ], - [ - -73.450019, - 45.568074 - ], - [ - -73.450017, - 45.568083 - ], - [ - -73.450016, - 45.568092 - ], - [ - -73.450014, - 45.568096 - ], - [ - -73.450013, - 45.568105 - ], - [ - -73.450011, - 45.56811 - ], - [ - -73.450009, - 45.568119 - ], - [ - -73.450007, - 45.568123 - ], - [ - -73.450006, - 45.568132 - ], - [ - -73.450004, - 45.568141 - ], - [ - -73.450002, - 45.568146 - ], - [ - -73.45, - 45.568155 - ], - [ - -73.449999, - 45.568159 - ], - [ - -73.449997, - 45.568168 - ], - [ - -73.449995, - 45.568173 - ], - [ - -73.449993, - 45.568182 - ], - [ - -73.449991, - 45.568191 - ], - [ - -73.449989, - 45.568195 - ], - [ - -73.449988, - 45.568204 - ], - [ - -73.449986, - 45.568209 - ], - [ - -73.449984, - 45.568218 - ], - [ - -73.449982, - 45.568227 - ], - [ - -73.44998, - 45.568231 - ], - [ - -73.449978, - 45.56824 - ], - [ - -73.449976, - 45.568245 - ], - [ - -73.449974, - 45.568254 - ], - [ - -73.449972, - 45.568258 - ], - [ - -73.44997, - 45.568267 - ], - [ - -73.449968, - 45.568276 - ], - [ - -73.449967, - 45.568281 - ], - [ - -73.449965, - 45.56829 - ], - [ - -73.449963, - 45.568294 - ], - [ - -73.449961, - 45.568303 - ], - [ - -73.449959, - 45.568308 - ], - [ - -73.449957, - 45.568317 - ], - [ - -73.449955, - 45.568326 - ], - [ - -73.449953, - 45.56833 - ], - [ - -73.449951, - 45.568339 - ], - [ - -73.449949, - 45.568344 - ], - [ - -73.449946, - 45.568353 - ], - [ - -73.449944, - 45.568357 - ], - [ - -73.449942, - 45.568366 - ], - [ - -73.44994, - 45.568371 - ], - [ - -73.449938, - 45.56838 - ], - [ - -73.449936, - 45.568389 - ], - [ - -73.449934, - 45.568393 - ], - [ - -73.449932, - 45.568402 - ], - [ - -73.44993, - 45.568407 - ], - [ - -73.449927, - 45.568416 - ], - [ - -73.449925, - 45.56842 - ], - [ - -73.449923, - 45.568429 - ], - [ - -73.449921, - 45.568438 - ], - [ - -73.449919, - 45.568443 - ], - [ - -73.449917, - 45.568452 - ], - [ - -73.449915, - 45.568456 - ], - [ - -73.449912, - 45.568465 - ], - [ - -73.44991, - 45.56847 - ], - [ - -73.449908, - 45.568479 - ], - [ - -73.449905, - 45.568488 - ], - [ - -73.449903, - 45.568492 - ], - [ - -73.449901, - 45.568501 - ], - [ - -73.449899, - 45.568506 - ], - [ - -73.449897, - 45.568515 - ], - [ - -73.449894, - 45.568519 - ], - [ - -73.449892, - 45.568528 - ], - [ - -73.449889, - 45.568533 - ], - [ - -73.449887, - 45.568542 - ], - [ - -73.449885, - 45.568551 - ], - [ - -73.449883, - 45.568555 - ], - [ - -73.44988, - 45.568564 - ], - [ - -73.449878, - 45.568569 - ], - [ - -73.449875, - 45.568578 - ], - [ - -73.449873, - 45.568582 - ], - [ - -73.44987, - 45.568591 - ], - [ - -73.449868, - 45.568596 - ], - [ - -73.449866, - 45.568605 - ], - [ - -73.449863, - 45.568614 - ], - [ - -73.449861, - 45.568618 - ], - [ - -73.449856, - 45.568632 - ], - [ - -73.449825, - 45.568708 - ], - [ - -73.449762, - 45.568861 - ], - [ - -73.449744, - 45.568903 - ], - [ - -73.449629, - 45.56917 - ], - [ - -73.449277, - 45.569995 - ], - [ - -73.449112, - 45.570242 - ], - [ - -73.449055, - 45.570278 - ], - [ - -73.448989, - 45.570323 - ], - [ - -73.448955, - 45.570337 - ], - [ - -73.448919, - 45.57035 - ], - [ - -73.448874, - 45.570359 - ], - [ - -73.44882, - 45.570368 - ], - [ - -73.448494, - 45.570395 - ], - [ - -73.448177, - 45.570336 - ], - [ - -73.447945, - 45.570309 - ], - [ - -73.447265, - 45.570176 - ], - [ - -73.4464, - 45.570007 - ], - [ - -73.446311, - 45.569989 - ], - [ - -73.446194, - 45.569957 - ], - [ - -73.446079, - 45.569912 - ], - [ - -73.44598, - 45.569845 - ], - [ - -73.445832, - 45.569723 - ], - [ - -73.445349, - 45.569349 - ], - [ - -73.445158, - 45.569201 - ], - [ - -73.444719, - 45.568877 - ], - [ - -73.444688, - 45.568854 - ], - [ - -73.444286, - 45.568557 - ], - [ - -73.443979, - 45.568764 - ], - [ - -73.443832, - 45.568863 - ], - [ - -73.443702, - 45.568949 - ], - [ - -73.443677, - 45.568966 - ], - [ - -73.443538, - 45.569043 - ], - [ - -73.443322, - 45.569133 - ], - [ - -73.443045, - 45.5692 - ], - [ - -73.442527, - 45.569294 - ], - [ - -73.442212, - 45.569352 - ], - [ - -73.441998, - 45.569399 - ], - [ - -73.441923, - 45.569415 - ], - [ - -73.441739, - 45.569478 - ], - [ - -73.441592, - 45.56955 - ], - [ - -73.441481, - 45.569618 - ], - [ - -73.441372, - 45.56968 - ], - [ - -73.441093, - 45.56986 - ], - [ - -73.440888, - 45.569991 - ], - [ - -73.440655, - 45.570126 - ], - [ - -73.440467, - 45.570242 - ], - [ - -73.440242, - 45.570319 - ], - [ - -73.440086, - 45.57035 - ], - [ - -73.439895, - 45.570355 - ], - [ - -73.439704, - 45.570327 - ], - [ - -73.439504, - 45.570287 - ], - [ - -73.439161, - 45.57021 - ], - [ - -73.438655, - 45.570102 - ], - [ - -73.435121, - 45.569346 - ], - [ - -73.434565, - 45.569227 - ], - [ - -73.43204, - 45.568685 - ], - [ - -73.431098, - 45.568523 - ], - [ - -73.430715, - 45.56846 - ], - [ - -73.429654, - 45.568351 - ], - [ - -73.429296, - 45.568325 - ], - [ - -73.429087, - 45.56831 - ], - [ - -73.428869, - 45.568301 - ], - [ - -73.42857, - 45.568283 - ], - [ - -73.428157, - 45.568269 - ], - [ - -73.42731, - 45.568269 - ], - [ - -73.42722, - 45.56827 - ], - [ - -73.427035, - 45.568273 - ], - [ - -73.426718, - 45.568291 - ], - [ - -73.426353, - 45.568309 - ], - [ - -73.426077, - 45.568322 - ], - [ - -73.425785, - 45.56834 - ], - [ - -73.425418, - 45.568357 - ], - [ - -73.424113, - 45.568433 - ], - [ - -73.42319, - 45.568485 - ], - [ - -73.421233, - 45.568594 - ], - [ - -73.420049, - 45.56866 - ], - [ - -73.418871, - 45.568717 - ], - [ - -73.418371, - 45.56874 - ], - [ - -73.418289, - 45.568738 - ], - [ - -73.418086, - 45.568735 - ], - [ - -73.417818, - 45.568703 - ], - [ - -73.417552, - 45.568658 - ], - [ - -73.417323, - 45.56859 - ], - [ - -73.417173, - 45.568543 - ], - [ - -73.417083, - 45.568514 - ], - [ - -73.416867, - 45.568415 - ], - [ - -73.416624, - 45.568288 - ], - [ - -73.416469, - 45.568185 - ], - [ - -73.416326, - 45.568081 - ], - [ - -73.416163, - 45.567924 - ], - [ - -73.415768, - 45.567551 - ], - [ - -73.415619, - 45.56741 - ], - [ - -73.415452, - 45.567253 - ], - [ - -73.417441, - 45.566152 - ], - [ - -73.419551, - 45.564984 - ], - [ - -73.420287, - 45.564573 - ], - [ - -73.420525, - 45.56444 - ], - [ - -73.420894, - 45.564251 - ], - [ - -73.42122, - 45.564089 - ], - [ - -73.421549, - 45.563919 - ], - [ - -73.422142, - 45.563568 - ], - [ - -73.423897, - 45.562597 - ], - [ - -73.424088, - 45.562481 - ], - [ - -73.424434, - 45.562242 - ], - [ - -73.424926, - 45.561873 - ], - [ - -73.425154, - 45.561703 - ], - [ - -73.425956, - 45.561002 - ], - [ - -73.427337, - 45.559796 - ], - [ - -73.427837, - 45.559361 - ], - [ - -73.42839, - 45.558857 - ], - [ - -73.42887, - 45.558435 - ], - [ - -73.429028, - 45.558295 - ], - [ - -73.429313, - 45.558012 - ], - [ - -73.430708, - 45.556663 - ], - [ - -73.43088, - 45.556493 - ], - [ - -73.431306, - 45.556069 - ], - [ - -73.43172, - 45.555722 - ], - [ - -73.431789, - 45.555665 - ], - [ - -73.432223, - 45.555346 - ], - [ - -73.43246, - 45.555188 - ], - [ - -73.432543, - 45.555134 - ], - [ - -73.432999, - 45.554887 - ], - [ - -73.434256, - 45.554213 - ], - [ - -73.434483, - 45.554083 - ], - [ - -73.434649, - 45.553975 - ], - [ - -73.434849, - 45.553835 - ], - [ - -73.435021, - 45.553701 - ], - [ - -73.435159, - 45.553588 - ], - [ - -73.435328, - 45.55344 - ], - [ - -73.435547, - 45.553237 - ], - [ - -73.435849, - 45.552943 - ], - [ - -73.436155, - 45.552644 - ], - [ - -73.437097, - 45.551709 - ], - [ - -73.437356, - 45.551461 - ], - [ - -73.437497, - 45.551339 - ], - [ - -73.437695, - 45.551168 - ], - [ - -73.438055, - 45.550908 - ], - [ - -73.438308, - 45.55075 - ], - [ - -73.438588, - 45.550594 - ], - [ - -73.4388, - 45.550495 - ], - [ - -73.438978, - 45.550409 - ], - [ - -73.439152, - 45.550343 - ], - [ - -73.43928, - 45.550298 - ], - [ - -73.439643, - 45.550168 - ], - [ - -73.440159, - 45.550002 - ], - [ - -73.440332, - 45.549946 - ], - [ - -73.441022, - 45.549723 - ], - [ - -73.441088, - 45.549701 - ], - [ - -73.441826, - 45.549464 - ], - [ - -73.441912, - 45.549436 - ], - [ - -73.441912, - 45.549436 - ], - [ - -73.442568, - 45.549225 - ], - [ - -73.442788, - 45.549153 - ], - [ - -73.443304, - 45.548985 - ], - [ - -73.44402, - 45.548753 - ], - [ - -73.444381, - 45.548637 - ], - [ - -73.444762, - 45.548514 - ], - [ - -73.445417, - 45.548304 - ], - [ - -73.446657, - 45.547903 - ], - [ - -73.447022, - 45.547781 - ], - [ - -73.447429, - 45.547646 - ], - [ - -73.447629, - 45.547579 - ], - [ - -73.447947, - 45.54746 - ], - [ - -73.448002, - 45.54744 - ], - [ - -73.448339, - 45.547305 - ], - [ - -73.448543, - 45.547215 - ], - [ - -73.448831, - 45.547062 - ], - [ - -73.449103, - 45.546914 - ], - [ - -73.449271, - 45.546806 - ], - [ - -73.449736, - 45.546505 - ], - [ - -73.449968, - 45.546338 - ], - [ - -73.45054, - 45.545943 - ], - [ - -73.4506, - 45.545902 - ], - [ - -73.451253, - 45.545453 - ], - [ - -73.452351, - 45.544683 - ], - [ - -73.452491, - 45.544585 - ], - [ - -73.453737, - 45.543736 - ], - [ - -73.453772, - 45.543712 - ], - [ - -73.454376, - 45.543288 - ], - [ - -73.454769, - 45.543011 - ], - [ - -73.455166, - 45.542732 - ], - [ - -73.455282, - 45.54266 - ], - [ - -73.455702, - 45.542678 - ], - [ - -73.455971, - 45.542683 - ], - [ - -73.456034, - 45.542341 - ], - [ - -73.456078, - 45.542099 - ], - [ - -73.456127, - 45.541828 - ], - [ - -73.45622, - 45.541171 - ], - [ - -73.456335, - 45.540449 - ], - [ - -73.456345, - 45.540384 - ], - [ - -73.456347, - 45.540366 - ], - [ - -73.456509, - 45.539394 - ], - [ - -73.456509, - 45.539219 - ], - [ - -73.456656, - 45.5384 - ], - [ - -73.456667, - 45.538348 - ], - [ - -73.456669, - 45.538334 - ], - [ - -73.456674, - 45.53831 - ], - [ - -73.456716, - 45.53818 - ], - [ - -73.456753, - 45.538063 - ], - [ - -73.456906, - 45.537595 - ], - [ - -73.457034, - 45.537289 - ], - [ - -73.457312, - 45.536745 - ], - [ - -73.457525, - 45.536412 - ], - [ - -73.457671, - 45.53619 - ], - [ - -73.457717, - 45.536119 - ], - [ - -73.457866, - 45.535926 - ], - [ - -73.458063, - 45.535706 - ], - [ - -73.458203, - 45.535555 - ], - [ - -73.45852, - 45.535215 - ], - [ - -73.45895, - 45.534833 - ], - [ - -73.459023, - 45.534775 - ], - [ - -73.459195, - 45.53464 - ], - [ - -73.460968, - 45.533133 - ], - [ - -73.461521, - 45.532588 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.462106, - 45.531887 - ], - [ - -73.462411, - 45.531442 - ], - [ - -73.462843, - 45.530639 - ], - [ - -73.462938, - 45.530461 - ], - [ - -73.463971, - 45.528556 - ], - [ - -73.465095, - 45.526482 - ], - [ - -73.465154, - 45.526372 - ], - [ - -73.465286, - 45.525972 - ], - [ - -73.46533, - 45.525747 - ], - [ - -73.465344, - 45.525549 - ], - [ - -73.465322, - 45.525364 - ], - [ - -73.465131, - 45.524519 - ], - [ - -73.465111, - 45.524431 - ], - [ - -73.464907, - 45.523532 - ], - [ - -73.464877, - 45.523398 - ], - [ - -73.464763, - 45.522917 - ], - [ - -73.464682, - 45.522613 - ], - [ - -73.464607, - 45.522332 - ], - [ - -73.464576, - 45.522215 - ], - [ - -73.464435, - 45.521608 - ], - [ - -73.464421, - 45.521551 - ], - [ - -73.4643, - 45.521015 - ], - [ - -73.464225, - 45.52069 - ], - [ - -73.464092, - 45.520078 - ], - [ - -73.464063, - 45.519947 - ], - [ - -73.463992, - 45.519645 - ], - [ - -73.463946, - 45.519416 - ], - [ - -73.463946, - 45.519259 - ], - [ - -73.463946, - 45.519088 - ], - [ - -73.463972, - 45.518953 - ], - [ - -73.464012, - 45.51884 - ], - [ - -73.46406, - 45.518732 - ], - [ - -73.464166, - 45.518557 - ], - [ - -73.464483, - 45.518161 - ], - [ - -73.464821, - 45.517672 - ], - [ - -73.464941, - 45.517498 - ], - [ - -73.465811, - 45.516258 - ], - [ - -73.466125, - 45.515839 - ], - [ - -73.466232, - 45.515695 - ], - [ - -73.466795, - 45.514943 - ], - [ - -73.467735, - 45.513672 - ], - [ - -73.467821, - 45.513555 - ], - [ - -73.468294, - 45.512911 - ], - [ - -73.46871, - 45.512346 - ], - [ - -73.468744, - 45.5123 - ], - [ - -73.469443, - 45.511193 - ], - [ - -73.469555, - 45.511034 - ], - [ - -73.469846, - 45.510622 - ], - [ - -73.470521, - 45.509701 - ], - [ - -73.471066, - 45.508957 - ], - [ - -73.471144, - 45.508849 - ], - [ - -73.471396, - 45.508934 - ], - [ - -73.472138, - 45.509183 - ], - [ - -73.473956, - 45.509779 - ], - [ - -73.475247, - 45.510202 - ], - [ - -73.475433, - 45.510263 - ], - [ - -73.478292, - 45.511196 - ], - [ - -73.478511, - 45.511267 - ], - [ - -73.481442, - 45.512222 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.484525, - 45.513221 - ], - [ - -73.484663, - 45.513266 - ], - [ - -73.487618, - 45.514228 - ], - [ - -73.48773, - 45.514265 - ], - [ - -73.490698, - 45.515232 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.493766, - 45.516234 - ], - [ - -73.493881, - 45.516272 - ], - [ - -73.497606, - 45.517477 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.49882, - 45.517869 - ], - [ - -73.49989, - 45.518233 - ], - [ - -73.499972, - 45.518261 - ], - [ - -73.502102, - 45.518947 - ], - [ - -73.502235, - 45.51899 - ], - [ - -73.505426, - 45.520032 - ], - [ - -73.505525, - 45.520065 - ], - [ - -73.507545, - 45.520716 - ], - [ - -73.507813, - 45.520803 - ], - [ - -73.507881, - 45.520866 - ], - [ - -73.508099, - 45.520938 - ], - [ - -73.508258, - 45.520974 - ], - [ - -73.50837, - 45.520987 - ], - [ - -73.508461, - 45.520983 - ], - [ - -73.508562, - 45.520983 - ], - [ - -73.50866, - 45.520978 - ], - [ - -73.50877, - 45.520987 - ], - [ - -73.508969, - 45.521037 - ], - [ - -73.509108, - 45.521064 - ], - [ - -73.509167, - 45.521059 - ], - [ - -73.510032, - 45.521352 - ], - [ - -73.510243, - 45.521423 - ], - [ - -73.511276, - 45.521761 - ], - [ - -73.512491, - 45.522162 - ], - [ - -73.513225, - 45.522404 - ], - [ - -73.513329, - 45.522453 - ], - [ - -73.51347, - 45.522512 - ], - [ - -73.513466, - 45.522197 - ], - [ - -73.513465, - 45.522079 - ], - [ - -73.513454, - 45.521135 - ], - [ - -73.513455, - 45.520586 - ], - [ - -73.513456, - 45.520393 - ], - [ - -73.51347, - 45.52019 - ], - [ - -73.513487, - 45.520033 - ], - [ - -73.513501, - 45.519929 - ], - [ - -73.513525, - 45.519803 - ], - [ - -73.51356, - 45.519673 - ], - [ - -73.513601, - 45.519583 - ], - [ - -73.51367, - 45.519425 - ], - [ - -73.513724, - 45.519336 - ], - [ - -73.513785, - 45.519236 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515007, - 45.519424 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518902, - 45.520632 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520267, - 45.521193 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520861, - 45.524416 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.520811, - 45.523427 - ] - ] - }, - "id": 215, - "properties": { - "id": "74256c19-1105-445a-80ed-a6e3ae81077e", - "data": { - "gtfs": { - "shape_id": "123_2_A" - }, - "segments": [ - { - "distanceMeters": 60, - "travelTimeSeconds": 6 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 83, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 523, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 460, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 371, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 558, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 444, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 469, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 471, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 310, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 360, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 312, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 455, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 330, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 845, - "travelTimeSeconds": 189 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 318, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 24700, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5993.066645974276, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.77, - "travelTimeWithoutDwellTimesSeconds": 3180, - "operatingTimeWithLayoverTimeSeconds": 3498, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3180, - "operatingSpeedWithLayoverMetersPerSecond": 7.06, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.77 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "ef393841-8a29-4383-a7b9-545addf087f6", - "ef393841-8a29-4383-a7b9-545addf087f6", - "281f350b-faae-4302-bcde-cc7831951682", - "59b13438-eb20-4204-b1fd-fe2ed2a80258", - "bc413ffa-dc65-4fc7-93f0-58dddebb3024", - "ce65fcd5-5449-4ede-b81b-9d2cd21731a7", - "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", - "3e6f6ee6-af44-48b8-9b96-431c0dfdb40c", - "cbdc89b0-549e-41a3-becc-56a1e8c831ce", - "3fa535d7-2c06-4fc3-ac22-347da96e9a38", - "a0c45e7b-af06-4ea8-a82a-a658b829e198", - "ffb5020e-4dcf-4cee-9d46-621fd641098b", - "3be8bc80-2551-4dbe-a3e5-58d302899fd6", - "1532a7e6-19bb-482a-881b-1cf8dd8416ed", - "b5bdde0b-f4ea-4dda-8556-5a9c093cee1e", - "b00ce62b-a3af-454b-8eb4-951ab271a0e2", - "ddf509a6-0c36-4863-8c49-8e568d69fa14", - "e72de034-4bad-4c42-9f05-b66c808b840c", - "7330c47a-92ea-4650-a95f-c6010983e0e2", - "5f1f8694-7622-42a2-a482-eb0612df0756", - "e01682ec-7470-4db5-8b9e-ac8823b81e39", - "31d31773-be59-456e-bce3-a8671d3f0ded", - "b15716e4-5653-476c-ba57-960f89ea42d5", - "b070e296-b686-4ba3-bf68-049018a7af21", - "83389414-0049-46f6-a04b-557250511611", - "2b894d51-a427-4850-8fae-89ed3f29388d", - "bd99fd0e-cbdd-4d16-af5c-609bbef87ee4", - "adc9bcc9-8f6d-49e9-b7de-68b4f56033f4", - "bd467e22-a975-40b8-9a7a-9801529c3237", - "6150abd1-c8f6-4045-8e3e-f50bbef79a53", - "aff34f6b-5801-4e1a-bc66-3990844e0b4e", - "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", - "33622e57-d444-4916-a7fb-d1fa4643eb90", - "e979db3f-26cd-41d5-8708-f07b7090bef0", - "5573e81d-639b-42bb-a768-ad52df79de56", - "2017e3ec-fe66-4e73-9fb7-567ac5f8a472", - "bd1fa046-c7cd-4878-bf5b-177b8bb772d6", - "26e46bda-74e3-4f09-b95f-139d0b7fb0af", - "8663e9fe-e135-44e5-ac98-e3cb896c6c45", - "ab684dee-c058-4d37-851f-c3b6a26b599d", - "ff4a3e03-c804-4002-b3d4-f9bc873fc550", - "b9a0be89-8d55-4f3c-ae5f-e8c732f903dc", - "1af3fbef-32b4-454e-9289-b300f3b4ddb1", - "0041d8ec-3bef-4a62-90da-3711f5d509d2", - "0d73df1c-f948-4c1f-ba36-487a91089d51", - "b734f683-dc9f-47d6-a659-53e6bf9d2915", - "fafd80b0-6ccf-4eb9-acda-4d93a4bf6736", - "3babd96f-413d-4615-8f50-ca3cd1b6b052", - "52b4b9f4-5da9-4e8b-83a9-0be3d15c1d16", - "c6e39e27-f6a2-4102-b237-b49f8c28ddda", - "317463e6-5f58-49bb-9db5-183bfb37f7c6", - "b1e0c9f3-01ed-4b74-ab1d-f413050d3022", - "b567475e-2b46-4378-9adc-08b4cc99ad7e", - "e525780c-4598-49cd-b6ff-8b911e2c9385", - "92a52522-0981-490b-a541-e3514efa3ed8", - "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", - "946a029d-014a-45ca-adcd-e5b8e3927d52", - "43f18805-a4b1-4fc6-a1c9-787eb883bcde", - "e4670d3f-1aa4-4e69-ac7c-0f6fbe1ebddb", - "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", - "c77b3ec3-667e-4b8e-a8ba-613daafce3d4", - "8a5c9ba1-a597-4c12-90c9-b58f8d4f8d95", - "ead7d270-6dcb-4161-af5c-95bec6715688", - "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "8746746f-daed-4d54-a90f-724d51454ae1", - "47143cf4-4cce-4e8f-bfed-223c71fcc466", - "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", - "74d09865-876b-4428-9441-1504fb3f52bd", - "334bd241-267c-4081-968b-fd0340fabe8f", - "146e7d43-1e02-4f93-ac9a-e66dd29d3576", - "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", - "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", - "f9f88325-b670-4d47-91fa-edb372992bbc", - "e1a9e623-935b-47b9-a038-bcbd5a33f95e", - "ba348c95-9f07-48ca-a139-5d5c2dd83350", - "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", - "6c122298-4ea6-41ee-91e8-bb29cb41a320", - "e1825eb4-cef2-4f98-872f-0d169be63859", - "5a82a520-52b6-417e-972a-f9bf56fb4f33", - "64ba3e91-9bea-4655-ac42-4f3f1a14955c", - "315b8823-6c3a-493b-9af5-7325cbc48096", - "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "05287baf-76e5-4533-8eef-0902c45b01ae", - "54cba115-6a75-4b65-8019-b2b5de7a3947", - "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", - "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", - "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", - "52b1586a-11ae-4a36-8706-2e4367c6d3c8", - "234e805d-82ab-4d93-bec5-6c8c331d4f7b", - "b412dc8e-18d6-40de-b77b-38439256c33f", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "acabc807-b0f5-4579-b183-cef0484a7cc2" - ], - "stops": [], - "line_id": "5d0af399-f114-40f4-b24c-1e73275b3a37", - "segments": [ - 0, - 2, - 5, - 6, - 9, - 18, - 20, - 29, - 31, - 33, - 35, - 38, - 40, - 43, - 47, - 54, - 57, - 64, - 65, - 67, - 70, - 72, - 78, - 90, - 102, - 116, - 127, - 130, - 134, - 139, - 141, - 150, - 308, - 320, - 327, - 334, - 357, - 358, - 364, - 370, - 378, - 379, - 383, - 395, - 398, - 400, - 409, - 412, - 415, - 419, - 421, - 435, - 439, - 454, - 460, - 465, - 476, - 479, - 481, - 484, - 493, - 500, - 508, - 515, - 518, - 523, - 525, - 526, - 532, - 537, - 544, - 555, - 558, - 561, - 564, - 572, - 575, - 577, - 579, - 581, - 583, - 585, - 587, - 589, - 592, - 594, - 596, - 598, - 611, - 614, - 619, - 630, - 635, - 642 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 215, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.520811, - 45.523427 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522227, - 45.521976 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519251, - 45.520728 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.516333, - 45.519806 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514253, - 45.51909 - ], - [ - -73.513885, - 45.518962 - ], - [ - -73.51387, - 45.518957 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.51366, - 45.519196 - ], - [ - -73.513541, - 45.519389 - ], - [ - -73.513476, - 45.519506 - ], - [ - -73.513414, - 45.519673 - ], - [ - -73.513367, - 45.519825 - ], - [ - -73.513342, - 45.519907 - ], - [ - -73.513328, - 45.519997 - ], - [ - -73.513311, - 45.520181 - ], - [ - -73.513297, - 45.520388 - ], - [ - -73.513304, - 45.520586 - ], - [ - -73.51331, - 45.521135 - ], - [ - -73.513324, - 45.522113 - ], - [ - -73.513329, - 45.522453 - ], - [ - -73.513225, - 45.522404 - ], - [ - -73.512969, - 45.52232 - ], - [ - -73.511276, - 45.521761 - ], - [ - -73.510472, - 45.521498 - ], - [ - -73.510243, - 45.521423 - ], - [ - -73.509167, - 45.521059 - ], - [ - -73.50913, - 45.52101 - ], - [ - -73.509054, - 45.520983 - ], - [ - -73.508914, - 45.520938 - ], - [ - -73.50875, - 45.520908 - ], - [ - -73.50874, - 45.520906 - ], - [ - -73.508615, - 45.520897 - ], - [ - -73.508519, - 45.520893 - ], - [ - -73.508513, - 45.520893 - ], - [ - -73.508412, - 45.520888 - ], - [ - -73.508316, - 45.520888 - ], - [ - -73.508225, - 45.520879 - ], - [ - -73.508096, - 45.520852 - ], - [ - -73.507904, - 45.520798 - ], - [ - -73.507813, - 45.520803 - ], - [ - -73.505692, - 45.520119 - ], - [ - -73.505525, - 45.520065 - ], - [ - -73.502345, - 45.519026 - ], - [ - -73.502235, - 45.51899 - ], - [ - -73.500086, - 45.518297 - ], - [ - -73.499972, - 45.518261 - ], - [ - -73.49882, - 45.517869 - ], - [ - -73.497861, - 45.51756 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.494008, - 45.516313 - ], - [ - -73.493881, - 45.516272 - ], - [ - -73.490999, - 45.51533 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.487849, - 45.514304 - ], - [ - -73.48773, - 45.514265 - ], - [ - -73.484792, - 45.513308 - ], - [ - -73.484663, - 45.513266 - ], - [ - -73.481697, - 45.512304 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.47864, - 45.511309 - ], - [ - -73.478511, - 45.511267 - ], - [ - -73.475537, - 45.510297 - ], - [ - -73.475433, - 45.510263 - ], - [ - -73.472367, - 45.509258 - ], - [ - -73.472138, - 45.509183 - ], - [ - -73.471144, - 45.508849 - ], - [ - -73.470997, - 45.508809 - ], - [ - -73.470932, - 45.508894 - ], - [ - -73.470694, - 45.509214 - ], - [ - -73.470366, - 45.509655 - ], - [ - -73.470032, - 45.510114 - ], - [ - -73.46959, - 45.510721 - ], - [ - -73.469434, - 45.510905 - ], - [ - -73.469378, - 45.510967 - ], - [ - -73.469091, - 45.511282 - ], - [ - -73.468985, - 45.5114 - ], - [ - -73.468427, - 45.512162 - ], - [ - -73.468415, - 45.512178 - ], - [ - -73.466445, - 45.514919 - ], - [ - -73.466162, - 45.515346 - ], - [ - -73.466151, - 45.515363 - ], - [ - -73.465949, - 45.515589 - ], - [ - -73.463889, - 45.518354 - ], - [ - -73.463717, - 45.51862 - ], - [ - -73.463631, - 45.518853 - ], - [ - -73.463583, - 45.519083 - ], - [ - -73.463564, - 45.519245 - ], - [ - -73.463583, - 45.519488 - ], - [ - -73.463685, - 45.519919 - ], - [ - -73.463702, - 45.519992 - ], - [ - -73.463752, - 45.520203 - ], - [ - -73.463794, - 45.520379 - ], - [ - -73.463924, - 45.520923 - ], - [ - -73.464036, - 45.521392 - ], - [ - -73.464091, - 45.52162 - ], - [ - -73.464111, - 45.521706 - ], - [ - -73.464186, - 45.522017 - ], - [ - -73.464215, - 45.522138 - ], - [ - -73.464331, - 45.522602 - ], - [ - -73.464351, - 45.522682 - ], - [ - -73.464423, - 45.522975 - ], - [ - -73.464736, - 45.524295 - ], - [ - -73.464777, - 45.524466 - ], - [ - -73.46493, - 45.525112 - ], - [ - -73.464976, - 45.525355 - ], - [ - -73.465003, - 45.525643 - ], - [ - -73.464991, - 45.525805 - ], - [ - -73.464965, - 45.525922 - ], - [ - -73.464886, - 45.526134 - ], - [ - -73.464818, - 45.526267 - ], - [ - -73.464731, - 45.526435 - ], - [ - -73.463641, - 45.528471 - ], - [ - -73.462718, - 45.530195 - ], - [ - -73.462624, - 45.530371 - ], - [ - -73.462437, - 45.530708 - ], - [ - -73.462358, - 45.530861 - ], - [ - -73.46217, - 45.531262 - ], - [ - -73.461938, - 45.531653 - ], - [ - -73.461712, - 45.531982 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.46089, - 45.532868 - ], - [ - -73.460757, - 45.533003 - ], - [ - -73.459629, - 45.533974 - ], - [ - -73.45906, - 45.534431 - ], - [ - -73.458963, - 45.534509 - ], - [ - -73.458731, - 45.534693 - ], - [ - -73.458241, - 45.535152 - ], - [ - -73.457986, - 45.535404 - ], - [ - -73.457781, - 45.535638 - ], - [ - -73.457342, - 45.536214 - ], - [ - -73.457313, - 45.536261 - ], - [ - -73.45713, - 45.536556 - ], - [ - -73.456948, - 45.536857 - ], - [ - -73.456811, - 45.537145 - ], - [ - -73.456744, - 45.5373 - ], - [ - -73.456664, - 45.537487 - ], - [ - -73.456523, - 45.537909 - ], - [ - -73.456485, - 45.538022 - ], - [ - -73.456445, - 45.538144 - ], - [ - -73.456357, - 45.53853 - ], - [ - -73.456221, - 45.539372 - ], - [ - -73.456144, - 45.539984 - ], - [ - -73.456095, - 45.54026 - ], - [ - -73.456076, - 45.540361 - ], - [ - -73.455916, - 45.541266 - ], - [ - -73.455834, - 45.54181 - ], - [ - -73.455736, - 45.542455 - ], - [ - -73.455702, - 45.542678 - ], - [ - -73.455282, - 45.54266 - ], - [ - -73.455166, - 45.542732 - ], - [ - -73.454785, - 45.543 - ], - [ - -73.454376, - 45.543288 - ], - [ - -73.453916, - 45.543612 - ], - [ - -73.453772, - 45.543712 - ], - [ - -73.45275, - 45.544408 - ], - [ - -73.452491, - 45.544585 - ], - [ - -73.451253, - 45.545453 - ], - [ - -73.450702, - 45.545832 - ], - [ - -73.4506, - 45.545902 - ], - [ - -73.449968, - 45.546338 - ], - [ - -73.449736, - 45.546505 - ], - [ - -73.449271, - 45.546806 - ], - [ - -73.449103, - 45.546914 - ], - [ - -73.448831, - 45.547062 - ], - [ - -73.448543, - 45.547215 - ], - [ - -73.448339, - 45.547305 - ], - [ - -73.448002, - 45.54744 - ], - [ - -73.447947, - 45.54746 - ], - [ - -73.447803, - 45.547514 - ], - [ - -73.447629, - 45.547579 - ], - [ - -73.447022, - 45.547781 - ], - [ - -73.446657, - 45.547903 - ], - [ - -73.445417, - 45.548304 - ], - [ - -73.444762, - 45.548514 - ], - [ - -73.444365, - 45.548642 - ], - [ - -73.44402, - 45.548753 - ], - [ - -73.443304, - 45.548985 - ], - [ - -73.442788, - 45.549153 - ], - [ - -73.442568, - 45.549225 - ], - [ - -73.441912, - 45.549436 - ], - [ - -73.441826, - 45.549464 - ], - [ - -73.441769, - 45.549482 - ], - [ - -73.441088, - 45.549701 - ], - [ - -73.441022, - 45.549723 - ], - [ - -73.440332, - 45.549946 - ], - [ - -73.440159, - 45.550002 - ], - [ - -73.439643, - 45.550168 - ], - [ - -73.43928, - 45.550298 - ], - [ - -73.439152, - 45.550343 - ], - [ - -73.438978, - 45.550409 - ], - [ - -73.4388, - 45.550495 - ], - [ - -73.438588, - 45.550594 - ], - [ - -73.438308, - 45.55075 - ], - [ - -73.438055, - 45.550908 - ], - [ - -73.437695, - 45.551168 - ], - [ - -73.437551, - 45.551292 - ], - [ - -73.437356, - 45.551461 - ], - [ - -73.437097, - 45.551709 - ], - [ - -73.436155, - 45.552644 - ], - [ - -73.435891, - 45.552901 - ], - [ - -73.435547, - 45.553237 - ], - [ - -73.435328, - 45.55344 - ], - [ - -73.435159, - 45.553588 - ], - [ - -73.435021, - 45.553701 - ], - [ - -73.434849, - 45.553835 - ], - [ - -73.434649, - 45.553975 - ], - [ - -73.434483, - 45.554083 - ], - [ - -73.434256, - 45.554213 - ], - [ - -73.432999, - 45.554887 - ], - [ - -73.432543, - 45.555134 - ], - [ - -73.43246, - 45.555188 - ], - [ - -73.432223, - 45.555346 - ], - [ - -73.43188, - 45.555597 - ], - [ - -73.431789, - 45.555665 - ], - [ - -73.431306, - 45.556069 - ], - [ - -73.430907, - 45.556465 - ], - [ - -73.430708, - 45.556663 - ], - [ - -73.429313, - 45.558012 - ], - [ - -73.429197, - 45.558127 - ], - [ - -73.429028, - 45.558295 - ], - [ - -73.42839, - 45.558857 - ], - [ - -73.427837, - 45.559361 - ], - [ - -73.427383, - 45.559756 - ], - [ - -73.425956, - 45.561002 - ], - [ - -73.425208, - 45.561655 - ], - [ - -73.425154, - 45.561703 - ], - [ - -73.424434, - 45.562242 - ], - [ - -73.424088, - 45.562481 - ], - [ - -73.423897, - 45.562597 - ], - [ - -73.422142, - 45.563568 - ], - [ - -73.421549, - 45.563919 - ], - [ - -73.42122, - 45.564089 - ], - [ - -73.421171, - 45.564114 - ], - [ - -73.420894, - 45.564251 - ], - [ - -73.420525, - 45.56444 - ], - [ - -73.419551, - 45.564984 - ], - [ - -73.417459, - 45.566142 - ], - [ - -73.415452, - 45.567253 - ], - [ - -73.415619, - 45.56741 - ], - [ - -73.416076, - 45.567841 - ], - [ - -73.416163, - 45.567924 - ], - [ - -73.416326, - 45.568081 - ], - [ - -73.416469, - 45.568185 - ], - [ - -73.416624, - 45.568288 - ], - [ - -73.416867, - 45.568415 - ], - [ - -73.417006, - 45.568478 - ], - [ - -73.417083, - 45.568514 - ], - [ - -73.417323, - 45.56859 - ], - [ - -73.417552, - 45.568658 - ], - [ - -73.417818, - 45.568703 - ], - [ - -73.41796, - 45.56872 - ], - [ - -73.418086, - 45.568735 - ], - [ - -73.418371, - 45.56874 - ], - [ - -73.418871, - 45.568717 - ], - [ - -73.420049, - 45.56866 - ], - [ - -73.420865, - 45.568614 - ], - [ - -73.423193, - 45.568484 - ], - [ - -73.424113, - 45.568433 - ], - [ - -73.425418, - 45.568357 - ], - [ - -73.425785, - 45.56834 - ], - [ - -73.426077, - 45.568322 - ], - [ - -73.426353, - 45.568309 - ], - [ - -73.426718, - 45.568291 - ], - [ - -73.426723, - 45.56829 - ], - [ - -73.427035, - 45.568273 - ], - [ - -73.42731, - 45.568269 - ], - [ - -73.428157, - 45.568269 - ], - [ - -73.42857, - 45.568283 - ], - [ - -73.428869, - 45.568301 - ], - [ - -73.429055, - 45.568309 - ], - [ - -73.429087, - 45.56831 - ], - [ - -73.429654, - 45.568351 - ], - [ - -73.430715, - 45.56846 - ], - [ - -73.431098, - 45.568523 - ], - [ - -73.43204, - 45.568685 - ], - [ - -73.434178, - 45.569144 - ], - [ - -73.434565, - 45.569227 - ], - [ - -73.438719, - 45.570116 - ], - [ - -73.439161, - 45.57021 - ], - [ - -73.439504, - 45.570287 - ], - [ - -73.439704, - 45.570327 - ], - [ - -73.439895, - 45.570355 - ], - [ - -73.440086, - 45.57035 - ], - [ - -73.440242, - 45.570319 - ], - [ - -73.440467, - 45.570242 - ], - [ - -73.440655, - 45.570126 - ], - [ - -73.440888, - 45.569991 - ], - [ - -73.441093, - 45.56986 - ], - [ - -73.441372, - 45.56968 - ], - [ - -73.441481, - 45.569618 - ], - [ - -73.441592, - 45.56955 - ], - [ - -73.441739, - 45.569478 - ], - [ - -73.441923, - 45.569415 - ], - [ - -73.441998, - 45.569399 - ], - [ - -73.442212, - 45.569352 - ], - [ - -73.442527, - 45.569294 - ], - [ - -73.443045, - 45.5692 - ], - [ - -73.443322, - 45.569133 - ], - [ - -73.443347, - 45.569122 - ], - [ - -73.443538, - 45.569043 - ], - [ - -73.443677, - 45.568966 - ], - [ - -73.443832, - 45.568863 - ], - [ - -73.443977, - 45.568827 - ], - [ - -73.444045, - 45.568809 - ], - [ - -73.444096, - 45.568796 - ], - [ - -73.444173, - 45.568782 - ], - [ - -73.444256, - 45.568778 - ], - [ - -73.444346, - 45.568778 - ], - [ - -73.444435, - 45.568791 - ], - [ - -73.444507, - 45.568809 - ], - [ - -73.444608, - 45.568854 - ], - [ - -73.444719, - 45.568877 - ], - [ - -73.445065, - 45.569132 - ], - [ - -73.445158, - 45.569201 - ], - [ - -73.445832, - 45.569723 - ], - [ - -73.44598, - 45.569845 - ], - [ - -73.446079, - 45.569912 - ], - [ - -73.446194, - 45.569957 - ], - [ - -73.446311, - 45.569989 - ], - [ - -73.4464, - 45.570007 - ], - [ - -73.446552, - 45.570037 - ], - [ - -73.447945, - 45.570309 - ], - [ - -73.448177, - 45.570336 - ], - [ - -73.448494, - 45.570395 - ], - [ - -73.449049, - 45.570517 - ], - [ - -73.449223, - 45.570544 - ], - [ - -73.449264, - 45.570454 - ], - [ - -73.449543, - 45.569814 - ], - [ - -73.449722, - 45.56941 - ], - [ - -73.449947, - 45.568902 - ], - [ - -73.449982, - 45.56883 - ], - [ - -73.450051, - 45.568681 - ], - [ - -73.450055, - 45.568672 - ], - [ - -73.450057, - 45.568668 - ], - [ - -73.450059, - 45.568663 - ], - [ - -73.450061, - 45.568659 - ], - [ - -73.450063, - 45.568654 - ], - [ - -73.450065, - 45.56865 - ], - [ - -73.450067, - 45.568645 - ], - [ - -73.450069, - 45.568641 - ], - [ - -73.450071, - 45.568636 - ], - [ - -73.450072, - 45.568632 - ], - [ - -73.450074, - 45.568627 - ], - [ - -73.450076, - 45.568623 - ], - [ - -73.450078, - 45.568618 - ], - [ - -73.45008, - 45.568618 - ], - [ - -73.450082, - 45.568614 - ], - [ - -73.450084, - 45.568609 - ], - [ - -73.450086, - 45.568605 - ], - [ - -73.450087, - 45.5686 - ], - [ - -73.450089, - 45.568596 - ], - [ - -73.450091, - 45.568591 - ], - [ - -73.450093, - 45.568587 - ], - [ - -73.450095, - 45.568582 - ], - [ - -73.450097, - 45.568578 - ], - [ - -73.450099, - 45.568573 - ], - [ - -73.450101, - 45.568569 - ], - [ - -73.450102, - 45.568564 - ], - [ - -73.450104, - 45.56856 - ], - [ - -73.450106, - 45.568555 - ], - [ - -73.450108, - 45.568551 - ], - [ - -73.45011, - 45.568546 - ], - [ - -73.450112, - 45.568542 - ], - [ - -73.450114, - 45.568537 - ], - [ - -73.450115, - 45.568533 - ], - [ - -73.450117, - 45.568528 - ], - [ - -73.450119, - 45.568524 - ], - [ - -73.45012, - 45.568519 - ], - [ - -73.450122, - 45.568519 - ], - [ - -73.450124, - 45.568515 - ], - [ - -73.450126, - 45.56851 - ], - [ - -73.450128, - 45.568506 - ], - [ - -73.450129, - 45.568501 - ], - [ - -73.450131, - 45.568497 - ], - [ - -73.450133, - 45.568492 - ], - [ - -73.450134, - 45.568488 - ], - [ - -73.450136, - 45.568483 - ], - [ - -73.450138, - 45.568479 - ], - [ - -73.450139, - 45.568476 - ], - [ - -73.45014, - 45.568474 - ], - [ - -73.450141, - 45.56847 - ], - [ - -73.450143, - 45.568465 - ], - [ - -73.450145, - 45.568461 - ], - [ - -73.450146, - 45.568456 - ], - [ - -73.450148, - 45.568452 - ], - [ - -73.45015, - 45.568447 - ], - [ - -73.450151, - 45.568443 - ], - [ - -73.450153, - 45.568438 - ], - [ - -73.450154, - 45.568434 - ], - [ - -73.450156, - 45.568429 - ], - [ - -73.450158, - 45.568425 - ], - [ - -73.45016, - 45.56842 - ], - [ - -73.450161, - 45.568416 - ], - [ - -73.450163, - 45.568411 - ], - [ - -73.450164, - 45.568407 - ], - [ - -73.450166, - 45.568402 - ], - [ - -73.450168, - 45.568398 - ], - [ - -73.450169, - 45.568393 - ], - [ - -73.450171, - 45.568393 - ], - [ - -73.450173, - 45.568389 - ], - [ - -73.450174, - 45.568384 - ], - [ - -73.450175, - 45.56838 - ], - [ - -73.450177, - 45.568375 - ], - [ - -73.450179, - 45.568371 - ], - [ - -73.45018, - 45.568366 - ], - [ - -73.450182, - 45.568362 - ], - [ - -73.450183, - 45.568357 - ], - [ - -73.450185, - 45.568353 - ], - [ - -73.450186, - 45.568348 - ], - [ - -73.450188, - 45.568344 - ], - [ - -73.450189, - 45.568339 - ], - [ - -73.450191, - 45.568335 - ], - [ - -73.450192, - 45.56833 - ], - [ - -73.450194, - 45.568326 - ], - [ - -73.450195, - 45.568321 - ], - [ - -73.450197, - 45.568317 - ], - [ - -73.450198, - 45.568312 - ], - [ - -73.4502, - 45.568308 - ], - [ - -73.450201, - 45.568303 - ], - [ - -73.450203, - 45.568299 - ], - [ - -73.450204, - 45.568294 - ], - [ - -73.450205, - 45.56829 - ], - [ - -73.450207, - 45.568285 - ], - [ - -73.450208, - 45.568281 - ], - [ - -73.45021, - 45.568276 - ], - [ - -73.450211, - 45.568272 - ], - [ - -73.450213, - 45.568267 - ], - [ - -73.450214, - 45.568263 - ], - [ - -73.450215, - 45.568258 - ], - [ - -73.450217, - 45.568254 - ], - [ - -73.450218, - 45.568249 - ], - [ - -73.450219, - 45.568245 - ], - [ - -73.450221, - 45.56824 - ], - [ - -73.450222, - 45.568236 - ], - [ - -73.450224, - 45.568231 - ], - [ - -73.450225, - 45.568227 - ], - [ - -73.450226, - 45.568227 - ], - [ - -73.450228, - 45.568222 - ], - [ - -73.450229, - 45.568218 - ], - [ - -73.45023, - 45.568213 - ], - [ - -73.450232, - 45.568209 - ], - [ - -73.450233, - 45.568204 - ], - [ - -73.450234, - 45.5682 - ], - [ - -73.450236, - 45.568195 - ], - [ - -73.450237, - 45.568191 - ], - [ - -73.450238, - 45.568186 - ], - [ - -73.45024, - 45.568182 - ], - [ - -73.450241, - 45.568177 - ], - [ - -73.450242, - 45.568173 - ], - [ - -73.450244, - 45.568168 - ], - [ - -73.450245, - 45.568164 - ], - [ - -73.450246, - 45.568159 - ], - [ - -73.450247, - 45.568155 - ], - [ - -73.450248, - 45.56815 - ], - [ - -73.45025, - 45.568146 - ], - [ - -73.450251, - 45.568141 - ], - [ - -73.450252, - 45.568137 - ], - [ - -73.450253, - 45.568132 - ], - [ - -73.450254, - 45.568128 - ], - [ - -73.450256, - 45.568123 - ], - [ - -73.450257, - 45.568119 - ], - [ - -73.450258, - 45.568114 - ], - [ - -73.450259, - 45.56811 - ], - [ - -73.45026, - 45.568105 - ], - [ - -73.450262, - 45.568101 - ], - [ - -73.450263, - 45.568096 - ], - [ - -73.450264, - 45.568092 - ], - [ - -73.450265, - 45.568088 - ], - [ - -73.450266, - 45.568083 - ], - [ - -73.450267, - 45.568079 - ], - [ - -73.450268, - 45.568074 - ], - [ - -73.45027, - 45.56807 - ], - [ - -73.450271, - 45.568065 - ], - [ - -73.450272, - 45.568061 - ], - [ - -73.450273, - 45.568056 - ], - [ - -73.450274, - 45.568052 - ], - [ - -73.450275, - 45.568047 - ], - [ - -73.450277, - 45.568043 - ], - [ - -73.450277, - 45.568038 - ], - [ - -73.450279, - 45.568034 - ], - [ - -73.45028, - 45.568029 - ], - [ - -73.450281, - 45.568025 - ], - [ - -73.450282, - 45.56802 - ], - [ - -73.450283, - 45.568016 - ], - [ - -73.450284, - 45.568011 - ], - [ - -73.450285, - 45.568007 - ], - [ - -73.450286, - 45.568002 - ], - [ - -73.450287, - 45.567998 - ], - [ - -73.450288, - 45.567993 - ], - [ - -73.450289, - 45.567989 - ], - [ - -73.45029, - 45.567984 - ], - [ - -73.450291, - 45.56798 - ], - [ - -73.450292, - 45.567975 - ], - [ - -73.450293, - 45.567971 - ], - [ - -73.450294, - 45.567966 - ], - [ - -73.450295, - 45.567962 - ], - [ - -73.450296, - 45.567957 - ], - [ - -73.450297, - 45.567957 - ], - [ - -73.450298, - 45.567953 - ], - [ - -73.450299, - 45.567948 - ], - [ - -73.4503, - 45.567944 - ], - [ - -73.450301, - 45.567939 - ], - [ - -73.450301, - 45.567935 - ], - [ - -73.450302, - 45.56793 - ], - [ - -73.450303, - 45.567926 - ], - [ - -73.450304, - 45.567921 - ], - [ - -73.450305, - 45.567917 - ], - [ - -73.450306, - 45.567912 - ], - [ - -73.450307, - 45.567908 - ], - [ - -73.450308, - 45.567903 - ], - [ - -73.450309, - 45.567899 - ], - [ - -73.450309, - 45.567894 - ], - [ - -73.45031, - 45.56789 - ], - [ - -73.450311, - 45.567885 - ], - [ - -73.450312, - 45.567881 - ], - [ - -73.450313, - 45.567876 - ], - [ - -73.450314, - 45.567872 - ], - [ - -73.450315, - 45.567867 - ], - [ - -73.450316, - 45.567863 - ], - [ - -73.450316, - 45.567858 - ], - [ - -73.450317, - 45.567854 - ], - [ - -73.450318, - 45.567849 - ], - [ - -73.450319, - 45.567845 - ], - [ - -73.45032, - 45.56784 - ], - [ - -73.45032, - 45.567836 - ], - [ - -73.450321, - 45.567831 - ], - [ - -73.450322, - 45.567827 - ], - [ - -73.450323, - 45.567822 - ], - [ - -73.450324, - 45.567818 - ], - [ - -73.450324, - 45.567813 - ], - [ - -73.450325, - 45.567809 - ], - [ - -73.450326, - 45.567804 - ], - [ - -73.450326, - 45.5678 - ], - [ - -73.450327, - 45.567795 - ], - [ - -73.450328, - 45.567791 - ], - [ - -73.450329, - 45.567786 - ], - [ - -73.450329, - 45.567782 - ], - [ - -73.45033, - 45.567777 - ], - [ - -73.450331, - 45.567773 - ], - [ - -73.450332, - 45.567768 - ], - [ - -73.450332, - 45.567764 - ], - [ - -73.450333, - 45.567759 - ], - [ - -73.450334, - 45.567755 - ], - [ - -73.450334, - 45.56775 - ], - [ - -73.450335, - 45.567746 - ], - [ - -73.450336, - 45.567741 - ], - [ - -73.450336, - 45.567737 - ], - [ - -73.450337, - 45.567732 - ], - [ - -73.450337, - 45.567728 - ], - [ - -73.450338, - 45.567723 - ], - [ - -73.450339, - 45.567719 - ], - [ - -73.450339, - 45.567714 - ], - [ - -73.45034, - 45.56771 - ], - [ - -73.45034, - 45.567705 - ], - [ - -73.450341, - 45.567701 - ], - [ - -73.450342, - 45.567696 - ], - [ - -73.450342, - 45.567692 - ], - [ - -73.450343, - 45.567687 - ], - [ - -73.450343, - 45.567684 - ], - [ - -73.450343, - 45.567683 - ], - [ - -73.450344, - 45.567678 - ], - [ - -73.450345, - 45.567674 - ], - [ - -73.450345, - 45.567669 - ], - [ - -73.450346, - 45.567665 - ], - [ - -73.450346, - 45.56766 - ], - [ - -73.450347, - 45.567656 - ], - [ - -73.450347, - 45.567651 - ], - [ - -73.450348, - 45.567647 - ], - [ - -73.450348, - 45.567642 - ], - [ - -73.450349, - 45.567638 - ], - [ - -73.450349, - 45.567633 - ], - [ - -73.45035, - 45.567629 - ], - [ - -73.45035, - 45.567624 - ], - [ - -73.450351, - 45.56762 - ], - [ - -73.450351, - 45.567615 - ], - [ - -73.450352, - 45.567611 - ], - [ - -73.450352, - 45.567606 - ], - [ - -73.450353, - 45.567602 - ], - [ - -73.450353, - 45.567597 - ], - [ - -73.450353, - 45.567593 - ], - [ - -73.450354, - 45.567588 - ], - [ - -73.450355, - 45.567584 - ], - [ - -73.450355, - 45.567579 - ], - [ - -73.450355, - 45.567575 - ], - [ - -73.450356, - 45.56757 - ], - [ - -73.450356, - 45.567566 - ], - [ - -73.450357, - 45.567561 - ], - [ - -73.450357, - 45.567557 - ], - [ - -73.450357, - 45.567552 - ], - [ - -73.45036, - 45.567548 - ], - [ - -73.450706, - 45.56757 - ], - [ - -73.451488, - 45.567736 - ], - [ - -73.451687, - 45.567778 - ], - [ - -73.453217, - 45.568102 - ], - [ - -73.453357, - 45.56812 - ], - [ - -73.453474, - 45.568093 - ], - [ - -73.453572, - 45.568062 - ], - [ - -73.453627, - 45.568017 - ], - [ - -73.4543, - 45.567377 - ], - [ - -73.455401, - 45.56633 - ], - [ - -73.455798, - 45.56598 - ], - [ - -73.45622, - 45.565633 - ], - [ - -73.456591, - 45.565337 - ], - [ - -73.456659, - 45.565283 - ], - [ - -73.456935, - 45.565085 - ], - [ - -73.457152, - 45.564936 - ], - [ - -73.457933, - 45.564352 - ], - [ - -73.457944, - 45.564342 - ], - [ - -73.458351, - 45.563996 - ], - [ - -73.458919, - 45.563508 - ], - [ - -73.459333, - 45.563151 - ], - [ - -73.459614, - 45.562904 - ], - [ - -73.459937, - 45.562638 - ], - [ - -73.460365, - 45.562319 - ], - [ - -73.460677, - 45.562085 - ], - [ - -73.460721, - 45.562027 - ], - [ - -73.460736, - 45.561977 - ], - [ - -73.460735, - 45.561923 - ], - [ - -73.460731, - 45.561644 - ], - [ - -73.461416, - 45.561625 - ], - [ - -73.461679, - 45.561618 - ], - [ - -73.461978, - 45.561613 - ], - [ - -73.46207, - 45.561609 - ], - [ - -73.462165, - 45.561609 - ], - [ - -73.46239, - 45.561604 - ], - [ - -73.462462, - 45.561604 - ], - [ - -73.463036, - 45.561587 - ], - [ - -73.463459, - 45.561555 - ], - [ - -73.463851, - 45.561519 - ], - [ - -73.464159, - 45.561474 - ], - [ - -73.464383, - 45.56143 - ], - [ - -73.464635, - 45.561385 - ], - [ - -73.464943, - 45.561331 - ], - [ - -73.465298, - 45.56125 - ], - [ - -73.465606, - 45.561173 - ], - [ - -73.465754, - 45.561132 - ], - [ - -73.465993, - 45.561066 - ], - [ - -73.466384, - 45.560949 - ], - [ - -73.466692, - 45.560841 - ], - [ - -73.46697, - 45.560742 - ], - [ - -73.467261, - 45.560621 - ], - [ - -73.467525, - 45.560508 - ], - [ - -73.467816, - 45.560373 - ], - [ - -73.467979, - 45.560279 - ], - [ - -73.468117, - 45.560229 - ], - [ - -73.468235, - 45.560175 - ], - [ - -73.468563, - 45.559978 - ], - [ - -73.468878, - 45.559766 - ], - [ - -73.468988, - 45.55969 - ], - [ - -73.469567, - 45.559298 - ], - [ - -73.469584, - 45.559286 - ], - [ - -73.469855, - 45.559096 - ], - [ - -73.470074, - 45.558948 - ], - [ - -73.470271, - 45.558867 - ], - [ - -73.470377, - 45.558826 - ], - [ - -73.470556, - 45.558786 - ], - [ - -73.470677, - 45.558768 - ], - [ - -73.47078, - 45.558763 - ], - [ - -73.470896, - 45.558763 - ], - [ - -73.471076, - 45.558777 - ], - [ - -73.471256, - 45.558813 - ], - [ - -73.471446, - 45.558885 - ], - [ - -73.471642, - 45.558966 - ], - [ - -73.472161, - 45.559358 - ], - [ - -73.472928, - 45.559934 - ], - [ - -73.473173, - 45.560121 - ], - [ - -73.474135, - 45.560856 - ], - [ - -73.474224, - 45.560924 - ], - [ - -73.475111, - 45.561594 - ], - [ - -73.475608, - 45.561971 - ], - [ - -73.475818, - 45.56213 - ], - [ - -73.472935, - 45.563954 - ], - [ - -73.472712, - 45.564095 - ], - [ - -73.47094, - 45.565233 - ], - [ - -73.470335, - 45.565624 - ], - [ - -73.470076, - 45.565791 - ], - [ - -73.468341, - 45.566893 - ], - [ - -73.468142, - 45.567019 - ], - [ - -73.466549, - 45.568037 - ], - [ - -73.465336, - 45.568813 - ], - [ - -73.464662, - 45.56924 - ], - [ - -73.464421, - 45.56942 - ], - [ - -73.464344, - 45.569488 - ], - [ - -73.464296, - 45.569568 - ], - [ - -73.463994, - 45.570279 - ], - [ - -73.463957, - 45.570362 - ], - [ - -73.463591, - 45.571183 - ], - [ - -73.463385, - 45.571624 - ], - [ - -73.46338, - 45.571638 - ], - [ - -73.463283, - 45.571903 - ], - [ - -73.463215, - 45.57207 - ], - [ - -73.462953, - 45.572672 - ], - [ - -73.46281, - 45.573 - ], - [ - -73.462729, - 45.573185 - ], - [ - -73.462548, - 45.573595 - ], - [ - -73.462399, - 45.573946 - ], - [ - -73.462373, - 45.574006 - ], - [ - -73.462297, - 45.574179 - ], - [ - -73.462109, - 45.574629 - ], - [ - -73.463036, - 45.574827 - ], - [ - -73.46435, - 45.575107 - ], - [ - -73.465403, - 45.575332 - ], - [ - -73.468543, - 45.576013 - ], - [ - -73.468815, - 45.575707 - ], - [ - -73.471017, - 45.573237 - ], - [ - -73.47172, - 45.572444 - ], - [ - -73.471786, - 45.572369 - ], - [ - -73.473003, - 45.571003 - ], - [ - -73.473129, - 45.570862 - ], - [ - -73.474328, - 45.569528 - ], - [ - -73.474569, - 45.569261 - ], - [ - -73.47645, - 45.567194 - ], - [ - -73.476555, - 45.567079 - ], - [ - -73.478585, - 45.56483 - ], - [ - -73.478778, - 45.564622 - ], - [ - -73.47891, - 45.564479 - ], - [ - -73.479552, - 45.564964 - ], - [ - -73.480326, - 45.56555 - ], - [ - -73.4804, - 45.565606 - ], - [ - -73.480497, - 45.56568 - ], - [ - -73.482497, - 45.567199 - ], - [ - -73.482644, - 45.56731 - ], - [ - -73.483848, - 45.568221 - ], - [ - -73.484053, - 45.568376 - ], - [ - -73.484489, - 45.568691 - ], - [ - -73.484675, - 45.568831 - ], - [ - -73.484833, - 45.568931 - ], - [ - -73.48493, - 45.568993 - ], - [ - -73.485344, - 45.569308 - ], - [ - -73.48556, - 45.569529 - ], - [ - -73.485603, - 45.569573 - ], - [ - -73.485637, - 45.569627 - ], - [ - -73.485662, - 45.569681 - ], - [ - -73.485673, - 45.569726 - ], - [ - -73.485673, - 45.569767 - ], - [ - -73.48567, - 45.569825 - ], - [ - -73.485662, - 45.569906 - ], - [ - -73.485627, - 45.569986 - ], - [ - -73.485317, - 45.570269 - ], - [ - -73.485248, - 45.570333 - ], - [ - -73.484918, - 45.570637 - ], - [ - -73.484877, - 45.570674 - ], - [ - -73.484851, - 45.570698 - ], - [ - -73.484572, - 45.570948 - ], - [ - -73.484207, - 45.571258 - ], - [ - -73.484112, - 45.571335 - ], - [ - -73.483938, - 45.571475 - ], - [ - -73.483827, - 45.571565 - ], - [ - -73.483769, - 45.571618 - ], - [ - -73.483704, - 45.571572 - ], - [ - -73.482973, - 45.571016 - ], - [ - -73.482377, - 45.570563 - ], - [ - -73.481862, - 45.570157 - ] - ] - }, - "id": 216, - "properties": { - "id": "f28bda49-9958-49ae-8036-4cfe19e4cbf8", - "data": { - "gtfs": { - "shape_id": "123_2_R" - }, - "segments": [ - { - "distanceMeters": 631, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 571, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 331, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 542, - "travelTimeSeconds": 101 - }, - { - "distanceMeters": 396, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 558, - "travelTimeSeconds": 104 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 343, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 390, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 436, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 418, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 411, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 405, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 457, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 90, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 371, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 345, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 366, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 472, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 327, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 382, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 428, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 339, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 62 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 354, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 24360, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5993.066645974276, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.88, - "travelTimeWithoutDwellTimesSeconds": 3540, - "operatingTimeWithLayoverTimeSeconds": 3894, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3540, - "operatingSpeedWithLayoverMetersPerSecond": 6.26, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.88 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "acabc807-b0f5-4579-b183-cef0484a7cc2", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "a4d70496-3fc5-40c1-865f-08991bdf0a19", - "3e3330f1-b4ce-44de-ae6a-efb45bab99e2", - "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", - "54cba115-6a75-4b65-8019-b2b5de7a3947", - "05287baf-76e5-4533-8eef-0902c45b01ae", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", - "315b8823-6c3a-493b-9af5-7325cbc48096", - "64ba3e91-9bea-4655-ac42-4f3f1a14955c", - "5a82a520-52b6-417e-972a-f9bf56fb4f33", - "e1825eb4-cef2-4f98-872f-0d169be63859", - "6c122298-4ea6-41ee-91e8-bb29cb41a320", - "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", - "777c347b-29df-4aab-9968-5fdfd62ed61a", - "e1a9e623-935b-47b9-a038-bcbd5a33f95e", - "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", - "146e7d43-1e02-4f93-ac9a-e66dd29d3576", - "a5ca0f69-bb6f-4ef0-aaaa-1498b5ff9d00", - "cc82fbc3-882e-47d6-b5d3-94ced115eefc", - "74d09865-876b-4428-9441-1504fb3f52bd", - "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", - "6beffd5a-a5e7-4808-863a-90505f6172be", - "8746746f-daed-4d54-a90f-724d51454ae1", - "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "ead7d270-6dcb-4161-af5c-95bec6715688", - "c24ac61d-1b21-4358-b45f-8dd4921fc769", - "f1d63efc-c02d-4bb9-828b-ddc2e062546b", - "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", - "1254d090-1d68-478c-a4fc-972cd246c948", - "43f18805-a4b1-4fc6-a1c9-787eb883bcde", - "946a029d-014a-45ca-adcd-e5b8e3927d52", - "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", - "92a52522-0981-490b-a541-e3514efa3ed8", - "e525780c-4598-49cd-b6ff-8b911e2c9385", - "b567475e-2b46-4378-9adc-08b4cc99ad7e", - "b1e0c9f3-01ed-4b74-ab1d-f413050d3022", - "317463e6-5f58-49bb-9db5-183bfb37f7c6", - "c6e39e27-f6a2-4102-b237-b49f8c28ddda", - "52b4b9f4-5da9-4e8b-83a9-0be3d15c1d16", - "3babd96f-413d-4615-8f50-ca3cd1b6b052", - "fafd80b0-6ccf-4eb9-acda-4d93a4bf6736", - "b734f683-dc9f-47d6-a659-53e6bf9d2915", - "072328a7-3894-4360-8b61-c1e252d6cd3a", - "0041d8ec-3bef-4a62-90da-3711f5d509d2", - "1af3fbef-32b4-454e-9289-b300f3b4ddb1", - "b9a0be89-8d55-4f3c-ae5f-e8c732f903dc", - "ff4a3e03-c804-4002-b3d4-f9bc873fc550", - "ab684dee-c058-4d37-851f-c3b6a26b599d", - "8663e9fe-e135-44e5-ac98-e3cb896c6c45", - "26e46bda-74e3-4f09-b95f-139d0b7fb0af", - "bd1fa046-c7cd-4878-bf5b-177b8bb772d6", - "2017e3ec-fe66-4e73-9fb7-567ac5f8a472", - "5573e81d-639b-42bb-a768-ad52df79de56", - "e979db3f-26cd-41d5-8708-f07b7090bef0", - "33622e57-d444-4916-a7fb-d1fa4643eb90", - "ae6e0f03-aee3-4f3b-9a79-98bb90a35a7a", - "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "aff34f6b-5801-4e1a-bc66-3990844e0b4e", - "bd467e22-a975-40b8-9a7a-9801529c3237", - "9ff5cf2b-10c7-49b1-8a66-4ecc0e2b17d7", - "adc9bcc9-8f6d-49e9-b7de-68b4f56033f4", - "28b7e465-7627-4587-950e-0fe104f1bac7", - "83389414-0049-46f6-a04b-557250511611", - "5ed15359-4097-46e8-93c0-1b63029d1081", - "b15716e4-5653-476c-ba57-960f89ea42d5", - "3b263b94-6ffe-4e7f-87fe-8aae005ee725", - "e01682ec-7470-4db5-8b9e-ac8823b81e39", - "5f1f8694-7622-42a2-a482-eb0612df0756", - "7330c47a-92ea-4650-a95f-c6010983e0e2", - "e72de034-4bad-4c42-9f05-b66c808b840c", - "ddf509a6-0c36-4863-8c49-8e568d69fa14", - "b00ce62b-a3af-454b-8eb4-951ab271a0e2", - "6d171932-b1c9-4deb-8ccf-3f09a5ce25f5", - "b5bdde0b-f4ea-4dda-8556-5a9c093cee1e", - "1532a7e6-19bb-482a-881b-1cf8dd8416ed", - "3be8bc80-2551-4dbe-a3e5-58d302899fd6", - "ffb5020e-4dcf-4cee-9d46-621fd641098b", - "a0c45e7b-af06-4ea8-a82a-a658b829e198", - "3fa535d7-2c06-4fc3-ac22-347da96e9a38", - "cbdc89b0-549e-41a3-becc-56a1e8c831ce", - "3e6f6ee6-af44-48b8-9b96-431c0dfdb40c", - "84f7a7c0-b176-49cc-89e3-6756a3c3e4cc", - "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", - "0e909db9-b45c-44fa-bfff-a89f751e1acf", - "1c1d06bf-7e76-429d-9eb4-4a4d4d2842d4", - "24527bed-7ea6-44d6-b6db-18ac609f4938", - "ef393841-8a29-4383-a7b9-545addf087f6" - ], - "stops": [], - "line_id": "5d0af399-f114-40f4-b24c-1e73275b3a37", - "segments": [ - 0, - 39, - 56, - 63, - 68, - 74, - 85, - 87, - 89, - 92, - 94, - 96, - 98, - 100, - 102, - 104, - 106, - 108, - 121, - 124, - 133, - 139, - 144, - 146, - 154, - 156, - 157, - 163, - 169, - 176, - 182, - 188, - 192, - 198, - 200, - 203, - 214, - 220, - 227, - 241, - 245, - 258, - 261, - 264, - 268, - 270, - 278, - 282, - 285, - 296, - 301, - 302, - 309, - 315, - 321, - 323, - 344, - 358, - 366, - 424, - 604, - 644, - 648, - 653, - 655, - 665, - 681, - 696, - 712, - 715, - 717, - 720, - 722, - 724, - 731, - 734, - 738, - 742, - 746, - 749, - 751, - 753, - 755, - 757, - 760, - 765, - 766, - 768, - 775, - 792 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 216, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.481862, - 45.570157 - ], - [ - -73.481822, - 45.570126 - ], - [ - -73.481332, - 45.569766 - ], - [ - -73.481257, - 45.569712 - ], - [ - -73.480428, - 45.569077 - ], - [ - -73.479866, - 45.568647 - ], - [ - -73.479009, - 45.567991 - ], - [ - -73.47867, - 45.567732 - ], - [ - -73.47894, - 45.567404 - ], - [ - -73.479087, - 45.567238 - ], - [ - -73.479946, - 45.566274 - ], - [ - -73.480076, - 45.566265 - ], - [ - -73.480517, - 45.566553 - ], - [ - -73.48115, - 45.567044 - ], - [ - -73.481186, - 45.567156 - ], - [ - -73.481181, - 45.5673 - ], - [ - -73.481322, - 45.567426 - ], - [ - -73.481439, - 45.567515 - ], - [ - -73.481715, - 45.567724 - ], - [ - -73.481834, - 45.567813 - ], - [ - -73.482499, - 45.567399 - ], - [ - -73.482644, - 45.56731 - ], - [ - -73.482793, - 45.567251 - ], - [ - -73.4815, - 45.566273 - ], - [ - -73.480444, - 45.565474 - ], - [ - -73.480073, - 45.565193 - ], - [ - -73.479021, - 45.564398 - ], - [ - -73.47891, - 45.564479 - ], - [ - -73.478585, - 45.56483 - ], - [ - -73.478566, - 45.564851 - ], - [ - -73.47812, - 45.565345 - ], - [ - -73.476681, - 45.566939 - ], - [ - -73.476555, - 45.567079 - ], - [ - -73.474702, - 45.569114 - ], - [ - -73.474569, - 45.569261 - ], - [ - -73.473259, - 45.570718 - ], - [ - -73.473129, - 45.570862 - ], - [ - -73.471786, - 45.572369 - ], - [ - -73.471784, - 45.572371 - ], - [ - -73.471017, - 45.573237 - ], - [ - -73.468663, - 45.575878 - ], - [ - -73.468543, - 45.576013 - ], - [ - -73.465403, - 45.575332 - ], - [ - -73.464209, - 45.575078 - ], - [ - -73.463036, - 45.574827 - ], - [ - -73.462109, - 45.574629 - ], - [ - -73.462297, - 45.574179 - ], - [ - -73.462304, - 45.574165 - ], - [ - -73.462399, - 45.573946 - ], - [ - -73.462548, - 45.573595 - ], - [ - -73.462729, - 45.573185 - ], - [ - -73.462953, - 45.572672 - ], - [ - -73.463215, - 45.57207 - ], - [ - -73.463283, - 45.571903 - ], - [ - -73.463343, - 45.571739 - ], - [ - -73.463385, - 45.571624 - ], - [ - -73.463591, - 45.571183 - ], - [ - -73.463905, - 45.570479 - ], - [ - -73.463994, - 45.570279 - ], - [ - -73.464296, - 45.569568 - ], - [ - -73.464344, - 45.569488 - ], - [ - -73.464421, - 45.56942 - ], - [ - -73.464662, - 45.56924 - ], - [ - -73.465336, - 45.568813 - ], - [ - -73.466184, - 45.568271 - ], - [ - -73.467927, - 45.567156 - ], - [ - -73.468142, - 45.567019 - ], - [ - -73.469932, - 45.565882 - ], - [ - -73.470076, - 45.565791 - ], - [ - -73.47094, - 45.565233 - ], - [ - -73.47255, - 45.564199 - ], - [ - -73.472712, - 45.564095 - ], - [ - -73.475528, - 45.562313 - ], - [ - -73.475818, - 45.56213 - ], - [ - -73.475938, - 45.562049 - ], - [ - -73.47554, - 45.561748 - ], - [ - -73.475231, - 45.561513 - ], - [ - -73.474585, - 45.561026 - ], - [ - -73.474451, - 45.560924 - ], - [ - -73.474349, - 45.560847 - ], - [ - -73.474262, - 45.560781 - ], - [ - -73.473051, - 45.559853 - ], - [ - -73.472951, - 45.559778 - ], - [ - -73.472285, - 45.559277 - ], - [ - -73.471768, - 45.558881 - ], - [ - -73.471028, - 45.558322 - ], - [ - -73.470903, - 45.558228 - ], - [ - -73.470793, - 45.5583 - ], - [ - -73.469991, - 45.558844 - ], - [ - -73.469731, - 45.558997 - ], - [ - -73.469504, - 45.559151 - ], - [ - -73.46926, - 45.559316 - ], - [ - -73.468792, - 45.559631 - ], - [ - -73.468729, - 45.559676 - ], - [ - -73.468547, - 45.559798 - ], - [ - -73.467979, - 45.560279 - ], - [ - -73.467816, - 45.560373 - ], - [ - -73.467525, - 45.560508 - ], - [ - -73.467261, - 45.560621 - ], - [ - -73.46697, - 45.560742 - ], - [ - -73.466692, - 45.560841 - ], - [ - -73.466384, - 45.560949 - ], - [ - -73.466154, - 45.561017 - ], - [ - -73.465993, - 45.561066 - ], - [ - -73.465606, - 45.561173 - ], - [ - -73.465298, - 45.56125 - ], - [ - -73.464943, - 45.561331 - ], - [ - -73.464635, - 45.561385 - ], - [ - -73.464383, - 45.56143 - ], - [ - -73.464342, - 45.561416 - ], - [ - -73.46391, - 45.56142 - ], - [ - -73.463676, - 45.561411 - ], - [ - -73.463469, - 45.561416 - ], - [ - -73.463235, - 45.561434 - ], - [ - -73.463014, - 45.561456 - ], - [ - -73.462671, - 45.561478 - ], - [ - -73.462516, - 45.561483 - ], - [ - -73.462171, - 45.561492 - ], - [ - -73.461975, - 45.561496 - ], - [ - -73.460725, - 45.561527 - ], - [ - -73.460731, - 45.561644 - ], - [ - -73.460735, - 45.561923 - ], - [ - -73.460736, - 45.561977 - ], - [ - -73.460721, - 45.562027 - ], - [ - -73.460677, - 45.562085 - ], - [ - -73.460365, - 45.562319 - ], - [ - -73.459937, - 45.562638 - ], - [ - -73.459846, - 45.562713 - ], - [ - -73.459614, - 45.562904 - ], - [ - -73.459333, - 45.563151 - ], - [ - -73.459051, - 45.563394 - ], - [ - -73.458351, - 45.563996 - ], - [ - -73.457933, - 45.564352 - ], - [ - -73.457152, - 45.564936 - ], - [ - -73.457095, - 45.564976 - ], - [ - -73.456935, - 45.565085 - ], - [ - -73.456659, - 45.565283 - ], - [ - -73.45622, - 45.565633 - ], - [ - -73.455798, - 45.56598 - ], - [ - -73.455597, - 45.566157 - ], - [ - -73.455401, - 45.56633 - ], - [ - -73.45415, - 45.56752 - ], - [ - -73.453627, - 45.568017 - ], - [ - -73.453572, - 45.568062 - ], - [ - -73.453474, - 45.568093 - ], - [ - -73.453357, - 45.56812 - ], - [ - -73.453217, - 45.568102 - ], - [ - -73.451687, - 45.567778 - ], - [ - -73.451488, - 45.567736 - ], - [ - -73.450706, - 45.56757 - ], - [ - -73.45059, - 45.567563 - ], - [ - -73.45036, - 45.567548 - ], - [ - -73.450115, - 45.567548 - ], - [ - -73.450114, - 45.567557 - ], - [ - -73.450113, - 45.567561 - ], - [ - -73.450112, - 45.56757 - ], - [ - -73.450111, - 45.567575 - ], - [ - -73.45011, - 45.567584 - ], - [ - -73.450109, - 45.567593 - ], - [ - -73.450108, - 45.567597 - ], - [ - -73.450107, - 45.567606 - ], - [ - -73.450106, - 45.567611 - ], - [ - -73.450105, - 45.56762 - ], - [ - -73.450104, - 45.567629 - ], - [ - -73.450103, - 45.567633 - ], - [ - -73.450102, - 45.567642 - ], - [ - -73.450101, - 45.567647 - ], - [ - -73.4501, - 45.567656 - ], - [ - -73.450099, - 45.56766 - ], - [ - -73.450098, - 45.567669 - ], - [ - -73.450097, - 45.567678 - ], - [ - -73.450096, - 45.567683 - ], - [ - -73.450095, - 45.567691 - ], - [ - -73.450093, - 45.567696 - ], - [ - -73.450092, - 45.567705 - ], - [ - -73.450091, - 45.567714 - ], - [ - -73.45009, - 45.567718 - ], - [ - -73.450089, - 45.567727 - ], - [ - -73.450088, - 45.567732 - ], - [ - -73.450087, - 45.567741 - ], - [ - -73.450085, - 45.56775 - ], - [ - -73.450084, - 45.567754 - ], - [ - -73.450083, - 45.567763 - ], - [ - -73.450082, - 45.567768 - ], - [ - -73.450081, - 45.567777 - ], - [ - -73.450079, - 45.567781 - ], - [ - -73.450078, - 45.56779 - ], - [ - -73.450077, - 45.567799 - ], - [ - -73.450075, - 45.567804 - ], - [ - -73.450074, - 45.567813 - ], - [ - -73.450073, - 45.567817 - ], - [ - -73.450071, - 45.567826 - ], - [ - -73.45007, - 45.567835 - ], - [ - -73.450069, - 45.56784 - ], - [ - -73.450067, - 45.567849 - ], - [ - -73.450066, - 45.567853 - ], - [ - -73.450065, - 45.567862 - ], - [ - -73.450063, - 45.567871 - ], - [ - -73.450062, - 45.567876 - ], - [ - -73.45006, - 45.567885 - ], - [ - -73.450059, - 45.567889 - ], - [ - -73.450058, - 45.567898 - ], - [ - -73.450056, - 45.567903 - ], - [ - -73.450055, - 45.567912 - ], - [ - -73.450054, - 45.567921 - ], - [ - -73.450052, - 45.567925 - ], - [ - -73.450051, - 45.567934 - ], - [ - -73.450049, - 45.567939 - ], - [ - -73.450048, - 45.567948 - ], - [ - -73.450046, - 45.567957 - ], - [ - -73.450045, - 45.567961 - ], - [ - -73.450043, - 45.56797 - ], - [ - -73.450042, - 45.567975 - ], - [ - -73.45004, - 45.567984 - ], - [ - -73.450039, - 45.567988 - ], - [ - -73.450037, - 45.567997 - ], - [ - -73.450036, - 45.568006 - ], - [ - -73.450034, - 45.568011 - ], - [ - -73.450032, - 45.56802 - ], - [ - -73.450031, - 45.568024 - ], - [ - -73.450029, - 45.568033 - ], - [ - -73.450028, - 45.568042 - ], - [ - -73.450026, - 45.568047 - ], - [ - -73.450024, - 45.568056 - ], - [ - -73.450023, - 45.56806 - ], - [ - -73.450021, - 45.568069 - ], - [ - -73.450019, - 45.568074 - ], - [ - -73.450017, - 45.568083 - ], - [ - -73.450016, - 45.568092 - ], - [ - -73.450014, - 45.568096 - ], - [ - -73.450013, - 45.568105 - ], - [ - -73.450011, - 45.56811 - ], - [ - -73.450009, - 45.568119 - ], - [ - -73.450007, - 45.568123 - ], - [ - -73.450006, - 45.568132 - ], - [ - -73.450004, - 45.568141 - ], - [ - -73.450002, - 45.568146 - ], - [ - -73.45, - 45.568155 - ], - [ - -73.449999, - 45.568159 - ], - [ - -73.449997, - 45.568168 - ], - [ - -73.449995, - 45.568173 - ], - [ - -73.449993, - 45.568182 - ], - [ - -73.449991, - 45.568191 - ], - [ - -73.449989, - 45.568195 - ], - [ - -73.449988, - 45.568204 - ], - [ - -73.449986, - 45.568209 - ], - [ - -73.449984, - 45.568218 - ], - [ - -73.449982, - 45.568227 - ], - [ - -73.44998, - 45.568231 - ], - [ - -73.449978, - 45.56824 - ], - [ - -73.449976, - 45.568245 - ], - [ - -73.449974, - 45.568254 - ], - [ - -73.449972, - 45.568258 - ], - [ - -73.44997, - 45.568267 - ], - [ - -73.449968, - 45.568276 - ], - [ - -73.449967, - 45.568281 - ], - [ - -73.449965, - 45.56829 - ], - [ - -73.449963, - 45.568294 - ], - [ - -73.449961, - 45.568303 - ], - [ - -73.449959, - 45.568308 - ], - [ - -73.449957, - 45.568317 - ], - [ - -73.449955, - 45.568326 - ], - [ - -73.449953, - 45.56833 - ], - [ - -73.449951, - 45.568339 - ], - [ - -73.449949, - 45.568344 - ], - [ - -73.449946, - 45.568353 - ], - [ - -73.449944, - 45.568357 - ], - [ - -73.449942, - 45.568366 - ], - [ - -73.44994, - 45.568371 - ], - [ - -73.449938, - 45.56838 - ], - [ - -73.449936, - 45.568389 - ], - [ - -73.449934, - 45.568393 - ], - [ - -73.449932, - 45.568402 - ], - [ - -73.44993, - 45.568407 - ], - [ - -73.449927, - 45.568416 - ], - [ - -73.449925, - 45.56842 - ], - [ - -73.449923, - 45.568429 - ], - [ - -73.449921, - 45.568438 - ], - [ - -73.449919, - 45.568443 - ], - [ - -73.449917, - 45.568452 - ], - [ - -73.449915, - 45.568456 - ], - [ - -73.449912, - 45.568465 - ], - [ - -73.44991, - 45.56847 - ], - [ - -73.449908, - 45.568479 - ], - [ - -73.449905, - 45.568488 - ], - [ - -73.449903, - 45.568492 - ], - [ - -73.449901, - 45.568501 - ], - [ - -73.449899, - 45.568506 - ], - [ - -73.449897, - 45.568515 - ], - [ - -73.449894, - 45.568519 - ], - [ - -73.449892, - 45.568528 - ], - [ - -73.449889, - 45.568533 - ], - [ - -73.449887, - 45.568542 - ], - [ - -73.449885, - 45.568551 - ], - [ - -73.449883, - 45.568555 - ], - [ - -73.44988, - 45.568564 - ], - [ - -73.449878, - 45.568569 - ], - [ - -73.449875, - 45.568578 - ], - [ - -73.449873, - 45.568582 - ], - [ - -73.44987, - 45.568591 - ], - [ - -73.449868, - 45.568596 - ], - [ - -73.449866, - 45.568605 - ], - [ - -73.449863, - 45.568614 - ], - [ - -73.449861, - 45.568618 - ], - [ - -73.449856, - 45.568632 - ], - [ - -73.449825, - 45.568708 - ], - [ - -73.449762, - 45.568861 - ], - [ - -73.449744, - 45.568903 - ], - [ - -73.44963, - 45.569168 - ], - [ - -73.449277, - 45.569995 - ], - [ - -73.449112, - 45.570242 - ], - [ - -73.449055, - 45.570278 - ], - [ - -73.448989, - 45.570323 - ], - [ - -73.448955, - 45.570337 - ], - [ - -73.448919, - 45.57035 - ], - [ - -73.448874, - 45.570359 - ], - [ - -73.44882, - 45.570368 - ], - [ - -73.448494, - 45.570395 - ], - [ - -73.448177, - 45.570336 - ], - [ - -73.447945, - 45.570309 - ], - [ - -73.447268, - 45.570177 - ], - [ - -73.4464, - 45.570007 - ], - [ - -73.446311, - 45.569989 - ], - [ - -73.446194, - 45.569957 - ], - [ - -73.446079, - 45.569912 - ], - [ - -73.44598, - 45.569845 - ], - [ - -73.445832, - 45.569723 - ], - [ - -73.445351, - 45.56935 - ], - [ - -73.445158, - 45.569201 - ], - [ - -73.444719, - 45.568877 - ], - [ - -73.444688, - 45.568854 - ], - [ - -73.444286, - 45.568557 - ], - [ - -73.443979, - 45.568764 - ], - [ - -73.443832, - 45.568863 - ], - [ - -73.443704, - 45.568948 - ], - [ - -73.443677, - 45.568966 - ], - [ - -73.443538, - 45.569043 - ], - [ - -73.443322, - 45.569133 - ], - [ - -73.443045, - 45.5692 - ], - [ - -73.442527, - 45.569294 - ], - [ - -73.442212, - 45.569352 - ], - [ - -73.441998, - 45.569399 - ], - [ - -73.441923, - 45.569415 - ], - [ - -73.441739, - 45.569478 - ], - [ - -73.441592, - 45.56955 - ], - [ - -73.441481, - 45.569618 - ], - [ - -73.441372, - 45.56968 - ], - [ - -73.441093, - 45.56986 - ], - [ - -73.440888, - 45.569991 - ], - [ - -73.440655, - 45.570126 - ], - [ - -73.440467, - 45.570242 - ], - [ - -73.440242, - 45.570319 - ], - [ - -73.440086, - 45.57035 - ], - [ - -73.439895, - 45.570355 - ], - [ - -73.439704, - 45.570327 - ], - [ - -73.439504, - 45.570287 - ], - [ - -73.439161, - 45.57021 - ], - [ - -73.438658, - 45.570103 - ], - [ - -73.435124, - 45.569346 - ], - [ - -73.434565, - 45.569227 - ], - [ - -73.43204, - 45.568685 - ], - [ - -73.431098, - 45.568523 - ], - [ - -73.430715, - 45.56846 - ], - [ - -73.429654, - 45.568351 - ], - [ - -73.429299, - 45.568326 - ], - [ - -73.429087, - 45.56831 - ], - [ - -73.428869, - 45.568301 - ], - [ - -73.42857, - 45.568283 - ], - [ - -73.428157, - 45.568269 - ], - [ - -73.42731, - 45.568269 - ], - [ - -73.427224, - 45.56827 - ], - [ - -73.427035, - 45.568273 - ], - [ - -73.426718, - 45.568291 - ], - [ - -73.426353, - 45.568309 - ], - [ - -73.426077, - 45.568322 - ], - [ - -73.425785, - 45.56834 - ], - [ - -73.425418, - 45.568357 - ], - [ - -73.424113, - 45.568433 - ], - [ - -73.423194, - 45.568484 - ], - [ - -73.421237, - 45.568594 - ], - [ - -73.420049, - 45.56866 - ], - [ - -73.418871, - 45.568717 - ], - [ - -73.418371, - 45.56874 - ], - [ - -73.418293, - 45.568738 - ], - [ - -73.418086, - 45.568735 - ], - [ - -73.417818, - 45.568703 - ], - [ - -73.417552, - 45.568658 - ], - [ - -73.417323, - 45.56859 - ], - [ - -73.417173, - 45.568543 - ], - [ - -73.417083, - 45.568514 - ], - [ - -73.416867, - 45.568415 - ], - [ - -73.416624, - 45.568288 - ], - [ - -73.416469, - 45.568185 - ], - [ - -73.416326, - 45.568081 - ], - [ - -73.416163, - 45.567924 - ], - [ - -73.415771, - 45.567553 - ], - [ - -73.415619, - 45.56741 - ], - [ - -73.415452, - 45.567253 - ], - [ - -73.417438, - 45.566153 - ], - [ - -73.419551, - 45.564984 - ], - [ - -73.420284, - 45.564575 - ], - [ - -73.420525, - 45.56444 - ], - [ - -73.420894, - 45.564251 - ], - [ - -73.42122, - 45.564089 - ], - [ - -73.421549, - 45.563919 - ], - [ - -73.422142, - 45.563568 - ], - [ - -73.423897, - 45.562597 - ], - [ - -73.424088, - 45.562481 - ], - [ - -73.424434, - 45.562242 - ], - [ - -73.424923, - 45.561876 - ], - [ - -73.425154, - 45.561703 - ], - [ - -73.425956, - 45.561002 - ], - [ - -73.427334, - 45.559799 - ], - [ - -73.427837, - 45.559361 - ], - [ - -73.42839, - 45.558857 - ], - [ - -73.428867, - 45.558437 - ], - [ - -73.429028, - 45.558295 - ], - [ - -73.429313, - 45.558012 - ], - [ - -73.430708, - 45.556663 - ], - [ - -73.430877, - 45.556495 - ], - [ - -73.431306, - 45.556069 - ], - [ - -73.431717, - 45.555725 - ], - [ - -73.431789, - 45.555665 - ], - [ - -73.432223, - 45.555346 - ], - [ - -73.43246, - 45.555188 - ], - [ - -73.432543, - 45.555134 - ], - [ - -73.432999, - 45.554887 - ], - [ - -73.434256, - 45.554213 - ], - [ - -73.434483, - 45.554083 - ], - [ - -73.434649, - 45.553975 - ], - [ - -73.434849, - 45.553835 - ], - [ - -73.435021, - 45.553701 - ], - [ - -73.435159, - 45.553588 - ], - [ - -73.435328, - 45.55344 - ], - [ - -73.435547, - 45.553237 - ], - [ - -73.435846, - 45.552946 - ], - [ - -73.436155, - 45.552644 - ], - [ - -73.437097, - 45.551709 - ], - [ - -73.437356, - 45.551461 - ], - [ - -73.437494, - 45.551342 - ], - [ - -73.437695, - 45.551168 - ], - [ - -73.438055, - 45.550908 - ], - [ - -73.438308, - 45.55075 - ], - [ - -73.438588, - 45.550594 - ], - [ - -73.4388, - 45.550495 - ], - [ - -73.438978, - 45.550409 - ], - [ - -73.439152, - 45.550343 - ], - [ - -73.43928, - 45.550298 - ], - [ - -73.439643, - 45.550168 - ], - [ - -73.440159, - 45.550002 - ], - [ - -73.440332, - 45.549946 - ], - [ - -73.441022, - 45.549723 - ], - [ - -73.441088, - 45.549701 - ], - [ - -73.441826, - 45.549464 - ], - [ - -73.441907, - 45.549437 - ], - [ - -73.441912, - 45.549436 - ], - [ - -73.442568, - 45.549225 - ], - [ - -73.442788, - 45.549153 - ], - [ - -73.443304, - 45.548985 - ], - [ - -73.44402, - 45.548753 - ], - [ - -73.444376, - 45.548638 - ], - [ - -73.444762, - 45.548514 - ], - [ - -73.445417, - 45.548304 - ], - [ - -73.446657, - 45.547903 - ], - [ - -73.447022, - 45.547781 - ], - [ - -73.447424, - 45.547647 - ], - [ - -73.447629, - 45.547579 - ], - [ - -73.447947, - 45.54746 - ], - [ - -73.448002, - 45.54744 - ], - [ - -73.448339, - 45.547305 - ], - [ - -73.448543, - 45.547215 - ], - [ - -73.448831, - 45.547062 - ], - [ - -73.449103, - 45.546914 - ], - [ - -73.449271, - 45.546806 - ], - [ - -73.449736, - 45.546505 - ], - [ - -73.449968, - 45.546338 - ], - [ - -73.450536, - 45.545946 - ], - [ - -73.4506, - 45.545902 - ], - [ - -73.451253, - 45.545453 - ], - [ - -73.452347, - 45.544686 - ], - [ - -73.452491, - 45.544585 - ], - [ - -73.453733, - 45.543739 - ], - [ - -73.453772, - 45.543712 - ], - [ - -73.454376, - 45.543288 - ], - [ - -73.454766, - 45.543014 - ], - [ - -73.455166, - 45.542732 - ], - [ - -73.455282, - 45.54266 - ], - [ - -73.455702, - 45.542678 - ], - [ - -73.455971, - 45.542683 - ], - [ - -73.456034, - 45.542341 - ], - [ - -73.456078, - 45.542099 - ], - [ - -73.456127, - 45.541828 - ], - [ - -73.45622, - 45.541171 - ], - [ - -73.456334, - 45.540453 - ], - [ - -73.456345, - 45.540384 - ], - [ - -73.456347, - 45.540366 - ], - [ - -73.456509, - 45.539394 - ], - [ - -73.456509, - 45.539219 - ], - [ - -73.456656, - 45.5384 - ], - [ - -73.456667, - 45.538348 - ], - [ - -73.456669, - 45.538338 - ], - [ - -73.456674, - 45.53831 - ], - [ - -73.456716, - 45.53818 - ], - [ - -73.456753, - 45.538063 - ], - [ - -73.456906, - 45.537595 - ], - [ - -73.457034, - 45.537289 - ], - [ - -73.457312, - 45.536745 - ], - [ - -73.457525, - 45.536412 - ], - [ - -73.457668, - 45.536194 - ], - [ - -73.457717, - 45.536119 - ], - [ - -73.457866, - 45.535926 - ], - [ - -73.458063, - 45.535706 - ], - [ - -73.458203, - 45.535555 - ], - [ - -73.45852, - 45.535215 - ], - [ - -73.45895, - 45.534833 - ], - [ - -73.459019, - 45.534778 - ], - [ - -73.459195, - 45.53464 - ], - [ - -73.460968, - 45.533133 - ], - [ - -73.461517, - 45.532591 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.462106, - 45.531887 - ], - [ - -73.462411, - 45.531442 - ], - [ - -73.462841, - 45.530643 - ], - [ - -73.462938, - 45.530461 - ], - [ - -73.463969, - 45.52856 - ], - [ - -73.465093, - 45.526486 - ], - [ - -73.465154, - 45.526372 - ], - [ - -73.465286, - 45.525972 - ], - [ - -73.46533, - 45.525747 - ], - [ - -73.465344, - 45.525549 - ], - [ - -73.465322, - 45.525364 - ], - [ - -73.465132, - 45.524523 - ], - [ - -73.465111, - 45.524431 - ], - [ - -73.464907, - 45.523532 - ], - [ - -73.464877, - 45.523398 - ], - [ - -73.464763, - 45.522917 - ], - [ - -73.464683, - 45.522618 - ], - [ - -73.464607, - 45.522332 - ], - [ - -73.464576, - 45.522215 - ], - [ - -73.464435, - 45.521608 - ], - [ - -73.464421, - 45.521551 - ], - [ - -73.4643, - 45.521015 - ], - [ - -73.464225, - 45.52069 - ], - [ - -73.464093, - 45.520082 - ], - [ - -73.464063, - 45.519947 - ], - [ - -73.463992, - 45.519645 - ], - [ - -73.463946, - 45.519416 - ], - [ - -73.463946, - 45.519259 - ], - [ - -73.463946, - 45.519088 - ], - [ - -73.463972, - 45.518953 - ], - [ - -73.464012, - 45.51884 - ], - [ - -73.46406, - 45.518732 - ], - [ - -73.464166, - 45.518557 - ], - [ - -73.464483, - 45.518161 - ], - [ - -73.464818, - 45.517676 - ], - [ - -73.464941, - 45.517498 - ], - [ - -73.465811, - 45.516258 - ], - [ - -73.466122, - 45.515843 - ], - [ - -73.466232, - 45.515695 - ], - [ - -73.466795, - 45.514943 - ], - [ - -73.467732, - 45.513676 - ], - [ - -73.467821, - 45.513555 - ], - [ - -73.468294, - 45.512911 - ], - [ - -73.468707, - 45.51235 - ], - [ - -73.468744, - 45.5123 - ], - [ - -73.469443, - 45.511193 - ], - [ - -73.469555, - 45.511034 - ], - [ - -73.469846, - 45.510622 - ], - [ - -73.470521, - 45.509701 - ], - [ - -73.471066, - 45.508957 - ], - [ - -73.471144, - 45.508849 - ], - [ - -73.471389, - 45.508932 - ], - [ - -73.472138, - 45.509183 - ], - [ - -73.473956, - 45.509779 - ], - [ - -73.475241, - 45.5102 - ], - [ - -73.475433, - 45.510263 - ], - [ - -73.478285, - 45.511194 - ], - [ - -73.478511, - 45.511267 - ], - [ - -73.481436, - 45.512219 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.484519, - 45.513219 - ], - [ - -73.484663, - 45.513266 - ], - [ - -73.487611, - 45.514226 - ], - [ - -73.48773, - 45.514265 - ], - [ - -73.490691, - 45.51523 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.493759, - 45.516232 - ], - [ - -73.493881, - 45.516272 - ], - [ - -73.497599, - 45.517475 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.49882, - 45.517869 - ], - [ - -73.499883, - 45.51823 - ], - [ - -73.499972, - 45.518261 - ], - [ - -73.502095, - 45.518945 - ], - [ - -73.502235, - 45.51899 - ], - [ - -73.505419, - 45.52003 - ], - [ - -73.505525, - 45.520065 - ], - [ - -73.507538, - 45.520714 - ], - [ - -73.507813, - 45.520803 - ], - [ - -73.507881, - 45.520866 - ], - [ - -73.508099, - 45.520938 - ], - [ - -73.508258, - 45.520974 - ], - [ - -73.50837, - 45.520987 - ], - [ - -73.508461, - 45.520983 - ], - [ - -73.508562, - 45.520983 - ], - [ - -73.50866, - 45.520978 - ], - [ - -73.508615, - 45.520897 - ], - [ - -73.508346, - 45.520377 - ], - [ - -73.508346, - 45.520375 - ], - [ - -73.507805, - 45.519327 - ], - [ - -73.507767, - 45.519257 - ], - [ - -73.507088, - 45.517986 - ], - [ - -73.50664, - 45.517136 - ], - [ - -73.506515, - 45.516915 - ], - [ - -73.506521, - 45.516821 - ], - [ - -73.506537, - 45.516798 - ], - [ - -73.506565, - 45.51678 - ], - [ - -73.506617, - 45.516753 - ], - [ - -73.506766, - 45.516758 - ], - [ - -73.507252, - 45.516915 - ], - [ - -73.509783, - 45.517734 - ], - [ - -73.512173, - 45.518508 - ], - [ - -73.513539, - 45.518952 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.514996, - 45.51942 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.51889, - 45.520628 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520267, - 45.521193 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520861, - 45.524416 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.520811, - 45.523427 - ] - ] - }, - "id": 217, - "properties": { - "id": "0b29bfa4-1636-4228-9a74-23349a7ee70c", - "data": { - "gtfs": { - "shape_id": "123_1_A" - }, - "segments": [ - { - "distanceMeters": 60, - "travelTimeSeconds": 6 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 83, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 523, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 460, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 371, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 558, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 444, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 469, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 471, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 310, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 360, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 312, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 455, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 330, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 1025, - "travelTimeSeconds": 203 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 846, - "travelTimeSeconds": 168 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 348, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 25027, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5993.066645974276, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.19, - "travelTimeWithoutDwellTimesSeconds": 3480, - "operatingTimeWithLayoverTimeSeconds": 3828, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3480, - "operatingSpeedWithLayoverMetersPerSecond": 6.54, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.19 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "ef393841-8a29-4383-a7b9-545addf087f6", - "ef393841-8a29-4383-a7b9-545addf087f6", - "281f350b-faae-4302-bcde-cc7831951682", - "59b13438-eb20-4204-b1fd-fe2ed2a80258", - "bc413ffa-dc65-4fc7-93f0-58dddebb3024", - "ce65fcd5-5449-4ede-b81b-9d2cd21731a7", - "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", - "3e6f6ee6-af44-48b8-9b96-431c0dfdb40c", - "cbdc89b0-549e-41a3-becc-56a1e8c831ce", - "3fa535d7-2c06-4fc3-ac22-347da96e9a38", - "a0c45e7b-af06-4ea8-a82a-a658b829e198", - "ffb5020e-4dcf-4cee-9d46-621fd641098b", - "3be8bc80-2551-4dbe-a3e5-58d302899fd6", - "1532a7e6-19bb-482a-881b-1cf8dd8416ed", - "b5bdde0b-f4ea-4dda-8556-5a9c093cee1e", - "b00ce62b-a3af-454b-8eb4-951ab271a0e2", - "ddf509a6-0c36-4863-8c49-8e568d69fa14", - "e72de034-4bad-4c42-9f05-b66c808b840c", - "7330c47a-92ea-4650-a95f-c6010983e0e2", - "5f1f8694-7622-42a2-a482-eb0612df0756", - "e01682ec-7470-4db5-8b9e-ac8823b81e39", - "31d31773-be59-456e-bce3-a8671d3f0ded", - "b15716e4-5653-476c-ba57-960f89ea42d5", - "b070e296-b686-4ba3-bf68-049018a7af21", - "83389414-0049-46f6-a04b-557250511611", - "2b894d51-a427-4850-8fae-89ed3f29388d", - "bd99fd0e-cbdd-4d16-af5c-609bbef87ee4", - "adc9bcc9-8f6d-49e9-b7de-68b4f56033f4", - "bd467e22-a975-40b8-9a7a-9801529c3237", - "6150abd1-c8f6-4045-8e3e-f50bbef79a53", - "aff34f6b-5801-4e1a-bc66-3990844e0b4e", - "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", - "33622e57-d444-4916-a7fb-d1fa4643eb90", - "e979db3f-26cd-41d5-8708-f07b7090bef0", - "5573e81d-639b-42bb-a768-ad52df79de56", - "2017e3ec-fe66-4e73-9fb7-567ac5f8a472", - "bd1fa046-c7cd-4878-bf5b-177b8bb772d6", - "26e46bda-74e3-4f09-b95f-139d0b7fb0af", - "8663e9fe-e135-44e5-ac98-e3cb896c6c45", - "ab684dee-c058-4d37-851f-c3b6a26b599d", - "ff4a3e03-c804-4002-b3d4-f9bc873fc550", - "b9a0be89-8d55-4f3c-ae5f-e8c732f903dc", - "1af3fbef-32b4-454e-9289-b300f3b4ddb1", - "0041d8ec-3bef-4a62-90da-3711f5d509d2", - "0d73df1c-f948-4c1f-ba36-487a91089d51", - "b734f683-dc9f-47d6-a659-53e6bf9d2915", - "fafd80b0-6ccf-4eb9-acda-4d93a4bf6736", - "3babd96f-413d-4615-8f50-ca3cd1b6b052", - "52b4b9f4-5da9-4e8b-83a9-0be3d15c1d16", - "c6e39e27-f6a2-4102-b237-b49f8c28ddda", - "317463e6-5f58-49bb-9db5-183bfb37f7c6", - "b1e0c9f3-01ed-4b74-ab1d-f413050d3022", - "b567475e-2b46-4378-9adc-08b4cc99ad7e", - "e525780c-4598-49cd-b6ff-8b911e2c9385", - "92a52522-0981-490b-a541-e3514efa3ed8", - "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", - "946a029d-014a-45ca-adcd-e5b8e3927d52", - "43f18805-a4b1-4fc6-a1c9-787eb883bcde", - "e4670d3f-1aa4-4e69-ac7c-0f6fbe1ebddb", - "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", - "c77b3ec3-667e-4b8e-a8ba-613daafce3d4", - "8a5c9ba1-a597-4c12-90c9-b58f8d4f8d95", - "ead7d270-6dcb-4161-af5c-95bec6715688", - "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "8746746f-daed-4d54-a90f-724d51454ae1", - "47143cf4-4cce-4e8f-bfed-223c71fcc466", - "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", - "74d09865-876b-4428-9441-1504fb3f52bd", - "334bd241-267c-4081-968b-fd0340fabe8f", - "146e7d43-1e02-4f93-ac9a-e66dd29d3576", - "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", - "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", - "f9f88325-b670-4d47-91fa-edb372992bbc", - "e1a9e623-935b-47b9-a038-bcbd5a33f95e", - "ba348c95-9f07-48ca-a139-5d5c2dd83350", - "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", - "6c122298-4ea6-41ee-91e8-bb29cb41a320", - "e1825eb4-cef2-4f98-872f-0d169be63859", - "5a82a520-52b6-417e-972a-f9bf56fb4f33", - "64ba3e91-9bea-4655-ac42-4f3f1a14955c", - "315b8823-6c3a-493b-9af5-7325cbc48096", - "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "05287baf-76e5-4533-8eef-0902c45b01ae", - "54cba115-6a75-4b65-8019-b2b5de7a3947", - "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", - "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "9da92501-0f80-4a3e-b324-83bbfa32d05c", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "acabc807-b0f5-4579-b183-cef0484a7cc2" - ], - "stops": [], - "line_id": "5d0af399-f114-40f4-b24c-1e73275b3a37", - "segments": [ - 0, - 2, - 5, - 6, - 9, - 18, - 20, - 29, - 31, - 33, - 35, - 38, - 40, - 43, - 47, - 54, - 57, - 64, - 65, - 67, - 70, - 72, - 78, - 90, - 102, - 116, - 127, - 130, - 134, - 139, - 141, - 150, - 308, - 320, - 327, - 334, - 357, - 358, - 364, - 370, - 378, - 379, - 383, - 395, - 398, - 400, - 409, - 412, - 415, - 419, - 421, - 435, - 439, - 454, - 460, - 465, - 476, - 479, - 481, - 484, - 493, - 500, - 508, - 515, - 518, - 523, - 525, - 526, - 532, - 537, - 544, - 555, - 558, - 561, - 564, - 572, - 575, - 577, - 579, - 581, - 583, - 585, - 587, - 589, - 592, - 594, - 596, - 598, - 608, - 623, - 628, - 635 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 217, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521447, - 45.524278 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522496, - 45.524328 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519435, - 45.523458 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517465, - 45.528168 - ], - [ - -73.517458, - 45.528249 - ], - [ - -73.517471, - 45.528385 - ], - [ - -73.517504, - 45.528565 - ], - [ - -73.517516, - 45.528652 - ], - [ - -73.517553, - 45.52877 - ], - [ - -73.517635, - 45.529002 - ], - [ - -73.517693, - 45.529249 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518464, - 45.531394 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518435, - 45.533882 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.51038, - 45.541043 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.502898, - 45.548658 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.499756, - 45.550039 - ], - [ - -73.499636, - 45.550208 - ], - [ - -73.499564, - 45.550308 - ], - [ - -73.499518, - 45.550373 - ], - [ - -73.499348, - 45.550589 - ], - [ - -73.499249, - 45.550718 - ], - [ - -73.499149, - 45.550849 - ], - [ - -73.49909, - 45.551 - ], - [ - -73.499052, - 45.551292 - ], - [ - -73.498947, - 45.552086 - ], - [ - -73.49893, - 45.552473 - ], - [ - -73.498889, - 45.552801 - ], - [ - -73.498863, - 45.552968 - ], - [ - -73.498848, - 45.553058 - ], - [ - -73.498813, - 45.553251 - ], - [ - -73.498782, - 45.553386 - ], - [ - -73.498737, - 45.553535 - ], - [ - -73.498669, - 45.55371 - ], - [ - -73.498603, - 45.553836 - ], - [ - -73.498557, - 45.553912 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498164, - 45.554478 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.496101, - 45.55685 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.494564, - 45.558541 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.493666, - 45.5596 - ] - ] - }, - "id": 218, - "properties": { - "id": "ecd7b19b-ea80-4f91-803a-da3f0d5d8427", - "data": { - "gtfs": { - "shape_id": "125_1_R" - }, - "segments": [ - { - "distanceMeters": 4729, - "travelTimeSeconds": 788 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 23 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5398, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4498.942074032365, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6, - "travelTimeWithoutDwellTimesSeconds": 900, - "operatingTimeWithLayoverTimeSeconds": 1080, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 900, - "operatingSpeedWithLayoverMetersPerSecond": 5, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6 - }, - "mode": "bus", - "name": "RTL", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "c879a803-d58b-4487-8291-391e9b516d3c", - "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", - "261a087b-9323-4696-9046-146a299af43d", - "0bcb0e97-db40-44bb-afe9-f6212a5b6387" - ], - "stops": [], - "line_id": "e6d6eda7-d30b-4e0a-9442-c43a8742a7c4", - "segments": [ - 0, - 140, - 142, - 145 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 218, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.493016, - 45.560504 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.492045, - 45.561182 - ], - [ - -73.489863, - 45.559482 - ], - [ - -73.489762, - 45.55941 - ], - [ - -73.489659, - 45.55945 - ], - [ - -73.489132, - 45.559774 - ], - [ - -73.488626, - 45.560076 - ], - [ - -73.488514, - 45.560143 - ], - [ - -73.488663, - 45.560261 - ], - [ - -73.489224, - 45.560705 - ], - [ - -73.489259, - 45.560732 - ], - [ - -73.491489, - 45.562495 - ], - [ - -73.491509, - 45.562511 - ], - [ - -73.491545, - 45.562543 - ], - [ - -73.491585, - 45.562559 - ], - [ - -73.4917, - 45.562606 - ], - [ - -73.491799, - 45.56246 - ], - [ - -73.491908, - 45.562298 - ], - [ - -73.49207, - 45.56203 - ], - [ - -73.492185, - 45.561871 - ], - [ - -73.492369, - 45.561588 - ], - [ - -73.492372, - 45.561584 - ], - [ - -73.492391, - 45.561555 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.494695, - 45.558392 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498677, - 45.553944 - ], - [ - -73.498726, - 45.553872 - ], - [ - -73.498813, - 45.553714 - ], - [ - -73.498895, - 45.553562 - ], - [ - -73.49895, - 45.553404 - ], - [ - -73.498964, - 45.55335 - ], - [ - -73.498988, - 45.55326 - ], - [ - -73.499026, - 45.553035 - ], - [ - -73.499051, - 45.55281 - ], - [ - -73.49911, - 45.552261 - ], - [ - -73.499127, - 45.552095 - ], - [ - -73.499158, - 45.551791 - ], - [ - -73.499199, - 45.551371 - ], - [ - -73.49924, - 45.551092 - ], - [ - -73.499284, - 45.550946 - ], - [ - -73.499366, - 45.550811 - ], - [ - -73.499487, - 45.550651 - ], - [ - -73.499747, - 45.550322 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.500446, - 45.550071 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.505913, - 45.545577 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.512612, - 45.539397 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.518817, - 45.531415 - ], - [ - -73.518763, - 45.531374 - ], - [ - -73.518709, - 45.531325 - ], - [ - -73.518655, - 45.531271 - ], - [ - -73.518619, - 45.531213 - ], - [ - -73.518601, - 45.531154 - ], - [ - -73.518588, - 45.531096 - ], - [ - -73.518588, - 45.531055 - ], - [ - -73.518597, - 45.531006 - ], - [ - -73.518619, - 45.530952 - ], - [ - -73.518659, - 45.530884 - ], - [ - -73.518691, - 45.530826 - ], - [ - -73.518718, - 45.530785 - ], - [ - -73.518753, - 45.530731 - ], - [ - -73.518803, - 45.530646 - ], - [ - -73.518839, - 45.530596 - ], - [ - -73.518875, - 45.530547 - ], - [ - -73.518897, - 45.530497 - ], - [ - -73.518915, - 45.530448 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519422, - 45.528602 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519399, - 45.526019 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519866, - 45.523385 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523597 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 219, - "properties": { - "id": "5598954a-ccd4-4462-9c8c-8ec6f3003245", - "data": { - "gtfs": { - "shape_id": "125_2_A" - }, - "segments": [ - { - "distanceMeters": 535, - "travelTimeSeconds": 111 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 829, - "travelTimeSeconds": 109 - }, - { - "distanceMeters": 3492, - "travelTimeSeconds": 459 - }, - { - "distanceMeters": 692, - "travelTimeSeconds": 92 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6454, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4611.960631400493, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.72, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 5.66, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.72 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "b16a31c8-203c-44e6-a193-88731a47056e", - "acd343da-a23f-40aa-9f8e-9e9ed5b60bd1", - "eace6dbd-217a-421f-9a0e-ee6e7890671f", - "84a0424b-0f35-4bd8-8109-5ac9219d5869", - "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", - "261a087b-9323-4696-9046-146a299af43d", - "66456437-f154-4a2f-a12f-2f54cf668687", - "4fb4515b-e129-4622-b855-89143c2fd488", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "e6d6eda7-d30b-4e0a-9442-c43a8742a7c4", - "segments": [ - 0, - 7, - 11, - 12, - 22, - 28, - 44, - 136 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 219, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522241, - 45.521831 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.514217, - 45.518647 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509952, - 45.515502 - ], - [ - -73.509485, - 45.515357 - ], - [ - -73.509376, - 45.515323 - ], - [ - -73.508692, - 45.515143 - ], - [ - -73.508296, - 45.51503 - ], - [ - -73.507817, - 45.514868 - ], - [ - -73.507704, - 45.514841 - ], - [ - -73.507464, - 45.514765 - ], - [ - -73.506516, - 45.514432 - ], - [ - -73.505464, - 45.514054 - ], - [ - -73.505166, - 45.51396 - ], - [ - -73.505023, - 45.513914 - ], - [ - -73.504793, - 45.513842 - ], - [ - -73.504451, - 45.513734 - ], - [ - -73.50434, - 45.513699 - ], - [ - -73.504259, - 45.513672 - ], - [ - -73.503369, - 45.513397 - ], - [ - -73.502433, - 45.51315 - ], - [ - -73.502048, - 45.513078 - ], - [ - -73.501411, - 45.512898 - ], - [ - -73.50108, - 45.512799 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.494607, - 45.510602 - ], - [ - -73.494316, - 45.510461 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488355, - 45.503066 - ], - [ - -73.4883, - 45.502913 - ], - [ - -73.488219, - 45.502531 - ], - [ - -73.488223, - 45.502405 - ], - [ - -73.488244, - 45.502298 - ], - [ - -73.488245, - 45.502293 - ], - [ - -73.488296, - 45.502185 - ], - [ - -73.488375, - 45.502086 - ], - [ - -73.488484, - 45.502 - ], - [ - -73.488609, - 45.501937 - ], - [ - -73.48874, - 45.501892 - ], - [ - -73.48888, - 45.501865 - ], - [ - -73.489028, - 45.501856 - ], - [ - -73.489181, - 45.501865 - ], - [ - -73.489324, - 45.501892 - ], - [ - -73.489461, - 45.501933 - ], - [ - -73.489585, - 45.501991 - ], - [ - -73.489692, - 45.502068 - ], - [ - -73.489786, - 45.502153 - ], - [ - -73.489942, - 45.502342 - ], - [ - -73.490006, - 45.50245 - ], - [ - -73.490054, - 45.502558 - ], - [ - -73.490086, - 45.502666 - ], - [ - -73.490092, - 45.502779 - ], - [ - -73.490064, - 45.502891 - ], - [ - -73.490004, - 45.502995 - ], - [ - -73.489917, - 45.503094 - ], - [ - -73.489808, - 45.503175 - ], - [ - -73.489675, - 45.503242 - ], - [ - -73.489524, - 45.503287 - ], - [ - -73.489359, - 45.50331 - ], - [ - -73.489186, - 45.503323 - ], - [ - -73.488817, - 45.503318 - ], - [ - -73.487515, - 45.503242 - ], - [ - -73.486872, - 45.503273 - ], - [ - -73.486502, - 45.503323 - ], - [ - -73.486146, - 45.503381 - ], - [ - -73.484224, - 45.503808 - ], - [ - -73.483407, - 45.503957 - ], - [ - -73.482922, - 45.504029 - ], - [ - -73.482166, - 45.504114 - ], - [ - -73.481092, - 45.504204 - ], - [ - -73.4802, - 45.504262 - ], - [ - -73.47719, - 45.50446 - ], - [ - -73.470465, - 45.504907 - ], - [ - -73.464792, - 45.505284 - ], - [ - -73.464234, - 45.505325 - ], - [ - -73.463301, - 45.505392 - ], - [ - -73.461784, - 45.505526 - ], - [ - -73.460686, - 45.505647 - ], - [ - -73.45799, - 45.505984 - ], - [ - -73.456776, - 45.506127 - ], - [ - -73.455209, - 45.506284 - ], - [ - -73.454382, - 45.506356 - ], - [ - -73.450186, - 45.506642 - ], - [ - -73.439577, - 45.507343 - ], - [ - -73.439057, - 45.507379 - ], - [ - -73.438071, - 45.507414 - ], - [ - -73.437444, - 45.507428 - ], - [ - -73.436265, - 45.507427 - ], - [ - -73.435664, - 45.507418 - ], - [ - -73.43478, - 45.507413 - ], - [ - -73.433757, - 45.507439 - ], - [ - -73.432476, - 45.507501 - ], - [ - -73.430857, - 45.507609 - ], - [ - -73.430359, - 45.507642 - ], - [ - -73.43012, - 45.507658 - ], - [ - -73.43011, - 45.507658 - ], - [ - -73.429316, - 45.507711 - ], - [ - -73.429014, - 45.507706 - ], - [ - -73.42887, - 45.507697 - ], - [ - -73.428732, - 45.50767 - ], - [ - -73.428609, - 45.507629 - ], - [ - -73.4285, - 45.507571 - ], - [ - -73.428413, - 45.507413 - ], - [ - -73.428416, - 45.507089 - ], - [ - -73.428566, - 45.506946 - ], - [ - -73.428604, - 45.506915 - ], - [ - -73.428632, - 45.506893 - ], - [ - -73.428753, - 45.506835 - ], - [ - -73.42903, - 45.50674 - ], - [ - -73.429213, - 45.50668 - ], - [ - -73.429476, - 45.506669 - ], - [ - -73.429755, - 45.506651 - ], - [ - -73.429825, - 45.506654 - ], - [ - -73.429948, - 45.50668 - ], - [ - -73.430064, - 45.506725 - ], - [ - -73.4302, - 45.506807 - ], - [ - -73.430341, - 45.507086 - ], - [ - -73.430485, - 45.507257 - ], - [ - -73.430506, - 45.507276 - ], - [ - -73.430509, - 45.507278 - ], - [ - -73.430608, - 45.507365 - ], - [ - -73.430672, - 45.507415 - ], - [ - -73.431358, - 45.507856 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431666, - 45.508054 - ], - [ - -73.431986, - 45.508252 - ], - [ - -73.432482, - 45.508559 - ], - [ - -73.433021, - 45.508883 - ], - [ - -73.433395, - 45.509082 - ], - [ - -73.433453, - 45.509113 - ], - [ - -73.433535, - 45.509154 - ], - [ - -73.43374, - 45.509257 - ], - [ - -73.434128, - 45.509428 - ], - [ - -73.43476, - 45.509703 - ], - [ - -73.435478, - 45.510009 - ], - [ - -73.435758, - 45.510131 - ], - [ - -73.435507, - 45.510414 - ], - [ - -73.4355, - 45.510423 - ], - [ - -73.435493, - 45.510432 - ], - [ - -73.435487, - 45.510437 - ], - [ - -73.435479, - 45.510446 - ], - [ - -73.435472, - 45.510455 - ], - [ - -73.435465, - 45.510459 - ], - [ - -73.435457, - 45.510468 - ], - [ - -73.43545, - 45.510477 - ], - [ - -73.435444, - 45.510481 - ], - [ - -73.435442, - 45.510481 - ], - [ - -73.435434, - 45.51049 - ], - [ - -73.435426, - 45.510495 - ], - [ - -73.435418, - 45.510504 - ], - [ - -73.43541, - 45.510513 - ], - [ - -73.435402, - 45.510517 - ], - [ - -73.435394, - 45.510526 - ], - [ - -73.435386, - 45.510531 - ], - [ - -73.435377, - 45.51054 - ], - [ - -73.435369, - 45.510544 - ], - [ - -73.43536, - 45.510553 - ], - [ - -73.435352, - 45.510558 - ], - [ - -73.435343, - 45.510567 - ], - [ - -73.435334, - 45.510571 - ], - [ - -73.435325, - 45.510576 - ], - [ - -73.435316, - 45.510585 - ], - [ - -73.435306, - 45.510589 - ], - [ - -73.435297, - 45.510598 - ], - [ - -73.435288, - 45.510603 - ], - [ - -73.435278, - 45.510607 - ], - [ - -73.435269, - 45.510616 - ], - [ - -73.43526, - 45.510621 - ], - [ - -73.43525, - 45.510625 - ], - [ - -73.43524, - 45.510634 - ], - [ - -73.43523, - 45.510639 - ], - [ - -73.43522, - 45.510643 - ], - [ - -73.43521, - 45.510648 - ], - [ - -73.435201, - 45.510657 - ], - [ - -73.43518, - 45.510666 - ], - [ - -73.43517, - 45.51067 - ], - [ - -73.435159, - 45.510679 - ], - [ - -73.435149, - 45.510684 - ], - [ - -73.435139, - 45.510688 - ], - [ - -73.435128, - 45.510693 - ], - [ - -73.435118, - 45.510697 - ], - [ - -73.435107, - 45.510706 - ], - [ - -73.435097, - 45.510711 - ], - [ - -73.435086, - 45.510715 - ], - [ - -73.435075, - 45.51072 - ], - [ - -73.435065, - 45.510724 - ], - [ - -73.435053, - 45.510729 - ], - [ - -73.435043, - 45.510733 - ], - [ - -73.435032, - 45.510738 - ], - [ - -73.435021, - 45.510742 - ], - [ - -73.435009, - 45.510747 - ], - [ - -73.434998, - 45.510751 - ], - [ - -73.434987, - 45.510756 - ], - [ - -73.434976, - 45.51076 - ], - [ - -73.434964, - 45.510765 - ], - [ - -73.434953, - 45.510769 - ], - [ - -73.434941, - 45.510774 - ], - [ - -73.43493, - 45.510778 - ], - [ - -73.434918, - 45.510778 - ], - [ - -73.434907, - 45.510783 - ], - [ - -73.434895, - 45.510787 - ], - [ - -73.434883, - 45.510792 - ], - [ - -73.434871, - 45.510796 - ], - [ - -73.43486, - 45.510796 - ], - [ - -73.434848, - 45.510801 - ], - [ - -73.434836, - 45.510805 - ], - [ - -73.434824, - 45.51081 - ], - [ - -73.434812, - 45.51081 - ], - [ - -73.4348, - 45.510814 - ], - [ - -73.434788, - 45.510819 - ], - [ - -73.434775, - 45.510819 - ], - [ - -73.434763, - 45.510823 - ], - [ - -73.434751, - 45.510823 - ], - [ - -73.434739, - 45.510828 - ], - [ - -73.434727, - 45.510828 - ], - [ - -73.434714, - 45.510832 - ], - [ - -73.434702, - 45.510837 - ], - [ - -73.434689, - 45.510837 - ], - [ - -73.434677, - 45.510841 - ], - [ - -73.434665, - 45.510841 - ], - [ - -73.434652, - 45.510841 - ], - [ - -73.434639, - 45.510845 - ], - [ - -73.434627, - 45.510845 - ], - [ - -73.434615, - 45.51085 - ], - [ - -73.434602, - 45.51085 - ], - [ - -73.434589, - 45.51085 - ], - [ - -73.434577, - 45.510854 - ], - [ - -73.434564, - 45.510854 - ], - [ - -73.434551, - 45.510854 - ], - [ - -73.434539, - 45.510859 - ], - [ - -73.434526, - 45.510859 - ], - [ - -73.434513, - 45.510859 - ], - [ - -73.434501, - 45.510859 - ], - [ - -73.434488, - 45.510859 - ], - [ - -73.434475, - 45.510863 - ], - [ - -73.434462, - 45.510863 - ], - [ - -73.434449, - 45.510863 - ], - [ - -73.434437, - 45.510863 - ], - [ - -73.434424, - 45.510863 - ], - [ - -73.434411, - 45.510863 - ], - [ - -73.433233, - 45.510854 - ], - [ - -73.433213, - 45.510854 - ], - [ - -73.4332, - 45.510854 - ], - [ - -73.433188, - 45.510854 - ], - [ - -73.433175, - 45.510858 - ], - [ - -73.433162, - 45.510858 - ], - [ - -73.433155, - 45.510858 - ], - [ - -73.43315, - 45.510858 - ], - [ - -73.433137, - 45.510858 - ], - [ - -73.433124, - 45.510858 - ], - [ - -73.433111, - 45.510858 - ], - [ - -73.433098, - 45.510863 - ], - [ - -73.433086, - 45.510863 - ], - [ - -73.433073, - 45.510863 - ], - [ - -73.43306, - 45.510863 - ], - [ - -73.433048, - 45.510867 - ], - [ - -73.433035, - 45.510867 - ], - [ - -73.433022, - 45.510867 - ], - [ - -73.43301, - 45.510872 - ], - [ - -73.432997, - 45.510872 - ], - [ - -73.432985, - 45.510872 - ], - [ - -73.432971, - 45.510876 - ], - [ - -73.43282, - 45.510417 - ], - [ - -73.432816, - 45.510408 - ], - [ - -73.432813, - 45.510399 - ], - [ - -73.432809, - 45.51039 - ], - [ - -73.432806, - 45.510381 - ], - [ - -73.432802, - 45.510372 - ], - [ - -73.432799, - 45.510363 - ], - [ - -73.432795, - 45.510354 - ], - [ - -73.432792, - 45.510345 - ], - [ - -73.432788, - 45.510336 - ], - [ - -73.432785, - 45.510331 - ], - [ - -73.432781, - 45.510322 - ], - [ - -73.432777, - 45.510313 - ], - [ - -73.432774, - 45.510304 - ], - [ - -73.43277, - 45.510295 - ], - [ - -73.432767, - 45.510286 - ], - [ - -73.432763, - 45.510277 - ], - [ - -73.43276, - 45.510268 - ], - [ - -73.432756, - 45.510259 - ], - [ - -73.432752, - 45.51025 - ], - [ - -73.432749, - 45.510241 - ], - [ - -73.432745, - 45.510232 - ], - [ - -73.432742, - 45.510228 - ], - [ - -73.432738, - 45.510219 - ], - [ - -73.432734, - 45.51021 - ], - [ - -73.432731, - 45.510201 - ], - [ - -73.432727, - 45.510192 - ], - [ - -73.432724, - 45.510183 - ], - [ - -73.43272, - 45.510174 - ], - [ - -73.432716, - 45.510165 - ], - [ - -73.432712, - 45.510156 - ], - [ - -73.432709, - 45.510147 - ], - [ - -73.432705, - 45.510138 - ], - [ - -73.432702, - 45.510129 - ], - [ - -73.432698, - 45.510124 - ], - [ - -73.432694, - 45.510115 - ], - [ - -73.432691, - 45.510106 - ], - [ - -73.432687, - 45.510097 - ], - [ - -73.432683, - 45.510088 - ], - [ - -73.432679, - 45.510079 - ], - [ - -73.432676, - 45.51007 - ], - [ - -73.432672, - 45.510061 - ], - [ - -73.432669, - 45.510052 - ], - [ - -73.43266, - 45.510034 - ], - [ - -73.432659, - 45.510021 - ], - [ - -73.432658, - 45.510012 - ], - [ - -73.432658, - 45.510003 - ], - [ - -73.432657, - 45.509994 - ], - [ - -73.432657, - 45.509985 - ], - [ - -73.432656, - 45.509976 - ], - [ - -73.432656, - 45.509967 - ], - [ - -73.432656, - 45.509958 - ], - [ - -73.432655, - 45.509949 - ], - [ - -73.432656, - 45.50994 - ], - [ - -73.432656, - 45.509931 - ], - [ - -73.432656, - 45.509922 - ], - [ - -73.432656, - 45.509913 - ], - [ - -73.432656, - 45.509904 - ], - [ - -73.432657, - 45.509895 - ], - [ - -73.432658, - 45.509886 - ], - [ - -73.432658, - 45.509877 - ], - [ - -73.432659, - 45.509868 - ], - [ - -73.43266, - 45.509859 - ], - [ - -73.432662, - 45.50985 - ], - [ - -73.432663, - 45.509841 - ], - [ - -73.432664, - 45.509832 - ], - [ - -73.432666, - 45.509823 - ], - [ - -73.432668, - 45.509814 - ], - [ - -73.432759, - 45.509634 - ], - [ - -73.432835, - 45.509463 - ], - [ - -73.432855, - 45.50936 - ], - [ - -73.432845, - 45.509284 - ], - [ - -73.432841, - 45.509247 - ], - [ - -73.432807, - 45.509153 - ], - [ - -73.432763, - 45.509081 - ], - [ - -73.432693, - 45.508986 - ], - [ - -73.432596, - 45.508892 - ], - [ - -73.432466, - 45.508784 - ], - [ - -73.432357, - 45.508721 - ], - [ - -73.432229, - 45.508657 - ], - [ - -73.43205, - 45.508576 - ], - [ - -73.431849, - 45.508509 - ], - [ - -73.431641, - 45.508477 - ], - [ - -73.430377, - 45.508566 - ], - [ - -73.42989, - 45.508625 - ], - [ - -73.429611, - 45.508674 - ], - [ - -73.429174, - 45.50875 - ], - [ - -73.428721, - 45.508799 - ], - [ - -73.425795, - 45.508991 - ], - [ - -73.422797, - 45.509187 - ], - [ - -73.420365, - 45.509349 - ], - [ - -73.414394, - 45.509748 - ], - [ - -73.414099, - 45.509779 - ], - [ - -73.413851, - 45.50986 - ], - [ - -73.413789, - 45.509879 - ], - [ - -73.413748, - 45.509891 - ], - [ - -73.413659, - 45.509927 - ], - [ - -73.413544, - 45.510004 - ], - [ - -73.413248, - 45.510197 - ], - [ - -73.412177, - 45.510899 - ], - [ - -73.41095, - 45.511702 - ], - [ - -73.409407, - 45.512716 - ], - [ - -73.408595, - 45.513262 - ], - [ - -73.408576, - 45.513275 - ], - [ - -73.408317, - 45.513441 - ], - [ - -73.408069, - 45.513608 - ], - [ - -73.406621, - 45.514557 - ], - [ - -73.405458, - 45.515319 - ], - [ - -73.405217, - 45.515477 - ], - [ - -73.403934, - 45.516317 - ], - [ - -73.403084, - 45.516888 - ], - [ - -73.402988, - 45.516952 - ], - [ - -73.401985, - 45.517616 - ], - [ - -73.400748, - 45.518411 - ], - [ - -73.400681, - 45.518454 - ], - [ - -73.400643, - 45.518479 - ], - [ - -73.397089, - 45.515781 - ], - [ - -73.393828, - 45.513384 - ], - [ - -73.393656, - 45.513568 - ], - [ - -73.389522, - 45.518002 - ], - [ - -73.388708, - 45.518687 - ], - [ - -73.388657, - 45.518721 - ], - [ - -73.388159, - 45.519058 - ], - [ - -73.387731, - 45.519343 - ], - [ - -73.387568, - 45.519571 - ], - [ - -73.38752, - 45.520133 - ], - [ - -73.3871, - 45.520108 - ], - [ - -73.386774, - 45.520108 - ], - [ - -73.386308, - 45.520107 - ], - [ - -73.384269, - 45.520137 - ], - [ - -73.384181, - 45.520141 - ], - [ - -73.384095, - 45.520141 - ], - [ - -73.384065, - 45.520142 - ], - [ - -73.383105, - 45.520158 - ], - [ - -73.382615, - 45.520162 - ], - [ - -73.382566, - 45.520163 - ], - [ - -73.382282, - 45.520171 - ], - [ - -73.381193, - 45.520174 - ], - [ - -73.380245, - 45.520187 - ], - [ - -73.379902, - 45.520193 - ], - [ - -73.379803, - 45.520195 - ], - [ - -73.379356, - 45.520199 - ], - [ - -73.377346, - 45.52022 - ], - [ - -73.375085, - 45.520265 - ], - [ - -73.375006, - 45.520267 - ], - [ - -73.371729, - 45.520317 - ], - [ - -73.370147, - 45.520338 - ], - [ - -73.36922, - 45.52035 - ], - [ - -73.368621, - 45.520354 - ], - [ - -73.368553, - 45.520357 - ], - [ - -73.368512, - 45.520358 - ], - [ - -73.368191, - 45.520371 - ], - [ - -73.367048, - 45.52047 - ], - [ - -73.366798, - 45.520491 - ], - [ - -73.365403, - 45.520602 - ], - [ - -73.362854, - 45.520815 - ], - [ - -73.36145, - 45.52094 - ], - [ - -73.361257, - 45.520957 - ], - [ - -73.361188, - 45.520498 - ], - [ - -73.361088, - 45.519832 - ], - [ - -73.361078, - 45.519769 - ], - [ - -73.361044, - 45.519729 - ], - [ - -73.360928, - 45.519697 - ], - [ - -73.36065, - 45.51971 - ], - [ - -73.360243, - 45.519741 - ], - [ - -73.359782, - 45.519783 - ], - [ - -73.358767, - 45.519874 - ], - [ - -73.358471, - 45.519901 - ], - [ - -73.358096, - 45.519923 - ], - [ - -73.358007, - 45.519923 - ], - [ - -73.357922, - 45.519918 - ], - [ - -73.357731, - 45.519864 - ], - [ - -73.357562, - 45.519805 - ], - [ - -73.357425, - 45.519702 - ], - [ - -73.356619, - 45.519059 - ], - [ - -73.356509, - 45.518972 - ], - [ - -73.356103, - 45.518661 - ], - [ - -73.355924, - 45.518514 - ], - [ - -73.355851, - 45.518453 - ], - [ - -73.3557, - 45.518336 - ], - [ - -73.35554, - 45.51821 - ], - [ - -73.355464, - 45.518151 - ], - [ - -73.355224, - 45.517998 - ], - [ - -73.355058, - 45.517908 - ], - [ - -73.354896, - 45.517822 - ], - [ - -73.354639, - 45.5177 - ], - [ - -73.354374, - 45.517597 - ], - [ - -73.35413, - 45.51752 - ], - [ - -73.353969, - 45.517485 - ], - [ - -73.353964, - 45.517484 - ], - [ - -73.353847, - 45.517452 - ], - [ - -73.353913, - 45.517241 - ], - [ - -73.353961, - 45.517124 - ], - [ - -73.354012, - 45.517002 - ], - [ - -73.354038, - 45.516939 - ], - [ - -73.354065, - 45.516876 - ], - [ - -73.354098, - 45.516813 - ], - [ - -73.354129, - 45.516755 - ], - [ - -73.35418, - 45.516665 - ], - [ - -73.354282, - 45.516521 - ], - [ - -73.354404, - 45.516368 - ], - [ - -73.354562, - 45.51622 - ], - [ - -73.354639, - 45.516144 - ], - [ - -73.354763, - 45.516045 - ], - [ - -73.354876, - 45.515964 - ], - [ - -73.355155, - 45.515784 - ], - [ - -73.355267, - 45.515713 - ], - [ - -73.355353, - 45.515673 - ], - [ - -73.355435, - 45.515636 - ], - [ - -73.355694, - 45.515528 - ], - [ - -73.355723, - 45.515515 - ], - [ - -73.35603, - 45.515426 - ], - [ - -73.356223, - 45.515381 - ], - [ - -73.356733, - 45.515323 - ], - [ - -73.357346, - 45.515261 - ], - [ - -73.35791, - 45.515226 - ], - [ - -73.358084, - 45.515214 - ], - [ - -73.358869, - 45.515164 - ], - [ - -73.360777, - 45.515046 - ], - [ - -73.361292, - 45.515014 - ], - [ - -73.362219, - 45.514953 - ], - [ - -73.364936, - 45.514775 - ], - [ - -73.365804, - 45.514718 - ], - [ - -73.366158, - 45.514696 - ], - [ - -73.366978, - 45.514647 - ], - [ - -73.367121, - 45.514638 - ], - [ - -73.367183, - 45.514638 - ], - [ - -73.367413, - 45.514639 - ], - [ - -73.36767, - 45.514675 - ], - [ - -73.367705, - 45.514684 - ], - [ - -73.367986, - 45.514774 - ], - [ - -73.368285, - 45.514919 - ], - [ - -73.368381, - 45.514986 - ], - [ - -73.368487, - 45.515058 - ], - [ - -73.368593, - 45.51513 - ], - [ - -73.368707, - 45.515243 - ], - [ - -73.368826, - 45.515365 - ], - [ - -73.368961, - 45.515549 - ], - [ - -73.369002, - 45.515653 - ], - [ - -73.36905, - 45.515765 - ], - [ - -73.369062, - 45.515873 - ], - [ - -73.369087, - 45.516022 - ], - [ - -73.369094, - 45.516179 - ], - [ - -73.369101, - 45.5164 - ], - [ - -73.36911, - 45.516625 - ], - [ - -73.36912, - 45.516899 - ], - [ - -73.369128, - 45.517111 - ], - [ - -73.369131, - 45.517363 - ], - [ - -73.369131, - 45.517411 - ], - [ - -73.369133, - 45.51752 - ], - [ - -73.369139, - 45.517651 - ], - [ - -73.369147, - 45.517839 - ], - [ - -73.369153, - 45.518145 - ], - [ - -73.369156, - 45.518379 - ], - [ - -73.369164, - 45.518717 - ], - [ - -73.369173, - 45.519041 - ], - [ - -73.369181, - 45.519333 - ], - [ - -73.369183, - 45.519383 - ], - [ - -73.369188, - 45.51962 - ], - [ - -73.369192, - 45.519761 - ], - [ - -73.369205, - 45.519905 - ], - [ - -73.369207, - 45.520049 - ], - [ - -73.36922, - 45.52035 - ], - [ - -73.369225, - 45.520454 - ], - [ - -73.369241, - 45.520998 - ], - [ - -73.369289, - 45.522629 - ], - [ - -73.369285, - 45.522762 - ], - [ - -73.369286, - 45.523039 - ], - [ - -73.369289, - 45.523693 - ], - [ - -73.36921, - 45.523999 - ], - [ - -73.369028, - 45.5243 - ], - [ - -73.368834, - 45.524507 - ], - [ - -73.368444, - 45.524772 - ], - [ - -73.367696, - 45.525244 - ], - [ - -73.367366, - 45.52545 - ], - [ - -73.36762, - 45.525662 - ], - [ - -73.367783, - 45.525788 - ], - [ - -73.368672, - 45.526476 - ], - [ - -73.369386, - 45.527027 - ], - [ - -73.369582, - 45.527324 - ], - [ - -73.369684, - 45.527581 - ], - [ - -73.369695, - 45.527688 - ], - [ - -73.369719, - 45.527905 - ], - [ - -73.369744, - 45.529772 - ], - [ - -73.369745, - 45.529806 - ], - [ - -73.369749, - 45.529908 - ], - [ - -73.369792, - 45.531176 - ], - [ - -73.369792, - 45.531189 - ] - ] - }, - "id": 220, - "properties": { - "id": "58ed6c43-b2ca-41b9-800d-67b355b898d6", - "data": { - "gtfs": { - "shape_id": "128_1_R" - }, - "segments": [ - { - "distanceMeters": 2244, - "travelTimeSeconds": 225 - }, - { - "distanceMeters": 901, - "travelTimeSeconds": 91 - }, - { - "distanceMeters": 6738, - "travelTimeSeconds": 678 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 1220, - "travelTimeSeconds": 118 - }, - { - "distanceMeters": 687, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 384, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 1506, - "travelTimeSeconds": 135 - }, - { - "distanceMeters": 578, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 376, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 513, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 440, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 389, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 391, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 97 - }, - { - "distanceMeters": 480, - "travelTimeSeconds": 122 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 40 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 234, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 21226, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11837.902801110917, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.07, - "travelTimeWithoutDwellTimesSeconds": 2340, - "operatingTimeWithLayoverTimeSeconds": 2574, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2340, - "operatingSpeedWithLayoverMetersPerSecond": 8.25, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.07 - }, - "mode": "bus", - "name": "Parent", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", - "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", - "80008949-5a0f-4c5e-b778-592c2ee8487f", - "0f06220e-c086-4a85-9d80-5c4d5410f93e", - "789f4442-496b-49a8-9269-68c86839ee71", - "083eddb0-b4a8-4368-8265-1cf0ef37b9f6", - "eb8bc90f-a856-480f-ac1f-7bb1795b4dab", - "90f9f389-96b4-444b-8d1b-774cf89df3c1", - "6d909e49-9727-42dc-95db-42259425acbd", - "4ee012e8-fd5c-471a-bb0b-87721da74cf6", - "02c6c49d-886b-440d-919e-7dc5515da70b", - "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", - "59f3ce33-037e-4929-8dad-491a01b3dda7", - "889d971d-ea3a-412a-a3be-b3ac0f562d0a", - "71285487-65b1-4a9b-965b-e8b969ec642e", - "4fd9bafc-afe7-46d0-b43c-1a1438691ab1", - "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", - "36c85e4a-3286-45d4-878d-41eda74eb078", - "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", - "9b7439c4-a8e6-4ce8-8c94-dcac4e29b500", - "d58c68b9-bb4a-45d1-90ea-403c9b830625", - "15f81e09-81b0-4df0-aa79-d4603e691ccd", - "6cc3ca76-cd11-4240-ac37-33142410aacb", - "f9418d0c-9ee7-44b5-a2f0-bb6a76a0df3e", - "4f54f52f-b62c-4341-a4d5-24c02344f25b", - "d3614ff1-08ff-435f-b8f7-1a76f68a0071", - "b3d09d08-d2e3-4276-8b7a-d3d07d979e6c", - "635ebffd-b274-4e79-9618-a0203ceaa811", - "dca87cea-ccf9-454c-a18b-6489a3e1ab68", - "24a322e0-f890-4138-9c97-136b5a2cdd60", - "7d066d0e-6085-4155-a554-6e1116a797c6", - "4d10c33d-a086-4248-8e97-1236a7069436", - "1cb5ae0c-b01a-4888-87b4-f35cbbb956cf" - ], - "stops": [], - "line_id": "46d7fd54-120a-42ab-b351-59b3e0fdaf40", - "segments": [ - 0, - 82, - 106, - 228, - 243, - 344, - 450, - 459, - 462, - 466, - 468, - 470, - 473, - 481, - 495, - 499, - 503, - 510, - 512, - 516, - 526, - 534, - 548, - 569, - 576, - 580, - 586, - 608, - 618, - 627, - 637, - 641, - 644 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 220, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.369792, - 45.531176 - ], - [ - -73.369749, - 45.529908 - ], - [ - -73.369744, - 45.529772 - ], - [ - -73.369744, - 45.529758 - ], - [ - -73.369719, - 45.527905 - ], - [ - -73.369697, - 45.527702 - ], - [ - -73.369684, - 45.527581 - ], - [ - -73.369582, - 45.527324 - ], - [ - -73.369386, - 45.527027 - ], - [ - -73.368626, - 45.52644 - ], - [ - -73.36762, - 45.525662 - ], - [ - -73.367366, - 45.52545 - ], - [ - -73.367696, - 45.525244 - ], - [ - -73.368444, - 45.524772 - ], - [ - -73.368834, - 45.524507 - ], - [ - -73.369028, - 45.5243 - ], - [ - -73.36921, - 45.523999 - ], - [ - -73.369289, - 45.523693 - ], - [ - -73.369286, - 45.522991 - ], - [ - -73.369285, - 45.522762 - ], - [ - -73.369289, - 45.522629 - ], - [ - -73.369241, - 45.520998 - ], - [ - -73.369225, - 45.520454 - ], - [ - -73.36922, - 45.52035 - ], - [ - -73.368621, - 45.520354 - ], - [ - -73.368582, - 45.520355 - ], - [ - -73.368553, - 45.520357 - ], - [ - -73.368191, - 45.520371 - ], - [ - -73.367118, - 45.520464 - ], - [ - -73.366798, - 45.520491 - ], - [ - -73.365403, - 45.520602 - ], - [ - -73.362854, - 45.520815 - ], - [ - -73.36152, - 45.520934 - ], - [ - -73.361257, - 45.520957 - ], - [ - -73.361203, - 45.520598 - ], - [ - -73.361088, - 45.519832 - ], - [ - -73.361078, - 45.519769 - ], - [ - -73.361044, - 45.519729 - ], - [ - -73.360928, - 45.519697 - ], - [ - -73.36065, - 45.51971 - ], - [ - -73.360243, - 45.519741 - ], - [ - -73.359782, - 45.519783 - ], - [ - -73.358837, - 45.519868 - ], - [ - -73.358471, - 45.519901 - ], - [ - -73.358096, - 45.519923 - ], - [ - -73.358007, - 45.519923 - ], - [ - -73.357922, - 45.519918 - ], - [ - -73.357731, - 45.519864 - ], - [ - -73.357562, - 45.519805 - ], - [ - -73.357425, - 45.519702 - ], - [ - -73.356666, - 45.519097 - ], - [ - -73.356509, - 45.518972 - ], - [ - -73.356103, - 45.518661 - ], - [ - -73.355851, - 45.518453 - ], - [ - -73.3557, - 45.518336 - ], - [ - -73.35554, - 45.51821 - ], - [ - -73.355464, - 45.518151 - ], - [ - -73.355224, - 45.517998 - ], - [ - -73.355058, - 45.517908 - ], - [ - -73.354896, - 45.517822 - ], - [ - -73.354639, - 45.5177 - ], - [ - -73.354374, - 45.517597 - ], - [ - -73.35413, - 45.51752 - ], - [ - -73.354037, - 45.5175 - ], - [ - -73.353964, - 45.517484 - ], - [ - -73.353847, - 45.517452 - ], - [ - -73.353913, - 45.517241 - ], - [ - -73.353961, - 45.517124 - ], - [ - -73.354012, - 45.517002 - ], - [ - -73.354038, - 45.516939 - ], - [ - -73.354065, - 45.516876 - ], - [ - -73.354098, - 45.516813 - ], - [ - -73.354129, - 45.516755 - ], - [ - -73.35418, - 45.516665 - ], - [ - -73.354211, - 45.516621 - ], - [ - -73.354282, - 45.516521 - ], - [ - -73.354404, - 45.516368 - ], - [ - -73.354562, - 45.51622 - ], - [ - -73.354639, - 45.516144 - ], - [ - -73.354763, - 45.516045 - ], - [ - -73.354876, - 45.515964 - ], - [ - -73.355155, - 45.515784 - ], - [ - -73.355267, - 45.515713 - ], - [ - -73.355353, - 45.515673 - ], - [ - -73.355435, - 45.515636 - ], - [ - -73.355632, - 45.515553 - ], - [ - -73.355723, - 45.515515 - ], - [ - -73.35603, - 45.515426 - ], - [ - -73.356223, - 45.515381 - ], - [ - -73.356733, - 45.515323 - ], - [ - -73.357346, - 45.515261 - ], - [ - -73.35791, - 45.515226 - ], - [ - -73.358013, - 45.515219 - ], - [ - -73.358869, - 45.515164 - ], - [ - -73.361292, - 45.515014 - ], - [ - -73.362147, - 45.514958 - ], - [ - -73.364936, - 45.514775 - ], - [ - -73.365804, - 45.514718 - ], - [ - -73.366158, - 45.514696 - ], - [ - -73.366978, - 45.514647 - ], - [ - -73.36711, - 45.514639 - ], - [ - -73.367121, - 45.514638 - ], - [ - -73.367413, - 45.514639 - ], - [ - -73.36767, - 45.514675 - ], - [ - -73.367705, - 45.514684 - ], - [ - -73.367986, - 45.514774 - ], - [ - -73.368285, - 45.514919 - ], - [ - -73.368381, - 45.514986 - ], - [ - -73.368487, - 45.515058 - ], - [ - -73.368593, - 45.51513 - ], - [ - -73.368707, - 45.515243 - ], - [ - -73.368826, - 45.515365 - ], - [ - -73.368961, - 45.515549 - ], - [ - -73.369002, - 45.515653 - ], - [ - -73.36905, - 45.515765 - ], - [ - -73.369062, - 45.515873 - ], - [ - -73.369087, - 45.516022 - ], - [ - -73.369094, - 45.516179 - ], - [ - -73.369101, - 45.5164 - ], - [ - -73.36911, - 45.516625 - ], - [ - -73.36912, - 45.516899 - ], - [ - -73.369128, - 45.517111 - ], - [ - -73.369131, - 45.517361 - ], - [ - -73.369131, - 45.517363 - ], - [ - -73.369133, - 45.51752 - ], - [ - -73.369139, - 45.517651 - ], - [ - -73.369147, - 45.517839 - ], - [ - -73.369153, - 45.518145 - ], - [ - -73.369156, - 45.518379 - ], - [ - -73.369164, - 45.518717 - ], - [ - -73.369173, - 45.519041 - ], - [ - -73.369183, - 45.519383 - ], - [ - -73.369187, - 45.519569 - ], - [ - -73.369192, - 45.519761 - ], - [ - -73.369205, - 45.519905 - ], - [ - -73.369207, - 45.520049 - ], - [ - -73.36922, - 45.52035 - ], - [ - -73.369225, - 45.520454 - ], - [ - -73.370151, - 45.520446 - ], - [ - -73.370374, - 45.520444 - ], - [ - -73.371725, - 45.520433 - ], - [ - -73.373172, - 45.520409 - ], - [ - -73.373182, - 45.520409 - ], - [ - -73.37501, - 45.520379 - ], - [ - -73.375959, - 45.520362 - ], - [ - -73.376327, - 45.520357 - ], - [ - -73.377348, - 45.520341 - ], - [ - -73.379658, - 45.520318 - ], - [ - -73.379807, - 45.520317 - ], - [ - -73.38118, - 45.520291 - ], - [ - -73.38311, - 45.520275 - ], - [ - -73.383803, - 45.52028 - ], - [ - -73.383938, - 45.520277 - ], - [ - -73.3863, - 45.520242 - ], - [ - -73.387093, - 45.52023 - ], - [ - -73.3875, - 45.520254 - ], - [ - -73.38752, - 45.520133 - ], - [ - -73.387568, - 45.519571 - ], - [ - -73.387731, - 45.519343 - ], - [ - -73.388159, - 45.519058 - ], - [ - -73.388684, - 45.518703 - ], - [ - -73.388708, - 45.518687 - ], - [ - -73.389522, - 45.518002 - ], - [ - -73.392916, - 45.514363 - ], - [ - -73.393828, - 45.513384 - ], - [ - -73.397089, - 45.515781 - ], - [ - -73.400486, - 45.51836 - ], - [ - -73.400643, - 45.518479 - ], - [ - -73.400681, - 45.518454 - ], - [ - -73.401985, - 45.517616 - ], - [ - -73.402682, - 45.517155 - ], - [ - -73.402988, - 45.516952 - ], - [ - -73.403934, - 45.516317 - ], - [ - -73.405075, - 45.51557 - ], - [ - -73.405458, - 45.515319 - ], - [ - -73.406629, - 45.514552 - ], - [ - -73.408069, - 45.513608 - ], - [ - -73.408317, - 45.513441 - ], - [ - -73.408395, - 45.513391 - ], - [ - -73.408576, - 45.513275 - ], - [ - -73.409407, - 45.512716 - ], - [ - -73.41095, - 45.511702 - ], - [ - -73.412184, - 45.510894 - ], - [ - -73.413248, - 45.510197 - ], - [ - -73.413544, - 45.510004 - ], - [ - -73.413659, - 45.509927 - ], - [ - -73.413748, - 45.509891 - ], - [ - -73.413851, - 45.50986 - ], - [ - -73.414099, - 45.509779 - ], - [ - -73.414394, - 45.509748 - ], - [ - -73.420362, - 45.509349 - ], - [ - -73.422797, - 45.509187 - ], - [ - -73.425795, - 45.508991 - ], - [ - -73.428721, - 45.508799 - ], - [ - -73.429174, - 45.50875 - ], - [ - -73.429611, - 45.508674 - ], - [ - -73.42989, - 45.508625 - ], - [ - -73.430377, - 45.508566 - ], - [ - -73.430526, - 45.508556 - ], - [ - -73.430743, - 45.508541 - ], - [ - -73.431641, - 45.508477 - ], - [ - -73.431849, - 45.508509 - ], - [ - -73.43205, - 45.508576 - ], - [ - -73.432229, - 45.508657 - ], - [ - -73.432357, - 45.508721 - ], - [ - -73.432466, - 45.508784 - ], - [ - -73.432596, - 45.508892 - ], - [ - -73.432693, - 45.508986 - ], - [ - -73.432763, - 45.509081 - ], - [ - -73.432807, - 45.509153 - ], - [ - -73.432841, - 45.509247 - ], - [ - -73.432845, - 45.509284 - ], - [ - -73.432855, - 45.50936 - ], - [ - -73.432835, - 45.509463 - ], - [ - -73.432759, - 45.509634 - ], - [ - -73.432668, - 45.509814 - ], - [ - -73.432666, - 45.509823 - ], - [ - -73.432664, - 45.509832 - ], - [ - -73.432663, - 45.509841 - ], - [ - -73.432662, - 45.50985 - ], - [ - -73.43266, - 45.509859 - ], - [ - -73.432659, - 45.509868 - ], - [ - -73.432658, - 45.509877 - ], - [ - -73.432658, - 45.509886 - ], - [ - -73.432657, - 45.509895 - ], - [ - -73.432656, - 45.509904 - ], - [ - -73.432656, - 45.509913 - ], - [ - -73.432656, - 45.509922 - ], - [ - -73.432656, - 45.509931 - ], - [ - -73.432656, - 45.50994 - ], - [ - -73.432655, - 45.509949 - ], - [ - -73.432656, - 45.509958 - ], - [ - -73.432656, - 45.509967 - ], - [ - -73.432656, - 45.509976 - ], - [ - -73.432657, - 45.509985 - ], - [ - -73.432657, - 45.509994 - ], - [ - -73.432658, - 45.510003 - ], - [ - -73.432658, - 45.510012 - ], - [ - -73.432659, - 45.510021 - ], - [ - -73.43266, - 45.510034 - ], - [ - -73.432661, - 45.510043 - ], - [ - -73.432661, - 45.510052 - ], - [ - -73.432661, - 45.510061 - ], - [ - -73.432662, - 45.51007 - ], - [ - -73.432663, - 45.510079 - ], - [ - -73.432663, - 45.510088 - ], - [ - -73.432664, - 45.510097 - ], - [ - -73.432665, - 45.510106 - ], - [ - -73.432666, - 45.510115 - ], - [ - -73.432667, - 45.510124 - ], - [ - -73.432668, - 45.510133 - ], - [ - -73.432669, - 45.510142 - ], - [ - -73.43267, - 45.510151 - ], - [ - -73.432671, - 45.51016 - ], - [ - -73.432672, - 45.510169 - ], - [ - -73.432673, - 45.510178 - ], - [ - -73.432674, - 45.510187 - ], - [ - -73.432676, - 45.510196 - ], - [ - -73.432677, - 45.510205 - ], - [ - -73.432679, - 45.510214 - ], - [ - -73.43268, - 45.510223 - ], - [ - -73.432682, - 45.510232 - ], - [ - -73.432684, - 45.510241 - ], - [ - -73.432685, - 45.51025 - ], - [ - -73.432687, - 45.510259 - ], - [ - -73.432689, - 45.510268 - ], - [ - -73.43269, - 45.510277 - ], - [ - -73.432692, - 45.510286 - ], - [ - -73.432694, - 45.510295 - ], - [ - -73.432696, - 45.510304 - ], - [ - -73.432698, - 45.510313 - ], - [ - -73.4327, - 45.510322 - ], - [ - -73.432702, - 45.510331 - ], - [ - -73.432705, - 45.51034 - ], - [ - -73.432707, - 45.510349 - ], - [ - -73.432709, - 45.510358 - ], - [ - -73.432711, - 45.510367 - ], - [ - -73.432714, - 45.510376 - ], - [ - -73.432716, - 45.510385 - ], - [ - -73.432719, - 45.510394 - ], - [ - -73.432721, - 45.510403 - ], - [ - -73.432724, - 45.510412 - ], - [ - -73.432727, - 45.510421 - ], - [ - -73.432729, - 45.510426 - ], - [ - -73.432732, - 45.510435 - ], - [ - -73.432736, - 45.510453 - ], - [ - -73.432878, - 45.510894 - ], - [ - -73.432913, - 45.511002 - ], - [ - -73.433005, - 45.510989 - ], - [ - -73.433027, - 45.510984 - ], - [ - -73.43304, - 45.51098 - ], - [ - -73.433052, - 45.51098 - ], - [ - -73.433065, - 45.51098 - ], - [ - -73.433077, - 45.510975 - ], - [ - -73.43309, - 45.510975 - ], - [ - -73.433103, - 45.510975 - ], - [ - -73.433115, - 45.510971 - ], - [ - -73.433128, - 45.510971 - ], - [ - -73.433141, - 45.510971 - ], - [ - -73.433153, - 45.510971 - ], - [ - -73.433166, - 45.510971 - ], - [ - -73.433179, - 45.510971 - ], - [ - -73.433192, - 45.510971 - ], - [ - -73.433205, - 45.510971 - ], - [ - -73.433653, - 45.510973 - ], - [ - -73.433981, - 45.510974 - ], - [ - -73.434422, - 45.510976 - ], - [ - -73.434437, - 45.510976 - ], - [ - -73.43445, - 45.510976 - ], - [ - -73.434463, - 45.510976 - ], - [ - -73.434476, - 45.510971 - ], - [ - -73.434488, - 45.510971 - ], - [ - -73.434501, - 45.510971 - ], - [ - -73.434514, - 45.510971 - ], - [ - -73.434527, - 45.510971 - ], - [ - -73.434539, - 45.510967 - ], - [ - -73.434552, - 45.510967 - ], - [ - -73.434565, - 45.510967 - ], - [ - -73.434578, - 45.510967 - ], - [ - -73.43459, - 45.510962 - ], - [ - -73.434603, - 45.510962 - ], - [ - -73.434615, - 45.510962 - ], - [ - -73.434628, - 45.510958 - ], - [ - -73.43464, - 45.510958 - ], - [ - -73.434653, - 45.510958 - ], - [ - -73.434666, - 45.510953 - ], - [ - -73.434678, - 45.510953 - ], - [ - -73.43469, - 45.510949 - ], - [ - -73.434703, - 45.510949 - ], - [ - -73.434716, - 45.510945 - ], - [ - -73.434728, - 45.510945 - ], - [ - -73.43474, - 45.51094 - ], - [ - -73.434752, - 45.51094 - ], - [ - -73.434765, - 45.510936 - ], - [ - -73.434777, - 45.510936 - ], - [ - -73.43479, - 45.510931 - ], - [ - -73.434802, - 45.510931 - ], - [ - -73.434814, - 45.510927 - ], - [ - -73.434826, - 45.510922 - ], - [ - -73.434838, - 45.510922 - ], - [ - -73.43485, - 45.510918 - ], - [ - -73.434862, - 45.510913 - ], - [ - -73.434874, - 45.510913 - ], - [ - -73.434886, - 45.510909 - ], - [ - -73.434898, - 45.510904 - ], - [ - -73.43491, - 45.5109 - ], - [ - -73.434922, - 45.5109 - ], - [ - -73.434934, - 45.510895 - ], - [ - -73.434946, - 45.510891 - ], - [ - -73.434957, - 45.510886 - ], - [ - -73.434969, - 45.510886 - ], - [ - -73.43498, - 45.510882 - ], - [ - -73.434992, - 45.510877 - ], - [ - -73.435004, - 45.510873 - ], - [ - -73.435015, - 45.510868 - ], - [ - -73.435027, - 45.510864 - ], - [ - -73.435038, - 45.510859 - ], - [ - -73.435049, - 45.510855 - ], - [ - -73.435061, - 45.51085 - ], - [ - -73.435072, - 45.510846 - ], - [ - -73.435083, - 45.510846 - ], - [ - -73.435095, - 45.510841 - ], - [ - -73.435105, - 45.510837 - ], - [ - -73.435117, - 45.510832 - ], - [ - -73.435127, - 45.510823 - ], - [ - -73.435139, - 45.510819 - ], - [ - -73.435149, - 45.510814 - ], - [ - -73.43516, - 45.51081 - ], - [ - -73.435171, - 45.510805 - ], - [ - -73.435181, - 45.510801 - ], - [ - -73.435192, - 45.510796 - ], - [ - -73.435203, - 45.510792 - ], - [ - -73.435213, - 45.510787 - ], - [ - -73.435223, - 45.510783 - ], - [ - -73.435234, - 45.510774 - ], - [ - -73.435244, - 45.510769 - ], - [ - -73.435255, - 45.510765 - ], - [ - -73.435265, - 45.51076 - ], - [ - -73.435275, - 45.510756 - ], - [ - -73.435285, - 45.510747 - ], - [ - -73.435296, - 45.510742 - ], - [ - -73.435308, - 45.510733 - ], - [ - -73.435318, - 45.510729 - ], - [ - -73.435328, - 45.510724 - ], - [ - -73.435338, - 45.51072 - ], - [ - -73.435347, - 45.510711 - ], - [ - -73.435357, - 45.510706 - ], - [ - -73.435367, - 45.510702 - ], - [ - -73.435377, - 45.510697 - ], - [ - -73.435387, - 45.510688 - ], - [ - -73.435396, - 45.510684 - ], - [ - -73.435405, - 45.510679 - ], - [ - -73.435415, - 45.51067 - ], - [ - -73.435424, - 45.510666 - ], - [ - -73.435433, - 45.510657 - ], - [ - -73.435443, - 45.510652 - ], - [ - -73.435451, - 45.510648 - ], - [ - -73.435461, - 45.510639 - ], - [ - -73.43547, - 45.510634 - ], - [ - -73.435478, - 45.510625 - ], - [ - -73.435487, - 45.510621 - ], - [ - -73.435496, - 45.510612 - ], - [ - -73.435504, - 45.510608 - ], - [ - -73.435513, - 45.510599 - ], - [ - -73.435521, - 45.510594 - ], - [ - -73.43553, - 45.510585 - ], - [ - -73.435538, - 45.510581 - ], - [ - -73.435546, - 45.510572 - ], - [ - -73.435554, - 45.510567 - ], - [ - -73.435562, - 45.510558 - ], - [ - -73.43557, - 45.510554 - ], - [ - -73.435578, - 45.510545 - ], - [ - -73.435586, - 45.510536 - ], - [ - -73.435593, - 45.510531 - ], - [ - -73.435601, - 45.510522 - ], - [ - -73.435608, - 45.510518 - ], - [ - -73.435616, - 45.510509 - ], - [ - -73.435623, - 45.5105 - ], - [ - -73.43563, - 45.510495 - ], - [ - -73.435637, - 45.510486 - ], - [ - -73.435783, - 45.510318 - ], - [ - -73.435893, - 45.510189 - ], - [ - -73.435988, - 45.510081 - ], - [ - -73.435895, - 45.510041 - ], - [ - -73.435854, - 45.510023 - ], - [ - -73.435569, - 45.509897 - ], - [ - -73.435104, - 45.509697 - ], - [ - -73.434856, - 45.50959 - ], - [ - -73.434287, - 45.509355 - ], - [ - -73.434257, - 45.509343 - ], - [ - -73.433925, - 45.509203 - ], - [ - -73.433726, - 45.509117 - ], - [ - -73.433485, - 45.509005 - ], - [ - -73.433108, - 45.508806 - ], - [ - -73.432574, - 45.508487 - ], - [ - -73.432044, - 45.508167 - ], - [ - -73.432083, - 45.508041 - ], - [ - -73.432114, - 45.508014 - ], - [ - -73.432209, - 45.507974 - ], - [ - -73.435178, - 45.507773 - ], - [ - -73.437575, - 45.507662 - ], - [ - -73.438988, - 45.507572 - ], - [ - -73.440344, - 45.507425 - ], - [ - -73.442164, - 45.507306 - ], - [ - -73.445881, - 45.507063 - ], - [ - -73.452257, - 45.506638 - ], - [ - -73.452565, - 45.506616 - ], - [ - -73.453776, - 45.50654 - ], - [ - -73.455247, - 45.506419 - ], - [ - -73.456957, - 45.50624 - ], - [ - -73.460279, - 45.505832 - ], - [ - -73.460374, - 45.505823 - ], - [ - -73.461182, - 45.505728 - ], - [ - -73.463671, - 45.505509 - ], - [ - -73.465111, - 45.505401 - ], - [ - -73.467755, - 45.505222 - ], - [ - -73.468692, - 45.505168 - ], - [ - -73.470746, - 45.505025 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488612, - 45.504213 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492926, - 45.510111 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.494937, - 45.511118 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.504854, - 45.514415 - ], - [ - -73.505122, - 45.514484 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.514667, - 45.519318 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521463, - 45.52089 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 221, - "properties": { - "id": "9d64f1d3-97ac-4249-b2bd-a3caac87c4f8", - "data": { - "gtfs": { - "shape_id": "128_1_A" - }, - "segments": [ - { - "distanceMeters": 158, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 480, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 344, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 440, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 389, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 391, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 652, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 819, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 1474, - "travelTimeSeconds": 131 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 406, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 686, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 798, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 17, - "travelTimeSeconds": 2 - }, - { - "distanceMeters": 659, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 112, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 5528, - "travelTimeSeconds": 745 - }, - { - "distanceMeters": 1073, - "travelTimeSeconds": 144 - }, - { - "distanceMeters": 2189, - "travelTimeSeconds": 296 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 234, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 20075, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11809.056690870391, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.58, - "travelTimeWithoutDwellTimesSeconds": 2340, - "operatingTimeWithLayoverTimeSeconds": 2574, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2340, - "operatingSpeedWithLayoverMetersPerSecond": 7.8, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.58 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "525aaea9-a48f-4335-b4bb-4f671d4d9a31", - "4d10c33d-a086-4248-8e97-1236a7069436", - "7d066d0e-6085-4155-a554-6e1116a797c6", - "24a322e0-f890-4138-9c97-136b5a2cdd60", - "dca87cea-ccf9-454c-a18b-6489a3e1ab68", - "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", - "36c85e4a-3286-45d4-878d-41eda74eb078", - "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", - "9b7439c4-a8e6-4ce8-8c94-dcac4e29b500", - "d58c68b9-bb4a-45d1-90ea-403c9b830625", - "15f81e09-81b0-4df0-aa79-d4603e691ccd", - "6cc3ca76-cd11-4240-ac37-33142410aacb", - "f9418d0c-9ee7-44b5-a2f0-bb6a76a0df3e", - "4f54f52f-b62c-4341-a4d5-24c02344f25b", - "d3614ff1-08ff-435f-b8f7-1a76f68a0071", - "b3d09d08-d2e3-4276-8b7a-d3d07d979e6c", - "635ebffd-b274-4e79-9618-a0203ceaa811", - "79d0e96e-c3af-4a6c-9c91-73d01e93e557", - "71285487-65b1-4a9b-965b-e8b969ec642e", - "59f3ce33-037e-4929-8dad-491a01b3dda7", - "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", - "4012bfc4-334d-4b7d-9898-4cfd802d0479", - "784dd9cc-281a-47d9-8014-a2e6add384f6", - "3ce1139e-888c-4783-a57f-da50952eee26", - "90f9f389-96b4-444b-8d1b-774cf89df3c1", - "eb8bc90f-a856-480f-ac1f-7bb1795b4dab", - "0af40567-79a9-4b30-b572-639f90fb42b3", - "d0283e5b-f03b-432a-aa08-aa7137cbe6e7", - "d0283e5b-f03b-432a-aa08-aa7137cbe6e7", - "0c9c2b52-ead4-4bb7-9085-39aca76f0358", - "48cbd834-3690-4d56-af66-277be54f9820", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "46d7fd54-120a-42ab-b351-59b3e0fdaf40", - "segments": [ - 0, - 3, - 5, - 9, - 18, - 25, - 28, - 32, - 42, - 50, - 63, - 85, - 92, - 95, - 100, - 122, - 132, - 145, - 147, - 160, - 166, - 170, - 173, - 175, - 178, - 182, - 190, - 198, - 199, - 420, - 426, - 492, - 514 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 221, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.400131, - 45.4861 - ], - [ - -73.400474, - 45.48563 - ], - [ - -73.401257, - 45.484566 - ], - [ - -73.401315, - 45.484488 - ], - [ - -73.4013, - 45.484402 - ], - [ - -73.401353, - 45.482238 - ], - [ - -73.401357, - 45.48181 - ], - [ - -73.401359, - 45.48155 - ], - [ - -73.403227, - 45.48156 - ], - [ - -73.403345, - 45.481556 - ], - [ - -73.403402, - 45.481556 - ], - [ - -73.40343, - 45.481524 - ], - [ - -73.403466, - 45.481488 - ], - [ - -73.403495, - 45.481444 - ], - [ - -73.40361, - 45.481236 - ], - [ - -73.403683, - 45.481106 - ], - [ - -73.404054, - 45.480606 - ], - [ - -73.40413, - 45.480504 - ], - [ - -73.404218, - 45.480391 - ], - [ - -73.404603, - 45.47987 - ], - [ - -73.405053, - 45.479272 - ], - [ - -73.405386, - 45.478804 - ], - [ - -73.405459, - 45.478701 - ], - [ - -73.404979, - 45.478523 - ], - [ - -73.404641, - 45.478398 - ], - [ - -73.403831, - 45.47811 - ], - [ - -73.403041, - 45.477817 - ], - [ - -73.402331, - 45.477561 - ], - [ - -73.402127, - 45.477488 - ], - [ - -73.401223, - 45.477154 - ], - [ - -73.400364, - 45.476838 - ], - [ - -73.400163, - 45.47677 - ], - [ - -73.400151, - 45.476766 - ], - [ - -73.400139, - 45.476766 - ], - [ - -73.400127, - 45.476761 - ], - [ - -73.400116, - 45.476757 - ], - [ - -73.400105, - 45.476752 - ], - [ - -73.400094, - 45.476748 - ], - [ - -73.400083, - 45.476743 - ], - [ - -73.400072, - 45.476739 - ], - [ - -73.400061, - 45.476734 - ], - [ - -73.400051, - 45.476725 - ], - [ - -73.400041, - 45.476721 - ], - [ - -73.400031, - 45.476716 - ], - [ - -73.400021, - 45.476712 - ], - [ - -73.400012, - 45.476703 - ], - [ - -73.400002, - 45.476698 - ], - [ - -73.399993, - 45.476694 - ], - [ - -73.399984, - 45.476685 - ], - [ - -73.399975, - 45.47668 - ], - [ - -73.399966, - 45.476671 - ], - [ - -73.399958, - 45.476667 - ], - [ - -73.39995, - 45.476658 - ], - [ - -73.399942, - 45.476653 - ], - [ - -73.399934, - 45.476644 - ], - [ - -73.399927, - 45.476635 - ], - [ - -73.39992, - 45.476631 - ], - [ - -73.399913, - 45.476622 - ], - [ - -73.399906, - 45.476613 - ], - [ - -73.3999, - 45.476608 - ], - [ - -73.399891, - 45.476595 - ], - [ - -73.399786, - 45.476489 - ], - [ - -73.39968, - 45.476383 - ], - [ - -73.401013, - 45.475736 - ], - [ - -73.40103, - 45.475568 - ], - [ - -73.401127, - 45.475466 - ], - [ - -73.40138, - 45.475237 - ], - [ - -73.401528, - 45.475044 - ], - [ - -73.40166, - 45.474855 - ], - [ - -73.401661, - 45.474853 - ], - [ - -73.402001, - 45.474387 - ], - [ - -73.402299, - 45.473998 - ], - [ - -73.402424, - 45.473834 - ], - [ - -73.402526, - 45.473758 - ], - [ - -73.402598, - 45.473682 - ], - [ - -73.402716, - 45.473664 - ], - [ - -73.402827, - 45.473511 - ], - [ - -73.403012, - 45.473281 - ], - [ - -73.403898, - 45.473773 - ], - [ - -73.404545, - 45.474118 - ], - [ - -73.404642, - 45.474169 - ], - [ - -73.404723, - 45.474214 - ], - [ - -73.404728, - 45.474217 - ], - [ - -73.405388, - 45.474584 - ], - [ - -73.406182, - 45.475012 - ], - [ - -73.406595, - 45.47524 - ], - [ - -73.406966, - 45.475444 - ], - [ - -73.407908, - 45.474749 - ], - [ - -73.409543, - 45.473542 - ], - [ - -73.411466, - 45.472122 - ], - [ - -73.411574, - 45.472042 - ], - [ - -73.41391, - 45.470305 - ], - [ - -73.414113, - 45.470154 - ], - [ - -73.415603, - 45.469054 - ], - [ - -73.415792, - 45.468914 - ], - [ - -73.415843, - 45.468873 - ], - [ - -73.415903, - 45.468828 - ], - [ - -73.417637, - 45.467547 - ], - [ - -73.417764, - 45.467453 - ], - [ - -73.421216, - 45.464901 - ], - [ - -73.421345, - 45.464806 - ], - [ - -73.424228, - 45.46267 - ], - [ - -73.424593, - 45.462401 - ], - [ - -73.4247, - 45.462321 - ], - [ - -73.42461, - 45.462262 - ], - [ - -73.42397, - 45.461837 - ], - [ - -73.423467, - 45.461504 - ], - [ - -73.423345, - 45.461423 - ], - [ - -73.422579, - 45.460915 - ], - [ - -73.41994, - 45.459165 - ], - [ - -73.419828, - 45.45909 - ], - [ - -73.419877, - 45.459055 - ], - [ - -73.419985, - 45.458974 - ], - [ - -73.420398, - 45.458665 - ], - [ - -73.420587, - 45.458524 - ], - [ - -73.42063, - 45.458492 - ], - [ - -73.420736, - 45.458359 - ], - [ - -73.420842, - 45.458218 - ], - [ - -73.420969, - 45.457966 - ], - [ - -73.421005, - 45.457768 - ], - [ - -73.420994, - 45.457608 - ], - [ - -73.420984, - 45.457466 - ], - [ - -73.420984, - 45.457462 - ], - [ - -73.420768, - 45.456709 - ], - [ - -73.420731, - 45.456406 - ], - [ - -73.420728, - 45.456281 - ], - [ - -73.420766, - 45.456105 - ], - [ - -73.420872, - 45.455877 - ], - [ - -73.421054, - 45.45561 - ], - [ - -73.421295, - 45.455422 - ], - [ - -73.422321, - 45.454723 - ], - [ - -73.422712, - 45.454457 - ], - [ - -73.42282, - 45.454384 - ], - [ - -73.425, - 45.452904 - ], - [ - -73.425231, - 45.452748 - ], - [ - -73.42721, - 45.451405 - ], - [ - -73.427291, - 45.45135 - ], - [ - -73.42733, - 45.451323 - ], - [ - -73.427666, - 45.451103 - ], - [ - -73.427666, - 45.451103 - ], - [ - -73.428037, - 45.450878 - ], - [ - -73.430464, - 45.449449 - ], - [ - -73.430991, - 45.449139 - ], - [ - -73.431146, - 45.449051 - ], - [ - -73.431275, - 45.448979 - ], - [ - -73.432931, - 45.450108 - ], - [ - -73.433653, - 45.450548 - ], - [ - -73.433852, - 45.450611 - ], - [ - -73.433938, - 45.450638 - ], - [ - -73.434086, - 45.450685 - ], - [ - -73.434372, - 45.450754 - ], - [ - -73.434532, - 45.45078 - ], - [ - -73.434811, - 45.450806 - ], - [ - -73.435216, - 45.450834 - ], - [ - -73.43546, - 45.450862 - ], - [ - -73.435648, - 45.450893 - ], - [ - -73.435818, - 45.450928 - ], - [ - -73.435935, - 45.450963 - ], - [ - -73.436195, - 45.451061 - ], - [ - -73.436419, - 45.451155 - ], - [ - -73.436602, - 45.451264 - ], - [ - -73.436662, - 45.451304 - ], - [ - -73.436758, - 45.451367 - ], - [ - -73.436938, - 45.4515 - ], - [ - -73.437141, - 45.451649 - ], - [ - -73.43763, - 45.452001 - ], - [ - -73.438278, - 45.452469 - ], - [ - -73.438425, - 45.452575 - ], - [ - -73.438899, - 45.452918 - ], - [ - -73.439474, - 45.45333 - ], - [ - -73.439588, - 45.453411 - ], - [ - -73.4398, - 45.453561 - ], - [ - -73.439861, - 45.453603 - ], - [ - -73.439909, - 45.45364 - ], - [ - -73.439987, - 45.4537 - ], - [ - -73.440478, - 45.454051 - ], - [ - -73.44074, - 45.454241 - ], - [ - -73.44099, - 45.454406 - ], - [ - -73.441259, - 45.45456 - ], - [ - -73.441361, - 45.454611 - ], - [ - -73.441496, - 45.454678 - ], - [ - -73.441752, - 45.454794 - ], - [ - -73.441911, - 45.454854 - ], - [ - -73.442069, - 45.454915 - ], - [ - -73.442434, - 45.455032 - ], - [ - -73.442619, - 45.455085 - ], - [ - -73.442851, - 45.45514 - ], - [ - -73.443004, - 45.455181 - ], - [ - -73.443312, - 45.455218 - ], - [ - -73.443443, - 45.455253 - ], - [ - -73.443793, - 45.455352 - ], - [ - -73.443977, - 45.455424 - ], - [ - -73.444277, - 45.455609 - ], - [ - -73.444561, - 45.455812 - ], - [ - -73.445006, - 45.456208 - ], - [ - -73.445443, - 45.456518 - ], - [ - -73.445605, - 45.456635 - ], - [ - -73.445878, - 45.456816 - ], - [ - -73.445952, - 45.456865 - ], - [ - -73.446142, - 45.456982 - ], - [ - -73.446227, - 45.457004 - ], - [ - -73.446332, - 45.457032 - ], - [ - -73.446489, - 45.457095 - ], - [ - -73.446596, - 45.457158 - ], - [ - -73.446702, - 45.457243 - ], - [ - -73.446812, - 45.457324 - ], - [ - -73.446913, - 45.457357 - ], - [ - -73.446965, - 45.457368 - ], - [ - -73.447054, - 45.457381 - ], - [ - -73.447226, - 45.457406 - ], - [ - -73.447335, - 45.457449 - ], - [ - -73.448552, - 45.458228 - ], - [ - -73.448934, - 45.458388 - ], - [ - -73.449458, - 45.458593 - ], - [ - -73.449707, - 45.458708 - ], - [ - -73.450153, - 45.459037 - ], - [ - -73.450441, - 45.459247 - ], - [ - -73.451481, - 45.460003 - ], - [ - -73.452547, - 45.46077 - ], - [ - -73.454622, - 45.462265 - ], - [ - -73.454692, - 45.462368 - ], - [ - -73.454988, - 45.462608 - ], - [ - -73.455597, - 45.463097 - ], - [ - -73.456345, - 45.463585 - ], - [ - -73.45668, - 45.463751 - ], - [ - -73.457165, - 45.463986 - ], - [ - -73.45779, - 45.464251 - ], - [ - -73.457936, - 45.464285 - ], - [ - -73.458332, - 45.464415 - ], - [ - -73.458709, - 45.464519 - ], - [ - -73.459184, - 45.464658 - ], - [ - -73.459848, - 45.464797 - ], - [ - -73.460341, - 45.46487 - ], - [ - -73.460876, - 45.464928 - ], - [ - -73.461292, - 45.464968 - ], - [ - -73.461888, - 45.465033 - ], - [ - -73.462599, - 45.465146 - ], - [ - -73.463202, - 45.465285 - ], - [ - -73.463734, - 45.465422 - ], - [ - -73.464137, - 45.465531 - ], - [ - -73.464519, - 45.465639 - ], - [ - -73.464829, - 45.465721 - ], - [ - -73.465021, - 45.465762 - ], - [ - -73.465202, - 45.465781 - ], - [ - -73.465352, - 45.4658 - ], - [ - -73.465498, - 45.465796 - ], - [ - -73.465647, - 45.465796 - ], - [ - -73.465791, - 45.465789 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.469032, - 45.46639 - ], - [ - -73.469043, - 45.46624 - ] - ] - }, - "id": 222, - "properties": { - "id": "16e9a239-258f-4e62-9d70-1fc150638dfa", - "data": { - "gtfs": { - "shape_id": "132_2_A" - }, - "segments": [ - { - "distanceMeters": 192, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 329, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 406, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 77, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 423, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 2654, - "travelTimeSeconds": 540 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10183, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5813.842791168849, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.79, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 6.06, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.79 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6", - "2d9ef136-ec60-4019-bd4d-d2df55cc0477", - "df277747-60c8-4b3b-bafb-24f50e6b7964", - "d15a4dea-557a-47a7-943e-d1e1a44d1a5a", - "9a8dc92f-8883-4536-8459-08c71c110b3b", - "15f5258e-a1ce-4027-8766-29bb39d270b4", - "5b05f00d-fd81-4604-b07f-a519f2a652e9", - "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", - "55ca5f95-fab1-46cf-be83-81db90d348a5", - "bd054361-ba99-4c5e-bde0-47f325682b88", - "cf532e47-3506-49e5-a1ed-43182c89aa79", - "cbe5dd37-dce1-464a-9725-6d31d37c48ab", - "8dc191fb-71db-4873-9019-c9cedd32b2f0", - "176a1328-a08b-40f7-9010-c279f0b6cf5d", - "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", - "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", - "d739fe08-5298-4356-bd9e-c48a7fee16a1", - "bfb03303-2ee6-40dd-8e8f-859a06b338a6", - "2b6f210c-4f28-43d1-b096-b48c582f5274", - "57b5655a-03f7-4fb9-a3a9-26c2523cb5bf", - "3947066a-3681-4f55-8693-0a5fac46c728", - "006d28ae-a3cc-4f45-8689-daa6cf9386f5", - "94721b0b-0bae-4300-ab61-58dc9d3fe85b", - "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", - "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", - "27e1da8c-287d-4c6b-9905-9c8c3d07097d", - "9fe6df14-62d0-4a44-8e19-85300b42de89", - "c46f92e7-e692-49ea-b12f-0df7099ee6d5", - "06cee1c3-abcc-4982-b889-e73356b844e0", - "9e4bc046-2878-4cee-af77-934e179aa77f", - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1" - ], - "stops": [], - "line_id": "4584a75f-0086-4c65-a733-b04855c55230", - "segments": [ - 0, - 2, - 6, - 16, - 21, - 27, - 61, - 71, - 79, - 85, - 88, - 89, - 91, - 93, - 97, - 99, - 101, - 106, - 109, - 113, - 120, - 132, - 134, - 138, - 143, - 147, - 161, - 166, - 171, - 182 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 222, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469043, - 45.46624 - ], - [ - -73.469051, - 45.466111 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466832, - 45.466672 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.46363, - 45.4683 - ], - [ - -73.463472, - 45.468395 - ], - [ - -73.463397, - 45.468431 - ], - [ - -73.463306, - 45.468449 - ], - [ - -73.463219, - 45.468458 - ], - [ - -73.463124, - 45.468449 - ], - [ - -73.463037, - 45.468413 - ], - [ - -73.462702, - 45.468201 - ], - [ - -73.462482, - 45.468064 - ], - [ - -73.462471, - 45.468057 - ], - [ - -73.462195, - 45.467872 - ], - [ - -73.461894, - 45.467656 - ], - [ - -73.461788, - 45.46758 - ], - [ - -73.46133, - 45.467251 - ], - [ - -73.461109, - 45.467094 - ], - [ - -73.460905, - 45.466945 - ], - [ - -73.460722, - 45.466814 - ], - [ - -73.460629, - 45.466751 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457079, - 45.464307 - ], - [ - -73.45655, - 45.463924 - ], - [ - -73.455675, - 45.463282 - ], - [ - -73.454797, - 45.462637 - ], - [ - -73.454278, - 45.462276 - ], - [ - -73.453602, - 45.461785 - ], - [ - -73.453448, - 45.461674 - ], - [ - -73.453385, - 45.461629 - ], - [ - -73.45305, - 45.461381 - ], - [ - -73.45275, - 45.461169 - ], - [ - -73.452262, - 45.460814 - ], - [ - -73.449839, - 45.459072 - ], - [ - -73.449359, - 45.458774 - ], - [ - -73.448479, - 45.458383 - ], - [ - -73.448024, - 45.45813 - ], - [ - -73.447729, - 45.457941 - ], - [ - -73.447401, - 45.457716 - ], - [ - -73.447206, - 45.457532 - ], - [ - -73.447146, - 45.457473 - ], - [ - -73.447054, - 45.457381 - ], - [ - -73.446923, - 45.457262 - ], - [ - -73.446661, - 45.457072 - ], - [ - -73.44657, - 45.457027 - ], - [ - -73.446482, - 45.456996 - ], - [ - -73.446388, - 45.45696 - ], - [ - -73.446222, - 45.456915 - ], - [ - -73.445958, - 45.456735 - ], - [ - -73.445693, - 45.456555 - ], - [ - -73.445542, - 45.456451 - ], - [ - -73.445085, - 45.456131 - ], - [ - -73.444561, - 45.455812 - ], - [ - -73.444277, - 45.455609 - ], - [ - -73.443977, - 45.455424 - ], - [ - -73.443793, - 45.455352 - ], - [ - -73.443443, - 45.455253 - ], - [ - -73.443312, - 45.455218 - ], - [ - -73.443048, - 45.455091 - ], - [ - -73.442897, - 45.455046 - ], - [ - -73.442461, - 45.454915 - ], - [ - -73.442149, - 45.454821 - ], - [ - -73.441781, - 45.454681 - ], - [ - -73.441446, - 45.454519 - ], - [ - -73.44141, - 45.454501 - ], - [ - -73.440931, - 45.454231 - ], - [ - -73.440207, - 45.453716 - ], - [ - -73.440081, - 45.453626 - ], - [ - -73.440001, - 45.453569 - ], - [ - -73.43991, - 45.453501 - ], - [ - -73.439666, - 45.453317 - ], - [ - -73.439573, - 45.453251 - ], - [ - -73.439082, - 45.452902 - ], - [ - -73.43863, - 45.452573 - ], - [ - -73.438531, - 45.452502 - ], - [ - -73.437308, - 45.451615 - ], - [ - -73.43718, - 45.45152 - ], - [ - -73.437043, - 45.451417 - ], - [ - -73.436765, - 45.45122 - ], - [ - -73.436538, - 45.451086 - ], - [ - -73.436237, - 45.450946 - ], - [ - -73.435932, - 45.450844 - ], - [ - -73.435722, - 45.450794 - ], - [ - -73.4355, - 45.450753 - ], - [ - -73.435275, - 45.450728 - ], - [ - -73.434955, - 45.450707 - ], - [ - -73.434723, - 45.450689 - ], - [ - -73.434511, - 45.450663 - ], - [ - -73.434387, - 45.45064 - ], - [ - -73.434163, - 45.450586 - ], - [ - -73.434125, - 45.45058 - ], - [ - -73.433988, - 45.45056 - ], - [ - -73.433599, - 45.45039 - ], - [ - -73.432691, - 45.449779 - ], - [ - -73.431398, - 45.448909 - ], - [ - -73.431292, - 45.448821 - ], - [ - -73.431167, - 45.448894 - ], - [ - -73.430945, - 45.449024 - ], - [ - -73.430882, - 45.449061 - ], - [ - -73.430442, - 45.449318 - ], - [ - -73.427598, - 45.450978 - ], - [ - -73.427523, - 45.451027 - ], - [ - -73.427205, - 45.451234 - ], - [ - -73.427162, - 45.451264 - ], - [ - -73.427086, - 45.451315 - ], - [ - -73.424876, - 45.452814 - ], - [ - -73.424544, - 45.45304 - ], - [ - -73.422189, - 45.454637 - ], - [ - -73.421755, - 45.454932 - ], - [ - -73.421127, - 45.455358 - ], - [ - -73.420979, - 45.455496 - ], - [ - -73.420845, - 45.455619 - ], - [ - -73.420639, - 45.455911 - ], - [ - -73.420583, - 45.456092 - ], - [ - -73.420566, - 45.456243 - ], - [ - -73.420553, - 45.45636 - ], - [ - -73.420583, - 45.456538 - ], - [ - -73.420669, - 45.456926 - ], - [ - -73.420782, - 45.457385 - ], - [ - -73.420794, - 45.457434 - ], - [ - -73.420797, - 45.457471 - ], - [ - -73.420827, - 45.457764 - ], - [ - -73.420746, - 45.45806 - ], - [ - -73.420602, - 45.458262 - ], - [ - -73.420434, - 45.458418 - ], - [ - -73.420428, - 45.458422 - ], - [ - -73.419732, - 45.458956 - ], - [ - -73.419683, - 45.458994 - ], - [ - -73.419564, - 45.459076 - ], - [ - -73.419647, - 45.45913 - ], - [ - -73.419713, - 45.459174 - ], - [ - -73.422289, - 45.460877 - ], - [ - -73.422478, - 45.461003 - ], - [ - -73.423149, - 45.461446 - ], - [ - -73.42386, - 45.461916 - ], - [ - -73.424488, - 45.462332 - ], - [ - -73.424593, - 45.462401 - ], - [ - -73.424266, - 45.462642 - ], - [ - -73.421432, - 45.464741 - ], - [ - -73.421345, - 45.464806 - ], - [ - -73.417826, - 45.467407 - ], - [ - -73.417764, - 45.467453 - ], - [ - -73.41601, - 45.468749 - ], - [ - -73.415903, - 45.468828 - ], - [ - -73.415843, - 45.468873 - ], - [ - -73.415792, - 45.468914 - ], - [ - -73.414205, - 45.470087 - ], - [ - -73.414113, - 45.470154 - ], - [ - -73.411708, - 45.471942 - ], - [ - -73.411574, - 45.472042 - ], - [ - -73.409689, - 45.473434 - ], - [ - -73.407183, - 45.475284 - ], - [ - -73.406966, - 45.475444 - ], - [ - -73.406608, - 45.475247 - ], - [ - -73.406182, - 45.475012 - ], - [ - -73.405527, - 45.474658 - ], - [ - -73.405388, - 45.474584 - ], - [ - -73.404728, - 45.474217 - ], - [ - -73.404723, - 45.474214 - ], - [ - -73.404642, - 45.474169 - ], - [ - -73.403898, - 45.473773 - ], - [ - -73.403012, - 45.473281 - ], - [ - -73.402925, - 45.473236 - ], - [ - -73.402861, - 45.4732 - ], - [ - -73.402694, - 45.473434 - ], - [ - -73.402652, - 45.473497 - ], - [ - -73.402582, - 45.473596 - ], - [ - -73.402575, - 45.473605 - ], - [ - -73.402598, - 45.473682 - ], - [ - -73.402526, - 45.473758 - ], - [ - -73.402424, - 45.473834 - ], - [ - -73.402001, - 45.474387 - ], - [ - -73.40166, - 45.474855 - ], - [ - -73.401528, - 45.475044 - ], - [ - -73.40138, - 45.475237 - ], - [ - -73.401127, - 45.475466 - ], - [ - -73.40103, - 45.475568 - ], - [ - -73.400906, - 45.47563 - ], - [ - -73.400159, - 45.475999 - ], - [ - -73.399566, - 45.476293 - ], - [ - -73.39968, - 45.476383 - ], - [ - -73.399891, - 45.476595 - ], - [ - -73.3999, - 45.476608 - ], - [ - -73.399906, - 45.476613 - ], - [ - -73.399913, - 45.476622 - ], - [ - -73.39992, - 45.476631 - ], - [ - -73.399927, - 45.476635 - ], - [ - -73.399934, - 45.476644 - ], - [ - -73.399942, - 45.476653 - ], - [ - -73.399946, - 45.476656 - ], - [ - -73.39995, - 45.476658 - ], - [ - -73.399958, - 45.476667 - ], - [ - -73.399966, - 45.476671 - ], - [ - -73.399975, - 45.47668 - ], - [ - -73.399984, - 45.476685 - ], - [ - -73.399993, - 45.476694 - ], - [ - -73.400002, - 45.476698 - ], - [ - -73.400012, - 45.476703 - ], - [ - -73.400021, - 45.476712 - ], - [ - -73.400031, - 45.476716 - ], - [ - -73.400041, - 45.476721 - ], - [ - -73.400051, - 45.476725 - ], - [ - -73.400061, - 45.476734 - ], - [ - -73.400072, - 45.476739 - ], - [ - -73.400083, - 45.476743 - ], - [ - -73.400094, - 45.476748 - ], - [ - -73.400105, - 45.476752 - ], - [ - -73.400116, - 45.476757 - ], - [ - -73.400127, - 45.476761 - ], - [ - -73.400139, - 45.476766 - ], - [ - -73.400151, - 45.476766 - ], - [ - -73.400163, - 45.47677 - ], - [ - -73.400247, - 45.476799 - ], - [ - -73.400364, - 45.476838 - ], - [ - -73.401223, - 45.477154 - ], - [ - -73.401928, - 45.477414 - ], - [ - -73.402127, - 45.477488 - ], - [ - -73.403041, - 45.477817 - ], - [ - -73.403831, - 45.47811 - ], - [ - -73.404641, - 45.478398 - ], - [ - -73.405305, - 45.478644 - ], - [ - -73.405459, - 45.478701 - ], - [ - -73.405053, - 45.479272 - ], - [ - -73.404603, - 45.47987 - ], - [ - -73.404218, - 45.480391 - ], - [ - -73.404201, - 45.480413 - ], - [ - -73.40413, - 45.480504 - ], - [ - -73.403683, - 45.481106 - ], - [ - -73.40361, - 45.481236 - ], - [ - -73.403495, - 45.481444 - ], - [ - -73.403466, - 45.481488 - ], - [ - -73.40343, - 45.481524 - ], - [ - -73.403402, - 45.481556 - ], - [ - -73.403345, - 45.481556 - ], - [ - -73.403227, - 45.48156 - ], - [ - -73.401583, - 45.481551 - ], - [ - -73.401359, - 45.48155 - ], - [ - -73.401353, - 45.482238 - ], - [ - -73.4013, - 45.484402 - ], - [ - -73.4013, - 45.484402 - ], - [ - -73.401315, - 45.484488 - ], - [ - -73.400474, - 45.48563 - ], - [ - -73.400321, - 45.48584 - ] - ] - }, - "id": 223, - "properties": { - "id": "c3e8934a-41b3-457b-bcab-f96a24e42d77", - "data": { - "gtfs": { - "shape_id": "132_2_R" - }, - "segments": [ - { - "distanceMeters": 3114, - "travelTimeSeconds": 420 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 348, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 307, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 515, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 337, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 335, - "travelTimeSeconds": 98 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 53 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10714, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5813.842791168849, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.61, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 5.95, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.61 - }, - "mode": "bus", - "name": "Parc de la Cité", - "color": "#A32638", - "nodes": [ - "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "9159ff88-d9d5-4cda-a7ee-41b416c49163", - "06cee1c3-abcc-4982-b889-e73356b844e0", - "c46f92e7-e692-49ea-b12f-0df7099ee6d5", - "fdc86629-6768-46ce-9ee0-1d935d00516c", - "27e1da8c-287d-4c6b-9905-9c8c3d07097d", - "0b421cac-8896-468a-9252-ce5f1fee4e84", - "1f1619c9-3302-430c-9ade-aab4bf9e1e55", - "c74e0c90-a5ea-4788-9b1d-7bf05f50a1c4", - "657fc71f-da59-4e3a-8872-f83480cde10d", - "812fffe8-cc71-4dbc-93c9-b4301abed6c9", - "2091533d-ae73-45a6-ae28-00a869c29f04", - "d8582feb-8d83-457a-8a52-dc395b1f7390", - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", - "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", - "176a1328-a08b-40f7-9010-c279f0b6cf5d", - "8dc191fb-71db-4873-9019-c9cedd32b2f0", - "cbe5dd37-dce1-464a-9725-6d31d37c48ab", - "fb30643a-60d9-443e-8b22-29ad762aebdb", - "bd054361-ba99-4c5e-bde0-47f325682b88", - "931c7650-b24c-4431-a556-56243637e8a2", - "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", - "5b05f00d-fd81-4604-b07f-a519f2a652e9", - "69493295-4b3e-4f92-babc-7684f8cd988a", - "15f5258e-a1ce-4027-8766-29bb39d270b4", - "9a8dc92f-8883-4536-8459-08c71c110b3b", - "d15a4dea-557a-47a7-943e-d1e1a44d1a5a", - "df277747-60c8-4b3b-bafb-24f50e6b7964", - "2d9ef136-ec60-4019-bd4d-d2df55cc0477", - "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6" - ], - "stops": [], - "line_id": "4584a75f-0086-4c65-a733-b04855c55230", - "segments": [ - 0, - 98, - 104, - 111, - 114, - 128, - 131, - 135, - 139, - 144, - 146, - 156, - 169, - 173, - 176, - 178, - 180, - 184, - 186, - 188, - 189, - 193, - 204, - 216, - 250, - 253, - 258, - 263, - 273, - 277 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 223, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.45031, - 45.600786 - ], - [ - -73.45028, - 45.600747 - ], - [ - -73.45017, - 45.600666 - ], - [ - -73.450081, - 45.60062 - ], - [ - -73.449968, - 45.600603 - ], - [ - -73.449925, - 45.600607 - ], - [ - -73.449868, - 45.600621 - ], - [ - -73.449802, - 45.600661 - ], - [ - -73.449715, - 45.600713 - ], - [ - -73.449674, - 45.600743 - ], - [ - -73.449661, - 45.600772 - ], - [ - -73.449666, - 45.600812 - ], - [ - -73.449924, - 45.601045 - ], - [ - -73.449978, - 45.601072 - ], - [ - -73.450055, - 45.601083 - ], - [ - -73.45017, - 45.60109 - ], - [ - -73.450263, - 45.601099 - ], - [ - -73.450328, - 45.601118 - ], - [ - -73.450379, - 45.601155 - ], - [ - -73.450393, - 45.601201 - ], - [ - -73.450376, - 45.60125 - ], - [ - -73.450362, - 45.601293 - ], - [ - -73.450349, - 45.601366 - ], - [ - -73.450328, - 45.601396 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450247, - 45.601412 - ], - [ - -73.450159, - 45.601408 - ], - [ - -73.450117, - 45.6014 - ], - [ - -73.450076, - 45.601382 - ], - [ - -73.450018, - 45.601356 - ], - [ - -73.449945, - 45.60132 - ], - [ - -73.449881, - 45.6013 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.447887, - 45.599794 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.446902, - 45.599 - ], - [ - -73.446713, - 45.59886 - ], - [ - -73.446259, - 45.598527 - ], - [ - -73.445375, - 45.597909 - ], - [ - -73.445261, - 45.597829 - ], - [ - -73.444803, - 45.597518 - ], - [ - -73.443553, - 45.596668 - ], - [ - -73.443394, - 45.596559 - ], - [ - -73.442992, - 45.59628 - ], - [ - -73.44284, - 45.596175 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.439894, - 45.593981 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438239, - 45.592763 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.437022, - 45.591849 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.43726, - 45.590957 - ], - [ - -73.437547, - 45.590791 - ], - [ - -73.438173, - 45.590429 - ], - [ - -73.438715, - 45.590114 - ], - [ - -73.438952, - 45.589961 - ], - [ - -73.439421, - 45.589651 - ], - [ - -73.439514, - 45.589595 - ], - [ - -73.439556, - 45.58957 - ], - [ - -73.43977, - 45.589417 - ], - [ - -73.43999, - 45.589251 - ], - [ - -73.440248, - 45.589054 - ], - [ - -73.440356, - 45.588972 - ], - [ - -73.440499, - 45.588855 - ], - [ - -73.440849, - 45.588559 - ], - [ - -73.441414, - 45.588033 - ], - [ - -73.441626, - 45.587839 - ], - [ - -73.442055, - 45.587448 - ], - [ - -73.442542, - 45.586998 - ], - [ - -73.443377, - 45.586239 - ], - [ - -73.4435, - 45.586126 - ], - [ - -73.444477, - 45.585232 - ], - [ - -73.444685, - 45.585042 - ], - [ - -73.445389, - 45.584396 - ], - [ - -73.445533, - 45.584264 - ], - [ - -73.445863, - 45.583995 - ], - [ - -73.446073, - 45.583824 - ], - [ - -73.446281, - 45.583662 - ], - [ - -73.446365, - 45.583594 - ], - [ - -73.446509, - 45.583477 - ], - [ - -73.446663, - 45.583334 - ], - [ - -73.446759, - 45.583239 - ], - [ - -73.446885, - 45.583095 - ], - [ - -73.447026, - 45.582915 - ], - [ - -73.44712, - 45.582776 - ], - [ - -73.44719, - 45.582652 - ], - [ - -73.447216, - 45.582605 - ], - [ - -73.447288, - 45.582456 - ], - [ - -73.447348, - 45.582322 - ], - [ - -73.447422, - 45.58211 - ], - [ - -73.447475, - 45.581885 - ], - [ - -73.447497, - 45.581732 - ], - [ - -73.447521, - 45.581602 - ], - [ - -73.447516, - 45.581462 - ], - [ - -73.447513, - 45.581287 - ], - [ - -73.447477, - 45.581057 - ], - [ - -73.447325, - 45.580308 - ], - [ - -73.447286, - 45.580117 - ], - [ - -73.447144, - 45.579424 - ], - [ - -73.447089, - 45.579152 - ], - [ - -73.447056, - 45.578992 - ], - [ - -73.447038, - 45.578907 - ], - [ - -73.446989, - 45.578673 - ], - [ - -73.446923, - 45.578342 - ], - [ - -73.446764, - 45.577557 - ], - [ - -73.446738, - 45.577422 - ], - [ - -73.446692, - 45.57717 - ], - [ - -73.446671, - 45.576945 - ], - [ - -73.446671, - 45.57667 - ], - [ - -73.446671, - 45.576571 - ], - [ - -73.44669, - 45.57644 - ], - [ - -73.44669, - 45.576436 - ], - [ - -73.446707, - 45.576333 - ], - [ - -73.446734, - 45.576243 - ], - [ - -73.446807, - 45.576018 - ], - [ - -73.446886, - 45.575843 - ], - [ - -73.446894, - 45.575825 - ], - [ - -73.44709, - 45.575409 - ], - [ - -73.447166, - 45.575249 - ], - [ - -73.447388, - 45.574789 - ], - [ - -73.447238, - 45.574749 - ], - [ - -73.446746, - 45.574587 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.443147, - 45.572802 - ], - [ - -73.443228, - 45.572879 - ], - [ - -73.443273, - 45.572955 - ], - [ - -73.443271, - 45.573 - ], - [ - -73.443276, - 45.573125 - ], - [ - -73.443281, - 45.573166 - ], - [ - -73.443386, - 45.57326 - ], - [ - -73.443502, - 45.573319 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.44468, - 45.573697 - ], - [ - -73.444697, - 45.573706 - ], - [ - -73.444729, - 45.573713 - ], - [ - -73.444769, - 45.573716 - ], - [ - -73.444831, - 45.573715 - ], - [ - -73.444884, - 45.573708 - ], - [ - -73.44491, - 45.573694 - ], - [ - -73.444915, - 45.573687 - ], - [ - -73.444953, - 45.573633 - ], - [ - -73.44492, - 45.573618 - ], - [ - -73.444872, - 45.573601 - ], - [ - -73.444829, - 45.573598 - ], - [ - -73.444766, - 45.573611 - ], - [ - -73.444749, - 45.573615 - ], - [ - -73.44471, - 45.573635 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.444095, - 45.5735 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.443539, - 45.573203 - ], - [ - -73.443523, - 45.573155 - ], - [ - -73.44348, - 45.573034 - ], - [ - -73.443427, - 45.572912 - ], - [ - -73.44336, - 45.572841 - ], - [ - -73.443253, - 45.572772 - ], - [ - -73.443199, - 45.572746 - ], - [ - -73.443114, - 45.572731 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.446746, - 45.574587 - ], - [ - -73.447238, - 45.574749 - ], - [ - -73.447388, - 45.574789 - ], - [ - -73.447436, - 45.574664 - ], - [ - -73.447623, - 45.574219 - ], - [ - -73.44779, - 45.573737 - ], - [ - -73.447926, - 45.573404 - ], - [ - -73.448288, - 45.57264 - ], - [ - -73.448668, - 45.571794 - ], - [ - -73.449152, - 45.570638 - ], - [ - -73.449223, - 45.570544 - ], - [ - -73.449264, - 45.570454 - ], - [ - -73.449543, - 45.569814 - ], - [ - -73.449722, - 45.56941 - ], - [ - -73.449947, - 45.568902 - ], - [ - -73.449982, - 45.56883 - ], - [ - -73.450051, - 45.568681 - ], - [ - -73.450055, - 45.568672 - ], - [ - -73.450057, - 45.568668 - ], - [ - -73.450059, - 45.568663 - ], - [ - -73.450061, - 45.568659 - ], - [ - -73.450063, - 45.568654 - ], - [ - -73.450065, - 45.56865 - ], - [ - -73.450067, - 45.568645 - ], - [ - -73.450069, - 45.568641 - ], - [ - -73.450071, - 45.568636 - ], - [ - -73.450072, - 45.568632 - ], - [ - -73.450074, - 45.568627 - ], - [ - -73.450076, - 45.568623 - ], - [ - -73.450078, - 45.568618 - ], - [ - -73.45008, - 45.568618 - ], - [ - -73.450082, - 45.568614 - ], - [ - -73.450084, - 45.568609 - ], - [ - -73.450086, - 45.568605 - ], - [ - -73.450087, - 45.5686 - ], - [ - -73.450089, - 45.568596 - ], - [ - -73.450091, - 45.568591 - ], - [ - -73.450093, - 45.568587 - ], - [ - -73.450095, - 45.568582 - ], - [ - -73.450097, - 45.568578 - ], - [ - -73.450099, - 45.568573 - ], - [ - -73.450101, - 45.568569 - ], - [ - -73.450102, - 45.568564 - ], - [ - -73.450104, - 45.56856 - ], - [ - -73.450106, - 45.568555 - ], - [ - -73.450108, - 45.568551 - ], - [ - -73.45011, - 45.568546 - ], - [ - -73.450112, - 45.568542 - ], - [ - -73.450114, - 45.568537 - ], - [ - -73.450115, - 45.568533 - ], - [ - -73.450117, - 45.568528 - ], - [ - -73.450119, - 45.568524 - ], - [ - -73.45012, - 45.568519 - ], - [ - -73.450122, - 45.568519 - ], - [ - -73.450124, - 45.568515 - ], - [ - -73.450126, - 45.56851 - ], - [ - -73.450128, - 45.568506 - ], - [ - -73.450129, - 45.568501 - ], - [ - -73.450131, - 45.568497 - ], - [ - -73.450133, - 45.568492 - ], - [ - -73.450134, - 45.568489 - ], - [ - -73.450134, - 45.568488 - ], - [ - -73.450136, - 45.568483 - ], - [ - -73.450138, - 45.568479 - ], - [ - -73.45014, - 45.568474 - ], - [ - -73.450141, - 45.56847 - ], - [ - -73.450143, - 45.568465 - ], - [ - -73.450145, - 45.568461 - ], - [ - -73.450146, - 45.568456 - ], - [ - -73.450148, - 45.568452 - ], - [ - -73.45015, - 45.568447 - ], - [ - -73.450151, - 45.568443 - ], - [ - -73.450153, - 45.568438 - ], - [ - -73.450154, - 45.568434 - ], - [ - -73.450156, - 45.568429 - ], - [ - -73.450158, - 45.568425 - ], - [ - -73.45016, - 45.56842 - ], - [ - -73.450161, - 45.568416 - ], - [ - -73.450163, - 45.568411 - ], - [ - -73.450164, - 45.568407 - ], - [ - -73.450166, - 45.568402 - ], - [ - -73.450168, - 45.568398 - ], - [ - -73.450169, - 45.568393 - ], - [ - -73.450171, - 45.568393 - ], - [ - -73.450173, - 45.568389 - ], - [ - -73.450174, - 45.568384 - ], - [ - -73.450175, - 45.56838 - ], - [ - -73.450177, - 45.568375 - ], - [ - -73.450179, - 45.568371 - ], - [ - -73.45018, - 45.568366 - ], - [ - -73.450182, - 45.568362 - ], - [ - -73.450183, - 45.568357 - ], - [ - -73.450185, - 45.568353 - ], - [ - -73.450186, - 45.568348 - ], - [ - -73.450188, - 45.568344 - ], - [ - -73.450189, - 45.568339 - ], - [ - -73.450191, - 45.568335 - ], - [ - -73.450192, - 45.56833 - ], - [ - -73.450194, - 45.568326 - ], - [ - -73.450195, - 45.568321 - ], - [ - -73.450197, - 45.568317 - ], - [ - -73.450198, - 45.568312 - ], - [ - -73.4502, - 45.568308 - ], - [ - -73.450201, - 45.568303 - ], - [ - -73.450203, - 45.568299 - ], - [ - -73.450204, - 45.568294 - ], - [ - -73.450205, - 45.56829 - ], - [ - -73.450207, - 45.568285 - ], - [ - -73.450208, - 45.568281 - ], - [ - -73.45021, - 45.568276 - ], - [ - -73.450211, - 45.568272 - ], - [ - -73.450213, - 45.568267 - ], - [ - -73.450214, - 45.568263 - ], - [ - -73.450215, - 45.568258 - ], - [ - -73.450217, - 45.568254 - ], - [ - -73.450218, - 45.568249 - ], - [ - -73.450219, - 45.568245 - ], - [ - -73.450221, - 45.56824 - ], - [ - -73.450222, - 45.568236 - ], - [ - -73.450224, - 45.568231 - ], - [ - -73.450225, - 45.568227 - ], - [ - -73.450226, - 45.568227 - ], - [ - -73.450228, - 45.568222 - ], - [ - -73.450229, - 45.568218 - ], - [ - -73.45023, - 45.568213 - ], - [ - -73.450232, - 45.568209 - ], - [ - -73.450233, - 45.568204 - ], - [ - -73.450234, - 45.5682 - ], - [ - -73.450236, - 45.568195 - ], - [ - -73.450237, - 45.568191 - ], - [ - -73.450238, - 45.568186 - ], - [ - -73.45024, - 45.568182 - ], - [ - -73.450241, - 45.568177 - ], - [ - -73.450242, - 45.568173 - ], - [ - -73.450244, - 45.568168 - ], - [ - -73.450245, - 45.568164 - ], - [ - -73.450246, - 45.568159 - ], - [ - -73.450247, - 45.568155 - ], - [ - -73.450248, - 45.56815 - ], - [ - -73.45025, - 45.568146 - ], - [ - -73.450251, - 45.568141 - ], - [ - -73.450252, - 45.568137 - ], - [ - -73.450253, - 45.568132 - ], - [ - -73.450254, - 45.568128 - ], - [ - -73.450256, - 45.568123 - ], - [ - -73.450257, - 45.568119 - ], - [ - -73.450258, - 45.568114 - ], - [ - -73.450259, - 45.56811 - ], - [ - -73.45026, - 45.568105 - ], - [ - -73.450262, - 45.568101 - ], - [ - -73.450263, - 45.568096 - ], - [ - -73.450264, - 45.568092 - ], - [ - -73.450265, - 45.568088 - ], - [ - -73.450266, - 45.568083 - ], - [ - -73.450267, - 45.568079 - ], - [ - -73.450268, - 45.568074 - ], - [ - -73.45027, - 45.56807 - ], - [ - -73.450271, - 45.568065 - ], - [ - -73.450272, - 45.568061 - ], - [ - -73.450273, - 45.568056 - ], - [ - -73.450274, - 45.568052 - ], - [ - -73.450275, - 45.568047 - ], - [ - -73.450277, - 45.568043 - ], - [ - -73.450277, - 45.568038 - ], - [ - -73.450279, - 45.568034 - ], - [ - -73.45028, - 45.568029 - ], - [ - -73.450281, - 45.568025 - ], - [ - -73.450282, - 45.56802 - ], - [ - -73.450283, - 45.568016 - ], - [ - -73.450284, - 45.568011 - ], - [ - -73.450285, - 45.568007 - ], - [ - -73.450286, - 45.568002 - ], - [ - -73.450287, - 45.567998 - ], - [ - -73.450288, - 45.567993 - ], - [ - -73.450289, - 45.567989 - ], - [ - -73.45029, - 45.567984 - ], - [ - -73.450291, - 45.56798 - ], - [ - -73.450292, - 45.567975 - ], - [ - -73.450293, - 45.567971 - ], - [ - -73.450294, - 45.567966 - ], - [ - -73.450295, - 45.567962 - ], - [ - -73.450296, - 45.567957 - ], - [ - -73.450297, - 45.567957 - ], - [ - -73.450298, - 45.567953 - ], - [ - -73.450299, - 45.567948 - ], - [ - -73.4503, - 45.567944 - ], - [ - -73.450301, - 45.567939 - ], - [ - -73.450301, - 45.567935 - ], - [ - -73.450302, - 45.56793 - ], - [ - -73.450303, - 45.567926 - ], - [ - -73.450304, - 45.567921 - ], - [ - -73.450305, - 45.567917 - ], - [ - -73.450306, - 45.567912 - ], - [ - -73.450307, - 45.567908 - ], - [ - -73.450308, - 45.567903 - ], - [ - -73.450309, - 45.567899 - ], - [ - -73.450309, - 45.567894 - ], - [ - -73.45031, - 45.56789 - ], - [ - -73.450311, - 45.567885 - ], - [ - -73.450312, - 45.567881 - ], - [ - -73.450313, - 45.567876 - ], - [ - -73.450314, - 45.567872 - ], - [ - -73.450315, - 45.567867 - ], - [ - -73.450316, - 45.567863 - ], - [ - -73.450316, - 45.567858 - ], - [ - -73.450317, - 45.567854 - ], - [ - -73.450318, - 45.567849 - ], - [ - -73.450319, - 45.567845 - ], - [ - -73.45032, - 45.56784 - ], - [ - -73.45032, - 45.567836 - ], - [ - -73.450321, - 45.567831 - ], - [ - -73.450322, - 45.567827 - ], - [ - -73.450323, - 45.567822 - ], - [ - -73.450324, - 45.567818 - ], - [ - -73.450324, - 45.567813 - ], - [ - -73.450325, - 45.567809 - ], - [ - -73.450326, - 45.567804 - ], - [ - -73.450326, - 45.5678 - ], - [ - -73.450327, - 45.567795 - ], - [ - -73.450328, - 45.567791 - ], - [ - -73.450329, - 45.567786 - ], - [ - -73.450329, - 45.567782 - ], - [ - -73.45033, - 45.567777 - ], - [ - -73.450331, - 45.567773 - ], - [ - -73.450332, - 45.567768 - ], - [ - -73.450332, - 45.567764 - ], - [ - -73.450333, - 45.567759 - ], - [ - -73.450334, - 45.567755 - ], - [ - -73.450334, - 45.56775 - ], - [ - -73.450335, - 45.567746 - ], - [ - -73.450336, - 45.567741 - ], - [ - -73.450336, - 45.567737 - ], - [ - -73.450337, - 45.567732 - ], - [ - -73.450337, - 45.567728 - ], - [ - -73.450338, - 45.567723 - ], - [ - -73.450339, - 45.567719 - ], - [ - -73.450339, - 45.567714 - ], - [ - -73.45034, - 45.56771 - ], - [ - -73.45034, - 45.567705 - ], - [ - -73.450341, - 45.567701 - ], - [ - -73.450342, - 45.567696 - ], - [ - -73.450342, - 45.567692 - ], - [ - -73.450343, - 45.567687 - ], - [ - -73.450343, - 45.567683 - ], - [ - -73.450344, - 45.567678 - ], - [ - -73.450345, - 45.567674 - ], - [ - -73.450345, - 45.567669 - ], - [ - -73.450346, - 45.567665 - ], - [ - -73.450346, - 45.56766 - ], - [ - -73.450347, - 45.567656 - ], - [ - -73.450347, - 45.567651 - ], - [ - -73.450348, - 45.567647 - ], - [ - -73.450348, - 45.567642 - ], - [ - -73.450349, - 45.567638 - ], - [ - -73.450349, - 45.567633 - ], - [ - -73.45035, - 45.567629 - ], - [ - -73.45035, - 45.567624 - ], - [ - -73.450351, - 45.56762 - ], - [ - -73.450351, - 45.567615 - ], - [ - -73.450352, - 45.567611 - ], - [ - -73.450352, - 45.567606 - ], - [ - -73.450353, - 45.567602 - ], - [ - -73.450353, - 45.567597 - ], - [ - -73.450353, - 45.567593 - ], - [ - -73.450354, - 45.567588 - ], - [ - -73.450355, - 45.567584 - ], - [ - -73.450355, - 45.567579 - ], - [ - -73.450355, - 45.567575 - ], - [ - -73.450356, - 45.56757 - ], - [ - -73.450356, - 45.567566 - ], - [ - -73.450357, - 45.567561 - ], - [ - -73.450357, - 45.567557 - ], - [ - -73.450357, - 45.567552 - ], - [ - -73.45036, - 45.567548 - ], - [ - -73.450378, - 45.56705 - ], - [ - -73.450434, - 45.565568 - ], - [ - -73.450469, - 45.564632 - ], - [ - -73.450501, - 45.563818 - ], - [ - -73.450514, - 45.563467 - ], - [ - -73.450527, - 45.563071 - ], - [ - -73.450546, - 45.562441 - ], - [ - -73.450541, - 45.561888 - ], - [ - -73.450523, - 45.561676 - ], - [ - -73.450494, - 45.561271 - ], - [ - -73.450448, - 45.560915 - ], - [ - -73.4504, - 45.560547 - ], - [ - -73.450322, - 45.559971 - ], - [ - -73.450252, - 45.559679 - ], - [ - -73.44974, - 45.555873 - ], - [ - -73.449726, - 45.555769 - ], - [ - -73.449715, - 45.555674 - ], - [ - -73.4497, - 45.555533 - ], - [ - -73.449606, - 45.554861 - ], - [ - -73.449515, - 45.554197 - ], - [ - -73.44943, - 45.553558 - ], - [ - -73.449359, - 45.55301 - ], - [ - -73.449348, - 45.552926 - ], - [ - -73.449275, - 45.55238 - ], - [ - -73.449202, - 45.551882 - ], - [ - -73.449191, - 45.551808 - ], - [ - -73.449191, - 45.551792 - ], - [ - -73.44919, - 45.551706 - ], - [ - -73.44919, - 45.551642 - ], - [ - -73.449198, - 45.551397 - ], - [ - -73.449202, - 45.551292 - ], - [ - -73.449207, - 45.551245 - ], - [ - -73.449234, - 45.550967 - ], - [ - -73.449323, - 45.550515 - ], - [ - -73.449468, - 45.550071 - ], - [ - -73.449599, - 45.549777 - ], - [ - -73.449826, - 45.549339 - ], - [ - -73.449967, - 45.549124 - ], - [ - -73.450285, - 45.548711 - ], - [ - -73.450533, - 45.54844 - ], - [ - -73.450894, - 45.548098 - ], - [ - -73.451191, - 45.547866 - ], - [ - -73.45159, - 45.547572 - ], - [ - -73.451911, - 45.547356 - ], - [ - -73.452115, - 45.547229 - ], - [ - -73.452185, - 45.547185 - ], - [ - -73.452243, - 45.547149 - ], - [ - -73.452859, - 45.546749 - ], - [ - -73.452912, - 45.546715 - ], - [ - -73.453255, - 45.546529 - ], - [ - -73.453306, - 45.546494 - ], - [ - -73.45375, - 45.546193 - ], - [ - -73.454098, - 45.545958 - ], - [ - -73.454398, - 45.545757 - ], - [ - -73.454536, - 45.545665 - ], - [ - -73.454687, - 45.545566 - ], - [ - -73.454901, - 45.545427 - ], - [ - -73.455048, - 45.545333 - ], - [ - -73.455094, - 45.545301 - ], - [ - -73.455158, - 45.545252 - ], - [ - -73.455247, - 45.545184 - ], - [ - -73.455332, - 45.545094 - ], - [ - -73.455461, - 45.54495 - ], - [ - -73.455559, - 45.544829 - ], - [ - -73.455739, - 45.544361 - ], - [ - -73.455815, - 45.543632 - ], - [ - -73.455926, - 45.54295 - ], - [ - -73.455948, - 45.542813 - ], - [ - -73.455971, - 45.542683 - ], - [ - -73.456034, - 45.542341 - ], - [ - -73.456127, - 45.541828 - ], - [ - -73.45622, - 45.541171 - ], - [ - -73.456327, - 45.540495 - ], - [ - -73.456345, - 45.540384 - ], - [ - -73.456347, - 45.540366 - ], - [ - -73.456509, - 45.539394 - ], - [ - -73.456509, - 45.539219 - ], - [ - -73.456656, - 45.5384 - ], - [ - -73.456662, - 45.53837 - ], - [ - -73.456667, - 45.538348 - ], - [ - -73.456674, - 45.53831 - ], - [ - -73.456716, - 45.53818 - ], - [ - -73.456753, - 45.538063 - ], - [ - -73.456906, - 45.537595 - ], - [ - -73.457034, - 45.537289 - ], - [ - -73.457312, - 45.536745 - ], - [ - -73.457525, - 45.536412 - ], - [ - -73.457645, - 45.53623 - ], - [ - -73.457717, - 45.536119 - ], - [ - -73.457866, - 45.535926 - ], - [ - -73.458063, - 45.535706 - ], - [ - -73.458203, - 45.535555 - ], - [ - -73.45852, - 45.535215 - ], - [ - -73.45895, - 45.534833 - ], - [ - -73.459195, - 45.53464 - ], - [ - -73.460968, - 45.533133 - ], - [ - -73.461486, - 45.532622 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.46241, - 45.532826 - ], - [ - -73.462751, - 45.533003 - ], - [ - -73.463873, - 45.533665 - ], - [ - -73.464875, - 45.534543 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.46877, - 45.537039 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469941, - 45.537318 - ], - [ - -73.470305, - 45.537406 - ], - [ - -73.470749, - 45.537487 - ], - [ - -73.471335, - 45.537563 - ], - [ - -73.471845, - 45.53759 - ], - [ - -73.472146, - 45.537591 - ], - [ - -73.472355, - 45.537591 - ], - [ - -73.473126, - 45.537555 - ], - [ - -73.473826, - 45.537492 - ], - [ - -73.474517, - 45.537429 - ], - [ - -73.474599, - 45.537423 - ], - [ - -73.475173, - 45.53738 - ], - [ - -73.47563, - 45.537344 - ], - [ - -73.476192, - 45.537353 - ], - [ - -73.476662, - 45.537394 - ], - [ - -73.477026, - 45.537434 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.477848, - 45.537591 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491035, - 45.541427 - ], - [ - -73.491084, - 45.541584 - ], - [ - -73.491099, - 45.541724 - ], - [ - -73.491103, - 45.541798 - ], - [ - -73.491106, - 45.541854 - ], - [ - -73.491092, - 45.542156 - ], - [ - -73.491081, - 45.542381 - ], - [ - -73.49104, - 45.543146 - ], - [ - -73.490998, - 45.543726 - ], - [ - -73.491037, - 45.544117 - ], - [ - -73.491071, - 45.544252 - ], - [ - -73.491113, - 45.544396 - ], - [ - -73.491272, - 45.544698 - ], - [ - -73.491367, - 45.544855 - ], - [ - -73.491449, - 45.544981 - ], - [ - -73.491608, - 45.545148 - ], - [ - -73.491886, - 45.545409 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.492779, - 45.546119 - ], - [ - -73.492868, - 45.546192 - ], - [ - -73.493835, - 45.546966 - ], - [ - -73.494604, - 45.547573 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.495727, - 45.54848 - ], - [ - -73.495811, - 45.548549 - ], - [ - -73.496313, - 45.548947 - ], - [ - -73.49673, - 45.549278 - ], - [ - -73.497087, - 45.549548 - ], - [ - -73.49736, - 45.549719 - ], - [ - -73.497501, - 45.549805 - ], - [ - -73.497722, - 45.549908 - ], - [ - -73.497944, - 45.549998 - ], - [ - -73.498136, - 45.55007 - ], - [ - -73.498405, - 45.550151 - ], - [ - -73.498716, - 45.550237 - ], - [ - -73.499009, - 45.550295 - ], - [ - -73.499514, - 45.550349 - ], - [ - -73.499763, - 45.550363 - ], - [ - -73.501515, - 45.550448 - ], - [ - -73.502446, - 45.550493 - ], - [ - -73.502797, - 45.550502 - ], - [ - -73.502913, - 45.550498 - ], - [ - -73.503017, - 45.550484 - ], - [ - -73.503194, - 45.550453 - ], - [ - -73.503355, - 45.550399 - ], - [ - -73.503504, - 45.550327 - ], - [ - -73.503636, - 45.550237 - ], - [ - -73.503751, - 45.550133 - ], - [ - -73.503955, - 45.549904 - ], - [ - -73.504046, - 45.549787 - ], - [ - -73.504119, - 45.549647 - ], - [ - -73.50416, - 45.549508 - ], - [ - -73.504212, - 45.548909 - ], - [ - -73.504289, - 45.548585 - ], - [ - -73.504342, - 45.548423 - ], - [ - -73.504444, - 45.548176 - ], - [ - -73.504477, - 45.548095 - ], - [ - -73.504558, - 45.547933 - ], - [ - -73.504654, - 45.547771 - ], - [ - -73.504887, - 45.547461 - ], - [ - -73.505281, - 45.546997 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.522159, - 45.530465 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 224, - "properties": { - "id": "364c94c0-e0b3-4a4a-8f0f-d10d92825944", - "data": { - "gtfs": { - "shape_id": "161_1_A" - }, - "segments": [ - { - "distanceMeters": 439, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 78, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 335, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 83, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 397, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 91, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 1001, - "travelTimeSeconds": 166 - }, - { - "distanceMeters": 1266, - "travelTimeSeconds": 151 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 443, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 804, - "travelTimeSeconds": 98 - }, - { - "distanceMeters": 446, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 587, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 502, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 792, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 721, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 1184, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 524, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 5141, - "travelTimeSeconds": 600 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 246, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 18987, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10160.529949416274, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.72, - "travelTimeWithoutDwellTimesSeconds": 2460, - "operatingTimeWithLayoverTimeSeconds": 2706, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2460, - "operatingSpeedWithLayoverMetersPerSecond": 7.02, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.72 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "bbe875bc-cb85-4a61-923d-53ee4746a213", - "96c08dfd-d2e7-4584-a6b3-36c3a2e1abcc", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "4c25cc73-ac26-4e31-9812-bc4ad7f583b5", - "49262d07-72b2-466f-bf49-88656466e4a4", - "0872c388-8faf-4852-b4ce-cf3f6312e0ef", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "e177b755-3bcf-4a35-afd7-a49fb240f250", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", - "2cdb15ef-cdbd-4b50-8947-cb9baee33626", - "7b512bac-ad2d-4d5a-87d8-173290a7b311", - "44ce6da8-ee79-4e09-9c16-f31566643c0c", - "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", - "6c99422e-05cb-48dc-811f-162fee50cf80", - "7c5ab4a9-cc9e-4b88-bc68-d214d8c04000", - "a83efd44-0d7a-49ef-b344-ef523d875f87", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "ae6e0f03-aee3-4f3b-9a79-98bb90a35a7a", - "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "50e25e6e-b3a0-49ca-b0a6-22261b688cbf", - "b66a9525-9dd9-49fa-b088-bde983b8c260", - "95cc31bb-b82e-4ab9-921f-e5a8cd8454c3", - "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", - "19d70945-d3db-430f-90e2-ad67901fda8d", - "f8690123-add8-4e85-bbf6-f84c4b712589", - "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", - "c77b3ec3-667e-4b8e-a8ba-613daafce3d4", - "8a5c9ba1-a597-4c12-90c9-b58f8d4f8d95", - "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "06d26eca-08e9-467e-9ff0-9595778162a0", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "038a22ba-4928-42fc-aaed-50fbd831df37", - "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", - "64648218-6b63-436c-9a46-4770987ba432", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "082003fb-77eb-4f62-9ca9-1070628f1832", - "segments": [ - 0, - 37, - 43, - 46, - 49, - 52, - 58, - 65, - 70, - 76, - 80, - 88, - 90, - 94, - 104, - 115, - 118, - 122, - 129, - 185, - 267, - 481, - 486, - 495, - 505, - 525, - 534, - 547, - 553, - 559, - 568, - 577, - 592, - 613, - 645, - 660, - 665 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 224, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.519854, - 45.532716 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.502818, - 45.54899 - ], - [ - -73.502212, - 45.54962 - ], - [ - -73.501984, - 45.549836 - ], - [ - -73.50186, - 45.549926 - ], - [ - -73.501728, - 45.550007 - ], - [ - -73.501592, - 45.550079 - ], - [ - -73.501452, - 45.550133 - ], - [ - -73.501309, - 45.550183 - ], - [ - -73.50116, - 45.550219 - ], - [ - -73.501011, - 45.55025 - ], - [ - -73.500705, - 45.550282 - ], - [ - -73.500547, - 45.550286 - ], - [ - -73.49991, - 45.550295 - ], - [ - -73.499238, - 45.550226 - ], - [ - -73.498778, - 45.550153 - ], - [ - -73.498464, - 45.550065 - ], - [ - -73.498138, - 45.54995 - ], - [ - -73.497746, - 45.549767 - ], - [ - -73.497494, - 45.54961 - ], - [ - -73.497234, - 45.549428 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494896, - 45.547544 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492662, - 45.545771 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.491985, - 45.545197 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.490598, - 45.540698 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476944, - 45.537232 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.469351, - 45.536988 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.461201, - 45.532558 - ], - [ - -73.46089, - 45.532868 - ], - [ - -73.460866, - 45.532892 - ], - [ - -73.460757, - 45.533003 - ], - [ - -73.459629, - 45.533974 - ], - [ - -73.458963, - 45.534509 - ], - [ - -73.458731, - 45.534693 - ], - [ - -73.458241, - 45.535152 - ], - [ - -73.457986, - 45.535404 - ], - [ - -73.457781, - 45.535638 - ], - [ - -73.457342, - 45.536214 - ], - [ - -73.457291, - 45.536297 - ], - [ - -73.45713, - 45.536556 - ], - [ - -73.456948, - 45.536857 - ], - [ - -73.456811, - 45.537145 - ], - [ - -73.456744, - 45.5373 - ], - [ - -73.456664, - 45.537487 - ], - [ - -73.45651, - 45.537948 - ], - [ - -73.456485, - 45.538022 - ], - [ - -73.456445, - 45.538144 - ], - [ - -73.456357, - 45.53853 - ], - [ - -73.456221, - 45.539372 - ], - [ - -73.456144, - 45.539984 - ], - [ - -73.456087, - 45.540301 - ], - [ - -73.456076, - 45.540361 - ], - [ - -73.455916, - 45.541266 - ], - [ - -73.455834, - 45.54181 - ], - [ - -73.455729, - 45.542497 - ], - [ - -73.455702, - 45.542678 - ], - [ - -73.455523, - 45.543849 - ], - [ - -73.455509, - 45.543938 - ], - [ - -73.455433, - 45.54441 - ], - [ - -73.455289, - 45.544748 - ], - [ - -73.455178, - 45.54491 - ], - [ - -73.455067, - 45.545031 - ], - [ - -73.454985, - 45.545117 - ], - [ - -73.45488, - 45.545202 - ], - [ - -73.454712, - 45.545301 - ], - [ - -73.454644, - 45.545349 - ], - [ - -73.454517, - 45.54544 - ], - [ - -73.454362, - 45.54553 - ], - [ - -73.454039, - 45.545719 - ], - [ - -73.453554, - 45.546052 - ], - [ - -73.453387, - 45.546196 - ], - [ - -73.453186, - 45.546448 - ], - [ - -73.45304, - 45.546592 - ], - [ - -73.452912, - 45.546715 - ], - [ - -73.452859, - 45.546749 - ], - [ - -73.452375, - 45.547064 - ], - [ - -73.452243, - 45.547149 - ], - [ - -73.452185, - 45.547185 - ], - [ - -73.451911, - 45.547356 - ], - [ - -73.45159, - 45.547572 - ], - [ - -73.451191, - 45.547866 - ], - [ - -73.450894, - 45.548098 - ], - [ - -73.450533, - 45.54844 - ], - [ - -73.450285, - 45.548711 - ], - [ - -73.449967, - 45.549124 - ], - [ - -73.449826, - 45.549339 - ], - [ - -73.449599, - 45.549777 - ], - [ - -73.449468, - 45.550071 - ], - [ - -73.449323, - 45.550515 - ], - [ - -73.449234, - 45.550967 - ], - [ - -73.449207, - 45.551245 - ], - [ - -73.449202, - 45.551292 - ], - [ - -73.449198, - 45.551397 - ], - [ - -73.44919, - 45.551619 - ], - [ - -73.44919, - 45.551642 - ], - [ - -73.44919, - 45.551706 - ], - [ - -73.449191, - 45.551792 - ], - [ - -73.449191, - 45.551808 - ], - [ - -73.449275, - 45.55238 - ], - [ - -73.449348, - 45.552926 - ], - [ - -73.449359, - 45.55301 - ], - [ - -73.44943, - 45.553558 - ], - [ - -73.449515, - 45.554197 - ], - [ - -73.449606, - 45.554861 - ], - [ - -73.4497, - 45.555533 - ], - [ - -73.449702, - 45.555547 - ], - [ - -73.449715, - 45.555674 - ], - [ - -73.449726, - 45.555769 - ], - [ - -73.450252, - 45.559679 - ], - [ - -73.450243, - 45.559863 - ], - [ - -73.450225, - 45.560074 - ], - [ - -73.450265, - 45.560646 - ], - [ - -73.450329, - 45.561684 - ], - [ - -73.450329, - 45.561694 - ], - [ - -73.450326, - 45.561892 - ], - [ - -73.450315, - 45.562486 - ], - [ - -73.450301, - 45.562913 - ], - [ - -73.45028, - 45.563354 - ], - [ - -73.450265, - 45.563858 - ], - [ - -73.450253, - 45.564101 - ], - [ - -73.45024, - 45.564574 - ], - [ - -73.450199, - 45.565428 - ], - [ - -73.4502, - 45.565559 - ], - [ - -73.450143, - 45.566931 - ], - [ - -73.450122, - 45.567397 - ], - [ - -73.450115, - 45.567548 - ], - [ - -73.450114, - 45.567557 - ], - [ - -73.450113, - 45.567561 - ], - [ - -73.450112, - 45.56757 - ], - [ - -73.450111, - 45.567575 - ], - [ - -73.45011, - 45.567584 - ], - [ - -73.450109, - 45.567593 - ], - [ - -73.450108, - 45.567597 - ], - [ - -73.450107, - 45.567606 - ], - [ - -73.450106, - 45.567611 - ], - [ - -73.450105, - 45.56762 - ], - [ - -73.450104, - 45.567629 - ], - [ - -73.450103, - 45.567633 - ], - [ - -73.450102, - 45.567642 - ], - [ - -73.450101, - 45.567647 - ], - [ - -73.4501, - 45.567656 - ], - [ - -73.450099, - 45.56766 - ], - [ - -73.450098, - 45.567669 - ], - [ - -73.450097, - 45.567678 - ], - [ - -73.450096, - 45.567683 - ], - [ - -73.450095, - 45.567691 - ], - [ - -73.450093, - 45.567696 - ], - [ - -73.450092, - 45.567705 - ], - [ - -73.450091, - 45.567714 - ], - [ - -73.45009, - 45.567718 - ], - [ - -73.450089, - 45.567727 - ], - [ - -73.450088, - 45.567732 - ], - [ - -73.450087, - 45.567741 - ], - [ - -73.450085, - 45.56775 - ], - [ - -73.450084, - 45.567754 - ], - [ - -73.450083, - 45.567763 - ], - [ - -73.450082, - 45.567768 - ], - [ - -73.450081, - 45.567777 - ], - [ - -73.450079, - 45.567781 - ], - [ - -73.450078, - 45.56779 - ], - [ - -73.450077, - 45.567799 - ], - [ - -73.450075, - 45.567804 - ], - [ - -73.450074, - 45.567813 - ], - [ - -73.450073, - 45.567817 - ], - [ - -73.450071, - 45.567826 - ], - [ - -73.45007, - 45.567835 - ], - [ - -73.450069, - 45.56784 - ], - [ - -73.450067, - 45.567849 - ], - [ - -73.450066, - 45.567853 - ], - [ - -73.450065, - 45.567862 - ], - [ - -73.450063, - 45.567871 - ], - [ - -73.450062, - 45.567876 - ], - [ - -73.45006, - 45.567885 - ], - [ - -73.450059, - 45.567889 - ], - [ - -73.450058, - 45.567898 - ], - [ - -73.450056, - 45.567903 - ], - [ - -73.450055, - 45.567912 - ], - [ - -73.450054, - 45.567921 - ], - [ - -73.450052, - 45.567925 - ], - [ - -73.450051, - 45.567934 - ], - [ - -73.450049, - 45.567939 - ], - [ - -73.450048, - 45.567948 - ], - [ - -73.450046, - 45.567957 - ], - [ - -73.450045, - 45.567961 - ], - [ - -73.450043, - 45.56797 - ], - [ - -73.450042, - 45.567975 - ], - [ - -73.45004, - 45.567984 - ], - [ - -73.450039, - 45.567988 - ], - [ - -73.450037, - 45.567997 - ], - [ - -73.450036, - 45.568006 - ], - [ - -73.450034, - 45.568011 - ], - [ - -73.450032, - 45.56802 - ], - [ - -73.450031, - 45.568024 - ], - [ - -73.450029, - 45.568033 - ], - [ - -73.450028, - 45.568042 - ], - [ - -73.450026, - 45.568047 - ], - [ - -73.450024, - 45.568056 - ], - [ - -73.450023, - 45.56806 - ], - [ - -73.450021, - 45.568069 - ], - [ - -73.450019, - 45.568074 - ], - [ - -73.450017, - 45.568083 - ], - [ - -73.450016, - 45.568092 - ], - [ - -73.450014, - 45.568096 - ], - [ - -73.450013, - 45.568105 - ], - [ - -73.450011, - 45.56811 - ], - [ - -73.450009, - 45.568119 - ], - [ - -73.450007, - 45.568123 - ], - [ - -73.450006, - 45.568132 - ], - [ - -73.450004, - 45.568141 - ], - [ - -73.450002, - 45.568146 - ], - [ - -73.45, - 45.568155 - ], - [ - -73.449999, - 45.568159 - ], - [ - -73.449997, - 45.568168 - ], - [ - -73.449995, - 45.568173 - ], - [ - -73.449993, - 45.568182 - ], - [ - -73.449991, - 45.568191 - ], - [ - -73.449989, - 45.568195 - ], - [ - -73.449988, - 45.568204 - ], - [ - -73.449986, - 45.568209 - ], - [ - -73.449984, - 45.568218 - ], - [ - -73.449982, - 45.568227 - ], - [ - -73.44998, - 45.568231 - ], - [ - -73.449978, - 45.56824 - ], - [ - -73.449976, - 45.568245 - ], - [ - -73.449974, - 45.568254 - ], - [ - -73.449972, - 45.568258 - ], - [ - -73.44997, - 45.568267 - ], - [ - -73.449968, - 45.568276 - ], - [ - -73.449967, - 45.568281 - ], - [ - -73.449965, - 45.56829 - ], - [ - -73.449963, - 45.568294 - ], - [ - -73.449961, - 45.568303 - ], - [ - -73.449959, - 45.568308 - ], - [ - -73.449957, - 45.568317 - ], - [ - -73.449955, - 45.568326 - ], - [ - -73.449953, - 45.56833 - ], - [ - -73.449951, - 45.568339 - ], - [ - -73.449949, - 45.568344 - ], - [ - -73.449946, - 45.568353 - ], - [ - -73.449944, - 45.568357 - ], - [ - -73.449942, - 45.568366 - ], - [ - -73.44994, - 45.568371 - ], - [ - -73.449938, - 45.56838 - ], - [ - -73.449936, - 45.568389 - ], - [ - -73.449934, - 45.568393 - ], - [ - -73.449932, - 45.568402 - ], - [ - -73.44993, - 45.568407 - ], - [ - -73.449927, - 45.568416 - ], - [ - -73.449925, - 45.56842 - ], - [ - -73.449923, - 45.568429 - ], - [ - -73.449921, - 45.568438 - ], - [ - -73.449919, - 45.568443 - ], - [ - -73.449917, - 45.568452 - ], - [ - -73.449915, - 45.568456 - ], - [ - -73.449912, - 45.568465 - ], - [ - -73.44991, - 45.56847 - ], - [ - -73.449908, - 45.568479 - ], - [ - -73.449905, - 45.568488 - ], - [ - -73.449903, - 45.568492 - ], - [ - -73.449901, - 45.568501 - ], - [ - -73.449899, - 45.568506 - ], - [ - -73.449897, - 45.568515 - ], - [ - -73.449894, - 45.568519 - ], - [ - -73.449892, - 45.568528 - ], - [ - -73.449889, - 45.568533 - ], - [ - -73.449887, - 45.568542 - ], - [ - -73.449885, - 45.568551 - ], - [ - -73.449883, - 45.568555 - ], - [ - -73.44988, - 45.568564 - ], - [ - -73.449878, - 45.568569 - ], - [ - -73.449875, - 45.568578 - ], - [ - -73.449873, - 45.568582 - ], - [ - -73.44987, - 45.568591 - ], - [ - -73.449868, - 45.568596 - ], - [ - -73.449866, - 45.568605 - ], - [ - -73.449863, - 45.568614 - ], - [ - -73.449861, - 45.568618 - ], - [ - -73.449856, - 45.568632 - ], - [ - -73.449825, - 45.568708 - ], - [ - -73.449762, - 45.568861 - ], - [ - -73.449744, - 45.568903 - ], - [ - -73.449629, - 45.569172 - ], - [ - -73.449277, - 45.569995 - ], - [ - -73.449093, - 45.570413 - ], - [ - -73.449089, - 45.570422 - ], - [ - -73.44907, - 45.570467 - ], - [ - -73.449049, - 45.570517 - ], - [ - -73.448873, - 45.570917 - ], - [ - -73.448823, - 45.571034 - ], - [ - -73.448772, - 45.57116 - ], - [ - -73.44818, - 45.572625 - ], - [ - -73.447654, - 45.573778 - ], - [ - -73.447519, - 45.574084 - ], - [ - -73.447518, - 45.574088 - ], - [ - -73.447455, - 45.574133 - ], - [ - -73.447308, - 45.574407 - ], - [ - -73.447267, - 45.574466 - ], - [ - -73.447241, - 45.574497 - ], - [ - -73.447197, - 45.574529 - ], - [ - -73.447149, - 45.574547 - ], - [ - -73.447112, - 45.574556 - ], - [ - -73.447049, - 45.574565 - ], - [ - -73.446965, - 45.574569 - ], - [ - -73.446884, - 45.574565 - ], - [ - -73.446792, - 45.574547 - ], - [ - -73.446652, - 45.574511 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.443147, - 45.572802 - ], - [ - -73.443228, - 45.572879 - ], - [ - -73.443273, - 45.572955 - ], - [ - -73.443271, - 45.573 - ], - [ - -73.443276, - 45.573125 - ], - [ - -73.443281, - 45.573166 - ], - [ - -73.443386, - 45.57326 - ], - [ - -73.443502, - 45.573319 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.44468, - 45.573697 - ], - [ - -73.444697, - 45.573706 - ], - [ - -73.444729, - 45.573713 - ], - [ - -73.444769, - 45.573716 - ], - [ - -73.444831, - 45.573715 - ], - [ - -73.444868, - 45.57371 - ], - [ - -73.444884, - 45.573708 - ], - [ - -73.44491, - 45.573694 - ], - [ - -73.444953, - 45.573633 - ], - [ - -73.44492, - 45.573618 - ], - [ - -73.444872, - 45.573601 - ], - [ - -73.444829, - 45.573598 - ], - [ - -73.444765, - 45.573611 - ], - [ - -73.444749, - 45.573615 - ], - [ - -73.44471, - 45.573635 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.444112, - 45.573505 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.443539, - 45.573203 - ], - [ - -73.443524, - 45.57316 - ], - [ - -73.44348, - 45.573034 - ], - [ - -73.443427, - 45.572912 - ], - [ - -73.44336, - 45.572841 - ], - [ - -73.443253, - 45.572772 - ], - [ - -73.443199, - 45.572746 - ], - [ - -73.443114, - 45.572731 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.446698, - 45.574646 - ], - [ - -73.446963, - 45.574749 - ], - [ - -73.446986, - 45.574767 - ], - [ - -73.447005, - 45.574781 - ], - [ - -73.447026, - 45.574808 - ], - [ - -73.447042, - 45.57483 - ], - [ - -73.447056, - 45.574857 - ], - [ - -73.44707, - 45.574889 - ], - [ - -73.447082, - 45.57492 - ], - [ - -73.447099, - 45.575037 - ], - [ - -73.447058, - 45.575131 - ], - [ - -73.446759, - 45.575802 - ], - [ - -73.446721, - 45.575887 - ], - [ - -73.446618, - 45.576202 - ], - [ - -73.446585, - 45.576297 - ], - [ - -73.446578, - 45.576319 - ], - [ - -73.446558, - 45.576387 - ], - [ - -73.44653, - 45.57654 - ], - [ - -73.446519, - 45.57667 - ], - [ - -73.446516, - 45.576796 - ], - [ - -73.446516, - 45.576958 - ], - [ - -73.446539, - 45.577179 - ], - [ - -73.446583, - 45.577433 - ], - [ - -73.446584, - 45.57744 - ], - [ - -73.446615, - 45.57757 - ], - [ - -73.446861, - 45.578794 - ], - [ - -73.446887, - 45.57892 - ], - [ - -73.446904, - 45.579005 - ], - [ - -73.447123, - 45.580066 - ], - [ - -73.447136, - 45.58013 - ], - [ - -73.447307, - 45.58099 - ], - [ - -73.447337, - 45.581174 - ], - [ - -73.447364, - 45.581462 - ], - [ - -73.447358, - 45.581597 - ], - [ - -73.447346, - 45.581723 - ], - [ - -73.447325, - 45.581872 - ], - [ - -73.447274, - 45.582088 - ], - [ - -73.447195, - 45.582299 - ], - [ - -73.447195, - 45.5823 - ], - [ - -73.447144, - 45.582429 - ], - [ - -73.447053, - 45.582609 - ], - [ - -73.44699, - 45.582721 - ], - [ - -73.44698, - 45.58274 - ], - [ - -73.446895, - 45.58287 - ], - [ - -73.446759, - 45.583041 - ], - [ - -73.446638, - 45.583181 - ], - [ - -73.446546, - 45.58327 - ], - [ - -73.446413, - 45.583392 - ], - [ - -73.446149, - 45.583603 - ], - [ - -73.446125, - 45.583622 - ], - [ - -73.446013, - 45.583711 - ], - [ - -73.445968, - 45.583747 - ], - [ - -73.44592, - 45.583788 - ], - [ - -73.445774, - 45.583904 - ], - [ - -73.445416, - 45.584201 - ], - [ - -73.444576, - 45.584964 - ], - [ - -73.44456, - 45.584979 - ], - [ - -73.444401, - 45.585119 - ], - [ - -73.44349, - 45.585955 - ], - [ - -73.443398, - 45.58604 - ], - [ - -73.44263, - 45.586742 - ], - [ - -73.442422, - 45.586935 - ], - [ - -73.442064, - 45.587259 - ], - [ - -73.44183, - 45.58747 - ], - [ - -73.441505, - 45.587776 - ], - [ - -73.441295, - 45.58797 - ], - [ - -73.440324, - 45.588831 - ], - [ - -73.440242, - 45.588905 - ], - [ - -73.439836, - 45.589215 - ], - [ - -73.439603, - 45.58938 - ], - [ - -73.439545, - 45.589422 - ], - [ - -73.43944, - 45.589489 - ], - [ - -73.439298, - 45.589588 - ], - [ - -73.438772, - 45.589939 - ], - [ - -73.438073, - 45.590343 - ], - [ - -73.43787, - 45.590462 - ], - [ - -73.436355, - 45.59135 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.436835, - 45.591708 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.43832, - 45.592822 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.440069, - 45.594114 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.442149, - 45.595669 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442992, - 45.59628 - ], - [ - -73.443297, - 45.596492 - ], - [ - -73.443394, - 45.596559 - ], - [ - -73.444803, - 45.597518 - ], - [ - -73.445261, - 45.597829 - ], - [ - -73.44534, - 45.597884 - ], - [ - -73.446259, - 45.598527 - ], - [ - -73.446713, - 45.59886 - ], - [ - -73.447, - 45.599073 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.448101, - 45.599963 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449825, - 45.601331 - ], - [ - -73.449842, - 45.601358 - ], - [ - -73.449882, - 45.601394 - ], - [ - -73.449937, - 45.601432 - ], - [ - -73.449974, - 45.601468 - ], - [ - -73.450006, - 45.601497 - ], - [ - -73.450033, - 45.601528 - ], - [ - -73.450045, - 45.601571 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.45031, - 45.600786 - ] - ] - }, - "id": 225, - "properties": { - "id": "3af8be56-5d5e-418f-9cb7-2e93aaaa3eaf", - "data": { - "gtfs": { - "shape_id": "161_2_R" - }, - "segments": [ - { - "distanceMeters": 4597, - "travelTimeSeconds": 240 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 1147, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 600, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 926, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 472, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 585, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 439, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 685, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 636, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 1185, - "travelTimeSeconds": 127 - }, - { - "distanceMeters": 548, - "travelTimeSeconds": 104 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 404, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 83, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 378, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 415, - "travelTimeSeconds": 79 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 234, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 18299, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10160.529949416274, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.82, - "travelTimeWithoutDwellTimesSeconds": 2340, - "operatingTimeWithLayoverTimeSeconds": 2574, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2340, - "operatingSpeedWithLayoverMetersPerSecond": 7.11, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.82 - }, - "mode": "bus", - "name": "Terminus De Montarville", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "8a3f1208-7ffb-452e-8ebb-c436acba82d6", - "2d7687a5-f458-4ce1-a3df-9639d89c0154", - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "81b3573e-d948-478d-a011-db20e21b0c62", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "85594754-b583-4735-aac6-bc45902705ca", - "c24ac61d-1b21-4358-b45f-8dd4921fc769", - "f1d63efc-c02d-4bb9-828b-ddc2e062546b", - "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", - "1254d090-1d68-478c-a4fc-972cd246c948", - "86d2a168-d8d6-4528-80ff-833432ddaf2d", - "c7d234f2-22e5-4459-8628-1d01e7ca4dc0", - "95cc31bb-b82e-4ab9-921f-e5a8cd8454c3", - "b66a9525-9dd9-49fa-b088-bde983b8c260", - "6d4dc817-4368-4ece-aeda-37df1213d699", - "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", - "6672cb43-3241-42d7-b5c0-fdaed10338b9", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "c520acc8-980c-45c0-9195-152ad50ee471", - "18aabfcd-f4e1-4782-a757-80cdf1597763", - "6c99422e-05cb-48dc-811f-162fee50cf80", - "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", - "44ce6da8-ee79-4e09-9c16-f31566643c0c", - "7b512bac-ad2d-4d5a-87d8-173290a7b311", - "2cdb15ef-cdbd-4b50-8947-cb9baee33626", - "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "617c5711-4aaa-4c7f-bebe-63268ac405bb", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "4fcc129f-8015-4b36-a21f-2437aa91a265", - "49262d07-72b2-466f-bf49-88656466e4a4", - "9e857d67-44b9-48aa-aa36-d1284504d820", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", - "bbe875bc-cb85-4a61-923d-53ee4746a213" - ], - "stops": [], - "line_id": "082003fb-77eb-4f62-9ca9-1070628f1832", - "segments": [ - 0, - 77, - 84, - 107, - 137, - 158, - 186, - 195, - 201, - 207, - 211, - 222, - 232, - 250, - 262, - 269, - 281, - 438, - 446, - 507, - 539, - 551, - 554, - 557, - 567, - 578, - 584, - 587, - 595, - 598, - 604, - 610, - 617, - 621, - 625, - 629, - 632, - 638 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 225, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519431, - 45.523472 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517465, - 45.528168 - ], - [ - -73.517458, - 45.528249 - ], - [ - -73.517471, - 45.528385 - ], - [ - -73.517504, - 45.528565 - ], - [ - -73.517516, - 45.528652 - ], - [ - -73.517553, - 45.52877 - ], - [ - -73.517635, - 45.529002 - ], - [ - -73.517693, - 45.529249 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518413, - 45.531377 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.519088, - 45.53309 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.499756, - 45.550039 - ], - [ - -73.499583, - 45.550043 - ], - [ - -73.499254, - 45.550048 - ], - [ - -73.49904, - 45.550039 - ], - [ - -73.498716, - 45.549998 - ], - [ - -73.49829, - 45.549868 - ], - [ - -73.497924, - 45.54971 - ], - [ - -73.497576, - 45.54953 - ], - [ - -73.497225, - 45.549332 - ], - [ - -73.497041, - 45.549211 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494898, - 45.547546 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492662, - 45.545771 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.491987, - 45.545199 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.4906, - 45.540699 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476947, - 45.537232 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.469353, - 45.536988 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.461201, - 45.532558 - ], - [ - -73.46089, - 45.532868 - ], - [ - -73.460868, - 45.532891 - ], - [ - -73.460757, - 45.533003 - ], - [ - -73.459629, - 45.533974 - ], - [ - -73.458963, - 45.534509 - ], - [ - -73.458731, - 45.534693 - ], - [ - -73.458241, - 45.535152 - ], - [ - -73.457986, - 45.535404 - ], - [ - -73.457781, - 45.535638 - ], - [ - -73.457342, - 45.536214 - ], - [ - -73.457292, - 45.536296 - ], - [ - -73.45713, - 45.536556 - ], - [ - -73.456948, - 45.536857 - ], - [ - -73.456811, - 45.537145 - ], - [ - -73.456744, - 45.5373 - ], - [ - -73.456664, - 45.537487 - ], - [ - -73.45651, - 45.537947 - ], - [ - -73.456485, - 45.538022 - ], - [ - -73.456445, - 45.538144 - ], - [ - -73.456357, - 45.53853 - ], - [ - -73.456221, - 45.539372 - ], - [ - -73.456144, - 45.539984 - ], - [ - -73.456088, - 45.540299 - ], - [ - -73.456076, - 45.540361 - ], - [ - -73.455916, - 45.541266 - ], - [ - -73.455834, - 45.54181 - ], - [ - -73.45573, - 45.542496 - ], - [ - -73.455702, - 45.542678 - ], - [ - -73.455523, - 45.543849 - ], - [ - -73.455509, - 45.543938 - ], - [ - -73.455433, - 45.54441 - ], - [ - -73.455289, - 45.544748 - ], - [ - -73.455178, - 45.54491 - ], - [ - -73.455067, - 45.545031 - ], - [ - -73.454985, - 45.545117 - ], - [ - -73.45488, - 45.545202 - ], - [ - -73.454712, - 45.545301 - ], - [ - -73.454646, - 45.545348 - ], - [ - -73.454517, - 45.54544 - ], - [ - -73.454362, - 45.54553 - ], - [ - -73.454039, - 45.545719 - ], - [ - -73.453554, - 45.546052 - ], - [ - -73.453387, - 45.546196 - ], - [ - -73.453186, - 45.546448 - ], - [ - -73.45304, - 45.546592 - ], - [ - -73.452912, - 45.546715 - ], - [ - -73.452859, - 45.546749 - ], - [ - -73.452376, - 45.547063 - ], - [ - -73.452243, - 45.547149 - ], - [ - -73.452185, - 45.547185 - ], - [ - -73.451911, - 45.547356 - ], - [ - -73.45159, - 45.547572 - ], - [ - -73.451191, - 45.547866 - ], - [ - -73.450894, - 45.548098 - ], - [ - -73.450533, - 45.54844 - ], - [ - -73.450285, - 45.548711 - ], - [ - -73.449967, - 45.549124 - ], - [ - -73.449826, - 45.549339 - ], - [ - -73.449599, - 45.549777 - ], - [ - -73.449468, - 45.550071 - ], - [ - -73.449323, - 45.550515 - ], - [ - -73.449234, - 45.550967 - ], - [ - -73.449207, - 45.551245 - ], - [ - -73.449202, - 45.551292 - ], - [ - -73.449198, - 45.551397 - ], - [ - -73.449191, - 45.551618 - ], - [ - -73.44919, - 45.551642 - ], - [ - -73.44919, - 45.551706 - ], - [ - -73.449191, - 45.551792 - ], - [ - -73.449191, - 45.551808 - ], - [ - -73.449275, - 45.55238 - ], - [ - -73.449348, - 45.552926 - ], - [ - -73.449359, - 45.55301 - ], - [ - -73.44943, - 45.553558 - ], - [ - -73.449515, - 45.554197 - ], - [ - -73.449606, - 45.554861 - ], - [ - -73.4497, - 45.555533 - ], - [ - -73.449701, - 45.555546 - ], - [ - -73.449715, - 45.555674 - ], - [ - -73.449726, - 45.555769 - ], - [ - -73.450252, - 45.559679 - ], - [ - -73.450243, - 45.559863 - ], - [ - -73.450225, - 45.560074 - ], - [ - -73.450265, - 45.560646 - ], - [ - -73.450329, - 45.561682 - ], - [ - -73.450329, - 45.561694 - ], - [ - -73.450326, - 45.561892 - ], - [ - -73.450315, - 45.562486 - ], - [ - -73.450301, - 45.562913 - ], - [ - -73.45028, - 45.563354 - ], - [ - -73.450265, - 45.563858 - ], - [ - -73.450253, - 45.564101 - ], - [ - -73.45024, - 45.564574 - ], - [ - -73.450199, - 45.565428 - ], - [ - -73.4502, - 45.565559 - ], - [ - -73.450143, - 45.566931 - ], - [ - -73.450122, - 45.567396 - ], - [ - -73.450115, - 45.567548 - ], - [ - -73.450114, - 45.567557 - ], - [ - -73.450113, - 45.567561 - ], - [ - -73.450112, - 45.56757 - ], - [ - -73.450111, - 45.567575 - ], - [ - -73.45011, - 45.567584 - ], - [ - -73.450109, - 45.567593 - ], - [ - -73.450108, - 45.567597 - ], - [ - -73.450107, - 45.567606 - ], - [ - -73.450106, - 45.567611 - ], - [ - -73.450105, - 45.56762 - ], - [ - -73.450104, - 45.567629 - ], - [ - -73.450103, - 45.567633 - ], - [ - -73.450102, - 45.567642 - ], - [ - -73.450101, - 45.567647 - ], - [ - -73.4501, - 45.567656 - ], - [ - -73.450099, - 45.56766 - ], - [ - -73.450098, - 45.567669 - ], - [ - -73.450097, - 45.567678 - ], - [ - -73.450096, - 45.567683 - ], - [ - -73.450095, - 45.567691 - ], - [ - -73.450093, - 45.567696 - ], - [ - -73.450092, - 45.567705 - ], - [ - -73.450091, - 45.567714 - ], - [ - -73.45009, - 45.567718 - ], - [ - -73.450089, - 45.567727 - ], - [ - -73.450088, - 45.567732 - ], - [ - -73.450087, - 45.567741 - ], - [ - -73.450085, - 45.56775 - ], - [ - -73.450084, - 45.567754 - ], - [ - -73.450083, - 45.567763 - ], - [ - -73.450082, - 45.567768 - ], - [ - -73.450081, - 45.567777 - ], - [ - -73.450079, - 45.567781 - ], - [ - -73.450078, - 45.56779 - ], - [ - -73.450077, - 45.567799 - ], - [ - -73.450075, - 45.567804 - ], - [ - -73.450074, - 45.567813 - ], - [ - -73.450073, - 45.567817 - ], - [ - -73.450071, - 45.567826 - ], - [ - -73.45007, - 45.567835 - ], - [ - -73.450069, - 45.56784 - ], - [ - -73.450067, - 45.567849 - ], - [ - -73.450066, - 45.567853 - ], - [ - -73.450065, - 45.567862 - ], - [ - -73.450063, - 45.567871 - ], - [ - -73.450062, - 45.567876 - ], - [ - -73.45006, - 45.567885 - ], - [ - -73.450059, - 45.567889 - ], - [ - -73.450058, - 45.567898 - ], - [ - -73.450056, - 45.567903 - ], - [ - -73.450055, - 45.567912 - ], - [ - -73.450054, - 45.567921 - ], - [ - -73.450052, - 45.567925 - ], - [ - -73.450051, - 45.567934 - ], - [ - -73.450049, - 45.567939 - ], - [ - -73.450048, - 45.567948 - ], - [ - -73.450046, - 45.567957 - ], - [ - -73.450045, - 45.567961 - ], - [ - -73.450043, - 45.56797 - ], - [ - -73.450042, - 45.567975 - ], - [ - -73.45004, - 45.567984 - ], - [ - -73.450039, - 45.567988 - ], - [ - -73.450037, - 45.567997 - ], - [ - -73.450036, - 45.568006 - ], - [ - -73.450034, - 45.568011 - ], - [ - -73.450032, - 45.56802 - ], - [ - -73.450031, - 45.568024 - ], - [ - -73.450029, - 45.568033 - ], - [ - -73.450028, - 45.568042 - ], - [ - -73.450026, - 45.568047 - ], - [ - -73.450024, - 45.568056 - ], - [ - -73.450023, - 45.56806 - ], - [ - -73.450021, - 45.568069 - ], - [ - -73.450019, - 45.568074 - ], - [ - -73.450017, - 45.568083 - ], - [ - -73.450016, - 45.568092 - ], - [ - -73.450014, - 45.568096 - ], - [ - -73.450013, - 45.568105 - ], - [ - -73.450011, - 45.56811 - ], - [ - -73.450009, - 45.568119 - ], - [ - -73.450007, - 45.568123 - ], - [ - -73.450006, - 45.568132 - ], - [ - -73.450004, - 45.568141 - ], - [ - -73.450002, - 45.568146 - ], - [ - -73.45, - 45.568155 - ], - [ - -73.449999, - 45.568159 - ], - [ - -73.449997, - 45.568168 - ], - [ - -73.449995, - 45.568173 - ], - [ - -73.449993, - 45.568182 - ], - [ - -73.449991, - 45.568191 - ], - [ - -73.449989, - 45.568195 - ], - [ - -73.449988, - 45.568204 - ], - [ - -73.449986, - 45.568209 - ], - [ - -73.449984, - 45.568218 - ], - [ - -73.449982, - 45.568227 - ], - [ - -73.44998, - 45.568231 - ], - [ - -73.449978, - 45.56824 - ], - [ - -73.449976, - 45.568245 - ], - [ - -73.449974, - 45.568254 - ], - [ - -73.449972, - 45.568258 - ], - [ - -73.44997, - 45.568267 - ], - [ - -73.449968, - 45.568276 - ], - [ - -73.449967, - 45.568281 - ], - [ - -73.449965, - 45.56829 - ], - [ - -73.449963, - 45.568294 - ], - [ - -73.449961, - 45.568303 - ], - [ - -73.449959, - 45.568308 - ], - [ - -73.449957, - 45.568317 - ], - [ - -73.449955, - 45.568326 - ], - [ - -73.449953, - 45.56833 - ], - [ - -73.449951, - 45.568339 - ], - [ - -73.449949, - 45.568344 - ], - [ - -73.449946, - 45.568353 - ], - [ - -73.449944, - 45.568357 - ], - [ - -73.449942, - 45.568366 - ], - [ - -73.44994, - 45.568371 - ], - [ - -73.449938, - 45.56838 - ], - [ - -73.449936, - 45.568389 - ], - [ - -73.449934, - 45.568393 - ], - [ - -73.449932, - 45.568402 - ], - [ - -73.44993, - 45.568407 - ], - [ - -73.449927, - 45.568416 - ], - [ - -73.449925, - 45.56842 - ], - [ - -73.449923, - 45.568429 - ], - [ - -73.449921, - 45.568438 - ], - [ - -73.449919, - 45.568443 - ], - [ - -73.449917, - 45.568452 - ], - [ - -73.449915, - 45.568456 - ], - [ - -73.449912, - 45.568465 - ], - [ - -73.44991, - 45.56847 - ], - [ - -73.449908, - 45.568479 - ], - [ - -73.449905, - 45.568488 - ], - [ - -73.449903, - 45.568492 - ], - [ - -73.449901, - 45.568501 - ], - [ - -73.449899, - 45.568506 - ], - [ - -73.449897, - 45.568515 - ], - [ - -73.449894, - 45.568519 - ], - [ - -73.449892, - 45.568528 - ], - [ - -73.449889, - 45.568533 - ], - [ - -73.449887, - 45.568542 - ], - [ - -73.449885, - 45.568551 - ], - [ - -73.449883, - 45.568555 - ], - [ - -73.44988, - 45.568564 - ], - [ - -73.449878, - 45.568569 - ], - [ - -73.449875, - 45.568578 - ], - [ - -73.449873, - 45.568582 - ], - [ - -73.44987, - 45.568591 - ], - [ - -73.449868, - 45.568596 - ], - [ - -73.449866, - 45.568605 - ], - [ - -73.449863, - 45.568614 - ], - [ - -73.449861, - 45.568618 - ], - [ - -73.449856, - 45.568632 - ], - [ - -73.449825, - 45.568708 - ], - [ - -73.449762, - 45.568861 - ], - [ - -73.449744, - 45.568903 - ], - [ - -73.449629, - 45.569171 - ], - [ - -73.449277, - 45.569995 - ], - [ - -73.449093, - 45.570413 - ], - [ - -73.449089, - 45.570422 - ], - [ - -73.44907, - 45.570467 - ], - [ - -73.449049, - 45.570517 - ], - [ - -73.448873, - 45.570917 - ], - [ - -73.448823, - 45.571034 - ], - [ - -73.448773, - 45.571159 - ], - [ - -73.44818, - 45.572625 - ], - [ - -73.447654, - 45.573778 - ], - [ - -73.447519, - 45.574084 - ], - [ - -73.447518, - 45.574088 - ], - [ - -73.447455, - 45.574133 - ], - [ - -73.447308, - 45.574407 - ], - [ - -73.447267, - 45.574466 - ], - [ - -73.447241, - 45.574497 - ], - [ - -73.447197, - 45.574529 - ], - [ - -73.447149, - 45.574547 - ], - [ - -73.447112, - 45.574556 - ], - [ - -73.447049, - 45.574565 - ], - [ - -73.446965, - 45.574569 - ], - [ - -73.446884, - 45.574565 - ], - [ - -73.446792, - 45.574547 - ], - [ - -73.446652, - 45.574511 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.443147, - 45.572802 - ], - [ - -73.443228, - 45.572879 - ], - [ - -73.443273, - 45.572955 - ], - [ - -73.443271, - 45.573 - ], - [ - -73.443276, - 45.573125 - ], - [ - -73.443281, - 45.573166 - ], - [ - -73.443386, - 45.57326 - ], - [ - -73.443502, - 45.573319 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.44468, - 45.573697 - ], - [ - -73.444697, - 45.573706 - ], - [ - -73.444729, - 45.573713 - ], - [ - -73.444769, - 45.573716 - ], - [ - -73.444831, - 45.573715 - ], - [ - -73.444868, - 45.57371 - ], - [ - -73.444884, - 45.573708 - ], - [ - -73.44491, - 45.573694 - ], - [ - -73.444953, - 45.573633 - ], - [ - -73.44492, - 45.573618 - ], - [ - -73.444872, - 45.573601 - ], - [ - -73.444829, - 45.573598 - ], - [ - -73.444779, - 45.573608 - ], - [ - -73.444749, - 45.573615 - ], - [ - -73.44471, - 45.573635 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.444112, - 45.573505 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.443539, - 45.573203 - ], - [ - -73.443525, - 45.573161 - ], - [ - -73.44348, - 45.573034 - ], - [ - -73.443427, - 45.572912 - ], - [ - -73.44336, - 45.572841 - ], - [ - -73.443253, - 45.572772 - ], - [ - -73.443199, - 45.572746 - ], - [ - -73.443114, - 45.572731 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.446698, - 45.574646 - ], - [ - -73.446963, - 45.574749 - ], - [ - -73.446986, - 45.574767 - ], - [ - -73.447005, - 45.574781 - ], - [ - -73.447026, - 45.574808 - ], - [ - -73.447042, - 45.57483 - ], - [ - -73.447056, - 45.574857 - ], - [ - -73.44707, - 45.574889 - ], - [ - -73.447082, - 45.57492 - ], - [ - -73.447099, - 45.575037 - ], - [ - -73.447058, - 45.57513 - ], - [ - -73.446759, - 45.575802 - ], - [ - -73.446721, - 45.575887 - ], - [ - -73.446618, - 45.576202 - ], - [ - -73.446585, - 45.576297 - ], - [ - -73.446578, - 45.576319 - ], - [ - -73.446558, - 45.576387 - ], - [ - -73.44653, - 45.57654 - ], - [ - -73.446519, - 45.57667 - ], - [ - -73.446516, - 45.576796 - ], - [ - -73.446516, - 45.576958 - ], - [ - -73.446539, - 45.577179 - ], - [ - -73.446583, - 45.577432 - ], - [ - -73.446584, - 45.57744 - ], - [ - -73.446615, - 45.57757 - ], - [ - -73.446861, - 45.578793 - ], - [ - -73.446887, - 45.57892 - ], - [ - -73.446904, - 45.579005 - ], - [ - -73.447123, - 45.580065 - ], - [ - -73.447136, - 45.58013 - ], - [ - -73.447307, - 45.58099 - ], - [ - -73.447337, - 45.581174 - ], - [ - -73.447364, - 45.581462 - ], - [ - -73.447358, - 45.581597 - ], - [ - -73.447346, - 45.581723 - ], - [ - -73.447325, - 45.581872 - ], - [ - -73.447274, - 45.582088 - ], - [ - -73.447195, - 45.582299 - ], - [ - -73.447195, - 45.582299 - ], - [ - -73.447144, - 45.582429 - ], - [ - -73.447053, - 45.582609 - ], - [ - -73.44698, - 45.58274 - ], - [ - -73.446895, - 45.58287 - ], - [ - -73.446784, - 45.583009 - ], - [ - -73.446759, - 45.583041 - ], - [ - -73.446638, - 45.583181 - ], - [ - -73.446546, - 45.58327 - ], - [ - -73.446413, - 45.583392 - ], - [ - -73.446149, - 45.583603 - ], - [ - -73.446126, - 45.583622 - ], - [ - -73.446013, - 45.583711 - ], - [ - -73.445968, - 45.583747 - ], - [ - -73.44592, - 45.583788 - ], - [ - -73.445774, - 45.583904 - ], - [ - -73.445416, - 45.584201 - ], - [ - -73.444577, - 45.584964 - ], - [ - -73.44456, - 45.584979 - ], - [ - -73.444401, - 45.585119 - ], - [ - -73.443491, - 45.585955 - ], - [ - -73.443398, - 45.58604 - ], - [ - -73.44263, - 45.586742 - ], - [ - -73.442422, - 45.586935 - ], - [ - -73.442064, - 45.587259 - ], - [ - -73.44183, - 45.58747 - ], - [ - -73.441505, - 45.587776 - ], - [ - -73.441295, - 45.58797 - ], - [ - -73.440316, - 45.588838 - ], - [ - -73.440242, - 45.588905 - ], - [ - -73.439836, - 45.589215 - ], - [ - -73.439604, - 45.58938 - ], - [ - -73.439545, - 45.589422 - ], - [ - -73.43944, - 45.589489 - ], - [ - -73.439298, - 45.589588 - ], - [ - -73.438772, - 45.589939 - ], - [ - -73.438073, - 45.590343 - ], - [ - -73.43787, - 45.590462 - ], - [ - -73.436355, - 45.59135 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.437038, - 45.591861 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.43832, - 45.592822 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.440069, - 45.594114 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.442149, - 45.595669 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442992, - 45.59628 - ], - [ - -73.443297, - 45.596492 - ], - [ - -73.443394, - 45.596559 - ], - [ - -73.444803, - 45.597518 - ], - [ - -73.445261, - 45.597829 - ], - [ - -73.44534, - 45.597884 - ], - [ - -73.446259, - 45.598527 - ], - [ - -73.446713, - 45.59886 - ], - [ - -73.447, - 45.599073 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.448101, - 45.599963 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449825, - 45.601331 - ], - [ - -73.449842, - 45.601358 - ], - [ - -73.449882, - 45.601394 - ], - [ - -73.449937, - 45.601432 - ], - [ - -73.449974, - 45.601468 - ], - [ - -73.450006, - 45.601497 - ], - [ - -73.450033, - 45.601528 - ], - [ - -73.450045, - 45.601571 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.45031, - 45.600786 - ] - ] - }, - "id": 226, - "properties": { - "id": "59a53bd7-46b4-4a84-a284-6e3b8e356940", - "data": { - "gtfs": { - "shape_id": "161_1_R" - }, - "segments": [ - { - "distanceMeters": 4487, - "travelTimeSeconds": 480 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 1147, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 600, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 926, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 472, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 585, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 439, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 685, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 636, - "travelTimeSeconds": 101 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 1185, - "travelTimeSeconds": 190 - }, - { - "distanceMeters": 548, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 405, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 82, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 378, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 415, - "travelTimeSeconds": 93 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 252, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 18189, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10160.529949416274, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.22, - "travelTimeWithoutDwellTimesSeconds": 2520, - "operatingTimeWithLayoverTimeSeconds": 2772, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2520, - "operatingSpeedWithLayoverMetersPerSecond": 6.56, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.22 - }, - "mode": "bus", - "name": "Terminus De Montarville", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "8a3f1208-7ffb-452e-8ebb-c436acba82d6", - "2d7687a5-f458-4ce1-a3df-9639d89c0154", - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "81b3573e-d948-478d-a011-db20e21b0c62", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "85594754-b583-4735-aac6-bc45902705ca", - "c24ac61d-1b21-4358-b45f-8dd4921fc769", - "f1d63efc-c02d-4bb9-828b-ddc2e062546b", - "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", - "1254d090-1d68-478c-a4fc-972cd246c948", - "86d2a168-d8d6-4528-80ff-833432ddaf2d", - "c7d234f2-22e5-4459-8628-1d01e7ca4dc0", - "95cc31bb-b82e-4ab9-921f-e5a8cd8454c3", - "b66a9525-9dd9-49fa-b088-bde983b8c260", - "6d4dc817-4368-4ece-aeda-37df1213d699", - "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", - "6672cb43-3241-42d7-b5c0-fdaed10338b9", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "c520acc8-980c-45c0-9195-152ad50ee471", - "18aabfcd-f4e1-4782-a757-80cdf1597763", - "6c99422e-05cb-48dc-811f-162fee50cf80", - "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", - "44ce6da8-ee79-4e09-9c16-f31566643c0c", - "7b512bac-ad2d-4d5a-87d8-173290a7b311", - "2cdb15ef-cdbd-4b50-8947-cb9baee33626", - "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "617c5711-4aaa-4c7f-bebe-63268ac405bb", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "4fcc129f-8015-4b36-a21f-2437aa91a265", - "49262d07-72b2-466f-bf49-88656466e4a4", - "9e857d67-44b9-48aa-aa36-d1284504d820", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", - "bbe875bc-cb85-4a61-923d-53ee4746a213" - ], - "stops": [], - "line_id": "082003fb-77eb-4f62-9ca9-1070628f1832", - "segments": [ - 0, - 127, - 134, - 157, - 187, - 208, - 236, - 245, - 251, - 257, - 261, - 272, - 282, - 300, - 312, - 319, - 331, - 488, - 496, - 557, - 589, - 601, - 604, - 607, - 617, - 628, - 634, - 637, - 645, - 648, - 654, - 660, - 667, - 671, - 675, - 679, - 682, - 688 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 226, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.468109, - 45.516382 - ], - [ - -73.467981, - 45.516556 - ], - [ - -73.467555, - 45.517154 - ], - [ - -73.467158, - 45.517689 - ], - [ - -73.466811, - 45.518176 - ], - [ - -73.466776, - 45.518225 - ], - [ - -73.466413, - 45.518737 - ], - [ - -73.465429, - 45.520073 - ], - [ - -73.465207, - 45.520429 - ], - [ - -73.46486, - 45.520895 - ], - [ - -73.46436, - 45.520733 - ], - [ - -73.464225, - 45.52069 - ], - [ - -73.464163, - 45.520404 - ], - [ - -73.464093, - 45.520082 - ], - [ - -73.464063, - 45.519947 - ], - [ - -73.463992, - 45.519645 - ], - [ - -73.463946, - 45.519416 - ], - [ - -73.463946, - 45.519259 - ], - [ - -73.463946, - 45.519088 - ], - [ - -73.463972, - 45.518953 - ], - [ - -73.464012, - 45.51884 - ], - [ - -73.46406, - 45.518732 - ], - [ - -73.464166, - 45.518557 - ], - [ - -73.464483, - 45.518161 - ], - [ - -73.464817, - 45.517677 - ], - [ - -73.464941, - 45.517498 - ], - [ - -73.465811, - 45.516258 - ], - [ - -73.466126, - 45.515837 - ], - [ - -73.466232, - 45.515695 - ], - [ - -73.466795, - 45.514943 - ], - [ - -73.46773, - 45.513678 - ], - [ - -73.467821, - 45.513555 - ], - [ - -73.468294, - 45.512911 - ], - [ - -73.468704, - 45.512354 - ], - [ - -73.468744, - 45.5123 - ], - [ - -73.469443, - 45.511193 - ], - [ - -73.469555, - 45.511034 - ], - [ - -73.469846, - 45.510622 - ], - [ - -73.470521, - 45.509701 - ], - [ - -73.471066, - 45.508957 - ], - [ - -73.471144, - 45.508849 - ], - [ - -73.471383, - 45.508929 - ], - [ - -73.471787, - 45.509065 - ], - [ - -73.472138, - 45.509183 - ], - [ - -73.475244, - 45.510201 - ], - [ - -73.475433, - 45.510263 - ], - [ - -73.478287, - 45.511194 - ], - [ - -73.478511, - 45.511267 - ], - [ - -73.481436, - 45.51222 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.484518, - 45.513219 - ], - [ - -73.484663, - 45.513266 - ], - [ - -73.487609, - 45.514226 - ], - [ - -73.48773, - 45.514265 - ], - [ - -73.490677, - 45.515225 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.493754, - 45.51623 - ], - [ - -73.493881, - 45.516272 - ], - [ - -73.497582, - 45.517469 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.49882, - 45.517869 - ], - [ - -73.499876, - 45.518228 - ], - [ - -73.499972, - 45.518261 - ], - [ - -73.502076, - 45.518938 - ], - [ - -73.502235, - 45.51899 - ], - [ - -73.505398, - 45.520023 - ], - [ - -73.505525, - 45.520065 - ], - [ - -73.507516, - 45.520707 - ], - [ - -73.507813, - 45.520803 - ], - [ - -73.507881, - 45.520866 - ], - [ - -73.508099, - 45.520938 - ], - [ - -73.508258, - 45.520974 - ], - [ - -73.50837, - 45.520987 - ], - [ - -73.508461, - 45.520983 - ], - [ - -73.508562, - 45.520983 - ], - [ - -73.50866, - 45.520978 - ], - [ - -73.50877, - 45.520987 - ], - [ - -73.508969, - 45.521037 - ], - [ - -73.509108, - 45.521064 - ], - [ - -73.509167, - 45.521059 - ], - [ - -73.510001, - 45.521342 - ], - [ - -73.510243, - 45.521423 - ], - [ - -73.511276, - 45.521761 - ], - [ - -73.512472, - 45.522155 - ], - [ - -73.513225, - 45.522404 - ], - [ - -73.513329, - 45.522453 - ], - [ - -73.51347, - 45.522512 - ], - [ - -73.513848, - 45.522669 - ], - [ - -73.513975, - 45.522746 - ], - [ - -73.51419, - 45.522845 - ], - [ - -73.514604, - 45.52298 - ], - [ - -73.515018, - 45.52307 - ], - [ - -73.515337, - 45.52311 - ], - [ - -73.515636, - 45.523119 - ], - [ - -73.51578, - 45.523087 - ], - [ - -73.515992, - 45.523069 - ], - [ - -73.516183, - 45.523047 - ], - [ - -73.516331, - 45.52302 - ], - [ - -73.516535, - 45.522966 - ], - [ - -73.517023, - 45.522772 - ], - [ - -73.517522, - 45.522552 - ], - [ - -73.518003, - 45.522345 - ], - [ - -73.518219, - 45.522255 - ], - [ - -73.518483, - 45.522178 - ], - [ - -73.518751, - 45.522111 - ], - [ - -73.518959, - 45.52207 - ], - [ - -73.519211, - 45.522021 - ], - [ - -73.519463, - 45.521967 - ], - [ - -73.520583, - 45.521872 - ], - [ - -73.522213, - 45.521732 - ], - [ - -73.523688, - 45.521608 - ], - [ - -73.525628, - 45.521442 - ], - [ - -73.525933, - 45.521416 - ], - [ - -73.534391, - 45.520735 - ], - [ - -73.534716, - 45.520716 - ], - [ - -73.535006, - 45.520706 - ], - [ - -73.535439, - 45.520719 - ], - [ - -73.535574, - 45.520734 - ], - [ - -73.535886, - 45.520771 - ], - [ - -73.536216, - 45.520827 - ], - [ - -73.538962, - 45.521314 - ], - [ - -73.546713, - 45.522688 - ], - [ - -73.546899, - 45.522724 - ], - [ - -73.547126, - 45.522828 - ], - [ - -73.550978, - 45.524639 - ], - [ - -73.5511, - 45.524684 - ], - [ - -73.551293, - 45.524734 - ], - [ - -73.553654, - 45.525353 - ], - [ - -73.553877, - 45.52543 - ], - [ - -73.554163, - 45.525542 - ], - [ - -73.554506, - 45.525695 - ], - [ - -73.554687, - 45.525824 - ], - [ - -73.554811, - 45.525929 - ], - [ - -73.554929, - 45.526059 - ], - [ - -73.55493, - 45.526059 - ], - [ - -73.554993, - 45.526176 - ], - [ - -73.555026, - 45.52628 - ], - [ - -73.554833, - 45.526514 - ], - [ - -73.554697, - 45.526599 - ], - [ - -73.554558, - 45.526626 - ], - [ - -73.554315, - 45.526628 - ], - [ - -73.553319, - 45.526172 - ], - [ - -73.553138, - 45.526114 - ], - [ - -73.551756, - 45.525462 - ], - [ - -73.552803, - 45.524296 - ], - [ - -73.552521, - 45.524164 - ], - [ - -73.552505, - 45.524157 - ], - [ - -73.55141, - 45.523643 - ], - [ - -73.550364, - 45.524824 - ], - [ - -73.550043, - 45.524672 - ], - [ - -73.549511, - 45.524419 - ], - [ - -73.548735, - 45.524051 - ], - [ - -73.548198, - 45.52379 - ], - [ - -73.548092, - 45.523688 - ], - [ - -73.547877, - 45.523575 - ], - [ - -73.547516, - 45.523402 - ], - [ - -73.547208, - 45.52326 - ], - [ - -73.546709, - 45.522954 - ], - [ - -73.54663, - 45.522846 - ], - [ - -73.546597, - 45.522733 - ], - [ - -73.546634, - 45.522544 - ], - [ - -73.54672, - 45.522337 - ], - [ - -73.547896, - 45.520642 - ], - [ - -73.548138, - 45.520782 - ], - [ - -73.548447, - 45.520961 - ], - [ - -73.548509, - 45.520997 - ], - [ - -73.548897, - 45.521198 - ], - [ - -73.549685, - 45.521399 - ], - [ - -73.549878, - 45.521441 - ], - [ - -73.551169, - 45.522041 - ], - [ - -73.55189, - 45.522385 - ], - [ - -73.552357, - 45.5226 - ], - [ - -73.552183, - 45.522794 - ], - [ - -73.551746, - 45.523283 - ], - [ - -73.552137, - 45.523459 - ], - [ - -73.552783, - 45.523749 - ], - [ - -73.552798, - 45.523756 - ] - ] - }, - "id": 227, - "properties": { - "id": "1cd629e8-d0ed-48b3-94a0-80b005600439", - "data": { - "gtfs": { - "shape_id": "170_3_A" - }, - "segments": [ - { - "distanceMeters": 224, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 382, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 80, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 455, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 329, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 4028, - "travelTimeSeconds": 360 - }, - { - "distanceMeters": 948, - "travelTimeSeconds": 304 - }, - { - "distanceMeters": 545, - "travelTimeSeconds": 176 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11136, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6647.389058783231, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.87, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 6.19, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.87 - }, - "mode": "bus", - "name": "boul. Jacques-Cartier", - "color": "#A32638", - "nodes": [ - "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9", - "dcd7d0e4-fcf8-4c5b-b660-50e4efaf9e01", - "39c3eab5-6995-4187-aaec-6f0b6badd5cf", - "146e7d43-1e02-4f93-ac9a-e66dd29d3576", - "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", - "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", - "f9f88325-b670-4d47-91fa-edb372992bbc", - "e1a9e623-935b-47b9-a038-bcbd5a33f95e", - "ba348c95-9f07-48ca-a139-5d5c2dd83350", - "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", - "6c122298-4ea6-41ee-91e8-bb29cb41a320", - "e1825eb4-cef2-4f98-872f-0d169be63859", - "5a82a520-52b6-417e-972a-f9bf56fb4f33", - "64ba3e91-9bea-4655-ac42-4f3f1a14955c", - "315b8823-6c3a-493b-9af5-7325cbc48096", - "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "05287baf-76e5-4533-8eef-0902c45b01ae", - "54cba115-6a75-4b65-8019-b2b5de7a3947", - "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", - "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", - "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", - "52b1586a-11ae-4a36-8706-2e4367c6d3c8", - "75f9df26-8a28-4cb0-870b-f121f95b87ff", - "40dfecad-5647-485d-a27b-e190661c773f", - "75f9df26-8a28-4cb0-870b-f121f95b87ff" - ], - "stops": [], - "line_id": "7c21482a-939f-4cf2-b5cd-72eafd09295b", - "segments": [ - 0, - 4, - 10, - 13, - 24, - 27, - 30, - 33, - 41, - 44, - 46, - 48, - 50, - 52, - 54, - 56, - 58, - 61, - 63, - 65, - 67, - 80, - 83, - 146, - 164 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 227, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.552798, - 45.523756 - ], - [ - -73.553169, - 45.523923 - ], - [ - -73.553767, - 45.523257 - ], - [ - -73.555188, - 45.523908 - ], - [ - -73.555627, - 45.524117 - ], - [ - -73.55624, - 45.524407 - ], - [ - -73.55626, - 45.524493 - ], - [ - -73.556323, - 45.524604 - ], - [ - -73.556382, - 45.524741 - ], - [ - -73.556395, - 45.524862 - ], - [ - -73.556366, - 45.525013 - ], - [ - -73.556312, - 45.525159 - ], - [ - -73.555993, - 45.52551 - ], - [ - -73.555851, - 45.525631 - ], - [ - -73.5557, - 45.525694 - ], - [ - -73.555468, - 45.525745 - ], - [ - -73.55523, - 45.525754 - ], - [ - -73.555119, - 45.525758 - ], - [ - -73.554898, - 45.525744 - ], - [ - -73.554738, - 45.525727 - ], - [ - -73.554506, - 45.525695 - ], - [ - -73.554163, - 45.525542 - ], - [ - -73.553877, - 45.52543 - ], - [ - -73.553654, - 45.525353 - ], - [ - -73.551293, - 45.524734 - ], - [ - -73.5511, - 45.524684 - ], - [ - -73.550978, - 45.524639 - ], - [ - -73.547126, - 45.522828 - ], - [ - -73.546899, - 45.522724 - ], - [ - -73.546713, - 45.522688 - ], - [ - -73.538962, - 45.521314 - ], - [ - -73.536216, - 45.520827 - ], - [ - -73.535886, - 45.520771 - ], - [ - -73.535574, - 45.520734 - ], - [ - -73.535439, - 45.520719 - ], - [ - -73.535006, - 45.520706 - ], - [ - -73.534716, - 45.520716 - ], - [ - -73.534391, - 45.520735 - ], - [ - -73.525933, - 45.521416 - ], - [ - -73.523688, - 45.521608 - ], - [ - -73.522213, - 45.521732 - ], - [ - -73.520583, - 45.521872 - ], - [ - -73.519463, - 45.521967 - ], - [ - -73.518971, - 45.521953 - ], - [ - -73.518699, - 45.52194 - ], - [ - -73.518544, - 45.521913 - ], - [ - -73.518139, - 45.521836 - ], - [ - -73.517435, - 45.521638 - ], - [ - -73.516819, - 45.52145 - ], - [ - -73.516415, - 45.521301 - ], - [ - -73.516231, - 45.521265 - ], - [ - -73.516072, - 45.521198 - ], - [ - -73.515909, - 45.521135 - ], - [ - -73.515651, - 45.521058 - ], - [ - -73.515492, - 45.52104 - ], - [ - -73.515294, - 45.521036 - ], - [ - -73.515041, - 45.52104 - ], - [ - -73.514771, - 45.521054 - ], - [ - -73.514481, - 45.521095 - ], - [ - -73.514156, - 45.521121 - ], - [ - -73.513922, - 45.521144 - ], - [ - -73.513685, - 45.52114 - ], - [ - -73.513454, - 45.521135 - ], - [ - -73.51331, - 45.521135 - ], - [ - -73.513325, - 45.522121 - ], - [ - -73.513329, - 45.522453 - ], - [ - -73.513225, - 45.522404 - ], - [ - -73.51322, - 45.522402 - ], - [ - -73.511276, - 45.521761 - ], - [ - -73.510463, - 45.521495 - ], - [ - -73.510243, - 45.521423 - ], - [ - -73.509167, - 45.521059 - ], - [ - -73.50913, - 45.52101 - ], - [ - -73.509054, - 45.520983 - ], - [ - -73.508914, - 45.520938 - ], - [ - -73.508742, - 45.520907 - ], - [ - -73.50874, - 45.520906 - ], - [ - -73.508615, - 45.520897 - ], - [ - -73.508519, - 45.520893 - ], - [ - -73.508513, - 45.520893 - ], - [ - -73.508412, - 45.520888 - ], - [ - -73.508316, - 45.520888 - ], - [ - -73.508225, - 45.520879 - ], - [ - -73.508096, - 45.520852 - ], - [ - -73.507904, - 45.520798 - ], - [ - -73.507813, - 45.520803 - ], - [ - -73.505675, - 45.520113 - ], - [ - -73.505525, - 45.520065 - ], - [ - -73.502343, - 45.519025 - ], - [ - -73.502235, - 45.51899 - ], - [ - -73.500085, - 45.518297 - ], - [ - -73.499972, - 45.518261 - ], - [ - -73.49882, - 45.517869 - ], - [ - -73.497863, - 45.51756 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.494013, - 45.516315 - ], - [ - -73.493881, - 45.516272 - ], - [ - -73.491006, - 45.515332 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.487859, - 45.514307 - ], - [ - -73.48773, - 45.514265 - ], - [ - -73.484804, - 45.513312 - ], - [ - -73.484663, - 45.513266 - ], - [ - -73.481712, - 45.512309 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.478657, - 45.511315 - ], - [ - -73.478511, - 45.511267 - ], - [ - -73.475556, - 45.510303 - ], - [ - -73.475433, - 45.510263 - ], - [ - -73.472378, - 45.509261 - ], - [ - -73.472138, - 45.509183 - ], - [ - -73.471144, - 45.508849 - ], - [ - -73.470997, - 45.508809 - ], - [ - -73.470932, - 45.508894 - ], - [ - -73.470751, - 45.509138 - ], - [ - -73.470366, - 45.509655 - ], - [ - -73.470032, - 45.510114 - ], - [ - -73.46959, - 45.510721 - ], - [ - -73.469434, - 45.510905 - ], - [ - -73.469378, - 45.510967 - ], - [ - -73.469091, - 45.511282 - ], - [ - -73.468985, - 45.5114 - ], - [ - -73.46844, - 45.512143 - ], - [ - -73.468415, - 45.512178 - ], - [ - -73.46651, - 45.514829 - ], - [ - -73.466445, - 45.514919 - ], - [ - -73.466151, - 45.515363 - ], - [ - -73.465949, - 45.515589 - ], - [ - -73.466056, - 45.515628 - ], - [ - -73.466138, - 45.51566 - ], - [ - -73.466232, - 45.515695 - ], - [ - -73.466474, - 45.515795 - ], - [ - -73.466702, - 45.515853 - ], - [ - -73.46681, - 45.515868 - ], - [ - -73.466838, - 45.515871 - ], - [ - -73.466992, - 45.515894 - ], - [ - -73.467576, - 45.515962 - ], - [ - -73.467711, - 45.515993 - ], - [ - -73.467803, - 45.516016 - ], - [ - -73.467947, - 45.51607 - ], - [ - -73.468254, - 45.516187 - ], - [ - -73.468109, - 45.516382 - ] - ] - }, - "id": 228, - "properties": { - "id": "1ada84a9-338d-447e-a687-ddf1913ccdd0", - "data": { - "gtfs": { - "shape_id": "170_2_R" - }, - "segments": [ - { - "distanceMeters": 296, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 3782, - "travelTimeSeconds": 279 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 331, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 540, - "travelTimeSeconds": 104 - }, - { - "distanceMeters": 335, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 28 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8819, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6647.389058783231, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.17, - "travelTimeWithoutDwellTimesSeconds": 1080, - "operatingTimeWithLayoverTimeSeconds": 1260, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1080, - "operatingSpeedWithLayoverMetersPerSecond": 7, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.17 - }, - "mode": "bus", - "name": "Métro Papineau", - "color": "#A32638", - "nodes": [ - "75f9df26-8a28-4cb0-870b-f121f95b87ff", - "966adf78-011a-4f07-b40a-1523cd7ecae5", - "3e3330f1-b4ce-44de-ae6a-efb45bab99e2", - "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", - "54cba115-6a75-4b65-8019-b2b5de7a3947", - "05287baf-76e5-4533-8eef-0902c45b01ae", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", - "315b8823-6c3a-493b-9af5-7325cbc48096", - "64ba3e91-9bea-4655-ac42-4f3f1a14955c", - "5a82a520-52b6-417e-972a-f9bf56fb4f33", - "e1825eb4-cef2-4f98-872f-0d169be63859", - "6c122298-4ea6-41ee-91e8-bb29cb41a320", - "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", - "777c347b-29df-4aab-9968-5fdfd62ed61a", - "e1a9e623-935b-47b9-a038-bcbd5a33f95e", - "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", - "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", - "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9" - ], - "stops": [], - "line_id": "7c21482a-939f-4cf2-b5cd-72eafd09295b", - "segments": [ - 0, - 4, - 64, - 69, - 75, - 86, - 88, - 90, - 93, - 95, - 97, - 99, - 101, - 103, - 105, - 107, - 109, - 122, - 124, - 133 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 228, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.468109, - 45.516382 - ], - [ - -73.467981, - 45.516556 - ], - [ - -73.467555, - 45.517154 - ], - [ - -73.467158, - 45.517689 - ], - [ - -73.466811, - 45.518176 - ], - [ - -73.466776, - 45.518225 - ], - [ - -73.466413, - 45.518737 - ], - [ - -73.465429, - 45.520073 - ], - [ - -73.465207, - 45.520429 - ], - [ - -73.46486, - 45.520895 - ], - [ - -73.46436, - 45.520733 - ], - [ - -73.464225, - 45.52069 - ], - [ - -73.464163, - 45.520404 - ], - [ - -73.464093, - 45.520082 - ], - [ - -73.464063, - 45.519947 - ], - [ - -73.463992, - 45.519645 - ], - [ - -73.463946, - 45.519416 - ], - [ - -73.463946, - 45.519259 - ], - [ - -73.463946, - 45.519088 - ], - [ - -73.463972, - 45.518953 - ], - [ - -73.464012, - 45.51884 - ], - [ - -73.46406, - 45.518732 - ], - [ - -73.464166, - 45.518557 - ], - [ - -73.464483, - 45.518161 - ], - [ - -73.464817, - 45.517677 - ], - [ - -73.464941, - 45.517498 - ], - [ - -73.465811, - 45.516258 - ], - [ - -73.466127, - 45.515837 - ], - [ - -73.466232, - 45.515695 - ], - [ - -73.466795, - 45.514943 - ], - [ - -73.46773, - 45.513678 - ], - [ - -73.467821, - 45.513555 - ], - [ - -73.468294, - 45.512911 - ], - [ - -73.468705, - 45.512353 - ], - [ - -73.468744, - 45.5123 - ], - [ - -73.469443, - 45.511193 - ], - [ - -73.469555, - 45.511034 - ], - [ - -73.469846, - 45.510622 - ], - [ - -73.470521, - 45.509701 - ], - [ - -73.471066, - 45.508957 - ], - [ - -73.471144, - 45.508849 - ], - [ - -73.471383, - 45.508929 - ], - [ - -73.471787, - 45.509065 - ], - [ - -73.472138, - 45.509183 - ], - [ - -73.475244, - 45.510201 - ], - [ - -73.475433, - 45.510263 - ], - [ - -73.478288, - 45.511194 - ], - [ - -73.478511, - 45.511267 - ], - [ - -73.481437, - 45.51222 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.484519, - 45.513219 - ], - [ - -73.484663, - 45.513266 - ], - [ - -73.48761, - 45.514226 - ], - [ - -73.48773, - 45.514265 - ], - [ - -73.490677, - 45.515225 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.493755, - 45.516231 - ], - [ - -73.493881, - 45.516272 - ], - [ - -73.497582, - 45.51747 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.49882, - 45.517869 - ], - [ - -73.499877, - 45.518228 - ], - [ - -73.499972, - 45.518261 - ], - [ - -73.502076, - 45.518939 - ], - [ - -73.502235, - 45.51899 - ], - [ - -73.505399, - 45.520023 - ], - [ - -73.505525, - 45.520065 - ], - [ - -73.507517, - 45.520707 - ], - [ - -73.507813, - 45.520803 - ], - [ - -73.507881, - 45.520866 - ], - [ - -73.508099, - 45.520938 - ], - [ - -73.508258, - 45.520974 - ], - [ - -73.50837, - 45.520987 - ], - [ - -73.508613, - 45.521464 - ], - [ - -73.508816, - 45.52186 - ], - [ - -73.508893, - 45.522004 - ], - [ - -73.509178, - 45.522539 - ], - [ - -73.50928, - 45.522728 - ], - [ - -73.509633, - 45.523397 - ], - [ - -73.509691, - 45.523507 - ], - [ - -73.509731, - 45.523583 - ], - [ - -73.509969, - 45.524042 - ], - [ - -73.510188, - 45.524465 - ], - [ - -73.510559, - 45.524591 - ], - [ - -73.510756, - 45.524655 - ], - [ - -73.511489, - 45.524897 - ], - [ - -73.512842, - 45.525324 - ], - [ - -73.513242, - 45.525453 - ], - [ - -73.513379, - 45.525517 - ], - [ - -73.513526, - 45.525517 - ], - [ - -73.513651, - 45.525506 - ], - [ - -73.514307, - 45.52545 - ], - [ - -73.515089, - 45.525378 - ], - [ - -73.515879, - 45.525306 - ], - [ - -73.516357, - 45.525284 - ], - [ - -73.516855, - 45.525274 - ], - [ - -73.517839, - 45.525305 - ], - [ - -73.51796, - 45.52531 - ], - [ - -73.518079, - 45.525332 - ], - [ - -73.518183, - 45.525347 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.52547 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519162, - 45.525158 - ], - [ - -73.519057, - 45.525166 - ], - [ - -73.518828, - 45.525169 - ], - [ - -73.518662, - 45.525195 - ], - [ - -73.518477, - 45.525222 - ], - [ - -73.51841, - 45.525229 - ], - [ - -73.518323, - 45.525204 - ], - [ - -73.518104, - 45.525116 - ], - [ - -73.517976, - 45.525089 - ], - [ - -73.517896, - 45.525071 - ], - [ - -73.517676, - 45.525049 - ], - [ - -73.517288, - 45.525026 - ], - [ - -73.517148, - 45.524995 - ], - [ - -73.517084, - 45.524972 - ], - [ - -73.51695, - 45.524896 - ], - [ - -73.516847, - 45.524842 - ], - [ - -73.516699, - 45.52473 - ], - [ - -73.516595, - 45.524662 - ], - [ - -73.516519, - 45.524577 - ], - [ - -73.516463, - 45.524496 - ], - [ - -73.516423, - 45.524379 - ], - [ - -73.516405, - 45.524203 - ], - [ - -73.516578, - 45.523623 - ], - [ - -73.516683, - 45.523438 - ], - [ - -73.516823, - 45.523209 - ], - [ - -73.516951, - 45.523069 - ], - [ - -73.517159, - 45.522876 - ], - [ - -73.517395, - 45.522705 - ], - [ - -73.517522, - 45.522552 - ], - [ - -73.518003, - 45.522345 - ], - [ - -73.518219, - 45.522255 - ], - [ - -73.518483, - 45.522178 - ], - [ - -73.518751, - 45.522111 - ], - [ - -73.518959, - 45.52207 - ], - [ - -73.519211, - 45.522021 - ], - [ - -73.519463, - 45.521967 - ], - [ - -73.520583, - 45.521872 - ], - [ - -73.522213, - 45.521732 - ], - [ - -73.523688, - 45.521608 - ], - [ - -73.525933, - 45.521416 - ], - [ - -73.534391, - 45.520735 - ], - [ - -73.534716, - 45.520716 - ], - [ - -73.535006, - 45.520706 - ], - [ - -73.535439, - 45.520719 - ], - [ - -73.535574, - 45.520734 - ], - [ - -73.535886, - 45.520771 - ], - [ - -73.536216, - 45.520827 - ], - [ - -73.538962, - 45.521314 - ], - [ - -73.546713, - 45.522688 - ], - [ - -73.546899, - 45.522724 - ], - [ - -73.547126, - 45.522828 - ], - [ - -73.550978, - 45.524639 - ], - [ - -73.5511, - 45.524684 - ], - [ - -73.551293, - 45.524734 - ], - [ - -73.553654, - 45.525353 - ], - [ - -73.553877, - 45.52543 - ], - [ - -73.554163, - 45.525542 - ], - [ - -73.554506, - 45.525695 - ], - [ - -73.554687, - 45.525824 - ], - [ - -73.554811, - 45.525929 - ], - [ - -73.554929, - 45.526059 - ], - [ - -73.55493, - 45.526059 - ], - [ - -73.554993, - 45.526176 - ], - [ - -73.555026, - 45.52628 - ], - [ - -73.554833, - 45.526514 - ], - [ - -73.554697, - 45.526599 - ], - [ - -73.554558, - 45.526626 - ], - [ - -73.554315, - 45.526628 - ], - [ - -73.553319, - 45.526172 - ], - [ - -73.553138, - 45.526114 - ], - [ - -73.551756, - 45.525462 - ], - [ - -73.552803, - 45.524296 - ], - [ - -73.552521, - 45.524164 - ], - [ - -73.552515, - 45.524162 - ], - [ - -73.55141, - 45.523643 - ], - [ - -73.550364, - 45.524824 - ], - [ - -73.550043, - 45.524672 - ], - [ - -73.549511, - 45.524419 - ], - [ - -73.548735, - 45.524051 - ], - [ - -73.548198, - 45.52379 - ], - [ - -73.548092, - 45.523688 - ], - [ - -73.547877, - 45.523575 - ], - [ - -73.547516, - 45.523402 - ], - [ - -73.547208, - 45.52326 - ], - [ - -73.546709, - 45.522954 - ], - [ - -73.54663, - 45.522846 - ], - [ - -73.546597, - 45.522733 - ], - [ - -73.546634, - 45.522544 - ], - [ - -73.54672, - 45.522337 - ], - [ - -73.547896, - 45.520642 - ], - [ - -73.548138, - 45.520782 - ], - [ - -73.548437, - 45.520955 - ], - [ - -73.548509, - 45.520997 - ], - [ - -73.548897, - 45.521198 - ], - [ - -73.549685, - 45.521399 - ], - [ - -73.549878, - 45.521441 - ], - [ - -73.551169, - 45.522041 - ], - [ - -73.55189, - 45.522385 - ], - [ - -73.552357, - 45.5226 - ], - [ - -73.552183, - 45.522794 - ], - [ - -73.551746, - 45.523283 - ], - [ - -73.552137, - 45.523459 - ], - [ - -73.552783, - 45.523749 - ], - [ - -73.552798, - 45.523756 - ] - ] - }, - "id": 229, - "properties": { - "id": "b0ac35dc-537c-497e-a7f1-3b2487cc42c1", - "data": { - "gtfs": { - "shape_id": "170_1_A" - }, - "segments": [ - { - "distanceMeters": 224, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 382, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 80, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 455, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 329, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 5369, - "travelTimeSeconds": 900 - }, - { - "distanceMeters": 948, - "travelTimeSeconds": 342 - }, - { - "distanceMeters": 546, - "travelTimeSeconds": 198 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 222, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12055, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6647.389058783231, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.43, - "travelTimeWithoutDwellTimesSeconds": 2220, - "operatingTimeWithLayoverTimeSeconds": 2442, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2220, - "operatingSpeedWithLayoverMetersPerSecond": 4.94, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.43 - }, - "mode": "bus", - "name": "boul. Jacques-Cartier", - "color": "#A32638", - "nodes": [ - "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9", - "dcd7d0e4-fcf8-4c5b-b660-50e4efaf9e01", - "39c3eab5-6995-4187-aaec-6f0b6badd5cf", - "146e7d43-1e02-4f93-ac9a-e66dd29d3576", - "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", - "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", - "f9f88325-b670-4d47-91fa-edb372992bbc", - "e1a9e623-935b-47b9-a038-bcbd5a33f95e", - "ba348c95-9f07-48ca-a139-5d5c2dd83350", - "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", - "6c122298-4ea6-41ee-91e8-bb29cb41a320", - "e1825eb4-cef2-4f98-872f-0d169be63859", - "5a82a520-52b6-417e-972a-f9bf56fb4f33", - "64ba3e91-9bea-4655-ac42-4f3f1a14955c", - "315b8823-6c3a-493b-9af5-7325cbc48096", - "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "05287baf-76e5-4533-8eef-0902c45b01ae", - "54cba115-6a75-4b65-8019-b2b5de7a3947", - "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", - "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", - "75f9df26-8a28-4cb0-870b-f121f95b87ff", - "40dfecad-5647-485d-a27b-e190661c773f", - "75f9df26-8a28-4cb0-870b-f121f95b87ff" - ], - "stops": [], - "line_id": "7c21482a-939f-4cf2-b5cd-72eafd09295b", - "segments": [ - 0, - 4, - 10, - 13, - 24, - 27, - 30, - 33, - 41, - 44, - 46, - 48, - 50, - 52, - 54, - 56, - 58, - 61, - 63, - 65, - 67, - 183, - 201 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 229, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.468109, - 45.516382 - ], - [ - -73.467981, - 45.516556 - ], - [ - -73.467555, - 45.517154 - ], - [ - -73.467158, - 45.517689 - ], - [ - -73.466776, - 45.518225 - ], - [ - -73.466413, - 45.518737 - ], - [ - -73.465429, - 45.520073 - ], - [ - -73.465207, - 45.520429 - ], - [ - -73.46486, - 45.520895 - ], - [ - -73.464225, - 45.52069 - ], - [ - -73.464163, - 45.520404 - ], - [ - -73.464063, - 45.519947 - ], - [ - -73.463992, - 45.519645 - ], - [ - -73.463946, - 45.519416 - ], - [ - -73.463946, - 45.519259 - ], - [ - -73.463946, - 45.519088 - ], - [ - -73.463972, - 45.518953 - ], - [ - -73.464012, - 45.51884 - ], - [ - -73.46406, - 45.518732 - ], - [ - -73.464166, - 45.518557 - ], - [ - -73.464483, - 45.518161 - ], - [ - -73.464941, - 45.517498 - ], - [ - -73.465811, - 45.516258 - ], - [ - -73.466232, - 45.515695 - ], - [ - -73.466795, - 45.514943 - ], - [ - -73.467821, - 45.513555 - ], - [ - -73.468294, - 45.512911 - ], - [ - -73.468744, - 45.5123 - ], - [ - -73.469443, - 45.511193 - ], - [ - -73.469555, - 45.511034 - ], - [ - -73.469846, - 45.510622 - ], - [ - -73.470521, - 45.509701 - ], - [ - -73.471066, - 45.508957 - ], - [ - -73.471144, - 45.508849 - ], - [ - -73.471787, - 45.509065 - ], - [ - -73.472138, - 45.509183 - ], - [ - -73.475433, - 45.510263 - ], - [ - -73.478511, - 45.511267 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.484663, - 45.513266 - ], - [ - -73.48773, - 45.514265 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.493881, - 45.516272 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.49882, - 45.517869 - ], - [ - -73.499972, - 45.518261 - ], - [ - -73.502235, - 45.51899 - ], - [ - -73.505525, - 45.520065 - ], - [ - -73.507813, - 45.520803 - ], - [ - -73.507881, - 45.520866 - ], - [ - -73.508099, - 45.520938 - ], - [ - -73.508258, - 45.520974 - ], - [ - -73.50837, - 45.520987 - ], - [ - -73.508461, - 45.520983 - ], - [ - -73.508562, - 45.520983 - ], - [ - -73.50866, - 45.520978 - ], - [ - -73.50877, - 45.520987 - ], - [ - -73.508969, - 45.521037 - ], - [ - -73.509108, - 45.521064 - ], - [ - -73.509167, - 45.521059 - ], - [ - -73.510243, - 45.521423 - ], - [ - -73.511276, - 45.521761 - ], - [ - -73.513225, - 45.522404 - ], - [ - -73.513329, - 45.522453 - ], - [ - -73.51347, - 45.522512 - ], - [ - -73.513848, - 45.522669 - ], - [ - -73.513975, - 45.522746 - ], - [ - -73.51419, - 45.522845 - ], - [ - -73.514604, - 45.52298 - ], - [ - -73.515018, - 45.52307 - ], - [ - -73.515337, - 45.52311 - ], - [ - -73.515636, - 45.523119 - ], - [ - -73.51578, - 45.523087 - ], - [ - -73.515992, - 45.523069 - ], - [ - -73.516183, - 45.523047 - ], - [ - -73.516331, - 45.52302 - ], - [ - -73.516535, - 45.522966 - ], - [ - -73.517023, - 45.522772 - ], - [ - -73.517522, - 45.522552 - ], - [ - -73.518003, - 45.522345 - ], - [ - -73.518219, - 45.522255 - ], - [ - -73.518483, - 45.522178 - ], - [ - -73.518751, - 45.522111 - ], - [ - -73.518959, - 45.52207 - ], - [ - -73.519211, - 45.522021 - ], - [ - -73.519463, - 45.521967 - ], - [ - -73.520583, - 45.521872 - ], - [ - -73.522213, - 45.521732 - ], - [ - -73.523688, - 45.521608 - ], - [ - -73.525628, - 45.521442 - ], - [ - -73.525933, - 45.521416 - ], - [ - -73.534391, - 45.520735 - ], - [ - -73.534716, - 45.520716 - ], - [ - -73.535006, - 45.520706 - ], - [ - -73.535439, - 45.520719 - ], - [ - -73.535574, - 45.520734 - ], - [ - -73.535886, - 45.520771 - ], - [ - -73.536216, - 45.520827 - ], - [ - -73.538962, - 45.521314 - ], - [ - -73.546713, - 45.522688 - ], - [ - -73.546899, - 45.522724 - ], - [ - -73.547126, - 45.522828 - ], - [ - -73.550978, - 45.524639 - ], - [ - -73.5511, - 45.524684 - ], - [ - -73.551293, - 45.524734 - ], - [ - -73.553654, - 45.525353 - ], - [ - -73.553877, - 45.52543 - ], - [ - -73.554163, - 45.525542 - ], - [ - -73.554506, - 45.525695 - ], - [ - -73.554687, - 45.525824 - ], - [ - -73.554811, - 45.525929 - ], - [ - -73.554929, - 45.526059 - ], - [ - -73.55493, - 45.526059 - ], - [ - -73.554993, - 45.526176 - ], - [ - -73.555026, - 45.52628 - ], - [ - -73.554833, - 45.526514 - ], - [ - -73.554697, - 45.526599 - ], - [ - -73.554558, - 45.526626 - ], - [ - -73.554315, - 45.526628 - ], - [ - -73.553319, - 45.526172 - ], - [ - -73.553138, - 45.526114 - ], - [ - -73.551756, - 45.525462 - ], - [ - -73.551291, - 45.52526 - ], - [ - -73.550364, - 45.524824 - ], - [ - -73.550043, - 45.524672 - ], - [ - -73.549511, - 45.524419 - ], - [ - -73.548735, - 45.524051 - ], - [ - -73.548198, - 45.52379 - ], - [ - -73.548092, - 45.523688 - ], - [ - -73.547877, - 45.523575 - ], - [ - -73.547516, - 45.523402 - ], - [ - -73.547208, - 45.52326 - ], - [ - -73.546709, - 45.522954 - ], - [ - -73.54663, - 45.522846 - ], - [ - -73.546597, - 45.522733 - ], - [ - -73.546634, - 45.522544 - ], - [ - -73.54672, - 45.522337 - ], - [ - -73.547896, - 45.520642 - ], - [ - -73.548138, - 45.520782 - ], - [ - -73.548438, - 45.520956 - ], - [ - -73.548509, - 45.520997 - ], - [ - -73.548897, - 45.521198 - ], - [ - -73.549685, - 45.521399 - ], - [ - -73.549878, - 45.521441 - ], - [ - -73.551169, - 45.522041 - ], - [ - -73.55189, - 45.522385 - ], - [ - -73.552357, - 45.5226 - ], - [ - -73.552183, - 45.522794 - ], - [ - -73.551746, - 45.523283 - ], - [ - -73.552137, - 45.523459 - ], - [ - -73.552783, - 45.523749 - ], - [ - -73.552798, - 45.523756 - ] - ] - }, - "id": 230, - "properties": { - "id": "53a560f8-dfee-4111-a629-f3cdfd15745e", - "data": { - "gtfs": { - "shape_id": "170_2_A" - }, - "segments": [ - { - "distanceMeters": 10282, - "travelTimeSeconds": 306 - }, - { - "distanceMeters": 546, - "travelTimeSeconds": 234 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10827, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 180.0543518070401, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 20.05, - "travelTimeWithoutDwellTimesSeconds": 540, - "operatingTimeWithLayoverTimeSeconds": 720, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 540, - "operatingSpeedWithLayoverMetersPerSecond": 15.04, - "averageSpeedWithoutDwellTimesMetersPerSecond": 20.05 - }, - "mode": "bus", - "name": "boul. Jacques-Cartier", - "color": "#A32638", - "nodes": [ - "c621a0b4-590c-49e4-a56e-dbf728939757", - "40dfecad-5647-485d-a27b-e190661c773f", - "75f9df26-8a28-4cb0-870b-f121f95b87ff" - ], - "stops": [], - "line_id": "7c21482a-939f-4cf2-b5cd-72eafd09295b", - "segments": [ - 0, - 139 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 230, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.468109, - 45.516382 - ], - [ - -73.467981, - 45.516556 - ], - [ - -73.467555, - 45.517154 - ], - [ - -73.467158, - 45.517689 - ], - [ - -73.466811, - 45.518176 - ], - [ - -73.466776, - 45.518225 - ], - [ - -73.466413, - 45.518737 - ], - [ - -73.465429, - 45.520073 - ], - [ - -73.465207, - 45.520429 - ], - [ - -73.46486, - 45.520895 - ], - [ - -73.464361, - 45.520733 - ], - [ - -73.464225, - 45.52069 - ], - [ - -73.464163, - 45.520404 - ], - [ - -73.464093, - 45.520083 - ], - [ - -73.464063, - 45.519947 - ], - [ - -73.463992, - 45.519645 - ], - [ - -73.463946, - 45.519416 - ], - [ - -73.463946, - 45.519259 - ], - [ - -73.463946, - 45.519088 - ], - [ - -73.463972, - 45.518953 - ], - [ - -73.464012, - 45.51884 - ], - [ - -73.46406, - 45.518732 - ], - [ - -73.464166, - 45.518557 - ], - [ - -73.464483, - 45.518161 - ], - [ - -73.464817, - 45.517678 - ], - [ - -73.464941, - 45.517498 - ], - [ - -73.465811, - 45.516258 - ], - [ - -73.466126, - 45.515838 - ], - [ - -73.466232, - 45.515695 - ], - [ - -73.466795, - 45.514943 - ], - [ - -73.467729, - 45.51368 - ], - [ - -73.467821, - 45.513555 - ], - [ - -73.468294, - 45.512911 - ], - [ - -73.468703, - 45.512355 - ], - [ - -73.468744, - 45.5123 - ], - [ - -73.469443, - 45.511193 - ], - [ - -73.469555, - 45.511034 - ], - [ - -73.469846, - 45.510622 - ], - [ - -73.470521, - 45.509701 - ], - [ - -73.471066, - 45.508957 - ], - [ - -73.471144, - 45.508849 - ], - [ - -73.47138, - 45.508928 - ], - [ - -73.471787, - 45.509065 - ], - [ - -73.472138, - 45.509183 - ], - [ - -73.475241, - 45.5102 - ], - [ - -73.475433, - 45.510263 - ], - [ - -73.478284, - 45.511193 - ], - [ - -73.478511, - 45.511267 - ], - [ - -73.481433, - 45.512218 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.484514, - 45.513217 - ], - [ - -73.484663, - 45.513266 - ], - [ - -73.487605, - 45.514224 - ], - [ - -73.48773, - 45.514265 - ], - [ - -73.490672, - 45.515223 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.493749, - 45.516229 - ], - [ - -73.493881, - 45.516272 - ], - [ - -73.497576, - 45.517468 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.49882, - 45.517869 - ], - [ - -73.49987, - 45.518226 - ], - [ - -73.499972, - 45.518261 - ], - [ - -73.50207, - 45.518937 - ], - [ - -73.502235, - 45.51899 - ], - [ - -73.505391, - 45.520021 - ], - [ - -73.505525, - 45.520065 - ], - [ - -73.50751, - 45.520705 - ], - [ - -73.507813, - 45.520803 - ], - [ - -73.507881, - 45.520866 - ], - [ - -73.508099, - 45.520938 - ], - [ - -73.508258, - 45.520974 - ], - [ - -73.50837, - 45.520987 - ], - [ - -73.508461, - 45.520983 - ], - [ - -73.508562, - 45.520983 - ], - [ - -73.50866, - 45.520978 - ], - [ - -73.50877, - 45.520987 - ], - [ - -73.508969, - 45.521037 - ], - [ - -73.509108, - 45.521064 - ], - [ - -73.509167, - 45.521059 - ], - [ - -73.509995, - 45.521339 - ], - [ - -73.510243, - 45.521423 - ], - [ - -73.511276, - 45.521761 - ], - [ - -73.512465, - 45.522153 - ], - [ - -73.513225, - 45.522404 - ], - [ - -73.513329, - 45.522453 - ], - [ - -73.51347, - 45.522512 - ], - [ - -73.513848, - 45.522669 - ], - [ - -73.513975, - 45.522746 - ], - [ - -73.51419, - 45.522845 - ], - [ - -73.514604, - 45.52298 - ], - [ - -73.515018, - 45.52307 - ], - [ - -73.515337, - 45.52311 - ], - [ - -73.515636, - 45.523119 - ], - [ - -73.51578, - 45.523087 - ], - [ - -73.515992, - 45.523069 - ], - [ - -73.516183, - 45.523047 - ], - [ - -73.516331, - 45.52302 - ], - [ - -73.516535, - 45.522966 - ], - [ - -73.517023, - 45.522772 - ], - [ - -73.517522, - 45.522552 - ], - [ - -73.518003, - 45.522345 - ], - [ - -73.518219, - 45.522255 - ], - [ - -73.518483, - 45.522178 - ], - [ - -73.518751, - 45.522111 - ], - [ - -73.518959, - 45.52207 - ], - [ - -73.519211, - 45.522021 - ], - [ - -73.519463, - 45.521967 - ], - [ - -73.520583, - 45.521872 - ], - [ - -73.522213, - 45.521732 - ], - [ - -73.523688, - 45.521608 - ], - [ - -73.525628, - 45.521442 - ], - [ - -73.525933, - 45.521416 - ], - [ - -73.534391, - 45.520735 - ], - [ - -73.534716, - 45.520716 - ], - [ - -73.535006, - 45.520706 - ], - [ - -73.535439, - 45.520719 - ], - [ - -73.535574, - 45.520734 - ], - [ - -73.535886, - 45.520771 - ], - [ - -73.536216, - 45.520827 - ], - [ - -73.538962, - 45.521314 - ], - [ - -73.546713, - 45.522688 - ], - [ - -73.546899, - 45.522724 - ], - [ - -73.547126, - 45.522828 - ], - [ - -73.550978, - 45.524639 - ], - [ - -73.5511, - 45.524684 - ], - [ - -73.551293, - 45.524734 - ], - [ - -73.553654, - 45.525353 - ], - [ - -73.553877, - 45.52543 - ], - [ - -73.554163, - 45.525542 - ], - [ - -73.554506, - 45.525695 - ], - [ - -73.554687, - 45.525824 - ], - [ - -73.554811, - 45.525929 - ], - [ - -73.554929, - 45.526059 - ], - [ - -73.55493, - 45.526059 - ], - [ - -73.554993, - 45.526176 - ], - [ - -73.555026, - 45.52628 - ], - [ - -73.554833, - 45.526514 - ], - [ - -73.554697, - 45.526599 - ], - [ - -73.554558, - 45.526626 - ], - [ - -73.554315, - 45.526628 - ], - [ - -73.553319, - 45.526172 - ], - [ - -73.553138, - 45.526114 - ], - [ - -73.551756, - 45.525462 - ], - [ - -73.551291, - 45.52526 - ], - [ - -73.550634, - 45.524951 - ], - [ - -73.550364, - 45.524824 - ], - [ - -73.550043, - 45.524672 - ], - [ - -73.549511, - 45.524419 - ], - [ - -73.548735, - 45.524051 - ], - [ - -73.548198, - 45.52379 - ], - [ - -73.548092, - 45.523688 - ], - [ - -73.547877, - 45.523575 - ], - [ - -73.547516, - 45.523402 - ], - [ - -73.547208, - 45.52326 - ], - [ - -73.546709, - 45.522954 - ], - [ - -73.54663, - 45.522846 - ], - [ - -73.546597, - 45.522733 - ], - [ - -73.546634, - 45.522544 - ], - [ - -73.54672, - 45.522337 - ], - [ - -73.547896, - 45.520642 - ], - [ - -73.548138, - 45.520782 - ], - [ - -73.548438, - 45.520956 - ], - [ - -73.548509, - 45.520997 - ], - [ - -73.548897, - 45.521198 - ], - [ - -73.549685, - 45.521399 - ], - [ - -73.549878, - 45.521441 - ], - [ - -73.551169, - 45.522041 - ], - [ - -73.55189, - 45.522385 - ], - [ - -73.552357, - 45.5226 - ], - [ - -73.552183, - 45.522794 - ], - [ - -73.551746, - 45.523283 - ], - [ - -73.552137, - 45.523459 - ], - [ - -73.552783, - 45.523749 - ], - [ - -73.552798, - 45.523756 - ] - ] - }, - "id": 231, - "properties": { - "id": "6afed557-ea95-4306-b63a-c5328c9af2c0", - "data": { - "gtfs": { - "shape_id": "170_2_A" - }, - "segments": [ - { - "distanceMeters": 224, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 382, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 80, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 455, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 329, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 3952, - "travelTimeSeconds": 480 - }, - { - "distanceMeters": 715, - "travelTimeSeconds": 306 - }, - { - "distanceMeters": 546, - "travelTimeSeconds": 234 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10827, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6647.389058783231, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.01, - "travelTimeWithoutDwellTimesSeconds": 1800, - "operatingTimeWithLayoverTimeSeconds": 1980, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1800, - "operatingSpeedWithLayoverMetersPerSecond": 5.47, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.01 - }, - "mode": "bus", - "name": "boul. Jacques-Cartier", - "color": "#A32638", - "nodes": [ - "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9", - "dcd7d0e4-fcf8-4c5b-b660-50e4efaf9e01", - "39c3eab5-6995-4187-aaec-6f0b6badd5cf", - "146e7d43-1e02-4f93-ac9a-e66dd29d3576", - "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", - "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", - "f9f88325-b670-4d47-91fa-edb372992bbc", - "e1a9e623-935b-47b9-a038-bcbd5a33f95e", - "ba348c95-9f07-48ca-a139-5d5c2dd83350", - "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", - "6c122298-4ea6-41ee-91e8-bb29cb41a320", - "e1825eb4-cef2-4f98-872f-0d169be63859", - "5a82a520-52b6-417e-972a-f9bf56fb4f33", - "64ba3e91-9bea-4655-ac42-4f3f1a14955c", - "315b8823-6c3a-493b-9af5-7325cbc48096", - "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "05287baf-76e5-4533-8eef-0902c45b01ae", - "54cba115-6a75-4b65-8019-b2b5de7a3947", - "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", - "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", - "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", - "52b1586a-11ae-4a36-8706-2e4367c6d3c8", - "c621a0b4-590c-49e4-a56e-dbf728939757", - "40dfecad-5647-485d-a27b-e190661c773f", - "75f9df26-8a28-4cb0-870b-f121f95b87ff" - ], - "stops": [], - "line_id": "7c21482a-939f-4cf2-b5cd-72eafd09295b", - "segments": [ - 0, - 4, - 10, - 13, - 24, - 27, - 30, - 33, - 41, - 44, - 46, - 48, - 50, - 52, - 54, - 56, - 58, - 61, - 63, - 65, - 67, - 80, - 83, - 145, - 162 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 231, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.468109, - 45.516382 - ], - [ - -73.467981, - 45.516556 - ], - [ - -73.467555, - 45.517154 - ], - [ - -73.467158, - 45.517689 - ], - [ - -73.466776, - 45.518225 - ], - [ - -73.466413, - 45.518737 - ], - [ - -73.465602, - 45.519839 - ], - [ - -73.465429, - 45.520073 - ], - [ - -73.465207, - 45.520429 - ], - [ - -73.46486, - 45.520895 - ], - [ - -73.464225, - 45.52069 - ], - [ - -73.464163, - 45.520404 - ], - [ - -73.464063, - 45.519947 - ], - [ - -73.463992, - 45.519645 - ], - [ - -73.463946, - 45.519416 - ], - [ - -73.463946, - 45.519259 - ], - [ - -73.463946, - 45.519088 - ], - [ - -73.463972, - 45.518953 - ], - [ - -73.464012, - 45.51884 - ], - [ - -73.46406, - 45.518732 - ], - [ - -73.464166, - 45.518557 - ], - [ - -73.464483, - 45.518161 - ], - [ - -73.464941, - 45.517498 - ], - [ - -73.465811, - 45.516258 - ], - [ - -73.465943, - 45.516081 - ], - [ - -73.466232, - 45.515695 - ], - [ - -73.466795, - 45.514943 - ], - [ - -73.46686, - 45.514855 - ], - [ - -73.467821, - 45.513555 - ], - [ - -73.468294, - 45.512911 - ], - [ - -73.468744, - 45.5123 - ], - [ - -73.469443, - 45.511193 - ], - [ - -73.469555, - 45.511034 - ], - [ - -73.469846, - 45.510622 - ], - [ - -73.469971, - 45.51045 - ], - [ - -73.470521, - 45.509701 - ], - [ - -73.471066, - 45.508957 - ], - [ - -73.471144, - 45.508849 - ], - [ - -73.471787, - 45.509065 - ], - [ - -73.472138, - 45.509183 - ], - [ - -73.473938, - 45.509773 - ], - [ - -73.475433, - 45.510263 - ], - [ - -73.478511, - 45.511267 - ], - [ - -73.480006, - 45.511754 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.483726, - 45.512962 - ], - [ - -73.484663, - 45.513266 - ], - [ - -73.48773, - 45.514265 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.493881, - 45.516272 - ], - [ - -73.493917, - 45.516284 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.49882, - 45.517869 - ], - [ - -73.499972, - 45.518261 - ], - [ - -73.501377, - 45.518713 - ], - [ - -73.502235, - 45.51899 - ], - [ - -73.505525, - 45.520065 - ], - [ - -73.507249, - 45.520621 - ], - [ - -73.507813, - 45.520803 - ], - [ - -73.507881, - 45.520866 - ], - [ - -73.508099, - 45.520938 - ], - [ - -73.508258, - 45.520974 - ], - [ - -73.50837, - 45.520987 - ], - [ - -73.508461, - 45.520983 - ], - [ - -73.508562, - 45.520983 - ], - [ - -73.50866, - 45.520978 - ], - [ - -73.50877, - 45.520987 - ], - [ - -73.508969, - 45.521037 - ], - [ - -73.509108, - 45.521064 - ], - [ - -73.509167, - 45.521059 - ], - [ - -73.510243, - 45.521423 - ], - [ - -73.511276, - 45.521761 - ], - [ - -73.513225, - 45.522404 - ], - [ - -73.513329, - 45.522453 - ], - [ - -73.513337, - 45.522457 - ], - [ - -73.51347, - 45.522512 - ], - [ - -73.513848, - 45.522669 - ], - [ - -73.513975, - 45.522746 - ], - [ - -73.51419, - 45.522845 - ], - [ - -73.514604, - 45.52298 - ], - [ - -73.515018, - 45.52307 - ], - [ - -73.515337, - 45.52311 - ], - [ - -73.515636, - 45.523119 - ], - [ - -73.51578, - 45.523087 - ], - [ - -73.515992, - 45.523069 - ], - [ - -73.516183, - 45.523047 - ], - [ - -73.516331, - 45.52302 - ], - [ - -73.516535, - 45.522966 - ], - [ - -73.517023, - 45.522772 - ], - [ - -73.517522, - 45.522552 - ], - [ - -73.518003, - 45.522345 - ], - [ - -73.518219, - 45.522255 - ], - [ - -73.518483, - 45.522178 - ], - [ - -73.518751, - 45.522111 - ], - [ - -73.518959, - 45.52207 - ], - [ - -73.519211, - 45.522021 - ], - [ - -73.519279, - 45.522006 - ], - [ - -73.519463, - 45.521967 - ], - [ - -73.520583, - 45.521872 - ], - [ - -73.522213, - 45.521732 - ], - [ - -73.523688, - 45.521608 - ], - [ - -73.525628, - 45.521442 - ], - [ - -73.525795, - 45.521428 - ], - [ - -73.525933, - 45.521416 - ], - [ - -73.532275, - 45.520905 - ], - [ - -73.534391, - 45.520735 - ], - [ - -73.534716, - 45.520716 - ], - [ - -73.535006, - 45.520706 - ], - [ - -73.535439, - 45.520719 - ], - [ - -73.535574, - 45.520734 - ], - [ - -73.535886, - 45.520771 - ], - [ - -73.536216, - 45.520827 - ], - [ - -73.538712, - 45.521269 - ], - [ - -73.538962, - 45.521314 - ], - [ - -73.546591, - 45.522667 - ], - [ - -73.546713, - 45.522688 - ], - [ - -73.546899, - 45.522724 - ], - [ - -73.547126, - 45.522828 - ], - [ - -73.550698, - 45.524508 - ], - [ - -73.550978, - 45.524639 - ], - [ - -73.5511, - 45.524684 - ], - [ - -73.551293, - 45.524734 - ], - [ - -73.553654, - 45.525353 - ], - [ - -73.553877, - 45.52543 - ], - [ - -73.554163, - 45.525542 - ], - [ - -73.554506, - 45.525695 - ], - [ - -73.554687, - 45.525824 - ], - [ - -73.554811, - 45.525929 - ], - [ - -73.554829, - 45.525948 - ], - [ - -73.554929, - 45.526059 - ], - [ - -73.55493, - 45.526059 - ], - [ - -73.554993, - 45.526176 - ], - [ - -73.555026, - 45.52628 - ], - [ - -73.554833, - 45.526514 - ], - [ - -73.554697, - 45.526599 - ], - [ - -73.554558, - 45.526626 - ], - [ - -73.554315, - 45.526628 - ], - [ - -73.553319, - 45.526172 - ], - [ - -73.553138, - 45.526114 - ], - [ - -73.551756, - 45.525462 - ], - [ - -73.551291, - 45.52526 - ], - [ - -73.550364, - 45.524824 - ], - [ - -73.550043, - 45.524672 - ], - [ - -73.54964, - 45.524481 - ], - [ - -73.549511, - 45.524419 - ], - [ - -73.548735, - 45.524051 - ], - [ - -73.548198, - 45.52379 - ], - [ - -73.548092, - 45.523688 - ], - [ - -73.547877, - 45.523575 - ], - [ - -73.547516, - 45.523402 - ], - [ - -73.547208, - 45.52326 - ], - [ - -73.546709, - 45.522954 - ], - [ - -73.54663, - 45.522846 - ], - [ - -73.546597, - 45.522733 - ], - [ - -73.546634, - 45.522544 - ], - [ - -73.546696, - 45.522395 - ], - [ - -73.54672, - 45.522337 - ], - [ - -73.547896, - 45.520642 - ], - [ - -73.548138, - 45.520782 - ], - [ - -73.548509, - 45.520997 - ], - [ - -73.548897, - 45.521198 - ], - [ - -73.549685, - 45.521399 - ], - [ - -73.549878, - 45.521441 - ], - [ - -73.549977, - 45.521487 - ], - [ - -73.551169, - 45.522041 - ], - [ - -73.55189, - 45.522385 - ], - [ - -73.552357, - 45.5226 - ], - [ - -73.552183, - 45.522794 - ], - [ - -73.551746, - 45.523283 - ], - [ - -73.552137, - 45.523459 - ], - [ - -73.552783, - 45.523749 - ], - [ - -73.552798, - 45.523756 - ] - ] - }, - "id": 232, - "properties": { - "id": "bb56fe28-cfc3-47dd-87f3-c152ea8d2e72", - "data": { - "gtfs": { - "shape_id": "170_2_A" - }, - "segments": [ - { - "distanceMeters": 432, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 736, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 547, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 522, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 876, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 641, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 505, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 522, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 511, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 512, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 509, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 511, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 634, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 382, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 364, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 551, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 407, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 31 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10827, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3520.82665481789, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 13.88, - "travelTimeWithoutDwellTimesSeconds": 780, - "operatingTimeWithLayoverTimeSeconds": 960, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 780, - "operatingSpeedWithLayoverMetersPerSecond": 11.28, - "averageSpeedWithoutDwellTimesMetersPerSecond": 13.88 - }, - "mode": "bus", - "name": "boul. Jacques-Cartier", - "color": "#A32638", - "nodes": [ - "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9", - "dcd7d0e4-fcf8-4c5b-b660-50e4efaf9e01", - "39c3eab5-6995-4187-aaec-6f0b6badd5cf", - "146e7d43-1e02-4f93-ac9a-e66dd29d3576", - "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", - "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", - "f9f88325-b670-4d47-91fa-edb372992bbc", - "e1a9e623-935b-47b9-a038-bcbd5a33f95e", - "ba348c95-9f07-48ca-a139-5d5c2dd83350", - "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", - "6c122298-4ea6-41ee-91e8-bb29cb41a320", - "e1825eb4-cef2-4f98-872f-0d169be63859", - "5a82a520-52b6-417e-972a-f9bf56fb4f33", - "64ba3e91-9bea-4655-ac42-4f3f1a14955c", - "315b8823-6c3a-493b-9af5-7325cbc48096", - "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "05287baf-76e5-4533-8eef-0902c45b01ae", - "54cba115-6a75-4b65-8019-b2b5de7a3947", - "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", - "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", - "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", - "52b1586a-11ae-4a36-8706-2e4367c6d3c8" - ], - "stops": [], - "line_id": "7c21482a-939f-4cf2-b5cd-72eafd09295b", - "segments": [ - 0, - 6, - 24, - 27, - 34, - 40, - 43, - 45, - 50, - 54, - 57, - 74, - 96, - 102, - 104, - 112, - 114, - 118, - 128, - 143, - 155, - 163 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 232, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.485782, - 45.531115 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.488538, - 45.532145 - ], - [ - -73.488569, - 45.532091 - ], - [ - -73.488692, - 45.531915 - ], - [ - -73.48872, - 45.531877 - ], - [ - -73.488835, - 45.531718 - ], - [ - -73.488919, - 45.5316 - ], - [ - -73.489294, - 45.531043 - ], - [ - -73.489582, - 45.530624 - ], - [ - -73.489681, - 45.53048 - ], - [ - -73.490074, - 45.529927 - ], - [ - -73.490523, - 45.529279 - ], - [ - -73.490857, - 45.528779 - ], - [ - -73.491012, - 45.528546 - ], - [ - -73.490563, - 45.5284 - ], - [ - -73.489761, - 45.52814 - ], - [ - -73.489528, - 45.528064 - ], - [ - -73.490298, - 45.527569 - ], - [ - -73.490653, - 45.527304 - ], - [ - -73.491326, - 45.52676 - ], - [ - -73.4914, - 45.526701 - ], - [ - -73.492088, - 45.526179 - ], - [ - -73.492707, - 45.525635 - ], - [ - -73.492898, - 45.525424 - ], - [ - -73.49318, - 45.525113 - ], - [ - -73.493408, - 45.524902 - ], - [ - -73.493799, - 45.524641 - ], - [ - -73.494186, - 45.524488 - ], - [ - -73.4947, - 45.524306 - ], - [ - -73.494785, - 45.524276 - ], - [ - -73.495166, - 45.524155 - ], - [ - -73.495493, - 45.524047 - ], - [ - -73.495888, - 45.523925 - ], - [ - -73.496536, - 45.523723 - ], - [ - -73.49671, - 45.523592 - ], - [ - -73.496788, - 45.523534 - ], - [ - -73.497235, - 45.523003 - ], - [ - -73.497422, - 45.522652 - ], - [ - -73.497435, - 45.5224 - ], - [ - -73.497302, - 45.521807 - ], - [ - -73.497269, - 45.521658 - ], - [ - -73.497101, - 45.520911 - ], - [ - -73.497017, - 45.520339 - ], - [ - -73.497012, - 45.520222 - ], - [ - -73.49702, - 45.520083 - ], - [ - -73.497044, - 45.519908 - ], - [ - -73.497064, - 45.519764 - ], - [ - -73.497081, - 45.519684 - ], - [ - -73.497108, - 45.519561 - ], - [ - -73.497278, - 45.518832 - ], - [ - -73.497354, - 45.518522 - ], - [ - -73.497411, - 45.518364 - ], - [ - -73.497477, - 45.518175 - ], - [ - -73.497613, - 45.517826 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.498036, - 45.516808 - ], - [ - -73.498296, - 45.516252 - ], - [ - -73.498388, - 45.516056 - ], - [ - -73.498727, - 45.51526 - ], - [ - -73.499247, - 45.514482 - ], - [ - -73.499299, - 45.514405 - ], - [ - -73.498872, - 45.51427 - ], - [ - -73.498574, - 45.514176 - ], - [ - -73.495995, - 45.513361 - ], - [ - -73.495825, - 45.513307 - ], - [ - -73.494505, - 45.512884 - ], - [ - -73.493805, - 45.512659 - ], - [ - -73.493619, - 45.512695 - ], - [ - -73.493364, - 45.512745 - ], - [ - -73.493005, - 45.512633 - ], - [ - -73.492639, - 45.51252 - ], - [ - -73.492769, - 45.512327 - ], - [ - -73.493081, - 45.511867 - ], - [ - -73.493369, - 45.51144 - ], - [ - -73.493501, - 45.511236 - ], - [ - -73.493538, - 45.511179 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494003, - 45.510501 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.49184, - 45.50869 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488541, - 45.503629 - ], - [ - -73.48831, - 45.50321 - ], - [ - -73.48823, - 45.503039 - ], - [ - -73.488092, - 45.502693 - ], - [ - -73.487989, - 45.502369 - ], - [ - -73.487959, - 45.502275 - ], - [ - -73.487746, - 45.501478 - ], - [ - -73.487613, - 45.501033 - ], - [ - -73.487523, - 45.500735 - ], - [ - -73.487509, - 45.500686 - ], - [ - -73.487464, - 45.50056 - ], - [ - -73.487346, - 45.500232 - ], - [ - -73.487139, - 45.499795 - ], - [ - -73.486985, - 45.499512 - ], - [ - -73.486839, - 45.499268 - ], - [ - -73.486818, - 45.499233 - ], - [ - -73.48673, - 45.4991 - ], - [ - -73.486631, - 45.498949 - ], - [ - -73.486428, - 45.498675 - ], - [ - -73.486216, - 45.498401 - ], - [ - -73.486166, - 45.498342 - ], - [ - -73.486, - 45.498149 - ], - [ - -73.485576, - 45.497708 - ], - [ - -73.485299, - 45.497456 - ], - [ - -73.485253, - 45.497416 - ], - [ - -73.485251, - 45.497415 - ], - [ - -73.484899, - 45.497123 - ], - [ - -73.48444, - 45.49678 - ], - [ - -73.484387, - 45.49674 - ], - [ - -73.484357, - 45.496722 - ], - [ - -73.482231, - 45.495317 - ], - [ - -73.482144, - 45.49526 - ], - [ - -73.482055, - 45.495201 - ], - [ - -73.479537, - 45.493533 - ], - [ - -73.479372, - 45.493423 - ], - [ - -73.474527, - 45.490222 - ], - [ - -73.474366, - 45.490115 - ], - [ - -73.473909, - 45.489814 - ], - [ - -73.472101, - 45.488618 - ], - [ - -73.471942, - 45.488513 - ], - [ - -73.46708, - 45.485304 - ], - [ - -73.466642, - 45.484984 - ], - [ - -73.466511, - 45.484875 - ], - [ - -73.466473, - 45.484845 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466302, - 45.484687 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466188, - 45.484448 - ], - [ - -73.466149, - 45.484395 - ], - [ - -73.465905, - 45.484113 - ], - [ - -73.465719, - 45.4839 - ], - [ - -73.46546, - 45.483541 - ], - [ - -73.465236, - 45.483174 - ], - [ - -73.465161, - 45.483037 - ], - [ - -73.465057, - 45.482799 - ], - [ - -73.464968, - 45.48254 - ], - [ - -73.46489, - 45.482284 - ], - [ - -73.464833, - 45.481906 - ], - [ - -73.464816, - 45.481524 - ], - [ - -73.464841, - 45.481189 - ], - [ - -73.464843, - 45.481165 - ], - [ - -73.464847, - 45.481114 - ], - [ - -73.464866, - 45.480979 - ], - [ - -73.46492, - 45.48071 - ], - [ - -73.465032, - 45.480327 - ], - [ - -73.465198, - 45.479819 - ], - [ - -73.46547, - 45.479009 - ], - [ - -73.465547, - 45.478779 - ], - [ - -73.465652, - 45.478467 - ], - [ - -73.465874, - 45.477808 - ], - [ - -73.466474, - 45.475995 - ], - [ - -73.466484, - 45.475966 - ], - [ - -73.466637, - 45.475504 - ], - [ - -73.467366, - 45.473305 - ], - [ - -73.467616, - 45.472553 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467869, - 45.471793 - ], - [ - -73.467954, - 45.471482 - ], - [ - -73.467979, - 45.471365 - ], - [ - -73.468005, - 45.471249 - ], - [ - -73.468064, - 45.470898 - ], - [ - -73.468088, - 45.470653 - ], - [ - -73.468112, - 45.470407 - ], - [ - -73.468119, - 45.470155 - ], - [ - -73.468115, - 45.470044 - ], - [ - -73.468111, - 45.469894 - ], - [ - -73.468108, - 45.469818 - ], - [ - -73.468107, - 45.469773 - ], - [ - -73.46805, - 45.4693 - ], - [ - -73.467953, - 45.468836 - ], - [ - -73.467932, - 45.468733 - ], - [ - -73.467793, - 45.468274 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466768 - ] - ] - }, - "id": 233, - "properties": { - "id": "e064c179-f16a-4e36-ab11-3eb63d526e99", - "data": { - "gtfs": { - "shape_id": "177_1_R" - }, - "segments": [ - { - "distanceMeters": 317, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 953, - "travelTimeSeconds": 111 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 95, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 537, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 603, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 95 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 608, - "travelTimeSeconds": 133 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 79 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9347, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7261.505185340884, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.23, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 5.56, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.23 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "27c5df15-201f-4855-9f49-556fd659fd8e", - "a484746b-f716-4eab-ae1c-c7c08714d651", - "17183bd2-c06f-4999-9774-43fb48004315", - "37861c82-a45a-4026-bde0-eec4ce121a64", - "ec8a892d-b1ec-472d-a26a-5b38c3ac6966", - "dc7a6dd7-6fde-40ea-9f37-85aaefe35169", - "16c6c90b-9ef2-4203-a4a2-74a27e23dc94", - "afda06bb-9f3e-43a6-883f-96226fa884c5", - "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "6c8872a8-685f-49ed-9246-92743dd113de", - "161f72ac-926f-49be-80a4-a3cb10884d02", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "d32c5a5b-6e6f-48c3-9f4e-37b94ed6e20d", - "09272548-09d5-4afa-a45f-80ba6dd656dd", - "4a0c512f-2ce4-41cc-a200-cf81d75487c1", - "7095ff94-e6bf-4956-8b59-9e66be631584", - "5d573c90-ed41-4ac1-9f58-abc862e00f93", - "37199bb2-9740-4484-b68f-12d3c82f8bf9", - "bcd0a901-5384-443e-9be4-1f0faa123ccb", - "fdd9bfef-c8dc-4f65-9008-847050729854", - "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", - "7ad37664-fa6b-478f-8d31-2d3ae7009709", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "94cd69e7-ebc9-452b-a357-367107db73b4", - "03b1ef77-b509-4f21-97d5-d511eeb821cb", - "351136d8-2c40-4c3f-8032-a52e48738c07", - "159a0fe9-bedb-40f2-9806-32ab49594978", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "579043e1-54f7-411f-9a36-e7ee3324290f", - "1758013c-4193-42f0-a495-c36930003f5b", - "51e1600d-418e-4477-9b26-9e5507d72a03", - "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "131616ed-8c78-458b-a65e-78f1aeac1fc7" - ], - "stops": [], - "line_id": "c3c576d5-01e4-4c99-a14e-5360f902e029", - "segments": [ - 0, - 7, - 10, - 14, - 17, - 21, - 25, - 30, - 36, - 41, - 49, - 55, - 58, - 63, - 65, - 71, - 76, - 90, - 108, - 114, - 124, - 127, - 130, - 133, - 135, - 138, - 142, - 159, - 167, - 170, - 182, - 190 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 233, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469004, - 45.466768 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466444, - 45.465889 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467476, - 45.467991 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467548, - 45.468225 - ], - [ - -73.467698, - 45.468792 - ], - [ - -73.467776, - 45.469183 - ], - [ - -73.46782, - 45.469453 - ], - [ - -73.46784, - 45.469698 - ], - [ - -73.467865, - 45.469989 - ], - [ - -73.467864, - 45.470057 - ], - [ - -73.467862, - 45.470168 - ], - [ - -73.46786, - 45.470362 - ], - [ - -73.467821, - 45.470781 - ], - [ - -73.467786, - 45.471019 - ], - [ - -73.467768, - 45.4711 - ], - [ - -73.467742, - 45.471226 - ], - [ - -73.467655, - 45.471563 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467508, - 45.472063 - ], - [ - -73.467493, - 45.472108 - ], - [ - -73.467344, - 45.472559 - ], - [ - -73.467254, - 45.472832 - ], - [ - -73.467075, - 45.473412 - ], - [ - -73.467018, - 45.473612 - ], - [ - -73.46686, - 45.474168 - ], - [ - -73.466715, - 45.474632 - ], - [ - -73.466501, - 45.475269 - ], - [ - -73.466278, - 45.475935 - ], - [ - -73.466234, - 45.476067 - ], - [ - -73.466127, - 45.476384 - ], - [ - -73.465592, - 45.477979 - ], - [ - -73.465357, - 45.478703 - ], - [ - -73.46534, - 45.478747 - ], - [ - -73.465269, - 45.478932 - ], - [ - -73.465247, - 45.479 - ], - [ - -73.464879, - 45.480107 - ], - [ - -73.464823, - 45.480273 - ], - [ - -73.464733, - 45.480574 - ], - [ - -73.464664, - 45.480885 - ], - [ - -73.464647, - 45.481013 - ], - [ - -73.464634, - 45.481108 - ], - [ - -73.464622, - 45.481195 - ], - [ - -73.464619, - 45.481245 - ], - [ - -73.464603, - 45.481524 - ], - [ - -73.464619, - 45.481956 - ], - [ - -73.464693, - 45.482383 - ], - [ - -73.464736, - 45.482559 - ], - [ - -73.46485, - 45.482905 - ], - [ - -73.46499, - 45.483243 - ], - [ - -73.465069, - 45.483405 - ], - [ - -73.465231, - 45.483688 - ], - [ - -73.465328, - 45.483837 - ], - [ - -73.465383, - 45.483922 - ], - [ - -73.465513, - 45.484102 - ], - [ - -73.465839, - 45.48448 - ], - [ - -73.466022, - 45.484682 - ], - [ - -73.46613, - 45.484773 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.46623, - 45.484867 - ], - [ - -73.466294, - 45.484926 - ], - [ - -73.466458, - 45.485056 - ], - [ - -73.466566, - 45.485142 - ], - [ - -73.466759, - 45.48529 - ], - [ - -73.466948, - 45.485421 - ], - [ - -73.467024, - 45.48547 - ], - [ - -73.468004, - 45.486118 - ], - [ - -73.469888, - 45.487365 - ], - [ - -73.470621, - 45.487851 - ], - [ - -73.471594, - 45.488496 - ], - [ - -73.471789, - 45.488626 - ], - [ - -73.473768, - 45.489935 - ], - [ - -73.474009, - 45.490094 - ], - [ - -73.474218, - 45.490232 - ], - [ - -73.476501, - 45.49174 - ], - [ - -73.4777, - 45.49253 - ], - [ - -73.479088, - 45.493446 - ], - [ - -73.479217, - 45.493531 - ], - [ - -73.480275, - 45.494231 - ], - [ - -73.481907, - 45.495309 - ], - [ - -73.482, - 45.495372 - ], - [ - -73.482363, - 45.495611 - ], - [ - -73.483276, - 45.496213 - ], - [ - -73.483953, - 45.496659 - ], - [ - -73.484042, - 45.496722 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.48442, - 45.496983 - ], - [ - -73.484708, - 45.497199 - ], - [ - -73.484931, - 45.497378 - ], - [ - -73.485095, - 45.49751 - ], - [ - -73.485397, - 45.497784 - ], - [ - -73.485739, - 45.498135 - ], - [ - -73.485877, - 45.498284 - ], - [ - -73.486105, - 45.498553 - ], - [ - -73.486286, - 45.498787 - ], - [ - -73.486368, - 45.498907 - ], - [ - -73.486538, - 45.499154 - ], - [ - -73.486685, - 45.499381 - ], - [ - -73.486823, - 45.499615 - ], - [ - -73.486951, - 45.499858 - ], - [ - -73.487138, - 45.500263 - ], - [ - -73.487159, - 45.500317 - ], - [ - -73.487266, - 45.500606 - ], - [ - -73.487306, - 45.500713 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487417, - 45.501077 - ], - [ - -73.487455, - 45.501208 - ], - [ - -73.487464, - 45.50124 - ], - [ - -73.48765, - 45.50191 - ], - [ - -73.487855, - 45.502589 - ], - [ - -73.488032, - 45.50303 - ], - [ - -73.488178, - 45.503309 - ], - [ - -73.488409, - 45.50371 - ], - [ - -73.489159, - 45.504974 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492927, - 45.510111 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497927, - 45.512055 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.4998, - 45.513609 - ], - [ - -73.499664, - 45.513825 - ], - [ - -73.499364, - 45.514302 - ], - [ - -73.499299, - 45.514405 - ], - [ - -73.499247, - 45.514482 - ], - [ - -73.498727, - 45.51526 - ], - [ - -73.498428, - 45.515961 - ], - [ - -73.498388, - 45.516056 - ], - [ - -73.498036, - 45.516808 - ], - [ - -73.497772, - 45.517428 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.497477, - 45.518175 - ], - [ - -73.497411, - 45.518364 - ], - [ - -73.497354, - 45.518522 - ], - [ - -73.497278, - 45.518832 - ], - [ - -73.497139, - 45.519427 - ], - [ - -73.497108, - 45.519561 - ], - [ - -73.497064, - 45.519764 - ], - [ - -73.497044, - 45.519908 - ], - [ - -73.49702, - 45.520083 - ], - [ - -73.497012, - 45.520222 - ], - [ - -73.497017, - 45.520339 - ], - [ - -73.497101, - 45.520911 - ], - [ - -73.497233, - 45.521496 - ], - [ - -73.497269, - 45.521658 - ], - [ - -73.497435, - 45.5224 - ], - [ - -73.497422, - 45.522652 - ], - [ - -73.497235, - 45.523003 - ], - [ - -73.496893, - 45.52341 - ], - [ - -73.496788, - 45.523534 - ], - [ - -73.496536, - 45.523723 - ], - [ - -73.495888, - 45.523925 - ], - [ - -73.495493, - 45.524047 - ], - [ - -73.495166, - 45.524155 - ], - [ - -73.494785, - 45.524276 - ], - [ - -73.494275, - 45.524456 - ], - [ - -73.494186, - 45.524488 - ], - [ - -73.493799, - 45.524641 - ], - [ - -73.493408, - 45.524902 - ], - [ - -73.49318, - 45.525113 - ], - [ - -73.492788, - 45.525546 - ], - [ - -73.492707, - 45.525635 - ], - [ - -73.492088, - 45.526179 - ], - [ - -73.491454, - 45.52666 - ], - [ - -73.4914, - 45.526701 - ], - [ - -73.490653, - 45.527304 - ], - [ - -73.490298, - 45.527569 - ], - [ - -73.489528, - 45.528064 - ], - [ - -73.488678, - 45.5286 - ], - [ - -73.488593, - 45.528653 - ], - [ - -73.487775, - 45.529162 - ], - [ - -73.487089, - 45.529621 - ], - [ - -73.486752, - 45.529854 - ], - [ - -73.486628, - 45.52994 - ], - [ - -73.485959, - 45.530394 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.485782, - 45.531115 - ] - ] - }, - "id": 234, - "properties": { - "id": "d4f5f6ab-eb3b-4771-b1d2-80a8867e79fd", - "data": { - "gtfs": { - "shape_id": "177_1_A" - }, - "segments": [ - { - "distanceMeters": 805, - "travelTimeSeconds": 131 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 436, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 485, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 554, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 544, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 507, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 1157, - "travelTimeSeconds": 113 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 93 - }, - { - "distanceMeters": 384, - "travelTimeSeconds": 79 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 45 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9311, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7261.505185340884, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.47, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 5.75, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.47 - }, - "mode": "bus", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "acb7092d-3b2a-4d79-a4e3-09e7e52af475", - "47d29e21-b442-4f1e-bc41-0d7871af14e8", - "7eaffbff-c86c-4810-b174-bda8780c04b4", - "e76a6766-6730-419b-bd29-f65b80bb6721", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "4996264a-c3f0-4fe8-be81-9ca3d8659c61", - "e089008c-4123-4897-95b5-a61e5e049f48", - "03b1ef77-b509-4f21-97d5-d511eeb821cb", - "56af9248-f973-4335-84c1-2e5e744a3910", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "fd062866-a8eb-4466-b53a-6adf8fc3f09a", - "6c42a8f6-a98f-4058-9992-d00706a03dff", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "09272548-09d5-4afa-a45f-80ba6dd656dd", - "d32c5a5b-6e6f-48c3-9f4e-37b94ed6e20d", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "161f72ac-926f-49be-80a4-a3cb10884d02", - "6c8872a8-685f-49ed-9246-92743dd113de", - "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "afda06bb-9f3e-43a6-883f-96226fa884c5", - "16c6c90b-9ef2-4203-a4a2-74a27e23dc94", - "dc7a6dd7-6fde-40ea-9f37-85aaefe35169", - "280d705c-e41e-4a8f-8450-ac212bf84d99", - "79974834-930d-4e4d-921b-dafd49580553", - "27c5df15-201f-4855-9f49-556fd659fd8e" - ], - "stops": [], - "line_id": "c3c576d5-01e4-4c99-a14e-5360f902e029", - "segments": [ - 0, - 31, - 45, - 54, - 57, - 64, - 85, - 93, - 96, - 100, - 105, - 108, - 126, - 148, - 161, - 166, - 170, - 173, - 179, - 187, - 192, - 199, - 204, - 207, - 212, - 216 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 234, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.40209, - 45.582184 - ], - [ - -73.402436, - 45.58188 - ], - [ - -73.402759, - 45.581597 - ], - [ - -73.402997, - 45.581387 - ], - [ - -73.40365, - 45.580813 - ], - [ - -73.403738, - 45.580736 - ], - [ - -73.404732, - 45.579874 - ], - [ - -73.404903, - 45.57975 - ], - [ - -73.4054, - 45.579445 - ], - [ - -73.405449, - 45.579418 - ], - [ - -73.405562, - 45.579347 - ], - [ - -73.405566, - 45.579345 - ], - [ - -73.4057, - 45.579264 - ], - [ - -73.40548, - 45.579069 - ], - [ - -73.405449, - 45.579042 - ], - [ - -73.405272, - 45.578897 - ], - [ - -73.40517, - 45.578813 - ], - [ - -73.404428, - 45.578224 - ], - [ - -73.40436, - 45.578171 - ], - [ - -73.404045, - 45.577927 - ], - [ - -73.403788, - 45.577749 - ], - [ - -73.403207, - 45.577445 - ], - [ - -73.403621, - 45.577033 - ], - [ - -73.40366, - 45.576998 - ], - [ - -73.404511, - 45.576201 - ], - [ - -73.40454, - 45.576175 - ], - [ - -73.404582, - 45.576139 - ], - [ - -73.404806, - 45.575896 - ], - [ - -73.404941, - 45.57582 - ], - [ - -73.405504, - 45.575339 - ], - [ - -73.405913, - 45.574988 - ], - [ - -73.406353, - 45.574602 - ], - [ - -73.407377, - 45.573703 - ], - [ - -73.407648, - 45.573464 - ], - [ - -73.407787, - 45.573353 - ], - [ - -73.407902, - 45.573272 - ], - [ - -73.408156, - 45.573119 - ], - [ - -73.408432, - 45.572987 - ], - [ - -73.40901, - 45.572865 - ], - [ - -73.410733, - 45.572762 - ], - [ - -73.410922, - 45.572751 - ], - [ - -73.411036, - 45.572745 - ], - [ - -73.412381, - 45.572673 - ], - [ - -73.412661, - 45.572692 - ], - [ - -73.412713, - 45.572696 - ], - [ - -73.413219, - 45.572818 - ], - [ - -73.413504, - 45.572924 - ], - [ - -73.413615, - 45.572947 - ], - [ - -73.413719, - 45.573015 - ], - [ - -73.413779, - 45.573055 - ], - [ - -73.413835, - 45.573103 - ], - [ - -73.413911, - 45.573168 - ], - [ - -73.414077, - 45.573294 - ], - [ - -73.414647, - 45.573758 - ], - [ - -73.414791, - 45.57387 - ], - [ - -73.415452, - 45.574393 - ], - [ - -73.415714, - 45.5746 - ], - [ - -73.416156, - 45.574947 - ], - [ - -73.417067, - 45.575663 - ], - [ - -73.418497, - 45.576798 - ], - [ - -73.418642, - 45.576911 - ], - [ - -73.418667, - 45.576931 - ], - [ - -73.418861, - 45.577082 - ], - [ - -73.418953, - 45.577153 - ], - [ - -73.419, - 45.577192 - ], - [ - -73.419047, - 45.57723 - ], - [ - -73.419313, - 45.577437 - ], - [ - -73.41953, - 45.577608 - ], - [ - -73.420061, - 45.578025 - ], - [ - -73.420081, - 45.578041 - ], - [ - -73.420386, - 45.578284 - ], - [ - -73.420532, - 45.578396 - ], - [ - -73.421072, - 45.578819 - ], - [ - -73.4211, - 45.578841 - ], - [ - -73.421663, - 45.579282 - ], - [ - -73.421745, - 45.579346 - ], - [ - -73.421793, - 45.579382 - ], - [ - -73.421846, - 45.579423 - ], - [ - -73.42208, - 45.579603 - ], - [ - -73.422546, - 45.579959 - ], - [ - -73.422663, - 45.580049 - ], - [ - -73.422806, - 45.580158 - ], - [ - -73.423009, - 45.580315 - ], - [ - -73.423236, - 45.580486 - ], - [ - -73.423455, - 45.580651 - ], - [ - -73.423789, - 45.580905 - ], - [ - -73.424014, - 45.581078 - ], - [ - -73.424062, - 45.581115 - ], - [ - -73.424788, - 45.581676 - ], - [ - -73.425169, - 45.58197 - ], - [ - -73.425206, - 45.581999 - ], - [ - -73.425286, - 45.58206 - ], - [ - -73.425816, - 45.582464 - ], - [ - -73.426256, - 45.5828 - ], - [ - -73.426385, - 45.582897 - ], - [ - -73.426528, - 45.583004 - ], - [ - -73.429814, - 45.585537 - ], - [ - -73.429849, - 45.585563 - ], - [ - -73.429958, - 45.585646 - ], - [ - -73.430085, - 45.585745 - ], - [ - -73.430467, - 45.586051 - ], - [ - -73.430716, - 45.586245 - ], - [ - -73.430893, - 45.586393 - ], - [ - -73.431289, - 45.586718 - ], - [ - -73.431333, - 45.586756 - ], - [ - -73.431717, - 45.587092 - ], - [ - -73.431818, - 45.587179 - ], - [ - -73.431883, - 45.587238 - ], - [ - -73.432034, - 45.587385 - ], - [ - -73.432226, - 45.587579 - ], - [ - -73.433253, - 45.588702 - ], - [ - -73.433543, - 45.589016 - ], - [ - -73.433674, - 45.589158 - ], - [ - -73.433885, - 45.58936 - ], - [ - -73.4342, - 45.589657 - ], - [ - -73.434715, - 45.590103 - ], - [ - -73.434884, - 45.590234 - ], - [ - -73.434944, - 45.590279 - ], - [ - -73.434983, - 45.59031 - ], - [ - -73.434993, - 45.590319 - ], - [ - -73.435014, - 45.590337 - ], - [ - -73.435057, - 45.590373 - ], - [ - -73.435107, - 45.590414 - ], - [ - -73.435254, - 45.590517 - ], - [ - -73.435815, - 45.590941 - ], - [ - -73.436193, - 45.591219 - ], - [ - -73.43623, - 45.591247 - ], - [ - -73.436355, - 45.59135 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.438334, - 45.592832 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.440083, - 45.594124 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.442163, - 45.595679 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442992, - 45.59628 - ], - [ - -73.443311, - 45.596502 - ], - [ - -73.443394, - 45.596559 - ], - [ - -73.444803, - 45.597518 - ], - [ - -73.445261, - 45.597829 - ], - [ - -73.445354, - 45.597894 - ], - [ - -73.446259, - 45.598527 - ], - [ - -73.446713, - 45.59886 - ], - [ - -73.447013, - 45.599083 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.448114, - 45.599973 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449825, - 45.601331 - ], - [ - -73.449842, - 45.601358 - ], - [ - -73.449882, - 45.601394 - ], - [ - -73.449937, - 45.601432 - ], - [ - -73.449974, - 45.601468 - ], - [ - -73.450006, - 45.601497 - ], - [ - -73.450033, - 45.601528 - ], - [ - -73.450045, - 45.601571 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.450329, - 45.600811 - ], - [ - -73.450301, - 45.600774 - ], - [ - -73.45028, - 45.600747 - ], - [ - -73.45017, - 45.600666 - ], - [ - -73.450081, - 45.60062 - ], - [ - -73.449968, - 45.600603 - ], - [ - -73.449925, - 45.600607 - ], - [ - -73.449868, - 45.600621 - ], - [ - -73.449802, - 45.600661 - ], - [ - -73.449715, - 45.600713 - ], - [ - -73.449674, - 45.600743 - ], - [ - -73.449661, - 45.600772 - ], - [ - -73.449666, - 45.600812 - ], - [ - -73.449924, - 45.601045 - ], - [ - -73.449978, - 45.601072 - ], - [ - -73.450055, - 45.601083 - ], - [ - -73.45017, - 45.60109 - ], - [ - -73.450263, - 45.601099 - ], - [ - -73.450328, - 45.601118 - ], - [ - -73.450379, - 45.601155 - ], - [ - -73.450393, - 45.601201 - ], - [ - -73.450376, - 45.60125 - ], - [ - -73.450362, - 45.601293 - ], - [ - -73.450349, - 45.601366 - ], - [ - -73.450328, - 45.601396 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450295, - 45.60142 - ], - [ - -73.450274, - 45.60143 - ], - [ - -73.450229, - 45.60144 - ], - [ - -73.450195, - 45.601446 - ], - [ - -73.450161, - 45.601455 - ], - [ - -73.450131, - 45.601466 - ], - [ - -73.450095, - 45.601482 - ], - [ - -73.450073, - 45.601501 - ], - [ - -73.450052, - 45.601522 - ], - [ - -73.450048, - 45.601541 - ], - [ - -73.450048, - 45.601565 - ], - [ - -73.450051, - 45.601586 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450683, - 45.601629 - ], - [ - -73.45076, - 45.601581 - ], - [ - -73.450865, - 45.60153 - ], - [ - -73.451136, - 45.601427 - ], - [ - -73.451322, - 45.601341 - ], - [ - -73.45143, - 45.601269 - ], - [ - -73.451545, - 45.601187 - ], - [ - -73.451753, - 45.601 - ], - [ - -73.451831, - 45.600914 - ], - [ - -73.451899, - 45.600828 - ], - [ - -73.451961, - 45.600734 - ], - [ - -73.452054, - 45.600554 - ], - [ - -73.452082, - 45.600442 - ], - [ - -73.452078, - 45.600293 - ], - [ - -73.452054, - 45.600172 - ], - [ - -73.45194, - 45.599798 - ], - [ - -73.451915, - 45.599672 - ], - [ - -73.451904, - 45.599524 - ], - [ - -73.451926, - 45.59938 - ], - [ - -73.451964, - 45.599267 - ], - [ - -73.452063, - 45.599123 - ], - [ - -73.452183, - 45.598993 - ], - [ - -73.452318, - 45.598881 - ], - [ - -73.452477, - 45.598768 - ], - [ - -73.452963, - 45.598458 - ], - [ - -73.45458, - 45.597401 - ], - [ - -73.459437, - 45.594497 - ], - [ - -73.459888, - 45.594213 - ], - [ - -73.46035, - 45.593903 - ], - [ - -73.460702, - 45.593647 - ], - [ - -73.461218, - 45.593251 - ], - [ - -73.46178, - 45.592783 - ], - [ - -73.465585, - 45.589586 - ], - [ - -73.468548, - 45.587089 - ], - [ - -73.468925, - 45.586766 - ], - [ - -73.469282, - 45.586424 - ], - [ - -73.469476, - 45.586217 - ], - [ - -73.46977, - 45.585875 - ], - [ - -73.470065, - 45.585497 - ], - [ - -73.470208, - 45.585295 - ], - [ - -73.470515, - 45.584795 - ], - [ - -73.470777, - 45.584346 - ], - [ - -73.470818, - 45.584266 - ], - [ - -73.471151, - 45.583659 - ], - [ - -73.471441, - 45.583163 - ], - [ - -73.471782, - 45.582588 - ], - [ - -73.471999, - 45.582223 - ], - [ - -73.472179, - 45.58194 - ], - [ - -73.472331, - 45.581716 - ], - [ - -73.472649, - 45.581329 - ], - [ - -73.47273, - 45.58124 - ], - [ - -73.472825, - 45.58114 - ], - [ - -73.473026, - 45.580958 - ], - [ - -73.473162, - 45.580835 - ], - [ - -73.473456, - 45.580601 - ], - [ - -73.473548, - 45.580529 - ], - [ - -73.474056, - 45.580187 - ], - [ - -73.474914, - 45.579634 - ], - [ - -73.475349, - 45.579354 - ], - [ - -73.475514, - 45.57924 - ], - [ - -73.475748, - 45.579059 - ], - [ - -73.476005, - 45.578855 - ], - [ - -73.476092, - 45.578785 - ], - [ - -73.476311, - 45.578613 - ], - [ - -73.476531, - 45.578426 - ], - [ - -73.477316, - 45.577756 - ], - [ - -73.478746, - 45.576546 - ], - [ - -73.485291, - 45.570941 - ], - [ - -73.485924, - 45.570374 - ], - [ - -73.486543, - 45.569794 - ], - [ - -73.487144, - 45.5692 - ], - [ - -73.487725, - 45.568597 - ], - [ - -73.488283, - 45.567985 - ], - [ - -73.489005, - 45.567148 - ], - [ - -73.489524, - 45.56651 - ], - [ - -73.490025, - 45.565857 - ], - [ - -73.490348, - 45.565416 - ], - [ - -73.490811, - 45.564746 - ], - [ - -73.492757, - 45.561799 - ], - [ - -73.493231, - 45.561129 - ], - [ - -73.493558, - 45.560688 - ], - [ - -73.493892, - 45.560256 - ], - [ - -73.494237, - 45.559829 - ], - [ - -73.499922, - 45.552981 - ], - [ - -73.501151, - 45.551492 - ], - [ - -73.501844, - 45.550646 - ], - [ - -73.502872, - 45.549445 - ], - [ - -73.503558, - 45.548684 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.522965, - 45.530118 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.517551, - 45.525432 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519846, - 45.523384 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522394, - 45.524142 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 235, - "properties": { - "id": "832acc61-ff42-45df-85fb-9140c9c0cd3b", - "data": { - "gtfs": { - "shape_id": "180_1_A" - }, - "segments": [ - { - "distanceMeters": 195, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 552, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 400, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 328, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 415, - "travelTimeSeconds": 85 - }, - { - "distanceMeters": 12140, - "travelTimeSeconds": 840 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 186, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 18356, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11423.752148378519, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.87, - "travelTimeWithoutDwellTimesSeconds": 1860, - "operatingTimeWithLayoverTimeSeconds": 2046, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1860, - "operatingSpeedWithLayoverMetersPerSecond": 8.97, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.87 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "758aaf15-550c-4ca9-b023-6270ea96c95b", - "ac37fcc5-ab7a-4274-84f7-80a37a395c91", - "1a872bc7-948e-475a-8527-ec3c2b61fd79", - "7b448eb1-37a4-4d74-be5a-f8938cae8304", - "d3a6dc19-15b0-45f0-a45a-d0eca5d46fd7", - "0f2d673a-8365-425e-adb1-c97927e1fe04", - "33427dde-b7ac-44e3-ba8b-3d835422c2dc", - "c6549833-3800-4d1f-a789-747fc95c595a", - "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", - "88dc439b-1c69-4b99-b3d0-d19592029cc1", - "ed651d5d-88ba-4ece-bfe1-02e5832cfee7", - "31ed7f59-0c7b-45ae-b437-8270ad7f8e62", - "cc142acd-cd00-4b27-8c30-0fb03b101fb8", - "8602485c-23c0-44fe-9b32-fa177f723a3a", - "3dedf179-3478-4b4d-b706-36e0a8981094", - "c4a07fb5-3745-472e-8e03-a61e6908d906", - "3e60c63a-1f50-42ff-98f0-f081a7dc4017", - "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", - "ebf7fd24-b756-481f-9a88-33b6362fcbda", - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "4fcc129f-8015-4b36-a21f-2437aa91a265", - "49262d07-72b2-466f-bf49-88656466e4a4", - "9e857d67-44b9-48aa-aa36-d1284504d820", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", - "bbe875bc-cb85-4a61-923d-53ee4746a213", - "4c755ece-2475-4915-941e-37859f0f391f" - ], - "stops": [], - "line_id": "2c29e5f9-c7ee-48c8-b580-d100e79bb119", - "segments": [ - 0, - 4, - 11, - 18, - 24, - 31, - 32, - 50, - 55, - 62, - 74, - 81, - 86, - 89, - 94, - 97, - 104, - 111, - 119, - 125, - 131, - 138, - 142, - 146, - 150, - 153, - 159, - 208 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 235, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.52252, - 45.524045 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.503549, - 45.548419 - ], - [ - -73.502986, - 45.54904 - ], - [ - -73.502097, - 45.550079 - ], - [ - -73.501025, - 45.551361 - ], - [ - -73.500319, - 45.55223 - ], - [ - -73.497146, - 45.556054 - ], - [ - -73.496787, - 45.55649 - ], - [ - -73.495905, - 45.557543 - ], - [ - -73.495369, - 45.558173 - ], - [ - -73.494314, - 45.559446 - ], - [ - -73.493461, - 45.560499 - ], - [ - -73.492975, - 45.561151 - ], - [ - -73.492659, - 45.561597 - ], - [ - -73.492068, - 45.562474 - ], - [ - -73.49148, - 45.563383 - ], - [ - -73.490434, - 45.564962 - ], - [ - -73.489967, - 45.565619 - ], - [ - -73.489477, - 45.566267 - ], - [ - -73.488962, - 45.566906 - ], - [ - -73.48825, - 45.567747 - ], - [ - -73.487877, - 45.568161 - ], - [ - -73.487301, - 45.568777 - ], - [ - -73.486712, - 45.56938 - ], - [ - -73.486308, - 45.569771 - ], - [ - -73.485474, - 45.570545 - ], - [ - -73.48461, - 45.571301 - ], - [ - -73.483654, - 45.572115 - ], - [ - -73.478606, - 45.576433 - ], - [ - -73.478028, - 45.576933 - ], - [ - -73.477248, - 45.577607 - ], - [ - -73.476645, - 45.578128 - ], - [ - -73.475915, - 45.578754 - ], - [ - -73.475553, - 45.579033 - ], - [ - -73.474887, - 45.579478 - ], - [ - -73.474437, - 45.579762 - ], - [ - -73.474095, - 45.580005 - ], - [ - -73.473853, - 45.580158 - ], - [ - -73.473398, - 45.580472 - ], - [ - -73.473077, - 45.58072 - ], - [ - -73.472886, - 45.580886 - ], - [ - -73.472612, - 45.581152 - ], - [ - -73.472574, - 45.581196 - ], - [ - -73.472319, - 45.581482 - ], - [ - -73.472175, - 45.581673 - ], - [ - -73.471994, - 45.581936 - ], - [ - -73.47191, - 45.582061 - ], - [ - -73.471753, - 45.582326 - ], - [ - -73.471543, - 45.582681 - ], - [ - -73.471245, - 45.583188 - ], - [ - -73.471013, - 45.58358 - ], - [ - -73.470714, - 45.584071 - ], - [ - -73.470067, - 45.585151 - ], - [ - -73.469784, - 45.585547 - ], - [ - -73.469628, - 45.585749 - ], - [ - -73.469287, - 45.586145 - ], - [ - -73.469101, - 45.586343 - ], - [ - -73.468904, - 45.586536 - ], - [ - -73.468695, - 45.586725 - ], - [ - -73.466029, - 45.588965 - ], - [ - -73.465851, - 45.589127 - ], - [ - -73.465429, - 45.589482 - ], - [ - -73.463709, - 45.590917 - ], - [ - -73.461267, - 45.592977 - ], - [ - -73.460579, - 45.593525 - ], - [ - -73.460036, - 45.593907 - ], - [ - -73.459551, - 45.594222 - ], - [ - -73.459088, - 45.594506 - ], - [ - -73.458501, - 45.594856 - ], - [ - -73.45527, - 45.596781 - ], - [ - -73.453729, - 45.597707 - ], - [ - -73.452183, - 45.598512 - ], - [ - -73.45172, - 45.598745 - ], - [ - -73.451404, - 45.598885 - ], - [ - -73.451234, - 45.598934 - ], - [ - -73.451048, - 45.598979 - ], - [ - -73.450747, - 45.59901 - ], - [ - -73.450606, - 45.59901 - ], - [ - -73.450404, - 45.598988 - ], - [ - -73.449896, - 45.598898 - ], - [ - -73.449552, - 45.598852 - ], - [ - -73.44936, - 45.598848 - ], - [ - -73.449191, - 45.598861 - ], - [ - -73.449046, - 45.598888 - ], - [ - -73.448769, - 45.598987 - ], - [ - -73.448631, - 45.599054 - ], - [ - -73.448365, - 45.599212 - ], - [ - -73.447787, - 45.599567 - ], - [ - -73.447737, - 45.599598 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.44809, - 45.599954 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449825, - 45.601331 - ], - [ - -73.449842, - 45.601358 - ], - [ - -73.449882, - 45.601394 - ], - [ - -73.449937, - 45.601432 - ], - [ - -73.449974, - 45.601468 - ], - [ - -73.450006, - 45.601497 - ], - [ - -73.450033, - 45.601528 - ], - [ - -73.450045, - 45.601571 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450437, - 45.601825 - ], - [ - -73.450476, - 45.601818 - ], - [ - -73.450508, - 45.601804 - ], - [ - -73.450537, - 45.601788 - ], - [ - -73.450564, - 45.601765 - ], - [ - -73.450599, - 45.601721 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450487, - 45.601347 - ], - [ - -73.450492, - 45.601216 - ], - [ - -73.450462, - 45.601126 - ], - [ - -73.450446, - 45.601074 - ], - [ - -73.450423, - 45.601001 - ], - [ - -73.450385, - 45.600905 - ], - [ - -73.450334, - 45.600817 - ], - [ - -73.450329, - 45.600811 - ], - [ - -73.450324, - 45.600804 - ], - [ - -73.45028, - 45.600747 - ], - [ - -73.45017, - 45.600666 - ], - [ - -73.450081, - 45.60062 - ], - [ - -73.449968, - 45.600603 - ], - [ - -73.449925, - 45.600607 - ], - [ - -73.449868, - 45.600621 - ], - [ - -73.449802, - 45.600661 - ], - [ - -73.449715, - 45.600713 - ], - [ - -73.449674, - 45.600743 - ], - [ - -73.449661, - 45.600772 - ], - [ - -73.449666, - 45.600812 - ], - [ - -73.449924, - 45.601045 - ], - [ - -73.449978, - 45.601072 - ], - [ - -73.450055, - 45.601083 - ], - [ - -73.45017, - 45.60109 - ], - [ - -73.450263, - 45.601099 - ], - [ - -73.450328, - 45.601118 - ], - [ - -73.450379, - 45.601155 - ], - [ - -73.450393, - 45.601201 - ], - [ - -73.450376, - 45.60125 - ], - [ - -73.450362, - 45.601293 - ], - [ - -73.450349, - 45.601366 - ], - [ - -73.450328, - 45.601396 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450247, - 45.601412 - ], - [ - -73.450159, - 45.601408 - ], - [ - -73.450117, - 45.6014 - ], - [ - -73.450076, - 45.601382 - ], - [ - -73.450018, - 45.601356 - ], - [ - -73.449945, - 45.60132 - ], - [ - -73.449881, - 45.6013 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.447907, - 45.599809 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.446914, - 45.599009 - ], - [ - -73.446713, - 45.59886 - ], - [ - -73.446259, - 45.598527 - ], - [ - -73.445387, - 45.597917 - ], - [ - -73.445261, - 45.597829 - ], - [ - -73.444803, - 45.597518 - ], - [ - -73.443574, - 45.596682 - ], - [ - -73.443394, - 45.596559 - ], - [ - -73.442992, - 45.59628 - ], - [ - -73.442852, - 45.596183 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.439914, - 45.593996 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438251, - 45.592772 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.436615, - 45.591542 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.436355, - 45.59135 - ], - [ - -73.43623, - 45.591247 - ], - [ - -73.435815, - 45.590941 - ], - [ - -73.435254, - 45.590517 - ], - [ - -73.435107, - 45.590414 - ], - [ - -73.435057, - 45.590373 - ], - [ - -73.435056, - 45.590372 - ], - [ - -73.435014, - 45.590337 - ], - [ - -73.434983, - 45.59031 - ], - [ - -73.434944, - 45.590279 - ], - [ - -73.434884, - 45.590234 - ], - [ - -73.434715, - 45.590103 - ], - [ - -73.4342, - 45.589657 - ], - [ - -73.4339, - 45.589374 - ], - [ - -73.433885, - 45.58936 - ], - [ - -73.433674, - 45.589158 - ], - [ - -73.433253, - 45.588702 - ], - [ - -73.432226, - 45.587579 - ], - [ - -73.432034, - 45.587385 - ], - [ - -73.43189, - 45.587245 - ], - [ - -73.431883, - 45.587238 - ], - [ - -73.431818, - 45.587179 - ], - [ - -73.431717, - 45.587092 - ], - [ - -73.431289, - 45.586718 - ], - [ - -73.430893, - 45.586393 - ], - [ - -73.430716, - 45.586245 - ], - [ - -73.430467, - 45.586051 - ], - [ - -73.430113, - 45.585767 - ], - [ - -73.430085, - 45.585745 - ], - [ - -73.429958, - 45.585646 - ], - [ - -73.429814, - 45.585537 - ], - [ - -73.42849, - 45.584517 - ], - [ - -73.426695, - 45.583133 - ], - [ - -73.426528, - 45.583004 - ], - [ - -73.426256, - 45.5828 - ], - [ - -73.425816, - 45.582464 - ], - [ - -73.425305, - 45.582074 - ], - [ - -73.425286, - 45.58206 - ], - [ - -73.425206, - 45.581999 - ], - [ - -73.424788, - 45.581676 - ], - [ - -73.424166, - 45.581195 - ], - [ - -73.424062, - 45.581115 - ], - [ - -73.423789, - 45.580905 - ], - [ - -73.423455, - 45.580651 - ], - [ - -73.423236, - 45.580486 - ], - [ - -73.423009, - 45.580315 - ], - [ - -73.422846, - 45.580189 - ], - [ - -73.422663, - 45.580049 - ], - [ - -73.422546, - 45.579959 - ], - [ - -73.42208, - 45.579603 - ], - [ - -73.421971, - 45.579519 - ], - [ - -73.421846, - 45.579423 - ], - [ - -73.421793, - 45.579382 - ], - [ - -73.421745, - 45.579346 - ], - [ - -73.4211, - 45.578841 - ], - [ - -73.421072, - 45.578819 - ], - [ - -73.420532, - 45.578396 - ], - [ - -73.420386, - 45.578284 - ], - [ - -73.420081, - 45.578041 - ], - [ - -73.420061, - 45.578025 - ], - [ - -73.41953, - 45.577608 - ], - [ - -73.419313, - 45.577437 - ], - [ - -73.419216, - 45.577362 - ], - [ - -73.419047, - 45.57723 - ], - [ - -73.419, - 45.577192 - ], - [ - -73.418953, - 45.577153 - ], - [ - -73.418667, - 45.576931 - ], - [ - -73.418642, - 45.576911 - ], - [ - -73.418497, - 45.576798 - ], - [ - -73.417067, - 45.575663 - ], - [ - -73.416156, - 45.574947 - ], - [ - -73.415824, - 45.574686 - ], - [ - -73.415714, - 45.5746 - ], - [ - -73.414791, - 45.57387 - ], - [ - -73.414647, - 45.573758 - ], - [ - -73.414077, - 45.573294 - ], - [ - -73.41407, - 45.573289 - ], - [ - -73.413911, - 45.573168 - ], - [ - -73.413779, - 45.573055 - ], - [ - -73.413719, - 45.573015 - ], - [ - -73.413615, - 45.572947 - ], - [ - -73.413498, - 45.572835 - ], - [ - -73.413315, - 45.572731 - ], - [ - -73.413116, - 45.572645 - ], - [ - -73.412923, - 45.572596 - ], - [ - -73.412759, - 45.572574 - ], - [ - -73.412619, - 45.572555 - ], - [ - -73.412388, - 45.572541 - ], - [ - -73.412156, - 45.572541 - ], - [ - -73.411544, - 45.572577 - ], - [ - -73.411304, - 45.572588 - ], - [ - -73.41125, - 45.57259 - ], - [ - -73.411126, - 45.572594 - ], - [ - -73.410903, - 45.572608 - ], - [ - -73.410714, - 45.572617 - ], - [ - -73.410503, - 45.57263 - ], - [ - -73.410213, - 45.572647 - ], - [ - -73.409062, - 45.572719 - ], - [ - -73.409057, - 45.572719 - ], - [ - -73.409052, - 45.572719 - ], - [ - -73.409047, - 45.572719 - ], - [ - -73.409041, - 45.57272 - ], - [ - -73.409036, - 45.57272 - ], - [ - -73.409031, - 45.57272 - ], - [ - -73.409026, - 45.57272 - ], - [ - -73.409021, - 45.57272 - ], - [ - -73.409016, - 45.572721 - ], - [ - -73.409011, - 45.572721 - ], - [ - -73.409006, - 45.572721 - ], - [ - -73.409, - 45.572722 - ], - [ - -73.408995, - 45.572722 - ], - [ - -73.40899, - 45.572722 - ], - [ - -73.408985, - 45.572722 - ], - [ - -73.40898, - 45.572723 - ], - [ - -73.408975, - 45.572723 - ], - [ - -73.40897, - 45.572723 - ], - [ - -73.408965, - 45.572724 - ], - [ - -73.40896, - 45.572724 - ], - [ - -73.408955, - 45.572725 - ], - [ - -73.408949, - 45.572725 - ], - [ - -73.408944, - 45.572725 - ], - [ - -73.408939, - 45.572726 - ], - [ - -73.408934, - 45.572726 - ], - [ - -73.408929, - 45.572727 - ], - [ - -73.408924, - 45.572727 - ], - [ - -73.408919, - 45.572728 - ], - [ - -73.408914, - 45.572728 - ], - [ - -73.408909, - 45.572729 - ], - [ - -73.408904, - 45.572729 - ], - [ - -73.408899, - 45.572729 - ], - [ - -73.408894, - 45.57273 - ], - [ - -73.408889, - 45.572731 - ], - [ - -73.408883, - 45.572731 - ], - [ - -73.408878, - 45.572732 - ], - [ - -73.408873, - 45.572732 - ], - [ - -73.408868, - 45.572733 - ], - [ - -73.408863, - 45.572733 - ], - [ - -73.408858, - 45.572734 - ], - [ - -73.408853, - 45.572734 - ], - [ - -73.408848, - 45.572735 - ], - [ - -73.408843, - 45.572736 - ], - [ - -73.408838, - 45.572736 - ], - [ - -73.408833, - 45.572737 - ], - [ - -73.408828, - 45.572737 - ], - [ - -73.408823, - 45.572738 - ], - [ - -73.408818, - 45.572739 - ], - [ - -73.408813, - 45.572739 - ], - [ - -73.408808, - 45.57274 - ], - [ - -73.408803, - 45.572741 - ], - [ - -73.408798, - 45.572742 - ], - [ - -73.408793, - 45.572742 - ], - [ - -73.408788, - 45.572743 - ], - [ - -73.408783, - 45.572744 - ], - [ - -73.408778, - 45.572744 - ], - [ - -73.408773, - 45.572745 - ], - [ - -73.408768, - 45.572746 - ], - [ - -73.408762, - 45.572747 - ], - [ - -73.408757, - 45.572747 - ], - [ - -73.408752, - 45.572748 - ], - [ - -73.408747, - 45.572749 - ], - [ - -73.408742, - 45.57275 - ], - [ - -73.408738, - 45.572751 - ], - [ - -73.408733, - 45.572752 - ], - [ - -73.408728, - 45.572752 - ], - [ - -73.408723, - 45.572753 - ], - [ - -73.408718, - 45.572754 - ], - [ - -73.408713, - 45.572755 - ], - [ - -73.408708, - 45.572756 - ], - [ - -73.408703, - 45.572757 - ], - [ - -73.408698, - 45.572758 - ], - [ - -73.408693, - 45.572759 - ], - [ - -73.408688, - 45.572759 - ], - [ - -73.408683, - 45.57276 - ], - [ - -73.408678, - 45.572761 - ], - [ - -73.408673, - 45.572762 - ], - [ - -73.408668, - 45.572763 - ], - [ - -73.408663, - 45.572764 - ], - [ - -73.408658, - 45.572765 - ], - [ - -73.408653, - 45.572766 - ], - [ - -73.408648, - 45.572767 - ], - [ - -73.408643, - 45.572768 - ], - [ - -73.408638, - 45.572769 - ], - [ - -73.408634, - 45.57277 - ], - [ - -73.408629, - 45.572771 - ], - [ - -73.408624, - 45.572772 - ], - [ - -73.408619, - 45.572773 - ], - [ - -73.408614, - 45.572774 - ], - [ - -73.408609, - 45.572775 - ], - [ - -73.408604, - 45.572777 - ], - [ - -73.408599, - 45.572778 - ], - [ - -73.408594, - 45.572779 - ], - [ - -73.40859, - 45.57278 - ], - [ - -73.408585, - 45.572781 - ], - [ - -73.40858, - 45.572782 - ], - [ - -73.408575, - 45.572783 - ], - [ - -73.40857, - 45.572784 - ], - [ - -73.408565, - 45.572786 - ], - [ - -73.40856, - 45.572787 - ], - [ - -73.408556, - 45.572788 - ], - [ - -73.408551, - 45.572789 - ], - [ - -73.408546, - 45.57279 - ], - [ - -73.408541, - 45.572792 - ], - [ - -73.408536, - 45.572793 - ], - [ - -73.408531, - 45.572794 - ], - [ - -73.408527, - 45.572795 - ], - [ - -73.408522, - 45.572797 - ], - [ - -73.408517, - 45.572798 - ], - [ - -73.408512, - 45.572799 - ], - [ - -73.408507, - 45.5728 - ], - [ - -73.408503, - 45.572802 - ], - [ - -73.408498, - 45.572803 - ], - [ - -73.408493, - 45.572804 - ], - [ - -73.408488, - 45.572806 - ], - [ - -73.408484, - 45.572807 - ], - [ - -73.408479, - 45.572808 - ], - [ - -73.408474, - 45.57281 - ], - [ - -73.408469, - 45.572811 - ], - [ - -73.408465, - 45.572812 - ], - [ - -73.40846, - 45.572814 - ], - [ - -73.408455, - 45.572815 - ], - [ - -73.40845, - 45.572817 - ], - [ - -73.408446, - 45.572818 - ], - [ - -73.408441, - 45.572819 - ], - [ - -73.408436, - 45.572821 - ], - [ - -73.408432, - 45.572822 - ], - [ - -73.408427, - 45.572824 - ], - [ - -73.408422, - 45.572825 - ], - [ - -73.408418, - 45.572827 - ], - [ - -73.408413, - 45.572828 - ], - [ - -73.408408, - 45.57283 - ], - [ - -73.408404, - 45.572831 - ], - [ - -73.408399, - 45.572833 - ], - [ - -73.408394, - 45.572834 - ], - [ - -73.40839, - 45.572836 - ], - [ - -73.408385, - 45.572837 - ], - [ - -73.40838, - 45.572839 - ], - [ - -73.408376, - 45.57284 - ], - [ - -73.408371, - 45.572842 - ], - [ - -73.408367, - 45.572843 - ], - [ - -73.408362, - 45.572845 - ], - [ - -73.408357, - 45.572847 - ], - [ - -73.408353, - 45.572848 - ], - [ - -73.408348, - 45.57285 - ], - [ - -73.408344, - 45.572851 - ], - [ - -73.408339, - 45.572853 - ], - [ - -73.408334, - 45.572855 - ], - [ - -73.40833, - 45.572856 - ], - [ - -73.408325, - 45.572858 - ], - [ - -73.408321, - 45.57286 - ], - [ - -73.408316, - 45.572861 - ], - [ - -73.408312, - 45.572863 - ], - [ - -73.408307, - 45.572865 - ], - [ - -73.408303, - 45.572867 - ], - [ - -73.408298, - 45.572868 - ], - [ - -73.408294, - 45.57287 - ], - [ - -73.408289, - 45.572872 - ], - [ - -73.408285, - 45.572874 - ], - [ - -73.40828, - 45.572875 - ], - [ - -73.408276, - 45.572877 - ], - [ - -73.408271, - 45.572879 - ], - [ - -73.408267, - 45.572881 - ], - [ - -73.408263, - 45.572883 - ], - [ - -73.408258, - 45.572884 - ], - [ - -73.408254, - 45.572886 - ], - [ - -73.408249, - 45.572888 - ], - [ - -73.408245, - 45.57289 - ], - [ - -73.408241, - 45.572892 - ], - [ - -73.408236, - 45.572894 - ], - [ - -73.408232, - 45.572895 - ], - [ - -73.408227, - 45.572897 - ], - [ - -73.408223, - 45.572899 - ], - [ - -73.408219, - 45.572901 - ], - [ - -73.408214, - 45.572903 - ], - [ - -73.40821, - 45.572905 - ], - [ - -73.408206, - 45.572907 - ], - [ - -73.408201, - 45.572909 - ], - [ - -73.408197, - 45.572911 - ], - [ - -73.408193, - 45.572913 - ], - [ - -73.408188, - 45.572915 - ], - [ - -73.408184, - 45.572917 - ], - [ - -73.40818, - 45.572919 - ], - [ - -73.408176, - 45.572921 - ], - [ - -73.408171, - 45.572923 - ], - [ - -73.408167, - 45.572925 - ], - [ - -73.408163, - 45.572927 - ], - [ - -73.408159, - 45.572929 - ], - [ - -73.408154, - 45.572931 - ], - [ - -73.40815, - 45.572933 - ], - [ - -73.408146, - 45.572935 - ], - [ - -73.408142, - 45.572937 - ], - [ - -73.408138, - 45.572939 - ], - [ - -73.408133, - 45.572941 - ], - [ - -73.408129, - 45.572943 - ], - [ - -73.408125, - 45.572945 - ], - [ - -73.408121, - 45.572947 - ], - [ - -73.408117, - 45.572949 - ], - [ - -73.408112, - 45.572951 - ], - [ - -73.408108, - 45.572953 - ], - [ - -73.408104, - 45.572955 - ], - [ - -73.4081, - 45.572958 - ], - [ - -73.408096, - 45.57296 - ], - [ - -73.408092, - 45.572962 - ], - [ - -73.408087, - 45.572964 - ], - [ - -73.408083, - 45.572966 - ], - [ - -73.408079, - 45.572968 - ], - [ - -73.408075, - 45.57297 - ], - [ - -73.408071, - 45.572972 - ], - [ - -73.408067, - 45.572975 - ], - [ - -73.408063, - 45.572977 - ], - [ - -73.408059, - 45.572979 - ], - [ - -73.408055, - 45.572981 - ], - [ - -73.408051, - 45.572983 - ], - [ - -73.408046, - 45.572985 - ], - [ - -73.408042, - 45.572988 - ], - [ - -73.408038, - 45.57299 - ], - [ - -73.408034, - 45.572992 - ], - [ - -73.40803, - 45.572994 - ], - [ - -73.408026, - 45.572996 - ], - [ - -73.408022, - 45.572999 - ], - [ - -73.408018, - 45.573001 - ], - [ - -73.408014, - 45.573003 - ], - [ - -73.40801, - 45.573005 - ], - [ - -73.408006, - 45.573008 - ], - [ - -73.408002, - 45.57301 - ], - [ - -73.407998, - 45.573012 - ], - [ - -73.407994, - 45.573014 - ], - [ - -73.40799, - 45.573017 - ], - [ - -73.407986, - 45.573019 - ], - [ - -73.407982, - 45.573021 - ], - [ - -73.407978, - 45.573024 - ], - [ - -73.407974, - 45.573026 - ], - [ - -73.40797, - 45.573028 - ], - [ - -73.407966, - 45.57303 - ], - [ - -73.407962, - 45.573033 - ], - [ - -73.407959, - 45.573035 - ], - [ - -73.407955, - 45.573037 - ], - [ - -73.407951, - 45.57304 - ], - [ - -73.407947, - 45.573042 - ], - [ - -73.407943, - 45.573044 - ], - [ - -73.407939, - 45.573047 - ], - [ - -73.407935, - 45.573049 - ], - [ - -73.407931, - 45.573052 - ], - [ - -73.407928, - 45.573054 - ], - [ - -73.407924, - 45.573056 - ], - [ - -73.40792, - 45.573059 - ], - [ - -73.407916, - 45.573061 - ], - [ - -73.407913, - 45.573064 - ], - [ - -73.407909, - 45.573066 - ], - [ - -73.407905, - 45.573069 - ], - [ - -73.407901, - 45.573071 - ], - [ - -73.407898, - 45.573074 - ], - [ - -73.407894, - 45.573076 - ], - [ - -73.40789, - 45.573079 - ], - [ - -73.407887, - 45.573081 - ], - [ - -73.407883, - 45.573084 - ], - [ - -73.40788, - 45.573086 - ], - [ - -73.407876, - 45.573089 - ], - [ - -73.407872, - 45.573091 - ], - [ - -73.407869, - 45.573094 - ], - [ - -73.407865, - 45.573097 - ], - [ - -73.407862, - 45.573099 - ], - [ - -73.407858, - 45.573102 - ], - [ - -73.407855, - 45.573105 - ], - [ - -73.407851, - 45.573107 - ], - [ - -73.407848, - 45.57311 - ], - [ - -73.407844, - 45.573112 - ], - [ - -73.407841, - 45.573115 - ], - [ - -73.407837, - 45.573118 - ], - [ - -73.407834, - 45.573121 - ], - [ - -73.407831, - 45.573123 - ], - [ - -73.407827, - 45.573126 - ], - [ - -73.407824, - 45.573129 - ], - [ - -73.407821, - 45.573131 - ], - [ - -73.407817, - 45.573134 - ], - [ - -73.407812, - 45.57314 - ], - [ - -73.407546, - 45.573392 - ], - [ - -73.406195, - 45.574595 - ], - [ - -73.40583, - 45.574917 - ], - [ - -73.40547, - 45.575248 - ], - [ - -73.404873, - 45.575797 - ], - [ - -73.404869, - 45.575804 - ], - [ - -73.404806, - 45.575896 - ], - [ - -73.404582, - 45.576139 - ], - [ - -73.40454, - 45.576175 - ], - [ - -73.403621, - 45.577033 - ], - [ - -73.403207, - 45.577445 - ], - [ - -73.403555, - 45.577627 - ], - [ - -73.403788, - 45.577749 - ], - [ - -73.404045, - 45.577927 - ], - [ - -73.404194, - 45.578042 - ], - [ - -73.404428, - 45.578224 - ], - [ - -73.40517, - 45.578813 - ], - [ - -73.405272, - 45.578897 - ], - [ - -73.405449, - 45.579042 - ], - [ - -73.405472, - 45.579062 - ], - [ - -73.4057, - 45.579264 - ], - [ - -73.405562, - 45.579347 - ], - [ - -73.405449, - 45.579418 - ], - [ - -73.4054, - 45.579445 - ], - [ - -73.40511, - 45.579623 - ], - [ - -73.404903, - 45.57975 - ], - [ - -73.404732, - 45.579874 - ], - [ - -73.403738, - 45.580736 - ], - [ - -73.403557, - 45.580895 - ], - [ - -73.402997, - 45.581387 - ], - [ - -73.402759, - 45.581597 - ], - [ - -73.402436, - 45.58188 - ], - [ - -73.401613, - 45.582603 - ] - ] - }, - "id": 236, - "properties": { - "id": "c3a3910e-27d7-43ca-be04-9bc5a769d118", - "data": { - "gtfs": { - "shape_id": "180_2_R" - }, - "segments": [ - { - "distanceMeters": 10799, - "travelTimeSeconds": 577 - }, - { - "distanceMeters": 414, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 439, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 79, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 334, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 908, - "travelTimeSeconds": 206 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 56 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17512, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 11423.752148378519, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 10.42, - "travelTimeWithoutDwellTimesSeconds": 1680, - "operatingTimeWithLayoverTimeSeconds": 1860, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1680, - "operatingSpeedWithLayoverMetersPerSecond": 9.41, - "averageSpeedWithoutDwellTimesMetersPerSecond": 10.42 - }, - "mode": "bus", - "name": "des Sureaux", - "color": "#A32638", - "nodes": [ - "4c755ece-2475-4915-941e-37859f0f391f", - "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", - "bbe875bc-cb85-4a61-923d-53ee4746a213", - "96c08dfd-d2e7-4584-a6b3-36c3a2e1abcc", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "4c25cc73-ac26-4e31-9812-bc4ad7f583b5", - "49262d07-72b2-466f-bf49-88656466e4a4", - "0872c388-8faf-4852-b4ce-cf3f6312e0ef", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "ebf7fd24-b756-481f-9a88-33b6362fcbda", - "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", - "3613b472-6055-4b55-9c89-01a451d82804", - "4cd6eb13-aeec-4716-a3d3-8e1a38389723", - "9ad04c6c-abc1-49fe-8f36-db6146dd5c5c", - "3dedf179-3478-4b4d-b706-36e0a8981094", - "91fae16f-d2f7-4af8-a4e7-3156976c0aae", - "cc142acd-cd00-4b27-8c30-0fb03b101fb8", - "38f108ec-7ce2-4f60-84c9-81ee447773a8", - "ed651d5d-88ba-4ece-bfe1-02e5832cfee7", - "88dc439b-1c69-4b99-b3d0-d19592029cc1", - "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", - "c6549833-3800-4d1f-a789-747fc95c595a", - "d3a6dc19-15b0-45f0-a45a-d0eca5d46fd7", - "7b448eb1-37a4-4d74-be5a-f8938cae8304", - "1a872bc7-948e-475a-8527-ec3c2b61fd79", - "44406260-256d-49c7-a91f-d8d2be15f526", - "758aaf15-550c-4ca9-b023-6270ea96c95b" - ], - "stops": [], - "line_id": "2c29e5f9-c7ee-48c8-b580-d100e79bb119", - "segments": [ - 0, - 132, - 181, - 218, - 224, - 227, - 230, - 233, - 239, - 246, - 249, - 257, - 264, - 270, - 278, - 282, - 283, - 287, - 291, - 297, - 301, - 313, - 322, - 327, - 631, - 640, - 645, - 654 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 236, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.52252, - 45.524045 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.503549, - 45.548419 - ], - [ - -73.502986, - 45.54904 - ], - [ - -73.502097, - 45.550079 - ], - [ - -73.501025, - 45.551361 - ], - [ - -73.500319, - 45.55223 - ], - [ - -73.497146, - 45.556054 - ], - [ - -73.496787, - 45.55649 - ], - [ - -73.495905, - 45.557543 - ], - [ - -73.495369, - 45.558173 - ], - [ - -73.494314, - 45.559446 - ], - [ - -73.493461, - 45.560499 - ], - [ - -73.492975, - 45.561151 - ], - [ - -73.492659, - 45.561597 - ], - [ - -73.492068, - 45.562474 - ], - [ - -73.49148, - 45.563383 - ], - [ - -73.490434, - 45.564962 - ], - [ - -73.489967, - 45.565619 - ], - [ - -73.489477, - 45.566267 - ], - [ - -73.488962, - 45.566906 - ], - [ - -73.48825, - 45.567747 - ], - [ - -73.487877, - 45.568161 - ], - [ - -73.487301, - 45.568777 - ], - [ - -73.486712, - 45.56938 - ], - [ - -73.486308, - 45.569771 - ], - [ - -73.485474, - 45.570545 - ], - [ - -73.48461, - 45.571301 - ], - [ - -73.483654, - 45.572115 - ], - [ - -73.482314, - 45.573163 - ], - [ - -73.481698, - 45.573689 - ], - [ - -73.481072, - 45.574229 - ], - [ - -73.480537, - 45.574683 - ], - [ - -73.479977, - 45.575165 - ], - [ - -73.479393, - 45.575664 - ], - [ - -73.478728, - 45.576231 - ], - [ - -73.478262, - 45.576631 - ], - [ - -73.477773, - 45.577049 - ], - [ - -73.477468, - 45.577288 - ], - [ - -73.477262, - 45.577441 - ], - [ - -73.477012, - 45.577607 - ], - [ - -73.476816, - 45.577738 - ], - [ - -73.476627, - 45.577855 - ], - [ - -73.476464, - 45.577936 - ], - [ - -73.476265, - 45.578017 - ], - [ - -73.476121, - 45.578061 - ], - [ - -73.476088, - 45.578066 - ], - [ - -73.475917, - 45.578093 - ], - [ - -73.475766, - 45.578102 - ], - [ - -73.475542, - 45.578084 - ], - [ - -73.475331, - 45.578034 - ], - [ - -73.475218, - 45.578007 - ], - [ - -73.473875, - 45.577593 - ], - [ - -73.472663, - 45.57721 - ], - [ - -73.47247, - 45.577156 - ], - [ - -73.472267, - 45.577116 - ], - [ - -73.472123, - 45.577102 - ], - [ - -73.471964, - 45.577102 - ], - [ - -73.471617, - 45.577132 - ], - [ - -73.471062, - 45.57721 - ], - [ - -73.470797, - 45.577215 - ], - [ - -73.470253, - 45.577185 - ], - [ - -73.470227, - 45.577179 - ], - [ - -73.470082, - 45.577148 - ], - [ - -73.469737, - 45.577073 - ], - [ - -73.469494, - 45.57702 - ], - [ - -73.468711, - 45.57685 - ], - [ - -73.465956, - 45.57631 - ], - [ - -73.462443, - 45.575565 - ], - [ - -73.457218, - 45.5744 - ], - [ - -73.456588, - 45.574263 - ], - [ - -73.454467, - 45.573722 - ], - [ - -73.453947, - 45.573587 - ], - [ - -73.453448, - 45.573447 - ], - [ - -73.452981, - 45.573299 - ], - [ - -73.452764, - 45.573218 - ], - [ - -73.452558, - 45.573128 - ], - [ - -73.452363, - 45.573028 - ], - [ - -73.452177, - 45.572916 - ], - [ - -73.452006, - 45.572794 - ], - [ - -73.45185, - 45.572659 - ], - [ - -73.451709, - 45.572515 - ], - [ - -73.451584, - 45.572362 - ], - [ - -73.451481, - 45.5722 - ], - [ - -73.451391, - 45.572034 - ], - [ - -73.451086, - 45.571422 - ], - [ - -73.451003, - 45.571291 - ], - [ - -73.450904, - 45.571179 - ], - [ - -73.450791, - 45.571075 - ], - [ - -73.450667, - 45.570994 - ], - [ - -73.450535, - 45.570922 - ], - [ - -73.450463, - 45.570891 - ], - [ - -73.450402, - 45.570864 - ], - [ - -73.449347, - 45.570476 - ], - [ - -73.449264, - 45.570454 - ], - [ - -73.449093, - 45.570413 - ], - [ - -73.449089, - 45.570422 - ], - [ - -73.44907, - 45.570467 - ], - [ - -73.449049, - 45.570517 - ], - [ - -73.448873, - 45.570917 - ], - [ - -73.448823, - 45.571034 - ], - [ - -73.448775, - 45.571153 - ], - [ - -73.448772, - 45.571159 - ], - [ - -73.44818, - 45.572625 - ], - [ - -73.447654, - 45.573778 - ], - [ - -73.447519, - 45.574084 - ], - [ - -73.447518, - 45.574088 - ], - [ - -73.447455, - 45.574133 - ], - [ - -73.447308, - 45.574407 - ], - [ - -73.447267, - 45.574466 - ], - [ - -73.447241, - 45.574497 - ], - [ - -73.447197, - 45.574529 - ], - [ - -73.447149, - 45.574547 - ], - [ - -73.447112, - 45.574556 - ], - [ - -73.447049, - 45.574565 - ], - [ - -73.446965, - 45.574569 - ], - [ - -73.446884, - 45.574565 - ], - [ - -73.446792, - 45.574547 - ], - [ - -73.446652, - 45.574511 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442399, - 45.572504 - ], - [ - -73.442327, - 45.572407 - ], - [ - -73.442172, - 45.572214 - ], - [ - -73.442103, - 45.572145 - ], - [ - -73.442041, - 45.572083 - ], - [ - -73.441925, - 45.571984 - ], - [ - -73.441785, - 45.571885 - ], - [ - -73.44164, - 45.571795 - ], - [ - -73.441501, - 45.571723 - ], - [ - -73.4413, - 45.571651 - ], - [ - -73.441159, - 45.571606 - ], - [ - -73.440756, - 45.571507 - ], - [ - -73.440331, - 45.571417 - ], - [ - -73.43982, - 45.571308 - ], - [ - -73.439233, - 45.571191 - ], - [ - -73.43873, - 45.571092 - ], - [ - -73.438292, - 45.571002 - ], - [ - -73.438071, - 45.571298 - ], - [ - -73.437915, - 45.571494 - ], - [ - -73.43791, - 45.571502 - ], - [ - -73.437639, - 45.571843 - ], - [ - -73.437365, - 45.572207 - ], - [ - -73.437277, - 45.572369 - ], - [ - -73.437141, - 45.572652 - ], - [ - -73.43714, - 45.572654 - ], - [ - -73.437002, - 45.572954 - ], - [ - -73.433673, - 45.572249 - ], - [ - -73.432763, - 45.572056 - ], - [ - -73.431535, - 45.571796 - ], - [ - -73.430609, - 45.5716 - ], - [ - -73.430291, - 45.571546 - ], - [ - -73.42993, - 45.571492 - ], - [ - -73.429449, - 45.571428 - ], - [ - -73.42894, - 45.571383 - ], - [ - -73.428617, - 45.57136 - ], - [ - -73.428503, - 45.571355 - ], - [ - -73.428324, - 45.571347 - ], - [ - -73.428023, - 45.571342 - ], - [ - -73.427626, - 45.571342 - ], - [ - -73.42732, - 45.571342 - ], - [ - -73.426592, - 45.571376 - ], - [ - -73.426472, - 45.571382 - ], - [ - -73.426067, - 45.571399 - ], - [ - -73.425864, - 45.571408 - ], - [ - -73.425716, - 45.571377 - ], - [ - -73.425614, - 45.571336 - ], - [ - -73.424894, - 45.570778 - ], - [ - -73.424803, - 45.570692 - ], - [ - -73.424729, - 45.57062 - ], - [ - -73.424693, - 45.570539 - ], - [ - -73.424653, - 45.570373 - ], - [ - -73.424628, - 45.570152 - ], - [ - -73.424566, - 45.569546 - ], - [ - -73.424562, - 45.569513 - ], - [ - -73.424538, - 45.569347 - ], - [ - -73.422873, - 45.56944 - ], - [ - -73.422329, - 45.56947 - ], - [ - -73.421741, - 45.569502 - ], - [ - -73.420778, - 45.569551 - ], - [ - -73.419829, - 45.569604 - ], - [ - -73.418953, - 45.569669 - ], - [ - -73.417529, - 45.569774 - ], - [ - -73.416713, - 45.569818 - ], - [ - -73.416564, - 45.56983 - ], - [ - -73.416545, - 45.569832 - ], - [ - -73.41628, - 45.569881 - ], - [ - -73.416182, - 45.569915 - ], - [ - -73.416084, - 45.569948 - ], - [ - -73.415904, - 45.570025 - ], - [ - -73.415778, - 45.570101 - ], - [ - -73.415627, - 45.57024 - ], - [ - -73.415527, - 45.570353 - ], - [ - -73.415436, - 45.570537 - ], - [ - -73.41537, - 45.570699 - ], - [ - -73.415227, - 45.571104 - ], - [ - -73.414975, - 45.571807 - ], - [ - -73.414932, - 45.571927 - ], - [ - -73.414726, - 45.572503 - ], - [ - -73.414683, - 45.572615 - ], - [ - -73.414619, - 45.572695 - ], - [ - -73.414603, - 45.572714 - ], - [ - -73.414438, - 45.57284 - ], - [ - -73.414244, - 45.572963 - ], - [ - -73.413911, - 45.573168 - ], - [ - -73.414077, - 45.573294 - ], - [ - -73.414647, - 45.573758 - ], - [ - -73.414791, - 45.57387 - ], - [ - -73.415714, - 45.5746 - ], - [ - -73.415986, - 45.57442 - ], - [ - -73.416162, - 45.574303 - ], - [ - -73.41659, - 45.574029 - ], - [ - -73.416949, - 45.573818 - ], - [ - -73.417166, - 45.573686 - ] - ] - }, - "id": 237, - "properties": { - "id": "f54b8833-83d4-431e-ac87-a8376588de98", - "data": { - "gtfs": { - "shape_id": "185_1_R" - }, - "segments": [ - { - "distanceMeters": 9824, - "travelTimeSeconds": 575 - }, - { - "distanceMeters": 857, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 439, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 195, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 20 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13894, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 9879.2506362516, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 12.86, - "travelTimeWithoutDwellTimesSeconds": 1080, - "operatingTimeWithLayoverTimeSeconds": 1260, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1080, - "operatingSpeedWithLayoverMetersPerSecond": 11.03, - "averageSpeedWithoutDwellTimesMetersPerSecond": 12.86 - }, - "mode": "bus", - "name": "Ampère", - "color": "#A32638", - "nodes": [ - "4c755ece-2475-4915-941e-37859f0f391f", - "6672cb43-3241-42d7-b5c0-fdaed10338b9", - "c75630d1-5494-4596-bc82-707a62fa5988", - "c9b7f8d6-62a3-444a-bbd0-591def556854", - "7f184ebf-41da-496f-9ed8-536b6fff9c3f", - "64d79080-f253-4cae-bbde-03e1a26a3f9e", - "26830ba4-9f15-4574-ae58-812d3a6fc6d5", - "ab35419e-5bd1-4da1-bfdf-b33c65916d63", - "08debed2-a767-4e18-9342-678b9ff106e2", - "9cf65cb9-0319-47f1-8406-ca3211a7ff12", - "8b4e9db5-5481-4624-b5ab-e40bba2a2897", - "834b9411-0d78-496d-8fb2-7131e0c1ec41", - "fb50e5b2-5326-4cb9-9888-65bcbf9b9592", - "ab419e3e-c877-4589-88de-b6df60ac6dd1", - "ee85cfb1-201c-47a0-9d37-a01d18d76e92", - "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", - "80eb2b2c-3d80-431d-851d-8665038b93b7" - ], - "stops": [], - "line_id": "7ee07035-6c9c-4fe6-8fcc-24a0c9300b39", - "segments": [ - 0, - 140, - 171, - 190, - 195, - 197, - 199, - 206, - 213, - 223, - 227, - 231, - 234, - 246, - 250, - 259 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 237, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.41744, - 45.573518 - ], - [ - -73.417361, - 45.573566 - ], - [ - -73.416949, - 45.573818 - ], - [ - -73.41659, - 45.574029 - ], - [ - -73.416162, - 45.574303 - ], - [ - -73.415841, - 45.574516 - ], - [ - -73.415714, - 45.5746 - ], - [ - -73.414791, - 45.57387 - ], - [ - -73.414647, - 45.573758 - ], - [ - -73.414077, - 45.573294 - ], - [ - -73.414068, - 45.573287 - ], - [ - -73.413911, - 45.573168 - ], - [ - -73.414244, - 45.572963 - ], - [ - -73.414438, - 45.57284 - ], - [ - -73.414603, - 45.572714 - ], - [ - -73.414683, - 45.572615 - ], - [ - -73.414726, - 45.572503 - ], - [ - -73.414932, - 45.571927 - ], - [ - -73.414964, - 45.571837 - ], - [ - -73.415227, - 45.571104 - ], - [ - -73.41537, - 45.570699 - ], - [ - -73.415436, - 45.570537 - ], - [ - -73.415527, - 45.570353 - ], - [ - -73.415627, - 45.57024 - ], - [ - -73.415778, - 45.570101 - ], - [ - -73.415904, - 45.570025 - ], - [ - -73.415924, - 45.570016 - ], - [ - -73.416084, - 45.569948 - ], - [ - -73.416182, - 45.569915 - ], - [ - -73.41628, - 45.569881 - ], - [ - -73.416545, - 45.569832 - ], - [ - -73.416713, - 45.569818 - ], - [ - -73.417529, - 45.569774 - ], - [ - -73.418984, - 45.569667 - ], - [ - -73.419829, - 45.569604 - ], - [ - -73.420778, - 45.569551 - ], - [ - -73.421741, - 45.569502 - ], - [ - -73.422411, - 45.569465 - ], - [ - -73.422873, - 45.56944 - ], - [ - -73.424356, - 45.569357 - ], - [ - -73.424538, - 45.569347 - ], - [ - -73.424562, - 45.569513 - ], - [ - -73.424628, - 45.570152 - ], - [ - -73.424653, - 45.570373 - ], - [ - -73.424693, - 45.570539 - ], - [ - -73.424729, - 45.57062 - ], - [ - -73.424803, - 45.570692 - ], - [ - -73.424894, - 45.570778 - ], - [ - -73.425584, - 45.571312 - ], - [ - -73.425614, - 45.571336 - ], - [ - -73.425716, - 45.571377 - ], - [ - -73.425864, - 45.571408 - ], - [ - -73.426472, - 45.571382 - ], - [ - -73.426592, - 45.571376 - ], - [ - -73.42732, - 45.571342 - ], - [ - -73.427626, - 45.571342 - ], - [ - -73.428023, - 45.571342 - ], - [ - -73.428324, - 45.571347 - ], - [ - -73.428379, - 45.571349 - ], - [ - -73.428617, - 45.57136 - ], - [ - -73.42894, - 45.571383 - ], - [ - -73.429449, - 45.571428 - ], - [ - -73.42993, - 45.571492 - ], - [ - -73.430291, - 45.571546 - ], - [ - -73.430609, - 45.5716 - ], - [ - -73.431318, - 45.57175 - ], - [ - -73.432763, - 45.572056 - ], - [ - -73.434033, - 45.572325 - ], - [ - -73.435493, - 45.572634 - ], - [ - -73.436834, - 45.572918 - ], - [ - -73.437002, - 45.572954 - ], - [ - -73.437141, - 45.572652 - ], - [ - -73.437277, - 45.572369 - ], - [ - -73.437365, - 45.572207 - ], - [ - -73.437639, - 45.571843 - ], - [ - -73.437915, - 45.571494 - ], - [ - -73.438071, - 45.571298 - ], - [ - -73.438115, - 45.571239 - ], - [ - -73.438292, - 45.571002 - ], - [ - -73.43873, - 45.571092 - ], - [ - -73.439233, - 45.571191 - ], - [ - -73.43982, - 45.571308 - ], - [ - -73.440331, - 45.571417 - ], - [ - -73.440756, - 45.571507 - ], - [ - -73.441159, - 45.571606 - ], - [ - -73.4413, - 45.571651 - ], - [ - -73.441501, - 45.571723 - ], - [ - -73.44164, - 45.571795 - ], - [ - -73.441785, - 45.571885 - ], - [ - -73.441925, - 45.571984 - ], - [ - -73.442041, - 45.572083 - ], - [ - -73.442103, - 45.572145 - ], - [ - -73.442172, - 45.572214 - ], - [ - -73.442327, - 45.572407 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442767, - 45.572989 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443481, - 45.573532 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.446746, - 45.574587 - ], - [ - -73.447238, - 45.574749 - ], - [ - -73.447388, - 45.574789 - ], - [ - -73.447436, - 45.574664 - ], - [ - -73.447747, - 45.574246 - ], - [ - -73.447911, - 45.574048 - ], - [ - -73.448003, - 45.573949 - ], - [ - -73.448105, - 45.573859 - ], - [ - -73.448217, - 45.573769 - ], - [ - -73.448342, - 45.573688 - ], - [ - -73.448424, - 45.573645 - ], - [ - -73.448479, - 45.573616 - ], - [ - -73.448612, - 45.573562 - ], - [ - -73.448944, - 45.573459 - ], - [ - -73.449123, - 45.573428 - ], - [ - -73.449305, - 45.573405 - ], - [ - -73.4495, - 45.573396 - ], - [ - -73.449708, - 45.573401 - ], - [ - -73.450131, - 45.573437 - ], - [ - -73.45057, - 45.573487 - ], - [ - -73.452027, - 45.573685 - ], - [ - -73.45367, - 45.573951 - ], - [ - -73.455009, - 45.57424 - ], - [ - -73.456205, - 45.574501 - ], - [ - -73.457846, - 45.574844 - ], - [ - -73.459196, - 45.575101 - ], - [ - -73.460081, - 45.575263 - ], - [ - -73.460408, - 45.575326 - ], - [ - -73.462346, - 45.575705 - ], - [ - -73.463166, - 45.575871 - ], - [ - -73.466047, - 45.576484 - ], - [ - -73.467519, - 45.576809 - ], - [ - -73.469081, - 45.577137 - ], - [ - -73.469847, - 45.5773 - ], - [ - -73.469918, - 45.577331 - ], - [ - -73.47001, - 45.577371 - ], - [ - -73.470161, - 45.577438 - ], - [ - -73.470275, - 45.577491 - ], - [ - -73.470332, - 45.577516 - ], - [ - -73.470459, - 45.577603 - ], - [ - -73.470521, - 45.577644 - ], - [ - -73.470639, - 45.577765 - ], - [ - -73.470676, - 45.577802 - ], - [ - -73.470716, - 45.577878 - ], - [ - -73.470734, - 45.577912 - ], - [ - -73.470772, - 45.577984 - ], - [ - -73.470794, - 45.578178 - ], - [ - -73.470718, - 45.578574 - ], - [ - -73.470669, - 45.578834 - ], - [ - -73.470643, - 45.578987 - ], - [ - -73.470662, - 45.579117 - ], - [ - -73.47067, - 45.579175 - ], - [ - -73.470704, - 45.579255 - ], - [ - -73.470736, - 45.579331 - ], - [ - -73.470747, - 45.579357 - ], - [ - -73.470766, - 45.579382 - ], - [ - -73.470862, - 45.579503 - ], - [ - -73.470889, - 45.579537 - ], - [ - -73.470991, - 45.579617 - ], - [ - -73.471054, - 45.579666 - ], - [ - -73.471293, - 45.579788 - ], - [ - -73.472192, - 45.580001 - ], - [ - -73.472611, - 45.580062 - ], - [ - -73.47368, - 45.580182 - ], - [ - -73.473945, - 45.580181 - ], - [ - -73.474181, - 45.580155 - ], - [ - -73.474454, - 45.580098 - ], - [ - -73.474706, - 45.580011 - ], - [ - -73.474955, - 45.579888 - ], - [ - -73.47519, - 45.579723 - ], - [ - -73.47535, - 45.579574 - ], - [ - -73.475643, - 45.579294 - ], - [ - -73.476124, - 45.578808 - ], - [ - -73.476311, - 45.578613 - ], - [ - -73.476531, - 45.578426 - ], - [ - -73.477316, - 45.577756 - ], - [ - -73.478746, - 45.576546 - ], - [ - -73.485291, - 45.570941 - ], - [ - -73.485924, - 45.570374 - ], - [ - -73.486543, - 45.569794 - ], - [ - -73.487144, - 45.5692 - ], - [ - -73.487725, - 45.568597 - ], - [ - -73.488283, - 45.567985 - ], - [ - -73.489005, - 45.567148 - ], - [ - -73.489524, - 45.56651 - ], - [ - -73.490025, - 45.565857 - ], - [ - -73.490348, - 45.565416 - ], - [ - -73.490811, - 45.564746 - ], - [ - -73.492757, - 45.561799 - ], - [ - -73.493231, - 45.561129 - ], - [ - -73.493558, - 45.560688 - ], - [ - -73.493892, - 45.560256 - ], - [ - -73.494237, - 45.559829 - ], - [ - -73.499922, - 45.552981 - ], - [ - -73.501151, - 45.551492 - ], - [ - -73.501844, - 45.550646 - ], - [ - -73.502872, - 45.549445 - ], - [ - -73.503558, - 45.548684 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523837, - 45.530517 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521985, - 45.524134 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.52252, - 45.524045 - ] - ] - }, - "id": 238, - "properties": { - "id": "e6b677a7-f2ea-467f-82c8-474b67612f01", - "data": { - "gtfs": { - "shape_id": "185_2_A" - }, - "segments": [ - { - "distanceMeters": 167, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 467, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 83, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 11562, - "travelTimeSeconds": 1069 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 14948, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 9879.2506362516, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 10.38, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 9.23, - "averageSpeedWithoutDwellTimesMetersPerSecond": 10.38 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "80eb2b2c-3d80-431d-851d-8665038b93b7", - "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", - "c6549833-3800-4d1f-a789-747fc95c595a", - "ab419e3e-c877-4589-88de-b6df60ac6dd1", - "fb50e5b2-5326-4cb9-9888-65bcbf9b9592", - "834b9411-0d78-496d-8fb2-7131e0c1ec41", - "8b4e9db5-5481-4624-b5ab-e40bba2a2897", - "9cf65cb9-0319-47f1-8406-ca3211a7ff12", - "08debed2-a767-4e18-9342-678b9ff106e2", - "ab35419e-5bd1-4da1-bfdf-b33c65916d63", - "26830ba4-9f15-4574-ae58-812d3a6fc6d5", - "64d79080-f253-4cae-bbde-03e1a26a3f9e", - "7f184ebf-41da-496f-9ed8-536b6fff9c3f", - "7cc0727e-e69b-4711-8bea-f955d406f0ed", - "36054208-e9c6-4e5a-99d2-bfca0679b681", - "f983c876-3e85-4820-8de6-e993255f2434", - "4c755ece-2475-4915-941e-37859f0f391f" - ], - "stops": [], - "line_id": "7ee07035-6c9c-4fe6-8fcc-24a0c9300b39", - "segments": [ - 0, - 5, - 10, - 18, - 26, - 33, - 37, - 39, - 48, - 58, - 65, - 67, - 69, - 77, - 96, - 101 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 238, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.343603, - 45.514366 - ], - [ - -73.343662, - 45.514928 - ], - [ - -73.343818, - 45.516263 - ], - [ - -73.343839, - 45.51644 - ], - [ - -73.343864, - 45.516935 - ], - [ - -73.343868, - 45.517007 - ], - [ - -73.34388, - 45.517106 - ], - [ - -73.343907, - 45.517382 - ], - [ - -73.34397, - 45.51801 - ], - [ - -73.344007, - 45.518377 - ], - [ - -73.344019, - 45.518505 - ], - [ - -73.344103, - 45.519059 - ], - [ - -73.344134, - 45.519324 - ], - [ - -73.34415, - 45.519419 - ], - [ - -73.344151, - 45.519422 - ], - [ - -73.344217, - 45.520058 - ], - [ - -73.344223, - 45.520328 - ], - [ - -73.344186, - 45.520584 - ], - [ - -73.344126, - 45.520715 - ], - [ - -73.344046, - 45.520881 - ], - [ - -73.343898, - 45.52107 - ], - [ - -73.343841, - 45.521124 - ], - [ - -73.343794, - 45.521169 - ], - [ - -73.343671, - 45.521281 - ], - [ - -73.343545, - 45.521362 - ], - [ - -73.343253, - 45.521558 - ], - [ - -73.343232, - 45.521573 - ], - [ - -73.34316, - 45.521627 - ], - [ - -73.342373, - 45.522165 - ], - [ - -73.341614, - 45.522669 - ], - [ - -73.341528, - 45.522727 - ], - [ - -73.340632, - 45.523339 - ], - [ - -73.340352, - 45.52353 - ], - [ - -73.340272, - 45.523584 - ], - [ - -73.340102, - 45.523754 - ], - [ - -73.340043, - 45.523791 - ], - [ - -73.339575, - 45.524088 - ], - [ - -73.338727, - 45.524626 - ], - [ - -73.338541, - 45.524735 - ], - [ - -73.338368, - 45.524837 - ], - [ - -73.337669, - 45.525344 - ], - [ - -73.337228, - 45.52569 - ], - [ - -73.336573, - 45.52618 - ], - [ - -73.336359, - 45.526352 - ], - [ - -73.336249, - 45.52644 - ], - [ - -73.335456, - 45.527046 - ], - [ - -73.334776, - 45.527545 - ], - [ - -73.334752, - 45.52756 - ], - [ - -73.334622, - 45.527643 - ], - [ - -73.334545, - 45.527688 - ], - [ - -73.333788, - 45.528191 - ], - [ - -73.333439, - 45.528436 - ], - [ - -73.333275, - 45.52855 - ], - [ - -73.333272, - 45.528553 - ], - [ - -73.333063, - 45.528692 - ], - [ - -73.332637, - 45.528977 - ], - [ - -73.331967, - 45.529457 - ], - [ - -73.331877, - 45.529511 - ], - [ - -73.331399, - 45.529866 - ], - [ - -73.331117, - 45.530076 - ], - [ - -73.330825, - 45.530292 - ], - [ - -73.330761, - 45.530256 - ], - [ - -73.330009, - 45.529693 - ], - [ - -73.328691, - 45.528715 - ], - [ - -73.328279, - 45.528411 - ], - [ - -73.328159, - 45.528322 - ], - [ - -73.327746, - 45.528029 - ], - [ - -73.326635, - 45.527209 - ], - [ - -73.326501, - 45.527107 - ], - [ - -73.325817, - 45.526587 - ], - [ - -73.325411, - 45.526298 - ], - [ - -73.324596, - 45.525593 - ], - [ - -73.324515, - 45.525523 - ], - [ - -73.324477, - 45.525478 - ], - [ - -73.323443, - 45.524603 - ], - [ - -73.322938, - 45.524178 - ], - [ - -73.322064, - 45.52344 - ], - [ - -73.321325, - 45.522814 - ], - [ - -73.321102, - 45.522621 - ], - [ - -73.32099, - 45.522525 - ], - [ - -73.319781, - 45.521516 - ], - [ - -73.319139, - 45.520975 - ], - [ - -73.318732, - 45.520632 - ], - [ - -73.318552, - 45.520474 - ], - [ - -73.318461, - 45.520393 - ], - [ - -73.318456, - 45.520312 - ], - [ - -73.318426, - 45.520276 - ], - [ - -73.318299, - 45.520113 - ], - [ - -73.318178, - 45.51995 - ], - [ - -73.317965, - 45.519666 - ], - [ - -73.317953, - 45.519648 - ], - [ - -73.317869, - 45.519519 - ], - [ - -73.317741, - 45.519325 - ], - [ - -73.317582, - 45.519001 - ], - [ - -73.317525, - 45.518761 - ], - [ - -73.31752, - 45.518638 - ], - [ - -73.317513, - 45.518441 - ], - [ - -73.317522, - 45.518134 - ], - [ - -73.317532, - 45.517797 - ], - [ - -73.317536, - 45.517692 - ], - [ - -73.317549, - 45.517361 - ], - [ - -73.317571, - 45.516825 - ], - [ - -73.317518, - 45.516504 - ], - [ - -73.317555, - 45.515401 - ], - [ - -73.317556, - 45.515379 - ], - [ - -73.317556, - 45.51535 - ], - [ - -73.317557, - 45.515284 - ], - [ - -73.317558, - 45.515133 - ], - [ - -73.317711, - 45.515131 - ], - [ - -73.31781, - 45.515137 - ], - [ - -73.317862, - 45.51514 - ], - [ - -73.317874, - 45.51514 - ], - [ - -73.317955, - 45.515142 - ], - [ - -73.31803, - 45.515143 - ], - [ - -73.318089, - 45.515154 - ], - [ - -73.31812, - 45.515161 - ], - [ - -73.31825, - 45.515194 - ], - [ - -73.318377, - 45.515215 - ], - [ - -73.318466, - 45.515215 - ], - [ - -73.318584, - 45.515209 - ], - [ - -73.318668, - 45.515185 - ], - [ - -73.318888, - 45.515122 - ], - [ - -73.319039, - 45.515086 - ], - [ - -73.319183, - 45.515063 - ], - [ - -73.319504, - 45.515014 - ], - [ - -73.319813, - 45.514987 - ], - [ - -73.320068, - 45.51497 - ], - [ - -73.320287, - 45.514956 - ], - [ - -73.320491, - 45.514943 - ], - [ - -73.322784, - 45.514785 - ], - [ - -73.323576, - 45.514728 - ], - [ - -73.32364, - 45.514723 - ], - [ - -73.323824, - 45.514709 - ], - [ - -73.324037, - 45.514697 - ], - [ - -73.324882, - 45.514635 - ], - [ - -73.325331, - 45.514602 - ], - [ - -73.325842, - 45.514565 - ], - [ - -73.326299, - 45.514534 - ], - [ - -73.32769, - 45.514424 - ], - [ - -73.327945, - 45.514388 - ], - [ - -73.328275, - 45.514323 - ], - [ - -73.328284, - 45.514321 - ], - [ - -73.328456, - 45.514236 - ], - [ - -73.32877, - 45.514101 - ], - [ - -73.329221, - 45.51389 - ], - [ - -73.32948, - 45.513693 - ], - [ - -73.32972, - 45.513518 - ], - [ - -73.329962, - 45.513351 - ], - [ - -73.330507, - 45.512975 - ], - [ - -73.330794, - 45.512786 - ], - [ - -73.330944, - 45.51269 - ], - [ - -73.331385, - 45.512407 - ], - [ - -73.331778, - 45.512149 - ], - [ - -73.332065, - 45.51196 - ], - [ - -73.332471, - 45.511692 - ], - [ - -73.332834, - 45.511452 - ], - [ - -73.332968, - 45.511363 - ], - [ - -73.333664, - 45.510909 - ], - [ - -73.334013, - 45.510683 - ], - [ - -73.334454, - 45.510366 - ], - [ - -73.33485, - 45.510077 - ], - [ - -73.335253, - 45.509783 - ], - [ - -73.335544, - 45.509572 - ], - [ - -73.335916, - 45.509331 - ], - [ - -73.335984, - 45.509292 - ], - [ - -73.336048, - 45.509266 - ], - [ - -73.336059, - 45.509261 - ], - [ - -73.33614, - 45.509238 - ], - [ - -73.336225, - 45.509224 - ], - [ - -73.336547, - 45.509188 - ], - [ - -73.336939, - 45.509159 - ], - [ - -73.336952, - 45.509157 - ], - [ - -73.337049, - 45.509155 - ], - [ - -73.337253, - 45.509165 - ], - [ - -73.337473, - 45.509192 - ], - [ - -73.337654, - 45.509233 - ], - [ - -73.337875, - 45.5093 - ], - [ - -73.338077, - 45.509382 - ], - [ - -73.338251, - 45.509472 - ], - [ - -73.338438, - 45.509603 - ], - [ - -73.338649, - 45.509765 - ], - [ - -73.338812, - 45.5099 - ], - [ - -73.339011, - 45.510053 - ], - [ - -73.33923, - 45.510225 - ], - [ - -73.339426, - 45.510378 - ], - [ - -73.33958, - 45.5105 - ], - [ - -73.339787, - 45.510662 - ], - [ - -73.33993, - 45.51077 - ], - [ - -73.340029, - 45.510841 - ], - [ - -73.340118, - 45.510905 - ], - [ - -73.340296, - 45.511027 - ], - [ - -73.340633, - 45.511225 - ], - [ - -73.341122, - 45.511465 - ], - [ - -73.341412, - 45.51159 - ], - [ - -73.341736, - 45.511731 - ], - [ - -73.341938, - 45.511803 - ], - [ - -73.342349, - 45.511934 - ], - [ - -73.342629, - 45.512011 - ], - [ - -73.342741, - 45.512043 - ], - [ - -73.342894, - 45.512074 - ], - [ - -73.342984, - 45.512085 - ], - [ - -73.343038, - 45.512092 - ], - [ - -73.343097, - 45.5121 - ], - [ - -73.343396, - 45.51257 - ], - [ - -73.343437, - 45.512674 - ], - [ - -73.343463, - 45.512804 - ], - [ - -73.343492, - 45.513074 - ], - [ - -73.343522, - 45.513542 - ], - [ - -73.343521, - 45.513731 - ], - [ - -73.343701, - 45.513718 - ], - [ - -73.343799, - 45.513709 - ], - [ - -73.344204, - 45.513683 - ], - [ - -73.357647, - 45.512814 - ], - [ - -73.358491, - 45.512756 - ], - [ - -73.359423, - 45.512694 - ], - [ - -73.359555, - 45.512681 - ], - [ - -73.36081, - 45.512584 - ], - [ - -73.361813, - 45.512472 - ], - [ - -73.362822, - 45.512334 - ], - [ - -73.363276, - 45.512258 - ], - [ - -73.363561, - 45.512213 - ], - [ - -73.365307, - 45.511892 - ], - [ - -73.367381, - 45.511525 - ], - [ - -73.368785, - 45.511324 - ], - [ - -73.369875, - 45.511208 - ], - [ - -73.370223, - 45.511177 - ], - [ - -73.370922, - 45.511129 - ], - [ - -73.371649, - 45.511098 - ], - [ - -73.371854, - 45.511094 - ], - [ - -73.372619, - 45.511081 - ], - [ - -73.37324, - 45.511086 - ], - [ - -73.374187, - 45.511119 - ], - [ - -73.376015, - 45.51122 - ], - [ - -73.376407, - 45.511234 - ], - [ - -73.377357, - 45.511248 - ], - [ - -73.378321, - 45.51124 - ], - [ - -73.378967, - 45.511214 - ], - [ - -73.379618, - 45.511183 - ], - [ - -73.382611, - 45.511015 - ], - [ - -73.384597, - 45.510914 - ], - [ - -73.392277, - 45.510503 - ], - [ - -73.393587, - 45.510437 - ], - [ - -73.396575, - 45.510246 - ], - [ - -73.416479, - 45.508939 - ], - [ - -73.422517, - 45.50853 - ], - [ - -73.424264, - 45.508396 - ], - [ - -73.424552, - 45.508369 - ], - [ - -73.427299, - 45.508128 - ], - [ - -73.428658, - 45.508016 - ], - [ - -73.429661, - 45.507941 - ], - [ - -73.430957, - 45.507858 - ], - [ - -73.431208, - 45.507842 - ], - [ - -73.432577, - 45.507753 - ], - [ - -73.43342, - 45.507709 - ], - [ - -73.434603, - 45.507674 - ], - [ - -73.436686, - 45.507634 - ], - [ - -73.43758, - 45.507603 - ], - [ - -73.438175, - 45.507572 - ], - [ - -73.440344, - 45.507425 - ], - [ - -73.445881, - 45.507063 - ], - [ - -73.452257, - 45.506638 - ], - [ - -73.452565, - 45.506616 - ], - [ - -73.453776, - 45.50654 - ], - [ - -73.455247, - 45.506419 - ], - [ - -73.456957, - 45.50624 - ], - [ - -73.460279, - 45.505832 - ], - [ - -73.460374, - 45.505823 - ], - [ - -73.461182, - 45.505728 - ], - [ - -73.463671, - 45.505509 - ], - [ - -73.465111, - 45.505401 - ], - [ - -73.467755, - 45.505222 - ], - [ - -73.468692, - 45.505168 - ], - [ - -73.470746, - 45.505025 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492938, - 45.510118 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494425, - 45.510904 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497945, - 45.512059 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.503773, - 45.51407 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518225, - 45.520414 - ], - [ - -73.518898, - 45.52063 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520267, - 45.521193 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.52068, - 45.524093 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.520811, - 45.523427 - ] - ] - }, - "id": 239, - "properties": { - "id": "48d3fbb3-0fee-4563-9aae-32c5e92175ce", - "data": { - "gtfs": { - "shape_id": "199_1_A" - }, - "segments": [ - { - "distanceMeters": 287, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 374, - "travelTimeSeconds": 88 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 659, - "travelTimeSeconds": 113 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 12106, - "travelTimeSeconds": 600 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 1942, - "travelTimeSeconds": 325 - }, - { - "distanceMeters": 845, - "travelTimeSeconds": 141 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 234, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 22186, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 13853.560974237116, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.48, - "travelTimeWithoutDwellTimesSeconds": 2340, - "operatingTimeWithLayoverTimeSeconds": 2574, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2340, - "operatingSpeedWithLayoverMetersPerSecond": 8.62, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.48 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "4d3db5af-874a-4a4c-8a87-68ecc590af13", - "f20c1a67-6c7e-41a3-a85d-9c7b49ac0386", - "652ad35d-f3c9-49c6-b2de-8d15cab5cafb", - "7ac3961a-0b0e-47c8-a264-69b6edbbd2b9", - "9f67f31c-9015-4b9c-b5eb-210a53be617b", - "60ea8a19-f195-4f9b-b60e-122a63bd86bd", - "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", - "2c952684-5d97-4238-ae18-51cba6c9775e", - "39a7153a-bac3-4ac2-84e3-79ec24465317", - "b476282d-aa8d-4826-8ad2-39123a162025", - "3bbcea32-d474-49cc-8cd8-d77d2bac6158", - "93fcd4a5-ee80-4c79-b0bc-547231801133", - "6b369192-79e8-4382-aaa0-abddf0da08d7", - "02c05e36-6f59-42fd-b6c5-b158e3d119a0", - "4f0816d5-67e0-4d4d-9413-6e045052da5f", - "7464372f-e710-4dc5-a76c-a68144e67289", - "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", - "5f32a25e-7895-498c-b5cd-182adcfb40dd", - "44828ff3-a75f-403d-9e17-7e902c4620b9", - "e39d2286-4090-4933-a88a-16d850b1afef", - "a701238b-1e29-4dd9-946e-0536ece5b28c", - "57a91181-2fc4-4e39-a5bf-0ff47bbe6e9b", - "23cec068-5e76-484b-b2ab-203e4ea55358", - "826d09a9-1b78-4dbe-b959-454ea9c14e84", - "1d0cf396-f4ae-4977-a367-c4cf2be5bc83", - "a1087eae-a20b-4cd0-b8e7-26440d382937", - "784a98f8-f964-4b51-9a84-d7aa241d6aab", - "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "acabc807-b0f5-4579-b183-cef0484a7cc2" - ], - "stops": [], - "line_id": "8e981633-8115-4bab-ab74-64789b6eed90", - "segments": [ - 0, - 4, - 9, - 14, - 25, - 29, - 31, - 38, - 43, - 47, - 53, - 59, - 64, - 68, - 71, - 75, - 78, - 81, - 95, - 106, - 127, - 130, - 140, - 150, - 155, - 165, - 200, - 211, - 306, - 319, - 369 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 239, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.520811, - 45.523427 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522185, - 45.522436 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519256, - 45.520728 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514999, - 45.519328 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509849, - 45.51557 - ], - [ - -73.509164, - 45.515381 - ], - [ - -73.508444, - 45.51521 - ], - [ - -73.50806, - 45.515088 - ], - [ - -73.503449, - 45.513618 - ], - [ - -73.500803, - 45.512776 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498217, - 45.511892 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.494319, - 45.510462 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488355, - 45.503066 - ], - [ - -73.4883, - 45.502913 - ], - [ - -73.488219, - 45.502531 - ], - [ - -73.488223, - 45.502405 - ], - [ - -73.488245, - 45.502293 - ], - [ - -73.488296, - 45.502185 - ], - [ - -73.488375, - 45.502086 - ], - [ - -73.488484, - 45.502 - ], - [ - -73.488609, - 45.501937 - ], - [ - -73.48874, - 45.501892 - ], - [ - -73.48888, - 45.501865 - ], - [ - -73.489028, - 45.501856 - ], - [ - -73.489181, - 45.501865 - ], - [ - -73.489324, - 45.501892 - ], - [ - -73.489461, - 45.501933 - ], - [ - -73.489585, - 45.501991 - ], - [ - -73.489692, - 45.502068 - ], - [ - -73.489744, - 45.502115 - ], - [ - -73.489786, - 45.502153 - ], - [ - -73.489942, - 45.502342 - ], - [ - -73.490006, - 45.50245 - ], - [ - -73.490054, - 45.502558 - ], - [ - -73.490086, - 45.502666 - ], - [ - -73.490092, - 45.502779 - ], - [ - -73.490064, - 45.502891 - ], - [ - -73.490004, - 45.502995 - ], - [ - -73.489917, - 45.503094 - ], - [ - -73.489808, - 45.503175 - ], - [ - -73.489675, - 45.503242 - ], - [ - -73.489524, - 45.503287 - ], - [ - -73.489359, - 45.50331 - ], - [ - -73.489186, - 45.503323 - ], - [ - -73.488817, - 45.503318 - ], - [ - -73.487515, - 45.503242 - ], - [ - -73.486872, - 45.503273 - ], - [ - -73.486502, - 45.503323 - ], - [ - -73.486146, - 45.503381 - ], - [ - -73.484224, - 45.503808 - ], - [ - -73.483407, - 45.503957 - ], - [ - -73.482922, - 45.504029 - ], - [ - -73.482166, - 45.504114 - ], - [ - -73.481092, - 45.504204 - ], - [ - -73.4802, - 45.504262 - ], - [ - -73.47719, - 45.50446 - ], - [ - -73.464792, - 45.505284 - ], - [ - -73.464234, - 45.505325 - ], - [ - -73.463301, - 45.505392 - ], - [ - -73.461784, - 45.505526 - ], - [ - -73.460686, - 45.505647 - ], - [ - -73.45799, - 45.505984 - ], - [ - -73.456776, - 45.506127 - ], - [ - -73.455209, - 45.506284 - ], - [ - -73.454382, - 45.506356 - ], - [ - -73.450186, - 45.506642 - ], - [ - -73.439577, - 45.507343 - ], - [ - -73.439057, - 45.507379 - ], - [ - -73.438071, - 45.507414 - ], - [ - -73.437444, - 45.507428 - ], - [ - -73.436265, - 45.507427 - ], - [ - -73.435664, - 45.507418 - ], - [ - -73.43478, - 45.507413 - ], - [ - -73.433757, - 45.507439 - ], - [ - -73.432476, - 45.507501 - ], - [ - -73.430857, - 45.507609 - ], - [ - -73.43012, - 45.507658 - ], - [ - -73.43011, - 45.507658 - ], - [ - -73.429984, - 45.507667 - ], - [ - -73.429954, - 45.507669 - ], - [ - -73.429316, - 45.507711 - ], - [ - -73.429246, - 45.50772 - ], - [ - -73.427401, - 45.507872 - ], - [ - -73.425651, - 45.508046 - ], - [ - -73.425331, - 45.508082 - ], - [ - -73.423669, - 45.508256 - ], - [ - -73.421559, - 45.508471 - ], - [ - -73.418703, - 45.508644 - ], - [ - -73.414755, - 45.508904 - ], - [ - -73.40603, - 45.509467 - ], - [ - -73.399904, - 45.509875 - ], - [ - -73.3937, - 45.510275 - ], - [ - -73.39233, - 45.510359 - ], - [ - -73.390441, - 45.510452 - ], - [ - -73.389445, - 45.510505 - ], - [ - -73.387299, - 45.510633 - ], - [ - -73.381768, - 45.510924 - ], - [ - -73.37903, - 45.511061 - ], - [ - -73.378353, - 45.511087 - ], - [ - -73.377677, - 45.511105 - ], - [ - -73.376999, - 45.511104 - ], - [ - -73.375985, - 45.511071 - ], - [ - -73.375316, - 45.51103 - ], - [ - -73.373596, - 45.510947 - ], - [ - -73.372769, - 45.510937 - ], - [ - -73.371909, - 45.510936 - ], - [ - -73.371148, - 45.510962 - ], - [ - -73.37043, - 45.511007 - ], - [ - -73.36933, - 45.511113 - ], - [ - -73.368592, - 45.511203 - ], - [ - -73.367673, - 45.511332 - ], - [ - -73.366892, - 45.511466 - ], - [ - -73.363466, - 45.512074 - ], - [ - -73.362782, - 45.512186 - ], - [ - -73.36245, - 45.512235 - ], - [ - -73.362045, - 45.512288 - ], - [ - -73.361529, - 45.512355 - ], - [ - -73.360893, - 45.512422 - ], - [ - -73.358459, - 45.512576 - ], - [ - -73.356757, - 45.512682 - ], - [ - -73.347571, - 45.513278 - ], - [ - -73.343703, - 45.513529 - ], - [ - -73.34367, - 45.513061 - ], - [ - -73.343642, - 45.512791 - ], - [ - -73.343612, - 45.512647 - ], - [ - -73.343567, - 45.512534 - ], - [ - -73.343564, - 45.512526 - ], - [ - -73.34336, - 45.512075 - ], - [ - -73.343354, - 45.512062 - ], - [ - -73.343353, - 45.511994 - ], - [ - -73.343338, - 45.511968 - ], - [ - -73.343317, - 45.511931 - ], - [ - -73.343273, - 45.511881 - ], - [ - -73.343208, - 45.51185 - ], - [ - -73.343153, - 45.511841 - ], - [ - -73.343055, - 45.511863 - ], - [ - -73.343022, - 45.511899 - ], - [ - -73.343008, - 45.511931 - ], - [ - -73.343011, - 45.511985 - ], - [ - -73.343038, - 45.512034 - ], - [ - -73.343097, - 45.5121 - ], - [ - -73.343396, - 45.51257 - ], - [ - -73.343437, - 45.512674 - ], - [ - -73.343463, - 45.512804 - ], - [ - -73.343492, - 45.513074 - ], - [ - -73.343522, - 45.513542 - ], - [ - -73.343521, - 45.513731 - ], - [ - -73.343597, - 45.514311 - ], - [ - -73.343608, - 45.514418 - ], - [ - -73.343662, - 45.514928 - ], - [ - -73.343818, - 45.516263 - ], - [ - -73.343839, - 45.51644 - ], - [ - -73.343867, - 45.516997 - ], - [ - -73.343868, - 45.517007 - ], - [ - -73.34388, - 45.517106 - ], - [ - -73.343907, - 45.517382 - ], - [ - -73.34397, - 45.51801 - ], - [ - -73.344013, - 45.518438 - ], - [ - -73.344019, - 45.518505 - ], - [ - -73.344103, - 45.519059 - ], - [ - -73.344134, - 45.519324 - ], - [ - -73.34415, - 45.519419 - ], - [ - -73.344157, - 45.519483 - ], - [ - -73.344217, - 45.520058 - ], - [ - -73.344223, - 45.520328 - ], - [ - -73.344186, - 45.520584 - ], - [ - -73.344126, - 45.520715 - ], - [ - -73.344046, - 45.520881 - ], - [ - -73.343898, - 45.52107 - ], - [ - -73.343794, - 45.521169 - ], - [ - -73.343671, - 45.521281 - ], - [ - -73.343545, - 45.521362 - ], - [ - -73.343232, - 45.521573 - ], - [ - -73.343192, - 45.521602 - ], - [ - -73.34316, - 45.521627 - ], - [ - -73.342373, - 45.522165 - ], - [ - -73.34155, - 45.522712 - ], - [ - -73.341528, - 45.522727 - ], - [ - -73.340578, - 45.523376 - ], - [ - -73.340352, - 45.52353 - ], - [ - -73.340272, - 45.523584 - ], - [ - -73.340102, - 45.523754 - ], - [ - -73.340043, - 45.523791 - ], - [ - -73.339575, - 45.524088 - ], - [ - -73.338727, - 45.524626 - ], - [ - -73.338473, - 45.524775 - ], - [ - -73.338368, - 45.524837 - ], - [ - -73.337669, - 45.525344 - ], - [ - -73.337228, - 45.52569 - ], - [ - -73.336573, - 45.52618 - ], - [ - -73.336309, - 45.526392 - ], - [ - -73.336249, - 45.52644 - ], - [ - -73.335456, - 45.527046 - ], - [ - -73.334776, - 45.527545 - ], - [ - -73.334687, - 45.527602 - ], - [ - -73.334622, - 45.527643 - ], - [ - -73.334545, - 45.527688 - ], - [ - -73.333788, - 45.528191 - ], - [ - -73.333439, - 45.528436 - ], - [ - -73.333275, - 45.52855 - ], - [ - -73.333216, - 45.52859 - ], - [ - -73.333063, - 45.528692 - ], - [ - -73.332637, - 45.528977 - ], - [ - -73.331967, - 45.529457 - ], - [ - -73.331877, - 45.529511 - ], - [ - -73.331546, - 45.529757 - ], - [ - -73.331055, - 45.530121 - ], - [ - -73.330825, - 45.530292 - ], - [ - -73.330761, - 45.530256 - ], - [ - -73.330009, - 45.529693 - ], - [ - -73.328691, - 45.528715 - ], - [ - -73.328227, - 45.528372 - ], - [ - -73.328159, - 45.528322 - ], - [ - -73.327746, - 45.528029 - ], - [ - -73.326635, - 45.527209 - ], - [ - -73.326449, - 45.527067 - ], - [ - -73.325817, - 45.526587 - ], - [ - -73.325411, - 45.526298 - ], - [ - -73.324539, - 45.525544 - ], - [ - -73.324515, - 45.525523 - ], - [ - -73.324477, - 45.525478 - ], - [ - -73.323443, - 45.524603 - ], - [ - -73.322881, - 45.524129 - ], - [ - -73.322064, - 45.52344 - ], - [ - -73.321325, - 45.522814 - ], - [ - -73.321044, - 45.522572 - ], - [ - -73.32099, - 45.522525 - ], - [ - -73.319781, - 45.521516 - ], - [ - -73.319089, - 45.520933 - ], - [ - -73.318732, - 45.520632 - ], - [ - -73.318552, - 45.520474 - ], - [ - -73.318461, - 45.520393 - ], - [ - -73.318456, - 45.520312 - ], - [ - -73.318426, - 45.520276 - ], - [ - -73.318299, - 45.520113 - ], - [ - -73.318178, - 45.51995 - ], - [ - -73.317965, - 45.519666 - ], - [ - -73.317953, - 45.519648 - ], - [ - -73.317869, - 45.519519 - ], - [ - -73.317741, - 45.519325 - ], - [ - -73.317582, - 45.519001 - ], - [ - -73.317525, - 45.518761 - ], - [ - -73.317518, - 45.518583 - ], - [ - -73.317513, - 45.518441 - ], - [ - -73.317522, - 45.518134 - ], - [ - -73.317532, - 45.517797 - ], - [ - -73.317536, - 45.517692 - ], - [ - -73.317549, - 45.517361 - ], - [ - -73.317571, - 45.516825 - ], - [ - -73.317518, - 45.516504 - ], - [ - -73.317555, - 45.515401 - ], - [ - -73.317556, - 45.515379 - ], - [ - -73.317556, - 45.51535 - ], - [ - -73.317557, - 45.51522 - ], - [ - -73.317558, - 45.515133 - ], - [ - -73.317711, - 45.515131 - ], - [ - -73.31781, - 45.515137 - ], - [ - -73.317862, - 45.51514 - ], - [ - -73.317874, - 45.51514 - ], - [ - -73.317955, - 45.515142 - ], - [ - -73.31803, - 45.515143 - ], - [ - -73.318089, - 45.515154 - ], - [ - -73.31812, - 45.515161 - ], - [ - -73.31825, - 45.515194 - ], - [ - -73.318377, - 45.515215 - ], - [ - -73.318466, - 45.515215 - ], - [ - -73.318584, - 45.515209 - ], - [ - -73.318668, - 45.515185 - ], - [ - -73.318888, - 45.515122 - ], - [ - -73.319039, - 45.515086 - ], - [ - -73.319183, - 45.515063 - ], - [ - -73.319504, - 45.515014 - ], - [ - -73.319813, - 45.514987 - ], - [ - -73.320068, - 45.51497 - ], - [ - -73.320366, - 45.514951 - ], - [ - -73.320491, - 45.514943 - ], - [ - -73.322784, - 45.514785 - ], - [ - -73.32364, - 45.514723 - ], - [ - -73.323667, - 45.514721 - ], - [ - -73.323824, - 45.514709 - ], - [ - -73.324037, - 45.514697 - ], - [ - -73.324882, - 45.514635 - ], - [ - -73.325331, - 45.514602 - ], - [ - -73.325842, - 45.514565 - ], - [ - -73.326299, - 45.514534 - ], - [ - -73.32769, - 45.514424 - ], - [ - -73.327945, - 45.514388 - ], - [ - -73.328284, - 45.514321 - ], - [ - -73.328351, - 45.514288 - ], - [ - -73.328456, - 45.514236 - ], - [ - -73.32877, - 45.514101 - ], - [ - -73.329221, - 45.51389 - ], - [ - -73.32948, - 45.513693 - ], - [ - -73.32972, - 45.513518 - ], - [ - -73.330507, - 45.512975 - ], - [ - -73.330794, - 45.512786 - ], - [ - -73.331012, - 45.512646 - ], - [ - -73.331385, - 45.512407 - ], - [ - -73.331778, - 45.512149 - ], - [ - -73.332065, - 45.51196 - ], - [ - -73.332471, - 45.511692 - ], - [ - -73.332892, - 45.511413 - ], - [ - -73.332968, - 45.511363 - ], - [ - -73.333664, - 45.510909 - ], - [ - -73.334013, - 45.510683 - ], - [ - -73.334454, - 45.510366 - ], - [ - -73.33485, - 45.510077 - ], - [ - -73.334962, - 45.509995 - ], - [ - -73.335253, - 45.509783 - ], - [ - -73.335544, - 45.509572 - ], - [ - -73.335916, - 45.509331 - ], - [ - -73.335984, - 45.509292 - ], - [ - -73.336059, - 45.509261 - ], - [ - -73.336134, - 45.50924 - ], - [ - -73.33614, - 45.509238 - ], - [ - -73.336225, - 45.509224 - ], - [ - -73.336547, - 45.509188 - ], - [ - -73.336939, - 45.509159 - ], - [ - -73.336952, - 45.509157 - ], - [ - -73.337049, - 45.509155 - ], - [ - -73.337253, - 45.509165 - ], - [ - -73.337473, - 45.509192 - ], - [ - -73.337654, - 45.509233 - ], - [ - -73.337875, - 45.5093 - ], - [ - -73.338077, - 45.509382 - ], - [ - -73.338251, - 45.509472 - ], - [ - -73.338438, - 45.509603 - ], - [ - -73.338649, - 45.509765 - ], - [ - -73.338812, - 45.5099 - ], - [ - -73.339011, - 45.510053 - ], - [ - -73.33923, - 45.510225 - ], - [ - -73.339426, - 45.510378 - ], - [ - -73.33958, - 45.5105 - ], - [ - -73.339787, - 45.510662 - ], - [ - -73.33993, - 45.51077 - ], - [ - -73.340029, - 45.510841 - ], - [ - -73.340118, - 45.510905 - ], - [ - -73.340296, - 45.511027 - ], - [ - -73.340633, - 45.511225 - ], - [ - -73.341122, - 45.511465 - ], - [ - -73.341412, - 45.51159 - ], - [ - -73.341736, - 45.511731 - ], - [ - -73.341938, - 45.511803 - ], - [ - -73.342349, - 45.511934 - ], - [ - -73.342629, - 45.512011 - ], - [ - -73.342741, - 45.512043 - ], - [ - -73.342894, - 45.512074 - ], - [ - -73.343038, - 45.512092 - ], - [ - -73.343059, - 45.512094 - ], - [ - -73.343063, - 45.512095 - ], - [ - -73.343097, - 45.5121 - ], - [ - -73.343396, - 45.51257 - ], - [ - -73.343437, - 45.512674 - ], - [ - -73.343463, - 45.512804 - ], - [ - -73.343492, - 45.513074 - ], - [ - -73.343522, - 45.513542 - ], - [ - -73.343521, - 45.513731 - ], - [ - -73.343701, - 45.513718 - ], - [ - -73.343799, - 45.513709 - ], - [ - -73.344298, - 45.513677 - ] - ] - }, - "id": 240, - "properties": { - "id": "b3c3df85-d2ff-46c4-9735-a5e9c4c376b9", - "data": { - "gtfs": { - "shape_id": "199_2_R" - }, - "segments": [ - { - "distanceMeters": 630, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 1600, - "travelTimeSeconds": 195 - }, - { - "distanceMeters": 344, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 6033, - "travelTimeSeconds": 360 - }, - { - "distanceMeters": 6929, - "travelTimeSeconds": 457 - }, - { - "distanceMeters": 335, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 375, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 658, - "travelTimeSeconds": 182 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 70 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 246, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 23082, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 13816.863629181675, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.38, - "travelTimeWithoutDwellTimesSeconds": 2460, - "operatingTimeWithLayoverTimeSeconds": 2706, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2460, - "operatingSpeedWithLayoverMetersPerSecond": 8.53, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.38 - }, - "mode": "bus", - "name": "St-Bruno", - "color": "#A32638", - "nodes": [ - "acabc807-b0f5-4579-b183-cef0484a7cc2", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "688a3f67-a176-441e-a399-c92a55de9c74", - "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", - "4aea3348-4995-4fc9-b06f-6698460c1f1d", - "784a98f8-f964-4b51-9a84-d7aa241d6aab", - "4d3db5af-874a-4a4c-8a87-68ecc590af13", - "f20c1a67-6c7e-41a3-a85d-9c7b49ac0386", - "652ad35d-f3c9-49c6-b2de-8d15cab5cafb", - "7ac3961a-0b0e-47c8-a264-69b6edbbd2b9", - "9f67f31c-9015-4b9c-b5eb-210a53be617b", - "60ea8a19-f195-4f9b-b60e-122a63bd86bd", - "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", - "2c952684-5d97-4238-ae18-51cba6c9775e", - "39a7153a-bac3-4ac2-84e3-79ec24465317", - "b476282d-aa8d-4826-8ad2-39123a162025", - "3bbcea32-d474-49cc-8cd8-d77d2bac6158", - "93fcd4a5-ee80-4c79-b0bc-547231801133", - "6b369192-79e8-4382-aaa0-abddf0da08d7", - "02c05e36-6f59-42fd-b6c5-b158e3d119a0", - "4f0816d5-67e0-4d4d-9413-6e045052da5f", - "7464372f-e710-4dc5-a76c-a68144e67289", - "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", - "5f32a25e-7895-498c-b5cd-182adcfb40dd", - "44828ff3-a75f-403d-9e17-7e902c4620b9", - "e39d2286-4090-4933-a88a-16d850b1afef", - "a701238b-1e29-4dd9-946e-0536ece5b28c", - "57a91181-2fc4-4e39-a5bf-0ff47bbe6e9b", - "23cec068-5e76-484b-b2ab-203e4ea55358", - "826d09a9-1b78-4dbe-b959-454ea9c14e84", - "1d0cf396-f4ae-4977-a367-c4cf2be5bc83", - "a1087eae-a20b-4cd0-b8e7-26440d382937", - "784a98f8-f964-4b51-9a84-d7aa241d6aab", - "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d" - ], - "stops": [], - "line_id": "8e981633-8115-4bab-ab74-64789b6eed90", - "segments": [ - 0, - 39, - 46, - 70, - 81, - 168, - 216, - 237, - 241, - 246, - 251, - 262, - 265, - 267, - 274, - 279, - 283, - 289, - 295, - 300, - 304, - 307, - 311, - 314, - 317, - 331, - 342, - 363, - 367, - 377, - 385, - 390, - 402, - 438 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 240, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.435856, - 45.591737 - ], - [ - -73.435771, - 45.591809 - ], - [ - -73.435656, - 45.59193 - ], - [ - -73.435482, - 45.592133 - ], - [ - -73.435328, - 45.592303 - ], - [ - -73.435201, - 45.592416 - ], - [ - -73.435194, - 45.59242 - ], - [ - -73.434937, - 45.592614 - ], - [ - -73.434583, - 45.592879 - ], - [ - -73.434575, - 45.592883 - ], - [ - -73.434342, - 45.593054 - ], - [ - -73.434176, - 45.59318 - ], - [ - -73.433984, - 45.593306 - ], - [ - -73.433723, - 45.593472 - ], - [ - -73.433623, - 45.593526 - ], - [ - -73.433582, - 45.593589 - ], - [ - -73.433524, - 45.593619 - ], - [ - -73.433267, - 45.593751 - ], - [ - -73.432501, - 45.593098 - ], - [ - -73.432411, - 45.593022 - ], - [ - -73.431736, - 45.592481 - ], - [ - -73.431426, - 45.592216 - ], - [ - -73.430999, - 45.591887 - ], - [ - -73.430869, - 45.591805 - ], - [ - -73.430742, - 45.591724 - ], - [ - -73.430249, - 45.591315 - ], - [ - -73.430052, - 45.591144 - ], - [ - -73.430035, - 45.591102 - ], - [ - -73.429965, - 45.590937 - ], - [ - -73.429799, - 45.590246 - ], - [ - -73.429621, - 45.589502 - ], - [ - -73.429601, - 45.589438 - ], - [ - -73.429567, - 45.589376 - ], - [ - -73.429522, - 45.589319 - ], - [ - -73.429464, - 45.589267 - ], - [ - -73.429127, - 45.589004 - ], - [ - -73.429125, - 45.589003 - ], - [ - -73.429011, - 45.588919 - ], - [ - -73.429137, - 45.588834 - ], - [ - -73.429438, - 45.588643 - ], - [ - -73.429681, - 45.58849 - ], - [ - -73.430455, - 45.587999 - ], - [ - -73.43085, - 45.58775 - ], - [ - -73.431256, - 45.587493 - ], - [ - -73.431644, - 45.587248 - ], - [ - -73.431818, - 45.587179 - ], - [ - -73.431883, - 45.587238 - ], - [ - -73.432034, - 45.587385 - ], - [ - -73.432226, - 45.587579 - ], - [ - -73.433253, - 45.588702 - ], - [ - -73.433529, - 45.589001 - ], - [ - -73.433543, - 45.589016 - ], - [ - -73.433674, - 45.589158 - ], - [ - -73.433885, - 45.58936 - ], - [ - -73.4342, - 45.589657 - ], - [ - -73.434715, - 45.590103 - ], - [ - -73.434884, - 45.590234 - ], - [ - -73.434944, - 45.590279 - ], - [ - -73.434983, - 45.59031 - ], - [ - -73.434985, - 45.590312 - ], - [ - -73.435014, - 45.590337 - ], - [ - -73.435057, - 45.590373 - ], - [ - -73.435107, - 45.590414 - ], - [ - -73.435254, - 45.590517 - ], - [ - -73.435815, - 45.590941 - ], - [ - -73.436184, - 45.591213 - ], - [ - -73.43623, - 45.591247 - ], - [ - -73.436355, - 45.59135 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.438325, - 45.592826 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.440073, - 45.594117 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.442154, - 45.595672 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442992, - 45.59628 - ], - [ - -73.443394, - 45.596559 - ], - [ - -73.443528, - 45.596515 - ], - [ - -73.443621, - 45.596455 - ], - [ - -73.443786, - 45.596349 - ], - [ - -73.444437, - 45.59593 - ], - [ - -73.444718, - 45.595759 - ], - [ - -73.444826, - 45.595693 - ], - [ - -73.444968, - 45.595606 - ], - [ - -73.445426, - 45.595953 - ], - [ - -73.44617, - 45.596549 - ], - [ - -73.446321, - 45.596669 - ], - [ - -73.44661, - 45.596885 - ], - [ - -73.446897, - 45.597101 - ], - [ - -73.446918, - 45.597118 - ], - [ - -73.447238, - 45.597376 - ], - [ - -73.44744, - 45.597535 - ], - [ - -73.447569, - 45.597637 - ], - [ - -73.447718, - 45.597745 - ], - [ - -73.447878, - 45.597857 - ], - [ - -73.448177, - 45.5981 - ], - [ - -73.448549, - 45.598398 - ], - [ - -73.448171, - 45.59861 - ], - [ - -73.44776, - 45.59884 - ], - [ - -73.447731, - 45.598856 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.448104, - 45.599965 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449825, - 45.601331 - ], - [ - -73.449842, - 45.601358 - ], - [ - -73.449882, - 45.601394 - ], - [ - -73.449937, - 45.601432 - ], - [ - -73.449974, - 45.601468 - ], - [ - -73.450006, - 45.601497 - ], - [ - -73.450033, - 45.601528 - ], - [ - -73.450045, - 45.601571 - ], - [ - -73.450052, - 45.601604 - ], - [ - -73.450056, - 45.601623 - ], - [ - -73.450064, - 45.601673 - ], - [ - -73.450084, - 45.601711 - ], - [ - -73.450103, - 45.601741 - ], - [ - -73.450135, - 45.601765 - ], - [ - -73.450172, - 45.601786 - ], - [ - -73.450215, - 45.601801 - ], - [ - -73.450269, - 45.601815 - ], - [ - -73.450318, - 45.601822 - ], - [ - -73.450366, - 45.601839 - ], - [ - -73.450452, - 45.601873 - ], - [ - -73.45054, - 45.60193 - ], - [ - -73.450604, - 45.601966 - ], - [ - -73.450658, - 45.602007 - ], - [ - -73.450717, - 45.602019 - ], - [ - -73.450804, - 45.602087 - ], - [ - -73.450997, - 45.602236 - ], - [ - -73.451134, - 45.602344 - ], - [ - -73.45153, - 45.602655 - ], - [ - -73.45156, - 45.602679 - ], - [ - -73.452634, - 45.603524 - ], - [ - -73.452751, - 45.603609 - ], - [ - -73.453107, - 45.603884 - ], - [ - -73.453124, - 45.603897 - ], - [ - -73.453269, - 45.60401 - ], - [ - -73.453604, - 45.604271 - ], - [ - -73.453904, - 45.604474 - ], - [ - -73.454133, - 45.604694 - ], - [ - -73.454539, - 45.605032 - ], - [ - -73.454918, - 45.605315 - ], - [ - -73.455171, - 45.605504 - ], - [ - -73.455782, - 45.605973 - ], - [ - -73.456001, - 45.606135 - ], - [ - -73.456106, - 45.606225 - ], - [ - -73.45638, - 45.606432 - ], - [ - -73.456449, - 45.606465 - ], - [ - -73.456464, - 45.606472 - ], - [ - -73.456606, - 45.606499 - ], - [ - -73.456615, - 45.606661 - ], - [ - -73.456615, - 45.606676 - ], - [ - -73.456615, - 45.606796 - ], - [ - -73.45661, - 45.607368 - ], - [ - -73.456599, - 45.607836 - ], - [ - -73.456595, - 45.60819 - ], - [ - -73.456594, - 45.608335 - ], - [ - -73.456582, - 45.60905 - ], - [ - -73.456558, - 45.609802 - ], - [ - -73.456542, - 45.610013 - ], - [ - -73.456534, - 45.610121 - ], - [ - -73.456537, - 45.610463 - ], - [ - -73.456508, - 45.610998 - ], - [ - -73.4565, - 45.611138 - ], - [ - -73.456491, - 45.611268 - ], - [ - -73.456473, - 45.611516 - ], - [ - -73.456454, - 45.611728 - ], - [ - -73.456449, - 45.611777 - ], - [ - -73.456429, - 45.612204 - ], - [ - -73.456403, - 45.612587 - ], - [ - -73.456367, - 45.613122 - ], - [ - -73.456346, - 45.613356 - ], - [ - -73.45632, - 45.613649 - ], - [ - -73.456315, - 45.613702 - ], - [ - -73.456295, - 45.613828 - ], - [ - -73.456125, - 45.615281 - ], - [ - -73.45606, - 45.615718 - ], - [ - -73.456015, - 45.616024 - ], - [ - -73.455984, - 45.616307 - ], - [ - -73.45596, - 45.616501 - ], - [ - -73.455915, - 45.616856 - ], - [ - -73.455899, - 45.616987 - ], - [ - -73.455888, - 45.617081 - ], - [ - -73.455738, - 45.617067 - ], - [ - -73.455553, - 45.616995 - ], - [ - -73.455432, - 45.616899 - ], - [ - -73.453917, - 45.6157 - ], - [ - -73.453825, - 45.615627 - ], - [ - -73.453136, - 45.6151 - ], - [ - -73.452836, - 45.614871 - ], - [ - -73.452146, - 45.614414 - ], - [ - -73.452143, - 45.614412 - ], - [ - -73.452074, - 45.614389 - ], - [ - -73.451751, - 45.614407 - ], - [ - -73.451305, - 45.614429 - ], - [ - -73.451226, - 45.614429 - ], - [ - -73.451179, - 45.61443 - ], - [ - -73.450957, - 45.614433 - ], - [ - -73.450376, - 45.614442 - ], - [ - -73.450026, - 45.614462 - ], - [ - -73.449835, - 45.614474 - ], - [ - -73.448937, - 45.614572 - ], - [ - -73.44832, - 45.614671 - ], - [ - -73.44797, - 45.614738 - ], - [ - -73.447875, - 45.614756 - ], - [ - -73.447035, - 45.614913 - ], - [ - -73.446927, - 45.614918 - ], - [ - -73.446821, - 45.614913 - ], - [ - -73.446421, - 45.61489 - ], - [ - -73.445975, - 45.614868 - ], - [ - -73.445104, - 45.614818 - ], - [ - -73.444693, - 45.614764 - ], - [ - -73.444257, - 45.614678 - ], - [ - -73.443992, - 45.614601 - ], - [ - -73.443768, - 45.614525 - ], - [ - -73.443665, - 45.614493 - ], - [ - -73.443533, - 45.614435 - ], - [ - -73.443388, - 45.614349 - ], - [ - -73.443279, - 45.614286 - ], - [ - -73.442818, - 45.614018 - ], - [ - -73.441365, - 45.613174 - ], - [ - -73.441077, - 45.613016 - ], - [ - -73.441359, - 45.612773 - ], - [ - -73.44142, - 45.612719 - ], - [ - -73.441495, - 45.612638 - ], - [ - -73.441677, - 45.612274 - ], - [ - -73.441845, - 45.61195 - ], - [ - -73.441971, - 45.611698 - ], - [ - -73.442036, - 45.611568 - ], - [ - -73.442171, - 45.611329 - ], - [ - -73.442245, - 45.611186 - ], - [ - -73.443088, - 45.609922 - ], - [ - -73.443222, - 45.609809 - ], - [ - -73.44345, - 45.609665 - ], - [ - -73.443478, - 45.609647 - ], - [ - -73.443613, - 45.609585 - ], - [ - -73.444617, - 45.608933 - ], - [ - -73.444789, - 45.608816 - ], - [ - -73.444866, - 45.608753 - ], - [ - -73.444945, - 45.608658 - ], - [ - -73.444969, - 45.608595 - ], - [ - -73.444996, - 45.608528 - ], - [ - -73.445018, - 45.608433 - ], - [ - -73.445012, - 45.608361 - ], - [ - -73.445012, - 45.608289 - ], - [ - -73.444909, - 45.608073 - ], - [ - -73.444858, - 45.607983 - ], - [ - -73.444795, - 45.607857 - ], - [ - -73.444752, - 45.607772 - ], - [ - -73.444734, - 45.607713 - ], - [ - -73.444722, - 45.60765 - ], - [ - -73.444737, - 45.607529 - ], - [ - -73.444853, - 45.607286 - ], - [ - -73.44494, - 45.607147 - ], - [ - -73.445103, - 45.60689 - ], - [ - -73.445487, - 45.606265 - ], - [ - -73.445611, - 45.606055 - ], - [ - -73.445654, - 45.605982 - ], - [ - -73.44604, - 45.605357 - ], - [ - -73.446102, - 45.605271 - ], - [ - -73.446172, - 45.605191 - ], - [ - -73.446188, - 45.605172 - ], - [ - -73.44629, - 45.605064 - ], - [ - -73.446313, - 45.605044 - ], - [ - -73.446403, - 45.604961 - ], - [ - -73.44657, - 45.604835 - ], - [ - -73.446822, - 45.604687 - ], - [ - -73.447061, - 45.60457 - ], - [ - -73.447631, - 45.604291 - ], - [ - -73.447829, - 45.604197 - ], - [ - -73.447989, - 45.604152 - ], - [ - -73.448133, - 45.604125 - ], - [ - -73.448192, - 45.604119 - ], - [ - -73.448969, - 45.604041 - ], - [ - -73.450151, - 45.603923 - ], - [ - -73.450386, - 45.603941 - ], - [ - -73.450565, - 45.603973 - ], - [ - -73.450661, - 45.603995 - ], - [ - -73.450754, - 45.604036 - ], - [ - -73.450866, - 45.604103 - ], - [ - -73.451006, - 45.604212 - ], - [ - -73.451057, - 45.604252 - ], - [ - -73.451264, - 45.604401 - ], - [ - -73.451345, - 45.604468 - ], - [ - -73.452043, - 45.604042 - ], - [ - -73.452751, - 45.603609 - ], - [ - -73.452634, - 45.603524 - ], - [ - -73.452189, - 45.603174 - ], - [ - -73.45156, - 45.602679 - ], - [ - -73.45153, - 45.602655 - ], - [ - -73.451134, - 45.602344 - ], - [ - -73.450997, - 45.602236 - ], - [ - -73.450804, - 45.602087 - ], - [ - -73.450717, - 45.602019 - ], - [ - -73.450711, - 45.601962 - ], - [ - -73.450652, - 45.601878 - ], - [ - -73.450633, - 45.601851 - ], - [ - -73.45062, - 45.601823 - ], - [ - -73.450613, - 45.6018 - ], - [ - -73.450612, - 45.601775 - ], - [ - -73.450612, - 45.601745 - ], - [ - -73.450617, - 45.601719 - ], - [ - -73.450626, - 45.601694 - ], - [ - -73.450634, - 45.601674 - ], - [ - -73.450638, - 45.601617 - ], - [ - -73.450641, - 45.601578 - ], - [ - -73.450634, - 45.601544 - ], - [ - -73.450604, - 45.601499 - ], - [ - -73.450587, - 45.601474 - ], - [ - -73.450566, - 45.601457 - ], - [ - -73.45055, - 45.601447 - ], - [ - -73.450531, - 45.601438 - ], - [ - -73.45049, - 45.601429 - ], - [ - -73.450455, - 45.601424 - ], - [ - -73.450415, - 45.60142 - ], - [ - -73.450377, - 45.601418 - ], - [ - -73.450324, - 45.601415 - ], - [ - -73.450303, - 45.601414 - ], - [ - -73.450247, - 45.601412 - ], - [ - -73.450159, - 45.601408 - ], - [ - -73.450117, - 45.6014 - ], - [ - -73.450076, - 45.601382 - ], - [ - -73.450018, - 45.601356 - ], - [ - -73.449945, - 45.60132 - ], - [ - -73.449881, - 45.6013 - ], - [ - -73.449815, - 45.601292 - ], - [ - -73.449726, - 45.601225 - ], - [ - -73.448974, - 45.600659 - ], - [ - -73.448638, - 45.600391 - ], - [ - -73.448221, - 45.600058 - ], - [ - -73.447886, - 45.599792 - ], - [ - -73.447803, - 45.599727 - ], - [ - -73.447743, - 45.599679 - ], - [ - -73.447691, - 45.59963 - ], - [ - -73.447606, - 45.599549 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447539, - 45.59897 - ], - [ - -73.447609, - 45.598929 - ], - [ - -73.447731, - 45.598856 - ], - [ - -73.448171, - 45.59861 - ], - [ - -73.448549, - 45.598398 - ], - [ - -73.448177, - 45.5981 - ], - [ - -73.447878, - 45.597857 - ], - [ - -73.447718, - 45.597745 - ], - [ - -73.447713, - 45.597741 - ], - [ - -73.447569, - 45.597637 - ], - [ - -73.447238, - 45.597376 - ], - [ - -73.446918, - 45.597118 - ], - [ - -73.446897, - 45.597101 - ], - [ - -73.44661, - 45.596885 - ], - [ - -73.446321, - 45.596669 - ], - [ - -73.446173, - 45.59655 - ], - [ - -73.445426, - 45.595953 - ], - [ - -73.445121, - 45.595722 - ], - [ - -73.444968, - 45.595606 - ], - [ - -73.444718, - 45.595759 - ], - [ - -73.444437, - 45.59593 - ], - [ - -73.443618, - 45.596457 - ], - [ - -73.443528, - 45.596515 - ], - [ - -73.443394, - 45.596559 - ], - [ - -73.443106, - 45.596359 - ], - [ - -73.442992, - 45.59628 - ], - [ - -73.442839, - 45.596174 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.439893, - 45.59398 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.43823, - 45.592756 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.436355, - 45.59135 - ], - [ - -73.43623, - 45.591445 - ], - [ - -73.436139, - 45.591515 - ], - [ - -73.435937, - 45.591669 - ], - [ - -73.435856, - 45.591737 - ], - [ - -73.435771, - 45.591809 - ], - [ - -73.435656, - 45.59193 - ], - [ - -73.435482, - 45.592133 - ], - [ - -73.435328, - 45.592303 - ], - [ - -73.435201, - 45.592416 - ], - [ - -73.435194, - 45.59242 - ], - [ - -73.434937, - 45.592614 - ], - [ - -73.434583, - 45.592879 - ], - [ - -73.434575, - 45.592883 - ], - [ - -73.434342, - 45.593054 - ], - [ - -73.434176, - 45.59318 - ], - [ - -73.433984, - 45.593306 - ], - [ - -73.433723, - 45.593472 - ], - [ - -73.433623, - 45.593526 - ], - [ - -73.433582, - 45.593589 - ], - [ - -73.433514, - 45.593624 - ], - [ - -73.433267, - 45.593751 - ], - [ - -73.432532, - 45.593125 - ], - [ - -73.432411, - 45.593022 - ], - [ - -73.431736, - 45.592481 - ], - [ - -73.431426, - 45.592216 - ], - [ - -73.430999, - 45.591887 - ], - [ - -73.43086, - 45.591799 - ], - [ - -73.430742, - 45.591724 - ], - [ - -73.430249, - 45.591315 - ], - [ - -73.430052, - 45.591144 - ], - [ - -73.430035, - 45.591102 - ], - [ - -73.429965, - 45.590937 - ], - [ - -73.429799, - 45.590246 - ], - [ - -73.429621, - 45.589502 - ], - [ - -73.429601, - 45.589438 - ], - [ - -73.429567, - 45.589376 - ], - [ - -73.429522, - 45.589319 - ], - [ - -73.429464, - 45.589267 - ], - [ - -73.429127, - 45.589004 - ], - [ - -73.429126, - 45.589003 - ], - [ - -73.429011, - 45.588919 - ], - [ - -73.429137, - 45.588834 - ], - [ - -73.429356, - 45.588696 - ], - [ - -73.429681, - 45.58849 - ], - [ - -73.430455, - 45.587999 - ], - [ - -73.43085, - 45.58775 - ], - [ - -73.431265, - 45.587488 - ], - [ - -73.431644, - 45.587248 - ], - [ - -73.431818, - 45.587179 - ], - [ - -73.431883, - 45.587238 - ], - [ - -73.432034, - 45.587385 - ], - [ - -73.432226, - 45.587579 - ], - [ - -73.433253, - 45.588702 - ], - [ - -73.433536, - 45.589008 - ] - ] - }, - "id": 241, - "properties": { - "id": "f4c401fa-54fe-43f1-97f7-48682412b062", - "data": { - "gtfs": { - "shape_id": "284_1_A" - }, - "segments": [ - { - "distanceMeters": 279, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 311, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 382, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 592, - "travelTimeSeconds": 98 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 429, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 596, - "travelTimeSeconds": 109 - }, - { - "distanceMeters": 470, - "travelTimeSeconds": 94 - }, - { - "distanceMeters": 307, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 664, - "travelTimeSeconds": 104 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 82, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 335, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 311, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 60 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 228, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12337, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 322.1657642203999, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.41, - "travelTimeWithoutDwellTimesSeconds": 2280, - "operatingTimeWithLayoverTimeSeconds": 2508, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2280, - "operatingSpeedWithLayoverMetersPerSecond": 4.92, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.41 - }, - "mode": "bus", - "name": "Promenades Montarville", - "color": "#A32638", - "nodes": [ - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "ed16ff8f-f2f4-4914-b93b-f48229e580b7", - "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", - "de3d06d6-88af-49e3-b183-9464b2f111c8", - "3613b472-6055-4b55-9c89-01a451d82804", - "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", - "ebf7fd24-b756-481f-9a88-33b6362fcbda", - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "4fcc129f-8015-4b36-a21f-2437aa91a265", - "49262d07-72b2-466f-bf49-88656466e4a4", - "cbb95297-898f-493c-b22a-5755d4356a5c", - "e25e89c1-c193-4379-979a-303ee641d87e", - "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", - "ca205394-9833-4e14-b4fa-653c28b9a37d", - "dd170d68-d567-4a2d-8a93-47dec3a52cd1", - "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", - "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", - "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", - "204b558a-c106-4589-888d-4bd6528787b5", - "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", - "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", - "4bdfb37a-ee1d-4a02-9192-c3692c2485ed", - "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", - "b4102d0e-df60-40ed-b546-4997ce08cc57", - "d69b600d-72ec-426a-9838-289c3d328f0c", - "f9a06f2c-0cbe-4c5b-b4ae-045860bd63ac", - "a3ecc5af-4217-4c29-8096-6f8e97684bf2", - "7bb8c836-af43-4b8c-bf40-7cf79ce04ef2", - "15a24cda-ef8f-47ad-bb52-21eaf857234b", - "be43b4d2-5b5a-47b0-86d2-d58ce9d9b1eb", - "96c08dfd-d2e7-4584-a6b3-36c3a2e1abcc", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "e25e89c1-c193-4379-979a-303ee641d87e", - "cbb95297-898f-493c-b22a-5755d4356a5c", - "49262d07-72b2-466f-bf49-88656466e4a4", - "0872c388-8faf-4852-b4ce-cf3f6312e0ef", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "ed16ff8f-f2f4-4914-b93b-f48229e580b7", - "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", - "de3d06d6-88af-49e3-b183-9464b2f111c8", - "3613b472-6055-4b55-9c89-01a451d82804", - "c7d5859e-ffe2-4a64-aa6d-7040b6eed867" - ], - "stops": [], - "line_id": "f8dfd8f4-6f1d-4a0e-aa01-b4c15c48fac7", - "segments": [ - 0, - 16, - 23, - 36, - 43, - 50, - 59, - 65, - 71, - 78, - 82, - 89, - 92, - 101, - 115, - 152, - 159, - 165, - 173, - 177, - 184, - 190, - 199, - 204, - 214, - 221, - 237, - 251, - 274, - 290, - 298, - 302, - 348, - 355, - 362, - 371, - 375, - 380, - 386, - 393, - 401, - 417, - 424, - 437, - 444 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 241, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519711, - 45.523377 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519706, - 45.52323 - ], - [ - -73.519869, - 45.522907 - ], - [ - -73.520158, - 45.522337 - ], - [ - -73.520306, - 45.521899 - ], - [ - -73.520306, - 45.521896 - ], - [ - -73.520354, - 45.521696 - ], - [ - -73.520401, - 45.521498 - ], - [ - -73.520405, - 45.521373 - ], - [ - -73.520409, - 45.52119 - ], - [ - -73.520398, - 45.521025 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519102, - 45.520696 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514476, - 45.519088 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509952, - 45.515502 - ], - [ - -73.509485, - 45.515357 - ], - [ - -73.509376, - 45.515323 - ], - [ - -73.508692, - 45.515143 - ], - [ - -73.508296, - 45.51503 - ], - [ - -73.507817, - 45.514868 - ], - [ - -73.507704, - 45.514841 - ], - [ - -73.507464, - 45.514765 - ], - [ - -73.506712, - 45.514501 - ], - [ - -73.506516, - 45.514432 - ], - [ - -73.505464, - 45.514054 - ], - [ - -73.505166, - 45.51396 - ], - [ - -73.504787, - 45.51384 - ], - [ - -73.504451, - 45.513734 - ], - [ - -73.50434, - 45.513699 - ], - [ - -73.504259, - 45.513672 - ], - [ - -73.503369, - 45.513397 - ], - [ - -73.502433, - 45.51315 - ], - [ - -73.502048, - 45.513078 - ], - [ - -73.501411, - 45.512898 - ], - [ - -73.50108, - 45.512799 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494739, - 45.510664 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.49431, - 45.510458 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488355, - 45.503066 - ], - [ - -73.4883, - 45.502913 - ], - [ - -73.488219, - 45.502531 - ], - [ - -73.488223, - 45.502417 - ], - [ - -73.488223, - 45.502405 - ], - [ - -73.488245, - 45.502293 - ], - [ - -73.488296, - 45.502185 - ], - [ - -73.488375, - 45.502086 - ], - [ - -73.488484, - 45.502 - ], - [ - -73.488609, - 45.501937 - ], - [ - -73.48874, - 45.501892 - ], - [ - -73.48888, - 45.501865 - ], - [ - -73.489028, - 45.501856 - ], - [ - -73.489181, - 45.501865 - ], - [ - -73.489324, - 45.501892 - ], - [ - -73.489461, - 45.501933 - ], - [ - -73.489585, - 45.501991 - ], - [ - -73.489692, - 45.502068 - ], - [ - -73.489786, - 45.502153 - ], - [ - -73.489942, - 45.502342 - ], - [ - -73.490006, - 45.50245 - ], - [ - -73.490054, - 45.502558 - ], - [ - -73.490086, - 45.502666 - ], - [ - -73.490092, - 45.502779 - ], - [ - -73.490064, - 45.502891 - ], - [ - -73.490004, - 45.502995 - ], - [ - -73.489917, - 45.503094 - ], - [ - -73.489808, - 45.503175 - ], - [ - -73.489675, - 45.503242 - ], - [ - -73.489524, - 45.503287 - ], - [ - -73.489359, - 45.50331 - ], - [ - -73.489186, - 45.503323 - ], - [ - -73.488817, - 45.503318 - ], - [ - -73.487515, - 45.503242 - ], - [ - -73.486872, - 45.503273 - ], - [ - -73.486502, - 45.503323 - ], - [ - -73.486146, - 45.503381 - ], - [ - -73.484224, - 45.503808 - ], - [ - -73.483407, - 45.503957 - ], - [ - -73.482922, - 45.504029 - ], - [ - -73.482166, - 45.504114 - ], - [ - -73.481092, - 45.504204 - ], - [ - -73.4802, - 45.504262 - ], - [ - -73.47719, - 45.50446 - ], - [ - -73.464792, - 45.505284 - ], - [ - -73.464234, - 45.505325 - ], - [ - -73.463301, - 45.505392 - ], - [ - -73.462846, - 45.505432 - ], - [ - -73.461784, - 45.505526 - ], - [ - -73.460686, - 45.505647 - ], - [ - -73.45799, - 45.505984 - ], - [ - -73.456776, - 45.506127 - ], - [ - -73.455209, - 45.506284 - ], - [ - -73.454382, - 45.506356 - ], - [ - -73.450186, - 45.506642 - ], - [ - -73.439577, - 45.507343 - ], - [ - -73.439057, - 45.507379 - ], - [ - -73.438071, - 45.507414 - ], - [ - -73.437444, - 45.507428 - ], - [ - -73.436265, - 45.507427 - ], - [ - -73.435664, - 45.507418 - ], - [ - -73.43478, - 45.507413 - ], - [ - -73.433757, - 45.507439 - ], - [ - -73.432476, - 45.507501 - ], - [ - -73.430857, - 45.507609 - ], - [ - -73.430222, - 45.507651 - ], - [ - -73.43012, - 45.507658 - ], - [ - -73.43011, - 45.507658 - ], - [ - -73.429926, - 45.50767 - ], - [ - -73.429316, - 45.507711 - ], - [ - -73.429246, - 45.50772 - ], - [ - -73.427401, - 45.507872 - ], - [ - -73.425651, - 45.508046 - ], - [ - -73.425331, - 45.508082 - ], - [ - -73.423669, - 45.508256 - ], - [ - -73.421559, - 45.508471 - ], - [ - -73.418703, - 45.508644 - ], - [ - -73.414755, - 45.508904 - ], - [ - -73.40603, - 45.509467 - ], - [ - -73.399904, - 45.509875 - ], - [ - -73.3937, - 45.510275 - ], - [ - -73.39233, - 45.510359 - ], - [ - -73.390441, - 45.510452 - ], - [ - -73.389445, - 45.510505 - ], - [ - -73.387299, - 45.510633 - ], - [ - -73.381768, - 45.510924 - ], - [ - -73.37903, - 45.511061 - ], - [ - -73.378353, - 45.511087 - ], - [ - -73.377677, - 45.511105 - ], - [ - -73.376999, - 45.511104 - ], - [ - -73.375985, - 45.511071 - ], - [ - -73.375316, - 45.51103 - ], - [ - -73.373596, - 45.510947 - ], - [ - -73.372769, - 45.510937 - ], - [ - -73.371909, - 45.510936 - ], - [ - -73.371148, - 45.510962 - ], - [ - -73.37043, - 45.511007 - ], - [ - -73.36933, - 45.511113 - ], - [ - -73.368592, - 45.511203 - ], - [ - -73.367673, - 45.511332 - ], - [ - -73.366892, - 45.511466 - ], - [ - -73.363466, - 45.512074 - ], - [ - -73.362782, - 45.512186 - ], - [ - -73.36245, - 45.512235 - ], - [ - -73.362045, - 45.512288 - ], - [ - -73.361529, - 45.512355 - ], - [ - -73.360893, - 45.512422 - ], - [ - -73.358459, - 45.512576 - ], - [ - -73.356757, - 45.512682 - ], - [ - -73.347571, - 45.513278 - ], - [ - -73.343703, - 45.513529 - ], - [ - -73.34367, - 45.513061 - ], - [ - -73.343642, - 45.512791 - ], - [ - -73.343612, - 45.512647 - ], - [ - -73.343567, - 45.512534 - ], - [ - -73.343354, - 45.512062 - ], - [ - -73.343353, - 45.511994 - ], - [ - -73.343317, - 45.511931 - ], - [ - -73.343289, - 45.5119 - ], - [ - -73.343273, - 45.511881 - ], - [ - -73.343208, - 45.51185 - ], - [ - -73.343153, - 45.511841 - ], - [ - -73.343055, - 45.511863 - ], - [ - -73.343022, - 45.511899 - ], - [ - -73.343008, - 45.511931 - ], - [ - -73.343011, - 45.511985 - ], - [ - -73.343038, - 45.512034 - ], - [ - -73.343097, - 45.5121 - ], - [ - -73.343396, - 45.51257 - ], - [ - -73.343437, - 45.512674 - ], - [ - -73.343463, - 45.512804 - ], - [ - -73.343492, - 45.513074 - ], - [ - -73.343522, - 45.513542 - ], - [ - -73.343521, - 45.513731 - ], - [ - -73.343567, - 45.514081 - ], - [ - -73.343597, - 45.514311 - ], - [ - -73.343612, - 45.514452 - ], - [ - -73.343662, - 45.514928 - ], - [ - -73.343818, - 45.516263 - ], - [ - -73.343839, - 45.51644 - ], - [ - -73.343868, - 45.517007 - ], - [ - -73.343871, - 45.517031 - ], - [ - -73.34388, - 45.517106 - ], - [ - -73.343907, - 45.517382 - ], - [ - -73.34397, - 45.51801 - ], - [ - -73.344015, - 45.518464 - ], - [ - -73.344019, - 45.518505 - ], - [ - -73.344103, - 45.519059 - ], - [ - -73.344134, - 45.519324 - ], - [ - -73.34415, - 45.519419 - ], - [ - -73.344161, - 45.519518 - ], - [ - -73.344217, - 45.520058 - ], - [ - -73.344223, - 45.520328 - ], - [ - -73.344186, - 45.520584 - ], - [ - -73.344126, - 45.520715 - ], - [ - -73.344046, - 45.520881 - ], - [ - -73.343898, - 45.52107 - ], - [ - -73.343794, - 45.521169 - ], - [ - -73.343671, - 45.521281 - ], - [ - -73.343545, - 45.521362 - ], - [ - -73.343232, - 45.521573 - ], - [ - -73.34316, - 45.521627 - ], - [ - -73.343157, - 45.521628 - ], - [ - -73.342373, - 45.522165 - ], - [ - -73.341528, - 45.522727 - ], - [ - -73.341523, - 45.52273 - ], - [ - -73.340541, - 45.523401 - ], - [ - -73.340352, - 45.52353 - ], - [ - -73.340272, - 45.523584 - ], - [ - -73.340102, - 45.523754 - ], - [ - -73.340043, - 45.523791 - ], - [ - -73.339575, - 45.524088 - ], - [ - -73.338727, - 45.524626 - ], - [ - -73.338443, - 45.524793 - ], - [ - -73.338368, - 45.524837 - ], - [ - -73.338799, - 45.525132 - ], - [ - -73.339197, - 45.525405 - ], - [ - -73.339713, - 45.525764 - ], - [ - -73.339905, - 45.525898 - ], - [ - -73.340005, - 45.525968 - ], - [ - -73.340568, - 45.526316 - ], - [ - -73.340738, - 45.526442 - ], - [ - -73.341034, - 45.526636 - ], - [ - -73.341462, - 45.526915 - ], - [ - -73.34183, - 45.527172 - ], - [ - -73.341994, - 45.527303 - ], - [ - -73.342014, - 45.527325 - ], - [ - -73.342074, - 45.527389 - ], - [ - -73.342252, - 45.527555 - ], - [ - -73.342521, - 45.52779 - ], - [ - -73.342827, - 45.528033 - ], - [ - -73.343198, - 45.528321 - ], - [ - -73.343543, - 45.528556 - ], - [ - -73.343655, - 45.528635 - ], - [ - -73.343849, - 45.528772 - ], - [ - -73.344605, - 45.529334 - ], - [ - -73.345248, - 45.529811 - ], - [ - -73.345287, - 45.529841 - ], - [ - -73.345369, - 45.529899 - ], - [ - -73.346954, - 45.531044 - ], - [ - -73.347303, - 45.531304 - ], - [ - -73.348743, - 45.532377 - ], - [ - -73.348768, - 45.532396 - ], - [ - -73.350008, - 45.533298 - ], - [ - -73.350778, - 45.533879 - ], - [ - -73.35079, - 45.533887 - ], - [ - -73.350966, - 45.53401 - ], - [ - -73.351196, - 45.534181 - ], - [ - -73.351414, - 45.534325 - ], - [ - -73.351631, - 45.534461 - ], - [ - -73.351899, - 45.534632 - ], - [ - -73.352156, - 45.534794 - ], - [ - -73.352431, - 45.534966 - ], - [ - -73.352575, - 45.535061 - ], - [ - -73.352683, - 45.535132 - ], - [ - -73.352814, - 45.535218 - ], - [ - -73.353353, - 45.535601 - ], - [ - -73.353944, - 45.536031 - ], - [ - -73.354085, - 45.536133 - ], - [ - -73.354237, - 45.536255 - ], - [ - -73.35439, - 45.536363 - ], - [ - -73.354672, - 45.536579 - ], - [ - -73.354978, - 45.536786 - ], - [ - -73.355606, - 45.537228 - ], - [ - -73.35581, - 45.537381 - ], - [ - -73.356028, - 45.537517 - ], - [ - -73.356194, - 45.537616 - ], - [ - -73.356386, - 45.537688 - ], - [ - -73.356488, - 45.537706 - ], - [ - -73.35659, - 45.537733 - ], - [ - -73.356808, - 45.537752 - ], - [ - -73.356949, - 45.537752 - ], - [ - -73.357026, - 45.537752 - ], - [ - -73.35709, - 45.537752 - ], - [ - -73.357226, - 45.540389 - ], - [ - -73.357239, - 45.540776 - ], - [ - -73.357244, - 45.540879 - ], - [ - -73.357285, - 45.541541 - ], - [ - -73.357285, - 45.541622 - ], - [ - -73.3573, - 45.542006 - ], - [ - -73.357309, - 45.542233 - ], - [ - -73.357309, - 45.542332 - ], - [ - -73.357308, - 45.54244 - ], - [ - -73.357308, - 45.542557 - ], - [ - -73.357308, - 45.542647 - ], - [ - -73.357295, - 45.542728 - ], - [ - -73.357282, - 45.542827 - ], - [ - -73.357256, - 45.542917 - ], - [ - -73.357233, - 45.542994 - ], - [ - -73.357218, - 45.54307 - ], - [ - -73.357183, - 45.543183 - ], - [ - -73.357138, - 45.543286 - ], - [ - -73.357103, - 45.54338 - ], - [ - -73.357063, - 45.543466 - ], - [ - -73.357007, - 45.543556 - ], - [ - -73.356967, - 45.543641 - ], - [ - -73.356895, - 45.543736 - ], - [ - -73.356831, - 45.543826 - ], - [ - -73.356741, - 45.543942 - ], - [ - -73.356571, - 45.544149 - ], - [ - -73.356039, - 45.544697 - ], - [ - -73.355855, - 45.544895 - ], - [ - -73.35574, - 45.545012 - ], - [ - -73.355312, - 45.545458 - ], - [ - -73.355239, - 45.545533 - ], - [ - -73.354173, - 45.546648 - ], - [ - -73.354019, - 45.546809 - ], - [ - -73.352966, - 45.547879 - ], - [ - -73.352773, - 45.548077 - ], - [ - -73.352717, - 45.548144 - ], - [ - -73.352174, - 45.548787 - ], - [ - -73.351753, - 45.549331 - ], - [ - -73.351077, - 45.550338 - ], - [ - -73.34999, - 45.552082 - ], - [ - -73.349543, - 45.552787 - ], - [ - -73.349406, - 45.552734 - ], - [ - -73.345617, - 45.549986 - ], - [ - -73.344947, - 45.549443 - ], - [ - -73.344181, - 45.548974 - ], - [ - -73.343577, - 45.54858 - ], - [ - -73.343542, - 45.54843 - ], - [ - -73.343583, - 45.548284 - ], - [ - -73.343895, - 45.547841 - ], - [ - -73.344201, - 45.547438 - ], - [ - -73.344313, - 45.547242 - ], - [ - -73.344334, - 45.547081 - ], - [ - -73.344304, - 45.546963 - ], - [ - -73.344289, - 45.546838 - ], - [ - -73.344055, - 45.546624 - ], - [ - -73.343685, - 45.546513 - ], - [ - -73.342943, - 45.546411 - ], - [ - -73.342801, - 45.546343 - ], - [ - -73.34272, - 45.546261 - ], - [ - -73.342761, - 45.546101 - ], - [ - -73.342964, - 45.546044 - ], - [ - -73.34303, - 45.545767 - ], - [ - -73.343093, - 45.545501 - ], - [ - -73.342915, - 45.545479 - ], - [ - -73.34287, - 45.545662 - ], - [ - -73.34279, - 45.545982 - ], - [ - -73.342766, - 45.54608 - ], - [ - -73.342761, - 45.546101 - ], - [ - -73.34272, - 45.546261 - ], - [ - -73.342801, - 45.546343 - ], - [ - -73.342943, - 45.546411 - ], - [ - -73.343685, - 45.546513 - ], - [ - -73.344055, - 45.546624 - ], - [ - -73.344289, - 45.546838 - ], - [ - -73.344304, - 45.546963 - ], - [ - -73.344334, - 45.547081 - ], - [ - -73.344313, - 45.547242 - ], - [ - -73.344201, - 45.547438 - ], - [ - -73.343895, - 45.547841 - ], - [ - -73.343583, - 45.548284 - ], - [ - -73.343542, - 45.54843 - ], - [ - -73.343577, - 45.54858 - ], - [ - -73.344181, - 45.548974 - ], - [ - -73.344947, - 45.549443 - ], - [ - -73.345617, - 45.549986 - ], - [ - -73.349406, - 45.552734 - ], - [ - -73.349543, - 45.552787 - ], - [ - -73.349542, - 45.552788 - ], - [ - -73.348228, - 45.55486 - ], - [ - -73.34728, - 45.556361 - ], - [ - -73.346583, - 45.557463 - ], - [ - -73.34632, - 45.557858 - ], - [ - -73.346031, - 45.558227 - ], - [ - -73.345597, - 45.558667 - ], - [ - -73.344626, - 45.559377 - ], - [ - -73.343366, - 45.56023 - ], - [ - -73.342106, - 45.561092 - ], - [ - -73.340712, - 45.56203 - ], - [ - -73.339917, - 45.56257 - ], - [ - -73.339381, - 45.562188 - ], - [ - -73.3392, - 45.562103 - ], - [ - -73.338822, - 45.561945 - ], - [ - -73.338819, - 45.561945 - ], - [ - -73.337079, - 45.5607 - ], - [ - -73.336928, - 45.560595 - ] - ] - }, - "id": 242, - "properties": { - "id": "07ed83a7-7078-4dfe-9f23-bcc4bff46ef6", - "data": { - "gtfs": { - "shape_id": "299_1_R" - }, - "segments": [ - { - "distanceMeters": 2001, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 901, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 6034, - "travelTimeSeconds": 420 - }, - { - "distanceMeters": 7265, - "travelTimeSeconds": 540 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 375, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 317, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 479, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 426, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 2114, - "travelTimeSeconds": 250 - }, - { - "distanceMeters": 11, - "travelTimeSeconds": 2 - }, - { - "distanceMeters": 2698, - "travelTimeSeconds": 598 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 270, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 25326, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 14916.493937491066, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.38, - "travelTimeWithoutDwellTimesSeconds": 2700, - "operatingTimeWithLayoverTimeSeconds": 2970, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2700, - "operatingSpeedWithLayoverMetersPerSecond": 8.53, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.38 - }, - "mode": "bus", - "name": "Ski St-Bruno", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", - "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", - "4aea3348-4995-4fc9-b06f-6698460c1f1d", - "4d3db5af-874a-4a4c-8a87-68ecc590af13", - "f20c1a67-6c7e-41a3-a85d-9c7b49ac0386", - "652ad35d-f3c9-49c6-b2de-8d15cab5cafb", - "7ac3961a-0b0e-47c8-a264-69b6edbbd2b9", - "9f67f31c-9015-4b9c-b5eb-210a53be617b", - "60ea8a19-f195-4f9b-b60e-122a63bd86bd", - "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", - "2c952684-5d97-4238-ae18-51cba6c9775e", - "819e2afa-bfef-47b3-8a41-a55f4c2f9156", - "0dae6aad-c792-48fd-a50b-e498ec730741", - "16815d0a-9758-4c90-a572-66e1110e9895", - "a34242f1-b39e-4075-8b98-da7cc20aa985", - "c144cdde-b47b-40cf-b640-e6399771f99b", - "a5fa3371-93c4-47f9-8972-32a538fcab1f", - "d4b97f89-0d15-4037-9293-a46292a3b826", - "ab32c22a-056a-40bc-bb99-58c049d50498", - "cecd1a42-805e-4b1f-971e-5486564ef354", - "d966dcb1-f630-4c07-ab42-a7b1e296ff4f", - "b46cca05-fe3c-4c2a-ae1b-28c207027915", - "b1e10293-5bab-4099-bc2f-f533b141b0c5", - "b1e10293-5bab-4099-bc2f-f533b141b0c5", - "0016b55f-c207-48df-a47e-555a19e3c2d7" - ], - "stops": [], - "line_id": "7d071167-2026-48a5-a120-12a40ba5b3e6", - "segments": [ - 0, - 65, - 89, - 177, - 245, - 250, - 254, - 259, - 271, - 274, - 275, - 282, - 287, - 295, - 305, - 309, - 310, - 314, - 322, - 326, - 341, - 348, - 372, - 408, - 409 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 242, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.336928, - 45.560595 - ], - [ - -73.336753, - 45.560473 - ], - [ - -73.3366, - 45.560565 - ], - [ - -73.3366, - 45.560619 - ], - [ - -73.3366, - 45.560678 - ], - [ - -73.336786, - 45.560795 - ], - [ - -73.336956, - 45.56078 - ], - [ - -73.337079, - 45.5607 - ], - [ - -73.338819, - 45.561945 - ], - [ - -73.339227, - 45.562235 - ], - [ - -73.339806, - 45.562645 - ], - [ - -73.339917, - 45.56257 - ], - [ - -73.33992, - 45.562567 - ], - [ - -73.340712, - 45.56203 - ], - [ - -73.342106, - 45.561092 - ], - [ - -73.343366, - 45.56023 - ], - [ - -73.344626, - 45.559377 - ], - [ - -73.345597, - 45.558667 - ], - [ - -73.346031, - 45.558227 - ], - [ - -73.34632, - 45.557858 - ], - [ - -73.346583, - 45.557463 - ], - [ - -73.34728, - 45.556361 - ], - [ - -73.348228, - 45.55486 - ], - [ - -73.349542, - 45.552788 - ], - [ - -73.349543, - 45.552787 - ], - [ - -73.349406, - 45.552734 - ], - [ - -73.345617, - 45.549986 - ], - [ - -73.344947, - 45.549443 - ], - [ - -73.344181, - 45.548974 - ], - [ - -73.343577, - 45.54858 - ], - [ - -73.343542, - 45.54843 - ], - [ - -73.343583, - 45.548284 - ], - [ - -73.343895, - 45.547841 - ], - [ - -73.344201, - 45.547438 - ], - [ - -73.344313, - 45.547242 - ], - [ - -73.344334, - 45.547081 - ], - [ - -73.344304, - 45.546963 - ], - [ - -73.344289, - 45.546838 - ], - [ - -73.344055, - 45.546624 - ], - [ - -73.343685, - 45.546513 - ], - [ - -73.342943, - 45.546411 - ], - [ - -73.342801, - 45.546343 - ], - [ - -73.34272, - 45.546261 - ], - [ - -73.342761, - 45.546101 - ], - [ - -73.342964, - 45.546044 - ], - [ - -73.343048, - 45.545691 - ], - [ - -73.343093, - 45.545501 - ], - [ - -73.342915, - 45.545479 - ], - [ - -73.342883, - 45.545609 - ], - [ - -73.342802, - 45.545935 - ], - [ - -73.342778, - 45.546033 - ], - [ - -73.342761, - 45.546101 - ], - [ - -73.34272, - 45.546261 - ], - [ - -73.342801, - 45.546343 - ], - [ - -73.342943, - 45.546411 - ], - [ - -73.343685, - 45.546513 - ], - [ - -73.344055, - 45.546624 - ], - [ - -73.344289, - 45.546838 - ], - [ - -73.344304, - 45.546963 - ], - [ - -73.344334, - 45.547081 - ], - [ - -73.344313, - 45.547242 - ], - [ - -73.344201, - 45.547438 - ], - [ - -73.343895, - 45.547841 - ], - [ - -73.343583, - 45.548284 - ], - [ - -73.343542, - 45.54843 - ], - [ - -73.343577, - 45.54858 - ], - [ - -73.344181, - 45.548974 - ], - [ - -73.344947, - 45.549443 - ], - [ - -73.345617, - 45.549986 - ], - [ - -73.349406, - 45.552734 - ], - [ - -73.349543, - 45.552787 - ], - [ - -73.34999, - 45.552082 - ], - [ - -73.351077, - 45.550338 - ], - [ - -73.351753, - 45.549331 - ], - [ - -73.352174, - 45.548787 - ], - [ - -73.352717, - 45.548144 - ], - [ - -73.352773, - 45.548077 - ], - [ - -73.352966, - 45.547879 - ], - [ - -73.354019, - 45.546809 - ], - [ - -73.354173, - 45.546648 - ], - [ - -73.355239, - 45.545533 - ], - [ - -73.35574, - 45.545012 - ], - [ - -73.355855, - 45.544895 - ], - [ - -73.355917, - 45.544828 - ], - [ - -73.356039, - 45.544697 - ], - [ - -73.356571, - 45.544149 - ], - [ - -73.356741, - 45.543942 - ], - [ - -73.356831, - 45.543826 - ], - [ - -73.356895, - 45.543736 - ], - [ - -73.356967, - 45.543641 - ], - [ - -73.357007, - 45.543556 - ], - [ - -73.357063, - 45.543466 - ], - [ - -73.357103, - 45.54338 - ], - [ - -73.357138, - 45.543286 - ], - [ - -73.357183, - 45.543183 - ], - [ - -73.357218, - 45.54307 - ], - [ - -73.357233, - 45.542994 - ], - [ - -73.357256, - 45.542917 - ], - [ - -73.357282, - 45.542827 - ], - [ - -73.357295, - 45.542728 - ], - [ - -73.357308, - 45.542647 - ], - [ - -73.357308, - 45.542557 - ], - [ - -73.357308, - 45.54244 - ], - [ - -73.357309, - 45.542387 - ], - [ - -73.357309, - 45.542332 - ], - [ - -73.357309, - 45.542233 - ], - [ - -73.357285, - 45.541622 - ], - [ - -73.357285, - 45.541541 - ], - [ - -73.357244, - 45.540879 - ], - [ - -73.357239, - 45.540776 - ], - [ - -73.357226, - 45.540389 - ], - [ - -73.3571, - 45.537946 - ], - [ - -73.35709, - 45.537752 - ], - [ - -73.356949, - 45.537752 - ], - [ - -73.356808, - 45.537752 - ], - [ - -73.35659, - 45.537733 - ], - [ - -73.356488, - 45.537706 - ], - [ - -73.356386, - 45.537688 - ], - [ - -73.356194, - 45.537616 - ], - [ - -73.356028, - 45.537517 - ], - [ - -73.35581, - 45.537381 - ], - [ - -73.355606, - 45.537228 - ], - [ - -73.354978, - 45.536786 - ], - [ - -73.354672, - 45.536579 - ], - [ - -73.35439, - 45.536363 - ], - [ - -73.354361, - 45.536342 - ], - [ - -73.354237, - 45.536255 - ], - [ - -73.354085, - 45.536133 - ], - [ - -73.353353, - 45.535601 - ], - [ - -73.352939, - 45.535307 - ], - [ - -73.352814, - 45.535218 - ], - [ - -73.352683, - 45.535132 - ], - [ - -73.352431, - 45.534966 - ], - [ - -73.352156, - 45.534794 - ], - [ - -73.351899, - 45.534632 - ], - [ - -73.351631, - 45.534461 - ], - [ - -73.351414, - 45.534325 - ], - [ - -73.351196, - 45.534181 - ], - [ - -73.350966, - 45.53401 - ], - [ - -73.350923, - 45.533979 - ], - [ - -73.350778, - 45.533879 - ], - [ - -73.350008, - 45.533298 - ], - [ - -73.348934, - 45.532517 - ], - [ - -73.348768, - 45.532396 - ], - [ - -73.347317, - 45.531314 - ], - [ - -73.346954, - 45.531044 - ], - [ - -73.345627, - 45.530086 - ], - [ - -73.345369, - 45.529899 - ], - [ - -73.345287, - 45.529841 - ], - [ - -73.344605, - 45.529334 - ], - [ - -73.343849, - 45.528772 - ], - [ - -73.343655, - 45.528635 - ], - [ - -73.343543, - 45.528556 - ], - [ - -73.343198, - 45.528321 - ], - [ - -73.342827, - 45.528033 - ], - [ - -73.342521, - 45.52779 - ], - [ - -73.342252, - 45.527555 - ], - [ - -73.342229, - 45.527533 - ], - [ - -73.342074, - 45.527389 - ], - [ - -73.341994, - 45.527303 - ], - [ - -73.34183, - 45.527172 - ], - [ - -73.341462, - 45.526915 - ], - [ - -73.341034, - 45.526636 - ], - [ - -73.340738, - 45.526442 - ], - [ - -73.340568, - 45.526316 - ], - [ - -73.340443, - 45.526239 - ], - [ - -73.340005, - 45.525968 - ], - [ - -73.339713, - 45.525764 - ], - [ - -73.339197, - 45.525405 - ], - [ - -73.338597, - 45.524994 - ], - [ - -73.338368, - 45.524837 - ], - [ - -73.33868, - 45.524654 - ], - [ - -73.338727, - 45.524626 - ], - [ - -73.339575, - 45.524088 - ], - [ - -73.340043, - 45.523791 - ], - [ - -73.340102, - 45.523754 - ], - [ - -73.340177, - 45.523724 - ], - [ - -73.340357, - 45.523652 - ], - [ - -73.340425, - 45.523602 - ], - [ - -73.341435, - 45.522911 - ], - [ - -73.341612, - 45.52279 - ], - [ - -73.342452, - 45.522224 - ], - [ - -73.343053, - 45.521823 - ], - [ - -73.343254, - 45.52169 - ], - [ - -73.343631, - 45.521425 - ], - [ - -73.343894, - 45.521227 - ], - [ - -73.344046, - 45.521061 - ], - [ - -73.344147, - 45.520913 - ], - [ - -73.344274, - 45.520719 - ], - [ - -73.344347, - 45.520476 - ], - [ - -73.344358, - 45.520296 - ], - [ - -73.344344, - 45.52004 - ], - [ - -73.34432, - 45.519822 - ], - [ - -73.344273, - 45.519406 - ], - [ - -73.344239, - 45.519032 - ], - [ - -73.344184, - 45.518506 - ], - [ - -73.344137, - 45.518006 - ], - [ - -73.344045, - 45.516998 - ], - [ - -73.34401, - 45.516651 - ], - [ - -73.343805, - 45.514586 - ], - [ - -73.343784, - 45.514412 - ], - [ - -73.343763, - 45.514238 - ], - [ - -73.343701, - 45.513718 - ], - [ - -73.343799, - 45.513709 - ], - [ - -73.344787, - 45.513645 - ], - [ - -73.357647, - 45.512814 - ], - [ - -73.358491, - 45.512756 - ], - [ - -73.359423, - 45.512694 - ], - [ - -73.359555, - 45.512681 - ], - [ - -73.36081, - 45.512584 - ], - [ - -73.361813, - 45.512472 - ], - [ - -73.362822, - 45.512334 - ], - [ - -73.363276, - 45.512258 - ], - [ - -73.363561, - 45.512213 - ], - [ - -73.365307, - 45.511892 - ], - [ - -73.367381, - 45.511525 - ], - [ - -73.368785, - 45.511324 - ], - [ - -73.369875, - 45.511208 - ], - [ - -73.370223, - 45.511177 - ], - [ - -73.370922, - 45.511129 - ], - [ - -73.371015, - 45.511125 - ], - [ - -73.371649, - 45.511098 - ], - [ - -73.372619, - 45.511081 - ], - [ - -73.37324, - 45.511086 - ], - [ - -73.374187, - 45.511119 - ], - [ - -73.376015, - 45.51122 - ], - [ - -73.376407, - 45.511234 - ], - [ - -73.377357, - 45.511248 - ], - [ - -73.378321, - 45.51124 - ], - [ - -73.378967, - 45.511214 - ], - [ - -73.379618, - 45.511183 - ], - [ - -73.382611, - 45.511015 - ], - [ - -73.384597, - 45.510914 - ], - [ - -73.392277, - 45.510503 - ], - [ - -73.393587, - 45.510437 - ], - [ - -73.396575, - 45.510246 - ], - [ - -73.416479, - 45.508939 - ], - [ - -73.422517, - 45.50853 - ], - [ - -73.424264, - 45.508396 - ], - [ - -73.424552, - 45.508369 - ], - [ - -73.425839, - 45.508343 - ], - [ - -73.427203, - 45.508276 - ], - [ - -73.430462, - 45.508094 - ], - [ - -73.430945, - 45.50806 - ], - [ - -73.431367, - 45.508031 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431709, - 45.508009 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.432209, - 45.507974 - ], - [ - -73.435178, - 45.507773 - ], - [ - -73.437575, - 45.507662 - ], - [ - -73.438988, - 45.507572 - ], - [ - -73.440344, - 45.507425 - ], - [ - -73.445881, - 45.507063 - ], - [ - -73.452257, - 45.506638 - ], - [ - -73.452565, - 45.506616 - ], - [ - -73.453776, - 45.50654 - ], - [ - -73.455247, - 45.506419 - ], - [ - -73.456957, - 45.50624 - ], - [ - -73.460279, - 45.505832 - ], - [ - -73.460374, - 45.505823 - ], - [ - -73.461182, - 45.505728 - ], - [ - -73.463671, - 45.505509 - ], - [ - -73.465111, - 45.505401 - ], - [ - -73.467755, - 45.505222 - ], - [ - -73.468692, - 45.505168 - ], - [ - -73.470746, - 45.505025 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492473, - 45.509785 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492941, - 45.51012 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.503986, - 45.514143 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505129, - 45.514486 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519889, - 45.523386 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.52024, - 45.52439 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 243, - "properties": { - "id": "2a83b312-3711-43cd-83a8-5454c8ee4f4f", - "data": { - "gtfs": { - "shape_id": "299_1_A" - }, - "segments": [ - { - "distanceMeters": 2927, - "travelTimeSeconds": 600 - }, - { - "distanceMeters": 11, - "travelTimeSeconds": 1 - }, - { - "distanceMeters": 2057, - "travelTimeSeconds": 251 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 495, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 389, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 92 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 6949, - "travelTimeSeconds": 540 - }, - { - "distanceMeters": 5275, - "travelTimeSeconds": 420 - }, - { - "distanceMeters": 1072, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 1961, - "travelTimeSeconds": 360 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 294, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 24481, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 14916.493937491066, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.33, - "travelTimeWithoutDwellTimesSeconds": 2940, - "operatingTimeWithLayoverTimeSeconds": 3234, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2940, - "operatingSpeedWithLayoverMetersPerSecond": 7.57, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.33 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "0016b55f-c207-48df-a47e-555a19e3c2d7", - "b1e10293-5bab-4099-bc2f-f533b141b0c5", - "b1e10293-5bab-4099-bc2f-f533b141b0c5", - "cda3afce-794c-43b8-9347-1b384d64a116", - "ce2fb937-41be-4394-bf3f-6bb0d8d6413a", - "cecd1a42-805e-4b1f-971e-5486564ef354", - "ab32c22a-056a-40bc-bb99-58c049d50498", - "d4b97f89-0d15-4037-9293-a46292a3b826", - "a5fa3371-93c4-47f9-8972-32a538fcab1f", - "c144cdde-b47b-40cf-b640-e6399771f99b", - "a34242f1-b39e-4075-8b98-da7cc20aa985", - "16815d0a-9758-4c90-a572-66e1110e9895", - "0dae6aad-c792-48fd-a50b-e498ec730741", - "4451201f-23d0-4b66-a2ac-a72029810b3b", - "2c952684-5d97-4238-ae18-51cba6c9775e", - "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", - "60ea8a19-f195-4f9b-b60e-122a63bd86bd", - "9f67f31c-9015-4b9c-b5eb-210a53be617b", - "106469e3-38d2-4015-b627-c243c3d7f8cd", - "0910a11d-1b83-4a5b-9c01-30b9a6d926ef", - "4c4fb532-1ed3-4dc8-ab02-b2a6e87e7b90", - "2c8a6d09-2eb8-47e3-86bb-ac6501351f3b", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "7d071167-2026-48a5-a120-12a40ba5b3e6", - "segments": [ - 0, - 49, - 50, - 83, - 103, - 111, - 125, - 129, - 139, - 142, - 144, - 146, - 157, - 165, - 169, - 176, - 179, - 182, - 192, - 198, - 200, - 244, - 301, - 322 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 243, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519446, - 45.523424 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519332, - 45.526816 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517858, - 45.526792 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517465, - 45.528168 - ], - [ - -73.517458, - 45.528249 - ], - [ - -73.517471, - 45.528385 - ], - [ - -73.517504, - 45.528565 - ], - [ - -73.517516, - 45.528652 - ], - [ - -73.517553, - 45.52877 - ], - [ - -73.517635, - 45.529002 - ], - [ - -73.517693, - 45.529249 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.51956, - 45.531975 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501341, - 45.549928 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.499756, - 45.550039 - ], - [ - -73.499583, - 45.550043 - ], - [ - -73.499254, - 45.550048 - ], - [ - -73.49904, - 45.550039 - ], - [ - -73.498716, - 45.549998 - ], - [ - -73.49829, - 45.549868 - ], - [ - -73.497924, - 45.54971 - ], - [ - -73.497576, - 45.54953 - ], - [ - -73.497225, - 45.549332 - ], - [ - -73.497041, - 45.549211 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491296, - 45.54289 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.460868, - 45.531797 - ], - [ - -73.460137, - 45.531468 - ], - [ - -73.459095, - 45.531013 - ], - [ - -73.457591, - 45.530387 - ], - [ - -73.456631, - 45.529983 - ], - [ - -73.45522, - 45.529388 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.453608, - 45.528719 - ], - [ - -73.45247, - 45.528245 - ], - [ - -73.452419, - 45.528224 - ], - [ - -73.452095, - 45.528089 - ], - [ - -73.451849, - 45.527987 - ], - [ - -73.449586, - 45.5271 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.449239, - 45.527747 - ], - [ - -73.4491, - 45.528013 - ], - [ - -73.448776, - 45.528634 - ], - [ - -73.448476, - 45.529249 - ], - [ - -73.448445, - 45.529313 - ], - [ - -73.448085, - 45.530001 - ], - [ - -73.448024, - 45.530118 - ], - [ - -73.447862, - 45.53032 - ], - [ - -73.44764, - 45.530474 - ] - ] - }, - "id": 244, - "properties": { - "id": "d988941f-e79e-4196-a3c9-3a1dea0e71ec", - "data": { - "gtfs": { - "shape_id": "410_1_R" - }, - "segments": [ - { - "distanceMeters": 8769, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 102 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 43 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9434, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 588.7327924596806, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 39.31, - "travelTimeWithoutDwellTimesSeconds": 240, - "operatingTimeWithLayoverTimeSeconds": 420, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 240, - "operatingSpeedWithLayoverMetersPerSecond": 22.46, - "averageSpeedWithoutDwellTimesMetersPerSecond": 39.31 - }, - "mode": "bus", - "name": "Sect. B Vieux-Longueuil", - "color": "#A32638", - "nodes": [ - "6e83e147-802a-4695-95f3-96585bd15c4a", - "51878141-1194-4666-977c-0597ee638ffb", - "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "da0ea2a1-8305-4096-84b5-3da6997f0293", - "69483ac1-331d-4f0e-93b5-d8134f380763" - ], - "stops": [], - "line_id": "81f60ceb-ee5b-49b7-95c0-fc9668d02cbd", - "segments": [ - 0, - 238, - 245, - 247 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 244, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.44764, - 45.530474 - ], - [ - -73.447543, - 45.530541 - ], - [ - -73.448141, - 45.53172 - ], - [ - -73.448349, - 45.532116 - ], - [ - -73.448438, - 45.5323 - ], - [ - -73.448478, - 45.532371 - ], - [ - -73.448512, - 45.532432 - ], - [ - -73.448557, - 45.532512 - ], - [ - -73.44871, - 45.532719 - ], - [ - -73.448896, - 45.532926 - ], - [ - -73.449063, - 45.533088 - ], - [ - -73.44929, - 45.533254 - ], - [ - -73.449502, - 45.533408 - ], - [ - -73.449736, - 45.533561 - ], - [ - -73.449982, - 45.533682 - ], - [ - -73.450155, - 45.533757 - ], - [ - -73.450209, - 45.533781 - ], - [ - -73.450391, - 45.533867 - ], - [ - -73.450743, - 45.534002 - ], - [ - -73.450985, - 45.534056 - ], - [ - -73.451317, - 45.534124 - ], - [ - -73.45172, - 45.534205 - ], - [ - -73.451896, - 45.534218 - ], - [ - -73.45205, - 45.534214 - ], - [ - -73.452169, - 45.534206 - ], - [ - -73.452182, - 45.534205 - ], - [ - -73.452341, - 45.534169 - ], - [ - -73.452481, - 45.534133 - ], - [ - -73.452644, - 45.534061 - ], - [ - -73.45275, - 45.533989 - ], - [ - -73.453619, - 45.533409 - ], - [ - -73.453895, - 45.533306 - ], - [ - -73.454221, - 45.533257 - ], - [ - -73.454729, - 45.533284 - ], - [ - -73.454807, - 45.533288 - ], - [ - -73.45503, - 45.53332 - ], - [ - -73.455242, - 45.53336 - ], - [ - -73.455391, - 45.533387 - ], - [ - -73.455523, - 45.533433 - ], - [ - -73.455674, - 45.5335 - ], - [ - -73.455774, - 45.533559 - ], - [ - -73.455836, - 45.533604 - ], - [ - -73.455934, - 45.53369 - ], - [ - -73.455959, - 45.533712 - ], - [ - -73.456036, - 45.533788 - ], - [ - -73.456095, - 45.533878 - ], - [ - -73.456189, - 45.534099 - ], - [ - -73.456214, - 45.534256 - ], - [ - -73.456189, - 45.534414 - ], - [ - -73.456134, - 45.534589 - ], - [ - -73.456071, - 45.534695 - ], - [ - -73.456046, - 45.534737 - ], - [ - -73.455923, - 45.53489 - ], - [ - -73.455755, - 45.535043 - ], - [ - -73.45561, - 45.535133 - ], - [ - -73.455504, - 45.535196 - ], - [ - -73.455381, - 45.535259 - ], - [ - -73.455279, - 45.535296 - ], - [ - -73.455196, - 45.535327 - ], - [ - -73.454943, - 45.535416 - ], - [ - -73.454703, - 45.535484 - ], - [ - -73.45458, - 45.535533 - ], - [ - -73.454434, - 45.535583 - ], - [ - -73.454232, - 45.535664 - ], - [ - -73.454095, - 45.53574 - ], - [ - -73.453985, - 45.535794 - ], - [ - -73.453834, - 45.535911 - ], - [ - -73.453678, - 45.536032 - ], - [ - -73.453562, - 45.536158 - ], - [ - -73.45347, - 45.536284 - ], - [ - -73.453395, - 45.536388 - ], - [ - -73.453302, - 45.53664 - ], - [ - -73.453087, - 45.537457 - ], - [ - -73.453056, - 45.537575 - ], - [ - -73.45293, - 45.537571 - ], - [ - -73.452702, - 45.537575 - ], - [ - -73.452033, - 45.537615 - ], - [ - -73.45161, - 45.537656 - ], - [ - -73.451409, - 45.537665 - ], - [ - -73.451204, - 45.537642 - ], - [ - -73.451019, - 45.537606 - ], - [ - -73.450864, - 45.537552 - ], - [ - -73.450788, - 45.537518 - ], - [ - -73.450674, - 45.537466 - ], - [ - -73.449848, - 45.536971 - ], - [ - -73.449118, - 45.536538 - ], - [ - -73.449006, - 45.536471 - ], - [ - -73.448626, - 45.536264 - ], - [ - -73.448357, - 45.536192 - ], - [ - -73.447442, - 45.535976 - ], - [ - -73.447213, - 45.535913 - ], - [ - -73.447099, - 45.535867 - ], - [ - -73.446936, - 45.5358 - ], - [ - -73.446746, - 45.535696 - ], - [ - -73.446503, - 45.53552 - ], - [ - -73.446498, - 45.535516 - ], - [ - -73.446412, - 45.535444 - ], - [ - -73.446305, - 45.535359 - ], - [ - -73.446216, - 45.535273 - ], - [ - -73.445977, - 45.535035 - ], - [ - -73.44579, - 45.534868 - ], - [ - -73.445666, - 45.534784 - ], - [ - -73.445571, - 45.534719 - ], - [ - -73.445347, - 45.534582 - ], - [ - -73.445234, - 45.534512 - ], - [ - -73.445013, - 45.5344 - ], - [ - -73.444564, - 45.534238 - ], - [ - -73.444063, - 45.534075 - ], - [ - -73.444212, - 45.533801 - ], - [ - -73.444232, - 45.533764 - ], - [ - -73.444441, - 45.533378 - ], - [ - -73.44472, - 45.532816 - ], - [ - -73.445133, - 45.532069 - ], - [ - -73.445159, - 45.532011 - ], - [ - -73.445217, - 45.531876 - ], - [ - -73.445225, - 45.531848 - ], - [ - -73.445262, - 45.531714 - ], - [ - -73.445416, - 45.531246 - ], - [ - -73.445655, - 45.53081 - ], - [ - -73.445839, - 45.530633 - ], - [ - -73.44588, - 45.530594 - ], - [ - -73.445934, - 45.530553 - ], - [ - -73.445986, - 45.530495 - ], - [ - -73.446078, - 45.530436 - ], - [ - -73.446188, - 45.530392 - ], - [ - -73.446303, - 45.53036 - ], - [ - -73.446426, - 45.53032 - ], - [ - -73.446558, - 45.530297 - ], - [ - -73.446722, - 45.530284 - ], - [ - -73.446778, - 45.530284 - ], - [ - -73.446897, - 45.530293 - ], - [ - -73.44702, - 45.530311 - ], - [ - -73.44713, - 45.530342 - ], - [ - -73.447236, - 45.530379 - ], - [ - -73.447385, - 45.530442 - ], - [ - -73.44747, - 45.530495 - ], - [ - -73.447543, - 45.530541 - ], - [ - -73.447862, - 45.53032 - ], - [ - -73.448024, - 45.530118 - ], - [ - -73.448085, - 45.530001 - ], - [ - -73.448297, - 45.529596 - ], - [ - -73.448362, - 45.529472 - ], - [ - -73.448445, - 45.529313 - ], - [ - -73.448776, - 45.528634 - ], - [ - -73.449239, - 45.527747 - ], - [ - -73.449413, - 45.527436 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.45067, - 45.527735 - ], - [ - -73.450838, - 45.527798 - ], - [ - -73.451123, - 45.527906 - ], - [ - -73.451519, - 45.528063 - ], - [ - -73.452162, - 45.528357 - ], - [ - -73.452276, - 45.528409 - ], - [ - -73.452337, - 45.528437 - ], - [ - -73.45321, - 45.528797 - ], - [ - -73.454095, - 45.529149 - ], - [ - -73.454898, - 45.529493 - ], - [ - -73.454978, - 45.529527 - ], - [ - -73.45507, - 45.529563 - ], - [ - -73.457292, - 45.530467 - ], - [ - -73.457482, - 45.530545 - ], - [ - -73.458332, - 45.530905 - ], - [ - -73.460581, - 45.531882 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.462028, - 45.532627 - ], - [ - -73.462751, - 45.533003 - ], - [ - -73.463873, - 45.533665 - ], - [ - -73.464875, - 45.534543 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.46881, - 45.537048 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469941, - 45.537318 - ], - [ - -73.470305, - 45.537406 - ], - [ - -73.470749, - 45.537487 - ], - [ - -73.471335, - 45.537563 - ], - [ - -73.471845, - 45.53759 - ], - [ - -73.472146, - 45.537591 - ], - [ - -73.472355, - 45.537591 - ], - [ - -73.473126, - 45.537555 - ], - [ - -73.473826, - 45.537492 - ], - [ - -73.474517, - 45.537429 - ], - [ - -73.474599, - 45.537423 - ], - [ - -73.475173, - 45.53738 - ], - [ - -73.47563, - 45.537344 - ], - [ - -73.476192, - 45.537353 - ], - [ - -73.476662, - 45.537394 - ], - [ - -73.477026, - 45.537434 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.477884, - 45.5376 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491035, - 45.541427 - ], - [ - -73.491084, - 45.541584 - ], - [ - -73.491099, - 45.541724 - ], - [ - -73.491104, - 45.54182 - ], - [ - -73.491106, - 45.541854 - ], - [ - -73.491092, - 45.542156 - ], - [ - -73.491081, - 45.542381 - ], - [ - -73.49104, - 45.543146 - ], - [ - -73.490998, - 45.543726 - ], - [ - -73.491037, - 45.544117 - ], - [ - -73.491071, - 45.544252 - ], - [ - -73.491113, - 45.544396 - ], - [ - -73.491272, - 45.544698 - ], - [ - -73.491367, - 45.544855 - ], - [ - -73.491449, - 45.544981 - ], - [ - -73.491608, - 45.545148 - ], - [ - -73.491886, - 45.545409 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.492798, - 45.546135 - ], - [ - -73.492868, - 45.546192 - ], - [ - -73.492976, - 45.546278 - ], - [ - -73.493835, - 45.546966 - ], - [ - -73.494604, - 45.547573 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.495745, - 45.548495 - ], - [ - -73.495811, - 45.548549 - ], - [ - -73.49673, - 45.549278 - ], - [ - -73.497087, - 45.549548 - ], - [ - -73.49736, - 45.549719 - ], - [ - -73.497501, - 45.549805 - ], - [ - -73.497722, - 45.549908 - ], - [ - -73.497944, - 45.549998 - ], - [ - -73.498136, - 45.55007 - ], - [ - -73.498405, - 45.550151 - ], - [ - -73.498716, - 45.550237 - ], - [ - -73.499009, - 45.550295 - ], - [ - -73.499514, - 45.550349 - ], - [ - -73.499763, - 45.550363 - ], - [ - -73.501515, - 45.550448 - ], - [ - -73.502446, - 45.550493 - ], - [ - -73.502797, - 45.550502 - ], - [ - -73.502913, - 45.550498 - ], - [ - -73.503017, - 45.550484 - ], - [ - -73.503194, - 45.550453 - ], - [ - -73.503355, - 45.550399 - ], - [ - -73.503504, - 45.550327 - ], - [ - -73.503636, - 45.550237 - ], - [ - -73.503751, - 45.550133 - ], - [ - -73.503955, - 45.549904 - ], - [ - -73.504046, - 45.549787 - ], - [ - -73.504119, - 45.549647 - ], - [ - -73.50416, - 45.549508 - ], - [ - -73.504212, - 45.548909 - ], - [ - -73.504289, - 45.548585 - ], - [ - -73.504342, - 45.548423 - ], - [ - -73.504477, - 45.548095 - ], - [ - -73.504558, - 45.547933 - ], - [ - -73.504654, - 45.547771 - ], - [ - -73.504887, - 45.547461 - ], - [ - -73.505281, - 45.546997 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522568, - 45.530233 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.51794, - 45.525389 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 245, - "properties": { - "id": "09afc387-5943-43aa-a7b4-b6220e25ea90", - "data": { - "gtfs": { - "shape_id": "410_1_A" - }, - "segments": [ - { - "distanceMeters": 227, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 736, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 721, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 1183, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 524, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 5139, - "travelTimeSeconds": 600 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13078, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5791.343632894528, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.78, - "travelTimeWithoutDwellTimesSeconds": 1680, - "operatingTimeWithLayoverTimeSeconds": 1860, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1680, - "operatingSpeedWithLayoverMetersPerSecond": 7.03, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.78 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "69483ac1-331d-4f0e-93b5-d8134f380763", - "66f007ae-d813-40cb-ab41-e87b10da3a72", - "6685b5fc-0f35-439d-9c20-c96b665d5201", - "c896d257-2942-4aba-aded-59e49480d892", - "62590a84-0f1e-43e0-8046-574d7d23d2e9", - "48a4676d-1da3-4489-8f80-1edfb1b61b1b", - "83c203fe-4b10-42fd-aafb-d9bc99f756b0", - "e5c2d9f4-1be6-458f-854f-8103a3048b8c", - "231dda72-d4b5-48ae-b714-5ce9d3802c45", - "25a5f82a-36a7-4a52-af2b-32a681f87765", - "8b3a553d-dad5-41ff-b228-80f338c4b0e0", - "210e532b-2acc-4a3e-b173-3471add098b1", - "51637772-6b85-4c49-a14a-4de104a8f1f5", - "23ef9461-bbd0-492e-8678-c51238629a13", - "69483ac1-331d-4f0e-93b5-d8134f380763", - "da0ea2a1-8305-4096-84b5-3da6997f0293", - "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "51878141-1194-4666-977c-0597ee638ffb", - "0a078431-12d6-4e73-9908-076c3a27e8ed", - "211cb268-dcfa-4d7b-810c-681bfa65d4c8", - "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "06d26eca-08e9-467e-9ff0-9595778162a0", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "038a22ba-4928-42fc-aaed-50fbd831df37", - "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", - "64648218-6b63-436c-9a46-4770987ba432", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "81f60ceb-ee5b-49b7-95c0-fc9668d02cbd", - "segments": [ - 0, - 5, - 15, - 24, - 33, - 50, - 66, - 72, - 82, - 85, - 94, - 109, - 115, - 119, - 135, - 141, - 145, - 151, - 156, - 159, - 165, - 178, - 199, - 231, - 246, - 252 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 245, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519446, - 45.523424 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519332, - 45.526816 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517858, - 45.526792 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517465, - 45.528168 - ], - [ - -73.517458, - 45.528249 - ], - [ - -73.517471, - 45.528385 - ], - [ - -73.517504, - 45.528565 - ], - [ - -73.517516, - 45.528652 - ], - [ - -73.517553, - 45.52877 - ], - [ - -73.517635, - 45.529002 - ], - [ - -73.517693, - 45.529249 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.51956, - 45.531975 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501341, - 45.549928 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.499756, - 45.550039 - ], - [ - -73.499583, - 45.550043 - ], - [ - -73.499254, - 45.550048 - ], - [ - -73.49904, - 45.550039 - ], - [ - -73.498716, - 45.549998 - ], - [ - -73.49829, - 45.549868 - ], - [ - -73.497924, - 45.54971 - ], - [ - -73.497576, - 45.54953 - ], - [ - -73.497225, - 45.549332 - ], - [ - -73.497041, - 45.549211 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494911, - 45.547557 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.492, - 45.545211 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491296, - 45.54289 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.49062, - 45.540708 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476976, - 45.537234 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.469383, - 45.536996 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461215, - 45.531967 - ], - [ - -73.460868, - 45.531797 - ], - [ - -73.460137, - 45.531468 - ], - [ - -73.459095, - 45.531013 - ], - [ - -73.457811, - 45.530479 - ], - [ - -73.457591, - 45.530387 - ], - [ - -73.456631, - 45.529983 - ], - [ - -73.45522, - 45.529388 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.454675, - 45.529163 - ], - [ - -73.453608, - 45.528719 - ], - [ - -73.45247, - 45.528245 - ], - [ - -73.452419, - 45.528224 - ], - [ - -73.452095, - 45.528089 - ], - [ - -73.451849, - 45.527987 - ], - [ - -73.449586, - 45.5271 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.449239, - 45.527747 - ], - [ - -73.4491, - 45.528013 - ], - [ - -73.448776, - 45.528634 - ], - [ - -73.448476, - 45.529249 - ], - [ - -73.448445, - 45.529313 - ], - [ - -73.448085, - 45.530001 - ], - [ - -73.448024, - 45.530118 - ], - [ - -73.447862, - 45.53032 - ], - [ - -73.44764, - 45.530474 - ] - ] - }, - "id": 246, - "properties": { - "id": "4ddd7e92-0567-4b0c-9b47-1b473dfa7c40", - "data": { - "gtfs": { - "shape_id": "410_1_R" - }, - "segments": [ - { - "distanceMeters": 4485, - "travelTimeSeconds": 480 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 1146, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 600, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 865, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 102 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 43 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9434, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5791.343632894528, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.15, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 6.29, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.15 - }, - "mode": "bus", - "name": "Sect. B Vieux-Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "8a3f1208-7ffb-452e-8ebb-c436acba82d6", - "2d7687a5-f458-4ce1-a3df-9639d89c0154", - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "81b3573e-d948-478d-a011-db20e21b0c62", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "53aec761-3dae-44a6-bc58-9d5003bfa1bb", - "6e83e147-802a-4695-95f3-96585bd15c4a", - "51878141-1194-4666-977c-0597ee638ffb", - "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "da0ea2a1-8305-4096-84b5-3da6997f0293", - "69483ac1-331d-4f0e-93b5-d8134f380763" - ], - "stops": [], - "line_id": "81f60ceb-ee5b-49b7-95c0-fc9668d02cbd", - "segments": [ - 0, - 129, - 135, - 159, - 189, - 210, - 235, - 239, - 244, - 246, - 253, - 255 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 246, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523209, - 45.523528 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523531, - 45.52794 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.502818, - 45.54899 - ], - [ - -73.502212, - 45.54962 - ], - [ - -73.501984, - 45.549836 - ], - [ - -73.50186, - 45.549926 - ], - [ - -73.501728, - 45.550007 - ], - [ - -73.501592, - 45.550079 - ], - [ - -73.501452, - 45.550133 - ], - [ - -73.501309, - 45.550183 - ], - [ - -73.50116, - 45.550219 - ], - [ - -73.501011, - 45.55025 - ], - [ - -73.500921, - 45.550259 - ], - [ - -73.500705, - 45.550282 - ], - [ - -73.500547, - 45.550286 - ], - [ - -73.49991, - 45.550295 - ], - [ - -73.499238, - 45.550226 - ], - [ - -73.498778, - 45.550153 - ], - [ - -73.498464, - 45.550065 - ], - [ - -73.498138, - 45.54995 - ], - [ - -73.497746, - 45.549767 - ], - [ - -73.497494, - 45.54961 - ], - [ - -73.497234, - 45.549428 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494909, - 45.547555 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.491999, - 45.54521 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491296, - 45.54289 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.490619, - 45.540707 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476974, - 45.537234 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.469382, - 45.536996 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461215, - 45.531967 - ], - [ - -73.460868, - 45.531797 - ], - [ - -73.460137, - 45.531468 - ], - [ - -73.459095, - 45.531013 - ], - [ - -73.45781, - 45.530479 - ], - [ - -73.457591, - 45.530387 - ], - [ - -73.456631, - 45.529983 - ], - [ - -73.45522, - 45.529388 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.454675, - 45.529163 - ], - [ - -73.453608, - 45.528719 - ], - [ - -73.45247, - 45.528245 - ], - [ - -73.452419, - 45.528224 - ], - [ - -73.452095, - 45.528089 - ], - [ - -73.451849, - 45.527987 - ], - [ - -73.449586, - 45.5271 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.449239, - 45.527747 - ], - [ - -73.4491, - 45.528013 - ], - [ - -73.448776, - 45.528634 - ], - [ - -73.448476, - 45.529249 - ], - [ - -73.448445, - 45.529313 - ], - [ - -73.448085, - 45.530001 - ], - [ - -73.448024, - 45.530118 - ], - [ - -73.447862, - 45.53032 - ], - [ - -73.44764, - 45.530474 - ] - ] - }, - "id": 247, - "properties": { - "id": "9dfa0db3-72d7-4958-9847-225b6d870a5d", - "data": { - "gtfs": { - "shape_id": "410_2_R" - }, - "segments": [ - { - "distanceMeters": 4596, - "travelTimeSeconds": 240 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 1146, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 600, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 865, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 127 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 54 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9545, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5791.343632894528, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.95, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 6.92, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.95 - }, - "mode": "bus", - "name": "Sect. B Vieux-Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "8a3f1208-7ffb-452e-8ebb-c436acba82d6", - "2d7687a5-f458-4ce1-a3df-9639d89c0154", - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "81b3573e-d948-478d-a011-db20e21b0c62", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "53aec761-3dae-44a6-bc58-9d5003bfa1bb", - "6e83e147-802a-4695-95f3-96585bd15c4a", - "51878141-1194-4666-977c-0597ee638ffb", - "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "da0ea2a1-8305-4096-84b5-3da6997f0293", - "69483ac1-331d-4f0e-93b5-d8134f380763" - ], - "stops": [], - "line_id": "81f60ceb-ee5b-49b7-95c0-fc9668d02cbd", - "segments": [ - 0, - 79, - 85, - 109, - 139, - 160, - 185, - 189, - 194, - 196, - 203, - 205 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 247, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523209, - 45.523528 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523531, - 45.52794 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.502818, - 45.54899 - ], - [ - -73.502212, - 45.54962 - ], - [ - -73.501984, - 45.549836 - ], - [ - -73.50186, - 45.549926 - ], - [ - -73.501728, - 45.550007 - ], - [ - -73.501592, - 45.550079 - ], - [ - -73.501452, - 45.550133 - ], - [ - -73.501309, - 45.550183 - ], - [ - -73.50116, - 45.550219 - ], - [ - -73.501011, - 45.55025 - ], - [ - -73.500921, - 45.550259 - ], - [ - -73.500705, - 45.550282 - ], - [ - -73.500547, - 45.550286 - ], - [ - -73.49991, - 45.550295 - ], - [ - -73.499238, - 45.550226 - ], - [ - -73.498778, - 45.550153 - ], - [ - -73.498464, - 45.550065 - ], - [ - -73.498138, - 45.54995 - ], - [ - -73.497746, - 45.549767 - ], - [ - -73.497494, - 45.54961 - ], - [ - -73.497234, - 45.549428 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491296, - 45.54289 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476974, - 45.537234 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.469382, - 45.536996 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461215, - 45.531967 - ], - [ - -73.460868, - 45.531797 - ], - [ - -73.460137, - 45.531468 - ], - [ - -73.459095, - 45.531013 - ], - [ - -73.45781, - 45.530479 - ], - [ - -73.457591, - 45.530387 - ], - [ - -73.456631, - 45.529983 - ], - [ - -73.45522, - 45.529388 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.454675, - 45.529163 - ], - [ - -73.453608, - 45.528719 - ], - [ - -73.45247, - 45.528245 - ], - [ - -73.452419, - 45.528224 - ], - [ - -73.452095, - 45.528089 - ], - [ - -73.451849, - 45.527987 - ], - [ - -73.449586, - 45.5271 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.449239, - 45.527747 - ], - [ - -73.4491, - 45.528013 - ], - [ - -73.448776, - 45.528634 - ], - [ - -73.448476, - 45.529249 - ], - [ - -73.448445, - 45.529313 - ], - [ - -73.448085, - 45.530001 - ], - [ - -73.448024, - 45.530118 - ], - [ - -73.447862, - 45.53032 - ], - [ - -73.44764, - 45.530474 - ] - ] - }, - "id": 248, - "properties": { - "id": "cc1e0b9f-be39-470b-88b1-726a22ce99cf", - "data": { - "gtfs": { - "shape_id": "410_2_R" - }, - "segments": [ - { - "distanceMeters": 6619, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 600, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 865, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 127 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 54 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9545, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3545.9829182265617, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 12.24, - "travelTimeWithoutDwellTimesSeconds": 780, - "operatingTimeWithLayoverTimeSeconds": 960, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 780, - "operatingSpeedWithLayoverMetersPerSecond": 9.94, - "averageSpeedWithoutDwellTimesMetersPerSecond": 12.24 - }, - "mode": "bus", - "name": "Sect. B Vieux-Longueuil", - "color": "#A32638", - "nodes": [ - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "81b3573e-d948-478d-a011-db20e21b0c62", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "53aec761-3dae-44a6-bc58-9d5003bfa1bb", - "6e83e147-802a-4695-95f3-96585bd15c4a", - "51878141-1194-4666-977c-0597ee638ffb", - "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "da0ea2a1-8305-4096-84b5-3da6997f0293", - "69483ac1-331d-4f0e-93b5-d8134f380763" - ], - "stops": [], - "line_id": "81f60ceb-ee5b-49b7-95c0-fc9668d02cbd", - "segments": [ - 0, - 136, - 157, - 182, - 186, - 191, - 193, - 200, - 202 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 248, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.44764, - 45.530474 - ], - [ - -73.447543, - 45.530541 - ], - [ - -73.448141, - 45.53172 - ], - [ - -73.448349, - 45.532116 - ], - [ - -73.448438, - 45.5323 - ], - [ - -73.448512, - 45.532432 - ], - [ - -73.448557, - 45.532512 - ], - [ - -73.44871, - 45.532719 - ], - [ - -73.448896, - 45.532926 - ], - [ - -73.449063, - 45.533088 - ], - [ - -73.44929, - 45.533254 - ], - [ - -73.449502, - 45.533408 - ], - [ - -73.449736, - 45.533561 - ], - [ - -73.449982, - 45.533682 - ], - [ - -73.450209, - 45.533781 - ], - [ - -73.450391, - 45.533867 - ], - [ - -73.450743, - 45.534002 - ], - [ - -73.450985, - 45.534056 - ], - [ - -73.451317, - 45.534124 - ], - [ - -73.45172, - 45.534205 - ], - [ - -73.451896, - 45.534218 - ], - [ - -73.45205, - 45.534214 - ], - [ - -73.452182, - 45.534205 - ], - [ - -73.452341, - 45.534169 - ], - [ - -73.452481, - 45.534133 - ], - [ - -73.452644, - 45.534061 - ], - [ - -73.45275, - 45.533989 - ], - [ - -73.453619, - 45.533409 - ], - [ - -73.453895, - 45.533306 - ], - [ - -73.454221, - 45.533257 - ], - [ - -73.454807, - 45.533288 - ], - [ - -73.45503, - 45.53332 - ], - [ - -73.455242, - 45.53336 - ], - [ - -73.455391, - 45.533387 - ], - [ - -73.455523, - 45.533433 - ], - [ - -73.455674, - 45.5335 - ], - [ - -73.455774, - 45.533559 - ], - [ - -73.455836, - 45.533604 - ], - [ - -73.455934, - 45.53369 - ], - [ - -73.455959, - 45.533712 - ], - [ - -73.456036, - 45.533788 - ], - [ - -73.456095, - 45.533878 - ], - [ - -73.456189, - 45.534099 - ], - [ - -73.456214, - 45.534256 - ], - [ - -73.456189, - 45.534413 - ], - [ - -73.456189, - 45.534414 - ], - [ - -73.456134, - 45.534589 - ], - [ - -73.456046, - 45.534737 - ], - [ - -73.455923, - 45.53489 - ], - [ - -73.455755, - 45.535043 - ], - [ - -73.45561, - 45.535133 - ], - [ - -73.455504, - 45.535196 - ], - [ - -73.455381, - 45.535259 - ], - [ - -73.455279, - 45.535296 - ], - [ - -73.455196, - 45.535327 - ], - [ - -73.454943, - 45.535416 - ], - [ - -73.454703, - 45.535484 - ], - [ - -73.45458, - 45.535533 - ], - [ - -73.454434, - 45.535583 - ], - [ - -73.454232, - 45.535664 - ], - [ - -73.454095, - 45.53574 - ], - [ - -73.453985, - 45.535794 - ], - [ - -73.453678, - 45.536032 - ], - [ - -73.453562, - 45.536158 - ], - [ - -73.45347, - 45.536284 - ], - [ - -73.453395, - 45.536388 - ], - [ - -73.453302, - 45.53664 - ], - [ - -73.453056, - 45.537575 - ], - [ - -73.45293, - 45.537571 - ], - [ - -73.452702, - 45.537575 - ], - [ - -73.452033, - 45.537615 - ], - [ - -73.45161, - 45.537656 - ], - [ - -73.451409, - 45.537665 - ], - [ - -73.451204, - 45.537642 - ], - [ - -73.451019, - 45.537606 - ], - [ - -73.450864, - 45.537552 - ], - [ - -73.450674, - 45.537466 - ], - [ - -73.449848, - 45.536971 - ], - [ - -73.449006, - 45.536471 - ], - [ - -73.448626, - 45.536264 - ], - [ - -73.448357, - 45.536192 - ], - [ - -73.447683, - 45.536033 - ], - [ - -73.447442, - 45.535976 - ], - [ - -73.447213, - 45.535913 - ], - [ - -73.447099, - 45.535867 - ], - [ - -73.446936, - 45.5358 - ], - [ - -73.446746, - 45.535696 - ], - [ - -73.446498, - 45.535516 - ], - [ - -73.446412, - 45.535444 - ], - [ - -73.446305, - 45.535359 - ], - [ - -73.446216, - 45.535273 - ], - [ - -73.445977, - 45.535035 - ], - [ - -73.44579, - 45.534868 - ], - [ - -73.445666, - 45.534784 - ], - [ - -73.445571, - 45.534719 - ], - [ - -73.445347, - 45.534582 - ], - [ - -73.445234, - 45.534512 - ], - [ - -73.445013, - 45.5344 - ], - [ - -73.444564, - 45.534238 - ], - [ - -73.444063, - 45.534075 - ], - [ - -73.444212, - 45.533801 - ], - [ - -73.444441, - 45.533378 - ], - [ - -73.44472, - 45.532816 - ], - [ - -73.445133, - 45.532069 - ], - [ - -73.445159, - 45.532011 - ], - [ - -73.445217, - 45.531876 - ], - [ - -73.445262, - 45.531714 - ], - [ - -73.445416, - 45.531246 - ], - [ - -73.445655, - 45.53081 - ], - [ - -73.445758, - 45.530711 - ], - [ - -73.44588, - 45.530594 - ], - [ - -73.445934, - 45.530553 - ], - [ - -73.445986, - 45.530495 - ], - [ - -73.446078, - 45.530436 - ], - [ - -73.446188, - 45.530392 - ], - [ - -73.446303, - 45.53036 - ], - [ - -73.446426, - 45.53032 - ], - [ - -73.446558, - 45.530297 - ], - [ - -73.446722, - 45.530284 - ], - [ - -73.446778, - 45.530284 - ], - [ - -73.446897, - 45.530293 - ], - [ - -73.44702, - 45.530311 - ], - [ - -73.44713, - 45.530342 - ], - [ - -73.447236, - 45.530379 - ], - [ - -73.447385, - 45.530442 - ], - [ - -73.447543, - 45.530541 - ], - [ - -73.447862, - 45.53032 - ], - [ - -73.448024, - 45.530118 - ], - [ - -73.448085, - 45.530001 - ], - [ - -73.448297, - 45.529596 - ], - [ - -73.448445, - 45.529313 - ], - [ - -73.448776, - 45.528634 - ], - [ - -73.449239, - 45.527747 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.45067, - 45.527735 - ], - [ - -73.450838, - 45.527798 - ], - [ - -73.451123, - 45.527906 - ], - [ - -73.451519, - 45.528063 - ], - [ - -73.452276, - 45.528409 - ], - [ - -73.452337, - 45.528437 - ], - [ - -73.45321, - 45.528797 - ], - [ - -73.454095, - 45.529149 - ], - [ - -73.454978, - 45.529527 - ], - [ - -73.45507, - 45.529563 - ], - [ - -73.455133, - 45.529589 - ], - [ - -73.457482, - 45.530545 - ], - [ - -73.458332, - 45.530905 - ], - [ - -73.460581, - 45.531882 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.462751, - 45.533003 - ], - [ - -73.463873, - 45.533665 - ], - [ - -73.464875, - 45.534543 - ], - [ - -73.465497, - 45.535116 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469941, - 45.537318 - ], - [ - -73.470305, - 45.537406 - ], - [ - -73.470749, - 45.537487 - ], - [ - -73.471335, - 45.537563 - ], - [ - -73.471845, - 45.53759 - ], - [ - -73.472146, - 45.537591 - ], - [ - -73.472355, - 45.537591 - ], - [ - -73.473126, - 45.537555 - ], - [ - -73.473826, - 45.537492 - ], - [ - -73.474517, - 45.537429 - ], - [ - -73.474599, - 45.537423 - ], - [ - -73.475173, - 45.53738 - ], - [ - -73.47563, - 45.537344 - ], - [ - -73.476192, - 45.537353 - ], - [ - -73.476662, - 45.537394 - ], - [ - -73.477026, - 45.537434 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.477375, - 45.53749 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487193, - 45.54054 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491035, - 45.541427 - ], - [ - -73.491084, - 45.541584 - ], - [ - -73.491099, - 45.541724 - ], - [ - -73.491106, - 45.541854 - ], - [ - -73.491092, - 45.542156 - ], - [ - -73.491081, - 45.542381 - ], - [ - -73.49104, - 45.543146 - ], - [ - -73.490998, - 45.543726 - ], - [ - -73.491037, - 45.544117 - ], - [ - -73.491071, - 45.544252 - ], - [ - -73.491113, - 45.544396 - ], - [ - -73.491272, - 45.544698 - ], - [ - -73.491367, - 45.544855 - ], - [ - -73.491449, - 45.544981 - ], - [ - -73.491608, - 45.545148 - ], - [ - -73.491886, - 45.545409 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.492548, - 45.545933 - ], - [ - -73.492868, - 45.546192 - ], - [ - -73.492976, - 45.546278 - ], - [ - -73.493835, - 45.546966 - ], - [ - -73.494604, - 45.547573 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.495811, - 45.548549 - ], - [ - -73.49673, - 45.549278 - ], - [ - -73.497087, - 45.549548 - ], - [ - -73.49736, - 45.549719 - ], - [ - -73.497501, - 45.549805 - ], - [ - -73.497722, - 45.549908 - ], - [ - -73.497944, - 45.549998 - ], - [ - -73.498136, - 45.55007 - ], - [ - -73.498405, - 45.550151 - ], - [ - -73.498716, - 45.550237 - ], - [ - -73.499009, - 45.550295 - ], - [ - -73.499514, - 45.550349 - ], - [ - -73.499763, - 45.550363 - ], - [ - -73.4998, - 45.550364 - ], - [ - -73.501515, - 45.550448 - ], - [ - -73.502446, - 45.550493 - ], - [ - -73.502797, - 45.550502 - ], - [ - -73.502913, - 45.550498 - ], - [ - -73.503017, - 45.550484 - ], - [ - -73.503194, - 45.550453 - ], - [ - -73.503355, - 45.550399 - ], - [ - -73.503504, - 45.550327 - ], - [ - -73.503636, - 45.550237 - ], - [ - -73.503751, - 45.550133 - ], - [ - -73.503955, - 45.549904 - ], - [ - -73.504046, - 45.549787 - ], - [ - -73.504119, - 45.549647 - ], - [ - -73.50416, - 45.549508 - ], - [ - -73.504212, - 45.548909 - ], - [ - -73.504289, - 45.548585 - ], - [ - -73.504342, - 45.548423 - ], - [ - -73.504477, - 45.548095 - ], - [ - -73.504558, - 45.547933 - ], - [ - -73.504654, - 45.547771 - ], - [ - -73.504887, - 45.547461 - ], - [ - -73.505281, - 45.546997 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.507852, - 45.544119 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.518302, - 45.534844 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522568, - 45.530233 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.521182, - 45.53024 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517032, - 45.525567 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.51794, - 45.525389 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 249, - "properties": { - "id": "ce4b326e-49f1-40d0-bd3a-13c56705984a", - "data": { - "gtfs": { - "shape_id": "410_1_A" - }, - "segments": [ - { - "distanceMeters": 1029, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 934, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 762, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 1070, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 1025, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 1025, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 839, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 880, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 771, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 1075, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 1320, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 1029, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 658, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 667, - "travelTimeSeconds": 26 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13078, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 0, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 31.14, - "travelTimeWithoutDwellTimesSeconds": 420, - "operatingTimeWithLayoverTimeSeconds": 600, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 420, - "operatingSpeedWithLayoverMetersPerSecond": 21.8, - "averageSpeedWithoutDwellTimesMetersPerSecond": 31.14 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "69483ac1-331d-4f0e-93b5-d8134f380763", - "66f007ae-d813-40cb-ab41-e87b10da3a72", - "6685b5fc-0f35-439d-9c20-c96b665d5201", - "c896d257-2942-4aba-aded-59e49480d892", - "62590a84-0f1e-43e0-8046-574d7d23d2e9", - "48a4676d-1da3-4489-8f80-1edfb1b61b1b", - "83c203fe-4b10-42fd-aafb-d9bc99f756b0", - "e5c2d9f4-1be6-458f-854f-8103a3048b8c", - "231dda72-d4b5-48ae-b714-5ce9d3802c45", - "25a5f82a-36a7-4a52-af2b-32a681f87765", - "8b3a553d-dad5-41ff-b228-80f338c4b0e0", - "210e532b-2acc-4a3e-b173-3471add098b1", - "51637772-6b85-4c49-a14a-4de104a8f1f5", - "23ef9461-bbd0-492e-8678-c51238629a13", - "69483ac1-331d-4f0e-93b5-d8134f380763" - ], - "stops": [], - "line_id": "81f60ceb-ee5b-49b7-95c0-fc9668d02cbd", - "segments": [ - 0, - 44, - 81, - 109, - 144, - 153, - 181, - 200, - 230, - 249, - 273, - 288, - 323, - 345 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 249, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.454682, - 45.529166 - ], - [ - -73.453608, - 45.528719 - ], - [ - -73.452477, - 45.528249 - ], - [ - -73.452419, - 45.528224 - ], - [ - -73.452095, - 45.528089 - ], - [ - -73.451849, - 45.527987 - ], - [ - -73.449902, - 45.527223 - ], - [ - -73.449586, - 45.5271 - ], - [ - -73.447563, - 45.526329 - ], - [ - -73.447243, - 45.526199 - ], - [ - -73.446596, - 45.52596 - ], - [ - -73.446438, - 45.5259 - ], - [ - -73.446255, - 45.525829 - ], - [ - -73.445479, - 45.525532 - ], - [ - -73.44525, - 45.525455 - ], - [ - -73.445048, - 45.525397 - ], - [ - -73.444823, - 45.525347 - ], - [ - -73.444707, - 45.525314 - ], - [ - -73.444476, - 45.525248 - ], - [ - -73.44392, - 45.525126 - ], - [ - -73.443091, - 45.524907 - ], - [ - -73.442951, - 45.524869 - ], - [ - -73.443148, - 45.524487 - ], - [ - -73.443474, - 45.523856 - ], - [ - -73.443491, - 45.523821 - ], - [ - -73.444105, - 45.52258 - ], - [ - -73.444165, - 45.522458 - ], - [ - -73.444264, - 45.522301 - ], - [ - -73.444322, - 45.522225 - ], - [ - -73.445357, - 45.520227 - ], - [ - -73.445616, - 45.519728 - ], - [ - -73.445708, - 45.519575 - ], - [ - -73.445857, - 45.519382 - ], - [ - -73.446092, - 45.519112 - ], - [ - -73.446093, - 45.519111 - ], - [ - -73.446119, - 45.519088 - ], - [ - -73.446373, - 45.518869 - ], - [ - -73.446684, - 45.518635 - ], - [ - -73.446958, - 45.518469 - ], - [ - -73.447199, - 45.518348 - ], - [ - -73.447381, - 45.518267 - ], - [ - -73.447419, - 45.51825 - ], - [ - -73.447546, - 45.518195 - ], - [ - -73.448019, - 45.518033 - ], - [ - -73.448706, - 45.517817 - ], - [ - -73.449343, - 45.51762 - ], - [ - -73.449751, - 45.517483 - ], - [ - -73.449921, - 45.517427 - ], - [ - -73.450143, - 45.517364 - ], - [ - -73.450409, - 45.517292 - ], - [ - -73.45071, - 45.517229 - ], - [ - -73.450716, - 45.517224 - ], - [ - -73.451295, - 45.517148 - ], - [ - -73.451523, - 45.517121 - ], - [ - -73.45169, - 45.517099 - ], - [ - -73.451894, - 45.517072 - ], - [ - -73.452053, - 45.517054 - ], - [ - -73.45224, - 45.517153 - ], - [ - -73.452412, - 45.517228 - ], - [ - -73.452518, - 45.517275 - ], - [ - -73.453808, - 45.5178 - ], - [ - -73.453997, - 45.517877 - ], - [ - -73.454088, - 45.517914 - ], - [ - -73.454547, - 45.518104 - ], - [ - -73.455195, - 45.518372 - ], - [ - -73.455625, - 45.518549 - ], - [ - -73.45631, - 45.518837 - ], - [ - -73.457044, - 45.519137 - ], - [ - -73.457149, - 45.51918 - ], - [ - -73.456893, - 45.519549 - ], - [ - -73.456808, - 45.519697 - ], - [ - -73.456763, - 45.519809 - ], - [ - -73.456747, - 45.519998 - ], - [ - -73.456743, - 45.520169 - ], - [ - -73.456866, - 45.520955 - ], - [ - -73.456881, - 45.521051 - ], - [ - -73.456916, - 45.521245 - ], - [ - -73.457007, - 45.521798 - ], - [ - -73.457018, - 45.521965 - ], - [ - -73.457007, - 45.522131 - ], - [ - -73.456977, - 45.522289 - ], - [ - -73.456948, - 45.522368 - ], - [ - -73.456942, - 45.522383 - ], - [ - -73.456878, - 45.522527 - ], - [ - -73.456684, - 45.5229 - ], - [ - -73.456575, - 45.5231 - ], - [ - -73.456502, - 45.523233 - ], - [ - -73.455972, - 45.524237 - ], - [ - -73.455885, - 45.524403 - ], - [ - -73.455699, - 45.524754 - ], - [ - -73.45556, - 45.52506 - ], - [ - -73.455515, - 45.525217 - ], - [ - -73.455492, - 45.525379 - ], - [ - -73.455505, - 45.525617 - ], - [ - -73.455556, - 45.52586 - ], - [ - -73.455725, - 45.526441 - ], - [ - -73.455731, - 45.52646 - ], - [ - -73.455785, - 45.526648 - ], - [ - -73.456034, - 45.52748 - ], - [ - -73.456081, - 45.527705 - ], - [ - -73.456084, - 45.527948 - ], - [ - -73.45603, - 45.528196 - ], - [ - -73.455955, - 45.528344 - ], - [ - -73.455795, - 45.528551 - ], - [ - -73.455588, - 45.528799 - ], - [ - -73.455542, - 45.528856 - ], - [ - -73.455189, - 45.52928 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.454978, - 45.529527 - ], - [ - -73.45507, - 45.529563 - ], - [ - -73.456261, - 45.530048 - ], - [ - -73.457286, - 45.530465 - ], - [ - -73.457482, - 45.530545 - ], - [ - -73.458332, - 45.530905 - ], - [ - -73.460581, - 45.531882 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.462023, - 45.532624 - ], - [ - -73.462751, - 45.533003 - ], - [ - -73.463873, - 45.533665 - ], - [ - -73.464875, - 45.534543 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.468804, - 45.537047 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469941, - 45.537318 - ], - [ - -73.470305, - 45.537406 - ], - [ - -73.470749, - 45.537487 - ], - [ - -73.471335, - 45.537563 - ], - [ - -73.471845, - 45.53759 - ], - [ - -73.472146, - 45.537591 - ], - [ - -73.472355, - 45.537591 - ], - [ - -73.473126, - 45.537555 - ], - [ - -73.473826, - 45.537492 - ], - [ - -73.474517, - 45.537429 - ], - [ - -73.474599, - 45.537423 - ], - [ - -73.475173, - 45.53738 - ], - [ - -73.47563, - 45.537344 - ], - [ - -73.476192, - 45.537353 - ], - [ - -73.476662, - 45.537394 - ], - [ - -73.477026, - 45.537434 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.477879, - 45.537599 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491035, - 45.541427 - ], - [ - -73.491084, - 45.541584 - ], - [ - -73.491099, - 45.541724 - ], - [ - -73.491104, - 45.541817 - ], - [ - -73.491106, - 45.541854 - ], - [ - -73.491092, - 45.542156 - ], - [ - -73.491081, - 45.542381 - ], - [ - -73.49104, - 45.543146 - ], - [ - -73.490998, - 45.543726 - ], - [ - -73.491037, - 45.544117 - ], - [ - -73.491071, - 45.544252 - ], - [ - -73.491113, - 45.544396 - ], - [ - -73.491272, - 45.544698 - ], - [ - -73.491367, - 45.544855 - ], - [ - -73.491449, - 45.544981 - ], - [ - -73.491608, - 45.545148 - ], - [ - -73.491886, - 45.545409 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.492795, - 45.546132 - ], - [ - -73.492868, - 45.546192 - ], - [ - -73.492976, - 45.546278 - ], - [ - -73.493835, - 45.546966 - ], - [ - -73.494604, - 45.547573 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.49575, - 45.548499 - ], - [ - -73.495811, - 45.548549 - ], - [ - -73.49673, - 45.549278 - ], - [ - -73.497087, - 45.549548 - ], - [ - -73.49736, - 45.549719 - ], - [ - -73.497501, - 45.549805 - ], - [ - -73.497722, - 45.549908 - ], - [ - -73.497944, - 45.549998 - ], - [ - -73.498136, - 45.55007 - ], - [ - -73.498405, - 45.550151 - ], - [ - -73.498716, - 45.550237 - ], - [ - -73.499009, - 45.550295 - ], - [ - -73.499514, - 45.550349 - ], - [ - -73.499763, - 45.550363 - ], - [ - -73.501515, - 45.550448 - ], - [ - -73.502446, - 45.550493 - ], - [ - -73.502797, - 45.550502 - ], - [ - -73.502913, - 45.550498 - ], - [ - -73.503017, - 45.550484 - ], - [ - -73.503194, - 45.550453 - ], - [ - -73.503355, - 45.550399 - ], - [ - -73.503504, - 45.550327 - ], - [ - -73.503636, - 45.550237 - ], - [ - -73.503751, - 45.550133 - ], - [ - -73.503955, - 45.549904 - ], - [ - -73.504046, - 45.549787 - ], - [ - -73.504119, - 45.549647 - ], - [ - -73.50416, - 45.549508 - ], - [ - -73.504212, - 45.548909 - ], - [ - -73.504289, - 45.548585 - ], - [ - -73.504342, - 45.548423 - ], - [ - -73.504477, - 45.548095 - ], - [ - -73.504558, - 45.547933 - ], - [ - -73.504654, - 45.547771 - ], - [ - -73.504887, - 45.547461 - ], - [ - -73.505281, - 45.546997 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522841, - 45.530139 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.517788, - 45.525406 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 250, - "properties": { - "id": "02872c66-1ffc-4fc6-acc0-919a67ef16be", - "data": { - "gtfs": { - "shape_id": "417_1_A" - }, - "segments": [ - { - "distanceMeters": 200, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 417, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 736, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 721, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 1183, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 524, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 5138, - "travelTimeSeconds": 600 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13214, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5209.757988136507, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.59, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 6.88, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.59 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "6e83e147-802a-4695-95f3-96585bd15c4a", - "51878141-1194-4666-977c-0597ee638ffb", - "83cbcc26-a35c-4db6-a784-03a152cb9d6f", - "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", - "2800446d-aebc-4882-a018-9ab217599d73", - "02782fd4-ecd8-4615-9b7e-14ae16ac51bd", - "59ce5dad-a6de-46b9-a19c-e11dc5bfb727", - "aa6137b4-b674-460f-91f8-a129c1cf46bc", - "96eb89e4-98b8-49ac-b938-d7bcff69fc98", - "9d7bed04-91bf-4977-b8f5-ead58bfa3d28", - "0039f884-0610-402a-b23b-498abb207283", - "d3991811-d92b-4ba2-9732-26a74abc49b7", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "98268bc3-9f24-452e-8107-226a930051bc", - "b9c0c47c-b605-460e-9360-3718e001061b", - "c33924bc-c890-4a49-b330-6134b056dd6d", - "290dd81a-faeb-49a8-be84-7d76ab6dd7ef", - "cdd96034-dead-4f68-a8ed-c24b98b781eb", - "211cb268-dcfa-4d7b-810c-681bfa65d4c8", - "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "06d26eca-08e9-467e-9ff0-9595778162a0", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "038a22ba-4928-42fc-aaed-50fbd831df37", - "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", - "64648218-6b63-436c-9a46-4770987ba432", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "7961c0ed-c615-4ee9-84be-455b01f990f4", - "segments": [ - 0, - 2, - 6, - 12, - 17, - 22, - 25, - 34, - 41, - 46, - 54, - 61, - 67, - 74, - 85, - 87, - 96, - 104, - 111, - 117, - 130, - 151, - 183, - 198, - 204 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 250, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519446, - 45.523424 - ], - [ - -73.519356, - 45.523706 - ], - [ - -73.519307, - 45.523913 - ], - [ - -73.51926, - 45.524247 - ], - [ - -73.519249, - 45.524511 - ], - [ - -73.519247, - 45.52489 - ], - [ - -73.519252, - 45.525151 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519332, - 45.526816 - ], - [ - -73.517875, - 45.526743 - ], - [ - -73.517858, - 45.526792 - ], - [ - -73.517687, - 45.527294 - ], - [ - -73.517622, - 45.527483 - ], - [ - -73.517558, - 45.52771 - ], - [ - -73.517558, - 45.527712 - ], - [ - -73.517554, - 45.527724 - ], - [ - -73.517519, - 45.527835 - ], - [ - -73.517498, - 45.527937 - ], - [ - -73.517492, - 45.528031 - ], - [ - -73.517494, - 45.528104 - ], - [ - -73.517465, - 45.528168 - ], - [ - -73.517458, - 45.528249 - ], - [ - -73.517471, - 45.528385 - ], - [ - -73.517504, - 45.528565 - ], - [ - -73.517516, - 45.528652 - ], - [ - -73.517553, - 45.52877 - ], - [ - -73.517635, - 45.529002 - ], - [ - -73.517693, - 45.529249 - ], - [ - -73.517758, - 45.529516 - ], - [ - -73.517876, - 45.529885 - ], - [ - -73.517956, - 45.530236 - ], - [ - -73.51798, - 45.530335 - ], - [ - -73.518076, - 45.53052 - ], - [ - -73.518128, - 45.530691 - ], - [ - -73.518132, - 45.530763 - ], - [ - -73.518132, - 45.530866 - ], - [ - -73.518124, - 45.530947 - ], - [ - -73.518107, - 45.531037 - ], - [ - -73.518079, - 45.531114 - ], - [ - -73.518054, - 45.531154 - ], - [ - -73.518031, - 45.531195 - ], - [ - -73.517983, - 45.53124 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.519043, - 45.531581 - ], - [ - -73.519301, - 45.531703 - ], - [ - -73.519421, - 45.531788 - ], - [ - -73.519474, - 45.531838 - ], - [ - -73.519503, - 45.531887 - ], - [ - -73.519544, - 45.531946 - ], - [ - -73.519595, - 45.53204 - ], - [ - -73.519626, - 45.532175 - ], - [ - -73.519618, - 45.532265 - ], - [ - -73.519593, - 45.532387 - ], - [ - -73.51944, - 45.532634 - ], - [ - -73.518936, - 45.533287 - ], - [ - -73.518617, - 45.533665 - ], - [ - -73.518337, - 45.533998 - ], - [ - -73.51774, - 45.534698 - ], - [ - -73.517156, - 45.535384 - ], - [ - -73.51654, - 45.536112 - ], - [ - -73.515903, - 45.53685 - ], - [ - -73.515364, - 45.537345 - ], - [ - -73.515106, - 45.53757 - ], - [ - -73.514745, - 45.537858 - ], - [ - -73.514431, - 45.538101 - ], - [ - -73.51369, - 45.538637 - ], - [ - -73.512897, - 45.539195 - ], - [ - -73.512095, - 45.539762 - ], - [ - -73.511192, - 45.540414 - ], - [ - -73.510982, - 45.540567 - ], - [ - -73.510964, - 45.540582 - ], - [ - -73.510564, - 45.540891 - ], - [ - -73.510241, - 45.541157 - ], - [ - -73.509839, - 45.541553 - ], - [ - -73.50909, - 45.542237 - ], - [ - -73.508587, - 45.542741 - ], - [ - -73.508296, - 45.543033 - ], - [ - -73.50776, - 45.543609 - ], - [ - -73.507048, - 45.544368 - ], - [ - -73.505479, - 45.546039 - ], - [ - -73.504188, - 45.547393 - ], - [ - -73.503831, - 45.547731 - ], - [ - -73.503387, - 45.548158 - ], - [ - -73.502222, - 45.54935 - ], - [ - -73.502026, - 45.549535 - ], - [ - -73.501887, - 45.549652 - ], - [ - -73.501727, - 45.549755 - ], - [ - -73.501561, - 45.549845 - ], - [ - -73.501383, - 45.549913 - ], - [ - -73.501341, - 45.549928 - ], - [ - -73.501231, - 45.549967 - ], - [ - -73.501132, - 45.549989 - ], - [ - -73.501047, - 45.550007 - ], - [ - -73.500839, - 45.550048 - ], - [ - -73.50061, - 45.550066 - ], - [ - -73.500154, - 45.550079 - ], - [ - -73.499958, - 45.550057 - ], - [ - -73.499756, - 45.550039 - ], - [ - -73.499583, - 45.550043 - ], - [ - -73.499254, - 45.550048 - ], - [ - -73.49904, - 45.550039 - ], - [ - -73.498716, - 45.549998 - ], - [ - -73.49829, - 45.549868 - ], - [ - -73.497924, - 45.54971 - ], - [ - -73.497576, - 45.54953 - ], - [ - -73.497225, - 45.549332 - ], - [ - -73.497041, - 45.549211 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494914, - 45.547559 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.492003, - 45.545214 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491296, - 45.54289 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.490625, - 45.54071 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476982, - 45.537235 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.46939, - 45.536998 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461222, - 45.53197 - ], - [ - -73.460868, - 45.531797 - ], - [ - -73.460137, - 45.531468 - ], - [ - -73.459095, - 45.531013 - ], - [ - -73.457818, - 45.530482 - ], - [ - -73.457591, - 45.530387 - ], - [ - -73.456631, - 45.529983 - ], - [ - -73.45522, - 45.529388 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.454682, - 45.529166 - ] - ] - }, - "id": 251, - "properties": { - "id": "e3eb41c3-2471-41ab-a73a-442de60abc43", - "data": { - "gtfs": { - "shape_id": "417_1_R" - }, - "segments": [ - { - "distanceMeters": 4485, - "travelTimeSeconds": 480 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 1146, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 600, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 865, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 94 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 86 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8568, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5209.757988136507, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.14, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 6.21, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.14 - }, - "mode": "bus", - "name": "Sect. M Vieux-Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "8a3f1208-7ffb-452e-8ebb-c436acba82d6", - "2d7687a5-f458-4ce1-a3df-9639d89c0154", - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "81b3573e-d948-478d-a011-db20e21b0c62", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "53aec761-3dae-44a6-bc58-9d5003bfa1bb", - "6e83e147-802a-4695-95f3-96585bd15c4a" - ], - "stops": [], - "line_id": "7961c0ed-c615-4ee9-84be-455b01f990f4", - "segments": [ - 0, - 129, - 135, - 159, - 189, - 210, - 235, - 239 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 251, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.52391, - 45.52376 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.518682, - 45.534094 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.502818, - 45.54899 - ], - [ - -73.502212, - 45.54962 - ], - [ - -73.501984, - 45.549836 - ], - [ - -73.50186, - 45.549926 - ], - [ - -73.501728, - 45.550007 - ], - [ - -73.501701, - 45.550021 - ], - [ - -73.501592, - 45.550079 - ], - [ - -73.501452, - 45.550133 - ], - [ - -73.501309, - 45.550183 - ], - [ - -73.50116, - 45.550219 - ], - [ - -73.501011, - 45.55025 - ], - [ - -73.500705, - 45.550282 - ], - [ - -73.500547, - 45.550286 - ], - [ - -73.49991, - 45.550295 - ], - [ - -73.499238, - 45.550226 - ], - [ - -73.498778, - 45.550153 - ], - [ - -73.498464, - 45.550065 - ], - [ - -73.498138, - 45.54995 - ], - [ - -73.497746, - 45.549767 - ], - [ - -73.497494, - 45.54961 - ], - [ - -73.497234, - 45.549428 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494913, - 45.547558 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.492002, - 45.545213 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491296, - 45.54289 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.490624, - 45.54071 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476981, - 45.537234 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.469389, - 45.536997 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461222, - 45.53197 - ], - [ - -73.460868, - 45.531797 - ], - [ - -73.460137, - 45.531468 - ], - [ - -73.459095, - 45.531013 - ], - [ - -73.457818, - 45.530482 - ], - [ - -73.457591, - 45.530387 - ], - [ - -73.456631, - 45.529983 - ], - [ - -73.45522, - 45.529388 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.454682, - 45.529166 - ] - ] - }, - "id": 252, - "properties": { - "id": "28dc0517-cacb-4e51-a862-aad1bca43b3a", - "data": { - "gtfs": { - "shape_id": "417_2_R" - }, - "segments": [ - { - "distanceMeters": 4595, - "travelTimeSeconds": 240 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 532, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 1146, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 600, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 865, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 94 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 86 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8679, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5209.757988136507, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.51, - "travelTimeWithoutDwellTimesSeconds": 1020, - "operatingTimeWithLayoverTimeSeconds": 1200, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1020, - "operatingSpeedWithLayoverMetersPerSecond": 7.23, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.51 - }, - "mode": "bus", - "name": "Sect. M Vieux-Longueuil", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "8a3f1208-7ffb-452e-8ebb-c436acba82d6", - "2d7687a5-f458-4ce1-a3df-9639d89c0154", - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "81b3573e-d948-478d-a011-db20e21b0c62", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "53aec761-3dae-44a6-bc58-9d5003bfa1bb", - "6e83e147-802a-4695-95f3-96585bd15c4a" - ], - "stops": [], - "line_id": "7961c0ed-c615-4ee9-84be-455b01f990f4", - "segments": [ - 0, - 79, - 85, - 109, - 139, - 160, - 185, - 189 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 252, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522893, - 45.523523 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.52391, - 45.52376 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.518682, - 45.534094 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.502818, - 45.54899 - ], - [ - -73.502212, - 45.54962 - ], - [ - -73.501984, - 45.549836 - ], - [ - -73.50186, - 45.549926 - ], - [ - -73.501728, - 45.550007 - ], - [ - -73.501701, - 45.550021 - ], - [ - -73.501592, - 45.550079 - ], - [ - -73.501452, - 45.550133 - ], - [ - -73.501309, - 45.550183 - ], - [ - -73.50116, - 45.550219 - ], - [ - -73.501011, - 45.55025 - ], - [ - -73.500705, - 45.550282 - ], - [ - -73.500547, - 45.550286 - ], - [ - -73.49991, - 45.550295 - ], - [ - -73.499238, - 45.550226 - ], - [ - -73.498778, - 45.550153 - ], - [ - -73.498464, - 45.550065 - ], - [ - -73.498138, - 45.54995 - ], - [ - -73.497746, - 45.549767 - ], - [ - -73.497494, - 45.54961 - ], - [ - -73.497234, - 45.549428 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491296, - 45.54289 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476981, - 45.537234 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.469389, - 45.536997 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461222, - 45.53197 - ], - [ - -73.460868, - 45.531797 - ], - [ - -73.460137, - 45.531468 - ], - [ - -73.459095, - 45.531013 - ], - [ - -73.457818, - 45.530482 - ], - [ - -73.457591, - 45.530387 - ], - [ - -73.456631, - 45.529983 - ], - [ - -73.45522, - 45.529388 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.454682, - 45.529166 - ] - ] - }, - "id": 253, - "properties": { - "id": "c6423d7b-f76d-4c99-950d-701596e02632", - "data": { - "gtfs": { - "shape_id": "417_2_R" - }, - "segments": [ - { - "distanceMeters": 6618, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 600, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 865, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 94 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 86 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8679, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3076.214315971928, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 14.46, - "travelTimeWithoutDwellTimesSeconds": 600, - "operatingTimeWithLayoverTimeSeconds": 780, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 600, - "operatingSpeedWithLayoverMetersPerSecond": 11.13, - "averageSpeedWithoutDwellTimesMetersPerSecond": 14.46 - }, - "mode": "bus", - "name": "Sect. M Vieux-Longueuil", - "color": "#A32638", - "nodes": [ - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "81b3573e-d948-478d-a011-db20e21b0c62", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "53aec761-3dae-44a6-bc58-9d5003bfa1bb", - "6e83e147-802a-4695-95f3-96585bd15c4a" - ], - "stops": [], - "line_id": "7961c0ed-c615-4ee9-84be-455b01f990f4", - "segments": [ - 0, - 136, - 157, - 182, - 186 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 253, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.454682, - 45.529166 - ], - [ - -73.453608, - 45.528719 - ], - [ - -73.452419, - 45.528224 - ], - [ - -73.452095, - 45.528089 - ], - [ - -73.451849, - 45.527987 - ], - [ - -73.449586, - 45.5271 - ], - [ - -73.447563, - 45.526329 - ], - [ - -73.447243, - 45.526199 - ], - [ - -73.446973, - 45.526099 - ], - [ - -73.446596, - 45.52596 - ], - [ - -73.446438, - 45.5259 - ], - [ - -73.445479, - 45.525532 - ], - [ - -73.44525, - 45.525455 - ], - [ - -73.445048, - 45.525397 - ], - [ - -73.444823, - 45.525347 - ], - [ - -73.444476, - 45.525248 - ], - [ - -73.44392, - 45.525126 - ], - [ - -73.443091, - 45.524907 - ], - [ - -73.442951, - 45.524869 - ], - [ - -73.443474, - 45.523856 - ], - [ - -73.443491, - 45.523821 - ], - [ - -73.444165, - 45.522458 - ], - [ - -73.444264, - 45.522301 - ], - [ - -73.444322, - 45.522225 - ], - [ - -73.444943, - 45.521026 - ], - [ - -73.445357, - 45.520227 - ], - [ - -73.445616, - 45.519728 - ], - [ - -73.445708, - 45.519575 - ], - [ - -73.445857, - 45.519382 - ], - [ - -73.446092, - 45.519112 - ], - [ - -73.446119, - 45.519088 - ], - [ - -73.446373, - 45.518869 - ], - [ - -73.446684, - 45.518635 - ], - [ - -73.446958, - 45.518469 - ], - [ - -73.447199, - 45.518348 - ], - [ - -73.447381, - 45.518267 - ], - [ - -73.447546, - 45.518195 - ], - [ - -73.448019, - 45.518033 - ], - [ - -73.448706, - 45.517817 - ], - [ - -73.449343, - 45.51762 - ], - [ - -73.449921, - 45.517427 - ], - [ - -73.450143, - 45.517364 - ], - [ - -73.450409, - 45.517292 - ], - [ - -73.45071, - 45.517229 - ], - [ - -73.450716, - 45.517224 - ], - [ - -73.451295, - 45.517148 - ], - [ - -73.451523, - 45.517121 - ], - [ - -73.451894, - 45.517072 - ], - [ - -73.452053, - 45.517054 - ], - [ - -73.45224, - 45.517153 - ], - [ - -73.452412, - 45.517228 - ], - [ - -73.452518, - 45.517275 - ], - [ - -73.453808, - 45.5178 - ], - [ - -73.454088, - 45.517914 - ], - [ - -73.454547, - 45.518104 - ], - [ - -73.455195, - 45.518372 - ], - [ - -73.455625, - 45.518549 - ], - [ - -73.455996, - 45.518705 - ], - [ - -73.45631, - 45.518837 - ], - [ - -73.457149, - 45.51918 - ], - [ - -73.456893, - 45.519549 - ], - [ - -73.456808, - 45.519697 - ], - [ - -73.456763, - 45.519809 - ], - [ - -73.456747, - 45.519998 - ], - [ - -73.456743, - 45.520169 - ], - [ - -73.456881, - 45.521051 - ], - [ - -73.456916, - 45.521245 - ], - [ - -73.457007, - 45.521798 - ], - [ - -73.457018, - 45.521965 - ], - [ - -73.457007, - 45.522131 - ], - [ - -73.456977, - 45.522289 - ], - [ - -73.45696, - 45.522333 - ], - [ - -73.456948, - 45.522368 - ], - [ - -73.456942, - 45.522383 - ], - [ - -73.456878, - 45.522527 - ], - [ - -73.456684, - 45.5229 - ], - [ - -73.456502, - 45.523233 - ], - [ - -73.455885, - 45.524403 - ], - [ - -73.455699, - 45.524754 - ], - [ - -73.45556, - 45.52506 - ], - [ - -73.455515, - 45.525217 - ], - [ - -73.455492, - 45.525379 - ], - [ - -73.455505, - 45.525617 - ], - [ - -73.455556, - 45.52586 - ], - [ - -73.455725, - 45.526441 - ], - [ - -73.455785, - 45.526648 - ], - [ - -73.456034, - 45.52748 - ], - [ - -73.456081, - 45.527705 - ], - [ - -73.456084, - 45.527948 - ], - [ - -73.456062, - 45.528049 - ], - [ - -73.45603, - 45.528196 - ], - [ - -73.455955, - 45.528344 - ], - [ - -73.455795, - 45.528551 - ], - [ - -73.455542, - 45.528856 - ], - [ - -73.455189, - 45.52928 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.454978, - 45.529527 - ], - [ - -73.45507, - 45.529563 - ], - [ - -73.456261, - 45.530048 - ], - [ - -73.457482, - 45.530545 - ], - [ - -73.458332, - 45.530905 - ], - [ - -73.460581, - 45.531882 - ], - [ - -73.461424, - 45.532323 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.462751, - 45.533003 - ], - [ - -73.463873, - 45.533665 - ], - [ - -73.464875, - 45.534543 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469941, - 45.537318 - ], - [ - -73.470305, - 45.537406 - ], - [ - -73.470749, - 45.537487 - ], - [ - -73.471335, - 45.537563 - ], - [ - -73.471845, - 45.53759 - ], - [ - -73.472146, - 45.537591 - ], - [ - -73.472355, - 45.537591 - ], - [ - -73.473126, - 45.537555 - ], - [ - -73.473826, - 45.537492 - ], - [ - -73.474517, - 45.537429 - ], - [ - -73.474599, - 45.537423 - ], - [ - -73.475173, - 45.53738 - ], - [ - -73.47563, - 45.537344 - ], - [ - -73.476192, - 45.537353 - ], - [ - -73.476662, - 45.537394 - ], - [ - -73.476979, - 45.537429 - ], - [ - -73.477026, - 45.537434 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.482821, - 45.539045 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.490915, - 45.541199 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491035, - 45.541427 - ], - [ - -73.491084, - 45.541584 - ], - [ - -73.491099, - 45.541724 - ], - [ - -73.491106, - 45.541854 - ], - [ - -73.491092, - 45.542156 - ], - [ - -73.491081, - 45.542381 - ], - [ - -73.49104, - 45.543146 - ], - [ - -73.490998, - 45.543726 - ], - [ - -73.491037, - 45.544117 - ], - [ - -73.491071, - 45.544252 - ], - [ - -73.491113, - 45.544396 - ], - [ - -73.491272, - 45.544698 - ], - [ - -73.491367, - 45.544855 - ], - [ - -73.491449, - 45.544981 - ], - [ - -73.491608, - 45.545148 - ], - [ - -73.491886, - 45.545409 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.492385, - 45.545801 - ], - [ - -73.492868, - 45.546192 - ], - [ - -73.492976, - 45.546278 - ], - [ - -73.493835, - 45.546966 - ], - [ - -73.494604, - 45.547573 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.495811, - 45.548549 - ], - [ - -73.49673, - 45.549278 - ], - [ - -73.497087, - 45.549548 - ], - [ - -73.49736, - 45.549719 - ], - [ - -73.497501, - 45.549805 - ], - [ - -73.497722, - 45.549908 - ], - [ - -73.497944, - 45.549998 - ], - [ - -73.498136, - 45.55007 - ], - [ - -73.498405, - 45.550151 - ], - [ - -73.498716, - 45.550237 - ], - [ - -73.498805, - 45.550254 - ], - [ - -73.499009, - 45.550295 - ], - [ - -73.499514, - 45.550349 - ], - [ - -73.499763, - 45.550363 - ], - [ - -73.501515, - 45.550448 - ], - [ - -73.502446, - 45.550493 - ], - [ - -73.502797, - 45.550502 - ], - [ - -73.502913, - 45.550498 - ], - [ - -73.503017, - 45.550484 - ], - [ - -73.503194, - 45.550453 - ], - [ - -73.503355, - 45.550399 - ], - [ - -73.503504, - 45.550327 - ], - [ - -73.503636, - 45.550237 - ], - [ - -73.503751, - 45.550133 - ], - [ - -73.503955, - 45.549904 - ], - [ - -73.504046, - 45.549787 - ], - [ - -73.504119, - 45.549647 - ], - [ - -73.50416, - 45.549508 - ], - [ - -73.504212, - 45.548909 - ], - [ - -73.504289, - 45.548585 - ], - [ - -73.504342, - 45.548423 - ], - [ - -73.504477, - 45.548095 - ], - [ - -73.504558, - 45.547933 - ], - [ - -73.504654, - 45.547771 - ], - [ - -73.504887, - 45.547461 - ], - [ - -73.505281, - 45.546997 - ], - [ - -73.506483, - 45.545638 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.512141, - 45.540324 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.518737, - 45.534331 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.521815, - 45.530737 - ], - [ - -73.52222, - 45.530416 - ], - [ - -73.522368, - 45.530326 - ], - [ - -73.522518, - 45.530254 - ], - [ - -73.522681, - 45.530186 - ], - [ - -73.522841, - 45.530139 - ], - [ - -73.522867, - 45.530132 - ], - [ - -73.523028, - 45.530109 - ], - [ - -73.523164, - 45.530105 - ], - [ - -73.523333, - 45.530123 - ], - [ - -73.523467, - 45.530159 - ], - [ - -73.523603, - 45.530222 - ], - [ - -73.523681, - 45.53028 - ], - [ - -73.523765, - 45.530366 - ], - [ - -73.523822, - 45.530465 - ], - [ - -73.523853, - 45.530573 - ], - [ - -73.523851, - 45.530681 - ], - [ - -73.523825, - 45.530775 - ], - [ - -73.52377, - 45.530865 - ], - [ - -73.52369, - 45.530946 - ], - [ - -73.523579, - 45.531023 - ], - [ - -73.523457, - 45.531072 - ], - [ - -73.523329, - 45.531113 - ], - [ - -73.523178, - 45.531135 - ], - [ - -73.52302, - 45.531144 - ], - [ - -73.522859, - 45.53114 - ], - [ - -73.522696, - 45.531122 - ], - [ - -73.522538, - 45.531086 - ], - [ - -73.522387, - 45.531036 - ], - [ - -73.522243, - 45.530969 - ], - [ - -73.522111, - 45.530892 - ], - [ - -73.521754, - 45.530677 - ], - [ - -73.521691, - 45.530627 - ], - [ - -73.520846, - 45.529984 - ], - [ - -73.520551, - 45.529777 - ], - [ - -73.519943, - 45.529354 - ], - [ - -73.519627, - 45.529111 - ], - [ - -73.518655, - 45.528374 - ], - [ - -73.518213, - 45.52805 - ], - [ - -73.517782, - 45.527738 - ], - [ - -73.517672, - 45.527658 - ], - [ - -73.517405, - 45.527442 - ], - [ - -73.517218, - 45.527262 - ], - [ - -73.517072, - 45.527092 - ], - [ - -73.516988, - 45.52697 - ], - [ - -73.516817, - 45.52666 - ], - [ - -73.516757, - 45.526511 - ], - [ - -73.516721, - 45.52612 - ], - [ - -73.516713, - 45.526025 - ], - [ - -73.516719, - 45.525931 - ], - [ - -73.516747, - 45.525845 - ], - [ - -73.516794, - 45.525769 - ], - [ - -73.516854, - 45.525701 - ], - [ - -73.516925, - 45.525643 - ], - [ - -73.516977, - 45.525611 - ], - [ - -73.517044, - 45.525557 - ], - [ - -73.517154, - 45.525508 - ], - [ - -73.517269, - 45.525472 - ], - [ - -73.517518, - 45.525436 - ], - [ - -73.517788, - 45.525406 - ], - [ - -73.518171, - 45.525364 - ], - [ - -73.51826, - 45.525362 - ], - [ - -73.51843, - 45.525394 - ], - [ - -73.518529, - 45.525403 - ], - [ - -73.518609, - 45.525413 - ], - [ - -73.518785, - 45.525423 - ], - [ - -73.519257, - 45.525454 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 254, - "properties": { - "id": "e90e6473-b39a-4d31-869f-819fd8b91413", - "data": { - "gtfs": { - "shape_id": "417_1_A" - }, - "segments": [ - { - "distanceMeters": 691, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 798, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 1119, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 463, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 660, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 778, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 1441, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 491, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 695, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 546, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 712, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 954, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 740, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 847, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 467, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 881, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 940, - "travelTimeSeconds": 51 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13214, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 65.75797913289725, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 22.02, - "travelTimeWithoutDwellTimesSeconds": 600, - "operatingTimeWithLayoverTimeSeconds": 780, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 600, - "operatingSpeedWithLayoverMetersPerSecond": 16.94, - "averageSpeedWithoutDwellTimesMetersPerSecond": 22.02 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "6e83e147-802a-4695-95f3-96585bd15c4a", - "51878141-1194-4666-977c-0597ee638ffb", - "83cbcc26-a35c-4db6-a784-03a152cb9d6f", - "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", - "2800446d-aebc-4882-a018-9ab217599d73", - "02782fd4-ecd8-4615-9b7e-14ae16ac51bd", - "59ce5dad-a6de-46b9-a19c-e11dc5bfb727", - "aa6137b4-b674-460f-91f8-a129c1cf46bc", - "96eb89e4-98b8-49ac-b938-d7bcff69fc98", - "9d7bed04-91bf-4977-b8f5-ead58bfa3d28", - "0039f884-0610-402a-b23b-498abb207283", - "d3991811-d92b-4ba2-9732-26a74abc49b7", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "98268bc3-9f24-452e-8107-226a930051bc", - "b9c0c47c-b605-460e-9360-3718e001061b", - "c33924bc-c890-4a49-b330-6134b056dd6d", - "290dd81a-faeb-49a8-be84-7d76ab6dd7ef", - "cdd96034-dead-4f68-a8ed-c24b98b781eb" - ], - "stops": [], - "line_id": "7961c0ed-c615-4ee9-84be-455b01f990f4", - "segments": [ - 0, - 8, - 24, - 57, - 71, - 89, - 102, - 133, - 148, - 164, - 185, - 201, - 227, - 235, - 244, - 247, - 286 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 254, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522241, - 45.521831 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.514217, - 45.518647 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509952, - 45.515502 - ], - [ - -73.509485, - 45.515357 - ], - [ - -73.509376, - 45.515323 - ], - [ - -73.508692, - 45.515143 - ], - [ - -73.508296, - 45.51503 - ], - [ - -73.507817, - 45.514868 - ], - [ - -73.507704, - 45.514841 - ], - [ - -73.507464, - 45.514765 - ], - [ - -73.506516, - 45.514432 - ], - [ - -73.505464, - 45.514054 - ], - [ - -73.505166, - 45.51396 - ], - [ - -73.505023, - 45.513914 - ], - [ - -73.504794, - 45.513842 - ], - [ - -73.504451, - 45.513734 - ], - [ - -73.50434, - 45.513699 - ], - [ - -73.504259, - 45.513672 - ], - [ - -73.503369, - 45.513397 - ], - [ - -73.502433, - 45.51315 - ], - [ - -73.502048, - 45.513078 - ], - [ - -73.501411, - 45.512898 - ], - [ - -73.50108, - 45.512799 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.494607, - 45.510602 - ], - [ - -73.494318, - 45.510462 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488355, - 45.503066 - ], - [ - -73.4883, - 45.502913 - ], - [ - -73.488219, - 45.502531 - ], - [ - -73.488223, - 45.502405 - ], - [ - -73.488244, - 45.502298 - ], - [ - -73.488245, - 45.502293 - ], - [ - -73.488296, - 45.502185 - ], - [ - -73.488375, - 45.502086 - ], - [ - -73.488484, - 45.502 - ], - [ - -73.488609, - 45.501937 - ], - [ - -73.48874, - 45.501892 - ], - [ - -73.48888, - 45.501865 - ], - [ - -73.489028, - 45.501856 - ], - [ - -73.489181, - 45.501865 - ], - [ - -73.489324, - 45.501892 - ], - [ - -73.489461, - 45.501933 - ], - [ - -73.489585, - 45.501991 - ], - [ - -73.489692, - 45.502068 - ], - [ - -73.489786, - 45.502153 - ], - [ - -73.489942, - 45.502342 - ], - [ - -73.490006, - 45.50245 - ], - [ - -73.490054, - 45.502558 - ], - [ - -73.490086, - 45.502666 - ], - [ - -73.490092, - 45.502779 - ], - [ - -73.490064, - 45.502891 - ], - [ - -73.490004, - 45.502995 - ], - [ - -73.489917, - 45.503094 - ], - [ - -73.489808, - 45.503175 - ], - [ - -73.489675, - 45.503242 - ], - [ - -73.489524, - 45.503287 - ], - [ - -73.489359, - 45.50331 - ], - [ - -73.489186, - 45.503323 - ], - [ - -73.488817, - 45.503318 - ], - [ - -73.487515, - 45.503242 - ], - [ - -73.486872, - 45.503273 - ], - [ - -73.486502, - 45.503323 - ], - [ - -73.486146, - 45.503381 - ], - [ - -73.484224, - 45.503808 - ], - [ - -73.483407, - 45.503957 - ], - [ - -73.482922, - 45.504029 - ], - [ - -73.482166, - 45.504114 - ], - [ - -73.481092, - 45.504204 - ], - [ - -73.4802, - 45.504262 - ], - [ - -73.47719, - 45.50446 - ], - [ - -73.470465, - 45.504907 - ], - [ - -73.464792, - 45.505284 - ], - [ - -73.464234, - 45.505325 - ], - [ - -73.463301, - 45.505392 - ], - [ - -73.461784, - 45.505526 - ], - [ - -73.460686, - 45.505647 - ], - [ - -73.45799, - 45.505984 - ], - [ - -73.456776, - 45.506127 - ], - [ - -73.455209, - 45.506284 - ], - [ - -73.454382, - 45.506356 - ], - [ - -73.450186, - 45.506642 - ], - [ - -73.439577, - 45.507343 - ], - [ - -73.439057, - 45.507379 - ], - [ - -73.438071, - 45.507414 - ], - [ - -73.437444, - 45.507428 - ], - [ - -73.436265, - 45.507427 - ], - [ - -73.435664, - 45.507418 - ], - [ - -73.43478, - 45.507413 - ], - [ - -73.433757, - 45.507439 - ], - [ - -73.432476, - 45.507501 - ], - [ - -73.430857, - 45.507609 - ], - [ - -73.430359, - 45.507642 - ], - [ - -73.43012, - 45.507658 - ], - [ - -73.43011, - 45.507658 - ], - [ - -73.429316, - 45.507711 - ], - [ - -73.429014, - 45.507706 - ], - [ - -73.42887, - 45.507697 - ], - [ - -73.428732, - 45.50767 - ], - [ - -73.428609, - 45.507629 - ], - [ - -73.4285, - 45.507571 - ], - [ - -73.428413, - 45.507413 - ], - [ - -73.428416, - 45.507089 - ], - [ - -73.428566, - 45.506946 - ], - [ - -73.428604, - 45.506915 - ], - [ - -73.428632, - 45.506893 - ], - [ - -73.428753, - 45.506835 - ], - [ - -73.42903, - 45.50674 - ], - [ - -73.429213, - 45.50668 - ], - [ - -73.429476, - 45.506669 - ], - [ - -73.429755, - 45.506651 - ], - [ - -73.429825, - 45.506654 - ], - [ - -73.429948, - 45.50668 - ], - [ - -73.430064, - 45.506725 - ], - [ - -73.4302, - 45.506807 - ], - [ - -73.430341, - 45.507086 - ], - [ - -73.430485, - 45.507257 - ], - [ - -73.430506, - 45.507276 - ], - [ - -73.430509, - 45.507278 - ], - [ - -73.430608, - 45.507365 - ], - [ - -73.430672, - 45.507415 - ], - [ - -73.431358, - 45.507856 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431666, - 45.508054 - ], - [ - -73.431986, - 45.508252 - ], - [ - -73.432482, - 45.508559 - ], - [ - -73.433021, - 45.508883 - ], - [ - -73.433395, - 45.509082 - ], - [ - -73.433453, - 45.509113 - ], - [ - -73.433529, - 45.509151 - ], - [ - -73.43374, - 45.509257 - ], - [ - -73.434128, - 45.509428 - ], - [ - -73.43476, - 45.509703 - ], - [ - -73.435478, - 45.510009 - ], - [ - -73.435758, - 45.510131 - ], - [ - -73.435507, - 45.510414 - ], - [ - -73.4355, - 45.510423 - ], - [ - -73.435493, - 45.510432 - ], - [ - -73.435487, - 45.510437 - ], - [ - -73.435479, - 45.510446 - ], - [ - -73.435472, - 45.510455 - ], - [ - -73.435465, - 45.510459 - ], - [ - -73.435457, - 45.510468 - ], - [ - -73.43545, - 45.510477 - ], - [ - -73.43545, - 45.510477 - ], - [ - -73.435442, - 45.510481 - ], - [ - -73.435434, - 45.51049 - ], - [ - -73.435426, - 45.510495 - ], - [ - -73.435418, - 45.510504 - ], - [ - -73.43541, - 45.510513 - ], - [ - -73.435402, - 45.510517 - ], - [ - -73.435394, - 45.510526 - ], - [ - -73.435386, - 45.510531 - ], - [ - -73.435377, - 45.51054 - ], - [ - -73.435369, - 45.510544 - ], - [ - -73.43536, - 45.510553 - ], - [ - -73.435352, - 45.510558 - ], - [ - -73.435343, - 45.510567 - ], - [ - -73.435334, - 45.510571 - ], - [ - -73.435325, - 45.510576 - ], - [ - -73.435316, - 45.510585 - ], - [ - -73.435306, - 45.510589 - ], - [ - -73.435297, - 45.510598 - ], - [ - -73.435288, - 45.510603 - ], - [ - -73.435278, - 45.510607 - ], - [ - -73.435269, - 45.510616 - ], - [ - -73.43526, - 45.510621 - ], - [ - -73.43525, - 45.510625 - ], - [ - -73.43524, - 45.510634 - ], - [ - -73.43523, - 45.510639 - ], - [ - -73.43522, - 45.510643 - ], - [ - -73.43521, - 45.510648 - ], - [ - -73.435201, - 45.510657 - ], - [ - -73.43518, - 45.510666 - ], - [ - -73.43517, - 45.51067 - ], - [ - -73.435159, - 45.510679 - ], - [ - -73.435149, - 45.510684 - ], - [ - -73.435139, - 45.510688 - ], - [ - -73.435128, - 45.510693 - ], - [ - -73.435118, - 45.510697 - ], - [ - -73.435107, - 45.510706 - ], - [ - -73.435097, - 45.510711 - ], - [ - -73.435086, - 45.510715 - ], - [ - -73.435075, - 45.51072 - ], - [ - -73.435065, - 45.510724 - ], - [ - -73.435053, - 45.510729 - ], - [ - -73.435043, - 45.510733 - ], - [ - -73.435032, - 45.510738 - ], - [ - -73.435021, - 45.510742 - ], - [ - -73.435009, - 45.510747 - ], - [ - -73.434998, - 45.510751 - ], - [ - -73.434987, - 45.510756 - ], - [ - -73.434976, - 45.51076 - ], - [ - -73.434964, - 45.510765 - ], - [ - -73.434953, - 45.510769 - ], - [ - -73.434941, - 45.510774 - ], - [ - -73.43493, - 45.510778 - ], - [ - -73.434918, - 45.510778 - ], - [ - -73.434907, - 45.510783 - ], - [ - -73.434895, - 45.510787 - ], - [ - -73.434883, - 45.510792 - ], - [ - -73.434871, - 45.510796 - ], - [ - -73.43486, - 45.510796 - ], - [ - -73.434848, - 45.510801 - ], - [ - -73.434836, - 45.510805 - ], - [ - -73.434824, - 45.51081 - ], - [ - -73.434812, - 45.51081 - ], - [ - -73.4348, - 45.510814 - ], - [ - -73.434788, - 45.510819 - ], - [ - -73.434775, - 45.510819 - ], - [ - -73.434763, - 45.510823 - ], - [ - -73.434751, - 45.510823 - ], - [ - -73.434739, - 45.510828 - ], - [ - -73.434727, - 45.510828 - ], - [ - -73.434714, - 45.510832 - ], - [ - -73.434702, - 45.510837 - ], - [ - -73.434689, - 45.510837 - ], - [ - -73.434677, - 45.510841 - ], - [ - -73.434665, - 45.510841 - ], - [ - -73.434652, - 45.510841 - ], - [ - -73.434639, - 45.510845 - ], - [ - -73.434627, - 45.510845 - ], - [ - -73.434615, - 45.51085 - ], - [ - -73.434602, - 45.51085 - ], - [ - -73.434589, - 45.51085 - ], - [ - -73.434577, - 45.510854 - ], - [ - -73.434564, - 45.510854 - ], - [ - -73.434551, - 45.510854 - ], - [ - -73.434539, - 45.510859 - ], - [ - -73.434526, - 45.510859 - ], - [ - -73.434513, - 45.510859 - ], - [ - -73.434501, - 45.510859 - ], - [ - -73.434488, - 45.510859 - ], - [ - -73.434475, - 45.510863 - ], - [ - -73.434462, - 45.510863 - ], - [ - -73.434449, - 45.510863 - ], - [ - -73.434437, - 45.510863 - ], - [ - -73.434424, - 45.510863 - ], - [ - -73.434411, - 45.510863 - ], - [ - -73.433233, - 45.510854 - ], - [ - -73.433213, - 45.510854 - ], - [ - -73.4332, - 45.510854 - ], - [ - -73.433188, - 45.510854 - ], - [ - -73.433175, - 45.510858 - ], - [ - -73.433163, - 45.510858 - ], - [ - -73.433162, - 45.510858 - ], - [ - -73.43315, - 45.510858 - ], - [ - -73.433137, - 45.510858 - ], - [ - -73.433124, - 45.510858 - ], - [ - -73.433111, - 45.510858 - ], - [ - -73.433098, - 45.510863 - ], - [ - -73.433086, - 45.510863 - ], - [ - -73.433073, - 45.510863 - ], - [ - -73.43306, - 45.510863 - ], - [ - -73.433048, - 45.510867 - ], - [ - -73.433035, - 45.510867 - ], - [ - -73.433022, - 45.510867 - ], - [ - -73.43301, - 45.510872 - ], - [ - -73.432997, - 45.510872 - ], - [ - -73.432985, - 45.510872 - ], - [ - -73.432971, - 45.510876 - ], - [ - -73.43282, - 45.510417 - ], - [ - -73.432816, - 45.510408 - ], - [ - -73.432813, - 45.510399 - ], - [ - -73.432809, - 45.51039 - ], - [ - -73.432806, - 45.510381 - ], - [ - -73.432802, - 45.510372 - ], - [ - -73.432799, - 45.510363 - ], - [ - -73.432795, - 45.510354 - ], - [ - -73.432792, - 45.510345 - ], - [ - -73.432788, - 45.510336 - ], - [ - -73.432785, - 45.510331 - ], - [ - -73.432781, - 45.510322 - ], - [ - -73.432777, - 45.510313 - ], - [ - -73.432774, - 45.510304 - ], - [ - -73.43277, - 45.510295 - ], - [ - -73.432767, - 45.510286 - ], - [ - -73.432763, - 45.510277 - ], - [ - -73.43276, - 45.510268 - ], - [ - -73.432756, - 45.510259 - ], - [ - -73.432752, - 45.51025 - ], - [ - -73.432749, - 45.510241 - ], - [ - -73.432745, - 45.510232 - ], - [ - -73.432742, - 45.510228 - ], - [ - -73.432738, - 45.510219 - ], - [ - -73.432734, - 45.51021 - ], - [ - -73.432731, - 45.510201 - ], - [ - -73.432727, - 45.510192 - ], - [ - -73.432724, - 45.510183 - ], - [ - -73.43272, - 45.510174 - ], - [ - -73.432716, - 45.510165 - ], - [ - -73.432712, - 45.510156 - ], - [ - -73.432709, - 45.510147 - ], - [ - -73.432705, - 45.510138 - ], - [ - -73.432702, - 45.510129 - ], - [ - -73.432698, - 45.510124 - ], - [ - -73.432694, - 45.510115 - ], - [ - -73.432691, - 45.510106 - ], - [ - -73.432687, - 45.510097 - ], - [ - -73.432683, - 45.510088 - ], - [ - -73.432679, - 45.510079 - ], - [ - -73.432676, - 45.51007 - ], - [ - -73.432672, - 45.510061 - ], - [ - -73.432669, - 45.510052 - ], - [ - -73.43266, - 45.510034 - ], - [ - -73.432659, - 45.510021 - ], - [ - -73.432658, - 45.510012 - ], - [ - -73.432658, - 45.510003 - ], - [ - -73.432657, - 45.509994 - ], - [ - -73.432657, - 45.509985 - ], - [ - -73.432656, - 45.509976 - ], - [ - -73.432656, - 45.509967 - ], - [ - -73.432656, - 45.509958 - ], - [ - -73.432655, - 45.509949 - ], - [ - -73.432656, - 45.50994 - ], - [ - -73.432656, - 45.509931 - ], - [ - -73.432656, - 45.509922 - ], - [ - -73.432656, - 45.509913 - ], - [ - -73.432656, - 45.509904 - ], - [ - -73.432657, - 45.509895 - ], - [ - -73.432658, - 45.509886 - ], - [ - -73.432658, - 45.509877 - ], - [ - -73.432659, - 45.509868 - ], - [ - -73.43266, - 45.509859 - ], - [ - -73.432662, - 45.50985 - ], - [ - -73.432663, - 45.509841 - ], - [ - -73.432664, - 45.509832 - ], - [ - -73.432666, - 45.509823 - ], - [ - -73.432668, - 45.509814 - ], - [ - -73.432759, - 45.509634 - ], - [ - -73.432835, - 45.509463 - ], - [ - -73.432855, - 45.50936 - ], - [ - -73.432845, - 45.509284 - ], - [ - -73.432841, - 45.509247 - ], - [ - -73.432807, - 45.509153 - ], - [ - -73.432763, - 45.509081 - ], - [ - -73.432693, - 45.508986 - ], - [ - -73.432596, - 45.508892 - ], - [ - -73.432466, - 45.508784 - ], - [ - -73.432357, - 45.508721 - ], - [ - -73.432229, - 45.508657 - ], - [ - -73.43205, - 45.508576 - ], - [ - -73.431849, - 45.508509 - ], - [ - -73.431641, - 45.508477 - ], - [ - -73.430377, - 45.508566 - ], - [ - -73.42989, - 45.508625 - ], - [ - -73.429611, - 45.508674 - ], - [ - -73.429174, - 45.50875 - ], - [ - -73.428721, - 45.508799 - ], - [ - -73.425795, - 45.508991 - ], - [ - -73.422797, - 45.509187 - ], - [ - -73.420374, - 45.509349 - ], - [ - -73.414394, - 45.509748 - ], - [ - -73.414099, - 45.509779 - ], - [ - -73.413851, - 45.50986 - ], - [ - -73.413789, - 45.509879 - ], - [ - -73.413748, - 45.509891 - ], - [ - -73.413659, - 45.509927 - ], - [ - -73.413544, - 45.510004 - ], - [ - -73.413248, - 45.510197 - ], - [ - -73.412184, - 45.510894 - ], - [ - -73.41095, - 45.511702 - ], - [ - -73.409407, - 45.512716 - ], - [ - -73.408602, - 45.513258 - ], - [ - -73.408576, - 45.513275 - ], - [ - -73.408317, - 45.513441 - ], - [ - -73.408069, - 45.513608 - ], - [ - -73.406628, - 45.514552 - ], - [ - -73.405458, - 45.515319 - ], - [ - -73.405225, - 45.515472 - ], - [ - -73.403934, - 45.516317 - ], - [ - -73.403091, - 45.516883 - ], - [ - -73.402988, - 45.516952 - ], - [ - -73.401985, - 45.517616 - ], - [ - -73.400756, - 45.518406 - ], - [ - -73.400681, - 45.518454 - ], - [ - -73.400643, - 45.518479 - ], - [ - -73.397089, - 45.515781 - ], - [ - -73.393828, - 45.513384 - ], - [ - -73.393516, - 45.513719 - ], - [ - -73.389522, - 45.518002 - ], - [ - -73.388708, - 45.518687 - ], - [ - -73.388666, - 45.518715 - ], - [ - -73.388159, - 45.519058 - ], - [ - -73.387731, - 45.519343 - ], - [ - -73.387568, - 45.519571 - ], - [ - -73.38752, - 45.520133 - ], - [ - -73.3875, - 45.520254 - ], - [ - -73.387695, - 45.520266 - ], - [ - -73.388473, - 45.520371 - ], - [ - -73.389024, - 45.520488 - ], - [ - -73.389662, - 45.520669 - ], - [ - -73.390366, - 45.520948 - ], - [ - -73.391126, - 45.521354 - ], - [ - -73.3917, - 45.52175 - ], - [ - -73.391955, - 45.52194 - ], - [ - -73.392403, - 45.522268 - ], - [ - -73.392526, - 45.522188 - ], - [ - -73.392528, - 45.522188 - ], - [ - -73.392608, - 45.522129 - ], - [ - -73.392765, - 45.522062 - ], - [ - -73.392947, - 45.521977 - ], - [ - -73.393247, - 45.521891 - ], - [ - -73.393516, - 45.521869 - ], - [ - -73.393695, - 45.521869 - ] - ] - }, - "id": 255, - "properties": { - "id": "12c4b822-614e-4551-9708-974bb0fb2721", - "data": { - "gtfs": { - "shape_id": "428_1_R" - }, - "segments": [ - { - "distanceMeters": 2244, - "travelTimeSeconds": 256 - }, - { - "distanceMeters": 901, - "travelTimeSeconds": 104 - }, - { - "distanceMeters": 6738, - "travelTimeSeconds": 636 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 1220, - "travelTimeSeconds": 118 - }, - { - "distanceMeters": 687, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 384, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 1506, - "travelTimeSeconds": 232 - }, - { - "distanceMeters": 775, - "travelTimeSeconds": 120 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 15734, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 9940.111341084536, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.04, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 8.19, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.04 - }, - "mode": "bus", - "name": "Ag. spatiale Canadienne", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", - "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", - "80008949-5a0f-4c5e-b778-592c2ee8487f", - "0f06220e-c086-4a85-9d80-5c4d5410f93e", - "789f4442-496b-49a8-9269-68c86839ee71", - "083eddb0-b4a8-4368-8265-1cf0ef37b9f6", - "eb8bc90f-a856-480f-ac1f-7bb1795b4dab", - "90f9f389-96b4-444b-8d1b-774cf89df3c1", - "6d909e49-9727-42dc-95db-42259425acbd", - "4ee012e8-fd5c-471a-bb0b-87721da74cf6", - "02c6c49d-886b-440d-919e-7dc5515da70b", - "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", - "59f3ce33-037e-4929-8dad-491a01b3dda7", - "7b3cddda-c6ba-4d35-a936-01ff21d1501b" - ], - "stops": [], - "line_id": "93c23fdb-a643-4cd8-b412-82efdc167623", - "segments": [ - 0, - 82, - 106, - 228, - 242, - 343, - 450, - 459, - 462, - 466, - 468, - 470, - 473, - 481 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 255, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.393695, - 45.521869 - ], - [ - -73.393778, - 45.521869 - ], - [ - -73.394218, - 45.521942 - ], - [ - -73.394476, - 45.522045 - ], - [ - -73.394652, - 45.522154 - ], - [ - -73.394747, - 45.522217 - ], - [ - -73.394826, - 45.522289 - ], - [ - -73.39444, - 45.522546 - ], - [ - -73.394198, - 45.522707 - ], - [ - -73.393689, - 45.523044 - ], - [ - -73.392528, - 45.522188 - ], - [ - -73.391716, - 45.521593 - ], - [ - -73.391241, - 45.52126 - ], - [ - -73.390462, - 45.520845 - ], - [ - -73.389738, - 45.520556 - ], - [ - -73.389082, - 45.520371 - ], - [ - -73.388515, - 45.520254 - ], - [ - -73.387719, - 45.520145 - ], - [ - -73.38752, - 45.520133 - ], - [ - -73.387568, - 45.519571 - ], - [ - -73.387731, - 45.519343 - ], - [ - -73.388159, - 45.519058 - ], - [ - -73.388691, - 45.518698 - ], - [ - -73.388708, - 45.518687 - ], - [ - -73.389522, - 45.518002 - ], - [ - -73.391092, - 45.516318 - ], - [ - -73.393828, - 45.513384 - ], - [ - -73.397089, - 45.515781 - ], - [ - -73.400492, - 45.518364 - ], - [ - -73.400643, - 45.518479 - ], - [ - -73.400681, - 45.518454 - ], - [ - -73.401985, - 45.517616 - ], - [ - -73.402688, - 45.517151 - ], - [ - -73.402988, - 45.516952 - ], - [ - -73.403934, - 45.516317 - ], - [ - -73.405081, - 45.515566 - ], - [ - -73.405458, - 45.515319 - ], - [ - -73.406634, - 45.514548 - ], - [ - -73.408069, - 45.513608 - ], - [ - -73.408317, - 45.513441 - ], - [ - -73.40841, - 45.513382 - ], - [ - -73.408576, - 45.513275 - ], - [ - -73.409407, - 45.512716 - ], - [ - -73.41095, - 45.511702 - ], - [ - -73.412189, - 45.51089 - ], - [ - -73.413248, - 45.510197 - ], - [ - -73.413544, - 45.510004 - ], - [ - -73.413659, - 45.509927 - ], - [ - -73.413748, - 45.509891 - ], - [ - -73.413851, - 45.50986 - ], - [ - -73.414099, - 45.509779 - ], - [ - -73.414394, - 45.509748 - ], - [ - -73.420381, - 45.509348 - ], - [ - -73.422797, - 45.509187 - ], - [ - -73.425795, - 45.508991 - ], - [ - -73.428721, - 45.508799 - ], - [ - -73.429174, - 45.50875 - ], - [ - -73.429611, - 45.508674 - ], - [ - -73.42989, - 45.508625 - ], - [ - -73.430377, - 45.508566 - ], - [ - -73.430545, - 45.508554 - ], - [ - -73.430749, - 45.50854 - ], - [ - -73.431641, - 45.508477 - ], - [ - -73.431849, - 45.508509 - ], - [ - -73.43205, - 45.508576 - ], - [ - -73.432229, - 45.508657 - ], - [ - -73.432357, - 45.508721 - ], - [ - -73.432466, - 45.508784 - ], - [ - -73.432596, - 45.508892 - ], - [ - -73.432693, - 45.508986 - ], - [ - -73.432763, - 45.509081 - ], - [ - -73.432807, - 45.509153 - ], - [ - -73.432841, - 45.509247 - ], - [ - -73.432845, - 45.509284 - ], - [ - -73.432855, - 45.50936 - ], - [ - -73.432835, - 45.509463 - ], - [ - -73.432759, - 45.509634 - ], - [ - -73.432668, - 45.509814 - ], - [ - -73.432666, - 45.509823 - ], - [ - -73.432664, - 45.509832 - ], - [ - -73.432663, - 45.509841 - ], - [ - -73.432662, - 45.50985 - ], - [ - -73.43266, - 45.509859 - ], - [ - -73.432659, - 45.509868 - ], - [ - -73.432658, - 45.509877 - ], - [ - -73.432658, - 45.509886 - ], - [ - -73.432657, - 45.509895 - ], - [ - -73.432656, - 45.509904 - ], - [ - -73.432656, - 45.509913 - ], - [ - -73.432656, - 45.509922 - ], - [ - -73.432656, - 45.509931 - ], - [ - -73.432656, - 45.50994 - ], - [ - -73.432655, - 45.509949 - ], - [ - -73.432656, - 45.509958 - ], - [ - -73.432656, - 45.509967 - ], - [ - -73.432656, - 45.509976 - ], - [ - -73.432657, - 45.509985 - ], - [ - -73.432657, - 45.509994 - ], - [ - -73.432658, - 45.510003 - ], - [ - -73.432658, - 45.510012 - ], - [ - -73.432659, - 45.510021 - ], - [ - -73.43266, - 45.510034 - ], - [ - -73.432661, - 45.510043 - ], - [ - -73.432661, - 45.510052 - ], - [ - -73.432661, - 45.510061 - ], - [ - -73.432662, - 45.51007 - ], - [ - -73.432663, - 45.510079 - ], - [ - -73.432663, - 45.510088 - ], - [ - -73.432664, - 45.510097 - ], - [ - -73.432665, - 45.510106 - ], - [ - -73.432666, - 45.510115 - ], - [ - -73.432667, - 45.510124 - ], - [ - -73.432668, - 45.510133 - ], - [ - -73.432669, - 45.510142 - ], - [ - -73.43267, - 45.510151 - ], - [ - -73.432671, - 45.51016 - ], - [ - -73.432672, - 45.510169 - ], - [ - -73.432673, - 45.510178 - ], - [ - -73.432674, - 45.510187 - ], - [ - -73.432676, - 45.510196 - ], - [ - -73.432677, - 45.510205 - ], - [ - -73.432679, - 45.510214 - ], - [ - -73.43268, - 45.510223 - ], - [ - -73.432682, - 45.510232 - ], - [ - -73.432684, - 45.510241 - ], - [ - -73.432685, - 45.51025 - ], - [ - -73.432687, - 45.510259 - ], - [ - -73.432689, - 45.510268 - ], - [ - -73.43269, - 45.510277 - ], - [ - -73.432692, - 45.510286 - ], - [ - -73.432694, - 45.510295 - ], - [ - -73.432696, - 45.510304 - ], - [ - -73.432698, - 45.510313 - ], - [ - -73.4327, - 45.510322 - ], - [ - -73.432702, - 45.510331 - ], - [ - -73.432705, - 45.51034 - ], - [ - -73.432707, - 45.510349 - ], - [ - -73.432709, - 45.510358 - ], - [ - -73.432711, - 45.510367 - ], - [ - -73.432714, - 45.510376 - ], - [ - -73.432716, - 45.510385 - ], - [ - -73.432719, - 45.510394 - ], - [ - -73.432721, - 45.510403 - ], - [ - -73.432724, - 45.510412 - ], - [ - -73.432727, - 45.510421 - ], - [ - -73.432729, - 45.510426 - ], - [ - -73.432732, - 45.510435 - ], - [ - -73.432736, - 45.510453 - ], - [ - -73.432878, - 45.510894 - ], - [ - -73.432913, - 45.511002 - ], - [ - -73.433005, - 45.510989 - ], - [ - -73.433027, - 45.510984 - ], - [ - -73.43304, - 45.51098 - ], - [ - -73.433052, - 45.51098 - ], - [ - -73.433065, - 45.51098 - ], - [ - -73.433077, - 45.510975 - ], - [ - -73.43309, - 45.510975 - ], - [ - -73.433103, - 45.510975 - ], - [ - -73.433115, - 45.510971 - ], - [ - -73.433128, - 45.510971 - ], - [ - -73.433141, - 45.510971 - ], - [ - -73.433153, - 45.510971 - ], - [ - -73.433166, - 45.510971 - ], - [ - -73.433179, - 45.510971 - ], - [ - -73.433192, - 45.510971 - ], - [ - -73.433205, - 45.510971 - ], - [ - -73.433653, - 45.510973 - ], - [ - -73.433981, - 45.510974 - ], - [ - -73.434422, - 45.510976 - ], - [ - -73.434437, - 45.510976 - ], - [ - -73.43445, - 45.510976 - ], - [ - -73.434463, - 45.510976 - ], - [ - -73.434476, - 45.510971 - ], - [ - -73.434488, - 45.510971 - ], - [ - -73.434501, - 45.510971 - ], - [ - -73.434514, - 45.510971 - ], - [ - -73.434527, - 45.510971 - ], - [ - -73.434539, - 45.510967 - ], - [ - -73.434552, - 45.510967 - ], - [ - -73.434565, - 45.510967 - ], - [ - -73.434578, - 45.510967 - ], - [ - -73.43459, - 45.510962 - ], - [ - -73.434603, - 45.510962 - ], - [ - -73.434615, - 45.510962 - ], - [ - -73.434628, - 45.510958 - ], - [ - -73.43464, - 45.510958 - ], - [ - -73.434653, - 45.510958 - ], - [ - -73.434666, - 45.510953 - ], - [ - -73.434678, - 45.510953 - ], - [ - -73.43469, - 45.510949 - ], - [ - -73.434703, - 45.510949 - ], - [ - -73.434716, - 45.510945 - ], - [ - -73.434728, - 45.510945 - ], - [ - -73.43474, - 45.51094 - ], - [ - -73.434752, - 45.51094 - ], - [ - -73.434765, - 45.510936 - ], - [ - -73.434777, - 45.510936 - ], - [ - -73.43479, - 45.510931 - ], - [ - -73.434802, - 45.510931 - ], - [ - -73.434814, - 45.510927 - ], - [ - -73.434826, - 45.510922 - ], - [ - -73.434838, - 45.510922 - ], - [ - -73.43485, - 45.510918 - ], - [ - -73.434862, - 45.510913 - ], - [ - -73.434874, - 45.510913 - ], - [ - -73.434886, - 45.510909 - ], - [ - -73.434898, - 45.510904 - ], - [ - -73.43491, - 45.5109 - ], - [ - -73.434922, - 45.5109 - ], - [ - -73.434934, - 45.510895 - ], - [ - -73.434946, - 45.510891 - ], - [ - -73.434957, - 45.510886 - ], - [ - -73.434969, - 45.510886 - ], - [ - -73.43498, - 45.510882 - ], - [ - -73.434992, - 45.510877 - ], - [ - -73.435004, - 45.510873 - ], - [ - -73.435015, - 45.510868 - ], - [ - -73.435027, - 45.510864 - ], - [ - -73.435038, - 45.510859 - ], - [ - -73.435049, - 45.510855 - ], - [ - -73.435061, - 45.51085 - ], - [ - -73.435072, - 45.510846 - ], - [ - -73.435083, - 45.510846 - ], - [ - -73.435095, - 45.510841 - ], - [ - -73.435105, - 45.510837 - ], - [ - -73.435117, - 45.510832 - ], - [ - -73.435127, - 45.510823 - ], - [ - -73.435139, - 45.510819 - ], - [ - -73.435149, - 45.510814 - ], - [ - -73.43516, - 45.51081 - ], - [ - -73.435171, - 45.510805 - ], - [ - -73.435181, - 45.510801 - ], - [ - -73.435192, - 45.510796 - ], - [ - -73.435203, - 45.510792 - ], - [ - -73.435213, - 45.510787 - ], - [ - -73.435223, - 45.510783 - ], - [ - -73.435234, - 45.510774 - ], - [ - -73.435244, - 45.510769 - ], - [ - -73.435255, - 45.510765 - ], - [ - -73.435265, - 45.51076 - ], - [ - -73.435275, - 45.510756 - ], - [ - -73.435285, - 45.510747 - ], - [ - -73.435296, - 45.510742 - ], - [ - -73.435308, - 45.510733 - ], - [ - -73.435318, - 45.510729 - ], - [ - -73.435328, - 45.510724 - ], - [ - -73.435338, - 45.51072 - ], - [ - -73.435347, - 45.510711 - ], - [ - -73.435357, - 45.510706 - ], - [ - -73.435367, - 45.510702 - ], - [ - -73.435377, - 45.510697 - ], - [ - -73.435387, - 45.510688 - ], - [ - -73.435396, - 45.510684 - ], - [ - -73.435405, - 45.510679 - ], - [ - -73.435415, - 45.51067 - ], - [ - -73.435424, - 45.510666 - ], - [ - -73.435433, - 45.510657 - ], - [ - -73.435443, - 45.510652 - ], - [ - -73.435451, - 45.510648 - ], - [ - -73.435461, - 45.510639 - ], - [ - -73.43547, - 45.510634 - ], - [ - -73.435478, - 45.510625 - ], - [ - -73.435487, - 45.510621 - ], - [ - -73.435496, - 45.510612 - ], - [ - -73.435504, - 45.510608 - ], - [ - -73.435513, - 45.510599 - ], - [ - -73.435521, - 45.510594 - ], - [ - -73.43553, - 45.510585 - ], - [ - -73.435538, - 45.510581 - ], - [ - -73.435546, - 45.510572 - ], - [ - -73.435554, - 45.510567 - ], - [ - -73.435562, - 45.510558 - ], - [ - -73.43557, - 45.510554 - ], - [ - -73.435578, - 45.510545 - ], - [ - -73.435586, - 45.510536 - ], - [ - -73.435593, - 45.510531 - ], - [ - -73.435601, - 45.510522 - ], - [ - -73.435608, - 45.510518 - ], - [ - -73.435616, - 45.510509 - ], - [ - -73.435623, - 45.5105 - ], - [ - -73.43563, - 45.510495 - ], - [ - -73.435637, - 45.510486 - ], - [ - -73.435786, - 45.510314 - ], - [ - -73.435893, - 45.510189 - ], - [ - -73.435988, - 45.510081 - ], - [ - -73.435895, - 45.510041 - ], - [ - -73.435854, - 45.510023 - ], - [ - -73.435569, - 45.509897 - ], - [ - -73.435099, - 45.509695 - ], - [ - -73.434856, - 45.50959 - ], - [ - -73.434287, - 45.509355 - ], - [ - -73.434257, - 45.509343 - ], - [ - -73.433925, - 45.509203 - ], - [ - -73.433726, - 45.509117 - ], - [ - -73.433485, - 45.509005 - ], - [ - -73.433108, - 45.508806 - ], - [ - -73.432574, - 45.508487 - ], - [ - -73.432044, - 45.508167 - ], - [ - -73.432083, - 45.508041 - ], - [ - -73.432114, - 45.508014 - ], - [ - -73.432209, - 45.507974 - ], - [ - -73.435178, - 45.507773 - ], - [ - -73.437575, - 45.507662 - ], - [ - -73.438988, - 45.507572 - ], - [ - -73.440344, - 45.507425 - ], - [ - -73.442164, - 45.507306 - ], - [ - -73.445881, - 45.507063 - ], - [ - -73.452257, - 45.506638 - ], - [ - -73.452565, - 45.506616 - ], - [ - -73.453776, - 45.50654 - ], - [ - -73.455247, - 45.506419 - ], - [ - -73.456957, - 45.50624 - ], - [ - -73.460279, - 45.505832 - ], - [ - -73.460374, - 45.505823 - ], - [ - -73.461182, - 45.505728 - ], - [ - -73.463671, - 45.505509 - ], - [ - -73.465111, - 45.505401 - ], - [ - -73.467755, - 45.505222 - ], - [ - -73.468692, - 45.505168 - ], - [ - -73.470746, - 45.505025 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488612, - 45.504213 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492937, - 45.510118 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.494937, - 45.511118 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.504854, - 45.514415 - ], - [ - -73.505124, - 45.514484 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505795, - 45.514661 - ], - [ - -73.506452, - 45.514846 - ], - [ - -73.507164, - 45.515048 - ], - [ - -73.507456, - 45.515138 - ], - [ - -73.507602, - 45.515179 - ], - [ - -73.508624, - 45.515521 - ], - [ - -73.509081, - 45.515723 - ], - [ - -73.509444, - 45.515844 - ], - [ - -73.5095, - 45.51586 - ], - [ - -73.509792, - 45.515939 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.514667, - 45.519318 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521463, - 45.52089 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.521312, - 45.523446 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 256, - "properties": { - "id": "e65be9d9-e2e2-4365-8673-02fa4a5c2cf6", - "data": { - "gtfs": { - "shape_id": "428_1_A" - }, - "segments": [ - { - "distanceMeters": 1017, - "travelTimeSeconds": 91 - }, - { - "distanceMeters": 1474, - "travelTimeSeconds": 132 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 405, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 687, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 798, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 16, - "travelTimeSeconds": 2 - }, - { - "distanceMeters": 659, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 112, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 5529, - "travelTimeSeconds": 706 - }, - { - "distanceMeters": 1072, - "travelTimeSeconds": 157 - }, - { - "distanceMeters": 2189, - "travelTimeSeconds": 323 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 14799, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 9940.111341084536, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.51, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 7.71, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.51 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "7b3cddda-c6ba-4d35-a936-01ff21d1501b", - "59f3ce33-037e-4929-8dad-491a01b3dda7", - "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", - "4012bfc4-334d-4b7d-9898-4cfd802d0479", - "784dd9cc-281a-47d9-8014-a2e6add384f6", - "3ce1139e-888c-4783-a57f-da50952eee26", - "90f9f389-96b4-444b-8d1b-774cf89df3c1", - "eb8bc90f-a856-480f-ac1f-7bb1795b4dab", - "0af40567-79a9-4b30-b572-639f90fb42b3", - "d0283e5b-f03b-432a-aa08-aa7137cbe6e7", - "d0283e5b-f03b-432a-aa08-aa7137cbe6e7", - "0c9c2b52-ead4-4bb7-9085-39aca76f0358", - "48cbd834-3690-4d56-af66-277be54f9820", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "93c23fdb-a643-4cd8-b412-82efdc167623", - "segments": [ - 0, - 22, - 28, - 32, - 35, - 37, - 40, - 44, - 52, - 60, - 61, - 282, - 288, - 354, - 376 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 256, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.362247, - 45.450781 - ], - [ - -73.362089, - 45.45068 - ], - [ - -73.361154, - 45.450101 - ], - [ - -73.360532, - 45.449715 - ], - [ - -73.360474, - 45.44968 - ], - [ - -73.360435, - 45.449657 - ], - [ - -73.360398, - 45.449646 - ], - [ - -73.360356, - 45.44964 - ], - [ - -73.360313, - 45.449642 - ], - [ - -73.360274, - 45.449652 - ], - [ - -73.360247, - 45.449663 - ], - [ - -73.360219, - 45.44968 - ], - [ - -73.360198, - 45.449699 - ], - [ - -73.360057, - 45.449891 - ], - [ - -73.35979, - 45.450256 - ], - [ - -73.35882, - 45.451554 - ], - [ - -73.358327, - 45.452213 - ], - [ - -73.357938, - 45.452733 - ], - [ - -73.357928, - 45.45275 - ], - [ - -73.357921, - 45.452769 - ], - [ - -73.357919, - 45.452788 - ], - [ - -73.357921, - 45.452807 - ], - [ - -73.357927, - 45.452825 - ], - [ - -73.357937, - 45.452843 - ], - [ - -73.35795, - 45.45286 - ], - [ - -73.357968, - 45.452874 - ], - [ - -73.357988, - 45.452887 - ], - [ - -73.358011, - 45.452897 - ], - [ - -73.358192, - 45.452963 - ], - [ - -73.358583, - 45.453108 - ], - [ - -73.35859, - 45.45311 - ], - [ - -73.358937, - 45.453238 - ], - [ - -73.359397, - 45.453408 - ], - [ - -73.359918, - 45.4536 - ], - [ - -73.36037, - 45.453772 - ], - [ - -73.360234, - 45.453956 - ], - [ - -73.360192, - 45.454011 - ], - [ - -73.358218, - 45.456659 - ], - [ - -73.357928, - 45.457051 - ], - [ - -73.356938, - 45.45839 - ], - [ - -73.355713, - 45.460008 - ], - [ - -73.3556, - 45.460159 - ], - [ - -73.35416, - 45.462083 - ], - [ - -73.3541, - 45.462163 - ], - [ - -73.352901, - 45.46379 - ], - [ - -73.35259, - 45.464211 - ], - [ - -73.352126, - 45.464849 - ], - [ - -73.351672, - 45.465456 - ], - [ - -73.351443, - 45.465762 - ], - [ - -73.351359, - 45.46587 - ], - [ - -73.351837, - 45.465977 - ], - [ - -73.351922, - 45.465996 - ], - [ - -73.352686, - 45.466204 - ], - [ - -73.353192, - 45.466362 - ], - [ - -73.35394, - 45.466629 - ], - [ - -73.354945, - 45.467022 - ], - [ - -73.358732, - 45.468538 - ], - [ - -73.359966, - 45.469035 - ], - [ - -73.364425, - 45.470817 - ], - [ - -73.365193, - 45.471119 - ], - [ - -73.366237, - 45.47153 - ], - [ - -73.367803, - 45.472117 - ], - [ - -73.373493, - 45.474148 - ], - [ - -73.37362, - 45.474193 - ], - [ - -73.374589, - 45.474539 - ], - [ - -73.376526, - 45.475231 - ], - [ - -73.377036, - 45.475416 - ], - [ - -73.377771, - 45.475696 - ], - [ - -73.378232, - 45.475885 - ], - [ - -73.378528, - 45.476015 - ], - [ - -73.378654, - 45.47607 - ], - [ - -73.378768, - 45.47612 - ], - [ - -73.378901, - 45.476178 - ], - [ - -73.379339, - 45.476381 - ], - [ - -73.379772, - 45.476598 - ], - [ - -73.381287, - 45.47738 - ], - [ - -73.384241, - 45.478906 - ], - [ - -73.385044, - 45.479321 - ], - [ - -73.385847, - 45.479736 - ], - [ - -73.388432, - 45.481069 - ], - [ - -73.389334, - 45.481534 - ], - [ - -73.389467, - 45.481602 - ], - [ - -73.38959, - 45.481669 - ], - [ - -73.390071, - 45.481927 - ], - [ - -73.390313, - 45.482057 - ], - [ - -73.390427, - 45.482115 - ], - [ - -73.393166, - 45.483526 - ], - [ - -73.393715, - 45.483828 - ], - [ - -73.393921, - 45.48395 - ], - [ - -73.394117, - 45.484078 - ], - [ - -73.394183, - 45.484121 - ], - [ - -73.394326, - 45.48422 - ], - [ - -73.394526, - 45.48436 - ], - [ - -73.394852, - 45.484608 - ], - [ - -73.395097, - 45.484806 - ], - [ - -73.395347, - 45.485022 - ], - [ - -73.395593, - 45.485252 - ], - [ - -73.396213, - 45.485884 - ], - [ - -73.396316, - 45.48599 - ], - [ - -73.396877, - 45.486562 - ], - [ - -73.397253, - 45.486945 - ], - [ - -73.397988, - 45.487693 - ], - [ - -73.398409, - 45.488127 - ], - [ - -73.398503, - 45.488224 - ], - [ - -73.400292, - 45.490061 - ], - [ - -73.40033, - 45.4901 - ], - [ - -73.400631, - 45.490403 - ], - [ - -73.40073, - 45.490503 - ], - [ - -73.40103, - 45.490791 - ], - [ - -73.401471, - 45.491169 - ], - [ - -73.401956, - 45.491543 - ], - [ - -73.402249, - 45.491741 - ], - [ - -73.402251, - 45.491742 - ], - [ - -73.402357, - 45.491809 - ], - [ - -73.40251, - 45.491908 - ], - [ - -73.402561, - 45.491939 - ], - [ - -73.403076, - 45.492241 - ], - [ - -73.403455, - 45.492444 - ], - [ - -73.403515, - 45.492473 - ], - [ - -73.403928, - 45.492669 - ], - [ - -73.40395, - 45.492679 - ], - [ - -73.405646, - 45.493445 - ], - [ - -73.406276, - 45.493729 - ], - [ - -73.406465, - 45.493815 - ], - [ - -73.407044, - 45.494076 - ], - [ - -73.407318, - 45.494207 - ], - [ - -73.407449, - 45.49427 - ], - [ - -73.408138, - 45.494635 - ], - [ - -73.40856, - 45.494868 - ], - [ - -73.408708, - 45.49495 - ], - [ - -73.408748, - 45.494972 - ], - [ - -73.408851, - 45.495036 - ], - [ - -73.4093, - 45.495297 - ], - [ - -73.410398, - 45.49591 - ], - [ - -73.410587, - 45.49601 - ], - [ - -73.410729, - 45.496085 - ], - [ - -73.411068, - 45.496248 - ], - [ - -73.41156, - 45.496461 - ], - [ - -73.411587, - 45.496473 - ], - [ - -73.412271, - 45.49673 - ], - [ - -73.412864, - 45.496955 - ], - [ - -73.413661, - 45.497245 - ], - [ - -73.414507, - 45.497553 - ], - [ - -73.415733, - 45.497998 - ], - [ - -73.416459, - 45.498262 - ], - [ - -73.416635, - 45.498326 - ], - [ - -73.416723, - 45.498362 - ], - [ - -73.417312, - 45.498592 - ], - [ - -73.417435, - 45.498648 - ], - [ - -73.417607, - 45.498727 - ], - [ - -73.418042, - 45.498952 - ], - [ - -73.418335, - 45.499128 - ], - [ - -73.418479, - 45.499214 - ], - [ - -73.418764, - 45.499407 - ], - [ - -73.419209, - 45.499737 - ], - [ - -73.419305, - 45.499808 - ], - [ - -73.419729, - 45.500092 - ], - [ - -73.419878, - 45.500182 - ], - [ - -73.420342, - 45.50043 - ], - [ - -73.420683, - 45.500593 - ], - [ - -73.420784, - 45.500641 - ], - [ - -73.420878, - 45.500678 - ], - [ - -73.421089, - 45.500763 - ], - [ - -73.421557, - 45.500934 - ], - [ - -73.421727, - 45.500998 - ], - [ - -73.422541, - 45.501286 - ], - [ - -73.423018, - 45.501457 - ], - [ - -73.423256, - 45.501542 - ], - [ - -73.423423, - 45.501602 - ], - [ - -73.424204, - 45.50188 - ], - [ - -73.425906, - 45.502485 - ], - [ - -73.426184, - 45.502584 - ], - [ - -73.427788, - 45.503152 - ], - [ - -73.428083, - 45.503265 - ], - [ - -73.428273, - 45.50335 - ], - [ - -73.428512, - 45.503472 - ], - [ - -73.428643, - 45.503549 - ], - [ - -73.428884, - 45.503715 - ], - [ - -73.428992, - 45.503801 - ], - [ - -73.429012, - 45.50382 - ], - [ - -73.429175, - 45.503967 - ], - [ - -73.429253, - 45.504057 - ], - [ - -73.429303, - 45.504111 - ], - [ - -73.429332, - 45.504143 - ], - [ - -73.429383, - 45.504202 - ], - [ - -73.429473, - 45.50434 - ], - [ - -73.429494, - 45.504373 - ], - [ - -73.429599, - 45.504566 - ], - [ - -73.429648, - 45.504679 - ], - [ - -73.429656, - 45.504708 - ], - [ - -73.429758, - 45.505057 - ], - [ - -73.429929, - 45.505827 - ], - [ - -73.430026, - 45.506263 - ], - [ - -73.430066, - 45.506425 - ], - [ - -73.430099, - 45.506555 - ], - [ - -73.430103, - 45.506573 - ], - [ - -73.4302, - 45.506807 - ], - [ - -73.430341, - 45.507086 - ], - [ - -73.430485, - 45.507257 - ], - [ - -73.430506, - 45.507276 - ], - [ - -73.430509, - 45.507278 - ], - [ - -73.430608, - 45.507365 - ], - [ - -73.430672, - 45.507415 - ], - [ - -73.431358, - 45.507856 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431709, - 45.508009 - ], - [ - -73.431787, - 45.508005 - ], - [ - -73.432209, - 45.507974 - ], - [ - -73.433133, - 45.507911 - ], - [ - -73.435178, - 45.507773 - ], - [ - -73.437575, - 45.507662 - ], - [ - -73.438988, - 45.507572 - ], - [ - -73.440344, - 45.507425 - ], - [ - -73.445881, - 45.507063 - ], - [ - -73.452257, - 45.506638 - ], - [ - -73.452565, - 45.506616 - ], - [ - -73.453776, - 45.50654 - ], - [ - -73.455247, - 45.506419 - ], - [ - -73.456957, - 45.50624 - ], - [ - -73.460279, - 45.505832 - ], - [ - -73.460374, - 45.505823 - ], - [ - -73.461182, - 45.505728 - ], - [ - -73.463671, - 45.505509 - ], - [ - -73.465111, - 45.505401 - ], - [ - -73.467755, - 45.505222 - ], - [ - -73.468692, - 45.505168 - ], - [ - -73.470746, - 45.505025 - ], - [ - -73.472121, - 45.50494 - ], - [ - -73.479386, - 45.504451 - ], - [ - -73.482646, - 45.504173 - ], - [ - -73.483259, - 45.50411 - ], - [ - -73.483854, - 45.504011 - ], - [ - -73.484273, - 45.503934 - ], - [ - -73.485135, - 45.503799 - ], - [ - -73.486648, - 45.503552 - ], - [ - -73.487047, - 45.503503 - ], - [ - -73.487239, - 45.503494 - ], - [ - -73.48743, - 45.503494 - ], - [ - -73.487616, - 45.503512 - ], - [ - -73.487795, - 45.503543 - ], - [ - -73.48796, - 45.503597 - ], - [ - -73.48811, - 45.503678 - ], - [ - -73.488242, - 45.503768 - ], - [ - -73.488356, - 45.503876 - ], - [ - -73.48854, - 45.504115 - ], - [ - -73.488726, - 45.504371 - ], - [ - -73.488813, - 45.504511 - ], - [ - -73.489184, - 45.505132 - ], - [ - -73.489777, - 45.506126 - ], - [ - -73.490112, - 45.506666 - ], - [ - -73.490463, - 45.507201 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491318, - 45.508448 - ], - [ - -73.491611, - 45.508785 - ], - [ - -73.491934, - 45.509114 - ], - [ - -73.492109, - 45.509276 - ], - [ - -73.492486, - 45.5096 - ], - [ - -73.492892, - 45.509906 - ], - [ - -73.493105, - 45.51005 - ], - [ - -73.493324, - 45.510189 - ], - [ - -73.493692, - 45.51041 - ], - [ - -73.494018, - 45.510585 - ], - [ - -73.494514, - 45.510828 - ], - [ - -73.495039, - 45.511049 - ], - [ - -73.495599, - 45.511256 - ], - [ - -73.496194, - 45.511454 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505454, - 45.514325 - ], - [ - -73.505464, - 45.514054 - ], - [ - -73.505469, - 45.513811 - ], - [ - -73.505477, - 45.513748 - ], - [ - -73.50548, - 45.513717 - ], - [ - -73.505507, - 45.513609 - ], - [ - -73.505553, - 45.513433 - ], - [ - -73.505595, - 45.513348 - ], - [ - -73.506073, - 45.512792 - ], - [ - -73.506238, - 45.512601 - ], - [ - -73.506521, - 45.512711 - ], - [ - -73.508131, - 45.513338 - ], - [ - -73.508577, - 45.513516 - ], - [ - -73.508741, - 45.513581 - ], - [ - -73.509393, - 45.513802 - ], - [ - -73.50981, - 45.513942 - ], - [ - -73.510118, - 45.514045 - ], - [ - -73.511388, - 45.514467 - ], - [ - -73.511507, - 45.514508 - ], - [ - -73.512165, - 45.514728 - ], - [ - -73.512742, - 45.514926 - ], - [ - -73.512796, - 45.514944 - ], - [ - -73.514447, - 45.515507 - ], - [ - -73.514563, - 45.515547 - ], - [ - -73.515414, - 45.515844 - ], - [ - -73.516876, - 45.516355 - ], - [ - -73.51692, - 45.51637 - ], - [ - -73.51723, - 45.516486 - ], - [ - -73.517318, - 45.516518 - ], - [ - -73.517741, - 45.516671 - ], - [ - -73.517978, - 45.516757 - ], - [ - -73.518077, - 45.516793 - ], - [ - -73.518456, - 45.516887 - ], - [ - -73.519037, - 45.517035 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.51928, - 45.51725 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 257, - "properties": { - "id": "1f575636-0a21-4e11-9e80-b512219639d2", - "data": { - "gtfs": { - "shape_id": "442_1_A" - }, - "segments": [ - { - "distanceMeters": 179, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 382, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 391, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 2010, - "travelTimeSeconds": 350 - }, - { - "distanceMeters": 445, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 1511, - "travelTimeSeconds": 327 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 422, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 6840, - "travelTimeSeconds": 703 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 112 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 986, - "travelTimeSeconds": 307 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 300, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 19010, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 14806.765317530806, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.34, - "travelTimeWithoutDwellTimesSeconds": 3000, - "operatingTimeWithLayoverTimeSeconds": 3300, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3000, - "operatingSpeedWithLayoverMetersPerSecond": 5.76, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.34 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "79ae40e4-ac61-4b2e-a0be-b4970ad0e618", - "21eee29a-2e1c-4976-998c-3e4733f522e7", - "35bbf632-18f8-44dd-ab04-b98a1c0d6a9e", - "391ee800-682d-4882-8762-f7283ff37556", - "ffb2037a-ed82-4fd2-9ba4-9740ffc9fc74", - "9fdbce5a-94e4-48ab-912d-f3a78f30abc3", - "13b8a3e4-2729-40dc-9d31-6c29415c10b5", - "88e03d45-747f-4e6b-aeb6-97810526c65b", - "13ce318e-8a74-454a-940f-02135b69457c", - "e9563d31-b4cc-432d-bbf1-a6ee47aee4e9", - "2cd6db83-9a4e-4640-91da-759ec9e4a386", - "0d06d238-233e-42a1-9804-43854d3b5184", - "9f7ffafe-2aab-4507-b571-cce792adfb7d", - "819870cc-ffb6-4a2a-add6-5b056cc3e4c0", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", - "7c34d8fb-52d2-4cf7-8954-ff69847540ac", - "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", - "76b4c3d5-f580-480d-bfec-c2639dd60d13", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", - "e654777c-6941-47f5-a273-d73ab074f10e", - "bb148567-d18f-49e1-a388-f782610c5390", - "e8e5c7df-2edf-4749-98c2-97962c7eff9c", - "a0b2e96c-f14a-4143-9ef3-8bb0e0e8a984", - "1b175835-d1cc-4713-943f-5472ffaa8fea", - "b4fcda7a-779e-4762-b2e5-038988d405be", - "2227a38f-9c32-4890-9719-eef7445fa1fc", - "969092dd-fcfd-493a-be55-d0467c757fb1", - "2a197d72-1b4b-4077-a350-4c8656ad7bb1", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "f250cba5-329e-4403-912d-778f924ce25e", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "22be7e88-a8c8-415f-a757-b989b6589ae2", - "segments": [ - 0, - 3, - 15, - 29, - 36, - 38, - 41, - 42, - 44, - 47, - 62, - 69, - 89, - 97, - 102, - 105, - 112, - 118, - 122, - 128, - 134, - 141, - 144, - 159, - 167, - 170, - 185, - 191, - 287, - 291, - 299, - 301, - 306, - 312 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 257, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521033, - 45.524294 - ], - [ - -73.521034, - 45.524292 - ], - [ - -73.521052, - 45.524153 - ], - [ - -73.521052, - 45.524139 - ], - [ - -73.521046, - 45.524117 - ], - [ - -73.520997, - 45.524108 - ], - [ - -73.520954, - 45.524103 - ], - [ - -73.520233, - 45.524077 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519706, - 45.52323 - ], - [ - -73.519869, - 45.522907 - ], - [ - -73.520158, - 45.522337 - ], - [ - -73.520306, - 45.521899 - ], - [ - -73.520306, - 45.521896 - ], - [ - -73.520354, - 45.521696 - ], - [ - -73.520401, - 45.521498 - ], - [ - -73.520405, - 45.521373 - ], - [ - -73.520409, - 45.52119 - ], - [ - -73.520398, - 45.521025 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.518849, - 45.516987 - ], - [ - -73.518456, - 45.516887 - ], - [ - -73.518077, - 45.516793 - ], - [ - -73.517978, - 45.516757 - ], - [ - -73.517741, - 45.516671 - ], - [ - -73.517506, - 45.516587 - ], - [ - -73.517318, - 45.516518 - ], - [ - -73.51692, - 45.51637 - ], - [ - -73.516876, - 45.516355 - ], - [ - -73.515414, - 45.515844 - ], - [ - -73.514738, - 45.515608 - ], - [ - -73.514563, - 45.515547 - ], - [ - -73.512796, - 45.514944 - ], - [ - -73.512165, - 45.514728 - ], - [ - -73.511603, - 45.51454 - ], - [ - -73.511507, - 45.514508 - ], - [ - -73.511388, - 45.514467 - ], - [ - -73.510118, - 45.514045 - ], - [ - -73.50981, - 45.513942 - ], - [ - -73.509393, - 45.513802 - ], - [ - -73.508886, - 45.51363 - ], - [ - -73.508741, - 45.513581 - ], - [ - -73.508131, - 45.513338 - ], - [ - -73.506746, - 45.512799 - ], - [ - -73.506238, - 45.512601 - ], - [ - -73.506149, - 45.512565 - ], - [ - -73.505965, - 45.512765 - ], - [ - -73.505455, - 45.513321 - ], - [ - -73.505293, - 45.513586 - ], - [ - -73.505209, - 45.513825 - ], - [ - -73.505166, - 45.51396 - ], - [ - -73.505075, - 45.513931 - ], - [ - -73.504451, - 45.513734 - ], - [ - -73.50434, - 45.513699 - ], - [ - -73.504259, - 45.513672 - ], - [ - -73.503369, - 45.513397 - ], - [ - -73.502433, - 45.51315 - ], - [ - -73.502048, - 45.513078 - ], - [ - -73.501411, - 45.512898 - ], - [ - -73.50108, - 45.512799 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496939, - 45.511467 - ], - [ - -73.496617, - 45.51135 - ], - [ - -73.496018, - 45.511148 - ], - [ - -73.495656, - 45.511031 - ], - [ - -73.495265, - 45.510887 - ], - [ - -73.494937, - 45.510756 - ], - [ - -73.494619, - 45.510608 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488355, - 45.503066 - ], - [ - -73.4883, - 45.502913 - ], - [ - -73.488266, - 45.502751 - ], - [ - -73.488219, - 45.502531 - ], - [ - -73.488223, - 45.502405 - ], - [ - -73.488245, - 45.502293 - ], - [ - -73.488296, - 45.502185 - ], - [ - -73.488375, - 45.502086 - ], - [ - -73.488484, - 45.502 - ], - [ - -73.488609, - 45.501937 - ], - [ - -73.48874, - 45.501892 - ], - [ - -73.48888, - 45.501865 - ], - [ - -73.489028, - 45.501856 - ], - [ - -73.489181, - 45.501865 - ], - [ - -73.489324, - 45.501892 - ], - [ - -73.489461, - 45.501933 - ], - [ - -73.489585, - 45.501991 - ], - [ - -73.489692, - 45.502068 - ], - [ - -73.489786, - 45.502153 - ], - [ - -73.489942, - 45.502342 - ], - [ - -73.490006, - 45.50245 - ], - [ - -73.490054, - 45.502558 - ], - [ - -73.490086, - 45.502666 - ], - [ - -73.490092, - 45.502779 - ], - [ - -73.490064, - 45.502891 - ], - [ - -73.490004, - 45.502995 - ], - [ - -73.489917, - 45.503094 - ], - [ - -73.489808, - 45.503175 - ], - [ - -73.489675, - 45.503242 - ], - [ - -73.489524, - 45.503287 - ], - [ - -73.489359, - 45.50331 - ], - [ - -73.489186, - 45.503323 - ], - [ - -73.488817, - 45.503318 - ], - [ - -73.487515, - 45.503242 - ], - [ - -73.486872, - 45.503273 - ], - [ - -73.486502, - 45.503323 - ], - [ - -73.486146, - 45.503381 - ], - [ - -73.484224, - 45.503808 - ], - [ - -73.483407, - 45.503957 - ], - [ - -73.482922, - 45.504029 - ], - [ - -73.482166, - 45.504114 - ], - [ - -73.481092, - 45.504204 - ], - [ - -73.4802, - 45.504262 - ], - [ - -73.47719, - 45.50446 - ], - [ - -73.47149, - 45.504839 - ], - [ - -73.464792, - 45.505284 - ], - [ - -73.464234, - 45.505325 - ], - [ - -73.463301, - 45.505392 - ], - [ - -73.461784, - 45.505526 - ], - [ - -73.460686, - 45.505647 - ], - [ - -73.45799, - 45.505984 - ], - [ - -73.456776, - 45.506127 - ], - [ - -73.455209, - 45.506284 - ], - [ - -73.454382, - 45.506356 - ], - [ - -73.450186, - 45.506642 - ], - [ - -73.439577, - 45.507343 - ], - [ - -73.439057, - 45.507379 - ], - [ - -73.438071, - 45.507414 - ], - [ - -73.437444, - 45.507428 - ], - [ - -73.436265, - 45.507427 - ], - [ - -73.435664, - 45.507418 - ], - [ - -73.434127, - 45.507354 - ], - [ - -73.432178, - 45.507299 - ], - [ - -73.431539, - 45.507276 - ], - [ - -73.431249, - 45.507253 - ], - [ - -73.430998, - 45.507221 - ], - [ - -73.430892, - 45.507194 - ], - [ - -73.430804, - 45.507163 - ], - [ - -73.430726, - 45.507118 - ], - [ - -73.430664, - 45.507073 - ], - [ - -73.43046, - 45.50692 - ], - [ - -73.430405, - 45.506816 - ], - [ - -73.430319, - 45.506587 - ], - [ - -73.430298, - 45.506497 - ], - [ - -73.430275, - 45.506389 - ], - [ - -73.430272, - 45.506375 - ], - [ - -73.430221, - 45.506056 - ], - [ - -73.430115, - 45.505571 - ], - [ - -73.430024, - 45.505153 - ], - [ - -73.430022, - 45.505142 - ], - [ - -73.429926, - 45.504769 - ], - [ - -73.429899, - 45.5047 - ], - [ - -73.429809, - 45.504476 - ], - [ - -73.429754, - 45.504373 - ], - [ - -73.4297, - 45.504274 - ], - [ - -73.429598, - 45.504134 - ], - [ - -73.429585, - 45.504116 - ], - [ - -73.429534, - 45.504058 - ], - [ - -73.429455, - 45.503968 - ], - [ - -73.429429, - 45.503936 - ], - [ - -73.429234, - 45.503747 - ], - [ - -73.429121, - 45.503648 - ], - [ - -73.429007, - 45.503562 - ], - [ - -73.428781, - 45.503414 - ], - [ - -73.428662, - 45.503344 - ], - [ - -73.428528, - 45.503265 - ], - [ - -73.428383, - 45.503193 - ], - [ - -73.428061, - 45.503062 - ], - [ - -73.427348, - 45.502808 - ], - [ - -73.426607, - 45.502544 - ], - [ - -73.426292, - 45.502431 - ], - [ - -73.424346, - 45.501738 - ], - [ - -73.423912, - 45.501584 - ], - [ - -73.423518, - 45.501444 - ], - [ - -73.423081, - 45.501291 - ], - [ - -73.422609, - 45.501122 - ], - [ - -73.422513, - 45.501088 - ], - [ - -73.421932, - 45.500878 - ], - [ - -73.421552, - 45.500741 - ], - [ - -73.421135, - 45.500578 - ], - [ - -73.420988, - 45.50052 - ], - [ - -73.420974, - 45.500516 - ], - [ - -73.420915, - 45.500489 - ], - [ - -73.420674, - 45.50038 - ], - [ - -73.420367, - 45.500227 - ], - [ - -73.41991, - 45.499962 - ], - [ - -73.419471, - 45.499673 - ], - [ - -73.419335, - 45.49957 - ], - [ - -73.419049, - 45.499354 - ], - [ - -73.418625, - 45.499061 - ], - [ - -73.418366, - 45.498904 - ], - [ - -73.418232, - 45.498822 - ], - [ - -73.417884, - 45.498642 - ], - [ - -73.417509, - 45.498478 - ], - [ - -73.417338, - 45.498403 - ], - [ - -73.416887, - 45.498227 - ], - [ - -73.416873, - 45.498222 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.415848, - 45.497845 - ], - [ - -73.415069, - 45.497555 - ], - [ - -73.414637, - 45.497397 - ], - [ - -73.413391, - 45.496942 - ], - [ - -73.413106, - 45.496838 - ], - [ - -73.41213, - 45.496482 - ], - [ - -73.411766, - 45.496343 - ], - [ - -73.411419, - 45.496194 - ], - [ - -73.411024, - 45.49601 - ], - [ - -73.410951, - 45.495977 - ], - [ - -73.410895, - 45.495951 - ], - [ - -73.410789, - 45.495896 - ], - [ - -73.409735, - 45.495323 - ], - [ - -73.409349, - 45.495112 - ], - [ - -73.409109, - 45.494973 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.408825, - 45.494811 - ], - [ - -73.408434, - 45.49459 - ], - [ - -73.408369, - 45.494555 - ], - [ - -73.408119, - 45.494419 - ], - [ - -73.407735, - 45.494211 - ], - [ - -73.407122, - 45.493914 - ], - [ - -73.406637, - 45.493695 - ], - [ - -73.406594, - 45.493675 - ], - [ - -73.404056, - 45.49253 - ], - [ - -73.40355, - 45.492282 - ], - [ - -73.403081, - 45.492034 - ], - [ - -73.402782, - 45.491854 - ], - [ - -73.402767, - 45.491845 - ], - [ - -73.402626, - 45.491759 - ], - [ - -73.402493, - 45.491674 - ], - [ - -73.402463, - 45.491651 - ], - [ - -73.402075, - 45.491386 - ], - [ - -73.401668, - 45.491075 - ], - [ - -73.401599, - 45.491016 - ], - [ - -73.401167, - 45.490642 - ], - [ - -73.400821, - 45.490307 - ], - [ - -73.40081, - 45.490296 - ], - [ - -73.398806, - 45.488243 - ], - [ - -73.398629, - 45.488062 - ], - [ - -73.398311, - 45.487738 - ], - [ - -73.397543, - 45.486952 - ], - [ - -73.397073, - 45.486473 - ], - [ - -73.396669, - 45.486059 - ], - [ - -73.396515, - 45.485901 - ], - [ - -73.395797, - 45.485167 - ], - [ - -73.395424, - 45.48482 - ], - [ - -73.39519, - 45.484626 - ], - [ - -73.394903, - 45.484401 - ], - [ - -73.394655, - 45.484216 - ], - [ - -73.39454, - 45.484131 - ], - [ - -73.394481, - 45.484095 - ], - [ - -73.394291, - 45.483964 - ], - [ - -73.393942, - 45.483748 - ], - [ - -73.393737, - 45.48363 - ], - [ - -73.393666, - 45.48359 - ], - [ - -73.393194, - 45.483333 - ], - [ - -73.389927, - 45.481655 - ], - [ - -73.389604, - 45.481489 - ], - [ - -73.389467, - 45.481417 - ], - [ - -73.38933, - 45.481345 - ], - [ - -73.389073, - 45.481214 - ], - [ - -73.388666, - 45.481007 - ], - [ - -73.388028, - 45.480701 - ], - [ - -73.387051, - 45.480205 - ], - [ - -73.385931, - 45.479623 - ], - [ - -73.385914, - 45.479614 - ], - [ - -73.385138, - 45.479213 - ], - [ - -73.38433, - 45.478794 - ], - [ - -73.37988, - 45.476499 - ], - [ - -73.379478, - 45.476301 - ], - [ - -73.37895, - 45.476057 - ], - [ - -73.378863, - 45.476016 - ], - [ - -73.378865, - 45.476016 - ], - [ - -73.378727, - 45.475958 - ], - [ - -73.378232, - 45.475746 - ], - [ - -73.377593, - 45.475489 - ], - [ - -73.37695, - 45.47525 - ], - [ - -73.376248, - 45.474999 - ], - [ - -73.373728, - 45.474097 - ], - [ - -73.373694, - 45.474085 - ], - [ - -73.368355, - 45.47218 - ], - [ - -73.366776, - 45.471598 - ], - [ - -73.365525, - 45.471115 - ], - [ - -73.365275, - 45.471016 - ], - [ - -73.364278, - 45.470619 - ], - [ - -73.360061, - 45.468936 - ], - [ - -73.358811, - 45.468435 - ], - [ - -73.354674, - 45.466783 - ], - [ - -73.353925, - 45.466489 - ], - [ - -73.353417, - 45.466309 - ], - [ - -73.352648, - 45.466065 - ], - [ - -73.351871, - 45.465857 - ], - [ - -73.351443, - 45.465762 - ], - [ - -73.351763, - 45.465334 - ], - [ - -73.352126, - 45.464849 - ], - [ - -73.352221, - 45.464719 - ], - [ - -73.35259, - 45.464211 - ], - [ - -73.352891, - 45.463802 - ], - [ - -73.35408, - 45.462191 - ], - [ - -73.3541, - 45.462163 - ], - [ - -73.355121, - 45.4608 - ], - [ - -73.355713, - 45.460008 - ], - [ - -73.356938, - 45.45839 - ], - [ - -73.357619, - 45.45747 - ], - [ - -73.358218, - 45.456659 - ], - [ - -73.360284, - 45.453888 - ], - [ - -73.36037, - 45.453772 - ], - [ - -73.360735, - 45.453904 - ], - [ - -73.360808, - 45.45392 - ], - [ - -73.36085, - 45.453914 - ], - [ - -73.36089, - 45.453881 - ], - [ - -73.360947, - 45.453822 - ], - [ - -73.361614, - 45.452902 - ], - [ - -73.362345, - 45.451917 - ], - [ - -73.362884, - 45.45119 - ], - [ - -73.362862, - 45.451175 - ], - [ - -73.362247, - 45.450781 - ], - [ - -73.362089, - 45.45068 - ], - [ - -73.361154, - 45.450101 - ], - [ - -73.360523, - 45.44971 - ], - [ - -73.360474, - 45.44968 - ], - [ - -73.360435, - 45.449657 - ], - [ - -73.360398, - 45.449646 - ], - [ - -73.360356, - 45.44964 - ], - [ - -73.360313, - 45.449642 - ], - [ - -73.360274, - 45.449652 - ], - [ - -73.360247, - 45.449663 - ], - [ - -73.360219, - 45.44968 - ], - [ - -73.360198, - 45.449699 - ], - [ - -73.360099, - 45.449834 - ], - [ - -73.35979, - 45.450256 - ], - [ - -73.358814, - 45.451561 - ], - [ - -73.358327, - 45.452213 - ], - [ - -73.357938, - 45.452733 - ], - [ - -73.357928, - 45.45275 - ], - [ - -73.357921, - 45.452769 - ], - [ - -73.357919, - 45.452788 - ], - [ - -73.357921, - 45.452807 - ], - [ - -73.357927, - 45.452825 - ], - [ - -73.357937, - 45.452843 - ], - [ - -73.35795, - 45.45286 - ], - [ - -73.357968, - 45.452874 - ], - [ - -73.357988, - 45.452887 - ], - [ - -73.358011, - 45.452897 - ], - [ - -73.358125, - 45.452939 - ], - [ - -73.358583, - 45.453108 - ], - [ - -73.35859, - 45.45311 - ], - [ - -73.358937, - 45.453238 - ], - [ - -73.359397, - 45.453408 - ], - [ - -73.359918, - 45.4536 - ], - [ - -73.36037, - 45.453772 - ], - [ - -73.360187, - 45.454019 - ] - ] - }, - "id": 258, - "properties": { - "id": "a3b57247-f724-438c-82d8-5256dba724b6", - "data": { - "gtfs": { - "shape_id": "442_1_R" - }, - "segments": [ - { - "distanceMeters": 1078, - "travelTimeSeconds": 192 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 7318, - "travelTimeSeconds": 660 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 426, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 366, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 508, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 467, - "travelTimeSeconds": 112 - }, - { - "distanceMeters": 1059, - "travelTimeSeconds": 254 - }, - { - "distanceMeters": 463, - "travelTimeSeconds": 112 - }, - { - "distanceMeters": 2025, - "travelTimeSeconds": 371 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 419, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 82 - }, - { - "distanceMeters": 466, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 93 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 67 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 300, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 19839, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 14775.303039053631, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.61, - "travelTimeWithoutDwellTimesSeconds": 3000, - "operatingTimeWithLayoverTimeSeconds": 3300, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 3000, - "operatingSpeedWithLayoverMetersPerSecond": 6.01, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.61 - }, - "mode": "bus", - "name": "Pacific", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "f250cba5-329e-4403-912d-778f924ce25e", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "f1be4054-f28c-45a4-bc0b-58b82e1e6e83", - "969092dd-fcfd-493a-be55-d0467c757fb1", - "2227a38f-9c32-4890-9719-eef7445fa1fc", - "648a2d3d-42dd-4ea9-875b-0eb410b8b1e8", - "74cb2351-ff1a-4938-8179-802bb3572f42", - "b904303e-de8b-4c71-8b48-48af0de2a9a1", - "61fd8171-4497-441f-b32a-7917186d6014", - "7de9ea25-e152-4431-8cc3-23b5e1427ab3", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "5dd96d41-c4eb-4453-9e97-752999b1688d", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "df4c6e14-8093-4f02-87d3-4b3d84466b04", - "7c34d8fb-52d2-4cf7-8954-ff69847540ac", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "7b30134c-a936-4c6b-8038-780d1041baea", - "9f7ffafe-2aab-4507-b571-cce792adfb7d", - "f7cea010-bc23-4b23-9787-ee1c97385691", - "021fa80e-da9f-408b-be90-bb5e978d84f8", - "2cd6db83-9a4e-4640-91da-759ec9e4a386", - "e9563d31-b4cc-432d-bbf1-a6ee47aee4e9", - "67c19007-add6-4dc0-8788-d8052cdf5468", - "88e03d45-747f-4e6b-aeb6-97810526c65b", - "6879e62e-b2af-404b-9ac0-810ced89b9c5", - "584e7592-5868-423c-a0f3-f7047fcc0c94", - "ffb2037a-ed82-4fd2-9ba4-9740ffc9fc74", - "79ae40e4-ac61-4b2e-a0be-b4970ad0e618", - "21eee29a-2e1c-4976-998c-3e4733f522e7", - "35bbf632-18f8-44dd-ab04-b98a1c0d6a9e", - "391ee800-682d-4882-8762-f7283ff37556", - "ffb2037a-ed82-4fd2-9ba4-9740ffc9fc74" - ], - "stops": [], - "line_id": "22be7e88-a8c8-415f-a757-b989b6589ae2", - "segments": [ - 0, - 42, - 47, - 51, - 57, - 60, - 187, - 195, - 209, - 211, - 219, - 236, - 242, - 246, - 252, - 260, - 266, - 276, - 281, - 287, - 295, - 309, - 317, - 332, - 336, - 337, - 339, - 342, - 344, - 355, - 358, - 370, - 384 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 258, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.411928, - 45.570873 - ], - [ - -73.411891, - 45.570502 - ], - [ - -73.411065, - 45.570571 - ], - [ - -73.411129, - 45.571102 - ], - [ - -73.410994, - 45.571255 - ], - [ - -73.410936, - 45.571321 - ], - [ - -73.410765, - 45.571334 - ], - [ - -73.410748, - 45.571184 - ], - [ - -73.410704, - 45.570776 - ], - [ - -73.410746, - 45.570577 - ], - [ - -73.410818, - 45.570477 - ], - [ - -73.410908, - 45.570418 - ], - [ - -73.410929, - 45.570405 - ], - [ - -73.411046, - 45.570363 - ], - [ - -73.41119, - 45.570304 - ], - [ - -73.411249, - 45.570286 - ], - [ - -73.411367, - 45.570251 - ], - [ - -73.411813, - 45.570182 - ], - [ - -73.413694, - 45.569892 - ], - [ - -73.415055, - 45.5697 - ], - [ - -73.415864, - 45.569597 - ], - [ - -73.41641, - 45.569548 - ], - [ - -73.418229, - 45.569432 - ], - [ - -73.41904, - 45.56937 - ], - [ - -73.419878, - 45.569294 - ], - [ - -73.426759, - 45.568912 - ], - [ - -73.427489, - 45.568885 - ], - [ - -73.427815, - 45.568881 - ], - [ - -73.428531, - 45.568895 - ], - [ - -73.428876, - 45.568913 - ], - [ - -73.429847, - 45.568986 - ], - [ - -73.430756, - 45.569103 - ], - [ - -73.431676, - 45.569266 - ], - [ - -73.435387, - 45.570051 - ], - [ - -73.442647, - 45.571598 - ], - [ - -73.444001, - 45.571954 - ], - [ - -73.444216, - 45.572008 - ], - [ - -73.444233, - 45.572012 - ], - [ - -73.44467, - 45.572157 - ], - [ - -73.445015, - 45.572283 - ], - [ - -73.445181, - 45.57235 - ], - [ - -73.445342, - 45.572427 - ], - [ - -73.445468, - 45.572499 - ], - [ - -73.445561, - 45.572589 - ], - [ - -73.445628, - 45.57267 - ], - [ - -73.445681, - 45.572765 - ], - [ - -73.44571, - 45.572873 - ], - [ - -73.445721, - 45.572972 - ], - [ - -73.445714, - 45.573066 - ], - [ - -73.445681, - 45.573174 - ], - [ - -73.44564, - 45.57325 - ], - [ - -73.445407, - 45.573621 - ], - [ - -73.444953, - 45.573633 - ], - [ - -73.44492, - 45.573618 - ], - [ - -73.444872, - 45.573601 - ], - [ - -73.444829, - 45.573598 - ], - [ - -73.444749, - 45.573615 - ], - [ - -73.44471, - 45.573635 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.44419, - 45.573529 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.443615, - 45.573315 - ], - [ - -73.443539, - 45.573203 - ], - [ - -73.44348, - 45.573034 - ], - [ - -73.443427, - 45.572912 - ], - [ - -73.44336, - 45.572841 - ], - [ - -73.443253, - 45.572772 - ], - [ - -73.443199, - 45.572746 - ], - [ - -73.443114, - 45.572731 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442722, - 45.572934 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.446746, - 45.574587 - ], - [ - -73.447238, - 45.574749 - ], - [ - -73.447388, - 45.574789 - ], - [ - -73.447436, - 45.574664 - ], - [ - -73.447747, - 45.574246 - ], - [ - -73.447911, - 45.574048 - ], - [ - -73.448003, - 45.573949 - ], - [ - -73.448105, - 45.573859 - ], - [ - -73.448208, - 45.573776 - ], - [ - -73.448217, - 45.573769 - ], - [ - -73.448342, - 45.573688 - ], - [ - -73.448479, - 45.573616 - ], - [ - -73.448612, - 45.573562 - ], - [ - -73.448944, - 45.573459 - ], - [ - -73.449123, - 45.573428 - ], - [ - -73.449305, - 45.573405 - ], - [ - -73.4495, - 45.573396 - ], - [ - -73.449708, - 45.573401 - ], - [ - -73.450131, - 45.573437 - ], - [ - -73.45057, - 45.573487 - ], - [ - -73.452027, - 45.573685 - ], - [ - -73.45367, - 45.573951 - ], - [ - -73.455009, - 45.57424 - ], - [ - -73.456205, - 45.574501 - ], - [ - -73.457846, - 45.574844 - ], - [ - -73.459196, - 45.575101 - ], - [ - -73.460081, - 45.575263 - ], - [ - -73.460408, - 45.575326 - ], - [ - -73.462346, - 45.575705 - ], - [ - -73.463166, - 45.575871 - ], - [ - -73.466047, - 45.576484 - ], - [ - -73.467519, - 45.576809 - ], - [ - -73.469081, - 45.577137 - ], - [ - -73.469847, - 45.5773 - ], - [ - -73.46993, - 45.577318 - ], - [ - -73.470459, - 45.57743 - ], - [ - -73.474313, - 45.578254 - ], - [ - -73.475326, - 45.578471 - ], - [ - -73.475636, - 45.578538 - ], - [ - -73.475932, - 45.578601 - ], - [ - -73.476433, - 45.578707 - ], - [ - -73.481329, - 45.579745 - ], - [ - -73.48155, - 45.579795 - ], - [ - -73.484545, - 45.580447 - ], - [ - -73.485965, - 45.580767 - ], - [ - -73.497124, - 45.583147 - ], - [ - -73.508904, - 45.585656 - ], - [ - -73.509302, - 45.58574 - ], - [ - -73.509739, - 45.585835 - ], - [ - -73.510248, - 45.585943 - ], - [ - -73.510753, - 45.58605 - ], - [ - -73.511089, - 45.586122 - ], - [ - -73.512652, - 45.586456 - ], - [ - -73.513072, - 45.586547 - ], - [ - -73.513383, - 45.586622 - ], - [ - -73.513615, - 45.586679 - ], - [ - -73.513896, - 45.586752 - ], - [ - -73.51435, - 45.586877 - ], - [ - -73.514692, - 45.586978 - ], - [ - -73.514943, - 45.587051 - ], - [ - -73.515214, - 45.587137 - ], - [ - -73.515381, - 45.587189 - ], - [ - -73.515499, - 45.58723 - ], - [ - -73.515615, - 45.587265 - ], - [ - -73.515863, - 45.587347 - ], - [ - -73.516018, - 45.587396 - ], - [ - -73.516093, - 45.587421 - ], - [ - -73.516263, - 45.587478 - ], - [ - -73.516374, - 45.587512 - ], - [ - -73.517412, - 45.587855 - ], - [ - -73.517647, - 45.587929 - ], - [ - -73.517898, - 45.588012 - ], - [ - -73.518165, - 45.5881 - ], - [ - -73.518383, - 45.588169 - ], - [ - -73.51862, - 45.588243 - ], - [ - -73.518873, - 45.588329 - ], - [ - -73.519146, - 45.588421 - ], - [ - -73.519592, - 45.588583 - ], - [ - -73.519868, - 45.588673 - ], - [ - -73.520234, - 45.588791 - ], - [ - -73.520667, - 45.588925 - ], - [ - -73.520851, - 45.588978 - ], - [ - -73.521073, - 45.589039 - ], - [ - -73.521333, - 45.589108 - ], - [ - -73.521497, - 45.589152 - ], - [ - -73.521544, - 45.589163 - ], - [ - -73.521823, - 45.58923 - ], - [ - -73.522033, - 45.589281 - ], - [ - -73.522524, - 45.589399 - ], - [ - -73.522914, - 45.589494 - ], - [ - -73.52345, - 45.589622 - ], - [ - -73.523991, - 45.589764 - ], - [ - -73.52438, - 45.58988 - ], - [ - -73.524584, - 45.589945 - ], - [ - -73.524734, - 45.589998 - ], - [ - -73.52493, - 45.590067 - ], - [ - -73.525178, - 45.590158 - ], - [ - -73.525533, - 45.5903 - ], - [ - -73.526168, - 45.590581 - ], - [ - -73.526515, - 45.590738 - ], - [ - -73.526839, - 45.590884 - ], - [ - -73.527065, - 45.590977 - ], - [ - -73.527417, - 45.591124 - ], - [ - -73.527746, - 45.591255 - ], - [ - -73.527969, - 45.591342 - ], - [ - -73.528175, - 45.59142 - ], - [ - -73.52845, - 45.591517 - ], - [ - -73.528558, - 45.591559 - ], - [ - -73.528686, - 45.591601 - ], - [ - -73.528843, - 45.591657 - ], - [ - -73.528989, - 45.591705 - ], - [ - -73.529147, - 45.591753 - ], - [ - -73.529298, - 45.591799 - ], - [ - -73.529667, - 45.591896 - ], - [ - -73.530088, - 45.591993 - ], - [ - -73.530428, - 45.592062 - ], - [ - -73.530573, - 45.592092 - ], - [ - -73.530708, - 45.592118 - ], - [ - -73.530821, - 45.59214 - ], - [ - -73.531509, - 45.592269 - ], - [ - -73.531903, - 45.592341 - ], - [ - -73.532263, - 45.592438 - ], - [ - -73.532659, - 45.592533 - ], - [ - -73.532915, - 45.592591 - ], - [ - -73.533081, - 45.592632 - ], - [ - -73.533228, - 45.592666 - ], - [ - -73.534254, - 45.592895 - ], - [ - -73.53476, - 45.593005 - ], - [ - -73.535125, - 45.593079 - ], - [ - -73.53543, - 45.59314 - ], - [ - -73.535913, - 45.593237 - ], - [ - -73.536223, - 45.593308 - ], - [ - -73.536422, - 45.593363 - ], - [ - -73.536757, - 45.593427 - ], - [ - -73.536928, - 45.593461 - ], - [ - -73.537323, - 45.593537 - ], - [ - -73.53774, - 45.59364 - ], - [ - -73.538073, - 45.593797 - ], - [ - -73.538329, - 45.593961 - ], - [ - -73.538376, - 45.594194 - ], - [ - -73.538248, - 45.594374 - ], - [ - -73.538003, - 45.594472 - ], - [ - -73.537828, - 45.594497 - ], - [ - -73.537529, - 45.594425 - ], - [ - -73.536539, - 45.594133 - ], - [ - -73.536896, - 45.593513 - ], - [ - -73.536928, - 45.593461 - ], - [ - -73.537021, - 45.593311 - ], - [ - -73.537094, - 45.593191 - ], - [ - -73.537199, - 45.593022 - ], - [ - -73.537249, - 45.59294 - ], - [ - -73.537595, - 45.592349 - ], - [ - -73.538187, - 45.591323 - ], - [ - -73.538445, - 45.590876 - ], - [ - -73.539019, - 45.589891 - ], - [ - -73.538858, - 45.589857 - ], - [ - -73.538782, - 45.58985 - ], - [ - -73.538619, - 45.589794 - ], - [ - -73.537871, - 45.589536 - ], - [ - -73.537763, - 45.589685 - ], - [ - -73.537641, - 45.589854 - ], - [ - -73.53791, - 45.589946 - ], - [ - -73.538217, - 45.59005 - ], - [ - -73.538311, - 45.590083 - ], - [ - -73.538428, - 45.589913 - ], - [ - -73.538041, - 45.58978 - ] - ] - }, - "id": 259, - "properties": { - "id": "d89ca1ad-b258-46cd-b647-9c3b06333f48", - "data": { - "gtfs": { - "shape_id": "461_1_A" - }, - "segments": [ - { - "distanceMeters": 3373, - "travelTimeSeconds": 420 - }, - { - "distanceMeters": 9049, - "travelTimeSeconds": 660 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12422, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10045.180015778305, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 11.5, - "travelTimeWithoutDwellTimesSeconds": 1080, - "operatingTimeWithLayoverTimeSeconds": 1260, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1080, - "operatingSpeedWithLayoverMetersPerSecond": 9.86, - "averageSpeedWithoutDwellTimesMetersPerSecond": 11.5 - }, - "mode": "bus", - "name": "Métro Radisson", - "color": "#A32638", - "nodes": [ - "9c784932-945b-47d8-afa8-e5b73889acfb", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "b49806f2-28c3-484e-bd5a-b46e80d9eb6f" - ], - "stops": [], - "line_id": "8b5a744d-961c-4467-a3ed-a80c77d981a9", - "segments": [ - 0, - 61 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 259, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.538041, - 45.58978 - ], - [ - -73.537763, - 45.589685 - ], - [ - -73.537412, - 45.589569 - ], - [ - -73.537244, - 45.589514 - ], - [ - -73.537175, - 45.589492 - ], - [ - -73.537061, - 45.589663 - ], - [ - -73.537147, - 45.589691 - ], - [ - -73.537641, - 45.589854 - ], - [ - -73.537763, - 45.589685 - ], - [ - -73.537871, - 45.589536 - ], - [ - -73.538619, - 45.589794 - ], - [ - -73.538782, - 45.58985 - ], - [ - -73.538858, - 45.589857 - ], - [ - -73.538292, - 45.590834 - ], - [ - -73.53801, - 45.591289 - ], - [ - -73.53724, - 45.592229 - ], - [ - -73.536919, - 45.592462 - ], - [ - -73.536427, - 45.592632 - ], - [ - -73.536128, - 45.592668 - ], - [ - -73.535634, - 45.592691 - ], - [ - -73.535039, - 45.592586 - ], - [ - -73.534281, - 45.592453 - ], - [ - -73.534162, - 45.592432 - ], - [ - -73.533328, - 45.592284 - ], - [ - -73.532072, - 45.592016 - ], - [ - -73.529941, - 45.591524 - ], - [ - -73.527811, - 45.590825 - ], - [ - -73.527241, - 45.590441 - ], - [ - -73.52689, - 45.590006 - ], - [ - -73.526662, - 45.589263 - ], - [ - -73.526448, - 45.58921 - ], - [ - -73.526375, - 45.58935 - ], - [ - -73.526233, - 45.589625 - ], - [ - -73.526099, - 45.589887 - ], - [ - -73.525936, - 45.590207 - ], - [ - -73.525676, - 45.590715 - ], - [ - -73.525536, - 45.590657 - ], - [ - -73.525437, - 45.590615 - ], - [ - -73.524684, - 45.590291 - ], - [ - -73.523747, - 45.589931 - ], - [ - -73.522883, - 45.5897 - ], - [ - -73.520235, - 45.589073 - ], - [ - -73.520459, - 45.5886 - ], - [ - -73.520755, - 45.588049 - ], - [ - -73.52084, - 45.587831 - ], - [ - -73.521, - 45.587477 - ], - [ - -73.52129, - 45.586836 - ], - [ - -73.521502, - 45.586128 - ], - [ - -73.521883, - 45.584855 - ], - [ - -73.521921, - 45.584808 - ], - [ - -73.521957, - 45.584763 - ], - [ - -73.522003, - 45.584698 - ], - [ - -73.522045, - 45.584645 - ], - [ - -73.522061, - 45.584629 - ], - [ - -73.522081, - 45.58461 - ], - [ - -73.522109, - 45.58459 - ], - [ - -73.522134, - 45.584576 - ], - [ - -73.522163, - 45.584561 - ], - [ - -73.522192, - 45.584549 - ], - [ - -73.522235, - 45.584534 - ], - [ - -73.522274, - 45.584523 - ], - [ - -73.522325, - 45.584515 - ], - [ - -73.522374, - 45.584509 - ], - [ - -73.522429, - 45.58451 - ], - [ - -73.522571, - 45.584531 - ], - [ - -73.52343, - 45.584815 - ], - [ - -73.52376, - 45.584927 - ], - [ - -73.523841, - 45.584954 - ], - [ - -73.523945, - 45.584989 - ], - [ - -73.524016, - 45.585015 - ], - [ - -73.524096, - 45.585047 - ], - [ - -73.524151, - 45.585073 - ], - [ - -73.524197, - 45.585098 - ], - [ - -73.524236, - 45.585122 - ], - [ - -73.524278, - 45.585148 - ], - [ - -73.524324, - 45.585178 - ], - [ - -73.524369, - 45.585214 - ], - [ - -73.524406, - 45.585247 - ], - [ - -73.524463, - 45.585303 - ], - [ - -73.524503, - 45.585349 - ], - [ - -73.524542, - 45.58539 - ], - [ - -73.524569, - 45.58543 - ], - [ - -73.524593, - 45.58547 - ], - [ - -73.52462, - 45.585521 - ], - [ - -73.52464, - 45.58557 - ], - [ - -73.52466, - 45.585624 - ], - [ - -73.524672, - 45.58567 - ], - [ - -73.524685, - 45.585725 - ], - [ - -73.524689, - 45.585768 - ], - [ - -73.524691, - 45.585817 - ], - [ - -73.524689, - 45.585864 - ], - [ - -73.524689, - 45.585869 - ], - [ - -73.524682, - 45.585915 - ], - [ - -73.524667, - 45.585966 - ], - [ - -73.524655, - 45.586011 - ], - [ - -73.524638, - 45.586057 - ], - [ - -73.524579, - 45.586185 - ], - [ - -73.5243, - 45.586752 - ], - [ - -73.524239, - 45.586876 - ], - [ - -73.524205, - 45.586942 - ], - [ - -73.524179, - 45.586987 - ], - [ - -73.524164, - 45.587015 - ], - [ - -73.524145, - 45.587045 - ], - [ - -73.524103, - 45.587109 - ], - [ - -73.524067, - 45.587159 - ], - [ - -73.524034, - 45.587198 - ], - [ - -73.523996, - 45.587242 - ], - [ - -73.523958, - 45.587276 - ], - [ - -73.523927, - 45.587306 - ], - [ - -73.523898, - 45.587332 - ], - [ - -73.523863, - 45.587361 - ], - [ - -73.523831, - 45.587386 - ], - [ - -73.523767, - 45.587435 - ], - [ - -73.5237, - 45.58748 - ], - [ - -73.523647, - 45.587515 - ], - [ - -73.523625, - 45.587528 - ], - [ - -73.523564, - 45.587565 - ], - [ - -73.523503, - 45.587597 - ], - [ - -73.523435, - 45.587631 - ], - [ - -73.523361, - 45.587666 - ], - [ - -73.522995, - 45.587814 - ], - [ - -73.522789, - 45.587888 - ], - [ - -73.522534, - 45.587959 - ], - [ - -73.522332, - 45.588012 - ], - [ - -73.522084, - 45.58807 - ], - [ - -73.521851, - 45.588105 - ], - [ - -73.521643, - 45.588133 - ], - [ - -73.521312, - 45.588151 - ], - [ - -73.521043, - 45.588156 - ], - [ - -73.520917, - 45.588158 - ], - [ - -73.52081, - 45.588158 - ], - [ - -73.520688, - 45.588159 - ], - [ - -73.520523, - 45.588154 - ], - [ - -73.520408, - 45.588148 - ], - [ - -73.520268, - 45.588141 - ], - [ - -73.520163, - 45.588135 - ], - [ - -73.520068, - 45.588129 - ], - [ - -73.51998, - 45.588122 - ], - [ - -73.519887, - 45.588116 - ], - [ - -73.51979, - 45.588107 - ], - [ - -73.519696, - 45.588097 - ], - [ - -73.519541, - 45.588083 - ], - [ - -73.519413, - 45.588068 - ], - [ - -73.519239, - 45.588046 - ], - [ - -73.519068, - 45.588023 - ], - [ - -73.518923, - 45.588002 - ], - [ - -73.518749, - 45.587973 - ], - [ - -73.518537, - 45.587936 - ], - [ - -73.518361, - 45.587901 - ], - [ - -73.518208, - 45.587865 - ], - [ - -73.518073, - 45.587834 - ], - [ - -73.517947, - 45.587803 - ], - [ - -73.517919, - 45.587796 - ], - [ - -73.517669, - 45.587733 - ], - [ - -73.517466, - 45.587675 - ], - [ - -73.517114, - 45.587597 - ], - [ - -73.516945, - 45.587542 - ], - [ - -73.516325, - 45.587341 - ], - [ - -73.515858, - 45.587189 - ], - [ - -73.515252, - 45.586992 - ], - [ - -73.514772, - 45.586839 - ], - [ - -73.514455, - 45.586742 - ], - [ - -73.51397, - 45.586605 - ], - [ - -73.513711, - 45.586533 - ], - [ - -73.51342, - 45.586456 - ], - [ - -73.513232, - 45.586405 - ], - [ - -73.513046, - 45.586357 - ], - [ - -73.512839, - 45.586307 - ], - [ - -73.512478, - 45.586224 - ], - [ - -73.511402, - 45.585995 - ], - [ - -73.508969, - 45.585479 - ], - [ - -73.497184, - 45.582969 - ], - [ - -73.48603, - 45.580596 - ], - [ - -73.484605, - 45.580304 - ], - [ - -73.481594, - 45.579682 - ], - [ - -73.481299, - 45.579619 - ], - [ - -73.476527, - 45.578597 - ], - [ - -73.475793, - 45.57844 - ], - [ - -73.471564, - 45.577476 - ], - [ - -73.470253, - 45.577185 - ], - [ - -73.470227, - 45.577179 - ], - [ - -73.470082, - 45.577148 - ], - [ - -73.469737, - 45.577073 - ], - [ - -73.469494, - 45.57702 - ], - [ - -73.468711, - 45.57685 - ], - [ - -73.465956, - 45.57631 - ], - [ - -73.462443, - 45.575565 - ], - [ - -73.457218, - 45.5744 - ], - [ - -73.456588, - 45.574263 - ], - [ - -73.454467, - 45.573722 - ], - [ - -73.453947, - 45.573587 - ], - [ - -73.453448, - 45.573447 - ], - [ - -73.452981, - 45.573299 - ], - [ - -73.452764, - 45.573218 - ], - [ - -73.452558, - 45.573128 - ], - [ - -73.452363, - 45.573028 - ], - [ - -73.452177, - 45.572916 - ], - [ - -73.452006, - 45.572794 - ], - [ - -73.45185, - 45.572659 - ], - [ - -73.451709, - 45.572515 - ], - [ - -73.451584, - 45.572362 - ], - [ - -73.451481, - 45.5722 - ], - [ - -73.451391, - 45.572034 - ], - [ - -73.451086, - 45.571422 - ], - [ - -73.451003, - 45.571291 - ], - [ - -73.450904, - 45.571179 - ], - [ - -73.450791, - 45.571075 - ], - [ - -73.450667, - 45.570994 - ], - [ - -73.450535, - 45.570922 - ], - [ - -73.450463, - 45.570891 - ], - [ - -73.450402, - 45.570864 - ], - [ - -73.449347, - 45.570476 - ], - [ - -73.449264, - 45.570454 - ], - [ - -73.449093, - 45.570413 - ], - [ - -73.449089, - 45.570422 - ], - [ - -73.44907, - 45.570467 - ], - [ - -73.449049, - 45.570517 - ], - [ - -73.448873, - 45.570917 - ], - [ - -73.448826, - 45.571028 - ], - [ - -73.448823, - 45.571034 - ], - [ - -73.448771, - 45.571164 - ], - [ - -73.44818, - 45.572625 - ], - [ - -73.447654, - 45.573778 - ], - [ - -73.447519, - 45.574084 - ], - [ - -73.447518, - 45.574088 - ], - [ - -73.447455, - 45.574133 - ], - [ - -73.447308, - 45.574407 - ], - [ - -73.447267, - 45.574466 - ], - [ - -73.447241, - 45.574497 - ], - [ - -73.447197, - 45.574529 - ], - [ - -73.447149, - 45.574547 - ], - [ - -73.447112, - 45.574556 - ], - [ - -73.447049, - 45.574565 - ], - [ - -73.446965, - 45.574569 - ], - [ - -73.446884, - 45.574565 - ], - [ - -73.446792, - 45.574547 - ], - [ - -73.446652, - 45.574511 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442789, - 45.572822 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.443147, - 45.572802 - ], - [ - -73.443228, - 45.572879 - ], - [ - -73.443273, - 45.572955 - ], - [ - -73.443271, - 45.573 - ], - [ - -73.443276, - 45.573125 - ], - [ - -73.443281, - 45.573166 - ], - [ - -73.443386, - 45.57326 - ], - [ - -73.443502, - 45.573319 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.44468, - 45.573697 - ], - [ - -73.444697, - 45.573706 - ], - [ - -73.444729, - 45.573713 - ], - [ - -73.444769, - 45.573716 - ], - [ - -73.444831, - 45.573715 - ], - [ - -73.444884, - 45.573708 - ], - [ - -73.44491, - 45.573694 - ], - [ - -73.444953, - 45.573633 - ], - [ - -73.444922, - 45.573619 - ], - [ - -73.44492, - 45.573618 - ], - [ - -73.444872, - 45.573601 - ], - [ - -73.444829, - 45.573598 - ], - [ - -73.444749, - 45.573615 - ], - [ - -73.44471, - 45.573635 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.443539, - 45.573203 - ], - [ - -73.443527, - 45.573169 - ], - [ - -73.44348, - 45.573034 - ], - [ - -73.443427, - 45.572912 - ], - [ - -73.443422, - 45.572907 - ], - [ - -73.44336, - 45.572841 - ], - [ - -73.443253, - 45.572772 - ], - [ - -73.443199, - 45.572746 - ], - [ - -73.443114, - 45.572731 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442327, - 45.572407 - ], - [ - -73.442172, - 45.572214 - ], - [ - -73.442103, - 45.572145 - ], - [ - -73.442041, - 45.572083 - ], - [ - -73.441925, - 45.571984 - ], - [ - -73.441785, - 45.571885 - ], - [ - -73.44164, - 45.571795 - ], - [ - -73.441501, - 45.571723 - ], - [ - -73.4413, - 45.571651 - ], - [ - -73.441159, - 45.571606 - ], - [ - -73.440756, - 45.571507 - ], - [ - -73.440331, - 45.571417 - ], - [ - -73.43982, - 45.571308 - ], - [ - -73.439233, - 45.571191 - ], - [ - -73.43873, - 45.571092 - ], - [ - -73.438292, - 45.571002 - ], - [ - -73.437633, - 45.570857 - ], - [ - -73.43669, - 45.570659 - ], - [ - -73.436314, - 45.570582 - ], - [ - -73.435177, - 45.570334 - ], - [ - -73.434821, - 45.570257 - ], - [ - -73.433907, - 45.570063 - ], - [ - -73.432847, - 45.569838 - ], - [ - -73.431904, - 45.569639 - ], - [ - -73.431328, - 45.569526 - ], - [ - -73.430487, - 45.569386 - ], - [ - -73.430017, - 45.569328 - ], - [ - -73.429624, - 45.569282 - ], - [ - -73.428846, - 45.569228 - ], - [ - -73.428276, - 45.569205 - ], - [ - -73.427493, - 45.5692 - ], - [ - -73.426957, - 45.569213 - ], - [ - -73.426073, - 45.569262 - ], - [ - -73.424538, - 45.569347 - ], - [ - -73.422873, - 45.56944 - ], - [ - -73.421741, - 45.569502 - ], - [ - -73.420778, - 45.569551 - ], - [ - -73.419829, - 45.569604 - ], - [ - -73.417529, - 45.569774 - ], - [ - -73.416713, - 45.569818 - ], - [ - -73.416545, - 45.569832 - ], - [ - -73.41628, - 45.569881 - ], - [ - -73.416182, - 45.569915 - ], - [ - -73.416084, - 45.569948 - ], - [ - -73.415904, - 45.570025 - ], - [ - -73.415778, - 45.570101 - ], - [ - -73.415561, - 45.569988 - ], - [ - -73.415428, - 45.56991 - ], - [ - -73.415319, - 45.569883 - ], - [ - -73.415221, - 45.569874 - ], - [ - -73.413267, - 45.570173 - ], - [ - -73.411891, - 45.570502 - ], - [ - -73.411065, - 45.570571 - ], - [ - -73.411129, - 45.571102 - ], - [ - -73.411942, - 45.571019 - ], - [ - -73.411928, - 45.570873 - ] - ] - }, - "id": 260, - "properties": { - "id": "6c3370dd-0b26-44c5-a53a-a0feff83b46b", - "data": { - "gtfs": { - "shape_id": "461_1_R" - }, - "segments": [ - { - "distanceMeters": 2552, - "travelTimeSeconds": 199 - }, - { - "distanceMeters": 6984, - "travelTimeSeconds": 548 - }, - { - "distanceMeters": 1183, - "travelTimeSeconds": 93 - }, - { - "distanceMeters": 2838, - "travelTimeSeconds": 420 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13556, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10045.180015778305, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 10.76, - "travelTimeWithoutDwellTimesSeconds": 1260, - "operatingTimeWithLayoverTimeSeconds": 1440, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1260, - "operatingSpeedWithLayoverMetersPerSecond": 9.41, - "averageSpeedWithoutDwellTimesMetersPerSecond": 10.76 - }, - "mode": "bus", - "name": "Stat. de Touraine", - "color": "#A32638", - "nodes": [ - "b49806f2-28c3-484e-bd5a-b46e80d9eb6f", - "e3b3b7c9-8cf4-450f-95eb-c8f9836e391d", - "6672cb43-3241-42d7-b5c0-fdaed10338b9", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "9c784932-945b-47d8-afa8-e5b73889acfb" - ], - "stops": [], - "line_id": "8b5a744d-961c-4467-a3ed-a80c77d981a9", - "segments": [ - 0, - 47, - 220, - 280 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 260, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.411928, - 45.570873 - ], - [ - -73.411891, - 45.570502 - ], - [ - -73.411395, - 45.570543 - ], - [ - -73.411065, - 45.570571 - ], - [ - -73.411103, - 45.570891 - ], - [ - -73.411129, - 45.571102 - ], - [ - -73.410936, - 45.571321 - ], - [ - -73.410765, - 45.571334 - ], - [ - -73.410752, - 45.571221 - ], - [ - -73.410748, - 45.571184 - ], - [ - -73.410734, - 45.571049 - ], - [ - -73.410704, - 45.570776 - ], - [ - -73.410746, - 45.570577 - ], - [ - -73.410818, - 45.570477 - ], - [ - -73.410929, - 45.570405 - ], - [ - -73.410955, - 45.570396 - ], - [ - -73.411046, - 45.570363 - ], - [ - -73.41119, - 45.570304 - ], - [ - -73.411249, - 45.570286 - ], - [ - -73.411367, - 45.570251 - ], - [ - -73.411813, - 45.570182 - ], - [ - -73.413694, - 45.569892 - ], - [ - -73.415055, - 45.5697 - ], - [ - -73.415864, - 45.569597 - ], - [ - -73.41641, - 45.569548 - ], - [ - -73.418229, - 45.569432 - ], - [ - -73.41904, - 45.56937 - ], - [ - -73.419878, - 45.569294 - ], - [ - -73.426759, - 45.568912 - ], - [ - -73.427489, - 45.568885 - ], - [ - -73.427815, - 45.568881 - ], - [ - -73.428531, - 45.568895 - ], - [ - -73.428876, - 45.568913 - ], - [ - -73.429847, - 45.568986 - ], - [ - -73.430756, - 45.569103 - ], - [ - -73.431676, - 45.569266 - ], - [ - -73.435387, - 45.570051 - ], - [ - -73.442647, - 45.571598 - ], - [ - -73.444001, - 45.571954 - ], - [ - -73.444215, - 45.572008 - ], - [ - -73.444233, - 45.572012 - ], - [ - -73.44467, - 45.572157 - ], - [ - -73.445015, - 45.572283 - ], - [ - -73.445181, - 45.57235 - ], - [ - -73.445342, - 45.572427 - ], - [ - -73.445468, - 45.572499 - ], - [ - -73.445561, - 45.572589 - ], - [ - -73.445628, - 45.57267 - ], - [ - -73.445681, - 45.572765 - ], - [ - -73.44571, - 45.572873 - ], - [ - -73.445721, - 45.572972 - ], - [ - -73.445714, - 45.573066 - ], - [ - -73.445681, - 45.573174 - ], - [ - -73.44564, - 45.57325 - ], - [ - -73.445407, - 45.573621 - ], - [ - -73.444953, - 45.573633 - ], - [ - -73.44492, - 45.573618 - ], - [ - -73.444872, - 45.573601 - ], - [ - -73.444829, - 45.573598 - ], - [ - -73.444791, - 45.573606 - ], - [ - -73.444749, - 45.573615 - ], - [ - -73.44471, - 45.573635 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.443619, - 45.573322 - ], - [ - -73.443539, - 45.573203 - ], - [ - -73.443522, - 45.573154 - ], - [ - -73.44348, - 45.573034 - ], - [ - -73.443427, - 45.572912 - ], - [ - -73.44336, - 45.572841 - ], - [ - -73.443253, - 45.572772 - ], - [ - -73.443199, - 45.572746 - ], - [ - -73.443114, - 45.572731 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.442812, - 45.572813 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.44273, - 45.572944 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.446746, - 45.574587 - ], - [ - -73.447238, - 45.574749 - ], - [ - -73.447388, - 45.574789 - ], - [ - -73.447436, - 45.574664 - ], - [ - -73.447588, - 45.574459 - ], - [ - -73.447747, - 45.574246 - ], - [ - -73.447911, - 45.574048 - ], - [ - -73.448003, - 45.573949 - ], - [ - -73.448105, - 45.573859 - ], - [ - -73.448217, - 45.573769 - ], - [ - -73.448342, - 45.573688 - ], - [ - -73.448479, - 45.573616 - ], - [ - -73.448612, - 45.573562 - ], - [ - -73.448944, - 45.573459 - ], - [ - -73.449123, - 45.573428 - ], - [ - -73.449305, - 45.573405 - ], - [ - -73.4495, - 45.573396 - ], - [ - -73.449708, - 45.573401 - ], - [ - -73.450131, - 45.573437 - ], - [ - -73.45057, - 45.573487 - ], - [ - -73.452027, - 45.573685 - ], - [ - -73.45367, - 45.573951 - ], - [ - -73.455009, - 45.57424 - ], - [ - -73.456205, - 45.574501 - ], - [ - -73.457846, - 45.574844 - ], - [ - -73.459196, - 45.575101 - ], - [ - -73.460081, - 45.575263 - ], - [ - -73.460408, - 45.575326 - ], - [ - -73.462346, - 45.575705 - ], - [ - -73.463166, - 45.575871 - ], - [ - -73.466047, - 45.576484 - ], - [ - -73.467519, - 45.576809 - ], - [ - -73.469081, - 45.577137 - ], - [ - -73.469847, - 45.5773 - ], - [ - -73.46993, - 45.577318 - ], - [ - -73.470459, - 45.57743 - ], - [ - -73.474313, - 45.578254 - ], - [ - -73.475326, - 45.578471 - ], - [ - -73.475636, - 45.578538 - ], - [ - -73.475932, - 45.578601 - ], - [ - -73.476433, - 45.578707 - ], - [ - -73.481329, - 45.579745 - ], - [ - -73.48155, - 45.579795 - ], - [ - -73.484545, - 45.580447 - ], - [ - -73.485965, - 45.580767 - ], - [ - -73.497124, - 45.583147 - ], - [ - -73.508904, - 45.585656 - ], - [ - -73.509302, - 45.58574 - ], - [ - -73.509739, - 45.585835 - ], - [ - -73.510248, - 45.585943 - ], - [ - -73.510753, - 45.58605 - ], - [ - -73.511089, - 45.586122 - ], - [ - -73.512652, - 45.586456 - ], - [ - -73.513072, - 45.586547 - ], - [ - -73.513383, - 45.586622 - ], - [ - -73.513615, - 45.586679 - ], - [ - -73.513896, - 45.586752 - ], - [ - -73.51435, - 45.586877 - ], - [ - -73.514692, - 45.586978 - ], - [ - -73.514943, - 45.587051 - ], - [ - -73.515214, - 45.587137 - ], - [ - -73.515381, - 45.587189 - ], - [ - -73.515499, - 45.58723 - ], - [ - -73.515615, - 45.587265 - ], - [ - -73.515863, - 45.587347 - ], - [ - -73.516018, - 45.587396 - ], - [ - -73.516093, - 45.587421 - ], - [ - -73.516263, - 45.587478 - ], - [ - -73.516374, - 45.587512 - ], - [ - -73.517412, - 45.587855 - ], - [ - -73.517647, - 45.587929 - ], - [ - -73.517898, - 45.588012 - ], - [ - -73.518165, - 45.5881 - ], - [ - -73.518383, - 45.588169 - ], - [ - -73.51862, - 45.588243 - ], - [ - -73.518873, - 45.588329 - ], - [ - -73.519146, - 45.588421 - ], - [ - -73.519592, - 45.588583 - ], - [ - -73.519868, - 45.588673 - ], - [ - -73.520234, - 45.588791 - ], - [ - -73.520667, - 45.588925 - ], - [ - -73.520851, - 45.588978 - ], - [ - -73.521073, - 45.589039 - ], - [ - -73.521333, - 45.589108 - ], - [ - -73.521497, - 45.589152 - ], - [ - -73.521544, - 45.589163 - ], - [ - -73.521823, - 45.58923 - ], - [ - -73.522033, - 45.589281 - ], - [ - -73.522524, - 45.589399 - ], - [ - -73.522914, - 45.589494 - ], - [ - -73.52345, - 45.589622 - ], - [ - -73.523991, - 45.589764 - ], - [ - -73.52438, - 45.58988 - ], - [ - -73.524584, - 45.589945 - ], - [ - -73.524734, - 45.589998 - ], - [ - -73.52493, - 45.590067 - ], - [ - -73.525178, - 45.590158 - ], - [ - -73.525533, - 45.5903 - ], - [ - -73.526168, - 45.590581 - ], - [ - -73.526515, - 45.590738 - ], - [ - -73.526839, - 45.590884 - ], - [ - -73.527065, - 45.590977 - ], - [ - -73.527417, - 45.591124 - ], - [ - -73.527746, - 45.591255 - ], - [ - -73.527969, - 45.591342 - ], - [ - -73.528175, - 45.59142 - ], - [ - -73.52845, - 45.591517 - ], - [ - -73.528558, - 45.591559 - ], - [ - -73.528686, - 45.591601 - ], - [ - -73.528843, - 45.591657 - ], - [ - -73.528989, - 45.591705 - ], - [ - -73.529147, - 45.591753 - ], - [ - -73.529298, - 45.591799 - ], - [ - -73.529667, - 45.591896 - ], - [ - -73.530088, - 45.591993 - ], - [ - -73.530428, - 45.592062 - ], - [ - -73.530573, - 45.592092 - ], - [ - -73.530708, - 45.592118 - ], - [ - -73.530821, - 45.59214 - ], - [ - -73.531509, - 45.592269 - ], - [ - -73.531903, - 45.592341 - ], - [ - -73.532263, - 45.592438 - ], - [ - -73.532659, - 45.592533 - ], - [ - -73.532915, - 45.592591 - ], - [ - -73.533081, - 45.592632 - ], - [ - -73.533228, - 45.592666 - ], - [ - -73.534254, - 45.592895 - ], - [ - -73.53476, - 45.593005 - ], - [ - -73.535125, - 45.593079 - ], - [ - -73.53543, - 45.59314 - ], - [ - -73.535913, - 45.593237 - ], - [ - -73.536223, - 45.593308 - ], - [ - -73.536422, - 45.593363 - ], - [ - -73.536757, - 45.593427 - ], - [ - -73.536928, - 45.593461 - ], - [ - -73.537323, - 45.593537 - ], - [ - -73.53774, - 45.59364 - ], - [ - -73.538073, - 45.593797 - ], - [ - -73.538123, - 45.593829 - ], - [ - -73.538329, - 45.593961 - ], - [ - -73.538376, - 45.594194 - ], - [ - -73.538248, - 45.594374 - ], - [ - -73.538003, - 45.594472 - ], - [ - -73.537828, - 45.594497 - ], - [ - -73.537529, - 45.594425 - ], - [ - -73.536539, - 45.594133 - ], - [ - -73.536677, - 45.593894 - ], - [ - -73.536896, - 45.593513 - ], - [ - -73.536928, - 45.593461 - ], - [ - -73.537021, - 45.593311 - ], - [ - -73.537094, - 45.593191 - ], - [ - -73.537199, - 45.593022 - ], - [ - -73.537249, - 45.59294 - ], - [ - -73.537595, - 45.592349 - ], - [ - -73.538187, - 45.591323 - ], - [ - -73.538445, - 45.590876 - ], - [ - -73.539019, - 45.589891 - ], - [ - -73.538947, - 45.589876 - ], - [ - -73.538858, - 45.589857 - ], - [ - -73.538782, - 45.58985 - ], - [ - -73.538619, - 45.589794 - ], - [ - -73.537871, - 45.589536 - ], - [ - -73.537817, - 45.58961 - ], - [ - -73.537763, - 45.589685 - ], - [ - -73.537641, - 45.589854 - ], - [ - -73.537821, - 45.589916 - ], - [ - -73.53791, - 45.589946 - ], - [ - -73.538217, - 45.59005 - ], - [ - -73.538311, - 45.590083 - ], - [ - -73.538428, - 45.589913 - ], - [ - -73.538076, - 45.589792 - ], - [ - -73.537763, - 45.589685 - ], - [ - -73.537578, - 45.589624 - ], - [ - -73.537412, - 45.589569 - ], - [ - -73.537175, - 45.589492 - ], - [ - -73.537061, - 45.589663 - ], - [ - -73.537641, - 45.589854 - ], - [ - -73.537763, - 45.589685 - ], - [ - -73.537871, - 45.589536 - ], - [ - -73.537938, - 45.58956 - ], - [ - -73.538619, - 45.589794 - ], - [ - -73.538782, - 45.58985 - ], - [ - -73.538858, - 45.589857 - ], - [ - -73.539019, - 45.589891 - ], - [ - -73.53908, - 45.589786 - ], - [ - -73.539603, - 45.588892 - ], - [ - -73.539698, - 45.588738 - ], - [ - -73.540181, - 45.587898 - ], - [ - -73.540558, - 45.587265 - ], - [ - -73.540923, - 45.586624 - ], - [ - -73.541297, - 45.585989 - ], - [ - -73.541668, - 45.585348 - ], - [ - -73.542014, - 45.584771 - ], - [ - -73.542262, - 45.584368 - ], - [ - -73.543175, - 45.582804 - ], - [ - -73.543234, - 45.582705 - ], - [ - -73.544095, - 45.581261 - ], - [ - -73.54449, - 45.5806 - ], - [ - -73.544835, - 45.580022 - ], - [ - -73.545619, - 45.578708 - ], - [ - -73.54593, - 45.578171 - ], - [ - -73.546352, - 45.577477 - ], - [ - -73.546757, - 45.57688 - ], - [ - -73.547152, - 45.576294 - ], - [ - -73.547786, - 45.575353 - ], - [ - -73.548196, - 45.574752 - ], - [ - -73.548611, - 45.574145 - ], - [ - -73.548962, - 45.573626 - ], - [ - -73.549018, - 45.573542 - ], - [ - -73.549085, - 45.573442 - ], - [ - -73.549142, - 45.573357 - ], - [ - -73.550328, - 45.571603 - ], - [ - -73.55104, - 45.570571 - ], - [ - -73.551291, - 45.570653 - ], - [ - -73.551645, - 45.570769 - ], - [ - -73.553372, - 45.57133 - ], - [ - -73.555543, - 45.572029 - ], - [ - -73.557413, - 45.572623 - ], - [ - -73.55744, - 45.572632 - ], - [ - -73.557564, - 45.572671 - ], - [ - -73.559908, - 45.573468 - ], - [ - -73.561997, - 45.574181 - ], - [ - -73.562174, - 45.574267 - ], - [ - -73.562347, - 45.574357 - ], - [ - -73.562588, - 45.574437 - ], - [ - -73.562709, - 45.57449 - ], - [ - -73.562817, - 45.574026 - ], - [ - -73.562891, - 45.573712 - ], - [ - -73.562915, - 45.573627 - ], - [ - -73.562992, - 45.573375 - ], - [ - -73.563015, - 45.573302 - ], - [ - -73.563047, - 45.573221 - ], - [ - -73.563128, - 45.573 - ], - [ - -73.563167, - 45.57291 - ], - [ - -73.563211, - 45.572839 - ], - [ - -73.563284, - 45.572732 - ], - [ - -73.56337, - 45.572598 - ], - [ - -73.563414, - 45.572536 - ], - [ - -73.563461, - 45.572474 - ], - [ - -73.563582, - 45.57233 - ], - [ - -73.564111, - 45.571732 - ], - [ - -73.564321, - 45.571496 - ], - [ - -73.564645, - 45.571138 - ], - [ - -73.564966, - 45.570784 - ], - [ - -73.565181, - 45.570542 - ], - [ - -73.56555, - 45.57012 - ], - [ - -73.565728, - 45.569926 - ], - [ - -73.566285, - 45.569299 - ], - [ - -73.566601, - 45.569397 - ], - [ - -73.567019, - 45.56952 - ], - [ - -73.567302, - 45.569607 - ], - [ - -73.568503, - 45.569977 - ], - [ - -73.572272, - 45.571139 - ], - [ - -73.575524, - 45.572154 - ], - [ - -73.575587, - 45.572173 - ], - [ - -73.57604, - 45.572312 - ], - [ - -73.579533, - 45.573393 - ], - [ - -73.579899, - 45.573506 - ], - [ - -73.579472, - 45.574001 - ], - [ - -73.578303, - 45.575356 - ], - [ - -73.578116, - 45.575567 - ], - [ - -73.577241, - 45.576554 - ], - [ - -73.576488, - 45.577423 - ], - [ - -73.575894, - 45.578107 - ], - [ - -73.575304, - 45.578812 - ], - [ - -73.574928, - 45.579367 - ], - [ - -73.574561, - 45.579948 - ], - [ - -73.573383, - 45.581645 - ] - ] - }, - "id": 261, - "properties": { - "id": "a5f35350-ebd7-4bce-b846-e58625e3ae13", - "data": { - "gtfs": { - "shape_id": "462_1_A" - }, - "segments": [ - { - "distanceMeters": 3372, - "travelTimeSeconds": 420 - }, - { - "distanceMeters": 9047, - "travelTimeSeconds": 660 - }, - { - "distanceMeters": 3177, - "travelTimeSeconds": 600 - }, - { - "distanceMeters": 2538, - "travelTimeSeconds": 540 - }, - { - "distanceMeters": 771, - "travelTimeSeconds": 240 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 246, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 18903, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 12625.01647241902, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.68, - "travelTimeWithoutDwellTimesSeconds": 2460, - "operatingTimeWithLayoverTimeSeconds": 2706, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2460, - "operatingSpeedWithLayoverMetersPerSecond": 6.99, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.68 - }, - "mode": "bus", - "name": "Santa Cabrini", - "color": "#A32638", - "nodes": [ - "9c784932-945b-47d8-afa8-e5b73889acfb", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "b49806f2-28c3-484e-bd5a-b46e80d9eb6f", - "171b05ae-a95b-4adb-882d-8ac87dc4790f", - "b92809dc-fe83-4c8b-86e3-0a17f3b710ba", - "30a1fc98-889c-4ed9-b389-c33a3f70398a" - ], - "stops": [], - "line_id": "bbb03fa8-a01f-4a3f-b3d7-9fb1d25cc1fe", - "segments": [ - 0, - 64, - 260, - 307, - 350 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 261, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.573383, - 45.581645 - ], - [ - -73.57334, - 45.581708 - ], - [ - -73.572621, - 45.582745 - ], - [ - -73.572392, - 45.58267 - ], - [ - -73.571541, - 45.582395 - ], - [ - -73.570728, - 45.58212 - ], - [ - -73.569927, - 45.581855 - ], - [ - -73.569447, - 45.581692 - ], - [ - -73.569124, - 45.581582 - ], - [ - -73.568452, - 45.581351 - ], - [ - -73.567709, - 45.581118 - ], - [ - -73.565286, - 45.580304 - ], - [ - -73.561662, - 45.579092 - ], - [ - -73.560085, - 45.578573 - ], - [ - -73.560361, - 45.578146 - ], - [ - -73.56059, - 45.577791 - ], - [ - -73.560778, - 45.577504 - ], - [ - -73.561077, - 45.577042 - ], - [ - -73.561413, - 45.576528 - ], - [ - -73.561801, - 45.575928 - ], - [ - -73.561977, - 45.575656 - ], - [ - -73.562344, - 45.575077 - ], - [ - -73.562612, - 45.574664 - ], - [ - -73.562709, - 45.57449 - ], - [ - -73.562588, - 45.574437 - ], - [ - -73.562448, - 45.574275 - ], - [ - -73.562198, - 45.57417 - ], - [ - -73.561897, - 45.574042 - ], - [ - -73.561521, - 45.573908 - ], - [ - -73.561288, - 45.573833 - ], - [ - -73.559964, - 45.573383 - ], - [ - -73.557817, - 45.57265 - ], - [ - -73.557626, - 45.572585 - ], - [ - -73.557073, - 45.57241 - ], - [ - -73.555593, - 45.571941 - ], - [ - -73.553427, - 45.571237 - ], - [ - -73.551701, - 45.570682 - ], - [ - -73.551112, - 45.570477 - ], - [ - -73.550939, - 45.570423 - ], - [ - -73.550883, - 45.570518 - ], - [ - -73.550486, - 45.571101 - ], - [ - -73.55018, - 45.571551 - ], - [ - -73.548995, - 45.573313 - ], - [ - -73.548927, - 45.573405 - ], - [ - -73.548871, - 45.573497 - ], - [ - -73.548815, - 45.573576 - ], - [ - -73.548762, - 45.573654 - ], - [ - -73.548463, - 45.574096 - ], - [ - -73.548058, - 45.574705 - ], - [ - -73.547656, - 45.575309 - ], - [ - -73.547015, - 45.57625 - ], - [ - -73.546622, - 45.576836 - ], - [ - -73.546215, - 45.577434 - ], - [ - -73.545474, - 45.578656 - ], - [ - -73.5447, - 45.579977 - ], - [ - -73.544352, - 45.580556 - ], - [ - -73.543956, - 45.581218 - ], - [ - -73.543098, - 45.58267 - ], - [ - -73.543033, - 45.582768 - ], - [ - -73.542129, - 45.584328 - ], - [ - -73.541883, - 45.58473 - ], - [ - -73.541539, - 45.585303 - ], - [ - -73.541166, - 45.585944 - ], - [ - -73.540781, - 45.586577 - ], - [ - -73.540419, - 45.587221 - ], - [ - -73.540035, - 45.587853 - ], - [ - -73.539545, - 45.588689 - ], - [ - -73.53945, - 45.58884 - ], - [ - -73.538858, - 45.589857 - ], - [ - -73.538782, - 45.58985 - ], - [ - -73.538771, - 45.589846 - ], - [ - -73.538619, - 45.589794 - ], - [ - -73.537871, - 45.589536 - ], - [ - -73.537825, - 45.589599 - ], - [ - -73.537763, - 45.589685 - ], - [ - -73.537641, - 45.589854 - ], - [ - -73.537737, - 45.589887 - ], - [ - -73.53791, - 45.589946 - ], - [ - -73.538217, - 45.59005 - ], - [ - -73.538311, - 45.590083 - ], - [ - -73.538428, - 45.589913 - ], - [ - -73.53809, - 45.589797 - ], - [ - -73.537763, - 45.589685 - ], - [ - -73.537649, - 45.589647 - ], - [ - -73.537412, - 45.589569 - ], - [ - -73.537175, - 45.589492 - ], - [ - -73.537061, - 45.589663 - ], - [ - -73.537641, - 45.589854 - ], - [ - -73.53769, - 45.589787 - ], - [ - -73.537763, - 45.589685 - ], - [ - -73.537871, - 45.589536 - ], - [ - -73.537994, - 45.589579 - ], - [ - -73.538619, - 45.589794 - ], - [ - -73.538782, - 45.58985 - ], - [ - -73.538858, - 45.589857 - ], - [ - -73.538675, - 45.590172 - ], - [ - -73.538292, - 45.590834 - ], - [ - -73.53801, - 45.591289 - ], - [ - -73.53724, - 45.592229 - ], - [ - -73.536919, - 45.592462 - ], - [ - -73.536427, - 45.592632 - ], - [ - -73.536128, - 45.592668 - ], - [ - -73.535634, - 45.592691 - ], - [ - -73.535039, - 45.592586 - ], - [ - -73.534363, - 45.592467 - ], - [ - -73.534162, - 45.592432 - ], - [ - -73.533328, - 45.592284 - ], - [ - -73.532072, - 45.592016 - ], - [ - -73.529941, - 45.591524 - ], - [ - -73.527811, - 45.590825 - ], - [ - -73.527241, - 45.590441 - ], - [ - -73.52689, - 45.590006 - ], - [ - -73.526662, - 45.589263 - ], - [ - -73.526448, - 45.58921 - ], - [ - -73.526365, - 45.589371 - ], - [ - -73.526233, - 45.589625 - ], - [ - -73.526099, - 45.589887 - ], - [ - -73.525936, - 45.590207 - ], - [ - -73.525676, - 45.590715 - ], - [ - -73.525536, - 45.590657 - ], - [ - -73.525464, - 45.590626 - ], - [ - -73.524684, - 45.590291 - ], - [ - -73.523747, - 45.589931 - ], - [ - -73.522883, - 45.5897 - ], - [ - -73.520235, - 45.589073 - ], - [ - -73.520459, - 45.5886 - ], - [ - -73.520755, - 45.588049 - ], - [ - -73.52084, - 45.587831 - ], - [ - -73.521009, - 45.587456 - ], - [ - -73.52129, - 45.586836 - ], - [ - -73.521496, - 45.58615 - ], - [ - -73.521883, - 45.584855 - ], - [ - -73.521921, - 45.584808 - ], - [ - -73.521957, - 45.584763 - ], - [ - -73.522003, - 45.584698 - ], - [ - -73.522045, - 45.584645 - ], - [ - -73.522061, - 45.584629 - ], - [ - -73.522081, - 45.58461 - ], - [ - -73.522109, - 45.58459 - ], - [ - -73.522134, - 45.584576 - ], - [ - -73.522163, - 45.584561 - ], - [ - -73.522192, - 45.584549 - ], - [ - -73.522235, - 45.584534 - ], - [ - -73.522274, - 45.584523 - ], - [ - -73.522325, - 45.584515 - ], - [ - -73.522374, - 45.584509 - ], - [ - -73.522429, - 45.58451 - ], - [ - -73.522571, - 45.584531 - ], - [ - -73.52343, - 45.584815 - ], - [ - -73.52376, - 45.584927 - ], - [ - -73.523841, - 45.584954 - ], - [ - -73.523945, - 45.584989 - ], - [ - -73.524016, - 45.585015 - ], - [ - -73.524096, - 45.585047 - ], - [ - -73.524151, - 45.585073 - ], - [ - -73.524197, - 45.585098 - ], - [ - -73.524236, - 45.585122 - ], - [ - -73.524278, - 45.585148 - ], - [ - -73.524324, - 45.585178 - ], - [ - -73.524369, - 45.585214 - ], - [ - -73.524406, - 45.585247 - ], - [ - -73.524463, - 45.585303 - ], - [ - -73.524503, - 45.585349 - ], - [ - -73.524542, - 45.58539 - ], - [ - -73.524569, - 45.58543 - ], - [ - -73.524593, - 45.58547 - ], - [ - -73.52462, - 45.585521 - ], - [ - -73.52464, - 45.58557 - ], - [ - -73.52466, - 45.585624 - ], - [ - -73.524672, - 45.58567 - ], - [ - -73.524685, - 45.585725 - ], - [ - -73.524689, - 45.585768 - ], - [ - -73.524691, - 45.585817 - ], - [ - -73.524689, - 45.58586 - ], - [ - -73.524689, - 45.585864 - ], - [ - -73.524682, - 45.585915 - ], - [ - -73.524667, - 45.585966 - ], - [ - -73.524655, - 45.586011 - ], - [ - -73.524638, - 45.586057 - ], - [ - -73.524579, - 45.586185 - ], - [ - -73.5243, - 45.586752 - ], - [ - -73.524239, - 45.586876 - ], - [ - -73.524205, - 45.586942 - ], - [ - -73.524179, - 45.586987 - ], - [ - -73.524164, - 45.587015 - ], - [ - -73.524145, - 45.587045 - ], - [ - -73.524103, - 45.587109 - ], - [ - -73.524067, - 45.587159 - ], - [ - -73.524034, - 45.587198 - ], - [ - -73.523996, - 45.587242 - ], - [ - -73.523958, - 45.587276 - ], - [ - -73.523927, - 45.587306 - ], - [ - -73.523898, - 45.587332 - ], - [ - -73.523863, - 45.587361 - ], - [ - -73.523831, - 45.587386 - ], - [ - -73.523767, - 45.587435 - ], - [ - -73.5237, - 45.58748 - ], - [ - -73.523647, - 45.587515 - ], - [ - -73.523625, - 45.587528 - ], - [ - -73.523564, - 45.587565 - ], - [ - -73.523503, - 45.587597 - ], - [ - -73.523435, - 45.587631 - ], - [ - -73.523361, - 45.587666 - ], - [ - -73.522995, - 45.587814 - ], - [ - -73.522789, - 45.587888 - ], - [ - -73.522534, - 45.587959 - ], - [ - -73.522332, - 45.588012 - ], - [ - -73.522084, - 45.58807 - ], - [ - -73.521851, - 45.588105 - ], - [ - -73.521643, - 45.588133 - ], - [ - -73.521312, - 45.588151 - ], - [ - -73.521043, - 45.588156 - ], - [ - -73.520917, - 45.588158 - ], - [ - -73.52081, - 45.588158 - ], - [ - -73.520688, - 45.588159 - ], - [ - -73.520523, - 45.588154 - ], - [ - -73.520408, - 45.588148 - ], - [ - -73.520268, - 45.588141 - ], - [ - -73.520163, - 45.588135 - ], - [ - -73.520068, - 45.588129 - ], - [ - -73.51998, - 45.588122 - ], - [ - -73.519887, - 45.588116 - ], - [ - -73.51979, - 45.588107 - ], - [ - -73.519696, - 45.588097 - ], - [ - -73.519541, - 45.588083 - ], - [ - -73.519413, - 45.588068 - ], - [ - -73.519239, - 45.588046 - ], - [ - -73.519068, - 45.588023 - ], - [ - -73.518923, - 45.588002 - ], - [ - -73.518749, - 45.587973 - ], - [ - -73.518537, - 45.587936 - ], - [ - -73.518361, - 45.587901 - ], - [ - -73.518208, - 45.587865 - ], - [ - -73.518073, - 45.587834 - ], - [ - -73.517947, - 45.587803 - ], - [ - -73.517919, - 45.587796 - ], - [ - -73.517669, - 45.587733 - ], - [ - -73.517466, - 45.587675 - ], - [ - -73.517114, - 45.587597 - ], - [ - -73.516945, - 45.587542 - ], - [ - -73.516325, - 45.587341 - ], - [ - -73.515858, - 45.587189 - ], - [ - -73.515252, - 45.586992 - ], - [ - -73.514772, - 45.586839 - ], - [ - -73.514455, - 45.586742 - ], - [ - -73.51397, - 45.586605 - ], - [ - -73.513711, - 45.586533 - ], - [ - -73.51342, - 45.586456 - ], - [ - -73.513232, - 45.586405 - ], - [ - -73.513046, - 45.586357 - ], - [ - -73.512839, - 45.586307 - ], - [ - -73.512478, - 45.586224 - ], - [ - -73.511402, - 45.585995 - ], - [ - -73.508969, - 45.585479 - ], - [ - -73.497184, - 45.582969 - ], - [ - -73.48603, - 45.580596 - ], - [ - -73.484605, - 45.580304 - ], - [ - -73.481594, - 45.579682 - ], - [ - -73.481299, - 45.579619 - ], - [ - -73.476527, - 45.578597 - ], - [ - -73.475793, - 45.57844 - ], - [ - -73.471564, - 45.577476 - ], - [ - -73.470253, - 45.577185 - ], - [ - -73.470227, - 45.577179 - ], - [ - -73.470082, - 45.577148 - ], - [ - -73.469737, - 45.577073 - ], - [ - -73.469494, - 45.57702 - ], - [ - -73.468711, - 45.57685 - ], - [ - -73.465956, - 45.57631 - ], - [ - -73.462443, - 45.575565 - ], - [ - -73.457218, - 45.5744 - ], - [ - -73.456588, - 45.574263 - ], - [ - -73.454467, - 45.573722 - ], - [ - -73.453947, - 45.573587 - ], - [ - -73.453448, - 45.573447 - ], - [ - -73.452981, - 45.573299 - ], - [ - -73.452764, - 45.573218 - ], - [ - -73.452558, - 45.573128 - ], - [ - -73.452363, - 45.573028 - ], - [ - -73.452212, - 45.572937 - ], - [ - -73.452177, - 45.572916 - ], - [ - -73.452006, - 45.572794 - ], - [ - -73.45185, - 45.572659 - ], - [ - -73.451709, - 45.572515 - ], - [ - -73.451584, - 45.572362 - ], - [ - -73.451481, - 45.5722 - ], - [ - -73.451391, - 45.572034 - ], - [ - -73.451086, - 45.571422 - ], - [ - -73.451003, - 45.571291 - ], - [ - -73.450904, - 45.571179 - ], - [ - -73.450791, - 45.571075 - ], - [ - -73.450667, - 45.570994 - ], - [ - -73.450535, - 45.570922 - ], - [ - -73.450463, - 45.570891 - ], - [ - -73.450402, - 45.570864 - ], - [ - -73.449347, - 45.570476 - ], - [ - -73.449264, - 45.570454 - ], - [ - -73.449093, - 45.570413 - ], - [ - -73.449089, - 45.570422 - ], - [ - -73.44907, - 45.570467 - ], - [ - -73.449049, - 45.570517 - ], - [ - -73.448873, - 45.570917 - ], - [ - -73.448823, - 45.571034 - ], - [ - -73.44879, - 45.571115 - ], - [ - -73.44818, - 45.572625 - ], - [ - -73.447654, - 45.573778 - ], - [ - -73.447519, - 45.574084 - ], - [ - -73.447518, - 45.574088 - ], - [ - -73.447455, - 45.574133 - ], - [ - -73.447308, - 45.574407 - ], - [ - -73.447295, - 45.574426 - ], - [ - -73.447267, - 45.574466 - ], - [ - -73.447241, - 45.574497 - ], - [ - -73.447197, - 45.574529 - ], - [ - -73.447149, - 45.574547 - ], - [ - -73.447112, - 45.574556 - ], - [ - -73.447049, - 45.574565 - ], - [ - -73.446965, - 45.574569 - ], - [ - -73.446884, - 45.574565 - ], - [ - -73.446792, - 45.574547 - ], - [ - -73.446652, - 45.574511 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442781, - 45.572826 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.443147, - 45.572802 - ], - [ - -73.443228, - 45.572879 - ], - [ - -73.443273, - 45.572955 - ], - [ - -73.443271, - 45.573 - ], - [ - -73.443276, - 45.573125 - ], - [ - -73.443281, - 45.573166 - ], - [ - -73.443386, - 45.57326 - ], - [ - -73.443502, - 45.573319 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.44468, - 45.573697 - ], - [ - -73.444697, - 45.573706 - ], - [ - -73.444729, - 45.573713 - ], - [ - -73.444769, - 45.573716 - ], - [ - -73.444831, - 45.573715 - ], - [ - -73.444879, - 45.573709 - ], - [ - -73.444884, - 45.573708 - ], - [ - -73.44491, - 45.573694 - ], - [ - -73.444953, - 45.573633 - ], - [ - -73.44492, - 45.573618 - ], - [ - -73.444872, - 45.573601 - ], - [ - -73.444829, - 45.573598 - ], - [ - -73.444805, - 45.573603 - ], - [ - -73.444749, - 45.573615 - ], - [ - -73.44471, - 45.573635 - ], - [ - -73.444648, - 45.57367 - ], - [ - -73.443646, - 45.573362 - ], - [ - -73.443539, - 45.573203 - ], - [ - -73.443527, - 45.573168 - ], - [ - -73.443519, - 45.573145 - ], - [ - -73.44348, - 45.573034 - ], - [ - -73.443427, - 45.572912 - ], - [ - -73.44336, - 45.572841 - ], - [ - -73.443253, - 45.572772 - ], - [ - -73.443199, - 45.572746 - ], - [ - -73.443114, - 45.572731 - ], - [ - -73.443049, - 45.572747 - ], - [ - -73.442959, - 45.572752 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442614, - 45.572792 - ], - [ - -73.442327, - 45.572407 - ], - [ - -73.442172, - 45.572214 - ], - [ - -73.442103, - 45.572145 - ], - [ - -73.442041, - 45.572083 - ], - [ - -73.441925, - 45.571984 - ], - [ - -73.441785, - 45.571885 - ], - [ - -73.44164, - 45.571795 - ], - [ - -73.441501, - 45.571723 - ], - [ - -73.4413, - 45.571651 - ], - [ - -73.441159, - 45.571606 - ], - [ - -73.440756, - 45.571507 - ], - [ - -73.440331, - 45.571417 - ], - [ - -73.43982, - 45.571308 - ], - [ - -73.439233, - 45.571191 - ], - [ - -73.43873, - 45.571092 - ], - [ - -73.438292, - 45.571002 - ], - [ - -73.437633, - 45.570857 - ], - [ - -73.43669, - 45.570659 - ], - [ - -73.436314, - 45.570582 - ], - [ - -73.435177, - 45.570334 - ], - [ - -73.434821, - 45.570257 - ], - [ - -73.433907, - 45.570063 - ], - [ - -73.432847, - 45.569838 - ], - [ - -73.431904, - 45.569639 - ], - [ - -73.431328, - 45.569526 - ], - [ - -73.430487, - 45.569386 - ], - [ - -73.430017, - 45.569328 - ], - [ - -73.429624, - 45.569282 - ], - [ - -73.428846, - 45.569228 - ], - [ - -73.428276, - 45.569205 - ], - [ - -73.427493, - 45.5692 - ], - [ - -73.426957, - 45.569213 - ], - [ - -73.426073, - 45.569262 - ], - [ - -73.424538, - 45.569347 - ], - [ - -73.422873, - 45.56944 - ], - [ - -73.421741, - 45.569502 - ], - [ - -73.420778, - 45.569551 - ], - [ - -73.419829, - 45.569604 - ], - [ - -73.417529, - 45.569774 - ], - [ - -73.416713, - 45.569818 - ], - [ - -73.416545, - 45.569832 - ], - [ - -73.41628, - 45.569881 - ], - [ - -73.416182, - 45.569915 - ], - [ - -73.416084, - 45.569948 - ], - [ - -73.415904, - 45.570025 - ], - [ - -73.415778, - 45.570101 - ], - [ - -73.415655, - 45.570037 - ], - [ - -73.415561, - 45.569988 - ], - [ - -73.415428, - 45.56991 - ], - [ - -73.415319, - 45.569883 - ], - [ - -73.415221, - 45.569874 - ], - [ - -73.413267, - 45.570173 - ], - [ - -73.411891, - 45.570502 - ], - [ - -73.411065, - 45.570571 - ], - [ - -73.411095, - 45.570824 - ], - [ - -73.411129, - 45.571102 - ], - [ - -73.411942, - 45.571019 - ], - [ - -73.411928, - 45.570873 - ] - ] - }, - "id": 262, - "properties": { - "id": "2d0bc97b-e2cc-43d8-887f-85b18b3201ec", - "data": { - "gtfs": { - "shape_id": "462_1_R" - }, - "segments": [ - { - "distanceMeters": 2150, - "travelTimeSeconds": 540 - }, - { - "distanceMeters": 3180, - "travelTimeSeconds": 660 - }, - { - "distanceMeters": 2553, - "travelTimeSeconds": 200 - }, - { - "distanceMeters": 8170, - "travelTimeSeconds": 640 - }, - { - "distanceMeters": 2838, - "travelTimeSeconds": 420 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 246, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 18890, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 12625.01647241902, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.68, - "travelTimeWithoutDwellTimesSeconds": 2460, - "operatingTimeWithLayoverTimeSeconds": 2706, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2460, - "operatingSpeedWithLayoverMetersPerSecond": 6.98, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.68 - }, - "mode": "bus", - "name": "Stat. de Touraine", - "color": "#A32638", - "nodes": [ - "30a1fc98-889c-4ed9-b389-c33a3f70398a", - "171b05ae-a95b-4adb-882d-8ac87dc4790f", - "b49806f2-28c3-484e-bd5a-b46e80d9eb6f", - "e3b3b7c9-8cf4-450f-95eb-c8f9836e391d", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "9c784932-945b-47d8-afa8-e5b73889acfb" - ], - "stops": [], - "line_id": "bbb03fa8-a01f-4a3f-b3d7-9fb1d25cc1fe", - "segments": [ - 0, - 31, - 81, - 130, - 365 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 262, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.475718, - 45.477643 - ], - [ - -73.476119, - 45.477927 - ], - [ - -73.476929, - 45.478485 - ], - [ - -73.477462, - 45.478904 - ], - [ - -73.477556, - 45.47897 - ], - [ - -73.477667, - 45.479048 - ], - [ - -73.477713, - 45.479021 - ], - [ - -73.477757, - 45.479003 - ], - [ - -73.477866, - 45.478954 - ], - [ - -73.477979, - 45.478918 - ], - [ - -73.478075, - 45.478904 - ], - [ - -73.478146, - 45.478904 - ], - [ - -73.478298, - 45.478904 - ], - [ - -73.478426, - 45.478904 - ], - [ - -73.478915, - 45.478914 - ], - [ - -73.479078, - 45.478918 - ], - [ - -73.479175, - 45.478922 - ], - [ - -73.479295, - 45.478922 - ], - [ - -73.479623, - 45.478936 - ], - [ - -73.480089, - 45.478949 - ], - [ - -73.481631, - 45.478977 - ], - [ - -73.482205, - 45.478986 - ], - [ - -73.482359, - 45.478989 - ], - [ - -73.482631, - 45.478995 - ], - [ - -73.482756, - 45.478997 - ], - [ - -73.484917, - 45.479027 - ], - [ - -73.485227, - 45.479031 - ], - [ - -73.485584, - 45.479045 - ], - [ - -73.485771, - 45.479058 - ], - [ - -73.486122, - 45.479058 - ], - [ - -73.486149, - 45.479058 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486329, - 45.479263 - ], - [ - -73.486318, - 45.479855 - ], - [ - -73.486298, - 45.480129 - ], - [ - -73.486286, - 45.480386 - ], - [ - -73.486285, - 45.480387 - ], - [ - -73.486282, - 45.480458 - ], - [ - -73.48629, - 45.480791 - ], - [ - -73.486352, - 45.480984 - ], - [ - -73.486506, - 45.481151 - ], - [ - -73.486595, - 45.481214 - ], - [ - -73.486702, - 45.481259 - ], - [ - -73.486845, - 45.481313 - ], - [ - -73.486991, - 45.481335 - ], - [ - -73.487396, - 45.481353 - ], - [ - -73.487751, - 45.481349 - ], - [ - -73.48795, - 45.481331 - ], - [ - -73.488145, - 45.481295 - ], - [ - -73.488358, - 45.481254 - ], - [ - -73.488455, - 45.481236 - ], - [ - -73.488596, - 45.481209 - ], - [ - -73.489299, - 45.481083 - ], - [ - -73.489517, - 45.481047 - ], - [ - -73.489679, - 45.481016 - ], - [ - -73.489826, - 45.480989 - ], - [ - -73.490511, - 45.480858 - ], - [ - -73.490668, - 45.480817 - ], - [ - -73.490751, - 45.480796 - ], - [ - -73.49089, - 45.480751 - ], - [ - -73.491016, - 45.480715 - ], - [ - -73.491326, - 45.481039 - ], - [ - -73.491478, - 45.481178 - ], - [ - -73.492063, - 45.481628 - ], - [ - -73.492197, - 45.481727 - ], - [ - -73.492355, - 45.481839 - ], - [ - -73.49246, - 45.481904 - ], - [ - -73.492546, - 45.481956 - ], - [ - -73.492741, - 45.482042 - ], - [ - -73.492853, - 45.482078 - ], - [ - -73.493, - 45.482114 - ], - [ - -73.493158, - 45.482132 - ], - [ - -73.494604, - 45.482145 - ], - [ - -73.494698, - 45.482146 - ], - [ - -73.49497, - 45.482155 - ], - [ - -73.495418, - 45.482168 - ], - [ - -73.495536, - 45.482132 - ], - [ - -73.495646, - 45.482096 - ], - [ - -73.495781, - 45.482065 - ], - [ - -73.495949, - 45.482002 - ], - [ - -73.496051, - 45.481961 - ], - [ - -73.496212, - 45.481898 - ], - [ - -73.496271, - 45.481874 - ], - [ - -73.496343, - 45.481844 - ], - [ - -73.496494, - 45.481781 - ], - [ - -73.497004, - 45.48157 - ], - [ - -73.497219, - 45.481561 - ], - [ - -73.498134, - 45.481565 - ], - [ - -73.498266, - 45.481568 - ], - [ - -73.498761, - 45.481579 - ], - [ - -73.499712, - 45.481597 - ], - [ - -73.499752, - 45.481598 - ], - [ - -73.501621, - 45.481633 - ], - [ - -73.50182, - 45.481637 - ], - [ - -73.501807, - 45.481903 - ], - [ - -73.501801, - 45.482039 - ], - [ - -73.501794, - 45.482164 - ], - [ - -73.501797, - 45.482254 - ], - [ - -73.501796, - 45.482353 - ], - [ - -73.501789, - 45.482654 - ], - [ - -73.501786, - 45.482827 - ], - [ - -73.501782, - 45.483036 - ], - [ - -73.502207, - 45.483054 - ], - [ - -73.502327, - 45.483041 - ], - [ - -73.502869, - 45.482816 - ], - [ - -73.503016, - 45.482753 - ], - [ - -73.50324, - 45.482654 - ], - [ - -73.503463, - 45.482556 - ], - [ - -73.503598, - 45.482497 - ], - [ - -73.503771, - 45.482694 - ], - [ - -73.504141, - 45.483117 - ], - [ - -73.504614, - 45.483657 - ], - [ - -73.504846, - 45.483915 - ], - [ - -73.504857, - 45.483927 - ], - [ - -73.504911, - 45.483982 - ], - [ - -73.504924, - 45.483995 - ], - [ - -73.505108, - 45.484152 - ], - [ - -73.505242, - 45.484242 - ], - [ - -73.505364, - 45.484314 - ], - [ - -73.505521, - 45.484395 - ], - [ - -73.505663, - 45.484463 - ], - [ - -73.505851, - 45.484535 - ], - [ - -73.505993, - 45.484584 - ], - [ - -73.506624, - 45.484814 - ], - [ - -73.506746, - 45.484863 - ], - [ - -73.506951, - 45.484962 - ], - [ - -73.507115, - 45.485056 - ], - [ - -73.507185, - 45.485097 - ], - [ - -73.507329, - 45.4852 - ], - [ - -73.507431, - 45.485295 - ], - [ - -73.507518, - 45.485367 - ], - [ - -73.50762, - 45.485484 - ], - [ - -73.507754, - 45.485677 - ], - [ - -73.508077, - 45.486145 - ], - [ - -73.508225, - 45.48637 - ], - [ - -73.508339, - 45.48655 - ], - [ - -73.508385, - 45.486622 - ], - [ - -73.508489, - 45.486784 - ], - [ - -73.508543, - 45.486852 - ], - [ - -73.509576, - 45.488345 - ], - [ - -73.509675, - 45.488489 - ], - [ - -73.509764, - 45.488615 - ], - [ - -73.509971, - 45.488912 - ], - [ - -73.510809, - 45.490112 - ], - [ - -73.510813, - 45.490118 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.510222, - 45.490248 - ], - [ - -73.510213, - 45.490248 - ], - [ - -73.509674, - 45.490238 - ], - [ - -73.509541, - 45.490235 - ], - [ - -73.508965, - 45.49023 - ], - [ - -73.507035, - 45.490202 - ], - [ - -73.505337, - 45.490177 - ], - [ - -73.505151, - 45.490177 - ], - [ - -73.505021, - 45.490186 - ], - [ - -73.504891, - 45.490195 - ], - [ - -73.504792, - 45.490226 - ], - [ - -73.504263, - 45.490408 - ], - [ - -73.504178, - 45.490438 - ], - [ - -73.504078, - 45.490474 - ], - [ - -73.503868, - 45.49055 - ], - [ - -73.503637, - 45.490636 - ], - [ - -73.503314, - 45.490753 - ], - [ - -73.502923, - 45.490879 - ], - [ - -73.502759, - 45.49091 - ], - [ - -73.502611, - 45.490928 - ], - [ - -73.501389, - 45.49091 - ], - [ - -73.50101, - 45.490903 - ], - [ - -73.500934, - 45.490901 - ], - [ - -73.500399, - 45.490897 - ], - [ - -73.500019, - 45.490892 - ], - [ - -73.499523, - 45.490883 - ], - [ - -73.499099, - 45.490883 - ], - [ - -73.498703, - 45.49087 - ], - [ - -73.498487, - 45.490867 - ], - [ - -73.49837, - 45.490865 - ], - [ - -73.49822, - 45.490861 - ], - [ - -73.497636, - 45.490865 - ], - [ - -73.497071, - 45.49087 - ], - [ - -73.496542, - 45.490861 - ], - [ - -73.496002, - 45.490853 - ], - [ - -73.495938, - 45.490852 - ], - [ - -73.495827, - 45.490838 - ], - [ - -73.495685, - 45.490802 - ], - [ - -73.495457, - 45.490703 - ], - [ - -73.495224, - 45.490582 - ], - [ - -73.495016, - 45.490456 - ], - [ - -73.494593, - 45.490163 - ], - [ - -73.494463, - 45.490073 - ], - [ - -73.494432, - 45.490141 - ], - [ - -73.494158, - 45.490222 - ], - [ - -73.494025, - 45.490275 - ], - [ - -73.49392, - 45.490316 - ], - [ - -73.493794, - 45.490397 - ], - [ - -73.493701, - 45.490456 - ], - [ - -73.493838, - 45.49055 - ], - [ - -73.494242, - 45.490838 - ], - [ - -73.494272, - 45.490858 - ], - [ - -73.49433, - 45.490897 - ], - [ - -73.494917, - 45.491315 - ], - [ - -73.495204, - 45.491517 - ], - [ - -73.495442, - 45.491684 - ], - [ - -73.49562, - 45.491814 - ], - [ - -73.495851, - 45.491976 - ], - [ - -73.496235, - 45.492242 - ], - [ - -73.496321, - 45.492305 - ], - [ - -73.496384, - 45.492349 - ], - [ - -73.496416, - 45.492372 - ], - [ - -73.496772, - 45.492629 - ], - [ - -73.497128, - 45.492885 - ], - [ - -73.497339, - 45.493038 - ], - [ - -73.497557, - 45.493191 - ], - [ - -73.497644, - 45.493257 - ], - [ - -73.497771, - 45.493353 - ], - [ - -73.497866, - 45.493425 - ], - [ - -73.497927, - 45.49347 - ], - [ - -73.497995, - 45.493515 - ], - [ - -73.49804, - 45.493547 - ], - [ - -73.498238, - 45.493691 - ], - [ - -73.49848, - 45.493866 - ], - [ - -73.498616, - 45.49397 - ], - [ - -73.498797, - 45.494096 - ], - [ - -73.498924, - 45.49419 - ], - [ - -73.499159, - 45.494361 - ], - [ - -73.499315, - 45.494474 - ], - [ - -73.499359, - 45.494506 - ], - [ - -73.49959, - 45.494676 - ], - [ - -73.499637, - 45.49471 - ], - [ - -73.499763, - 45.494802 - ], - [ - -73.499778, - 45.494815 - ], - [ - -73.499828, - 45.494849 - ], - [ - -73.500025, - 45.494979 - ], - [ - -73.500064, - 45.495 - ], - [ - -73.499991, - 45.495072 - ], - [ - -73.499868, - 45.495198 - ], - [ - -73.497945, - 45.496984 - ], - [ - -73.497124, - 45.497767 - ], - [ - -73.497073, - 45.497816 - ], - [ - -73.496931, - 45.497744 - ], - [ - -73.496641, - 45.497596 - ], - [ - -73.496207, - 45.497362 - ], - [ - -73.495841, - 45.497159 - ], - [ - -73.495426, - 45.496935 - ], - [ - -73.495021, - 45.496723 - ], - [ - -73.494815, - 45.496617 - ], - [ - -73.494644, - 45.49653 - ], - [ - -73.494255, - 45.496323 - ], - [ - -73.493858, - 45.496105 - ], - [ - -73.493736, - 45.496039 - ], - [ - -73.493955, - 45.495836 - ], - [ - -73.496458, - 45.493511 - ], - [ - -73.497128, - 45.492885 - ], - [ - -73.497339, - 45.493038 - ], - [ - -73.497557, - 45.493191 - ], - [ - -73.49764, - 45.493254 - ], - [ - -73.497771, - 45.493353 - ], - [ - -73.497866, - 45.493425 - ], - [ - -73.497927, - 45.49347 - ], - [ - -73.497995, - 45.493515 - ], - [ - -73.49804, - 45.493547 - ], - [ - -73.498238, - 45.493691 - ], - [ - -73.49848, - 45.493866 - ], - [ - -73.498616, - 45.49397 - ], - [ - -73.498797, - 45.494096 - ], - [ - -73.498924, - 45.49419 - ], - [ - -73.499159, - 45.494361 - ], - [ - -73.499315, - 45.494474 - ], - [ - -73.499359, - 45.494506 - ], - [ - -73.49959, - 45.494676 - ], - [ - -73.499763, - 45.494802 - ], - [ - -73.499778, - 45.494815 - ], - [ - -73.499824, - 45.494846 - ], - [ - -73.500025, - 45.494979 - ], - [ - -73.500064, - 45.495 - ], - [ - -73.500106, - 45.495026 - ], - [ - -73.500592, - 45.495409 - ], - [ - -73.50081, - 45.495567 - ], - [ - -73.501059, - 45.495724 - ], - [ - -73.501182, - 45.495805 - ], - [ - -73.501279, - 45.495868 - ], - [ - -73.501297, - 45.495881 - ], - [ - -73.501808, - 45.496251 - ], - [ - -73.50226, - 45.496565 - ], - [ - -73.502293, - 45.496588 - ], - [ - -73.502336, - 45.49662 - ], - [ - -73.50284, - 45.49698 - ], - [ - -73.50327, - 45.49729 - ], - [ - -73.503408, - 45.497389 - ], - [ - -73.503475, - 45.497438 - ], - [ - -73.504131, - 45.497897 - ], - [ - -73.504473, - 45.49814 - ], - [ - -73.504683, - 45.498293 - ], - [ - -73.504764, - 45.498354 - ], - [ - -73.504839, - 45.49841 - ], - [ - -73.505105, - 45.498595 - ], - [ - -73.505329, - 45.498757 - ], - [ - -73.505704, - 45.498928 - ], - [ - -73.506001, - 45.499076 - ], - [ - -73.506259, - 45.499211 - ], - [ - -73.506709, - 45.499427 - ], - [ - -73.506801, - 45.499467 - ], - [ - -73.507256, - 45.499661 - ], - [ - -73.50735, - 45.499701 - ], - [ - -73.507712, - 45.499859 - ], - [ - -73.508861, - 45.50034 - ], - [ - -73.508958, - 45.500376 - ], - [ - -73.509608, - 45.500651 - ], - [ - -73.509762, - 45.500713 - ], - [ - -73.50993, - 45.500781 - ], - [ - -73.510444, - 45.501016 - ], - [ - -73.511327, - 45.50142 - ], - [ - -73.510963, - 45.501908 - ], - [ - -73.510844, - 45.502068 - ], - [ - -73.510789, - 45.502144 - ], - [ - -73.510762, - 45.50218 - ], - [ - -73.510622, - 45.502369 - ], - [ - -73.510291, - 45.502818 - ], - [ - -73.510247, - 45.502878 - ], - [ - -73.510078, - 45.503098 - ], - [ - -73.509793, - 45.503472 - ], - [ - -73.509552, - 45.503778 - ], - [ - -73.509317, - 45.504074 - ], - [ - -73.509079, - 45.504407 - ], - [ - -73.508881, - 45.504682 - ], - [ - -73.508662, - 45.504968 - ], - [ - -73.508627, - 45.505015 - ], - [ - -73.508426, - 45.505289 - ], - [ - -73.508201, - 45.505577 - ], - [ - -73.507955, - 45.505892 - ], - [ - -73.507704, - 45.506225 - ], - [ - -73.50747, - 45.506531 - ], - [ - -73.50725, - 45.506833 - ], - [ - -73.507093, - 45.507041 - ], - [ - -73.507023, - 45.507134 - ], - [ - -73.506779, - 45.507449 - ], - [ - -73.506569, - 45.507728 - ], - [ - -73.506355, - 45.508016 - ], - [ - -73.506088, - 45.508371 - ], - [ - -73.50509, - 45.508 - ], - [ - -73.503983, - 45.507589 - ], - [ - -73.50278, - 45.507139 - ], - [ - -73.502418, - 45.507008 - ], - [ - -73.502098, - 45.506896 - ], - [ - -73.502109, - 45.507332 - ], - [ - -73.502112, - 45.507356 - ], - [ - -73.502155, - 45.507742 - ], - [ - -73.503376, - 45.508201 - ], - [ - -73.50436, - 45.508565 - ] - ] - }, - "id": 263, - "properties": { - "id": "dc712ca3-4cc5-433a-b2d8-ed5309bc3dc2", - "data": { - "gtfs": { - "shape_id": "500_1_A" - }, - "segments": [ - { - "distanceMeters": 206, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 405, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 637, - "travelTimeSeconds": 103 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 509, - "travelTimeSeconds": 82 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 789, - "travelTimeSeconds": 127 - }, - { - "distanceMeters": 808, - "travelTimeSeconds": 131 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10051, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4072.8414414949543, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.2, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 5.58, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.2 - }, - "mode": "bus", - "name": "École St-Lambert Inter.", - "color": "#A32638", - "nodes": [ - "c04702f7-b2cf-440e-a6da-0a84aefc3963", - "f32e29fd-d271-4ae6-8083-6d24349dccdf", - "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", - "528dcb9e-5a83-46d3-8e03-42692ca57a5a", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "a9e9d254-0411-40ff-8540-2c41b97aa285", - "b4a272ff-ad07-49f4-b3bf-37e38018a4d0", - "8b87176c-4d30-4e5f-8750-8f2e6ea9737c", - "c97bf2a0-4e35-4343-a821-fd37344059ce", - "d0834662-f361-47c8-897d-090ca396cc80", - "197613c4-818a-45ed-a120-7c785862199b", - "2f1abb54-e47c-4c4c-bf29-58794c82c9d7", - "ab2d66e0-27d7-4818-8e33-267927ea3fe2", - "4f2dd8ac-70e9-487b-b0af-329673c88b03", - "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "9f22d75f-cc66-4020-8804-7912f49950d8", - "41d7b6d4-1fe4-44ed-a774-b005607fc59d", - "bc9b9243-e0ec-461a-9898-6eb69ecd511a", - "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "5224c05b-57d6-4d5c-87fd-b9e78147c66e", - "602dc8fb-62ff-45ed-888f-4b4172318b5d", - "51191948-9067-4256-853f-d80a1333a164", - "d67aee3e-be1e-429b-b464-c7a6549e761a", - "1fa03421-8026-43d9-b21a-b3e57dfa43c2", - "1fc11ea4-4e32-4f30-8519-34208d0f8931", - "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", - "88d8365e-2528-4422-a483-bb2efd9de617", - "0b6032e7-414a-429f-9df2-796599b947c2", - "1cedf968-65c8-4c0f-b92c-c06da7b8fe69", - "16f75d06-f538-4735-a99f-9bc7eaa6eaab", - "b3c7372b-3c0a-4cb2-bef2-6f11825f858a", - "7e2aa9ad-30a3-4e26-acfb-1e284e4a4e01", - "1cedf968-65c8-4c0f-b92c-c06da7b8fe69", - "16f75d06-f538-4735-a99f-9bc7eaa6eaab", - "1cea6199-481e-43b0-8d4a-8c7593ff485f", - "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", - "6557d1fe-6975-49e2-871c-ab07d42ea35b", - "0ac44bed-6f37-406e-8654-f8d5f36c840e", - "443288e2-2ae9-4c97-a015-0e176d8f71b2", - "bca5df0b-3970-4f0e-8644-3802bdd029df", - "3f77d417-9b8e-4514-8337-8fa9008d2cc7" - ], - "stops": [], - "line_id": "e1684b65-95ce-44fa-a91e-8b4564d087d4", - "segments": [ - 0, - 4, - 14, - 22, - 29, - 36, - 50, - 57, - 66, - 72, - 82, - 88, - 92, - 100, - 107, - 114, - 135, - 139, - 143, - 148, - 151, - 157, - 167, - 174, - 180, - 187, - 197, - 206, - 212, - 230, - 244, - 247, - 254, - 271, - 280, - 282, - 292, - 301, - 309, - 332 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 263, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.50436, - 45.508565 - ], - [ - -73.505595, - 45.509024 - ], - [ - -73.505856, - 45.508673 - ], - [ - -73.506088, - 45.508371 - ], - [ - -73.506355, - 45.508016 - ], - [ - -73.506569, - 45.507728 - ], - [ - -73.506779, - 45.507449 - ], - [ - -73.507023, - 45.507134 - ], - [ - -73.50725, - 45.506833 - ], - [ - -73.50747, - 45.506531 - ], - [ - -73.507704, - 45.506225 - ], - [ - -73.507955, - 45.505892 - ], - [ - -73.508201, - 45.505577 - ], - [ - -73.508426, - 45.505289 - ], - [ - -73.508627, - 45.505015 - ], - [ - -73.508881, - 45.504682 - ], - [ - -73.509079, - 45.504407 - ], - [ - -73.509317, - 45.504074 - ], - [ - -73.509552, - 45.503778 - ], - [ - -73.509793, - 45.503472 - ], - [ - -73.510078, - 45.503098 - ], - [ - -73.510247, - 45.502878 - ], - [ - -73.510291, - 45.502818 - ], - [ - -73.510622, - 45.502369 - ], - [ - -73.510762, - 45.50218 - ], - [ - -73.510789, - 45.502144 - ], - [ - -73.510844, - 45.502068 - ], - [ - -73.511327, - 45.50142 - ], - [ - -73.511193, - 45.501358 - ], - [ - -73.50993, - 45.500781 - ], - [ - -73.509907, - 45.500772 - ], - [ - -73.509762, - 45.500713 - ], - [ - -73.509608, - 45.500651 - ], - [ - -73.508958, - 45.500376 - ], - [ - -73.508861, - 45.50034 - ], - [ - -73.507712, - 45.499859 - ], - [ - -73.50735, - 45.499701 - ], - [ - -73.50707, - 45.499582 - ], - [ - -73.506801, - 45.499467 - ], - [ - -73.506709, - 45.499427 - ], - [ - -73.506259, - 45.499211 - ], - [ - -73.506001, - 45.499076 - ], - [ - -73.505704, - 45.498928 - ], - [ - -73.505329, - 45.498757 - ], - [ - -73.505105, - 45.498595 - ], - [ - -73.504952, - 45.498489 - ], - [ - -73.504839, - 45.49841 - ], - [ - -73.504683, - 45.498293 - ], - [ - -73.504473, - 45.49814 - ], - [ - -73.504131, - 45.497897 - ], - [ - -73.503475, - 45.497438 - ], - [ - -73.503408, - 45.497389 - ], - [ - -73.50327, - 45.49729 - ], - [ - -73.50284, - 45.49698 - ], - [ - -73.502637, - 45.496835 - ], - [ - -73.502336, - 45.49662 - ], - [ - -73.502293, - 45.496588 - ], - [ - -73.501808, - 45.496251 - ], - [ - -73.501458, - 45.495997 - ], - [ - -73.501279, - 45.495868 - ], - [ - -73.501182, - 45.495805 - ], - [ - -73.501059, - 45.495724 - ], - [ - -73.50081, - 45.495567 - ], - [ - -73.500592, - 45.495409 - ], - [ - -73.500508, - 45.495343 - ], - [ - -73.500106, - 45.495026 - ], - [ - -73.500064, - 45.495 - ], - [ - -73.499991, - 45.495072 - ], - [ - -73.499868, - 45.495198 - ], - [ - -73.499641, - 45.495408 - ], - [ - -73.497945, - 45.496984 - ], - [ - -73.497124, - 45.497767 - ], - [ - -73.497073, - 45.497816 - ], - [ - -73.496741, - 45.497647 - ], - [ - -73.496641, - 45.497596 - ], - [ - -73.496207, - 45.497362 - ], - [ - -73.495841, - 45.497159 - ], - [ - -73.495426, - 45.496935 - ], - [ - -73.495021, - 45.496723 - ], - [ - -73.494853, - 45.496637 - ], - [ - -73.494644, - 45.49653 - ], - [ - -73.494255, - 45.496323 - ], - [ - -73.494198, - 45.496291 - ], - [ - -73.493885, - 45.49612 - ], - [ - -73.493736, - 45.496039 - ], - [ - -73.496458, - 45.493511 - ], - [ - -73.497128, - 45.492885 - ], - [ - -73.496772, - 45.492629 - ], - [ - -73.496471, - 45.492412 - ], - [ - -73.496416, - 45.492372 - ], - [ - -73.496321, - 45.492305 - ], - [ - -73.496235, - 45.492242 - ], - [ - -73.495851, - 45.491976 - ], - [ - -73.49562, - 45.491814 - ], - [ - -73.495442, - 45.491684 - ], - [ - -73.495204, - 45.491517 - ], - [ - -73.494917, - 45.491315 - ], - [ - -73.49433, - 45.490897 - ], - [ - -73.494242, - 45.490838 - ], - [ - -73.494233, - 45.490831 - ], - [ - -73.493838, - 45.49055 - ], - [ - -73.493701, - 45.490456 - ], - [ - -73.493573, - 45.490366 - ], - [ - -73.492976, - 45.489943 - ], - [ - -73.492778, - 45.489803 - ], - [ - -73.492465, - 45.489583 - ], - [ - -73.492419, - 45.48955 - ], - [ - -73.492275, - 45.489448 - ], - [ - -73.492218, - 45.489407 - ], - [ - -73.492042, - 45.489281 - ], - [ - -73.491721, - 45.489052 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.491862, - 45.48884 - ], - [ - -73.492138, - 45.488647 - ], - [ - -73.492246, - 45.488512 - ], - [ - -73.492413, - 45.48862 - ], - [ - -73.492658, - 45.488782 - ], - [ - -73.492831, - 45.488903 - ], - [ - -73.492963, - 45.488997 - ], - [ - -73.493685, - 45.489511 - ], - [ - -73.494044, - 45.489767 - ], - [ - -73.494263, - 45.489927 - ], - [ - -73.494463, - 45.490073 - ], - [ - -73.495016, - 45.490456 - ], - [ - -73.495224, - 45.490582 - ], - [ - -73.495457, - 45.490703 - ], - [ - -73.495685, - 45.490802 - ], - [ - -73.495803, - 45.490832 - ], - [ - -73.495827, - 45.490838 - ], - [ - -73.495938, - 45.490852 - ], - [ - -73.496542, - 45.490861 - ], - [ - -73.497071, - 45.49087 - ], - [ - -73.497636, - 45.490865 - ], - [ - -73.49822, - 45.490861 - ], - [ - -73.49837, - 45.490865 - ], - [ - -73.498703, - 45.49087 - ], - [ - -73.498951, - 45.490878 - ], - [ - -73.499099, - 45.490883 - ], - [ - -73.499523, - 45.490883 - ], - [ - -73.500019, - 45.490892 - ], - [ - -73.500399, - 45.490897 - ], - [ - -73.500744, - 45.4909 - ], - [ - -73.500934, - 45.490901 - ], - [ - -73.501389, - 45.49091 - ], - [ - -73.502611, - 45.490928 - ], - [ - -73.502759, - 45.49091 - ], - [ - -73.502923, - 45.490879 - ], - [ - -73.503314, - 45.490753 - ], - [ - -73.503637, - 45.490636 - ], - [ - -73.503868, - 45.49055 - ], - [ - -73.504078, - 45.490474 - ], - [ - -73.504178, - 45.490438 - ], - [ - -73.504792, - 45.490226 - ], - [ - -73.504891, - 45.490195 - ], - [ - -73.505021, - 45.490186 - ], - [ - -73.505105, - 45.49018 - ], - [ - -73.505151, - 45.490177 - ], - [ - -73.505337, - 45.490177 - ], - [ - -73.507013, - 45.490201 - ], - [ - -73.508965, - 45.49023 - ], - [ - -73.509485, - 45.490234 - ], - [ - -73.509541, - 45.490235 - ], - [ - -73.510213, - 45.490248 - ], - [ - -73.510753, - 45.490255 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.510813, - 45.490118 - ], - [ - -73.51075, - 45.490027 - ], - [ - -73.509971, - 45.488912 - ], - [ - -73.509799, - 45.488666 - ], - [ - -73.509764, - 45.488615 - ], - [ - -73.509675, - 45.488489 - ], - [ - -73.508563, - 45.486881 - ], - [ - -73.508543, - 45.486852 - ], - [ - -73.508489, - 45.486784 - ], - [ - -73.508385, - 45.486622 - ], - [ - -73.508225, - 45.48637 - ], - [ - -73.508077, - 45.486145 - ], - [ - -73.507754, - 45.485677 - ], - [ - -73.50762, - 45.485484 - ], - [ - -73.507518, - 45.485367 - ], - [ - -73.507431, - 45.485295 - ], - [ - -73.507329, - 45.4852 - ], - [ - -73.507185, - 45.485097 - ], - [ - -73.507115, - 45.485056 - ], - [ - -73.506951, - 45.484962 - ], - [ - -73.506746, - 45.484863 - ], - [ - -73.506624, - 45.484814 - ], - [ - -73.505993, - 45.484584 - ], - [ - -73.505851, - 45.484535 - ], - [ - -73.505663, - 45.484463 - ], - [ - -73.505521, - 45.484395 - ], - [ - -73.505364, - 45.484314 - ], - [ - -73.505242, - 45.484242 - ], - [ - -73.505108, - 45.484152 - ], - [ - -73.504924, - 45.483995 - ], - [ - -73.504902, - 45.483973 - ], - [ - -73.504857, - 45.483927 - ], - [ - -73.504846, - 45.483915 - ], - [ - -73.504614, - 45.483657 - ], - [ - -73.504141, - 45.483117 - ], - [ - -73.503654, - 45.482561 - ], - [ - -73.503598, - 45.482497 - ], - [ - -73.503323, - 45.482617 - ], - [ - -73.50324, - 45.482654 - ], - [ - -73.503157, - 45.48269 - ], - [ - -73.503016, - 45.482753 - ], - [ - -73.502869, - 45.482816 - ], - [ - -73.502327, - 45.483041 - ], - [ - -73.502207, - 45.483054 - ], - [ - -73.501902, - 45.483042 - ], - [ - -73.501782, - 45.483036 - ], - [ - -73.501789, - 45.482654 - ], - [ - -73.501796, - 45.482353 - ], - [ - -73.501797, - 45.482254 - ], - [ - -73.501794, - 45.482164 - ], - [ - -73.5018, - 45.482043 - ], - [ - -73.501807, - 45.481903 - ], - [ - -73.50182, - 45.481637 - ], - [ - -73.501589, - 45.481633 - ], - [ - -73.499752, - 45.481598 - ], - [ - -73.499712, - 45.481597 - ], - [ - -73.498761, - 45.481579 - ], - [ - -73.498134, - 45.481565 - ], - [ - -73.497969, - 45.481564 - ], - [ - -73.497219, - 45.481561 - ], - [ - -73.497004, - 45.48157 - ], - [ - -73.496494, - 45.481781 - ], - [ - -73.496479, - 45.481788 - ], - [ - -73.496343, - 45.481844 - ], - [ - -73.496212, - 45.481898 - ], - [ - -73.496051, - 45.481961 - ], - [ - -73.495949, - 45.482002 - ], - [ - -73.495781, - 45.482065 - ], - [ - -73.495646, - 45.482096 - ], - [ - -73.495536, - 45.482132 - ], - [ - -73.495418, - 45.482168 - ], - [ - -73.49497, - 45.482155 - ], - [ - -73.494858, - 45.482151 - ], - [ - -73.494698, - 45.482146 - ], - [ - -73.493158, - 45.482132 - ], - [ - -73.493, - 45.482114 - ], - [ - -73.492853, - 45.482078 - ], - [ - -73.492741, - 45.482042 - ], - [ - -73.492546, - 45.481956 - ], - [ - -73.492468, - 45.481909 - ], - [ - -73.492355, - 45.481839 - ], - [ - -73.492197, - 45.481727 - ], - [ - -73.492063, - 45.481628 - ], - [ - -73.491478, - 45.481178 - ], - [ - -73.491326, - 45.481039 - ], - [ - -73.491083, - 45.480784 - ], - [ - -73.491016, - 45.480715 - ], - [ - -73.49089, - 45.480751 - ], - [ - -73.490751, - 45.480796 - ], - [ - -73.490511, - 45.480858 - ], - [ - -73.489826, - 45.480989 - ], - [ - -73.489679, - 45.481016 - ], - [ - -73.489517, - 45.481047 - ], - [ - -73.489299, - 45.481083 - ], - [ - -73.48875, - 45.481182 - ], - [ - -73.488596, - 45.481209 - ], - [ - -73.488358, - 45.481254 - ], - [ - -73.488145, - 45.481295 - ], - [ - -73.48795, - 45.481331 - ], - [ - -73.487751, - 45.481349 - ], - [ - -73.487396, - 45.481353 - ], - [ - -73.486991, - 45.481335 - ], - [ - -73.486953, - 45.481329 - ], - [ - -73.486845, - 45.481313 - ], - [ - -73.486702, - 45.481259 - ], - [ - -73.486595, - 45.481214 - ], - [ - -73.486506, - 45.481151 - ], - [ - -73.486352, - 45.480984 - ], - [ - -73.48629, - 45.480791 - ], - [ - -73.486283, - 45.480502 - ], - [ - -73.486282, - 45.480458 - ], - [ - -73.486298, - 45.480129 - ], - [ - -73.486318, - 45.479855 - ], - [ - -73.486329, - 45.479263 - ], - [ - -73.486359, - 45.479194 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486149, - 45.479058 - ], - [ - -73.485771, - 45.479058 - ], - [ - -73.485584, - 45.479045 - ], - [ - -73.485227, - 45.479031 - ], - [ - -73.484917, - 45.479027 - ], - [ - -73.482807, - 45.478997 - ], - [ - -73.482756, - 45.478997 - ], - [ - -73.482631, - 45.478995 - ], - [ - -73.482205, - 45.478986 - ], - [ - -73.481631, - 45.478977 - ], - [ - -73.480089, - 45.478949 - ], - [ - -73.479623, - 45.478936 - ], - [ - -73.479295, - 45.478922 - ], - [ - -73.479286, - 45.478922 - ], - [ - -73.479175, - 45.478922 - ], - [ - -73.479078, - 45.478918 - ], - [ - -73.478426, - 45.478904 - ], - [ - -73.478115, - 45.478841 - ], - [ - -73.477983, - 45.47885 - ], - [ - -73.477828, - 45.478837 - ], - [ - -73.477715, - 45.478814 - ], - [ - -73.477616, - 45.478774 - ], - [ - -73.477564, - 45.478751 - ], - [ - -73.477508, - 45.478715 - ], - [ - -73.477033, - 45.478413 - ], - [ - -73.476669, - 45.478147 - ] - ] - }, - "id": 264, - "properties": { - "id": "8a0ba28d-bb60-4a94-bbbc-93dc40620b14", - "data": { - "gtfs": { - "shape_id": "500_2_R" - }, - "segments": [ - { - "distanceMeters": 1198, - "travelTimeSeconds": 223 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 104, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 660, - "travelTimeSeconds": 123 - }, - { - "distanceMeters": 95, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 528, - "travelTimeSeconds": 99 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 26, - "travelTimeSeconds": 5 - }, - { - "distanceMeters": 195, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 359, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 447, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 49, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 44 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9317, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4017.1148003997937, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.35, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 4.85, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.35 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "3f77d417-9b8e-4514-8337-8fa9008d2cc7", - "df5b9592-81e3-4b2c-8a30-7f3a9144671b", - "d24bea6e-da8d-4183-8a5f-0e99be199484", - "6557d1fe-6975-49e2-871c-ab07d42ea35b", - "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", - "1cea6199-481e-43b0-8d4a-8c7593ff485f", - "467e03f3-2556-4d22-ae48-618a76e6b0b4", - "b3c7372b-3c0a-4cb2-bef2-6f11825f858a", - "7e2aa9ad-30a3-4e26-acfb-1e284e4a4e01", - "0b6032e7-414a-429f-9df2-796599b947c2", - "88d8365e-2528-4422-a483-bb2efd9de617", - "fa220212-b6b2-4456-934f-7248f9884444", - "196681e4-c9e5-4a79-a3b1-ce225227e0aa", - "fa220212-b6b2-4456-934f-7248f9884444", - "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", - "1fc11ea4-4e32-4f30-8519-34208d0f8931", - "1fa03421-8026-43d9-b21a-b3e57dfa43c2", - "d67aee3e-be1e-429b-b464-c7a6549e761a", - "51191948-9067-4256-853f-d80a1333a164", - "602dc8fb-62ff-45ed-888f-4b4172318b5d", - "5224c05b-57d6-4d5c-87fd-b9e78147c66e", - "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "bc9b9243-e0ec-461a-9898-6eb69ecd511a", - "41d7b6d4-1fe4-44ed-a774-b005607fc59d", - "9f22d75f-cc66-4020-8804-7912f49950d8", - "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "4f2dd8ac-70e9-487b-b0af-329673c88b03", - "ab2d66e0-27d7-4818-8e33-267927ea3fe2", - "2f1abb54-e47c-4c4c-bf29-58794c82c9d7", - "197613c4-818a-45ed-a120-7c785862199b", - "d0834662-f361-47c8-897d-090ca396cc80", - "c97bf2a0-4e35-4343-a821-fd37344059ce", - "8b87176c-4d30-4e5f-8750-8f2e6ea9737c", - "b4a272ff-ad07-49f4-b3bf-37e38018a4d0", - "a9e9d254-0411-40ff-8540-2c41b97aa285", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "528dcb9e-5a83-46d3-8e03-42692ca57a5a", - "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", - "fe84c986-2907-4842-bde4-72fbe08a0576" - ], - "stops": [], - "line_id": "e1684b65-95ce-44fa-a91e-8b4564d087d4", - "segments": [ - 0, - 30, - 37, - 45, - 54, - 58, - 64, - 79, - 83, - 88, - 99, - 107, - 109, - 118, - 121, - 127, - 136, - 141, - 155, - 158, - 160, - 163, - 168, - 171, - 195, - 200, - 204, - 209, - 215, - 223, - 227, - 237, - 244, - 250, - 259, - 274, - 279, - 287, - 295 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 264, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.480608, - 45.499395 - ], - [ - -73.480477, - 45.499488 - ], - [ - -73.480384, - 45.499556 - ], - [ - -73.479345, - 45.500187 - ], - [ - -73.476917, - 45.501662 - ], - [ - -73.476748, - 45.501764 - ], - [ - -73.476424, - 45.501489 - ], - [ - -73.476389, - 45.501459 - ], - [ - -73.476388, - 45.501458 - ], - [ - -73.476098, - 45.50122 - ], - [ - -73.475716, - 45.500905 - ], - [ - -73.475435, - 45.500666 - ], - [ - -73.475106, - 45.500405 - ], - [ - -73.474855, - 45.500197 - ], - [ - -73.474786, - 45.50014 - ], - [ - -73.474718, - 45.500086 - ], - [ - -73.473772, - 45.500647 - ], - [ - -73.473574, - 45.500765 - ], - [ - -73.472027, - 45.501705 - ], - [ - -73.47121, - 45.502197 - ], - [ - -73.471117, - 45.502254 - ], - [ - -73.469768, - 45.503075 - ], - [ - -73.469716, - 45.503106 - ], - [ - -73.469614, - 45.503168 - ], - [ - -73.469532, - 45.503086 - ], - [ - -73.469411, - 45.503036 - ], - [ - -73.469131, - 45.502809 - ], - [ - -73.468295, - 45.502132 - ], - [ - -73.468227, - 45.502077 - ], - [ - -73.467922, - 45.501812 - ], - [ - -73.467598, - 45.501537 - ], - [ - -73.467259, - 45.501258 - ], - [ - -73.467147, - 45.501165 - ], - [ - -73.466934, - 45.500988 - ], - [ - -73.464886, - 45.50221 - ], - [ - -73.464212, - 45.502612 - ], - [ - -73.463363, - 45.503124 - ], - [ - -73.463263, - 45.503039 - ], - [ - -73.463028, - 45.50284 - ], - [ - -73.462726, - 45.502584 - ], - [ - -73.462443, - 45.502336 - ], - [ - -73.46216, - 45.502089 - ], - [ - -73.461886, - 45.501859 - ], - [ - -73.461708, - 45.501716 - ], - [ - -73.461628, - 45.501652 - ], - [ - -73.461281, - 45.501859 - ], - [ - -73.460922, - 45.502075 - ], - [ - -73.460681, - 45.501872 - ], - [ - -73.460633, - 45.501834 - ], - [ - -73.460629, - 45.50183 - ], - [ - -73.460537, - 45.501755 - ], - [ - -73.460303, - 45.501557 - ], - [ - -73.459797, - 45.501134 - ], - [ - -73.459304, - 45.500727 - ], - [ - -73.459247, - 45.50068 - ], - [ - -73.45911, - 45.500567 - ], - [ - -73.458792, - 45.500752 - ], - [ - -73.458619, - 45.50085 - ], - [ - -73.458392, - 45.500985 - ], - [ - -73.458179, - 45.50112 - ], - [ - -73.457745, - 45.501379 - ], - [ - -73.457629, - 45.501448 - ], - [ - -73.457366, - 45.501237 - ], - [ - -73.457312, - 45.501192 - ], - [ - -73.457135, - 45.501093 - ], - [ - -73.45648, - 45.500755 - ], - [ - -73.456099, - 45.500539 - ], - [ - -73.456075, - 45.50052 - ], - [ - -73.455929, - 45.500405 - ], - [ - -73.455803, - 45.500305 - ], - [ - -73.455726, - 45.500228 - ], - [ - -73.455806, - 45.50017 - ], - [ - -73.456009, - 45.500058 - ], - [ - -73.458118, - 45.498806 - ], - [ - -73.45823, - 45.49874 - ], - [ - -73.45866, - 45.498475 - ], - [ - -73.459486, - 45.49798 - ], - [ - -73.459985, - 45.497682 - ], - [ - -73.460119, - 45.497603 - ], - [ - -73.460224, - 45.497535 - ], - [ - -73.460165, - 45.497427 - ], - [ - -73.460063, - 45.497324 - ], - [ - -73.460021, - 45.497265 - ], - [ - -73.459954, - 45.497171 - ], - [ - -73.459892, - 45.497045 - ], - [ - -73.45984, - 45.496946 - ], - [ - -73.459805, - 45.496797 - ], - [ - -73.45979, - 45.496635 - ], - [ - -73.459786, - 45.496572 - ], - [ - -73.45979, - 45.496433 - ], - [ - -73.459822, - 45.496293 - ], - [ - -73.46018, - 45.495429 - ], - [ - -73.460269, - 45.495227 - ], - [ - -73.460321, - 45.495098 - ], - [ - -73.460354, - 45.495016 - ], - [ - -73.460277, - 45.4948 - ], - [ - -73.460132, - 45.49444 - ], - [ - -73.459999, - 45.494098 - ], - [ - -73.459882, - 45.493807 - ], - [ - -73.459784, - 45.493562 - ], - [ - -73.45974, - 45.493441 - ], - [ - -73.459717, - 45.493391 - ], - [ - -73.459678, - 45.493328 - ], - [ - -73.45962, - 45.493243 - ], - [ - -73.459564, - 45.493189 - ], - [ - -73.45943, - 45.493074 - ], - [ - -73.459049, - 45.492749 - ], - [ - -73.458942, - 45.492657 - ], - [ - -73.459245, - 45.492482 - ], - [ - -73.459615, - 45.492262 - ], - [ - -73.459321, - 45.492023 - ], - [ - -73.459028, - 45.491783 - ], - [ - -73.458975, - 45.49174 - ], - [ - -73.458224, - 45.492187 - ], - [ - -73.458138, - 45.492239 - ], - [ - -73.45601, - 45.493507 - ], - [ - -73.455921, - 45.493561 - ], - [ - -73.453925, - 45.494757 - ], - [ - -73.452944, - 45.495341 - ], - [ - -73.452636, - 45.495089 - ], - [ - -73.4526, - 45.49506 - ], - [ - -73.452352, - 45.49486 - ], - [ - -73.452082, - 45.49463 - ], - [ - -73.451788, - 45.494378 - ], - [ - -73.452178, - 45.494145 - ], - [ - -73.454215, - 45.492926 - ], - [ - -73.45464, - 45.492673 - ], - [ - -73.454766, - 45.492597 - ], - [ - -73.456382, - 45.491631 - ], - [ - -73.457738, - 45.49083 - ], - [ - -73.457963, - 45.490686 - ], - [ - -73.459285, - 45.489895 - ], - [ - -73.46072, - 45.489032 - ], - [ - -73.461945, - 45.488303 - ], - [ - -73.462148, - 45.488183 - ], - [ - -73.46278, - 45.487809 - ], - [ - -73.462116, - 45.487367 - ], - [ - -73.461416, - 45.486905 - ], - [ - -73.461292, - 45.486823 - ], - [ - -73.461219, - 45.486774 - ], - [ - -73.460376, - 45.486211 - ], - [ - -73.459528, - 45.485651 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.459027, - 45.485855 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.45787, - 45.486545 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.456937, - 45.48785 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456835, - 45.488612 - ], - [ - -73.456724, - 45.489525 - ], - [ - -73.456709, - 45.489602 - ], - [ - -73.456688, - 45.489687 - ], - [ - -73.456589, - 45.489894 - ], - [ - -73.456546, - 45.489981 - ], - [ - -73.45652, - 45.490034 - ], - [ - -73.456382, - 45.490186 - ], - [ - -73.456177, - 45.490348 - ], - [ - -73.455033, - 45.491035 - ], - [ - -73.454792, - 45.49118 - ], - [ - -73.454498, - 45.490948 - ], - [ - -73.454376, - 45.490852 - ], - [ - -73.454028, - 45.490572 - ], - [ - -73.453816, - 45.490388 - ], - [ - -73.453554, - 45.490154 - ], - [ - -73.453301, - 45.489897 - ], - [ - -73.453059, - 45.489641 - ], - [ - -73.452853, - 45.489389 - ], - [ - -73.452596, - 45.489092 - ], - [ - -73.452482, - 45.488993 - ], - [ - -73.452428, - 45.488961 - ], - [ - -73.452398, - 45.488943 - ], - [ - -73.452316, - 45.488894 - ], - [ - -73.45223, - 45.488835 - ], - [ - -73.452111, - 45.48878 - ], - [ - -73.452059, - 45.488756 - ], - [ - -73.452026, - 45.48874 - ], - [ - -73.451864, - 45.488677 - ], - [ - -73.451663, - 45.488618 - ], - [ - -73.451471, - 45.48856 - ], - [ - -73.451142, - 45.48852 - ], - [ - -73.450755, - 45.488507 - ], - [ - -73.450564, - 45.488501 - ], - [ - -73.450562, - 45.488591 - ], - [ - -73.450522, - 45.488807 - ], - [ - -73.450385, - 45.489131 - ], - [ - -73.450226, - 45.489293 - ], - [ - -73.450048, - 45.489455 - ], - [ - -73.449936, - 45.489523 - ], - [ - -73.449635, - 45.489705 - ], - [ - -73.449476, - 45.489801 - ], - [ - -73.44919, - 45.489963 - ], - [ - -73.448793, - 45.490206 - ], - [ - -73.44848, - 45.49039 - ], - [ - -73.448136, - 45.490592 - ], - [ - -73.447665, - 45.490889 - ], - [ - -73.447458, - 45.491003 - ], - [ - -73.447337, - 45.491069 - ], - [ - -73.44688, - 45.490686 - ], - [ - -73.446822, - 45.490639 - ], - [ - -73.446251, - 45.490171 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.44587, - 45.490786 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 265, - "properties": { - "id": "0da56a1e-ecb1-4f3c-8753-ab5934a3c6d2", - "data": { - "gtfs": { - "shape_id": "503_1_A" - }, - "segments": [ - { - "distanceMeters": 383, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 113, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 433, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 59, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 310, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 747, - "travelTimeSeconds": 106 - }, - { - "distanceMeters": 770, - "travelTimeSeconds": 109 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 334, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 32, - "travelTimeSeconds": 5 - }, - { - "distanceMeters": 112, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 20 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8035, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2830.4056478864695, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.05, - "travelTimeWithoutDwellTimesSeconds": 1140, - "operatingTimeWithLayoverTimeSeconds": 1320, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1140, - "operatingSpeedWithLayoverMetersPerSecond": 6.09, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.05 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "47ef73cf-7799-46e3-b2f1-76a6533f7746", - "9da3ecd5-fea1-433e-9a38-142aeff3882d", - "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", - "300a7442-8453-4aa4-89f9-beacdcc75174", - "dbae3900-2b78-4309-9fa5-5503ae30ad22", - "5b1f9db8-9fc7-4028-9f92-fd33d2f419e7", - "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", - "ef559a5c-0885-4ac5-a0dc-bdf67aea0546", - "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", - "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", - "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", - "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", - "bb534923-0939-4ebc-88f8-39847999c548", - "800a1d6c-4d5b-4560-b691-99e1b0db1343", - "e827aa2c-577c-4249-9fc7-9a6572084b69", - "12181a0a-32eb-4333-b444-1760ecaa417c", - "12181a0a-32eb-4333-b444-1760ecaa417c", - "0689eff9-8438-4b1c-9e3a-78c672f6ef82", - "3c0294df-b0e7-4be1-af27-4b755f5639ad", - "912a81e5-66f7-4af9-8125-ae16515fe284", - "1c6a64fd-3d5b-472f-bfe4-11a7479ddb48", - "31cd9a31-1ee8-4458-8681-91c1c006b9aa", - "923afb03-b5b7-44ed-a97d-4785d2468e97", - "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", - "720107c1-f0c2-4f37-8e59-ce7f32cd9461", - "a90c4da7-455c-41d3-9961-c7a64d627572", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", - "da4ca96f-4db9-4287-b307-afc6221c923f", - "517a8299-e807-4040-8ccd-f417dda7338c", - "517a8299-e807-4040-8ccd-f417dda7338c", - "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", - "4262a22a-885d-4877-ad99-0a8406e2adaa", - "0f232130-277e-4d7b-b106-b6821c45f0a9", - "35f25056-4f99-4b6e-babc-10c53194c70e", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "1d69d1ad-92a7-40eb-b2ae-ba14da32cb43", - "segments": [ - 0, - 4, - 13, - 16, - 19, - 21, - 27, - 32, - 38, - 43, - 48, - 53, - 60, - 68, - 73, - 77, - 82, - 93, - 98, - 106, - 111, - 115, - 126, - 134, - 137, - 141, - 148, - 157, - 164, - 168, - 180, - 184, - 191, - 199, - 206, - 210 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 265, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446648, - 45.490497 - ], - [ - -73.446822, - 45.490639 - ], - [ - -73.44688, - 45.490686 - ], - [ - -73.44726, - 45.491004 - ], - [ - -73.447337, - 45.491069 - ], - [ - -73.447665, - 45.490889 - ], - [ - -73.448136, - 45.490592 - ], - [ - -73.44848, - 45.49039 - ], - [ - -73.448793, - 45.490206 - ], - [ - -73.44919, - 45.489963 - ], - [ - -73.449327, - 45.489886 - ], - [ - -73.449476, - 45.489801 - ], - [ - -73.450048, - 45.489455 - ], - [ - -73.450226, - 45.489293 - ], - [ - -73.450385, - 45.489131 - ], - [ - -73.450522, - 45.488807 - ], - [ - -73.450553, - 45.488639 - ], - [ - -73.450562, - 45.488591 - ], - [ - -73.450564, - 45.488501 - ], - [ - -73.451142, - 45.48852 - ], - [ - -73.451218, - 45.488529 - ], - [ - -73.451471, - 45.48856 - ], - [ - -73.451663, - 45.488618 - ], - [ - -73.451864, - 45.488677 - ], - [ - -73.452026, - 45.48874 - ], - [ - -73.452059, - 45.488756 - ], - [ - -73.45223, - 45.488835 - ], - [ - -73.452272, - 45.488863 - ], - [ - -73.452316, - 45.488894 - ], - [ - -73.452398, - 45.488943 - ], - [ - -73.452482, - 45.488993 - ], - [ - -73.452596, - 45.489092 - ], - [ - -73.452853, - 45.489389 - ], - [ - -73.453059, - 45.489641 - ], - [ - -73.453301, - 45.489897 - ], - [ - -73.453554, - 45.490154 - ], - [ - -73.453816, - 45.490388 - ], - [ - -73.454028, - 45.490572 - ], - [ - -73.454376, - 45.490852 - ], - [ - -73.454694, - 45.491103 - ], - [ - -73.454792, - 45.49118 - ], - [ - -73.456177, - 45.490348 - ], - [ - -73.456311, - 45.490242 - ], - [ - -73.456382, - 45.490186 - ], - [ - -73.45652, - 45.490034 - ], - [ - -73.456589, - 45.489894 - ], - [ - -73.456688, - 45.489687 - ], - [ - -73.456691, - 45.489677 - ], - [ - -73.456709, - 45.489602 - ], - [ - -73.456724, - 45.489525 - ], - [ - -73.456835, - 45.488612 - ], - [ - -73.456897, - 45.488084 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.45772, - 45.486658 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.459245, - 45.485727 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459916, - 45.485907 - ], - [ - -73.460376, - 45.486211 - ], - [ - -73.461024, - 45.486643 - ], - [ - -73.461219, - 45.486774 - ], - [ - -73.461292, - 45.486823 - ], - [ - -73.462116, - 45.487367 - ], - [ - -73.462653, - 45.487724 - ], - [ - -73.46278, - 45.487809 - ], - [ - -73.461945, - 45.488303 - ], - [ - -73.46072, - 45.489032 - ], - [ - -73.459285, - 45.489895 - ], - [ - -73.457963, - 45.490686 - ], - [ - -73.457738, - 45.49083 - ], - [ - -73.456382, - 45.491631 - ], - [ - -73.454847, - 45.492549 - ], - [ - -73.454766, - 45.492597 - ], - [ - -73.454215, - 45.492926 - ], - [ - -73.451862, - 45.494333 - ], - [ - -73.451788, - 45.494378 - ], - [ - -73.452064, - 45.494615 - ], - [ - -73.452082, - 45.49463 - ], - [ - -73.452262, - 45.494783 - ], - [ - -73.452352, - 45.49486 - ], - [ - -73.452636, - 45.495089 - ], - [ - -73.452944, - 45.495341 - ], - [ - -73.453343, - 45.495104 - ], - [ - -73.453925, - 45.494757 - ], - [ - -73.455833, - 45.493613 - ], - [ - -73.455921, - 45.493561 - ], - [ - -73.458138, - 45.492239 - ], - [ - -73.458975, - 45.49174 - ], - [ - -73.459273, - 45.491984 - ], - [ - -73.459321, - 45.492023 - ], - [ - -73.459544, - 45.492204 - ], - [ - -73.459615, - 45.492262 - ], - [ - -73.459245, - 45.492482 - ], - [ - -73.458942, - 45.492657 - ], - [ - -73.459564, - 45.493189 - ], - [ - -73.45962, - 45.493243 - ], - [ - -73.459678, - 45.493328 - ], - [ - -73.459717, - 45.493391 - ], - [ - -73.45974, - 45.493441 - ], - [ - -73.45975, - 45.493467 - ], - [ - -73.459784, - 45.493562 - ], - [ - -73.459999, - 45.494098 - ], - [ - -73.460132, - 45.49444 - ], - [ - -73.460277, - 45.4948 - ], - [ - -73.460302, - 45.49487 - ], - [ - -73.460354, - 45.495016 - ], - [ - -73.460269, - 45.495227 - ], - [ - -73.46018, - 45.495429 - ], - [ - -73.459822, - 45.496293 - ], - [ - -73.45979, - 45.496433 - ], - [ - -73.459786, - 45.496572 - ], - [ - -73.45979, - 45.496635 - ], - [ - -73.459805, - 45.496797 - ], - [ - -73.45984, - 45.496946 - ], - [ - -73.459892, - 45.497045 - ], - [ - -73.459954, - 45.497171 - ], - [ - -73.460063, - 45.497324 - ], - [ - -73.460165, - 45.497427 - ], - [ - -73.460172, - 45.49744 - ], - [ - -73.460224, - 45.497535 - ], - [ - -73.460119, - 45.497603 - ], - [ - -73.459486, - 45.49798 - ], - [ - -73.45866, - 45.498475 - ], - [ - -73.458429, - 45.498617 - ], - [ - -73.45823, - 45.49874 - ], - [ - -73.456009, - 45.500058 - ], - [ - -73.455806, - 45.50017 - ], - [ - -73.455796, - 45.500177 - ], - [ - -73.455726, - 45.500228 - ], - [ - -73.455803, - 45.500305 - ], - [ - -73.455995, - 45.500457 - ], - [ - -73.456099, - 45.500539 - ], - [ - -73.45648, - 45.500755 - ], - [ - -73.457135, - 45.501093 - ], - [ - -73.457312, - 45.501192 - ], - [ - -73.457366, - 45.501237 - ], - [ - -73.457543, - 45.501379 - ], - [ - -73.457629, - 45.501448 - ], - [ - -73.458179, - 45.50112 - ], - [ - -73.458392, - 45.500985 - ], - [ - -73.458619, - 45.50085 - ], - [ - -73.458792, - 45.500752 - ], - [ - -73.458925, - 45.500675 - ], - [ - -73.45911, - 45.500567 - ], - [ - -73.459247, - 45.50068 - ], - [ - -73.459797, - 45.501134 - ], - [ - -73.460303, - 45.501557 - ], - [ - -73.460537, - 45.501755 - ], - [ - -73.460681, - 45.501872 - ], - [ - -73.460822, - 45.501991 - ], - [ - -73.460922, - 45.502075 - ], - [ - -73.461281, - 45.501859 - ], - [ - -73.461417, - 45.501778 - ], - [ - -73.461628, - 45.501652 - ], - [ - -73.461886, - 45.501859 - ], - [ - -73.46216, - 45.502089 - ], - [ - -73.462443, - 45.502336 - ], - [ - -73.462726, - 45.502584 - ], - [ - -73.463263, - 45.503039 - ], - [ - -73.463281, - 45.503054 - ], - [ - -73.463363, - 45.503124 - ], - [ - -73.463739, - 45.502897 - ], - [ - -73.464212, - 45.502612 - ], - [ - -73.466589, - 45.501194 - ], - [ - -73.466934, - 45.500988 - ], - [ - -73.467259, - 45.501258 - ], - [ - -73.467598, - 45.501537 - ], - [ - -73.467922, - 45.501812 - ], - [ - -73.468163, - 45.502021 - ], - [ - -73.468227, - 45.502077 - ], - [ - -73.469091, - 45.502777 - ], - [ - -73.469411, - 45.503036 - ], - [ - -73.469419, - 45.503065 - ], - [ - -73.469426, - 45.503089 - ], - [ - -73.46944, - 45.503136 - ], - [ - -73.469513, - 45.50323 - ], - [ - -73.469572, - 45.50329 - ], - [ - -73.469677, - 45.503226 - ], - [ - -73.469755, - 45.503179 - ], - [ - -73.470054, - 45.502998 - ], - [ - -73.471053, - 45.502396 - ], - [ - -73.471184, - 45.502317 - ], - [ - -73.472092, - 45.501763 - ], - [ - -73.473523, - 45.500895 - ], - [ - -73.47358, - 45.50086 - ], - [ - -73.473641, - 45.500823 - ], - [ - -73.474037, - 45.500587 - ], - [ - -73.474644, - 45.500224 - ], - [ - -73.474786, - 45.50014 - ], - [ - -73.475106, - 45.500405 - ], - [ - -73.475435, - 45.500666 - ], - [ - -73.475716, - 45.500905 - ], - [ - -73.476098, - 45.50122 - ], - [ - -73.476388, - 45.501458 - ], - [ - -73.476424, - 45.501489 - ], - [ - -73.476448, - 45.501509 - ], - [ - -73.476459, - 45.501519 - ], - [ - -73.476748, - 45.501764 - ], - [ - -73.479345, - 45.500187 - ], - [ - -73.480377, - 45.49956 - ] - ] - }, - "id": 266, - "properties": { - "id": "c9550bff-687d-4831-91ac-11b0157f730d", - "data": { - "gtfs": { - "shape_id": "503_2_R" - }, - "segments": [ - { - "distanceMeters": 173, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 74, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 827, - "travelTimeSeconds": 136 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 66, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 378, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 390, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 63, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 68 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8010, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2830.4056478864695, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.07, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 5.34, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.07 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "35f25056-4f99-4b6e-babc-10c53194c70e", - "0f232130-277e-4d7b-b106-b6821c45f0a9", - "4262a22a-885d-4877-ad99-0a8406e2adaa", - "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", - "517a8299-e807-4040-8ccd-f417dda7338c", - "da4ca96f-4db9-4287-b307-afc6221c923f", - "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "a90c4da7-455c-41d3-9961-c7a64d627572", - "720107c1-f0c2-4f37-8e59-ce7f32cd9461", - "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", - "923afb03-b5b7-44ed-a97d-4785d2468e97", - "43297c29-6e25-4fbe-a1b6-70a1ce96533d", - "43297c29-6e25-4fbe-a1b6-70a1ce96533d", - "31cd9a31-1ee8-4458-8681-91c1c006b9aa", - "1c6a64fd-3d5b-472f-bfe4-11a7479ddb48", - "3c0294df-b0e7-4be1-af27-4b755f5639ad", - "0689eff9-8438-4b1c-9e3a-78c672f6ef82", - "12181a0a-32eb-4333-b444-1760ecaa417c", - "e827aa2c-577c-4249-9fc7-9a6572084b69", - "800a1d6c-4d5b-4560-b691-99e1b0db1343", - "bb534923-0939-4ebc-88f8-39847999c548", - "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", - "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", - "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", - "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", - "a3062aba-92b8-419f-9d8e-4f21713f9dcc", - "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", - "c17cc951-65ff-4617-a096-ccd1fe6cc26f", - "dbae3900-2b78-4309-9fa5-5503ae30ad22", - "300a7442-8453-4aa4-89f9-beacdcc75174", - "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", - "9da3ecd5-fea1-433e-9a38-142aeff3882d", - "47ef73cf-7799-46e3-b2f1-76a6533f7746" - ], - "stops": [], - "line_id": "1d69d1ad-92a7-40eb-b2ae-ba14da32cb43", - "segments": [ - 0, - 10, - 13, - 20, - 26, - 37, - 49, - 57, - 61, - 70, - 75, - 80, - 84, - 92, - 95, - 99, - 105, - 111, - 120, - 125, - 139, - 144, - 148, - 157, - 163, - 170, - 173, - 180, - 184, - 189, - 191, - 201, - 204, - 208, - 217 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 266, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.380348, - 45.464835 - ], - [ - -73.380313, - 45.464882 - ], - [ - -73.380064, - 45.465238 - ], - [ - -73.378297, - 45.467692 - ], - [ - -73.3781, - 45.467967 - ], - [ - -73.377848, - 45.468313 - ], - [ - -73.375959, - 45.47092 - ], - [ - -73.375891, - 45.471015 - ], - [ - -73.37528, - 45.471878 - ], - [ - -73.374049, - 45.473595 - ], - [ - -73.373933, - 45.473762 - ], - [ - -73.373895, - 45.473813 - ], - [ - -73.373694, - 45.474085 - ], - [ - -73.37362, - 45.474193 - ], - [ - -73.373508, - 45.474319 - ], - [ - -73.373179, - 45.474777 - ], - [ - -73.373075, - 45.474921 - ], - [ - -73.372901, - 45.475178 - ], - [ - -73.371616, - 45.476961 - ], - [ - -73.369415, - 45.480017 - ], - [ - -73.36929, - 45.48019 - ], - [ - -73.369655, - 45.480389 - ], - [ - -73.37011, - 45.480637 - ], - [ - -73.370651, - 45.480936 - ], - [ - -73.372864, - 45.48216 - ], - [ - -73.373772, - 45.482665 - ], - [ - -73.373875, - 45.482724 - ], - [ - -73.373971, - 45.482778 - ], - [ - -73.374487, - 45.483067 - ], - [ - -73.374678, - 45.483169 - ], - [ - -73.37494, - 45.48331 - ], - [ - -73.375418, - 45.483571 - ], - [ - -73.376053, - 45.483919 - ], - [ - -73.376944, - 45.48441 - ], - [ - -73.377333, - 45.484662 - ], - [ - -73.377567, - 45.484792 - ], - [ - -73.377619, - 45.48482 - ], - [ - -73.377777, - 45.484906 - ], - [ - -73.378273, - 45.485158 - ], - [ - -73.379364, - 45.485713 - ], - [ - -73.379961, - 45.486024 - ], - [ - -73.381303, - 45.486687 - ], - [ - -73.381947, - 45.487 - ], - [ - -73.382231, - 45.487138 - ], - [ - -73.38239, - 45.487214 - ], - [ - -73.382639, - 45.48734 - ], - [ - -73.383202, - 45.487615 - ], - [ - -73.383953, - 45.487976 - ], - [ - -73.384639, - 45.488283 - ], - [ - -73.384699, - 45.48831 - ], - [ - -73.384728, - 45.48832 - ], - [ - -73.384901, - 45.488369 - ], - [ - -73.385381, - 45.488599 - ], - [ - -73.385628, - 45.488725 - ], - [ - -73.386215, - 45.488995 - ], - [ - -73.386314, - 45.489042 - ], - [ - -73.387001, - 45.489365 - ], - [ - -73.387621, - 45.489654 - ], - [ - -73.387955, - 45.489811 - ], - [ - -73.388224, - 45.489938 - ], - [ - -73.388765, - 45.490199 - ], - [ - -73.388952, - 45.490285 - ], - [ - -73.389177, - 45.490388 - ], - [ - -73.389565, - 45.490569 - ], - [ - -73.390592, - 45.491047 - ], - [ - -73.391016, - 45.491244 - ], - [ - -73.391367, - 45.491407 - ], - [ - -73.391618, - 45.49152 - ], - [ - -73.391679, - 45.491548 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.394218, - 45.492733 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.395964, - 45.493553 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.399594, - 45.495244 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.401121, - 45.49596 - ], - [ - -73.40161, - 45.496185 - ], - [ - -73.402418, - 45.496555 - ], - [ - -73.402953, - 45.49679 - ], - [ - -73.403403, - 45.496989 - ], - [ - -73.403543, - 45.497051 - ], - [ - -73.403795, - 45.49716 - ], - [ - -73.404434, - 45.497426 - ], - [ - -73.404858, - 45.497588 - ], - [ - -73.405172, - 45.497723 - ], - [ - -73.405568, - 45.497876 - ], - [ - -73.40628, - 45.498149 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.406574, - 45.498264 - ], - [ - -73.407513, - 45.498634 - ], - [ - -73.407743, - 45.498715 - ], - [ - -73.408565, - 45.499044 - ], - [ - -73.408613, - 45.499067 - ], - [ - -73.408846, - 45.499152 - ], - [ - -73.409074, - 45.499238 - ], - [ - -73.409338, - 45.499341 - ], - [ - -73.40994, - 45.499576 - ], - [ - -73.41039, - 45.499753 - ], - [ - -73.410514, - 45.499802 - ], - [ - -73.410857, - 45.499937 - ], - [ - -73.411184, - 45.500063 - ], - [ - -73.411788, - 45.500288 - ], - [ - -73.412066, - 45.500394 - ], - [ - -73.412332, - 45.500496 - ], - [ - -73.412769, - 45.500658 - ], - [ - -73.41311, - 45.500798 - ], - [ - -73.413399, - 45.500906 - ], - [ - -73.413646, - 45.500992 - ], - [ - -73.414045, - 45.501145 - ], - [ - -73.414479, - 45.501309 - ], - [ - -73.414536, - 45.50133 - ], - [ - -73.414535, - 45.501249 - ], - [ - -73.41472, - 45.500993 - ], - [ - -73.414847, - 45.500817 - ], - [ - -73.415148, - 45.5004 - ], - [ - -73.416523, - 45.498497 - ], - [ - -73.416635, - 45.498326 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.416874, - 45.498016 - ], - [ - -73.417076, - 45.49773 - ], - [ - -73.418831, - 45.495251 - ], - [ - -73.418892, - 45.495165 - ], - [ - -73.421028, - 45.492184 - ], - [ - -73.421099, - 45.492084 - ], - [ - -73.421183, - 45.491976 - ], - [ - -73.423219, - 45.489124 - ], - [ - -73.423292, - 45.489022 - ], - [ - -73.425247, - 45.486309 - ], - [ - -73.425509, - 45.485946 - ], - [ - -73.42584, - 45.486121 - ], - [ - -73.425916, - 45.486164 - ], - [ - -73.426288, - 45.486369 - ], - [ - -73.426623, - 45.486554 - ], - [ - -73.427029, - 45.48677 - ], - [ - -73.427476, - 45.487013 - ], - [ - -73.428043, - 45.487324 - ], - [ - -73.428381, - 45.487508 - ], - [ - -73.428432, - 45.487536 - ], - [ - -73.428849, - 45.487761 - ], - [ - -73.429341, - 45.488027 - ], - [ - -73.429759, - 45.488261 - ], - [ - -73.430152, - 45.488482 - ], - [ - -73.430558, - 45.48872 - ], - [ - -73.430899, - 45.488901 - ], - [ - -73.431242, - 45.489086 - ], - [ - -73.431275, - 45.489103 - ], - [ - -73.431961, - 45.489473 - ], - [ - -73.432063, - 45.489531 - ], - [ - -73.43217, - 45.489383 - ], - [ - -73.43219, - 45.48936 - ], - [ - -73.432305, - 45.489239 - ], - [ - -73.432556, - 45.489041 - ], - [ - -73.432684, - 45.488933 - ], - [ - -73.432859, - 45.488821 - ], - [ - -73.432921, - 45.48878 - ], - [ - -73.433484, - 45.488439 - ], - [ - -73.435092, - 45.487504 - ], - [ - -73.435153, - 45.487468 - ], - [ - -73.437094, - 45.486331 - ], - [ - -73.437465, - 45.486115 - ], - [ - -73.43775, - 45.485944 - ], - [ - -73.43786, - 45.485875 - ], - [ - -73.438008, - 45.485782 - ], - [ - -73.439264, - 45.485036 - ], - [ - -73.439959, - 45.484631 - ], - [ - -73.440593, - 45.484287 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.44102, - 45.484399 - ], - [ - -73.441191, - 45.484533 - ], - [ - -73.441638, - 45.484884 - ], - [ - -73.442268, - 45.485401 - ], - [ - -73.44238, - 45.485492 - ], - [ - -73.442979, - 45.48598 - ], - [ - -73.443236, - 45.48619 - ], - [ - -73.443584, - 45.486491 - ], - [ - -73.443685, - 45.486573 - ], - [ - -73.443944, - 45.486784 - ], - [ - -73.444066, - 45.486883 - ], - [ - -73.444405, - 45.487149 - ], - [ - -73.44464, - 45.487266 - ], - [ - -73.444883, - 45.487369 - ], - [ - -73.445062, - 45.487428 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 267, - "properties": { - "id": "00d4878f-2549-4c34-b9f3-20aefce15e49", - "data": { - "gtfs": { - "shape_id": "505_1_A" - }, - "segments": [ - { - "distanceMeters": 356, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 403, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 360, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 121, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 557, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 421, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 46, - "travelTimeSeconds": 6 - }, - { - "distanceMeters": 407, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 382, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 329, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 67, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 605, - "travelTimeSeconds": 83 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10609, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5896.650744527099, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.37, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 6.55, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.37 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "40363de6-68fe-4797-a6b6-a7c0b8b379e0", - "24542ec6-1b63-420d-8089-98a7341dfe66", - "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", - "2cd6db83-9a4e-4640-91da-759ec9e4a386", - "c5d63249-9c53-468b-a75e-33839919bc02", - "f585bf2c-536e-4916-a0ee-20092a76ccad", - "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", - "057da5dd-23f2-431d-8955-7a7d8f0dae40", - "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", - "88a428f4-cdde-43a8-a2c3-c4652eae6722", - "d664171d-6b67-486f-b850-92d7b923ec60", - "658aec75-ba5b-4e43-b93b-5305ff3f6685", - "8d50e155-65e6-4b67-8d83-f347e12cf6d7", - "a2ac9477-abf0-4b55-8588-e045bd0373a2", - "ced239e0-91f5-4429-96fd-20bbb8fcfd11", - "70ea9063-86f0-43f5-9e7d-16ea087fc4ce", - "69b9716f-dd31-4ae3-9736-6d5edb237b8a", - "cb20b749-b55e-4251-94cd-215651864e8b", - "33ed66fe-2193-4e2a-b51d-d25140b9ad80", - "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", - "aab8672e-86c9-4a43-9806-f5135dc02b4e", - "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", - "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", - "69889f24-c076-4661-981b-6008a401d446", - "853b0202-bae1-4c20-ab0e-8b27d1350e9a", - "853b0202-bae1-4c20-ab0e-8b27d1350e9a", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "bf4259d8-23ae-478a-8a93-ec28083b908d", - "30c08115-a1b6-45b8-9122-c5fe99723d2e", - "0e836f4e-0231-42bf-9c3d-37ea2aef8934", - "037aae6d-413d-4b3d-8987-50e8714ef6c5", - "a788cfe3-2037-44e7-ae51-cd0388e8e41f", - "9346e734-c85a-4d09-88f4-23e94e4bdb4c", - "40ff3e02-8b3f-498b-908e-b391cc70a163", - "68549053-a194-4fc4-9393-09f9a34040bb", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "e72d0d41-60dd-429c-9fc0-986190945d76", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "9e239ddb-5dce-4679-82bc-fa1d6e200324", - "segments": [ - 0, - 3, - 6, - 11, - 15, - 18, - 19, - 29, - 35, - 42, - 48, - 55, - 58, - 61, - 68, - 77, - 84, - 89, - 94, - 97, - 104, - 113, - 115, - 120, - 127, - 130, - 137, - 138, - 140, - 143, - 145, - 154, - 162, - 174, - 179, - 183, - 186, - 188, - 194 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 267, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445508, - 45.489489 - ], - [ - -73.4453, - 45.489165 - ], - [ - -73.445238, - 45.489052 - ], - [ - -73.445212, - 45.488985 - ], - [ - -73.445181, - 45.488904 - ], - [ - -73.445074, - 45.488728 - ], - [ - -73.445053, - 45.488544 - ], - [ - -73.445044, - 45.488377 - ], - [ - -73.445046, - 45.488242 - ], - [ - -73.445073, - 45.488085 - ], - [ - -73.445118, - 45.487932 - ], - [ - -73.445182, - 45.487779 - ], - [ - -73.445261, - 45.48759 - ], - [ - -73.445319, - 45.487496 - ], - [ - -73.445386, - 45.487388 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445129, - 45.48732 - ], - [ - -73.444962, - 45.487262 - ], - [ - -73.444731, - 45.487167 - ], - [ - -73.444565, - 45.487086 - ], - [ - -73.444194, - 45.486807 - ], - [ - -73.443808, - 45.486496 - ], - [ - -73.443706, - 45.486415 - ], - [ - -73.44336, - 45.486118 - ], - [ - -73.442629, - 45.485517 - ], - [ - -73.442528, - 45.485434 - ], - [ - -73.441754, - 45.484812 - ], - [ - -73.440974, - 45.484193 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.440497, - 45.484339 - ], - [ - -73.440355, - 45.484416 - ], - [ - -73.439959, - 45.484631 - ], - [ - -73.439264, - 45.485036 - ], - [ - -73.438126, - 45.485712 - ], - [ - -73.438008, - 45.485782 - ], - [ - -73.43775, - 45.485944 - ], - [ - -73.437465, - 45.486115 - ], - [ - -73.437094, - 45.486331 - ], - [ - -73.435294, - 45.487385 - ], - [ - -73.435153, - 45.487468 - ], - [ - -73.433484, - 45.488439 - ], - [ - -73.432921, - 45.48878 - ], - [ - -73.432748, - 45.488892 - ], - [ - -73.432684, - 45.488933 - ], - [ - -73.432556, - 45.489041 - ], - [ - -73.432305, - 45.489239 - ], - [ - -73.43219, - 45.48936 - ], - [ - -73.43217, - 45.489383 - ], - [ - -73.432063, - 45.489531 - ], - [ - -73.431961, - 45.489473 - ], - [ - -73.431275, - 45.489103 - ], - [ - -73.431227, - 45.489078 - ], - [ - -73.430899, - 45.488901 - ], - [ - -73.430558, - 45.48872 - ], - [ - -73.430152, - 45.488482 - ], - [ - -73.429759, - 45.488261 - ], - [ - -73.429341, - 45.488027 - ], - [ - -73.428849, - 45.487761 - ], - [ - -73.428458, - 45.48755 - ], - [ - -73.428432, - 45.487536 - ], - [ - -73.428043, - 45.487324 - ], - [ - -73.427476, - 45.487013 - ], - [ - -73.427029, - 45.48677 - ], - [ - -73.426623, - 45.486554 - ], - [ - -73.426288, - 45.486369 - ], - [ - -73.42584, - 45.486121 - ], - [ - -73.425562, - 45.485974 - ], - [ - -73.425509, - 45.485946 - ], - [ - -73.425239, - 45.486321 - ], - [ - -73.423337, - 45.488959 - ], - [ - -73.423292, - 45.489022 - ], - [ - -73.421243, - 45.491892 - ], - [ - -73.421183, - 45.491976 - ], - [ - -73.421099, - 45.492084 - ], - [ - -73.420887, - 45.49238 - ], - [ - -73.418966, - 45.495062 - ], - [ - -73.418892, - 45.495165 - ], - [ - -73.416874, - 45.498016 - ], - [ - -73.416837, - 45.498063 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.416635, - 45.498326 - ], - [ - -73.416523, - 45.498497 - ], - [ - -73.414847, - 45.500817 - ], - [ - -73.414624, - 45.501125 - ], - [ - -73.414535, - 45.501249 - ], - [ - -73.414536, - 45.50133 - ], - [ - -73.414045, - 45.501145 - ], - [ - -73.414009, - 45.501131 - ], - [ - -73.413646, - 45.500992 - ], - [ - -73.413399, - 45.500906 - ], - [ - -73.41311, - 45.500798 - ], - [ - -73.412769, - 45.500658 - ], - [ - -73.412478, - 45.50055 - ], - [ - -73.412332, - 45.500496 - ], - [ - -73.411788, - 45.500288 - ], - [ - -73.411184, - 45.500063 - ], - [ - -73.410857, - 45.499937 - ], - [ - -73.410514, - 45.499802 - ], - [ - -73.410418, - 45.499764 - ], - [ - -73.40994, - 45.499576 - ], - [ - -73.409232, - 45.4993 - ], - [ - -73.409074, - 45.499238 - ], - [ - -73.408846, - 45.499152 - ], - [ - -73.408613, - 45.499067 - ], - [ - -73.408565, - 45.499044 - ], - [ - -73.407743, - 45.498715 - ], - [ - -73.407513, - 45.498634 - ], - [ - -73.406733, - 45.498327 - ], - [ - -73.406574, - 45.498264 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.405568, - 45.497876 - ], - [ - -73.405172, - 45.497723 - ], - [ - -73.404858, - 45.497588 - ], - [ - -73.404434, - 45.497426 - ], - [ - -73.403795, - 45.49716 - ], - [ - -73.403713, - 45.497124 - ], - [ - -73.403543, - 45.497051 - ], - [ - -73.402953, - 45.49679 - ], - [ - -73.402418, - 45.496555 - ], - [ - -73.401777, - 45.496261 - ], - [ - -73.401121, - 45.49596 - ], - [ - -73.400118, - 45.495495 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.396677, - 45.493881 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.395087, - 45.49314 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.391618, - 45.49152 - ], - [ - -73.391367, - 45.491407 - ], - [ - -73.391255, - 45.491355 - ], - [ - -73.391016, - 45.491244 - ], - [ - -73.390592, - 45.491047 - ], - [ - -73.389578, - 45.490575 - ], - [ - -73.389565, - 45.490569 - ], - [ - -73.389177, - 45.490388 - ], - [ - -73.388765, - 45.490199 - ], - [ - -73.388224, - 45.489938 - ], - [ - -73.387887, - 45.489779 - ], - [ - -73.387621, - 45.489654 - ], - [ - -73.387001, - 45.489365 - ], - [ - -73.386341, - 45.489055 - ], - [ - -73.386215, - 45.488995 - ], - [ - -73.385628, - 45.488725 - ], - [ - -73.385381, - 45.488599 - ], - [ - -73.385175, - 45.4885 - ], - [ - -73.384901, - 45.488369 - ], - [ - -73.384743, - 45.488246 - ], - [ - -73.384445, - 45.488089 - ], - [ - -73.384044, - 45.487891 - ], - [ - -73.383491, - 45.487611 - ], - [ - -73.382868, - 45.487294 - ], - [ - -73.382618, - 45.487167 - ], - [ - -73.3825, - 45.487106 - ], - [ - -73.382345, - 45.487025 - ], - [ - -73.382237, - 45.486971 - ], - [ - -73.381986, - 45.486854 - ], - [ - -73.381371, - 45.486556 - ], - [ - -73.380021, - 45.485902 - ], - [ - -73.379495, - 45.485632 - ], - [ - -73.378643, - 45.485213 - ], - [ - -73.377846, - 45.484834 - ], - [ - -73.377624, - 45.484727 - ], - [ - -73.377163, - 45.484505 - ], - [ - -73.376944, - 45.48441 - ], - [ - -73.376053, - 45.483919 - ], - [ - -73.375418, - 45.483571 - ], - [ - -73.375044, - 45.483367 - ], - [ - -73.37494, - 45.48331 - ], - [ - -73.374487, - 45.483067 - ], - [ - -73.373971, - 45.482778 - ], - [ - -73.373875, - 45.482724 - ], - [ - -73.373772, - 45.482665 - ], - [ - -73.372864, - 45.48216 - ], - [ - -73.37011, - 45.480637 - ], - [ - -73.369655, - 45.480389 - ], - [ - -73.36929, - 45.48019 - ], - [ - -73.369609, - 45.479748 - ], - [ - -73.369628, - 45.479721 - ], - [ - -73.371679, - 45.476874 - ], - [ - -73.372901, - 45.475178 - ], - [ - -73.373075, - 45.474921 - ], - [ - -73.373409, - 45.474457 - ], - [ - -73.373508, - 45.474319 - ], - [ - -73.37362, - 45.474193 - ], - [ - -73.373694, - 45.474085 - ], - [ - -73.373933, - 45.473762 - ], - [ - -73.374049, - 45.473595 - ], - [ - -73.374382, - 45.473131 - ], - [ - -73.37528, - 45.471878 - ], - [ - -73.375849, - 45.471074 - ], - [ - -73.375891, - 45.471015 - ], - [ - -73.377848, - 45.468313 - ], - [ - -73.37806, - 45.468022 - ], - [ - -73.3781, - 45.467967 - ], - [ - -73.380064, - 45.465238 - ], - [ - -73.380233, - 45.464997 - ] - ] - }, - "id": 268, - "properties": { - "id": "e827135a-73d3-4945-83f2-49c9ceca8847", - "data": { - "gtfs": { - "shape_id": "505_2_R" - }, - "segments": [ - { - "distanceMeters": 757, - "travelTimeSeconds": 115 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 49, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 61, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 334, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 382, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 359, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 475, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 630, - "travelTimeSeconds": 97 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 381, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 377, - "travelTimeSeconds": 58 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10579, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5896.650744527099, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.53, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 5.88, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.53 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "68549053-a194-4fc4-9393-09f9a34040bb", - "40ff3e02-8b3f-498b-908e-b391cc70a163", - "b535e273-90c1-49b6-b38e-2087d5bbebed", - "9346e734-c85a-4d09-88f4-23e94e4bdb4c", - "a788cfe3-2037-44e7-ae51-cd0388e8e41f", - "5665bcec-62a1-4d01-9550-6900a57f083d", - "0e836f4e-0231-42bf-9c3d-37ea2aef8934", - "30c08115-a1b6-45b8-9122-c5fe99723d2e", - "30c08115-a1b6-45b8-9122-c5fe99723d2e", - "bf4259d8-23ae-478a-8a93-ec28083b908d", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "853b0202-bae1-4c20-ab0e-8b27d1350e9a", - "69889f24-c076-4661-981b-6008a401d446", - "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", - "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", - "50ca3159-13cc-4149-b07f-8267a31166e3", - "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", - "33ed66fe-2193-4e2a-b51d-d25140b9ad80", - "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", - "69b9716f-dd31-4ae3-9736-6d5edb237b8a", - "8354e556-947c-481c-96bd-d61737767f2d", - "ced239e0-91f5-4429-96fd-20bbb8fcfd11", - "a2ac9477-abf0-4b55-8588-e045bd0373a2", - "8d50e155-65e6-4b67-8d83-f347e12cf6d7", - "658aec75-ba5b-4e43-b93b-5305ff3f6685", - "d664171d-6b67-486f-b850-92d7b923ec60", - "88a428f4-cdde-43a8-a2c3-c4652eae6722", - "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", - "057da5dd-23f2-431d-8955-7a7d8f0dae40", - "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", - "f585bf2c-536e-4916-a0ee-20092a76ccad", - "c5d63249-9c53-468b-a75e-33839919bc02", - "00770ec2-f385-4c5e-86f3-1e107a204be7", - "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", - "24542ec6-1b63-420d-8089-98a7341dfe66", - "40363de6-68fe-4797-a6b6-a7c0b8b379e0" - ], - "stops": [], - "line_id": "9e239ddb-5dce-4679-82bc-fa1d6e200324", - "segments": [ - 0, - 38, - 41, - 44, - 48, - 53, - 57, - 66, - 73, - 81, - 84, - 86, - 89, - 90, - 93, - 98, - 107, - 113, - 115, - 122, - 130, - 134, - 136, - 142, - 149, - 162, - 165, - 170, - 173, - 177, - 184, - 194, - 199, - 210, - 211, - 214, - 220, - 222, - 225 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 268, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.411475, - 45.472115 - ], - [ - -73.411574, - 45.472042 - ], - [ - -73.413919, - 45.470298 - ], - [ - -73.414113, - 45.470154 - ], - [ - -73.415612, - 45.469047 - ], - [ - -73.415792, - 45.468914 - ], - [ - -73.415843, - 45.468873 - ], - [ - -73.415903, - 45.468828 - ], - [ - -73.417646, - 45.46754 - ], - [ - -73.417764, - 45.467453 - ], - [ - -73.421226, - 45.464893 - ], - [ - -73.421345, - 45.464806 - ], - [ - -73.424239, - 45.462663 - ], - [ - -73.424593, - 45.462401 - ], - [ - -73.424964, - 45.462646 - ], - [ - -73.425069, - 45.462716 - ], - [ - -73.425478, - 45.462986 - ], - [ - -73.426204, - 45.463466 - ], - [ - -73.426502, - 45.463663 - ], - [ - -73.43053, - 45.466326 - ], - [ - -73.430808, - 45.46651 - ], - [ - -73.432747, - 45.467791 - ], - [ - -73.434084, - 45.46867 - ], - [ - -73.434186, - 45.468737 - ], - [ - -73.434223, - 45.46871 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.434426, - 45.468557 - ], - [ - -73.434574, - 45.46844 - ], - [ - -73.434595, - 45.468426 - ], - [ - -73.434654, - 45.468386 - ], - [ - -73.434706, - 45.46835 - ], - [ - -73.43479, - 45.468319 - ], - [ - -73.434953, - 45.468251 - ], - [ - -73.435895, - 45.468018 - ], - [ - -73.437601, - 45.467581 - ], - [ - -73.437909, - 45.467502 - ], - [ - -73.438637, - 45.467322 - ], - [ - -73.438692, - 45.467309 - ], - [ - -73.439001, - 45.46721 - ], - [ - -73.439742, - 45.466711 - ], - [ - -73.439775, - 45.466686 - ], - [ - -73.440051, - 45.466472 - ], - [ - -73.440337, - 45.466252 - ], - [ - -73.440976, - 45.46578 - ], - [ - -73.441167, - 45.465915 - ], - [ - -73.441375, - 45.466041 - ], - [ - -73.441736, - 45.466257 - ], - [ - -73.442013, - 45.466357 - ], - [ - -73.442168, - 45.466409 - ], - [ - -73.442317, - 45.46646 - ], - [ - -73.442367, - 45.466471 - ], - [ - -73.442596, - 45.466523 - ], - [ - -73.442918, - 45.466614 - ], - [ - -73.44316, - 45.466708 - ], - [ - -73.4434, - 45.466798 - ], - [ - -73.443571, - 45.466875 - ], - [ - -73.443775, - 45.466978 - ], - [ - -73.44395, - 45.467091 - ], - [ - -73.44423, - 45.467276 - ], - [ - -73.44435, - 45.46737 - ], - [ - -73.44443, - 45.467451 - ], - [ - -73.444454, - 45.467474 - ], - [ - -73.444535, - 45.46755 - ], - [ - -73.445104, - 45.468072 - ], - [ - -73.445679, - 45.468635 - ], - [ - -73.44617, - 45.469098 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445905, - 45.469485 - ], - [ - -73.445671, - 45.469643 - ], - [ - -73.445475, - 45.469778 - ], - [ - -73.445396, - 45.469832 - ], - [ - -73.445298, - 45.469899 - ], - [ - -73.444328, - 45.470583 - ], - [ - -73.444068, - 45.470766 - ], - [ - -73.44265, - 45.471767 - ], - [ - -73.442644, - 45.471771 - ], - [ - -73.442519, - 45.471859 - ], - [ - -73.441942, - 45.47227 - ], - [ - -73.441014, - 45.472931 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.440777, - 45.473082 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.441391, - 45.473553 - ], - [ - -73.441938, - 45.473928 - ], - [ - -73.442708, - 45.474456 - ], - [ - -73.443374, - 45.47491 - ], - [ - -73.443474, - 45.474978 - ], - [ - -73.44437, - 45.475586 - ], - [ - -73.445013, - 45.476022 - ], - [ - -73.445067, - 45.476058 - ], - [ - -73.445608, - 45.476432 - ], - [ - -73.446237, - 45.47686 - ], - [ - -73.44681, - 45.477252 - ], - [ - -73.446869, - 45.477292 - ], - [ - -73.447197, - 45.477514 - ], - [ - -73.44754, - 45.477747 - ], - [ - -73.448146, - 45.478157 - ], - [ - -73.448654, - 45.478499 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.450119, - 45.479471 - ], - [ - -73.450864, - 45.479959 - ], - [ - -73.451, - 45.480048 - ], - [ - -73.451438, - 45.480342 - ], - [ - -73.451689, - 45.480511 - ], - [ - -73.452165, - 45.480813 - ], - [ - -73.452546, - 45.481079 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452379, - 45.481446 - ], - [ - -73.452062, - 45.481636 - ], - [ - -73.45135, - 45.482063 - ], - [ - -73.451248, - 45.482124 - ], - [ - -73.450095, - 45.482809 - ], - [ - -73.449882, - 45.482936 - ], - [ - -73.449245, - 45.483336 - ], - [ - -73.449101, - 45.483471 - ], - [ - -73.448914, - 45.483713 - ], - [ - -73.448817, - 45.483898 - ], - [ - -73.448629, - 45.484109 - ], - [ - -73.44844, - 45.484271 - ], - [ - -73.448213, - 45.48449 - ], - [ - -73.44775, - 45.484937 - ], - [ - -73.447415, - 45.485256 - ], - [ - -73.447237, - 45.485427 - ], - [ - -73.447005, - 45.485643 - ], - [ - -73.446786, - 45.485851 - ], - [ - -73.446708, - 45.485926 - ], - [ - -73.445795, - 45.486794 - ], - [ - -73.445654, - 45.486915 - ], - [ - -73.445524, - 45.487041 - ], - [ - -73.445408, - 45.487167 - ], - [ - -73.445358, - 45.487232 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.44587, - 45.490786 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 269, - "properties": { - "id": "7be5a65e-e969-4fc2-a290-7a8ca74fdb0f", - "data": { - "gtfs": { - "shape_id": "521_1_A" - }, - "segments": [ - { - "distanceMeters": 278, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 406, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 80, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 494, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 58, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 317, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 42, - "travelTimeSeconds": 6 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 509, - "travelTimeSeconds": 74 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7046, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3418.2886933466457, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.91, - "travelTimeWithoutDwellTimesSeconds": 1020, - "operatingTimeWithLayoverTimeSeconds": 1200, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1020, - "operatingSpeedWithLayoverMetersPerSecond": 5.87, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.91 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "cbe5dd37-dce1-464a-9725-6d31d37c48ab", - "8dc191fb-71db-4873-9019-c9cedd32b2f0", - "176a1328-a08b-40f7-9010-c279f0b6cf5d", - "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", - "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", - "d739fe08-5298-4356-bd9e-c48a7fee16a1", - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "2f104875-795a-4778-a419-276272abfb07", - "ba86f45f-9fb5-4525-a50b-a876919fd012", - "988c86da-04eb-4067-b650-f13c447b17e7", - "988c86da-04eb-4067-b650-f13c447b17e7", - "4827a17d-8dc9-4cbd-8430-3334ebece64a", - "504cb53f-f1f4-46f2-81f5-f99fef8227fd", - "966472c1-4384-4d94-92f7-48afa023de51", - "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", - "c8919560-2bb2-4063-8184-8e6c296badbe", - "e80498a8-505d-4215-ba07-7582f8783d8e", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "c4061c94-e615-4bca-b219-1ff6ea9657d0", - "c4061c94-e615-4bca-b219-1ff6ea9657d0", - "89553e99-6867-4296-935e-718bb768cb73", - "72a48bdf-3a35-4f3b-8d05-e465faf044cf", - "70af9f63-28e4-474e-896b-5462b7252980", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "d9b94443-0b59-40db-aecb-0acb5ea7976c", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "dcd0b658-eb7c-42e6-9b3d-e7f55babd3a5", - "segments": [ - 0, - 2, - 4, - 8, - 10, - 12, - 14, - 17, - 20, - 22, - 28, - 34, - 41, - 48, - 61, - 65, - 73, - 74, - 78, - 86, - 89, - 93, - 95, - 98, - 102, - 107, - 112, - 113, - 121, - 126, - 132 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 269, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445508, - 45.489489 - ], - [ - -73.4453, - 45.489165 - ], - [ - -73.445238, - 45.489052 - ], - [ - -73.445212, - 45.488985 - ], - [ - -73.445181, - 45.488904 - ], - [ - -73.445074, - 45.488728 - ], - [ - -73.445053, - 45.488544 - ], - [ - -73.445044, - 45.488377 - ], - [ - -73.445046, - 45.488242 - ], - [ - -73.445073, - 45.488085 - ], - [ - -73.445118, - 45.487932 - ], - [ - -73.445182, - 45.487779 - ], - [ - -73.445261, - 45.48759 - ], - [ - -73.445319, - 45.487496 - ], - [ - -73.445386, - 45.487388 - ], - [ - -73.445526, - 45.487217 - ], - [ - -73.445638, - 45.487095 - ], - [ - -73.445642, - 45.487092 - ], - [ - -73.445764, - 45.486978 - ], - [ - -73.445905, - 45.486857 - ], - [ - -73.446708, - 45.486092 - ], - [ - -73.44682, - 45.485985 - ], - [ - -73.447123, - 45.485706 - ], - [ - -73.447356, - 45.48549 - ], - [ - -73.447536, - 45.485315 - ], - [ - -73.447867, - 45.484995 - ], - [ - -73.448282, - 45.484595 - ], - [ - -73.448552, - 45.484334 - ], - [ - -73.448747, - 45.484168 - ], - [ - -73.448891, - 45.484006 - ], - [ - -73.448947, - 45.483943 - ], - [ - -73.449046, - 45.483754 - ], - [ - -73.449223, - 45.483529 - ], - [ - -73.449352, - 45.483408 - ], - [ - -73.449867, - 45.483086 - ], - [ - -73.449978, - 45.483017 - ], - [ - -73.451449, - 45.482131 - ], - [ - -73.45177, - 45.481937 - ], - [ - -73.45215, - 45.481708 - ], - [ - -73.452851, - 45.48129 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452516, - 45.480856 - ], - [ - -73.452296, - 45.480719 - ], - [ - -73.452295, - 45.480718 - ], - [ - -73.451913, - 45.480471 - ], - [ - -73.451837, - 45.480421 - ], - [ - -73.451565, - 45.480238 - ], - [ - -73.451004, - 45.47986 - ], - [ - -73.450929, - 45.479809 - ], - [ - -73.450257, - 45.479368 - ], - [ - -73.449703, - 45.479007 - ], - [ - -73.449587, - 45.478931 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448305, - 45.478058 - ], - [ - -73.447778, - 45.477701 - ], - [ - -73.4477, - 45.477648 - ], - [ - -73.446992, - 45.477175 - ], - [ - -73.446393, - 45.476765 - ], - [ - -73.445743, - 45.476329 - ], - [ - -73.445373, - 45.476072 - ], - [ - -73.445205, - 45.475955 - ], - [ - -73.444867, - 45.475726 - ], - [ - -73.444508, - 45.475482 - ], - [ - -73.443707, - 45.474941 - ], - [ - -73.443609, - 45.474874 - ], - [ - -73.44285, - 45.474357 - ], - [ - -73.441174, - 45.473211 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.442521, - 45.472047 - ], - [ - -73.442653, - 45.471954 - ], - [ - -73.444466, - 45.470668 - ], - [ - -73.444558, - 45.470603 - ], - [ - -73.444693, - 45.470507 - ], - [ - -73.445328, - 45.470057 - ], - [ - -73.445338, - 45.470052 - ], - [ - -73.445622, - 45.469854 - ], - [ - -73.446091, - 45.469543 - ], - [ - -73.446378, - 45.469352 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445679, - 45.468635 - ], - [ - -73.445104, - 45.468072 - ], - [ - -73.444622, - 45.467631 - ], - [ - -73.444535, - 45.46755 - ], - [ - -73.44443, - 45.467451 - ], - [ - -73.44435, - 45.46737 - ], - [ - -73.44423, - 45.467276 - ], - [ - -73.44395, - 45.467091 - ], - [ - -73.443775, - 45.466978 - ], - [ - -73.443571, - 45.466875 - ], - [ - -73.4434, - 45.466798 - ], - [ - -73.44316, - 45.466708 - ], - [ - -73.442918, - 45.466614 - ], - [ - -73.442763, - 45.46657 - ], - [ - -73.442596, - 45.466523 - ], - [ - -73.442367, - 45.466471 - ], - [ - -73.442317, - 45.46646 - ], - [ - -73.442026, - 45.466361 - ], - [ - -73.442013, - 45.466357 - ], - [ - -73.441736, - 45.466257 - ], - [ - -73.441411, - 45.466062 - ], - [ - -73.441167, - 45.465915 - ], - [ - -73.440976, - 45.46578 - ], - [ - -73.440466, - 45.466156 - ], - [ - -73.440337, - 45.466252 - ], - [ - -73.439775, - 45.466686 - ], - [ - -73.439742, - 45.466711 - ], - [ - -73.439001, - 45.46721 - ], - [ - -73.438692, - 45.467309 - ], - [ - -73.438637, - 45.467322 - ], - [ - -73.438044, - 45.467468 - ], - [ - -73.437909, - 45.467502 - ], - [ - -73.435895, - 45.468018 - ], - [ - -73.434953, - 45.468251 - ], - [ - -73.43479, - 45.468319 - ], - [ - -73.434706, - 45.46835 - ], - [ - -73.434654, - 45.468386 - ], - [ - -73.434574, - 45.46844 - ], - [ - -73.434426, - 45.468557 - ], - [ - -73.434422, - 45.46856 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.433058, - 45.467863 - ], - [ - -73.430737, - 45.466325 - ], - [ - -73.430632, - 45.466255 - ], - [ - -73.430216, - 45.465979 - ], - [ - -73.426688, - 45.46364 - ], - [ - -73.426608, - 45.463587 - ], - [ - -73.425566, - 45.462896 - ], - [ - -73.425014, - 45.46253 - ], - [ - -73.424854, - 45.462424 - ], - [ - -73.4247, - 45.462321 - ], - [ - -73.424593, - 45.462401 - ], - [ - -73.424266, - 45.462642 - ], - [ - -73.423965, - 45.462865 - ], - [ - -73.421428, - 45.464744 - ], - [ - -73.421345, - 45.464806 - ], - [ - -73.417822, - 45.46741 - ], - [ - -73.417764, - 45.467453 - ], - [ - -73.416005, - 45.468753 - ], - [ - -73.415903, - 45.468828 - ], - [ - -73.415843, - 45.468873 - ], - [ - -73.415792, - 45.468914 - ], - [ - -73.4142, - 45.47009 - ], - [ - -73.414113, - 45.470154 - ], - [ - -73.411712, - 45.47194 - ] - ] - }, - "id": 270, - "properties": { - "id": "fe266d43-127c-46c4-a65e-96b42bee339f", - "data": { - "gtfs": { - "shape_id": "521_2_R" - }, - "segments": [ - { - "distanceMeters": 492, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 121, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 104, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 311, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 392, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 56, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 100, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 49 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6983, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3418.2886933466457, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.82, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 5.06, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.82 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "5f21960f-8919-4407-8a49-57c39947c4fe", - "cc43f372-04e8-4c4c-b711-2e4159e3855d", - "9b7055a8-adca-44c6-9935-6026756d4460", - "76ff8292-f41f-4d17-998d-6dd3d2c32288", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "e80498a8-505d-4215-ba07-7582f8783d8e", - "014d61e3-acfc-41f6-b78a-5c2178c073b1", - "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", - "966472c1-4384-4d94-92f7-48afa023de51", - "43d1b9da-374a-4022-9200-6e68a13388db", - "504cb53f-f1f4-46f2-81f5-f99fef8227fd", - "4827a17d-8dc9-4cbd-8430-3334ebece64a", - "988c86da-04eb-4067-b650-f13c447b17e7", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "988183db-88f1-47cb-87bf-b2a03dd4a38d", - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "d739fe08-5298-4356-bd9e-c48a7fee16a1", - "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", - "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", - "176a1328-a08b-40f7-9010-c279f0b6cf5d", - "8dc191fb-71db-4873-9019-c9cedd32b2f0", - "cbe5dd37-dce1-464a-9725-6d31d37c48ab" - ], - "stops": [], - "line_id": "dcd0b658-eb7c-42e6-9b3d-e7f55babd3a5", - "segments": [ - 0, - 31, - 34, - 40, - 48, - 51, - 56, - 62, - 65, - 69, - 74, - 78, - 81, - 83, - 87, - 92, - 97, - 108, - 115, - 118, - 125, - 134, - 137, - 139, - 140, - 144, - 148, - 149, - 151, - 153, - 157 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 270, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.478751, - 45.473401 - ], - [ - -73.478906, - 45.473406 - ], - [ - -73.482473, - 45.473519 - ], - [ - -73.482622, - 45.473524 - ], - [ - -73.483288, - 45.473542 - ], - [ - -73.483471, - 45.473542 - ], - [ - -73.483606, - 45.473542 - ], - [ - -73.484062, - 45.473524 - ], - [ - -73.484567, - 45.473475 - ], - [ - -73.484784, - 45.473448 - ], - [ - -73.485243, - 45.473362 - ], - [ - -73.485556, - 45.473295 - ], - [ - -73.485874, - 45.4732 - ], - [ - -73.485899, - 45.473193 - ], - [ - -73.485995, - 45.473164 - ], - [ - -73.486151, - 45.473119 - ], - [ - -73.48667, - 45.47295 - ], - [ - -73.486787, - 45.472912 - ], - [ - -73.488142, - 45.472472 - ], - [ - -73.488555, - 45.472341 - ], - [ - -73.488966, - 45.472197 - ], - [ - -73.489081, - 45.472161 - ], - [ - -73.489198, - 45.472121 - ], - [ - -73.489607, - 45.471977 - ], - [ - -73.489849, - 45.471871 - ], - [ - -73.490057, - 45.471779 - ], - [ - -73.490953, - 45.471352 - ], - [ - -73.49113, - 45.471275 - ], - [ - -73.491309, - 45.471203 - ], - [ - -73.49144, - 45.471158 - ], - [ - -73.491671, - 45.471086 - ], - [ - -73.492077, - 45.471005 - ], - [ - -73.49239, - 45.47096 - ], - [ - -73.492603, - 45.470947 - ], - [ - -73.492828, - 45.470933 - ], - [ - -73.493058, - 45.470938 - ], - [ - -73.494082, - 45.470974 - ], - [ - -73.49484, - 45.471001 - ], - [ - -73.494847, - 45.470884 - ], - [ - -73.494862, - 45.47056 - ], - [ - -73.494801, - 45.470439 - ], - [ - -73.494791, - 45.470417 - ], - [ - -73.494611, - 45.470061 - ], - [ - -73.494154, - 45.469237 - ], - [ - -73.494075, - 45.469188 - ], - [ - -73.49395, - 45.46917 - ], - [ - -73.492822, - 45.469117 - ], - [ - -73.4927, - 45.469111 - ], - [ - -73.492434, - 45.469107 - ], - [ - -73.489024, - 45.468993 - ], - [ - -73.488788, - 45.468985 - ], - [ - -73.487892, - 45.468935 - ], - [ - -73.486913, - 45.468899 - ], - [ - -73.486742, - 45.468895 - ], - [ - -73.486598, - 45.468913 - ], - [ - -73.486363, - 45.468976 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.485272, - 45.468957 - ], - [ - -73.485183, - 45.468899 - ], - [ - -73.485068, - 45.468858 - ], - [ - -73.484983, - 45.468836 - ], - [ - -73.484852, - 45.468827 - ], - [ - -73.484135, - 45.468799 - ], - [ - -73.484035, - 45.468795 - ], - [ - -73.482517, - 45.468777 - ], - [ - -73.481592, - 45.468898 - ], - [ - -73.4808, - 45.468947 - ], - [ - -73.480705, - 45.468952 - ], - [ - -73.479733, - 45.468916 - ], - [ - -73.478795, - 45.46888 - ], - [ - -73.477949, - 45.468846 - ], - [ - -73.477791, - 45.468839 - ], - [ - -73.475537, - 45.468744 - ], - [ - -73.475149, - 45.468731 - ], - [ - -73.474822, - 45.468708 - ], - [ - -73.474819, - 45.468708 - ], - [ - -73.47474, - 45.468663 - ], - [ - -73.474714, - 45.46866 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.47318, - 45.468285 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.4714, - 45.468097 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469319, - 45.467991 - ], - [ - -73.468598, - 45.467969 - ], - [ - -73.468434, - 45.467978 - ], - [ - -73.467926, - 45.468045 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465547, - 45.468207 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.463779, - 45.468251 - ], - [ - -73.463257, - 45.46862 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463016, - 45.468741 - ], - [ - -73.462763, - 45.468943 - ], - [ - -73.462689, - 45.46902 - ], - [ - -73.46267, - 45.46904 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.461012, - 45.470189 - ], - [ - -73.460776, - 45.470351 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.458419, - 45.471961 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.456036, - 45.473591 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.453663, - 45.475216 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.451318, - 45.476821 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.449381, - 45.478147 - ], - [ - -73.449265, - 45.478226 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448868, - 45.478494 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.449044, - 45.479268 - ], - [ - -73.448771, - 45.479431 - ], - [ - -73.448748, - 45.479445 - ], - [ - -73.44714, - 45.480405 - ], - [ - -73.446622, - 45.480714 - ], - [ - -73.446581, - 45.480738 - ], - [ - -73.445624, - 45.481309 - ], - [ - -73.443796, - 45.482389 - ], - [ - -73.443745, - 45.48242 - ], - [ - -73.443018, - 45.482865 - ], - [ - -73.440987, - 45.484065 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.441197, - 45.484538 - ], - [ - -73.441346, - 45.484655 - ], - [ - -73.441638, - 45.484884 - ], - [ - -73.442273, - 45.485405 - ], - [ - -73.44238, - 45.485492 - ], - [ - -73.442979, - 45.48598 - ], - [ - -73.443236, - 45.48619 - ], - [ - -73.443584, - 45.486491 - ], - [ - -73.443685, - 45.486573 - ], - [ - -73.443948, - 45.486787 - ], - [ - -73.444066, - 45.486883 - ], - [ - -73.444405, - 45.487149 - ], - [ - -73.44464, - 45.487266 - ], - [ - -73.444883, - 45.487369 - ], - [ - -73.445062, - 45.487428 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.44587, - 45.490786 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 271, - "properties": { - "id": "fbb178f1-f799-44bb-9296-639b8bfe4567", - "data": { - "gtfs": { - "shape_id": "524_1_A" - }, - "segments": [ - { - "distanceMeters": 291, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 66, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 729, - "travelTimeSeconds": 104 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 421, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 462, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 74, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 605, - "travelTimeSeconds": 87 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7547, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3215.4172119417626, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.99, - "travelTimeWithoutDwellTimesSeconds": 1080, - "operatingTimeWithLayoverTimeSeconds": 1260, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1080, - "operatingSpeedWithLayoverMetersPerSecond": 5.99, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.99 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "2ef5dac7-c226-43bb-8534-6642e7a8ab89", - "a9b02686-8465-48b9-89ba-773a03aed1e8", - "17fd1ec9-db8e-4d18-a174-72ce7cb4c434", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "66a0749c-2a5b-458d-b059-307f555cb93a", - "d83daa69-bf92-4b93-8173-1c0fd22cbec0", - "3acbe4f4-b4c0-469f-af21-f4af3c6e2b53", - "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "79c669a1-9060-4e5d-b272-f107884dee00", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "907f8610-452b-440d-849b-c803b07dedc1", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "42f94a5d-c370-4fd6-9c9f-6767ef259624", - "e0286f28-f802-47e9-8fd2-0338e2927a2f", - "46d1170e-039a-4a64-a065-b60146bf9006", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "e72d0d41-60dd-429c-9fc0-986190945d76", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "e9fc89c5-946e-4534-8335-80b67259d6a3", - "segments": [ - 0, - 2, - 13, - 16, - 24, - 46, - 49, - 62, - 66, - 70, - 77, - 85, - 92, - 108, - 124, - 128, - 130, - 132, - 134, - 136, - 139, - 146, - 148, - 151, - 154, - 157, - 160, - 166 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 271, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445508, - 45.489489 - ], - [ - -73.4453, - 45.489165 - ], - [ - -73.445238, - 45.489052 - ], - [ - -73.445212, - 45.488985 - ], - [ - -73.445181, - 45.488904 - ], - [ - -73.445074, - 45.488728 - ], - [ - -73.445053, - 45.488544 - ], - [ - -73.445044, - 45.488377 - ], - [ - -73.445046, - 45.488242 - ], - [ - -73.445073, - 45.488085 - ], - [ - -73.445118, - 45.487932 - ], - [ - -73.445182, - 45.487779 - ], - [ - -73.445261, - 45.48759 - ], - [ - -73.445319, - 45.487496 - ], - [ - -73.445386, - 45.487388 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445129, - 45.48732 - ], - [ - -73.444962, - 45.487262 - ], - [ - -73.444731, - 45.487167 - ], - [ - -73.444565, - 45.487086 - ], - [ - -73.444194, - 45.486807 - ], - [ - -73.443808, - 45.486496 - ], - [ - -73.443706, - 45.486415 - ], - [ - -73.44336, - 45.486118 - ], - [ - -73.442635, - 45.485521 - ], - [ - -73.442528, - 45.485434 - ], - [ - -73.441754, - 45.484812 - ], - [ - -73.440981, - 45.484198 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.441366, - 45.483841 - ], - [ - -73.443018, - 45.482865 - ], - [ - -73.443648, - 45.482479 - ], - [ - -73.443745, - 45.48242 - ], - [ - -73.445624, - 45.481309 - ], - [ - -73.446434, - 45.480826 - ], - [ - -73.446581, - 45.480738 - ], - [ - -73.448472, - 45.47961 - ], - [ - -73.448771, - 45.479431 - ], - [ - -73.449044, - 45.479268 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.44954, - 45.478958 - ], - [ - -73.449587, - 45.478931 - ], - [ - -73.449459, - 45.478843 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.44937, - 45.478154 - ], - [ - -73.451102, - 45.476969 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.45342, - 45.475382 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.455838, - 45.473726 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.458212, - 45.472102 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.460496, - 45.470543 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.462589, - 45.469104 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.465192, - 45.468284 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.468438, - 45.468072 - ], - [ - -73.468566, - 45.468063 - ], - [ - -73.469327, - 45.468092 - ], - [ - -73.469492, - 45.4681 - ], - [ - -73.470299, - 45.468145 - ], - [ - -73.471039, - 45.46818 - ], - [ - -73.471238, - 45.46819 - ], - [ - -73.471526, - 45.468208 - ], - [ - -73.472194, - 45.468244 - ], - [ - -73.472404, - 45.468254 - ], - [ - -73.472597, - 45.468262 - ], - [ - -73.472728, - 45.468276 - ], - [ - -73.472834, - 45.468294 - ], - [ - -73.472877, - 45.468307 - ], - [ - -73.473025, - 45.468348 - ], - [ - -73.473214, - 45.468424 - ], - [ - -73.473649, - 45.468595 - ], - [ - -73.473673, - 45.468604 - ], - [ - -73.473905, - 45.468649 - ], - [ - -73.474077, - 45.468676 - ], - [ - -73.474259, - 45.46869 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474718, - 45.468735 - ], - [ - -73.474819, - 45.468708 - ], - [ - -73.474822, - 45.468708 - ], - [ - -73.475149, - 45.468731 - ], - [ - -73.475359, - 45.468738 - ], - [ - -73.475537, - 45.468744 - ], - [ - -73.477736, - 45.468837 - ], - [ - -73.477791, - 45.468839 - ], - [ - -73.478795, - 45.46888 - ], - [ - -73.479733, - 45.468916 - ], - [ - -73.480561, - 45.468947 - ], - [ - -73.480705, - 45.468952 - ], - [ - -73.481592, - 45.468898 - ], - [ - -73.482517, - 45.468777 - ], - [ - -73.483882, - 45.468793 - ], - [ - -73.484035, - 45.468795 - ], - [ - -73.484852, - 45.468827 - ], - [ - -73.484983, - 45.468836 - ], - [ - -73.485068, - 45.468858 - ], - [ - -73.485183, - 45.468899 - ], - [ - -73.485272, - 45.468957 - ], - [ - -73.485483, - 45.469205 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.486078, - 45.469097 - ], - [ - -73.486363, - 45.468976 - ], - [ - -73.486598, - 45.468913 - ], - [ - -73.486742, - 45.468895 - ], - [ - -73.486913, - 45.468899 - ], - [ - -73.487892, - 45.468935 - ], - [ - -73.488644, - 45.468977 - ], - [ - -73.488788, - 45.468985 - ], - [ - -73.492275, - 45.469101 - ], - [ - -73.492434, - 45.469107 - ], - [ - -73.4927, - 45.469111 - ], - [ - -73.49395, - 45.46917 - ], - [ - -73.494075, - 45.469188 - ], - [ - -73.494154, - 45.469237 - ], - [ - -73.494552, - 45.469954 - ], - [ - -73.494611, - 45.470061 - ], - [ - -73.494791, - 45.470417 - ], - [ - -73.494857, - 45.47055 - ], - [ - -73.494862, - 45.47056 - ], - [ - -73.494851, - 45.470805 - ], - [ - -73.494847, - 45.470884 - ], - [ - -73.494088, - 45.470857 - ], - [ - -73.493065, - 45.470821 - ], - [ - -73.492825, - 45.470816 - ], - [ - -73.492588, - 45.470825 - ], - [ - -73.492364, - 45.470843 - ], - [ - -73.492038, - 45.470888 - ], - [ - -73.491625, - 45.470969 - ], - [ - -73.491149, - 45.471131 - ], - [ - -73.491044, - 45.471167 - ], - [ - -73.490858, - 45.471248 - ], - [ - -73.490204, - 45.471562 - ], - [ - -73.490099, - 45.471613 - ], - [ - -73.489969, - 45.471675 - ], - [ - -73.489522, - 45.471873 - ], - [ - -73.489116, - 45.472013 - ], - [ - -73.48901, - 45.472049 - ], - [ - -73.488898, - 45.472089 - ], - [ - -73.488483, - 45.472229 - ], - [ - -73.48807, - 45.472359 - ], - [ - -73.487065, - 45.47269 - ], - [ - -73.486715, - 45.472804 - ], - [ - -73.48607, - 45.47302 - ], - [ - -73.485914, - 45.473065 - ], - [ - -73.485421, - 45.473196 - ], - [ - -73.485194, - 45.47325 - ], - [ - -73.484873, - 45.473304 - ], - [ - -73.484747, - 45.473331 - ], - [ - -73.484539, - 45.473353 - ], - [ - -73.484309, - 45.47338 - ], - [ - -73.484047, - 45.473403 - ], - [ - -73.483835, - 45.473413 - ], - [ - -73.483761, - 45.473416 - ], - [ - -73.483613, - 45.473425 - ], - [ - -73.48263, - 45.473402 - ], - [ - -73.479102, - 45.473291 - ] - ] - }, - "id": 272, - "properties": { - "id": "f928d45f-c4f4-400f-993e-9a58cbfa7fa4", - "data": { - "gtfs": { - "shape_id": "524_2_R" - }, - "segments": [ - { - "distanceMeters": 756, - "travelTimeSeconds": 133 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 462, - "travelTimeSeconds": 82 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 60, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 402, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 66 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7462, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3215.4172119417626, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.65, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 4.97, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.65 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "46d1170e-039a-4a64-a065-b60146bf9006", - "e0286f28-f802-47e9-8fd2-0338e2927a2f", - "42f94a5d-c370-4fd6-9c9f-6767ef259624", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "907f8610-452b-440d-849b-c803b07dedc1", - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "0296a406-079c-41f9-8c5b-0723a0b5f294", - "79c669a1-9060-4e5d-b272-f107884dee00", - "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "3e9388da-8f48-48c6-b6c0-5461e27eb26a", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "d83daa69-bf92-4b93-8173-1c0fd22cbec0", - "66a0749c-2a5b-458d-b059-307f555cb93a", - "c5effd0a-a9b0-4cfe-8176-06c99313f58b", - "e7a825d7-e677-4fe7-b1ef-b6db556d3c70", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", - "2ef5dac7-c226-43bb-8534-6642e7a8ab89" - ], - "stops": [], - "line_id": "e9fc89c5-946e-4534-8335-80b67259d6a3", - "segments": [ - 0, - 38, - 41, - 45, - 48, - 50, - 58, - 59, - 61, - 63, - 65, - 67, - 69, - 82, - 96, - 100, - 107, - 118, - 120, - 124, - 128, - 135, - 137, - 143, - 145, - 151, - 156, - 169, - 177, - 188 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 272, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.492023, - 45.489267 - ], - [ - -73.491721, - 45.489052 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.491557, - 45.488939 - ], - [ - -73.490801, - 45.488399 - ], - [ - -73.489411, - 45.487405 - ], - [ - -73.489373, - 45.487377 - ], - [ - -73.489048, - 45.487135 - ], - [ - -73.488568, - 45.486806 - ], - [ - -73.487831, - 45.486284 - ], - [ - -73.487157, - 45.485806 - ], - [ - -73.487051, - 45.485731 - ], - [ - -73.486783, - 45.485533 - ], - [ - -73.486446, - 45.485294 - ], - [ - -73.485807, - 45.484835 - ], - [ - -73.485416, - 45.484552 - ], - [ - -73.48502, - 45.484269 - ], - [ - -73.484263, - 45.483728 - ], - [ - -73.483637, - 45.483278 - ], - [ - -73.483483, - 45.483175 - ], - [ - -73.483337, - 45.483067 - ], - [ - -73.482999, - 45.482824 - ], - [ - -73.482644, - 45.48257 - ], - [ - -73.482188, - 45.482243 - ], - [ - -73.482091, - 45.482176 - ], - [ - -73.481995, - 45.482108 - ], - [ - -73.481822, - 45.481987 - ], - [ - -73.481718, - 45.48191 - ], - [ - -73.48159, - 45.481816 - ], - [ - -73.481483, - 45.481744 - ], - [ - -73.481141, - 45.481496 - ], - [ - -73.480755, - 45.481226 - ], - [ - -73.480428, - 45.480974 - ], - [ - -73.479961, - 45.480655 - ], - [ - -73.479511, - 45.480326 - ], - [ - -73.479422, - 45.480272 - ], - [ - -73.47933, - 45.4802 - ], - [ - -73.479253, - 45.480145 - ], - [ - -73.478515, - 45.47962 - ], - [ - -73.478125, - 45.479336 - ], - [ - -73.477833, - 45.479125 - ], - [ - -73.477798, - 45.479064 - ], - [ - -73.477757, - 45.479003 - ], - [ - -73.477575, - 45.47885 - ], - [ - -73.477033, - 45.478413 - ], - [ - -73.476671, - 45.478149 - ], - [ - -73.47654, - 45.478053 - ], - [ - -73.476251, - 45.477842 - ], - [ - -73.476119, - 45.477927 - ], - [ - -73.475478, - 45.478344 - ], - [ - -73.475475, - 45.478346 - ], - [ - -73.475372, - 45.478413 - ], - [ - -73.474541, - 45.478922 - ], - [ - -73.474461, - 45.478971 - ], - [ - -73.474157, - 45.479169 - ], - [ - -73.47284, - 45.480068 - ], - [ - -73.472485, - 45.480311 - ], - [ - -73.472254, - 45.480468 - ], - [ - -73.472135, - 45.48055 - ], - [ - -73.472029, - 45.480487 - ], - [ - -73.471904, - 45.480419 - ], - [ - -73.471804, - 45.480383 - ], - [ - -73.471671, - 45.48036 - ], - [ - -73.471568, - 45.480347 - ], - [ - -73.47151, - 45.480342 - ], - [ - -73.471409, - 45.480342 - ], - [ - -73.471292, - 45.480347 - ], - [ - -73.470657, - 45.480464 - ], - [ - -73.470383, - 45.480513 - ], - [ - -73.470287, - 45.480532 - ], - [ - -73.470068, - 45.480576 - ], - [ - -73.46991, - 45.480604 - ], - [ - -73.469791, - 45.480625 - ], - [ - -73.470057, - 45.481186 - ], - [ - -73.470101, - 45.481279 - ], - [ - -73.470149, - 45.481381 - ], - [ - -73.470239, - 45.481512 - ], - [ - -73.470508, - 45.481748 - ], - [ - -73.470609, - 45.481836 - ], - [ - -73.470436, - 45.481957 - ], - [ - -73.470271, - 45.48207 - ], - [ - -73.469956, - 45.482272 - ], - [ - -73.469608, - 45.48252 - ], - [ - -73.469293, - 45.482731 - ], - [ - -73.469261, - 45.482752 - ], - [ - -73.468943, - 45.48296 - ], - [ - -73.468655, - 45.483149 - ], - [ - -73.468621, - 45.483172 - ], - [ - -73.468282, - 45.483401 - ], - [ - -73.467378, - 45.484028 - ], - [ - -73.466985, - 45.484267 - ], - [ - -73.466778, - 45.484384 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466022, - 45.484682 - ], - [ - -73.465888, - 45.484747 - ], - [ - -73.465767, - 45.484792 - ], - [ - -73.465702, - 45.484807 - ], - [ - -73.465661, - 45.484807 - ], - [ - -73.465627, - 45.484802 - ], - [ - -73.4655, - 45.484766 - ], - [ - -73.464965, - 45.484574 - ], - [ - -73.464559, - 45.484417 - ], - [ - -73.464508, - 45.484399 - ], - [ - -73.464185, - 45.484291 - ], - [ - -73.463703, - 45.484155 - ], - [ - -73.463657, - 45.484142 - ], - [ - -73.46319, - 45.484029 - ], - [ - -73.462672, - 45.483908 - ], - [ - -73.462287, - 45.483831 - ], - [ - -73.462032, - 45.483791 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.46135, - 45.4837 - ], - [ - -73.460838, - 45.483637 - ], - [ - -73.460175, - 45.48358 - ], - [ - -73.459999, - 45.483565 - ], - [ - -73.459497, - 45.483511 - ], - [ - -73.459033, - 45.483457 - ], - [ - -73.458739, - 45.483407 - ], - [ - -73.458547, - 45.483371 - ], - [ - -73.458333, - 45.483321 - ], - [ - -73.458016, - 45.483245 - ], - [ - -73.45777, - 45.483182 - ], - [ - -73.457492, - 45.483101 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45645, - 45.482799 - ], - [ - -73.455886, - 45.482623 - ], - [ - -73.455654, - 45.482542 - ], - [ - -73.455462, - 45.482465 - ], - [ - -73.455276, - 45.482384 - ], - [ - -73.455274, - 45.482383 - ], - [ - -73.455009, - 45.482272 - ], - [ - -73.454605, - 45.482087 - ], - [ - -73.454381, - 45.481984 - ], - [ - -73.454145, - 45.481862 - ], - [ - -73.453796, - 45.481673 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452379, - 45.481446 - ], - [ - -73.452062, - 45.481636 - ], - [ - -73.45135, - 45.482063 - ], - [ - -73.451246, - 45.482125 - ], - [ - -73.450103, - 45.482804 - ], - [ - -73.449882, - 45.482936 - ], - [ - -73.449245, - 45.483336 - ], - [ - -73.449101, - 45.483471 - ], - [ - -73.448914, - 45.483713 - ], - [ - -73.448817, - 45.483898 - ], - [ - -73.448629, - 45.484109 - ], - [ - -73.44844, - 45.484271 - ], - [ - -73.448219, - 45.484484 - ], - [ - -73.44775, - 45.484937 - ], - [ - -73.447415, - 45.485256 - ], - [ - -73.447237, - 45.485427 - ], - [ - -73.447005, - 45.485643 - ], - [ - -73.446785, - 45.485852 - ], - [ - -73.446708, - 45.485926 - ], - [ - -73.445795, - 45.486794 - ], - [ - -73.445654, - 45.486915 - ], - [ - -73.445524, - 45.487041 - ], - [ - -73.445408, - 45.487167 - ], - [ - -73.445358, - 45.487233 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 273, - "properties": { - "id": "4986fdc2-cc34-465e-8bbf-ac6eeabb651f", - "data": { - "gtfs": { - "shape_id": "525_1_A" - }, - "segments": [ - { - "distanceMeters": 295, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 368, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 977, - "travelTimeSeconds": 161 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 405, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 509, - "travelTimeSeconds": 85 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5575, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3565.80614449939, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.19, - "travelTimeWithoutDwellTimesSeconds": 900, - "operatingTimeWithLayoverTimeSeconds": 1080, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 900, - "operatingSpeedWithLayoverMetersPerSecond": 5.16, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.19 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "196681e4-c9e5-4a79-a3b1-ce225227e0aa", - "54bbe390-ff6d-41d9-bd4b-1e4843d66512", - "aa413165-9699-49b6-9dea-fa35bda8f373", - "0a623471-271f-47f5-9a85-7feece2a3285", - "dc5fe0eb-b8cc-4186-82d3-6787360ae612", - "1e48d359-2463-4fbd-b946-c0a530db4bbe", - "c46257ee-b29f-4a62-9447-95eb1e19c941", - "fe84c986-2907-4842-bde4-72fbe08a0576", - "784b0f22-55ff-44d1-a754-ddad81fb81cd", - "96e97125-39ff-47a9-b41d-043c4ca5c57e", - "c2e1b4a6-db9f-4050-848a-68486b390a21", - "a4f163e1-b90e-4fc3-82f3-f03b3181860d", - "491099bb-9493-4888-bd4e-20bd2140830a", - "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", - "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "d9b94443-0b59-40db-aecb-0acb5ea7976c", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "8a7004df-85bd-47fa-b418-d26df262c182", - "segments": [ - 0, - 6, - 10, - 16, - 27, - 37, - 39, - 45, - 52, - 57, - 71, - 77, - 114, - 123, - 130, - 142, - 143, - 151, - 156, - 162 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 273, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445508, - 45.489489 - ], - [ - -73.4453, - 45.489165 - ], - [ - -73.445238, - 45.489052 - ], - [ - -73.445212, - 45.488985 - ], - [ - -73.445181, - 45.488904 - ], - [ - -73.445074, - 45.488728 - ], - [ - -73.445053, - 45.488544 - ], - [ - -73.445044, - 45.488377 - ], - [ - -73.445046, - 45.488242 - ], - [ - -73.445073, - 45.488085 - ], - [ - -73.445118, - 45.487932 - ], - [ - -73.445182, - 45.487779 - ], - [ - -73.445261, - 45.48759 - ], - [ - -73.445319, - 45.487496 - ], - [ - -73.445386, - 45.487388 - ], - [ - -73.445526, - 45.487217 - ], - [ - -73.445638, - 45.487095 - ], - [ - -73.445641, - 45.487093 - ], - [ - -73.445764, - 45.486978 - ], - [ - -73.445905, - 45.486857 - ], - [ - -73.446707, - 45.486093 - ], - [ - -73.44682, - 45.485985 - ], - [ - -73.447123, - 45.485706 - ], - [ - -73.447356, - 45.48549 - ], - [ - -73.447536, - 45.485315 - ], - [ - -73.447867, - 45.484995 - ], - [ - -73.448281, - 45.484596 - ], - [ - -73.448552, - 45.484334 - ], - [ - -73.448747, - 45.484168 - ], - [ - -73.448891, - 45.484006 - ], - [ - -73.448947, - 45.483943 - ], - [ - -73.449046, - 45.483754 - ], - [ - -73.449223, - 45.483529 - ], - [ - -73.449352, - 45.483408 - ], - [ - -73.449865, - 45.483087 - ], - [ - -73.449978, - 45.483017 - ], - [ - -73.451449, - 45.482131 - ], - [ - -73.451768, - 45.481938 - ], - [ - -73.45215, - 45.481708 - ], - [ - -73.452851, - 45.48129 - ], - [ - -73.453668, - 45.481781 - ], - [ - -73.454023, - 45.481974 - ], - [ - -73.454266, - 45.482101 - ], - [ - -73.454494, - 45.482204 - ], - [ - -73.454893, - 45.482398 - ], - [ - -73.455361, - 45.482587 - ], - [ - -73.455562, - 45.482663 - ], - [ - -73.455798, - 45.482744 - ], - [ - -73.455981, - 45.4828 - ], - [ - -73.456376, - 45.48292 - ], - [ - -73.456963, - 45.483096 - ], - [ - -73.457696, - 45.483312 - ], - [ - -73.457948, - 45.48338 - ], - [ - -73.45825, - 45.483452 - ], - [ - -73.458477, - 45.483499 - ], - [ - -73.458491, - 45.483501 - ], - [ - -73.458691, - 45.483542 - ], - [ - -73.458995, - 45.483592 - ], - [ - -73.459974, - 45.483704 - ], - [ - -73.46004, - 45.48371 - ], - [ - -73.460519, - 45.483755 - ], - [ - -73.460806, - 45.483781 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.462585, - 45.484043 - ], - [ - -73.463416, - 45.484224 - ], - [ - -73.463639, - 45.484291 - ], - [ - -73.464599, - 45.48462 - ], - [ - -73.465244, - 45.484835 - ], - [ - -73.465443, - 45.484908 - ], - [ - -73.465586, - 45.484937 - ], - [ - -73.465724, - 45.484942 - ], - [ - -73.465848, - 45.484931 - ], - [ - -73.466018, - 45.484884 - ], - [ - -73.466121, - 45.484844 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466778, - 45.484384 - ], - [ - -73.466915, - 45.484307 - ], - [ - -73.466985, - 45.484267 - ], - [ - -73.467378, - 45.484028 - ], - [ - -73.468282, - 45.483401 - ], - [ - -73.468621, - 45.483172 - ], - [ - -73.468655, - 45.483149 - ], - [ - -73.468943, - 45.48296 - ], - [ - -73.469261, - 45.482752 - ], - [ - -73.469293, - 45.482731 - ], - [ - -73.469608, - 45.48252 - ], - [ - -73.469956, - 45.482272 - ], - [ - -73.470266, - 45.482073 - ], - [ - -73.470271, - 45.48207 - ], - [ - -73.470436, - 45.481957 - ], - [ - -73.470609, - 45.481836 - ], - [ - -73.470239, - 45.481512 - ], - [ - -73.470149, - 45.481381 - ], - [ - -73.470101, - 45.481279 - ], - [ - -73.469842, - 45.480733 - ], - [ - -73.469791, - 45.480625 - ], - [ - -73.470068, - 45.480576 - ], - [ - -73.470287, - 45.480532 - ], - [ - -73.470383, - 45.480513 - ], - [ - -73.470657, - 45.480464 - ], - [ - -73.471292, - 45.480347 - ], - [ - -73.471409, - 45.480342 - ], - [ - -73.47151, - 45.480342 - ], - [ - -73.471568, - 45.480347 - ], - [ - -73.471671, - 45.48036 - ], - [ - -73.471804, - 45.480383 - ], - [ - -73.471904, - 45.480419 - ], - [ - -73.472029, - 45.480487 - ], - [ - -73.472084, - 45.480519 - ], - [ - -73.472135, - 45.48055 - ], - [ - -73.472485, - 45.480311 - ], - [ - -73.47284, - 45.480068 - ], - [ - -73.474157, - 45.479169 - ], - [ - -73.47435, - 45.479044 - ], - [ - -73.474461, - 45.478971 - ], - [ - -73.475372, - 45.478413 - ], - [ - -73.475478, - 45.478344 - ], - [ - -73.476018, - 45.477994 - ], - [ - -73.476119, - 45.477927 - ], - [ - -73.476665, - 45.478303 - ], - [ - -73.476929, - 45.478485 - ], - [ - -73.477462, - 45.478904 - ], - [ - -73.477562, - 45.478975 - ], - [ - -73.477667, - 45.479048 - ], - [ - -73.477754, - 45.479101 - ], - [ - -73.477833, - 45.479125 - ], - [ - -73.478515, - 45.47962 - ], - [ - -73.47919, - 45.480101 - ], - [ - -73.47933, - 45.4802 - ], - [ - -73.479422, - 45.480272 - ], - [ - -73.479511, - 45.480326 - ], - [ - -73.479961, - 45.480655 - ], - [ - -73.480428, - 45.480974 - ], - [ - -73.480755, - 45.481226 - ], - [ - -73.481141, - 45.481496 - ], - [ - -73.481438, - 45.481712 - ], - [ - -73.481483, - 45.481744 - ], - [ - -73.48159, - 45.481816 - ], - [ - -73.481822, - 45.481987 - ], - [ - -73.481995, - 45.482108 - ], - [ - -73.482091, - 45.482176 - ], - [ - -73.482188, - 45.482243 - ], - [ - -73.482644, - 45.48257 - ], - [ - -73.482999, - 45.482824 - ], - [ - -73.483337, - 45.483067 - ], - [ - -73.483483, - 45.483175 - ], - [ - -73.483637, - 45.483278 - ], - [ - -73.484263, - 45.483728 - ], - [ - -73.484777, - 45.484096 - ], - [ - -73.485416, - 45.484552 - ], - [ - -73.485807, - 45.484835 - ], - [ - -73.486446, - 45.485294 - ], - [ - -73.486783, - 45.485533 - ], - [ - -73.486855, - 45.485586 - ], - [ - -73.487051, - 45.485731 - ], - [ - -73.487831, - 45.486284 - ], - [ - -73.488568, - 45.486806 - ], - [ - -73.488966, - 45.487079 - ], - [ - -73.489048, - 45.487135 - ], - [ - -73.489411, - 45.487405 - ], - [ - -73.490801, - 45.488399 - ], - [ - -73.491472, - 45.488878 - ] - ] - }, - "id": 274, - "properties": { - "id": "6b86f1db-9a7f-43a0-8d98-449a678666d5", - "data": { - "gtfs": { - "shape_id": "525_2_R" - }, - "segments": [ - { - "distanceMeters": 492, - "travelTimeSeconds": 91 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 781, - "travelTimeSeconds": 146 - }, - { - "distanceMeters": 550, - "travelTimeSeconds": 103 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 53 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5450, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3529.503388743907, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.34, - "travelTimeWithoutDwellTimesSeconds": 1020, - "operatingTimeWithLayoverTimeSeconds": 1200, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1020, - "operatingSpeedWithLayoverMetersPerSecond": 4.54, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.34 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", - "159a0fe9-bedb-40f2-9806-32ab49594978", - "a4f163e1-b90e-4fc3-82f3-f03b3181860d", - "c2e1b4a6-db9f-4050-848a-68486b390a21", - "96e97125-39ff-47a9-b41d-043c4ca5c57e", - "784b0f22-55ff-44d1-a754-ddad81fb81cd", - "c04702f7-b2cf-440e-a6da-0a84aefc3963", - "f32e29fd-d271-4ae6-8083-6d24349dccdf", - "1e48d359-2463-4fbd-b946-c0a530db4bbe", - "dc5fe0eb-b8cc-4186-82d3-6787360ae612", - "0a623471-271f-47f5-9a85-7feece2a3285", - "aa413165-9699-49b6-9dea-fa35bda8f373", - "54bbe390-ff6d-41d9-bd4b-1e4843d66512", - "7faed35b-7709-443d-b0ec-5f09ab018202" - ], - "stops": [], - "line_id": "8a7004df-85bd-47fa-b418-d26df262c182", - "segments": [ - 0, - 31, - 34, - 40, - 48, - 51, - 74, - 93, - 104, - 111, - 125, - 130, - 134, - 139, - 144, - 152, - 165, - 170, - 174 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 274, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.498453, - 45.479238 - ], - [ - -73.498413, - 45.479239 - ], - [ - -73.498188, - 45.479235 - ], - [ - -73.497101, - 45.479217 - ], - [ - -73.496405, - 45.479209 - ], - [ - -73.496272, - 45.479208 - ], - [ - -73.496207, - 45.479208 - ], - [ - -73.496137, - 45.479208 - ], - [ - -73.493367, - 45.479162 - ], - [ - -73.49213, - 45.479149 - ], - [ - -73.491847, - 45.479143 - ], - [ - -73.491713, - 45.47914 - ], - [ - -73.491329, - 45.479132 - ], - [ - -73.487039, - 45.479049 - ], - [ - -73.486789, - 45.47904 - ], - [ - -73.486635, - 45.47904 - ], - [ - -73.486624, - 45.47904 - ], - [ - -73.486526, - 45.47904 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486426, - 45.478914 - ], - [ - -73.486429, - 45.478851 - ], - [ - -73.486457, - 45.478743 - ], - [ - -73.486515, - 45.478644 - ], - [ - -73.486599, - 45.478568 - ], - [ - -73.487334, - 45.478055 - ], - [ - -73.487595, - 45.477883 - ], - [ - -73.487867, - 45.477704 - ], - [ - -73.48804, - 45.477592 - ], - [ - -73.488143, - 45.477497 - ], - [ - -73.488191, - 45.477434 - ], - [ - -73.48823, - 45.477367 - ], - [ - -73.488245, - 45.477317 - ], - [ - -73.488261, - 45.477254 - ], - [ - -73.488221, - 45.47702 - ], - [ - -73.488146, - 45.476629 - ], - [ - -73.488047, - 45.476044 - ], - [ - -73.487982, - 45.47571 - ], - [ - -73.487958, - 45.475585 - ], - [ - -73.487905, - 45.475414 - ], - [ - -73.48781, - 45.475189 - ], - [ - -73.487773, - 45.475113 - ], - [ - -73.487674, - 45.474955 - ], - [ - -73.487579, - 45.47482 - ], - [ - -73.48757, - 45.474809 - ], - [ - -73.487467, - 45.474676 - ], - [ - -73.487385, - 45.474582 - ], - [ - -73.486897, - 45.473997 - ], - [ - -73.486669, - 45.473713 - ], - [ - -73.486214, - 45.473191 - ], - [ - -73.486151, - 45.473119 - ], - [ - -73.486669, - 45.472951 - ], - [ - -73.486787, - 45.472912 - ], - [ - -73.487151, - 45.472794 - ], - [ - -73.488142, - 45.472472 - ], - [ - -73.488555, - 45.472341 - ], - [ - -73.488966, - 45.472197 - ], - [ - -73.489081, - 45.472161 - ], - [ - -73.489198, - 45.472121 - ], - [ - -73.489607, - 45.471977 - ], - [ - -73.489847, - 45.471871 - ], - [ - -73.490057, - 45.471779 - ], - [ - -73.490953, - 45.471352 - ], - [ - -73.49113, - 45.471275 - ], - [ - -73.491309, - 45.471203 - ], - [ - -73.49144, - 45.471158 - ], - [ - -73.491671, - 45.471086 - ], - [ - -73.492077, - 45.471005 - ], - [ - -73.49239, - 45.47096 - ], - [ - -73.492603, - 45.470947 - ], - [ - -73.492828, - 45.470933 - ], - [ - -73.493058, - 45.470938 - ], - [ - -73.494082, - 45.470974 - ], - [ - -73.49484, - 45.471001 - ], - [ - -73.494847, - 45.470884 - ], - [ - -73.494862, - 45.47056 - ], - [ - -73.494801, - 45.470439 - ], - [ - -73.494791, - 45.470417 - ], - [ - -73.494611, - 45.470061 - ], - [ - -73.494154, - 45.469237 - ], - [ - -73.494075, - 45.469188 - ], - [ - -73.49395, - 45.46917 - ], - [ - -73.492836, - 45.469118 - ], - [ - -73.4927, - 45.469111 - ], - [ - -73.492434, - 45.469107 - ], - [ - -73.489038, - 45.468993 - ], - [ - -73.488788, - 45.468985 - ], - [ - -73.487892, - 45.468935 - ], - [ - -73.486913, - 45.468899 - ], - [ - -73.486742, - 45.468895 - ], - [ - -73.486598, - 45.468913 - ], - [ - -73.486363, - 45.468976 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.485272, - 45.468957 - ], - [ - -73.485183, - 45.468899 - ], - [ - -73.485068, - 45.468858 - ], - [ - -73.484983, - 45.468836 - ], - [ - -73.484852, - 45.468827 - ], - [ - -73.484135, - 45.468799 - ], - [ - -73.484035, - 45.468795 - ], - [ - -73.482517, - 45.468777 - ], - [ - -73.481592, - 45.468898 - ], - [ - -73.4808, - 45.468946 - ], - [ - -73.480705, - 45.468952 - ], - [ - -73.479733, - 45.468916 - ], - [ - -73.478795, - 45.46888 - ], - [ - -73.477962, - 45.468846 - ], - [ - -73.477791, - 45.468839 - ], - [ - -73.475537, - 45.468744 - ], - [ - -73.475149, - 45.468731 - ], - [ - -73.474822, - 45.468708 - ], - [ - -73.474819, - 45.468708 - ], - [ - -73.47474, - 45.468663 - ], - [ - -73.474727, - 45.468661 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.473179, - 45.468285 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.4714, - 45.468097 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469574, - 45.467137 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.468556, - 45.467093 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.46871, - 45.466863 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466756 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.466922, - 45.466853 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465562, - 45.468208 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.463779, - 45.468251 - ], - [ - -73.463257, - 45.46862 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463016, - 45.468741 - ], - [ - -73.462763, - 45.468943 - ], - [ - -73.462689, - 45.46902 - ], - [ - -73.462679, - 45.469031 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.460787, - 45.470344 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.45843, - 45.471953 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.456046, - 45.473583 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.453674, - 45.475208 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.451328, - 45.476814 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.449276, - 45.478219 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448868, - 45.478494 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.449135, - 45.47883 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.449044, - 45.479268 - ], - [ - -73.448771, - 45.479431 - ], - [ - -73.448749, - 45.479445 - ], - [ - -73.446633, - 45.480708 - ], - [ - -73.446581, - 45.480738 - ], - [ - -73.445624, - 45.481309 - ], - [ - -73.443807, - 45.482383 - ], - [ - -73.443745, - 45.48242 - ], - [ - -73.443018, - 45.482865 - ], - [ - -73.440997, - 45.484058 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.441188, - 45.484531 - ], - [ - -73.441434, - 45.484724 - ], - [ - -73.441638, - 45.484884 - ], - [ - -73.442273, - 45.485404 - ], - [ - -73.44238, - 45.485492 - ], - [ - -73.442979, - 45.48598 - ], - [ - -73.443236, - 45.48619 - ], - [ - -73.443584, - 45.486491 - ], - [ - -73.443685, - 45.486573 - ], - [ - -73.443939, - 45.48678 - ], - [ - -73.444066, - 45.486883 - ], - [ - -73.444405, - 45.487149 - ], - [ - -73.44464, - 45.487266 - ], - [ - -73.444883, - 45.487369 - ], - [ - -73.445062, - 45.487428 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 275, - "properties": { - "id": "38eaaa20-8768-40bd-961b-0669f59b772c", - "data": { - "gtfs": { - "shape_id": "526_1_A" - }, - "segments": [ - { - "distanceMeters": 160, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 356, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 54, - "travelTimeSeconds": 7 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 728, - "travelTimeSeconds": 92 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 422, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 762, - "travelTimeSeconds": 125 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 74, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 606, - "travelTimeSeconds": 100 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9516, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4257.458195147626, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.89, - "travelTimeWithoutDwellTimesSeconds": 1380, - "operatingTimeWithLayoverTimeSeconds": 1560, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1380, - "operatingSpeedWithLayoverMetersPerSecond": 6.1, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.89 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", - "6b54424b-6f85-4448-8e7d-a05da4ef5b95", - "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", - "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", - "6e4c328c-6fba-4e81-b589-59318e11a37a", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "66a0749c-2a5b-458d-b059-307f555cb93a", - "d83daa69-bf92-4b93-8173-1c0fd22cbec0", - "3acbe4f4-b4c0-469f-af21-f4af3c6e2b53", - "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "79c669a1-9060-4e5d-b272-f107884dee00", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "0efa9d7f-9938-46ee-97f6-a92cc9c04c7d", - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "907f8610-452b-440d-849b-c803b07dedc1", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "42f94a5d-c370-4fd6-9c9f-6767ef259624", - "e0286f28-f802-47e9-8fd2-0338e2927a2f", - "46d1170e-039a-4a64-a065-b60146bf9006", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "e72d0d41-60dd-429c-9fc0-986190945d76", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "915f67f2-32a4-431c-af8d-3749731ceb03", - "segments": [ - 0, - 4, - 10, - 16, - 25, - 36, - 43, - 48, - 50, - 59, - 81, - 84, - 97, - 101, - 105, - 112, - 120, - 127, - 134, - 142, - 175, - 191, - 194, - 196, - 198, - 200, - 202, - 204, - 212, - 213, - 216, - 219, - 222, - 225, - 231 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 275, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445508, - 45.489489 - ], - [ - -73.4453, - 45.489165 - ], - [ - -73.445238, - 45.489052 - ], - [ - -73.445212, - 45.488985 - ], - [ - -73.445181, - 45.488904 - ], - [ - -73.445074, - 45.488728 - ], - [ - -73.445053, - 45.488544 - ], - [ - -73.445044, - 45.488377 - ], - [ - -73.445046, - 45.488242 - ], - [ - -73.445073, - 45.488085 - ], - [ - -73.445118, - 45.487932 - ], - [ - -73.445182, - 45.487779 - ], - [ - -73.445261, - 45.48759 - ], - [ - -73.445319, - 45.487496 - ], - [ - -73.445386, - 45.487388 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445129, - 45.48732 - ], - [ - -73.444962, - 45.487262 - ], - [ - -73.444731, - 45.487167 - ], - [ - -73.444565, - 45.487086 - ], - [ - -73.444194, - 45.486807 - ], - [ - -73.443808, - 45.486496 - ], - [ - -73.443706, - 45.486415 - ], - [ - -73.44336, - 45.486118 - ], - [ - -73.442634, - 45.485521 - ], - [ - -73.442528, - 45.485434 - ], - [ - -73.441754, - 45.484812 - ], - [ - -73.440979, - 45.484197 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.441491, - 45.483767 - ], - [ - -73.443018, - 45.482865 - ], - [ - -73.44365, - 45.482478 - ], - [ - -73.443745, - 45.48242 - ], - [ - -73.445624, - 45.481309 - ], - [ - -73.446436, - 45.480825 - ], - [ - -73.446581, - 45.480738 - ], - [ - -73.448474, - 45.479609 - ], - [ - -73.448771, - 45.479431 - ], - [ - -73.449044, - 45.479268 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.44954, - 45.478958 - ], - [ - -73.449587, - 45.478931 - ], - [ - -73.449459, - 45.478843 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.449373, - 45.478153 - ], - [ - -73.451105, - 45.476967 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.453423, - 45.47538 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.455841, - 45.473724 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.458215, - 45.4721 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.460499, - 45.470541 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.462593, - 45.469101 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.465198, - 45.468285 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.468456, - 45.466855 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.46679 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469327, - 45.468092 - ], - [ - -73.469492, - 45.4681 - ], - [ - -73.469913, - 45.468124 - ], - [ - -73.470299, - 45.468145 - ], - [ - -73.471041, - 45.46818 - ], - [ - -73.471238, - 45.46819 - ], - [ - -73.471526, - 45.468208 - ], - [ - -73.472194, - 45.468244 - ], - [ - -73.472407, - 45.468254 - ], - [ - -73.472597, - 45.468262 - ], - [ - -73.472728, - 45.468276 - ], - [ - -73.472834, - 45.468294 - ], - [ - -73.472877, - 45.468307 - ], - [ - -73.473025, - 45.468348 - ], - [ - -73.473214, - 45.468424 - ], - [ - -73.473651, - 45.468596 - ], - [ - -73.473673, - 45.468604 - ], - [ - -73.473905, - 45.468649 - ], - [ - -73.474077, - 45.468676 - ], - [ - -73.474259, - 45.46869 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474718, - 45.468735 - ], - [ - -73.474819, - 45.468708 - ], - [ - -73.474822, - 45.468708 - ], - [ - -73.475149, - 45.468731 - ], - [ - -73.475362, - 45.468738 - ], - [ - -73.475537, - 45.468744 - ], - [ - -73.477739, - 45.468837 - ], - [ - -73.477791, - 45.468839 - ], - [ - -73.478795, - 45.46888 - ], - [ - -73.479733, - 45.468916 - ], - [ - -73.480564, - 45.468947 - ], - [ - -73.480705, - 45.468952 - ], - [ - -73.481592, - 45.468898 - ], - [ - -73.482517, - 45.468777 - ], - [ - -73.483886, - 45.468794 - ], - [ - -73.484035, - 45.468795 - ], - [ - -73.484852, - 45.468827 - ], - [ - -73.484983, - 45.468836 - ], - [ - -73.485068, - 45.468858 - ], - [ - -73.485183, - 45.468899 - ], - [ - -73.485272, - 45.468957 - ], - [ - -73.485485, - 45.469208 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.486082, - 45.469096 - ], - [ - -73.486363, - 45.468976 - ], - [ - -73.486598, - 45.468913 - ], - [ - -73.486742, - 45.468895 - ], - [ - -73.486913, - 45.468899 - ], - [ - -73.487892, - 45.468935 - ], - [ - -73.488648, - 45.468977 - ], - [ - -73.488788, - 45.468985 - ], - [ - -73.49228, - 45.469101 - ], - [ - -73.492434, - 45.469107 - ], - [ - -73.4927, - 45.469111 - ], - [ - -73.49395, - 45.46917 - ], - [ - -73.494075, - 45.469188 - ], - [ - -73.494154, - 45.469237 - ], - [ - -73.494554, - 45.469958 - ], - [ - -73.494611, - 45.470061 - ], - [ - -73.494791, - 45.470417 - ], - [ - -73.494857, - 45.47055 - ], - [ - -73.494862, - 45.47056 - ], - [ - -73.494851, - 45.470809 - ], - [ - -73.494847, - 45.470884 - ], - [ - -73.494088, - 45.470857 - ], - [ - -73.493065, - 45.470821 - ], - [ - -73.492825, - 45.470816 - ], - [ - -73.492588, - 45.470825 - ], - [ - -73.492364, - 45.470843 - ], - [ - -73.492038, - 45.470888 - ], - [ - -73.491625, - 45.470969 - ], - [ - -73.491149, - 45.471131 - ], - [ - -73.491044, - 45.471167 - ], - [ - -73.490858, - 45.471248 - ], - [ - -73.490204, - 45.471562 - ], - [ - -73.490094, - 45.471615 - ], - [ - -73.489969, - 45.471675 - ], - [ - -73.489522, - 45.471873 - ], - [ - -73.489116, - 45.472013 - ], - [ - -73.48901, - 45.472049 - ], - [ - -73.488898, - 45.472089 - ], - [ - -73.488483, - 45.472229 - ], - [ - -73.48807, - 45.472359 - ], - [ - -73.487058, - 45.472692 - ], - [ - -73.486715, - 45.472804 - ], - [ - -73.48607, - 45.47302 - ], - [ - -73.485914, - 45.473065 - ], - [ - -73.485995, - 45.473164 - ], - [ - -73.486258, - 45.473478 - ], - [ - -73.486497, - 45.473763 - ], - [ - -73.486758, - 45.474064 - ], - [ - -73.486895, - 45.474227 - ], - [ - -73.487244, - 45.47464 - ], - [ - -73.487321, - 45.474735 - ], - [ - -73.487428, - 45.474874 - ], - [ - -73.487615, - 45.475158 - ], - [ - -73.487741, - 45.475441 - ], - [ - -73.487784, - 45.475581 - ], - [ - -73.487792, - 45.475608 - ], - [ - -73.487881, - 45.476058 - ], - [ - -73.487976, - 45.47662 - ], - [ - -73.488008, - 45.476755 - ], - [ - -73.488063, - 45.477092 - ], - [ - -73.488079, - 45.477241 - ], - [ - -73.488077, - 45.477259 - ], - [ - -73.488079, - 45.477295 - ], - [ - -73.488061, - 45.477358 - ], - [ - -73.488022, - 45.477403 - ], - [ - -73.48794, - 45.477475 - ], - [ - -73.487785, - 45.477583 - ], - [ - -73.487362, - 45.477861 - ], - [ - -73.487212, - 45.477961 - ], - [ - -73.486606, - 45.478379 - ], - [ - -73.486479, - 45.478461 - ], - [ - -73.486467, - 45.478469 - ], - [ - -73.486363, - 45.478568 - ], - [ - -73.486284, - 45.478752 - ], - [ - -73.48627, - 45.478815 - ], - [ - -73.486253, - 45.478887 - ], - [ - -73.48625, - 45.478912 - ], - [ - -73.486246, - 45.47895 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486526, - 45.47904 - ], - [ - -73.486789, - 45.47904 - ], - [ - -73.487039, - 45.479049 - ], - [ - -73.491329, - 45.479132 - ], - [ - -73.491477, - 45.479135 - ], - [ - -73.491713, - 45.47914 - ], - [ - -73.49213, - 45.479149 - ], - [ - -73.493367, - 45.479162 - ], - [ - -73.495779, - 45.479202 - ], - [ - -73.496137, - 45.479208 - ], - [ - -73.496207, - 45.479208 - ], - [ - -73.496272, - 45.479208 - ], - [ - -73.497101, - 45.479217 - ], - [ - -73.497956, - 45.479231 - ] - ] - }, - "id": 276, - "properties": { - "id": "20146e09-d686-45fc-8a7e-f8f450f47f56", - "data": { - "gtfs": { - "shape_id": "526_2_R" - }, - "segments": [ - { - "distanceMeters": 756, - "travelTimeSeconds": 128 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 487, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 578, - "travelTimeSeconds": 98 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 60, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 402, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 96, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 479, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 29 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9201, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4257.458195147626, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.9, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 5.29, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.9 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "46d1170e-039a-4a64-a065-b60146bf9006", - "e0286f28-f802-47e9-8fd2-0338e2927a2f", - "42f94a5d-c370-4fd6-9c9f-6767ef259624", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "907f8610-452b-440d-849b-c803b07dedc1", - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "0296a406-079c-41f9-8c5b-0723a0b5f294", - "79c669a1-9060-4e5d-b272-f107884dee00", - "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "3e9388da-8f48-48c6-b6c0-5461e27eb26a", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "d83daa69-bf92-4b93-8173-1c0fd22cbec0", - "66a0749c-2a5b-458d-b059-307f555cb93a", - "c5effd0a-a9b0-4cfe-8176-06c99313f58b", - "e7a825d7-e677-4fe7-b1ef-b6db556d3c70", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "f2aa277d-e5f8-429d-bc46-2a1c844da636", - "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", - "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", - "fc92d5a1-fe31-4274-9837-2686b4525030", - "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", - "6b54424b-6f85-4448-8e7d-a05da4ef5b95", - "36f2b716-8be1-4fa9-bb54-910b9cc8cda8" - ], - "stops": [], - "line_id": "915f67f2-32a4-431c-af8d-3749731ceb03", - "segments": [ - 0, - 38, - 41, - 45, - 48, - 50, - 58, - 59, - 61, - 63, - 65, - 67, - 69, - 82, - 102, - 118, - 122, - 129, - 140, - 142, - 146, - 150, - 157, - 159, - 165, - 167, - 173, - 178, - 191, - 199, - 207, - 213, - 226, - 229, - 243, - 247 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 276, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.492023, - 45.489267 - ], - [ - -73.491721, - 45.489052 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.491557, - 45.488939 - ], - [ - -73.490801, - 45.488399 - ], - [ - -73.489411, - 45.487405 - ], - [ - -73.489373, - 45.487377 - ], - [ - -73.489048, - 45.487135 - ], - [ - -73.488568, - 45.486806 - ], - [ - -73.487831, - 45.486284 - ], - [ - -73.487157, - 45.485806 - ], - [ - -73.487051, - 45.485731 - ], - [ - -73.486783, - 45.485533 - ], - [ - -73.486446, - 45.485294 - ], - [ - -73.485807, - 45.484835 - ], - [ - -73.485416, - 45.484552 - ], - [ - -73.485019, - 45.484269 - ], - [ - -73.484263, - 45.483728 - ], - [ - -73.483637, - 45.483278 - ], - [ - -73.483483, - 45.483175 - ], - [ - -73.483337, - 45.483067 - ], - [ - -73.482999, - 45.482824 - ], - [ - -73.482644, - 45.48257 - ], - [ - -73.482188, - 45.482243 - ], - [ - -73.482091, - 45.482176 - ], - [ - -73.481995, - 45.482108 - ], - [ - -73.481822, - 45.481987 - ], - [ - -73.481717, - 45.481909 - ], - [ - -73.48159, - 45.481816 - ], - [ - -73.481567, - 45.481829 - ], - [ - -73.481508, - 45.481869 - ], - [ - -73.480765, - 45.482378 - ], - [ - -73.480475, - 45.482571 - ], - [ - -73.479989, - 45.482922 - ], - [ - -73.479988, - 45.482923 - ], - [ - -73.479836, - 45.48303 - ], - [ - -73.479534, - 45.483242 - ], - [ - -73.479322, - 45.483399 - ], - [ - -73.479252, - 45.48344 - ], - [ - -73.477736, - 45.484481 - ], - [ - -73.477668, - 45.484528 - ], - [ - -73.477571, - 45.484591 - ], - [ - -73.476994, - 45.484996 - ], - [ - -73.476286, - 45.485495 - ], - [ - -73.476102, - 45.485612 - ], - [ - -73.475956, - 45.48572 - ], - [ - -73.47561, - 45.485464 - ], - [ - -73.475481, - 45.485369 - ], - [ - -73.475365, - 45.485286 - ], - [ - -73.475135, - 45.485121 - ], - [ - -73.474818, - 45.484892 - ], - [ - -73.474638, - 45.484761 - ], - [ - -73.474566, - 45.484707 - ], - [ - -73.473747, - 45.484113 - ], - [ - -73.473052, - 45.483612 - ], - [ - -73.472948, - 45.483537 - ], - [ - -73.472033, - 45.482872 - ], - [ - -73.471834, - 45.482727 - ], - [ - -73.47134, - 45.482367 - ], - [ - -73.470901, - 45.482034 - ], - [ - -73.470805, - 45.481962 - ], - [ - -73.470742, - 45.481922 - ], - [ - -73.470609, - 45.481836 - ], - [ - -73.470436, - 45.481957 - ], - [ - -73.470271, - 45.48207 - ], - [ - -73.469956, - 45.482272 - ], - [ - -73.469608, - 45.48252 - ], - [ - -73.469293, - 45.482731 - ], - [ - -73.469261, - 45.482752 - ], - [ - -73.468943, - 45.48296 - ], - [ - -73.468655, - 45.483149 - ], - [ - -73.468621, - 45.483172 - ], - [ - -73.468282, - 45.483401 - ], - [ - -73.467378, - 45.484028 - ], - [ - -73.466985, - 45.484267 - ], - [ - -73.466778, - 45.484384 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466022, - 45.484682 - ], - [ - -73.465888, - 45.484747 - ], - [ - -73.465767, - 45.484792 - ], - [ - -73.465702, - 45.484807 - ], - [ - -73.465661, - 45.484807 - ], - [ - -73.465627, - 45.484802 - ], - [ - -73.4655, - 45.484766 - ], - [ - -73.464965, - 45.484574 - ], - [ - -73.464559, - 45.484417 - ], - [ - -73.464508, - 45.484399 - ], - [ - -73.464185, - 45.484291 - ], - [ - -73.463703, - 45.484155 - ], - [ - -73.463657, - 45.484142 - ], - [ - -73.46319, - 45.484029 - ], - [ - -73.462672, - 45.483908 - ], - [ - -73.462287, - 45.483831 - ], - [ - -73.462032, - 45.483791 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.46135, - 45.4837 - ], - [ - -73.460838, - 45.483637 - ], - [ - -73.460177, - 45.48358 - ], - [ - -73.459999, - 45.483565 - ], - [ - -73.459497, - 45.483511 - ], - [ - -73.459033, - 45.483457 - ], - [ - -73.458739, - 45.483407 - ], - [ - -73.458547, - 45.483371 - ], - [ - -73.458333, - 45.483321 - ], - [ - -73.458016, - 45.483245 - ], - [ - -73.45777, - 45.483182 - ], - [ - -73.457493, - 45.483102 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45645, - 45.482799 - ], - [ - -73.455886, - 45.482623 - ], - [ - -73.455654, - 45.482542 - ], - [ - -73.455462, - 45.482465 - ], - [ - -73.455276, - 45.482384 - ], - [ - -73.455275, - 45.482384 - ], - [ - -73.455009, - 45.482272 - ], - [ - -73.454605, - 45.482087 - ], - [ - -73.454381, - 45.481984 - ], - [ - -73.454145, - 45.481862 - ], - [ - -73.453796, - 45.481673 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452379, - 45.481446 - ], - [ - -73.452062, - 45.481636 - ], - [ - -73.45135, - 45.482063 - ], - [ - -73.451247, - 45.482124 - ], - [ - -73.450093, - 45.48281 - ], - [ - -73.449882, - 45.482936 - ], - [ - -73.449245, - 45.483336 - ], - [ - -73.449101, - 45.483471 - ], - [ - -73.448914, - 45.483713 - ], - [ - -73.448817, - 45.483898 - ], - [ - -73.448629, - 45.484109 - ], - [ - -73.44844, - 45.484271 - ], - [ - -73.44822, - 45.484484 - ], - [ - -73.44775, - 45.484937 - ], - [ - -73.447415, - 45.485256 - ], - [ - -73.447237, - 45.485427 - ], - [ - -73.447005, - 45.485643 - ], - [ - -73.446786, - 45.485852 - ], - [ - -73.446708, - 45.485926 - ], - [ - -73.445795, - 45.486794 - ], - [ - -73.445654, - 45.486915 - ], - [ - -73.445524, - 45.487041 - ], - [ - -73.445408, - 45.487167 - ], - [ - -73.445358, - 45.487233 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 277, - "properties": { - "id": "2b464b47-7b96-4fac-bf50-3837ddfbe38a", - "data": { - "gtfs": { - "shape_id": "530_1_A" - }, - "segments": [ - { - "distanceMeters": 295, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 368, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 996, - "travelTimeSeconds": 155 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 405, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 509, - "travelTimeSeconds": 80 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5400, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3565.80614449939, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.43, - "travelTimeWithoutDwellTimesSeconds": 840, - "operatingTimeWithLayoverTimeSeconds": 1020, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 840, - "operatingSpeedWithLayoverMetersPerSecond": 5.29, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.43 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "196681e4-c9e5-4a79-a3b1-ce225227e0aa", - "54bbe390-ff6d-41d9-bd4b-1e4843d66512", - "aa413165-9699-49b6-9dea-fa35bda8f373", - "0a623471-271f-47f5-9a85-7feece2a3285", - "dc5fe0eb-b8cc-4186-82d3-6787360ae612", - "a3997372-5a39-4bfb-8751-2c107b865fce", - "2d362ed7-6d89-4629-988c-787207ccdc69", - "3c04c568-5ef2-4b47-8d34-b0d175358d60", - "c229b499-645e-4877-8f57-0fc6de2a8d53", - "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", - "a4f163e1-b90e-4fc3-82f3-f03b3181860d", - "491099bb-9493-4888-bd4e-20bd2140830a", - "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", - "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "d9b94443-0b59-40db-aecb-0acb5ea7976c", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "88765b65-7e98-423c-958b-942e0422d77e", - "segments": [ - 0, - 6, - 10, - 16, - 27, - 34, - 39, - 46, - 51, - 54, - 59, - 98, - 107, - 114, - 126, - 127, - 135, - 140, - 146 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 277, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445508, - 45.489489 - ], - [ - -73.4453, - 45.489165 - ], - [ - -73.445238, - 45.489052 - ], - [ - -73.445212, - 45.488985 - ], - [ - -73.445181, - 45.488904 - ], - [ - -73.445074, - 45.488728 - ], - [ - -73.445053, - 45.488544 - ], - [ - -73.445044, - 45.488377 - ], - [ - -73.445046, - 45.488242 - ], - [ - -73.445073, - 45.488085 - ], - [ - -73.445118, - 45.487932 - ], - [ - -73.445182, - 45.487779 - ], - [ - -73.445261, - 45.48759 - ], - [ - -73.445319, - 45.487496 - ], - [ - -73.445386, - 45.487388 - ], - [ - -73.445526, - 45.487217 - ], - [ - -73.445638, - 45.487095 - ], - [ - -73.445641, - 45.487093 - ], - [ - -73.445764, - 45.486978 - ], - [ - -73.445905, - 45.486857 - ], - [ - -73.446511, - 45.486279 - ], - [ - -73.446707, - 45.486092 - ], - [ - -73.44682, - 45.485985 - ], - [ - -73.447123, - 45.485706 - ], - [ - -73.447356, - 45.48549 - ], - [ - -73.447536, - 45.485315 - ], - [ - -73.447867, - 45.484995 - ], - [ - -73.448281, - 45.484596 - ], - [ - -73.448552, - 45.484334 - ], - [ - -73.448747, - 45.484168 - ], - [ - -73.448891, - 45.484006 - ], - [ - -73.448947, - 45.483943 - ], - [ - -73.449046, - 45.483754 - ], - [ - -73.449223, - 45.483529 - ], - [ - -73.449352, - 45.483408 - ], - [ - -73.449866, - 45.483087 - ], - [ - -73.449978, - 45.483017 - ], - [ - -73.451449, - 45.482131 - ], - [ - -73.451769, - 45.481938 - ], - [ - -73.45215, - 45.481708 - ], - [ - -73.452851, - 45.48129 - ], - [ - -73.453668, - 45.481781 - ], - [ - -73.454023, - 45.481974 - ], - [ - -73.454266, - 45.482101 - ], - [ - -73.454494, - 45.482204 - ], - [ - -73.454893, - 45.482398 - ], - [ - -73.455361, - 45.482587 - ], - [ - -73.455562, - 45.482663 - ], - [ - -73.455798, - 45.482744 - ], - [ - -73.456376, - 45.48292 - ], - [ - -73.456963, - 45.483096 - ], - [ - -73.457696, - 45.483312 - ], - [ - -73.457948, - 45.48338 - ], - [ - -73.45825, - 45.483452 - ], - [ - -73.458477, - 45.483499 - ], - [ - -73.458491, - 45.483501 - ], - [ - -73.458691, - 45.483542 - ], - [ - -73.458995, - 45.483592 - ], - [ - -73.459974, - 45.483704 - ], - [ - -73.46004, - 45.48371 - ], - [ - -73.460521, - 45.483755 - ], - [ - -73.460806, - 45.483781 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.462585, - 45.484043 - ], - [ - -73.463416, - 45.484224 - ], - [ - -73.463639, - 45.484291 - ], - [ - -73.464599, - 45.48462 - ], - [ - -73.465244, - 45.484835 - ], - [ - -73.465443, - 45.484908 - ], - [ - -73.465586, - 45.484937 - ], - [ - -73.465724, - 45.484942 - ], - [ - -73.465848, - 45.484931 - ], - [ - -73.466018, - 45.484884 - ], - [ - -73.466121, - 45.484844 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466778, - 45.484384 - ], - [ - -73.466917, - 45.484305 - ], - [ - -73.466985, - 45.484267 - ], - [ - -73.467378, - 45.484028 - ], - [ - -73.468282, - 45.483401 - ], - [ - -73.468621, - 45.483172 - ], - [ - -73.468655, - 45.483149 - ], - [ - -73.468943, - 45.48296 - ], - [ - -73.469261, - 45.482752 - ], - [ - -73.469293, - 45.482731 - ], - [ - -73.469608, - 45.48252 - ], - [ - -73.469956, - 45.482272 - ], - [ - -73.470268, - 45.482072 - ], - [ - -73.470271, - 45.48207 - ], - [ - -73.470416, - 45.481971 - ], - [ - -73.470436, - 45.481957 - ], - [ - -73.470609, - 45.481836 - ], - [ - -73.470742, - 45.481922 - ], - [ - -73.470805, - 45.481962 - ], - [ - -73.47134, - 45.482367 - ], - [ - -73.471834, - 45.482727 - ], - [ - -73.472033, - 45.482872 - ], - [ - -73.472837, - 45.483457 - ], - [ - -73.472948, - 45.483537 - ], - [ - -73.473747, - 45.484113 - ], - [ - -73.474469, - 45.484637 - ], - [ - -73.474566, - 45.484707 - ], - [ - -73.474818, - 45.484892 - ], - [ - -73.475135, - 45.485121 - ], - [ - -73.475481, - 45.485369 - ], - [ - -73.475662, - 45.485503 - ], - [ - -73.475956, - 45.48572 - ], - [ - -73.476102, - 45.485612 - ], - [ - -73.47615, - 45.485582 - ], - [ - -73.476286, - 45.485495 - ], - [ - -73.476994, - 45.484996 - ], - [ - -73.477496, - 45.484644 - ], - [ - -73.477571, - 45.484591 - ], - [ - -73.477668, - 45.484528 - ], - [ - -73.479252, - 45.48344 - ], - [ - -73.479322, - 45.483399 - ], - [ - -73.479534, - 45.483242 - ], - [ - -73.479761, - 45.483083 - ], - [ - -73.479836, - 45.48303 - ], - [ - -73.479989, - 45.482922 - ], - [ - -73.480475, - 45.482571 - ], - [ - -73.480765, - 45.482378 - ], - [ - -73.481508, - 45.481869 - ], - [ - -73.481567, - 45.481829 - ], - [ - -73.48159, - 45.481816 - ], - [ - -73.481822, - 45.481987 - ], - [ - -73.481995, - 45.482108 - ], - [ - -73.482091, - 45.482176 - ], - [ - -73.482188, - 45.482243 - ], - [ - -73.482644, - 45.48257 - ], - [ - -73.482999, - 45.482824 - ], - [ - -73.483337, - 45.483067 - ], - [ - -73.483483, - 45.483175 - ], - [ - -73.483637, - 45.483278 - ], - [ - -73.484263, - 45.483728 - ], - [ - -73.484786, - 45.484102 - ], - [ - -73.485416, - 45.484552 - ], - [ - -73.485807, - 45.484835 - ], - [ - -73.486446, - 45.485294 - ], - [ - -73.486783, - 45.485533 - ], - [ - -73.486855, - 45.485586 - ], - [ - -73.487051, - 45.485731 - ], - [ - -73.487831, - 45.486284 - ], - [ - -73.488568, - 45.486806 - ], - [ - -73.488966, - 45.487078 - ], - [ - -73.489048, - 45.487135 - ], - [ - -73.489411, - 45.487405 - ], - [ - -73.490801, - 45.488399 - ], - [ - -73.491472, - 45.488878 - ] - ] - }, - "id": 278, - "properties": { - "id": "0c92f790-0771-4fe9-a182-1e7f8c7e5a96", - "data": { - "gtfs": { - "shape_id": "530_2_R" - }, - "segments": [ - { - "distanceMeters": 492, - "travelTimeSeconds": 89 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 781, - "travelTimeSeconds": 142 - }, - { - "distanceMeters": 550, - "travelTimeSeconds": 100 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 557, - "travelTimeSeconds": 101 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 51 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5290, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3529.503388743907, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.51, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 4.64, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.51 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", - "159a0fe9-bedb-40f2-9806-32ab49594978", - "a4f163e1-b90e-4fc3-82f3-f03b3181860d", - "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", - "c229b499-645e-4877-8f57-0fc6de2a8d53", - "3c04c568-5ef2-4b47-8d34-b0d175358d60", - "2d362ed7-6d89-4629-988c-787207ccdc69", - "a3997372-5a39-4bfb-8751-2c107b865fce", - "0a623471-271f-47f5-9a85-7feece2a3285", - "aa413165-9699-49b6-9dea-fa35bda8f373", - "54bbe390-ff6d-41d9-bd4b-1e4843d66512", - "7faed35b-7709-443d-b0ec-5f09ab018202" - ], - "stops": [], - "line_id": "88765b65-7e98-423c-958b-942e0422d77e", - "segments": [ - 0, - 31, - 35, - 41, - 49, - 52, - 74, - 93, - 104, - 114, - 117, - 122, - 128, - 134, - 152, - 157, - 161 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 278, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.420993, - 45.457595 - ], - [ - -73.420984, - 45.457466 - ], - [ - -73.420984, - 45.457462 - ], - [ - -73.420768, - 45.456709 - ], - [ - -73.420731, - 45.456406 - ], - [ - -73.420728, - 45.456281 - ], - [ - -73.420766, - 45.456105 - ], - [ - -73.420872, - 45.455877 - ], - [ - -73.421054, - 45.45561 - ], - [ - -73.421295, - 45.455422 - ], - [ - -73.422321, - 45.454723 - ], - [ - -73.422712, - 45.454457 - ], - [ - -73.422823, - 45.454382 - ], - [ - -73.425, - 45.452904 - ], - [ - -73.425235, - 45.452745 - ], - [ - -73.42721, - 45.451405 - ], - [ - -73.427291, - 45.45135 - ], - [ - -73.42733, - 45.451323 - ], - [ - -73.427666, - 45.451103 - ], - [ - -73.42768, - 45.451094 - ], - [ - -73.428037, - 45.450878 - ], - [ - -73.430991, - 45.449139 - ], - [ - -73.43115, - 45.449049 - ], - [ - -73.431275, - 45.448979 - ], - [ - -73.432931, - 45.450108 - ], - [ - -73.433653, - 45.450548 - ], - [ - -73.433857, - 45.450613 - ], - [ - -73.433938, - 45.450638 - ], - [ - -73.434086, - 45.450685 - ], - [ - -73.434372, - 45.450754 - ], - [ - -73.434532, - 45.45078 - ], - [ - -73.434811, - 45.450806 - ], - [ - -73.435216, - 45.450834 - ], - [ - -73.43546, - 45.450862 - ], - [ - -73.435648, - 45.450893 - ], - [ - -73.435818, - 45.450928 - ], - [ - -73.435935, - 45.450963 - ], - [ - -73.436195, - 45.451061 - ], - [ - -73.436419, - 45.451155 - ], - [ - -73.436602, - 45.451264 - ], - [ - -73.436666, - 45.451306 - ], - [ - -73.436758, - 45.451367 - ], - [ - -73.436938, - 45.4515 - ], - [ - -73.437141, - 45.451649 - ], - [ - -73.43763, - 45.452001 - ], - [ - -73.438291, - 45.452478 - ], - [ - -73.438425, - 45.452575 - ], - [ - -73.438899, - 45.452918 - ], - [ - -73.439474, - 45.45333 - ], - [ - -73.439588, - 45.453411 - ], - [ - -73.439813, - 45.45357 - ], - [ - -73.439861, - 45.453603 - ], - [ - -73.439909, - 45.45364 - ], - [ - -73.439987, - 45.4537 - ], - [ - -73.440478, - 45.454051 - ], - [ - -73.44074, - 45.454241 - ], - [ - -73.44099, - 45.454406 - ], - [ - -73.441259, - 45.45456 - ], - [ - -73.441361, - 45.454611 - ], - [ - -73.441496, - 45.454678 - ], - [ - -73.441752, - 45.454794 - ], - [ - -73.441927, - 45.454861 - ], - [ - -73.442069, - 45.454915 - ], - [ - -73.442434, - 45.455032 - ], - [ - -73.442619, - 45.455085 - ], - [ - -73.442851, - 45.45514 - ], - [ - -73.442711, - 45.455401 - ], - [ - -73.442686, - 45.455439 - ], - [ - -73.442537, - 45.455671 - ], - [ - -73.442076, - 45.456224 - ], - [ - -73.441851, - 45.45649 - ], - [ - -73.441716, - 45.456616 - ], - [ - -73.441613, - 45.456707 - ], - [ - -73.441548, - 45.456764 - ], - [ - -73.441473, - 45.456822 - ], - [ - -73.44081, - 45.457277 - ], - [ - -73.440142, - 45.457735 - ], - [ - -73.439946, - 45.457887 - ], - [ - -73.439859, - 45.457955 - ], - [ - -73.439614, - 45.458149 - ], - [ - -73.43929, - 45.458432 - ], - [ - -73.438818, - 45.459021 - ], - [ - -73.438626, - 45.459273 - ], - [ - -73.438614, - 45.459291 - ], - [ - -73.438414, - 45.459492 - ], - [ - -73.437866, - 45.460042 - ], - [ - -73.437769, - 45.460141 - ], - [ - -73.437619, - 45.460293 - ], - [ - -73.437101, - 45.460817 - ], - [ - -73.43693, - 45.460991 - ], - [ - -73.436084, - 45.461838 - ], - [ - -73.435961, - 45.461961 - ], - [ - -73.435883, - 45.462039 - ], - [ - -73.435417, - 45.462506 - ], - [ - -73.435116, - 45.462807 - ], - [ - -73.435017, - 45.462901 - ], - [ - -73.434675, - 45.463227 - ], - [ - -73.434458, - 45.463416 - ], - [ - -73.434426, - 45.463444 - ], - [ - -73.433916, - 45.463851 - ], - [ - -73.432021, - 45.465211 - ], - [ - -73.431899, - 45.465299 - ], - [ - -73.431759, - 45.465404 - ], - [ - -73.431172, - 45.465847 - ], - [ - -73.430632, - 45.466255 - ], - [ - -73.430573, - 45.466288 - ], - [ - -73.43057, - 45.466298 - ], - [ - -73.43053, - 45.466326 - ], - [ - -73.430797, - 45.466502 - ], - [ - -73.432747, - 45.467791 - ], - [ - -73.434072, - 45.468662 - ], - [ - -73.434186, - 45.468737 - ], - [ - -73.434223, - 45.46871 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.434426, - 45.468557 - ], - [ - -73.434567, - 45.468446 - ], - [ - -73.434574, - 45.46844 - ], - [ - -73.434592, - 45.468428 - ], - [ - -73.434654, - 45.468386 - ], - [ - -73.434706, - 45.46835 - ], - [ - -73.43479, - 45.468319 - ], - [ - -73.434953, - 45.468251 - ], - [ - -73.435895, - 45.468018 - ], - [ - -73.437584, - 45.467585 - ], - [ - -73.437909, - 45.467502 - ], - [ - -73.438637, - 45.467322 - ], - [ - -73.438692, - 45.467309 - ], - [ - -73.439001, - 45.46721 - ], - [ - -73.439742, - 45.466711 - ], - [ - -73.439775, - 45.466686 - ], - [ - -73.440039, - 45.466482 - ], - [ - -73.440337, - 45.466252 - ], - [ - -73.440976, - 45.46578 - ], - [ - -73.441167, - 45.465915 - ], - [ - -73.441736, - 45.466257 - ], - [ - -73.442013, - 45.466357 - ], - [ - -73.442151, - 45.466404 - ], - [ - -73.442317, - 45.46646 - ], - [ - -73.442367, - 45.466471 - ], - [ - -73.442596, - 45.466523 - ], - [ - -73.442918, - 45.466614 - ], - [ - -73.44316, - 45.466708 - ], - [ - -73.4434, - 45.466798 - ], - [ - -73.443571, - 45.466875 - ], - [ - -73.443775, - 45.466978 - ], - [ - -73.44395, - 45.467091 - ], - [ - -73.44423, - 45.467276 - ], - [ - -73.44435, - 45.46737 - ], - [ - -73.44443, - 45.467451 - ], - [ - -73.44445, - 45.46747 - ], - [ - -73.444535, - 45.46755 - ], - [ - -73.445104, - 45.468072 - ], - [ - -73.445679, - 45.468635 - ], - [ - -73.446159, - 45.469087 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.447066, - 45.468996 - ], - [ - -73.4474, - 45.468829 - ], - [ - -73.447822, - 45.468645 - ], - [ - -73.448427, - 45.468407 - ], - [ - -73.449383, - 45.468079 - ], - [ - -73.449747, - 45.467955 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450014, - 45.467935 - ], - [ - -73.450122, - 45.468079 - ], - [ - -73.450316, - 45.468304 - ], - [ - -73.45058, - 45.468552 - ], - [ - -73.451028, - 45.468836 - ], - [ - -73.451105, - 45.468885 - ], - [ - -73.451294, - 45.468975 - ], - [ - -73.451441, - 45.469043 - ], - [ - -73.451848, - 45.4692 - ], - [ - -73.452447, - 45.46934 - ], - [ - -73.452697, - 45.469417 - ], - [ - -73.452751, - 45.469436 - ], - [ - -73.452836, - 45.469466 - ], - [ - -73.452949, - 45.469507 - ], - [ - -73.453362, - 45.469732 - ], - [ - -73.453575, - 45.469929 - ], - [ - -73.45358, - 45.469934 - ], - [ - -73.453598, - 45.469954 - ], - [ - -73.45368, - 45.470042 - ], - [ - -73.453779, - 45.470173 - ], - [ - -73.45386, - 45.470321 - ], - [ - -73.453915, - 45.47047 - ], - [ - -73.453949, - 45.470627 - ], - [ - -73.453947, - 45.470995 - ], - [ - -73.453946, - 45.471068 - ], - [ - -73.453836, - 45.471338 - ], - [ - -73.453823, - 45.471358 - ], - [ - -73.453715, - 45.471523 - ], - [ - -73.453575, - 45.471693 - ], - [ - -73.453393, - 45.471855 - ], - [ - -73.453204, - 45.471986 - ], - [ - -73.453004, - 45.472085 - ], - [ - -73.45285, - 45.472157 - ], - [ - -73.452463, - 45.472274 - ], - [ - -73.452316, - 45.472318 - ], - [ - -73.452008, - 45.472363 - ], - [ - -73.45163, - 45.472453 - ], - [ - -73.451205, - 45.472597 - ], - [ - -73.450793, - 45.472777 - ], - [ - -73.450608, - 45.472887 - ], - [ - -73.450449, - 45.472994 - ], - [ - -73.450285, - 45.473112 - ], - [ - -73.450213, - 45.47317 - ], - [ - -73.450137, - 45.473231 - ], - [ - -73.44993, - 45.473433 - ], - [ - -73.449727, - 45.47369 - ], - [ - -73.449578, - 45.473928 - ], - [ - -73.449481, - 45.474103 - ], - [ - -73.449384, - 45.474237 - ], - [ - -73.449337, - 45.474301 - ], - [ - -73.449175, - 45.474468 - ], - [ - -73.448857, - 45.474724 - ], - [ - -73.448574, - 45.474899 - ], - [ - -73.448039, - 45.475106 - ], - [ - -73.447996, - 45.475116 - ], - [ - -73.447817, - 45.47516 - ], - [ - -73.447461, - 45.475227 - ], - [ - -73.446928, - 45.475258 - ], - [ - -73.446655, - 45.475267 - ], - [ - -73.446335, - 45.475213 - ], - [ - -73.446018, - 45.475155 - ], - [ - -73.445688, - 45.475051 - ], - [ - -73.445389, - 45.47492 - ], - [ - -73.445344, - 45.474897 - ], - [ - -73.445071, - 45.474758 - ], - [ - -73.444821, - 45.47456 - ], - [ - -73.444816, - 45.474556 - ], - [ - -73.444637, - 45.474416 - ], - [ - -73.444536, - 45.474295 - ], - [ - -73.444434, - 45.474168 - ], - [ - -73.444376, - 45.474083 - ], - [ - -73.444267, - 45.473862 - ], - [ - -73.444225, - 45.473729 - ], - [ - -73.444201, - 45.473651 - ], - [ - -73.444096, - 45.473399 - ], - [ - -73.444022, - 45.473228 - ], - [ - -73.443969, - 45.473135 - ], - [ - -73.443885, - 45.472989 - ], - [ - -73.44368, - 45.472746 - ], - [ - -73.443403, - 45.472472 - ], - [ - -73.442813, - 45.472065 - ], - [ - -73.442653, - 45.471954 - ], - [ - -73.442519, - 45.471859 - ], - [ - -73.441942, - 45.47227 - ], - [ - -73.441021, - 45.472926 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.440777, - 45.473082 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.439918, - 45.473559 - ], - [ - -73.438731, - 45.47422 - ], - [ - -73.438304, - 45.474435 - ], - [ - -73.43828, - 45.474446 - ], - [ - -73.437984, - 45.474579 - ], - [ - -73.437774, - 45.474669 - ], - [ - -73.437493, - 45.474781 - ], - [ - -73.436979, - 45.47497 - ], - [ - -73.436441, - 45.475136 - ], - [ - -73.43565, - 45.475338 - ], - [ - -73.435359, - 45.475413 - ], - [ - -73.435246, - 45.475441 - ], - [ - -73.434371, - 45.475675 - ], - [ - -73.43213, - 45.476249 - ], - [ - -73.430984, - 45.476543 - ], - [ - -73.430442, - 45.476682 - ], - [ - -73.430219, - 45.476739 - ], - [ - -73.43007, - 45.476775 - ], - [ - -73.430191, - 45.476874 - ], - [ - -73.430586, - 45.477123 - ], - [ - -73.430682, - 45.477184 - ], - [ - -73.43148, - 45.477725 - ], - [ - -73.431567, - 45.477784 - ], - [ - -73.432859, - 45.478671 - ], - [ - -73.433475, - 45.479089 - ], - [ - -73.433608, - 45.479179 - ], - [ - -73.435032, - 45.480148 - ], - [ - -73.435713, - 45.480606 - ], - [ - -73.435802, - 45.480665 - ], - [ - -73.4369, - 45.481417 - ], - [ - -73.437309, - 45.481697 - ], - [ - -73.437407, - 45.481764 - ], - [ - -73.438338, - 45.48239 - ], - [ - -73.43885, - 45.482751 - ], - [ - -73.438971, - 45.482836 - ], - [ - -73.439533, - 45.483272 - ], - [ - -73.440126, - 45.483709 - ], - [ - -73.440663, - 45.48412 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.441185, - 45.484528 - ], - [ - -73.441638, - 45.484884 - ], - [ - -73.44227, - 45.485402 - ], - [ - -73.44238, - 45.485492 - ], - [ - -73.442979, - 45.48598 - ], - [ - -73.443236, - 45.48619 - ], - [ - -73.443584, - 45.486491 - ], - [ - -73.443685, - 45.486573 - ], - [ - -73.443937, - 45.486778 - ], - [ - -73.444066, - 45.486883 - ], - [ - -73.444405, - 45.487149 - ], - [ - -73.44464, - 45.487266 - ], - [ - -73.444883, - 45.487369 - ], - [ - -73.445062, - 45.487428 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 279, - "properties": { - "id": "7f7d3e36-3995-4f9d-bb8a-b1f498bff8a1", - "data": { - "gtfs": { - "shape_id": "532_1_A" - }, - "segments": [ - { - "distanceMeters": 422, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 304, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 102, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 59, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 61, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 606, - "travelTimeSeconds": 82 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11099, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4191.996930831726, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.4, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 6.61, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.4 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "3947066a-3681-4f55-8693-0a5fac46c728", - "006d28ae-a3cc-4f45-8689-daa6cf9386f5", - "94721b0b-0bae-4300-ab61-58dc9d3fe85b", - "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", - "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", - "27e1da8c-287d-4c6b-9905-9c8c3d07097d", - "9fe6df14-62d0-4a44-8e19-85300b42de89", - "c46f92e7-e692-49ea-b12f-0df7099ee6d5", - "06cee1c3-abcc-4982-b889-e73356b844e0", - "9e4bc046-2878-4cee-af77-934e179aa77f", - "1f87e3a1-2127-4357-9fd4-016c6c31e011", - "b7b9e437-9aed-4216-8c9e-6ac432328b58", - "eeae68ef-a789-47cd-b1a9-a6fc5c2bb689", - "1a929515-9cf9-46e2-a23e-d4a14e85a95d", - "7c6202a7-3f19-4943-97ae-2c6baa7cb485", - "2dc5436a-aaba-417a-8f15-4777cfa70bbf", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "ba86f45f-9fb5-4525-a50b-a876919fd012", - "988c86da-04eb-4067-b650-f13c447b17e7", - "988c86da-04eb-4067-b650-f13c447b17e7", - "4827a17d-8dc9-4cbd-8430-3334ebece64a", - "504cb53f-f1f4-46f2-81f5-f99fef8227fd", - "966472c1-4384-4d94-92f7-48afa023de51", - "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "c9664cb0-d2ee-485f-8261-b02c66f8f9aa", - "ee666934-d186-4b8b-a152-1fdeb23a5242", - "4d428a9f-d12a-42d6-ab66-7ad0c7ad2850", - "de0dd837-0f5e-4afa-a1ce-1042af81def1", - "014a3440-ffed-405b-9391-031896ce89b5", - "030a4337-a3e4-4cae-9b3c-548f03210dcf", - "ab44c70e-171d-4dd2-b074-2fbdab29c11d", - "18d33d13-0d37-41d0-8a27-4c75ae6704a6", - "f761f132-09f4-4a01-a76e-f9b0e50d8a9d", - "8bc1fa43-5a96-4718-96d6-82d3768ab9f4", - "c8919560-2bb2-4063-8184-8e6c296badbe", - "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", - "a17f387c-1398-49f4-8a7b-291d91ebc51f", - "a09ea856-287c-4215-ad6a-dab05db66e7a", - "cd932703-83f9-4acf-94fa-d521e6d427d0", - "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", - "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "e72d0d41-60dd-429c-9fc0-986190945d76", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "6c0bfb87-dee7-4e0e-9ee7-c2f5cb6e8211", - "segments": [ - 0, - 12, - 14, - 19, - 22, - 26, - 40, - 45, - 50, - 61, - 72, - 77, - 86, - 91, - 97, - 100, - 103, - 108, - 110, - 117, - 123, - 130, - 136, - 149, - 153, - 161, - 167, - 178, - 186, - 196, - 205, - 211, - 217, - 226, - 239, - 243, - 247, - 254, - 261, - 266, - 273, - 275, - 278, - 281, - 284, - 288, - 290, - 292, - 298 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 279, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445508, - 45.489489 - ], - [ - -73.4453, - 45.489165 - ], - [ - -73.445238, - 45.489052 - ], - [ - -73.445212, - 45.488985 - ], - [ - -73.445181, - 45.488904 - ], - [ - -73.445074, - 45.488728 - ], - [ - -73.445053, - 45.488544 - ], - [ - -73.445044, - 45.488377 - ], - [ - -73.445046, - 45.488242 - ], - [ - -73.445073, - 45.488085 - ], - [ - -73.445118, - 45.487932 - ], - [ - -73.445182, - 45.487779 - ], - [ - -73.445261, - 45.48759 - ], - [ - -73.445319, - 45.487496 - ], - [ - -73.445386, - 45.487388 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445129, - 45.48732 - ], - [ - -73.444962, - 45.487262 - ], - [ - -73.444731, - 45.487167 - ], - [ - -73.444565, - 45.487086 - ], - [ - -73.444194, - 45.486807 - ], - [ - -73.443808, - 45.486496 - ], - [ - -73.443706, - 45.486415 - ], - [ - -73.44336, - 45.486118 - ], - [ - -73.442631, - 45.485518 - ], - [ - -73.442528, - 45.485434 - ], - [ - -73.441754, - 45.484812 - ], - [ - -73.440975, - 45.484194 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.440245, - 45.483633 - ], - [ - -73.43964, - 45.483201 - ], - [ - -73.439159, - 45.482827 - ], - [ - -73.439083, - 45.482768 - ], - [ - -73.438464, - 45.482318 - ], - [ - -73.437644, - 45.481755 - ], - [ - -73.437512, - 45.481665 - ], - [ - -73.437014, - 45.481332 - ], - [ - -73.436034, - 45.480661 - ], - [ - -73.435909, - 45.480575 - ], - [ - -73.43514, - 45.480067 - ], - [ - -73.433836, - 45.479179 - ], - [ - -73.433717, - 45.479098 - ], - [ - -73.432962, - 45.478594 - ], - [ - -73.431691, - 45.47771 - ], - [ - -73.431589, - 45.477639 - ], - [ - -73.431156, - 45.477363 - ], - [ - -73.430833, - 45.477157 - ], - [ - -73.430771, - 45.477117 - ], - [ - -73.430341, - 45.476838 - ], - [ - -73.430884, - 45.476699 - ], - [ - -73.430986, - 45.476672 - ], - [ - -73.431164, - 45.476626 - ], - [ - -73.431616, - 45.47651 - ], - [ - -73.432188, - 45.476362 - ], - [ - -73.434429, - 45.475783 - ], - [ - -73.435107, - 45.475602 - ], - [ - -73.435306, - 45.475549 - ], - [ - -73.435634, - 45.475469 - ], - [ - -73.436518, - 45.475235 - ], - [ - -73.437045, - 45.475069 - ], - [ - -73.437596, - 45.47488 - ], - [ - -73.437872, - 45.474768 - ], - [ - -73.438084, - 45.474678 - ], - [ - -73.438205, - 45.474622 - ], - [ - -73.43841, - 45.474525 - ], - [ - -73.438836, - 45.474314 - ], - [ - -73.43909, - 45.474175 - ], - [ - -73.440044, - 45.473644 - ], - [ - -73.440381, - 45.473457 - ], - [ - -73.440534, - 45.473372 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.440904, - 45.473168 - ], - [ - -73.441015, - 45.473108 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.442527, - 45.472043 - ], - [ - -73.442653, - 45.471954 - ], - [ - -73.442946, - 45.472156 - ], - [ - -73.443403, - 45.472472 - ], - [ - -73.44368, - 45.472746 - ], - [ - -73.4438, - 45.472889 - ], - [ - -73.443885, - 45.472989 - ], - [ - -73.444022, - 45.473228 - ], - [ - -73.444096, - 45.473399 - ], - [ - -73.444201, - 45.473651 - ], - [ - -73.444225, - 45.473729 - ], - [ - -73.444267, - 45.473862 - ], - [ - -73.444376, - 45.474083 - ], - [ - -73.444434, - 45.474168 - ], - [ - -73.444536, - 45.474295 - ], - [ - -73.444637, - 45.474416 - ], - [ - -73.444816, - 45.474556 - ], - [ - -73.444821, - 45.47456 - ], - [ - -73.445071, - 45.474758 - ], - [ - -73.445389, - 45.47492 - ], - [ - -73.445457, - 45.47495 - ], - [ - -73.445688, - 45.475051 - ], - [ - -73.446018, - 45.475155 - ], - [ - -73.446335, - 45.475213 - ], - [ - -73.446655, - 45.475267 - ], - [ - -73.446928, - 45.475258 - ], - [ - -73.447461, - 45.475227 - ], - [ - -73.447817, - 45.47516 - ], - [ - -73.448039, - 45.475106 - ], - [ - -73.448342, - 45.474989 - ], - [ - -73.448574, - 45.474899 - ], - [ - -73.448857, - 45.474724 - ], - [ - -73.449175, - 45.474468 - ], - [ - -73.449337, - 45.474301 - ], - [ - -73.449358, - 45.474272 - ], - [ - -73.449481, - 45.474103 - ], - [ - -73.449578, - 45.473928 - ], - [ - -73.449727, - 45.47369 - ], - [ - -73.44993, - 45.473433 - ], - [ - -73.450137, - 45.473231 - ], - [ - -73.450285, - 45.473112 - ], - [ - -73.450312, - 45.473093 - ], - [ - -73.450449, - 45.472994 - ], - [ - -73.450608, - 45.472887 - ], - [ - -73.450793, - 45.472777 - ], - [ - -73.451205, - 45.472597 - ], - [ - -73.45163, - 45.472453 - ], - [ - -73.452008, - 45.472363 - ], - [ - -73.452167, - 45.47234 - ], - [ - -73.452316, - 45.472318 - ], - [ - -73.45285, - 45.472157 - ], - [ - -73.453004, - 45.472085 - ], - [ - -73.453204, - 45.471986 - ], - [ - -73.453393, - 45.471855 - ], - [ - -73.453575, - 45.471693 - ], - [ - -73.453715, - 45.471523 - ], - [ - -73.453836, - 45.471338 - ], - [ - -73.45391, - 45.471157 - ], - [ - -73.453946, - 45.471068 - ], - [ - -73.453949, - 45.470627 - ], - [ - -73.453918, - 45.470488 - ], - [ - -73.453915, - 45.47047 - ], - [ - -73.45386, - 45.470321 - ], - [ - -73.453779, - 45.470173 - ], - [ - -73.45368, - 45.470042 - ], - [ - -73.453598, - 45.469954 - ], - [ - -73.45358, - 45.469934 - ], - [ - -73.453454, - 45.469817 - ], - [ - -73.453362, - 45.469732 - ], - [ - -73.452949, - 45.469507 - ], - [ - -73.452836, - 45.469466 - ], - [ - -73.452751, - 45.469436 - ], - [ - -73.452697, - 45.469417 - ], - [ - -73.452447, - 45.46934 - ], - [ - -73.452072, - 45.469252 - ], - [ - -73.451848, - 45.4692 - ], - [ - -73.451441, - 45.469043 - ], - [ - -73.451294, - 45.468975 - ], - [ - -73.451105, - 45.468885 - ], - [ - -73.45058, - 45.468552 - ], - [ - -73.450316, - 45.468304 - ], - [ - -73.450122, - 45.468079 - ], - [ - -73.450075, - 45.468017 - ], - [ - -73.450014, - 45.467935 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.449888, - 45.467769 - ], - [ - -73.449338, - 45.467948 - ], - [ - -73.44837, - 45.46829 - ], - [ - -73.447748, - 45.468524 - ], - [ - -73.447289, - 45.468721 - ], - [ - -73.446429, - 45.469168 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445679, - 45.468635 - ], - [ - -73.445104, - 45.468072 - ], - [ - -73.444614, - 45.467623 - ], - [ - -73.444535, - 45.46755 - ], - [ - -73.44443, - 45.467451 - ], - [ - -73.44435, - 45.46737 - ], - [ - -73.44423, - 45.467276 - ], - [ - -73.44395, - 45.467091 - ], - [ - -73.443775, - 45.466978 - ], - [ - -73.443571, - 45.466875 - ], - [ - -73.4434, - 45.466798 - ], - [ - -73.44316, - 45.466708 - ], - [ - -73.442918, - 45.466614 - ], - [ - -73.442751, - 45.466567 - ], - [ - -73.442596, - 45.466523 - ], - [ - -73.442367, - 45.466471 - ], - [ - -73.442317, - 45.46646 - ], - [ - -73.442013, - 45.466357 - ], - [ - -73.441736, - 45.466257 - ], - [ - -73.441411, - 45.466062 - ], - [ - -73.441167, - 45.465915 - ], - [ - -73.440976, - 45.46578 - ], - [ - -73.440458, - 45.466163 - ], - [ - -73.440337, - 45.466252 - ], - [ - -73.439775, - 45.466686 - ], - [ - -73.439742, - 45.466711 - ], - [ - -73.439001, - 45.46721 - ], - [ - -73.438692, - 45.467309 - ], - [ - -73.438637, - 45.467322 - ], - [ - -73.438033, - 45.467471 - ], - [ - -73.437909, - 45.467502 - ], - [ - -73.435895, - 45.468018 - ], - [ - -73.434953, - 45.468251 - ], - [ - -73.43479, - 45.468319 - ], - [ - -73.434706, - 45.46835 - ], - [ - -73.434654, - 45.468386 - ], - [ - -73.434631, - 45.468402 - ], - [ - -73.434574, - 45.46844 - ], - [ - -73.434426, - 45.468557 - ], - [ - -73.434414, - 45.468566 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.433058, - 45.467863 - ], - [ - -73.430729, - 45.466319 - ], - [ - -73.430632, - 45.466255 - ], - [ - -73.431759, - 45.465404 - ], - [ - -73.431805, - 45.465369 - ], - [ - -73.431899, - 45.465299 - ], - [ - -73.433916, - 45.463851 - ], - [ - -73.434414, - 45.463453 - ], - [ - -73.434426, - 45.463444 - ], - [ - -73.434675, - 45.463227 - ], - [ - -73.435017, - 45.462901 - ], - [ - -73.435116, - 45.462807 - ], - [ - -73.435417, - 45.462506 - ], - [ - -73.435796, - 45.462126 - ], - [ - -73.435883, - 45.462039 - ], - [ - -73.436084, - 45.461838 - ], - [ - -73.43693, - 45.460991 - ], - [ - -73.437101, - 45.460817 - ], - [ - -73.437577, - 45.460335 - ], - [ - -73.437619, - 45.460293 - ], - [ - -73.437866, - 45.460042 - ], - [ - -73.438236, - 45.459671 - ], - [ - -73.438414, - 45.459492 - ], - [ - -73.438614, - 45.459291 - ], - [ - -73.438626, - 45.459273 - ], - [ - -73.438819, - 45.459071 - ], - [ - -73.438948, - 45.458945 - ], - [ - -73.439183, - 45.458702 - ], - [ - -73.439385, - 45.458522 - ], - [ - -73.439548, - 45.458374 - ], - [ - -73.439744, - 45.458212 - ], - [ - -73.439855, - 45.458123 - ], - [ - -73.439962, - 45.458036 - ], - [ - -73.44026, - 45.457807 - ], - [ - -73.440529, - 45.457614 - ], - [ - -73.440865, - 45.457385 - ], - [ - -73.441403, - 45.45702 - ], - [ - -73.441471, - 45.456971 - ], - [ - -73.441571, - 45.456899 - ], - [ - -73.441575, - 45.456899 - ], - [ - -73.441649, - 45.456841 - ], - [ - -73.441768, - 45.456751 - ], - [ - -73.441927, - 45.456598 - ], - [ - -73.442011, - 45.456512 - ], - [ - -73.442083, - 45.456427 - ], - [ - -73.44217, - 45.456323 - ], - [ - -73.442265, - 45.456206 - ], - [ - -73.442375, - 45.456072 - ], - [ - -73.442447, - 45.455982 - ], - [ - -73.442523, - 45.455887 - ], - [ - -73.442591, - 45.455806 - ], - [ - -73.442675, - 45.455707 - ], - [ - -73.442728, - 45.455644 - ], - [ - -73.442777, - 45.455581 - ], - [ - -73.442807, - 45.455541 - ], - [ - -73.44285, - 45.455478 - ], - [ - -73.442899, - 45.455392 - ], - [ - -73.442958, - 45.455271 - ], - [ - -73.443004, - 45.455181 - ], - [ - -73.443048, - 45.455091 - ], - [ - -73.442897, - 45.455046 - ], - [ - -73.442552, - 45.454942 - ], - [ - -73.442457, - 45.454913 - ], - [ - -73.442149, - 45.454821 - ], - [ - -73.441781, - 45.454681 - ], - [ - -73.441446, - 45.454519 - ], - [ - -73.44141, - 45.454501 - ], - [ - -73.440931, - 45.454231 - ], - [ - -73.440203, - 45.453713 - ], - [ - -73.440081, - 45.453626 - ], - [ - -73.440001, - 45.453569 - ], - [ - -73.43991, - 45.453501 - ], - [ - -73.439666, - 45.453317 - ], - [ - -73.439573, - 45.453251 - ], - [ - -73.439082, - 45.452902 - ], - [ - -73.438626, - 45.452571 - ], - [ - -73.438531, - 45.452502 - ], - [ - -73.437308, - 45.451615 - ], - [ - -73.437177, - 45.451517 - ], - [ - -73.437043, - 45.451417 - ], - [ - -73.436765, - 45.45122 - ], - [ - -73.436538, - 45.451086 - ], - [ - -73.436237, - 45.450946 - ], - [ - -73.435932, - 45.450844 - ], - [ - -73.435722, - 45.450794 - ], - [ - -73.4355, - 45.450753 - ], - [ - -73.435275, - 45.450728 - ], - [ - -73.434955, - 45.450707 - ], - [ - -73.434723, - 45.450689 - ], - [ - -73.434511, - 45.450663 - ], - [ - -73.434387, - 45.45064 - ], - [ - -73.434163, - 45.450586 - ], - [ - -73.43412, - 45.45058 - ], - [ - -73.433988, - 45.45056 - ], - [ - -73.433599, - 45.45039 - ], - [ - -73.432687, - 45.449776 - ], - [ - -73.431398, - 45.448909 - ], - [ - -73.431292, - 45.448821 - ], - [ - -73.431167, - 45.448894 - ], - [ - -73.430951, - 45.449021 - ], - [ - -73.430882, - 45.449061 - ], - [ - -73.427598, - 45.450978 - ], - [ - -73.42752, - 45.451029 - ], - [ - -73.427205, - 45.451234 - ], - [ - -73.427162, - 45.451264 - ], - [ - -73.427086, - 45.451315 - ], - [ - -73.424876, - 45.452814 - ], - [ - -73.42454, - 45.453042 - ], - [ - -73.422189, - 45.454637 - ], - [ - -73.421751, - 45.454934 - ], - [ - -73.421127, - 45.455358 - ], - [ - -73.420979, - 45.455496 - ], - [ - -73.420845, - 45.455619 - ], - [ - -73.420639, - 45.455911 - ], - [ - -73.420583, - 45.456092 - ], - [ - -73.420566, - 45.456243 - ], - [ - -73.420553, - 45.45636 - ], - [ - -73.420583, - 45.456538 - ], - [ - -73.420669, - 45.456926 - ], - [ - -73.42078, - 45.45738 - ] - ] - }, - "id": 280, - "properties": { - "id": "a2dedaa2-a27a-4c5b-bf63-c4a6ccb8cc2d", - "data": { - "gtfs": { - "shape_id": "532_2_R" - }, - "segments": [ - { - "distanceMeters": 757, - "travelTimeSeconds": 110 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 91, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 343, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 46, - "travelTimeSeconds": 7 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 344, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 311, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 392, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 304, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 45 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11041, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4226.798444626649, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.81, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 6.13, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.81 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", - "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", - "cd932703-83f9-4acf-94fa-d521e6d427d0", - "a09ea856-287c-4215-ad6a-dab05db66e7a", - "a17f387c-1398-49f4-8a7b-291d91ebc51f", - "71881b96-39d5-48ea-9242-5e05ded39cda", - "71881b96-39d5-48ea-9242-5e05ded39cda", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "46c30d80-c93e-497b-a096-3a7c13e3723f", - "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", - "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", - "8bc1fa43-5a96-4718-96d6-82d3768ab9f4", - "f761f132-09f4-4a01-a76e-f9b0e50d8a9d", - "18d33d13-0d37-41d0-8a27-4c75ae6704a6", - "ab44c70e-171d-4dd2-b074-2fbdab29c11d", - "030a4337-a3e4-4cae-9b3c-548f03210dcf", - "014a3440-ffed-405b-9391-031896ce89b5", - "de0dd837-0f5e-4afa-a1ce-1042af81def1", - "4d428a9f-d12a-42d6-ab66-7ad0c7ad2850", - "ee666934-d186-4b8b-a152-1fdeb23a5242", - "e3925175-d7e8-4440-80a1-64bd3d7d9b18", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", - "966472c1-4384-4d94-92f7-48afa023de51", - "43d1b9da-374a-4022-9200-6e68a13388db", - "504cb53f-f1f4-46f2-81f5-f99fef8227fd", - "4827a17d-8dc9-4cbd-8430-3334ebece64a", - "988c86da-04eb-4067-b650-f13c447b17e7", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "2dc5436a-aaba-417a-8f15-4777cfa70bbf", - "7c6202a7-3f19-4943-97ae-2c6baa7cb485", - "1a929515-9cf9-46e2-a23e-d4a14e85a95d", - "eeae68ef-a789-47cd-b1a9-a6fc5c2bb689", - "b7b9e437-9aed-4216-8c9e-6ac432328b58", - "1f87e3a1-2127-4357-9fd4-016c6c31e011", - "9159ff88-d9d5-4cda-a7ee-41b416c49163", - "06cee1c3-abcc-4982-b889-e73356b844e0", - "c46f92e7-e692-49ea-b12f-0df7099ee6d5", - "fdc86629-6768-46ce-9ee0-1d935d00516c", - "27e1da8c-287d-4c6b-9905-9c8c3d07097d", - "0b421cac-8896-468a-9252-ce5f1fee4e84", - "1f1619c9-3302-430c-9ade-aab4bf9e1e55", - "c74e0c90-a5ea-4788-9b1d-7bf05f50a1c4", - "657fc71f-da59-4e3a-8872-f83480cde10d", - "812fffe8-cc71-4dbc-93c9-b4301abed6c9", - "2091533d-ae73-45a6-ae28-00a869c29f04" - ], - "stops": [], - "line_id": "6c0bfb87-dee7-4e0e-9ee7-c2f5cb6e8211", - "segments": [ - 0, - 38, - 41, - 45, - 48, - 51, - 54, - 57, - 60, - 64, - 69, - 77, - 83, - 88, - 90, - 93, - 108, - 117, - 122, - 129, - 136, - 145, - 155, - 162, - 170, - 178, - 182, - 193, - 199, - 202, - 209, - 219, - 222, - 225, - 228, - 234, - 239, - 252, - 258, - 283, - 289, - 296, - 299, - 313, - 316, - 320, - 323, - 328, - 330 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 280, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.470853, - 45.437641 - ], - [ - -73.470909, - 45.43755 - ], - [ - -73.471049, - 45.437306 - ], - [ - -73.471113, - 45.437194 - ], - [ - -73.471139, - 45.437154 - ], - [ - -73.472058, - 45.435759 - ], - [ - -73.471657, - 45.43562 - ], - [ - -73.471617, - 45.435607 - ], - [ - -73.471308, - 45.435507 - ], - [ - -73.470685, - 45.435314 - ], - [ - -73.470598, - 45.435287 - ], - [ - -73.469951, - 45.435071 - ], - [ - -73.469144, - 45.434802 - ], - [ - -73.469086, - 45.434782 - ], - [ - -73.468637, - 45.434634 - ], - [ - -73.466273, - 45.43385 - ], - [ - -73.465531, - 45.433585 - ], - [ - -73.465352, - 45.433521 - ], - [ - -73.464983, - 45.434165 - ], - [ - -73.464402, - 45.435154 - ], - [ - -73.464363, - 45.435226 - ], - [ - -73.464262, - 45.435411 - ], - [ - -73.464217, - 45.435519 - ], - [ - -73.464208, - 45.435541 - ], - [ - -73.464129, - 45.435726 - ], - [ - -73.464042, - 45.435933 - ], - [ - -73.463949, - 45.43609 - ], - [ - -73.463883, - 45.436216 - ], - [ - -73.463836, - 45.436306 - ], - [ - -73.463113, - 45.4361 - ], - [ - -73.462701, - 45.435982 - ], - [ - -73.462325, - 45.436579 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.462162, - 45.436832 - ], - [ - -73.461442, - 45.437945 - ], - [ - -73.460899, - 45.438784 - ], - [ - -73.460824, - 45.438928 - ], - [ - -73.460775, - 45.43905 - ], - [ - -73.460753, - 45.439144 - ], - [ - -73.460745, - 45.439186 - ], - [ - -73.460732, - 45.439261 - ], - [ - -73.460756, - 45.439374 - ], - [ - -73.460804, - 45.439527 - ], - [ - -73.460879, - 45.439666 - ], - [ - -73.4611, - 45.439963 - ], - [ - -73.461732, - 45.440683 - ], - [ - -73.46187, - 45.440814 - ], - [ - -73.46208, - 45.440963 - ], - [ - -73.462213, - 45.441057 - ], - [ - -73.462145, - 45.441115 - ], - [ - -73.46199, - 45.441264 - ], - [ - -73.461921, - 45.441345 - ], - [ - -73.461309, - 45.442274 - ], - [ - -73.461249, - 45.442366 - ], - [ - -73.460623, - 45.443338 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.460454, - 45.443598 - ], - [ - -73.460027, - 45.444237 - ], - [ - -73.45954, - 45.445006 - ], - [ - -73.459486, - 45.445092 - ], - [ - -73.458903, - 45.445978 - ], - [ - -73.458716, - 45.446252 - ], - [ - -73.458499, - 45.446437 - ], - [ - -73.458358, - 45.446536 - ], - [ - -73.45823, - 45.446598 - ], - [ - -73.458121, - 45.446639 - ], - [ - -73.45812, - 45.446639 - ], - [ - -73.458085, - 45.446651 - ], - [ - -73.458009, - 45.446676 - ], - [ - -73.457516, - 45.446841 - ], - [ - -73.456885, - 45.447052 - ], - [ - -73.456398, - 45.447215 - ], - [ - -73.456253, - 45.447264 - ], - [ - -73.455927, - 45.447371 - ], - [ - -73.455661, - 45.447479 - ], - [ - -73.455528, - 45.447551 - ], - [ - -73.455416, - 45.447619 - ], - [ - -73.455304, - 45.447709 - ], - [ - -73.455137, - 45.447929 - ], - [ - -73.454897, - 45.448293 - ], - [ - -73.454606, - 45.448707 - ], - [ - -73.454507, - 45.448806 - ], - [ - -73.45442, - 45.448874 - ], - [ - -73.454351, - 45.448928 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.454088, - 45.449121 - ], - [ - -73.454556, - 45.449427 - ], - [ - -73.454793, - 45.449607 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.453977, - 45.450264 - ], - [ - -73.452738, - 45.451131 - ], - [ - -73.452622, - 45.451213 - ], - [ - -73.453298, - 45.451699 - ], - [ - -73.452613, - 45.45218 - ], - [ - -73.45248, - 45.452271 - ], - [ - -73.451635, - 45.452851 - ], - [ - -73.451486, - 45.452953 - ], - [ - -73.45112, - 45.453219 - ], - [ - -73.450766, - 45.453502 - ], - [ - -73.450729, - 45.453546 - ], - [ - -73.450488, - 45.453839 - ], - [ - -73.451305, - 45.454127 - ], - [ - -73.451557, - 45.454204 - ], - [ - -73.45174, - 45.454276 - ], - [ - -73.451873, - 45.454344 - ], - [ - -73.451956, - 45.454402 - ], - [ - -73.452089, - 45.454536 - ], - [ - -73.452189, - 45.454636 - ], - [ - -73.452038, - 45.454708 - ], - [ - -73.451941, - 45.454767 - ], - [ - -73.451848, - 45.45487 - ], - [ - -73.45166, - 45.455126 - ], - [ - -73.451461, - 45.455422 - ], - [ - -73.451258, - 45.455723 - ], - [ - -73.450443, - 45.45693 - ], - [ - -73.450382, - 45.457097 - ], - [ - -73.450362, - 45.457232 - ], - [ - -73.450367, - 45.457403 - ], - [ - -73.450396, - 45.457536 - ], - [ - -73.450437, - 45.457731 - ], - [ - -73.450776, - 45.457974 - ], - [ - -73.451112, - 45.458216 - ], - [ - -73.452534, - 45.459239 - ], - [ - -73.453079, - 45.459639 - ], - [ - -73.453221, - 45.459743 - ], - [ - -73.454635, - 45.460759 - ], - [ - -73.456104, - 45.461814 - ], - [ - -73.456268, - 45.4619 - ], - [ - -73.456608, - 45.461964 - ], - [ - -73.457019, - 45.462007 - ], - [ - -73.457292, - 45.46211 - ], - [ - -73.457369, - 45.46218 - ], - [ - -73.45742, - 45.46227 - ], - [ - -73.45744, - 45.462394 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.454668, - 45.465614 - ], - [ - -73.45456, - 45.465692 - ], - [ - -73.453819, - 45.466205 - ], - [ - -73.453432, - 45.466434 - ], - [ - -73.453035, - 45.466641 - ], - [ - -73.452922, - 45.46669 - ], - [ - -73.45279, - 45.466747 - ], - [ - -73.452589, - 45.466834 - ], - [ - -73.451705, - 45.467139 - ], - [ - -73.451627, - 45.467166 - ], - [ - -73.45158, - 45.467183 - ], - [ - -73.451019, - 45.467376 - ], - [ - -73.450937, - 45.467405 - ], - [ - -73.450156, - 45.467679 - ], - [ - -73.449888, - 45.467769 - ], - [ - -73.449338, - 45.467948 - ], - [ - -73.44837, - 45.46829 - ], - [ - -73.447748, - 45.468524 - ], - [ - -73.447289, - 45.468721 - ], - [ - -73.44644, - 45.469162 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445905, - 45.469485 - ], - [ - -73.445671, - 45.469643 - ], - [ - -73.445475, - 45.469778 - ], - [ - -73.445396, - 45.469832 - ], - [ - -73.445298, - 45.469899 - ], - [ - -73.444328, - 45.470583 - ], - [ - -73.444081, - 45.470757 - ], - [ - -73.442663, - 45.471758 - ], - [ - -73.442644, - 45.471771 - ], - [ - -73.442519, - 45.471859 - ], - [ - -73.441942, - 45.47227 - ], - [ - -73.441026, - 45.472922 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.440777, - 45.473082 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.439918, - 45.473559 - ], - [ - -73.438731, - 45.47422 - ], - [ - -73.438304, - 45.474435 - ], - [ - -73.438275, - 45.474448 - ], - [ - -73.437984, - 45.474579 - ], - [ - -73.437774, - 45.474669 - ], - [ - -73.437493, - 45.474781 - ], - [ - -73.436979, - 45.47497 - ], - [ - -73.436441, - 45.475136 - ], - [ - -73.43565, - 45.475338 - ], - [ - -73.435364, - 45.475411 - ], - [ - -73.435246, - 45.475441 - ], - [ - -73.434371, - 45.475675 - ], - [ - -73.43213, - 45.476249 - ], - [ - -73.430984, - 45.476543 - ], - [ - -73.430446, - 45.476681 - ], - [ - -73.430219, - 45.476739 - ], - [ - -73.43007, - 45.476775 - ], - [ - -73.430191, - 45.476874 - ], - [ - -73.430479, - 45.477056 - ], - [ - -73.430682, - 45.477184 - ], - [ - -73.43148, - 45.477725 - ], - [ - -73.431573, - 45.477789 - ], - [ - -73.432859, - 45.478671 - ], - [ - -73.433472, - 45.479087 - ], - [ - -73.433608, - 45.479179 - ], - [ - -73.435032, - 45.480148 - ], - [ - -73.435711, - 45.480604 - ], - [ - -73.435802, - 45.480665 - ], - [ - -73.4369, - 45.481417 - ], - [ - -73.437307, - 45.481696 - ], - [ - -73.437407, - 45.481764 - ], - [ - -73.438338, - 45.48239 - ], - [ - -73.438858, - 45.482756 - ], - [ - -73.438971, - 45.482836 - ], - [ - -73.439533, - 45.483272 - ], - [ - -73.440126, - 45.483709 - ], - [ - -73.440661, - 45.484119 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.441192, - 45.484534 - ], - [ - -73.441638, - 45.484884 - ], - [ - -73.442269, - 45.485401 - ], - [ - -73.44238, - 45.485492 - ], - [ - -73.442979, - 45.48598 - ], - [ - -73.443236, - 45.48619 - ], - [ - -73.443584, - 45.486491 - ], - [ - -73.443685, - 45.486573 - ], - [ - -73.443944, - 45.486784 - ], - [ - -73.444066, - 45.486883 - ], - [ - -73.444405, - 45.487149 - ], - [ - -73.44464, - 45.487266 - ], - [ - -73.444883, - 45.487369 - ], - [ - -73.445062, - 45.487428 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 281, - "properties": { - "id": "104e2a27-edd2-4f7b-b42d-424a16405e5e", - "data": { - "gtfs": { - "shape_id": "533_1_A" - }, - "segments": [ - { - "distanceMeters": 268, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 337, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 31, - "travelTimeSeconds": 4 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 727, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 62, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 605, - "travelTimeSeconds": 81 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9956, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6209.141183844406, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.54, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 6.64, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.54 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", - "f36c7de3-84dd-4573-ac69-91ccd87efd4f", - "1d638a17-5a2b-40f7-a0cc-6db81666104e", - "e990ec2d-e586-4b2f-884d-4124f22426b3", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "c7e2639a-bb94-426e-918b-714f0212d53b", - "19a4f64a-0169-40b9-8b9c-84de3158151e", - "b93691d0-438e-4eac-87a0-7c1ac45a7c18", - "9b31d865-da9f-4eb8-b8a9-3d488eb579df", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "57126f14-f5bb-4578-a4ae-48d75eae5e82", - "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", - "8b7e764f-0227-410c-89b9-51b9a8ad8c88", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", - "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", - "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", - "0087674f-0098-4bab-9a77-b31eb3602613", - "db56dff4-d82c-4b2d-ad34-35b3db3f27de", - "800b4ca8-f540-48ef-9acf-ec6d45db3496", - "0c735a18-4964-435c-ad38-89ab21a47f83", - "c01e4d9c-c5df-425f-9b40-215a62d76b50", - "4ca26d1e-a5a2-4d1a-ba5a-7bed9b5a1bee", - "bd9b4c12-08ed-4715-ae67-eb179ed7f974", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "ff779c9a-cd83-463a-8d0c-a93f3584a187", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", - "c8919560-2bb2-4063-8184-8e6c296badbe", - "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", - "a17f387c-1398-49f4-8a7b-291d91ebc51f", - "a09ea856-287c-4215-ad6a-dab05db66e7a", - "cd932703-83f9-4acf-94fa-d521e6d427d0", - "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", - "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "e72d0d41-60dd-429c-9fc0-986190945d76", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "2acfbc68-29a8-4710-9e84-11fdcfa10002", - "segments": [ - 0, - 7, - 12, - 16, - 27, - 31, - 33, - 34, - 39, - 47, - 52, - 54, - 58, - 66, - 71, - 82, - 87, - 90, - 95, - 99, - 106, - 113, - 118, - 123, - 125, - 143, - 149, - 154, - 162, - 170, - 171, - 175, - 182, - 189, - 194, - 201, - 203, - 206, - 209, - 212, - 216, - 218, - 220, - 226 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 281, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445508, - 45.489489 - ], - [ - -73.4453, - 45.489165 - ], - [ - -73.445238, - 45.489052 - ], - [ - -73.445212, - 45.488985 - ], - [ - -73.445181, - 45.488904 - ], - [ - -73.445074, - 45.488728 - ], - [ - -73.445053, - 45.488544 - ], - [ - -73.445044, - 45.488377 - ], - [ - -73.445046, - 45.488242 - ], - [ - -73.445073, - 45.488085 - ], - [ - -73.445118, - 45.487932 - ], - [ - -73.445182, - 45.487779 - ], - [ - -73.445261, - 45.48759 - ], - [ - -73.445319, - 45.487496 - ], - [ - -73.445386, - 45.487388 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445129, - 45.48732 - ], - [ - -73.444962, - 45.487262 - ], - [ - -73.444731, - 45.487167 - ], - [ - -73.444565, - 45.487086 - ], - [ - -73.444194, - 45.486807 - ], - [ - -73.443808, - 45.486496 - ], - [ - -73.443706, - 45.486415 - ], - [ - -73.44336, - 45.486118 - ], - [ - -73.44263, - 45.485517 - ], - [ - -73.442528, - 45.485434 - ], - [ - -73.441754, - 45.484812 - ], - [ - -73.440974, - 45.484193 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.440245, - 45.483633 - ], - [ - -73.43964, - 45.483201 - ], - [ - -73.439158, - 45.482826 - ], - [ - -73.439083, - 45.482768 - ], - [ - -73.438464, - 45.482318 - ], - [ - -73.437642, - 45.481754 - ], - [ - -73.437512, - 45.481665 - ], - [ - -73.437014, - 45.481332 - ], - [ - -73.436032, - 45.48066 - ], - [ - -73.435909, - 45.480575 - ], - [ - -73.43514, - 45.480067 - ], - [ - -73.433834, - 45.479178 - ], - [ - -73.433717, - 45.479098 - ], - [ - -73.432962, - 45.478594 - ], - [ - -73.431689, - 45.477709 - ], - [ - -73.431589, - 45.477639 - ], - [ - -73.431156, - 45.477363 - ], - [ - -73.430831, - 45.477155 - ], - [ - -73.430771, - 45.477117 - ], - [ - -73.430341, - 45.476838 - ], - [ - -73.430884, - 45.476699 - ], - [ - -73.43099, - 45.476671 - ], - [ - -73.431132, - 45.476635 - ], - [ - -73.431616, - 45.47651 - ], - [ - -73.432188, - 45.476362 - ], - [ - -73.434429, - 45.475783 - ], - [ - -73.435111, - 45.475601 - ], - [ - -73.435306, - 45.475549 - ], - [ - -73.435634, - 45.475469 - ], - [ - -73.436518, - 45.475235 - ], - [ - -73.437045, - 45.475069 - ], - [ - -73.437596, - 45.47488 - ], - [ - -73.437872, - 45.474768 - ], - [ - -73.438084, - 45.474678 - ], - [ - -73.438208, - 45.47462 - ], - [ - -73.43841, - 45.474525 - ], - [ - -73.438836, - 45.474314 - ], - [ - -73.43909, - 45.474175 - ], - [ - -73.440044, - 45.473644 - ], - [ - -73.440381, - 45.473457 - ], - [ - -73.440538, - 45.47337 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.440904, - 45.473168 - ], - [ - -73.441015, - 45.473108 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.442531, - 45.47204 - ], - [ - -73.442653, - 45.471954 - ], - [ - -73.444466, - 45.470668 - ], - [ - -73.444558, - 45.470603 - ], - [ - -73.444702, - 45.470501 - ], - [ - -73.445328, - 45.470057 - ], - [ - -73.445338, - 45.470052 - ], - [ - -73.445622, - 45.469854 - ], - [ - -73.446091, - 45.469543 - ], - [ - -73.446388, - 45.469346 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.447066, - 45.468996 - ], - [ - -73.4474, - 45.468829 - ], - [ - -73.447822, - 45.468645 - ], - [ - -73.448427, - 45.468407 - ], - [ - -73.449383, - 45.468079 - ], - [ - -73.449755, - 45.467952 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450233, - 45.467787 - ], - [ - -73.451014, - 45.467517 - ], - [ - -73.451685, - 45.467271 - ], - [ - -73.451729, - 45.467255 - ], - [ - -73.451774, - 45.467238 - ], - [ - -73.452561, - 45.466966 - ], - [ - -73.452657, - 45.466933 - ], - [ - -73.453014, - 45.466803 - ], - [ - -73.45314, - 45.466749 - ], - [ - -73.453548, - 45.466537 - ], - [ - -73.453946, - 45.466304 - ], - [ - -73.454693, - 45.465786 - ], - [ - -73.454717, - 45.46577 - ], - [ - -73.45516, - 45.46545 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.45734, - 45.462831 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.45744, - 45.462394 - ], - [ - -73.45742, - 45.46227 - ], - [ - -73.457369, - 45.46218 - ], - [ - -73.457292, - 45.46211 - ], - [ - -73.457019, - 45.462007 - ], - [ - -73.45684, - 45.461988 - ], - [ - -73.456608, - 45.461964 - ], - [ - -73.456268, - 45.4619 - ], - [ - -73.456104, - 45.461814 - ], - [ - -73.455619, - 45.461465 - ], - [ - -73.454187, - 45.460437 - ], - [ - -73.45331, - 45.459807 - ], - [ - -73.453221, - 45.459743 - ], - [ - -73.452534, - 45.459239 - ], - [ - -73.451112, - 45.458216 - ], - [ - -73.450768, - 45.457969 - ], - [ - -73.450437, - 45.457731 - ], - [ - -73.450367, - 45.457403 - ], - [ - -73.450362, - 45.457232 - ], - [ - -73.450382, - 45.457097 - ], - [ - -73.450443, - 45.45693 - ], - [ - -73.450536, - 45.456792 - ], - [ - -73.451231, - 45.455762 - ], - [ - -73.451461, - 45.455422 - ], - [ - -73.45166, - 45.455126 - ], - [ - -73.451848, - 45.45487 - ], - [ - -73.4519, - 45.454812 - ], - [ - -73.451941, - 45.454767 - ], - [ - -73.452038, - 45.454708 - ], - [ - -73.452189, - 45.454636 - ], - [ - -73.451956, - 45.454402 - ], - [ - -73.451873, - 45.454344 - ], - [ - -73.45174, - 45.454276 - ], - [ - -73.451557, - 45.454204 - ], - [ - -73.451305, - 45.454127 - ], - [ - -73.450789, - 45.453945 - ], - [ - -73.450488, - 45.453839 - ], - [ - -73.450766, - 45.453502 - ], - [ - -73.45112, - 45.453219 - ], - [ - -73.451338, - 45.453061 - ], - [ - -73.451486, - 45.452953 - ], - [ - -73.45248, - 45.452271 - ], - [ - -73.452613, - 45.45218 - ], - [ - -73.453298, - 45.451699 - ], - [ - -73.452765, - 45.451316 - ], - [ - -73.452622, - 45.451213 - ], - [ - -73.453977, - 45.450264 - ], - [ - -73.454491, - 45.44992 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.455056, - 45.44954 - ], - [ - -73.454737, - 45.449301 - ], - [ - -73.454434, - 45.449102 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.454351, - 45.448928 - ], - [ - -73.454507, - 45.448806 - ], - [ - -73.454606, - 45.448707 - ], - [ - -73.454897, - 45.448293 - ], - [ - -73.455137, - 45.447929 - ], - [ - -73.455304, - 45.447709 - ], - [ - -73.455416, - 45.447619 - ], - [ - -73.455528, - 45.447551 - ], - [ - -73.455661, - 45.447479 - ], - [ - -73.455891, - 45.447386 - ], - [ - -73.455927, - 45.447371 - ], - [ - -73.456253, - 45.447264 - ], - [ - -73.456885, - 45.447052 - ], - [ - -73.457516, - 45.446841 - ], - [ - -73.457775, - 45.446755 - ], - [ - -73.458009, - 45.446676 - ], - [ - -73.458085, - 45.446651 - ], - [ - -73.458121, - 45.446639 - ], - [ - -73.45823, - 45.446598 - ], - [ - -73.458358, - 45.446536 - ], - [ - -73.458499, - 45.446437 - ], - [ - -73.458716, - 45.446252 - ], - [ - -73.458903, - 45.445978 - ], - [ - -73.45943, - 45.445177 - ], - [ - -73.459486, - 45.445092 - ], - [ - -73.460027, - 45.444237 - ], - [ - -73.460312, - 45.44381 - ], - [ - -73.460454, - 45.443598 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.461193, - 45.442453 - ], - [ - -73.461249, - 45.442366 - ], - [ - -73.461921, - 45.441345 - ], - [ - -73.46199, - 45.441264 - ], - [ - -73.462048, - 45.441208 - ], - [ - -73.462145, - 45.441115 - ], - [ - -73.462213, - 45.441057 - ], - [ - -73.46187, - 45.440814 - ], - [ - -73.461732, - 45.440683 - ], - [ - -73.461116, - 45.439982 - ], - [ - -73.4611, - 45.439963 - ], - [ - -73.460879, - 45.439666 - ], - [ - -73.460804, - 45.439527 - ], - [ - -73.460756, - 45.439374 - ], - [ - -73.460732, - 45.439261 - ], - [ - -73.46075, - 45.439158 - ], - [ - -73.460753, - 45.439144 - ], - [ - -73.460775, - 45.43905 - ], - [ - -73.460824, - 45.438928 - ], - [ - -73.460899, - 45.438784 - ], - [ - -73.461533, - 45.437805 - ], - [ - -73.462055, - 45.436998 - ], - [ - -73.462057, - 45.436995 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.462701, - 45.435982 - ], - [ - -73.463836, - 45.436306 - ], - [ - -73.463949, - 45.43609 - ], - [ - -73.464019, - 45.435972 - ], - [ - -73.464042, - 45.435933 - ], - [ - -73.464129, - 45.435726 - ], - [ - -73.464208, - 45.435541 - ], - [ - -73.464217, - 45.435519 - ], - [ - -73.464262, - 45.435411 - ], - [ - -73.464363, - 45.435226 - ], - [ - -73.464402, - 45.435154 - ], - [ - -73.464983, - 45.434165 - ], - [ - -73.465299, - 45.433615 - ], - [ - -73.465352, - 45.433521 - ], - [ - -73.466273, - 45.43385 - ], - [ - -73.468914, - 45.434725 - ], - [ - -73.469086, - 45.434782 - ], - [ - -73.469951, - 45.435071 - ], - [ - -73.470598, - 45.435287 - ], - [ - -73.470685, - 45.435314 - ], - [ - -73.470856, - 45.435367 - ], - [ - -73.471308, - 45.435507 - ], - [ - -73.471316, - 45.43551 - ], - [ - -73.471657, - 45.43562 - ], - [ - -73.472058, - 45.435759 - ], - [ - -73.471139, - 45.437154 - ], - [ - -73.471113, - 45.437194 - ], - [ - -73.471037, - 45.437237 - ], - [ - -73.470968, - 45.437275 - ], - [ - -73.470767, - 45.437505 - ], - [ - -73.470657, - 45.43764 - ], - [ - -73.470585, - 45.437793 - ], - [ - -73.470582, - 45.437803 - ] - ] - }, - "id": 282, - "properties": { - "id": "07f399e0-0319-4541-8317-6044a2cd094e", - "data": { - "gtfs": { - "shape_id": "533_2_R" - }, - "segments": [ - { - "distanceMeters": 757, - "travelTimeSeconds": 105 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 91, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 343, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 514, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 45 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9935, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6209.141183844406, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.2, - "travelTimeWithoutDwellTimesSeconds": 1380, - "operatingTimeWithLayoverTimeSeconds": 1560, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1380, - "operatingSpeedWithLayoverMetersPerSecond": 6.37, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.2 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", - "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", - "cd932703-83f9-4acf-94fa-d521e6d427d0", - "a09ea856-287c-4215-ad6a-dab05db66e7a", - "a17f387c-1398-49f4-8a7b-291d91ebc51f", - "71881b96-39d5-48ea-9242-5e05ded39cda", - "71881b96-39d5-48ea-9242-5e05ded39cda", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "46c30d80-c93e-497b-a096-3a7c13e3723f", - "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", - "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "4fc83229-a15e-48e1-aa4f-fae0073dacf9", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "30d24143-abd0-4a47-955d-cdbc3943ae61", - "47d3a0e8-5db6-4263-911d-0835de2b9cb0", - "c01e4d9c-c5df-425f-9b40-215a62d76b50", - "5781af67-07a2-4732-99f5-af7b2835e18a", - "800b4ca8-f540-48ef-9acf-ec6d45db3496", - "db56dff4-d82c-4b2d-ad34-35b3db3f27de", - "0087674f-0098-4bab-9a77-b31eb3602613", - "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", - "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", - "fd4f887b-9300-41e3-8cc1-44b80109a4ad", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "8b7e764f-0227-410c-89b9-51b9a8ad8c88", - "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", - "57126f14-f5bb-4578-a4ae-48d75eae5e82", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "9b31d865-da9f-4eb8-b8a9-3d488eb579df", - "b93691d0-438e-4eac-87a0-7c1ac45a7c18", - "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", - "19a4f64a-0169-40b9-8b9c-84de3158151e", - "c7e2639a-bb94-426e-918b-714f0212d53b", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "e990ec2d-e586-4b2f-884d-4124f22426b3", - "1d638a17-5a2b-40f7-a0cc-6db81666104e", - "f36c7de3-84dd-4573-ac69-91ccd87efd4f", - "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", - "3eb5b313-c26d-472e-a3c1-397c7596c769" - ], - "stops": [], - "line_id": "2acfbc68-29a8-4710-9e84-11fdcfa10002", - "segments": [ - 0, - 38, - 41, - 45, - 48, - 51, - 54, - 57, - 60, - 64, - 69, - 77, - 83, - 88, - 92, - 97, - 104, - 111, - 118, - 136, - 140, - 141, - 142, - 146, - 153, - 157, - 166, - 170, - 175, - 178, - 182, - 193, - 198, - 207, - 210, - 213, - 217, - 222, - 228, - 233, - 235, - 240, - 249, - 252, - 259 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 282, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.455176, - 45.429296 - ], - [ - -73.45515, - 45.429313 - ], - [ - -73.454933, - 45.42945 - ], - [ - -73.454809, - 45.429506 - ], - [ - -73.454657, - 45.429588 - ], - [ - -73.454225, - 45.429797 - ], - [ - -73.453566, - 45.430073 - ], - [ - -73.453131, - 45.430253 - ], - [ - -73.452234, - 45.430624 - ], - [ - -73.451821, - 45.430796 - ], - [ - -73.451723, - 45.43084 - ], - [ - -73.451457, - 45.430959 - ], - [ - -73.451306, - 45.431026 - ], - [ - -73.450883, - 45.431238 - ], - [ - -73.450399, - 45.431499 - ], - [ - -73.449891, - 45.431803 - ], - [ - -73.449325, - 45.43218 - ], - [ - -73.448785, - 45.432585 - ], - [ - -73.448377, - 45.432935 - ], - [ - -73.447875, - 45.433413 - ], - [ - -73.447643, - 45.43369 - ], - [ - -73.44745, - 45.433901 - ], - [ - -73.447206, - 45.434187 - ], - [ - -73.447139, - 45.434272 - ], - [ - -73.447325, - 45.434288 - ], - [ - -73.447496, - 45.434296 - ], - [ - -73.447559, - 45.434294 - ], - [ - -73.447672, - 45.43429 - ], - [ - -73.447825, - 45.434283 - ], - [ - -73.448052, - 45.43426 - ], - [ - -73.448578, - 45.434176 - ], - [ - -73.448705, - 45.434165 - ], - [ - -73.448848, - 45.434152 - ], - [ - -73.449804, - 45.434095 - ], - [ - -73.450056, - 45.43408 - ], - [ - -73.451331, - 45.433994 - ], - [ - -73.451404, - 45.433989 - ], - [ - -73.452574, - 45.433909 - ], - [ - -73.452708, - 45.433899 - ], - [ - -73.453072, - 45.433895 - ], - [ - -73.453186, - 45.433903 - ], - [ - -73.453328, - 45.433913 - ], - [ - -73.453345, - 45.433915 - ], - [ - -73.45361, - 45.433947 - ], - [ - -73.453629, - 45.433949 - ], - [ - -73.453651, - 45.433954 - ], - [ - -73.453902, - 45.434003 - ], - [ - -73.454123, - 45.434057 - ], - [ - -73.45503, - 45.434305 - ], - [ - -73.455549, - 45.434449 - ], - [ - -73.455955, - 45.434571 - ], - [ - -73.456012, - 45.43459 - ], - [ - -73.456028, - 45.434596 - ], - [ - -73.456351, - 45.434706 - ], - [ - -73.45674, - 45.434846 - ], - [ - -73.457423, - 45.435094 - ], - [ - -73.457584, - 45.435152 - ], - [ - -73.458325, - 45.435421 - ], - [ - -73.459087, - 45.435697 - ], - [ - -73.459599, - 45.435873 - ], - [ - -73.459868, - 45.435958 - ], - [ - -73.4602, - 45.436053 - ], - [ - -73.46028, - 45.436076 - ], - [ - -73.461443, - 45.436418 - ], - [ - -73.462121, - 45.436612 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.462155, - 45.436844 - ], - [ - -73.461435, - 45.437956 - ], - [ - -73.460899, - 45.438784 - ], - [ - -73.460824, - 45.438928 - ], - [ - -73.460775, - 45.43905 - ], - [ - -73.460753, - 45.439144 - ], - [ - -73.460743, - 45.439198 - ], - [ - -73.460732, - 45.439261 - ], - [ - -73.460756, - 45.439374 - ], - [ - -73.460804, - 45.439527 - ], - [ - -73.460879, - 45.439666 - ], - [ - -73.4611, - 45.439963 - ], - [ - -73.461732, - 45.440683 - ], - [ - -73.46187, - 45.440814 - ], - [ - -73.461963, - 45.44088 - ], - [ - -73.462101, - 45.440977 - ], - [ - -73.462213, - 45.441057 - ], - [ - -73.462145, - 45.441115 - ], - [ - -73.46199, - 45.441264 - ], - [ - -73.461921, - 45.441345 - ], - [ - -73.461303, - 45.442284 - ], - [ - -73.461249, - 45.442366 - ], - [ - -73.460616, - 45.443348 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.460454, - 45.443598 - ], - [ - -73.460027, - 45.444237 - ], - [ - -73.459529, - 45.445024 - ], - [ - -73.459486, - 45.445092 - ], - [ - -73.458903, - 45.445978 - ], - [ - -73.458716, - 45.446252 - ], - [ - -73.458499, - 45.446437 - ], - [ - -73.458358, - 45.446536 - ], - [ - -73.45823, - 45.446598 - ], - [ - -73.458121, - 45.446639 - ], - [ - -73.458107, - 45.446644 - ], - [ - -73.458085, - 45.446651 - ], - [ - -73.458009, - 45.446676 - ], - [ - -73.457516, - 45.446841 - ], - [ - -73.456885, - 45.447052 - ], - [ - -73.456385, - 45.44722 - ], - [ - -73.456253, - 45.447264 - ], - [ - -73.455927, - 45.447371 - ], - [ - -73.455661, - 45.447479 - ], - [ - -73.455528, - 45.447551 - ], - [ - -73.455416, - 45.447619 - ], - [ - -73.455304, - 45.447709 - ], - [ - -73.455137, - 45.447929 - ], - [ - -73.454897, - 45.448293 - ], - [ - -73.454606, - 45.448707 - ], - [ - -73.454507, - 45.448806 - ], - [ - -73.454411, - 45.448881 - ], - [ - -73.454351, - 45.448928 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.454088, - 45.449121 - ], - [ - -73.454556, - 45.449427 - ], - [ - -73.454802, - 45.449614 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.453977, - 45.450264 - ], - [ - -73.453506, - 45.450594 - ], - [ - -73.452729, - 45.451138 - ], - [ - -73.452622, - 45.451213 - ], - [ - -73.453298, - 45.451699 - ], - [ - -73.452613, - 45.45218 - ], - [ - -73.45248, - 45.452271 - ], - [ - -73.451625, - 45.452857 - ], - [ - -73.451486, - 45.452953 - ], - [ - -73.45112, - 45.453219 - ], - [ - -73.450766, - 45.453502 - ], - [ - -73.450723, - 45.453554 - ], - [ - -73.450488, - 45.453839 - ], - [ - -73.451305, - 45.454127 - ], - [ - -73.451557, - 45.454204 - ], - [ - -73.45174, - 45.454276 - ], - [ - -73.451873, - 45.454344 - ], - [ - -73.451956, - 45.454402 - ], - [ - -73.452096, - 45.454543 - ], - [ - -73.452189, - 45.454636 - ], - [ - -73.452038, - 45.454708 - ], - [ - -73.451941, - 45.454767 - ], - [ - -73.451848, - 45.45487 - ], - [ - -73.45166, - 45.455126 - ], - [ - -73.451461, - 45.455422 - ], - [ - -73.451253, - 45.45573 - ], - [ - -73.450443, - 45.45693 - ], - [ - -73.450382, - 45.457097 - ], - [ - -73.450362, - 45.457232 - ], - [ - -73.450367, - 45.457403 - ], - [ - -73.450397, - 45.457544 - ], - [ - -73.450437, - 45.457731 - ], - [ - -73.451112, - 45.458216 - ], - [ - -73.451165, - 45.458254 - ], - [ - -73.452534, - 45.459239 - ], - [ - -73.453096, - 45.459651 - ], - [ - -73.453221, - 45.459743 - ], - [ - -73.454642, - 45.460764 - ], - [ - -73.456104, - 45.461814 - ], - [ - -73.456268, - 45.4619 - ], - [ - -73.456608, - 45.461964 - ], - [ - -73.457019, - 45.462007 - ], - [ - -73.457292, - 45.46211 - ], - [ - -73.457369, - 45.46218 - ], - [ - -73.45742, - 45.46227 - ], - [ - -73.45744, - 45.462394 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.454662, - 45.465619 - ], - [ - -73.45456, - 45.465692 - ], - [ - -73.453819, - 45.466205 - ], - [ - -73.453432, - 45.466434 - ], - [ - -73.453035, - 45.466641 - ], - [ - -73.452922, - 45.46669 - ], - [ - -73.452782, - 45.46675 - ], - [ - -73.452589, - 45.466834 - ], - [ - -73.451705, - 45.467139 - ], - [ - -73.451627, - 45.467166 - ], - [ - -73.45158, - 45.467183 - ], - [ - -73.451012, - 45.467379 - ], - [ - -73.450937, - 45.467405 - ], - [ - -73.450156, - 45.467679 - ], - [ - -73.449888, - 45.467769 - ], - [ - -73.449338, - 45.467948 - ], - [ - -73.44837, - 45.46829 - ], - [ - -73.447748, - 45.468524 - ], - [ - -73.447289, - 45.468721 - ], - [ - -73.446434, - 45.469165 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445905, - 45.469485 - ], - [ - -73.445671, - 45.469643 - ], - [ - -73.445475, - 45.469778 - ], - [ - -73.445396, - 45.469832 - ], - [ - -73.445298, - 45.469899 - ], - [ - -73.444328, - 45.470583 - ], - [ - -73.444076, - 45.470761 - ], - [ - -73.442658, - 45.471761 - ], - [ - -73.442644, - 45.471771 - ], - [ - -73.442519, - 45.471859 - ], - [ - -73.441942, - 45.47227 - ], - [ - -73.441022, - 45.472925 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.440777, - 45.473082 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.439918, - 45.473559 - ], - [ - -73.438731, - 45.47422 - ], - [ - -73.438304, - 45.474435 - ], - [ - -73.43827, - 45.474451 - ], - [ - -73.437984, - 45.474579 - ], - [ - -73.437774, - 45.474669 - ], - [ - -73.437493, - 45.474781 - ], - [ - -73.436979, - 45.47497 - ], - [ - -73.436441, - 45.475136 - ], - [ - -73.43565, - 45.475338 - ], - [ - -73.435359, - 45.475413 - ], - [ - -73.435246, - 45.475441 - ], - [ - -73.434371, - 45.475675 - ], - [ - -73.433734, - 45.475838 - ], - [ - -73.43213, - 45.476249 - ], - [ - -73.430984, - 45.476543 - ], - [ - -73.430442, - 45.476682 - ], - [ - -73.430219, - 45.476739 - ], - [ - -73.43007, - 45.476775 - ], - [ - -73.430191, - 45.476874 - ], - [ - -73.430682, - 45.477184 - ], - [ - -73.43148, - 45.477725 - ], - [ - -73.431576, - 45.477791 - ], - [ - -73.431924, - 45.478029 - ], - [ - -73.432859, - 45.478671 - ], - [ - -73.433474, - 45.479089 - ], - [ - -73.433608, - 45.479179 - ], - [ - -73.435032, - 45.480148 - ], - [ - -73.435713, - 45.480606 - ], - [ - -73.435802, - 45.480665 - ], - [ - -73.4369, - 45.481417 - ], - [ - -73.437309, - 45.481697 - ], - [ - -73.437407, - 45.481764 - ], - [ - -73.438338, - 45.48239 - ], - [ - -73.438859, - 45.482757 - ], - [ - -73.438971, - 45.482836 - ], - [ - -73.439533, - 45.483272 - ], - [ - -73.440126, - 45.483709 - ], - [ - -73.440671, - 45.484127 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.441193, - 45.484535 - ], - [ - -73.441638, - 45.484884 - ], - [ - -73.44227, - 45.485402 - ], - [ - -73.44238, - 45.485492 - ], - [ - -73.442979, - 45.48598 - ], - [ - -73.443236, - 45.48619 - ], - [ - -73.443584, - 45.486491 - ], - [ - -73.443685, - 45.486573 - ], - [ - -73.443945, - 45.486785 - ], - [ - -73.444066, - 45.486883 - ], - [ - -73.444405, - 45.487149 - ], - [ - -73.44464, - 45.487266 - ], - [ - -73.444883, - 45.487369 - ], - [ - -73.445062, - 45.487428 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 283, - "properties": { - "id": "57b09844-7ff4-43e0-971b-f651c6a482f2", - "data": { - "gtfs": { - "shape_id": "534_1_A" - }, - "segments": [ - { - "distanceMeters": 345, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 629, - "travelTimeSeconds": 102 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 36, - "travelTimeSeconds": 5 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 727, - "travelTimeSeconds": 117 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 61, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 605, - "travelTimeSeconds": 98 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10736, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6873.693590857519, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.17, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 5.59, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.17 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "dca1f1af-a3cf-4dc0-9b7c-88db3f7a9ff7", - "1e5e280b-187c-453e-ae50-34515416c146", - "d26ce5e1-6c58-4e66-9161-bd0bb569b92f", - "95267540-c736-4584-b843-23c799e4aa83", - "8162eb5c-436c-4cc2-b9dd-2d13a57dd8d8", - "75a6ca63-e257-4bc0-9a35-e9f67206fdfb", - "dc444f91-de90-48b4-9750-8ab69f40baf5", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "c7e2639a-bb94-426e-918b-714f0212d53b", - "19a4f64a-0169-40b9-8b9c-84de3158151e", - "b93691d0-438e-4eac-87a0-7c1ac45a7c18", - "9b31d865-da9f-4eb8-b8a9-3d488eb579df", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "57126f14-f5bb-4578-a4ae-48d75eae5e82", - "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", - "8b7e764f-0227-410c-89b9-51b9a8ad8c88", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", - "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", - "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", - "0087674f-0098-4bab-9a77-b31eb3602613", - "db56dff4-d82c-4b2d-ad34-35b3db3f27de", - "800b4ca8-f540-48ef-9acf-ec6d45db3496", - "0c735a18-4964-435c-ad38-89ab21a47f83", - "c01e4d9c-c5df-425f-9b40-215a62d76b50", - "4ca26d1e-a5a2-4d1a-ba5a-7bed9b5a1bee", - "bd9b4c12-08ed-4715-ae67-eb179ed7f974", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "ff779c9a-cd83-463a-8d0c-a93f3584a187", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", - "c8919560-2bb2-4063-8184-8e6c296badbe", - "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", - "a17f387c-1398-49f4-8a7b-291d91ebc51f", - "a09ea856-287c-4215-ad6a-dab05db66e7a", - "cd932703-83f9-4acf-94fa-d521e6d427d0", - "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", - "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "e72d0d41-60dd-429c-9fc0-986190945d76", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "7cb07ff6-0477-4319-a77c-2829010873b5", - "segments": [ - 0, - 11, - 31, - 35, - 43, - 51, - 57, - 64, - 66, - 67, - 72, - 81, - 86, - 88, - 92, - 100, - 105, - 116, - 121, - 125, - 130, - 134, - 141, - 148, - 153, - 158, - 160, - 178, - 184, - 189, - 197, - 205, - 206, - 210, - 217, - 224, - 230, - 236, - 239, - 242, - 245, - 248, - 252, - 254, - 256, - 262 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 283, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445508, - 45.489489 - ], - [ - -73.4453, - 45.489165 - ], - [ - -73.445238, - 45.489052 - ], - [ - -73.445212, - 45.488985 - ], - [ - -73.445181, - 45.488904 - ], - [ - -73.445074, - 45.488728 - ], - [ - -73.445053, - 45.488544 - ], - [ - -73.445044, - 45.488377 - ], - [ - -73.445046, - 45.488242 - ], - [ - -73.445073, - 45.488085 - ], - [ - -73.445118, - 45.487932 - ], - [ - -73.445182, - 45.487779 - ], - [ - -73.445261, - 45.48759 - ], - [ - -73.445319, - 45.487496 - ], - [ - -73.445386, - 45.487388 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445129, - 45.48732 - ], - [ - -73.444962, - 45.487262 - ], - [ - -73.444731, - 45.487167 - ], - [ - -73.444565, - 45.487086 - ], - [ - -73.444194, - 45.486807 - ], - [ - -73.443808, - 45.486496 - ], - [ - -73.443706, - 45.486415 - ], - [ - -73.44336, - 45.486118 - ], - [ - -73.442631, - 45.485518 - ], - [ - -73.442528, - 45.485434 - ], - [ - -73.441754, - 45.484812 - ], - [ - -73.440976, - 45.484194 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.440245, - 45.483633 - ], - [ - -73.43964, - 45.483201 - ], - [ - -73.439159, - 45.482827 - ], - [ - -73.439083, - 45.482768 - ], - [ - -73.438464, - 45.482318 - ], - [ - -73.437644, - 45.481756 - ], - [ - -73.437512, - 45.481665 - ], - [ - -73.437014, - 45.481332 - ], - [ - -73.436034, - 45.480661 - ], - [ - -73.435909, - 45.480575 - ], - [ - -73.43514, - 45.480067 - ], - [ - -73.433836, - 45.47918 - ], - [ - -73.433717, - 45.479098 - ], - [ - -73.432962, - 45.478594 - ], - [ - -73.431692, - 45.477711 - ], - [ - -73.431589, - 45.477639 - ], - [ - -73.431156, - 45.477363 - ], - [ - -73.430834, - 45.477157 - ], - [ - -73.430771, - 45.477117 - ], - [ - -73.430341, - 45.476838 - ], - [ - -73.430884, - 45.476699 - ], - [ - -73.430986, - 45.476673 - ], - [ - -73.431376, - 45.476572 - ], - [ - -73.431616, - 45.47651 - ], - [ - -73.432188, - 45.476362 - ], - [ - -73.434429, - 45.475783 - ], - [ - -73.435106, - 45.475603 - ], - [ - -73.435306, - 45.475549 - ], - [ - -73.435634, - 45.475469 - ], - [ - -73.436518, - 45.475235 - ], - [ - -73.437045, - 45.475069 - ], - [ - -73.437596, - 45.47488 - ], - [ - -73.437872, - 45.474768 - ], - [ - -73.438084, - 45.474678 - ], - [ - -73.438204, - 45.474622 - ], - [ - -73.43841, - 45.474525 - ], - [ - -73.438836, - 45.474314 - ], - [ - -73.43909, - 45.474175 - ], - [ - -73.440044, - 45.473644 - ], - [ - -73.440381, - 45.473457 - ], - [ - -73.440533, - 45.473373 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.440904, - 45.473168 - ], - [ - -73.441015, - 45.473108 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.442526, - 45.472043 - ], - [ - -73.442653, - 45.471954 - ], - [ - -73.444466, - 45.470668 - ], - [ - -73.444558, - 45.470603 - ], - [ - -73.444697, - 45.470504 - ], - [ - -73.445328, - 45.470057 - ], - [ - -73.445338, - 45.470052 - ], - [ - -73.445622, - 45.469854 - ], - [ - -73.446091, - 45.469543 - ], - [ - -73.446383, - 45.469349 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.447066, - 45.468996 - ], - [ - -73.4474, - 45.468829 - ], - [ - -73.447822, - 45.468645 - ], - [ - -73.448427, - 45.468407 - ], - [ - -73.449383, - 45.468079 - ], - [ - -73.449747, - 45.467955 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450233, - 45.467787 - ], - [ - -73.451014, - 45.467517 - ], - [ - -73.451685, - 45.467271 - ], - [ - -73.451729, - 45.467255 - ], - [ - -73.451774, - 45.467238 - ], - [ - -73.452553, - 45.466969 - ], - [ - -73.452657, - 45.466933 - ], - [ - -73.453014, - 45.466803 - ], - [ - -73.45314, - 45.466749 - ], - [ - -73.453548, - 45.466537 - ], - [ - -73.453946, - 45.466304 - ], - [ - -73.454693, - 45.465786 - ], - [ - -73.45471, - 45.465774 - ], - [ - -73.45516, - 45.46545 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.45734, - 45.462831 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.45744, - 45.462394 - ], - [ - -73.45742, - 45.46227 - ], - [ - -73.457369, - 45.46218 - ], - [ - -73.457292, - 45.46211 - ], - [ - -73.457019, - 45.462007 - ], - [ - -73.45685, - 45.461989 - ], - [ - -73.456608, - 45.461964 - ], - [ - -73.456268, - 45.4619 - ], - [ - -73.456104, - 45.461814 - ], - [ - -73.455626, - 45.461471 - ], - [ - -73.454194, - 45.460442 - ], - [ - -73.453317, - 45.459812 - ], - [ - -73.453221, - 45.459743 - ], - [ - -73.452534, - 45.459239 - ], - [ - -73.451112, - 45.458216 - ], - [ - -73.450776, - 45.457975 - ], - [ - -73.450437, - 45.457731 - ], - [ - -73.450367, - 45.457403 - ], - [ - -73.450362, - 45.457232 - ], - [ - -73.450382, - 45.457097 - ], - [ - -73.450443, - 45.45693 - ], - [ - -73.450536, - 45.456792 - ], - [ - -73.451226, - 45.45577 - ], - [ - -73.451461, - 45.455422 - ], - [ - -73.45166, - 45.455126 - ], - [ - -73.451848, - 45.45487 - ], - [ - -73.451894, - 45.45482 - ], - [ - -73.451941, - 45.454767 - ], - [ - -73.452038, - 45.454708 - ], - [ - -73.452189, - 45.454636 - ], - [ - -73.451956, - 45.454402 - ], - [ - -73.451873, - 45.454344 - ], - [ - -73.45174, - 45.454276 - ], - [ - -73.451557, - 45.454204 - ], - [ - -73.451305, - 45.454127 - ], - [ - -73.4508, - 45.453949 - ], - [ - -73.450488, - 45.453839 - ], - [ - -73.450766, - 45.453502 - ], - [ - -73.45112, - 45.453219 - ], - [ - -73.451329, - 45.453067 - ], - [ - -73.451486, - 45.452953 - ], - [ - -73.45248, - 45.452271 - ], - [ - -73.452613, - 45.45218 - ], - [ - -73.453298, - 45.451699 - ], - [ - -73.452775, - 45.451322 - ], - [ - -73.452622, - 45.451213 - ], - [ - -73.453977, - 45.450264 - ], - [ - -73.454481, - 45.449926 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.455056, - 45.44954 - ], - [ - -73.454737, - 45.449301 - ], - [ - -73.454444, - 45.449109 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.454351, - 45.448928 - ], - [ - -73.454507, - 45.448806 - ], - [ - -73.454606, - 45.448707 - ], - [ - -73.454897, - 45.448293 - ], - [ - -73.455137, - 45.447929 - ], - [ - -73.455304, - 45.447709 - ], - [ - -73.455416, - 45.447619 - ], - [ - -73.455528, - 45.447551 - ], - [ - -73.455661, - 45.447479 - ], - [ - -73.455878, - 45.447391 - ], - [ - -73.455927, - 45.447371 - ], - [ - -73.456253, - 45.447264 - ], - [ - -73.456885, - 45.447052 - ], - [ - -73.457516, - 45.446841 - ], - [ - -73.457761, - 45.446759 - ], - [ - -73.458009, - 45.446676 - ], - [ - -73.458085, - 45.446651 - ], - [ - -73.458121, - 45.446639 - ], - [ - -73.45823, - 45.446598 - ], - [ - -73.458358, - 45.446536 - ], - [ - -73.458499, - 45.446437 - ], - [ - -73.458716, - 45.446252 - ], - [ - -73.458903, - 45.445978 - ], - [ - -73.459423, - 45.445187 - ], - [ - -73.459486, - 45.445092 - ], - [ - -73.460027, - 45.444237 - ], - [ - -73.460306, - 45.44382 - ], - [ - -73.460454, - 45.443598 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.461186, - 45.442463 - ], - [ - -73.461249, - 45.442366 - ], - [ - -73.461921, - 45.441345 - ], - [ - -73.46199, - 45.441264 - ], - [ - -73.462038, - 45.441217 - ], - [ - -73.462145, - 45.441115 - ], - [ - -73.462213, - 45.441057 - ], - [ - -73.46187, - 45.440814 - ], - [ - -73.461732, - 45.440683 - ], - [ - -73.461701, - 45.440648 - ], - [ - -73.461125, - 45.439992 - ], - [ - -73.4611, - 45.439963 - ], - [ - -73.460879, - 45.439666 - ], - [ - -73.460804, - 45.439527 - ], - [ - -73.460756, - 45.439374 - ], - [ - -73.460732, - 45.439261 - ], - [ - -73.460748, - 45.43917 - ], - [ - -73.460753, - 45.439144 - ], - [ - -73.460775, - 45.43905 - ], - [ - -73.460824, - 45.438928 - ], - [ - -73.460899, - 45.438784 - ], - [ - -73.461525, - 45.437816 - ], - [ - -73.46205, - 45.437006 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.461792, - 45.436518 - ], - [ - -73.461443, - 45.436418 - ], - [ - -73.46028, - 45.436076 - ], - [ - -73.4602, - 45.436053 - ], - [ - -73.459868, - 45.435958 - ], - [ - -73.459599, - 45.435873 - ], - [ - -73.459087, - 45.435697 - ], - [ - -73.458347, - 45.435429 - ], - [ - -73.457584, - 45.435152 - ], - [ - -73.457423, - 45.435094 - ], - [ - -73.45674, - 45.434846 - ], - [ - -73.456351, - 45.434706 - ], - [ - -73.456102, - 45.434621 - ], - [ - -73.456028, - 45.434596 - ], - [ - -73.455955, - 45.434571 - ], - [ - -73.455549, - 45.434449 - ], - [ - -73.45503, - 45.434305 - ], - [ - -73.454123, - 45.434057 - ], - [ - -73.453902, - 45.434003 - ], - [ - -73.453695, - 45.433962 - ], - [ - -73.453651, - 45.433954 - ], - [ - -73.453629, - 45.433949 - ], - [ - -73.453345, - 45.433915 - ], - [ - -73.453328, - 45.433913 - ], - [ - -73.453186, - 45.433903 - ], - [ - -73.453072, - 45.433895 - ], - [ - -73.452708, - 45.433899 - ], - [ - -73.452574, - 45.433909 - ], - [ - -73.451609, - 45.433975 - ], - [ - -73.451404, - 45.433989 - ], - [ - -73.450056, - 45.43408 - ], - [ - -73.449804, - 45.434095 - ], - [ - -73.449072, - 45.434139 - ], - [ - -73.448848, - 45.434152 - ], - [ - -73.448578, - 45.434176 - ], - [ - -73.448472, - 45.434175 - ], - [ - -73.448255, - 45.434181 - ], - [ - -73.448109, - 45.43419 - ], - [ - -73.447833, - 45.434203 - ], - [ - -73.447405, - 45.434193 - ], - [ - -73.447515, - 45.434057 - ], - [ - -73.447812, - 45.43372 - ], - [ - -73.44808, - 45.433435 - ], - [ - -73.448286, - 45.433242 - ], - [ - -73.448467, - 45.433072 - ], - [ - -73.448834, - 45.432756 - ], - [ - -73.449139, - 45.432514 - ], - [ - -73.449431, - 45.432297 - ], - [ - -73.44953, - 45.432225 - ], - [ - -73.449956, - 45.431941 - ], - [ - -73.450305, - 45.431728 - ], - [ - -73.450787, - 45.431457 - ], - [ - -73.451268, - 45.431211 - ], - [ - -73.451712, - 45.431001 - ], - [ - -73.451764, - 45.430974 - ], - [ - -73.451808, - 45.430952 - ], - [ - -73.451911, - 45.430904 - ], - [ - -73.452123, - 45.43081 - ], - [ - -73.452869, - 45.430501 - ], - [ - -73.453778, - 45.430126 - ], - [ - -73.454571, - 45.429789 - ], - [ - -73.454843, - 45.429639 - ] - ] - }, - "id": 284, - "properties": { - "id": "61a9c375-40d0-43b3-bd26-b98dca6234a5", - "data": { - "gtfs": { - "shape_id": "534_2_R" - }, - "segments": [ - { - "distanceMeters": 757, - "travelTimeSeconds": 132 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 91, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 343, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 514, - "travelTimeSeconds": 90 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 630, - "travelTimeSeconds": 111 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 50 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 186, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10599, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6873.693590857519, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.7, - "travelTimeWithoutDwellTimesSeconds": 1860, - "operatingTimeWithLayoverTimeSeconds": 2046, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1860, - "operatingSpeedWithLayoverMetersPerSecond": 5.18, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.7 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", - "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", - "cd932703-83f9-4acf-94fa-d521e6d427d0", - "a09ea856-287c-4215-ad6a-dab05db66e7a", - "a17f387c-1398-49f4-8a7b-291d91ebc51f", - "71881b96-39d5-48ea-9242-5e05ded39cda", - "71881b96-39d5-48ea-9242-5e05ded39cda", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "46c30d80-c93e-497b-a096-3a7c13e3723f", - "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", - "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "4fc83229-a15e-48e1-aa4f-fae0073dacf9", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "30d24143-abd0-4a47-955d-cdbc3943ae61", - "47d3a0e8-5db6-4263-911d-0835de2b9cb0", - "c01e4d9c-c5df-425f-9b40-215a62d76b50", - "5781af67-07a2-4732-99f5-af7b2835e18a", - "800b4ca8-f540-48ef-9acf-ec6d45db3496", - "db56dff4-d82c-4b2d-ad34-35b3db3f27de", - "0087674f-0098-4bab-9a77-b31eb3602613", - "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", - "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", - "fd4f887b-9300-41e3-8cc1-44b80109a4ad", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "8b7e764f-0227-410c-89b9-51b9a8ad8c88", - "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", - "57126f14-f5bb-4578-a4ae-48d75eae5e82", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "9b31d865-da9f-4eb8-b8a9-3d488eb579df", - "b93691d0-438e-4eac-87a0-7c1ac45a7c18", - "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", - "19a4f64a-0169-40b9-8b9c-84de3158151e", - "c7e2639a-bb94-426e-918b-714f0212d53b", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "dc444f91-de90-48b4-9750-8ab69f40baf5", - "75a6ca63-e257-4bc0-9a35-e9f67206fdfb", - "8162eb5c-436c-4cc2-b9dd-2d13a57dd8d8", - "95267540-c736-4584-b843-23c799e4aa83", - "d26ce5e1-6c58-4e66-9161-bd0bb569b92f", - "601fc633-4aed-4e9a-b678-52e4dedfe19d", - "dca1f1af-a3cf-4dc0-9b7c-88db3f7a9ff7" - ], - "stops": [], - "line_id": "7cb07ff6-0477-4319-a77c-2829010873b5", - "segments": [ - 0, - 38, - 41, - 45, - 48, - 51, - 54, - 57, - 60, - 64, - 69, - 77, - 83, - 88, - 92, - 97, - 104, - 111, - 118, - 136, - 140, - 141, - 142, - 146, - 153, - 157, - 166, - 170, - 175, - 178, - 182, - 193, - 198, - 207, - 210, - 213, - 217, - 223, - 229, - 234, - 235, - 244, - 249, - 256, - 265, - 269, - 291 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 284, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.49157, - 45.501681 - ], - [ - -73.49208, - 45.501204 - ], - [ - -73.493769, - 45.499625 - ], - [ - -73.493836, - 45.499562 - ], - [ - -73.494216, - 45.499211 - ], - [ - -73.494944, - 45.498535 - ], - [ - -73.496141, - 45.497424 - ], - [ - -73.496207, - 45.497362 - ], - [ - -73.495967, - 45.497229 - ], - [ - -73.495841, - 45.497159 - ], - [ - -73.495426, - 45.496935 - ], - [ - -73.495021, - 45.496723 - ], - [ - -73.494839, - 45.496629 - ], - [ - -73.494644, - 45.49653 - ], - [ - -73.494255, - 45.496323 - ], - [ - -73.49388, - 45.496118 - ], - [ - -73.493736, - 45.496039 - ], - [ - -73.493501, - 45.496255 - ], - [ - -73.493312, - 45.49643 - ], - [ - -73.492313, - 45.497355 - ], - [ - -73.492247, - 45.497416 - ], - [ - -73.491955, - 45.49769 - ], - [ - -73.491359, - 45.498257 - ], - [ - -73.491353, - 45.498262 - ], - [ - -73.491043, - 45.498549 - ], - [ - -73.490098, - 45.499422 - ], - [ - -73.490037, - 45.499482 - ], - [ - -73.489939, - 45.49958 - ], - [ - -73.488349, - 45.501054 - ], - [ - -73.488187, - 45.501204 - ], - [ - -73.487936, - 45.501136 - ], - [ - -73.487909, - 45.501129 - ], - [ - -73.487728, - 45.501082 - ], - [ - -73.487613, - 45.501033 - ], - [ - -73.487525, - 45.50074 - ], - [ - -73.487509, - 45.500686 - ], - [ - -73.487464, - 45.50056 - ], - [ - -73.487346, - 45.500232 - ], - [ - -73.487139, - 45.499795 - ], - [ - -73.486985, - 45.499512 - ], - [ - -73.486847, - 45.499282 - ], - [ - -73.486818, - 45.499233 - ], - [ - -73.48673, - 45.4991 - ], - [ - -73.486631, - 45.498949 - ], - [ - -73.486428, - 45.498675 - ], - [ - -73.486216, - 45.498401 - ], - [ - -73.486166, - 45.498342 - ], - [ - -73.486, - 45.498149 - ], - [ - -73.485576, - 45.497708 - ], - [ - -73.485299, - 45.497456 - ], - [ - -73.485259, - 45.497422 - ], - [ - -73.485251, - 45.497415 - ], - [ - -73.484899, - 45.497123 - ], - [ - -73.484456, - 45.496792 - ], - [ - -73.484387, - 45.49674 - ], - [ - -73.484357, - 45.496722 - ], - [ - -73.48225, - 45.495329 - ], - [ - -73.482144, - 45.49526 - ], - [ - -73.482492, - 45.495007 - ], - [ - -73.483351, - 45.494382 - ], - [ - -73.483927, - 45.493972 - ], - [ - -73.48407, - 45.49387 - ], - [ - -73.483989, - 45.493816 - ], - [ - -73.483677, - 45.493611 - ], - [ - -73.483404, - 45.493431 - ], - [ - -73.481761, - 45.492348 - ], - [ - -73.481418, - 45.492121 - ], - [ - -73.481312, - 45.492051 - ], - [ - -73.481502, - 45.491907 - ], - [ - -73.481557, - 45.491867 - ], - [ - -73.481586, - 45.49184 - ], - [ - -73.481575, - 45.491826 - ], - [ - -73.481545, - 45.491786 - ], - [ - -73.481409, - 45.491696 - ], - [ - -73.479342, - 45.490229 - ], - [ - -73.479214, - 45.490139 - ], - [ - -73.478723, - 45.489788 - ], - [ - -73.476906, - 45.488494 - ], - [ - -73.476789, - 45.488411 - ], - [ - -73.476696, - 45.48846 - ], - [ - -73.476492, - 45.488586 - ], - [ - -73.476259, - 45.488424 - ], - [ - -73.47601, - 45.48819 - ], - [ - -73.475597, - 45.487907 - ], - [ - -73.475254, - 45.487671 - ], - [ - -73.475065, - 45.487542 - ], - [ - -73.475334, - 45.487352 - ], - [ - -73.475345, - 45.487344 - ], - [ - -73.475741, - 45.487061 - ], - [ - -73.475863, - 45.486966 - ], - [ - -73.475994, - 45.486863 - ], - [ - -73.475578, - 45.486575 - ], - [ - -73.47532, - 45.486399 - ], - [ - -73.475157, - 45.486287 - ], - [ - -73.474931, - 45.486431 - ], - [ - -73.474427, - 45.486764 - ], - [ - -73.474092, - 45.486988 - ], - [ - -73.473039, - 45.487708 - ], - [ - -73.472025, - 45.488459 - ], - [ - -73.471942, - 45.488513 - ], - [ - -73.46708, - 45.485304 - ], - [ - -73.466642, - 45.484984 - ], - [ - -73.466534, - 45.484895 - ], - [ - -73.466473, - 45.484845 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466302, - 45.484687 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466022, - 45.484682 - ], - [ - -73.465888, - 45.484747 - ], - [ - -73.465767, - 45.484792 - ], - [ - -73.465702, - 45.484807 - ], - [ - -73.465661, - 45.484807 - ], - [ - -73.465627, - 45.484802 - ], - [ - -73.4655, - 45.484766 - ], - [ - -73.464965, - 45.484574 - ], - [ - -73.464559, - 45.484417 - ], - [ - -73.464508, - 45.484399 - ], - [ - -73.464185, - 45.484291 - ], - [ - -73.463703, - 45.484155 - ], - [ - -73.463657, - 45.484142 - ], - [ - -73.46319, - 45.484029 - ], - [ - -73.462672, - 45.483908 - ], - [ - -73.462287, - 45.483831 - ], - [ - -73.462032, - 45.483791 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.46135, - 45.4837 - ], - [ - -73.460838, - 45.483637 - ], - [ - -73.460181, - 45.483581 - ], - [ - -73.459999, - 45.483565 - ], - [ - -73.459497, - 45.483511 - ], - [ - -73.459033, - 45.483457 - ], - [ - -73.458739, - 45.483407 - ], - [ - -73.458547, - 45.483371 - ], - [ - -73.458333, - 45.483321 - ], - [ - -73.458016, - 45.483245 - ], - [ - -73.45777, - 45.483182 - ], - [ - -73.457497, - 45.483103 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45645, - 45.482799 - ], - [ - -73.455886, - 45.482623 - ], - [ - -73.455654, - 45.482542 - ], - [ - -73.455462, - 45.482465 - ], - [ - -73.455276, - 45.482384 - ], - [ - -73.455267, - 45.48238 - ], - [ - -73.455009, - 45.482272 - ], - [ - -73.454605, - 45.482087 - ], - [ - -73.454381, - 45.481984 - ], - [ - -73.454145, - 45.481862 - ], - [ - -73.453796, - 45.481673 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452379, - 45.481446 - ], - [ - -73.452062, - 45.481636 - ], - [ - -73.45135, - 45.482063 - ], - [ - -73.451249, - 45.482123 - ], - [ - -73.450095, - 45.482809 - ], - [ - -73.449882, - 45.482936 - ], - [ - -73.449245, - 45.483336 - ], - [ - -73.449101, - 45.483471 - ], - [ - -73.448914, - 45.483713 - ], - [ - -73.448817, - 45.483898 - ], - [ - -73.448629, - 45.484109 - ], - [ - -73.44844, - 45.484271 - ], - [ - -73.448213, - 45.48449 - ], - [ - -73.44775, - 45.484937 - ], - [ - -73.447415, - 45.485256 - ], - [ - -73.447237, - 45.485427 - ], - [ - -73.447005, - 45.485643 - ], - [ - -73.446779, - 45.485858 - ], - [ - -73.446708, - 45.485926 - ], - [ - -73.445795, - 45.486794 - ], - [ - -73.445654, - 45.486915 - ], - [ - -73.445524, - 45.487041 - ], - [ - -73.445408, - 45.487167 - ], - [ - -73.445358, - 45.487232 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 285, - "properties": { - "id": "6049916a-8afd-445e-a123-aa74b41f93fc", - "data": { - "gtfs": { - "shape_id": "535_1_A" - }, - "segments": [ - { - "distanceMeters": 286, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 58, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 954, - "travelTimeSeconds": 155 - }, - { - "distanceMeters": 546, - "travelTimeSeconds": 88 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 404, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 509, - "travelTimeSeconds": 83 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7401, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3740.9793251471892, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.17, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 5.36, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.17 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "800c7491-9914-4c1b-98fa-05ef8ea6fc69", - "eeaa7f8b-2fd2-49cc-ba6a-d6a6a5274e6b", - "038ad1c0-bc4e-4528-8949-777db666b0b5", - "6bf17878-7313-4796-a2ad-a20a58f89e02", - "b3c7372b-3c0a-4cb2-bef2-6f11825f858a", - "7e2aa9ad-30a3-4e26-acfb-1e284e4a4e01", - "f8a2b8d6-3974-492f-9494-9a40d49bc027", - "5605c306-59ee-41b1-bafb-ef890fa7662b", - "c90494b0-6ef5-43d3-912f-c60109ccace2", - "71e7c9ac-fe80-497a-a057-1eb12ce8ef13", - "bcd0a901-5384-443e-9be4-1f0faa123ccb", - "fdd9bfef-c8dc-4f65-9008-847050729854", - "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", - "7ad37664-fa6b-478f-8d31-2d3ae7009709", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "3040b262-0b20-4c40-9350-e484adfe1d60", - "3040b262-0b20-4c40-9350-e484adfe1d60", - "c4f08e33-183e-41cf-9f96-5985f148bd11", - "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", - "ac9a9c14-57c3-4a81-9316-ceca9586731d", - "1e205a49-fad6-428c-9d0c-b4018473837d", - "a5c03062-e324-4cb7-8c59-00c59a14b63e", - "159a0fe9-bedb-40f2-9806-32ab49594978", - "491099bb-9493-4888-bd4e-20bd2140830a", - "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", - "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "d9b94443-0b59-40db-aecb-0acb5ea7976c", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "bca3776b-1530-41d0-bda2-87c9fc6e85e9", - "segments": [ - 0, - 2, - 5, - 6, - 12, - 15, - 19, - 22, - 26, - 28, - 34, - 40, - 50, - 53, - 56, - 60, - 63, - 66, - 74, - 77, - 84, - 92, - 102, - 128, - 137, - 144, - 156, - 157, - 165, - 170, - 176 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 285, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445508, - 45.489489 - ], - [ - -73.4453, - 45.489165 - ], - [ - -73.445238, - 45.489052 - ], - [ - -73.445212, - 45.488985 - ], - [ - -73.445181, - 45.488904 - ], - [ - -73.445074, - 45.488728 - ], - [ - -73.445053, - 45.488544 - ], - [ - -73.445044, - 45.488377 - ], - [ - -73.445046, - 45.488242 - ], - [ - -73.445073, - 45.488085 - ], - [ - -73.445118, - 45.487932 - ], - [ - -73.445182, - 45.487779 - ], - [ - -73.445261, - 45.48759 - ], - [ - -73.445319, - 45.487496 - ], - [ - -73.445386, - 45.487388 - ], - [ - -73.445526, - 45.487217 - ], - [ - -73.445638, - 45.487095 - ], - [ - -73.445641, - 45.487093 - ], - [ - -73.445764, - 45.486978 - ], - [ - -73.445905, - 45.486857 - ], - [ - -73.446707, - 45.486092 - ], - [ - -73.44682, - 45.485985 - ], - [ - -73.447123, - 45.485706 - ], - [ - -73.447356, - 45.48549 - ], - [ - -73.447536, - 45.485315 - ], - [ - -73.447867, - 45.484995 - ], - [ - -73.448281, - 45.484596 - ], - [ - -73.448552, - 45.484334 - ], - [ - -73.448747, - 45.484168 - ], - [ - -73.448891, - 45.484006 - ], - [ - -73.448947, - 45.483943 - ], - [ - -73.449046, - 45.483754 - ], - [ - -73.449223, - 45.483529 - ], - [ - -73.449352, - 45.483408 - ], - [ - -73.449866, - 45.483087 - ], - [ - -73.449978, - 45.483017 - ], - [ - -73.451449, - 45.482131 - ], - [ - -73.451768, - 45.481938 - ], - [ - -73.45215, - 45.481708 - ], - [ - -73.452851, - 45.48129 - ], - [ - -73.452932, - 45.481338 - ], - [ - -73.453668, - 45.481781 - ], - [ - -73.454023, - 45.481974 - ], - [ - -73.454266, - 45.482101 - ], - [ - -73.454494, - 45.482204 - ], - [ - -73.454893, - 45.482398 - ], - [ - -73.455361, - 45.482587 - ], - [ - -73.455562, - 45.482663 - ], - [ - -73.455798, - 45.482744 - ], - [ - -73.456376, - 45.48292 - ], - [ - -73.456963, - 45.483096 - ], - [ - -73.457696, - 45.483312 - ], - [ - -73.457948, - 45.48338 - ], - [ - -73.45825, - 45.483452 - ], - [ - -73.458477, - 45.483499 - ], - [ - -73.458491, - 45.483501 - ], - [ - -73.458691, - 45.483542 - ], - [ - -73.458995, - 45.483592 - ], - [ - -73.459974, - 45.483704 - ], - [ - -73.46004, - 45.48371 - ], - [ - -73.46052, - 45.483755 - ], - [ - -73.460806, - 45.483781 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.462585, - 45.484043 - ], - [ - -73.463416, - 45.484224 - ], - [ - -73.463639, - 45.484291 - ], - [ - -73.464599, - 45.48462 - ], - [ - -73.465244, - 45.484835 - ], - [ - -73.465443, - 45.484908 - ], - [ - -73.465586, - 45.484937 - ], - [ - -73.465724, - 45.484942 - ], - [ - -73.465848, - 45.484931 - ], - [ - -73.466018, - 45.484884 - ], - [ - -73.466121, - 45.484844 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.466212, - 45.48485 - ], - [ - -73.46623, - 45.484867 - ], - [ - -73.466294, - 45.484926 - ], - [ - -73.466478, - 45.485072 - ], - [ - -73.466566, - 45.485142 - ], - [ - -73.466759, - 45.48529 - ], - [ - -73.466948, - 45.485421 - ], - [ - -73.467024, - 45.48547 - ], - [ - -73.468004, - 45.486118 - ], - [ - -73.469888, - 45.487365 - ], - [ - -73.470621, - 45.487851 - ], - [ - -73.471611, - 45.488508 - ], - [ - -73.471789, - 45.488626 - ], - [ - -73.47187, - 45.488576 - ], - [ - -73.471942, - 45.488513 - ], - [ - -73.472025, - 45.488459 - ], - [ - -73.472094, - 45.488408 - ], - [ - -73.473039, - 45.487708 - ], - [ - -73.474092, - 45.486988 - ], - [ - -73.474427, - 45.486764 - ], - [ - -73.474931, - 45.486431 - ], - [ - -73.475157, - 45.486287 - ], - [ - -73.475578, - 45.486575 - ], - [ - -73.475841, - 45.486757 - ], - [ - -73.475994, - 45.486863 - ], - [ - -73.475863, - 45.486966 - ], - [ - -73.475741, - 45.487061 - ], - [ - -73.475395, - 45.487308 - ], - [ - -73.475345, - 45.487344 - ], - [ - -73.475065, - 45.487542 - ], - [ - -73.475399, - 45.487771 - ], - [ - -73.475597, - 45.487907 - ], - [ - -73.47601, - 45.48819 - ], - [ - -73.476259, - 45.488424 - ], - [ - -73.476492, - 45.488586 - ], - [ - -73.476696, - 45.48846 - ], - [ - -73.476706, - 45.488455 - ], - [ - -73.476789, - 45.488411 - ], - [ - -73.478723, - 45.489788 - ], - [ - -73.479088, - 45.490049 - ], - [ - -73.479214, - 45.490139 - ], - [ - -73.481409, - 45.491696 - ], - [ - -73.481421, - 45.491704 - ], - [ - -73.481545, - 45.491786 - ], - [ - -73.481575, - 45.491826 - ], - [ - -73.481586, - 45.49184 - ], - [ - -73.481557, - 45.491867 - ], - [ - -73.481502, - 45.491907 - ], - [ - -73.481312, - 45.492051 - ], - [ - -73.481761, - 45.492348 - ], - [ - -73.483908, - 45.493763 - ], - [ - -73.483989, - 45.493816 - ], - [ - -73.483614, - 45.494082 - ], - [ - -73.483267, - 45.494328 - ], - [ - -73.482398, - 45.494954 - ], - [ - -73.482055, - 45.495201 - ], - [ - -73.481907, - 45.495309 - ], - [ - -73.482, - 45.495372 - ], - [ - -73.482363, - 45.495611 - ], - [ - -73.483276, - 45.496213 - ], - [ - -73.483953, - 45.496659 - ], - [ - -73.48405, - 45.496727 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.483872, - 45.497077 - ], - [ - -73.48383, - 45.497108 - ], - [ - -73.483504, - 45.497347 - ], - [ - -73.483382, - 45.497433 - ], - [ - -73.483338, - 45.497469 - ], - [ - -73.483277, - 45.497509 - ], - [ - -73.482985, - 45.497707 - ], - [ - -73.482734, - 45.497876 - ], - [ - -73.482636, - 45.497941 - ], - [ - -73.482124, - 45.49831 - ], - [ - -73.481899, - 45.498472 - ], - [ - -73.48235, - 45.498769 - ], - [ - -73.482412, - 45.498809 - ], - [ - -73.485116, - 45.500596 - ], - [ - -73.485618, - 45.500533 - ], - [ - -73.486298, - 45.500448 - ], - [ - -73.486841, - 45.500694 - ], - [ - -73.48707, - 45.500799 - ], - [ - -73.487208, - 45.500862 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487613, - 45.501033 - ], - [ - -73.487728, - 45.501082 - ], - [ - -73.487936, - 45.501136 - ], - [ - -73.488187, - 45.501204 - ], - [ - -73.488486, - 45.501271 - ], - [ - -73.488837, - 45.501352 - ], - [ - -73.48926, - 45.501478 - ], - [ - -73.489761, - 45.501636 - ], - [ - -73.490233, - 45.501775 - ], - [ - -73.490675, - 45.501901 - ], - [ - -73.490913, - 45.501973 - ], - [ - -73.491171, - 45.502054 - ], - [ - -73.491395, - 45.501844 - ], - [ - -73.491575, - 45.501677 - ], - [ - -73.49208, - 45.501204 - ], - [ - -73.493773, - 45.499621 - ], - [ - -73.493836, - 45.499562 - ], - [ - -73.494216, - 45.499211 - ], - [ - -73.494948, - 45.498532 - ], - [ - -73.496152, - 45.497413 - ], - [ - -73.496207, - 45.497362 - ], - [ - -73.495967, - 45.497229 - ], - [ - -73.495841, - 45.497159 - ], - [ - -73.495426, - 45.496935 - ], - [ - -73.495021, - 45.496723 - ], - [ - -73.494834, - 45.496627 - ], - [ - -73.494644, - 45.49653 - ], - [ - -73.494255, - 45.496323 - ], - [ - -73.493866, - 45.49611 - ], - [ - -73.493736, - 45.496039 - ], - [ - -73.493501, - 45.496255 - ], - [ - -73.493386, - 45.496361 - ], - [ - -73.49231, - 45.497358 - ], - [ - -73.492247, - 45.497416 - ], - [ - -73.491955, - 45.49769 - ], - [ - -73.491355, - 45.49826 - ], - [ - -73.491353, - 45.498262 - ], - [ - -73.491043, - 45.498549 - ], - [ - -73.490098, - 45.499422 - ], - [ - -73.490034, - 45.499485 - ], - [ - -73.489939, - 45.49958 - ], - [ - -73.488346, - 45.501057 - ] - ] - }, - "id": 286, - "properties": { - "id": "b97f6be1-744d-42cc-a603-8d327237e759", - "data": { - "gtfs": { - "shape_id": "535_2_R" - }, - "segments": [ - { - "distanceMeters": 492, - "travelTimeSeconds": 93 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 781, - "travelTimeSeconds": 148 - }, - { - "distanceMeters": 507, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 554, - "travelTimeSeconds": 105 - }, - { - "distanceMeters": 464, - "travelTimeSeconds": 88 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 330, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 104, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 59, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 121, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 582, - "travelTimeSeconds": 110 - }, - { - "distanceMeters": 424, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 95, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 42 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7901, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3467.111681139746, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.27, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 4.7, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.27 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", - "4996264a-c3f0-4fe8-be81-9ca3d8659c61", - "e089008c-4123-4897-95b5-a61e5e049f48", - "a5c03062-e324-4cb7-8c59-00c59a14b63e", - "1e205a49-fad6-428c-9d0c-b4018473837d", - "ac9a9c14-57c3-4a81-9316-ceca9586731d", - "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", - "c4f08e33-183e-41cf-9f96-5985f148bd11", - "3040b262-0b20-4c40-9350-e484adfe1d60", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "fd062866-a8eb-4466-b53a-6adf8fc3f09a", - "b2075e72-f3b5-420a-b22b-99e7608c7c0a", - "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", - "59a23245-0190-4421-8038-2ea1cbdc6419", - "800c7491-9914-4c1b-98fa-05ef8ea6fc69", - "eeaa7f8b-2fd2-49cc-ba6a-d6a6a5274e6b", - "038ad1c0-bc4e-4528-8949-777db666b0b5", - "6bf17878-7313-4796-a2ad-a20a58f89e02", - "b3c7372b-3c0a-4cb2-bef2-6f11825f858a", - "7e2aa9ad-30a3-4e26-acfb-1e284e4a4e01", - "f8a2b8d6-3974-492f-9494-9a40d49bc027", - "5605c306-59ee-41b1-bafb-ef890fa7662b", - "c90494b0-6ef5-43d3-912f-c60109ccace2", - "71e7c9ac-fe80-497a-a057-1eb12ce8ef13" - ], - "stops": [], - "line_id": "bca3776b-1530-41d0-bda2-87c9fc6e85e9", - "segments": [ - 0, - 31, - 34, - 40, - 48, - 51, - 74, - 94, - 102, - 114, - 121, - 127, - 130, - 133, - 141, - 145, - 149, - 152, - 155, - 161, - 170, - 187, - 189, - 192, - 193, - 199, - 202, - 206, - 209, - 213 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 286, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.454364, - 45.464733 - ], - [ - -73.45432, - 45.464702 - ], - [ - -73.453971, - 45.464449 - ], - [ - -73.453617, - 45.464193 - ], - [ - -73.453261, - 45.463932 - ], - [ - -73.452912, - 45.463662 - ], - [ - -73.452802, - 45.463536 - ], - [ - -73.452721, - 45.463379 - ], - [ - -73.452662, - 45.463158 - ], - [ - -73.45263, - 45.463001 - ], - [ - -73.452634, - 45.462879 - ], - [ - -73.452663, - 45.462722 - ], - [ - -73.452703, - 45.4626 - ], - [ - -73.452775, - 45.462447 - ], - [ - -73.452835, - 45.462344 - ], - [ - -73.452842, - 45.462333 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.452625, - 45.461966 - ], - [ - -73.45174, - 45.461341 - ], - [ - -73.451566, - 45.461218 - ], - [ - -73.45131, - 45.461404 - ], - [ - -73.451082, - 45.461568 - ], - [ - -73.450857, - 45.461731 - ], - [ - -73.450328, - 45.462112 - ], - [ - -73.450113, - 45.462266 - ], - [ - -73.449057, - 45.462995 - ], - [ - -73.448872, - 45.463116 - ], - [ - -73.44876, - 45.463165 - ], - [ - -73.448735, - 45.463176 - ], - [ - -73.448659, - 45.463206 - ], - [ - -73.448508, - 45.463264 - ], - [ - -73.448372, - 45.463309 - ], - [ - -73.448196, - 45.46335 - ], - [ - -73.447895, - 45.463394 - ], - [ - -73.447618, - 45.463408 - ], - [ - -73.447276, - 45.463394 - ], - [ - -73.446942, - 45.463331 - ], - [ - -73.446808, - 45.463298 - ], - [ - -73.446687, - 45.463268 - ], - [ - -73.446445, - 45.463155 - ], - [ - -73.446381, - 45.463115 - ], - [ - -73.445923, - 45.462827 - ], - [ - -73.444193, - 45.461657 - ], - [ - -73.444045, - 45.461557 - ], - [ - -73.44286, - 45.46075 - ], - [ - -73.44257, - 45.460553 - ], - [ - -73.441049, - 45.461587 - ], - [ - -73.440903, - 45.461686 - ], - [ - -73.44047, - 45.46196 - ], - [ - -73.440096, - 45.462131 - ], - [ - -73.439952, - 45.462187 - ], - [ - -73.439923, - 45.462198 - ], - [ - -73.439564, - 45.462315 - ], - [ - -73.43934, - 45.462423 - ], - [ - -73.438984, - 45.462639 - ], - [ - -73.438333, - 45.463115 - ], - [ - -73.437701, - 45.463565 - ], - [ - -73.437964, - 45.463744 - ], - [ - -73.438131, - 45.463857 - ], - [ - -73.438391, - 45.464033 - ], - [ - -73.44087, - 45.465709 - ], - [ - -73.440976, - 45.46578 - ], - [ - -73.441167, - 45.465915 - ], - [ - -73.441736, - 45.466257 - ], - [ - -73.442013, - 45.466357 - ], - [ - -73.442158, - 45.466406 - ], - [ - -73.442317, - 45.46646 - ], - [ - -73.442367, - 45.466471 - ], - [ - -73.442596, - 45.466523 - ], - [ - -73.442918, - 45.466614 - ], - [ - -73.44316, - 45.466708 - ], - [ - -73.4434, - 45.466798 - ], - [ - -73.443571, - 45.466875 - ], - [ - -73.443775, - 45.466978 - ], - [ - -73.44395, - 45.467091 - ], - [ - -73.44423, - 45.467276 - ], - [ - -73.44435, - 45.46737 - ], - [ - -73.44443, - 45.467451 - ], - [ - -73.444455, - 45.467475 - ], - [ - -73.444535, - 45.46755 - ], - [ - -73.445104, - 45.468072 - ], - [ - -73.445679, - 45.468635 - ], - [ - -73.446163, - 45.469091 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445905, - 45.469485 - ], - [ - -73.445671, - 45.469643 - ], - [ - -73.445475, - 45.469778 - ], - [ - -73.445396, - 45.469832 - ], - [ - -73.445298, - 45.469899 - ], - [ - -73.444328, - 45.470583 - ], - [ - -73.444076, - 45.47076 - ], - [ - -73.442658, - 45.471761 - ], - [ - -73.442644, - 45.471771 - ], - [ - -73.442519, - 45.471859 - ], - [ - -73.441942, - 45.47227 - ], - [ - -73.441211, - 45.472791 - ], - [ - -73.441022, - 45.472925 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.440777, - 45.473082 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.441938, - 45.473928 - ], - [ - -73.442708, - 45.474456 - ], - [ - -73.443365, - 45.474904 - ], - [ - -73.443474, - 45.474978 - ], - [ - -73.44437, - 45.475586 - ], - [ - -73.445004, - 45.476016 - ], - [ - -73.445067, - 45.476058 - ], - [ - -73.445608, - 45.476432 - ], - [ - -73.446237, - 45.47686 - ], - [ - -73.446801, - 45.477246 - ], - [ - -73.446869, - 45.477292 - ], - [ - -73.447188, - 45.477508 - ], - [ - -73.44754, - 45.477747 - ], - [ - -73.448146, - 45.478157 - ], - [ - -73.448655, - 45.4785 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.450119, - 45.479471 - ], - [ - -73.450865, - 45.479959 - ], - [ - -73.451, - 45.480048 - ], - [ - -73.451438, - 45.480342 - ], - [ - -73.451689, - 45.480511 - ], - [ - -73.452165, - 45.480813 - ], - [ - -73.452537, - 45.481073 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452379, - 45.481446 - ], - [ - -73.452062, - 45.481636 - ], - [ - -73.45135, - 45.482063 - ], - [ - -73.451258, - 45.482118 - ], - [ - -73.450104, - 45.482803 - ], - [ - -73.449882, - 45.482936 - ], - [ - -73.449245, - 45.483336 - ], - [ - -73.449101, - 45.483471 - ], - [ - -73.448914, - 45.483713 - ], - [ - -73.448817, - 45.483898 - ], - [ - -73.448629, - 45.484109 - ], - [ - -73.44844, - 45.484271 - ], - [ - -73.44822, - 45.484483 - ], - [ - -73.44775, - 45.484937 - ], - [ - -73.447415, - 45.485256 - ], - [ - -73.447237, - 45.485427 - ], - [ - -73.447005, - 45.485643 - ], - [ - -73.446786, - 45.485851 - ], - [ - -73.446708, - 45.485926 - ], - [ - -73.445795, - 45.486794 - ], - [ - -73.445654, - 45.486915 - ], - [ - -73.445524, - 45.487041 - ], - [ - -73.445408, - 45.487167 - ], - [ - -73.445364, - 45.487224 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 287, - "properties": { - "id": "3d4cc52f-f287-4a56-906f-96fbc851c3b8", - "data": { - "gtfs": { - "shape_id": "536_1_A" - }, - "segments": [ - { - "distanceMeters": 319, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 53, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 48, - "travelTimeSeconds": 7 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 317, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 42, - "travelTimeSeconds": 6 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 510, - "travelTimeSeconds": 80 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6162, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2975.389464833659, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.42, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 5.4, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.42 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "5cacbe7b-f308-4076-8842-25195b37874b", - "5cacbe7b-f308-4076-8842-25195b37874b", - "90bf0496-ccdf-450d-91bf-4dc999f62290", - "160a49df-4dfe-423d-acd7-52bd439d623b", - "d7a2b864-2fd6-4357-924f-7fbbb1858b57", - "a77f6afe-a859-4856-8bf5-ab032add56af", - "735e4ba2-6503-4586-98da-feccec61a212", - "af14ce12-74fa-4edf-a439-c058d0014323", - "4bc3caff-ed56-497d-8ae6-f486cc6662a6", - "596478dc-5795-41d8-b76f-e8b99c5314f6", - "966472c1-4384-4d94-92f7-48afa023de51", - "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", - "c8919560-2bb2-4063-8184-8e6c296badbe", - "e80498a8-505d-4215-ba07-7582f8783d8e", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "c4061c94-e615-4bca-b219-1ff6ea9657d0", - "c4061c94-e615-4bca-b219-1ff6ea9657d0", - "89553e99-6867-4296-935e-718bb768cb73", - "72a48bdf-3a35-4f3b-8d05-e465faf044cf", - "70af9f63-28e4-474e-896b-5462b7252980", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "d9b94443-0b59-40db-aecb-0acb5ea7976c", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "7c94f09d-1666-4f35-8c26-dc026ec5b52b", - "segments": [ - 0, - 15, - 17, - 18, - 20, - 23, - 28, - 37, - 42, - 44, - 50, - 58, - 60, - 65, - 78, - 82, - 90, - 91, - 96, - 103, - 106, - 110, - 112, - 115, - 119, - 124, - 129, - 130, - 138, - 143, - 149 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 287, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445508, - 45.489489 - ], - [ - -73.4453, - 45.489165 - ], - [ - -73.445238, - 45.489052 - ], - [ - -73.445212, - 45.488985 - ], - [ - -73.445181, - 45.488904 - ], - [ - -73.445074, - 45.488728 - ], - [ - -73.445053, - 45.488544 - ], - [ - -73.445044, - 45.488377 - ], - [ - -73.445046, - 45.488242 - ], - [ - -73.445073, - 45.488085 - ], - [ - -73.445118, - 45.487932 - ], - [ - -73.445182, - 45.487779 - ], - [ - -73.445261, - 45.48759 - ], - [ - -73.445319, - 45.487496 - ], - [ - -73.445386, - 45.487388 - ], - [ - -73.445526, - 45.487217 - ], - [ - -73.445638, - 45.487095 - ], - [ - -73.445642, - 45.487092 - ], - [ - -73.445764, - 45.486978 - ], - [ - -73.445905, - 45.486857 - ], - [ - -73.446707, - 45.486092 - ], - [ - -73.44682, - 45.485985 - ], - [ - -73.447123, - 45.485706 - ], - [ - -73.447356, - 45.48549 - ], - [ - -73.447536, - 45.485315 - ], - [ - -73.447867, - 45.484995 - ], - [ - -73.448282, - 45.484595 - ], - [ - -73.448552, - 45.484334 - ], - [ - -73.448747, - 45.484168 - ], - [ - -73.448891, - 45.484006 - ], - [ - -73.448947, - 45.483943 - ], - [ - -73.449046, - 45.483754 - ], - [ - -73.449223, - 45.483529 - ], - [ - -73.449352, - 45.483408 - ], - [ - -73.449867, - 45.483086 - ], - [ - -73.449978, - 45.483017 - ], - [ - -73.451449, - 45.482131 - ], - [ - -73.45177, - 45.481937 - ], - [ - -73.45215, - 45.481708 - ], - [ - -73.452851, - 45.48129 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452737, - 45.480994 - ], - [ - -73.452517, - 45.480857 - ], - [ - -73.452296, - 45.480719 - ], - [ - -73.452295, - 45.480718 - ], - [ - -73.451837, - 45.480421 - ], - [ - -73.451565, - 45.480238 - ], - [ - -73.451004, - 45.47986 - ], - [ - -73.450929, - 45.479809 - ], - [ - -73.450257, - 45.479368 - ], - [ - -73.449704, - 45.479007 - ], - [ - -73.449587, - 45.478931 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448305, - 45.478058 - ], - [ - -73.447779, - 45.477702 - ], - [ - -73.4477, - 45.477648 - ], - [ - -73.446992, - 45.477175 - ], - [ - -73.446393, - 45.476765 - ], - [ - -73.445743, - 45.476329 - ], - [ - -73.445374, - 45.476072 - ], - [ - -73.445205, - 45.475955 - ], - [ - -73.444867, - 45.475726 - ], - [ - -73.444508, - 45.475482 - ], - [ - -73.443708, - 45.474941 - ], - [ - -73.443609, - 45.474874 - ], - [ - -73.44285, - 45.474357 - ], - [ - -73.441175, - 45.473211 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.441438, - 45.47281 - ], - [ - -73.442521, - 45.472047 - ], - [ - -73.442653, - 45.471954 - ], - [ - -73.444466, - 45.470668 - ], - [ - -73.444558, - 45.470603 - ], - [ - -73.444692, - 45.470508 - ], - [ - -73.445328, - 45.470057 - ], - [ - -73.445338, - 45.470052 - ], - [ - -73.445622, - 45.469854 - ], - [ - -73.446091, - 45.469543 - ], - [ - -73.446378, - 45.469353 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445679, - 45.468635 - ], - [ - -73.445104, - 45.468072 - ], - [ - -73.444623, - 45.467631 - ], - [ - -73.444535, - 45.46755 - ], - [ - -73.44443, - 45.467451 - ], - [ - -73.44435, - 45.46737 - ], - [ - -73.44423, - 45.467276 - ], - [ - -73.44395, - 45.467091 - ], - [ - -73.443775, - 45.466978 - ], - [ - -73.443571, - 45.466875 - ], - [ - -73.4434, - 45.466798 - ], - [ - -73.44316, - 45.466708 - ], - [ - -73.442918, - 45.466614 - ], - [ - -73.442764, - 45.46657 - ], - [ - -73.442596, - 45.466523 - ], - [ - -73.442367, - 45.466471 - ], - [ - -73.442317, - 45.46646 - ], - [ - -73.442013, - 45.466357 - ], - [ - -73.441736, - 45.466257 - ], - [ - -73.441412, - 45.466063 - ], - [ - -73.441167, - 45.465915 - ], - [ - -73.440976, - 45.46578 - ], - [ - -73.438682, - 45.46423 - ], - [ - -73.438391, - 45.464033 - ], - [ - -73.437915, - 45.46371 - ], - [ - -73.437816, - 45.463643 - ], - [ - -73.437701, - 45.463565 - ], - [ - -73.438333, - 45.463115 - ], - [ - -73.438984, - 45.462639 - ], - [ - -73.43934, - 45.462423 - ], - [ - -73.439564, - 45.462315 - ], - [ - -73.439805, - 45.462237 - ], - [ - -73.439923, - 45.462198 - ], - [ - -73.440096, - 45.462131 - ], - [ - -73.44047, - 45.46196 - ], - [ - -73.440903, - 45.461686 - ], - [ - -73.442467, - 45.460623 - ], - [ - -73.44257, - 45.460553 - ], - [ - -73.443983, - 45.461515 - ], - [ - -73.444045, - 45.461557 - ], - [ - -73.445923, - 45.462827 - ], - [ - -73.446381, - 45.463115 - ], - [ - -73.446445, - 45.463155 - ], - [ - -73.446561, - 45.46321 - ], - [ - -73.446687, - 45.463268 - ], - [ - -73.446942, - 45.463331 - ], - [ - -73.447276, - 45.463394 - ], - [ - -73.447618, - 45.463408 - ], - [ - -73.447895, - 45.463394 - ], - [ - -73.448196, - 45.46335 - ], - [ - -73.448372, - 45.463309 - ], - [ - -73.448467, - 45.463278 - ], - [ - -73.448508, - 45.463264 - ], - [ - -73.448659, - 45.463206 - ], - [ - -73.44876, - 45.463165 - ], - [ - -73.448872, - 45.463116 - ], - [ - -73.449057, - 45.462995 - ], - [ - -73.449923, - 45.462397 - ], - [ - -73.450113, - 45.462266 - ], - [ - -73.450857, - 45.461731 - ], - [ - -73.451241, - 45.461454 - ], - [ - -73.451566, - 45.461218 - ], - [ - -73.452262, - 45.46171 - ], - [ - -73.452834, - 45.462114 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.452835, - 45.462344 - ], - [ - -73.452775, - 45.462447 - ], - [ - -73.452703, - 45.4626 - ], - [ - -73.452687, - 45.462649 - ], - [ - -73.452663, - 45.462722 - ], - [ - -73.452634, - 45.462879 - ], - [ - -73.45263, - 45.463001 - ], - [ - -73.452662, - 45.463158 - ], - [ - -73.452721, - 45.463379 - ], - [ - -73.452802, - 45.463536 - ], - [ - -73.452912, - 45.463662 - ], - [ - -73.453261, - 45.463932 - ], - [ - -73.453537, - 45.464135 - ], - [ - -73.453617, - 45.464193 - ], - [ - -73.453971, - 45.464449 - ], - [ - -73.45432, - 45.464702 - ], - [ - -73.454639, - 45.464924 - ] - ] - }, - "id": 288, - "properties": { - "id": "cbad245d-8924-470d-a5c9-6ce9ea9f4ca2", - "data": { - "gtfs": { - "shape_id": "536_2_R" - }, - "segments": [ - { - "distanceMeters": 492, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 121, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 67, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 22 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6159, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2975.389464833659, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.7, - "travelTimeWithoutDwellTimesSeconds": 1080, - "operatingTimeWithLayoverTimeSeconds": 1260, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1080, - "operatingSpeedWithLayoverMetersPerSecond": 4.89, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.7 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "5f21960f-8919-4407-8a49-57c39947c4fe", - "cc43f372-04e8-4c4c-b711-2e4159e3855d", - "9b7055a8-adca-44c6-9935-6026756d4460", - "76ff8292-f41f-4d17-998d-6dd3d2c32288", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "e80498a8-505d-4215-ba07-7582f8783d8e", - "014d61e3-acfc-41f6-b78a-5c2178c073b1", - "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", - "966472c1-4384-4d94-92f7-48afa023de51", - "43d1b9da-374a-4022-9200-6e68a13388db", - "a02ece0d-dd7f-42ce-ab40-b24192e1114e", - "4bc3caff-ed56-497d-8ae6-f486cc6662a6", - "af14ce12-74fa-4edf-a439-c058d0014323", - "735e4ba2-6503-4586-98da-feccec61a212", - "b78c0741-766d-4707-a3b0-36a0477adc73", - "d7a2b864-2fd6-4357-924f-7fbbb1858b57", - "160a49df-4dfe-423d-acd7-52bd439d623b", - "90bf0496-ccdf-450d-91bf-4dc999f62290", - "5cacbe7b-f308-4076-8842-25195b37874b", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "b6dfeeab-9981-4db8-9a90-2e14691bf516", - "7fef83f0-dafe-4bfc-8d59-ed507f41abfa" - ], - "stops": [], - "line_id": "7c94f09d-1666-4f35-8c26-dc026ec5b52b", - "segments": [ - 0, - 31, - 34, - 40, - 48, - 51, - 57, - 62, - 65, - 69, - 74, - 78, - 81, - 84, - 88, - 93, - 98, - 109, - 115, - 118, - 121, - 127, - 132, - 134, - 139, - 147, - 153, - 156, - 159, - 164, - 173 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 288, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.414616, - 45.501136 - ], - [ - -73.414535, - 45.501249 - ], - [ - -73.414536, - 45.50133 - ], - [ - -73.414962, - 45.501488 - ], - [ - -73.415352, - 45.501632 - ], - [ - -73.415771, - 45.501785 - ], - [ - -73.416178, - 45.501934 - ], - [ - -73.416751, - 45.502146 - ], - [ - -73.417087, - 45.502269 - ], - [ - -73.417293, - 45.502344 - ], - [ - -73.417806, - 45.502538 - ], - [ - -73.418173, - 45.502669 - ], - [ - -73.418562, - 45.502815 - ], - [ - -73.418847, - 45.502921 - ], - [ - -73.418876, - 45.502933 - ], - [ - -73.419167, - 45.503047 - ], - [ - -73.419278, - 45.503088 - ], - [ - -73.419673, - 45.503241 - ], - [ - -73.420142, - 45.503431 - ], - [ - -73.420697, - 45.503668 - ], - [ - -73.420806, - 45.503714 - ], - [ - -73.421234, - 45.503904 - ], - [ - -73.421648, - 45.504084 - ], - [ - -73.422009, - 45.504242 - ], - [ - -73.422355, - 45.50439 - ], - [ - -73.423115, - 45.504715 - ], - [ - -73.423522, - 45.50489 - ], - [ - -73.42368, - 45.504958 - ], - [ - -73.423967, - 45.505084 - ], - [ - -73.424527, - 45.505328 - ], - [ - -73.424894, - 45.505486 - ], - [ - -73.424965, - 45.505517 - ], - [ - -73.425433, - 45.505715 - ], - [ - -73.425471, - 45.505742 - ], - [ - -73.425589, - 45.505823 - ], - [ - -73.425852, - 45.505949 - ], - [ - -73.426079, - 45.506046 - ], - [ - -73.426348, - 45.506161 - ], - [ - -73.426693, - 45.506308 - ], - [ - -73.426919, - 45.506405 - ], - [ - -73.426846, - 45.50654 - ], - [ - -73.426704, - 45.506822 - ], - [ - -73.426601, - 45.507025 - ], - [ - -73.426541, - 45.507144 - ], - [ - -73.426318, - 45.507578 - ], - [ - -73.426298, - 45.507614 - ], - [ - -73.42627, - 45.507659 - ], - [ - -73.426239, - 45.507691 - ], - [ - -73.426194, - 45.507718 - ], - [ - -73.426141, - 45.507753 - ], - [ - -73.425991, - 45.507803 - ], - [ - -73.425844, - 45.507844 - ], - [ - -73.425671, - 45.507884 - ], - [ - -73.425517, - 45.507911 - ], - [ - -73.425226, - 45.507965 - ], - [ - -73.425128, - 45.507977 - ], - [ - -73.424982, - 45.507996 - ], - [ - -73.424804, - 45.508018 - ], - [ - -73.424075, - 45.508099 - ], - [ - -73.423658, - 45.508135 - ], - [ - -73.423075, - 45.50817 - ], - [ - -73.422739, - 45.508194 - ], - [ - -73.422385, - 45.508219 - ], - [ - -73.420612, - 45.508335 - ], - [ - -73.418615, - 45.50846 - ], - [ - -73.418548, - 45.508464 - ], - [ - -73.417889, - 45.508503 - ], - [ - -73.417791, - 45.508509 - ], - [ - -73.416795, - 45.50858 - ], - [ - -73.414891, - 45.508706 - ], - [ - -73.41478, - 45.508713 - ], - [ - -73.414755, - 45.50847 - ], - [ - -73.414729, - 45.508272 - ], - [ - -73.414689, - 45.508002 - ], - [ - -73.41461, - 45.507863 - ], - [ - -73.414461, - 45.507795 - ], - [ - -73.414263, - 45.507764 - ], - [ - -73.41334, - 45.507828 - ], - [ - -73.41298, - 45.507853 - ], - [ - -73.412929, - 45.507488 - ], - [ - -73.412886, - 45.507187 - ], - [ - -73.412894, - 45.507083 - ], - [ - -73.412909, - 45.507038 - ], - [ - -73.412951, - 45.506962 - ], - [ - -73.412993, - 45.506876 - ], - [ - -73.413113, - 45.506647 - ], - [ - -73.413298, - 45.506287 - ], - [ - -73.413426, - 45.506022 - ], - [ - -73.413444, - 45.505954 - ], - [ - -73.413447, - 45.505864 - ], - [ - -73.413421, - 45.505761 - ], - [ - -73.413394, - 45.505639 - ], - [ - -73.413355, - 45.505522 - ], - [ - -73.413318, - 45.50541 - ], - [ - -73.413013, - 45.505441 - ], - [ - -73.412864, - 45.50545 - ], - [ - -73.412747, - 45.50545 - ], - [ - -73.412645, - 45.505436 - ], - [ - -73.412507, - 45.505418 - ], - [ - -73.412213, - 45.505349 - ], - [ - -73.411642, - 45.505214 - ], - [ - -73.411569, - 45.505197 - ], - [ - -73.41077, - 45.504994 - ], - [ - -73.409937, - 45.504794 - ], - [ - -73.409774, - 45.504755 - ], - [ - -73.409315, - 45.504637 - ], - [ - -73.408932, - 45.504538 - ], - [ - -73.408367, - 45.504398 - ], - [ - -73.40791, - 45.504285 - ], - [ - -73.407766, - 45.504249 - ], - [ - -73.407475, - 45.504174 - ], - [ - -73.407261, - 45.504118 - ], - [ - -73.406855, - 45.504005 - ], - [ - -73.406677, - 45.504352 - ], - [ - -73.406515, - 45.50468 - ], - [ - -73.406364, - 45.504981 - ], - [ - -73.406221, - 45.505258 - ], - [ - -73.40619, - 45.505319 - ], - [ - -73.405984, - 45.50575 - ], - [ - -73.405871, - 45.505971 - ], - [ - -73.405719, - 45.506277 - ], - [ - -73.405549, - 45.506609 - ], - [ - -73.405314, - 45.50711 - ], - [ - -73.405268, - 45.507208 - ], - [ - -73.405194, - 45.507248 - ], - [ - -73.40508, - 45.507248 - ], - [ - -73.404942, - 45.507221 - ], - [ - -73.403471, - 45.506845 - ], - [ - -73.403459, - 45.506842 - ], - [ - -73.401947, - 45.506458 - ], - [ - -73.400809, - 45.506169 - ], - [ - -73.400668, - 45.506128 - ], - [ - -73.400593, - 45.506106 - ], - [ - -73.40043, - 45.506038 - ], - [ - -73.40031, - 45.50598 - ], - [ - -73.400245, - 45.505941 - ], - [ - -73.400152, - 45.505885 - ], - [ - -73.400052, - 45.505795 - ], - [ - -73.399949, - 45.505664 - ], - [ - -73.399886, - 45.505552 - ], - [ - -73.39982, - 45.505426 - ], - [ - -73.399787, - 45.505322 - ], - [ - -73.39976, - 45.505156 - ], - [ - -73.399734, - 45.504777 - ], - [ - -73.399729, - 45.504706 - ], - [ - -73.399657, - 45.504175 - ], - [ - -73.39956, - 45.503489 - ], - [ - -73.399542, - 45.50336 - ], - [ - -73.399508, - 45.503131 - ], - [ - -73.399441, - 45.502676 - ], - [ - -73.399417, - 45.50246 - ], - [ - -73.399399, - 45.502327 - ], - [ - -73.399381, - 45.502189 - ], - [ - -73.399355, - 45.501992 - ], - [ - -73.399341, - 45.501884 - ], - [ - -73.399253, - 45.50189 - ], - [ - -73.398939, - 45.50191 - ], - [ - -73.396837, - 45.502044 - ], - [ - -73.395365, - 45.502133 - ], - [ - -73.395213, - 45.502142 - ], - [ - -73.395161, - 45.502053 - ], - [ - -73.395145, - 45.501928 - ], - [ - -73.395111, - 45.50166 - ], - [ - -73.395084, - 45.501431 - ], - [ - -73.395041, - 45.50117 - ], - [ - -73.395041, - 45.501053 - ], - [ - -73.395077, - 45.50094 - ], - [ - -73.395506, - 45.500058 - ], - [ - -73.395555, - 45.499955 - ], - [ - -73.395706, - 45.499618 - ], - [ - -73.395829, - 45.49938 - ], - [ - -73.395901, - 45.499299 - ], - [ - -73.396037, - 45.499128 - ], - [ - -73.396173, - 45.499011 - ], - [ - -73.396519, - 45.498686 - ], - [ - -73.396766, - 45.498454 - ], - [ - -73.396911, - 45.498319 - ], - [ - -73.397102, - 45.498121 - ], - [ - -73.397351, - 45.497878 - ], - [ - -73.397678, - 45.497573 - ], - [ - -73.397919, - 45.497334 - ], - [ - -73.39799, - 45.49727 - ], - [ - -73.398209, - 45.497074 - ], - [ - -73.398541, - 45.496804 - ], - [ - -73.398788, - 45.496579 - ], - [ - -73.399137, - 45.496287 - ], - [ - -73.399546, - 45.495932 - ], - [ - -73.399607, - 45.495824 - ], - [ - -73.399612, - 45.49582 - ], - [ - -73.399701, - 45.495748 - ], - [ - -73.399841, - 45.495549 - ], - [ - -73.399866, - 45.495514 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399814, - 45.49535 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.396677, - 45.493881 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.395077, - 45.493136 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.392017, - 45.491453 - ], - [ - -73.392075, - 45.491404 - ], - [ - -73.392441, - 45.491125 - ], - [ - -73.392989, - 45.49068 - ], - [ - -73.393177, - 45.490469 - ], - [ - -73.39407, - 45.489264 - ], - [ - -73.393539, - 45.489286 - ], - [ - -73.393319, - 45.489571 - ] - ] - }, - "id": 289, - "properties": { - "id": "d8961186-b360-4834-8743-f05d1c8bb97f", - "data": { - "gtfs": { - "shape_id": "538_1_A" - }, - "segments": [ - { - "distanceMeters": 248, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 70, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 380, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 81, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 195, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 328, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 701, - "travelTimeSeconds": 93 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6847, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2127.780932220343, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.61, - "travelTimeWithoutDwellTimesSeconds": 900, - "operatingTimeWithLayoverTimeSeconds": 1080, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 900, - "operatingSpeedWithLayoverMetersPerSecond": 6.34, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.61 - }, - "mode": "bus", - "name": "École Heritage", - "color": "#A32638", - "nodes": [ - "853b0202-bae1-4c20-ab0e-8b27d1350e9a", - "46ea2114-c4d6-46e8-be5d-60d028340abb", - "e460be07-05e4-49f8-a725-e63809c74139", - "235a92b0-53e1-410c-b264-d57c7814303c", - "7207a900-095a-4a6f-9e58-d5821a46e7d1", - "2d759b9b-5efb-4a57-814c-915d6b6185d7", - "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", - "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", - "b989758c-7e40-49d2-b551-b6f0e525013b", - "8760b56a-bae1-4862-80b6-347cc65704e3", - "86f64d55-814a-4fbc-858b-c5c25e590481", - "a591956d-b42e-4489-8d54-3a5d5df835c1", - "16d596f0-097e-4afe-b8c4-9b129c3c3d66", - "72cda4fb-fbe8-47ba-b42e-f310ef91d335", - "bf493d01-4cc2-40cf-9fee-339de5acd0ce", - "35110be1-21ec-490a-b4c8-8b20aa6bef7f", - "aa49b5ca-26fd-4fe1-8e89-4237204a7250", - "3d4eebbc-a250-4177-81d6-19642e2b4176", - "5228afc6-7e91-431f-8045-f41c542a77ea", - "f1de9305-8e6b-46d3-8c98-a08e73b2857f", - "b20c17a3-277e-418e-90be-8f8d32918ba9", - "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", - "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", - "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", - "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0", - "5c25bfb5-c167-4f71-8798-e94a8ad7560d", - "e4d9e692-bf6d-4c61-9845-9e50427c4cad", - "2550d07e-5034-443e-9840-7e9abcf5a62b", - "2e7cf58e-8d32-4b71-acee-694db180235f", - "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", - "69b9716f-dd31-4ae3-9736-6d5edb237b8a", - "8354e556-947c-481c-96bd-d61737767f2d", - "87ac0337-2ebc-4670-a2d4-e0f4a5b3c627" - ], - "stops": [], - "line_id": "d295d16d-b5e4-4427-83f1-171135ced77c", - "segments": [ - 0, - 8, - 14, - 19, - 26, - 30, - 38, - 41, - 55, - 61, - 66, - 69, - 77, - 92, - 100, - 103, - 108, - 116, - 122, - 127, - 135, - 143, - 146, - 151, - 156, - 158, - 167, - 174, - 181, - 190, - 198, - 205 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 289, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.392155, - 45.491342 - ], - [ - -73.392075, - 45.491404 - ], - [ - -73.392017, - 45.491453 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.394224, - 45.492736 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.395959, - 45.493551 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.399587, - 45.495241 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399778, - 45.495491 - ], - [ - -73.39967, - 45.495649 - ], - [ - -73.399618, - 45.495725 - ], - [ - -73.399612, - 45.49582 - ], - [ - -73.399607, - 45.495824 - ], - [ - -73.399546, - 45.495932 - ], - [ - -73.399137, - 45.496287 - ], - [ - -73.398788, - 45.496579 - ], - [ - -73.398541, - 45.496804 - ], - [ - -73.398209, - 45.497074 - ], - [ - -73.398096, - 45.497176 - ], - [ - -73.397919, - 45.497334 - ], - [ - -73.397678, - 45.497573 - ], - [ - -73.397351, - 45.497878 - ], - [ - -73.397102, - 45.498121 - ], - [ - -73.396911, - 45.498319 - ], - [ - -73.39686, - 45.498367 - ], - [ - -73.396766, - 45.498454 - ], - [ - -73.396173, - 45.499011 - ], - [ - -73.396037, - 45.499128 - ], - [ - -73.395901, - 45.499299 - ], - [ - -73.395829, - 45.49938 - ], - [ - -73.395706, - 45.499618 - ], - [ - -73.395599, - 45.499858 - ], - [ - -73.395555, - 45.499955 - ], - [ - -73.395077, - 45.50094 - ], - [ - -73.395041, - 45.501053 - ], - [ - -73.395041, - 45.50117 - ], - [ - -73.395084, - 45.501431 - ], - [ - -73.395111, - 45.50166 - ], - [ - -73.395151, - 45.501974 - ], - [ - -73.395161, - 45.502053 - ], - [ - -73.39513, - 45.502146 - ], - [ - -73.395136, - 45.50225 - ], - [ - -73.395228, - 45.502245 - ], - [ - -73.39542, - 45.502234 - ], - [ - -73.39685, - 45.502148 - ], - [ - -73.399355, - 45.501992 - ], - [ - -73.399365, - 45.502066 - ], - [ - -73.399401, - 45.502337 - ], - [ - -73.399417, - 45.50246 - ], - [ - -73.399441, - 45.502676 - ], - [ - -73.399508, - 45.503131 - ], - [ - -73.399524, - 45.50324 - ], - [ - -73.399542, - 45.50336 - ], - [ - -73.399657, - 45.504175 - ], - [ - -73.399715, - 45.504599 - ], - [ - -73.399729, - 45.504706 - ], - [ - -73.39976, - 45.505156 - ], - [ - -73.399787, - 45.505322 - ], - [ - -73.39982, - 45.505426 - ], - [ - -73.399886, - 45.505552 - ], - [ - -73.399949, - 45.505664 - ], - [ - -73.400042, - 45.505783 - ], - [ - -73.400052, - 45.505795 - ], - [ - -73.400152, - 45.505885 - ], - [ - -73.40031, - 45.50598 - ], - [ - -73.40043, - 45.506038 - ], - [ - -73.400586, - 45.506103 - ], - [ - -73.400593, - 45.506106 - ], - [ - -73.400668, - 45.506128 - ], - [ - -73.400809, - 45.506169 - ], - [ - -73.401947, - 45.506458 - ], - [ - -73.40328, - 45.506796 - ], - [ - -73.403459, - 45.506842 - ], - [ - -73.404942, - 45.507221 - ], - [ - -73.40508, - 45.507248 - ], - [ - -73.40518, - 45.507248 - ], - [ - -73.405194, - 45.507248 - ], - [ - -73.405268, - 45.507208 - ], - [ - -73.405549, - 45.506609 - ], - [ - -73.405719, - 45.506277 - ], - [ - -73.405871, - 45.505971 - ], - [ - -73.405984, - 45.50575 - ], - [ - -73.406106, - 45.505495 - ], - [ - -73.40619, - 45.505319 - ], - [ - -73.406364, - 45.504981 - ], - [ - -73.406515, - 45.50468 - ], - [ - -73.406677, - 45.504352 - ], - [ - -73.406855, - 45.504005 - ], - [ - -73.407261, - 45.504118 - ], - [ - -73.407475, - 45.504174 - ], - [ - -73.407635, - 45.504215 - ], - [ - -73.407766, - 45.504249 - ], - [ - -73.408367, - 45.504398 - ], - [ - -73.408932, - 45.504538 - ], - [ - -73.409315, - 45.504637 - ], - [ - -73.409685, - 45.504732 - ], - [ - -73.409774, - 45.504755 - ], - [ - -73.41077, - 45.504994 - ], - [ - -73.411462, - 45.50517 - ], - [ - -73.411569, - 45.505197 - ], - [ - -73.412213, - 45.505349 - ], - [ - -73.412507, - 45.505418 - ], - [ - -73.412645, - 45.505436 - ], - [ - -73.412747, - 45.50545 - ], - [ - -73.412864, - 45.50545 - ], - [ - -73.413013, - 45.505441 - ], - [ - -73.413166, - 45.505425 - ], - [ - -73.413318, - 45.50541 - ], - [ - -73.413394, - 45.505639 - ], - [ - -73.413421, - 45.505761 - ], - [ - -73.413447, - 45.505864 - ], - [ - -73.413444, - 45.505954 - ], - [ - -73.413426, - 45.506022 - ], - [ - -73.413298, - 45.506287 - ], - [ - -73.413113, - 45.506647 - ], - [ - -73.412993, - 45.506876 - ], - [ - -73.412951, - 45.506962 - ], - [ - -73.412909, - 45.507038 - ], - [ - -73.412894, - 45.507083 - ], - [ - -73.412886, - 45.507187 - ], - [ - -73.412929, - 45.507488 - ], - [ - -73.412967, - 45.507758 - ], - [ - -73.41298, - 45.507853 - ], - [ - -73.414263, - 45.507764 - ], - [ - -73.414461, - 45.507795 - ], - [ - -73.41461, - 45.507863 - ], - [ - -73.414689, - 45.508002 - ], - [ - -73.414729, - 45.508272 - ], - [ - -73.414755, - 45.50847 - ], - [ - -73.414773, - 45.50865 - ], - [ - -73.41478, - 45.508713 - ], - [ - -73.416795, - 45.50858 - ], - [ - -73.41761, - 45.508521 - ], - [ - -73.417791, - 45.508509 - ], - [ - -73.418548, - 45.508464 - ], - [ - -73.418615, - 45.50846 - ], - [ - -73.420612, - 45.508335 - ], - [ - -73.422385, - 45.508219 - ], - [ - -73.423075, - 45.50817 - ], - [ - -73.423658, - 45.508135 - ], - [ - -73.424075, - 45.508099 - ], - [ - -73.424804, - 45.508018 - ], - [ - -73.424982, - 45.507996 - ], - [ - -73.425226, - 45.507965 - ], - [ - -73.425517, - 45.507911 - ], - [ - -73.425671, - 45.507884 - ], - [ - -73.425844, - 45.507844 - ], - [ - -73.425991, - 45.507803 - ], - [ - -73.426141, - 45.507753 - ], - [ - -73.426194, - 45.507718 - ], - [ - -73.426239, - 45.507691 - ], - [ - -73.42627, - 45.507659 - ], - [ - -73.426298, - 45.507614 - ], - [ - -73.426318, - 45.507578 - ], - [ - -73.426541, - 45.507144 - ], - [ - -73.426601, - 45.507025 - ], - [ - -73.426846, - 45.506541 - ], - [ - -73.426846, - 45.50654 - ], - [ - -73.426919, - 45.506405 - ], - [ - -73.426972, - 45.506306 - ], - [ - -73.426422, - 45.506071 - ], - [ - -73.42613, - 45.505956 - ], - [ - -73.425918, - 45.505873 - ], - [ - -73.425637, - 45.505778 - ], - [ - -73.425471, - 45.505742 - ], - [ - -73.425433, - 45.505715 - ], - [ - -73.425251, - 45.505638 - ], - [ - -73.424965, - 45.505517 - ], - [ - -73.424527, - 45.505328 - ], - [ - -73.423967, - 45.505084 - ], - [ - -73.42368, - 45.504958 - ], - [ - -73.423539, - 45.504898 - ], - [ - -73.423115, - 45.504715 - ], - [ - -73.422355, - 45.50439 - ], - [ - -73.422129, - 45.504293 - ], - [ - -73.422009, - 45.504242 - ], - [ - -73.421648, - 45.504084 - ], - [ - -73.421234, - 45.503904 - ], - [ - -73.420806, - 45.503714 - ], - [ - -73.420529, - 45.503596 - ], - [ - -73.420142, - 45.503431 - ], - [ - -73.419673, - 45.503241 - ], - [ - -73.419478, - 45.503166 - ], - [ - -73.419278, - 45.503088 - ], - [ - -73.419167, - 45.503047 - ], - [ - -73.418847, - 45.502921 - ], - [ - -73.418562, - 45.502815 - ], - [ - -73.418173, - 45.502669 - ], - [ - -73.417806, - 45.502538 - ], - [ - -73.417355, - 45.502368 - ], - [ - -73.417293, - 45.502344 - ], - [ - -73.416751, - 45.502146 - ], - [ - -73.416178, - 45.501934 - ], - [ - -73.415771, - 45.501785 - ], - [ - -73.415352, - 45.501632 - ], - [ - -73.414962, - 45.501488 - ], - [ - -73.414688, - 45.501386 - ] - ] - }, - "id": 290, - "properties": { - "id": "96d7be13-0eb1-4e2d-9843-91df074ecb54", - "data": { - "gtfs": { - "shape_id": "538_2_R" - }, - "segments": [ - { - "distanceMeters": 266, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 195, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 400, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 56, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 819, - "travelTimeSeconds": 136 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 95, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 40 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6463, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2087.4507592737386, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.98, - "travelTimeWithoutDwellTimesSeconds": 1080, - "operatingTimeWithLayoverTimeSeconds": 1260, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1080, - "operatingSpeedWithLayoverMetersPerSecond": 5.13, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.98 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "ced239e0-91f5-4429-96fd-20bbb8fcfd11", - "70ea9063-86f0-43f5-9e7d-16ea087fc4ce", - "69b9716f-dd31-4ae3-9736-6d5edb237b8a", - "cb20b749-b55e-4251-94cd-215651864e8b", - "2e7cf58e-8d32-4b71-acee-694db180235f", - "2550d07e-5034-443e-9840-7e9abcf5a62b", - "e4d9e692-bf6d-4c61-9845-9e50427c4cad", - "5c25bfb5-c167-4f71-8798-e94a8ad7560d", - "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", - "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", - "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", - "b20c17a3-277e-418e-90be-8f8d32918ba9", - "b20c17a3-277e-418e-90be-8f8d32918ba9", - "f1de9305-8e6b-46d3-8c98-a08e73b2857f", - "5228afc6-7e91-431f-8045-f41c542a77ea", - "3d4eebbc-a250-4177-81d6-19642e2b4176", - "aa49b5ca-26fd-4fe1-8e89-4237204a7250", - "35110be1-21ec-490a-b4c8-8b20aa6bef7f", - "bf493d01-4cc2-40cf-9fee-339de5acd0ce", - "72cda4fb-fbe8-47ba-b42e-f310ef91d335", - "16d596f0-097e-4afe-b8c4-9b129c3c3d66", - "a591956d-b42e-4489-8d54-3a5d5df835c1", - "86f64d55-814a-4fbc-858b-c5c25e590481", - "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", - "2d759b9b-5efb-4a57-814c-915d6b6185d7", - "7207a900-095a-4a6f-9e58-d5821a46e7d1", - "1dee950f-860c-49ec-9656-8fcdc6bfa744", - "235a92b0-53e1-410c-b264-d57c7814303c", - "4a4fa494-b43c-4be6-b677-70874b8f73cc", - "46ea2114-c4d6-46e8-be5d-60d028340abb", - "853b0202-bae1-4c20-ab0e-8b27d1350e9a" - ], - "stops": [], - "line_id": "d295d16d-b5e4-4427-83f1-171135ced77c", - "segments": [ - 0, - 11, - 18, - 23, - 36, - 42, - 49, - 56, - 65, - 69, - 72, - 79, - 84, - 89, - 93, - 100, - 108, - 113, - 116, - 124, - 139, - 147, - 150, - 174, - 184, - 189, - 192, - 197, - 200, - 207 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 290, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.433716, - 45.499641 - ], - [ - -73.433592, - 45.499597 - ], - [ - -73.432859, - 45.499326 - ], - [ - -73.432516, - 45.4992 - ], - [ - -73.431775, - 45.498939 - ], - [ - -73.431159, - 45.498728 - ], - [ - -73.430984, - 45.498668 - ], - [ - -73.431037, - 45.498594 - ], - [ - -73.431441, - 45.498021 - ], - [ - -73.431832, - 45.497459 - ], - [ - -73.432148, - 45.497028 - ], - [ - -73.432274, - 45.496856 - ], - [ - -73.433052, - 45.497133 - ], - [ - -73.434199, - 45.497542 - ], - [ - -73.43431, - 45.497582 - ], - [ - -73.435579, - 45.498023 - ], - [ - -73.435865, - 45.4981 - ], - [ - -73.436036, - 45.49814 - ], - [ - -73.436216, - 45.498172 - ], - [ - -73.436513, - 45.498249 - ], - [ - -73.436806, - 45.498348 - ], - [ - -73.436898, - 45.498384 - ], - [ - -73.436955, - 45.498406 - ], - [ - -73.439319, - 45.499236 - ], - [ - -73.439705, - 45.499371 - ], - [ - -73.43988, - 45.499434 - ], - [ - -73.439931, - 45.499359 - ], - [ - -73.439954, - 45.499326 - ], - [ - -73.441092, - 45.497683 - ], - [ - -73.441172, - 45.497567 - ], - [ - -73.442302, - 45.495928 - ], - [ - -73.442662, - 45.495404 - ], - [ - -73.442507, - 45.495318 - ], - [ - -73.442397, - 45.495264 - ], - [ - -73.442288, - 45.495204 - ], - [ - -73.442274, - 45.495196 - ], - [ - -73.44114, - 45.494563 - ], - [ - -73.440909, - 45.494435 - ], - [ - -73.440795, - 45.494371 - ], - [ - -73.438673, - 45.493188 - ], - [ - -73.438575, - 45.493284 - ], - [ - -73.438558, - 45.493301 - ], - [ - -73.438402, - 45.493454 - ], - [ - -73.438287, - 45.49358 - ], - [ - -73.43819, - 45.493756 - ], - [ - -73.438134, - 45.493858 - ], - [ - -73.438053, - 45.493957 - ], - [ - -73.437622, - 45.494551 - ], - [ - -73.43754, - 45.494663 - ], - [ - -73.437416, - 45.494628 - ], - [ - -73.436664, - 45.494411 - ], - [ - -73.435723, - 45.494151 - ], - [ - -73.435615, - 45.494121 - ], - [ - -73.435472, - 45.494082 - ], - [ - -73.434513, - 45.493802 - ], - [ - -73.433773, - 45.493535 - ], - [ - -73.433602, - 45.493473 - ], - [ - -73.432927, - 45.49323 - ], - [ - -73.43277, - 45.493221 - ], - [ - -73.432639, - 45.493293 - ], - [ - -73.432568, - 45.493374 - ], - [ - -73.432269, - 45.493788 - ], - [ - -73.431927, - 45.494284 - ], - [ - -73.431866, - 45.494372 - ], - [ - -73.431456, - 45.494916 - ], - [ - -73.431051, - 45.495488 - ], - [ - -73.430689, - 45.495989 - ], - [ - -73.430662, - 45.496027 - ], - [ - -73.430595, - 45.496131 - ], - [ - -73.430345, - 45.496041 - ], - [ - -73.428793, - 45.495486 - ], - [ - -73.42811, - 45.495245 - ], - [ - -73.42799, - 45.495202 - ], - [ - -73.427327, - 45.494972 - ], - [ - -73.427129, - 45.4949 - ], - [ - -73.426304, - 45.494616 - ], - [ - -73.425789, - 45.494431 - ], - [ - -73.425567, - 45.494332 - ], - [ - -73.425526, - 45.494311 - ], - [ - -73.425435, - 45.494265 - ], - [ - -73.425244, - 45.494166 - ], - [ - -73.425117, - 45.494094 - ], - [ - -73.424993, - 45.493999 - ], - [ - -73.424846, - 45.493877 - ], - [ - -73.424732, - 45.493751 - ], - [ - -73.424622, - 45.493598 - ], - [ - -73.424286, - 45.493252 - ], - [ - -73.424064, - 45.493076 - ], - [ - -73.42402, - 45.49305 - ], - [ - -73.423956, - 45.493013 - ], - [ - -73.423777, - 45.492914 - ], - [ - -73.423558, - 45.492824 - ], - [ - -73.423264, - 45.492711 - ], - [ - -73.422869, - 45.492571 - ], - [ - -73.422074, - 45.492295 - ], - [ - -73.422051, - 45.492287 - ], - [ - -73.421183, - 45.491976 - ], - [ - -73.420312, - 45.491674 - ], - [ - -73.419483, - 45.491395 - ], - [ - -73.419326, - 45.491336 - ], - [ - -73.419176, - 45.491259 - ], - [ - -73.419007, - 45.49116 - ], - [ - -73.418432, - 45.490863 - ], - [ - -73.418223, - 45.490764 - ], - [ - -73.417895, - 45.490615 - ], - [ - -73.416915, - 45.49021 - ], - [ - -73.416651, - 45.490097 - ], - [ - -73.416262, - 45.489948 - ], - [ - -73.416087, - 45.489886 - ], - [ - -73.415958, - 45.48984 - ], - [ - -73.414473, - 45.489314 - ], - [ - -73.413388, - 45.48893 - ], - [ - -73.413246, - 45.48888 - ], - [ - -73.413378, - 45.488696 - ], - [ - -73.414235, - 45.487508 - ], - [ - -73.414543, - 45.487058 - ], - [ - -73.414879, - 45.486604 - ], - [ - -73.415045, - 45.486384 - ], - [ - -73.415216, - 45.486168 - ], - [ - -73.41547, - 45.485876 - ], - [ - -73.415626, - 45.485715 - ], - [ - -73.415653, - 45.485687 - ], - [ - -73.415881, - 45.485467 - ], - [ - -73.415979, - 45.485368 - ], - [ - -73.416171, - 45.485201 - ], - [ - -73.416634, - 45.484828 - ], - [ - -73.417619, - 45.484091 - ], - [ - -73.417816, - 45.483947 - ], - [ - -73.418029, - 45.48379 - ], - [ - -73.418094, - 45.483832 - ], - [ - -73.418778, - 45.484272 - ], - [ - -73.418862, - 45.484209 - ], - [ - -73.419609, - 45.483652 - ], - [ - -73.420308, - 45.483112 - ], - [ - -73.420348, - 45.483134 - ], - [ - -73.42046, - 45.483193 - ], - [ - -73.420616, - 45.483279 - ], - [ - -73.421429, - 45.483725 - ], - [ - -73.422428, - 45.48427 - ], - [ - -73.423441, - 45.484819 - ], - [ - -73.423524, - 45.484865 - ], - [ - -73.423667, - 45.484946 - ], - [ - -73.424722, - 45.485522 - ], - [ - -73.425068, - 45.485708 - ], - [ - -73.425082, - 45.485716 - ], - [ - -73.425509, - 45.485946 - ], - [ - -73.425426, - 45.48606 - ], - [ - -73.423333, - 45.488965 - ], - [ - -73.423292, - 45.489022 - ], - [ - -73.421245, - 45.491889 - ], - [ - -73.421183, - 45.491976 - ], - [ - -73.421099, - 45.492084 - ], - [ - -73.420884, - 45.492385 - ], - [ - -73.418962, - 45.495066 - ], - [ - -73.418892, - 45.495165 - ], - [ - -73.416874, - 45.498016 - ], - [ - -73.416834, - 45.498066 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.4165, - 45.498087 - ], - [ - -73.415848, - 45.497845 - ], - [ - -73.415069, - 45.497555 - ], - [ - -73.414637, - 45.497397 - ], - [ - -73.413391, - 45.496942 - ], - [ - -73.413139, - 45.49685 - ], - [ - -73.41213, - 45.496482 - ], - [ - -73.411766, - 45.496343 - ], - [ - -73.411419, - 45.496194 - ], - [ - -73.411065, - 45.496029 - ], - [ - -73.410951, - 45.495977 - ], - [ - -73.410895, - 45.495951 - ], - [ - -73.410789, - 45.495896 - ], - [ - -73.409735, - 45.495323 - ], - [ - -73.409349, - 45.495112 - ], - [ - -73.409136, - 45.494989 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.408825, - 45.494811 - ], - [ - -73.408434, - 45.49459 - ], - [ - -73.408369, - 45.494555 - ], - [ - -73.408119, - 45.494419 - ], - [ - -73.407735, - 45.494211 - ], - [ - -73.407122, - 45.493914 - ], - [ - -73.406676, - 45.493712 - ], - [ - -73.406594, - 45.493675 - ], - [ - -73.404056, - 45.49253 - ], - [ - -73.40355, - 45.492282 - ], - [ - -73.403081, - 45.492034 - ], - [ - -73.402801, - 45.491865 - ], - [ - -73.402782, - 45.491854 - ], - [ - -73.402626, - 45.491759 - ], - [ - -73.402493, - 45.491674 - ], - [ - -73.402463, - 45.491651 - ], - [ - -73.402357, - 45.491809 - ], - [ - -73.402324, - 45.491865 - ], - [ - -73.402229, - 45.492034 - ], - [ - -73.401287, - 45.493369 - ], - [ - -73.400962, - 45.49381 - ], - [ - -73.400582, - 45.494363 - ], - [ - -73.400352, - 45.494664 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.399521, - 45.49521 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.396689, - 45.493887 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.395089, - 45.493141 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.392017, - 45.491453 - ], - [ - -73.392075, - 45.491404 - ], - [ - -73.392441, - 45.491125 - ], - [ - -73.392989, - 45.49068 - ], - [ - -73.393177, - 45.490469 - ], - [ - -73.39407, - 45.489264 - ], - [ - -73.393539, - 45.489286 - ], - [ - -73.393319, - 45.489571 - ] - ] - }, - "id": 291, - "properties": { - "id": "07d365b4-08e8-468d-a518-8067f0e47591", - "data": { - "gtfs": { - "shape_id": "539_1_A" - }, - "segments": [ - { - "distanceMeters": 443, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 477, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 714, - "travelTimeSeconds": 106 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 411, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 589, - "travelTimeSeconds": 88 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 420, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 364, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 62, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 334, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 366, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 797, - "travelTimeSeconds": 119 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 702, - "travelTimeSeconds": 105 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10486, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3356.3914991906313, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.72, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 6.03, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.72 - }, - "mode": "bus", - "name": "École Heritage", - "color": "#A32638", - "nodes": [ - "aa6eb326-370c-4562-8a0f-6ee973ad147e", - "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", - "4a180761-ffc5-4d97-873b-916ca1656760", - "63ff9173-3e59-4bee-9a21-57d199dc88ec", - "015193c6-e760-4b43-b20c-28dc44f0558a", - "280e5a85-9e1a-4b2a-8fde-6cc3d439dfe9", - "f5c53aa7-466b-4eea-b3e2-5399d8d7f806", - "3437d9a1-68b8-4d3b-8599-7f7b86a577b8", - "20955fbd-1587-4ce3-bc7b-59e84c9c964d", - "648c28de-ca97-4dbf-950c-84a7af5578c7", - "0de64186-5455-4222-b348-dab3af89fb3c", - "f1d23184-1962-40c7-b052-f1f4b7010174", - "d9bf2534-8f61-4d16-adab-8e4d84e855be", - "d68685b2-7e92-4934-989f-8ccfae13451f", - "28985ee5-9fc5-416a-81f8-ff25dba2b6da", - "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", - "4b07d309-8f54-43c8-997d-d4abd77f2d1e", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", - "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", - "c4df5893-41b2-4d6a-81b5-7128fb72aba4", - "5665bcec-62a1-4d01-9550-6900a57f083d", - "0e836f4e-0231-42bf-9c3d-37ea2aef8934", - "30c08115-a1b6-45b8-9122-c5fe99723d2e", - "30c08115-a1b6-45b8-9122-c5fe99723d2e", - "bf4259d8-23ae-478a-8a93-ec28083b908d", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "5dd96d41-c4eb-4453-9e97-752999b1688d", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "df4c6e14-8093-4f02-87d3-4b3d84466b04", - "7c34d8fb-52d2-4cf7-8954-ff69847540ac", - "69b9716f-dd31-4ae3-9736-6d5edb237b8a", - "8354e556-947c-481c-96bd-d61737767f2d", - "87ac0337-2ebc-4670-a2d4-e0f4a5b3c627" - ], - "stops": [], - "line_id": "21d08e6e-8702-48db-a95d-eb07f07676c2", - "segments": [ - 0, - 10, - 13, - 21, - 28, - 30, - 37, - 44, - 47, - 52, - 55, - 62, - 66, - 71, - 78, - 88, - 108, - 111, - 120, - 127, - 139, - 143, - 147, - 149, - 152, - 153, - 156, - 163, - 167, - 173, - 181, - 186, - 203, - 210 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 291, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.392155, - 45.491342 - ], - [ - -73.392075, - 45.491404 - ], - [ - -73.392017, - 45.491453 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.392058, - 45.491722 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.394225, - 45.492736 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.395959, - 45.493551 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.399588, - 45.495242 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.400063, - 45.495324 - ], - [ - -73.400713, - 45.494417 - ], - [ - -73.401104, - 45.493864 - ], - [ - -73.401419, - 45.493423 - ], - [ - -73.402348, - 45.492074 - ], - [ - -73.40251, - 45.491908 - ], - [ - -73.402561, - 45.491939 - ], - [ - -73.402718, - 45.492032 - ], - [ - -73.403076, - 45.492241 - ], - [ - -73.403455, - 45.492444 - ], - [ - -73.403552, - 45.492491 - ], - [ - -73.403928, - 45.492669 - ], - [ - -73.405636, - 45.493441 - ], - [ - -73.405646, - 45.493445 - ], - [ - -73.406315, - 45.493747 - ], - [ - -73.406465, - 45.493815 - ], - [ - -73.407044, - 45.494076 - ], - [ - -73.407318, - 45.494207 - ], - [ - -73.407449, - 45.49427 - ], - [ - -73.408138, - 45.494635 - ], - [ - -73.408588, - 45.494884 - ], - [ - -73.408708, - 45.49495 - ], - [ - -73.408748, - 45.494972 - ], - [ - -73.408851, - 45.495036 - ], - [ - -73.4093, - 45.495297 - ], - [ - -73.410398, - 45.49591 - ], - [ - -73.410626, - 45.496031 - ], - [ - -73.410729, - 45.496085 - ], - [ - -73.411068, - 45.496248 - ], - [ - -73.41156, - 45.496461 - ], - [ - -73.411587, - 45.496473 - ], - [ - -73.412271, - 45.49673 - ], - [ - -73.412864, - 45.496955 - ], - [ - -73.413696, - 45.497258 - ], - [ - -73.414507, - 45.497553 - ], - [ - -73.415733, - 45.497998 - ], - [ - -73.416495, - 45.498275 - ], - [ - -73.416635, - 45.498326 - ], - [ - -73.416745, - 45.498178 - ], - [ - -73.416874, - 45.498016 - ], - [ - -73.416986, - 45.497858 - ], - [ - -73.41707, - 45.497739 - ], - [ - -73.418824, - 45.49526 - ], - [ - -73.418892, - 45.495165 - ], - [ - -73.421021, - 45.492194 - ], - [ - -73.421099, - 45.492084 - ], - [ - -73.421183, - 45.491976 - ], - [ - -73.420761, - 45.49183 - ], - [ - -73.420312, - 45.491674 - ], - [ - -73.419483, - 45.491395 - ], - [ - -73.419326, - 45.491336 - ], - [ - -73.419176, - 45.491259 - ], - [ - -73.419007, - 45.49116 - ], - [ - -73.418432, - 45.490863 - ], - [ - -73.418223, - 45.490764 - ], - [ - -73.417895, - 45.490615 - ], - [ - -73.416915, - 45.49021 - ], - [ - -73.416651, - 45.490097 - ], - [ - -73.416262, - 45.489948 - ], - [ - -73.416101, - 45.489891 - ], - [ - -73.415958, - 45.48984 - ], - [ - -73.414473, - 45.489314 - ], - [ - -73.41339, - 45.488931 - ], - [ - -73.413246, - 45.48888 - ], - [ - -73.413906, - 45.487964 - ], - [ - -73.414235, - 45.487508 - ], - [ - -73.414543, - 45.487058 - ], - [ - -73.414879, - 45.486604 - ], - [ - -73.415045, - 45.486384 - ], - [ - -73.415216, - 45.486168 - ], - [ - -73.41547, - 45.485876 - ], - [ - -73.415625, - 45.485716 - ], - [ - -73.415653, - 45.485687 - ], - [ - -73.415881, - 45.485467 - ], - [ - -73.415979, - 45.485368 - ], - [ - -73.416171, - 45.485201 - ], - [ - -73.416634, - 45.484828 - ], - [ - -73.417619, - 45.484091 - ], - [ - -73.417806, - 45.483954 - ], - [ - -73.418029, - 45.48379 - ], - [ - -73.418778, - 45.484272 - ], - [ - -73.419609, - 45.483652 - ], - [ - -73.420308, - 45.483112 - ], - [ - -73.420348, - 45.483134 - ], - [ - -73.42046, - 45.483193 - ], - [ - -73.420758, - 45.483357 - ], - [ - -73.421429, - 45.483725 - ], - [ - -73.422428, - 45.48427 - ], - [ - -73.423439, - 45.484819 - ], - [ - -73.423524, - 45.484865 - ], - [ - -73.423667, - 45.484946 - ], - [ - -73.424722, - 45.485522 - ], - [ - -73.425067, - 45.485708 - ], - [ - -73.425082, - 45.485716 - ], - [ - -73.425509, - 45.485946 - ], - [ - -73.425293, - 45.486245 - ], - [ - -73.423333, - 45.488964 - ], - [ - -73.423292, - 45.489022 - ], - [ - -73.421245, - 45.491889 - ], - [ - -73.421183, - 45.491976 - ], - [ - -73.421099, - 45.492084 - ], - [ - -73.421366, - 45.492179 - ], - [ - -73.421973, - 45.492395 - ], - [ - -73.422792, - 45.492684 - ], - [ - -73.423173, - 45.492823 - ], - [ - -73.423404, - 45.4929 - ], - [ - -73.423545, - 45.492954 - ], - [ - -73.423688, - 45.493026 - ], - [ - -73.423775, - 45.493075 - ], - [ - -73.423881, - 45.493134 - ], - [ - -73.423992, - 45.493193 - ], - [ - -73.424086, - 45.493252 - ], - [ - -73.424167, - 45.493319 - ], - [ - -73.4245, - 45.493675 - ], - [ - -73.424539, - 45.493715 - ], - [ - -73.424604, - 45.493823 - ], - [ - -73.424742, - 45.493976 - ], - [ - -73.424872, - 45.49408 - ], - [ - -73.425006, - 45.494188 - ], - [ - -73.425153, - 45.494283 - ], - [ - -73.425264, - 45.494344 - ], - [ - -73.425348, - 45.494391 - ], - [ - -73.425495, - 45.494463 - ], - [ - -73.425936, - 45.494625 - ], - [ - -73.426225, - 45.494733 - ], - [ - -73.42705, - 45.495013 - ], - [ - -73.427246, - 45.49508 - ], - [ - -73.427782, - 45.495266 - ], - [ - -73.427911, - 45.49531 - ], - [ - -73.428712, - 45.495599 - ], - [ - -73.430391, - 45.496189 - ], - [ - -73.430519, - 45.496234 - ], - [ - -73.430595, - 45.496131 - ], - [ - -73.430662, - 45.496027 - ], - [ - -73.430941, - 45.495641 - ], - [ - -73.431051, - 45.495488 - ], - [ - -73.431456, - 45.494916 - ], - [ - -73.431796, - 45.494464 - ], - [ - -73.431866, - 45.494372 - ], - [ - -73.432269, - 45.493788 - ], - [ - -73.432568, - 45.493374 - ], - [ - -73.432639, - 45.493293 - ], - [ - -73.43277, - 45.493221 - ], - [ - -73.432927, - 45.49323 - ], - [ - -73.433322, - 45.493372 - ], - [ - -73.433602, - 45.493473 - ], - [ - -73.434513, - 45.493802 - ], - [ - -73.435358, - 45.494049 - ], - [ - -73.435472, - 45.494082 - ], - [ - -73.435723, - 45.494151 - ], - [ - -73.436664, - 45.494411 - ], - [ - -73.437309, - 45.494597 - ], - [ - -73.43754, - 45.494663 - ], - [ - -73.437631, - 45.494539 - ], - [ - -73.438053, - 45.493957 - ], - [ - -73.438134, - 45.493858 - ], - [ - -73.438287, - 45.49358 - ], - [ - -73.438402, - 45.493454 - ], - [ - -73.438549, - 45.49331 - ], - [ - -73.438558, - 45.493301 - ], - [ - -73.438673, - 45.493188 - ], - [ - -73.439084, - 45.493418 - ], - [ - -73.440773, - 45.494359 - ], - [ - -73.440795, - 45.494371 - ], - [ - -73.44114, - 45.494563 - ], - [ - -73.441897, - 45.494985 - ], - [ - -73.442268, - 45.495192 - ], - [ - -73.442288, - 45.495204 - ], - [ - -73.442397, - 45.495264 - ], - [ - -73.442507, - 45.495318 - ], - [ - -73.442123, - 45.495873 - ], - [ - -73.441067, - 45.497401 - ], - [ - -73.440992, - 45.497509 - ], - [ - -73.439779, - 45.499267 - ], - [ - -73.439463, - 45.499154 - ], - [ - -73.439401, - 45.499132 - ], - [ - -73.439296, - 45.499096 - ], - [ - -73.437093, - 45.498327 - ], - [ - -73.437025, - 45.498303 - ], - [ - -73.436911, - 45.498253 - ], - [ - -73.436581, - 45.498141 - ], - [ - -73.436255, - 45.498055 - ], - [ - -73.435929, - 45.497992 - ], - [ - -73.435648, - 45.497915 - ], - [ - -73.434543, - 45.497519 - ], - [ - -73.434393, - 45.497465 - ], - [ - -73.432458, - 45.496785 - ], - [ - -73.432352, - 45.496748 - ], - [ - -73.432274, - 45.496856 - ], - [ - -73.432166, - 45.497004 - ], - [ - -73.431832, - 45.497459 - ], - [ - -73.431441, - 45.498021 - ], - [ - -73.431179, - 45.498393 - ], - [ - -73.430984, - 45.498668 - ], - [ - -73.431159, - 45.498728 - ], - [ - -73.431398, - 45.49881 - ], - [ - -73.431775, - 45.498939 - ], - [ - -73.432516, - 45.4992 - ], - [ - -73.432859, - 45.499326 - ], - [ - -73.433497, - 45.499562 - ] - ] - }, - "id": 292, - "properties": { - "id": "c234f785-cb1c-46d1-9ff3-7c1888ad4e66", - "data": { - "gtfs": { - "shape_id": "539_2_R" - }, - "segments": [ - { - "distanceMeters": 266, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 581, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 63, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 86, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 382, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 488, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 411, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 590, - "travelTimeSeconds": 88 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 420, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 364, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 112, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 38 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10102, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3387.883382381997, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.73, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 6.01, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.73 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "ced239e0-91f5-4429-96fd-20bbb8fcfd11", - "70ea9063-86f0-43f5-9e7d-16ea087fc4ce", - "69b9716f-dd31-4ae3-9736-6d5edb237b8a", - "cb20b749-b55e-4251-94cd-215651864e8b", - "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", - "76b4c3d5-f580-480d-bfec-c2639dd60d13", - "76b4c3d5-f580-480d-bfec-c2639dd60d13", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", - "e654777c-6941-47f5-a273-d73ab074f10e", - "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "bf4259d8-23ae-478a-8a93-ec28083b908d", - "30c08115-a1b6-45b8-9122-c5fe99723d2e", - "4b07d309-8f54-43c8-997d-d4abd77f2d1e", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", - "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", - "c4df5893-41b2-4d6a-81b5-7128fb72aba4", - "5665bcec-62a1-4d01-9550-6900a57f083d", - "0e836f4e-0231-42bf-9c3d-37ea2aef8934", - "30c08115-a1b6-45b8-9122-c5fe99723d2e", - "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", - "28985ee5-9fc5-416a-81f8-ff25dba2b6da", - "d68685b2-7e92-4934-989f-8ccfae13451f", - "d9bf2534-8f61-4d16-adab-8e4d84e855be", - "f1d23184-1962-40c7-b052-f1f4b7010174", - "0de64186-5455-4222-b348-dab3af89fb3c", - "648c28de-ca97-4dbf-950c-84a7af5578c7", - "20955fbd-1587-4ce3-bc7b-59e84c9c964d", - "3437d9a1-68b8-4d3b-8599-7f7b86a577b8", - "f5c53aa7-466b-4eea-b3e2-5399d8d7f806", - "2e1dd055-2856-439e-b231-cd2b626a492f", - "662f52e5-0ed5-4ba7-81cb-757051eefa2c", - "015193c6-e760-4b43-b20c-28dc44f0558a", - "45eb186b-1efe-43c4-8e82-92fe5a15a753", - "63ff9173-3e59-4bee-9a21-57d199dc88ec", - "4a180761-ffc5-4d97-873b-916ca1656760", - "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", - "747c9196-e225-4f37-90ad-0a4fef1b26af", - "aa6eb326-370c-4562-8a0f-6ee973ad147e" - ], - "stops": [], - "line_id": "21d08e6e-8702-48db-a95d-eb07f07676c2", - "segments": [ - 0, - 12, - 19, - 24, - 38, - 40, - 42, - 48, - 54, - 61, - 64, - 69, - 70, - 72, - 87, - 90, - 99, - 106, - 116, - 120, - 124, - 126, - 136, - 148, - 155, - 158, - 165, - 172, - 175, - 179, - 186, - 190, - 193, - 198, - 199, - 204, - 205, - 212, - 214, - 220 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 292, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.423965, - 45.462865 - ], - [ - -73.421437, - 45.464738 - ], - [ - -73.421345, - 45.464806 - ], - [ - -73.41783, - 45.467404 - ], - [ - -73.417764, - 45.467453 - ], - [ - -73.416013, - 45.468747 - ], - [ - -73.415903, - 45.468828 - ], - [ - -73.415843, - 45.468873 - ], - [ - -73.415792, - 45.468914 - ], - [ - -73.414208, - 45.470084 - ], - [ - -73.414113, - 45.470154 - ], - [ - -73.41171, - 45.471941 - ], - [ - -73.411574, - 45.472042 - ], - [ - -73.40969, - 45.473433 - ], - [ - -73.407184, - 45.475283 - ], - [ - -73.406966, - 45.475444 - ], - [ - -73.406646, - 45.475268 - ], - [ - -73.406182, - 45.475012 - ], - [ - -73.405527, - 45.474659 - ], - [ - -73.405388, - 45.474584 - ], - [ - -73.404728, - 45.474217 - ], - [ - -73.404723, - 45.474214 - ], - [ - -73.404642, - 45.474169 - ], - [ - -73.403898, - 45.473773 - ], - [ - -73.403033, - 45.473293 - ], - [ - -73.403012, - 45.473281 - ], - [ - -73.402925, - 45.473236 - ], - [ - -73.402861, - 45.4732 - ], - [ - -73.402694, - 45.473434 - ], - [ - -73.402652, - 45.473497 - ], - [ - -73.402588, - 45.473587 - ], - [ - -73.402575, - 45.473605 - ], - [ - -73.402598, - 45.473682 - ], - [ - -73.402526, - 45.473758 - ], - [ - -73.402424, - 45.473834 - ], - [ - -73.402001, - 45.474387 - ], - [ - -73.40166, - 45.474855 - ], - [ - -73.401528, - 45.475044 - ], - [ - -73.40138, - 45.475237 - ], - [ - -73.401127, - 45.475466 - ], - [ - -73.40103, - 45.475568 - ], - [ - -73.400906, - 45.47563 - ], - [ - -73.400159, - 45.476 - ], - [ - -73.399566, - 45.476293 - ], - [ - -73.39968, - 45.476383 - ], - [ - -73.399891, - 45.476595 - ], - [ - -73.3999, - 45.476608 - ], - [ - -73.399906, - 45.476613 - ], - [ - -73.399913, - 45.476622 - ], - [ - -73.39992, - 45.476631 - ], - [ - -73.399927, - 45.476635 - ], - [ - -73.399934, - 45.476644 - ], - [ - -73.399942, - 45.476653 - ], - [ - -73.39995, - 45.476658 - ], - [ - -73.399958, - 45.476667 - ], - [ - -73.399966, - 45.476671 - ], - [ - -73.399975, - 45.47668 - ], - [ - -73.399984, - 45.476685 - ], - [ - -73.399993, - 45.476694 - ], - [ - -73.400002, - 45.476698 - ], - [ - -73.400012, - 45.476703 - ], - [ - -73.400021, - 45.476712 - ], - [ - -73.400031, - 45.476716 - ], - [ - -73.400041, - 45.476721 - ], - [ - -73.400051, - 45.476725 - ], - [ - -73.400061, - 45.476734 - ], - [ - -73.400072, - 45.476739 - ], - [ - -73.400083, - 45.476743 - ], - [ - -73.400094, - 45.476748 - ], - [ - -73.400105, - 45.476752 - ], - [ - -73.400116, - 45.476757 - ], - [ - -73.400127, - 45.476761 - ], - [ - -73.400139, - 45.476766 - ], - [ - -73.400151, - 45.476766 - ], - [ - -73.400163, - 45.47677 - ], - [ - -73.400248, - 45.476799 - ], - [ - -73.400364, - 45.476838 - ], - [ - -73.401223, - 45.477154 - ], - [ - -73.401918, - 45.47741 - ], - [ - -73.402127, - 45.477488 - ], - [ - -73.403041, - 45.477817 - ], - [ - -73.403831, - 45.47811 - ], - [ - -73.404641, - 45.478398 - ], - [ - -73.405307, - 45.478644 - ], - [ - -73.405459, - 45.478701 - ], - [ - -73.405279, - 45.478954 - ], - [ - -73.405053, - 45.479272 - ], - [ - -73.404603, - 45.47987 - ], - [ - -73.404218, - 45.480391 - ], - [ - -73.4042, - 45.480414 - ], - [ - -73.40413, - 45.480504 - ], - [ - -73.403683, - 45.481106 - ], - [ - -73.403495, - 45.481444 - ], - [ - -73.403466, - 45.481488 - ], - [ - -73.40343, - 45.481524 - ], - [ - -73.403402, - 45.481556 - ], - [ - -73.403345, - 45.481556 - ], - [ - -73.403227, - 45.48156 - ], - [ - -73.401579, - 45.481551 - ], - [ - -73.401359, - 45.48155 - ], - [ - -73.401353, - 45.482238 - ], - [ - -73.4013, - 45.484402 - ], - [ - -73.4013, - 45.484406 - ], - [ - -73.401315, - 45.484488 - ], - [ - -73.400474, - 45.48563 - ], - [ - -73.400324, - 45.485836 - ], - [ - -73.399979, - 45.486309 - ], - [ - -73.399348, - 45.487181 - ], - [ - -73.398864, - 45.487814 - ], - [ - -73.398629, - 45.488062 - ], - [ - -73.398503, - 45.488224 - ], - [ - -73.400292, - 45.490061 - ], - [ - -73.40035, - 45.490119 - ], - [ - -73.400631, - 45.490403 - ], - [ - -73.40073, - 45.490503 - ], - [ - -73.40103, - 45.490791 - ], - [ - -73.401471, - 45.491169 - ], - [ - -73.401853, - 45.491463 - ], - [ - -73.401956, - 45.491543 - ], - [ - -73.402249, - 45.491741 - ], - [ - -73.402277, - 45.491759 - ], - [ - -73.402357, - 45.491809 - ], - [ - -73.402229, - 45.492034 - ], - [ - -73.401287, - 45.493369 - ], - [ - -73.400962, - 45.49381 - ], - [ - -73.400582, - 45.494363 - ], - [ - -73.400352, - 45.494664 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399854, - 45.495371 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.396681, - 45.493883 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.395091, - 45.493141 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.392017, - 45.491453 - ], - [ - -73.392075, - 45.491404 - ], - [ - -73.392441, - 45.491125 - ], - [ - -73.392989, - 45.49068 - ], - [ - -73.393177, - 45.490469 - ], - [ - -73.39407, - 45.489264 - ], - [ - -73.393539, - 45.489286 - ], - [ - -73.393319, - 45.489571 - ] - ] - }, - "id": 293, - "properties": { - "id": "a1094a3b-3829-4b26-ab4d-c3f509833273", - "data": { - "gtfs": { - "shape_id": "540_1_A" - }, - "segments": [ - { - "distanceMeters": 287, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 65, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 335, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 557, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 751, - "travelTimeSeconds": 107 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 702, - "travelTimeSeconds": 101 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6718, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3831.6645043989615, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 5.89, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7 - }, - "mode": "bus", - "name": "École Heritage", - "color": "#A32638", - "nodes": [ - "d739fe08-5298-4356-bd9e-c48a7fee16a1", - "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", - "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", - "176a1328-a08b-40f7-9010-c279f0b6cf5d", - "8dc191fb-71db-4873-9019-c9cedd32b2f0", - "cbe5dd37-dce1-464a-9725-6d31d37c48ab", - "fb30643a-60d9-443e-8b22-29ad762aebdb", - "bd054361-ba99-4c5e-bde0-47f325682b88", - "931c7650-b24c-4431-a556-56243637e8a2", - "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", - "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", - "5b05f00d-fd81-4604-b07f-a519f2a652e9", - "69493295-4b3e-4f92-babc-7684f8cd988a", - "15f5258e-a1ce-4027-8766-29bb39d270b4", - "9a8dc92f-8883-4536-8459-08c71c110b3b", - "d15a4dea-557a-47a7-943e-d1e1a44d1a5a", - "df277747-60c8-4b3b-bafb-24f50e6b7964", - "2d9ef136-ec60-4019-bd4d-d2df55cc0477", - "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6", - "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", - "7c34d8fb-52d2-4cf7-8954-ff69847540ac", - "69b9716f-dd31-4ae3-9736-6d5edb237b8a", - "8354e556-947c-481c-96bd-d61737767f2d", - "87ac0337-2ebc-4670-a2d4-e0f4a5b3c627" - ], - "stops": [], - "line_id": "1a8160b9-8b2d-40a0-a24c-ab68e0962538", - "segments": [ - 0, - 1, - 3, - 5, - 9, - 11, - 13, - 14, - 18, - 24, - 30, - 42, - 75, - 78, - 83, - 89, - 98, - 102, - 105, - 112, - 120, - 132, - 139 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 293, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.392155, - 45.491342 - ], - [ - -73.392075, - 45.491404 - ], - [ - -73.392017, - 45.491453 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.394226, - 45.492736 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.395961, - 45.493552 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.399591, - 45.495243 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399943, - 45.495414 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.400713, - 45.494417 - ], - [ - -73.401104, - 45.493864 - ], - [ - -73.401419, - 45.493423 - ], - [ - -73.402348, - 45.492074 - ], - [ - -73.40251, - 45.491908 - ], - [ - -73.402626, - 45.491759 - ], - [ - -73.402493, - 45.491674 - ], - [ - -73.402463, - 45.491651 - ], - [ - -73.402075, - 45.491386 - ], - [ - -73.401668, - 45.491075 - ], - [ - -73.401167, - 45.490642 - ], - [ - -73.400821, - 45.490307 - ], - [ - -73.40081, - 45.490296 - ], - [ - -73.398817, - 45.488255 - ], - [ - -73.398629, - 45.488062 - ], - [ - -73.398864, - 45.487814 - ], - [ - -73.398921, - 45.48774 - ], - [ - -73.399348, - 45.487181 - ], - [ - -73.399979, - 45.486309 - ], - [ - -73.400132, - 45.486099 - ], - [ - -73.400474, - 45.48563 - ], - [ - -73.401258, - 45.484565 - ], - [ - -73.401315, - 45.484488 - ], - [ - -73.4013, - 45.484402 - ], - [ - -73.401353, - 45.482238 - ], - [ - -73.401357, - 45.481808 - ], - [ - -73.401359, - 45.48155 - ], - [ - -73.403227, - 45.48156 - ], - [ - -73.403345, - 45.481556 - ], - [ - -73.403402, - 45.481556 - ], - [ - -73.40343, - 45.481524 - ], - [ - -73.403466, - 45.481488 - ], - [ - -73.403495, - 45.481444 - ], - [ - -73.403683, - 45.481106 - ], - [ - -73.404056, - 45.480604 - ], - [ - -73.40413, - 45.480504 - ], - [ - -73.404218, - 45.480391 - ], - [ - -73.404603, - 45.47987 - ], - [ - -73.405053, - 45.479272 - ], - [ - -73.405279, - 45.478954 - ], - [ - -73.405388, - 45.478801 - ], - [ - -73.405459, - 45.478701 - ], - [ - -73.404641, - 45.478398 - ], - [ - -73.403831, - 45.47811 - ], - [ - -73.403041, - 45.477817 - ], - [ - -73.402314, - 45.477555 - ], - [ - -73.402127, - 45.477488 - ], - [ - -73.401223, - 45.477154 - ], - [ - -73.400364, - 45.476838 - ], - [ - -73.400163, - 45.47677 - ], - [ - -73.400151, - 45.476766 - ], - [ - -73.400139, - 45.476766 - ], - [ - -73.400127, - 45.476761 - ], - [ - -73.400116, - 45.476757 - ], - [ - -73.400105, - 45.476752 - ], - [ - -73.400094, - 45.476748 - ], - [ - -73.400083, - 45.476743 - ], - [ - -73.400072, - 45.476739 - ], - [ - -73.400061, - 45.476734 - ], - [ - -73.400051, - 45.476725 - ], - [ - -73.400041, - 45.476721 - ], - [ - -73.400031, - 45.476716 - ], - [ - -73.400021, - 45.476712 - ], - [ - -73.400012, - 45.476703 - ], - [ - -73.400002, - 45.476698 - ], - [ - -73.399993, - 45.476694 - ], - [ - -73.399984, - 45.476685 - ], - [ - -73.399975, - 45.47668 - ], - [ - -73.399966, - 45.476671 - ], - [ - -73.399958, - 45.476667 - ], - [ - -73.39995, - 45.476658 - ], - [ - -73.399942, - 45.476653 - ], - [ - -73.399934, - 45.476644 - ], - [ - -73.399927, - 45.476635 - ], - [ - -73.39992, - 45.476631 - ], - [ - -73.399913, - 45.476622 - ], - [ - -73.399906, - 45.476613 - ], - [ - -73.3999, - 45.476608 - ], - [ - -73.399891, - 45.476595 - ], - [ - -73.399781, - 45.476485 - ], - [ - -73.39968, - 45.476383 - ], - [ - -73.401013, - 45.475736 - ], - [ - -73.40103, - 45.475568 - ], - [ - -73.401127, - 45.475466 - ], - [ - -73.40138, - 45.475237 - ], - [ - -73.401528, - 45.475044 - ], - [ - -73.40166, - 45.474855 - ], - [ - -73.402001, - 45.474387 - ], - [ - -73.402303, - 45.473992 - ], - [ - -73.402424, - 45.473834 - ], - [ - -73.402526, - 45.473758 - ], - [ - -73.402598, - 45.473682 - ], - [ - -73.402716, - 45.473664 - ], - [ - -73.402827, - 45.473511 - ], - [ - -73.403012, - 45.473281 - ], - [ - -73.403898, - 45.473773 - ], - [ - -73.404554, - 45.474122 - ], - [ - -73.404642, - 45.474169 - ], - [ - -73.404723, - 45.474214 - ], - [ - -73.404728, - 45.474217 - ], - [ - -73.405388, - 45.474584 - ], - [ - -73.406182, - 45.475012 - ], - [ - -73.406604, - 45.475245 - ], - [ - -73.406966, - 45.475444 - ], - [ - -73.407442, - 45.475093 - ], - [ - -73.409552, - 45.473535 - ], - [ - -73.411476, - 45.472114 - ], - [ - -73.411574, - 45.472042 - ], - [ - -73.413921, - 45.470297 - ], - [ - -73.414113, - 45.470154 - ], - [ - -73.415614, - 45.469045 - ], - [ - -73.415792, - 45.468914 - ], - [ - -73.415843, - 45.468873 - ], - [ - -73.415903, - 45.468828 - ], - [ - -73.417649, - 45.467538 - ], - [ - -73.417764, - 45.467453 - ], - [ - -73.421229, - 45.464891 - ], - [ - -73.421345, - 45.464806 - ], - [ - -73.424242, - 45.46266 - ] - ] - }, - "id": 294, - "properties": { - "id": "c6534281-8b1e-4ab5-ae9e-9f2698f9cb2f", - "data": { - "gtfs": { - "shape_id": "540_2_R" - }, - "segments": [ - { - "distanceMeters": 266, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 987, - "travelTimeSeconds": 139 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 329, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 406, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 49 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6393, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4067.6990338301016, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.1, - "travelTimeWithoutDwellTimesSeconds": 900, - "operatingTimeWithLayoverTimeSeconds": 1080, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 900, - "operatingSpeedWithLayoverMetersPerSecond": 5.92, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.1 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "ced239e0-91f5-4429-96fd-20bbb8fcfd11", - "70ea9063-86f0-43f5-9e7d-16ea087fc4ce", - "69b9716f-dd31-4ae3-9736-6d5edb237b8a", - "cb20b749-b55e-4251-94cd-215651864e8b", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6", - "2d9ef136-ec60-4019-bd4d-d2df55cc0477", - "df277747-60c8-4b3b-bafb-24f50e6b7964", - "d15a4dea-557a-47a7-943e-d1e1a44d1a5a", - "9a8dc92f-8883-4536-8459-08c71c110b3b", - "15f5258e-a1ce-4027-8766-29bb39d270b4", - "5b05f00d-fd81-4604-b07f-a519f2a652e9", - "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", - "55ca5f95-fab1-46cf-be83-81db90d348a5", - "bd054361-ba99-4c5e-bde0-47f325682b88", - "cf532e47-3506-49e5-a1ed-43182c89aa79", - "cbe5dd37-dce1-464a-9725-6d31d37c48ab", - "8dc191fb-71db-4873-9019-c9cedd32b2f0", - "176a1328-a08b-40f7-9010-c279f0b6cf5d", - "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", - "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", - "d739fe08-5298-4356-bd9e-c48a7fee16a1" - ], - "stops": [], - "line_id": "1a8160b9-8b2d-40a0-a24c-ab68e0962538", - "segments": [ - 0, - 11, - 18, - 23, - 41, - 47, - 49, - 53, - 62, - 68, - 73, - 107, - 116, - 124, - 130, - 133, - 134, - 136, - 138, - 142, - 144 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 294, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469004, - 45.466768 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466441, - 45.465884 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465589, - 45.46821 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.46363, - 45.4683 - ], - [ - -73.463472, - 45.468395 - ], - [ - -73.463397, - 45.468431 - ], - [ - -73.463306, - 45.468449 - ], - [ - -73.463219, - 45.468458 - ], - [ - -73.463124, - 45.468449 - ], - [ - -73.463037, - 45.468413 - ], - [ - -73.462702, - 45.468201 - ], - [ - -73.462471, - 45.468057 - ], - [ - -73.462195, - 45.467872 - ], - [ - -73.462008, - 45.467738 - ], - [ - -73.461894, - 45.467656 - ], - [ - -73.461788, - 45.46758 - ], - [ - -73.46133, - 45.467251 - ], - [ - -73.461109, - 45.467094 - ], - [ - -73.460905, - 45.466945 - ], - [ - -73.460729, - 45.466819 - ], - [ - -73.460722, - 45.466814 - ], - [ - -73.460629, - 45.466751 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.458927, - 45.465586 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457079, - 45.464307 - ], - [ - -73.456587, - 45.463951 - ], - [ - -73.45655, - 45.463924 - ], - [ - -73.455675, - 45.463282 - ], - [ - -73.454797, - 45.462637 - ], - [ - -73.454278, - 45.462276 - ], - [ - -73.454148, - 45.462367 - ], - [ - -73.454092, - 45.462406 - ], - [ - -73.454017, - 45.462437 - ], - [ - -73.453888, - 45.462462 - ], - [ - -73.453729, - 45.462455 - ], - [ - -73.453553, - 45.462428 - ], - [ - -73.453343, - 45.462373 - ], - [ - -73.453311, - 45.462361 - ], - [ - -73.453161, - 45.462302 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.452835, - 45.462344 - ], - [ - -73.452775, - 45.462447 - ], - [ - -73.452703, - 45.4626 - ], - [ - -73.452688, - 45.462646 - ], - [ - -73.452663, - 45.462722 - ], - [ - -73.452634, - 45.462879 - ], - [ - -73.45263, - 45.463001 - ], - [ - -73.452662, - 45.463158 - ], - [ - -73.452721, - 45.463379 - ], - [ - -73.452802, - 45.463536 - ], - [ - -73.452912, - 45.463662 - ], - [ - -73.453261, - 45.463932 - ], - [ - -73.453533, - 45.464132 - ], - [ - -73.453617, - 45.464193 - ], - [ - -73.453971, - 45.464449 - ], - [ - -73.45432, - 45.464702 - ], - [ - -73.454635, - 45.464921 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.454655, - 45.465624 - ], - [ - -73.45456, - 45.465692 - ], - [ - -73.453819, - 45.466205 - ], - [ - -73.453432, - 45.466434 - ], - [ - -73.453035, - 45.466641 - ], - [ - -73.452922, - 45.46669 - ], - [ - -73.452774, - 45.466754 - ], - [ - -73.452589, - 45.466834 - ], - [ - -73.451705, - 45.467139 - ], - [ - -73.451627, - 45.467166 - ], - [ - -73.45158, - 45.467183 - ], - [ - -73.451003, - 45.467382 - ], - [ - -73.450937, - 45.467405 - ], - [ - -73.450156, - 45.467679 - ], - [ - -73.449888, - 45.467769 - ], - [ - -73.449338, - 45.467948 - ], - [ - -73.44837, - 45.46829 - ], - [ - -73.447748, - 45.468524 - ], - [ - -73.447289, - 45.468721 - ], - [ - -73.446427, - 45.469169 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445905, - 45.469485 - ], - [ - -73.445671, - 45.469643 - ], - [ - -73.445475, - 45.469778 - ], - [ - -73.445396, - 45.469832 - ], - [ - -73.445298, - 45.469899 - ], - [ - -73.444328, - 45.470583 - ], - [ - -73.444078, - 45.470759 - ], - [ - -73.442661, - 45.471759 - ], - [ - -73.442644, - 45.471771 - ], - [ - -73.442519, - 45.471859 - ], - [ - -73.441942, - 45.47227 - ], - [ - -73.441024, - 45.472924 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.440777, - 45.473082 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.439918, - 45.473559 - ], - [ - -73.438731, - 45.47422 - ], - [ - -73.438304, - 45.474435 - ], - [ - -73.438273, - 45.474449 - ], - [ - -73.437984, - 45.474579 - ], - [ - -73.437774, - 45.474669 - ], - [ - -73.437493, - 45.474781 - ], - [ - -73.436979, - 45.47497 - ], - [ - -73.436441, - 45.475136 - ], - [ - -73.43565, - 45.475338 - ], - [ - -73.435363, - 45.475412 - ], - [ - -73.435246, - 45.475441 - ], - [ - -73.434371, - 45.475675 - ], - [ - -73.43213, - 45.476249 - ], - [ - -73.430984, - 45.476543 - ], - [ - -73.430434, - 45.476684 - ], - [ - -73.430219, - 45.476739 - ], - [ - -73.43007, - 45.476775 - ], - [ - -73.429697, - 45.476873 - ], - [ - -73.429193, - 45.477005 - ], - [ - -73.428358, - 45.477224 - ], - [ - -73.427857, - 45.477363 - ], - [ - -73.427526, - 45.477457 - ], - [ - -73.427221, - 45.477556 - ], - [ - -73.427152, - 45.47758 - ], - [ - -73.426989, - 45.477637 - ], - [ - -73.426493, - 45.477825 - ], - [ - -73.426135, - 45.477978 - ], - [ - -73.425662, - 45.478198 - ], - [ - -73.425284, - 45.478387 - ], - [ - -73.424884, - 45.478612 - ], - [ - -73.424494, - 45.47885 - ], - [ - -73.424258, - 45.479012 - ], - [ - -73.423721, - 45.479389 - ], - [ - -73.423505, - 45.479554 - ], - [ - -73.423421, - 45.479618 - ], - [ - -73.421122, - 45.481312 - ], - [ - -73.421017, - 45.481389 - ], - [ - -73.419775, - 45.482315 - ], - [ - -73.419122, - 45.482809 - ], - [ - -73.418378, - 45.483361 - ], - [ - -73.417919, - 45.483709 - ], - [ - -73.417514, - 45.484019 - ], - [ - -73.4175, - 45.484029 - ], - [ - -73.416526, - 45.484761 - ], - [ - -73.416059, - 45.485134 - ], - [ - -73.415863, - 45.485305 - ], - [ - -73.415534, - 45.485624 - ], - [ - -73.415533, - 45.485624 - ], - [ - -73.415347, - 45.485822 - ], - [ - -73.41509, - 45.486114 - ], - [ - -73.414917, - 45.486334 - ], - [ - -73.41475, - 45.486555 - ], - [ - -73.414412, - 45.487013 - ], - [ - -73.41409, - 45.487458 - ], - [ - -73.413177, - 45.488751 - ], - [ - -73.413119, - 45.488834 - ], - [ - -73.413049, - 45.488947 - ], - [ - -73.411857, - 45.490612 - ], - [ - -73.411381, - 45.491275 - ], - [ - -73.4113, - 45.491389 - ], - [ - -73.410804, - 45.492083 - ], - [ - -73.410177, - 45.492961 - ], - [ - -73.409729, - 45.493588 - ], - [ - -73.409634, - 45.493716 - ], - [ - -73.409271, - 45.494208 - ], - [ - -73.409074, - 45.494473 - ], - [ - -73.409048, - 45.494509 - ], - [ - -73.408825, - 45.494811 - ], - [ - -73.408748, - 45.494972 - ], - [ - -73.408585, - 45.495202 - ], - [ - -73.408399, - 45.49546 - ], - [ - -73.408074, - 45.495912 - ], - [ - -73.407847, - 45.49623 - ], - [ - -73.407762, - 45.496348 - ], - [ - -73.407634, - 45.496528 - ], - [ - -73.407544, - 45.496654 - ], - [ - -73.40725, - 45.497068 - ], - [ - -73.4068, - 45.497701 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.406411, - 45.4982 - ], - [ - -73.405568, - 45.497876 - ], - [ - -73.405172, - 45.497723 - ], - [ - -73.404858, - 45.497588 - ], - [ - -73.404434, - 45.497426 - ], - [ - -73.403795, - 45.49716 - ], - [ - -73.403712, - 45.497124 - ], - [ - -73.403543, - 45.497051 - ], - [ - -73.402953, - 45.49679 - ], - [ - -73.402418, - 45.496555 - ], - [ - -73.401777, - 45.496261 - ], - [ - -73.401121, - 45.49596 - ], - [ - -73.400118, - 45.495495 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.396689, - 45.493887 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.395089, - 45.49314 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.392017, - 45.491453 - ], - [ - -73.392075, - 45.491404 - ], - [ - -73.392441, - 45.491125 - ], - [ - -73.392989, - 45.49068 - ], - [ - -73.393177, - 45.490469 - ], - [ - -73.39407, - 45.489264 - ], - [ - -73.393539, - 45.489286 - ], - [ - -73.393319, - 45.489571 - ] - ] - }, - "id": 295, - "properties": { - "id": "98cb3320-4773-40dd-bd53-2af59a761107", - "data": { - "gtfs": { - "shape_id": "542_1_A" - }, - "segments": [ - { - "distanceMeters": 762, - "travelTimeSeconds": 98 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 344, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 89, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 414, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 394, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 399, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 702, - "travelTimeSeconds": 92 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9694, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6445.489967420419, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.69, - "travelTimeWithoutDwellTimesSeconds": 1260, - "operatingTimeWithLayoverTimeSeconds": 1440, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1260, - "operatingSpeedWithLayoverMetersPerSecond": 6.73, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.69 - }, - "mode": "bus", - "name": "École Heritage", - "color": "#A32638", - "nodes": [ - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "b6dfeeab-9981-4db8-9a90-2e14691bf516", - "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", - "bd9b4c12-08ed-4715-ae67-eb179ed7f974", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "ff779c9a-cd83-463a-8d0c-a93f3584a187", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", - "c8919560-2bb2-4063-8184-8e6c296badbe", - "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", - "0e293c4f-51c2-4ecd-9469-442389cb7915", - "e865e27f-7453-42b2-9745-a8e5425a0276", - "f7218298-f862-4f68-aabe-7a0d51011bc1", - "7f82f5fb-e61e-43a9-957c-0c400fd3ecbd", - "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "78262195-7c3a-4ed5-81d8-a33c906e3099", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "d1cd707b-8ed5-4d1d-b1cb-7633cade451b", - "590769f9-bd2c-482c-8bd5-e3724936b683", - "3e90658d-8898-49d9-be57-5b29936d4a9e", - "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", - "33ed66fe-2193-4e2a-b51d-d25140b9ad80", - "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", - "69b9716f-dd31-4ae3-9736-6d5edb237b8a", - "8354e556-947c-481c-96bd-d61737767f2d", - "87ac0337-2ebc-4670-a2d4-e0f4a5b3c627" - ], - "stops": [], - "line_id": "5b532a49-8a37-4ff4-a60c-c9371575f861", - "segments": [ - 0, - 33, - 53, - 59, - 63, - 69, - 81, - 87, - 96, - 100, - 102, - 108, - 113, - 121, - 129, - 130, - 134, - 141, - 148, - 153, - 162, - 172, - 174, - 181, - 186, - 193, - 197, - 204, - 209, - 213, - 216, - 224, - 228, - 230, - 236, - 243 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 295, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.392155, - 45.491342 - ], - [ - -73.392075, - 45.491404 - ], - [ - -73.392017, - 45.491453 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.394224, - 45.492736 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.395959, - 45.493551 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.399587, - 45.495241 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.401121, - 45.49596 - ], - [ - -73.401614, - 45.496187 - ], - [ - -73.402418, - 45.496555 - ], - [ - -73.402953, - 45.49679 - ], - [ - -73.403406, - 45.49699 - ], - [ - -73.403543, - 45.497051 - ], - [ - -73.403795, - 45.49716 - ], - [ - -73.404434, - 45.497426 - ], - [ - -73.404858, - 45.497588 - ], - [ - -73.405172, - 45.497723 - ], - [ - -73.405568, - 45.497876 - ], - [ - -73.406282, - 45.49815 - ], - [ - -73.406411, - 45.4982 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.406574, - 45.498264 - ], - [ - -73.406813, - 45.497927 - ], - [ - -73.407382, - 45.497122 - ], - [ - -73.407644, - 45.496752 - ], - [ - -73.407675, - 45.496708 - ], - [ - -73.407892, - 45.496394 - ], - [ - -73.408205, - 45.495957 - ], - [ - -73.408715, - 45.495247 - ], - [ - -73.408772, - 45.495159 - ], - [ - -73.408851, - 45.495036 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.409271, - 45.494515 - ], - [ - -73.409537, - 45.494129 - ], - [ - -73.409872, - 45.493642 - ], - [ - -73.411368, - 45.491535 - ], - [ - -73.41144, - 45.491434 - ], - [ - -73.412048, - 45.490575 - ], - [ - -73.413093, - 45.489097 - ], - [ - -73.41317, - 45.488987 - ], - [ - -73.413246, - 45.48888 - ], - [ - -73.414235, - 45.487508 - ], - [ - -73.414543, - 45.487058 - ], - [ - -73.414879, - 45.486604 - ], - [ - -73.415045, - 45.486384 - ], - [ - -73.415216, - 45.486168 - ], - [ - -73.41547, - 45.485876 - ], - [ - -73.415615, - 45.485726 - ], - [ - -73.415653, - 45.485687 - ], - [ - -73.415881, - 45.485467 - ], - [ - -73.415979, - 45.485368 - ], - [ - -73.416171, - 45.485201 - ], - [ - -73.416634, - 45.484828 - ], - [ - -73.417619, - 45.484091 - ], - [ - -73.417793, - 45.483963 - ], - [ - -73.418029, - 45.48379 - ], - [ - -73.419479, - 45.482708 - ], - [ - -73.420488, - 45.481958 - ], - [ - -73.420745, - 45.481758 - ], - [ - -73.42103, - 45.481548 - ], - [ - -73.421135, - 45.481471 - ], - [ - -73.423424, - 45.479784 - ], - [ - -73.423539, - 45.479699 - ], - [ - -73.42384, - 45.47947 - ], - [ - -73.424374, - 45.479093 - ], - [ - -73.424606, - 45.47894 - ], - [ - -73.42499, - 45.478702 - ], - [ - -73.425384, - 45.478481 - ], - [ - -73.425755, - 45.478293 - ], - [ - -73.426224, - 45.478077 - ], - [ - -73.426575, - 45.477924 - ], - [ - -73.42688, - 45.477809 - ], - [ - -73.427064, - 45.47774 - ], - [ - -73.427293, - 45.477659 - ], - [ - -73.427592, - 45.477565 - ], - [ - -73.427919, - 45.477471 - ], - [ - -73.428417, - 45.477332 - ], - [ - -73.430191, - 45.476874 - ], - [ - -73.430341, - 45.476838 - ], - [ - -73.430884, - 45.476699 - ], - [ - -73.430987, - 45.476672 - ], - [ - -73.431616, - 45.47651 - ], - [ - -73.432188, - 45.476362 - ], - [ - -73.434429, - 45.475783 - ], - [ - -73.435096, - 45.475605 - ], - [ - -73.435306, - 45.475549 - ], - [ - -73.435634, - 45.475469 - ], - [ - -73.436518, - 45.475235 - ], - [ - -73.437045, - 45.475069 - ], - [ - -73.437596, - 45.47488 - ], - [ - -73.437872, - 45.474768 - ], - [ - -73.438084, - 45.474678 - ], - [ - -73.438194, - 45.474627 - ], - [ - -73.43841, - 45.474525 - ], - [ - -73.438836, - 45.474314 - ], - [ - -73.43909, - 45.474175 - ], - [ - -73.440044, - 45.473644 - ], - [ - -73.440381, - 45.473457 - ], - [ - -73.440533, - 45.473372 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.440904, - 45.473168 - ], - [ - -73.441015, - 45.473108 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.442526, - 45.472043 - ], - [ - -73.442653, - 45.471954 - ], - [ - -73.444466, - 45.470668 - ], - [ - -73.444558, - 45.470603 - ], - [ - -73.444697, - 45.470504 - ], - [ - -73.445328, - 45.470057 - ], - [ - -73.445338, - 45.470052 - ], - [ - -73.445622, - 45.469854 - ], - [ - -73.446091, - 45.469543 - ], - [ - -73.446383, - 45.469349 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.447066, - 45.468996 - ], - [ - -73.4474, - 45.468829 - ], - [ - -73.447822, - 45.468645 - ], - [ - -73.448427, - 45.468407 - ], - [ - -73.449383, - 45.468079 - ], - [ - -73.449747, - 45.467955 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450233, - 45.467787 - ], - [ - -73.451014, - 45.467517 - ], - [ - -73.451685, - 45.467271 - ], - [ - -73.451729, - 45.467255 - ], - [ - -73.451774, - 45.467238 - ], - [ - -73.452541, - 45.466973 - ], - [ - -73.452657, - 45.466933 - ], - [ - -73.453014, - 45.466803 - ], - [ - -73.45314, - 45.466749 - ], - [ - -73.453548, - 45.466537 - ], - [ - -73.453946, - 45.466304 - ], - [ - -73.454693, - 45.465786 - ], - [ - -73.454701, - 45.465781 - ], - [ - -73.45516, - 45.46545 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.455952, - 45.465079 - ], - [ - -73.456078, - 45.465023 - ], - [ - -73.456262, - 45.464907 - ], - [ - -73.456407, - 45.464824 - ], - [ - -73.456567, - 45.464772 - ], - [ - -73.456717, - 45.464744 - ], - [ - -73.456888, - 45.464733 - ], - [ - -73.457035, - 45.464719 - ], - [ - -73.45718, - 45.464674 - ], - [ - -73.457301, - 45.4646 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.458747, - 45.465455 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.460095, - 45.466428 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.460554, - 45.466805 - ], - [ - -73.460661, - 45.466886 - ], - [ - -73.461028, - 45.467148 - ], - [ - -73.46125, - 45.467305 - ], - [ - -73.461574, - 45.467542 - ], - [ - -73.461806, - 45.46771 - ], - [ - -73.461906, - 45.467783 - ], - [ - -73.461978, - 45.467836 - ], - [ - -73.462611, - 45.468268 - ], - [ - -73.462996, - 45.468568 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.465226, - 45.468287 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466768 - ] - ] - }, - "id": 296, - "properties": { - "id": "fe5793b3-28ff-4294-beac-9010aa3ed0f8", - "data": { - "gtfs": { - "shape_id": "542_2_R" - }, - "segments": [ - { - "distanceMeters": 266, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 68, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 82, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 424, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 345, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 487, - "travelTimeSeconds": 84 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8383, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6628.220671680418, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.82, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 5.17, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.82 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "ced239e0-91f5-4429-96fd-20bbb8fcfd11", - "70ea9063-86f0-43f5-9e7d-16ea087fc4ce", - "69b9716f-dd31-4ae3-9736-6d5edb237b8a", - "cb20b749-b55e-4251-94cd-215651864e8b", - "33ed66fe-2193-4e2a-b51d-d25140b9ad80", - "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", - "aab8672e-86c9-4a43-9806-f5135dc02b4e", - "50ca3159-13cc-4149-b07f-8267a31166e3", - "590769f9-bd2c-482c-8bd5-e3724936b683", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "78262195-7c3a-4ed5-81d8-a33c906e3099", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", - "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", - "8131cbf3-211d-4b69-adcb-9af688489a49", - "e865e27f-7453-42b2-9745-a8e5425a0276", - "0e293c4f-51c2-4ecd-9469-442389cb7915", - "71881b96-39d5-48ea-9242-5e05ded39cda", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "46c30d80-c93e-497b-a096-3a7c13e3723f", - "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", - "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "4fc83229-a15e-48e1-aa4f-fae0073dacf9", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "01153fa0-59fe-4f77-8e46-e418296b526d", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "131616ed-8c78-458b-a65e-78f1aeac1fc7" - ], - "stops": [], - "line_id": "5b532a49-8a37-4ff4-a60c-c9371575f861", - "segments": [ - 0, - 11, - 18, - 23, - 28, - 31, - 38, - 42, - 44, - 49, - 52, - 55, - 58, - 67, - 74, - 79, - 81, - 91, - 100, - 104, - 112, - 118, - 123, - 127, - 132, - 139, - 146, - 153, - 170, - 172, - 180, - 183, - 195 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 296, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.472413, - 45.438012 - ], - [ - -73.472271, - 45.438 - ], - [ - -73.471887, - 45.438576 - ], - [ - -73.471678, - 45.438891 - ], - [ - -73.47036, - 45.440883 - ], - [ - -73.470303, - 45.440969 - ], - [ - -73.470099, - 45.441352 - ], - [ - -73.470027, - 45.441639 - ], - [ - -73.470012, - 45.441666 - ], - [ - -73.469784, - 45.442018 - ], - [ - -73.469477, - 45.442492 - ], - [ - -73.469142, - 45.44301 - ], - [ - -73.469051, - 45.443151 - ], - [ - -73.468613, - 45.443844 - ], - [ - -73.468216, - 45.444456 - ], - [ - -73.468179, - 45.444519 - ], - [ - -73.468126, - 45.444631 - ], - [ - -73.468082, - 45.444748 - ], - [ - -73.468044, - 45.444901 - ], - [ - -73.468021, - 45.445022 - ], - [ - -73.467959, - 45.445234 - ], - [ - -73.467968, - 45.445351 - ], - [ - -73.467947, - 45.445454 - ], - [ - -73.467879, - 45.445603 - ], - [ - -73.467839, - 45.445642 - ], - [ - -73.467743, - 45.445738 - ], - [ - -73.46755, - 45.445972 - ], - [ - -73.467467, - 45.446048 - ], - [ - -73.467388, - 45.446125 - ], - [ - -73.466916, - 45.446619 - ], - [ - -73.466576, - 45.447132 - ], - [ - -73.466314, - 45.447523 - ], - [ - -73.466204, - 45.447915 - ], - [ - -73.466096, - 45.44836 - ], - [ - -73.466078, - 45.448455 - ], - [ - -73.466034, - 45.44854 - ], - [ - -73.466, - 45.448608 - ], - [ - -73.465053, - 45.450083 - ], - [ - -73.464774, - 45.450517 - ], - [ - -73.464689, - 45.45065 - ], - [ - -73.464437, - 45.450996 - ], - [ - -73.464171, - 45.451253 - ], - [ - -73.463604, - 45.451658 - ], - [ - -73.463473, - 45.451752 - ], - [ - -73.462794, - 45.452251 - ], - [ - -73.462647, - 45.452373 - ], - [ - -73.462227, - 45.45284 - ], - [ - -73.462066, - 45.453015 - ], - [ - -73.461995, - 45.453092 - ], - [ - -73.461756, - 45.453348 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.462891, - 45.45421 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.462597, - 45.455054 - ], - [ - -73.462203, - 45.455612 - ], - [ - -73.462014, - 45.455891 - ], - [ - -73.461927, - 45.45608 - ], - [ - -73.461874, - 45.456197 - ], - [ - -73.461786, - 45.456489 - ], - [ - -73.461737, - 45.456795 - ], - [ - -73.461721, - 45.457015 - ], - [ - -73.461746, - 45.457278 - ], - [ - -73.46176, - 45.45742 - ], - [ - -73.461867, - 45.457825 - ], - [ - -73.462081, - 45.458239 - ], - [ - -73.462238, - 45.458487 - ], - [ - -73.462455, - 45.458766 - ], - [ - -73.462613, - 45.458969 - ], - [ - -73.462647, - 45.459013 - ], - [ - -73.462712, - 45.459175 - ], - [ - -73.462745, - 45.459391 - ], - [ - -73.462909, - 45.460586 - ], - [ - -73.462922, - 45.460678 - ], - [ - -73.463035, - 45.46138 - ], - [ - -73.463097, - 45.461763 - ], - [ - -73.463101, - 45.461866 - ], - [ - -73.463058, - 45.461956 - ], - [ - -73.463004, - 45.46201 - ], - [ - -73.462984, - 45.46202 - ], - [ - -73.462926, - 45.462051 - ], - [ - -73.462839, - 45.462082 - ], - [ - -73.462729, - 45.462095 - ], - [ - -73.46213, - 45.462145 - ], - [ - -73.461332, - 45.462216 - ], - [ - -73.461274, - 45.462221 - ], - [ - -73.460596, - 45.46227 - ], - [ - -73.459742, - 45.462333 - ], - [ - -73.458611, - 45.462189 - ], - [ - -73.457924, - 45.462105 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.454674, - 45.46561 - ], - [ - -73.45456, - 45.465692 - ], - [ - -73.453819, - 45.466205 - ], - [ - -73.453432, - 45.466434 - ], - [ - -73.453035, - 45.466641 - ], - [ - -73.452922, - 45.46669 - ], - [ - -73.452797, - 45.466744 - ], - [ - -73.452589, - 45.466834 - ], - [ - -73.451972, - 45.467047 - ], - [ - -73.451705, - 45.467139 - ], - [ - -73.451627, - 45.467166 - ], - [ - -73.45158, - 45.467183 - ], - [ - -73.451026, - 45.467374 - ], - [ - -73.450937, - 45.467405 - ], - [ - -73.450156, - 45.467679 - ], - [ - -73.449888, - 45.467769 - ], - [ - -73.449338, - 45.467948 - ], - [ - -73.44837, - 45.46829 - ], - [ - -73.447748, - 45.468524 - ], - [ - -73.447289, - 45.468721 - ], - [ - -73.446446, - 45.469159 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445905, - 45.469485 - ], - [ - -73.445671, - 45.469643 - ], - [ - -73.445475, - 45.469778 - ], - [ - -73.445396, - 45.469832 - ], - [ - -73.445298, - 45.469899 - ], - [ - -73.444328, - 45.470583 - ], - [ - -73.444085, - 45.470754 - ], - [ - -73.442667, - 45.471755 - ], - [ - -73.442644, - 45.471771 - ], - [ - -73.442519, - 45.471859 - ], - [ - -73.441942, - 45.47227 - ], - [ - -73.44103, - 45.472919 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.440777, - 45.473082 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.439918, - 45.473559 - ], - [ - -73.438731, - 45.47422 - ], - [ - -73.438304, - 45.474435 - ], - [ - -73.438279, - 45.474446 - ], - [ - -73.437984, - 45.474579 - ], - [ - -73.437774, - 45.474669 - ], - [ - -73.437493, - 45.474781 - ], - [ - -73.436979, - 45.47497 - ], - [ - -73.436441, - 45.475136 - ], - [ - -73.43565, - 45.475338 - ], - [ - -73.435369, - 45.47541 - ], - [ - -73.435246, - 45.475441 - ], - [ - -73.434371, - 45.475675 - ], - [ - -73.43213, - 45.476249 - ], - [ - -73.431103, - 45.476513 - ], - [ - -73.430984, - 45.476543 - ], - [ - -73.43045, - 45.47668 - ], - [ - -73.430219, - 45.476739 - ], - [ - -73.43007, - 45.476775 - ], - [ - -73.430191, - 45.476874 - ], - [ - -73.430682, - 45.477184 - ], - [ - -73.43148, - 45.477725 - ], - [ - -73.43157, - 45.477787 - ], - [ - -73.432859, - 45.478671 - ], - [ - -73.433469, - 45.479085 - ], - [ - -73.433608, - 45.479179 - ], - [ - -73.435032, - 45.480148 - ], - [ - -73.435709, - 45.480603 - ], - [ - -73.435802, - 45.480665 - ], - [ - -73.4369, - 45.481417 - ], - [ - -73.437305, - 45.481694 - ], - [ - -73.437407, - 45.481764 - ], - [ - -73.438338, - 45.48239 - ], - [ - -73.438856, - 45.482754 - ], - [ - -73.438971, - 45.482836 - ], - [ - -73.439533, - 45.483272 - ], - [ - -73.440126, - 45.483709 - ], - [ - -73.44066, - 45.484118 - ], - [ - -73.440761, - 45.484195 - ], - [ - -73.441191, - 45.484533 - ], - [ - -73.441638, - 45.484884 - ], - [ - -73.442268, - 45.4854 - ], - [ - -73.44238, - 45.485492 - ], - [ - -73.442979, - 45.48598 - ], - [ - -73.443236, - 45.48619 - ], - [ - -73.443584, - 45.486491 - ], - [ - -73.443685, - 45.486573 - ], - [ - -73.443944, - 45.486784 - ], - [ - -73.444066, - 45.486883 - ], - [ - -73.444405, - 45.487149 - ], - [ - -73.44464, - 45.487266 - ], - [ - -73.444883, - 45.487369 - ], - [ - -73.445062, - 45.487428 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 297, - "properties": { - "id": "0fe4316e-b931-443c-92db-cd824d46e28d", - "data": { - "gtfs": { - "shape_id": "544_1_A" - }, - "segments": [ - { - "distanceMeters": 82, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 485, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 62, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 605, - "travelTimeSeconds": 92 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8369, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6223.748743879313, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.64, - "travelTimeWithoutDwellTimesSeconds": 1260, - "operatingTimeWithLayoverTimeSeconds": 1440, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1260, - "operatingSpeedWithLayoverMetersPerSecond": 5.81, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.64 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", - "e13d482c-ee57-4f7d-bc38-264ca460deda", - "daacedd2-0b84-4f73-9f01-d9072ec32dce", - "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", - "e7ac28b2-1ac9-4d12-811f-8e49f5a7d7ab", - "27cd912d-c30d-4955-977f-68eb1e010190", - "d300031f-a642-4e09-b48b-0e859400e1f7", - "90d9bb0e-4845-468b-af33-21831922eede", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", - "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", - "d13720b6-fb91-4a90-a816-addaef17cf17", - "d0325326-9fbf-42e2-aefa-29fa09853c10", - "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "bd9b4c12-08ed-4715-ae67-eb179ed7f974", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "ff779c9a-cd83-463a-8d0c-a93f3584a187", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", - "c8919560-2bb2-4063-8184-8e6c296badbe", - "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", - "a17f387c-1398-49f4-8a7b-291d91ebc51f", - "a09ea856-287c-4215-ad6a-dab05db66e7a", - "cd932703-83f9-4acf-94fa-d521e6d427d0", - "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", - "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "e72d0d41-60dd-429c-9fc0-986190945d76", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "373a7b53-1e55-4654-a394-ba44efadc255", - "segments": [ - 0, - 2, - 4, - 11, - 24, - 35, - 38, - 42, - 49, - 52, - 57, - 62, - 68, - 72, - 84, - 89, - 100, - 106, - 112, - 120, - 128, - 129, - 133, - 140, - 147, - 153, - 159, - 161, - 164, - 167, - 170, - 174, - 176, - 178, - 184 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 297, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445508, - 45.489489 - ], - [ - -73.4453, - 45.489165 - ], - [ - -73.445238, - 45.489052 - ], - [ - -73.445212, - 45.488985 - ], - [ - -73.445181, - 45.488904 - ], - [ - -73.445074, - 45.488728 - ], - [ - -73.445053, - 45.488544 - ], - [ - -73.445044, - 45.488377 - ], - [ - -73.445046, - 45.488242 - ], - [ - -73.445073, - 45.488085 - ], - [ - -73.445118, - 45.487932 - ], - [ - -73.445182, - 45.487779 - ], - [ - -73.445261, - 45.48759 - ], - [ - -73.445319, - 45.487496 - ], - [ - -73.445386, - 45.487388 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445129, - 45.48732 - ], - [ - -73.444962, - 45.487262 - ], - [ - -73.444731, - 45.487167 - ], - [ - -73.444565, - 45.487086 - ], - [ - -73.444194, - 45.486807 - ], - [ - -73.443808, - 45.486496 - ], - [ - -73.443706, - 45.486415 - ], - [ - -73.44336, - 45.486118 - ], - [ - -73.442629, - 45.485517 - ], - [ - -73.442528, - 45.485434 - ], - [ - -73.441754, - 45.484812 - ], - [ - -73.440973, - 45.484192 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.440245, - 45.483633 - ], - [ - -73.43964, - 45.483201 - ], - [ - -73.439156, - 45.482825 - ], - [ - -73.439083, - 45.482768 - ], - [ - -73.438464, - 45.482318 - ], - [ - -73.43764, - 45.481753 - ], - [ - -73.437512, - 45.481665 - ], - [ - -73.437014, - 45.481332 - ], - [ - -73.43603, - 45.480658 - ], - [ - -73.435909, - 45.480575 - ], - [ - -73.43514, - 45.480067 - ], - [ - -73.433831, - 45.479176 - ], - [ - -73.433717, - 45.479098 - ], - [ - -73.432962, - 45.478594 - ], - [ - -73.431686, - 45.477707 - ], - [ - -73.431589, - 45.477639 - ], - [ - -73.431156, - 45.477363 - ], - [ - -73.430828, - 45.477153 - ], - [ - -73.430771, - 45.477117 - ], - [ - -73.430341, - 45.476838 - ], - [ - -73.430884, - 45.476699 - ], - [ - -73.430994, - 45.47667 - ], - [ - -73.431616, - 45.47651 - ], - [ - -73.432125, - 45.476378 - ], - [ - -73.432188, - 45.476362 - ], - [ - -73.434429, - 45.475783 - ], - [ - -73.435116, - 45.4756 - ], - [ - -73.435306, - 45.475549 - ], - [ - -73.435634, - 45.475469 - ], - [ - -73.436518, - 45.475235 - ], - [ - -73.437045, - 45.475069 - ], - [ - -73.437596, - 45.47488 - ], - [ - -73.437872, - 45.474768 - ], - [ - -73.438084, - 45.474678 - ], - [ - -73.438213, - 45.474618 - ], - [ - -73.43841, - 45.474525 - ], - [ - -73.438836, - 45.474314 - ], - [ - -73.43909, - 45.474175 - ], - [ - -73.440044, - 45.473644 - ], - [ - -73.440381, - 45.473457 - ], - [ - -73.440543, - 45.473367 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.440904, - 45.473168 - ], - [ - -73.441015, - 45.473108 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.442535, - 45.472037 - ], - [ - -73.442653, - 45.471954 - ], - [ - -73.444466, - 45.470668 - ], - [ - -73.444558, - 45.470603 - ], - [ - -73.444707, - 45.470497 - ], - [ - -73.445328, - 45.470057 - ], - [ - -73.445338, - 45.470052 - ], - [ - -73.445622, - 45.469854 - ], - [ - -73.446091, - 45.469543 - ], - [ - -73.446393, - 45.469342 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.447066, - 45.468996 - ], - [ - -73.4474, - 45.468829 - ], - [ - -73.447822, - 45.468645 - ], - [ - -73.448427, - 45.468407 - ], - [ - -73.449383, - 45.468079 - ], - [ - -73.449762, - 45.46795 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450233, - 45.467787 - ], - [ - -73.451014, - 45.467517 - ], - [ - -73.451685, - 45.467271 - ], - [ - -73.451729, - 45.467255 - ], - [ - -73.451774, - 45.467238 - ], - [ - -73.452568, - 45.466963 - ], - [ - -73.452657, - 45.466933 - ], - [ - -73.453014, - 45.466803 - ], - [ - -73.45314, - 45.466749 - ], - [ - -73.453548, - 45.466537 - ], - [ - -73.453946, - 45.466304 - ], - [ - -73.454693, - 45.465786 - ], - [ - -73.454723, - 45.465765 - ], - [ - -73.45516, - 45.46545 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.457621, - 45.462205 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.458544, - 45.46218 - ], - [ - -73.458611, - 45.462189 - ], - [ - -73.459742, - 45.462333 - ], - [ - -73.460596, - 45.46227 - ], - [ - -73.461029, - 45.462239 - ], - [ - -73.461274, - 45.462221 - ], - [ - -73.46213, - 45.462145 - ], - [ - -73.462729, - 45.462095 - ], - [ - -73.462839, - 45.462082 - ], - [ - -73.462926, - 45.462051 - ], - [ - -73.462984, - 45.46202 - ], - [ - -73.463004, - 45.46201 - ], - [ - -73.463058, - 45.461956 - ], - [ - -73.463101, - 45.461866 - ], - [ - -73.463097, - 45.461763 - ], - [ - -73.463035, - 45.46138 - ], - [ - -73.462934, - 45.460754 - ], - [ - -73.462922, - 45.460678 - ], - [ - -73.462764, - 45.459529 - ], - [ - -73.462745, - 45.459391 - ], - [ - -73.462712, - 45.459175 - ], - [ - -73.462647, - 45.459013 - ], - [ - -73.462455, - 45.458766 - ], - [ - -73.462238, - 45.458487 - ], - [ - -73.462081, - 45.458239 - ], - [ - -73.461867, - 45.457825 - ], - [ - -73.461772, - 45.457464 - ], - [ - -73.46176, - 45.45742 - ], - [ - -73.461721, - 45.457015 - ], - [ - -73.461737, - 45.456795 - ], - [ - -73.461786, - 45.456489 - ], - [ - -73.461836, - 45.456321 - ], - [ - -73.461874, - 45.456197 - ], - [ - -73.462014, - 45.455891 - ], - [ - -73.462203, - 45.455612 - ], - [ - -73.462531, - 45.455147 - ], - [ - -73.462597, - 45.455054 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.461792, - 45.45357 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.461995, - 45.453092 - ], - [ - -73.462227, - 45.45284 - ], - [ - -73.462647, - 45.452373 - ], - [ - -73.462794, - 45.452251 - ], - [ - -73.463327, - 45.45186 - ], - [ - -73.463473, - 45.451752 - ], - [ - -73.464171, - 45.451253 - ], - [ - -73.464437, - 45.450996 - ], - [ - -73.464567, - 45.450818 - ], - [ - -73.464689, - 45.45065 - ], - [ - -73.465053, - 45.450083 - ], - [ - -73.465978, - 45.448642 - ], - [ - -73.466, - 45.448608 - ], - [ - -73.466078, - 45.448455 - ], - [ - -73.466096, - 45.44836 - ], - [ - -73.466204, - 45.447915 - ], - [ - -73.466314, - 45.447523 - ], - [ - -73.466576, - 45.447132 - ], - [ - -73.466916, - 45.446619 - ], - [ - -73.467118, - 45.446407 - ], - [ - -73.467388, - 45.446125 - ], - [ - -73.467467, - 45.446048 - ], - [ - -73.46755, - 45.445972 - ], - [ - -73.467743, - 45.445738 - ], - [ - -73.467879, - 45.445603 - ], - [ - -73.467947, - 45.445454 - ], - [ - -73.467968, - 45.445351 - ], - [ - -73.467959, - 45.445234 - ], - [ - -73.468021, - 45.445022 - ], - [ - -73.468044, - 45.444901 - ], - [ - -73.468082, - 45.444748 - ], - [ - -73.468126, - 45.444631 - ], - [ - -73.468179, - 45.444519 - ], - [ - -73.468216, - 45.444456 - ], - [ - -73.468613, - 45.443844 - ], - [ - -73.468958, - 45.443298 - ], - [ - -73.469051, - 45.443151 - ], - [ - -73.469477, - 45.442492 - ], - [ - -73.469784, - 45.442018 - ], - [ - -73.470012, - 45.441666 - ], - [ - -73.470027, - 45.441639 - ], - [ - -73.470099, - 45.441352 - ], - [ - -73.47026, - 45.441049 - ], - [ - -73.470303, - 45.440969 - ], - [ - -73.471678, - 45.438891 - ], - [ - -73.472217, - 45.438081 - ] - ] - }, - "id": 298, - "properties": { - "id": "3be2034d-6a23-4475-ac32-ada8373b988a", - "data": { - "gtfs": { - "shape_id": "544_2_R" - }, - "segments": [ - { - "distanceMeters": 757, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 91, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 343, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 463, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 84, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 380, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 364, - "travelTimeSeconds": 58 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8296, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6223.748743879313, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.28, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 5.53, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.28 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", - "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", - "cd932703-83f9-4acf-94fa-d521e6d427d0", - "a09ea856-287c-4215-ad6a-dab05db66e7a", - "a17f387c-1398-49f4-8a7b-291d91ebc51f", - "71881b96-39d5-48ea-9242-5e05ded39cda", - "71881b96-39d5-48ea-9242-5e05ded39cda", - "126ef269-cdfb-4230-9d48-8082f5180c1a", - "46c30d80-c93e-497b-a096-3a7c13e3723f", - "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", - "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "4fc83229-a15e-48e1-aa4f-fae0073dacf9", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "5d862a7d-92b0-4def-8199-258993ce3523", - "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", - "d0325326-9fbf-42e2-aefa-29fa09853c10", - "d13720b6-fb91-4a90-a816-addaef17cf17", - "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", - "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", - "5b030db6-8eaf-4505-a2c0-5a5290886d5b", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "90d9bb0e-4845-468b-af33-21831922eede", - "d300031f-a642-4e09-b48b-0e859400e1f7", - "27cd912d-c30d-4955-977f-68eb1e010190", - "809d30b8-456e-4e86-b782-8a6448d546e0", - "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", - "daacedd2-0b84-4f73-9f01-d9072ec32dce", - "4a2d3316-6189-4ef5-b2d8-0d855b8ad675" - ], - "stops": [], - "line_id": "373a7b53-1e55-4654-a394-ba44efadc255", - "segments": [ - 0, - 38, - 41, - 45, - 48, - 51, - 54, - 57, - 60, - 64, - 69, - 77, - 83, - 88, - 92, - 97, - 104, - 111, - 118, - 130, - 132, - 136, - 148, - 150, - 158, - 163, - 167, - 172, - 178, - 182, - 185, - 193, - 209, - 216 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 298, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.490549, - 45.447733 - ], - [ - -73.490554, - 45.447636 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.490565, - 45.447402 - ], - [ - -73.49061, - 45.446822 - ], - [ - -73.491053, - 45.445413 - ], - [ - -73.491055, - 45.445404 - ], - [ - -73.491092, - 45.445287 - ], - [ - -73.491285, - 45.444689 - ], - [ - -73.491504, - 45.443969 - ], - [ - -73.491549, - 45.44338 - ], - [ - -73.491559, - 45.443245 - ], - [ - -73.492476, - 45.443271 - ], - [ - -73.492685, - 45.443277 - ], - [ - -73.492825, - 45.443281 - ], - [ - -73.49278, - 45.443672 - ], - [ - -73.492671, - 45.445045 - ], - [ - -73.492587, - 45.445944 - ], - [ - -73.492457, - 45.447463 - ], - [ - -73.49245, - 45.447542 - ], - [ - -73.491852, - 45.447527 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.490554, - 45.447636 - ], - [ - -73.490536, - 45.447988 - ], - [ - -73.490521, - 45.448293 - ], - [ - -73.490407, - 45.449504 - ], - [ - -73.490386, - 45.449719 - ], - [ - -73.490356, - 45.450109 - ], - [ - -73.490274, - 45.451145 - ], - [ - -73.490184, - 45.451908 - ], - [ - -73.490174, - 45.451996 - ], - [ - -73.490164, - 45.452099 - ], - [ - -73.490107, - 45.452689 - ], - [ - -73.490099, - 45.452842 - ], - [ - -73.490095, - 45.452936 - ], - [ - -73.490138, - 45.453076 - ], - [ - -73.490177, - 45.453161 - ], - [ - -73.490251, - 45.453269 - ], - [ - -73.490337, - 45.453359 - ], - [ - -73.490542, - 45.453511 - ], - [ - -73.49064, - 45.453584 - ], - [ - -73.490922, - 45.453778 - ], - [ - -73.491049, - 45.453868 - ], - [ - -73.491205, - 45.454016 - ], - [ - -73.491307, - 45.454169 - ], - [ - -73.491353, - 45.454286 - ], - [ - -73.491385, - 45.45439 - ], - [ - -73.491385, - 45.45452 - ], - [ - -73.491384, - 45.454537 - ], - [ - -73.491379, - 45.454673 - ], - [ - -73.491306, - 45.455478 - ], - [ - -73.491179, - 45.455672 - ], - [ - -73.49101, - 45.455802 - ], - [ - -73.491002, - 45.455806 - ], - [ - -73.490874, - 45.45587 - ], - [ - -73.490235, - 45.456194 - ], - [ - -73.490047, - 45.45632 - ], - [ - -73.489891, - 45.45645 - ], - [ - -73.489837, - 45.456558 - ], - [ - -73.489805, - 45.456679 - ], - [ - -73.48979, - 45.456792 - ], - [ - -73.489787, - 45.45681 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.489765, - 45.457071 - ], - [ - -73.489763, - 45.457296 - ], - [ - -73.489736, - 45.457408 - ], - [ - -73.489694, - 45.457516 - ], - [ - -73.489182, - 45.458344 - ], - [ - -73.489058, - 45.458542 - ], - [ - -73.488929, - 45.458754 - ], - [ - -73.48884, - 45.458976 - ], - [ - -73.488828, - 45.459006 - ], - [ - -73.488777, - 45.459727 - ], - [ - -73.488701, - 45.460814 - ], - [ - -73.488665, - 45.4614 - ], - [ - -73.488659, - 45.461512 - ], - [ - -73.488594, - 45.462464 - ], - [ - -73.488573, - 45.462762 - ], - [ - -73.488498, - 45.462929 - ], - [ - -73.488349, - 45.463109 - ], - [ - -73.488147, - 45.463215 - ], - [ - -73.488109, - 45.463235 - ], - [ - -73.487821, - 45.463302 - ], - [ - -73.487412, - 45.463379 - ], - [ - -73.487283, - 45.463388 - ], - [ - -73.487042, - 45.463406 - ], - [ - -73.486606, - 45.463401 - ], - [ - -73.486489, - 45.463401 - ], - [ - -73.486321, - 45.463433 - ], - [ - -73.486243, - 45.463455 - ], - [ - -73.486089, - 45.463495 - ], - [ - -73.485952, - 45.463553 - ], - [ - -73.485896, - 45.463576 - ], - [ - -73.485826, - 45.463612 - ], - [ - -73.485277, - 45.463878 - ], - [ - -73.485098, - 45.46395 - ], - [ - -73.484961, - 45.463999 - ], - [ - -73.484817, - 45.464035 - ], - [ - -73.484669, - 45.464067 - ], - [ - -73.484494, - 45.464076 - ], - [ - -73.484342, - 45.46408 - ], - [ - -73.48257, - 45.464048 - ], - [ - -73.482584, - 45.463697 - ], - [ - -73.482595, - 45.463423 - ], - [ - -73.482613, - 45.462807 - ], - [ - -73.482585, - 45.462708 - ], - [ - -73.482548, - 45.462559 - ], - [ - -73.48256, - 45.462375 - ], - [ - -73.482561, - 45.462353 - ], - [ - -73.482568, - 45.462177 - ], - [ - -73.482575, - 45.461956 - ], - [ - -73.482605, - 45.461662 - ], - [ - -73.482626, - 45.461448 - ], - [ - -73.482754, - 45.460997 - ], - [ - -73.482782, - 45.460899 - ], - [ - -73.483264, - 45.459885 - ], - [ - -73.483304, - 45.459801 - ], - [ - -73.483406, - 45.459504 - ], - [ - -73.4835, - 45.459081 - ], - [ - -73.483547, - 45.458852 - ], - [ - -73.483587, - 45.458486 - ], - [ - -73.483595, - 45.45842 - ], - [ - -73.48364, - 45.457923 - ], - [ - -73.483653, - 45.457786 - ], - [ - -73.483674, - 45.457283 - ], - [ - -73.483692, - 45.456872 - ], - [ - -73.483698, - 45.456733 - ], - [ - -73.482908, - 45.456699 - ], - [ - -73.482756, - 45.456692 - ], - [ - -73.482803, - 45.455945 - ], - [ - -73.482873, - 45.455347 - ], - [ - -73.482933, - 45.455144 - ], - [ - -73.483011, - 45.454952 - ], - [ - -73.483041, - 45.454879 - ], - [ - -73.483256, - 45.454555 - ], - [ - -73.483527, - 45.454254 - ], - [ - -73.483647, - 45.454132 - ], - [ - -73.48375, - 45.454002 - ], - [ - -73.48383, - 45.453858 - ], - [ - -73.483876, - 45.453709 - ], - [ - -73.483893, - 45.453567 - ], - [ - -73.483908, - 45.453444 - ], - [ - -73.483918, - 45.453192 - ], - [ - -73.483914, - 45.453106 - ], - [ - -73.483846, - 45.452963 - ], - [ - -73.483803, - 45.452872 - ], - [ - -73.483523, - 45.452683 - ], - [ - -73.483385, - 45.452634 - ], - [ - -73.483204, - 45.452607 - ], - [ - -73.482285, - 45.452579 - ], - [ - -73.481533, - 45.452556 - ], - [ - -73.481291, - 45.452548 - ], - [ - -73.480742, - 45.452539 - ], - [ - -73.480267, - 45.452543 - ], - [ - -73.479609, - 45.452606 - ], - [ - -73.479441, - 45.452631 - ], - [ - -73.479278, - 45.452656 - ], - [ - -73.479123, - 45.452678 - ], - [ - -73.479207, - 45.453038 - ], - [ - -73.479292, - 45.453398 - ], - [ - -73.479352, - 45.453722 - ], - [ - -73.479396, - 45.454042 - ], - [ - -73.47947, - 45.454763 - ], - [ - -73.47953, - 45.455342 - ], - [ - -73.479549, - 45.455666 - ], - [ - -73.479585, - 45.456089 - ], - [ - -73.479607, - 45.456396 - ], - [ - -73.479622, - 45.456606 - ], - [ - -73.479632, - 45.456719 - ], - [ - -73.47968, - 45.45724 - ], - [ - -73.479701, - 45.457465 - ], - [ - -73.47972, - 45.457668 - ], - [ - -73.479747, - 45.458082 - ], - [ - -73.479754, - 45.45832 - ], - [ - -73.479732, - 45.458469 - ], - [ - -73.479695, - 45.458689 - ], - [ - -73.479603, - 45.459 - ], - [ - -73.479545, - 45.459171 - ], - [ - -73.479519, - 45.459226 - ], - [ - -73.479465, - 45.459342 - ], - [ - -73.479339, - 45.459576 - ], - [ - -73.479253, - 45.45972 - ], - [ - -73.479162, - 45.45985 - ], - [ - -73.478872, - 45.460205 - ], - [ - -73.478751, - 45.460331 - ], - [ - -73.478332, - 45.460692 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.476655, - 45.461967 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.474375, - 45.468221 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474292, - 45.469387 - ], - [ - -73.47426, - 45.469555 - ], - [ - -73.474234, - 45.469689 - ], - [ - -73.474156, - 45.470095 - ], - [ - -73.474035, - 45.470724 - ], - [ - -73.473974, - 45.47107 - ], - [ - -73.473942, - 45.471336 - ], - [ - -73.473932, - 45.471601 - ], - [ - -73.473937, - 45.47168 - ], - [ - -73.473947, - 45.471826 - ], - [ - -73.473986, - 45.472118 - ], - [ - -73.473998, - 45.472177 - ], - [ - -73.474046, - 45.47242 - ], - [ - -73.474106, - 45.47264 - ], - [ - -73.474275, - 45.473063 - ], - [ - -73.474463, - 45.473437 - ], - [ - -73.474007, - 45.473581 - ], - [ - -73.473846, - 45.473648 - ], - [ - -73.473736, - 45.473702 - ], - [ - -73.473545, - 45.473797 - ], - [ - -73.473485, - 45.47383 - ], - [ - -73.473457, - 45.473846 - ], - [ - -73.473334, - 45.473927 - ], - [ - -73.473141, - 45.474053 - ], - [ - -73.473062, - 45.474109 - ], - [ - -73.472074, - 45.474808 - ], - [ - -73.471729, - 45.474583 - ], - [ - -73.470391, - 45.473622 - ], - [ - -73.470064, - 45.473386 - ], - [ - -73.468607, - 45.472409 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467508, - 45.472063 - ], - [ - -73.467493, - 45.472108 - ], - [ - -73.467347, - 45.472549 - ], - [ - -73.467254, - 45.472832 - ], - [ - -73.467075, - 45.473412 - ], - [ - -73.467018, - 45.473612 - ], - [ - -73.46686, - 45.474168 - ], - [ - -73.466715, - 45.474632 - ], - [ - -73.466501, - 45.475269 - ], - [ - -73.466278, - 45.475935 - ], - [ - -73.466234, - 45.476067 - ], - [ - -73.46613, - 45.476374 - ], - [ - -73.465592, - 45.477979 - ], - [ - -73.465357, - 45.478703 - ], - [ - -73.465344, - 45.478738 - ], - [ - -73.465269, - 45.478932 - ], - [ - -73.465247, - 45.479 - ], - [ - -73.465125, - 45.479367 - ], - [ - -73.464879, - 45.480107 - ], - [ - -73.464823, - 45.480273 - ], - [ - -73.464733, - 45.480574 - ], - [ - -73.464664, - 45.480885 - ], - [ - -73.464648, - 45.481004 - ], - [ - -73.464634, - 45.481108 - ], - [ - -73.464622, - 45.481195 - ], - [ - -73.464619, - 45.481245 - ], - [ - -73.464603, - 45.481524 - ], - [ - -73.464619, - 45.481956 - ], - [ - -73.464693, - 45.482383 - ], - [ - -73.464736, - 45.482559 - ], - [ - -73.46485, - 45.482905 - ], - [ - -73.46499, - 45.483243 - ], - [ - -73.465069, - 45.483405 - ], - [ - -73.465231, - 45.483688 - ], - [ - -73.465328, - 45.483837 - ], - [ - -73.465516, - 45.484318 - ], - [ - -73.465535, - 45.48439 - ], - [ - -73.465531, - 45.484453 - ], - [ - -73.465521, - 45.484494 - ], - [ - -73.465494, - 45.484521 - ], - [ - -73.465474, - 45.484542 - ], - [ - -73.465464, - 45.484552 - ], - [ - -73.46542, - 45.484575 - ], - [ - -73.465379, - 45.484592 - ], - [ - -73.465324, - 45.484601 - ], - [ - -73.465214, - 45.484601 - ], - [ - -73.464965, - 45.484574 - ], - [ - -73.464559, - 45.484417 - ], - [ - -73.464508, - 45.484399 - ], - [ - -73.464185, - 45.484291 - ], - [ - -73.463703, - 45.484155 - ], - [ - -73.463657, - 45.484142 - ], - [ - -73.46319, - 45.484029 - ], - [ - -73.462672, - 45.483908 - ], - [ - -73.462287, - 45.483831 - ], - [ - -73.462032, - 45.483791 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.46135, - 45.4837 - ], - [ - -73.460838, - 45.483637 - ], - [ - -73.460197, - 45.483582 - ], - [ - -73.459999, - 45.483565 - ], - [ - -73.459497, - 45.483511 - ], - [ - -73.459033, - 45.483457 - ], - [ - -73.458739, - 45.483407 - ], - [ - -73.458547, - 45.483371 - ], - [ - -73.458333, - 45.483321 - ], - [ - -73.458016, - 45.483245 - ], - [ - -73.45777, - 45.483182 - ], - [ - -73.45751, - 45.483107 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45645, - 45.482799 - ], - [ - -73.455886, - 45.482623 - ], - [ - -73.455654, - 45.482542 - ], - [ - -73.455462, - 45.482465 - ], - [ - -73.455289, - 45.48239 - ], - [ - -73.455276, - 45.482384 - ], - [ - -73.455009, - 45.482272 - ], - [ - -73.454605, - 45.482087 - ], - [ - -73.454381, - 45.481984 - ], - [ - -73.454145, - 45.481862 - ], - [ - -73.453796, - 45.481673 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452379, - 45.481446 - ], - [ - -73.452062, - 45.481636 - ], - [ - -73.45135, - 45.482063 - ], - [ - -73.451266, - 45.482113 - ], - [ - -73.450112, - 45.482799 - ], - [ - -73.449882, - 45.482936 - ], - [ - -73.449245, - 45.483336 - ], - [ - -73.449101, - 45.483471 - ], - [ - -73.448914, - 45.483713 - ], - [ - -73.448817, - 45.483898 - ], - [ - -73.448629, - 45.484109 - ], - [ - -73.44844, - 45.484271 - ], - [ - -73.448225, - 45.484479 - ], - [ - -73.44775, - 45.484937 - ], - [ - -73.447415, - 45.485256 - ], - [ - -73.447237, - 45.485427 - ], - [ - -73.447005, - 45.485643 - ], - [ - -73.44679, - 45.485848 - ], - [ - -73.446708, - 45.485926 - ], - [ - -73.445795, - 45.486794 - ], - [ - -73.445654, - 45.486915 - ], - [ - -73.445524, - 45.487041 - ], - [ - -73.445408, - 45.487167 - ], - [ - -73.445366, - 45.487222 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 299, - "properties": { - "id": "e1aefbbf-b4fe-495c-83b7-c77bd5ff6986", - "data": { - "gtfs": { - "shape_id": "546_1_A" - }, - "segments": [ - { - "distanceMeters": 262, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 477, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 392, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 750, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 403, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 436, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 72, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 838, - "travelTimeSeconds": 134 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 404, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 510, - "travelTimeSeconds": 82 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 198, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12407, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5927.194396535737, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.27, - "travelTimeWithoutDwellTimesSeconds": 1980, - "operatingTimeWithLayoverTimeSeconds": 2178, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1980, - "operatingSpeedWithLayoverMetersPerSecond": 5.7, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.27 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "56755a3d-6779-4355-8b48-27271fb6ce0b", - "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", - "14d2c36b-50a3-4d98-8947-81016b2b2927", - "0d8bc8fc-204a-4f67-a22f-4e3e93df3587", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "997c4af9-ab50-4dfb-941a-afadff58f267", - "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", - "c7c30949-db61-44fc-b7ab-a69b9fde12cc", - "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", - "f1131e74-6c65-4f22-a18d-41dbe35e4576", - "984def83-5f59-45f7-bb33-ed1dbca30502", - "5a6d8067-b58d-4ab2-838e-422e8f003ee9", - "9c711698-0f65-4997-8a72-24f5d8ab8fb7", - "1339471a-52fa-47e9-b0e4-753bf917ef08", - "57de752e-d268-4125-8223-581e6c2ff56e", - "2ecca6ee-e688-465d-a0b1-929435b41047", - "57b17011-c22d-458b-b4e5-e636c5436ed9", - "e51dbc0e-9385-4f59-b401-fd29a59c8b5b", - "d2127fc0-fbc1-4459-b6f9-07c0b8d9cdbe", - "258cb5fd-8795-41af-8e07-3de8ea977e23", - "ecb00316-793a-4c41-88bd-3870bea4d999", - "f92fabb3-5544-4aa3-8461-0c7fc17380ef", - "f889063d-4196-4990-bc8c-d6010d0c0192", - "95a6ef09-da34-422a-81ec-389b0e0bb278", - "c25adb1f-635e-4881-a89d-af8a9ea5ca92", - "87774b57-5ee3-418d-948c-ba4db73d3893", - "1ea7db5e-3ee6-4553-9276-7c24296c866d", - "9a86a407-515f-4b5e-8a56-9a4c52c91c96", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", - "3a8b9936-4595-4770-a3f4-b31253602356", - "82735dcc-3897-4e4c-87e8-45ee1dacedaa", - "85f19be2-1f67-4673-b3b3-52d06ed31ae3", - "47d29e21-b442-4f1e-bc41-0d7871af14e8", - "7eaffbff-c86c-4810-b174-bda8780c04b4", - "e76a6766-6730-419b-bd29-f65b80bb6721", - "bf51d692-a22e-42e9-a495-2d1955e0c462", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "491099bb-9493-4888-bd4e-20bd2140830a", - "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", - "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "d9b94443-0b59-40db-aecb-0acb5ea7976c", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "21e06751-3bad-4297-b332-9006f4a5a05d", - "segments": [ - 0, - 5, - 10, - 13, - 18, - 23, - 25, - 29, - 39, - 48, - 53, - 60, - 70, - 74, - 91, - 102, - 108, - 113, - 115, - 120, - 124, - 127, - 132, - 144, - 150, - 155, - 162, - 166, - 169, - 178, - 185, - 187, - 215, - 220, - 227, - 239, - 246, - 254, - 263, - 266, - 269, - 274, - 312, - 321, - 327, - 340, - 341, - 349, - 354, - 360 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 299, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446649, - 45.490498 - ], - [ - -73.446822, - 45.490639 - ], - [ - -73.44688, - 45.490686 - ], - [ - -73.447262, - 45.491006 - ], - [ - -73.447337, - 45.491069 - ], - [ - -73.447665, - 45.490889 - ], - [ - -73.448136, - 45.490592 - ], - [ - -73.44848, - 45.49039 - ], - [ - -73.448793, - 45.490206 - ], - [ - -73.44919, - 45.489963 - ], - [ - -73.44932, - 45.489889 - ], - [ - -73.449476, - 45.489801 - ], - [ - -73.450048, - 45.489455 - ], - [ - -73.450226, - 45.489293 - ], - [ - -73.450385, - 45.489131 - ], - [ - -73.450522, - 45.488807 - ], - [ - -73.450554, - 45.488635 - ], - [ - -73.450562, - 45.488591 - ], - [ - -73.450564, - 45.488501 - ], - [ - -73.451142, - 45.48852 - ], - [ - -73.451437, - 45.488556 - ], - [ - -73.451471, - 45.48856 - ], - [ - -73.451663, - 45.488618 - ], - [ - -73.451864, - 45.488677 - ], - [ - -73.452026, - 45.48874 - ], - [ - -73.452059, - 45.488756 - ], - [ - -73.45223, - 45.488835 - ], - [ - -73.452277, - 45.488867 - ], - [ - -73.452316, - 45.488894 - ], - [ - -73.452398, - 45.488943 - ], - [ - -73.452482, - 45.488993 - ], - [ - -73.452596, - 45.489092 - ], - [ - -73.452853, - 45.489389 - ], - [ - -73.453059, - 45.489641 - ], - [ - -73.453301, - 45.489897 - ], - [ - -73.453554, - 45.490154 - ], - [ - -73.453816, - 45.490388 - ], - [ - -73.454028, - 45.490572 - ], - [ - -73.454376, - 45.490852 - ], - [ - -73.4547, - 45.491108 - ], - [ - -73.454792, - 45.49118 - ], - [ - -73.455383, - 45.490825 - ], - [ - -73.456177, - 45.490348 - ], - [ - -73.456382, - 45.490186 - ], - [ - -73.45652, - 45.490034 - ], - [ - -73.456589, - 45.489894 - ], - [ - -73.456688, - 45.489687 - ], - [ - -73.456693, - 45.489668 - ], - [ - -73.456709, - 45.489602 - ], - [ - -73.456724, - 45.489525 - ], - [ - -73.456835, - 45.488612 - ], - [ - -73.456898, - 45.488075 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457729, - 45.48665 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.459257, - 45.48572 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.46022, - 45.485044 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.461105, - 45.484438 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.462585, - 45.484043 - ], - [ - -73.463416, - 45.484224 - ], - [ - -73.463639, - 45.484291 - ], - [ - -73.464599, - 45.48462 - ], - [ - -73.465244, - 45.484835 - ], - [ - -73.465443, - 45.484908 - ], - [ - -73.465586, - 45.484937 - ], - [ - -73.465724, - 45.484942 - ], - [ - -73.465848, - 45.484931 - ], - [ - -73.466018, - 45.484884 - ], - [ - -73.466121, - 45.484844 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466302, - 45.484687 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466188, - 45.484448 - ], - [ - -73.466149, - 45.484395 - ], - [ - -73.466127, - 45.48437 - ], - [ - -73.465905, - 45.484113 - ], - [ - -73.465719, - 45.4839 - ], - [ - -73.46546, - 45.483541 - ], - [ - -73.465236, - 45.483174 - ], - [ - -73.465161, - 45.483037 - ], - [ - -73.465057, - 45.482799 - ], - [ - -73.464968, - 45.48254 - ], - [ - -73.46489, - 45.482284 - ], - [ - -73.464833, - 45.481906 - ], - [ - -73.464816, - 45.481524 - ], - [ - -73.464841, - 45.481196 - ], - [ - -73.464843, - 45.481165 - ], - [ - -73.464847, - 45.481114 - ], - [ - -73.464866, - 45.480979 - ], - [ - -73.46492, - 45.48071 - ], - [ - -73.465032, - 45.480327 - ], - [ - -73.465198, - 45.479819 - ], - [ - -73.46547, - 45.479009 - ], - [ - -73.465548, - 45.478776 - ], - [ - -73.465652, - 45.478467 - ], - [ - -73.465874, - 45.477808 - ], - [ - -73.466475, - 45.475992 - ], - [ - -73.466484, - 45.475966 - ], - [ - -73.466637, - 45.475504 - ], - [ - -73.467366, - 45.473305 - ], - [ - -73.467616, - 45.472553 - ], - [ - -73.467822, - 45.472468 - ], - [ - -73.467906, - 45.472436 - ], - [ - -73.468005, - 45.472409 - ], - [ - -73.468127, - 45.472396 - ], - [ - -73.468231, - 45.472409 - ], - [ - -73.468368, - 45.472441 - ], - [ - -73.468499, - 45.472486 - ], - [ - -73.469144, - 45.472936 - ], - [ - -73.469236, - 45.473 - ], - [ - -73.469667, - 45.4733 - ], - [ - -73.469926, - 45.473481 - ], - [ - -73.471608, - 45.474678 - ], - [ - -73.471807, - 45.474825 - ], - [ - -73.471919, - 45.474907 - ], - [ - -73.472018, - 45.474979 - ], - [ - -73.47218, - 45.47489 - ], - [ - -73.472421, - 45.474721 - ], - [ - -73.473247, - 45.474143 - ], - [ - -73.473271, - 45.474127 - ], - [ - -73.473452, - 45.474003 - ], - [ - -73.47356, - 45.473931 - ], - [ - -73.47364, - 45.473887 - ], - [ - -73.473932, - 45.473738 - ], - [ - -73.474194, - 45.473626 - ], - [ - -73.474513, - 45.473518 - ], - [ - -73.474653, - 45.473477 - ], - [ - -73.474613, - 45.473387 - ], - [ - -73.47455, - 45.473262 - ], - [ - -73.474431, - 45.473027 - ], - [ - -73.474274, - 45.472609 - ], - [ - -73.474213, - 45.472397 - ], - [ - -73.474173, - 45.472208 - ], - [ - -73.474165, - 45.472163 - ], - [ - -73.474141, - 45.472028 - ], - [ - -73.474136, - 45.471996 - ], - [ - -73.47411, - 45.47183 - ], - [ - -73.474121, - 45.471228 - ], - [ - -73.474166, - 45.470967 - ], - [ - -73.474399, - 45.469698 - ], - [ - -73.474425, - 45.469556 - ], - [ - -73.474454, - 45.469396 - ], - [ - -73.474489, - 45.469055 - ], - [ - -73.474519, - 45.468803 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474544, - 45.468492 - ], - [ - -73.474545, - 45.468488 - ], - [ - -73.474528, - 45.468236 - ], - [ - -73.474508, - 45.467936 - ], - [ - -73.474508, - 45.467294 - ], - [ - -73.474542, - 45.4665 - ], - [ - -73.474546, - 45.466404 - ], - [ - -73.474554, - 45.466199 - ], - [ - -73.474621, - 45.465194 - ], - [ - -73.474664, - 45.464506 - ], - [ - -73.474669, - 45.464397 - ], - [ - -73.474734, - 45.464067 - ], - [ - -73.474884, - 45.463697 - ], - [ - -73.475002, - 45.463492 - ], - [ - -73.47522, - 45.463212 - ], - [ - -73.475408, - 45.463039 - ], - [ - -73.47556, - 45.462909 - ], - [ - -73.475821, - 45.462711 - ], - [ - -73.476105, - 45.462495 - ], - [ - -73.476449, - 45.462252 - ], - [ - -73.476557, - 45.462176 - ], - [ - -73.477249, - 45.461685 - ], - [ - -73.478228, - 45.460945 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.47888, - 45.460399 - ], - [ - -73.479008, - 45.460264 - ], - [ - -73.479302, - 45.459904 - ], - [ - -73.479398, - 45.459769 - ], - [ - -73.479488, - 45.459616 - ], - [ - -73.479616, - 45.459382 - ], - [ - -73.479649, - 45.459309 - ], - [ - -73.479699, - 45.459202 - ], - [ - -73.47976, - 45.459027 - ], - [ - -73.479776, - 45.458968 - ], - [ - -73.479808, - 45.458865 - ], - [ - -73.479852, - 45.458707 - ], - [ - -73.479891, - 45.458478 - ], - [ - -73.479913, - 45.458325 - ], - [ - -73.479923, - 45.458145 - ], - [ - -73.479926, - 45.458073 - ], - [ - -73.479893, - 45.457659 - ], - [ - -73.479818, - 45.456886 - ], - [ - -73.479803, - 45.456723 - ], - [ - -73.479792, - 45.456611 - ], - [ - -73.479747, - 45.456084 - ], - [ - -73.479731, - 45.4559 - ], - [ - -73.479696, - 45.455396 - ], - [ - -73.479646, - 45.454848 - ], - [ - -73.479629, - 45.454671 - ], - [ - -73.479566, - 45.454028 - ], - [ - -73.479521, - 45.453709 - ], - [ - -73.47946, - 45.45338 - ], - [ - -73.479374, - 45.453016 - ], - [ - -73.479306, - 45.45276 - ], - [ - -73.479278, - 45.452656 - ], - [ - -73.479609, - 45.452606 - ], - [ - -73.480267, - 45.452543 - ], - [ - -73.480742, - 45.452539 - ], - [ - -73.481254, - 45.452547 - ], - [ - -73.481291, - 45.452548 - ], - [ - -73.482743, - 45.452593 - ], - [ - -73.483204, - 45.452607 - ], - [ - -73.483385, - 45.452634 - ], - [ - -73.483523, - 45.452683 - ], - [ - -73.483746, - 45.452834 - ], - [ - -73.483803, - 45.452872 - ], - [ - -73.483914, - 45.453106 - ], - [ - -73.483918, - 45.453192 - ], - [ - -73.483908, - 45.453444 - ], - [ - -73.483893, - 45.453567 - ], - [ - -73.483876, - 45.453709 - ], - [ - -73.48383, - 45.453858 - ], - [ - -73.48375, - 45.454002 - ], - [ - -73.483647, - 45.454132 - ], - [ - -73.483527, - 45.454254 - ], - [ - -73.483256, - 45.454555 - ], - [ - -73.483085, - 45.454812 - ], - [ - -73.483041, - 45.454879 - ], - [ - -73.482933, - 45.455144 - ], - [ - -73.482873, - 45.455347 - ], - [ - -73.482803, - 45.455945 - ], - [ - -73.482764, - 45.456577 - ], - [ - -73.482756, - 45.456692 - ], - [ - -73.482746, - 45.456836 - ], - [ - -73.483692, - 45.456872 - ], - [ - -73.483678, - 45.457207 - ], - [ - -73.483653, - 45.457786 - ], - [ - -73.48364, - 45.457923 - ], - [ - -73.483602, - 45.458339 - ], - [ - -73.483595, - 45.45842 - ], - [ - -73.483547, - 45.458852 - ], - [ - -73.4835, - 45.459081 - ], - [ - -73.483406, - 45.459504 - ], - [ - -73.483318, - 45.459761 - ], - [ - -73.483304, - 45.459801 - ], - [ - -73.48282, - 45.46082 - ], - [ - -73.482782, - 45.460899 - ], - [ - -73.482626, - 45.461448 - ], - [ - -73.482575, - 45.461956 - ], - [ - -73.482571, - 45.462098 - ], - [ - -73.482568, - 45.462177 - ], - [ - -73.48256, - 45.462375 - ], - [ - -73.482548, - 45.462559 - ], - [ - -73.482585, - 45.462708 - ], - [ - -73.482613, - 45.462807 - ], - [ - -73.482595, - 45.463423 - ], - [ - -73.482573, - 45.463981 - ], - [ - -73.48257, - 45.464048 - ], - [ - -73.482859, - 45.464054 - ], - [ - -73.484342, - 45.46408 - ], - [ - -73.484494, - 45.464076 - ], - [ - -73.484669, - 45.464067 - ], - [ - -73.484817, - 45.464035 - ], - [ - -73.484961, - 45.463999 - ], - [ - -73.485098, - 45.46395 - ], - [ - -73.485277, - 45.463878 - ], - [ - -73.485826, - 45.463612 - ], - [ - -73.485896, - 45.463576 - ], - [ - -73.486004, - 45.463531 - ], - [ - -73.486089, - 45.463495 - ], - [ - -73.486243, - 45.463455 - ], - [ - -73.486321, - 45.463433 - ], - [ - -73.486489, - 45.463401 - ], - [ - -73.486606, - 45.463401 - ], - [ - -73.487042, - 45.463406 - ], - [ - -73.487283, - 45.463388 - ], - [ - -73.487412, - 45.463379 - ], - [ - -73.487521, - 45.463358 - ], - [ - -73.487821, - 45.463302 - ], - [ - -73.488109, - 45.463235 - ], - [ - -73.488349, - 45.463109 - ], - [ - -73.488498, - 45.462929 - ], - [ - -73.488573, - 45.462762 - ], - [ - -73.488594, - 45.462464 - ], - [ - -73.488654, - 45.461582 - ], - [ - -73.488659, - 45.461512 - ], - [ - -73.488701, - 45.460814 - ], - [ - -73.488777, - 45.459727 - ], - [ - -73.488806, - 45.459318 - ], - [ - -73.488828, - 45.459006 - ], - [ - -73.488929, - 45.458754 - ], - [ - -73.489058, - 45.458542 - ], - [ - -73.489182, - 45.458344 - ], - [ - -73.489694, - 45.457516 - ], - [ - -73.489708, - 45.457481 - ], - [ - -73.489736, - 45.457408 - ], - [ - -73.489763, - 45.457296 - ], - [ - -73.489765, - 45.457071 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.489787, - 45.45681 - ], - [ - -73.489805, - 45.456679 - ], - [ - -73.489837, - 45.456558 - ], - [ - -73.489891, - 45.45645 - ], - [ - -73.490047, - 45.45632 - ], - [ - -73.490235, - 45.456194 - ], - [ - -73.490843, - 45.455885 - ], - [ - -73.490874, - 45.45587 - ], - [ - -73.49101, - 45.455802 - ], - [ - -73.491179, - 45.455672 - ], - [ - -73.491306, - 45.455478 - ], - [ - -73.491366, - 45.454816 - ], - [ - -73.491379, - 45.454673 - ], - [ - -73.491385, - 45.45452 - ], - [ - -73.491385, - 45.45439 - ], - [ - -73.491353, - 45.454286 - ], - [ - -73.491307, - 45.454169 - ], - [ - -73.491205, - 45.454016 - ], - [ - -73.491049, - 45.453868 - ], - [ - -73.490922, - 45.453778 - ], - [ - -73.490731, - 45.453646 - ], - [ - -73.49064, - 45.453584 - ], - [ - -73.490337, - 45.453359 - ], - [ - -73.490251, - 45.453269 - ], - [ - -73.490177, - 45.453161 - ], - [ - -73.490138, - 45.453076 - ], - [ - -73.490095, - 45.452936 - ], - [ - -73.490099, - 45.452842 - ], - [ - -73.490107, - 45.452689 - ], - [ - -73.490162, - 45.452116 - ], - [ - -73.490164, - 45.452099 - ], - [ - -73.490174, - 45.451996 - ], - [ - -73.490274, - 45.451145 - ], - [ - -73.490347, - 45.450214 - ], - [ - -73.490356, - 45.450109 - ], - [ - -73.490386, - 45.449719 - ], - [ - -73.490521, - 45.448293 - ], - [ - -73.490549, - 45.447728 - ], - [ - -73.490554, - 45.447636 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.490565, - 45.447402 - ], - [ - -73.49061, - 45.446822 - ], - [ - -73.491054, - 45.445407 - ], - [ - -73.491055, - 45.445404 - ], - [ - -73.491092, - 45.445287 - ], - [ - -73.491285, - 45.444689 - ], - [ - -73.491504, - 45.443969 - ], - [ - -73.491549, - 45.443374 - ], - [ - -73.491559, - 45.443245 - ], - [ - -73.492476, - 45.443271 - ], - [ - -73.492694, - 45.443277 - ], - [ - -73.492825, - 45.443281 - ], - [ - -73.49278, - 45.443672 - ], - [ - -73.492671, - 45.445045 - ], - [ - -73.492587, - 45.445944 - ], - [ - -73.492455, - 45.447478 - ], - [ - -73.49245, - 45.447542 - ], - [ - -73.491852, - 45.447527 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.490554, - 45.447636 - ], - [ - -73.490536, - 45.447995 - ] - ] - }, - "id": 300, - "properties": { - "id": "8bfbb56d-7ad8-4ff6-be60-5bb4604c32e3", - "data": { - "gtfs": { - "shape_id": "546_2_R" - }, - "segments": [ - { - "distanceMeters": 74, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 909, - "travelTimeSeconds": 138 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 596, - "travelTimeSeconds": 90 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 84, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 774, - "travelTimeSeconds": 118 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 30, - "travelTimeSeconds": 5 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 478, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 32 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 186, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12256, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5871.081018497847, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.59, - "travelTimeWithoutDwellTimesSeconds": 1860, - "operatingTimeWithLayoverTimeSeconds": 2046, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1860, - "operatingSpeedWithLayoverMetersPerSecond": 5.99, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.59 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "35f25056-4f99-4b6e-babc-10c53194c70e", - "0f232130-277e-4d7b-b106-b6821c45f0a9", - "4262a22a-885d-4877-ad99-0a8406e2adaa", - "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", - "517a8299-e807-4040-8ccd-f417dda7338c", - "da4ca96f-4db9-4287-b307-afc6221c923f", - "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "a90c4da7-455c-41d3-9961-c7a64d627572", - "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "579043e1-54f7-411f-9a36-e7ee3324290f", - "1758013c-4193-42f0-a495-c36930003f5b", - "1345672a-9148-439f-9a52-b8a216612929", - "ece1943b-159a-42fa-a0c1-16e06714e25e", - "82735dcc-3897-4e4c-87e8-45ee1dacedaa", - "3a8b9936-4595-4770-a3f4-b31253602356", - "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", - "87774b57-5ee3-418d-948c-ba4db73d3893", - "c25adb1f-635e-4881-a89d-af8a9ea5ca92", - "95a6ef09-da34-422a-81ec-389b0e0bb278", - "f889063d-4196-4990-bc8c-d6010d0c0192", - "f92fabb3-5544-4aa3-8461-0c7fc17380ef", - "ecb00316-793a-4c41-88bd-3870bea4d999", - "258cb5fd-8795-41af-8e07-3de8ea977e23", - "d2127fc0-fbc1-4459-b6f9-07c0b8d9cdbe", - "e51dbc0e-9385-4f59-b401-fd29a59c8b5b", - "2d435714-a542-4404-9910-0df9675e2087", - "2ecca6ee-e688-465d-a0b1-929435b41047", - "57de752e-d268-4125-8223-581e6c2ff56e", - "57de752e-d268-4125-8223-581e6c2ff56e", - "1339471a-52fa-47e9-b0e4-753bf917ef08", - "9c711698-0f65-4997-8a72-24f5d8ab8fb7", - "5a6d8067-b58d-4ab2-838e-422e8f003ee9", - "e20e768c-bd5a-43fd-8842-af2717d6cb09", - "f1131e74-6c65-4f22-a18d-41dbe35e4576", - "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", - "c7c30949-db61-44fc-b7ab-a69b9fde12cc", - "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", - "997c4af9-ab50-4dfb-941a-afadff58f267", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "56755a3d-6779-4355-8b48-27271fb6ce0b", - "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", - "14d2c36b-50a3-4d98-8947-81016b2b2927", - "0d8bc8fc-204a-4f67-a22f-4e3e93df3587", - "11a7e876-eb5a-402b-8bb8-10625e7584e3" - ], - "stops": [], - "line_id": "21e06751-3bad-4297-b332-9006f4a5a05d", - "segments": [ - 0, - 3, - 10, - 16, - 27, - 39, - 47, - 51, - 60, - 65, - 72, - 110, - 118, - 121, - 135, - 138, - 144, - 160, - 165, - 168, - 190, - 193, - 201, - 212, - 218, - 224, - 229, - 235, - 247, - 252, - 256, - 259, - 264, - 266, - 270, - 277, - 279, - 289, - 305, - 309, - 315, - 326, - 331, - 340, - 349, - 353, - 357, - 362, - 367, - 370, - 375 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 300, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.48115, - 45.44636 - ], - [ - -73.481089, - 45.446285 - ], - [ - -73.480926, - 45.445993 - ], - [ - -73.480839, - 45.445718 - ], - [ - -73.480811, - 45.445444 - ], - [ - -73.480848, - 45.445021 - ], - [ - -73.481, - 45.443773 - ], - [ - -73.481012, - 45.443676 - ], - [ - -73.481219, - 45.441988 - ], - [ - -73.481285, - 45.441418 - ], - [ - -73.481299, - 45.441295 - ], - [ - -73.481973, - 45.441343 - ], - [ - -73.482262, - 45.441363 - ], - [ - -73.482811, - 45.441395 - ], - [ - -73.483146, - 45.441426 - ], - [ - -73.483482, - 45.441503 - ], - [ - -73.483768, - 45.441606 - ], - [ - -73.483786, - 45.441615 - ], - [ - -73.484016, - 45.441723 - ], - [ - -73.484181, - 45.441813 - ], - [ - -73.484668, - 45.442183 - ], - [ - -73.485324, - 45.442682 - ], - [ - -73.485435, - 45.442763 - ], - [ - -73.48577, - 45.442902 - ], - [ - -73.486077, - 45.44301 - ], - [ - -73.486385, - 45.443073 - ], - [ - -73.486658, - 45.4431 - ], - [ - -73.48683, - 45.443109 - ], - [ - -73.487183, - 45.443127 - ], - [ - -73.487351, - 45.44313 - ], - [ - -73.487487, - 45.443132 - ], - [ - -73.490545, - 45.443222 - ], - [ - -73.491559, - 45.443245 - ], - [ - -73.491531, - 45.443623 - ], - [ - -73.491504, - 45.443969 - ], - [ - -73.491285, - 45.444689 - ], - [ - -73.491119, - 45.445202 - ], - [ - -73.491092, - 45.445287 - ], - [ - -73.491055, - 45.445404 - ], - [ - -73.49061, - 45.446822 - ], - [ - -73.490574, - 45.447283 - ], - [ - -73.490565, - 45.447402 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.489956, - 45.447483 - ], - [ - -73.486184, - 45.447402 - ], - [ - -73.485385, - 45.447384 - ], - [ - -73.485334, - 45.447383 - ], - [ - -73.484501, - 45.447365 - ], - [ - -73.483174, - 45.447338 - ], - [ - -73.483047, - 45.447334 - ], - [ - -73.482811, - 45.447302 - ], - [ - -73.4826, - 45.447257 - ], - [ - -73.482392, - 45.447199 - ], - [ - -73.48231, - 45.44732 - ], - [ - -73.48203, - 45.447734 - ], - [ - -73.481672, - 45.448265 - ], - [ - -73.481538, - 45.448436 - ], - [ - -73.481405, - 45.448562 - ], - [ - -73.481319, - 45.448638 - ], - [ - -73.481186, - 45.448724 - ], - [ - -73.480948, - 45.448841 - ], - [ - -73.480707, - 45.44894 - ], - [ - -73.479506, - 45.449367 - ], - [ - -73.479229, - 45.449466 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.478203, - 45.449849 - ], - [ - -73.477921, - 45.449951 - ], - [ - -73.477783, - 45.450014 - ], - [ - -73.477866, - 45.4501 - ], - [ - -73.478024, - 45.450307 - ], - [ - -73.478182, - 45.450577 - ], - [ - -73.4785, - 45.451198 - ], - [ - -73.478751, - 45.451724 - ], - [ - -73.478921, - 45.452116 - ], - [ - -73.479089, - 45.452582 - ], - [ - -73.479123, - 45.452678 - ], - [ - -73.478661, - 45.452749 - ], - [ - -73.478149, - 45.452826 - ], - [ - -73.477761, - 45.452903 - ], - [ - -73.477488, - 45.453011 - ], - [ - -73.47723, - 45.453123 - ], - [ - -73.475827, - 45.453802 - ], - [ - -73.475148, - 45.454117 - ], - [ - -73.474972, - 45.454198 - ], - [ - -73.475548, - 45.454788 - ], - [ - -73.475752, - 45.455094 - ], - [ - -73.475818, - 45.455271 - ], - [ - -73.475877, - 45.455431 - ], - [ - -73.475885, - 45.455566 - ], - [ - -73.475889, - 45.455724 - ], - [ - -73.47585, - 45.456451 - ], - [ - -73.475848, - 45.456479 - ], - [ - -73.475839, - 45.456592 - ], - [ - -73.475794, - 45.457178 - ], - [ - -73.475778, - 45.457388 - ], - [ - -73.475737, - 45.458081 - ], - [ - -73.475737, - 45.458153 - ], - [ - -73.475692, - 45.458216 - ], - [ - -73.475621, - 45.458261 - ], - [ - -73.475551, - 45.458302 - ], - [ - -73.475386, - 45.45836 - ], - [ - -73.47511, - 45.458356 - ], - [ - -73.474813, - 45.458351 - ], - [ - -73.47477, - 45.459147 - ], - [ - -73.474306, - 45.459497 - ], - [ - -73.474131, - 45.459629 - ], - [ - -73.473576, - 45.460056 - ], - [ - -73.473509, - 45.460119 - ], - [ - -73.473517, - 45.460168 - ], - [ - -73.473556, - 45.460227 - ], - [ - -73.473658, - 45.46029 - ], - [ - -73.474466, - 45.460822 - ], - [ - -73.475666, - 45.461613 - ], - [ - -73.476388, - 45.462065 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.474376, - 45.468238 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474292, - 45.469387 - ], - [ - -73.474256, - 45.469572 - ], - [ - -73.474234, - 45.469689 - ], - [ - -73.474156, - 45.470095 - ], - [ - -73.474035, - 45.470724 - ], - [ - -73.473974, - 45.47107 - ], - [ - -73.473942, - 45.471336 - ], - [ - -73.473932, - 45.471601 - ], - [ - -73.473938, - 45.471696 - ], - [ - -73.473947, - 45.471826 - ], - [ - -73.473986, - 45.472118 - ], - [ - -73.473998, - 45.472177 - ], - [ - -73.474046, - 45.47242 - ], - [ - -73.474106, - 45.47264 - ], - [ - -73.474275, - 45.473063 - ], - [ - -73.474463, - 45.473437 - ], - [ - -73.474007, - 45.473581 - ], - [ - -73.473846, - 45.473648 - ], - [ - -73.473736, - 45.473702 - ], - [ - -73.473545, - 45.473797 - ], - [ - -73.473458, - 45.473845 - ], - [ - -73.473457, - 45.473846 - ], - [ - -73.473334, - 45.473927 - ], - [ - -73.473141, - 45.474053 - ], - [ - -73.473062, - 45.474109 - ], - [ - -73.472074, - 45.474808 - ], - [ - -73.471729, - 45.474583 - ], - [ - -73.470378, - 45.473612 - ], - [ - -73.470064, - 45.473386 - ], - [ - -73.468607, - 45.472409 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467508, - 45.472063 - ], - [ - -73.467493, - 45.472108 - ], - [ - -73.467341, - 45.47257 - ], - [ - -73.467254, - 45.472832 - ], - [ - -73.467075, - 45.473412 - ], - [ - -73.467018, - 45.473612 - ], - [ - -73.46686, - 45.474168 - ], - [ - -73.466715, - 45.474632 - ], - [ - -73.466501, - 45.475269 - ], - [ - -73.466278, - 45.475935 - ], - [ - -73.466234, - 45.476067 - ], - [ - -73.466127, - 45.476385 - ], - [ - -73.465592, - 45.477979 - ], - [ - -73.465357, - 45.478703 - ], - [ - -73.465337, - 45.478757 - ], - [ - -73.465269, - 45.478932 - ], - [ - -73.465247, - 45.479 - ], - [ - -73.465119, - 45.479385 - ], - [ - -73.464879, - 45.480107 - ], - [ - -73.464823, - 45.480273 - ], - [ - -73.464733, - 45.480574 - ], - [ - -73.464664, - 45.480885 - ], - [ - -73.464647, - 45.481013 - ], - [ - -73.464634, - 45.481108 - ], - [ - -73.464622, - 45.481195 - ], - [ - -73.464619, - 45.481245 - ], - [ - -73.464603, - 45.481524 - ], - [ - -73.464619, - 45.481956 - ], - [ - -73.464693, - 45.482383 - ], - [ - -73.464736, - 45.482559 - ], - [ - -73.46485, - 45.482905 - ], - [ - -73.46499, - 45.483243 - ], - [ - -73.465069, - 45.483405 - ], - [ - -73.465231, - 45.483688 - ], - [ - -73.465328, - 45.483837 - ], - [ - -73.465516, - 45.484318 - ], - [ - -73.465535, - 45.48439 - ], - [ - -73.465531, - 45.484453 - ], - [ - -73.465521, - 45.484494 - ], - [ - -73.465494, - 45.484521 - ], - [ - -73.465474, - 45.484542 - ], - [ - -73.465464, - 45.484552 - ], - [ - -73.46542, - 45.484575 - ], - [ - -73.465379, - 45.484592 - ], - [ - -73.465324, - 45.484601 - ], - [ - -73.465214, - 45.484601 - ], - [ - -73.464965, - 45.484574 - ], - [ - -73.464559, - 45.484417 - ], - [ - -73.464508, - 45.484399 - ], - [ - -73.464185, - 45.484291 - ], - [ - -73.463703, - 45.484155 - ], - [ - -73.463657, - 45.484142 - ], - [ - -73.46319, - 45.484029 - ], - [ - -73.462672, - 45.483908 - ], - [ - -73.462287, - 45.483831 - ], - [ - -73.462032, - 45.483791 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.46135, - 45.4837 - ], - [ - -73.460838, - 45.483637 - ], - [ - -73.460188, - 45.483581 - ], - [ - -73.459999, - 45.483565 - ], - [ - -73.459497, - 45.483511 - ], - [ - -73.459033, - 45.483457 - ], - [ - -73.458739, - 45.483407 - ], - [ - -73.458547, - 45.483371 - ], - [ - -73.458333, - 45.483321 - ], - [ - -73.458016, - 45.483245 - ], - [ - -73.45777, - 45.483182 - ], - [ - -73.457503, - 45.483104 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45645, - 45.482799 - ], - [ - -73.455886, - 45.482623 - ], - [ - -73.455654, - 45.482542 - ], - [ - -73.455462, - 45.482465 - ], - [ - -73.455282, - 45.482387 - ], - [ - -73.455276, - 45.482384 - ], - [ - -73.455009, - 45.482272 - ], - [ - -73.454605, - 45.482087 - ], - [ - -73.454381, - 45.481984 - ], - [ - -73.454145, - 45.481862 - ], - [ - -73.453796, - 45.481673 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452379, - 45.481446 - ], - [ - -73.452062, - 45.481636 - ], - [ - -73.45135, - 45.482063 - ], - [ - -73.451252, - 45.482121 - ], - [ - -73.450098, - 45.482807 - ], - [ - -73.449882, - 45.482936 - ], - [ - -73.449245, - 45.483336 - ], - [ - -73.449101, - 45.483471 - ], - [ - -73.448914, - 45.483713 - ], - [ - -73.448817, - 45.483898 - ], - [ - -73.448629, - 45.484109 - ], - [ - -73.44844, - 45.484271 - ], - [ - -73.448223, - 45.484481 - ], - [ - -73.44775, - 45.484937 - ], - [ - -73.447415, - 45.485256 - ], - [ - -73.447237, - 45.485427 - ], - [ - -73.447005, - 45.485643 - ], - [ - -73.446788, - 45.48585 - ], - [ - -73.446708, - 45.485926 - ], - [ - -73.445795, - 45.486794 - ], - [ - -73.445654, - 45.486915 - ], - [ - -73.445524, - 45.487041 - ], - [ - -73.445408, - 45.487167 - ], - [ - -73.445359, - 45.487231 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 301, - "properties": { - "id": "47643624-71a8-42de-a382-b641749e202c", - "data": { - "gtfs": { - "shape_id": "547_1_A" - }, - "segments": [ - { - "distanceMeters": 293, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 371, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 428, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 81, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 407, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 738, - "travelTimeSeconds": 98 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 404, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 435, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 72, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 838, - "travelTimeSeconds": 111 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 405, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 509, - "travelTimeSeconds": 68 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10844, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5664.047771452758, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.53, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 6.69, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.53 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "8f4ce296-9511-42d4-a138-f52bb761830f", - "0a5b3fec-6725-4b10-9b81-ad6506fe82d2", - "a532b39a-66ec-444f-abc1-766787d9387c", - "3518bfc1-7b5d-4295-9440-6fc17dd6b559", - "e9dbe1ee-244a-4556-8fa1-052d6f2dee5e", - "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", - "56755a3d-6779-4355-8b48-27271fb6ce0b", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "601c2147-2f83-405b-be6a-8fe05117cb43", - "91b595a9-abca-41fb-9723-f6ca055bd16b", - "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", - "4509b80b-76a5-49de-acb2-533a50bafac5", - "c25adb1f-635e-4881-a89d-af8a9ea5ca92", - "e690066b-eb33-421c-89b1-e731dab9975f", - "91baaa10-e8cd-406f-a7c1-c8e2465ade3f", - "1782a1a7-eddc-4228-a7a8-bf733f339e68", - "1782a1a7-eddc-4228-a7a8-bf733f339e68", - "54e2350c-1dbf-481f-9610-f78cb1a71b49", - "ef6b8e74-cf7c-405a-a81c-caa03b93a96a", - "ff23cabb-ca11-421b-a582-f6413aa21fa0", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", - "3a8b9936-4595-4770-a3f4-b31253602356", - "82735dcc-3897-4e4c-87e8-45ee1dacedaa", - "85f19be2-1f67-4673-b3b3-52d06ed31ae3", - "47d29e21-b442-4f1e-bc41-0d7871af14e8", - "7eaffbff-c86c-4810-b174-bda8780c04b4", - "e76a6766-6730-419b-bd29-f65b80bb6721", - "bf51d692-a22e-42e9-a495-2d1955e0c462", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "491099bb-9493-4888-bd4e-20bd2140830a", - "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", - "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "d9b94443-0b59-40db-aecb-0acb5ea7976c", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "cf41ea40-826e-4f39-9294-367ecc460961", - "segments": [ - 0, - 6, - 9, - 17, - 29, - 33, - 36, - 40, - 45, - 54, - 62, - 65, - 74, - 82, - 86, - 90, - 93, - 101, - 104, - 113, - 141, - 146, - 153, - 165, - 172, - 180, - 189, - 192, - 195, - 200, - 238, - 247, - 253, - 266, - 267, - 275, - 280, - 286 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 301, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446649, - 45.490498 - ], - [ - -73.446822, - 45.490639 - ], - [ - -73.44688, - 45.490686 - ], - [ - -73.447261, - 45.491006 - ], - [ - -73.447337, - 45.491069 - ], - [ - -73.447665, - 45.490889 - ], - [ - -73.448136, - 45.490592 - ], - [ - -73.44848, - 45.49039 - ], - [ - -73.448793, - 45.490206 - ], - [ - -73.44919, - 45.489963 - ], - [ - -73.449319, - 45.48989 - ], - [ - -73.449476, - 45.489801 - ], - [ - -73.450048, - 45.489455 - ], - [ - -73.450226, - 45.489293 - ], - [ - -73.450385, - 45.489131 - ], - [ - -73.450522, - 45.488807 - ], - [ - -73.450554, - 45.488637 - ], - [ - -73.450562, - 45.488591 - ], - [ - -73.450564, - 45.488501 - ], - [ - -73.451142, - 45.48852 - ], - [ - -73.451437, - 45.488556 - ], - [ - -73.451471, - 45.48856 - ], - [ - -73.451663, - 45.488618 - ], - [ - -73.451864, - 45.488677 - ], - [ - -73.452026, - 45.48874 - ], - [ - -73.452059, - 45.488756 - ], - [ - -73.45223, - 45.488835 - ], - [ - -73.452275, - 45.488865 - ], - [ - -73.452316, - 45.488894 - ], - [ - -73.452398, - 45.488943 - ], - [ - -73.452482, - 45.488993 - ], - [ - -73.452596, - 45.489092 - ], - [ - -73.452853, - 45.489389 - ], - [ - -73.453059, - 45.489641 - ], - [ - -73.453301, - 45.489897 - ], - [ - -73.453554, - 45.490154 - ], - [ - -73.453816, - 45.490388 - ], - [ - -73.454028, - 45.490572 - ], - [ - -73.454376, - 45.490852 - ], - [ - -73.454697, - 45.491105 - ], - [ - -73.454792, - 45.49118 - ], - [ - -73.455383, - 45.490825 - ], - [ - -73.456177, - 45.490348 - ], - [ - -73.456382, - 45.490186 - ], - [ - -73.45652, - 45.490034 - ], - [ - -73.456589, - 45.489894 - ], - [ - -73.456688, - 45.489687 - ], - [ - -73.456692, - 45.489673 - ], - [ - -73.456709, - 45.489602 - ], - [ - -73.456724, - 45.489525 - ], - [ - -73.456835, - 45.488612 - ], - [ - -73.456898, - 45.48808 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457724, - 45.486654 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.45925, - 45.485724 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.46022, - 45.485044 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.461099, - 45.484444 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.462585, - 45.484043 - ], - [ - -73.463416, - 45.484224 - ], - [ - -73.463639, - 45.484291 - ], - [ - -73.464599, - 45.48462 - ], - [ - -73.465244, - 45.484835 - ], - [ - -73.465443, - 45.484908 - ], - [ - -73.465586, - 45.484937 - ], - [ - -73.465724, - 45.484942 - ], - [ - -73.465848, - 45.484931 - ], - [ - -73.466018, - 45.484884 - ], - [ - -73.466121, - 45.484844 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466302, - 45.484687 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466188, - 45.484448 - ], - [ - -73.466149, - 45.484395 - ], - [ - -73.466127, - 45.48437 - ], - [ - -73.465905, - 45.484113 - ], - [ - -73.465719, - 45.4839 - ], - [ - -73.46546, - 45.483541 - ], - [ - -73.465236, - 45.483174 - ], - [ - -73.465161, - 45.483037 - ], - [ - -73.465057, - 45.482799 - ], - [ - -73.464968, - 45.48254 - ], - [ - -73.46489, - 45.482284 - ], - [ - -73.464833, - 45.481906 - ], - [ - -73.464816, - 45.481524 - ], - [ - -73.46484, - 45.481206 - ], - [ - -73.464843, - 45.481165 - ], - [ - -73.464847, - 45.481114 - ], - [ - -73.464866, - 45.480979 - ], - [ - -73.46492, - 45.48071 - ], - [ - -73.465032, - 45.480327 - ], - [ - -73.465198, - 45.479819 - ], - [ - -73.46547, - 45.479009 - ], - [ - -73.465544, - 45.478788 - ], - [ - -73.465652, - 45.478467 - ], - [ - -73.465874, - 45.477808 - ], - [ - -73.466471, - 45.476005 - ], - [ - -73.466484, - 45.475966 - ], - [ - -73.466637, - 45.475504 - ], - [ - -73.467366, - 45.473305 - ], - [ - -73.467616, - 45.472553 - ], - [ - -73.467822, - 45.472468 - ], - [ - -73.467906, - 45.472436 - ], - [ - -73.468005, - 45.472409 - ], - [ - -73.468127, - 45.472396 - ], - [ - -73.468231, - 45.472409 - ], - [ - -73.468368, - 45.472441 - ], - [ - -73.468499, - 45.472486 - ], - [ - -73.469144, - 45.472936 - ], - [ - -73.469236, - 45.473 - ], - [ - -73.469652, - 45.473289 - ], - [ - -73.469926, - 45.473481 - ], - [ - -73.471608, - 45.474678 - ], - [ - -73.471792, - 45.474814 - ], - [ - -73.471919, - 45.474907 - ], - [ - -73.472018, - 45.474979 - ], - [ - -73.47218, - 45.47489 - ], - [ - -73.472421, - 45.474721 - ], - [ - -73.473247, - 45.474143 - ], - [ - -73.473254, - 45.474138 - ], - [ - -73.473452, - 45.474003 - ], - [ - -73.47356, - 45.473931 - ], - [ - -73.47364, - 45.473887 - ], - [ - -73.473932, - 45.473738 - ], - [ - -73.474194, - 45.473626 - ], - [ - -73.474513, - 45.473518 - ], - [ - -73.474653, - 45.473477 - ], - [ - -73.474613, - 45.473387 - ], - [ - -73.47455, - 45.473262 - ], - [ - -73.474431, - 45.473027 - ], - [ - -73.474274, - 45.472609 - ], - [ - -73.474213, - 45.472397 - ], - [ - -73.474173, - 45.472208 - ], - [ - -73.474165, - 45.472163 - ], - [ - -73.474141, - 45.472028 - ], - [ - -73.474138, - 45.472013 - ], - [ - -73.47411, - 45.47183 - ], - [ - -73.474121, - 45.471228 - ], - [ - -73.474166, - 45.470967 - ], - [ - -73.474399, - 45.469698 - ], - [ - -73.474421, - 45.469574 - ], - [ - -73.474454, - 45.469396 - ], - [ - -73.474489, - 45.469055 - ], - [ - -73.474517, - 45.468822 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474544, - 45.468492 - ], - [ - -73.474545, - 45.468488 - ], - [ - -73.474528, - 45.468236 - ], - [ - -73.474508, - 45.467936 - ], - [ - -73.474508, - 45.467294 - ], - [ - -73.474542, - 45.4665 - ], - [ - -73.474546, - 45.466404 - ], - [ - -73.474554, - 45.466199 - ], - [ - -73.474621, - 45.465194 - ], - [ - -73.474664, - 45.464506 - ], - [ - -73.474669, - 45.464397 - ], - [ - -73.474734, - 45.464067 - ], - [ - -73.474884, - 45.463697 - ], - [ - -73.475002, - 45.463492 - ], - [ - -73.47522, - 45.463212 - ], - [ - -73.475408, - 45.463039 - ], - [ - -73.47556, - 45.462909 - ], - [ - -73.475821, - 45.462711 - ], - [ - -73.476105, - 45.462495 - ], - [ - -73.476427, - 45.462268 - ], - [ - -73.476557, - 45.462176 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476077, - 45.461871 - ], - [ - -73.475666, - 45.461613 - ], - [ - -73.473658, - 45.46029 - ], - [ - -73.473556, - 45.460227 - ], - [ - -73.473517, - 45.460168 - ], - [ - -73.473509, - 45.460119 - ], - [ - -73.473576, - 45.460056 - ], - [ - -73.473809, - 45.459876 - ], - [ - -73.474023, - 45.459711 - ], - [ - -73.474131, - 45.459629 - ], - [ - -73.47477, - 45.459147 - ], - [ - -73.474804, - 45.458515 - ], - [ - -73.474813, - 45.458351 - ], - [ - -73.475386, - 45.45836 - ], - [ - -73.475551, - 45.458302 - ], - [ - -73.475621, - 45.458261 - ], - [ - -73.475692, - 45.458216 - ], - [ - -73.475737, - 45.458153 - ], - [ - -73.475737, - 45.458081 - ], - [ - -73.475778, - 45.457388 - ], - [ - -73.475826, - 45.45676 - ], - [ - -73.475839, - 45.456592 - ], - [ - -73.475848, - 45.456479 - ], - [ - -73.475889, - 45.455724 - ], - [ - -73.475885, - 45.455566 - ], - [ - -73.475885, - 45.455557 - ], - [ - -73.475877, - 45.455431 - ], - [ - -73.475752, - 45.455094 - ], - [ - -73.475548, - 45.454788 - ], - [ - -73.475065, - 45.454294 - ], - [ - -73.474972, - 45.454198 - ], - [ - -73.475827, - 45.453802 - ], - [ - -73.47723, - 45.453123 - ], - [ - -73.477488, - 45.453011 - ], - [ - -73.477761, - 45.452903 - ], - [ - -73.478149, - 45.452826 - ], - [ - -73.478893, - 45.452713 - ], - [ - -73.479123, - 45.452678 - ], - [ - -73.479278, - 45.452656 - ], - [ - -73.479074, - 45.452084 - ], - [ - -73.478902, - 45.451688 - ], - [ - -73.478649, - 45.451162 - ], - [ - -73.478451, - 45.450779 - ], - [ - -73.47833, - 45.450536 - ], - [ - -73.478167, - 45.450257 - ], - [ - -73.478019, - 45.450065 - ], - [ - -73.478004, - 45.450046 - ], - [ - -73.477921, - 45.449951 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.479229, - 45.449466 - ], - [ - -73.479284, - 45.449446 - ], - [ - -73.480707, - 45.44894 - ], - [ - -73.480948, - 45.448841 - ], - [ - -73.481186, - 45.448724 - ], - [ - -73.481319, - 45.448638 - ], - [ - -73.481405, - 45.448562 - ], - [ - -73.481538, - 45.448436 - ], - [ - -73.481591, - 45.448368 - ], - [ - -73.481672, - 45.448265 - ], - [ - -73.482253, - 45.447405 - ], - [ - -73.48231, - 45.44732 - ], - [ - -73.482392, - 45.447199 - ], - [ - -73.482245, - 45.447145 - ], - [ - -73.482082, - 45.447077 - ], - [ - -73.481942, - 45.447005 - ], - [ - -73.481839, - 45.446947 - ], - [ - -73.481672, - 45.446839 - ], - [ - -73.481644, - 45.446821 - ], - [ - -73.481469, - 45.446695 - ], - [ - -73.481319, - 45.446551 - ], - [ - -73.481245, - 45.446479 - ], - [ - -73.481157, - 45.446369 - ], - [ - -73.481089, - 45.446285 - ], - [ - -73.480926, - 45.445993 - ], - [ - -73.480839, - 45.445718 - ], - [ - -73.480811, - 45.445444 - ], - [ - -73.480848, - 45.445021 - ], - [ - -73.480999, - 45.443783 - ], - [ - -73.481012, - 45.443676 - ], - [ - -73.481219, - 45.441988 - ], - [ - -73.481283, - 45.441428 - ], - [ - -73.481299, - 45.441295 - ], - [ - -73.481973, - 45.441343 - ], - [ - -73.482262, - 45.441363 - ], - [ - -73.482811, - 45.441395 - ], - [ - -73.483146, - 45.441426 - ], - [ - -73.483482, - 45.441503 - ], - [ - -73.483768, - 45.441606 - ], - [ - -73.483774, - 45.441609 - ], - [ - -73.484016, - 45.441723 - ], - [ - -73.484181, - 45.441813 - ], - [ - -73.484668, - 45.442183 - ], - [ - -73.485324, - 45.442682 - ], - [ - -73.485435, - 45.442763 - ], - [ - -73.48577, - 45.442902 - ], - [ - -73.486077, - 45.44301 - ], - [ - -73.486385, - 45.443073 - ], - [ - -73.486658, - 45.4431 - ], - [ - -73.48683, - 45.443109 - ], - [ - -73.487183, - 45.443127 - ], - [ - -73.487337, - 45.44313 - ], - [ - -73.487487, - 45.443132 - ], - [ - -73.490545, - 45.443222 - ], - [ - -73.491559, - 45.443245 - ], - [ - -73.491531, - 45.443614 - ], - [ - -73.491504, - 45.443969 - ], - [ - -73.491285, - 45.444689 - ], - [ - -73.491122, - 45.445193 - ], - [ - -73.491092, - 45.445287 - ], - [ - -73.491055, - 45.445404 - ], - [ - -73.49061, - 45.446822 - ], - [ - -73.490574, - 45.447283 - ], - [ - -73.490565, - 45.447402 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.489956, - 45.447483 - ], - [ - -73.486184, - 45.447402 - ], - [ - -73.485397, - 45.447385 - ], - [ - -73.485334, - 45.447383 - ], - [ - -73.484501, - 45.447365 - ], - [ - -73.483174, - 45.447338 - ], - [ - -73.483047, - 45.447334 - ], - [ - -73.482811, - 45.447302 - ], - [ - -73.4826, - 45.447257 - ], - [ - -73.482392, - 45.447199 - ], - [ - -73.48231, - 45.44732 - ], - [ - -73.482036, - 45.447727 - ] - ] - }, - "id": 302, - "properties": { - "id": "fade2ae2-ee3b-405a-b8fb-274450cce317", - "data": { - "gtfs": { - "shape_id": "547_2_R" - }, - "segments": [ - { - "distanceMeters": 74, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 909, - "travelTimeSeconds": 145 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 596, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 84, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 774, - "travelTimeSeconds": 124 - }, - { - "distanceMeters": 65, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 119, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 371, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 427, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 49 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10879, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5520.3886855286355, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.25, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 5.67, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.25 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "35f25056-4f99-4b6e-babc-10c53194c70e", - "0f232130-277e-4d7b-b106-b6821c45f0a9", - "4262a22a-885d-4877-ad99-0a8406e2adaa", - "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", - "517a8299-e807-4040-8ccd-f417dda7338c", - "da4ca96f-4db9-4287-b307-afc6221c923f", - "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "a90c4da7-455c-41d3-9961-c7a64d627572", - "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "579043e1-54f7-411f-9a36-e7ee3324290f", - "1758013c-4193-42f0-a495-c36930003f5b", - "1345672a-9148-439f-9a52-b8a216612929", - "ece1943b-159a-42fa-a0c1-16e06714e25e", - "82735dcc-3897-4e4c-87e8-45ee1dacedaa", - "3a8b9936-4595-4770-a3f4-b31253602356", - "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "ef6b8e74-cf7c-405a-a81c-caa03b93a96a", - "54e2350c-1dbf-481f-9610-f78cb1a71b49", - "1782a1a7-eddc-4228-a7a8-bf733f339e68", - "91baaa10-e8cd-406f-a7c1-c8e2465ade3f", - "e690066b-eb33-421c-89b1-e731dab9975f", - "c25adb1f-635e-4881-a89d-af8a9ea5ca92", - "4509b80b-76a5-49de-acb2-533a50bafac5", - "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", - "3e4f29c9-7bf2-4ca4-9cb4-2a3c4710cea6", - "91b595a9-abca-41fb-9723-f6ca055bd16b", - "8f4ce296-9511-42d4-a138-f52bb761830f", - "0a5b3fec-6725-4b10-9b81-ad6506fe82d2", - "a532b39a-66ec-444f-abc1-766787d9387c", - "3518bfc1-7b5d-4295-9440-6fc17dd6b559", - "e9dbe1ee-244a-4556-8fa1-052d6f2dee5e", - "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", - "56755a3d-6779-4355-8b48-27271fb6ce0b", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "601c2147-2f83-405b-be6a-8fe05117cb43", - "91b595a9-abca-41fb-9723-f6ca055bd16b" - ], - "stops": [], - "line_id": "cf41ea40-826e-4f39-9294-367ecc460961", - "segments": [ - 0, - 3, - 10, - 16, - 27, - 39, - 47, - 51, - 60, - 65, - 71, - 110, - 118, - 121, - 135, - 138, - 144, - 160, - 165, - 168, - 190, - 193, - 201, - 204, - 213, - 218, - 222, - 229, - 238, - 243, - 250, - 252, - 264, - 270, - 273, - 281, - 293, - 297, - 300, - 304, - 309 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 302, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.481538, - 45.438613 - ], - [ - -73.48154, - 45.438492 - ], - [ - -73.481571, - 45.437827 - ], - [ - -73.481572, - 45.437776 - ], - [ - -73.481581, - 45.437111 - ], - [ - -73.481588, - 45.43669 - ], - [ - -73.48159, - 45.436549 - ], - [ - -73.481583, - 45.435531 - ], - [ - -73.481582, - 45.43541 - ], - [ - -73.482382, - 45.435405 - ], - [ - -73.482932, - 45.435402 - ], - [ - -73.484574, - 45.435388 - ], - [ - -73.484708, - 45.435387 - ], - [ - -73.48743, - 45.435365 - ], - [ - -73.487529, - 45.435364 - ], - [ - -73.487766, - 45.435362 - ], - [ - -73.488499, - 45.435353 - ], - [ - -73.489078, - 45.435353 - ], - [ - -73.490339, - 45.435335 - ], - [ - -73.490512, - 45.435353 - ], - [ - -73.490636, - 45.435389 - ], - [ - -73.49074, - 45.435443 - ], - [ - -73.490825, - 45.43552 - ], - [ - -73.490911, - 45.435596 - ], - [ - -73.490933, - 45.435802 - ], - [ - -73.490941, - 45.43588 - ], - [ - -73.490978, - 45.436131 - ], - [ - -73.491142, - 45.436851 - ], - [ - -73.491212, - 45.437099 - ], - [ - -73.491237, - 45.437184 - ], - [ - -73.49152, - 45.437954 - ], - [ - -73.491752, - 45.438467 - ], - [ - -73.491829, - 45.438638 - ], - [ - -73.49121, - 45.438629 - ], - [ - -73.488267, - 45.438589 - ], - [ - -73.488148, - 45.438588 - ], - [ - -73.485001, - 45.438549 - ], - [ - -73.484835, - 45.438547 - ], - [ - -73.484725, - 45.438545 - ], - [ - -73.481672, - 45.438495 - ], - [ - -73.48154, - 45.438492 - ], - [ - -73.481345, - 45.438492 - ], - [ - -73.481336, - 45.439167 - ], - [ - -73.481322, - 45.43946 - ], - [ - -73.481291, - 45.439775 - ], - [ - -73.481194, - 45.440589 - ], - [ - -73.481134, - 45.441071 - ], - [ - -73.481107, - 45.441286 - ], - [ - -73.480147, - 45.441223 - ], - [ - -73.479817, - 45.44121 - ], - [ - -73.478107, - 45.441196 - ], - [ - -73.477758, - 45.441194 - ], - [ - -73.477731, - 45.441194 - ], - [ - -73.477247, - 45.441191 - ], - [ - -73.477021, - 45.4412 - ], - [ - -73.47678, - 45.441236 - ], - [ - -73.476584, - 45.441272 - ], - [ - -73.476413, - 45.441313 - ], - [ - -73.475939, - 45.441479 - ], - [ - -73.475852, - 45.44151 - ], - [ - -73.475703, - 45.441605 - ], - [ - -73.475479, - 45.441749 - ], - [ - -73.475247, - 45.441942 - ], - [ - -73.475115, - 45.442091 - ], - [ - -73.475039, - 45.44219 - ], - [ - -73.474902, - 45.442388 - ], - [ - -73.474682, - 45.442761 - ], - [ - -73.474541, - 45.443044 - ], - [ - -73.474469, - 45.443314 - ], - [ - -73.474438, - 45.443521 - ], - [ - -73.474388, - 45.444431 - ], - [ - -73.474384, - 45.444507 - ], - [ - -73.474282, - 45.446138 - ], - [ - -73.474281, - 45.446153 - ], - [ - -73.474217, - 45.446698 - ], - [ - -73.474171, - 45.446882 - ], - [ - -73.474095, - 45.447058 - ], - [ - -73.473962, - 45.447314 - ], - [ - -73.473833, - 45.447525 - ], - [ - -73.473557, - 45.447934 - ], - [ - -73.473507, - 45.448007 - ], - [ - -73.47251, - 45.447683 - ], - [ - -73.471666, - 45.447408 - ], - [ - -73.471252, - 45.447282 - ], - [ - -73.47028, - 45.446953 - ], - [ - -73.470002, - 45.446863 - ], - [ - -73.469936, - 45.446962 - ], - [ - -73.4697, - 45.447326 - ], - [ - -73.467906, - 45.450089 - ], - [ - -73.467328, - 45.451002 - ], - [ - -73.46669, - 45.452054 - ], - [ - -73.465968, - 45.453278 - ], - [ - -73.465918, - 45.453363 - ], - [ - -73.465707, - 45.453755 - ], - [ - -73.46558, - 45.454016 - ], - [ - -73.46536, - 45.454529 - ], - [ - -73.465344, - 45.454574 - ], - [ - -73.465251, - 45.454843 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.465167, - 45.455082 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465048, - 45.455509 - ], - [ - -73.465041, - 45.455536 - ], - [ - -73.464975, - 45.455829 - ], - [ - -73.464919, - 45.45613 - ], - [ - -73.464878, - 45.456427 - ], - [ - -73.464848, - 45.456873 - ], - [ - -73.464844, - 45.457169 - ], - [ - -73.464871, - 45.457574 - ], - [ - -73.464982, - 45.459113 - ], - [ - -73.464994, - 45.459278 - ], - [ - -73.465215, - 45.461562 - ], - [ - -73.465247, - 45.461893 - ], - [ - -73.465328, - 45.462497 - ], - [ - -73.465435, - 45.463211 - ], - [ - -73.465484, - 45.463543 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467476, - 45.467991 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467548, - 45.468225 - ], - [ - -73.467698, - 45.468792 - ], - [ - -73.467776, - 45.469183 - ], - [ - -73.46782, - 45.469453 - ], - [ - -73.46784, - 45.469697 - ], - [ - -73.467865, - 45.469989 - ], - [ - -73.467864, - 45.470057 - ], - [ - -73.467862, - 45.470168 - ], - [ - -73.46786, - 45.470362 - ], - [ - -73.467821, - 45.470781 - ], - [ - -73.467786, - 45.471019 - ], - [ - -73.467768, - 45.4711 - ], - [ - -73.467742, - 45.471226 - ], - [ - -73.467655, - 45.471563 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467508, - 45.472063 - ], - [ - -73.467493, - 45.472108 - ], - [ - -73.467342, - 45.472565 - ], - [ - -73.467254, - 45.472832 - ], - [ - -73.467075, - 45.473412 - ], - [ - -73.467018, - 45.473612 - ], - [ - -73.46686, - 45.474168 - ], - [ - -73.466715, - 45.474632 - ], - [ - -73.466501, - 45.475269 - ], - [ - -73.466278, - 45.475935 - ], - [ - -73.466234, - 45.476067 - ], - [ - -73.466125, - 45.47639 - ], - [ - -73.465592, - 45.477979 - ], - [ - -73.465357, - 45.478703 - ], - [ - -73.465338, - 45.478753 - ], - [ - -73.465269, - 45.478932 - ], - [ - -73.465247, - 45.479 - ], - [ - -73.46512, - 45.479382 - ], - [ - -73.464879, - 45.480107 - ], - [ - -73.464823, - 45.480273 - ], - [ - -73.464733, - 45.480574 - ], - [ - -73.464664, - 45.480885 - ], - [ - -73.464647, - 45.48101 - ], - [ - -73.464634, - 45.481108 - ], - [ - -73.464622, - 45.481195 - ], - [ - -73.464619, - 45.481245 - ], - [ - -73.464603, - 45.481524 - ], - [ - -73.464619, - 45.481956 - ], - [ - -73.464693, - 45.482383 - ], - [ - -73.464736, - 45.482559 - ], - [ - -73.46485, - 45.482905 - ], - [ - -73.46499, - 45.483243 - ], - [ - -73.465069, - 45.483405 - ], - [ - -73.465231, - 45.483688 - ], - [ - -73.465328, - 45.483837 - ], - [ - -73.465516, - 45.484318 - ], - [ - -73.465535, - 45.48439 - ], - [ - -73.465531, - 45.484453 - ], - [ - -73.465521, - 45.484494 - ], - [ - -73.465494, - 45.484521 - ], - [ - -73.465474, - 45.484542 - ], - [ - -73.465464, - 45.484552 - ], - [ - -73.46542, - 45.484575 - ], - [ - -73.465379, - 45.484592 - ], - [ - -73.465324, - 45.484601 - ], - [ - -73.465214, - 45.484601 - ], - [ - -73.464965, - 45.484574 - ], - [ - -73.464559, - 45.484417 - ], - [ - -73.464508, - 45.484399 - ], - [ - -73.464185, - 45.484291 - ], - [ - -73.463703, - 45.484155 - ], - [ - -73.463657, - 45.484142 - ], - [ - -73.46319, - 45.484029 - ], - [ - -73.462672, - 45.483908 - ], - [ - -73.462287, - 45.483831 - ], - [ - -73.462032, - 45.483791 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.46135, - 45.4837 - ], - [ - -73.460838, - 45.483637 - ], - [ - -73.460191, - 45.483581 - ], - [ - -73.459999, - 45.483565 - ], - [ - -73.459497, - 45.483511 - ], - [ - -73.459033, - 45.483457 - ], - [ - -73.458739, - 45.483407 - ], - [ - -73.458547, - 45.483371 - ], - [ - -73.458333, - 45.483321 - ], - [ - -73.458016, - 45.483245 - ], - [ - -73.45777, - 45.483182 - ], - [ - -73.457494, - 45.483102 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45645, - 45.482799 - ], - [ - -73.455886, - 45.482623 - ], - [ - -73.455654, - 45.482542 - ], - [ - -73.455462, - 45.482465 - ], - [ - -73.455276, - 45.482384 - ], - [ - -73.455274, - 45.482383 - ], - [ - -73.455009, - 45.482272 - ], - [ - -73.454605, - 45.482087 - ], - [ - -73.454381, - 45.481984 - ], - [ - -73.454145, - 45.481862 - ], - [ - -73.453796, - 45.481673 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452379, - 45.481446 - ], - [ - -73.452062, - 45.481636 - ], - [ - -73.45135, - 45.482063 - ], - [ - -73.451253, - 45.48212 - ], - [ - -73.450099, - 45.482806 - ], - [ - -73.449882, - 45.482936 - ], - [ - -73.449245, - 45.483336 - ], - [ - -73.449101, - 45.483471 - ], - [ - -73.448914, - 45.483713 - ], - [ - -73.448817, - 45.483898 - ], - [ - -73.448629, - 45.484109 - ], - [ - -73.44844, - 45.484271 - ], - [ - -73.448216, - 45.484487 - ], - [ - -73.44775, - 45.484937 - ], - [ - -73.447415, - 45.485256 - ], - [ - -73.447237, - 45.485427 - ], - [ - -73.447005, - 45.485643 - ], - [ - -73.446781, - 45.485856 - ], - [ - -73.446708, - 45.485926 - ], - [ - -73.445795, - 45.486794 - ], - [ - -73.445654, - 45.486915 - ], - [ - -73.445524, - 45.487041 - ], - [ - -73.445408, - 45.487167 - ], - [ - -73.445359, - 45.48723 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 303, - "properties": { - "id": "405e61ab-17e7-4b2e-8420-5b3c66baee03", - "data": { - "gtfs": { - "shape_id": "549_1_A" - }, - "segments": [ - { - "distanceMeters": 214, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 1274, - "travelTimeSeconds": 183 - }, - { - "distanceMeters": 478, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 1206, - "travelTimeSeconds": 173 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 436, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 72, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 838, - "travelTimeSeconds": 121 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 404, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 509, - "travelTimeSeconds": 73 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10883, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6451.177015702193, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.98, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 6.25, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.98 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", - "52fa062f-ca90-4e1d-998a-7b658a499b52", - "553f2fec-7dd4-475c-b1ed-ff9a62614e74", - "7a321951-38aa-4886-b297-59c69bcf3448", - "23afb18c-7e9a-4c38-a0e7-59d1aa5f5f5f", - "8f8e9cec-3b4e-465e-9db7-a68a74d060d1", - "a755707e-dbca-49b2-ba36-d6e6ffe0de89", - "70846d21-918c-4542-969d-4e5cccbc6e50", - "b88e581a-07f9-428f-bbb4-ab3a41e2dfe7", - "6195cfbf-10cd-4d7a-86f0-ca5dad76f9d9", - "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", - "a532b39a-66ec-444f-abc1-766787d9387c", - "ca880d29-2a91-4666-9ed1-c2825e5165f2", - "972f2e12-8185-4823-8ce3-2c965170ad9a", - "eab0f5d6-db57-4bf2-a26d-a49e7fe11c54", - "aebecb3d-b7f4-4a39-9b68-19a1c1a3b2b2", - "9d8d74b7-fc1f-4af5-a4a4-0cee1ee7b556", - "3481b163-efe1-4b08-b6af-eecb2141ddbe", - "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", - "acb7092d-3b2a-4d79-a4e3-09e7e52af475", - "47d29e21-b442-4f1e-bc41-0d7871af14e8", - "7eaffbff-c86c-4810-b174-bda8780c04b4", - "e76a6766-6730-419b-bd29-f65b80bb6721", - "bf51d692-a22e-42e9-a495-2d1955e0c462", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "491099bb-9493-4888-bd4e-20bd2140830a", - "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", - "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "d9b94443-0b59-40db-aecb-0acb5ea7976c", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "e8c1ec2a-af7c-4d5d-a722-e8848873681a", - "segments": [ - 0, - 5, - 7, - 11, - 13, - 24, - 28, - 31, - 34, - 36, - 39, - 46, - 52, - 58, - 70, - 72, - 79, - 97, - 109, - 140, - 154, - 163, - 166, - 169, - 174, - 212, - 221, - 228, - 240, - 241, - 249, - 254, - 260 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 303, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446648, - 45.490497 - ], - [ - -73.446649, - 45.490498 - ], - [ - -73.446822, - 45.490639 - ], - [ - -73.44688, - 45.490686 - ], - [ - -73.447261, - 45.491005 - ], - [ - -73.447337, - 45.491069 - ], - [ - -73.447665, - 45.490889 - ], - [ - -73.448136, - 45.490592 - ], - [ - -73.44848, - 45.49039 - ], - [ - -73.448793, - 45.490206 - ], - [ - -73.44919, - 45.489963 - ], - [ - -73.449329, - 45.489885 - ], - [ - -73.449476, - 45.489801 - ], - [ - -73.450048, - 45.489455 - ], - [ - -73.450226, - 45.489293 - ], - [ - -73.450385, - 45.489131 - ], - [ - -73.450522, - 45.488807 - ], - [ - -73.450554, - 45.488637 - ], - [ - -73.450562, - 45.488591 - ], - [ - -73.450564, - 45.488501 - ], - [ - -73.451142, - 45.48852 - ], - [ - -73.451437, - 45.488556 - ], - [ - -73.451471, - 45.48856 - ], - [ - -73.451663, - 45.488618 - ], - [ - -73.451864, - 45.488677 - ], - [ - -73.452026, - 45.48874 - ], - [ - -73.452059, - 45.488756 - ], - [ - -73.45223, - 45.488835 - ], - [ - -73.452275, - 45.488865 - ], - [ - -73.452316, - 45.488894 - ], - [ - -73.452398, - 45.488943 - ], - [ - -73.452482, - 45.488993 - ], - [ - -73.452596, - 45.489092 - ], - [ - -73.452853, - 45.489389 - ], - [ - -73.453059, - 45.489641 - ], - [ - -73.453301, - 45.489897 - ], - [ - -73.453554, - 45.490154 - ], - [ - -73.453816, - 45.490388 - ], - [ - -73.454028, - 45.490572 - ], - [ - -73.454376, - 45.490852 - ], - [ - -73.454697, - 45.491106 - ], - [ - -73.454792, - 45.49118 - ], - [ - -73.455383, - 45.490825 - ], - [ - -73.456177, - 45.490348 - ], - [ - -73.456382, - 45.490186 - ], - [ - -73.45652, - 45.490034 - ], - [ - -73.456589, - 45.489894 - ], - [ - -73.456688, - 45.489687 - ], - [ - -73.456692, - 45.489672 - ], - [ - -73.456709, - 45.489602 - ], - [ - -73.456724, - 45.489525 - ], - [ - -73.456835, - 45.488612 - ], - [ - -73.456898, - 45.488079 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457725, - 45.486653 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.459252, - 45.485723 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.46022, - 45.485044 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.461101, - 45.484442 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.462585, - 45.484043 - ], - [ - -73.463416, - 45.484224 - ], - [ - -73.463639, - 45.484291 - ], - [ - -73.464599, - 45.48462 - ], - [ - -73.465244, - 45.484835 - ], - [ - -73.465443, - 45.484908 - ], - [ - -73.465586, - 45.484937 - ], - [ - -73.465724, - 45.484942 - ], - [ - -73.465848, - 45.484931 - ], - [ - -73.466018, - 45.484884 - ], - [ - -73.466121, - 45.484844 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466302, - 45.484687 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466188, - 45.484448 - ], - [ - -73.466149, - 45.484395 - ], - [ - -73.466127, - 45.48437 - ], - [ - -73.465905, - 45.484113 - ], - [ - -73.465719, - 45.4839 - ], - [ - -73.46546, - 45.483541 - ], - [ - -73.465236, - 45.483174 - ], - [ - -73.465161, - 45.483037 - ], - [ - -73.465057, - 45.482799 - ], - [ - -73.464968, - 45.48254 - ], - [ - -73.46489, - 45.482284 - ], - [ - -73.464833, - 45.481906 - ], - [ - -73.464816, - 45.481524 - ], - [ - -73.46484, - 45.481203 - ], - [ - -73.464843, - 45.481165 - ], - [ - -73.464847, - 45.481114 - ], - [ - -73.464866, - 45.480979 - ], - [ - -73.46492, - 45.48071 - ], - [ - -73.465032, - 45.480327 - ], - [ - -73.465198, - 45.479819 - ], - [ - -73.46547, - 45.479009 - ], - [ - -73.465545, - 45.478784 - ], - [ - -73.465652, - 45.478467 - ], - [ - -73.465874, - 45.477808 - ], - [ - -73.466473, - 45.476001 - ], - [ - -73.466484, - 45.475966 - ], - [ - -73.466637, - 45.475504 - ], - [ - -73.467366, - 45.473305 - ], - [ - -73.467616, - 45.472553 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467869, - 45.471793 - ], - [ - -73.467954, - 45.471482 - ], - [ - -73.467979, - 45.471365 - ], - [ - -73.468005, - 45.471249 - ], - [ - -73.468064, - 45.470898 - ], - [ - -73.468088, - 45.470659 - ], - [ - -73.468112, - 45.470407 - ], - [ - -73.468119, - 45.470155 - ], - [ - -73.468115, - 45.470044 - ], - [ - -73.468111, - 45.469894 - ], - [ - -73.468108, - 45.469818 - ], - [ - -73.468107, - 45.469773 - ], - [ - -73.46805, - 45.4693 - ], - [ - -73.467955, - 45.468842 - ], - [ - -73.467932, - 45.468733 - ], - [ - -73.467793, - 45.468274 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.46758, - 45.467757 - ], - [ - -73.467357, - 45.467296 - ], - [ - -73.466914, - 45.466403 - ], - [ - -73.466752, - 45.466083 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466352, - 45.465288 - ], - [ - -73.466238, - 45.465062 - ], - [ - -73.466142, - 45.464853 - ], - [ - -73.466048, - 45.464638 - ], - [ - -73.46599, - 45.464498 - ], - [ - -73.465967, - 45.464441 - ], - [ - -73.465777, - 45.463945 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465663, - 45.463449 - ], - [ - -73.465646, - 45.463238 - ], - [ - -73.465636, - 45.463073 - ], - [ - -73.465461, - 45.461275 - ], - [ - -73.465448, - 45.461145 - ], - [ - -73.465251, - 45.459263 - ], - [ - -73.465217, - 45.458913 - ], - [ - -73.465199, - 45.458728 - ], - [ - -73.465132, - 45.458038 - ], - [ - -73.465113, - 45.457592 - ], - [ - -73.465124, - 45.457143 - ], - [ - -73.465143, - 45.45685 - ], - [ - -73.465153, - 45.456755 - ], - [ - -73.465199, - 45.456301 - ], - [ - -73.465244, - 45.456 - ], - [ - -73.465335, - 45.455572 - ], - [ - -73.465339, - 45.455554 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465617, - 45.454677 - ], - [ - -73.465624, - 45.454658 - ], - [ - -73.465629, - 45.454641 - ], - [ - -73.465694, - 45.454481 - ], - [ - -73.465735, - 45.45438 - ], - [ - -73.465853, - 45.45411 - ], - [ - -73.466087, - 45.453654 - ], - [ - -73.46613, - 45.45357 - ], - [ - -73.466877, - 45.452297 - ], - [ - -73.467521, - 45.451236 - ], - [ - -73.468182, - 45.450183 - ], - [ - -73.469986, - 45.447403 - ], - [ - -73.4701, - 45.447228 - ], - [ - -73.470215, - 45.447052 - ], - [ - -73.471183, - 45.44739 - ], - [ - -73.471746, - 45.44757 - ], - [ - -73.472443, - 45.447795 - ], - [ - -73.473347, - 45.448088 - ], - [ - -73.473437, - 45.448115 - ], - [ - -73.473507, - 45.448007 - ], - [ - -73.473833, - 45.447525 - ], - [ - -73.473962, - 45.447314 - ], - [ - -73.474095, - 45.447058 - ], - [ - -73.474171, - 45.446882 - ], - [ - -73.474217, - 45.446698 - ], - [ - -73.474267, - 45.446278 - ], - [ - -73.474281, - 45.446153 - ], - [ - -73.474336, - 45.445279 - ], - [ - -73.474376, - 45.444635 - ], - [ - -73.474384, - 45.444507 - ], - [ - -73.474438, - 45.443521 - ], - [ - -73.474469, - 45.443314 - ], - [ - -73.474541, - 45.443044 - ], - [ - -73.474682, - 45.442761 - ], - [ - -73.474902, - 45.442388 - ], - [ - -73.475039, - 45.44219 - ], - [ - -73.475115, - 45.442091 - ], - [ - -73.475247, - 45.441942 - ], - [ - -73.475479, - 45.441749 - ], - [ - -73.475634, - 45.441649 - ], - [ - -73.475703, - 45.441605 - ], - [ - -73.475852, - 45.44151 - ], - [ - -73.476413, - 45.441313 - ], - [ - -73.476584, - 45.441272 - ], - [ - -73.47678, - 45.441236 - ], - [ - -73.477021, - 45.4412 - ], - [ - -73.477247, - 45.441191 - ], - [ - -73.477686, - 45.441194 - ], - [ - -73.478107, - 45.441196 - ], - [ - -73.479817, - 45.44121 - ], - [ - -73.480147, - 45.441223 - ], - [ - -73.480948, - 45.441276 - ], - [ - -73.481107, - 45.441286 - ], - [ - -73.481299, - 45.441295 - ], - [ - -73.48139, - 45.440598 - ], - [ - -73.481487, - 45.439784 - ], - [ - -73.481519, - 45.439469 - ], - [ - -73.481531, - 45.439172 - ], - [ - -73.481538, - 45.438636 - ], - [ - -73.48154, - 45.438492 - ], - [ - -73.481571, - 45.437827 - ], - [ - -73.481572, - 45.437776 - ], - [ - -73.481581, - 45.437111 - ], - [ - -73.481587, - 45.436704 - ], - [ - -73.48159, - 45.436549 - ], - [ - -73.481583, - 45.435545 - ], - [ - -73.481582, - 45.43541 - ], - [ - -73.482382, - 45.435405 - ], - [ - -73.482932, - 45.435402 - ], - [ - -73.484554, - 45.435388 - ], - [ - -73.484708, - 45.435387 - ], - [ - -73.487411, - 45.435365 - ], - [ - -73.487529, - 45.435364 - ], - [ - -73.487766, - 45.435362 - ], - [ - -73.488499, - 45.435353 - ], - [ - -73.489078, - 45.435353 - ], - [ - -73.490339, - 45.435335 - ], - [ - -73.490512, - 45.435353 - ], - [ - -73.490636, - 45.435389 - ], - [ - -73.49074, - 45.435443 - ], - [ - -73.490825, - 45.43552 - ], - [ - -73.490911, - 45.435596 - ], - [ - -73.490932, - 45.435789 - ], - [ - -73.490941, - 45.43588 - ], - [ - -73.490978, - 45.436131 - ], - [ - -73.491142, - 45.436851 - ], - [ - -73.491209, - 45.437086 - ], - [ - -73.491237, - 45.437184 - ], - [ - -73.49152, - 45.437954 - ], - [ - -73.491746, - 45.438455 - ], - [ - -73.491829, - 45.438638 - ], - [ - -73.49121, - 45.438629 - ], - [ - -73.488285, - 45.43859 - ], - [ - -73.488148, - 45.438588 - ], - [ - -73.485032, - 45.438549 - ], - [ - -73.484835, - 45.438547 - ], - [ - -73.484725, - 45.438545 - ], - [ - -73.481702, - 45.438495 - ] - ] - }, - "id": 304, - "properties": { - "id": "320116ca-0018-4699-80a6-5fc4cd4a991d", - "data": { - "gtfs": { - "shape_id": "549_2_R" - }, - "segments": [ - { - "distanceMeters": 173, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 74, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 909, - "travelTimeSeconds": 135 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 608, - "travelTimeSeconds": 90 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 884, - "travelTimeSeconds": 131 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 477, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 898, - "travelTimeSeconds": 133 - }, - { - "distanceMeters": 516, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 39 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10920, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6451.177015702193, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.74, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 6.07, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.74 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "35f25056-4f99-4b6e-babc-10c53194c70e", - "0f232130-277e-4d7b-b106-b6821c45f0a9", - "4262a22a-885d-4877-ad99-0a8406e2adaa", - "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", - "517a8299-e807-4040-8ccd-f417dda7338c", - "da4ca96f-4db9-4287-b307-afc6221c923f", - "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "a90c4da7-455c-41d3-9961-c7a64d627572", - "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "579043e1-54f7-411f-9a36-e7ee3324290f", - "1758013c-4193-42f0-a495-c36930003f5b", - "51e1600d-418e-4477-9b26-9e5507d72a03", - "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "74887516-47d5-4269-9513-84672d18e287", - "1e3a74d9-9d8a-467f-a82e-3dafee501e32", - "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", - "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", - "aebecb3d-b7f4-4a39-9b68-19a1c1a3b2b2", - "eab0f5d6-db57-4bf2-a26d-a49e7fe11c54", - "972f2e12-8185-4823-8ce3-2c965170ad9a", - "ca880d29-2a91-4666-9ed1-c2825e5165f2", - "a532b39a-66ec-444f-abc1-766787d9387c", - "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", - "52fa062f-ca90-4e1d-998a-7b658a499b52", - "553f2fec-7dd4-475c-b1ed-ff9a62614e74", - "7a321951-38aa-4886-b297-59c69bcf3448", - "23afb18c-7e9a-4c38-a0e7-59d1aa5f5f5f", - "8f8e9cec-3b4e-465e-9db7-a68a74d060d1", - "a755707e-dbca-49b2-ba36-d6e6ffe0de89", - "70846d21-918c-4542-969d-4e5cccbc6e50", - "b88e581a-07f9-428f-bbb4-ab3a41e2dfe7", - "6195cfbf-10cd-4d7a-86f0-ca5dad76f9d9", - "205aad7d-06ec-4492-b7ed-ac8ab79f10b2" - ], - "stops": [], - "line_id": "e8c1ec2a-af7c-4d5d-a722-e8848873681a", - "segments": [ - 0, - 10, - 14, - 21, - 27, - 38, - 50, - 58, - 62, - 71, - 76, - 83, - 121, - 129, - 132, - 144, - 152, - 174, - 176, - 190, - 201, - 214, - 217, - 228, - 236, - 240, - 247, - 252, - 254, - 258, - 260, - 271, - 275, - 278, - 281, - 283 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 304, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.47318, - 45.448516 - ], - [ - -73.473049, - 45.44872 - ], - [ - -73.47303, - 45.448749 - ], - [ - -73.472948, - 45.448844 - ], - [ - -73.472758, - 45.448996 - ], - [ - -73.472583, - 45.449086 - ], - [ - -73.47242, - 45.449145 - ], - [ - -73.472128, - 45.449217 - ], - [ - -73.471995, - 45.449248 - ], - [ - -73.471866, - 45.449284 - ], - [ - -73.471718, - 45.449347 - ], - [ - -73.471562, - 45.449433 - ], - [ - -73.471456, - 45.449523 - ], - [ - -73.471364, - 45.449599 - ], - [ - -73.471258, - 45.449752 - ], - [ - -73.471118, - 45.449963 - ], - [ - -73.470954, - 45.450197 - ], - [ - -73.470688, - 45.450625 - ], - [ - -73.470669, - 45.450664 - ], - [ - -73.470498, - 45.451021 - ], - [ - -73.470381, - 45.451277 - ], - [ - -73.469962, - 45.452249 - ], - [ - -73.469638, - 45.453009 - ], - [ - -73.469306, - 45.453787 - ], - [ - -73.469164, - 45.45412 - ], - [ - -73.469093, - 45.454287 - ], - [ - -73.468944, - 45.454656 - ], - [ - -73.468828, - 45.455033 - ], - [ - -73.468739, - 45.455281 - ], - [ - -73.468506, - 45.455931 - ], - [ - -73.468443, - 45.456109 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468158, - 45.456945 - ], - [ - -73.468147, - 45.457005 - ], - [ - -73.468109, - 45.457211 - ], - [ - -73.468045, - 45.457821 - ], - [ - -73.468021, - 45.458057 - ], - [ - -73.467975, - 45.458309 - ], - [ - -73.467971, - 45.458525 - ], - [ - -73.467956, - 45.458669 - ], - [ - -73.467979, - 45.458754 - ], - [ - -73.468046, - 45.458906 - ], - [ - -73.468056, - 45.45893 - ], - [ - -73.468212, - 45.459096 - ], - [ - -73.468425, - 45.459258 - ], - [ - -73.468742, - 45.459506 - ], - [ - -73.468938, - 45.459704 - ], - [ - -73.46901, - 45.459861 - ], - [ - -73.469046, - 45.459978 - ], - [ - -73.469045, - 45.460397 - ], - [ - -73.469025, - 45.46067 - ], - [ - -73.46901, - 45.460865 - ], - [ - -73.46897, - 45.46149 - ], - [ - -73.468876, - 45.462738 - ], - [ - -73.468837, - 45.463254 - ], - [ - -73.468834, - 45.463408 - ], - [ - -73.468833, - 45.46342 - ], - [ - -73.468884, - 45.463461 - ], - [ - -73.468972, - 45.463474 - ], - [ - -73.46938, - 45.463488 - ], - [ - -73.470687, - 45.463533 - ], - [ - -73.471257, - 45.463547 - ], - [ - -73.471494, - 45.463556 - ], - [ - -73.471503, - 45.463556 - ], - [ - -73.471666, - 45.463565 - ], - [ - -73.471841, - 45.463592 - ], - [ - -73.472107, - 45.4637 - ], - [ - -73.472761, - 45.464147 - ], - [ - -73.472811, - 45.464181 - ], - [ - -73.473207, - 45.464434 - ], - [ - -73.473499, - 45.464573 - ], - [ - -73.473705, - 45.464641 - ], - [ - -73.473949, - 45.464699 - ], - [ - -73.474168, - 45.464717 - ], - [ - -73.474508, - 45.464734 - ], - [ - -73.474661, - 45.464744 - ], - [ - -73.474783, - 45.464747 - ], - [ - -73.475061, - 45.464753 - ], - [ - -73.476229, - 45.46479 - ], - [ - -73.47815, - 45.464859 - ], - [ - -73.478688, - 45.464879 - ], - [ - -73.478969, - 45.464889 - ], - [ - -73.479281, - 45.464889 - ], - [ - -73.479651, - 45.464862 - ], - [ - -73.479951, - 45.464831 - ], - [ - -73.480287, - 45.464772 - ], - [ - -73.480652, - 45.464687 - ], - [ - -73.480952, - 45.464593 - ], - [ - -73.481345, - 45.464437 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.481235, - 45.464154 - ], - [ - -73.480971, - 45.463838 - ], - [ - -73.480932, - 45.463792 - ], - [ - -73.480306, - 45.46304 - ], - [ - -73.479953, - 45.462619 - ], - [ - -73.479274, - 45.461807 - ], - [ - -73.478983, - 45.461465 - ], - [ - -73.478678, - 45.461105 - ], - [ - -73.47855, - 45.461011 - ], - [ - -73.478432, - 45.460906 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.476645, - 45.461976 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.474375, - 45.468231 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474292, - 45.469387 - ], - [ - -73.474258, - 45.469564 - ], - [ - -73.474234, - 45.469689 - ], - [ - -73.474156, - 45.470095 - ], - [ - -73.474035, - 45.470724 - ], - [ - -73.473974, - 45.47107 - ], - [ - -73.473942, - 45.471336 - ], - [ - -73.473932, - 45.471601 - ], - [ - -73.473938, - 45.471698 - ], - [ - -73.473947, - 45.471826 - ], - [ - -73.473986, - 45.472118 - ], - [ - -73.473998, - 45.472177 - ], - [ - -73.474046, - 45.47242 - ], - [ - -73.474106, - 45.47264 - ], - [ - -73.474275, - 45.473063 - ], - [ - -73.474463, - 45.473437 - ], - [ - -73.474007, - 45.473581 - ], - [ - -73.473846, - 45.473648 - ], - [ - -73.473736, - 45.473702 - ], - [ - -73.473545, - 45.473797 - ], - [ - -73.473465, - 45.473841 - ], - [ - -73.473457, - 45.473846 - ], - [ - -73.473334, - 45.473927 - ], - [ - -73.473141, - 45.474053 - ], - [ - -73.473062, - 45.474109 - ], - [ - -73.472074, - 45.474808 - ], - [ - -73.471729, - 45.474583 - ], - [ - -73.470383, - 45.473616 - ], - [ - -73.470064, - 45.473386 - ], - [ - -73.468607, - 45.472409 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467508, - 45.472063 - ], - [ - -73.467493, - 45.472108 - ], - [ - -73.467342, - 45.472565 - ], - [ - -73.467254, - 45.472832 - ], - [ - -73.467075, - 45.473412 - ], - [ - -73.467018, - 45.473612 - ], - [ - -73.46686, - 45.474168 - ], - [ - -73.466715, - 45.474632 - ], - [ - -73.466501, - 45.475269 - ], - [ - -73.466278, - 45.475935 - ], - [ - -73.466234, - 45.476067 - ], - [ - -73.466128, - 45.476381 - ], - [ - -73.465592, - 45.477979 - ], - [ - -73.465357, - 45.478703 - ], - [ - -73.465338, - 45.478752 - ], - [ - -73.465269, - 45.478932 - ], - [ - -73.465247, - 45.479 - ], - [ - -73.46512, - 45.479381 - ], - [ - -73.464879, - 45.480107 - ], - [ - -73.464823, - 45.480273 - ], - [ - -73.464733, - 45.480574 - ], - [ - -73.464664, - 45.480885 - ], - [ - -73.464647, - 45.481009 - ], - [ - -73.464634, - 45.481108 - ], - [ - -73.464622, - 45.481195 - ], - [ - -73.464619, - 45.481245 - ], - [ - -73.464603, - 45.481524 - ], - [ - -73.464619, - 45.481956 - ], - [ - -73.464693, - 45.482383 - ], - [ - -73.464736, - 45.482559 - ], - [ - -73.46485, - 45.482905 - ], - [ - -73.46499, - 45.483243 - ], - [ - -73.465069, - 45.483405 - ], - [ - -73.465231, - 45.483688 - ], - [ - -73.465328, - 45.483837 - ], - [ - -73.465516, - 45.484318 - ], - [ - -73.465535, - 45.48439 - ], - [ - -73.465531, - 45.484453 - ], - [ - -73.465521, - 45.484494 - ], - [ - -73.465494, - 45.484521 - ], - [ - -73.465474, - 45.484542 - ], - [ - -73.465464, - 45.484552 - ], - [ - -73.46542, - 45.484575 - ], - [ - -73.465379, - 45.484592 - ], - [ - -73.465324, - 45.484601 - ], - [ - -73.465214, - 45.484601 - ], - [ - -73.464965, - 45.484574 - ], - [ - -73.464559, - 45.484417 - ], - [ - -73.464508, - 45.484399 - ], - [ - -73.464185, - 45.484291 - ], - [ - -73.463703, - 45.484155 - ], - [ - -73.463657, - 45.484142 - ], - [ - -73.46319, - 45.484029 - ], - [ - -73.462672, - 45.483908 - ], - [ - -73.462287, - 45.483831 - ], - [ - -73.462032, - 45.483791 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.46135, - 45.4837 - ], - [ - -73.460838, - 45.483637 - ], - [ - -73.460192, - 45.483582 - ], - [ - -73.459999, - 45.483565 - ], - [ - -73.459497, - 45.483511 - ], - [ - -73.459033, - 45.483457 - ], - [ - -73.458739, - 45.483407 - ], - [ - -73.458547, - 45.483371 - ], - [ - -73.458333, - 45.483321 - ], - [ - -73.458016, - 45.483245 - ], - [ - -73.45777, - 45.483182 - ], - [ - -73.457506, - 45.483105 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45645, - 45.482799 - ], - [ - -73.455886, - 45.482623 - ], - [ - -73.455654, - 45.482542 - ], - [ - -73.455462, - 45.482465 - ], - [ - -73.455285, - 45.482388 - ], - [ - -73.455276, - 45.482384 - ], - [ - -73.455009, - 45.482272 - ], - [ - -73.454605, - 45.482087 - ], - [ - -73.454381, - 45.481984 - ], - [ - -73.454145, - 45.481862 - ], - [ - -73.453796, - 45.481673 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452379, - 45.481446 - ], - [ - -73.452062, - 45.481636 - ], - [ - -73.45135, - 45.482063 - ], - [ - -73.451254, - 45.48212 - ], - [ - -73.4501, - 45.482806 - ], - [ - -73.449882, - 45.482936 - ], - [ - -73.449245, - 45.483336 - ], - [ - -73.449101, - 45.483471 - ], - [ - -73.448914, - 45.483713 - ], - [ - -73.448817, - 45.483898 - ], - [ - -73.448629, - 45.484109 - ], - [ - -73.44844, - 45.484271 - ], - [ - -73.448224, - 45.48448 - ], - [ - -73.44775, - 45.484937 - ], - [ - -73.447415, - 45.485256 - ], - [ - -73.447237, - 45.485427 - ], - [ - -73.447005, - 45.485643 - ], - [ - -73.446789, - 45.485849 - ], - [ - -73.446708, - 45.485926 - ], - [ - -73.445795, - 45.486794 - ], - [ - -73.445654, - 45.486915 - ], - [ - -73.445524, - 45.487041 - ], - [ - -73.445408, - 45.487167 - ], - [ - -73.44536, - 45.48723 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 305, - "properties": { - "id": "646a31b1-bed7-4d44-9bbb-7d4c703df233", - "data": { - "gtfs": { - "shape_id": "550_1_A" - }, - "segments": [ - { - "distanceMeters": 25, - "travelTimeSeconds": 3 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 40, - "travelTimeSeconds": 5 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 750, - "travelTimeSeconds": 104 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 404, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 435, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 72, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 838, - "travelTimeSeconds": 116 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 405, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 509, - "travelTimeSeconds": 71 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9524, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5152.941043765201, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.21, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 6.35, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.21 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "5847442f-86f3-431c-ac38-324378b56363", - "5847442f-86f3-431c-ac38-324378b56363", - "23085815-2dff-4082-9402-38931522fb99", - "e21c6436-090b-4893-a347-5a67018da073", - "d5176685-5789-4135-ac00-ee677cfb093a", - "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", - "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", - "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", - "ef880d61-7a9a-4504-a9a1-27967a52e95d", - "f872f4da-bae9-485b-a2fb-ae01787389fc", - "71ffac32-604a-4260-b51e-c427856a20c4", - "70ace55a-2f3c-410b-8740-bea06ecb9924", - "5a01eede-d090-4bda-988f-792a987bafc2", - "eee98f97-7434-4d16-88a6-93a424bc6846", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "003bcf5e-54a8-471f-b008-b7fa64ff94ba", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", - "3a8b9936-4595-4770-a3f4-b31253602356", - "82735dcc-3897-4e4c-87e8-45ee1dacedaa", - "85f19be2-1f67-4673-b3b3-52d06ed31ae3", - "47d29e21-b442-4f1e-bc41-0d7871af14e8", - "7eaffbff-c86c-4810-b174-bda8780c04b4", - "e76a6766-6730-419b-bd29-f65b80bb6721", - "bf51d692-a22e-42e9-a495-2d1955e0c462", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "491099bb-9493-4888-bd4e-20bd2140830a", - "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", - "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "d9b94443-0b59-40db-aecb-0acb5ea7976c", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "cbba6b0c-47b9-488d-b560-8357c52cbbe3", - "segments": [ - 0, - 1, - 18, - 22, - 24, - 29, - 35, - 41, - 50, - 55, - 63, - 67, - 76, - 79, - 88, - 90, - 94, - 99, - 102, - 130, - 135, - 142, - 154, - 161, - 169, - 178, - 181, - 184, - 189, - 227, - 236, - 242, - 255, - 256, - 264, - 269, - 275 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 305, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446648, - 45.490497 - ], - [ - -73.446649, - 45.490498 - ], - [ - -73.446822, - 45.490639 - ], - [ - -73.44688, - 45.490686 - ], - [ - -73.447261, - 45.491005 - ], - [ - -73.447337, - 45.491069 - ], - [ - -73.447665, - 45.490889 - ], - [ - -73.448136, - 45.490592 - ], - [ - -73.44848, - 45.49039 - ], - [ - -73.448793, - 45.490206 - ], - [ - -73.44919, - 45.489963 - ], - [ - -73.449329, - 45.489885 - ], - [ - -73.449476, - 45.489801 - ], - [ - -73.450048, - 45.489455 - ], - [ - -73.450226, - 45.489293 - ], - [ - -73.450385, - 45.489131 - ], - [ - -73.450522, - 45.488807 - ], - [ - -73.450554, - 45.488637 - ], - [ - -73.450562, - 45.488591 - ], - [ - -73.450564, - 45.488501 - ], - [ - -73.451142, - 45.48852 - ], - [ - -73.451437, - 45.488556 - ], - [ - -73.451471, - 45.48856 - ], - [ - -73.451663, - 45.488618 - ], - [ - -73.451864, - 45.488677 - ], - [ - -73.452026, - 45.48874 - ], - [ - -73.452059, - 45.488756 - ], - [ - -73.45223, - 45.488835 - ], - [ - -73.452275, - 45.488865 - ], - [ - -73.452316, - 45.488894 - ], - [ - -73.452398, - 45.488943 - ], - [ - -73.452482, - 45.488993 - ], - [ - -73.452596, - 45.489092 - ], - [ - -73.452853, - 45.489389 - ], - [ - -73.453059, - 45.489641 - ], - [ - -73.453301, - 45.489897 - ], - [ - -73.453554, - 45.490154 - ], - [ - -73.453816, - 45.490388 - ], - [ - -73.454028, - 45.490572 - ], - [ - -73.454376, - 45.490852 - ], - [ - -73.454697, - 45.491106 - ], - [ - -73.454792, - 45.49118 - ], - [ - -73.455383, - 45.490825 - ], - [ - -73.456177, - 45.490348 - ], - [ - -73.456382, - 45.490186 - ], - [ - -73.45652, - 45.490034 - ], - [ - -73.456589, - 45.489894 - ], - [ - -73.456688, - 45.489687 - ], - [ - -73.456692, - 45.489672 - ], - [ - -73.456709, - 45.489602 - ], - [ - -73.456724, - 45.489525 - ], - [ - -73.456835, - 45.488612 - ], - [ - -73.456898, - 45.488079 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457725, - 45.486653 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.459252, - 45.485723 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.46022, - 45.485044 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.461101, - 45.484442 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.462585, - 45.484043 - ], - [ - -73.463416, - 45.484224 - ], - [ - -73.463639, - 45.484291 - ], - [ - -73.464599, - 45.48462 - ], - [ - -73.465244, - 45.484835 - ], - [ - -73.465443, - 45.484908 - ], - [ - -73.465586, - 45.484937 - ], - [ - -73.465724, - 45.484942 - ], - [ - -73.465848, - 45.484931 - ], - [ - -73.466018, - 45.484884 - ], - [ - -73.466121, - 45.484844 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466302, - 45.484687 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466188, - 45.484448 - ], - [ - -73.466149, - 45.484395 - ], - [ - -73.466127, - 45.48437 - ], - [ - -73.465905, - 45.484113 - ], - [ - -73.465719, - 45.4839 - ], - [ - -73.46546, - 45.483541 - ], - [ - -73.465236, - 45.483174 - ], - [ - -73.465161, - 45.483037 - ], - [ - -73.465057, - 45.482799 - ], - [ - -73.464968, - 45.48254 - ], - [ - -73.46489, - 45.482284 - ], - [ - -73.464833, - 45.481906 - ], - [ - -73.464816, - 45.481524 - ], - [ - -73.46484, - 45.481203 - ], - [ - -73.464843, - 45.481165 - ], - [ - -73.464847, - 45.481114 - ], - [ - -73.464866, - 45.480979 - ], - [ - -73.46492, - 45.48071 - ], - [ - -73.465032, - 45.480327 - ], - [ - -73.465198, - 45.479819 - ], - [ - -73.46547, - 45.479009 - ], - [ - -73.465545, - 45.478784 - ], - [ - -73.465652, - 45.478467 - ], - [ - -73.465874, - 45.477808 - ], - [ - -73.466472, - 45.476001 - ], - [ - -73.466484, - 45.475966 - ], - [ - -73.466637, - 45.475504 - ], - [ - -73.467366, - 45.473305 - ], - [ - -73.467616, - 45.472553 - ], - [ - -73.467822, - 45.472468 - ], - [ - -73.467906, - 45.472436 - ], - [ - -73.468005, - 45.472409 - ], - [ - -73.468127, - 45.472396 - ], - [ - -73.468231, - 45.472409 - ], - [ - -73.468368, - 45.472441 - ], - [ - -73.468499, - 45.472486 - ], - [ - -73.469144, - 45.472936 - ], - [ - -73.469236, - 45.473 - ], - [ - -73.469656, - 45.473293 - ], - [ - -73.469926, - 45.473481 - ], - [ - -73.471608, - 45.474678 - ], - [ - -73.471797, - 45.474817 - ], - [ - -73.471919, - 45.474907 - ], - [ - -73.472018, - 45.474979 - ], - [ - -73.47218, - 45.47489 - ], - [ - -73.472421, - 45.474721 - ], - [ - -73.473247, - 45.474143 - ], - [ - -73.473259, - 45.474135 - ], - [ - -73.473452, - 45.474003 - ], - [ - -73.47356, - 45.473931 - ], - [ - -73.47364, - 45.473887 - ], - [ - -73.473932, - 45.473738 - ], - [ - -73.474194, - 45.473626 - ], - [ - -73.474513, - 45.473518 - ], - [ - -73.474653, - 45.473477 - ], - [ - -73.474613, - 45.473387 - ], - [ - -73.47455, - 45.473262 - ], - [ - -73.474431, - 45.473027 - ], - [ - -73.474274, - 45.472609 - ], - [ - -73.474213, - 45.472397 - ], - [ - -73.474173, - 45.472208 - ], - [ - -73.474165, - 45.472163 - ], - [ - -73.474141, - 45.472028 - ], - [ - -73.474138, - 45.472008 - ], - [ - -73.47411, - 45.47183 - ], - [ - -73.474121, - 45.471228 - ], - [ - -73.474166, - 45.470967 - ], - [ - -73.474399, - 45.469698 - ], - [ - -73.474423, - 45.469568 - ], - [ - -73.474454, - 45.469396 - ], - [ - -73.474489, - 45.469055 - ], - [ - -73.474517, - 45.468816 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474544, - 45.468492 - ], - [ - -73.474545, - 45.468488 - ], - [ - -73.474528, - 45.468236 - ], - [ - -73.474508, - 45.467936 - ], - [ - -73.474508, - 45.467294 - ], - [ - -73.474542, - 45.4665 - ], - [ - -73.474546, - 45.466404 - ], - [ - -73.474554, - 45.466199 - ], - [ - -73.474621, - 45.465194 - ], - [ - -73.474664, - 45.464506 - ], - [ - -73.474669, - 45.464397 - ], - [ - -73.474734, - 45.464067 - ], - [ - -73.474884, - 45.463697 - ], - [ - -73.475002, - 45.463492 - ], - [ - -73.47522, - 45.463212 - ], - [ - -73.475408, - 45.463039 - ], - [ - -73.47556, - 45.462909 - ], - [ - -73.475821, - 45.462711 - ], - [ - -73.476105, - 45.462495 - ], - [ - -73.476434, - 45.462262 - ], - [ - -73.476557, - 45.462176 - ], - [ - -73.477249, - 45.461685 - ], - [ - -73.478214, - 45.460957 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.47855, - 45.461011 - ], - [ - -73.478678, - 45.461105 - ], - [ - -73.478847, - 45.461305 - ], - [ - -73.478983, - 45.461465 - ], - [ - -73.479274, - 45.461807 - ], - [ - -73.479715, - 45.462334 - ], - [ - -73.480306, - 45.46304 - ], - [ - -73.480932, - 45.463792 - ], - [ - -73.48136, - 45.464304 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.480952, - 45.464593 - ], - [ - -73.480652, - 45.464687 - ], - [ - -73.480572, - 45.464706 - ], - [ - -73.480287, - 45.464772 - ], - [ - -73.479951, - 45.464831 - ], - [ - -73.479651, - 45.464862 - ], - [ - -73.479281, - 45.464889 - ], - [ - -73.478969, - 45.464889 - ], - [ - -73.478722, - 45.46488 - ], - [ - -73.478688, - 45.464879 - ], - [ - -73.476229, - 45.46479 - ], - [ - -73.475061, - 45.464753 - ], - [ - -73.474661, - 45.464744 - ], - [ - -73.474508, - 45.464734 - ], - [ - -73.474268, - 45.464722 - ], - [ - -73.474168, - 45.464717 - ], - [ - -73.473949, - 45.464699 - ], - [ - -73.473705, - 45.464641 - ], - [ - -73.473499, - 45.464573 - ], - [ - -73.473207, - 45.464434 - ], - [ - -73.473012, - 45.464309 - ], - [ - -73.472811, - 45.464181 - ], - [ - -73.472107, - 45.4637 - ], - [ - -73.471841, - 45.463592 - ], - [ - -73.471677, - 45.463567 - ], - [ - -73.471666, - 45.463565 - ], - [ - -73.471494, - 45.463556 - ], - [ - -73.471257, - 45.463547 - ], - [ - -73.470687, - 45.463533 - ], - [ - -73.469168, - 45.463481 - ], - [ - -73.468972, - 45.463474 - ], - [ - -73.468884, - 45.463461 - ], - [ - -73.468833, - 45.46342 - ], - [ - -73.468836, - 45.463308 - ], - [ - -73.468837, - 45.463254 - ], - [ - -73.468876, - 45.462738 - ], - [ - -73.46897, - 45.46149 - ], - [ - -73.46901, - 45.460865 - ], - [ - -73.469029, - 45.460613 - ], - [ - -73.469045, - 45.460397 - ], - [ - -73.469046, - 45.459978 - ], - [ - -73.46901, - 45.459861 - ], - [ - -73.468938, - 45.459704 - ], - [ - -73.468742, - 45.459506 - ], - [ - -73.468425, - 45.459258 - ], - [ - -73.468212, - 45.459096 - ], - [ - -73.468161, - 45.459042 - ], - [ - -73.468056, - 45.45893 - ], - [ - -73.467979, - 45.458754 - ], - [ - -73.467956, - 45.458669 - ], - [ - -73.467971, - 45.458525 - ], - [ - -73.467975, - 45.458309 - ], - [ - -73.467994, - 45.458203 - ], - [ - -73.468021, - 45.458057 - ], - [ - -73.468109, - 45.457211 - ], - [ - -73.468147, - 45.457005 - ], - [ - -73.468147, - 45.457003 - ], - [ - -73.468158, - 45.456945 - ], - [ - -73.468344, - 45.456399 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468443, - 45.456109 - ], - [ - -73.468739, - 45.455281 - ], - [ - -73.468828, - 45.455033 - ], - [ - -73.468944, - 45.454656 - ], - [ - -73.469057, - 45.454375 - ], - [ - -73.469093, - 45.454287 - ], - [ - -73.469306, - 45.453787 - ], - [ - -73.469577, - 45.453152 - ], - [ - -73.469962, - 45.452249 - ], - [ - -73.470381, - 45.451277 - ], - [ - -73.470498, - 45.451021 - ], - [ - -73.470667, - 45.450669 - ], - [ - -73.470688, - 45.450625 - ], - [ - -73.470954, - 45.450197 - ], - [ - -73.471118, - 45.449963 - ], - [ - -73.471258, - 45.449752 - ], - [ - -73.471364, - 45.449599 - ], - [ - -73.471456, - 45.449523 - ], - [ - -73.471562, - 45.449433 - ], - [ - -73.471718, - 45.449347 - ], - [ - -73.471866, - 45.449284 - ], - [ - -73.471995, - 45.449248 - ], - [ - -73.472128, - 45.449217 - ], - [ - -73.47242, - 45.449145 - ], - [ - -73.472583, - 45.449086 - ], - [ - -73.472758, - 45.448996 - ], - [ - -73.472948, - 45.448844 - ], - [ - -73.47303, - 45.448749 - ], - [ - -73.473377, - 45.448208 - ] - ] - }, - "id": 306, - "properties": { - "id": "b54cf255-5528-4dc5-a228-789070407001", - "data": { - "gtfs": { - "shape_id": "550_2_R" - }, - "segments": [ - { - "distanceMeters": 173, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 74, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 909, - "travelTimeSeconds": 143 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 596, - "travelTimeSeconds": 94 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 84, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 774, - "travelTimeSeconds": 121 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 81, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 348, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 69, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 57 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9542, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5221.017160545563, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.36, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 5.68, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.36 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "35f25056-4f99-4b6e-babc-10c53194c70e", - "0f232130-277e-4d7b-b106-b6821c45f0a9", - "4262a22a-885d-4877-ad99-0a8406e2adaa", - "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", - "517a8299-e807-4040-8ccd-f417dda7338c", - "da4ca96f-4db9-4287-b307-afc6221c923f", - "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "a90c4da7-455c-41d3-9961-c7a64d627572", - "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "579043e1-54f7-411f-9a36-e7ee3324290f", - "1758013c-4193-42f0-a495-c36930003f5b", - "1345672a-9148-439f-9a52-b8a216612929", - "ece1943b-159a-42fa-a0c1-16e06714e25e", - "82735dcc-3897-4e4c-87e8-45ee1dacedaa", - "3a8b9936-4595-4770-a3f4-b31253602356", - "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "003bcf5e-54a8-471f-b008-b7fa64ff94ba", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "eee98f97-7434-4d16-88a6-93a424bc6846", - "4bbdfb79-c7dc-46c0-893b-48e38ccd2db0", - "70ace55a-2f3c-410b-8740-bea06ecb9924", - "71ffac32-604a-4260-b51e-c427856a20c4", - "f872f4da-bae9-485b-a2fb-ae01787389fc", - "f045bfca-885e-4fa6-be24-3e8f1855457a", - "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", - "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", - "ca62a640-5508-4ced-94a0-1f22107c57c9", - "ca62a640-5508-4ced-94a0-1f22107c57c9", - "d5176685-5789-4135-ac00-ee677cfb093a", - "e21c6436-090b-4893-a347-5a67018da073", - "23085815-2dff-4082-9402-38931522fb99", - "9d8d74b7-fc1f-4af5-a4a4-0cee1ee7b556" - ], - "stops": [], - "line_id": "cbba6b0c-47b9-488d-b560-8357c52cbbe3", - "segments": [ - 0, - 10, - 14, - 21, - 27, - 38, - 50, - 58, - 62, - 71, - 76, - 83, - 121, - 129, - 132, - 146, - 149, - 155, - 171, - 176, - 179, - 201, - 204, - 208, - 211, - 214, - 224, - 230, - 236, - 240, - 245, - 254, - 262, - 268, - 272, - 274, - 280, - 283, - 287 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 306, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.44669, - 45.451742 - ], - [ - -73.446544, - 45.451625 - ], - [ - -73.446361, - 45.451477 - ], - [ - -73.446255, - 45.45139 - ], - [ - -73.44517, - 45.4505 - ], - [ - -73.445063, - 45.450414 - ], - [ - -73.444716, - 45.450137 - ], - [ - -73.44418, - 45.449701 - ], - [ - -73.444019, - 45.449571 - ], - [ - -73.443592, - 45.449224 - ], - [ - -73.442951, - 45.4487 - ], - [ - -73.442867, - 45.448632 - ], - [ - -73.442823, - 45.448596 - ], - [ - -73.442719, - 45.448512 - ], - [ - -73.442307, - 45.448179 - ], - [ - -73.442297, - 45.448171 - ], - [ - -73.442221, - 45.44811 - ], - [ - -73.441797, - 45.447793 - ], - [ - -73.441083, - 45.447203 - ], - [ - -73.440351, - 45.446618 - ], - [ - -73.440227, - 45.446519 - ], - [ - -73.440193, - 45.446491 - ], - [ - -73.439095, - 45.445641 - ], - [ - -73.438366, - 45.445057 - ], - [ - -73.438227, - 45.444954 - ], - [ - -73.438338, - 45.444864 - ], - [ - -73.43846, - 45.444775 - ], - [ - -73.43865, - 45.444636 - ], - [ - -73.438851, - 45.444488 - ], - [ - -73.439723, - 45.443742 - ], - [ - -73.439847, - 45.44364 - ], - [ - -73.439975, - 45.443534 - ], - [ - -73.440539, - 45.443068 - ], - [ - -73.441276, - 45.442429 - ], - [ - -73.441943, - 45.441851 - ], - [ - -73.442064, - 45.44172 - ], - [ - -73.442173, - 45.441795 - ], - [ - -73.444502, - 45.443464 - ], - [ - -73.444646, - 45.443567 - ], - [ - -73.444814, - 45.443691 - ], - [ - -73.445792, - 45.44439 - ], - [ - -73.445916, - 45.444479 - ], - [ - -73.447006, - 45.445253 - ], - [ - -73.447144, - 45.445352 - ], - [ - -73.44736, - 45.4455 - ], - [ - -73.447729, - 45.445718 - ], - [ - -73.448087, - 45.44592 - ], - [ - -73.449214, - 45.446551 - ], - [ - -73.449266, - 45.44658 - ], - [ - -73.4494, - 45.446659 - ], - [ - -73.449563, - 45.446742 - ], - [ - -73.450068, - 45.447011 - ], - [ - -73.450448, - 45.447201 - ], - [ - -73.451097, - 45.447517 - ], - [ - -73.4522, - 45.448094 - ], - [ - -73.452476, - 45.448237 - ], - [ - -73.453807, - 45.448921 - ], - [ - -73.454021, - 45.449073 - ], - [ - -73.454088, - 45.449121 - ], - [ - -73.454556, - 45.449427 - ], - [ - -73.454805, - 45.449616 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.455393, - 45.45012 - ], - [ - -73.456061, - 45.45066 - ], - [ - -73.456286, - 45.450829 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.45715, - 45.451446 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.456661, - 45.452047 - ], - [ - -73.456649, - 45.452057 - ], - [ - -73.456511, - 45.452168 - ], - [ - -73.456345, - 45.452339 - ], - [ - -73.456105, - 45.452573 - ], - [ - -73.455893, - 45.452816 - ], - [ - -73.455815, - 45.452917 - ], - [ - -73.45573, - 45.453027 - ], - [ - -73.455536, - 45.453301 - ], - [ - -73.455293, - 45.453751 - ], - [ - -73.455167, - 45.454075 - ], - [ - -73.455022, - 45.454574 - ], - [ - -73.455003, - 45.454649 - ], - [ - -73.454977, - 45.454754 - ], - [ - -73.454933, - 45.455281 - ], - [ - -73.454963, - 45.455744 - ], - [ - -73.455037, - 45.456136 - ], - [ - -73.455173, - 45.456599 - ], - [ - -73.455283, - 45.456847 - ], - [ - -73.455363, - 45.457004 - ], - [ - -73.455596, - 45.457405 - ], - [ - -73.455646, - 45.457494 - ], - [ - -73.456006, - 45.458134 - ], - [ - -73.456233, - 45.458539 - ], - [ - -73.456258, - 45.458583 - ], - [ - -73.456281, - 45.458624 - ], - [ - -73.457238, - 45.460338 - ], - [ - -73.457292, - 45.460433 - ], - [ - -73.45742, - 45.460667 - ], - [ - -73.457486, - 45.46082 - ], - [ - -73.457532, - 45.460955 - ], - [ - -73.457565, - 45.461072 - ], - [ - -73.457606, - 45.46123 - ], - [ - -73.457631, - 45.461396 - ], - [ - -73.457639, - 45.461477 - ], - [ - -73.457625, - 45.461707 - ], - [ - -73.457614, - 45.461848 - ], - [ - -73.457629, - 45.461941 - ], - [ - -73.45763, - 45.461949 - ], - [ - -73.45769, - 45.462033 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.458519, - 45.462177 - ], - [ - -73.458611, - 45.462189 - ], - [ - -73.459742, - 45.462333 - ], - [ - -73.460596, - 45.46227 - ], - [ - -73.461004, - 45.462241 - ], - [ - -73.461012, - 45.46224 - ], - [ - -73.461274, - 45.462221 - ], - [ - -73.46213, - 45.462145 - ], - [ - -73.462729, - 45.462095 - ], - [ - -73.462839, - 45.462082 - ], - [ - -73.462926, - 45.462051 - ], - [ - -73.463004, - 45.46201 - ], - [ - -73.463058, - 45.461956 - ], - [ - -73.463101, - 45.461866 - ], - [ - -73.463097, - 45.461763 - ], - [ - -73.463035, - 45.46138 - ], - [ - -73.462937, - 45.460771 - ], - [ - -73.462922, - 45.460678 - ], - [ - -73.462766, - 45.459546 - ], - [ - -73.462745, - 45.459391 - ], - [ - -73.462914, - 45.459383 - ], - [ - -73.463714, - 45.459343 - ], - [ - -73.464994, - 45.459278 - ], - [ - -73.465215, - 45.461562 - ], - [ - -73.465247, - 45.461893 - ], - [ - -73.465328, - 45.462497 - ], - [ - -73.465435, - 45.463211 - ], - [ - -73.465484, - 45.463543 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465583, - 45.46821 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.463779, - 45.468251 - ], - [ - -73.463257, - 45.46862 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463016, - 45.468741 - ], - [ - -73.462763, - 45.468943 - ], - [ - -73.462689, - 45.46902 - ], - [ - -73.462689, - 45.469021 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.460798, - 45.470336 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.458439, - 45.471947 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.456063, - 45.473572 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.453679, - 45.475205 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.451331, - 45.476812 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.449277, - 45.478218 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448868, - 45.478494 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.449135, - 45.47883 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.450119, - 45.479471 - ], - [ - -73.450869, - 45.479962 - ], - [ - -73.451, - 45.480048 - ], - [ - -73.451438, - 45.480342 - ], - [ - -73.451689, - 45.480511 - ], - [ - -73.452165, - 45.480813 - ], - [ - -73.452542, - 45.481076 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452379, - 45.481446 - ], - [ - -73.452062, - 45.481636 - ], - [ - -73.45135, - 45.482063 - ], - [ - -73.451252, - 45.482121 - ], - [ - -73.450098, - 45.482807 - ], - [ - -73.449882, - 45.482936 - ], - [ - -73.449245, - 45.483336 - ], - [ - -73.449101, - 45.483471 - ], - [ - -73.448914, - 45.483713 - ], - [ - -73.448817, - 45.483898 - ], - [ - -73.448629, - 45.484109 - ], - [ - -73.44844, - 45.484271 - ], - [ - -73.448215, - 45.484488 - ], - [ - -73.44775, - 45.484937 - ], - [ - -73.447415, - 45.485256 - ], - [ - -73.447237, - 45.485427 - ], - [ - -73.447005, - 45.485643 - ], - [ - -73.44678, - 45.485857 - ], - [ - -73.446708, - 45.485926 - ], - [ - -73.445795, - 45.486794 - ], - [ - -73.445654, - 45.486915 - ], - [ - -73.445524, - 45.487041 - ], - [ - -73.445408, - 45.487167 - ], - [ - -73.445359, - 45.487231 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445189, - 45.487464 - ], - [ - -73.445131, - 45.487554 - ], - [ - -73.444984, - 45.487909 - ], - [ - -73.444937, - 45.488067 - ], - [ - -73.444908, - 45.488233 - ], - [ - -73.444906, - 45.488377 - ], - [ - -73.444915, - 45.488548 - ], - [ - -73.444937, - 45.488733 - ], - [ - -73.444965, - 45.48889 - ], - [ - -73.444941, - 45.489138 - ], - [ - -73.444921, - 45.489264 - ], - [ - -73.444905, - 45.489336 - ], - [ - -73.444972, - 45.489345 - ], - [ - -73.44499, - 45.489349 - ], - [ - -73.445046, - 45.489363 - ], - [ - -73.445235, - 45.489426 - ], - [ - -73.445377, - 45.489484 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.44568, - 45.490474 - ], - [ - -73.445612, - 45.490524 - ], - [ - -73.445975, - 45.490893 - ], - [ - -73.446005, - 45.490924 - ], - [ - -73.446035, - 45.490933 - ], - [ - -73.446066, - 45.490933 - ], - [ - -73.446099, - 45.490929 - ], - [ - -73.446126, - 45.490924 - ], - [ - -73.446161, - 45.490908 - ] - ] - }, - "id": 307, - "properties": { - "id": "da99d5a5-b9cc-4254-a78f-4a59693d5150", - "data": { - "gtfs": { - "shape_id": "551_1_A" - }, - "segments": [ - { - "distanceMeters": 300, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 469, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 86, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 91, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 83, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 93, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 1245, - "travelTimeSeconds": 194 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 509, - "travelTimeSeconds": 80 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10000, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4365.42770025513, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.41, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 5.75, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.41 - }, - "mode": "bus", - "name": "École Centennial", - "color": "#A32638", - "nodes": [ - "23bba49e-4054-4c02-89b3-a6043c3d4d67", - "bffdb17e-eb32-4d5e-9070-23ef35e6d825", - "52770c2f-36d3-4ae3-81c7-657d2436c44e", - "bc708643-7ab2-41eb-a233-30eac22a0a3d", - "9a91df5e-7976-4b04-a1ed-26fb34f4f58f", - "936850f5-3268-43bc-97bf-4daf0894fdc7", - "00c8e0cb-91d0-48ff-97f2-5154a17a68bc", - "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", - "d306b992-8d43-4ba8-8460-68d87b486222", - "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", - "b5853393-4072-4255-b507-e9c4b6659c5b", - "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "59b4f87c-067e-4dc3-856a-07fb245d4fe3", - "c77e59d9-5075-4e39-a183-6bacc1afd03e", - "f5f0a75d-b9e9-4575-845b-09748935c6e0", - "d271cca7-cd7a-4e22-8728-7a598b88fe32", - "3b708726-0db1-43de-b014-b11ddc9fc24a", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "5d862a7d-92b0-4def-8199-258993ce3523", - "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", - "d0325326-9fbf-42e2-aefa-29fa09853c10", - "d13720b6-fb91-4a90-a816-addaef17cf17", - "80775ca9-8434-48d9-a65d-5f3eace6e2d8", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "907f8610-452b-440d-849b-c803b07dedc1", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "72a48bdf-3a35-4f3b-8d05-e465faf044cf", - "70af9f63-28e4-474e-896b-5462b7252980", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "d9b94443-0b59-40db-aecb-0acb5ea7976c", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "33d857b4-2e13-426f-b28c-1e46e90fee90" - ], - "stops": [], - "line_id": "0ff3bef3-1755-4d5a-90a9-5ecdbe8e28fe", - "segments": [ - 0, - 7, - 10, - 19, - 27, - 30, - 33, - 37, - 42, - 47, - 57, - 60, - 66, - 69, - 74, - 80, - 89, - 91, - 94, - 105, - 109, - 113, - 125, - 127, - 130, - 163, - 179, - 182, - 184, - 186, - 188, - 190, - 192, - 199, - 204, - 209, - 210, - 218, - 223, - 229 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 307, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446161, - 45.490908 - ], - [ - -73.446195, - 45.490893 - ], - [ - -73.446211, - 45.490875 - ], - [ - -73.446218, - 45.490852 - ], - [ - -73.446218, - 45.49083 - ], - [ - -73.4462, - 45.490794 - ], - [ - -73.445806, - 45.490501 - ], - [ - -73.44573, - 45.490447 - ], - [ - -73.445884, - 45.490344 - ], - [ - -73.446198, - 45.490128 - ], - [ - -73.446132, - 45.490065 - ], - [ - -73.446019, - 45.489962 - ], - [ - -73.445772, - 45.489745 - ], - [ - -73.445534, - 45.489552 - ], - [ - -73.445508, - 45.489489 - ], - [ - -73.4453, - 45.489165 - ], - [ - -73.445238, - 45.489052 - ], - [ - -73.445212, - 45.488985 - ], - [ - -73.445181, - 45.488904 - ], - [ - -73.445074, - 45.488728 - ], - [ - -73.445053, - 45.488544 - ], - [ - -73.445044, - 45.488377 - ], - [ - -73.445046, - 45.488242 - ], - [ - -73.445073, - 45.488085 - ], - [ - -73.445118, - 45.487932 - ], - [ - -73.445182, - 45.487779 - ], - [ - -73.445261, - 45.48759 - ], - [ - -73.445319, - 45.487496 - ], - [ - -73.445386, - 45.487388 - ], - [ - -73.445526, - 45.487217 - ], - [ - -73.445638, - 45.487095 - ], - [ - -73.445643, - 45.487091 - ], - [ - -73.445764, - 45.486978 - ], - [ - -73.445905, - 45.486857 - ], - [ - -73.446511, - 45.486279 - ], - [ - -73.446709, - 45.486091 - ], - [ - -73.44682, - 45.485985 - ], - [ - -73.447123, - 45.485706 - ], - [ - -73.447356, - 45.48549 - ], - [ - -73.447536, - 45.485315 - ], - [ - -73.447867, - 45.484995 - ], - [ - -73.448283, - 45.484594 - ], - [ - -73.448552, - 45.484334 - ], - [ - -73.448747, - 45.484168 - ], - [ - -73.448891, - 45.484006 - ], - [ - -73.448947, - 45.483943 - ], - [ - -73.449046, - 45.483754 - ], - [ - -73.449223, - 45.483529 - ], - [ - -73.449352, - 45.483408 - ], - [ - -73.449869, - 45.483085 - ], - [ - -73.449978, - 45.483017 - ], - [ - -73.451449, - 45.482131 - ], - [ - -73.451773, - 45.481935 - ], - [ - -73.45215, - 45.481708 - ], - [ - -73.452851, - 45.48129 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452513, - 45.480854 - ], - [ - -73.452296, - 45.480719 - ], - [ - -73.452295, - 45.480718 - ], - [ - -73.451837, - 45.480421 - ], - [ - -73.451565, - 45.480238 - ], - [ - -73.451001, - 45.479858 - ], - [ - -73.450929, - 45.479809 - ], - [ - -73.450257, - 45.479368 - ], - [ - -73.449699, - 45.479004 - ], - [ - -73.449587, - 45.478931 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.44904, - 45.47838 - ], - [ - -73.449384, - 45.478145 - ], - [ - -73.451118, - 45.476959 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.453438, - 45.47537 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.455858, - 45.473713 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.458234, - 45.472087 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.46052, - 45.470526 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.462617, - 45.469087 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463315, - 45.468669 - ], - [ - -73.463605, - 45.468494 - ], - [ - -73.463821, - 45.468359 - ], - [ - -73.464061, - 45.468264 - ], - [ - -73.464182, - 45.468237 - ], - [ - -73.464284, - 45.468228 - ], - [ - -73.464393, - 45.468219 - ], - [ - -73.464524, - 45.468224 - ], - [ - -73.464627, - 45.468233 - ], - [ - -73.465228, - 45.468287 - ], - [ - -73.465232, - 45.468288 - ], - [ - -73.465371, - 45.468301 - ], - [ - -73.465793, - 45.468341 - ], - [ - -73.466337, - 45.468387 - ], - [ - -73.466548, - 45.468382 - ], - [ - -73.466775, - 45.468351 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.46758, - 45.467757 - ], - [ - -73.467357, - 45.467296 - ], - [ - -73.466914, - 45.466403 - ], - [ - -73.466752, - 45.466083 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466352, - 45.465288 - ], - [ - -73.466238, - 45.465062 - ], - [ - -73.466142, - 45.464853 - ], - [ - -73.466048, - 45.464638 - ], - [ - -73.46599, - 45.464498 - ], - [ - -73.465967, - 45.464441 - ], - [ - -73.465777, - 45.463945 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465663, - 45.463449 - ], - [ - -73.465646, - 45.463238 - ], - [ - -73.465636, - 45.463073 - ], - [ - -73.465461, - 45.461275 - ], - [ - -73.465447, - 45.461135 - ], - [ - -73.465251, - 45.459263 - ], - [ - -73.464994, - 45.459278 - ], - [ - -73.464712, - 45.459292 - ], - [ - -73.463601, - 45.459348 - ], - [ - -73.462745, - 45.459391 - ], - [ - -73.462912, - 45.460608 - ], - [ - -73.462922, - 45.460678 - ], - [ - -73.463035, - 45.46138 - ], - [ - -73.463097, - 45.461763 - ], - [ - -73.463101, - 45.461866 - ], - [ - -73.463058, - 45.461956 - ], - [ - -73.463004, - 45.46201 - ], - [ - -73.462926, - 45.462051 - ], - [ - -73.462839, - 45.462082 - ], - [ - -73.462729, - 45.462095 - ], - [ - -73.46213, - 45.462145 - ], - [ - -73.461312, - 45.462218 - ], - [ - -73.461274, - 45.462221 - ], - [ - -73.460596, - 45.46227 - ], - [ - -73.460027, - 45.462312 - ], - [ - -73.459742, - 45.462333 - ], - [ - -73.458611, - 45.462189 - ], - [ - -73.457891, - 45.462101 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.45769, - 45.462033 - ], - [ - -73.457776, - 45.461966 - ], - [ - -73.45778, - 45.461865 - ], - [ - -73.457805, - 45.461716 - ], - [ - -73.457817, - 45.461563 - ], - [ - -73.45782, - 45.461477 - ], - [ - -73.457812, - 45.461383 - ], - [ - -73.457786, - 45.461212 - ], - [ - -73.457777, - 45.461178 - ], - [ - -73.457743, - 45.46105 - ], - [ - -73.457714, - 45.460928 - ], - [ - -73.457665, - 45.460784 - ], - [ - -73.457595, - 45.460627 - ], - [ - -73.457462, - 45.460379 - ], - [ - -73.457342, - 45.460166 - ], - [ - -73.456502, - 45.458678 - ], - [ - -73.456446, - 45.458579 - ], - [ - -73.455825, - 45.457465 - ], - [ - -73.455767, - 45.45736 - ], - [ - -73.455551, - 45.456955 - ], - [ - -73.455474, - 45.456802 - ], - [ - -73.455367, - 45.456563 - ], - [ - -73.455234, - 45.456113 - ], - [ - -73.455192, - 45.45589 - ], - [ - -73.455162, - 45.455731 - ], - [ - -73.455134, - 45.455281 - ], - [ - -73.455165, - 45.454911 - ], - [ - -73.455177, - 45.454772 - ], - [ - -73.455206, - 45.454588 - ], - [ - -73.455346, - 45.454111 - ], - [ - -73.455479, - 45.453796 - ], - [ - -73.455501, - 45.453755 - ], - [ - -73.455716, - 45.453355 - ], - [ - -73.455867, - 45.453129 - ], - [ - -73.455902, - 45.453077 - ], - [ - -73.456055, - 45.452883 - ], - [ - -73.45626, - 45.452645 - ], - [ - -73.456494, - 45.452415 - ], - [ - -73.45667, - 45.452253 - ], - [ - -73.45729, - 45.451716 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457438, - 45.451421 - ], - [ - -73.457159, - 45.451237 - ], - [ - -73.457131, - 45.451219 - ], - [ - -73.456851, - 45.451021 - ], - [ - -73.45659, - 45.450823 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456003, - 45.45033 - ], - [ - -73.455826, - 45.450181 - ], - [ - -73.455605, - 45.449994 - ], - [ - -73.455056, - 45.44954 - ], - [ - -73.454737, - 45.449301 - ], - [ - -73.454454, - 45.449115 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.453273, - 45.448481 - ], - [ - -73.451557, - 45.447603 - ], - [ - -73.45107, - 45.447354 - ], - [ - -73.45026, - 45.446936 - ], - [ - -73.449665, - 45.446632 - ], - [ - -73.449652, - 45.446626 - ], - [ - -73.449554, - 45.446569 - ], - [ - -73.449363, - 45.446456 - ], - [ - -73.447677, - 45.44551 - ], - [ - -73.447484, - 45.445387 - ], - [ - -73.447413, - 45.445343 - ], - [ - -73.447287, - 45.445263 - ], - [ - -73.447125, - 45.445146 - ], - [ - -73.446612, - 45.444764 - ], - [ - -73.445568, - 45.444021 - ], - [ - -73.444908, - 45.44353 - ], - [ - -73.444834, - 45.443475 - ], - [ - -73.444807, - 45.443457 - ], - [ - -73.442882, - 45.442105 - ], - [ - -73.442348, - 45.44173 - ], - [ - -73.442337, - 45.441722 - ], - [ - -73.442193, - 45.441589 - ], - [ - -73.442073, - 45.441479 - ], - [ - -73.441948, - 45.441595 - ], - [ - -73.441846, - 45.441707 - ], - [ - -73.441646, - 45.44189 - ], - [ - -73.44159, - 45.441941 - ], - [ - -73.441375, - 45.442137 - ], - [ - -73.441332, - 45.442174 - ], - [ - -73.440863, - 45.442588 - ], - [ - -73.440303, - 45.443042 - ], - [ - -73.439999, - 45.443328 - ], - [ - -73.439837, - 45.443457 - ], - [ - -73.43959, - 45.443654 - ], - [ - -73.439296, - 45.443912 - ], - [ - -73.438998, - 45.444155 - ], - [ - -73.438488, - 45.444558 - ], - [ - -73.438222, - 45.444768 - ], - [ - -73.438088, - 45.444859 - ], - [ - -73.437964, - 45.444933 - ], - [ - -73.438029, - 45.444985 - ], - [ - -73.438094, - 45.445037 - ], - [ - -73.438233, - 45.445143 - ], - [ - -73.438783, - 45.445547 - ], - [ - -73.439565, - 45.446129 - ], - [ - -73.439751, - 45.446278 - ], - [ - -73.439937, - 45.446427 - ], - [ - -73.440135, - 45.446587 - ], - [ - -73.440935, - 45.447233 - ], - [ - -73.441223, - 45.447465 - ], - [ - -73.4421, - 45.448181 - ], - [ - -73.442609, - 45.448595 - ], - [ - -73.442709, - 45.448676 - ], - [ - -73.443187, - 45.449064 - ], - [ - -73.443314, - 45.449167 - ], - [ - -73.443912, - 45.449652 - ], - [ - -73.444945, - 45.45049 - ], - [ - -73.445035, - 45.450563 - ], - [ - -73.446306, - 45.451591 - ] - ] - }, - "id": 308, - "properties": { - "id": "c09badd5-a1a8-42ac-a084-b71d94ddaa6e", - "data": { - "gtfs": { - "shape_id": "551_2_R" - }, - "segments": [ - { - "distanceMeters": 492, - "travelTimeSeconds": 93 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 1009, - "travelTimeSeconds": 192 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 465, - "travelTimeSeconds": 89 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 642, - "travelTimeSeconds": 123 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 71 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 192, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10077, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4371.191401531776, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.25, - "travelTimeWithoutDwellTimesSeconds": 1920, - "operatingTimeWithLayoverTimeSeconds": 2112, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1920, - "operatingSpeedWithLayoverMetersPerSecond": 4.77, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.25 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33d857b4-2e13-426f-b28c-1e46e90fee90", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "5f21960f-8919-4407-8a49-57c39947c4fe", - "cc43f372-04e8-4c4c-b711-2e4159e3855d", - "9b7055a8-adca-44c6-9935-6026756d4460", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "907f8610-452b-440d-849b-c803b07dedc1", - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "74887516-47d5-4269-9513-84672d18e287", - "d13720b6-fb91-4a90-a816-addaef17cf17", - "d0325326-9fbf-42e2-aefa-29fa09853c10", - "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "ac84633b-6f3b-458c-8f4e-099cc310c05e", - "d271cca7-cd7a-4e22-8728-7a598b88fe32", - "f5f0a75d-b9e9-4575-845b-09748935c6e0", - "c77e59d9-5075-4e39-a183-6bacc1afd03e", - "59b4f87c-067e-4dc3-856a-07fb245d4fe3", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "2c6638eb-437e-4a41-bb5d-d6093797361d", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", - "d306b992-8d43-4ba8-8460-68d87b486222", - "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", - "88486643-e9da-4936-905d-86d1e3882217", - "13dab893-0384-46f9-a2e5-e504a47de39a", - "9bb9e4f0-3571-429e-bd1b-989f4196b247", - "708749bc-6754-4d22-849f-c5632030ae08", - "65ac05d1-7282-4065-a1b1-3364a3426c7e" - ], - "stops": [], - "line_id": "0ff3bef3-1755-4d5a-90a9-5ecdbe8e28fe", - "segments": [ - 0, - 31, - 35, - 41, - 49, - 52, - 57, - 62, - 65, - 69, - 70, - 72, - 74, - 76, - 78, - 81, - 94, - 120, - 124, - 126, - 137, - 143, - 153, - 160, - 162, - 171, - 178, - 184, - 194, - 198, - 204, - 210, - 215, - 219, - 226, - 245, - 253 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 308, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.45272, - 45.547512 - ], - [ - -73.454103, - 45.548563 - ], - [ - -73.454269, - 45.548689 - ], - [ - -73.454302, - 45.548714 - ], - [ - -73.456164, - 45.550129 - ], - [ - -73.456272, - 45.55021 - ], - [ - -73.458174, - 45.551651 - ], - [ - -73.458453, - 45.551841 - ], - [ - -73.458867, - 45.552123 - ], - [ - -73.459495, - 45.552583 - ], - [ - -73.459717, - 45.552763 - ], - [ - -73.45984, - 45.552911 - ], - [ - -73.459981, - 45.553149 - ], - [ - -73.460074, - 45.553307 - ], - [ - -73.460476, - 45.553964 - ], - [ - -73.460843, - 45.554611 - ], - [ - -73.460904, - 45.55472 - ], - [ - -73.461041, - 45.554923 - ], - [ - -73.461091, - 45.55497 - ], - [ - -73.461155, - 45.555031 - ], - [ - -73.461353, - 45.555197 - ], - [ - -73.461529, - 45.555341 - ], - [ - -73.461654, - 45.555431 - ], - [ - -73.461661, - 45.555436 - ], - [ - -73.461719, - 45.555453 - ], - [ - -73.461827, - 45.555485 - ], - [ - -73.461925, - 45.555463 - ], - [ - -73.461985, - 45.555435 - ], - [ - -73.461991, - 45.555431 - ], - [ - -73.462207, - 45.555292 - ], - [ - -73.462576, - 45.555058 - ], - [ - -73.46269, - 45.554985 - ], - [ - -73.464004, - 45.554145 - ], - [ - -73.464059, - 45.554129 - ], - [ - -73.464203, - 45.554087 - ], - [ - -73.464314, - 45.554019 - ], - [ - -73.464675, - 45.55379 - ], - [ - -73.464758, - 45.553732 - ], - [ - -73.466649, - 45.555169 - ], - [ - -73.467394, - 45.555735 - ], - [ - -73.468707, - 45.556734 - ], - [ - -73.468863, - 45.556851 - ], - [ - -73.468884, - 45.556867 - ], - [ - -73.4689, - 45.556879 - ], - [ - -73.469456, - 45.557296 - ], - [ - -73.469905, - 45.557643 - ], - [ - -73.470694, - 45.558227 - ], - [ - -73.470793, - 45.5583 - ], - [ - -73.470906, - 45.55839 - ], - [ - -73.471028, - 45.558322 - ], - [ - -73.471824, - 45.557823 - ], - [ - -73.472324, - 45.557504 - ], - [ - -73.472479, - 45.557405 - ], - [ - -73.472629, - 45.557279 - ], - [ - -73.472632, - 45.557275 - ], - [ - -73.473539, - 45.5567 - ], - [ - -73.473662, - 45.556622 - ], - [ - -73.473763, - 45.556559 - ], - [ - -73.475303, - 45.555547 - ], - [ - -73.475452, - 45.555449 - ], - [ - -73.475549, - 45.55539 - ], - [ - -73.47589, - 45.555179 - ], - [ - -73.47658, - 45.554819 - ], - [ - -73.47721, - 45.554495 - ], - [ - -73.478403, - 45.55387 - ], - [ - -73.479586, - 45.553272 - ], - [ - -73.480219, - 45.552936 - ], - [ - -73.480374, - 45.552853 - ], - [ - -73.480484, - 45.552799 - ], - [ - -73.482032, - 45.552008 - ], - [ - -73.482067, - 45.551991 - ], - [ - -73.482159, - 45.551945 - ], - [ - -73.483045, - 45.55149 - ], - [ - -73.483567, - 45.551223 - ], - [ - -73.483956, - 45.551023 - ], - [ - -73.484276, - 45.551364 - ], - [ - -73.484498, - 45.551601 - ], - [ - -73.48453, - 45.551635 - ], - [ - -73.484618, - 45.551734 - ], - [ - -73.484693, - 45.55186 - ], - [ - -73.484759, - 45.552008 - ], - [ - -73.484816, - 45.552215 - ], - [ - -73.484834, - 45.552346 - ], - [ - -73.484812, - 45.552548 - ], - [ - -73.484776, - 45.552733 - ], - [ - -73.484666, - 45.553158 - ], - [ - -73.48441, - 45.55415 - ], - [ - -73.484362, - 45.554361 - ], - [ - -73.484318, - 45.554555 - ], - [ - -73.4843, - 45.554726 - ], - [ - -73.484291, - 45.554865 - ], - [ - -73.484305, - 45.555234 - ], - [ - -73.484308, - 45.555293 - ], - [ - -73.484331, - 45.555639 - ], - [ - -73.48434, - 45.555782 - ], - [ - -73.484366, - 45.556165 - ], - [ - -73.484397, - 45.556377 - ], - [ - -73.48445, - 45.556532 - ], - [ - -73.484458, - 45.556557 - ], - [ - -73.484529, - 45.556737 - ], - [ - -73.484586, - 45.556858 - ], - [ - -73.484751, - 45.557108 - ], - [ - -73.484811, - 45.5572 - ], - [ - -73.484876, - 45.557286 - ], - [ - -73.48555, - 45.5581 - ], - [ - -73.485664, - 45.558262 - ], - [ - -73.485726, - 45.558424 - ], - [ - -73.485748, - 45.558546 - ], - [ - -73.485765, - 45.558649 - ], - [ - -73.48573, - 45.558798 - ], - [ - -73.48566, - 45.558951 - ], - [ - -73.485563, - 45.559104 - ], - [ - -73.485413, - 45.559252 - ], - [ - -73.485078, - 45.559522 - ], - [ - -73.484971, - 45.559607 - ], - [ - -73.48489, - 45.559675 - ], - [ - -73.484312, - 45.560233 - ], - [ - -73.484078, - 45.560521 - ], - [ - -73.484025, - 45.56059 - ], - [ - -73.483849, - 45.560818 - ], - [ - -73.483672, - 45.561082 - ], - [ - -73.483637, - 45.561133 - ], - [ - -73.483578, - 45.561221 - ], - [ - -73.483026, - 45.562041 - ], - [ - -73.482901, - 45.562217 - ], - [ - -73.482854, - 45.562284 - ], - [ - -73.482487, - 45.562715 - ], - [ - -73.482425, - 45.562788 - ], - [ - -73.482409, - 45.562806 - ], - [ - -73.482342, - 45.562878 - ], - [ - -73.482066, - 45.563125 - ], - [ - -73.48196, - 45.56322 - ], - [ - -73.481758, - 45.563341 - ], - [ - -73.481506, - 45.563472 - ], - [ - -73.481447, - 45.563492 - ], - [ - -73.481361, - 45.563521 - ], - [ - -73.481206, - 45.563571 - ], - [ - -73.480969, - 45.563624 - ], - [ - -73.480428, - 45.563746 - ], - [ - -73.480284, - 45.563777 - ], - [ - -73.480145, - 45.563809 - ], - [ - -73.479899, - 45.563872 - ], - [ - -73.47976, - 45.563926 - ], - [ - -73.479595, - 45.564025 - ], - [ - -73.47921, - 45.564275 - ], - [ - -73.479021, - 45.564398 - ], - [ - -73.47891, - 45.564479 - ], - [ - -73.480326, - 45.56555 - ], - [ - -73.4804, - 45.565606 - ], - [ - -73.480501, - 45.565683 - ], - [ - -73.482161, - 45.566943 - ], - [ - -73.482502, - 45.567202 - ], - [ - -73.482644, - 45.56731 - ], - [ - -73.482793, - 45.567251 - ], - [ - -73.482867, - 45.567188 - ], - [ - -73.483104, - 45.566981 - ], - [ - -73.483379, - 45.566757 - ], - [ - -73.484121, - 45.566154 - ], - [ - -73.484201, - 45.566091 - ], - [ - -73.484402, - 45.565933 - ], - [ - -73.4851, - 45.565418 - ], - [ - -73.485255, - 45.565303 - ], - [ - -73.485312, - 45.565245 - ], - [ - -73.485391, - 45.56515 - ], - [ - -73.485466, - 45.56506 - ], - [ - -73.485472, - 45.565049 - ], - [ - -73.485509, - 45.564975 - ], - [ - -73.485396, - 45.564912 - ], - [ - -73.485158, - 45.564813 - ], - [ - -73.484999, - 45.564714 - ], - [ - -73.484885, - 45.564619 - ], - [ - -73.484801, - 45.564538 - ], - [ - -73.484709, - 45.564453 - ], - [ - -73.484666, - 45.564381 - ], - [ - -73.484634, - 45.564327 - ], - [ - -73.484568, - 45.564188 - ], - [ - -73.484524, - 45.564039 - ], - [ - -73.484506, - 45.563909 - ], - [ - -73.48451, - 45.563769 - ], - [ - -73.484511, - 45.563679 - ], - [ - -73.484524, - 45.563621 - ], - [ - -73.484542, - 45.563553 - ], - [ - -73.484577, - 45.563486 - ], - [ - -73.484621, - 45.563405 - ], - [ - -73.484656, - 45.563337 - ], - [ - -73.484718, - 45.563256 - ], - [ - -73.484827, - 45.563148 - ], - [ - -73.485031, - 45.562928 - ], - [ - -73.485175, - 45.562787 - ], - [ - -73.485312, - 45.562653 - ], - [ - -73.485586, - 45.562377 - ], - [ - -73.485597, - 45.562366 - ], - [ - -73.48565, - 45.562312 - ], - [ - -73.486181, - 45.561776 - ], - [ - -73.48648, - 45.56147 - ], - [ - -73.486974, - 45.560989 - ], - [ - -73.487379, - 45.560714 - ], - [ - -73.487798, - 45.560517 - ], - [ - -73.488514, - 45.560143 - ], - [ - -73.489129, - 45.560629 - ], - [ - -73.489224, - 45.560705 - ], - [ - -73.489273, - 45.560743 - ], - [ - -73.491502, - 45.562506 - ], - [ - -73.491509, - 45.562511 - ], - [ - -73.491545, - 45.562543 - ], - [ - -73.491585, - 45.562559 - ], - [ - -73.4917, - 45.562606 - ], - [ - -73.491908, - 45.562298 - ], - [ - -73.49207, - 45.56203 - ], - [ - -73.492185, - 45.561871 - ], - [ - -73.492369, - 45.561588 - ], - [ - -73.49238, - 45.561571 - ], - [ - -73.492391, - 45.561555 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.494705, - 45.558381 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498677, - 45.553944 - ], - [ - -73.498726, - 45.553872 - ], - [ - -73.498813, - 45.553714 - ], - [ - -73.498895, - 45.553562 - ], - [ - -73.49895, - 45.553404 - ], - [ - -73.498964, - 45.55335 - ], - [ - -73.498988, - 45.55326 - ], - [ - -73.499026, - 45.553035 - ], - [ - -73.499051, - 45.55281 - ], - [ - -73.49911, - 45.552261 - ], - [ - -73.499127, - 45.552095 - ], - [ - -73.498947, - 45.552086 - ], - [ - -73.498793, - 45.55209 - ], - [ - -73.498694, - 45.552086 - ], - [ - -73.498592, - 45.552072 - ], - [ - -73.498413, - 45.552 - ], - [ - -73.497813, - 45.55154 - ], - [ - -73.497569, - 45.551352 - ], - [ - -73.497316, - 45.551152 - ], - [ - -73.496964, - 45.550873 - ], - [ - -73.496827, - 45.550682 - ], - [ - -73.496793, - 45.550619 - ], - [ - -73.496772, - 45.550538 - ], - [ - -73.496789, - 45.550453 - ], - [ - -73.496817, - 45.550376 - ], - [ - -73.496833, - 45.550372 - ], - [ - -73.497231, - 45.550102 - ], - [ - -73.497398, - 45.55003 - ], - [ - -73.497527, - 45.550007 - ], - [ - -73.497663, - 45.550007 - ], - [ - -73.497789, - 45.550025 - ], - [ - -73.497936, - 45.550061 - ], - [ - -73.498283, - 45.550169 - ], - [ - -73.49868, - 45.550277 - ], - [ - -73.499072, - 45.550349 - ], - [ - -73.499514, - 45.550349 - ], - [ - -73.499763, - 45.550363 - ], - [ - -73.501515, - 45.550448 - ], - [ - -73.502446, - 45.550493 - ], - [ - -73.502797, - 45.550502 - ], - [ - -73.502913, - 45.550498 - ], - [ - -73.503017, - 45.550484 - ], - [ - -73.503194, - 45.550453 - ], - [ - -73.503355, - 45.550399 - ], - [ - -73.503504, - 45.550327 - ], - [ - -73.503636, - 45.550237 - ], - [ - -73.503751, - 45.550133 - ], - [ - -73.503955, - 45.549904 - ], - [ - -73.504046, - 45.549787 - ], - [ - -73.504119, - 45.549647 - ], - [ - -73.50416, - 45.549508 - ], - [ - -73.504212, - 45.548909 - ], - [ - -73.504249, - 45.548755 - ], - [ - -73.504289, - 45.548585 - ], - [ - -73.504342, - 45.548423 - ], - [ - -73.504477, - 45.548095 - ], - [ - -73.504558, - 45.547933 - ], - [ - -73.504654, - 45.547771 - ], - [ - -73.504887, - 45.547461 - ], - [ - -73.505281, - 45.546997 - ], - [ - -73.507417, - 45.544581 - ], - [ - -73.508417, - 45.543519 - ], - [ - -73.509201, - 45.542727 - ], - [ - -73.509408, - 45.542534 - ], - [ - -73.510272, - 45.541764 - ], - [ - -73.510954, - 45.541206 - ], - [ - -73.511668, - 45.540662 - ], - [ - -73.515003, - 45.538277 - ], - [ - -73.515462, - 45.537917 - ], - [ - -73.515662, - 45.537746 - ], - [ - -73.515665, - 45.537741 - ], - [ - -73.516099, - 45.537345 - ], - [ - -73.516298, - 45.537147 - ], - [ - -73.516676, - 45.536747 - ], - [ - -73.517032, - 45.536337 - ], - [ - -73.521733, - 45.530807 - ], - [ - -73.521744, - 45.530794 - ], - [ - -73.523244, - 45.529034 - ], - [ - -73.523582, - 45.528589 - ], - [ - -73.523719, - 45.528386 - ], - [ - -73.523853, - 45.528161 - ], - [ - -73.523956, - 45.527977 - ], - [ - -73.524288, - 45.527297 - ], - [ - -73.524449, - 45.526847 - ], - [ - -73.524522, - 45.526604 - ], - [ - -73.524672, - 45.525934 - ], - [ - -73.524726, - 45.525403 - ], - [ - -73.524737, - 45.524827 - ], - [ - -73.524676, - 45.524211 - ], - [ - -73.524219, - 45.521088 - ], - [ - -73.524142, - 45.520647 - ], - [ - -73.523985, - 45.519869 - ], - [ - -73.523744, - 45.518866 - ], - [ - -73.5233, - 45.517354 - ], - [ - -73.520678, - 45.508901 - ], - [ - -73.520516, - 45.508028 - ], - [ - -73.520417, - 45.507551 - ], - [ - -73.520275, - 45.506971 - ], - [ - -73.520185, - 45.506668 - ], - [ - -73.520164, - 45.506597 - ], - [ - -73.519997, - 45.506161 - ], - [ - -73.5198, - 45.50576 - ], - [ - -73.519597, - 45.505405 - ], - [ - -73.519461, - 45.505185 - ], - [ - -73.519306, - 45.504964 - ], - [ - -73.518804, - 45.505054 - ], - [ - -73.518724, - 45.505059 - ], - [ - -73.518688, - 45.505063 - ], - [ - -73.518612, - 45.505059 - ], - [ - -73.518565, - 45.505054 - ], - [ - -73.518448, - 45.505027 - ], - [ - -73.518275, - 45.504978 - ], - [ - -73.517927, - 45.504848 - ], - [ - -73.517624, - 45.504735 - ], - [ - -73.517545, - 45.504708 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517141, - 45.504537 - ], - [ - -73.515845, - 45.50406 - ], - [ - -73.514808, - 45.503669 - ], - [ - -73.513604, - 45.503215 - ], - [ - -73.513366, - 45.50312 - ], - [ - -73.513316, - 45.503103 - ], - [ - -73.512873, - 45.503688 - ], - [ - -73.512716, - 45.503804 - ], - [ - -73.512322, - 45.504343 - ], - [ - -73.512272, - 45.504412 - ], - [ - -73.511819, - 45.505019 - ], - [ - -73.511442, - 45.505521 - ], - [ - -73.511362, - 45.505627 - ], - [ - -73.511195, - 45.505564 - ], - [ - -73.510942, - 45.505469 - ], - [ - -73.508881, - 45.504682 - ], - [ - -73.508706, - 45.504911 - ], - [ - -73.508627, - 45.505015 - ], - [ - -73.508426, - 45.505289 - ], - [ - -73.508201, - 45.505577 - ], - [ - -73.507955, - 45.505892 - ], - [ - -73.507704, - 45.506225 - ], - [ - -73.50747, - 45.506531 - ], - [ - -73.50725, - 45.506833 - ], - [ - -73.507097, - 45.507036 - ], - [ - -73.507023, - 45.507134 - ], - [ - -73.506779, - 45.507449 - ], - [ - -73.506569, - 45.507728 - ], - [ - -73.506355, - 45.508016 - ], - [ - -73.506088, - 45.508371 - ], - [ - -73.505811, - 45.508268 - ], - [ - -73.503983, - 45.507589 - ], - [ - -73.503127, - 45.507268 - ], - [ - -73.50278, - 45.507139 - ], - [ - -73.502418, - 45.507008 - ], - [ - -73.502098, - 45.506896 - ], - [ - -73.502109, - 45.507332 - ], - [ - -73.502155, - 45.507742 - ], - [ - -73.503376, - 45.508201 - ], - [ - -73.50436, - 45.508565 - ] - ] - }, - "id": 309, - "properties": { - "id": "cc57c470-e399-43ca-bd5d-076f29e82a84", - "data": { - "gtfs": { - "shape_id": "560_1_A" - }, - "segments": [ - { - "distanceMeters": 159, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 547, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 481, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 83, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 304, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 429, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 921, - "travelTimeSeconds": 98 - }, - { - "distanceMeters": 6981, - "travelTimeSeconds": 740 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 530, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 809, - "travelTimeSeconds": 86 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 16974, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5908.2197908970575, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.43, - "travelTimeWithoutDwellTimesSeconds": 1800, - "operatingTimeWithLayoverTimeSeconds": 1980, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1800, - "operatingSpeedWithLayoverMetersPerSecond": 8.57, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.43 - }, - "mode": "bus", - "name": "École St-Lambert Inter.", - "color": "#A32638", - "nodes": [ - "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", - "bb4626e2-c410-497b-977c-2cc1b65d7b57", - "714fccbf-a3ad-45ea-8e3f-be54db61f028", - "d9f7a5bd-7489-48e7-93cf-4368a09e2676", - "2e8375c2-0f15-448a-8203-e8a29699849e", - "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", - "1e6b54ae-f11e-4726-a36f-9c4411688776", - "8ece351b-2186-4cfe-9624-9d1eacc2181d", - "5a5c6460-b74c-4fc4-8f7e-fb80243c60b0", - "f5001112-5d1e-4489-87be-a34e9ded0d46", - "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", - "a388aa98-4c24-4671-8a33-a0e95f9d5ada", - "fc1c0989-eb4e-4e77-b261-f952dd40601e", - "fc1c0989-eb4e-4e77-b261-f952dd40601e", - "717d6b36-87fa-4b34-a418-6b20c1bc0d29", - "6db4cc67-3620-48bd-9c7c-28ab936b1e0b", - "a77c95ec-f278-40ce-a777-9f8b498d4367", - "f1b172ed-b501-4e36-bd1c-2425165ce50b", - "527ca44e-8da2-49e9-b2e4-033371d02c50", - "e6df12e3-4f2f-4277-aa8e-a04daab48336", - "9d19395e-81cd-4b78-af4a-b6c8e4259c9c", - "4f581479-b61b-497b-82d2-4c290ee6a857", - "84f7a7c0-b176-49cc-89e3-6756a3c3e4cc", - "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", - "0c748835-952e-4739-8acb-c70076e8b112", - "2c3ad537-4ff9-4b7f-9c7d-0b21ee34234d", - "48afa0b3-dc93-4216-9cf1-35b088276d02", - "8541057e-6661-45be-93ff-9ed50114b9a1", - "eace6dbd-217a-421f-9a0e-ee6e7890671f", - "84a0424b-0f35-4bd8-8109-5ac9219d5869", - "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", - "261a087b-9323-4696-9046-146a299af43d", - "f8b461c2-c03e-4da6-aa56-a50e7e1d9db0", - "1232f389-204f-48ac-a95f-0f1b3e5706b2", - "9bf48d6d-7a0b-4fbe-9125-1eef756e334f", - "bca5df0b-3970-4f0e-8644-3802bdd029df", - "3f77d417-9b8e-4514-8337-8fa9008d2cc7" - ], - "stops": [], - "line_id": "be397d0c-b465-458c-b28d-9ea380014382", - "segments": [ - 0, - 1, - 4, - 7, - 12, - 22, - 33, - 43, - 46, - 55, - 58, - 66, - 73, - 75, - 85, - 92, - 101, - 113, - 120, - 126, - 137, - 144, - 149, - 151, - 156, - 158, - 165, - 191, - 201, - 202, - 211, - 217, - 238, - 346, - 349, - 362 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 309, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.50436, - 45.508565 - ], - [ - -73.505595, - 45.509024 - ], - [ - -73.505098, - 45.509672 - ], - [ - -73.504847, - 45.510018 - ], - [ - -73.504789, - 45.510097 - ], - [ - -73.504625, - 45.51032 - ], - [ - -73.504367, - 45.510653 - ], - [ - -73.504141, - 45.510959 - ], - [ - -73.503715, - 45.511503 - ], - [ - -73.503649, - 45.511597 - ], - [ - -73.504193, - 45.511808 - ], - [ - -73.504821, - 45.512052 - ], - [ - -73.504953, - 45.512101 - ], - [ - -73.505513, - 45.512322 - ], - [ - -73.506059, - 45.512531 - ], - [ - -73.506149, - 45.512565 - ], - [ - -73.506238, - 45.512601 - ], - [ - -73.508131, - 45.513338 - ], - [ - -73.508567, - 45.513512 - ], - [ - -73.508741, - 45.513581 - ], - [ - -73.509393, - 45.513802 - ], - [ - -73.50981, - 45.513942 - ], - [ - -73.510118, - 45.514045 - ], - [ - -73.511388, - 45.514467 - ], - [ - -73.511507, - 45.514508 - ], - [ - -73.512165, - 45.514728 - ], - [ - -73.512735, - 45.514923 - ], - [ - -73.512796, - 45.514944 - ], - [ - -73.513796, - 45.515285 - ], - [ - -73.514442, - 45.515505 - ], - [ - -73.514563, - 45.515547 - ], - [ - -73.515414, - 45.515844 - ], - [ - -73.516876, - 45.516355 - ], - [ - -73.51692, - 45.51637 - ], - [ - -73.517227, - 45.516485 - ], - [ - -73.517318, - 45.516518 - ], - [ - -73.517741, - 45.516671 - ], - [ - -73.517978, - 45.516757 - ], - [ - -73.518077, - 45.516793 - ], - [ - -73.518456, - 45.516887 - ], - [ - -73.519047, - 45.517038 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.519402, - 45.517466 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520113, - 45.519734 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521301, - 45.520907 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.522024, - 45.520846 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.522376, - 45.520909 - ], - [ - -73.522687, - 45.521008 - ], - [ - -73.522964, - 45.521134 - ], - [ - -73.523031, - 45.521183 - ], - [ - -73.52312, - 45.521238 - ], - [ - -73.523209, - 45.521302 - ], - [ - -73.523294, - 45.521376 - ], - [ - -73.523363, - 45.521456 - ], - [ - -73.52341, - 45.521518 - ], - [ - -73.523504, - 45.521661 - ], - [ - -73.523557, - 45.521715 - ], - [ - -73.523601, - 45.521916 - ], - [ - -73.523662, - 45.522297 - ], - [ - -73.523863, - 45.52354 - ], - [ - -73.523876, - 45.523612 - ], - [ - -73.523976, - 45.524044 - ], - [ - -73.524075, - 45.524863 - ], - [ - -73.524101, - 45.525358 - ], - [ - -73.524096, - 45.525723 - ], - [ - -73.524085, - 45.526024 - ], - [ - -73.52401, - 45.526519 - ], - [ - -73.52398, - 45.526883 - ], - [ - -73.523923, - 45.527036 - ], - [ - -73.523716, - 45.527531 - ], - [ - -73.523372, - 45.528292 - ], - [ - -73.523292, - 45.528445 - ], - [ - -73.5232, - 45.528598 - ], - [ - -73.523088, - 45.528755 - ], - [ - -73.522246, - 45.529898 - ], - [ - -73.520051, - 45.532486 - ], - [ - -73.518914, - 45.533822 - ], - [ - -73.516804, - 45.536301 - ], - [ - -73.516415, - 45.536742 - ], - [ - -73.516001, - 45.537179 - ], - [ - -73.515781, - 45.537386 - ], - [ - -73.515551, - 45.537593 - ], - [ - -73.51507, - 45.537993 - ], - [ - -73.514817, - 45.538187 - ], - [ - -73.5143, - 45.538565 - ], - [ - -73.513245, - 45.539312 - ], - [ - -73.511932, - 45.540243 - ], - [ - -73.511153, - 45.540819 - ], - [ - -73.510648, - 45.541206 - ], - [ - -73.51007, - 45.541683 - ], - [ - -73.509233, - 45.542435 - ], - [ - -73.508779, - 45.542871 - ], - [ - -73.508342, - 45.543312 - ], - [ - -73.506683, - 45.545062 - ], - [ - -73.505072, - 45.546786 - ], - [ - -73.502818, - 45.54899 - ], - [ - -73.502212, - 45.54962 - ], - [ - -73.501984, - 45.549836 - ], - [ - -73.50186, - 45.549926 - ], - [ - -73.501728, - 45.550007 - ], - [ - -73.501592, - 45.550079 - ], - [ - -73.501452, - 45.550133 - ], - [ - -73.501399, - 45.550152 - ], - [ - -73.501309, - 45.550183 - ], - [ - -73.50116, - 45.550219 - ], - [ - -73.501011, - 45.55025 - ], - [ - -73.500705, - 45.550282 - ], - [ - -73.500547, - 45.550286 - ], - [ - -73.49991, - 45.550295 - ], - [ - -73.499238, - 45.550226 - ], - [ - -73.498778, - 45.550153 - ], - [ - -73.498464, - 45.550065 - ], - [ - -73.498138, - 45.54995 - ], - [ - -73.497746, - 45.549767 - ], - [ - -73.497494, - 45.54961 - ], - [ - -73.497234, - 45.549428 - ], - [ - -73.496902, - 45.549143 - ], - [ - -73.496533, - 45.548853 - ], - [ - -73.495999, - 45.548432 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.494756, - 45.548419 - ], - [ - -73.494517, - 45.548567 - ], - [ - -73.494355, - 45.548662 - ], - [ - -73.494341, - 45.548702 - ], - [ - -73.494351, - 45.54877 - ], - [ - -73.494352, - 45.548779 - ], - [ - -73.494377, - 45.548846 - ], - [ - -73.494604, - 45.549013 - ], - [ - -73.49562, - 45.549812 - ], - [ - -73.495901, - 45.550034 - ], - [ - -73.496311, - 45.550358 - ], - [ - -73.496482, - 45.550493 - ], - [ - -73.496546, - 45.550543 - ], - [ - -73.496964, - 45.550873 - ], - [ - -73.497569, - 45.551352 - ], - [ - -73.498413, - 45.552 - ], - [ - -73.498592, - 45.552072 - ], - [ - -73.498694, - 45.552086 - ], - [ - -73.498793, - 45.55209 - ], - [ - -73.498947, - 45.552086 - ], - [ - -73.49893, - 45.552473 - ], - [ - -73.498889, - 45.552801 - ], - [ - -73.498863, - 45.552968 - ], - [ - -73.498848, - 45.553058 - ], - [ - -73.498813, - 45.553251 - ], - [ - -73.498782, - 45.553386 - ], - [ - -73.498737, - 45.553535 - ], - [ - -73.498669, - 45.55371 - ], - [ - -73.498603, - 45.553836 - ], - [ - -73.498557, - 45.553912 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498164, - 45.554478 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.496102, - 45.55685 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.494564, - 45.55854 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.493667, - 45.559599 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.493021, - 45.560497 - ], - [ - -73.492543, - 45.561194 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.489863, - 45.559482 - ], - [ - -73.489762, - 45.55941 - ], - [ - -73.489659, - 45.55945 - ], - [ - -73.489522, - 45.559535 - ], - [ - -73.489132, - 45.559774 - ], - [ - -73.488636, - 45.560071 - ], - [ - -73.488514, - 45.560143 - ], - [ - -73.487798, - 45.560517 - ], - [ - -73.487379, - 45.560714 - ], - [ - -73.486974, - 45.560989 - ], - [ - -73.48648, - 45.56147 - ], - [ - -73.486181, - 45.561776 - ], - [ - -73.485709, - 45.562253 - ], - [ - -73.48565, - 45.562312 - ], - [ - -73.485312, - 45.562653 - ], - [ - -73.485175, - 45.562787 - ], - [ - -73.485031, - 45.562928 - ], - [ - -73.484827, - 45.563148 - ], - [ - -73.484718, - 45.563256 - ], - [ - -73.484656, - 45.563337 - ], - [ - -73.484621, - 45.563405 - ], - [ - -73.484577, - 45.563486 - ], - [ - -73.484542, - 45.563553 - ], - [ - -73.484524, - 45.563621 - ], - [ - -73.484511, - 45.563679 - ], - [ - -73.48451, - 45.563769 - ], - [ - -73.484506, - 45.563909 - ], - [ - -73.484524, - 45.564039 - ], - [ - -73.484568, - 45.564188 - ], - [ - -73.484634, - 45.564327 - ], - [ - -73.484666, - 45.564381 - ], - [ - -73.484709, - 45.564453 - ], - [ - -73.484801, - 45.564538 - ], - [ - -73.484885, - 45.564619 - ], - [ - -73.484999, - 45.564714 - ], - [ - -73.485158, - 45.564813 - ], - [ - -73.485396, - 45.564912 - ], - [ - -73.485402, - 45.564916 - ], - [ - -73.485509, - 45.564975 - ], - [ - -73.485466, - 45.56506 - ], - [ - -73.485391, - 45.56515 - ], - [ - -73.485312, - 45.565245 - ], - [ - -73.485255, - 45.565303 - ], - [ - -73.4851, - 45.565418 - ], - [ - -73.484614, - 45.565777 - ], - [ - -73.484402, - 45.565933 - ], - [ - -73.484121, - 45.566154 - ], - [ - -73.483104, - 45.566981 - ], - [ - -73.482898, - 45.567161 - ], - [ - -73.482867, - 45.567188 - ], - [ - -73.482793, - 45.567251 - ], - [ - -73.482548, - 45.567065 - ], - [ - -73.4815, - 45.566273 - ], - [ - -73.480444, - 45.565474 - ], - [ - -73.480073, - 45.565193 - ], - [ - -73.479541, - 45.564791 - ], - [ - -73.479021, - 45.564398 - ], - [ - -73.477591, - 45.5633 - ], - [ - -73.477496, - 45.563228 - ], - [ - -73.476819, - 45.562716 - ], - [ - -73.476466, - 45.562449 - ], - [ - -73.475938, - 45.562049 - ], - [ - -73.475231, - 45.561513 - ], - [ - -73.474585, - 45.561026 - ], - [ - -73.474435, - 45.560912 - ], - [ - -73.474349, - 45.560847 - ], - [ - -73.474262, - 45.560781 - ], - [ - -73.473051, - 45.559853 - ], - [ - -73.472951, - 45.559778 - ], - [ - -73.472285, - 45.559277 - ], - [ - -73.471768, - 45.558881 - ], - [ - -73.471244, - 45.558485 - ], - [ - -73.471028, - 45.558322 - ], - [ - -73.471706, - 45.557897 - ], - [ - -73.471824, - 45.557823 - ], - [ - -73.472324, - 45.557504 - ], - [ - -73.472479, - 45.557405 - ], - [ - -73.472629, - 45.557279 - ], - [ - -73.472632, - 45.557275 - ], - [ - -73.473528, - 45.556707 - ], - [ - -73.473662, - 45.556622 - ], - [ - -73.473763, - 45.556559 - ], - [ - -73.475301, - 45.555548 - ], - [ - -73.475452, - 45.555449 - ], - [ - -73.475549, - 45.55539 - ], - [ - -73.47589, - 45.555179 - ], - [ - -73.47658, - 45.554819 - ], - [ - -73.47721, - 45.554495 - ], - [ - -73.478403, - 45.55387 - ], - [ - -73.479586, - 45.553272 - ], - [ - -73.480216, - 45.552937 - ], - [ - -73.480374, - 45.552853 - ], - [ - -73.480484, - 45.552799 - ], - [ - -73.482032, - 45.552008 - ], - [ - -73.482067, - 45.551991 - ], - [ - -73.482159, - 45.551945 - ], - [ - -73.483045, - 45.55149 - ], - [ - -73.483563, - 45.551225 - ], - [ - -73.483956, - 45.551023 - ], - [ - -73.484266, - 45.551353 - ], - [ - -73.484498, - 45.551601 - ], - [ - -73.48453, - 45.551635 - ], - [ - -73.484618, - 45.551734 - ], - [ - -73.484693, - 45.55186 - ], - [ - -73.484759, - 45.552008 - ], - [ - -73.484816, - 45.552215 - ], - [ - -73.484834, - 45.552346 - ], - [ - -73.484812, - 45.552548 - ], - [ - -73.484776, - 45.552733 - ], - [ - -73.484667, - 45.553155 - ], - [ - -73.48441, - 45.55415 - ], - [ - -73.484362, - 45.554361 - ], - [ - -73.484318, - 45.554555 - ], - [ - -73.4843, - 45.554726 - ], - [ - -73.484291, - 45.554865 - ], - [ - -73.484305, - 45.555234 - ], - [ - -73.484308, - 45.55528 - ], - [ - -73.484331, - 45.555639 - ], - [ - -73.48434, - 45.555782 - ], - [ - -73.484366, - 45.556165 - ], - [ - -73.484397, - 45.556377 - ], - [ - -73.48445, - 45.556532 - ], - [ - -73.484458, - 45.556557 - ], - [ - -73.484529, - 45.556737 - ], - [ - -73.484586, - 45.556858 - ], - [ - -73.484748, - 45.557104 - ], - [ - -73.484811, - 45.5572 - ], - [ - -73.484876, - 45.557286 - ], - [ - -73.48555, - 45.5581 - ], - [ - -73.485664, - 45.558262 - ], - [ - -73.485726, - 45.558424 - ], - [ - -73.485748, - 45.558546 - ], - [ - -73.485765, - 45.558649 - ], - [ - -73.48573, - 45.558798 - ], - [ - -73.48566, - 45.558951 - ], - [ - -73.485563, - 45.559104 - ], - [ - -73.485413, - 45.559252 - ], - [ - -73.485082, - 45.559518 - ], - [ - -73.484971, - 45.559607 - ], - [ - -73.48489, - 45.559675 - ], - [ - -73.484312, - 45.560233 - ], - [ - -73.484078, - 45.560521 - ], - [ - -73.484025, - 45.56059 - ], - [ - -73.483849, - 45.560818 - ], - [ - -73.483675, - 45.561077 - ], - [ - -73.483637, - 45.561133 - ], - [ - -73.483578, - 45.561221 - ], - [ - -73.483026, - 45.562041 - ], - [ - -73.482901, - 45.562217 - ], - [ - -73.482854, - 45.562284 - ], - [ - -73.482491, - 45.56271 - ], - [ - -73.482425, - 45.562788 - ], - [ - -73.482409, - 45.562806 - ], - [ - -73.482342, - 45.562878 - ], - [ - -73.482066, - 45.563125 - ], - [ - -73.48196, - 45.56322 - ], - [ - -73.481774, - 45.563332 - ], - [ - -73.481758, - 45.563341 - ], - [ - -73.481506, - 45.563472 - ], - [ - -73.481447, - 45.563492 - ], - [ - -73.481361, - 45.563521 - ], - [ - -73.481206, - 45.563571 - ], - [ - -73.48099, - 45.56362 - ], - [ - -73.480428, - 45.563746 - ], - [ - -73.480284, - 45.563777 - ], - [ - -73.480145, - 45.563809 - ], - [ - -73.479899, - 45.563872 - ], - [ - -73.47976, - 45.563926 - ], - [ - -73.479595, - 45.564025 - ], - [ - -73.479217, - 45.564271 - ], - [ - -73.479021, - 45.564398 - ], - [ - -73.477591, - 45.5633 - ], - [ - -73.477496, - 45.563228 - ], - [ - -73.476819, - 45.562716 - ], - [ - -73.47646, - 45.562444 - ], - [ - -73.475938, - 45.562049 - ], - [ - -73.475231, - 45.561513 - ], - [ - -73.474585, - 45.561026 - ], - [ - -73.474437, - 45.560914 - ], - [ - -73.474349, - 45.560847 - ], - [ - -73.474262, - 45.560781 - ], - [ - -73.473051, - 45.559853 - ], - [ - -73.472951, - 45.559778 - ], - [ - -73.472285, - 45.559277 - ], - [ - -73.471768, - 45.558881 - ], - [ - -73.471247, - 45.558487 - ], - [ - -73.471028, - 45.558322 - ], - [ - -73.470903, - 45.558228 - ], - [ - -73.470033, - 45.557566 - ], - [ - -73.469575, - 45.55722 - ], - [ - -73.469106, - 45.556862 - ], - [ - -73.468985, - 45.55677 - ], - [ - -73.468826, - 45.556648 - ], - [ - -73.467509, - 45.555651 - ], - [ - -73.466771, - 45.555092 - ], - [ - -73.465456, - 45.554095 - ], - [ - -73.464874, - 45.553655 - ], - [ - -73.464766, - 45.553574 - ], - [ - -73.464651, - 45.553651 - ], - [ - -73.464574, - 45.553704 - ], - [ - -73.464098, - 45.55401 - ], - [ - -73.464056, - 45.554071 - ], - [ - -73.464004, - 45.554145 - ], - [ - -73.46269, - 45.554985 - ], - [ - -73.462576, - 45.555058 - ], - [ - -73.462207, - 45.555292 - ], - [ - -73.461991, - 45.555431 - ], - [ - -73.461985, - 45.555435 - ], - [ - -73.461965, - 45.555444 - ], - [ - -73.461925, - 45.555463 - ], - [ - -73.461827, - 45.555485 - ], - [ - -73.461719, - 45.555453 - ], - [ - -73.461661, - 45.555436 - ], - [ - -73.461529, - 45.555341 - ], - [ - -73.461353, - 45.555197 - ], - [ - -73.461155, - 45.555031 - ], - [ - -73.461091, - 45.55497 - ], - [ - -73.461041, - 45.554923 - ], - [ - -73.460904, - 45.55472 - ], - [ - -73.460843, - 45.554611 - ], - [ - -73.460476, - 45.553964 - ], - [ - -73.460133, - 45.553404 - ], - [ - -73.460074, - 45.553307 - ], - [ - -73.45984, - 45.552911 - ], - [ - -73.459717, - 45.552763 - ], - [ - -73.459495, - 45.552583 - ], - [ - -73.458867, - 45.552123 - ], - [ - -73.458276, - 45.55172 - ], - [ - -73.458174, - 45.551651 - ], - [ - -73.456336, - 45.550259 - ], - [ - -73.456272, - 45.55021 - ], - [ - -73.454362, - 45.54876 - ], - [ - -73.454302, - 45.548714 - ], - [ - -73.454269, - 45.548689 - ], - [ - -73.452371, - 45.547246 - ] - ] - }, - "id": 310, - "properties": { - "id": "e94f4e9d-3348-426e-a5dc-abaf61949e7c", - "data": { - "gtfs": { - "shape_id": "560_2_R" - }, - "segments": [ - { - "distanceMeters": 244, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 404, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 92, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 56, - "travelTimeSeconds": 6 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 5090, - "travelTimeSeconds": 536 - }, - { - "distanceMeters": 567, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 112, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 86, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 337, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 350, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 386, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 481, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 82, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 304, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 316, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 577, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 25 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 186, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 17638, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5908.2197908970575, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.48, - "travelTimeWithoutDwellTimesSeconds": 1860, - "operatingTimeWithLayoverTimeSeconds": 2046, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1860, - "operatingSpeedWithLayoverMetersPerSecond": 8.62, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.48 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "3f77d417-9b8e-4514-8337-8fa9008d2cc7", - "3035cba8-14ef-4eb7-b986-fc36588b4fe9", - "2227a38f-9c32-4890-9719-eef7445fa1fc", - "969092dd-fcfd-493a-be55-d0467c757fb1", - "2a197d72-1b4b-4077-a350-4c8656ad7bb1", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "f250cba5-329e-4403-912d-778f924ce25e", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "87d520cc-f77e-449c-88c9-cee424bbc329", - "c879a803-d58b-4487-8291-391e9b516d3c", - "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", - "261a087b-9323-4696-9046-146a299af43d", - "0bcb0e97-db40-44bb-afe9-f6212a5b6387", - "b16a31c8-203c-44e6-a193-88731a47056e", - "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", - "acd343da-a23f-40aa-9f8e-9e9ed5b60bd1", - "8541057e-6661-45be-93ff-9ed50114b9a1", - "48afa0b3-dc93-4216-9cf1-35b088276d02", - "2c3ad537-4ff9-4b7f-9c7d-0b21ee34234d", - "056bf57a-8baa-407d-9c70-a2dcb2e36aea", - "08472942-a2a0-45ef-be22-2dc8587875b6", - "768e4b50-abe9-456e-9460-90d8cbf65940", - "b15716e4-5653-476c-ba57-960f89ea42d5", - "2332d398-d991-4d3f-9d67-38ab4930ac25", - "f5001112-5d1e-4489-87be-a34e9ded0d46", - "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", - "a388aa98-4c24-4671-8a33-a0e95f9d5ada", - "fc1c0989-eb4e-4e77-b261-f952dd40601e", - "fc1c0989-eb4e-4e77-b261-f952dd40601e", - "717d6b36-87fa-4b34-a418-6b20c1bc0d29", - "6db4cc67-3620-48bd-9c7c-28ab936b1e0b", - "a77c95ec-f278-40ce-a777-9f8b498d4367", - "f1b172ed-b501-4e36-bd1c-2425165ce50b", - "527ca44e-8da2-49e9-b2e4-033371d02c50", - "e6df12e3-4f2f-4277-aa8e-a04daab48336", - "9d19395e-81cd-4b78-af4a-b6c8e4259c9c", - "4f581479-b61b-497b-82d2-4c290ee6a857", - "768e4b50-abe9-456e-9460-90d8cbf65940", - "b15716e4-5653-476c-ba57-960f89ea42d5", - "2332d398-d991-4d3f-9d67-38ab4930ac25", - "8ece351b-2186-4cfe-9624-9d1eacc2181d", - "1e6b54ae-f11e-4726-a36f-9c4411688776", - "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", - "2e8375c2-0f15-448a-8203-e8a29699849e", - "d9f7a5bd-7489-48e7-93cf-4368a09e2676", - "714fccbf-a3ad-45ea-8e3f-be54db61f028", - "bb4626e2-c410-497b-977c-2cc1b65d7b57", - "afa3ad41-3eae-461f-a526-3f7ca1b74bc9" - ], - "stops": [], - "line_id": "be397d0c-b465-458c-b28d-9ea380014382", - "segments": [ - 0, - 4, - 14, - 18, - 26, - 28, - 29, - 34, - 40, - 49, - 150, - 172, - 174, - 177, - 179, - 181, - 182, - 189, - 196, - 221, - 228, - 232, - 239, - 244, - 248, - 255, - 263, - 266, - 274, - 281, - 283, - 293, - 300, - 309, - 321, - 328, - 334, - 346, - 353, - 358, - 362, - 369, - 374, - 385, - 392, - 405, - 411, - 413, - 415 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 310, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.502056, - 45.546647 - ], - [ - -73.499769, - 45.545271 - ], - [ - -73.499661, - 45.545207 - ], - [ - -73.496867, - 45.543519 - ], - [ - -73.496791, - 45.543474 - ], - [ - -73.496378, - 45.543225 - ], - [ - -73.496254, - 45.54315 - ], - [ - -73.494874, - 45.542315 - ], - [ - -73.493936, - 45.541747 - ], - [ - -73.492291, - 45.540752 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.491774, - 45.540689 - ], - [ - -73.491536, - 45.540936 - ], - [ - -73.491291, - 45.541175 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.49059, - 45.540694 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486474, - 45.540149 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482886, - 45.538847 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.480017, - 45.538051 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.479414, - 45.538402 - ], - [ - -73.478347, - 45.539271 - ], - [ - -73.4782, - 45.53939 - ], - [ - -73.478021, - 45.539535 - ], - [ - -73.47788, - 45.539657 - ], - [ - -73.476575, - 45.540723 - ], - [ - -73.475691, - 45.541445 - ], - [ - -73.475595, - 45.541524 - ], - [ - -73.475008, - 45.542027 - ], - [ - -73.474845, - 45.542176 - ], - [ - -73.474596, - 45.542482 - ], - [ - -73.474126, - 45.54306 - ], - [ - -73.473915, - 45.543318 - ], - [ - -73.473412, - 45.542995 - ], - [ - -73.473362, - 45.542963 - ], - [ - -73.472636, - 45.54249 - ], - [ - -73.472231, - 45.542247 - ], - [ - -73.471809, - 45.542005 - ], - [ - -73.47173, - 45.541959 - ], - [ - -73.471636, - 45.541824 - ], - [ - -73.471767, - 45.541743 - ], - [ - -73.472855, - 45.540974 - ], - [ - -73.473584, - 45.540484 - ], - [ - -73.473775, - 45.540344 - ], - [ - -73.474071, - 45.540124 - ], - [ - -73.474164, - 45.54006 - ], - [ - -73.475129, - 45.539395 - ], - [ - -73.476288, - 45.538569 - ], - [ - -73.476737, - 45.538248 - ], - [ - -73.476875, - 45.538142 - ], - [ - -73.47704, - 45.538015 - ], - [ - -73.477271, - 45.537781 - ], - [ - -73.477387, - 45.537628 - ], - [ - -73.477404, - 45.537599 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477644, - 45.537235 - ], - [ - -73.477761, - 45.537128 - ], - [ - -73.47795, - 45.537029 - ], - [ - -73.478248, - 45.536966 - ], - [ - -73.47847, - 45.536877 - ], - [ - -73.478805, - 45.536643 - ], - [ - -73.479408, - 45.535093 - ], - [ - -73.479448, - 45.534992 - ], - [ - -73.480264, - 45.5329 - ], - [ - -73.480308, - 45.532787 - ], - [ - -73.481263, - 45.530321 - ], - [ - -73.481304, - 45.530061 - ], - [ - -73.481326, - 45.530017 - ], - [ - -73.481357, - 45.529956 - ], - [ - -73.481466, - 45.529737 - ], - [ - -73.481563, - 45.529683 - ], - [ - -73.481646, - 45.529629 - ], - [ - -73.481719, - 45.529602 - ], - [ - -73.481803, - 45.529584 - ], - [ - -73.481881, - 45.529579 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.482183, - 45.529619 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.484949, - 45.530769 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.485788, - 45.531117 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.488424, - 45.532213 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.488538, - 45.532145 - ], - [ - -73.488569, - 45.532091 - ], - [ - -73.488657, - 45.531965 - ], - [ - -73.488692, - 45.531915 - ], - [ - -73.488837, - 45.531715 - ], - [ - -73.488919, - 45.5316 - ], - [ - -73.489294, - 45.531043 - ], - [ - -73.489584, - 45.530621 - ], - [ - -73.489681, - 45.53048 - ], - [ - -73.490074, - 45.529927 - ], - [ - -73.490523, - 45.529279 - ], - [ - -73.490396, - 45.529257 - ], - [ - -73.489917, - 45.529096 - ], - [ - -73.488747, - 45.528705 - ], - [ - -73.488593, - 45.528653 - ], - [ - -73.486459, - 45.527913 - ], - [ - -73.486324, - 45.527866 - ], - [ - -73.483378, - 45.526866 - ], - [ - -73.483206, - 45.526808 - ], - [ - -73.483441, - 45.526452 - ], - [ - -73.483691, - 45.526075 - ], - [ - -73.484053, - 45.525537 - ], - [ - -73.4841, - 45.525467 - ], - [ - -73.48433, - 45.525112 - ], - [ - -73.484525, - 45.524815 - ], - [ - -73.484791, - 45.524401 - ], - [ - -73.485125, - 45.523895 - ], - [ - -73.48523, - 45.523735 - ], - [ - -73.485667, - 45.523079 - ], - [ - -73.486062, - 45.52248 - ], - [ - -73.486413, - 45.521957 - ], - [ - -73.486488, - 45.521846 - ], - [ - -73.487114, - 45.52091 - ], - [ - -73.487444, - 45.52041 - ], - [ - -73.487508, - 45.520312 - ], - [ - -73.487727, - 45.520388 - ], - [ - -73.487872, - 45.520438 - ], - [ - -73.48798, - 45.520475 - ], - [ - -73.488243, - 45.520566 - ], - [ - -73.490753, - 45.52143 - ], - [ - -73.490877, - 45.521473 - ], - [ - -73.492238, - 45.521946 - ], - [ - -73.493728, - 45.522464 - ], - [ - -73.493855, - 45.522508 - ], - [ - -73.496562, - 45.523455 - ], - [ - -73.496788, - 45.523534 - ], - [ - -73.49715, - 45.52366 - ], - [ - -73.499753, - 45.524564 - ], - [ - -73.499891, - 45.524634 - ], - [ - -73.500013, - 45.524695 - ], - [ - -73.500147, - 45.524758 - ], - [ - -73.500458, - 45.524879 - ], - [ - -73.500944, - 45.525045 - ], - [ - -73.501143, - 45.525113 - ], - [ - -73.502369, - 45.525516 - ], - [ - -73.502691, - 45.525622 - ], - [ - -73.503591, - 45.525919 - ], - [ - -73.505269, - 45.526473 - ], - [ - -73.505347, - 45.526499 - ], - [ - -73.506639, - 45.526923 - ], - [ - -73.506756, - 45.526962 - ], - [ - -73.507316, - 45.527151 - ], - [ - -73.508514, - 45.52754 - ], - [ - -73.510194, - 45.528086 - ], - [ - -73.510246, - 45.528113 - ], - [ - -73.510285, - 45.528134 - ], - [ - -73.510385, - 45.528186 - ], - [ - -73.510473, - 45.528213 - ], - [ - -73.510517, - 45.528141 - ], - [ - -73.510544, - 45.528105 - ], - [ - -73.510575, - 45.528064 - ], - [ - -73.510616, - 45.52801 - ], - [ - -73.510673, - 45.527898 - ], - [ - -73.510724, - 45.527781 - ], - [ - -73.51082, - 45.527401 - ], - [ - -73.510842, - 45.527313 - ], - [ - -73.510878, - 45.526809 - ], - [ - -73.510899, - 45.526469 - ], - [ - -73.510904, - 45.526386 - ], - [ - -73.510825, - 45.525626 - ], - [ - -73.510791, - 45.525473 - ], - [ - -73.510606, - 45.524768 - ], - [ - -73.510559, - 45.524591 - ], - [ - -73.510103, - 45.523637 - ], - [ - -73.510027, - 45.523495 - ], - [ - -73.509606, - 45.522713 - ], - [ - -73.509474, - 45.522467 - ], - [ - -73.509184, - 45.521936 - ], - [ - -73.509122, - 45.521825 - ], - [ - -73.509119, - 45.521819 - ], - [ - -73.508895, - 45.52141 - ], - [ - -73.508869, - 45.521361 - ], - [ - -73.508774, - 45.52119 - ], - [ - -73.50866, - 45.520978 - ], - [ - -73.508615, - 45.520897 - ], - [ - -73.508342, - 45.520368 - ], - [ - -73.507923, - 45.519557 - ], - [ - -73.507805, - 45.519327 - ], - [ - -73.507767, - 45.519257 - ], - [ - -73.507212, - 45.518218 - ], - [ - -73.507088, - 45.517986 - ], - [ - -73.50664, - 45.517136 - ], - [ - -73.506585, - 45.517039 - ], - [ - -73.506515, - 45.516915 - ], - [ - -73.506374, - 45.516632 - ], - [ - -73.506298, - 45.516497 - ], - [ - -73.506127, - 45.516047 - ], - [ - -73.505974, - 45.51571 - ], - [ - -73.505899, - 45.515647 - ], - [ - -73.505603, - 45.515085 - ], - [ - -73.505563, - 45.515012 - ], - [ - -73.505582, - 45.514994 - ], - [ - -73.505577, - 45.514945 - ], - [ - -73.505518, - 45.514841 - ], - [ - -73.505477, - 45.514751 - ], - [ - -73.50545, - 45.514657 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505454, - 45.514325 - ], - [ - -73.505464, - 45.514054 - ], - [ - -73.505469, - 45.513811 - ], - [ - -73.50548, - 45.513717 - ], - [ - -73.505507, - 45.513609 - ], - [ - -73.505553, - 45.513433 - ], - [ - -73.505595, - 45.513348 - ], - [ - -73.506067, - 45.512799 - ], - [ - -73.506238, - 45.512601 - ], - [ - -73.506149, - 45.512565 - ], - [ - -73.505735, - 45.512407 - ], - [ - -73.505513, - 45.512322 - ], - [ - -73.504953, - 45.512101 - ], - [ - -73.504821, - 45.512052 - ], - [ - -73.503649, - 45.511597 - ], - [ - -73.503715, - 45.511503 - ], - [ - -73.504141, - 45.510959 - ], - [ - -73.504367, - 45.510653 - ], - [ - -73.504625, - 45.51032 - ], - [ - -73.504847, - 45.510018 - ], - [ - -73.505098, - 45.509672 - ], - [ - -73.505595, - 45.509024 - ], - [ - -73.505856, - 45.508673 - ], - [ - -73.506088, - 45.508371 - ], - [ - -73.503983, - 45.507589 - ], - [ - -73.503127, - 45.507268 - ], - [ - -73.50278, - 45.507139 - ], - [ - -73.502418, - 45.507008 - ], - [ - -73.502098, - 45.506896 - ], - [ - -73.502109, - 45.507332 - ], - [ - -73.502155, - 45.507742 - ], - [ - -73.503376, - 45.508201 - ], - [ - -73.50436, - 45.508565 - ] - ] - }, - "id": 311, - "properties": { - "id": "5d7db24e-b1fd-45f0-9137-cf8ea55d691d", - "data": { - "gtfs": { - "shape_id": "565_1_A" - }, - "segments": [ - { - "distanceMeters": 235, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 421, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 68, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 374, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 339, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 76, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 78, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 53, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 311, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 104, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 96, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 500, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 1303, - "travelTimeSeconds": 211 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 198, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12259, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4240.4903944821535, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.19, - "travelTimeWithoutDwellTimesSeconds": 1980, - "operatingTimeWithLayoverTimeSeconds": 2178, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1980, - "operatingSpeedWithLayoverMetersPerSecond": 5.63, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.19 - }, - "mode": "bus", - "name": "École St-Lambert Inter.", - "color": "#A32638", - "nodes": [ - "c5521133-14cc-4988-b8c2-4360698fa4ec", - "29cae4d6-53eb-4c22-9faf-214af53be38b", - "0266ed3c-e279-4178-b7ea-9f611780869a", - "c1b679f5-d94a-4515-826d-dd0fd3e8ca0c", - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "ce58f095-9b51-4521-8a41-e64bfb0df31e", - "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", - "65003b15-0baf-4f82-9e15-665e17fd1c75", - "5f672947-8abc-447c-bf60-535abbf76fae", - "31db3d90-e07f-4dbc-995f-00186e6ce5e0", - "1396e79d-a217-431f-ba1d-6596c1924ac0", - "3a5ea563-a764-4bb6-b2d3-d98a1c377161", - "a1edad0a-8432-4850-b895-9d97092489b6", - "f7649797-fc15-4753-8189-cbc65d444f77", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "4b62100a-5cde-4d2b-8815-1a60c1ba3220", - "d488846f-abf4-41f2-9dd0-43b9cbb645a3", - "ec90d5a6-8d45-4327-b9de-7b521004b298", - "65175945-c54c-4732-85a9-890393a0975c", - "27c5df15-201f-4855-9f49-556fd659fd8e", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "a484746b-f716-4eab-ae1c-c7c08714d651", - "17183bd2-c06f-4999-9774-43fb48004315", - "280d705c-e41e-4a8f-8450-ac212bf84d99", - "1d3f02c5-7aee-413f-85a4-ed64749a6a77", - "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", - "5bc0109e-fc2a-4d2a-8204-5be74af579b9", - "a87339f4-b5b3-4402-b9ee-9ea1d8fcf569", - "212f4608-5163-4f8c-b126-acfdafddd04a", - "88e6eee9-3b8c-474d-aeb4-599447d404be", - "88e6eee9-3b8c-474d-aeb4-599447d404be", - "a63c10e3-b289-47b6-9867-4d82c043e2cb", - "a76bf032-5164-44ff-92fb-30023319517e", - "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "d41672d0-e186-418e-b20f-1d82b60c3365", - "3166d228-f358-4741-9950-420cebd0aa4c", - "20a17f7f-4c8c-4119-ac8f-7160c6595370", - "43f366d5-ac33-41ca-be94-6282f0233cd1", - "0abd44bc-ce59-4161-a0a7-b31176db0e89", - "aa2ca75c-2e9d-4072-a531-98e6423e4538", - "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", - "94f3304d-66ff-42a6-bd12-7828cf5efc64", - "7dd9be07-f5cb-4f00-86f7-d61821676a78", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "01cbab8a-50a9-42e0-9d05-820a9dd4fa51", - "c28a8fa6-886c-4f1e-b291-00d0237d02dd", - "eab3c393-e690-4d4a-921c-9c45533c53f2", - "2227a38f-9c32-4890-9719-eef7445fa1fc", - "3f77d417-9b8e-4514-8337-8fa9008d2cc7" - ], - "stops": [], - "line_id": "ad878084-7b7f-4691-a792-dd097cf0ba5f", - "segments": [ - 0, - 1, - 5, - 9, - 20, - 30, - 35, - 44, - 47, - 49, - 53, - 58, - 64, - 72, - 80, - 89, - 91, - 96, - 109, - 111, - 113, - 119, - 122, - 128, - 130, - 132, - 136, - 141, - 145, - 148, - 152, - 154, - 157, - 159, - 163, - 169, - 172, - 174, - 179, - 189, - 192, - 196, - 200, - 206, - 210, - 211, - 214, - 217, - 239 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 311, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.50436, - 45.508565 - ], - [ - -73.505595, - 45.509024 - ], - [ - -73.505098, - 45.509672 - ], - [ - -73.504847, - 45.510018 - ], - [ - -73.50479, - 45.510096 - ], - [ - -73.504625, - 45.51032 - ], - [ - -73.504367, - 45.510653 - ], - [ - -73.504141, - 45.510959 - ], - [ - -73.503715, - 45.511503 - ], - [ - -73.503649, - 45.511597 - ], - [ - -73.504821, - 45.512052 - ], - [ - -73.504953, - 45.512101 - ], - [ - -73.505513, - 45.512322 - ], - [ - -73.506057, - 45.51253 - ], - [ - -73.506149, - 45.512565 - ], - [ - -73.505798, - 45.512947 - ], - [ - -73.505455, - 45.513321 - ], - [ - -73.505293, - 45.513586 - ], - [ - -73.505209, - 45.513825 - ], - [ - -73.505166, - 45.51396 - ], - [ - -73.505169, - 45.514232 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505296, - 45.514616 - ], - [ - -73.505482, - 45.514981 - ], - [ - -73.505529, - 45.515008 - ], - [ - -73.505563, - 45.515012 - ], - [ - -73.505603, - 45.515085 - ], - [ - -73.505899, - 45.515647 - ], - [ - -73.50587, - 45.515953 - ], - [ - -73.505883, - 45.516007 - ], - [ - -73.505909, - 45.516052 - ], - [ - -73.506049, - 45.516416 - ], - [ - -73.506087, - 45.516538 - ], - [ - -73.506123, - 45.516645 - ], - [ - -73.506267, - 45.517046 - ], - [ - -73.506418, - 45.517356 - ], - [ - -73.506563, - 45.51763 - ], - [ - -73.506679, - 45.517851 - ], - [ - -73.506804, - 45.518072 - ], - [ - -73.506924, - 45.518297 - ], - [ - -73.507158, - 45.518738 - ], - [ - -73.507261, - 45.518931 - ], - [ - -73.507367, - 45.519126 - ], - [ - -73.507395, - 45.519177 - ], - [ - -73.507454, - 45.519286 - ], - [ - -73.507557, - 45.519476 - ], - [ - -73.507699, - 45.519736 - ], - [ - -73.507813, - 45.519948 - ], - [ - -73.5079, - 45.52011 - ], - [ - -73.508092, - 45.520465 - ], - [ - -73.508229, - 45.520723 - ], - [ - -73.508316, - 45.520888 - ], - [ - -73.50837, - 45.520987 - ], - [ - -73.508816, - 45.52186 - ], - [ - -73.508893, - 45.522004 - ], - [ - -73.509168, - 45.52252 - ], - [ - -73.509178, - 45.522539 - ], - [ - -73.50928, - 45.522728 - ], - [ - -73.509633, - 45.523397 - ], - [ - -73.509691, - 45.523507 - ], - [ - -73.509731, - 45.523583 - ], - [ - -73.509969, - 45.524042 - ], - [ - -73.510102, - 45.524299 - ], - [ - -73.510188, - 45.524465 - ], - [ - -73.510373, - 45.525036 - ], - [ - -73.510439, - 45.525351 - ], - [ - -73.510453, - 45.525414 - ], - [ - -73.510529, - 45.525734 - ], - [ - -73.510562, - 45.526097 - ], - [ - -73.510579, - 45.526273 - ], - [ - -73.510562, - 45.527029 - ], - [ - -73.510547, - 45.527214 - ], - [ - -73.510523, - 45.527407 - ], - [ - -73.51052, - 45.52743 - ], - [ - -73.510528, - 45.527565 - ], - [ - -73.510548, - 45.527677 - ], - [ - -73.510563, - 45.527749 - ], - [ - -73.510557, - 45.527853 - ], - [ - -73.510522, - 45.52797 - ], - [ - -73.510476, - 45.528037 - ], - [ - -73.510429, - 45.528114 - ], - [ - -73.510285, - 45.528097 - ], - [ - -73.510194, - 45.528086 - ], - [ - -73.510077, - 45.528048 - ], - [ - -73.50929, - 45.527792 - ], - [ - -73.507533, - 45.527222 - ], - [ - -73.507316, - 45.527151 - ], - [ - -73.506756, - 45.526962 - ], - [ - -73.505515, - 45.526554 - ], - [ - -73.505347, - 45.526499 - ], - [ - -73.503591, - 45.525919 - ], - [ - -73.502847, - 45.525673 - ], - [ - -73.502691, - 45.525622 - ], - [ - -73.501143, - 45.525113 - ], - [ - -73.500458, - 45.524879 - ], - [ - -73.500158, - 45.524762 - ], - [ - -73.500147, - 45.524758 - ], - [ - -73.500013, - 45.524695 - ], - [ - -73.499753, - 45.524564 - ], - [ - -73.49715, - 45.52366 - ], - [ - -73.496956, - 45.523592 - ], - [ - -73.496788, - 45.523534 - ], - [ - -73.493962, - 45.522545 - ], - [ - -73.493855, - 45.522508 - ], - [ - -73.492238, - 45.521946 - ], - [ - -73.49101, - 45.521519 - ], - [ - -73.490877, - 45.521473 - ], - [ - -73.488243, - 45.520566 - ], - [ - -73.487872, - 45.520438 - ], - [ - -73.487616, - 45.520349 - ], - [ - -73.487508, - 45.520312 - ], - [ - -73.48729, - 45.520643 - ], - [ - -73.487114, - 45.52091 - ], - [ - -73.486552, - 45.52175 - ], - [ - -73.486488, - 45.521846 - ], - [ - -73.486062, - 45.52248 - ], - [ - -73.485667, - 45.523079 - ], - [ - -73.485348, - 45.523557 - ], - [ - -73.48523, - 45.523735 - ], - [ - -73.484791, - 45.524401 - ], - [ - -73.484525, - 45.524815 - ], - [ - -73.48433, - 45.525112 - ], - [ - -73.484152, - 45.525387 - ], - [ - -73.4841, - 45.525467 - ], - [ - -73.483691, - 45.526075 - ], - [ - -73.483322, - 45.526632 - ], - [ - -73.483206, - 45.526808 - ], - [ - -73.483885, - 45.527038 - ], - [ - -73.486224, - 45.527832 - ], - [ - -73.486324, - 45.527866 - ], - [ - -73.488223, - 45.528525 - ], - [ - -73.488593, - 45.528653 - ], - [ - -73.490385, - 45.529253 - ], - [ - -73.490396, - 45.529257 - ], - [ - -73.490523, - 45.529279 - ], - [ - -73.490257, - 45.529663 - ], - [ - -73.490074, - 45.529927 - ], - [ - -73.489722, - 45.530423 - ], - [ - -73.489681, - 45.53048 - ], - [ - -73.489294, - 45.531043 - ], - [ - -73.488919, - 45.5316 - ], - [ - -73.488692, - 45.531915 - ], - [ - -73.488569, - 45.532091 - ], - [ - -73.488566, - 45.532097 - ], - [ - -73.488538, - 45.532145 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.48811, - 45.532078 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.485517, - 45.531006 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.481747, - 45.529437 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.481466, - 45.529737 - ], - [ - -73.481453, - 45.529762 - ], - [ - -73.481443, - 45.529783 - ], - [ - -73.481326, - 45.530017 - ], - [ - -73.481304, - 45.530061 - ], - [ - -73.481198, - 45.530124 - ], - [ - -73.479919, - 45.532569 - ], - [ - -73.479864, - 45.532675 - ], - [ - -73.478757, - 45.53472 - ], - [ - -73.478696, - 45.534834 - ], - [ - -73.478274, - 45.535591 - ], - [ - -73.478188, - 45.535747 - ], - [ - -73.477972, - 45.536164 - ], - [ - -73.477686, - 45.536714 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.477846, - 45.53759 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479466, - 45.538067 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.479436, - 45.538385 - ], - [ - -73.479084, - 45.53867 - ], - [ - -73.478347, - 45.539271 - ], - [ - -73.478222, - 45.539372 - ], - [ - -73.478021, - 45.539535 - ], - [ - -73.47788, - 45.539657 - ], - [ - -73.476575, - 45.540723 - ], - [ - -73.475713, - 45.541427 - ], - [ - -73.475595, - 45.541524 - ], - [ - -73.475008, - 45.542027 - ], - [ - -73.474845, - 45.542176 - ], - [ - -73.474596, - 45.542482 - ], - [ - -73.474143, - 45.543039 - ], - [ - -73.473915, - 45.543318 - ], - [ - -73.473362, - 45.542963 - ], - [ - -73.472636, - 45.54249 - ], - [ - -73.472231, - 45.542247 - ], - [ - -73.472216, - 45.542238 - ], - [ - -73.471836, - 45.54202 - ], - [ - -73.47173, - 45.541959 - ], - [ - -73.471636, - 45.541824 - ], - [ - -73.471767, - 45.541743 - ], - [ - -73.472855, - 45.540974 - ], - [ - -73.473584, - 45.540484 - ], - [ - -73.473775, - 45.540344 - ], - [ - -73.474071, - 45.540124 - ], - [ - -73.474139, - 45.540077 - ], - [ - -73.475129, - 45.539395 - ], - [ - -73.476288, - 45.538569 - ], - [ - -73.476737, - 45.538248 - ], - [ - -73.476875, - 45.538142 - ], - [ - -73.47704, - 45.538015 - ], - [ - -73.477271, - 45.537781 - ], - [ - -73.477385, - 45.53763 - ], - [ - -73.477387, - 45.537628 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.477851, - 45.537592 - ], - [ - -73.478221, - 45.537687 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479471, - 45.538068 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.48243, - 45.538903 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.485744, - 45.540106 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.491356, - 45.541251 - ], - [ - -73.491461, - 45.541175 - ], - [ - -73.491486, - 45.541152 - ], - [ - -73.491844, - 45.540786 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.492615, - 45.540948 - ], - [ - -73.493936, - 45.541747 - ], - [ - -73.494874, - 45.542315 - ], - [ - -73.496051, - 45.543027 - ], - [ - -73.496254, - 45.54315 - ], - [ - -73.496791, - 45.543474 - ], - [ - -73.496867, - 45.543519 - ], - [ - -73.499661, - 45.545207 - ], - [ - -73.502303, - 45.546795 - ] - ] - }, - "id": 312, - "properties": { - "id": "ae24a0aa-6a78-437d-9be2-f2fe1bf5a774", - "data": { - "gtfs": { - "shape_id": "565_2_R" - }, - "segments": [ - { - "distanceMeters": 244, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 404, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 612, - "travelTimeSeconds": 113 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 55, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 55, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 47, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 556, - "travelTimeSeconds": 102 - }, - { - "distanceMeters": 86, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 643, - "travelTimeSeconds": 119 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 222, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12044, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4240.4903944821535, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.42, - "travelTimeWithoutDwellTimesSeconds": 2220, - "operatingTimeWithLayoverTimeSeconds": 2442, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2220, - "operatingSpeedWithLayoverMetersPerSecond": 4.93, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.42 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "3f77d417-9b8e-4514-8337-8fa9008d2cc7", - "3035cba8-14ef-4eb7-b986-fc36588b4fe9", - "2227a38f-9c32-4890-9719-eef7445fa1fc", - "85d8d9e6-1387-4893-85de-43bc3c6ef93c", - "a9120d5d-ef7d-4b1d-b378-8c10096d7dd8", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "7dd9be07-f5cb-4f00-86f7-d61821676a78", - "94f3304d-66ff-42a6-bd12-7828cf5efc64", - "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", - "aa2ca75c-2e9d-4072-a531-98e6423e4538", - "0bf73f5f-c68a-4a9e-ae23-67c7ea602d08", - "43f366d5-ac33-41ca-be94-6282f0233cd1", - "20a17f7f-4c8c-4119-ac8f-7160c6595370", - "3166d228-f358-4741-9950-420cebd0aa4c", - "d41672d0-e186-418e-b20f-1d82b60c3365", - "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "a76bf032-5164-44ff-92fb-30023319517e", - "a63c10e3-b289-47b6-9867-4d82c043e2cb", - "88e6eee9-3b8c-474d-aeb4-599447d404be", - "212f4608-5163-4f8c-b126-acfdafddd04a", - "a87339f4-b5b3-4402-b9ee-9ea1d8fcf569", - "5bc0109e-fc2a-4d2a-8204-5be74af579b9", - "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", - "1d3f02c5-7aee-413f-85a4-ed64749a6a77", - "db8d9e51-701d-47ce-b55e-d7d57227adcb", - "37861c82-a45a-4026-bde0-eec4ce121a64", - "17183bd2-c06f-4999-9774-43fb48004315", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "27c5df15-201f-4855-9f49-556fd659fd8e", - "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", - "48e0fb78-b91c-4eec-a77a-11ad01e61d0c", - "d488846f-abf4-41f2-9dd0-43b9cbb645a3", - "24abc23f-a2cf-493e-ad62-b789edf9cd26", - "41617015-5d74-4430-aee6-934b0fd13e70", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "5f672947-8abc-447c-bf60-535abbf76fae", - "5f672947-8abc-447c-bf60-535abbf76fae", - "31db3d90-e07f-4dbc-995f-00186e6ce5e0", - "1396e79d-a217-431f-ba1d-6596c1924ac0", - "3a5ea563-a764-4bb6-b2d3-d98a1c377161", - "a1edad0a-8432-4850-b895-9d97092489b6", - "f7649797-fc15-4753-8189-cbc65d444f77", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "5f672947-8abc-447c-bf60-535abbf76fae", - "31e8057b-0fb0-44bd-83cf-3acad24654ec", - "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", - "411bafbe-bac8-4586-9af4-bc0b3163bdde", - "c1b679f5-d94a-4515-826d-dd0fd3e8ca0c", - "0266ed3c-e279-4178-b7ea-9f611780869a", - "c5521133-14cc-4988-b8c2-4360698fa4ec" - ], - "stops": [], - "line_id": "ad878084-7b7f-4691-a792-dd097cf0ba5f", - "segments": [ - 0, - 4, - 13, - 36, - 44, - 50, - 55, - 62, - 68, - 72, - 84, - 85, - 88, - 91, - 95, - 100, - 102, - 105, - 109, - 113, - 117, - 122, - 125, - 128, - 130, - 132, - 137, - 143, - 148, - 155, - 158, - 163, - 165, - 169, - 175, - 178, - 181, - 184, - 188, - 193, - 199, - 207, - 214, - 218, - 222, - 229, - 234, - 255, - 257, - 260 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 312, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.440902, - 45.528911 - ], - [ - -73.440869, - 45.52899 - ], - [ - -73.44038, - 45.530083 - ], - [ - -73.440366, - 45.530114 - ], - [ - -73.440274, - 45.530321 - ], - [ - -73.440069, - 45.530781 - ], - [ - -73.440025, - 45.53088 - ], - [ - -73.439543, - 45.531958 - ], - [ - -73.439479, - 45.53211 - ], - [ - -73.439159, - 45.532867 - ], - [ - -73.439121, - 45.532958 - ], - [ - -73.439267, - 45.532996 - ], - [ - -73.439534, - 45.53307 - ], - [ - -73.439566, - 45.533079 - ], - [ - -73.439642, - 45.533099 - ], - [ - -73.440793, - 45.533406 - ], - [ - -73.440917, - 45.533439 - ], - [ - -73.441654, - 45.533615 - ], - [ - -73.441957, - 45.533692 - ], - [ - -73.44295, - 45.533944 - ], - [ - -73.443077, - 45.533976 - ], - [ - -73.443863, - 45.53417 - ], - [ - -73.443989, - 45.534201 - ], - [ - -73.444489, - 45.534346 - ], - [ - -73.444931, - 45.53453 - ], - [ - -73.445118, - 45.534611 - ], - [ - -73.445446, - 45.534818 - ], - [ - -73.445653, - 45.534958 - ], - [ - -73.445829, - 45.535111 - ], - [ - -73.446015, - 45.535288 - ], - [ - -73.446079, - 45.535349 - ], - [ - -73.44617, - 45.535435 - ], - [ - -73.446275, - 45.535528 - ], - [ - -73.446362, - 45.535606 - ], - [ - -73.446623, - 45.535795 - ], - [ - -73.446833, - 45.535908 - ], - [ - -73.447009, - 45.53598 - ], - [ - -73.447135, - 45.536029 - ], - [ - -73.447379, - 45.536097 - ], - [ - -73.448323, - 45.536304 - ], - [ - -73.448623, - 45.536399 - ], - [ - -73.448771, - 45.536487 - ], - [ - -73.448898, - 45.536561 - ], - [ - -73.450382, - 45.537448 - ], - [ - -73.450563, - 45.537556 - ], - [ - -73.450772, - 45.537669 - ], - [ - -73.450923, - 45.537718 - ], - [ - -73.450952, - 45.537727 - ], - [ - -73.451166, - 45.537772 - ], - [ - -73.451401, - 45.537795 - ], - [ - -73.451627, - 45.537786 - ], - [ - -73.452059, - 45.537741 - ], - [ - -73.452711, - 45.537692 - ], - [ - -73.452874, - 45.537696 - ], - [ - -73.452931, - 45.537697 - ], - [ - -73.453038, - 45.53771 - ], - [ - -73.452922, - 45.538362 - ], - [ - -73.452921, - 45.538365 - ], - [ - -73.452904, - 45.538462 - ], - [ - -73.452804, - 45.539091 - ], - [ - -73.452723, - 45.539685 - ], - [ - -73.452717, - 45.539726 - ], - [ - -73.452594, - 45.540342 - ], - [ - -73.452366, - 45.540773 - ], - [ - -73.45227, - 45.540954 - ], - [ - -73.452075, - 45.541179 - ], - [ - -73.45197, - 45.541296 - ], - [ - -73.451796, - 45.541426 - ], - [ - -73.451437, - 45.541633 - ], - [ - -73.451233, - 45.541718 - ], - [ - -73.450967, - 45.541781 - ], - [ - -73.450741, - 45.541822 - ], - [ - -73.450649, - 45.541825 - ], - [ - -73.450524, - 45.54183 - ], - [ - -73.450532, - 45.54192 - ], - [ - -73.450512, - 45.542105 - ], - [ - -73.450477, - 45.54224 - ], - [ - -73.449919, - 45.542604 - ], - [ - -73.449268, - 45.543031 - ], - [ - -73.448885, - 45.543275 - ], - [ - -73.448583, - 45.543467 - ], - [ - -73.448345, - 45.543284 - ], - [ - -73.448064, - 45.543067 - ], - [ - -73.447976, - 45.542999 - ], - [ - -73.447904, - 45.542944 - ], - [ - -73.447355, - 45.542526 - ], - [ - -73.446879, - 45.542182 - ], - [ - -73.446733, - 45.542076 - ], - [ - -73.446124, - 45.541621 - ], - [ - -73.445606, - 45.54122 - ], - [ - -73.445503, - 45.54114 - ], - [ - -73.444511, - 45.54041 - ], - [ - -73.444375, - 45.540325 - ], - [ - -73.444216, - 45.540244 - ], - [ - -73.44408, - 45.540185 - ], - [ - -73.443876, - 45.540135 - ], - [ - -73.44377, - 45.540109 - ], - [ - -73.4435, - 45.540041 - ], - [ - -73.44267, - 45.539892 - ], - [ - -73.442456, - 45.539852 - ], - [ - -73.442205, - 45.539784 - ], - [ - -73.44215, - 45.539764 - ], - [ - -73.442001, - 45.539712 - ], - [ - -73.441896, - 45.53968 - ], - [ - -73.441646, - 45.539559 - ], - [ - -73.44151, - 45.539487 - ], - [ - -73.441387, - 45.539397 - ], - [ - -73.441242, - 45.539293 - ], - [ - -73.441122, - 45.539153 - ], - [ - -73.441004, - 45.538991 - ], - [ - -73.440944, - 45.538829 - ], - [ - -73.440917, - 45.538748 - ], - [ - -73.440909, - 45.53867 - ], - [ - -73.440902, - 45.5386 - ], - [ - -73.440899, - 45.538573 - ], - [ - -73.440907, - 45.538487 - ], - [ - -73.440917, - 45.538393 - ], - [ - -73.440957, - 45.538285 - ], - [ - -73.441023, - 45.538164 - ], - [ - -73.441098, - 45.538047 - ], - [ - -73.4412, - 45.537934 - ], - [ - -73.441569, - 45.537651 - ], - [ - -73.441939, - 45.537372 - ], - [ - -73.442459, - 45.537008 - ], - [ - -73.442686, - 45.536815 - ], - [ - -73.442787, - 45.53667 - ], - [ - -73.442839, - 45.536594 - ], - [ - -73.44311, - 45.535924 - ], - [ - -73.443379, - 45.535204 - ], - [ - -73.443667, - 45.534739 - ], - [ - -73.443894, - 45.534372 - ], - [ - -73.443947, - 45.534277 - ], - [ - -73.443989, - 45.534201 - ], - [ - -73.444063, - 45.534075 - ], - [ - -73.444231, - 45.533766 - ], - [ - -73.444441, - 45.533378 - ], - [ - -73.44472, - 45.532816 - ], - [ - -73.445133, - 45.532069 - ], - [ - -73.445159, - 45.532011 - ], - [ - -73.445217, - 45.531876 - ], - [ - -73.445224, - 45.53185 - ], - [ - -73.445262, - 45.531714 - ], - [ - -73.445416, - 45.531246 - ], - [ - -73.445655, - 45.53081 - ], - [ - -73.445837, - 45.530635 - ], - [ - -73.44588, - 45.530594 - ], - [ - -73.445934, - 45.530553 - ], - [ - -73.445986, - 45.530495 - ], - [ - -73.446078, - 45.530436 - ], - [ - -73.446188, - 45.530392 - ], - [ - -73.446303, - 45.53036 - ], - [ - -73.446426, - 45.53032 - ], - [ - -73.446558, - 45.530297 - ], - [ - -73.446722, - 45.530284 - ], - [ - -73.446778, - 45.530284 - ], - [ - -73.446897, - 45.530293 - ], - [ - -73.44702, - 45.530311 - ], - [ - -73.44713, - 45.530342 - ], - [ - -73.447236, - 45.530379 - ], - [ - -73.447385, - 45.530442 - ], - [ - -73.447468, - 45.530494 - ], - [ - -73.447543, - 45.530541 - ], - [ - -73.447862, - 45.53032 - ], - [ - -73.448024, - 45.530118 - ], - [ - -73.448085, - 45.530001 - ], - [ - -73.448361, - 45.529473 - ], - [ - -73.448445, - 45.529313 - ], - [ - -73.448776, - 45.528634 - ], - [ - -73.449051, - 45.528106 - ], - [ - -73.449239, - 45.527747 - ], - [ - -73.449412, - 45.527437 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.45067, - 45.527735 - ], - [ - -73.451123, - 45.527906 - ], - [ - -73.451519, - 45.528063 - ], - [ - -73.452162, - 45.528357 - ], - [ - -73.452276, - 45.528409 - ], - [ - -73.452337, - 45.528437 - ], - [ - -73.45321, - 45.528797 - ], - [ - -73.454095, - 45.529149 - ], - [ - -73.454898, - 45.529493 - ], - [ - -73.454978, - 45.529527 - ], - [ - -73.45507, - 45.529563 - ], - [ - -73.45522, - 45.529388 - ], - [ - -73.455284, - 45.529311 - ], - [ - -73.455451, - 45.529109 - ], - [ - -73.455499, - 45.529051 - ], - [ - -73.455785, - 45.528706 - ], - [ - -73.455884, - 45.528587 - ], - [ - -73.456049, - 45.528371 - ], - [ - -73.45613, - 45.528209 - ], - [ - -73.456176, - 45.528106 - ], - [ - -73.456187, - 45.527953 - ], - [ - -73.456204, - 45.52784 - ], - [ - -73.456183, - 45.527701 - ], - [ - -73.456135, - 45.527467 - ], - [ - -73.455932, - 45.526756 - ], - [ - -73.455896, - 45.52663 - ], - [ - -73.455652, - 45.525847 - ], - [ - -73.455602, - 45.525613 - ], - [ - -73.455589, - 45.525383 - ], - [ - -73.455612, - 45.525226 - ], - [ - -73.455654, - 45.525073 - ], - [ - -73.455815, - 45.524754 - ], - [ - -73.45592, - 45.524561 - ], - [ - -73.455992, - 45.52443 - ], - [ - -73.456517, - 45.523413 - ], - [ - -73.456595, - 45.52326 - ], - [ - -73.456778, - 45.522927 - ], - [ - -73.456973, - 45.52255 - ], - [ - -73.457039, - 45.522401 - ], - [ - -73.457075, - 45.522302 - ], - [ - -73.457107, - 45.52214 - ], - [ - -73.457118, - 45.521965 - ], - [ - -73.457108, - 45.521794 - ], - [ - -73.457056, - 45.521463 - ], - [ - -73.456999, - 45.5211 - ], - [ - -73.45699, - 45.521042 - ], - [ - -73.456859, - 45.520214 - ], - [ - -73.456859, - 45.520016 - ], - [ - -73.456867, - 45.519886 - ], - [ - -73.456897, - 45.519836 - ], - [ - -73.45694, - 45.519733 - ], - [ - -73.457021, - 45.519589 - ], - [ - -73.457071, - 45.519486 - ], - [ - -73.457177, - 45.519349 - ], - [ - -73.457268, - 45.519234 - ], - [ - -73.457332, - 45.519144 - ], - [ - -73.45752, - 45.518878 - ], - [ - -73.45768, - 45.518671 - ], - [ - -73.457816, - 45.518604 - ], - [ - -73.458054, - 45.518618 - ], - [ - -73.458153, - 45.5186 - ], - [ - -73.458265, - 45.518568 - ], - [ - -73.458385, - 45.518523 - ], - [ - -73.458481, - 45.51846 - ], - [ - -73.458593, - 45.518303 - ], - [ - -73.458982, - 45.517723 - ], - [ - -73.459414, - 45.517111 - ], - [ - -73.459867, - 45.516504 - ], - [ - -73.460323, - 45.515878 - ], - [ - -73.460719, - 45.515321 - ], - [ - -73.461115, - 45.51474 - ], - [ - -73.461665, - 45.513994 - ], - [ - -73.462213, - 45.514189 - ], - [ - -73.462602, - 45.514327 - ], - [ - -73.464082, - 45.514885 - ], - [ - -73.465757, - 45.515517 - ], - [ - -73.465949, - 45.515589 - ], - [ - -73.466056, - 45.515628 - ], - [ - -73.466138, - 45.51566 - ], - [ - -73.466232, - 45.515695 - ], - [ - -73.466464, - 45.515386 - ], - [ - -73.466616, - 45.515183 - ], - [ - -73.466795, - 45.514943 - ], - [ - -73.467735, - 45.513671 - ], - [ - -73.467821, - 45.513555 - ], - [ - -73.468294, - 45.512911 - ], - [ - -73.46871, - 45.512346 - ], - [ - -73.468744, - 45.5123 - ], - [ - -73.469443, - 45.511193 - ], - [ - -73.469555, - 45.511034 - ], - [ - -73.469846, - 45.510622 - ], - [ - -73.470521, - 45.509701 - ], - [ - -73.471066, - 45.508957 - ], - [ - -73.471144, - 45.508849 - ], - [ - -73.471529, - 45.5084 - ], - [ - -73.471611, - 45.508311 - ], - [ - -73.471717, - 45.508197 - ], - [ - -73.471961, - 45.507999 - ], - [ - -73.472233, - 45.507779 - ], - [ - -73.47263, - 45.507504 - ], - [ - -73.472934, - 45.507307 - ], - [ - -73.473074, - 45.507199 - ], - [ - -73.473158, - 45.507158 - ], - [ - -73.473577, - 45.506947 - ], - [ - -73.473945, - 45.506798 - ], - [ - -73.474313, - 45.506691 - ], - [ - -73.47466, - 45.506628 - ], - [ - -73.47498, - 45.506601 - ], - [ - -73.475233, - 45.506578 - ], - [ - -73.475525, - 45.506551 - ], - [ - -73.477372, - 45.506439 - ], - [ - -73.478813, - 45.506341 - ], - [ - -73.481594, - 45.506157 - ], - [ - -73.482058, - 45.506125 - ], - [ - -73.484736, - 45.50595 - ], - [ - -73.485056, - 45.505932 - ], - [ - -73.485154, - 45.505923 - ], - [ - -73.485457, - 45.505889 - ], - [ - -73.485514, - 45.505883 - ], - [ - -73.485664, - 45.505851 - ], - [ - -73.485863, - 45.505806 - ], - [ - -73.486064, - 45.505743 - ], - [ - -73.486538, - 45.505545 - ], - [ - -73.486574, - 45.505527 - ], - [ - -73.486885, - 45.505482 - ], - [ - -73.487023, - 45.505482 - ], - [ - -73.487147, - 45.505496 - ], - [ - -73.487216, - 45.505517 - ], - [ - -73.487307, - 45.505545 - ], - [ - -73.487659, - 45.505743 - ], - [ - -73.48774, - 45.50577 - ], - [ - -73.489183, - 45.506841 - ], - [ - -73.489373, - 45.507002 - ], - [ - -73.489401, - 45.507026 - ], - [ - -73.489582, - 45.507116 - ], - [ - -73.489923, - 45.507206 - ], - [ - -73.490235, - 45.507305 - ], - [ - -73.490409, - 45.507408 - ], - [ - -73.490538, - 45.507525 - ], - [ - -73.490647, - 45.50766 - ], - [ - -73.490946, - 45.50807 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491318, - 45.508448 - ], - [ - -73.491611, - 45.508785 - ], - [ - -73.491934, - 45.509114 - ], - [ - -73.492109, - 45.509276 - ], - [ - -73.492486, - 45.5096 - ], - [ - -73.492892, - 45.509906 - ], - [ - -73.492944, - 45.509941 - ], - [ - -73.493105, - 45.51005 - ], - [ - -73.493324, - 45.510189 - ], - [ - -73.493692, - 45.51041 - ], - [ - -73.494018, - 45.510585 - ], - [ - -73.494514, - 45.510828 - ], - [ - -73.495039, - 45.511049 - ], - [ - -73.495599, - 45.511256 - ], - [ - -73.496194, - 45.511454 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.500884, - 45.513009 - ], - [ - -73.50103, - 45.513055 - ], - [ - -73.501841, - 45.513343 - ], - [ - -73.501921, - 45.513375 - ], - [ - -73.502236, - 45.51351 - ], - [ - -73.503209, - 45.513879 - ], - [ - -73.504586, - 45.514346 - ], - [ - -73.505128, - 45.514485 - ], - [ - -73.505253, - 45.514517 - ], - [ - -73.505434, - 45.514562 - ], - [ - -73.505454, - 45.514325 - ], - [ - -73.505464, - 45.514054 - ], - [ - -73.505469, - 45.513811 - ], - [ - -73.50548, - 45.513717 - ], - [ - -73.505507, - 45.513609 - ], - [ - -73.505553, - 45.513433 - ], - [ - -73.505595, - 45.513348 - ], - [ - -73.506067, - 45.512799 - ], - [ - -73.506238, - 45.512601 - ], - [ - -73.506149, - 45.512565 - ], - [ - -73.505945, - 45.512487 - ], - [ - -73.505513, - 45.512322 - ], - [ - -73.504953, - 45.512101 - ], - [ - -73.504821, - 45.512052 - ], - [ - -73.503649, - 45.511597 - ], - [ - -73.503715, - 45.511503 - ], - [ - -73.504141, - 45.510959 - ], - [ - -73.504367, - 45.510653 - ], - [ - -73.504625, - 45.51032 - ], - [ - -73.504847, - 45.510018 - ], - [ - -73.505098, - 45.509672 - ], - [ - -73.505595, - 45.509024 - ], - [ - -73.505856, - 45.508673 - ], - [ - -73.506088, - 45.508371 - ], - [ - -73.503983, - 45.507589 - ], - [ - -73.503127, - 45.507268 - ], - [ - -73.50278, - 45.507139 - ], - [ - -73.502418, - 45.507008 - ], - [ - -73.502098, - 45.506896 - ], - [ - -73.502109, - 45.507332 - ], - [ - -73.502155, - 45.507742 - ], - [ - -73.503376, - 45.508201 - ], - [ - -73.50436, - 45.508565 - ] - ] - }, - "id": 313, - "properties": { - "id": "e8e3c03d-ccc4-4483-9797-4f369295b7d3", - "data": { - "gtfs": { - "shape_id": "570_1_A" - }, - "segments": [ - { - "distanceMeters": 218, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 86, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 92, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 61, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 1072, - "travelTimeSeconds": 147 - }, - { - "distanceMeters": 81, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 3192, - "travelTimeSeconds": 436 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 1303, - "travelTimeSeconds": 178 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13199, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5434.9109215417575, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.33, - "travelTimeWithoutDwellTimesSeconds": 1800, - "operatingTimeWithLayoverTimeSeconds": 1980, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1800, - "operatingSpeedWithLayoverMetersPerSecond": 6.67, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.33 - }, - "mode": "bus", - "name": "École St-Lambert Inter.", - "color": "#A32638", - "nodes": [ - "de69f95c-e485-42da-bcac-5eeb8a8928ad", - "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", - "0e37f239-15e7-41c5-a31a-ce2ad3dc4eae", - "2dda318d-8bf9-4860-b60d-6fcb1dd29156", - "576ef8c5-693c-4ae9-bb41-68685f43e174", - "210e532b-2acc-4a3e-b173-3471add098b1", - "8b3a553d-dad5-41ff-b228-80f338c4b0e0", - "25a5f82a-36a7-4a52-af2b-32a681f87765", - "231dda72-d4b5-48ae-b714-5ce9d3802c45", - "e5c2d9f4-1be6-458f-854f-8103a3048b8c", - "74325106-fd46-4be2-9872-2d362cabf10d", - "97fd6b08-e74d-4e78-a89d-1a8506473313", - "78852b27-6481-4593-91bd-0a0ac5e52bda", - "ed2d86bc-14d2-40cc-9b3c-fcf430af3d76", - "8990dfff-c24e-4da1-938f-d3124a8df164", - "b6aea660-191f-4c6f-a40e-a9dfada559a0", - "2b36885d-7487-45f3-88e4-95ced22c8df0", - "5251f580-cc4c-4e24-adc5-09ece02102d8", - "1f21bce0-b8ed-434c-ade7-9416eb8a180a", - "6ad75842-382c-44ee-b7d6-fd3532656bb0", - "90aff802-7f58-4407-a26e-45f80682eeaf", - "5360d4c3-b5aa-452d-a69b-73fcfc24260f", - "210e532b-2acc-4a3e-b173-3471add098b1", - "210e532b-2acc-4a3e-b173-3471add098b1", - "51637772-6b85-4c49-a14a-4de104a8f1f5", - "23ef9461-bbd0-492e-8678-c51238629a13", - "69483ac1-331d-4f0e-93b5-d8134f380763", - "da0ea2a1-8305-4096-84b5-3da6997f0293", - "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "51878141-1194-4666-977c-0597ee638ffb", - "0a078431-12d6-4e73-9908-076c3a27e8ed", - "e8c367ff-94d4-4335-8cfa-cd40d1ea983f", - "290dd81a-faeb-49a8-be84-7d76ab6dd7ef", - "c33924bc-c890-4a49-b330-6134b056dd6d", - "b9c0c47c-b605-460e-9360-3718e001061b", - "98268bc3-9f24-452e-8107-226a930051bc", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "5ca73944-03b3-4fca-ab1f-781dd6f959a4", - "ad783725-7edb-4c18-8b1a-a064301b213d", - "f9f88325-b670-4d47-91fa-edb372992bbc", - "e1a9e623-935b-47b9-a038-bcbd5a33f95e", - "a5b9648a-83c0-4eab-a54b-68c23aecae43", - "a9942a30-a6ad-484e-9e20-4748407133ba", - "2227a38f-9c32-4890-9719-eef7445fa1fc", - "3f77d417-9b8e-4514-8337-8fa9008d2cc7" - ], - "stops": [], - "line_id": "cd9d7c19-2e5d-4ed6-b8b6-b6d88d06591c", - "segments": [ - 0, - 5, - 8, - 12, - 15, - 21, - 29, - 41, - 43, - 53, - 56, - 60, - 63, - 72, - 79, - 82, - 86, - 89, - 95, - 101, - 112, - 125, - 131, - 134, - 140, - 144, - 160, - 165, - 170, - 175, - 180, - 187, - 196, - 204, - 206, - 215, - 225, - 247, - 252, - 255, - 258, - 331, - 338, - 348 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 313, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.50436, - 45.508565 - ], - [ - -73.505595, - 45.509024 - ], - [ - -73.505098, - 45.509672 - ], - [ - -73.504847, - 45.510018 - ], - [ - -73.504789, - 45.510096 - ], - [ - -73.504625, - 45.51032 - ], - [ - -73.504367, - 45.510653 - ], - [ - -73.504141, - 45.510959 - ], - [ - -73.503715, - 45.511503 - ], - [ - -73.503649, - 45.511597 - ], - [ - -73.50359, - 45.511574 - ], - [ - -73.503468, - 45.511526 - ], - [ - -73.503435, - 45.511575 - ], - [ - -73.5034, - 45.511633 - ], - [ - -73.502608, - 45.512875 - ], - [ - -73.502433, - 45.51315 - ], - [ - -73.502048, - 45.513078 - ], - [ - -73.501555, - 45.512938 - ], - [ - -73.501411, - 45.512898 - ], - [ - -73.50108, - 45.512799 - ], - [ - -73.500434, - 45.512596 - ], - [ - -73.499672, - 45.512346 - ], - [ - -73.499588, - 45.512318 - ], - [ - -73.498752, - 45.512058 - ], - [ - -73.498536, - 45.511994 - ], - [ - -73.498219, - 45.511893 - ], - [ - -73.498206, - 45.511888 - ], - [ - -73.497589, - 45.511692 - ], - [ - -73.497489, - 45.511657 - ], - [ - -73.496919, - 45.511546 - ], - [ - -73.496096, - 45.511283 - ], - [ - -73.495565, - 45.511107 - ], - [ - -73.495059, - 45.510918 - ], - [ - -73.494579, - 45.510716 - ], - [ - -73.494122, - 45.510491 - ], - [ - -73.494028, - 45.51044 - ], - [ - -73.493683, - 45.510252 - ], - [ - -73.493267, - 45.509991 - ], - [ - -73.492868, - 45.509712 - ], - [ - -73.492676, - 45.509564 - ], - [ - -73.4923, - 45.509258 - ], - [ - -73.491951, - 45.508929 - ], - [ - -73.49179, - 45.508763 - ], - [ - -73.491635, - 45.508592 - ], - [ - -73.491347, - 45.508236 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491046, - 45.507633 - ], - [ - -73.490915, - 45.507377 - ], - [ - -73.490797, - 45.507111 - ], - [ - -73.490589, - 45.506522 - ], - [ - -73.490582, - 45.506392 - ], - [ - -73.490603, - 45.506248 - ], - [ - -73.490612, - 45.506221 - ], - [ - -73.490644, - 45.506122 - ], - [ - -73.490698, - 45.506027 - ], - [ - -73.490768, - 45.505915 - ], - [ - -73.490822, - 45.505811 - ], - [ - -73.490899, - 45.505685 - ], - [ - -73.490958, - 45.505564 - ], - [ - -73.49098, - 45.505478 - ], - [ - -73.490984, - 45.505388 - ], - [ - -73.49099, - 45.505289 - ], - [ - -73.490975, - 45.505204 - ], - [ - -73.490939, - 45.5051 - ], - [ - -73.490875, - 45.505001 - ], - [ - -73.490827, - 45.504929 - ], - [ - -73.490753, - 45.504853 - ], - [ - -73.490691, - 45.504799 - ], - [ - -73.49061, - 45.504736 - ], - [ - -73.490474, - 45.504655 - ], - [ - -73.49045, - 45.504645 - ], - [ - -73.490291, - 45.504578 - ], - [ - -73.490131, - 45.504538 - ], - [ - -73.489983, - 45.504511 - ], - [ - -73.489875, - 45.504502 - ], - [ - -73.489861, - 45.504497 - ], - [ - -73.489704, - 45.504493 - ], - [ - -73.489544, - 45.504502 - ], - [ - -73.489342, - 45.50452 - ], - [ - -73.489018, - 45.504573 - ], - [ - -73.488616, - 45.504623 - ], - [ - -73.488197, - 45.504686 - ], - [ - -73.488066, - 45.504722 - ], - [ - -73.487867, - 45.504781 - ], - [ - -73.487713, - 45.504835 - ], - [ - -73.48741, - 45.50497 - ], - [ - -73.486959, - 45.505194 - ], - [ - -73.486552, - 45.505388 - ], - [ - -73.486271, - 45.505518 - ], - [ - -73.485954, - 45.505644 - ], - [ - -73.485749, - 45.505712 - ], - [ - -73.485554, - 45.505757 - ], - [ - -73.48532, - 45.505797 - ], - [ - -73.484714, - 45.505833 - ], - [ - -73.483377, - 45.505927 - ], - [ - -73.482071, - 45.506076 - ], - [ - -73.481729, - 45.506125 - ], - [ - -73.481594, - 45.506157 - ], - [ - -73.478813, - 45.506341 - ], - [ - -73.477372, - 45.506439 - ], - [ - -73.475525, - 45.506551 - ], - [ - -73.475233, - 45.506578 - ], - [ - -73.47498, - 45.506601 - ], - [ - -73.47466, - 45.506628 - ], - [ - -73.474313, - 45.506691 - ], - [ - -73.473945, - 45.506798 - ], - [ - -73.473577, - 45.506947 - ], - [ - -73.473158, - 45.507158 - ], - [ - -73.473074, - 45.507199 - ], - [ - -73.472806, - 45.507302 - ], - [ - -73.472546, - 45.507455 - ], - [ - -73.47229, - 45.507603 - ], - [ - -73.472121, - 45.507711 - ], - [ - -73.471621, - 45.508134 - ], - [ - -73.471413, - 45.508341 - ], - [ - -73.470997, - 45.508809 - ], - [ - -73.470932, - 45.508894 - ], - [ - -73.470366, - 45.509655 - ], - [ - -73.470032, - 45.510114 - ], - [ - -73.46959, - 45.510721 - ], - [ - -73.469434, - 45.510905 - ], - [ - -73.469378, - 45.510967 - ], - [ - -73.469091, - 45.511282 - ], - [ - -73.468985, - 45.5114 - ], - [ - -73.468432, - 45.512155 - ], - [ - -73.468415, - 45.512178 - ], - [ - -73.4665, - 45.514843 - ], - [ - -73.466445, - 45.514919 - ], - [ - -73.466167, - 45.515339 - ], - [ - -73.466151, - 45.515363 - ], - [ - -73.465949, - 45.515589 - ], - [ - -73.465471, - 45.515409 - ], - [ - -73.464082, - 45.514885 - ], - [ - -73.463054, - 45.514498 - ], - [ - -73.462602, - 45.514327 - ], - [ - -73.461665, - 45.513994 - ], - [ - -73.460554, - 45.513588 - ], - [ - -73.460309, - 45.513921 - ], - [ - -73.460004, - 45.514335 - ], - [ - -73.4596, - 45.514906 - ], - [ - -73.459186, - 45.515487 - ], - [ - -73.458735, - 45.516089 - ], - [ - -73.458292, - 45.516701 - ], - [ - -73.457868, - 45.517317 - ], - [ - -73.457427, - 45.517884 - ], - [ - -73.457318, - 45.518118 - ], - [ - -73.457329, - 45.518248 - ], - [ - -73.457353, - 45.518325 - ], - [ - -73.457425, - 45.518415 - ], - [ - -73.457485, - 45.518468 - ], - [ - -73.457496, - 45.518478 - ], - [ - -73.457557, - 45.518527 - ], - [ - -73.457569, - 45.518527 - ], - [ - -73.457551, - 45.518635 - ], - [ - -73.457265, - 45.519027 - ], - [ - -73.457212, - 45.51909 - ], - [ - -73.457149, - 45.51918 - ], - [ - -73.456893, - 45.519549 - ], - [ - -73.456858, - 45.51961 - ], - [ - -73.456808, - 45.519697 - ], - [ - -73.456763, - 45.519809 - ], - [ - -73.456747, - 45.519998 - ], - [ - -73.456743, - 45.520169 - ], - [ - -73.456867, - 45.52096 - ], - [ - -73.456881, - 45.521051 - ], - [ - -73.456916, - 45.521245 - ], - [ - -73.457007, - 45.521798 - ], - [ - -73.457018, - 45.521965 - ], - [ - -73.457007, - 45.522131 - ], - [ - -73.456977, - 45.522289 - ], - [ - -73.456948, - 45.522368 - ], - [ - -73.456942, - 45.522383 - ], - [ - -73.456878, - 45.522527 - ], - [ - -73.456684, - 45.5229 - ], - [ - -73.456572, - 45.523105 - ], - [ - -73.456502, - 45.523233 - ], - [ - -73.45597, - 45.524243 - ], - [ - -73.455885, - 45.524403 - ], - [ - -73.455699, - 45.524754 - ], - [ - -73.45556, - 45.52506 - ], - [ - -73.455515, - 45.525217 - ], - [ - -73.455492, - 45.525379 - ], - [ - -73.455505, - 45.525617 - ], - [ - -73.455556, - 45.52586 - ], - [ - -73.455725, - 45.526441 - ], - [ - -73.455732, - 45.526465 - ], - [ - -73.455785, - 45.526648 - ], - [ - -73.456034, - 45.52748 - ], - [ - -73.456081, - 45.527705 - ], - [ - -73.456084, - 45.527948 - ], - [ - -73.45603, - 45.528196 - ], - [ - -73.455955, - 45.528344 - ], - [ - -73.455795, - 45.528551 - ], - [ - -73.455584, - 45.528805 - ], - [ - -73.455542, - 45.528856 - ], - [ - -73.455189, - 45.52928 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.4548, - 45.529215 - ], - [ - -73.454681, - 45.529165 - ], - [ - -73.453608, - 45.528719 - ], - [ - -73.452464, - 45.528243 - ], - [ - -73.452419, - 45.528224 - ], - [ - -73.452095, - 45.528089 - ], - [ - -73.451849, - 45.527987 - ], - [ - -73.449888, - 45.527218 - ], - [ - -73.449586, - 45.5271 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.449239, - 45.527747 - ], - [ - -73.449102, - 45.528009 - ], - [ - -73.448776, - 45.528634 - ], - [ - -73.448473, - 45.529254 - ], - [ - -73.448445, - 45.529313 - ], - [ - -73.448085, - 45.530001 - ], - [ - -73.448024, - 45.530118 - ], - [ - -73.447862, - 45.53032 - ], - [ - -73.447635, - 45.530477 - ], - [ - -73.447543, - 45.530541 - ], - [ - -73.447385, - 45.530442 - ], - [ - -73.447236, - 45.530379 - ], - [ - -73.447213, - 45.530371 - ], - [ - -73.44713, - 45.530342 - ], - [ - -73.44702, - 45.530311 - ], - [ - -73.446897, - 45.530293 - ], - [ - -73.446778, - 45.530284 - ], - [ - -73.446722, - 45.530284 - ], - [ - -73.446558, - 45.530297 - ], - [ - -73.446426, - 45.53032 - ], - [ - -73.446303, - 45.53036 - ], - [ - -73.446188, - 45.530392 - ], - [ - -73.446163, - 45.530402 - ], - [ - -73.446078, - 45.530436 - ], - [ - -73.445986, - 45.530495 - ], - [ - -73.445934, - 45.530553 - ], - [ - -73.44588, - 45.530594 - ], - [ - -73.445655, - 45.53081 - ], - [ - -73.445416, - 45.531246 - ], - [ - -73.445297, - 45.531605 - ], - [ - -73.445262, - 45.531714 - ], - [ - -73.445217, - 45.531876 - ], - [ - -73.445159, - 45.532011 - ], - [ - -73.445133, - 45.532069 - ], - [ - -73.44472, - 45.532816 - ], - [ - -73.444441, - 45.533378 - ], - [ - -73.44412, - 45.533969 - ], - [ - -73.444063, - 45.534075 - ], - [ - -73.443989, - 45.534201 - ], - [ - -73.444489, - 45.534346 - ], - [ - -73.444931, - 45.53453 - ], - [ - -73.445118, - 45.534611 - ], - [ - -73.445446, - 45.534818 - ], - [ - -73.445653, - 45.534958 - ], - [ - -73.445829, - 45.535111 - ], - [ - -73.44602, - 45.535292 - ], - [ - -73.446079, - 45.535349 - ], - [ - -73.44617, - 45.535435 - ], - [ - -73.446275, - 45.535528 - ], - [ - -73.446362, - 45.535606 - ], - [ - -73.446623, - 45.535795 - ], - [ - -73.446833, - 45.535908 - ], - [ - -73.447009, - 45.53598 - ], - [ - -73.447135, - 45.536029 - ], - [ - -73.447379, - 45.536097 - ], - [ - -73.448323, - 45.536304 - ], - [ - -73.448623, - 45.536399 - ], - [ - -73.448778, - 45.53649 - ], - [ - -73.448898, - 45.536561 - ], - [ - -73.450389, - 45.537452 - ], - [ - -73.450563, - 45.537556 - ], - [ - -73.450772, - 45.537669 - ], - [ - -73.450923, - 45.537718 - ], - [ - -73.450952, - 45.537727 - ], - [ - -73.451166, - 45.537772 - ], - [ - -73.451401, - 45.537795 - ], - [ - -73.451627, - 45.537786 - ], - [ - -73.452059, - 45.537741 - ], - [ - -73.452406, - 45.537715 - ], - [ - -73.452711, - 45.537692 - ], - [ - -73.45287, - 45.537695 - ], - [ - -73.452931, - 45.537697 - ], - [ - -73.453038, - 45.53771 - ], - [ - -73.452921, - 45.538368 - ], - [ - -73.452904, - 45.538462 - ], - [ - -73.452804, - 45.539091 - ], - [ - -73.452722, - 45.539691 - ], - [ - -73.452717, - 45.539726 - ], - [ - -73.452594, - 45.540342 - ], - [ - -73.452363, - 45.540779 - ], - [ - -73.45227, - 45.540954 - ], - [ - -73.452075, - 45.541179 - ], - [ - -73.45197, - 45.541296 - ], - [ - -73.451796, - 45.541426 - ], - [ - -73.451437, - 45.541633 - ], - [ - -73.451233, - 45.541718 - ], - [ - -73.450967, - 45.541781 - ], - [ - -73.450741, - 45.541822 - ], - [ - -73.45064, - 45.541826 - ], - [ - -73.450524, - 45.54183 - ], - [ - -73.450532, - 45.54192 - ], - [ - -73.450512, - 45.542105 - ], - [ - -73.450477, - 45.54224 - ], - [ - -73.449919, - 45.542604 - ], - [ - -73.449268, - 45.543031 - ], - [ - -73.448887, - 45.543274 - ], - [ - -73.448583, - 45.543467 - ], - [ - -73.448371, - 45.543303 - ], - [ - -73.448058, - 45.543062 - ], - [ - -73.447976, - 45.542999 - ], - [ - -73.447904, - 45.542944 - ], - [ - -73.447355, - 45.542526 - ], - [ - -73.446881, - 45.542184 - ], - [ - -73.446733, - 45.542076 - ], - [ - -73.446124, - 45.541621 - ], - [ - -73.4456, - 45.541215 - ], - [ - -73.445503, - 45.54114 - ], - [ - -73.444511, - 45.54041 - ], - [ - -73.444375, - 45.540325 - ], - [ - -73.444216, - 45.540244 - ], - [ - -73.44408, - 45.540185 - ], - [ - -73.443867, - 45.540133 - ], - [ - -73.44377, - 45.540109 - ], - [ - -73.4435, - 45.540041 - ], - [ - -73.44267, - 45.539892 - ], - [ - -73.442456, - 45.539852 - ], - [ - -73.442205, - 45.539784 - ], - [ - -73.442141, - 45.539761 - ], - [ - -73.442001, - 45.539712 - ], - [ - -73.441896, - 45.53968 - ], - [ - -73.441646, - 45.539559 - ], - [ - -73.44151, - 45.539487 - ], - [ - -73.441387, - 45.539397 - ], - [ - -73.441242, - 45.539293 - ], - [ - -73.441122, - 45.539153 - ], - [ - -73.441004, - 45.538991 - ], - [ - -73.440944, - 45.538829 - ], - [ - -73.440917, - 45.538748 - ], - [ - -73.440908, - 45.538662 - ], - [ - -73.440902, - 45.5386 - ], - [ - -73.440899, - 45.538573 - ], - [ - -73.440907, - 45.538487 - ], - [ - -73.440917, - 45.538393 - ], - [ - -73.440957, - 45.538285 - ], - [ - -73.441023, - 45.538164 - ], - [ - -73.441098, - 45.538047 - ], - [ - -73.4412, - 45.537934 - ], - [ - -73.441569, - 45.537651 - ], - [ - -73.441939, - 45.537372 - ], - [ - -73.442459, - 45.537008 - ], - [ - -73.442686, - 45.536815 - ], - [ - -73.442791, - 45.536663 - ], - [ - -73.442839, - 45.536594 - ], - [ - -73.44311, - 45.535924 - ], - [ - -73.443379, - 45.535204 - ], - [ - -73.443894, - 45.534372 - ], - [ - -73.44395, - 45.534271 - ], - [ - -73.443951, - 45.53427 - ], - [ - -73.443989, - 45.534201 - ], - [ - -73.444063, - 45.534075 - ], - [ - -73.443132, - 45.533854 - ], - [ - -73.443002, - 45.533823 - ], - [ - -73.442012, - 45.533579 - ], - [ - -73.441709, - 45.533503 - ], - [ - -73.441658, - 45.533491 - ], - [ - -73.441109, - 45.53336 - ], - [ - -73.440969, - 45.533327 - ], - [ - -73.439773, - 45.533026 - ], - [ - -73.439556, - 45.532972 - ], - [ - -73.439429, - 45.532941 - ], - [ - -73.439309, - 45.532912 - ], - [ - -73.440138, - 45.531012 - ], - [ - -73.440178, - 45.530918 - ], - [ - -73.440526, - 45.530139 - ], - [ - -73.440983, - 45.529116 - ] - ] - }, - "id": 314, - "properties": { - "id": "819034f7-7a27-4b9f-9e74-8dfe87b9def9", - "data": { - "gtfs": { - "shape_id": "570_2_R" - }, - "segments": [ - { - "distanceMeters": 244, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 476, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 3202, - "travelTimeSeconds": 466 - }, - { - "distanceMeters": 335, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 61, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 826, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 87, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 93, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 33 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12361, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5434.9109215417575, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.87, - "travelTimeWithoutDwellTimesSeconds": 1800, - "operatingTimeWithLayoverTimeSeconds": 1980, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1800, - "operatingSpeedWithLayoverMetersPerSecond": 6.24, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.87 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "3f77d417-9b8e-4514-8337-8fa9008d2cc7", - "3035cba8-14ef-4eb7-b986-fc36588b4fe9", - "f4f29738-df3f-4d69-8632-9088ded0dc5a", - "741876fc-030a-42f6-a33a-8f1f9c2aba12", - "688a3f67-a176-441e-a399-c92a55de9c74", - "e1a9e623-935b-47b9-a038-bcbd5a33f95e", - "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", - "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", - "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", - "6fe3defb-8d6f-405c-8fb2-44b73532b240", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "98268bc3-9f24-452e-8107-226a930051bc", - "b9c0c47c-b605-460e-9360-3718e001061b", - "c33924bc-c890-4a49-b330-6134b056dd6d", - "290dd81a-faeb-49a8-be84-7d76ab6dd7ef", - "cdd96034-dead-4f68-a8ed-c24b98b781eb", - "6e83e147-802a-4695-95f3-96585bd15c4a", - "51878141-1194-4666-977c-0597ee638ffb", - "83cbcc26-a35c-4db6-a784-03a152cb9d6f", - "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "da0ea2a1-8305-4096-84b5-3da6997f0293", - "69483ac1-331d-4f0e-93b5-d8134f380763", - "23ef9461-bbd0-492e-8678-c51238629a13", - "51637772-6b85-4c49-a14a-4de104a8f1f5", - "210e532b-2acc-4a3e-b173-3471add098b1", - "8b3a553d-dad5-41ff-b228-80f338c4b0e0", - "25a5f82a-36a7-4a52-af2b-32a681f87765", - "231dda72-d4b5-48ae-b714-5ce9d3802c45", - "e5c2d9f4-1be6-458f-854f-8103a3048b8c", - "74325106-fd46-4be2-9872-2d362cabf10d", - "97fd6b08-e74d-4e78-a89d-1a8506473313", - "78852b27-6481-4593-91bd-0a0ac5e52bda", - "ed2d86bc-14d2-40cc-9b3c-fcf430af3d76", - "8990dfff-c24e-4da1-938f-d3124a8df164", - "b6aea660-191f-4c6f-a40e-a9dfada559a0", - "2b36885d-7487-45f3-88e4-95ced22c8df0", - "5251f580-cc4c-4e24-adc5-09ece02102d8", - "1f21bce0-b8ed-434c-ade7-9416eb8a180a", - "6ad75842-382c-44ee-b7d6-fd3532656bb0", - "90aff802-7f58-4407-a26e-45f80682eeaf", - "5360d4c3-b5aa-452d-a69b-73fcfc24260f", - "210e532b-2acc-4a3e-b173-3471add098b1", - "576ef8c5-693c-4ae9-bb41-68685f43e174", - "2dda318d-8bf9-4860-b60d-6fcb1dd29156", - "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", - "de69f95c-e485-42da-bcac-5eeb8a8928ad" - ], - "stops": [], - "line_id": "cd9d7c19-2e5d-4ed6-b8b6-b6d88d06591c", - "segments": [ - 0, - 4, - 17, - 21, - 25, - 124, - 126, - 128, - 133, - 149, - 158, - 163, - 174, - 176, - 185, - 193, - 198, - 200, - 204, - 208, - 210, - 215, - 229, - 236, - 243, - 252, - 264, - 266, - 277, - 280, - 283, - 286, - 295, - 302, - 305, - 309, - 312, - 318, - 324, - 335, - 348, - 354, - 362, - 366, - 368 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 314, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.46482, - 45.526263 - ], - [ - -73.464731, - 45.526435 - ], - [ - -73.463642, - 45.528469 - ], - [ - -73.462723, - 45.530186 - ], - [ - -73.462624, - 45.530371 - ], - [ - -73.462437, - 45.530708 - ], - [ - -73.462358, - 45.530861 - ], - [ - -73.46217, - 45.531262 - ], - [ - -73.461938, - 45.531653 - ], - [ - -73.461711, - 45.531982 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.462024, - 45.532625 - ], - [ - -73.462751, - 45.533003 - ], - [ - -73.463688, - 45.533556 - ], - [ - -73.463873, - 45.533665 - ], - [ - -73.464875, - 45.534543 - ], - [ - -73.46573, - 45.535331 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.468515, - 45.536979 - ], - [ - -73.468799, - 45.537046 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.469167, - 45.536827 - ], - [ - -73.470119, - 45.535066 - ], - [ - -73.470158, - 45.534994 - ], - [ - -73.471258, - 45.532956 - ], - [ - -73.471309, - 45.532862 - ], - [ - -73.472404, - 45.530828 - ], - [ - -73.47246, - 45.530725 - ], - [ - -73.473541, - 45.528698 - ], - [ - -73.4736, - 45.528588 - ], - [ - -73.474477, - 45.526966 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.474288, - 45.526314 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.474181, - 45.526055 - ], - [ - -73.474038, - 45.525457 - ], - [ - -73.474012, - 45.525344 - ], - [ - -73.473793, - 45.524566 - ], - [ - -73.47377, - 45.524471 - ], - [ - -73.47381, - 45.524417 - ], - [ - -73.473749, - 45.524215 - ], - [ - -73.473762, - 45.524053 - ], - [ - -73.473933, - 45.523816 - ], - [ - -73.474023, - 45.523693 - ], - [ - -73.474526, - 45.522973 - ], - [ - -73.474886, - 45.522492 - ], - [ - -73.474964, - 45.522388 - ], - [ - -73.475294, - 45.521907 - ], - [ - -73.475434, - 45.521732 - ], - [ - -73.476013, - 45.520938 - ], - [ - -73.476081, - 45.520845 - ], - [ - -73.476473, - 45.520306 - ], - [ - -73.47673, - 45.519943 - ], - [ - -73.47683, - 45.519802 - ], - [ - -73.477254, - 45.51923 - ], - [ - -73.477545, - 45.518801 - ], - [ - -73.477613, - 45.5187 - ], - [ - -73.478269, - 45.517795 - ], - [ - -73.478444, - 45.517559 - ], - [ - -73.478676, - 45.517242 - ], - [ - -73.479272, - 45.517448 - ], - [ - -73.479419, - 45.517499 - ], - [ - -73.480625, - 45.517916 - ], - [ - -73.481238, - 45.518128 - ], - [ - -73.481775, - 45.518314 - ], - [ - -73.481931, - 45.518367 - ], - [ - -73.48228, - 45.51849 - ], - [ - -73.482651, - 45.51862 - ], - [ - -73.484182, - 45.519156 - ], - [ - -73.484224, - 45.519171 - ], - [ - -73.484736, - 45.51935 - ], - [ - -73.484886, - 45.519403 - ], - [ - -73.487078, - 45.520163 - ], - [ - -73.487381, - 45.520268 - ], - [ - -73.487508, - 45.520312 - ], - [ - -73.487663, - 45.520079 - ], - [ - -73.487872, - 45.519763 - ], - [ - -73.488237, - 45.519187 - ], - [ - -73.4885, - 45.518792 - ], - [ - -73.488593, - 45.518652 - ], - [ - -73.488968, - 45.518103 - ], - [ - -73.489152, - 45.517788 - ], - [ - -73.489531, - 45.517225 - ], - [ - -73.489606, - 45.517113 - ], - [ - -73.49002, - 45.51647 - ], - [ - -73.490427, - 45.515876 - ], - [ - -73.490774, - 45.51537 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.491255, - 45.514612 - ], - [ - -73.491732, - 45.513901 - ], - [ - -73.492127, - 45.513303 - ], - [ - -73.492199, - 45.513195 - ], - [ - -73.49237, - 45.512938 - ], - [ - -73.492639, - 45.51252 - ], - [ - -73.493081, - 45.511867 - ], - [ - -73.493369, - 45.51144 - ], - [ - -73.493492, - 45.51125 - ], - [ - -73.493538, - 45.511179 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494003, - 45.510501 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.494126, - 45.510288 - ], - [ - -73.494238, - 45.510104 - ], - [ - -73.49438, - 45.509924 - ], - [ - -73.494493, - 45.509856 - ], - [ - -73.494824, - 45.509636 - ], - [ - -73.495154, - 45.509415 - ], - [ - -73.495498, - 45.509177 - ], - [ - -73.495814, - 45.508956 - ], - [ - -73.496204, - 45.508655 - ], - [ - -73.496376, - 45.508511 - ], - [ - -73.496824, - 45.508111 - ], - [ - -73.497233, - 45.508623 - ], - [ - -73.497769, - 45.509294 - ], - [ - -73.498065, - 45.509586 - ], - [ - -73.498161, - 45.50968 - ], - [ - -73.498287, - 45.509766 - ], - [ - -73.49839, - 45.509813 - ], - [ - -73.498525, - 45.509874 - ], - [ - -73.498839, - 45.509996 - ], - [ - -73.49986, - 45.510306 - ], - [ - -73.50032, - 45.51045 - ], - [ - -73.50064, - 45.510554 - ], - [ - -73.500724, - 45.510581 - ], - [ - -73.501152, - 45.51072 - ], - [ - -73.501574, - 45.510855 - ], - [ - -73.501949, - 45.510981 - ], - [ - -73.502532, - 45.511175 - ], - [ - -73.50299, - 45.511323 - ], - [ - -73.503113, - 45.511377 - ], - [ - -73.503371, - 45.511485 - ], - [ - -73.503468, - 45.511526 - ], - [ - -73.50359, - 45.511574 - ], - [ - -73.503649, - 45.511597 - ], - [ - -73.503715, - 45.511503 - ], - [ - -73.504141, - 45.510959 - ], - [ - -73.504367, - 45.510653 - ], - [ - -73.504625, - 45.51032 - ], - [ - -73.504847, - 45.510018 - ], - [ - -73.505098, - 45.509672 - ], - [ - -73.505595, - 45.509024 - ], - [ - -73.505856, - 45.508673 - ], - [ - -73.506088, - 45.508371 - ], - [ - -73.503983, - 45.507589 - ], - [ - -73.503107, - 45.507261 - ], - [ - -73.50278, - 45.507139 - ], - [ - -73.502418, - 45.507008 - ], - [ - -73.502098, - 45.506896 - ], - [ - -73.502109, - 45.507332 - ], - [ - -73.502155, - 45.507742 - ], - [ - -73.503376, - 45.508201 - ], - [ - -73.50436, - 45.508565 - ] - ] - }, - "id": 315, - "properties": { - "id": "e3c97675-52af-4cf2-a3ea-62308f7dd502", - "data": { - "gtfs": { - "shape_id": "572_1_A" - }, - "segments": [ - { - "distanceMeters": 262, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 96, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 668, - "travelTimeSeconds": 110 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 1072, - "travelTimeSeconds": 177 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8010, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3639.1359608005982, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.07, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 5.34, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.07 - }, - "mode": "bus", - "name": "École St-Lambert Inter.", - "color": "#A32638", - "nodes": [ - "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", - "6beffd5a-a5e7-4808-863a-90505f6172be", - "8746746f-daed-4d54-a90f-724d51454ae1", - "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "1e4facbf-29da-4515-97c4-4ef86c22290e", - "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", - "06d26eca-08e9-467e-9ff0-9595778162a0", - "523fb848-4048-4ab2-8e1c-32aab05ea63f", - "c2c8c1e8-4373-4b59-91c6-b04f7c4c1d76", - "eba98b16-12e9-4172-bbf2-62d1e69950a5", - "e709ab81-b01c-47b3-a19c-63757b8320b0", - "98c75cb8-58bc-4128-adc4-4f1198e685a1", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "f4167a64-c457-459d-9c74-9540f2c76889", - "75f82802-187b-4386-b435-5da7ab066898", - "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", - "bad427d3-2698-4efd-8d52-2bc92f049d64", - "242c7269-ce0d-45c7-8356-927308e89900", - "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", - "40cc5489-ce8f-4df1-916b-c682450d39d7", - "e9c79425-c47b-44ec-82ff-b480b97ceae7", - "e31a1f56-4ede-4f4f-a7a7-2fdbee444a41", - "88e6eee9-3b8c-474d-aeb4-599447d404be", - "ee7545d3-966c-460d-94a1-5e0d16623919", - "e88f5f2a-b0b5-4bb5-afb4-833f49fbaeea", - "315b8823-6c3a-493b-9af5-7325cbc48096", - "d76fa63a-1787-4749-9166-b1ecce1f4af2", - "5d573c90-ed41-4ac1-9f58-abc862e00f93", - "a331dc32-b29f-4455-9199-5b289acc7d53", - "a73a9d8f-0a4d-4f45-8ed5-05aa8ce7acde", - "0f0a758f-b2db-4611-9b64-d413bfce8846", - "3f77d417-9b8e-4514-8337-8fa9008d2cc7" - ], - "stops": [], - "line_id": "f3b41a7d-b664-4a6f-af72-56132e21bae0", - "segments": [ - 0, - 2, - 3, - 9, - 13, - 15, - 18, - 29, - 33, - 35, - 37, - 39, - 41, - 43, - 46, - 53, - 56, - 60, - 63, - 66, - 69, - 75, - 81, - 84, - 89, - 93, - 97, - 101, - 107, - 128, - 133, - 141 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 315, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.50436, - 45.508565 - ], - [ - -73.505595, - 45.509024 - ], - [ - -73.505098, - 45.509672 - ], - [ - -73.504847, - 45.510018 - ], - [ - -73.504789, - 45.510097 - ], - [ - -73.504625, - 45.51032 - ], - [ - -73.504367, - 45.510653 - ], - [ - -73.504141, - 45.510959 - ], - [ - -73.503715, - 45.511503 - ], - [ - -73.503649, - 45.511597 - ], - [ - -73.50359, - 45.511574 - ], - [ - -73.503468, - 45.511526 - ], - [ - -73.503351, - 45.511477 - ], - [ - -73.503113, - 45.511377 - ], - [ - -73.50299, - 45.511323 - ], - [ - -73.502532, - 45.511175 - ], - [ - -73.501949, - 45.510981 - ], - [ - -73.501574, - 45.510855 - ], - [ - -73.501152, - 45.51072 - ], - [ - -73.500932, - 45.510649 - ], - [ - -73.500724, - 45.510581 - ], - [ - -73.50032, - 45.51045 - ], - [ - -73.49986, - 45.510306 - ], - [ - -73.498839, - 45.509996 - ], - [ - -73.498525, - 45.509874 - ], - [ - -73.498287, - 45.509766 - ], - [ - -73.498266, - 45.509752 - ], - [ - -73.498161, - 45.50968 - ], - [ - -73.498065, - 45.509586 - ], - [ - -73.497769, - 45.509294 - ], - [ - -73.496956, - 45.508276 - ], - [ - -73.496824, - 45.508111 - ], - [ - -73.496446, - 45.508449 - ], - [ - -73.496376, - 45.508511 - ], - [ - -73.496204, - 45.508655 - ], - [ - -73.495814, - 45.508956 - ], - [ - -73.495498, - 45.509177 - ], - [ - -73.495154, - 45.509415 - ], - [ - -73.494824, - 45.509636 - ], - [ - -73.494493, - 45.509856 - ], - [ - -73.49438, - 45.509924 - ], - [ - -73.494238, - 45.510104 - ], - [ - -73.494126, - 45.510288 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.494003, - 45.510501 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.493538, - 45.511179 - ], - [ - -73.493369, - 45.51144 - ], - [ - -73.493081, - 45.511867 - ], - [ - -73.492639, - 45.51252 - ], - [ - -73.49237, - 45.512938 - ], - [ - -73.492199, - 45.513195 - ], - [ - -73.491788, - 45.513815 - ], - [ - -73.491732, - 45.513901 - ], - [ - -73.491255, - 45.514612 - ], - [ - -73.490909, - 45.515164 - ], - [ - -73.490838, - 45.515278 - ], - [ - -73.490427, - 45.515876 - ], - [ - -73.49002, - 45.51647 - ], - [ - -73.489682, - 45.516995 - ], - [ - -73.489606, - 45.517113 - ], - [ - -73.489152, - 45.517788 - ], - [ - -73.488968, - 45.518103 - ], - [ - -73.488671, - 45.518538 - ], - [ - -73.488593, - 45.518652 - ], - [ - -73.488237, - 45.519187 - ], - [ - -73.487872, - 45.519763 - ], - [ - -73.487595, - 45.52018 - ], - [ - -73.487508, - 45.520312 - ], - [ - -73.487078, - 45.520163 - ], - [ - -73.486949, - 45.520118 - ], - [ - -73.484992, - 45.519439 - ], - [ - -73.484886, - 45.519403 - ], - [ - -73.484224, - 45.519171 - ], - [ - -73.484182, - 45.519156 - ], - [ - -73.482651, - 45.51862 - ], - [ - -73.48228, - 45.51849 - ], - [ - -73.482077, - 45.518419 - ], - [ - -73.481931, - 45.518367 - ], - [ - -73.481238, - 45.518128 - ], - [ - -73.480625, - 45.517916 - ], - [ - -73.479419, - 45.517499 - ], - [ - -73.478857, - 45.517304 - ], - [ - -73.478676, - 45.517242 - ], - [ - -73.478434, - 45.517572 - ], - [ - -73.478269, - 45.517795 - ], - [ - -73.47767, - 45.518621 - ], - [ - -73.477613, - 45.5187 - ], - [ - -73.477254, - 45.51923 - ], - [ - -73.4769, - 45.519708 - ], - [ - -73.47683, - 45.519802 - ], - [ - -73.476473, - 45.520306 - ], - [ - -73.476155, - 45.520743 - ], - [ - -73.476081, - 45.520845 - ], - [ - -73.475434, - 45.521732 - ], - [ - -73.475294, - 45.521907 - ], - [ - -73.474993, - 45.522346 - ], - [ - -73.474964, - 45.522388 - ], - [ - -73.474526, - 45.522973 - ], - [ - -73.474023, - 45.523693 - ], - [ - -73.473883, - 45.523886 - ], - [ - -73.473762, - 45.524053 - ], - [ - -73.473573, - 45.524314 - ], - [ - -73.473363, - 45.524597 - ], - [ - -73.4729, - 45.52524 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.473054, - 45.525801 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.474459, - 45.526384 - ], - [ - -73.474658, - 45.526466 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.473643, - 45.528509 - ], - [ - -73.4736, - 45.528588 - ], - [ - -73.472501, - 45.530647 - ], - [ - -73.47246, - 45.530725 - ], - [ - -73.47136, - 45.532766 - ], - [ - -73.471309, - 45.532862 - ], - [ - -73.470213, - 45.534894 - ], - [ - -73.470158, - 45.534994 - ], - [ - -73.469172, - 45.536818 - ], - [ - -73.469167, - 45.536827 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.46869, - 45.536831 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466191, - 45.535482 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.46413, - 45.533601 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.462106, - 45.531887 - ], - [ - -73.462411, - 45.531442 - ], - [ - -73.462842, - 45.53064 - ], - [ - -73.462938, - 45.530461 - ], - [ - -73.463971, - 45.528556 - ], - [ - -73.465095, - 45.526481 - ] - ] - }, - "id": 316, - "properties": { - "id": "3c577de8-4c48-4073-921d-86284da1d0d9", - "data": { - "gtfs": { - "shape_id": "572_2_R" - }, - "segments": [ - { - "distanceMeters": 244, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 777, - "travelTimeSeconds": 133 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 18, - "travelTimeSeconds": 3 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 431, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 43 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7387, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3639.135960800599, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.86, - "travelTimeWithoutDwellTimesSeconds": 1260, - "operatingTimeWithLayoverTimeSeconds": 1440, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1260, - "operatingSpeedWithLayoverMetersPerSecond": 5.13, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.86 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "3f77d417-9b8e-4514-8337-8fa9008d2cc7", - "3035cba8-14ef-4eb7-b986-fc36588b4fe9", - "0f0a758f-b2db-4611-9b64-d413bfce8846", - "a73a9d8f-0a4d-4f45-8ed5-05aa8ce7acde", - "a331dc32-b29f-4455-9199-5b289acc7d53", - "f31baed5-09fe-46fd-9f4a-0a7da7aeef56", - "5e6dbb10-5962-4ed1-802d-bc3c0e5d2742", - "315b8823-6c3a-493b-9af5-7325cbc48096", - "e88f5f2a-b0b5-4bb5-afb4-833f49fbaeea", - "ee7545d3-966c-460d-94a1-5e0d16623919", - "88e6eee9-3b8c-474d-aeb4-599447d404be", - "e31a1f56-4ede-4f4f-a7a7-2fdbee444a41", - "e9c79425-c47b-44ec-82ff-b480b97ceae7", - "40cc5489-ce8f-4df1-916b-c682450d39d7", - "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", - "242c7269-ce0d-45c7-8356-927308e89900", - "bad427d3-2698-4efd-8d52-2bc92f049d64", - "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", - "75f82802-187b-4386-b435-5da7ab066898", - "471a40a2-ebb0-4658-a772-8036d064636d", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "e709ab81-b01c-47b3-a19c-63757b8320b0", - "eba98b16-12e9-4172-bbf2-62d1e69950a5", - "c2c8c1e8-4373-4b59-91c6-b04f7c4c1d76", - "523fb848-4048-4ab2-8e1c-32aab05ea63f", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "3b70b024-5c5b-4081-8c70-3fc026422289", - "1e4facbf-29da-4515-97c4-4ef86c22290e", - "8746746f-daed-4d54-a90f-724d51454ae1", - "47143cf4-4cce-4e8f-bfed-223c71fcc466", - "a64e19cc-ca7c-47f1-9793-ecfc50e76be9" - ], - "stops": [], - "line_id": "f3b41a7d-b664-4a6f-af72-56132e21bae0", - "segments": [ - 0, - 4, - 12, - 19, - 26, - 30, - 52, - 55, - 59, - 63, - 67, - 71, - 77, - 82, - 86, - 89, - 92, - 96, - 100, - 104, - 109, - 110, - 112, - 114, - 116, - 118, - 120, - 135, - 141, - 150, - 152 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 316, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.443507, - 45.513358 - ], - [ - -73.443129, - 45.513199 - ], - [ - -73.440479, - 45.512077 - ], - [ - -73.440445, - 45.512062 - ], - [ - -73.440007, - 45.511874 - ], - [ - -73.439905, - 45.511834 - ], - [ - -73.439831, - 45.511802 - ], - [ - -73.439738, - 45.511879 - ], - [ - -73.439633, - 45.511969 - ], - [ - -73.439493, - 45.512133 - ], - [ - -73.439292, - 45.512369 - ], - [ - -73.439125, - 45.512567 - ], - [ - -73.43894, - 45.512783 - ], - [ - -73.43879, - 45.512958 - ], - [ - -73.438197, - 45.51365 - ], - [ - -73.437958, - 45.513929 - ], - [ - -73.437794, - 45.51415 - ], - [ - -73.437544, - 45.5145 - ], - [ - -73.437328, - 45.514887 - ], - [ - -73.437139, - 45.515265 - ], - [ - -73.437121, - 45.5153 - ], - [ - -73.436728, - 45.516082 - ], - [ - -73.43672, - 45.516097 - ], - [ - -73.436655, - 45.516223 - ], - [ - -73.436309, - 45.516965 - ], - [ - -73.435853, - 45.517895 - ], - [ - -73.435632, - 45.518345 - ], - [ - -73.435603, - 45.518405 - ], - [ - -73.435539, - 45.518504 - ], - [ - -73.435371, - 45.518796 - ], - [ - -73.435201, - 45.519129 - ], - [ - -73.435196, - 45.519145 - ], - [ - -73.43516, - 45.519282 - ], - [ - -73.435146, - 45.519309 - ], - [ - -73.435066, - 45.51947 - ], - [ - -73.435022, - 45.51956 - ], - [ - -73.43465, - 45.520316 - ], - [ - -73.434436, - 45.520748 - ], - [ - -73.434256, - 45.521108 - ], - [ - -73.434209, - 45.521203 - ], - [ - -73.434057, - 45.521508 - ], - [ - -73.43365, - 45.522336 - ], - [ - -73.433608, - 45.522421 - ], - [ - -73.433569, - 45.522502 - ], - [ - -73.433656, - 45.522523 - ], - [ - -73.433693, - 45.522535 - ], - [ - -73.433807, - 45.522565 - ], - [ - -73.433875, - 45.522583 - ], - [ - -73.434331, - 45.52271 - ], - [ - -73.437851, - 45.523688 - ], - [ - -73.438325, - 45.523813 - ], - [ - -73.439251, - 45.524058 - ], - [ - -73.439451, - 45.524111 - ], - [ - -73.440412, - 45.524373 - ], - [ - -73.44186, - 45.52477 - ], - [ - -73.442223, - 45.524869 - ], - [ - -73.442597, - 45.524971 - ], - [ - -73.442704, - 45.525 - ], - [ - -73.442852, - 45.525036 - ], - [ - -73.442951, - 45.524869 - ], - [ - -73.443141, - 45.5245 - ], - [ - -73.443474, - 45.523856 - ], - [ - -73.443491, - 45.523821 - ], - [ - -73.444099, - 45.522593 - ], - [ - -73.444165, - 45.522458 - ], - [ - -73.444264, - 45.522301 - ], - [ - -73.444322, - 45.522225 - ], - [ - -73.445616, - 45.519728 - ], - [ - -73.445708, - 45.519575 - ], - [ - -73.445857, - 45.519382 - ], - [ - -73.446083, - 45.519122 - ], - [ - -73.446092, - 45.519112 - ], - [ - -73.446119, - 45.519088 - ], - [ - -73.446373, - 45.518869 - ], - [ - -73.446684, - 45.518635 - ], - [ - -73.446958, - 45.518469 - ], - [ - -73.447199, - 45.518348 - ], - [ - -73.447381, - 45.518267 - ], - [ - -73.447403, - 45.518257 - ], - [ - -73.447546, - 45.518195 - ], - [ - -73.448019, - 45.518033 - ], - [ - -73.448706, - 45.517817 - ], - [ - -73.449343, - 45.51762 - ], - [ - -73.449734, - 45.517489 - ], - [ - -73.449921, - 45.517427 - ], - [ - -73.450143, - 45.517364 - ], - [ - -73.450409, - 45.517292 - ], - [ - -73.45071, - 45.517229 - ], - [ - -73.450716, - 45.517224 - ], - [ - -73.451295, - 45.517148 - ], - [ - -73.451523, - 45.517121 - ], - [ - -73.451671, - 45.517101 - ], - [ - -73.451894, - 45.517072 - ], - [ - -73.452053, - 45.517054 - ], - [ - -73.452271, - 45.517027 - ], - [ - -73.452492, - 45.516987 - ], - [ - -73.452711, - 45.516919 - ], - [ - -73.452774, - 45.516901 - ], - [ - -73.453001, - 45.516816 - ], - [ - -73.453293, - 45.516654 - ], - [ - -73.45345, - 45.516542 - ], - [ - -73.453593, - 45.516416 - ], - [ - -73.453706, - 45.516276 - ], - [ - -73.453805, - 45.516137 - ], - [ - -73.453922, - 45.515977 - ], - [ - -73.454013, - 45.515854 - ], - [ - -73.455199, - 45.514135 - ], - [ - -73.455279, - 45.514018 - ], - [ - -73.456161, - 45.512754 - ], - [ - -73.456502, - 45.512271 - ], - [ - -73.456608, - 45.51212 - ], - [ - -73.456698, - 45.51199 - ], - [ - -73.456753, - 45.511846 - ], - [ - -73.456808, - 45.511652 - ], - [ - -73.456888, - 45.511378 - ], - [ - -73.45704, - 45.510771 - ], - [ - -73.457089, - 45.510627 - ], - [ - -73.457162, - 45.510496 - ], - [ - -73.457236, - 45.510384 - ], - [ - -73.457391, - 45.510154 - ], - [ - -73.457732, - 45.509684 - ], - [ - -73.457832, - 45.509547 - ], - [ - -73.458054, - 45.509219 - ], - [ - -73.458146, - 45.509057 - ], - [ - -73.458208, - 45.508913 - ], - [ - -73.458247, - 45.508832 - ], - [ - -73.458287, - 45.508665 - ], - [ - -73.458312, - 45.508463 - ], - [ - -73.458313, - 45.508315 - ], - [ - -73.458163, - 45.508323 - ], - [ - -73.457728, - 45.508353 - ], - [ - -73.457712, - 45.508354 - ], - [ - -73.456906, - 45.508408 - ], - [ - -73.456057, - 45.50847 - ], - [ - -73.45574, - 45.508494 - ], - [ - -73.454618, - 45.50857 - ], - [ - -73.453914, - 45.508619 - ], - [ - -73.453476, - 45.50865 - ], - [ - -73.452659, - 45.508713 - ], - [ - -73.452308, - 45.50874 - ], - [ - -73.451594, - 45.508784 - ], - [ - -73.451512, - 45.508816 - ], - [ - -73.451476, - 45.508843 - ], - [ - -73.451466, - 45.508892 - ], - [ - -73.451538, - 45.509394 - ], - [ - -73.451543, - 45.509425 - ], - [ - -73.451588, - 45.509738 - ], - [ - -73.451656, - 45.510171 - ], - [ - -73.451682, - 45.510341 - ], - [ - -73.451973, - 45.510422 - ], - [ - -73.452277, - 45.510526 - ], - [ - -73.453219, - 45.510876 - ], - [ - -73.453343, - 45.510922 - ], - [ - -73.454142, - 45.511217 - ], - [ - -73.455144, - 45.511587 - ], - [ - -73.455589, - 45.511751 - ], - [ - -73.456375, - 45.512037 - ], - [ - -73.456479, - 45.512075 - ], - [ - -73.456608, - 45.51212 - ], - [ - -73.457632, - 45.512503 - ], - [ - -73.458519, - 45.512827 - ], - [ - -73.459543, - 45.51322 - ], - [ - -73.45968, - 45.513273 - ], - [ - -73.460138, - 45.51344 - ], - [ - -73.460415, - 45.513065 - ], - [ - -73.460623, - 45.512783 - ], - [ - -73.461002, - 45.512271 - ], - [ - -73.461069, - 45.51218 - ], - [ - -73.461539, - 45.511564 - ], - [ - -73.46197, - 45.510961 - ], - [ - -73.462383, - 45.510395 - ], - [ - -73.462553, - 45.510233 - ], - [ - -73.462779, - 45.510066 - ], - [ - -73.463045, - 45.509936 - ], - [ - -73.463109, - 45.50991 - ], - [ - -73.463381, - 45.509801 - ], - [ - -73.463431, - 45.509882 - ], - [ - -73.463519, - 45.509999 - ], - [ - -73.463631, - 45.510107 - ], - [ - -73.463794, - 45.510215 - ], - [ - -73.464529, - 45.510665 - ], - [ - -73.464922, - 45.510916 - ], - [ - -73.464958, - 45.51094 - ], - [ - -73.465268, - 45.511138 - ], - [ - -73.464982, - 45.511318 - ], - [ - -73.464762, - 45.511493 - ], - [ - -73.464626, - 45.511606 - ], - [ - -73.464478, - 45.511745 - ], - [ - -73.464282, - 45.512001 - ], - [ - -73.463932, - 45.512501 - ], - [ - -73.463554, - 45.513006 - ], - [ - -73.463478, - 45.513108 - ], - [ - -73.463065, - 45.513684 - ], - [ - -73.462745, - 45.514128 - ], - [ - -73.462726, - 45.514155 - ], - [ - -73.462602, - 45.514327 - ], - [ - -73.462797, - 45.5144 - ], - [ - -73.464082, - 45.514885 - ], - [ - -73.465777, - 45.515524 - ], - [ - -73.465949, - 45.515589 - ], - [ - -73.466056, - 45.515628 - ], - [ - -73.466138, - 45.51566 - ], - [ - -73.466232, - 45.515695 - ], - [ - -73.466469, - 45.51538 - ], - [ - -73.466795, - 45.514943 - ], - [ - -73.467739, - 45.513666 - ], - [ - -73.467821, - 45.513555 - ], - [ - -73.468294, - 45.512911 - ], - [ - -73.468714, - 45.51234 - ], - [ - -73.468744, - 45.5123 - ], - [ - -73.469443, - 45.511193 - ], - [ - -73.469555, - 45.511034 - ], - [ - -73.469846, - 45.510622 - ], - [ - -73.470521, - 45.509701 - ], - [ - -73.471066, - 45.508957 - ], - [ - -73.471144, - 45.508849 - ], - [ - -73.471405, - 45.508937 - ], - [ - -73.471475, - 45.50896 - ], - [ - -73.472138, - 45.509183 - ], - [ - -73.475269, - 45.510209 - ], - [ - -73.475433, - 45.510263 - ], - [ - -73.478314, - 45.511203 - ], - [ - -73.478511, - 45.511267 - ], - [ - -73.481465, - 45.512229 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.481829, - 45.511876 - ], - [ - -73.482007, - 45.511596 - ], - [ - -73.482482, - 45.510894 - ], - [ - -73.482851, - 45.510332 - ], - [ - -73.482934, - 45.510206 - ], - [ - -73.483589, - 45.510414 - ], - [ - -73.486057, - 45.511196 - ], - [ - -73.488986, - 45.512155 - ], - [ - -73.489123, - 45.5122 - ], - [ - -73.49207, - 45.513153 - ], - [ - -73.492199, - 45.513195 - ], - [ - -73.492293, - 45.513053 - ], - [ - -73.49237, - 45.512938 - ], - [ - -73.492639, - 45.51252 - ], - [ - -73.493081, - 45.511867 - ], - [ - -73.493369, - 45.51144 - ], - [ - -73.493493, - 45.511249 - ], - [ - -73.493538, - 45.511179 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494003, - 45.510501 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.494126, - 45.510288 - ], - [ - -73.494238, - 45.510104 - ], - [ - -73.49438, - 45.509924 - ], - [ - -73.494493, - 45.509856 - ], - [ - -73.494824, - 45.509636 - ], - [ - -73.495154, - 45.509415 - ], - [ - -73.495498, - 45.509177 - ], - [ - -73.495814, - 45.508956 - ], - [ - -73.496204, - 45.508655 - ], - [ - -73.496376, - 45.508511 - ], - [ - -73.496824, - 45.508111 - ], - [ - -73.497076, - 45.508427 - ], - [ - -73.497769, - 45.509294 - ], - [ - -73.498065, - 45.509586 - ], - [ - -73.498161, - 45.50968 - ], - [ - -73.498287, - 45.509766 - ], - [ - -73.498388, - 45.509812 - ], - [ - -73.498525, - 45.509874 - ], - [ - -73.498839, - 45.509996 - ], - [ - -73.49986, - 45.510306 - ], - [ - -73.50032, - 45.51045 - ], - [ - -73.500636, - 45.510552 - ], - [ - -73.500724, - 45.510581 - ], - [ - -73.501152, - 45.51072 - ], - [ - -73.501574, - 45.510855 - ], - [ - -73.501949, - 45.510981 - ], - [ - -73.502532, - 45.511175 - ], - [ - -73.50299, - 45.511323 - ], - [ - -73.503113, - 45.511377 - ], - [ - -73.503366, - 45.511483 - ], - [ - -73.503468, - 45.511526 - ], - [ - -73.50359, - 45.511574 - ], - [ - -73.503649, - 45.511597 - ], - [ - -73.503715, - 45.511503 - ], - [ - -73.503862, - 45.511315 - ], - [ - -73.504141, - 45.510959 - ], - [ - -73.504367, - 45.510653 - ], - [ - -73.504625, - 45.51032 - ], - [ - -73.504847, - 45.510018 - ], - [ - -73.505098, - 45.509672 - ], - [ - -73.505595, - 45.509024 - ], - [ - -73.505856, - 45.508673 - ], - [ - -73.506088, - 45.508371 - ], - [ - -73.503983, - 45.507589 - ], - [ - -73.503127, - 45.507268 - ], - [ - -73.50278, - 45.507139 - ], - [ - -73.502418, - 45.507008 - ], - [ - -73.502098, - 45.506896 - ], - [ - -73.502109, - 45.507332 - ], - [ - -73.502155, - 45.507742 - ], - [ - -73.503376, - 45.508201 - ], - [ - -73.50436, - 45.508565 - ] - ] - }, - "id": 317, - "properties": { - "id": "a503dedb-b401-4f90-9953-88075ea4a95a", - "data": { - "gtfs": { - "shape_id": "575_1_A" - }, - "segments": [ - { - "distanceMeters": 279, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 461, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 412, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 85, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 417, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 87, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 80, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 455, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 535, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 668, - "travelTimeSeconds": 100 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 1072, - "travelTimeSeconds": 161 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 192, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12847, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4763.89023034518, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.69, - "travelTimeWithoutDwellTimesSeconds": 1920, - "operatingTimeWithLayoverTimeSeconds": 2112, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1920, - "operatingSpeedWithLayoverMetersPerSecond": 6.08, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.69 - }, - "mode": "bus", - "name": "École St-Lambert Inter.", - "color": "#A32638", - "nodes": [ - "dcaa1460-3c81-4616-b65b-ed7fae894032", - "a3922a48-9f26-4845-9881-2b33d59d0127", - "fd832741-dd18-4c66-bea3-40a37c4cdb9c", - "64e79ef5-e499-4b0b-96e8-a047e210960b", - "9a101899-eb7e-4980-897e-cfb842bca005", - "3d1e4353-a4d7-45de-bd72-c906526806e2", - "f8e89dfa-b651-418d-b1ab-5c9f2ffb0cf1", - "455644f9-4a24-446b-b548-a53bc406a4d8", - "3d39c5de-3cd5-4fd7-925f-37e3d32bd66c", - "5b35096e-2561-4a9f-8bf4-a3e7609358bf", - "02782fd4-ecd8-4615-9b7e-14ae16ac51bd", - "59ce5dad-a6de-46b9-a19c-e11dc5bfb727", - "aa6137b4-b674-460f-91f8-a129c1cf46bc", - "96eb89e4-98b8-49ac-b938-d7bcff69fc98", - "9d7bed04-91bf-4977-b8f5-ead58bfa3d28", - "0039f884-0610-402a-b23b-498abb207283", - "5f1eb6f1-dc45-44fc-bc07-9e965049da7f", - "4ecd13b4-71e4-4328-bc7f-b30325894d82", - "065b0112-1102-48ec-b10a-c88cde002f4f", - "77540404-5599-4bb2-b15d-add1fcb9fe20", - "1fdfd4f4-c553-4a7d-8963-4eb750e13bff", - "98d2ace5-e4e8-4113-91e3-89c01d89a89f", - "3dcc9db5-75c0-46a8-8247-d3d2e0220e07", - "e10756d4-095f-4fec-94fb-19ac7075bc43", - "e7cd0200-d7e2-4808-b4af-d251dcc23019", - "b79429dc-e0f7-44a7-b564-ff6f9831d545", - "065b0112-1102-48ec-b10a-c88cde002f4f", - "d8f16090-e69f-45d8-b535-45f45ab1b739", - "7183eaac-7645-401f-919b-91209487af61", - "3d29747a-7b75-4b0e-ad8a-50eec4e70061", - "5b565a57-bd7f-42f0-a279-0af0bf5f2a4d", - "0751a485-9efa-4491-b69f-eed5163417d8", - "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", - "5ca73944-03b3-4fca-ab1f-781dd6f959a4", - "ad783725-7edb-4c18-8b1a-a064301b213d", - "f9f88325-b670-4d47-91fa-edb372992bbc", - "e1a9e623-935b-47b9-a038-bcbd5a33f95e", - "ba348c95-9f07-48ca-a139-5d5c2dd83350", - "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", - "6c122298-4ea6-41ee-91e8-bb29cb41a320", - "e1825eb4-cef2-4f98-872f-0d169be63859", - "5ab29327-5bbe-43e2-9d7f-42e3ca97dbcb", - "229965c6-9bf9-414c-9970-4f7b1b31441b", - "d76fa63a-1787-4749-9166-b1ecce1f4af2", - "5d573c90-ed41-4ac1-9f58-abc862e00f93", - "a331dc32-b29f-4455-9199-5b289acc7d53", - "a73a9d8f-0a4d-4f45-8ed5-05aa8ce7acde", - "0f0a758f-b2db-4611-9b64-d413bfce8846", - "3f77d417-9b8e-4514-8337-8fa9008d2cc7" - ], - "stops": [], - "line_id": "46b1d45d-6a18-4a46-8244-c11e62fcf4b5", - "segments": [ - 0, - 3, - 10, - 21, - 25, - 34, - 38, - 48, - 51, - 56, - 60, - 63, - 70, - 78, - 83, - 91, - 104, - 106, - 109, - 120, - 130, - 133, - 136, - 144, - 147, - 151, - 156, - 161, - 166, - 174, - 181, - 190, - 193, - 198, - 203, - 205, - 208, - 216, - 219, - 221, - 223, - 228, - 232, - 234, - 241, - 262, - 267, - 275 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 317, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.50436, - 45.508565 - ], - [ - -73.505595, - 45.509024 - ], - [ - -73.505098, - 45.509672 - ], - [ - -73.504847, - 45.510018 - ], - [ - -73.50479, - 45.510096 - ], - [ - -73.504625, - 45.51032 - ], - [ - -73.504367, - 45.510653 - ], - [ - -73.504141, - 45.510959 - ], - [ - -73.503715, - 45.511503 - ], - [ - -73.503649, - 45.511597 - ], - [ - -73.50359, - 45.511574 - ], - [ - -73.503468, - 45.511526 - ], - [ - -73.503353, - 45.511478 - ], - [ - -73.503113, - 45.511377 - ], - [ - -73.50299, - 45.511323 - ], - [ - -73.502532, - 45.511175 - ], - [ - -73.501949, - 45.510981 - ], - [ - -73.501574, - 45.510855 - ], - [ - -73.501152, - 45.51072 - ], - [ - -73.500936, - 45.51065 - ], - [ - -73.500724, - 45.510581 - ], - [ - -73.50032, - 45.51045 - ], - [ - -73.49986, - 45.510306 - ], - [ - -73.498839, - 45.509996 - ], - [ - -73.498525, - 45.509874 - ], - [ - -73.498287, - 45.509766 - ], - [ - -73.49827, - 45.509755 - ], - [ - -73.498161, - 45.50968 - ], - [ - -73.498065, - 45.509586 - ], - [ - -73.497769, - 45.509294 - ], - [ - -73.496959, - 45.50828 - ], - [ - -73.496824, - 45.508111 - ], - [ - -73.496457, - 45.508439 - ], - [ - -73.496376, - 45.508511 - ], - [ - -73.496204, - 45.508655 - ], - [ - -73.495814, - 45.508956 - ], - [ - -73.495498, - 45.509177 - ], - [ - -73.495154, - 45.509415 - ], - [ - -73.494824, - 45.509636 - ], - [ - -73.494493, - 45.509856 - ], - [ - -73.49438, - 45.509924 - ], - [ - -73.494238, - 45.510104 - ], - [ - -73.494126, - 45.510288 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.494003, - 45.510501 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.493538, - 45.511179 - ], - [ - -73.493369, - 45.51144 - ], - [ - -73.493081, - 45.511867 - ], - [ - -73.492639, - 45.51252 - ], - [ - -73.49237, - 45.512938 - ], - [ - -73.492199, - 45.513195 - ], - [ - -73.491556, - 45.512987 - ], - [ - -73.489821, - 45.512426 - ], - [ - -73.489251, - 45.512241 - ], - [ - -73.489123, - 45.5122 - ], - [ - -73.486289, - 45.511272 - ], - [ - -73.486057, - 45.511196 - ], - [ - -73.482934, - 45.510206 - ], - [ - -73.482712, - 45.510545 - ], - [ - -73.482482, - 45.510894 - ], - [ - -73.482007, - 45.511596 - ], - [ - -73.481663, - 45.512136 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.480818, - 45.512018 - ], - [ - -73.47866, - 45.511316 - ], - [ - -73.478511, - 45.511267 - ], - [ - -73.475557, - 45.510304 - ], - [ - -73.475433, - 45.510263 - ], - [ - -73.472387, - 45.509264 - ], - [ - -73.472138, - 45.509183 - ], - [ - -73.471144, - 45.508849 - ], - [ - -73.470997, - 45.508809 - ], - [ - -73.470932, - 45.508894 - ], - [ - -73.470785, - 45.509092 - ], - [ - -73.470366, - 45.509655 - ], - [ - -73.470032, - 45.510114 - ], - [ - -73.46959, - 45.510721 - ], - [ - -73.469434, - 45.510905 - ], - [ - -73.469378, - 45.510967 - ], - [ - -73.469091, - 45.511282 - ], - [ - -73.468985, - 45.5114 - ], - [ - -73.468436, - 45.512149 - ], - [ - -73.468415, - 45.512178 - ], - [ - -73.466504, - 45.514837 - ], - [ - -73.466445, - 45.514919 - ], - [ - -73.466176, - 45.515324 - ], - [ - -73.466151, - 45.515363 - ], - [ - -73.465949, - 45.515589 - ], - [ - -73.465442, - 45.515398 - ], - [ - -73.464082, - 45.514885 - ], - [ - -73.463075, - 45.514505 - ], - [ - -73.462602, - 45.514327 - ], - [ - -73.462726, - 45.514155 - ], - [ - -73.463065, - 45.513684 - ], - [ - -73.463478, - 45.513108 - ], - [ - -73.46386, - 45.512598 - ], - [ - -73.463932, - 45.512501 - ], - [ - -73.464282, - 45.512001 - ], - [ - -73.464478, - 45.511745 - ], - [ - -73.464626, - 45.511606 - ], - [ - -73.464762, - 45.511493 - ], - [ - -73.464982, - 45.511318 - ], - [ - -73.464999, - 45.511307 - ], - [ - -73.465268, - 45.511138 - ], - [ - -73.464943, - 45.51093 - ], - [ - -73.464529, - 45.510665 - ], - [ - -73.463794, - 45.510215 - ], - [ - -73.463631, - 45.510107 - ], - [ - -73.463519, - 45.509999 - ], - [ - -73.463481, - 45.509949 - ], - [ - -73.463431, - 45.509882 - ], - [ - -73.463381, - 45.509801 - ], - [ - -73.463045, - 45.509936 - ], - [ - -73.462779, - 45.510066 - ], - [ - -73.462553, - 45.510233 - ], - [ - -73.462383, - 45.510395 - ], - [ - -73.462008, - 45.510909 - ], - [ - -73.46197, - 45.510961 - ], - [ - -73.461539, - 45.511564 - ], - [ - -73.461156, - 45.512067 - ], - [ - -73.461069, - 45.51218 - ], - [ - -73.460623, - 45.512783 - ], - [ - -73.460198, - 45.513358 - ], - [ - -73.460138, - 45.51344 - ], - [ - -73.45978, - 45.513309 - ], - [ - -73.45968, - 45.513273 - ], - [ - -73.458662, - 45.512882 - ], - [ - -73.458519, - 45.512827 - ], - [ - -73.457632, - 45.512503 - ], - [ - -73.456759, - 45.512177 - ], - [ - -73.456608, - 45.51212 - ], - [ - -73.456479, - 45.512075 - ], - [ - -73.455589, - 45.511751 - ], - [ - -73.455144, - 45.511587 - ], - [ - -73.454142, - 45.511217 - ], - [ - -73.453545, - 45.510997 - ], - [ - -73.453343, - 45.510922 - ], - [ - -73.452277, - 45.510526 - ], - [ - -73.451973, - 45.510422 - ], - [ - -73.451834, - 45.510383 - ], - [ - -73.451682, - 45.510341 - ], - [ - -73.451588, - 45.509738 - ], - [ - -73.451506, - 45.509168 - ], - [ - -73.451466, - 45.508892 - ], - [ - -73.451476, - 45.508843 - ], - [ - -73.451512, - 45.508816 - ], - [ - -73.451594, - 45.508784 - ], - [ - -73.451981, - 45.50876 - ], - [ - -73.452308, - 45.50874 - ], - [ - -73.452659, - 45.508713 - ], - [ - -73.453267, - 45.508666 - ], - [ - -73.453476, - 45.50865 - ], - [ - -73.454618, - 45.50857 - ], - [ - -73.455614, - 45.508502 - ], - [ - -73.45574, - 45.508494 - ], - [ - -73.456906, - 45.508408 - ], - [ - -73.458038, - 45.508332 - ], - [ - -73.458163, - 45.508323 - ], - [ - -73.458169, - 45.508458 - ], - [ - -73.458145, - 45.508652 - ], - [ - -73.458115, - 45.508773 - ], - [ - -73.458072, - 45.508881 - ], - [ - -73.458012, - 45.509021 - ], - [ - -73.458006, - 45.509031 - ], - [ - -73.457924, - 45.509178 - ], - [ - -73.457757, - 45.509424 - ], - [ - -73.457704, - 45.509502 - ], - [ - -73.457273, - 45.510105 - ], - [ - -73.457109, - 45.510339 - ], - [ - -73.457034, - 45.51046 - ], - [ - -73.456955, - 45.5106 - ], - [ - -73.456904, - 45.510748 - ], - [ - -73.456748, - 45.51131 - ], - [ - -73.456616, - 45.511823 - ], - [ - -73.456565, - 45.511954 - ], - [ - -73.456559, - 45.511963 - ], - [ - -73.456479, - 45.512075 - ], - [ - -73.456035, - 45.512709 - ], - [ - -73.455222, - 45.513885 - ], - [ - -73.455157, - 45.513978 - ], - [ - -73.454374, - 45.515104 - ], - [ - -73.454257, - 45.515272 - ], - [ - -73.453913, - 45.515766 - ], - [ - -73.453884, - 45.515808 - ], - [ - -73.453588, - 45.516236 - ], - [ - -73.453482, - 45.516362 - ], - [ - -73.453331, - 45.516501 - ], - [ - -73.453205, - 45.516587 - ], - [ - -73.452929, - 45.516735 - ], - [ - -73.452717, - 45.516816 - ], - [ - -73.452658, - 45.516834 - ], - [ - -73.452448, - 45.516897 - ], - [ - -73.452136, - 45.516973 - ], - [ - -73.451903, - 45.516982 - ], - [ - -73.451708, - 45.516986 - ], - [ - -73.451404, - 45.517027 - ], - [ - -73.451267, - 45.517045 - ], - [ - -73.450685, - 45.517121 - ], - [ - -73.450674, - 45.517125 - ], - [ - -73.450454, - 45.517157 - ], - [ - -73.450185, - 45.517229 - ], - [ - -73.450028, - 45.517277 - ], - [ - -73.449924, - 45.517309 - ], - [ - -73.449864, - 45.517328 - ], - [ - -73.449279, - 45.517521 - ], - [ - -73.448643, - 45.517714 - ], - [ - -73.447951, - 45.517934 - ], - [ - -73.447537, - 45.518082 - ], - [ - -73.447484, - 45.5181 - ], - [ - -73.4473, - 45.518172 - ], - [ - -73.44711, - 45.518258 - ], - [ - -73.44686, - 45.518383 - ], - [ - -73.446575, - 45.518554 - ], - [ - -73.446255, - 45.518793 - ], - [ - -73.446115, - 45.518914 - ], - [ - -73.445963, - 45.519049 - ], - [ - -73.445783, - 45.519251 - ], - [ - -73.445719, - 45.519328 - ], - [ - -73.445565, - 45.51953 - ], - [ - -73.445469, - 45.519688 - ], - [ - -73.445402, - 45.519816 - ], - [ - -73.445293, - 45.52002 - ], - [ - -73.444786, - 45.521006 - ], - [ - -73.444153, - 45.522222 - ], - [ - -73.444128, - 45.522269 - ], - [ - -73.444047, - 45.522427 - ], - [ - -73.443467, - 45.523605 - ], - [ - -73.443382, - 45.523794 - ], - [ - -73.443362, - 45.52383 - ], - [ - -73.443196, - 45.524138 - ], - [ - -73.442817, - 45.524838 - ], - [ - -73.442397, - 45.524734 - ], - [ - -73.442155, - 45.524675 - ], - [ - -73.442013, - 45.52464 - ], - [ - -73.441281, - 45.524441 - ], - [ - -73.44044, - 45.524202 - ], - [ - -73.43954, - 45.523947 - ], - [ - -73.439366, - 45.5239 - ], - [ - -73.437964, - 45.523516 - ], - [ - -73.433955, - 45.522417 - ], - [ - -73.433885, - 45.522398 - ], - [ - -73.433776, - 45.522369 - ], - [ - -73.434834, - 45.520403 - ], - [ - -73.435201, - 45.519599 - ], - [ - -73.435202, - 45.519597 - ], - [ - -73.435724, - 45.518588 - ], - [ - -73.43574, - 45.518567 - ], - [ - -73.435791, - 45.518454 - ], - [ - -73.435822, - 45.518391 - ], - [ - -73.435888, - 45.518254 - ], - [ - -73.435949, - 45.51813 - ], - [ - -73.4363, - 45.517415 - ], - [ - -73.4365, - 45.51701 - ], - [ - -73.436814, - 45.516368 - ], - [ - -73.436861, - 45.516273 - ], - [ - -73.436872, - 45.51625 - ], - [ - -73.436978, - 45.516111 - ], - [ - -73.437553, - 45.514946 - ], - [ - -73.437763, - 45.514573 - ], - [ - -73.438009, - 45.514226 - ], - [ - -73.438176, - 45.514015 - ], - [ - -73.439339, - 45.512657 - ], - [ - -73.439487, - 45.512474 - ], - [ - -73.43972, - 45.512185 - ], - [ - -73.439851, - 45.512113 - ], - [ - -73.439897, - 45.512099 - ], - [ - -73.439969, - 45.512081 - ], - [ - -73.440024, - 45.512077 - ], - [ - -73.440089, - 45.512077 - ], - [ - -73.440237, - 45.512095 - ], - [ - -73.441448, - 45.512613 - ], - [ - -73.441811, - 45.512775 - ], - [ - -73.442898, - 45.513214 - ] - ] - }, - "id": 318, - "properties": { - "id": "78023bf1-ffe9-40b7-be56-85849c9db0fd", - "data": { - "gtfs": { - "shape_id": "575_2_R" - }, - "segments": [ - { - "distanceMeters": 244, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 757, - "travelTimeSeconds": 117 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 49, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 524, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 542, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 335, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 60, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 82, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 371, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 459, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 496, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 483, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 50 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 186, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12052, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4818.522172080419, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.48, - "travelTimeWithoutDwellTimesSeconds": 1860, - "operatingTimeWithLayoverTimeSeconds": 2046, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1860, - "operatingSpeedWithLayoverMetersPerSecond": 5.89, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.48 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "3f77d417-9b8e-4514-8337-8fa9008d2cc7", - "3035cba8-14ef-4eb7-b986-fc36588b4fe9", - "0f0a758f-b2db-4611-9b64-d413bfce8846", - "a73a9d8f-0a4d-4f45-8ed5-05aa8ce7acde", - "a331dc32-b29f-4455-9199-5b289acc7d53", - "f31baed5-09fe-46fd-9f4a-0a7da7aeef56", - "d76fa63a-1787-4749-9166-b1ecce1f4af2", - "229965c6-9bf9-414c-9970-4f7b1b31441b", - "229965c6-9bf9-414c-9970-4f7b1b31441b", - "6ab67241-b06e-417b-b6fb-88a16df29924", - "e1825eb4-cef2-4f98-872f-0d169be63859", - "6c122298-4ea6-41ee-91e8-bb29cb41a320", - "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", - "777c347b-29df-4aab-9968-5fdfd62ed61a", - "e1a9e623-935b-47b9-a038-bcbd5a33f95e", - "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", - "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", - "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", - "0751a485-9efa-4491-b69f-eed5163417d8", - "5b565a57-bd7f-42f0-a279-0af0bf5f2a4d", - "3d29747a-7b75-4b0e-ad8a-50eec4e70061", - "1f1dcc94-03fa-4333-b695-c1027c760604", - "7183eaac-7645-401f-919b-91209487af61", - "d8f16090-e69f-45d8-b535-45f45ab1b739", - "2f3f3f3e-941f-4165-a7c4-41af6cf1cc84", - "065b0112-1102-48ec-b10a-c88cde002f4f", - "b79429dc-e0f7-44a7-b564-ff6f9831d545", - "e7cd0200-d7e2-4808-b4af-d251dcc23019", - "e10756d4-095f-4fec-94fb-19ac7075bc43", - "3dcc9db5-75c0-46a8-8247-d3d2e0220e07", - "98d2ace5-e4e8-4113-91e3-89c01d89a89f", - "1fdfd4f4-c553-4a7d-8963-4eb750e13bff", - "77540404-5599-4bb2-b15d-add1fcb9fe20", - "065b0112-1102-48ec-b10a-c88cde002f4f", - "4ecd13b4-71e4-4328-bc7f-b30325894d82", - "6716e17d-58d0-427c-a6f7-62e8d8197b2a", - "6716e17d-58d0-427c-a6f7-62e8d8197b2a", - "9d7bed04-91bf-4977-b8f5-ead58bfa3d28", - "96eb89e4-98b8-49ac-b938-d7bcff69fc98", - "71e321c3-bad2-413b-8558-79185b044654", - "59ce5dad-a6de-46b9-a19c-e11dc5bfb727", - "e4177123-f532-4426-8afb-b9c8199723e1", - "f902a061-c5e9-4964-8e41-eba87bfc63fc", - "3d39c5de-3cd5-4fd7-925f-37e3d32bd66c", - "9b519782-0187-4aff-8d16-ed5c874d6b88", - "f1517eba-215d-4b2a-b591-160be878e090", - "64e79ef5-e499-4b0b-96e8-a047e210960b", - "fd832741-dd18-4c66-bea3-40a37c4cdb9c", - "7b1c691c-8a55-45c2-8401-9d619a0efb76" - ], - "stops": [], - "line_id": "46b1d45d-6a18-4a46-8244-c11e62fcf4b5", - "segments": [ - 0, - 4, - 12, - 19, - 26, - 30, - 52, - 53, - 54, - 56, - 62, - 65, - 67, - 69, - 82, - 84, - 86, - 91, - 96, - 103, - 110, - 117, - 120, - 123, - 127, - 130, - 136, - 140, - 143, - 151, - 154, - 157, - 166, - 176, - 179, - 181, - 183, - 202, - 208, - 221, - 224, - 230, - 233, - 238, - 241, - 250, - 254, - 263 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 318, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.503405, - 45.511624 - ], - [ - -73.503435, - 45.511575 - ], - [ - -73.503468, - 45.511526 - ], - [ - -73.50359, - 45.511574 - ], - [ - -73.503649, - 45.511597 - ], - [ - -73.504821, - 45.512052 - ], - [ - -73.504953, - 45.512101 - ], - [ - -73.505513, - 45.512322 - ], - [ - -73.506059, - 45.51253 - ], - [ - -73.506149, - 45.512565 - ], - [ - -73.506238, - 45.512601 - ], - [ - -73.506546, - 45.512721 - ], - [ - -73.508131, - 45.513338 - ], - [ - -73.508566, - 45.513512 - ], - [ - -73.508741, - 45.513581 - ], - [ - -73.509393, - 45.513802 - ], - [ - -73.50981, - 45.513942 - ], - [ - -73.510118, - 45.514045 - ], - [ - -73.511388, - 45.514467 - ], - [ - -73.511507, - 45.514508 - ], - [ - -73.512165, - 45.514728 - ], - [ - -73.512734, - 45.514923 - ], - [ - -73.512796, - 45.514944 - ], - [ - -73.513795, - 45.515285 - ], - [ - -73.51444, - 45.515505 - ], - [ - -73.514563, - 45.515547 - ], - [ - -73.515414, - 45.515844 - ], - [ - -73.516876, - 45.516355 - ], - [ - -73.51692, - 45.51637 - ], - [ - -73.517225, - 45.516484 - ], - [ - -73.517318, - 45.516518 - ], - [ - -73.517741, - 45.516671 - ], - [ - -73.517978, - 45.516757 - ], - [ - -73.518077, - 45.516793 - ], - [ - -73.518456, - 45.516887 - ], - [ - -73.519045, - 45.517037 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.520048, - 45.518702 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520113, - 45.519741 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 319, - "properties": { - "id": "9c603939-aeae-4834-a009-b07951d9c27b", - "data": { - "gtfs": { - "shape_id": "580_2_R" - }, - "segments": [ - { - "distanceMeters": 243, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 92, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 56, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 767, - "travelTimeSeconds": 113 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 2460, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 1968.1924169411752, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.83, - "travelTimeWithoutDwellTimesSeconds": 360, - "operatingTimeWithLayoverTimeSeconds": 540, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 360, - "operatingSpeedWithLayoverMetersPerSecond": 4.56, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.83 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "0f0a758f-b2db-4611-9b64-d413bfce8846", - "2227a38f-9c32-4890-9719-eef7445fa1fc", - "969092dd-fcfd-493a-be55-d0467c757fb1", - "2a197d72-1b4b-4077-a350-4c8656ad7bb1", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "f250cba5-329e-4403-912d-778f924ce25e", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "992e3299-c421-4c46-ab72-217c483d33fd", - "segments": [ - 0, - 8, - 13, - 21, - 23, - 24, - 29, - 35, - 44 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 319, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.502001, - 45.480671 - ], - [ - -73.502676, - 45.481412 - ], - [ - -73.502806, - 45.48156 - ], - [ - -73.503272, - 45.482092 - ], - [ - -73.50345, - 45.482308 - ], - [ - -73.503512, - 45.48238 - ], - [ - -73.503531, - 45.482406 - ], - [ - -73.503598, - 45.482497 - ], - [ - -73.504141, - 45.483117 - ], - [ - -73.504614, - 45.483657 - ], - [ - -73.504846, - 45.483915 - ], - [ - -73.504857, - 45.483927 - ], - [ - -73.504897, - 45.483968 - ], - [ - -73.504924, - 45.483995 - ], - [ - -73.505108, - 45.484152 - ], - [ - -73.505242, - 45.484242 - ], - [ - -73.505364, - 45.484314 - ], - [ - -73.505521, - 45.484395 - ], - [ - -73.505663, - 45.484463 - ], - [ - -73.505851, - 45.484535 - ], - [ - -73.505993, - 45.484584 - ], - [ - -73.506624, - 45.484814 - ], - [ - -73.506746, - 45.484863 - ], - [ - -73.506951, - 45.484962 - ], - [ - -73.507115, - 45.485056 - ], - [ - -73.507185, - 45.485097 - ], - [ - -73.507329, - 45.4852 - ], - [ - -73.507431, - 45.485295 - ], - [ - -73.507518, - 45.485367 - ], - [ - -73.50762, - 45.485484 - ], - [ - -73.507754, - 45.485677 - ], - [ - -73.508077, - 45.486145 - ], - [ - -73.508225, - 45.48637 - ], - [ - -73.508335, - 45.486544 - ], - [ - -73.508385, - 45.486622 - ], - [ - -73.508489, - 45.486784 - ], - [ - -73.508543, - 45.486852 - ], - [ - -73.509573, - 45.488341 - ], - [ - -73.509675, - 45.488489 - ], - [ - -73.509764, - 45.488615 - ], - [ - -73.509971, - 45.488912 - ], - [ - -73.510806, - 45.490108 - ], - [ - -73.510813, - 45.490118 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.512404, - 45.492411 - ], - [ - -73.512404, - 45.492412 - ], - [ - -73.51245, - 45.492507 - ], - [ - -73.512764, - 45.493074 - ], - [ - -73.512921, - 45.493393 - ], - [ - -73.512971, - 45.493496 - ], - [ - -73.512984, - 45.493515 - ], - [ - -73.513008, - 45.493622 - ], - [ - -73.513012, - 45.493663 - ], - [ - -73.513019, - 45.493721 - ], - [ - -73.513009, - 45.493798 - ], - [ - -73.512984, - 45.493864 - ], - [ - -73.512977, - 45.493876 - ], - [ - -73.512954, - 45.493917 - ], - [ - -73.512916, - 45.493951 - ], - [ - -73.512873, - 45.493987 - ], - [ - -73.512839, - 45.494011 - ], - [ - -73.512778, - 45.494036 - ], - [ - -73.512664, - 45.494068 - ], - [ - -73.512506, - 45.494102 - ], - [ - -73.511393, - 45.494185 - ], - [ - -73.51105, - 45.494174 - ], - [ - -73.510846, - 45.494189 - ], - [ - -73.510793, - 45.4942 - ], - [ - -73.510474, - 45.49419 - ], - [ - -73.510047, - 45.494183 - ], - [ - -73.509926, - 45.494181 - ], - [ - -73.50913, - 45.494175 - ], - [ - -73.508099, - 45.494169 - ], - [ - -73.507903, - 45.494167 - ], - [ - -73.506279, - 45.494154 - ], - [ - -73.505484, - 45.494143 - ], - [ - -73.505309, - 45.49414 - ], - [ - -73.504012, - 45.494128 - ], - [ - -73.503889, - 45.494127 - ], - [ - -73.502661, - 45.494132 - ], - [ - -73.501918, - 45.494118 - ], - [ - -73.501485, - 45.494123 - ], - [ - -73.501355, - 45.494132 - ], - [ - -73.50111, - 45.494181 - ], - [ - -73.50099, - 45.494217 - ], - [ - -73.500901, - 45.494253 - ], - [ - -73.500871, - 45.494267 - ], - [ - -73.500761, - 45.494325 - ], - [ - -73.500559, - 45.494465 - ], - [ - -73.500469, - 45.494546 - ], - [ - -73.500384, - 45.494631 - ], - [ - -73.500337, - 45.494686 - ], - [ - -73.500282, - 45.494728 - ], - [ - -73.500108, - 45.494896 - ], - [ - -73.500064, - 45.495 - ], - [ - -73.500106, - 45.495026 - ], - [ - -73.500214, - 45.495111 - ], - [ - -73.500592, - 45.495409 - ], - [ - -73.50081, - 45.495567 - ], - [ - -73.501059, - 45.495724 - ], - [ - -73.501182, - 45.495805 - ], - [ - -73.501279, - 45.495868 - ], - [ - -73.501296, - 45.49588 - ], - [ - -73.501808, - 45.496251 - ], - [ - -73.50225, - 45.496558 - ], - [ - -73.502293, - 45.496588 - ], - [ - -73.502336, - 45.49662 - ], - [ - -73.50284, - 45.49698 - ], - [ - -73.50327, - 45.49729 - ], - [ - -73.503408, - 45.497389 - ], - [ - -73.503475, - 45.497438 - ], - [ - -73.504131, - 45.497897 - ], - [ - -73.504473, - 45.49814 - ], - [ - -73.504683, - 45.498293 - ], - [ - -73.504764, - 45.498354 - ], - [ - -73.504839, - 45.49841 - ], - [ - -73.505105, - 45.498595 - ], - [ - -73.505329, - 45.498757 - ], - [ - -73.505704, - 45.498928 - ], - [ - -73.506001, - 45.499076 - ], - [ - -73.506259, - 45.499211 - ], - [ - -73.506709, - 45.499427 - ], - [ - -73.506801, - 45.499467 - ], - [ - -73.507257, - 45.499662 - ], - [ - -73.50735, - 45.499701 - ], - [ - -73.507712, - 45.499859 - ], - [ - -73.508861, - 45.50034 - ], - [ - -73.508958, - 45.500376 - ], - [ - -73.509608, - 45.500651 - ], - [ - -73.509762, - 45.500713 - ], - [ - -73.50993, - 45.500781 - ], - [ - -73.510436, - 45.501012 - ], - [ - -73.511327, - 45.50142 - ], - [ - -73.512063, - 45.501735 - ], - [ - -73.512398, - 45.501874 - ], - [ - -73.5127, - 45.501847 - ], - [ - -73.512871, - 45.501831 - ], - [ - -73.512897, - 45.501829 - ], - [ - -73.513035, - 45.501807 - ], - [ - -73.513284, - 45.501793 - ], - [ - -73.51344, - 45.501784 - ], - [ - -73.513522, - 45.501784 - ], - [ - -73.5136, - 45.501784 - ], - [ - -73.513805, - 45.501793 - ], - [ - -73.514045, - 45.501797 - ], - [ - -73.514104, - 45.501797 - ], - [ - -73.514212, - 45.501802 - ], - [ - -73.514398, - 45.501805 - ], - [ - -73.516174, - 45.501834 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.516694, - 45.501961 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517439, - 45.505254 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517233, - 45.507269 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517557, - 45.509202 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517799, - 45.511415 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517595, - 45.513237 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518261, - 45.515302 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518968, - 45.516736 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.519009, - 45.517028 - ], - [ - -73.518456, - 45.516887 - ], - [ - -73.518077, - 45.516793 - ], - [ - -73.517978, - 45.516757 - ], - [ - -73.517741, - 45.516671 - ], - [ - -73.517737, - 45.51667 - ], - [ - -73.517486, - 45.516579 - ], - [ - -73.517318, - 45.516518 - ], - [ - -73.51692, - 45.51637 - ], - [ - -73.516876, - 45.516355 - ], - [ - -73.515414, - 45.515844 - ], - [ - -73.514716, - 45.5156 - ], - [ - -73.514563, - 45.515547 - ], - [ - -73.513759, - 45.515273 - ] - ] - }, - "id": 320, - "properties": { - "id": "845d678e-eb64-4499-ae3e-47070ae0317a", - "data": { - "gtfs": { - "shape_id": "600_1_A" - }, - "segments": [ - { - "distanceMeters": 227, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 406, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 411, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 605, - "travelTimeSeconds": 105 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 476, - "travelTimeSeconds": 82 - }, - { - "distanceMeters": 427, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 22, - "travelTimeSeconds": 4 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 83, - "travelTimeSeconds": 15 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6562, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3981.021371139948, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.76, - "travelTimeWithoutDwellTimesSeconds": 1140, - "operatingTimeWithLayoverTimeSeconds": 1320, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1140, - "operatingSpeedWithLayoverMetersPerSecond": 4.97, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.76 - }, - "mode": "bus", - "name": "Collèges NDL et Durocher", - "color": "#A32638", - "nodes": [ - "4df7f34c-ec49-4d48-90b3-56f3faffc976", - "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "9f22d75f-cc66-4020-8804-7912f49950d8", - "41d7b6d4-1fe4-44ed-a774-b005607fc59d", - "bc9b9243-e0ec-461a-9898-6eb69ecd511a", - "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "5d15d6e1-5f1d-4e9c-8c3a-63a3b3f11da3", - "17130fb5-7835-48a4-911b-07c08af792bb", - "f09bea25-9e7f-4f46-8a1e-1137fbe57059", - "1cea6199-481e-43b0-8d4a-8c7593ff485f", - "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", - "6557d1fe-6975-49e2-871c-ab07d42ea35b", - "0ac44bed-6f37-406e-8654-f8d5f36c840e", - "443288e2-2ae9-4c97-a015-0e176d8f71b2", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "2259b112-2e60-4bcc-ad14-9e0e577f2909", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "f250cba5-329e-4403-912d-778f924ce25e", - "f250cba5-329e-4403-912d-778f924ce25e", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "74539ff2-4125-4083-be0c-4345bf87f6fa" - ], - "stops": [], - "line_id": "eff765a7-29d8-4a72-be4f-72266aaa0270", - "segments": [ - 0, - 6, - 12, - 33, - 37, - 41, - 44, - 69, - 72, - 75, - 102, - 104, - 114, - 123, - 131, - 148, - 162, - 168, - 173, - 179, - 185, - 193, - 200, - 207, - 208, - 213 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 320, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.415733, - 45.489896 - ], - [ - -73.415825, - 45.489928 - ], - [ - -73.41588, - 45.489948 - ], - [ - -73.416181, - 45.490056 - ], - [ - -73.416563, - 45.490205 - ], - [ - -73.416833, - 45.490317 - ], - [ - -73.417817, - 45.490728 - ], - [ - -73.418126, - 45.490867 - ], - [ - -73.418329, - 45.490966 - ], - [ - -73.418926, - 45.491273 - ], - [ - -73.419065, - 45.491358 - ], - [ - -73.419232, - 45.491444 - ], - [ - -73.419402, - 45.491507 - ], - [ - -73.420066, - 45.49173 - ], - [ - -73.420235, - 45.491787 - ], - [ - -73.420442, - 45.49185 - ], - [ - -73.421099, - 45.492084 - ], - [ - -73.421973, - 45.492395 - ], - [ - -73.422792, - 45.492684 - ], - [ - -73.423173, - 45.492823 - ], - [ - -73.423404, - 45.4929 - ], - [ - -73.423545, - 45.492954 - ], - [ - -73.423688, - 45.493026 - ], - [ - -73.423782, - 45.493079 - ], - [ - -73.423881, - 45.493134 - ], - [ - -73.423992, - 45.493193 - ], - [ - -73.424086, - 45.493252 - ], - [ - -73.424167, - 45.493319 - ], - [ - -73.4245, - 45.493675 - ], - [ - -73.424539, - 45.493715 - ], - [ - -73.424604, - 45.493823 - ], - [ - -73.424742, - 45.493976 - ], - [ - -73.424872, - 45.49408 - ], - [ - -73.425006, - 45.494188 - ], - [ - -73.425153, - 45.494283 - ], - [ - -73.425261, - 45.494342 - ], - [ - -73.425348, - 45.494391 - ], - [ - -73.425495, - 45.494463 - ], - [ - -73.425936, - 45.494625 - ], - [ - -73.426225, - 45.494733 - ], - [ - -73.42705, - 45.495013 - ], - [ - -73.427246, - 45.49508 - ], - [ - -73.427779, - 45.495264 - ], - [ - -73.427911, - 45.49531 - ], - [ - -73.428712, - 45.495599 - ], - [ - -73.430398, - 45.496192 - ], - [ - -73.430519, - 45.496234 - ], - [ - -73.432091, - 45.496791 - ], - [ - -73.432274, - 45.496856 - ], - [ - -73.434216, - 45.497548 - ], - [ - -73.43431, - 45.497582 - ], - [ - -73.435579, - 45.498023 - ], - [ - -73.435865, - 45.4981 - ], - [ - -73.436036, - 45.49814 - ], - [ - -73.436216, - 45.498172 - ], - [ - -73.436513, - 45.498249 - ], - [ - -73.436806, - 45.498348 - ], - [ - -73.436902, - 45.498386 - ], - [ - -73.436955, - 45.498406 - ], - [ - -73.439319, - 45.499236 - ], - [ - -73.439705, - 45.499371 - ], - [ - -73.43988, - 45.499434 - ], - [ - -73.439954, - 45.499326 - ], - [ - -73.441094, - 45.49768 - ], - [ - -73.441172, - 45.497567 - ], - [ - -73.442304, - 45.495925 - ], - [ - -73.442662, - 45.495404 - ], - [ - -73.442881, - 45.495526 - ], - [ - -73.445644, - 45.497056 - ], - [ - -73.445726, - 45.497102 - ], - [ - -73.446114, - 45.497358 - ], - [ - -73.4462, - 45.497417 - ], - [ - -73.446473, - 45.497601 - ], - [ - -73.446666, - 45.497444 - ], - [ - -73.446768, - 45.497359 - ], - [ - -73.44702, - 45.497219 - ], - [ - -73.447145, - 45.497147 - ], - [ - -73.447323, - 45.497044 - ], - [ - -73.447676, - 45.497238 - ], - [ - -73.448036, - 45.497431 - ], - [ - -73.44838, - 45.497616 - ], - [ - -73.448779, - 45.497827 - ], - [ - -73.449434, - 45.49821 - ], - [ - -73.449496, - 45.498237 - ], - [ - -73.449546, - 45.498251 - ], - [ - -73.449725, - 45.498152 - ], - [ - -73.44978, - 45.498119 - ], - [ - -73.449884, - 45.498057 - ], - [ - -73.450085, - 45.497941 - ], - [ - -73.450487, - 45.498161 - ], - [ - -73.451013, - 45.498449 - ], - [ - -73.451357, - 45.498643 - ], - [ - -73.451834, - 45.498904 - ], - [ - -73.452113, - 45.499057 - ], - [ - -73.452401, - 45.499217 - ], - [ - -73.452639, - 45.49935 - ], - [ - -73.452794, - 45.499431 - ], - [ - -73.453172, - 45.499634 - ], - [ - -73.453483, - 45.499755 - ], - [ - -73.45482, - 45.500233 - ], - [ - -73.454914, - 45.500255 - ], - [ - -73.455067, - 45.500305 - ], - [ - -73.455166, - 45.5003 - ], - [ - -73.455262, - 45.5003 - ], - [ - -73.455439, - 45.500273 - ], - [ - -73.45555, - 45.500256 - ], - [ - -73.455726, - 45.500228 - ], - [ - -73.455803, - 45.500305 - ], - [ - -73.456099, - 45.500539 - ], - [ - -73.45648, - 45.500755 - ], - [ - -73.457135, - 45.501093 - ], - [ - -73.457312, - 45.501192 - ], - [ - -73.457366, - 45.501237 - ], - [ - -73.45755, - 45.501385 - ], - [ - -73.457629, - 45.501448 - ], - [ - -73.458179, - 45.50112 - ], - [ - -73.458392, - 45.500985 - ], - [ - -73.458619, - 45.50085 - ], - [ - -73.458792, - 45.500752 - ], - [ - -73.458932, - 45.50067 - ], - [ - -73.45911, - 45.500567 - ], - [ - -73.459247, - 45.50068 - ], - [ - -73.459797, - 45.501134 - ], - [ - -73.460303, - 45.501557 - ], - [ - -73.460537, - 45.501755 - ], - [ - -73.460681, - 45.501872 - ], - [ - -73.460827, - 45.501996 - ], - [ - -73.460922, - 45.502075 - ], - [ - -73.461281, - 45.501859 - ], - [ - -73.461423, - 45.501774 - ], - [ - -73.461628, - 45.501652 - ], - [ - -73.461886, - 45.501859 - ], - [ - -73.46216, - 45.502089 - ], - [ - -73.462443, - 45.502336 - ], - [ - -73.462726, - 45.502584 - ], - [ - -73.463263, - 45.503039 - ], - [ - -73.463285, - 45.503058 - ], - [ - -73.463363, - 45.503124 - ], - [ - -73.463564, - 45.503003 - ], - [ - -73.464212, - 45.502612 - ], - [ - -73.466594, - 45.501191 - ], - [ - -73.466934, - 45.500988 - ], - [ - -73.467259, - 45.501258 - ], - [ - -73.467598, - 45.501537 - ], - [ - -73.467922, - 45.501812 - ], - [ - -73.468174, - 45.502031 - ], - [ - -73.468227, - 45.502077 - ], - [ - -73.469094, - 45.502779 - ], - [ - -73.469411, - 45.503036 - ], - [ - -73.469419, - 45.503065 - ], - [ - -73.469426, - 45.503089 - ], - [ - -73.46944, - 45.503136 - ], - [ - -73.469513, - 45.50323 - ], - [ - -73.469572, - 45.50329 - ], - [ - -73.469677, - 45.503226 - ], - [ - -73.469755, - 45.503179 - ], - [ - -73.469968, - 45.50305 - ], - [ - -73.471065, - 45.502388 - ], - [ - -73.471184, - 45.502317 - ], - [ - -73.472092, - 45.501763 - ], - [ - -73.473525, - 45.500894 - ], - [ - -73.47358, - 45.50086 - ], - [ - -73.473641, - 45.500823 - ], - [ - -73.473574, - 45.500765 - ], - [ - -73.473253, - 45.500495 - ], - [ - -73.472986, - 45.50027 - ], - [ - -73.472579, - 45.499928 - ], - [ - -73.472378, - 45.499761 - ], - [ - -73.472276, - 45.499676 - ], - [ - -73.472173, - 45.49959 - ], - [ - -73.471624, - 45.499149 - ], - [ - -73.471205, - 45.498803 - ], - [ - -73.471076, - 45.498697 - ], - [ - -73.470968, - 45.498609 - ], - [ - -73.470813, - 45.498474 - ], - [ - -73.470322, - 45.498065 - ], - [ - -73.470122, - 45.497907 - ], - [ - -73.469866, - 45.497663 - ], - [ - -73.469768, - 45.497569 - ], - [ - -73.469532, - 45.497376 - ], - [ - -73.469247, - 45.497142 - ], - [ - -73.469174, - 45.497106 - ], - [ - -73.468897, - 45.496887 - ], - [ - -73.468809, - 45.496818 - ], - [ - -73.468449, - 45.496516 - ], - [ - -73.468074, - 45.496206 - ], - [ - -73.46768, - 45.495882 - ], - [ - -73.467549, - 45.495769 - ], - [ - -73.467417, - 45.495657 - ], - [ - -73.467151, - 45.495441 - ], - [ - -73.466865, - 45.495202 - ], - [ - -73.466595, - 45.494982 - ], - [ - -73.466311, - 45.494743 - ], - [ - -73.465999, - 45.494495 - ], - [ - -73.4658, - 45.494335 - ], - [ - -73.465714, - 45.494266 - ], - [ - -73.46542, - 45.494439 - ], - [ - -73.465269, - 45.494527 - ], - [ - -73.463018, - 45.495867 - ], - [ - -73.462904, - 45.495934 - ], - [ - -73.461541, - 45.496748 - ], - [ - -73.461046, - 45.497049 - ], - [ - -73.460385, - 45.49744 - ], - [ - -73.460362, - 45.497454 - ], - [ - -73.460224, - 45.497535 - ], - [ - -73.460165, - 45.497427 - ], - [ - -73.460116, - 45.497377 - ], - [ - -73.460063, - 45.497324 - ], - [ - -73.460019, - 45.497262 - ], - [ - -73.459954, - 45.497171 - ], - [ - -73.459892, - 45.497045 - ], - [ - -73.45984, - 45.496946 - ], - [ - -73.459805, - 45.496797 - ], - [ - -73.45979, - 45.496635 - ], - [ - -73.459786, - 45.496572 - ], - [ - -73.45979, - 45.496433 - ], - [ - -73.459822, - 45.496293 - ], - [ - -73.46018, - 45.495429 - ], - [ - -73.460269, - 45.495227 - ], - [ - -73.460322, - 45.495095 - ], - [ - -73.460354, - 45.495016 - ], - [ - -73.460277, - 45.4948 - ], - [ - -73.460132, - 45.49444 - ], - [ - -73.459999, - 45.494098 - ], - [ - -73.459882, - 45.493804 - ], - [ - -73.459784, - 45.493562 - ], - [ - -73.45974, - 45.493441 - ], - [ - -73.459717, - 45.493391 - ], - [ - -73.459678, - 45.493328 - ], - [ - -73.45962, - 45.493243 - ], - [ - -73.459564, - 45.493189 - ], - [ - -73.459055, - 45.492754 - ], - [ - -73.458942, - 45.492657 - ], - [ - -73.459196, - 45.49251 - ], - [ - -73.459245, - 45.492482 - ], - [ - -73.459615, - 45.492262 - ], - [ - -73.459713, - 45.492208 - ], - [ - -73.459829, - 45.492145 - ], - [ - -73.461043, - 45.491412 - ], - [ - -73.461641, - 45.491052 - ], - [ - -73.46185, - 45.490922 - ], - [ - -73.463535, - 45.489919 - ], - [ - -73.463805, - 45.489762 - ], - [ - -73.46482, - 45.489155 - ], - [ - -73.464653, - 45.489041 - ], - [ - -73.464595, - 45.489001 - ], - [ - -73.464379, - 45.488857 - ], - [ - -73.46422, - 45.488754 - ], - [ - -73.464097, - 45.488673 - ], - [ - -73.463537, - 45.488299 - ], - [ - -73.463291, - 45.488146 - ], - [ - -73.463053, - 45.487989 - ], - [ - -73.462992, - 45.487949 - ], - [ - -73.462983, - 45.487944 - ], - [ - -73.46278, - 45.487809 - ], - [ - -73.462116, - 45.487367 - ], - [ - -73.461428, - 45.486912 - ], - [ - -73.461292, - 45.486823 - ], - [ - -73.461219, - 45.486774 - ], - [ - -73.460376, - 45.486211 - ], - [ - -73.45953, - 45.485652 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.457883, - 45.486537 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.45694, - 45.487838 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456449, - 45.487901 - ], - [ - -73.456154, - 45.487865 - ], - [ - -73.455852, - 45.487802 - ], - [ - -73.455596, - 45.487748 - ], - [ - -73.455357, - 45.487675 - ], - [ - -73.455213, - 45.487621 - ], - [ - -73.454998, - 45.487531 - ], - [ - -73.454777, - 45.487423 - ], - [ - -73.454672, - 45.487356 - ], - [ - -73.454523, - 45.487261 - ], - [ - -73.454176, - 45.487527 - ], - [ - -73.453821, - 45.487792 - ], - [ - -73.452906, - 45.488462 - ] - ] - }, - "id": 321, - "properties": { - "id": "7acd871a-f1a6-4c1a-a289-b31363b0e5c1", - "data": { - "gtfs": { - "shape_id": "601_1_A" - }, - "segments": [ - { - "distanceMeters": 8, - "travelTimeSeconds": 1 - }, - { - "distanceMeters": 388, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 327, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 477, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 63, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 51, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 812, - "travelTimeSeconds": 137 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 402, - "travelTimeSeconds": 68 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9930, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2851.449814982888, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.91, - "travelTimeWithoutDwellTimesSeconds": 1680, - "operatingTimeWithLayoverTimeSeconds": 1860, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1680, - "operatingSpeedWithLayoverMetersPerSecond": 5.34, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.91 - }, - "mode": "bus", - "name": "École de l'Agora", - "color": "#A32638", - "nodes": [ - "4b07d309-8f54-43c8-997d-d4abd77f2d1e", - "4b07d309-8f54-43c8-997d-d4abd77f2d1e", - "f4abcc97-51ec-431d-988f-977063b9070f", - "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", - "28985ee5-9fc5-416a-81f8-ff25dba2b6da", - "d68685b2-7e92-4934-989f-8ccfae13451f", - "d9bf2534-8f61-4d16-adab-8e4d84e855be", - "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", - "4a180761-ffc5-4d97-873b-916ca1656760", - "63ff9173-3e59-4bee-9a21-57d199dc88ec", - "015193c6-e760-4b43-b20c-28dc44f0558a", - "280e5a85-9e1a-4b2a-8fde-6cc3d439dfe9", - "e9e722ad-a155-4750-9a2a-a126be84e7ec", - "e49c515c-3414-4a88-aaec-43f9499177ec", - "f46c44d6-0823-444d-9902-d03499774c08", - "69ce0958-621c-4e07-9f8c-41bd64014240", - "800a1d6c-4d5b-4560-b691-99e1b0db1343", - "bb534923-0939-4ebc-88f8-39847999c548", - "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", - "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", - "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", - "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", - "a3062aba-92b8-419f-9d8e-4f21713f9dcc", - "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", - "c17cc951-65ff-4617-a096-ccd1fe6cc26f", - "dbae3900-2b78-4309-9fa5-5503ae30ad22", - "300a7442-8453-4aa4-89f9-beacdcc75174", - "a44c12a5-9a53-4288-b77a-08bf3c4eaadc", - "4a83802a-cebb-4e1a-b140-a3d386f52eae", - "796a2647-8b16-4b22-808f-454e1bee3449", - "5f4522a4-83cd-4392-9a71-d32067987a56", - "2b94ffb1-8934-4ee0-a36c-60c433b4d09e", - "c988f5aa-9ab5-48a6-898c-21c53961d2f3", - "bfc273c8-ec5d-4e76-b6a3-3d443d9f65a2", - "12181a0a-32eb-4333-b444-1760ecaa417c", - "12181a0a-32eb-4333-b444-1760ecaa417c", - "0689eff9-8438-4b1c-9e3a-78c672f6ef82", - "3c0294df-b0e7-4be1-af27-4b755f5639ad", - "912a81e5-66f7-4af9-8125-ae16515fe284", - "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", - "720107c1-f0c2-4f37-8e59-ce7f32cd9461", - "a90c4da7-455c-41d3-9961-c7a64d627572", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "517a8299-e807-4040-8ccd-f417dda7338c" - ], - "stops": [], - "line_id": "b9effdd8-128c-4dc9-a95b-781a36d9814f", - "segments": [ - 0, - 1, - 13, - 23, - 35, - 42, - 45, - 47, - 49, - 57, - 63, - 65, - 68, - 76, - 86, - 94, - 105, - 113, - 119, - 126, - 129, - 136, - 140, - 145, - 147, - 157, - 160, - 167, - 172, - 177, - 182, - 187, - 194, - 198, - 202, - 208, - 219, - 224, - 231, - 252, - 256, - 260, - 266, - 275 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 321, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.452109, - 45.488779 - ], - [ - -73.452059, - 45.488756 - ], - [ - -73.452026, - 45.48874 - ], - [ - -73.451864, - 45.488677 - ], - [ - -73.451663, - 45.488618 - ], - [ - -73.451471, - 45.48856 - ], - [ - -73.451142, - 45.48852 - ], - [ - -73.450754, - 45.488507 - ], - [ - -73.450564, - 45.488501 - ], - [ - -73.450532, - 45.488263 - ], - [ - -73.45047, - 45.488074 - ], - [ - -73.450345, - 45.487867 - ], - [ - -73.450187, - 45.48766 - ], - [ - -73.450004, - 45.487498 - ], - [ - -73.449781, - 45.487354 - ], - [ - -73.449483, - 45.487192 - ], - [ - -73.449234, - 45.487093 - ], - [ - -73.449121, - 45.487056 - ], - [ - -73.448338, - 45.486755 - ], - [ - -73.448148, - 45.486665 - ], - [ - -73.448011, - 45.486602 - ], - [ - -73.447211, - 45.486192 - ], - [ - -73.44682, - 45.485985 - ], - [ - -73.446948, - 45.485867 - ], - [ - -73.447123, - 45.485706 - ], - [ - -73.447356, - 45.48549 - ], - [ - -73.447536, - 45.485315 - ], - [ - -73.447867, - 45.484995 - ], - [ - -73.448285, - 45.484593 - ], - [ - -73.448552, - 45.484334 - ], - [ - -73.448747, - 45.484168 - ], - [ - -73.448891, - 45.484006 - ], - [ - -73.448947, - 45.483943 - ], - [ - -73.449046, - 45.483754 - ], - [ - -73.449223, - 45.483529 - ], - [ - -73.449352, - 45.483408 - ], - [ - -73.44987, - 45.483084 - ], - [ - -73.449978, - 45.483017 - ], - [ - -73.451449, - 45.482131 - ], - [ - -73.451773, - 45.481936 - ], - [ - -73.45215, - 45.481708 - ], - [ - -73.452851, - 45.48129 - ], - [ - -73.453668, - 45.481781 - ], - [ - -73.454023, - 45.481974 - ], - [ - -73.454266, - 45.482101 - ], - [ - -73.454494, - 45.482204 - ], - [ - -73.454624, - 45.482357 - ], - [ - -73.455203, - 45.482812 - ], - [ - -73.455441, - 45.482965 - ], - [ - -73.455998, - 45.483317 - ], - [ - -73.456089, - 45.483375 - ], - [ - -73.456112, - 45.483393 - ], - [ - -73.456334, - 45.483523 - ], - [ - -73.457447, - 45.484256 - ], - [ - -73.457564, - 45.484333 - ], - [ - -73.45799, - 45.484621 - ], - [ - -73.458472, - 45.484946 - ], - [ - -73.458995, - 45.485292 - ], - [ - -73.459345, - 45.485527 - ], - [ - -73.45937, - 45.485544 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459934, - 45.485919 - ], - [ - -73.460376, - 45.486211 - ], - [ - -73.461018, - 45.48664 - ], - [ - -73.461219, - 45.486774 - ], - [ - -73.461292, - 45.486823 - ], - [ - -73.462116, - 45.487367 - ], - [ - -73.462656, - 45.487726 - ], - [ - -73.46278, - 45.487809 - ], - [ - -73.462983, - 45.487944 - ], - [ - -73.463053, - 45.487989 - ], - [ - -73.463291, - 45.488146 - ], - [ - -73.463537, - 45.488299 - ], - [ - -73.464097, - 45.488673 - ], - [ - -73.46422, - 45.488754 - ], - [ - -73.464379, - 45.488857 - ], - [ - -73.464595, - 45.489001 - ], - [ - -73.464738, - 45.489099 - ], - [ - -73.46482, - 45.489155 - ], - [ - -73.46446, - 45.48937 - ], - [ - -73.463805, - 45.489762 - ], - [ - -73.463535, - 45.489919 - ], - [ - -73.46185, - 45.490922 - ], - [ - -73.461641, - 45.491052 - ], - [ - -73.461043, - 45.491412 - ], - [ - -73.459829, - 45.492145 - ], - [ - -73.459713, - 45.492208 - ], - [ - -73.459615, - 45.492262 - ], - [ - -73.459245, - 45.492482 - ], - [ - -73.458942, - 45.492657 - ], - [ - -73.459238, - 45.49291 - ], - [ - -73.459564, - 45.493189 - ], - [ - -73.45962, - 45.493243 - ], - [ - -73.459678, - 45.493328 - ], - [ - -73.459717, - 45.493391 - ], - [ - -73.45974, - 45.493441 - ], - [ - -73.459746, - 45.493457 - ], - [ - -73.459784, - 45.493562 - ], - [ - -73.459999, - 45.494098 - ], - [ - -73.460132, - 45.49444 - ], - [ - -73.460277, - 45.4948 - ], - [ - -73.460301, - 45.494869 - ], - [ - -73.460354, - 45.495016 - ], - [ - -73.460269, - 45.495227 - ], - [ - -73.46018, - 45.495429 - ], - [ - -73.459822, - 45.496293 - ], - [ - -73.45979, - 45.496433 - ], - [ - -73.459786, - 45.496572 - ], - [ - -73.45979, - 45.496635 - ], - [ - -73.459805, - 45.496797 - ], - [ - -73.45984, - 45.496946 - ], - [ - -73.459892, - 45.497045 - ], - [ - -73.459954, - 45.497171 - ], - [ - -73.460063, - 45.497324 - ], - [ - -73.460165, - 45.497427 - ], - [ - -73.460166, - 45.497429 - ], - [ - -73.460224, - 45.497535 - ], - [ - -73.460362, - 45.497454 - ], - [ - -73.46059, - 45.497319 - ], - [ - -73.461046, - 45.497049 - ], - [ - -73.461541, - 45.496748 - ], - [ - -73.462754, - 45.496024 - ], - [ - -73.462904, - 45.495934 - ], - [ - -73.465269, - 45.494527 - ], - [ - -73.465608, - 45.494328 - ], - [ - -73.465714, - 45.494266 - ], - [ - -73.465999, - 45.494495 - ], - [ - -73.46601, - 45.494504 - ], - [ - -73.466053, - 45.494539 - ], - [ - -73.466311, - 45.494743 - ], - [ - -73.466595, - 45.494982 - ], - [ - -73.466865, - 45.495202 - ], - [ - -73.467151, - 45.495441 - ], - [ - -73.467334, - 45.49559 - ], - [ - -73.467417, - 45.495657 - ], - [ - -73.46768, - 45.495882 - ], - [ - -73.468074, - 45.496206 - ], - [ - -73.468449, - 45.496516 - ], - [ - -73.468663, - 45.496696 - ], - [ - -73.468809, - 45.496818 - ], - [ - -73.469174, - 45.497106 - ], - [ - -73.469247, - 45.497142 - ], - [ - -73.469532, - 45.497376 - ], - [ - -73.469575, - 45.497411 - ], - [ - -73.469768, - 45.497569 - ], - [ - -73.470122, - 45.497907 - ], - [ - -73.470322, - 45.498065 - ], - [ - -73.470813, - 45.498474 - ], - [ - -73.470887, - 45.498538 - ], - [ - -73.470968, - 45.498609 - ], - [ - -73.471205, - 45.498803 - ], - [ - -73.471624, - 45.499149 - ], - [ - -73.472162, - 45.499582 - ], - [ - -73.472173, - 45.49959 - ], - [ - -73.472276, - 45.499676 - ], - [ - -73.472579, - 45.499928 - ], - [ - -73.472986, - 45.50027 - ], - [ - -73.473396, - 45.500615 - ], - [ - -73.473574, - 45.500765 - ], - [ - -73.473144, - 45.501026 - ], - [ - -73.472027, - 45.501705 - ], - [ - -73.471225, - 45.502188 - ], - [ - -73.471117, - 45.502254 - ], - [ - -73.469783, - 45.503065 - ], - [ - -73.469716, - 45.503106 - ], - [ - -73.469614, - 45.503168 - ], - [ - -73.469532, - 45.503086 - ], - [ - -73.469411, - 45.503036 - ], - [ - -73.469131, - 45.502809 - ], - [ - -73.468308, - 45.502143 - ], - [ - -73.468227, - 45.502077 - ], - [ - -73.467922, - 45.501812 - ], - [ - -73.467598, - 45.501537 - ], - [ - -73.467259, - 45.501258 - ], - [ - -73.467153, - 45.50117 - ], - [ - -73.466934, - 45.500988 - ], - [ - -73.464327, - 45.502543 - ], - [ - -73.464212, - 45.502612 - ], - [ - -73.463363, - 45.503124 - ], - [ - -73.463263, - 45.503039 - ], - [ - -73.463043, - 45.502853 - ], - [ - -73.462726, - 45.502584 - ], - [ - -73.462443, - 45.502336 - ], - [ - -73.46216, - 45.502089 - ], - [ - -73.461886, - 45.501859 - ], - [ - -73.461724, - 45.501729 - ], - [ - -73.461628, - 45.501652 - ], - [ - -73.461281, - 45.501859 - ], - [ - -73.460922, - 45.502075 - ], - [ - -73.460681, - 45.501872 - ], - [ - -73.460649, - 45.501847 - ], - [ - -73.460537, - 45.501755 - ], - [ - -73.460303, - 45.501557 - ], - [ - -73.459797, - 45.501134 - ], - [ - -73.45932, - 45.50074 - ], - [ - -73.459247, - 45.50068 - ], - [ - -73.45911, - 45.500567 - ], - [ - -73.458792, - 45.500752 - ], - [ - -73.458619, - 45.50085 - ], - [ - -73.458392, - 45.500985 - ], - [ - -73.458179, - 45.50112 - ], - [ - -73.457765, - 45.501367 - ], - [ - -73.457629, - 45.501448 - ], - [ - -73.457366, - 45.501237 - ], - [ - -73.457312, - 45.501192 - ], - [ - -73.457135, - 45.501093 - ], - [ - -73.45648, - 45.500755 - ], - [ - -73.456099, - 45.500539 - ], - [ - -73.455947, - 45.500418 - ], - [ - -73.455926, - 45.500402 - ], - [ - -73.455803, - 45.500305 - ], - [ - -73.455726, - 45.500228 - ], - [ - -73.455439, - 45.500273 - ], - [ - -73.455262, - 45.5003 - ], - [ - -73.455166, - 45.5003 - ], - [ - -73.455067, - 45.500305 - ], - [ - -73.454914, - 45.500255 - ], - [ - -73.45482, - 45.500233 - ], - [ - -73.453483, - 45.499755 - ], - [ - -73.453172, - 45.499634 - ], - [ - -73.452891, - 45.499483 - ], - [ - -73.452794, - 45.499431 - ], - [ - -73.452639, - 45.49935 - ], - [ - -73.452113, - 45.499057 - ], - [ - -73.451834, - 45.498904 - ], - [ - -73.451357, - 45.498643 - ], - [ - -73.451013, - 45.498449 - ], - [ - -73.450487, - 45.498161 - ], - [ - -73.45038, - 45.498103 - ], - [ - -73.450085, - 45.497941 - ], - [ - -73.449884, - 45.498057 - ], - [ - -73.449725, - 45.498152 - ], - [ - -73.449546, - 45.498251 - ], - [ - -73.449496, - 45.498237 - ], - [ - -73.449434, - 45.49821 - ], - [ - -73.448779, - 45.497827 - ], - [ - -73.44838, - 45.497616 - ], - [ - -73.448036, - 45.497431 - ], - [ - -73.447676, - 45.497238 - ], - [ - -73.447323, - 45.497044 - ], - [ - -73.44702, - 45.497219 - ], - [ - -73.446768, - 45.497359 - ], - [ - -73.446666, - 45.497444 - ], - [ - -73.446534, - 45.497471 - ], - [ - -73.44646, - 45.497475 - ], - [ - -73.44636, - 45.497457 - ], - [ - -73.4462, - 45.497417 - ], - [ - -73.446114, - 45.497358 - ], - [ - -73.445887, - 45.497209 - ], - [ - -73.445726, - 45.497102 - ], - [ - -73.442904, - 45.495539 - ], - [ - -73.442881, - 45.495526 - ], - [ - -73.442662, - 45.495404 - ], - [ - -73.442507, - 45.495318 - ], - [ - -73.44213, - 45.495864 - ], - [ - -73.441074, - 45.497391 - ], - [ - -73.440992, - 45.497509 - ], - [ - -73.439779, - 45.499267 - ], - [ - -73.439482, - 45.499161 - ], - [ - -73.439401, - 45.499132 - ], - [ - -73.439311, - 45.499101 - ], - [ - -73.437108, - 45.498332 - ], - [ - -73.437025, - 45.498303 - ], - [ - -73.436911, - 45.498253 - ], - [ - -73.436581, - 45.498141 - ], - [ - -73.436255, - 45.498055 - ], - [ - -73.435929, - 45.497992 - ], - [ - -73.435648, - 45.497915 - ], - [ - -73.434558, - 45.497524 - ], - [ - -73.434393, - 45.497465 - ], - [ - -73.432474, - 45.496791 - ], - [ - -73.432352, - 45.496748 - ], - [ - -73.431202, - 45.496344 - ], - [ - -73.43079, - 45.496199 - ], - [ - -73.430595, - 45.496131 - ], - [ - -73.428793, - 45.495486 - ], - [ - -73.428117, - 45.495247 - ], - [ - -73.42799, - 45.495202 - ], - [ - -73.427327, - 45.494972 - ], - [ - -73.427129, - 45.4949 - ], - [ - -73.426304, - 45.494616 - ], - [ - -73.425789, - 45.494431 - ], - [ - -73.425567, - 45.494332 - ], - [ - -73.425532, - 45.494314 - ], - [ - -73.425435, - 45.494265 - ], - [ - -73.425244, - 45.494166 - ], - [ - -73.425117, - 45.494094 - ], - [ - -73.424993, - 45.493999 - ], - [ - -73.424846, - 45.493877 - ], - [ - -73.424732, - 45.493751 - ], - [ - -73.424622, - 45.493598 - ], - [ - -73.424286, - 45.493252 - ], - [ - -73.424064, - 45.493076 - ], - [ - -73.424027, - 45.493054 - ], - [ - -73.423956, - 45.493013 - ], - [ - -73.423777, - 45.492914 - ], - [ - -73.423558, - 45.492824 - ], - [ - -73.423264, - 45.492711 - ], - [ - -73.422869, - 45.492571 - ], - [ - -73.422074, - 45.492295 - ], - [ - -73.422051, - 45.492287 - ], - [ - -73.421183, - 45.491976 - ], - [ - -73.420312, - 45.491674 - ], - [ - -73.419483, - 45.491395 - ], - [ - -73.419326, - 45.491336 - ], - [ - -73.419176, - 45.491259 - ], - [ - -73.419007, - 45.49116 - ], - [ - -73.418432, - 45.490863 - ], - [ - -73.418223, - 45.490764 - ], - [ - -73.417895, - 45.490615 - ], - [ - -73.416915, - 45.49021 - ], - [ - -73.416651, - 45.490097 - ], - [ - -73.416262, - 45.489948 - ], - [ - -73.416107, - 45.489893 - ], - [ - -73.415958, - 45.48984 - ], - [ - -73.414473, - 45.489314 - ], - [ - -73.413397, - 45.488933 - ] - ] - }, - "id": 322, - "properties": { - "id": "3521c0b6-c732-463b-8d4e-9388cfcd37f9", - "data": { - "gtfs": { - "shape_id": "601_1_R" - }, - "segments": [ - { - "distanceMeters": 112, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 631, - "travelTimeSeconds": 94 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 446, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 359, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 721, - "travelTimeSeconds": 107 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 46, - "travelTimeSeconds": 7 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 432, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 443, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 36, - "travelTimeSeconds": 5 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 713, - "travelTimeSeconds": 105 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 36 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 11322, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3054.7433101553515, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.74, - "travelTimeWithoutDwellTimesSeconds": 1680, - "operatingTimeWithLayoverTimeSeconds": 1860, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1680, - "operatingSpeedWithLayoverMetersPerSecond": 6.09, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.74 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "517a8299-e807-4040-8ccd-f417dda7338c", - "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", - "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "1f1b5a64-7c8d-49de-8df3-369e30f799ef", - "c24b91da-a4a3-4b28-b987-5726c6a01fdb", - "720107c1-f0c2-4f37-8e59-ce7f32cd9461", - "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", - "e49dac95-6777-4527-88d9-43533c4c81ab", - "3c0294df-b0e7-4be1-af27-4b755f5639ad", - "0689eff9-8438-4b1c-9e3a-78c672f6ef82", - "12181a0a-32eb-4333-b444-1760ecaa417c", - "bfc273c8-ec5d-4e76-b6a3-3d443d9f65a2", - "c988f5aa-9ab5-48a6-898c-21c53961d2f3", - "c988f5aa-9ab5-48a6-898c-21c53961d2f3", - "2b94ffb1-8934-4ee0-a36c-60c433b4d09e", - "5f4522a4-83cd-4392-9a71-d32067987a56", - "796a2647-8b16-4b22-808f-454e1bee3449", - "4a83802a-cebb-4e1a-b140-a3d386f52eae", - "a44c12a5-9a53-4288-b77a-08bf3c4eaadc", - "300a7442-8453-4aa4-89f9-beacdcc75174", - "dbae3900-2b78-4309-9fa5-5503ae30ad22", - "5b1f9db8-9fc7-4028-9f92-fd33d2f419e7", - "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", - "ef559a5c-0885-4ac5-a0dc-bdf67aea0546", - "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", - "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", - "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", - "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", - "bb534923-0939-4ebc-88f8-39847999c548", - "800a1d6c-4d5b-4560-b691-99e1b0db1343", - "69ce0958-621c-4e07-9f8c-41bd64014240", - "f46c44d6-0823-444d-9902-d03499774c08", - "e9e722ad-a155-4750-9a2a-a126be84e7ec", - "a03c8e5e-b707-45da-b2b1-2e8109893679", - "662f52e5-0ed5-4ba7-81cb-757051eefa2c", - "015193c6-e760-4b43-b20c-28dc44f0558a", - "45eb186b-1efe-43c4-8e82-92fe5a15a753", - "63ff9173-3e59-4bee-9a21-57d199dc88ec", - "4a180761-ffc5-4d97-873b-916ca1656760", - "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", - "d9bf2534-8f61-4d16-adab-8e4d84e855be", - "d9bf2534-8f61-4d16-adab-8e4d84e855be", - "d68685b2-7e92-4934-989f-8ccfae13451f", - "28985ee5-9fc5-416a-81f8-ff25dba2b6da", - "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", - "4b07d309-8f54-43c8-997d-d4abd77f2d1e", - "ec6dc36f-a6d2-4f32-a06b-8b08421e0620" - ], - "stops": [], - "line_id": "b9effdd8-128c-4dc9-a95b-781a36d9814f", - "segments": [ - 0, - 7, - 28, - 36, - 39, - 49, - 58, - 63, - 67, - 77, - 96, - 101, - 115, - 121, - 124, - 127, - 133, - 138, - 143, - 148, - 152, - 157, - 161, - 163, - 169, - 174, - 180, - 185, - 190, - 194, - 201, - 208, - 220, - 228, - 248, - 250, - 254, - 255, - 260, - 261, - 268, - 270, - 272, - 273, - 276, - 283, - 293, - 313 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 322, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521447, - 45.524278 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522519, - 45.524053 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522189, - 45.522392 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520123, - 45.519901 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.519318, - 45.517318 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518922, - 45.516657 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517659, - 45.513615 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517704, - 45.511771 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.517612, - 45.509418 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517231, - 45.507335 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517347, - 45.505756 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.516771, - 45.502132 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.51647, - 45.501401 - ], - [ - -73.516373, - 45.50114 - ], - [ - -73.516146, - 45.500501 - ], - [ - -73.515977, - 45.500074 - ], - [ - -73.515873, - 45.499831 - ], - [ - -73.515698, - 45.499498 - ], - [ - -73.515674, - 45.499453 - ], - [ - -73.515623, - 45.499359 - ], - [ - -73.51517, - 45.49854 - ], - [ - -73.515085, - 45.498391 - ], - [ - -73.514769, - 45.497838 - ], - [ - -73.514552, - 45.497478 - ], - [ - -73.514219, - 45.49697 - ], - [ - -73.514166, - 45.496911 - ], - [ - -73.514104, - 45.49683 - ], - [ - -73.514054, - 45.496749 - ], - [ - -73.514009, - 45.496686 - ], - [ - -73.513974, - 45.496614 - ], - [ - -73.513925, - 45.49652 - ], - [ - -73.513899, - 45.496425 - ], - [ - -73.51384, - 45.496187 - ], - [ - -73.513786, - 45.49598 - ], - [ - -73.513692, - 45.495557 - ], - [ - -73.513666, - 45.495442 - ], - [ - -73.513621, - 45.495251 - ], - [ - -73.513604, - 45.495179 - ], - [ - -73.513561, - 45.49499 - ], - [ - -73.513505, - 45.494783 - ], - [ - -73.513459, - 45.494626 - ], - [ - -73.513342, - 45.494287 - ], - [ - -73.513283, - 45.494149 - ], - [ - -73.513261, - 45.494078 - ], - [ - -73.513094, - 45.493766 - ], - [ - -73.512984, - 45.493515 - ], - [ - -73.512971, - 45.493496 - ], - [ - -73.512921, - 45.493393 - ], - [ - -73.512764, - 45.493074 - ], - [ - -73.51245, - 45.492507 - ], - [ - -73.512406, - 45.492415 - ], - [ - -73.512404, - 45.492412 - ], - [ - -73.510962, - 45.490339 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.510813, - 45.490118 - ], - [ - -73.509971, - 45.488912 - ], - [ - -73.509822, - 45.488699 - ], - [ - -73.509764, - 45.488615 - ], - [ - -73.509675, - 45.488489 - ], - [ - -73.508585, - 45.486912 - ], - [ - -73.508543, - 45.486852 - ], - [ - -73.508489, - 45.486784 - ], - [ - -73.508385, - 45.486622 - ], - [ - -73.508225, - 45.48637 - ], - [ - -73.508077, - 45.486145 - ], - [ - -73.507754, - 45.485677 - ], - [ - -73.50762, - 45.485484 - ], - [ - -73.507518, - 45.485367 - ], - [ - -73.507431, - 45.485295 - ], - [ - -73.507329, - 45.4852 - ], - [ - -73.507185, - 45.485097 - ], - [ - -73.507115, - 45.485056 - ], - [ - -73.506951, - 45.484962 - ], - [ - -73.506746, - 45.484863 - ], - [ - -73.506624, - 45.484814 - ], - [ - -73.505993, - 45.484584 - ], - [ - -73.505851, - 45.484535 - ], - [ - -73.505663, - 45.484463 - ], - [ - -73.505521, - 45.484395 - ], - [ - -73.505364, - 45.484314 - ], - [ - -73.505242, - 45.484242 - ], - [ - -73.505108, - 45.484152 - ], - [ - -73.504929, - 45.483999 - ], - [ - -73.504924, - 45.483995 - ], - [ - -73.504857, - 45.483927 - ], - [ - -73.504846, - 45.483915 - ], - [ - -73.504614, - 45.483657 - ], - [ - -73.504141, - 45.483117 - ], - [ - -73.503671, - 45.48258 - ], - [ - -73.503598, - 45.482497 - ], - [ - -73.503512, - 45.48238 - ], - [ - -73.50345, - 45.482308 - ], - [ - -73.503272, - 45.482092 - ], - [ - -73.502806, - 45.48156 - ], - [ - -73.502676, - 45.481412 - ], - [ - -73.501976, - 45.480643 - ], - [ - -73.501828, - 45.48048 - ], - [ - -73.50163, - 45.480263 - ], - [ - -73.501562, - 45.480174 - ], - [ - -73.501309, - 45.479775 - ], - [ - -73.501238, - 45.479689 - ], - [ - -73.501074, - 45.479488 - ], - [ - -73.500829, - 45.479284 - ], - [ - -73.50074, - 45.479167 - ], - [ - -73.500635, - 45.479076 - ], - [ - -73.500662, - 45.478997 - ], - [ - -73.500703, - 45.478888 - ], - [ - -73.500708, - 45.478848 - ], - [ - -73.500618, - 45.478724 - ], - [ - -73.500601, - 45.478716 - ], - [ - -73.500465, - 45.47866 - ], - [ - -73.500394, - 45.478632 - ], - [ - -73.500191, - 45.478362 - ], - [ - -73.500102, - 45.478164 - ], - [ - -73.500052, - 45.478083 - ], - [ - -73.500034, - 45.478051 - ], - [ - -73.499927, - 45.477858 - ], - [ - -73.499728, - 45.477516 - ], - [ - -73.499052, - 45.476282 - ], - [ - -73.498986, - 45.476162 - ], - [ - -73.49875, - 45.475721 - ], - [ - -73.498676, - 45.475532 - ], - [ - -73.498554, - 45.475215 - ], - [ - -73.498471, - 45.475001 - ], - [ - -73.498395, - 45.474902 - ], - [ - -73.498245, - 45.474839 - ], - [ - -73.498064, - 45.474821 - ], - [ - -73.497243, - 45.474807 - ], - [ - -73.496473, - 45.474726 - ], - [ - -73.495455, - 45.474677 - ], - [ - -73.495399, - 45.474674 - ], - [ - -73.494958, - 45.47465 - ], - [ - -73.494447, - 45.474632 - ], - [ - -73.493633, - 45.474613 - ], - [ - -73.49348, - 45.474609 - ], - [ - -73.492987, - 45.474582 - ], - [ - -73.492833, - 45.474564 - ], - [ - -73.492566, - 45.474483 - ], - [ - -73.4924, - 45.474429 - ], - [ - -73.492221, - 45.474321 - ], - [ - -73.491964, - 45.474047 - ], - [ - -73.491842, - 45.473885 - ], - [ - -73.491679, - 45.473703 - ], - [ - -73.491514, - 45.47352 - ], - [ - -73.490819, - 45.472701 - ], - [ - -73.490331, - 45.47211 - ], - [ - -73.490196, - 45.471948 - ], - [ - -73.490057, - 45.471779 - ], - [ - -73.489969, - 45.471675 - ], - [ - -73.489522, - 45.471873 - ], - [ - -73.489116, - 45.472013 - ], - [ - -73.48901, - 45.472049 - ], - [ - -73.488898, - 45.472089 - ], - [ - -73.488483, - 45.472229 - ], - [ - -73.48807, - 45.472359 - ], - [ - -73.487106, - 45.472676 - ], - [ - -73.486715, - 45.472804 - ], - [ - -73.486452, - 45.472892 - ], - [ - -73.48607, - 45.47302 - ], - [ - -73.485914, - 45.473065 - ], - [ - -73.485995, - 45.473164 - ], - [ - -73.486497, - 45.473763 - ], - [ - -73.486758, - 45.474064 - ], - [ - -73.48687, - 45.474197 - ], - [ - -73.487244, - 45.47464 - ], - [ - -73.487321, - 45.474735 - ], - [ - -73.487428, - 45.474874 - ], - [ - -73.487615, - 45.475158 - ], - [ - -73.487741, - 45.475441 - ], - [ - -73.487774, - 45.475548 - ], - [ - -73.487792, - 45.475608 - ], - [ - -73.487881, - 45.476058 - ], - [ - -73.487976, - 45.47662 - ], - [ - -73.488008, - 45.476755 - ], - [ - -73.488063, - 45.477092 - ], - [ - -73.488079, - 45.477241 - ], - [ - -73.488077, - 45.477259 - ], - [ - -73.488079, - 45.477295 - ], - [ - -73.488061, - 45.477358 - ], - [ - -73.488022, - 45.477403 - ], - [ - -73.48794, - 45.477475 - ], - [ - -73.487785, - 45.477583 - ], - [ - -73.487395, - 45.47784 - ], - [ - -73.487212, - 45.477961 - ], - [ - -73.486606, - 45.478379 - ], - [ - -73.486502, - 45.478446 - ], - [ - -73.486467, - 45.478469 - ], - [ - -73.486363, - 45.478568 - ], - [ - -73.486284, - 45.478752 - ], - [ - -73.48627, - 45.478815 - ], - [ - -73.486261, - 45.478855 - ], - [ - -73.486253, - 45.478887 - ], - [ - -73.486246, - 45.47895 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486149, - 45.479058 - ], - [ - -73.485771, - 45.479058 - ], - [ - -73.485584, - 45.479045 - ], - [ - -73.485227, - 45.479031 - ], - [ - -73.484917, - 45.479027 - ], - [ - -73.482846, - 45.478998 - ], - [ - -73.482756, - 45.478997 - ], - [ - -73.482631, - 45.478995 - ], - [ - -73.482205, - 45.478986 - ], - [ - -73.481631, - 45.478977 - ], - [ - -73.480089, - 45.478949 - ], - [ - -73.479623, - 45.478936 - ], - [ - -73.479324, - 45.478923 - ], - [ - -73.479295, - 45.478922 - ], - [ - -73.479175, - 45.478922 - ], - [ - -73.479078, - 45.478918 - ], - [ - -73.478692, - 45.47891 - ], - [ - -73.478426, - 45.478904 - ], - [ - -73.478298, - 45.478904 - ], - [ - -73.478146, - 45.478904 - ], - [ - -73.478075, - 45.478904 - ], - [ - -73.477979, - 45.478918 - ], - [ - -73.477866, - 45.478954 - ], - [ - -73.477757, - 45.479003 - ], - [ - -73.477713, - 45.479021 - ], - [ - -73.477667, - 45.479048 - ], - [ - -73.477754, - 45.479101 - ], - [ - -73.477833, - 45.479125 - ], - [ - -73.478515, - 45.47962 - ], - [ - -73.479163, - 45.480082 - ], - [ - -73.47933, - 45.4802 - ], - [ - -73.479422, - 45.480272 - ], - [ - -73.479511, - 45.480326 - ], - [ - -73.479961, - 45.480655 - ], - [ - -73.480428, - 45.480974 - ], - [ - -73.480755, - 45.481226 - ], - [ - -73.481141, - 45.481496 - ], - [ - -73.481413, - 45.481693 - ], - [ - -73.481483, - 45.481744 - ], - [ - -73.48159, - 45.481816 - ], - [ - -73.481822, - 45.481987 - ], - [ - -73.481995, - 45.482108 - ], - [ - -73.482091, - 45.482176 - ], - [ - -73.482188, - 45.482243 - ], - [ - -73.482644, - 45.48257 - ], - [ - -73.482999, - 45.482824 - ], - [ - -73.483337, - 45.483067 - ], - [ - -73.483483, - 45.483175 - ], - [ - -73.483637, - 45.483278 - ], - [ - -73.484263, - 45.483728 - ], - [ - -73.484753, - 45.484078 - ], - [ - -73.485416, - 45.484552 - ], - [ - -73.485807, - 45.484835 - ], - [ - -73.486446, - 45.485294 - ], - [ - -73.486783, - 45.485533 - ], - [ - -73.486832, - 45.485569 - ], - [ - -73.487051, - 45.485731 - ], - [ - -73.487831, - 45.486284 - ], - [ - -73.488568, - 45.486806 - ], - [ - -73.488934, - 45.487057 - ], - [ - -73.489048, - 45.487135 - ], - [ - -73.489411, - 45.487405 - ], - [ - -73.490801, - 45.488399 - ], - [ - -73.49145, - 45.488863 - ], - [ - -73.491557, - 45.488939 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.492138, - 45.488647 - ], - [ - -73.492246, - 45.488512 - ], - [ - -73.492413, - 45.48862 - ], - [ - -73.492448, - 45.488643 - ], - [ - -73.492658, - 45.488782 - ], - [ - -73.492831, - 45.488903 - ], - [ - -73.492962, - 45.488996 - ], - [ - -73.493685, - 45.489511 - ], - [ - -73.494044, - 45.489767 - ], - [ - -73.494263, - 45.489927 - ], - [ - -73.494463, - 45.490073 - ], - [ - -73.494432, - 45.490141 - ], - [ - -73.494331, - 45.490171 - ], - [ - -73.494158, - 45.490222 - ], - [ - -73.49392, - 45.490316 - ], - [ - -73.493794, - 45.490397 - ], - [ - -73.493701, - 45.490456 - ], - [ - -73.493573, - 45.490366 - ], - [ - -73.492976, - 45.489943 - ], - [ - -73.492778, - 45.489803 - ], - [ - -73.492465, - 45.489583 - ], - [ - -73.492419, - 45.48955 - ], - [ - -73.492275, - 45.489448 - ], - [ - -73.492218, - 45.489407 - ], - [ - -73.492042, - 45.489281 - ], - [ - -73.491721, - 45.489052 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.491557, - 45.488939 - ], - [ - -73.491474, - 45.489016 - ], - [ - -73.491262, - 45.489144 - ], - [ - -73.490406, - 45.489663 - ], - [ - -73.489477, - 45.490208 - ], - [ - -73.48937, - 45.490271 - ], - [ - -73.488602, - 45.490739 - ], - [ - -73.487465, - 45.491422 - ], - [ - -73.487307, - 45.491517 - ], - [ - -73.486988, - 45.491706 - ], - [ - -73.486715, - 45.491868 - ], - [ - -73.486076, - 45.492313 - ], - [ - -73.485972, - 45.492385 - ], - [ - -73.484881, - 45.493177 - ], - [ - -73.484082, - 45.493749 - ], - [ - -73.483989, - 45.493816 - ], - [ - -73.483684, - 45.493615 - ], - [ - -73.483569, - 45.493539 - ], - [ - -73.481761, - 45.492348 - ], - [ - -73.481424, - 45.492125 - ], - [ - -73.481312, - 45.492051 - ], - [ - -73.481502, - 45.491907 - ], - [ - -73.481557, - 45.491867 - ], - [ - -73.481586, - 45.49184 - ], - [ - -73.481575, - 45.491826 - ], - [ - -73.481545, - 45.491786 - ], - [ - -73.481409, - 45.491696 - ], - [ - -73.479347, - 45.490233 - ], - [ - -73.479214, - 45.490139 - ], - [ - -73.478723, - 45.489788 - ], - [ - -73.476911, - 45.488498 - ], - [ - -73.476789, - 45.488411 - ], - [ - -73.476696, - 45.48846 - ], - [ - -73.476492, - 45.488586 - ], - [ - -73.476259, - 45.488424 - ], - [ - -73.47601, - 45.48819 - ], - [ - -73.475749, - 45.488011 - ], - [ - -73.475597, - 45.487907 - ], - [ - -73.475267, - 45.487681 - ], - [ - -73.475065, - 45.487542 - ], - [ - -73.475345, - 45.487344 - ], - [ - -73.475741, - 45.487061 - ], - [ - -73.475863, - 45.486966 - ], - [ - -73.475994, - 45.486863 - ], - [ - -73.475578, - 45.486575 - ], - [ - -73.475325, - 45.486402 - ], - [ - -73.475157, - 45.486287 - ], - [ - -73.475583, - 45.485981 - ], - [ - -73.475956, - 45.48572 - ], - [ - -73.475621, - 45.485472 - ], - [ - -73.475481, - 45.485369 - ], - [ - -73.475135, - 45.485121 - ], - [ - -73.474818, - 45.484892 - ], - [ - -73.474649, - 45.484768 - ], - [ - -73.474566, - 45.484707 - ], - [ - -73.473747, - 45.484113 - ], - [ - -73.473062, - 45.483619 - ], - [ - -73.472948, - 45.483537 - ], - [ - -73.472033, - 45.482872 - ], - [ - -73.471834, - 45.482727 - ], - [ - -73.47134, - 45.482367 - ], - [ - -73.471082, - 45.482171 - ], - [ - -73.47091, - 45.482041 - ], - [ - -73.470805, - 45.481962 - ], - [ - -73.470742, - 45.481922 - ], - [ - -73.470609, - 45.481836 - ], - [ - -73.470436, - 45.481957 - ], - [ - -73.470271, - 45.48207 - ], - [ - -73.469956, - 45.482272 - ], - [ - -73.469608, - 45.48252 - ], - [ - -73.469293, - 45.482731 - ], - [ - -73.469261, - 45.482752 - ], - [ - -73.468943, - 45.48296 - ], - [ - -73.468655, - 45.483149 - ], - [ - -73.468621, - 45.483172 - ], - [ - -73.468282, - 45.483401 - ], - [ - -73.467378, - 45.484028 - ], - [ - -73.466985, - 45.484267 - ], - [ - -73.466778, - 45.484384 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466022, - 45.484682 - ], - [ - -73.465888, - 45.484747 - ], - [ - -73.465767, - 45.484792 - ], - [ - -73.465702, - 45.484807 - ], - [ - -73.465661, - 45.484807 - ], - [ - -73.465627, - 45.484802 - ], - [ - -73.4655, - 45.484766 - ], - [ - -73.464965, - 45.484574 - ], - [ - -73.464559, - 45.484417 - ], - [ - -73.464508, - 45.484399 - ], - [ - -73.464185, - 45.484291 - ], - [ - -73.463703, - 45.484155 - ], - [ - -73.463657, - 45.484142 - ], - [ - -73.46319, - 45.484029 - ], - [ - -73.462672, - 45.483908 - ], - [ - -73.462287, - 45.483831 - ], - [ - -73.462032, - 45.483791 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.46135, - 45.4837 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461197, - 45.484333 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.459559, - 45.485495 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.457885, - 45.486536 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.456941, - 45.487836 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456449, - 45.487901 - ], - [ - -73.456154, - 45.487865 - ], - [ - -73.455852, - 45.487802 - ], - [ - -73.455596, - 45.487748 - ], - [ - -73.455357, - 45.487675 - ], - [ - -73.455213, - 45.487621 - ], - [ - -73.454998, - 45.487531 - ], - [ - -73.454777, - 45.487423 - ], - [ - -73.454672, - 45.487356 - ], - [ - -73.454523, - 45.487261 - ], - [ - -73.454176, - 45.487527 - ], - [ - -73.453821, - 45.487792 - ], - [ - -73.452906, - 45.488462 - ] - ] - }, - "id": 323, - "properties": { - "id": "15fb4488-70ab-4ea6-a637-53166597f261", - "data": { - "gtfs": { - "shape_id": "602_1_A" - }, - "segments": [ - { - "distanceMeters": 137, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 646, - "travelTimeSeconds": 102 - }, - { - "distanceMeters": 378, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 353, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 413, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 481, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 447, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 548, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 399, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 372, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 26, - "travelTimeSeconds": 4 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 43, - "travelTimeSeconds": 7 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 1159, - "travelTimeSeconds": 183 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 402, - "travelTimeSeconds": 64 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 246, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 15622, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6651.5379629597555, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.35, - "travelTimeWithoutDwellTimesSeconds": 2460, - "operatingTimeWithLayoverTimeSeconds": 2706, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2460, - "operatingSpeedWithLayoverMetersPerSecond": 5.77, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.35 - }, - "mode": "bus", - "name": "École de l'Agora", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "4c755ece-2475-4915-941e-37859f0f391f", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "0b09b82c-ec97-406d-9f1c-690cc935b5ea", - "27330ef0-4c59-4e22-a044-51b9d43c9719", - "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "bc9b9243-e0ec-461a-9898-6eb69ecd511a", - "41d7b6d4-1fe4-44ed-a774-b005607fc59d", - "9f22d75f-cc66-4020-8804-7912f49950d8", - "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "4df7f34c-ec49-4d48-90b3-56f3faffc976", - "aa2b19e6-8fc9-4313-8ff2-0087861c575d", - "28d21225-939d-4260-9ed4-5c109f412ad9", - "be011751-8885-454f-b767-5c0f1402d83f", - "c6165892-3719-417f-8d25-92e65471b42c", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "f2aa277d-e5f8-429d-bc46-2a1c844da636", - "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", - "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", - "fc92d5a1-fe31-4274-9837-2686b4525030", - "528dcb9e-5a83-46d3-8e03-42692ca57a5a", - "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", - "1e48d359-2463-4fbd-b946-c0a530db4bbe", - "dc5fe0eb-b8cc-4186-82d3-6787360ae612", - "0a623471-271f-47f5-9a85-7feece2a3285", - "aa413165-9699-49b6-9dea-fa35bda8f373", - "54bbe390-ff6d-41d9-bd4b-1e4843d66512", - "7faed35b-7709-443d-b0ec-5f09ab018202", - "fa220212-b6b2-4456-934f-7248f9884444", - "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", - "fa220212-b6b2-4456-934f-7248f9884444", - "196681e4-c9e5-4a79-a3b1-ce225227e0aa", - "a2e6b668-43de-43be-8b1b-07b41b333c8d", - "f132c08e-1812-4b2f-84fb-340628d1ac39", - "ff721ee3-8729-47c1-80cd-7dd5e7142284", - "3040b262-0b20-4c40-9350-e484adfe1d60", - "3040b262-0b20-4c40-9350-e484adfe1d60", - "c4f08e33-183e-41cf-9f96-5985f148bd11", - "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", - "ac9a9c14-57c3-4a81-9316-ceca9586731d", - "1e205a49-fad6-428c-9d0c-b4018473837d", - "a5c03062-e324-4cb7-8c59-00c59a14b63e", - "3c04c568-5ef2-4b47-8d34-b0d175358d60", - "c229b499-645e-4877-8f57-0fc6de2a8d53", - "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", - "a4f163e1-b90e-4fc3-82f3-f03b3181860d", - "c24b91da-a4a3-4b28-b987-5726c6a01fdb", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "517a8299-e807-4040-8ccd-f417dda7338c" - ], - "stops": [], - "line_id": "db2ed6a6-f372-4b36-bb4f-1545b8cfbe98", - "segments": [ - 0, - 8, - 47, - 58, - 69, - 75, - 82, - 88, - 93, - 105, - 113, - 131, - 146, - 148, - 152, - 155, - 178, - 184, - 191, - 214, - 226, - 229, - 238, - 242, - 251, - 259, - 265, - 278, - 281, - 295, - 302, - 319, - 327, - 340, - 345, - 349, - 353, - 362, - 365, - 378, - 380, - 387, - 390, - 394, - 397, - 399, - 402, - 410, - 413, - 421, - 428, - 432, - 436, - 439, - 445, - 494, - 500, - 509 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 323, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.452109, - 45.488779 - ], - [ - -73.452059, - 45.488756 - ], - [ - -73.452026, - 45.48874 - ], - [ - -73.451864, - 45.488677 - ], - [ - -73.451663, - 45.488618 - ], - [ - -73.451471, - 45.48856 - ], - [ - -73.451142, - 45.48852 - ], - [ - -73.450753, - 45.488507 - ], - [ - -73.450564, - 45.488501 - ], - [ - -73.450532, - 45.488263 - ], - [ - -73.45047, - 45.488074 - ], - [ - -73.450345, - 45.487867 - ], - [ - -73.450187, - 45.48766 - ], - [ - -73.450004, - 45.487498 - ], - [ - -73.449781, - 45.487354 - ], - [ - -73.449483, - 45.487192 - ], - [ - -73.449234, - 45.487093 - ], - [ - -73.449121, - 45.487056 - ], - [ - -73.448338, - 45.486755 - ], - [ - -73.448148, - 45.486665 - ], - [ - -73.448011, - 45.486602 - ], - [ - -73.447211, - 45.486192 - ], - [ - -73.44682, - 45.485985 - ], - [ - -73.447123, - 45.485706 - ], - [ - -73.447283, - 45.485557 - ], - [ - -73.447356, - 45.48549 - ], - [ - -73.447536, - 45.485315 - ], - [ - -73.447867, - 45.484995 - ], - [ - -73.448287, - 45.48459 - ], - [ - -73.448552, - 45.484334 - ], - [ - -73.448747, - 45.484168 - ], - [ - -73.448891, - 45.484006 - ], - [ - -73.448947, - 45.483943 - ], - [ - -73.449046, - 45.483754 - ], - [ - -73.449223, - 45.483529 - ], - [ - -73.449352, - 45.483408 - ], - [ - -73.449874, - 45.483082 - ], - [ - -73.449978, - 45.483017 - ], - [ - -73.451449, - 45.482131 - ], - [ - -73.451778, - 45.481933 - ], - [ - -73.45215, - 45.481708 - ], - [ - -73.452851, - 45.48129 - ], - [ - -73.453668, - 45.481781 - ], - [ - -73.454023, - 45.481974 - ], - [ - -73.454266, - 45.482101 - ], - [ - -73.454494, - 45.482204 - ], - [ - -73.454893, - 45.482398 - ], - [ - -73.455361, - 45.482587 - ], - [ - -73.455562, - 45.482663 - ], - [ - -73.455798, - 45.482744 - ], - [ - -73.456376, - 45.48292 - ], - [ - -73.456963, - 45.483096 - ], - [ - -73.457696, - 45.483312 - ], - [ - -73.457948, - 45.48338 - ], - [ - -73.45825, - 45.483452 - ], - [ - -73.458477, - 45.483499 - ], - [ - -73.458491, - 45.483501 - ], - [ - -73.458691, - 45.483542 - ], - [ - -73.458995, - 45.483592 - ], - [ - -73.459974, - 45.483704 - ], - [ - -73.46004, - 45.48371 - ], - [ - -73.460548, - 45.483757 - ], - [ - -73.460806, - 45.483781 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.462585, - 45.484043 - ], - [ - -73.463416, - 45.484224 - ], - [ - -73.463639, - 45.484291 - ], - [ - -73.464599, - 45.48462 - ], - [ - -73.465244, - 45.484835 - ], - [ - -73.465443, - 45.484908 - ], - [ - -73.465586, - 45.484937 - ], - [ - -73.465724, - 45.484942 - ], - [ - -73.465848, - 45.484931 - ], - [ - -73.466018, - 45.484884 - ], - [ - -73.466121, - 45.484844 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466778, - 45.484384 - ], - [ - -73.46693, - 45.484298 - ], - [ - -73.466985, - 45.484267 - ], - [ - -73.467378, - 45.484028 - ], - [ - -73.468282, - 45.483401 - ], - [ - -73.468621, - 45.483172 - ], - [ - -73.468655, - 45.483149 - ], - [ - -73.468943, - 45.48296 - ], - [ - -73.469261, - 45.482752 - ], - [ - -73.469293, - 45.482731 - ], - [ - -73.469608, - 45.48252 - ], - [ - -73.469942, - 45.482282 - ], - [ - -73.469956, - 45.482272 - ], - [ - -73.470271, - 45.48207 - ], - [ - -73.470282, - 45.482063 - ], - [ - -73.470436, - 45.481957 - ], - [ - -73.470609, - 45.481836 - ], - [ - -73.470742, - 45.481922 - ], - [ - -73.470805, - 45.481962 - ], - [ - -73.47134, - 45.482367 - ], - [ - -73.471834, - 45.482727 - ], - [ - -73.472033, - 45.482872 - ], - [ - -73.472851, - 45.483467 - ], - [ - -73.472948, - 45.483537 - ], - [ - -73.473747, - 45.484113 - ], - [ - -73.474492, - 45.484654 - ], - [ - -73.474566, - 45.484707 - ], - [ - -73.474818, - 45.484892 - ], - [ - -73.475135, - 45.485121 - ], - [ - -73.475481, - 45.485369 - ], - [ - -73.475677, - 45.485513 - ], - [ - -73.475956, - 45.48572 - ], - [ - -73.475583, - 45.485981 - ], - [ - -73.475157, - 45.486287 - ], - [ - -73.475578, - 45.486575 - ], - [ - -73.475858, - 45.486769 - ], - [ - -73.475994, - 45.486863 - ], - [ - -73.475863, - 45.486966 - ], - [ - -73.475741, - 45.487061 - ], - [ - -73.475468, - 45.487256 - ], - [ - -73.475345, - 45.487344 - ], - [ - -73.475065, - 45.487542 - ], - [ - -73.475417, - 45.487783 - ], - [ - -73.475597, - 45.487907 - ], - [ - -73.47601, - 45.48819 - ], - [ - -73.476259, - 45.488424 - ], - [ - -73.476492, - 45.488586 - ], - [ - -73.476696, - 45.48846 - ], - [ - -73.476727, - 45.488444 - ], - [ - -73.476789, - 45.488411 - ], - [ - -73.478723, - 45.489788 - ], - [ - -73.479108, - 45.490063 - ], - [ - -73.479214, - 45.490139 - ], - [ - -73.481409, - 45.491696 - ], - [ - -73.481442, - 45.491718 - ], - [ - -73.481545, - 45.491786 - ], - [ - -73.481575, - 45.491826 - ], - [ - -73.481586, - 45.49184 - ], - [ - -73.481557, - 45.491867 - ], - [ - -73.481502, - 45.491907 - ], - [ - -73.481312, - 45.492051 - ], - [ - -73.481761, - 45.492348 - ], - [ - -73.483473, - 45.493476 - ], - [ - -73.48393, - 45.493777 - ], - [ - -73.483989, - 45.493816 - ], - [ - -73.48407, - 45.49387 - ], - [ - -73.484957, - 45.493231 - ], - [ - -73.486013, - 45.492487 - ], - [ - -73.486068, - 45.492448 - ], - [ - -73.486525, - 45.49212 - ], - [ - -73.486777, - 45.49194 - ], - [ - -73.486792, - 45.491931 - ], - [ - -73.487065, - 45.491769 - ], - [ - -73.487289, - 45.491629 - ], - [ - -73.487383, - 45.491571 - ], - [ - -73.48867, - 45.490802 - ], - [ - -73.489402, - 45.490361 - ], - [ - -73.489454, - 45.490329 - ], - [ - -73.49048, - 45.489717 - ], - [ - -73.49127, - 45.489238 - ], - [ - -73.491548, - 45.48907 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.491557, - 45.488939 - ], - [ - -73.49119, - 45.488677 - ], - [ - -73.490801, - 45.488399 - ], - [ - -73.489411, - 45.487405 - ], - [ - -73.489344, - 45.487355 - ], - [ - -73.489048, - 45.487135 - ], - [ - -73.488568, - 45.486806 - ], - [ - -73.487831, - 45.486284 - ], - [ - -73.487126, - 45.485784 - ], - [ - -73.487051, - 45.485731 - ], - [ - -73.486783, - 45.485533 - ], - [ - -73.486446, - 45.485294 - ], - [ - -73.485807, - 45.484835 - ], - [ - -73.485416, - 45.484552 - ], - [ - -73.484988, - 45.484246 - ], - [ - -73.484263, - 45.483728 - ], - [ - -73.483637, - 45.483278 - ], - [ - -73.483483, - 45.483175 - ], - [ - -73.483337, - 45.483067 - ], - [ - -73.482999, - 45.482824 - ], - [ - -73.482644, - 45.48257 - ], - [ - -73.482188, - 45.482243 - ], - [ - -73.482091, - 45.482176 - ], - [ - -73.481995, - 45.482108 - ], - [ - -73.481822, - 45.481987 - ], - [ - -73.481685, - 45.481886 - ], - [ - -73.48159, - 45.481816 - ], - [ - -73.481483, - 45.481744 - ], - [ - -73.481141, - 45.481496 - ], - [ - -73.480755, - 45.481226 - ], - [ - -73.480428, - 45.480974 - ], - [ - -73.479961, - 45.480655 - ], - [ - -73.479511, - 45.480326 - ], - [ - -73.479422, - 45.480272 - ], - [ - -73.47933, - 45.4802 - ], - [ - -73.479219, - 45.480121 - ], - [ - -73.478515, - 45.47962 - ], - [ - -73.47809, - 45.479311 - ], - [ - -73.477833, - 45.479125 - ], - [ - -73.477798, - 45.479064 - ], - [ - -73.477757, - 45.479003 - ], - [ - -73.477866, - 45.478954 - ], - [ - -73.477979, - 45.478918 - ], - [ - -73.478075, - 45.478904 - ], - [ - -73.478146, - 45.478904 - ], - [ - -73.478298, - 45.478904 - ], - [ - -73.478426, - 45.478904 - ], - [ - -73.478594, - 45.478908 - ], - [ - -73.47897, - 45.478916 - ], - [ - -73.479078, - 45.478918 - ], - [ - -73.479175, - 45.478922 - ], - [ - -73.479295, - 45.478922 - ], - [ - -73.479623, - 45.478936 - ], - [ - -73.480089, - 45.478949 - ], - [ - -73.481631, - 45.478977 - ], - [ - -73.482205, - 45.478986 - ], - [ - -73.482402, - 45.47899 - ], - [ - -73.482631, - 45.478995 - ], - [ - -73.482756, - 45.478997 - ], - [ - -73.484917, - 45.479027 - ], - [ - -73.485227, - 45.479031 - ], - [ - -73.485584, - 45.479045 - ], - [ - -73.485771, - 45.479058 - ], - [ - -73.486149, - 45.479058 - ], - [ - -73.486168, - 45.479057 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486426, - 45.478914 - ], - [ - -73.486429, - 45.478851 - ], - [ - -73.486457, - 45.478743 - ], - [ - -73.486515, - 45.478644 - ], - [ - -73.486599, - 45.478568 - ], - [ - -73.487334, - 45.478055 - ], - [ - -73.48763, - 45.47786 - ], - [ - -73.487867, - 45.477704 - ], - [ - -73.48804, - 45.477592 - ], - [ - -73.488143, - 45.477497 - ], - [ - -73.488191, - 45.477434 - ], - [ - -73.48823, - 45.477367 - ], - [ - -73.488245, - 45.477317 - ], - [ - -73.488261, - 45.477254 - ], - [ - -73.488221, - 45.47702 - ], - [ - -73.488146, - 45.476629 - ], - [ - -73.488047, - 45.476044 - ], - [ - -73.487974, - 45.475666 - ], - [ - -73.487958, - 45.475585 - ], - [ - -73.487905, - 45.475414 - ], - [ - -73.48781, - 45.475189 - ], - [ - -73.487773, - 45.475113 - ], - [ - -73.487674, - 45.474955 - ], - [ - -73.487579, - 45.47482 - ], - [ - -73.487539, - 45.474769 - ], - [ - -73.487467, - 45.474676 - ], - [ - -73.487385, - 45.474582 - ], - [ - -73.486897, - 45.473997 - ], - [ - -73.486669, - 45.473713 - ], - [ - -73.486502, - 45.473522 - ], - [ - -73.486179, - 45.473152 - ], - [ - -73.486151, - 45.473119 - ], - [ - -73.486718, - 45.472935 - ], - [ - -73.486787, - 45.472912 - ], - [ - -73.488142, - 45.472472 - ], - [ - -73.488555, - 45.472341 - ], - [ - -73.488966, - 45.472197 - ], - [ - -73.489081, - 45.472161 - ], - [ - -73.489198, - 45.472121 - ], - [ - -73.489607, - 45.471977 - ], - [ - -73.489896, - 45.47185 - ], - [ - -73.490057, - 45.471779 - ], - [ - -73.490819, - 45.472701 - ], - [ - -73.491157, - 45.473099 - ], - [ - -73.491514, - 45.47352 - ], - [ - -73.491842, - 45.473885 - ], - [ - -73.491964, - 45.474047 - ], - [ - -73.492221, - 45.474321 - ], - [ - -73.4924, - 45.474429 - ], - [ - -73.492566, - 45.474483 - ], - [ - -73.492833, - 45.474564 - ], - [ - -73.492987, - 45.474582 - ], - [ - -73.493409, - 45.474605 - ], - [ - -73.49348, - 45.474609 - ], - [ - -73.494447, - 45.474632 - ], - [ - -73.494958, - 45.47465 - ], - [ - -73.495392, - 45.474673 - ], - [ - -73.495455, - 45.474677 - ], - [ - -73.496473, - 45.474726 - ], - [ - -73.497243, - 45.474807 - ], - [ - -73.498064, - 45.474821 - ], - [ - -73.498752, - 45.476086 - ], - [ - -73.498798, - 45.476171 - ], - [ - -73.499541, - 45.477511 - ], - [ - -73.499719, - 45.477795 - ], - [ - -73.499782, - 45.477895 - ], - [ - -73.49991, - 45.478097 - ], - [ - -73.499973, - 45.478195 - ], - [ - -73.500209, - 45.478682 - ], - [ - -73.500175, - 45.478743 - ], - [ - -73.500117, - 45.478833 - ], - [ - -73.500109, - 45.478859 - ], - [ - -73.500134, - 45.478943 - ], - [ - -73.500209, - 45.479027 - ], - [ - -73.500272, - 45.479047 - ], - [ - -73.500354, - 45.479074 - ], - [ - -73.500404, - 45.479087 - ], - [ - -73.500422, - 45.479099 - ], - [ - -73.500588, - 45.479205 - ], - [ - -73.501159, - 45.479818 - ], - [ - -73.501455, - 45.480118 - ], - [ - -73.50163, - 45.480263 - ], - [ - -73.501828, - 45.48048 - ], - [ - -73.502032, - 45.480704 - ], - [ - -73.502676, - 45.481412 - ], - [ - -73.502806, - 45.48156 - ], - [ - -73.503272, - 45.482092 - ], - [ - -73.50345, - 45.482308 - ], - [ - -73.503512, - 45.48238 - ], - [ - -73.503563, - 45.482449 - ], - [ - -73.503598, - 45.482497 - ], - [ - -73.504141, - 45.483117 - ], - [ - -73.504614, - 45.483657 - ], - [ - -73.504846, - 45.483915 - ], - [ - -73.504857, - 45.483927 - ], - [ - -73.504924, - 45.483995 - ], - [ - -73.504939, - 45.484007 - ], - [ - -73.505108, - 45.484152 - ], - [ - -73.505242, - 45.484242 - ], - [ - -73.505364, - 45.484314 - ], - [ - -73.505521, - 45.484395 - ], - [ - -73.505663, - 45.484463 - ], - [ - -73.505851, - 45.484535 - ], - [ - -73.505993, - 45.484584 - ], - [ - -73.506624, - 45.484814 - ], - [ - -73.506746, - 45.484863 - ], - [ - -73.506951, - 45.484962 - ], - [ - -73.507115, - 45.485056 - ], - [ - -73.507185, - 45.485097 - ], - [ - -73.507329, - 45.4852 - ], - [ - -73.507431, - 45.485295 - ], - [ - -73.507518, - 45.485367 - ], - [ - -73.50762, - 45.485484 - ], - [ - -73.507754, - 45.485677 - ], - [ - -73.508077, - 45.486145 - ], - [ - -73.508225, - 45.48637 - ], - [ - -73.508359, - 45.486581 - ], - [ - -73.508385, - 45.486622 - ], - [ - -73.508489, - 45.486784 - ], - [ - -73.508543, - 45.486852 - ], - [ - -73.509603, - 45.488385 - ], - [ - -73.509675, - 45.488489 - ], - [ - -73.509764, - 45.488615 - ], - [ - -73.509971, - 45.488912 - ], - [ - -73.510813, - 45.490118 - ], - [ - -73.510831, - 45.490145 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.512404, - 45.492412 - ], - [ - -73.512427, - 45.492458 - ], - [ - -73.51245, - 45.492507 - ], - [ - -73.512764, - 45.493074 - ], - [ - -73.512921, - 45.493393 - ], - [ - -73.512971, - 45.493496 - ], - [ - -73.512984, - 45.493515 - ], - [ - -73.513094, - 45.493766 - ], - [ - -73.513261, - 45.494078 - ], - [ - -73.513283, - 45.494149 - ], - [ - -73.513342, - 45.494287 - ], - [ - -73.513459, - 45.494626 - ], - [ - -73.513505, - 45.494783 - ], - [ - -73.513561, - 45.49499 - ], - [ - -73.513604, - 45.495179 - ], - [ - -73.513621, - 45.495251 - ], - [ - -73.513692, - 45.495557 - ], - [ - -73.513773, - 45.495922 - ], - [ - -73.513786, - 45.49598 - ], - [ - -73.51384, - 45.496187 - ], - [ - -73.513899, - 45.496425 - ], - [ - -73.513925, - 45.49652 - ], - [ - -73.513974, - 45.496614 - ], - [ - -73.514009, - 45.496686 - ], - [ - -73.514054, - 45.496749 - ], - [ - -73.514104, - 45.49683 - ], - [ - -73.514166, - 45.496911 - ], - [ - -73.514219, - 45.49697 - ], - [ - -73.514552, - 45.497478 - ], - [ - -73.514769, - 45.497838 - ], - [ - -73.515085, - 45.498391 - ], - [ - -73.51517, - 45.49854 - ], - [ - -73.515561, - 45.499247 - ], - [ - -73.515623, - 45.499359 - ], - [ - -73.515674, - 45.499453 - ], - [ - -73.515873, - 45.499831 - ], - [ - -73.515977, - 45.500074 - ], - [ - -73.515989, - 45.500104 - ], - [ - -73.516146, - 45.500501 - ], - [ - -73.516373, - 45.50114 - ], - [ - -73.51647, - 45.501401 - ], - [ - -73.516585, - 45.501693 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517436, - 45.505267 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517232, - 45.507282 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.51756, - 45.509215 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517796, - 45.511428 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517596, - 45.51325 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518267, - 45.515315 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518976, - 45.516748 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.519529, - 45.517692 - ], - [ - -73.51974, - 45.518057 - ], - [ - -73.519988, - 45.518525 - ], - [ - -73.520045, - 45.518687 - ], - [ - -73.520069, - 45.518799 - ], - [ - -73.520101, - 45.518988 - ], - [ - -73.520105, - 45.519239 - ], - [ - -73.520113, - 45.519732 - ], - [ - -73.520115, - 45.519865 - ], - [ - -73.520208, - 45.520304 - ], - [ - -73.520224, - 45.520404 - ], - [ - -73.52026, - 45.520614 - ], - [ - -73.520284, - 45.520743 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 324, - "properties": { - "id": "d9e1e811-dd84-4781-afaa-1e9bb848f8c7", - "data": { - "gtfs": { - "shape_id": "602_2_R" - }, - "segments": [ - { - "distanceMeters": 112, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 631, - "travelTimeSeconds": 97 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 782, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 549, - "travelTimeSeconds": 85 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 330, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 368, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 53, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 360, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 590, - "travelTimeSeconds": 91 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 405, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 397, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 348, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 768, - "travelTimeSeconds": 119 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 246, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 15938, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6651.5379629597555, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.48, - "travelTimeWithoutDwellTimesSeconds": 2460, - "operatingTimeWithLayoverTimeSeconds": 2706, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2460, - "operatingSpeedWithLayoverMetersPerSecond": 5.89, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.48 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "517a8299-e807-4040-8ccd-f417dda7338c", - "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", - "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", - "4d67ff32-8baa-4f46-bb29-fa3253415875", - "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", - "159a0fe9-bedb-40f2-9806-32ab49594978", - "a4f163e1-b90e-4fc3-82f3-f03b3181860d", - "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", - "c229b499-645e-4877-8f57-0fc6de2a8d53", - "3c04c568-5ef2-4b47-8d34-b0d175358d60", - "a5c03062-e324-4cb7-8c59-00c59a14b63e", - "1e205a49-fad6-428c-9d0c-b4018473837d", - "ac9a9c14-57c3-4a81-9316-ceca9586731d", - "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", - "c4f08e33-183e-41cf-9f96-5985f148bd11", - "3040b262-0b20-4c40-9350-e484adfe1d60", - "ff721ee3-8729-47c1-80cd-7dd5e7142284", - "f132c08e-1812-4b2f-84fb-340628d1ac39", - "5573bb7b-19f0-4d2b-a66d-9f04f87c1987", - "1bded3cb-51a3-422d-8815-a9027023991e", - "54bbe390-ff6d-41d9-bd4b-1e4843d66512", - "aa413165-9699-49b6-9dea-fa35bda8f373", - "0a623471-271f-47f5-9a85-7feece2a3285", - "dc5fe0eb-b8cc-4186-82d3-6787360ae612", - "1e48d359-2463-4fbd-b946-c0a530db4bbe", - "c46257ee-b29f-4a62-9447-95eb1e19c941", - "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", - "528dcb9e-5a83-46d3-8e03-42692ca57a5a", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", - "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", - "6e4c328c-6fba-4e81-b589-59318e11a37a", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "c6165892-3719-417f-8d25-92e65471b42c", - "be011751-8885-454f-b767-5c0f1402d83f", - "28d21225-939d-4260-9ed4-5c109f412ad9", - "aa2b19e6-8fc9-4313-8ff2-0087861c575d", - "4df7f34c-ec49-4d48-90b3-56f3faffc976", - "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "9f22d75f-cc66-4020-8804-7912f49950d8", - "41d7b6d4-1fe4-44ed-a774-b005607fc59d", - "bc9b9243-e0ec-461a-9898-6eb69ecd511a", - "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "114aaaad-d40e-4930-853f-ef5cebdd299f", - "0b09b82c-ec97-406d-9f1c-690cc935b5ea", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "2259b112-2e60-4bcc-ad14-9e0e577f2909", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "db2ed6a6-f372-4b36-bb4f-1545b8cfbe98", - "segments": [ - 0, - 7, - 28, - 36, - 39, - 61, - 80, - 93, - 101, - 104, - 109, - 114, - 121, - 127, - 130, - 133, - 142, - 146, - 152, - 155, - 158, - 165, - 169, - 175, - 186, - 196, - 198, - 209, - 217, - 225, - 234, - 245, - 252, - 258, - 260, - 268, - 271, - 280, - 284, - 289, - 311, - 317, - 324, - 344, - 348, - 353, - 356, - 372, - 387, - 396, - 409, - 415, - 420, - 426, - 432, - 440, - 447, - 456 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 324, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.438355, - 45.478767 - ], - [ - -73.43848, - 45.478674 - ], - [ - -73.438955, - 45.478323 - ], - [ - -73.440953, - 45.476843 - ], - [ - -73.441038, - 45.476781 - ], - [ - -73.443316, - 45.475097 - ], - [ - -73.443381, - 45.47505 - ], - [ - -73.443474, - 45.474978 - ], - [ - -73.443515, - 45.474946 - ], - [ - -73.443609, - 45.474874 - ], - [ - -73.44285, - 45.474357 - ], - [ - -73.441167, - 45.473205 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.440574, - 45.472807 - ], - [ - -73.439193, - 45.471877 - ], - [ - -73.438164, - 45.471184 - ], - [ - -73.438035, - 45.471097 - ], - [ - -73.435601, - 45.469489 - ], - [ - -73.435506, - 45.469426 - ], - [ - -73.434531, - 45.46878 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.434426, - 45.468557 - ], - [ - -73.434574, - 45.46844 - ], - [ - -73.434595, - 45.468426 - ], - [ - -73.434654, - 45.468386 - ], - [ - -73.434706, - 45.46835 - ], - [ - -73.43479, - 45.468319 - ], - [ - -73.434953, - 45.468251 - ], - [ - -73.435895, - 45.468018 - ], - [ - -73.437587, - 45.467584 - ], - [ - -73.437909, - 45.467502 - ], - [ - -73.438637, - 45.467322 - ], - [ - -73.438692, - 45.467309 - ], - [ - -73.439001, - 45.46721 - ], - [ - -73.439742, - 45.466711 - ], - [ - -73.439775, - 45.466686 - ], - [ - -73.440041, - 45.46648 - ], - [ - -73.440337, - 45.466252 - ], - [ - -73.440631, - 45.466035 - ], - [ - -73.440976, - 45.46578 - ], - [ - -73.441167, - 45.465915 - ], - [ - -73.441736, - 45.466257 - ], - [ - -73.442013, - 45.466357 - ], - [ - -73.442153, - 45.466404 - ], - [ - -73.442317, - 45.46646 - ], - [ - -73.442367, - 45.466471 - ], - [ - -73.442596, - 45.466523 - ], - [ - -73.442918, - 45.466614 - ], - [ - -73.44316, - 45.466708 - ], - [ - -73.4434, - 45.466798 - ], - [ - -73.443571, - 45.466875 - ], - [ - -73.443775, - 45.466978 - ], - [ - -73.44395, - 45.467091 - ], - [ - -73.44423, - 45.467276 - ], - [ - -73.44435, - 45.46737 - ], - [ - -73.44443, - 45.467451 - ], - [ - -73.444451, - 45.467471 - ], - [ - -73.444535, - 45.46755 - ], - [ - -73.445104, - 45.468072 - ], - [ - -73.445679, - 45.468635 - ], - [ - -73.446159, - 45.469088 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.447066, - 45.468996 - ], - [ - -73.4474, - 45.468829 - ], - [ - -73.447822, - 45.468645 - ], - [ - -73.448427, - 45.468407 - ], - [ - -73.449383, - 45.468079 - ], - [ - -73.449747, - 45.467955 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450233, - 45.467787 - ], - [ - -73.451014, - 45.467517 - ], - [ - -73.451685, - 45.467271 - ], - [ - -73.451729, - 45.467255 - ], - [ - -73.451774, - 45.467238 - ], - [ - -73.452541, - 45.466973 - ], - [ - -73.452657, - 45.466933 - ], - [ - -73.453014, - 45.466803 - ], - [ - -73.45314, - 45.466749 - ], - [ - -73.453548, - 45.466537 - ], - [ - -73.453946, - 45.466304 - ], - [ - -73.454693, - 45.465786 - ], - [ - -73.454701, - 45.465781 - ], - [ - -73.45516, - 45.46545 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.455952, - 45.465079 - ], - [ - -73.456078, - 45.465023 - ], - [ - -73.456262, - 45.464907 - ], - [ - -73.456407, - 45.464824 - ], - [ - -73.456567, - 45.464772 - ], - [ - -73.456586, - 45.464769 - ], - [ - -73.456717, - 45.464744 - ], - [ - -73.456888, - 45.464733 - ], - [ - -73.457035, - 45.464719 - ], - [ - -73.45718, - 45.464674 - ], - [ - -73.457301, - 45.4646 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.458747, - 45.465455 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.460094, - 45.466428 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.460554, - 45.466805 - ], - [ - -73.460661, - 45.466886 - ], - [ - -73.461028, - 45.467148 - ], - [ - -73.46125, - 45.467305 - ], - [ - -73.461806, - 45.46771 - ], - [ - -73.461905, - 45.467783 - ], - [ - -73.461978, - 45.467836 - ], - [ - -73.462611, - 45.468268 - ], - [ - -73.462995, - 45.468567 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463833, - 45.469169 - ], - [ - -73.464474, - 45.469628 - ], - [ - -73.464826, - 45.469886 - ], - [ - -73.465113, - 45.470096 - ], - [ - -73.465778, - 45.470582 - ], - [ - -73.46629, - 45.470955 - ], - [ - -73.466387, - 45.471026 - ], - [ - -73.466451, - 45.471073 - ], - [ - -73.465987, - 45.471393 - ], - [ - -73.465434, - 45.471774 - ], - [ - -73.464145, - 45.472641 - ], - [ - -73.464089, - 45.472678 - ], - [ - -73.462985, - 45.473456 - ], - [ - -73.462597, - 45.473708 - ], - [ - -73.462087, - 45.474055 - ], - [ - -73.461842, - 45.474222 - ], - [ - -73.461655, - 45.474349 - ], - [ - -73.4615, - 45.474454 - ], - [ - -73.461823, - 45.474666 - ], - [ - -73.462818, - 45.475107 - ], - [ - -73.462895, - 45.475142 - ], - [ - -73.463529, - 45.475427 - ], - [ - -73.463948, - 45.475607 - ], - [ - -73.464305, - 45.475858 - ], - [ - -73.464383, - 45.475913 - ], - [ - -73.462932, - 45.476894 - ], - [ - -73.462832, - 45.476961 - ], - [ - -73.462353, - 45.477289 - ], - [ - -73.461419, - 45.477929 - ], - [ - -73.461335, - 45.477986 - ], - [ - -73.461943, - 45.478433 - ], - [ - -73.462028, - 45.478495 - ], - [ - -73.461029, - 45.47917 - ], - [ - -73.46017, - 45.47975 - ], - [ - -73.460875, - 45.480222 - ], - [ - -73.461043, - 45.480335 - ], - [ - -73.457238, - 45.48291 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.456963, - 45.483096 - ], - [ - -73.457344, - 45.483208 - ], - [ - -73.457696, - 45.483312 - ], - [ - -73.457948, - 45.48338 - ], - [ - -73.45825, - 45.483452 - ], - [ - -73.458477, - 45.483499 - ], - [ - -73.458491, - 45.483501 - ], - [ - -73.458691, - 45.483542 - ], - [ - -73.458995, - 45.483592 - ], - [ - -73.459974, - 45.483704 - ], - [ - -73.46004, - 45.48371 - ], - [ - -73.460526, - 45.483755 - ], - [ - -73.460806, - 45.483781 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.459556, - 45.485498 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.457882, - 45.486538 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.45694, - 45.487838 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456449, - 45.487901 - ], - [ - -73.456154, - 45.487865 - ], - [ - -73.455852, - 45.487802 - ], - [ - -73.455596, - 45.487748 - ], - [ - -73.455357, - 45.487675 - ], - [ - -73.455213, - 45.487621 - ], - [ - -73.454998, - 45.487531 - ], - [ - -73.454777, - 45.487423 - ], - [ - -73.454672, - 45.487356 - ], - [ - -73.454523, - 45.487261 - ], - [ - -73.454176, - 45.487527 - ], - [ - -73.453821, - 45.487792 - ], - [ - -73.452906, - 45.488462 - ] - ] - }, - "id": 325, - "properties": { - "id": "0ce11888-ae3e-4ef7-b76c-d09773f95b58", - "data": { - "gtfs": { - "shape_id": "604_1_A" - }, - "segments": [ - { - "distanceMeters": 295, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 55, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 69, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 78, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 431, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 402, - "travelTimeSeconds": 66 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8148, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 1552.1510420772183, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.17, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 5.43, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.17 - }, - "mode": "bus", - "name": "École de l'Agora", - "color": "#A32638", - "nodes": [ - "cfc3e1d1-58b4-4975-b310-259719029f69", - "3753be88-b479-4ca1-bd8a-5ea694207952", - "d6d99976-b155-4a29-b088-e41bf69a502a", - "014d61e3-acfc-41f6-b78a-5c2178c073b1", - "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", - "14e293a6-352a-4156-8578-66d0b5bdcc1f", - "62558b4d-75af-4b04-8040-a30de5a89658", - "988c86da-04eb-4067-b650-f13c447b17e7", - "4827a17d-8dc9-4cbd-8430-3334ebece64a", - "504cb53f-f1f4-46f2-81f5-f99fef8227fd", - "966472c1-4384-4d94-92f7-48afa023de51", - "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "4fc83229-a15e-48e1-aa4f-fae0073dacf9", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "01153fa0-59fe-4f77-8e46-e418296b526d", - "977065eb-9054-495e-befc-5f3b6e0e6046", - "42f48eea-ee59-46f6-9c43-4b63100a50dc", - "156c412f-0b84-4b14-a73e-e1d07d0b148d", - "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", - "c467599b-2164-4b14-b9ca-8960936bda58", - "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", - "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", - "4122212c-2ecd-4db2-a305-20f02711d17b", - "9f622393-7da9-4ff8-9bda-12008512c7ed", - "10c2e9e3-14c8-465a-917c-28c8d9977609", - "fd67ddde-e938-481c-8721-79fa136304ae", - "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", - "c24b91da-a4a3-4b28-b987-5726c6a01fdb", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "517a8299-e807-4040-8ccd-f417dda7338c" - ], - "stops": [], - "line_id": "d16bb5d3-aa78-4c58-a6ba-dd96c5c1d20b", - "segments": [ - 0, - 3, - 5, - 11, - 16, - 18, - 20, - 24, - 30, - 37, - 44, - 57, - 61, - 69, - 76, - 83, - 101, - 103, - 110, - 113, - 118, - 121, - 124, - 126, - 132, - 139, - 141, - 144, - 146, - 150, - 152, - 165, - 177, - 183, - 192 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 325, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.452109, - 45.488779 - ], - [ - -73.452059, - 45.488756 - ], - [ - -73.452026, - 45.48874 - ], - [ - -73.451864, - 45.488677 - ], - [ - -73.451663, - 45.488618 - ], - [ - -73.451471, - 45.48856 - ], - [ - -73.451142, - 45.48852 - ], - [ - -73.450754, - 45.488507 - ], - [ - -73.450564, - 45.488501 - ], - [ - -73.450532, - 45.488263 - ], - [ - -73.45047, - 45.488074 - ], - [ - -73.450345, - 45.487867 - ], - [ - -73.450187, - 45.48766 - ], - [ - -73.450004, - 45.487498 - ], - [ - -73.449781, - 45.487354 - ], - [ - -73.449483, - 45.487192 - ], - [ - -73.449234, - 45.487093 - ], - [ - -73.449121, - 45.487056 - ], - [ - -73.448338, - 45.486755 - ], - [ - -73.448148, - 45.486665 - ], - [ - -73.448011, - 45.486602 - ], - [ - -73.447211, - 45.486192 - ], - [ - -73.44682, - 45.485985 - ], - [ - -73.446708, - 45.485926 - ], - [ - -73.446501, - 45.486123 - ], - [ - -73.445795, - 45.486794 - ], - [ - -73.445654, - 45.486915 - ], - [ - -73.445524, - 45.487041 - ], - [ - -73.445408, - 45.487167 - ], - [ - -73.445364, - 45.487224 - ], - [ - -73.445264, - 45.487356 - ], - [ - -73.445129, - 45.48732 - ], - [ - -73.444962, - 45.487262 - ], - [ - -73.444849, - 45.487215 - ], - [ - -73.444731, - 45.487167 - ], - [ - -73.444565, - 45.487086 - ], - [ - -73.444194, - 45.486807 - ], - [ - -73.443808, - 45.486496 - ], - [ - -73.443706, - 45.486415 - ], - [ - -73.44336, - 45.486118 - ], - [ - -73.44263, - 45.485518 - ], - [ - -73.442528, - 45.485434 - ], - [ - -73.441754, - 45.484812 - ], - [ - -73.440975, - 45.484194 - ], - [ - -73.440887, - 45.484124 - ], - [ - -73.440245, - 45.483633 - ], - [ - -73.43964, - 45.483201 - ], - [ - -73.43915, - 45.48282 - ], - [ - -73.439083, - 45.482768 - ], - [ - -73.438464, - 45.482318 - ], - [ - -73.437635, - 45.481749 - ], - [ - -73.437512, - 45.481665 - ], - [ - -73.437014, - 45.481332 - ], - [ - -73.436034, - 45.480661 - ], - [ - -73.435909, - 45.480575 - ], - [ - -73.436743, - 45.479964 - ], - [ - -73.438345, - 45.478774 - ], - [ - -73.438355, - 45.478767 - ], - [ - -73.43848, - 45.478674 - ], - [ - -73.438955, - 45.478323 - ], - [ - -73.440952, - 45.476844 - ], - [ - -73.441038, - 45.476781 - ], - [ - -73.443315, - 45.475098 - ], - [ - -73.443381, - 45.47505 - ], - [ - -73.443474, - 45.474978 - ], - [ - -73.443515, - 45.474946 - ], - [ - -73.443609, - 45.474874 - ], - [ - -73.44285, - 45.474357 - ], - [ - -73.441177, - 45.473212 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.440574, - 45.472807 - ], - [ - -73.439193, - 45.471877 - ], - [ - -73.438165, - 45.471184 - ], - [ - -73.438035, - 45.471097 - ], - [ - -73.435602, - 45.46949 - ], - [ - -73.435506, - 45.469426 - ], - [ - -73.434541, - 45.468786 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.434426, - 45.468557 - ], - [ - -73.434574, - 45.46844 - ], - [ - -73.434595, - 45.468426 - ], - [ - -73.434654, - 45.468386 - ], - [ - -73.434706, - 45.46835 - ], - [ - -73.43479, - 45.468319 - ], - [ - -73.434953, - 45.468251 - ], - [ - -73.435895, - 45.468018 - ], - [ - -73.437587, - 45.467584 - ], - [ - -73.437909, - 45.467502 - ], - [ - -73.438637, - 45.467322 - ], - [ - -73.438692, - 45.467309 - ], - [ - -73.439001, - 45.46721 - ], - [ - -73.439742, - 45.466711 - ], - [ - -73.439775, - 45.466686 - ], - [ - -73.440041, - 45.46648 - ], - [ - -73.440337, - 45.466252 - ], - [ - -73.440631, - 45.466035 - ], - [ - -73.440976, - 45.46578 - ], - [ - -73.441167, - 45.465915 - ], - [ - -73.441736, - 45.466257 - ], - [ - -73.442013, - 45.466357 - ], - [ - -73.442154, - 45.466405 - ], - [ - -73.442317, - 45.46646 - ], - [ - -73.442367, - 45.466471 - ], - [ - -73.442596, - 45.466523 - ], - [ - -73.442918, - 45.466614 - ], - [ - -73.44316, - 45.466708 - ], - [ - -73.4434, - 45.466798 - ], - [ - -73.443571, - 45.466875 - ], - [ - -73.443775, - 45.466978 - ], - [ - -73.44395, - 45.467091 - ], - [ - -73.44423, - 45.467276 - ], - [ - -73.44435, - 45.46737 - ], - [ - -73.44443, - 45.467451 - ], - [ - -73.444452, - 45.467472 - ], - [ - -73.444535, - 45.46755 - ], - [ - -73.445104, - 45.468072 - ], - [ - -73.445679, - 45.468635 - ], - [ - -73.44616, - 45.469088 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.447066, - 45.468996 - ], - [ - -73.4474, - 45.468829 - ], - [ - -73.447822, - 45.468645 - ], - [ - -73.448427, - 45.468407 - ], - [ - -73.449383, - 45.468079 - ], - [ - -73.449749, - 45.467954 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450233, - 45.467787 - ], - [ - -73.451014, - 45.467517 - ], - [ - -73.451685, - 45.467271 - ], - [ - -73.451729, - 45.467255 - ], - [ - -73.451774, - 45.467238 - ], - [ - -73.452543, - 45.466972 - ], - [ - -73.452657, - 45.466933 - ], - [ - -73.453014, - 45.466803 - ], - [ - -73.45314, - 45.466749 - ], - [ - -73.453548, - 45.466537 - ], - [ - -73.453946, - 45.466304 - ], - [ - -73.454693, - 45.465786 - ], - [ - -73.454702, - 45.46578 - ], - [ - -73.45516, - 45.46545 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.455952, - 45.465079 - ], - [ - -73.456078, - 45.465023 - ], - [ - -73.456262, - 45.464907 - ], - [ - -73.456407, - 45.464824 - ], - [ - -73.456567, - 45.464772 - ], - [ - -73.456586, - 45.464769 - ], - [ - -73.456717, - 45.464744 - ], - [ - -73.456888, - 45.464733 - ], - [ - -73.457035, - 45.464719 - ], - [ - -73.45718, - 45.464674 - ], - [ - -73.457301, - 45.4646 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.458749, - 45.465456 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.460096, - 45.466429 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.460554, - 45.466805 - ], - [ - -73.460661, - 45.466886 - ], - [ - -73.461028, - 45.467148 - ], - [ - -73.46125, - 45.467305 - ], - [ - -73.461806, - 45.46771 - ], - [ - -73.461907, - 45.467784 - ], - [ - -73.461978, - 45.467836 - ], - [ - -73.462611, - 45.468268 - ], - [ - -73.462997, - 45.468569 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463833, - 45.469169 - ], - [ - -73.464474, - 45.469628 - ], - [ - -73.464829, - 45.469888 - ], - [ - -73.465113, - 45.470096 - ], - [ - -73.465778, - 45.470582 - ], - [ - -73.466292, - 45.470957 - ], - [ - -73.466387, - 45.471026 - ], - [ - -73.466451, - 45.471073 - ], - [ - -73.465994, - 45.471388 - ], - [ - -73.465434, - 45.471774 - ], - [ - -73.464142, - 45.472642 - ], - [ - -73.464089, - 45.472678 - ], - [ - -73.462985, - 45.473456 - ], - [ - -73.462597, - 45.473708 - ], - [ - -73.462087, - 45.474055 - ], - [ - -73.461842, - 45.474222 - ], - [ - -73.461652, - 45.474351 - ], - [ - -73.4615, - 45.474454 - ], - [ - -73.461823, - 45.474666 - ], - [ - -73.462818, - 45.475107 - ], - [ - -73.462895, - 45.475142 - ], - [ - -73.463529, - 45.475427 - ], - [ - -73.463948, - 45.475607 - ], - [ - -73.464308, - 45.47586 - ], - [ - -73.464383, - 45.475913 - ], - [ - -73.462928, - 45.476896 - ], - [ - -73.462832, - 45.476961 - ], - [ - -73.462353, - 45.477289 - ], - [ - -73.461416, - 45.477931 - ], - [ - -73.461335, - 45.477986 - ], - [ - -73.461947, - 45.478436 - ], - [ - -73.462028, - 45.478495 - ], - [ - -73.461029, - 45.47917 - ], - [ - -73.46017, - 45.47975 - ], - [ - -73.460879, - 45.480225 - ], - [ - -73.461043, - 45.480335 - ], - [ - -73.457234, - 45.482913 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.456963, - 45.483096 - ], - [ - -73.457696, - 45.483312 - ], - [ - -73.457948, - 45.48338 - ], - [ - -73.45825, - 45.483452 - ], - [ - -73.458477, - 45.483499 - ], - [ - -73.458491, - 45.483501 - ], - [ - -73.458691, - 45.483542 - ], - [ - -73.458995, - 45.483592 - ], - [ - -73.459974, - 45.483704 - ], - [ - -73.46004, - 45.48371 - ], - [ - -73.460532, - 45.483756 - ] - ] - }, - "id": 326, - "properties": { - "id": "40069f1e-d73c-41a0-b641-51bff5af41a2", - "data": { - "gtfs": { - "shape_id": "604_2_R" - }, - "segments": [ - { - "distanceMeters": 112, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 628, - "travelTimeSeconds": 90 - }, - { - "distanceMeters": 310, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 326, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 56, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 409, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 68, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 78, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 431, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 46 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9192, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 826.5690904361447, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.96, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 6.13, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.96 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "517a8299-e807-4040-8ccd-f417dda7338c", - "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", - "ee549609-3f81-482a-ad57-c350bc1bbf48", - "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "b934caec-f3a1-4894-b7b5-6872a3d78790", - "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", - "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", - "cd932703-83f9-4acf-94fa-d521e6d427d0", - "cfc3e1d1-58b4-4975-b310-259719029f69", - "3753be88-b479-4ca1-bd8a-5ea694207952", - "d6d99976-b155-4a29-b088-e41bf69a502a", - "014d61e3-acfc-41f6-b78a-5c2178c073b1", - "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", - "14e293a6-352a-4156-8578-66d0b5bdcc1f", - "62558b4d-75af-4b04-8040-a30de5a89658", - "988c86da-04eb-4067-b650-f13c447b17e7", - "4827a17d-8dc9-4cbd-8430-3334ebece64a", - "504cb53f-f1f4-46f2-81f5-f99fef8227fd", - "966472c1-4384-4d94-92f7-48afa023de51", - "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "4fc83229-a15e-48e1-aa4f-fae0073dacf9", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "01153fa0-59fe-4f77-8e46-e418296b526d", - "977065eb-9054-495e-befc-5f3b6e0e6046", - "42f48eea-ee59-46f6-9c43-4b63100a50dc", - "156c412f-0b84-4b14-a73e-e1d07d0b148d", - "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", - "c467599b-2164-4b14-b9ca-8960936bda58", - "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", - "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", - "4122212c-2ecd-4db2-a305-20f02711d17b", - "9f622393-7da9-4ff8-9bda-12008512c7ed", - "10c2e9e3-14c8-465a-917c-28c8d9977609", - "fd67ddde-e938-481c-8721-79fa136304ae", - "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca" - ], - "stops": [], - "line_id": "d16bb5d3-aa78-4c58-a6ba-dd96c5c1d20b", - "segments": [ - 0, - 7, - 29, - 40, - 43, - 47, - 50, - 53, - 56, - 60, - 62, - 68, - 73, - 75, - 77, - 81, - 87, - 94, - 101, - 114, - 118, - 126, - 133, - 140, - 158, - 160, - 167, - 170, - 175, - 178, - 181, - 183, - 189, - 196, - 198, - 201, - 203, - 207, - 209 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 326, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.453929, - 45.515967 - ], - [ - -73.454013, - 45.515854 - ], - [ - -73.455201, - 45.514132 - ], - [ - -73.455279, - 45.514018 - ], - [ - -73.456161, - 45.512754 - ], - [ - -73.456341, - 45.512499 - ], - [ - -73.456504, - 45.512269 - ], - [ - -73.456608, - 45.51212 - ], - [ - -73.457632, - 45.512503 - ], - [ - -73.458519, - 45.512827 - ], - [ - -73.459543, - 45.51322 - ], - [ - -73.45968, - 45.513273 - ], - [ - -73.459747, - 45.513297 - ], - [ - -73.460138, - 45.51344 - ], - [ - -73.460623, - 45.512783 - ], - [ - -73.461002, - 45.512271 - ], - [ - -73.461069, - 45.51218 - ], - [ - -73.461539, - 45.511564 - ], - [ - -73.46197, - 45.510961 - ], - [ - -73.462383, - 45.510395 - ], - [ - -73.462553, - 45.510233 - ], - [ - -73.462779, - 45.510066 - ], - [ - -73.463045, - 45.509936 - ], - [ - -73.463109, - 45.50991 - ], - [ - -73.463381, - 45.509801 - ], - [ - -73.463431, - 45.509882 - ], - [ - -73.463519, - 45.509999 - ], - [ - -73.463631, - 45.510107 - ], - [ - -73.463676, - 45.510137 - ], - [ - -73.463794, - 45.510215 - ], - [ - -73.464529, - 45.510665 - ], - [ - -73.464922, - 45.510917 - ], - [ - -73.465268, - 45.511138 - ], - [ - -73.464982, - 45.511318 - ], - [ - -73.464762, - 45.511493 - ], - [ - -73.464626, - 45.511606 - ], - [ - -73.464478, - 45.511745 - ], - [ - -73.464282, - 45.512001 - ], - [ - -73.463932, - 45.512501 - ], - [ - -73.463554, - 45.513006 - ], - [ - -73.463478, - 45.513108 - ], - [ - -73.463247, - 45.513431 - ], - [ - -73.463065, - 45.513684 - ], - [ - -73.462744, - 45.514129 - ], - [ - -73.462726, - 45.514155 - ], - [ - -73.462602, - 45.514327 - ], - [ - -73.464082, - 45.514885 - ], - [ - -73.465778, - 45.515525 - ], - [ - -73.465949, - 45.515589 - ], - [ - -73.466056, - 45.515628 - ], - [ - -73.466138, - 45.51566 - ], - [ - -73.466232, - 45.515695 - ], - [ - -73.466474, - 45.515795 - ], - [ - -73.466702, - 45.515853 - ], - [ - -73.466803, - 45.515867 - ], - [ - -73.466838, - 45.515871 - ], - [ - -73.466992, - 45.515894 - ], - [ - -73.467576, - 45.515962 - ], - [ - -73.467711, - 45.515993 - ], - [ - -73.467803, - 45.516016 - ], - [ - -73.467947, - 45.51607 - ], - [ - -73.468097, - 45.516127 - ], - [ - -73.468254, - 45.516187 - ], - [ - -73.468571, - 45.51575 - ], - [ - -73.472494, - 45.517187 - ], - [ - -73.472533, - 45.5172 - ], - [ - -73.472693, - 45.517254 - ], - [ - -73.473088, - 45.517412 - ], - [ - -73.473656, - 45.51761 - ], - [ - -73.47566, - 45.518326 - ], - [ - -73.476615, - 45.51865 - ], - [ - -73.476759, - 45.51865 - ], - [ - -73.476929, - 45.518627 - ], - [ - -73.477002, - 45.518593 - ], - [ - -73.477134, - 45.518529 - ], - [ - -73.477396, - 45.518622 - ], - [ - -73.477613, - 45.5187 - ], - [ - -73.477254, - 45.51923 - ], - [ - -73.476902, - 45.519705 - ], - [ - -73.47683, - 45.519802 - ], - [ - -73.476473, - 45.520306 - ], - [ - -73.476157, - 45.52074 - ], - [ - -73.476081, - 45.520845 - ], - [ - -73.475434, - 45.521732 - ], - [ - -73.475294, - 45.521907 - ], - [ - -73.474996, - 45.522342 - ], - [ - -73.474964, - 45.522388 - ], - [ - -73.474526, - 45.522973 - ], - [ - -73.474291, - 45.523309 - ], - [ - -73.474023, - 45.523693 - ], - [ - -73.477226, - 45.52478 - ], - [ - -73.477339, - 45.524818 - ], - [ - -73.48022, - 45.525788 - ], - [ - -73.480349, - 45.525831 - ], - [ - -73.482756, - 45.526654 - ], - [ - -73.483206, - 45.526808 - ], - [ - -73.486253, - 45.527842 - ], - [ - -73.486324, - 45.527866 - ], - [ - -73.487749, - 45.52836 - ], - [ - -73.488241, - 45.528531 - ], - [ - -73.488593, - 45.528653 - ], - [ - -73.489528, - 45.528064 - ], - [ - -73.490298, - 45.527569 - ], - [ - -73.490653, - 45.527304 - ], - [ - -73.491337, - 45.526752 - ], - [ - -73.4914, - 45.526701 - ], - [ - -73.492088, - 45.526179 - ], - [ - -73.492707, - 45.525635 - ], - [ - -73.492906, - 45.525415 - ], - [ - -73.49318, - 45.525113 - ], - [ - -73.493408, - 45.524902 - ], - [ - -73.493799, - 45.524641 - ], - [ - -73.494186, - 45.524488 - ], - [ - -73.494712, - 45.524302 - ], - [ - -73.494785, - 45.524276 - ], - [ - -73.495166, - 45.524155 - ], - [ - -73.495493, - 45.524047 - ], - [ - -73.495888, - 45.523925 - ], - [ - -73.496536, - 45.523723 - ], - [ - -73.496718, - 45.523586 - ], - [ - -73.496788, - 45.523534 - ], - [ - -73.497235, - 45.523003 - ], - [ - -73.497422, - 45.522652 - ], - [ - -73.497435, - 45.5224 - ], - [ - -73.497301, - 45.521799 - ], - [ - -73.497269, - 45.521658 - ], - [ - -73.497101, - 45.520911 - ], - [ - -73.497017, - 45.520339 - ], - [ - -73.497012, - 45.520222 - ], - [ - -73.49702, - 45.520083 - ], - [ - -73.497044, - 45.519908 - ], - [ - -73.497064, - 45.519764 - ], - [ - -73.497083, - 45.519677 - ], - [ - -73.497108, - 45.519561 - ], - [ - -73.497278, - 45.518832 - ], - [ - -73.497354, - 45.518522 - ], - [ - -73.497411, - 45.518364 - ], - [ - -73.497477, - 45.518175 - ], - [ - -73.497615, - 45.517821 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.498036, - 45.516808 - ], - [ - -73.498298, - 45.516248 - ], - [ - -73.498388, - 45.516056 - ], - [ - -73.498727, - 45.51526 - ], - [ - -73.498864, - 45.515055 - ], - [ - -73.499247, - 45.514482 - ], - [ - -73.499299, - 45.514405 - ], - [ - -73.498867, - 45.514269 - ], - [ - -73.495992, - 45.51336 - ], - [ - -73.495825, - 45.513307 - ], - [ - -73.494505, - 45.512884 - ], - [ - -73.493805, - 45.512659 - ], - [ - -73.493619, - 45.512695 - ], - [ - -73.493364, - 45.512745 - ], - [ - -73.493004, - 45.512633 - ], - [ - -73.492878, - 45.512594 - ], - [ - -73.492639, - 45.51252 - ], - [ - -73.493081, - 45.511867 - ], - [ - -73.493369, - 45.51144 - ], - [ - -73.493501, - 45.511236 - ], - [ - -73.493538, - 45.511179 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494003, - 45.510501 - ], - [ - -73.494098, - 45.510356 - ], - [ - -73.493822, - 45.510203 - ], - [ - -73.493425, - 45.509955 - ], - [ - -73.493171, - 45.509789 - ], - [ - -73.492928, - 45.509613 - ], - [ - -73.492662, - 45.509406 - ], - [ - -73.492553, - 45.509315 - ], - [ - -73.492423, - 45.509204 - ], - [ - -73.492336, - 45.50915 - ], - [ - -73.492042, - 45.508893 - ], - [ - -73.491845, - 45.508695 - ], - [ - -73.491842, - 45.508692 - ], - [ - -73.491799, - 45.508647 - ], - [ - -73.491788, - 45.508636 - ], - [ - -73.491647, - 45.508488 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488541, - 45.503629 - ], - [ - -73.48831, - 45.50321 - ], - [ - -73.48823, - 45.503039 - ], - [ - -73.488092, - 45.502693 - ], - [ - -73.487989, - 45.502369 - ], - [ - -73.487959, - 45.502275 - ], - [ - -73.487746, - 45.501478 - ], - [ - -73.487613, - 45.501033 - ], - [ - -73.487525, - 45.500741 - ], - [ - -73.487509, - 45.500686 - ], - [ - -73.487464, - 45.50056 - ], - [ - -73.487346, - 45.500232 - ], - [ - -73.487139, - 45.499795 - ], - [ - -73.486985, - 45.499512 - ], - [ - -73.486843, - 45.499275 - ], - [ - -73.486818, - 45.499233 - ], - [ - -73.48673, - 45.4991 - ], - [ - -73.486631, - 45.498949 - ], - [ - -73.486428, - 45.498675 - ], - [ - -73.486216, - 45.498401 - ], - [ - -73.486166, - 45.498342 - ], - [ - -73.486, - 45.498149 - ], - [ - -73.485576, - 45.497708 - ], - [ - -73.485299, - 45.497456 - ], - [ - -73.48526, - 45.497423 - ], - [ - -73.485251, - 45.497415 - ], - [ - -73.484899, - 45.497123 - ], - [ - -73.484449, - 45.496786 - ], - [ - -73.484387, - 45.49674 - ], - [ - -73.484357, - 45.496722 - ], - [ - -73.482251, - 45.49533 - ], - [ - -73.482144, - 45.49526 - ], - [ - -73.482055, - 45.495201 - ], - [ - -73.479549, - 45.49354 - ], - [ - -73.479372, - 45.493423 - ], - [ - -73.474541, - 45.490231 - ], - [ - -73.474366, - 45.490115 - ], - [ - -73.473909, - 45.489814 - ], - [ - -73.472125, - 45.488635 - ], - [ - -73.471942, - 45.488513 - ], - [ - -73.46708, - 45.485304 - ], - [ - -73.466642, - 45.484984 - ], - [ - -73.466527, - 45.484889 - ], - [ - -73.466473, - 45.484845 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466302, - 45.484687 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466022, - 45.484682 - ], - [ - -73.465888, - 45.484747 - ], - [ - -73.465767, - 45.484792 - ], - [ - -73.465702, - 45.484807 - ], - [ - -73.465661, - 45.484807 - ], - [ - -73.465627, - 45.484802 - ], - [ - -73.4655, - 45.484766 - ], - [ - -73.464965, - 45.484574 - ], - [ - -73.464559, - 45.484417 - ], - [ - -73.464508, - 45.484399 - ], - [ - -73.464185, - 45.484291 - ], - [ - -73.463703, - 45.484155 - ], - [ - -73.463657, - 45.484142 - ], - [ - -73.46319, - 45.484029 - ], - [ - -73.462672, - 45.483908 - ], - [ - -73.462287, - 45.483831 - ], - [ - -73.462032, - 45.483791 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.46135, - 45.4837 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461197, - 45.484333 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.459549, - 45.485503 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.457874, - 45.486542 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.456938, - 45.487846 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456449, - 45.487901 - ], - [ - -73.456154, - 45.487865 - ], - [ - -73.455852, - 45.487802 - ], - [ - -73.455596, - 45.487748 - ], - [ - -73.455357, - 45.487675 - ], - [ - -73.455213, - 45.487621 - ], - [ - -73.454998, - 45.487531 - ], - [ - -73.454777, - 45.487423 - ], - [ - -73.454672, - 45.487356 - ], - [ - -73.454523, - 45.487261 - ], - [ - -73.454176, - 45.487527 - ], - [ - -73.453821, - 45.487792 - ], - [ - -73.452906, - 45.488462 - ] - ] - }, - "id": 327, - "properties": { - "id": "fcd2373d-1a1e-48b6-940d-bae27fcf3046", - "data": { - "gtfs": { - "shape_id": "605_1_A" - }, - "segments": [ - { - "distanceMeters": 227, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 89, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 417, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 424, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 446, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 953, - "travelTimeSeconds": 154 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 95, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 537, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 604, - "travelTimeSeconds": 98 - }, - { - "distanceMeters": 708, - "travelTimeSeconds": 115 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 65 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 210, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12965, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3044.9183871282007, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.17, - "travelTimeWithoutDwellTimesSeconds": 2100, - "operatingTimeWithLayoverTimeSeconds": 2310, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2100, - "operatingSpeedWithLayoverMetersPerSecond": 5.61, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.17 - }, - "mode": "bus", - "name": "École de l'Agora", - "color": "#A32638", - "nodes": [ - "5f1eb6f1-dc45-44fc-bc07-9e965049da7f", - "4ecd13b4-71e4-4328-bc7f-b30325894d82", - "065b0112-1102-48ec-b10a-c88cde002f4f", - "d8f16090-e69f-45d8-b535-45f45ab1b739", - "7183eaac-7645-401f-919b-91209487af61", - "3d29747a-7b75-4b0e-ad8a-50eec4e70061", - "5b565a57-bd7f-42f0-a279-0af0bf5f2a4d", - "0751a485-9efa-4491-b69f-eed5163417d8", - "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", - "5ca73944-03b3-4fca-ab1f-781dd6f959a4", - "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", - "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9", - "41c46bd6-8021-4abc-88c9-f9d4d32afe26", - "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", - "242c7269-ce0d-45c7-8356-927308e89900", - "bad427d3-2698-4efd-8d52-2bc92f049d64", - "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", - "30b4855a-ec3f-4079-bee1-0b92e6c4e1b7", - "1926fe87-9eee-4758-bf0a-1f846178b541", - "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", - "1d3f02c5-7aee-413f-85a4-ed64749a6a77", - "db8d9e51-701d-47ce-b55e-d7d57227adcb", - "dc7a6dd7-6fde-40ea-9f37-85aaefe35169", - "16c6c90b-9ef2-4203-a4a2-74a27e23dc94", - "afda06bb-9f3e-43a6-883f-96226fa884c5", - "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "6c8872a8-685f-49ed-9246-92743dd113de", - "161f72ac-926f-49be-80a4-a3cb10884d02", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "d32c5a5b-6e6f-48c3-9f4e-37b94ed6e20d", - "09272548-09d5-4afa-a45f-80ba6dd656dd", - "4a0c512f-2ce4-41cc-a200-cf81d75487c1", - "7095ff94-e6bf-4956-8b59-9e66be631584", - "5d573c90-ed41-4ac1-9f58-abc862e00f93", - "37199bb2-9740-4484-b68f-12d3c82f8bf9", - "bcd0a901-5384-443e-9be4-1f0faa123ccb", - "fdd9bfef-c8dc-4f65-9008-847050729854", - "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", - "7ad37664-fa6b-478f-8d31-2d3ae7009709", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "94cd69e7-ebc9-452b-a357-367107db73b4", - "03b1ef77-b509-4f21-97d5-d511eeb821cb", - "351136d8-2c40-4c3f-8032-a52e48738c07", - "159a0fe9-bedb-40f2-9806-32ab49594978", - "c24b91da-a4a3-4b28-b987-5726c6a01fdb", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "517a8299-e807-4040-8ccd-f417dda7338c" - ], - "stops": [], - "line_id": "fc8b2224-338e-48b0-927c-49ca43fad9bd", - "segments": [ - 0, - 2, - 6, - 10, - 15, - 23, - 31, - 39, - 43, - 47, - 54, - 61, - 65, - 75, - 78, - 81, - 85, - 90, - 92, - 94, - 96, - 99, - 104, - 108, - 113, - 119, - 124, - 132, - 138, - 141, - 147, - 148, - 154, - 159, - 174, - 192, - 198, - 208, - 211, - 214, - 217, - 219, - 222, - 226, - 262, - 268, - 277 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 327, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.452906, - 45.488462 - ], - [ - -73.452661, - 45.488642 - ], - [ - -73.452316, - 45.488894 - ], - [ - -73.452398, - 45.488943 - ], - [ - -73.452482, - 45.488993 - ], - [ - -73.452596, - 45.489092 - ], - [ - -73.452853, - 45.489389 - ], - [ - -73.453059, - 45.489641 - ], - [ - -73.453301, - 45.489897 - ], - [ - -73.453554, - 45.490154 - ], - [ - -73.453816, - 45.490388 - ], - [ - -73.454028, - 45.490572 - ], - [ - -73.454376, - 45.490852 - ], - [ - -73.454696, - 45.491105 - ], - [ - -73.454792, - 45.49118 - ], - [ - -73.455351, - 45.490845 - ], - [ - -73.456177, - 45.490348 - ], - [ - -73.456382, - 45.490186 - ], - [ - -73.45652, - 45.490034 - ], - [ - -73.456589, - 45.489894 - ], - [ - -73.456688, - 45.489687 - ], - [ - -73.456689, - 45.489683 - ], - [ - -73.456709, - 45.489602 - ], - [ - -73.456724, - 45.489525 - ], - [ - -73.456835, - 45.488612 - ], - [ - -73.456898, - 45.488082 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457714, - 45.486663 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.459238, - 45.485731 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.461096, - 45.484446 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461241, - 45.484258 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.462585, - 45.484043 - ], - [ - -73.463416, - 45.484224 - ], - [ - -73.463639, - 45.484291 - ], - [ - -73.464599, - 45.48462 - ], - [ - -73.465244, - 45.484835 - ], - [ - -73.465443, - 45.484908 - ], - [ - -73.465586, - 45.484937 - ], - [ - -73.465724, - 45.484942 - ], - [ - -73.465848, - 45.484931 - ], - [ - -73.466018, - 45.484884 - ], - [ - -73.466121, - 45.484844 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.466209, - 45.484848 - ], - [ - -73.46623, - 45.484867 - ], - [ - -73.466294, - 45.484926 - ], - [ - -73.466468, - 45.485064 - ], - [ - -73.466566, - 45.485142 - ], - [ - -73.466759, - 45.48529 - ], - [ - -73.466948, - 45.485421 - ], - [ - -73.467024, - 45.48547 - ], - [ - -73.468004, - 45.486118 - ], - [ - -73.469888, - 45.487365 - ], - [ - -73.470621, - 45.487851 - ], - [ - -73.471611, - 45.488508 - ], - [ - -73.471789, - 45.488626 - ], - [ - -73.473768, - 45.489935 - ], - [ - -73.474015, - 45.490099 - ], - [ - -73.474218, - 45.490232 - ], - [ - -73.476501, - 45.49174 - ], - [ - -73.4777, - 45.49253 - ], - [ - -73.479093, - 45.493449 - ], - [ - -73.479217, - 45.493531 - ], - [ - -73.480275, - 45.494231 - ], - [ - -73.481907, - 45.495309 - ], - [ - -73.482, - 45.495372 - ], - [ - -73.482365, - 45.495613 - ], - [ - -73.483276, - 45.496213 - ], - [ - -73.483953, - 45.496659 - ], - [ - -73.484044, - 45.496723 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.48442, - 45.496983 - ], - [ - -73.484708, - 45.497199 - ], - [ - -73.484931, - 45.497378 - ], - [ - -73.485095, - 45.49751 - ], - [ - -73.485397, - 45.497784 - ], - [ - -73.485739, - 45.498135 - ], - [ - -73.485877, - 45.498284 - ], - [ - -73.486105, - 45.498553 - ], - [ - -73.486286, - 45.498787 - ], - [ - -73.486368, - 45.498907 - ], - [ - -73.486538, - 45.499154 - ], - [ - -73.486685, - 45.499381 - ], - [ - -73.486823, - 45.499615 - ], - [ - -73.486951, - 45.499858 - ], - [ - -73.487138, - 45.500263 - ], - [ - -73.487159, - 45.500317 - ], - [ - -73.487266, - 45.500605 - ], - [ - -73.487306, - 45.500713 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487417, - 45.501077 - ], - [ - -73.487455, - 45.501208 - ], - [ - -73.487464, - 45.50124 - ], - [ - -73.48765, - 45.50191 - ], - [ - -73.487855, - 45.502589 - ], - [ - -73.488032, - 45.50303 - ], - [ - -73.488178, - 45.503309 - ], - [ - -73.488409, - 45.50371 - ], - [ - -73.489159, - 45.504974 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491522, - 45.508794 - ], - [ - -73.491771, - 45.509109 - ], - [ - -73.491972, - 45.509321 - ], - [ - -73.492304, - 45.509658 - ], - [ - -73.492337, - 45.509682 - ], - [ - -73.49247, - 45.509782 - ], - [ - -73.492773, - 45.510009 - ], - [ - -73.492921, - 45.510107 - ], - [ - -73.49316, - 45.510266 - ], - [ - -73.493482, - 45.510473 - ], - [ - -73.493504, - 45.510491 - ], - [ - -73.493884, - 45.510653 - ], - [ - -73.494697, - 45.511031 - ], - [ - -73.495151, - 45.511197 - ], - [ - -73.495933, - 45.511462 - ], - [ - -73.496219, - 45.511552 - ], - [ - -73.496266, - 45.511575 - ], - [ - -73.497301, - 45.511881 - ], - [ - -73.497453, - 45.511926 - ], - [ - -73.497928, - 45.512055 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.5003, - 45.512826 - ], - [ - -73.500012, - 45.513277 - ], - [ - -73.4998, - 45.513609 - ], - [ - -73.49937, - 45.514293 - ], - [ - -73.499299, - 45.514405 - ], - [ - -73.499247, - 45.514482 - ], - [ - -73.498727, - 45.51526 - ], - [ - -73.498432, - 45.515951 - ], - [ - -73.498388, - 45.516056 - ], - [ - -73.498036, - 45.516808 - ], - [ - -73.497777, - 45.517417 - ], - [ - -73.497734, - 45.517518 - ], - [ - -73.497477, - 45.518175 - ], - [ - -73.497411, - 45.518364 - ], - [ - -73.497354, - 45.518522 - ], - [ - -73.497278, - 45.518832 - ], - [ - -73.497142, - 45.519414 - ], - [ - -73.497108, - 45.519561 - ], - [ - -73.497064, - 45.519764 - ], - [ - -73.497044, - 45.519908 - ], - [ - -73.49702, - 45.520083 - ], - [ - -73.497012, - 45.520222 - ], - [ - -73.497017, - 45.520339 - ], - [ - -73.497101, - 45.520911 - ], - [ - -73.49723, - 45.521483 - ], - [ - -73.497269, - 45.521658 - ], - [ - -73.497435, - 45.5224 - ], - [ - -73.497422, - 45.522652 - ], - [ - -73.497235, - 45.523003 - ], - [ - -73.496897, - 45.523405 - ], - [ - -73.496788, - 45.523534 - ], - [ - -73.496536, - 45.523723 - ], - [ - -73.495888, - 45.523925 - ], - [ - -73.495493, - 45.524047 - ], - [ - -73.495166, - 45.524155 - ], - [ - -73.494785, - 45.524276 - ], - [ - -73.494284, - 45.524453 - ], - [ - -73.494186, - 45.524488 - ], - [ - -73.493799, - 45.524641 - ], - [ - -73.493408, - 45.524902 - ], - [ - -73.49318, - 45.525113 - ], - [ - -73.4928, - 45.525532 - ], - [ - -73.492707, - 45.525635 - ], - [ - -73.492088, - 45.526179 - ], - [ - -73.49147, - 45.526647 - ], - [ - -73.4914, - 45.526701 - ], - [ - -73.490653, - 45.527304 - ], - [ - -73.490298, - 45.527569 - ], - [ - -73.489528, - 45.528064 - ], - [ - -73.488698, - 45.528588 - ], - [ - -73.488593, - 45.528653 - ], - [ - -73.487705, - 45.528345 - ], - [ - -73.48649, - 45.527923 - ], - [ - -73.486324, - 45.527866 - ], - [ - -73.483397, - 45.526873 - ], - [ - -73.483206, - 45.526808 - ], - [ - -73.480561, - 45.525904 - ], - [ - -73.480349, - 45.525831 - ], - [ - -73.477602, - 45.524907 - ], - [ - -73.477339, - 45.524818 - ], - [ - -73.474232, - 45.523764 - ], - [ - -73.474023, - 45.523693 - ], - [ - -73.474272, - 45.523336 - ], - [ - -73.474526, - 45.522973 - ], - [ - -73.474888, - 45.52249 - ], - [ - -73.474964, - 45.522388 - ], - [ - -73.475294, - 45.521907 - ], - [ - -73.475434, - 45.521732 - ], - [ - -73.47602, - 45.520929 - ], - [ - -73.476081, - 45.520845 - ], - [ - -73.476473, - 45.520306 - ], - [ - -73.476731, - 45.519942 - ], - [ - -73.47683, - 45.519802 - ], - [ - -73.477254, - 45.51923 - ], - [ - -73.477545, - 45.518801 - ], - [ - -73.477613, - 45.5187 - ], - [ - -73.477253, - 45.518571 - ], - [ - -73.477134, - 45.518529 - ], - [ - -73.476929, - 45.518627 - ], - [ - -73.476759, - 45.51865 - ], - [ - -73.476615, - 45.51865 - ], - [ - -73.476304, - 45.518544 - ], - [ - -73.47566, - 45.518326 - ], - [ - -73.473656, - 45.51761 - ], - [ - -73.473088, - 45.517412 - ], - [ - -73.473012, - 45.517382 - ], - [ - -73.472693, - 45.517254 - ], - [ - -73.472494, - 45.517187 - ], - [ - -73.468981, - 45.515901 - ], - [ - -73.468571, - 45.51575 - ], - [ - -73.468254, - 45.516187 - ], - [ - -73.467947, - 45.51607 - ], - [ - -73.467803, - 45.516016 - ], - [ - -73.467711, - 45.515993 - ], - [ - -73.467576, - 45.515962 - ], - [ - -73.466992, - 45.515894 - ], - [ - -73.466838, - 45.515871 - ], - [ - -73.466702, - 45.515853 - ], - [ - -73.466474, - 45.515795 - ], - [ - -73.466379, - 45.515756 - ], - [ - -73.466232, - 45.515695 - ], - [ - -73.466138, - 45.51566 - ], - [ - -73.466056, - 45.515628 - ], - [ - -73.465949, - 45.515589 - ], - [ - -73.464082, - 45.514885 - ], - [ - -73.463074, - 45.514505 - ], - [ - -73.462602, - 45.514327 - ], - [ - -73.462726, - 45.514155 - ], - [ - -73.463065, - 45.513684 - ], - [ - -73.463137, - 45.513583 - ], - [ - -73.463478, - 45.513108 - ], - [ - -73.463861, - 45.512596 - ], - [ - -73.463932, - 45.512501 - ], - [ - -73.464282, - 45.512001 - ], - [ - -73.464478, - 45.511745 - ], - [ - -73.464626, - 45.511606 - ], - [ - -73.464762, - 45.511493 - ], - [ - -73.464982, - 45.511318 - ], - [ - -73.465001, - 45.511306 - ], - [ - -73.465268, - 45.511138 - ], - [ - -73.464529, - 45.510665 - ], - [ - -73.464009, - 45.510347 - ], - [ - -73.463794, - 45.510215 - ], - [ - -73.463631, - 45.510107 - ], - [ - -73.463519, - 45.509999 - ], - [ - -73.46348, - 45.509947 - ], - [ - -73.463431, - 45.509882 - ], - [ - -73.463381, - 45.509801 - ], - [ - -73.463045, - 45.509936 - ], - [ - -73.462779, - 45.510066 - ], - [ - -73.462553, - 45.510233 - ], - [ - -73.462383, - 45.510395 - ], - [ - -73.462007, - 45.510911 - ], - [ - -73.46197, - 45.510961 - ], - [ - -73.461539, - 45.511564 - ], - [ - -73.461154, - 45.512068 - ], - [ - -73.461069, - 45.51218 - ], - [ - -73.460623, - 45.512783 - ], - [ - -73.460197, - 45.51336 - ], - [ - -73.460138, - 45.51344 - ], - [ - -73.459933, - 45.513365 - ], - [ - -73.45968, - 45.513273 - ], - [ - -73.458659, - 45.512881 - ], - [ - -73.458519, - 45.512827 - ], - [ - -73.457632, - 45.512503 - ], - [ - -73.457418, - 45.512423 - ], - [ - -73.456755, - 45.512175 - ], - [ - -73.456608, - 45.51212 - ], - [ - -73.456479, - 45.512075 - ], - [ - -73.456035, - 45.512709 - ], - [ - -73.455223, - 45.513882 - ], - [ - -73.455157, - 45.513978 - ], - [ - -73.454375, - 45.515102 - ], - [ - -73.454257, - 45.515272 - ], - [ - -73.453914, - 45.515764 - ] - ] - }, - "id": 328, - "properties": { - "id": "32d98e02-9a0f-4dd8-8a60-27484964109a", - "data": { - "gtfs": { - "shape_id": "605_2_R" - }, - "segments": [ - { - "distanceMeters": 376, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 514, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 555, - "travelTimeSeconds": 88 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 544, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 507, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 1156, - "travelTimeSeconds": 182 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 383, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 195, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 44, - "travelTimeSeconds": 7 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 82, - "travelTimeSeconds": 13 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 210, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13271, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2978.708634745934, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.32, - "travelTimeWithoutDwellTimesSeconds": 2100, - "operatingTimeWithLayoverTimeSeconds": 2310, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2100, - "operatingSpeedWithLayoverMetersPerSecond": 5.74, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.32 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "517a8299-e807-4040-8ccd-f417dda7338c", - "da4ca96f-4db9-4287-b307-afc6221c923f", - "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "a90c4da7-455c-41d3-9961-c7a64d627572", - "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", - "4996264a-c3f0-4fe8-be81-9ca3d8659c61", - "e089008c-4123-4897-95b5-a61e5e049f48", - "03b1ef77-b509-4f21-97d5-d511eeb821cb", - "56af9248-f973-4335-84c1-2e5e744a3910", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "fd062866-a8eb-4466-b53a-6adf8fc3f09a", - "6c42a8f6-a98f-4058-9992-d00706a03dff", - "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "fdecd410-1224-486a-a041-e5f802671456", - "09272548-09d5-4afa-a45f-80ba6dd656dd", - "d32c5a5b-6e6f-48c3-9f4e-37b94ed6e20d", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "161f72ac-926f-49be-80a4-a3cb10884d02", - "6c8872a8-685f-49ed-9246-92743dd113de", - "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "afda06bb-9f3e-43a6-883f-96226fa884c5", - "16c6c90b-9ef2-4203-a4a2-74a27e23dc94", - "dc7a6dd7-6fde-40ea-9f37-85aaefe35169", - "280d705c-e41e-4a8f-8450-ac212bf84d99", - "1d3f02c5-7aee-413f-85a4-ed64749a6a77", - "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", - "1926fe87-9eee-4758-bf0a-1f846178b541", - "30b4855a-ec3f-4079-bee1-0b92e6c4e1b7", - "75f82802-187b-4386-b435-5da7ab066898", - "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", - "bad427d3-2698-4efd-8d52-2bc92f049d64", - "242c7269-ce0d-45c7-8356-927308e89900", - "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", - "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", - "41c46bd6-8021-4abc-88c9-f9d4d32afe26", - "ddeef6c2-ef0f-4d9f-a765-534563936049", - "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", - "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", - "0751a485-9efa-4491-b69f-eed5163417d8", - "5b565a57-bd7f-42f0-a279-0af0bf5f2a4d", - "3d29747a-7b75-4b0e-ad8a-50eec4e70061", - "1f1dcc94-03fa-4333-b695-c1027c760604", - "7183eaac-7645-401f-919b-91209487af61", - "d8f16090-e69f-45d8-b535-45f45ab1b739", - "2f3f3f3e-941f-4165-a7c4-41af6cf1cc84", - "065b0112-1102-48ec-b10a-c88cde002f4f", - "4ecd13b4-71e4-4328-bc7f-b30325894d82", - "6716e17d-58d0-427c-a6f7-62e8d8197b2a", - "6716e17d-58d0-427c-a6f7-62e8d8197b2a" - ], - "stops": [], - "line_id": "fc8b2224-338e-48b0-927c-49ca43fad9bd", - "segments": [ - 0, - 13, - 21, - 25, - 34, - 39, - 44, - 71, - 79, - 82, - 86, - 91, - 94, - 112, - 135, - 147, - 152, - 156, - 159, - 165, - 173, - 178, - 185, - 190, - 193, - 198, - 201, - 203, - 205, - 207, - 209, - 213, - 217, - 220, - 223, - 225, - 234, - 237, - 248, - 254, - 260, - 267, - 274, - 281, - 284, - 287, - 291, - 295, - 299, - 301 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 328, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.517735, - 45.516669 - ], - [ - -73.517496, - 45.516583 - ], - [ - -73.517318, - 45.516518 - ], - [ - -73.51692, - 45.51637 - ], - [ - -73.516876, - 45.516355 - ], - [ - -73.515414, - 45.515844 - ], - [ - -73.514725, - 45.515603 - ], - [ - -73.514563, - 45.515547 - ], - [ - -73.514692, - 45.515374 - ], - [ - -73.51474, - 45.515308 - ], - [ - -73.51499, - 45.51498 - ], - [ - -73.515208, - 45.514692 - ], - [ - -73.515467, - 45.514337 - ], - [ - -73.515566, - 45.514206 - ], - [ - -73.515671, - 45.514071 - ], - [ - -73.516146, - 45.51425 - ], - [ - -73.516645, - 45.514438 - ], - [ - -73.516734, - 45.514471 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.518009, - 45.514644 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517657, - 45.513609 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517706, - 45.511765 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.517608, - 45.509403 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517232, - 45.50732 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517349, - 45.505742 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.516769, - 45.502127 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.516261, - 45.501836 - ], - [ - -73.516043, - 45.501832 - ], - [ - -73.514398, - 45.501805 - ], - [ - -73.514212, - 45.501802 - ], - [ - -73.514104, - 45.501797 - ], - [ - -73.514045, - 45.501797 - ], - [ - -73.513805, - 45.501793 - ], - [ - -73.5136, - 45.501784 - ], - [ - -73.513522, - 45.501784 - ], - [ - -73.51344, - 45.501784 - ], - [ - -73.513352, - 45.501789 - ], - [ - -73.513284, - 45.501793 - ], - [ - -73.513035, - 45.501807 - ], - [ - -73.512897, - 45.501829 - ], - [ - -73.5127, - 45.501847 - ], - [ - -73.512501, - 45.501865 - ], - [ - -73.512398, - 45.501874 - ], - [ - -73.512063, - 45.501735 - ], - [ - -73.511984, - 45.501701 - ], - [ - -73.511327, - 45.50142 - ], - [ - -73.50993, - 45.500781 - ], - [ - -73.509907, - 45.500772 - ], - [ - -73.509762, - 45.500713 - ], - [ - -73.509608, - 45.500651 - ], - [ - -73.508958, - 45.500376 - ], - [ - -73.508861, - 45.50034 - ], - [ - -73.507712, - 45.499859 - ], - [ - -73.50735, - 45.499701 - ], - [ - -73.507069, - 45.499581 - ], - [ - -73.506801, - 45.499467 - ], - [ - -73.506709, - 45.499427 - ], - [ - -73.506259, - 45.499211 - ], - [ - -73.506001, - 45.499076 - ], - [ - -73.505704, - 45.498928 - ], - [ - -73.505329, - 45.498757 - ], - [ - -73.505105, - 45.498595 - ], - [ - -73.50495, - 45.498487 - ], - [ - -73.504839, - 45.49841 - ], - [ - -73.504683, - 45.498293 - ], - [ - -73.504473, - 45.49814 - ], - [ - -73.504131, - 45.497897 - ], - [ - -73.503475, - 45.497438 - ], - [ - -73.503408, - 45.497389 - ], - [ - -73.50327, - 45.49729 - ], - [ - -73.50284, - 45.49698 - ], - [ - -73.502634, - 45.496833 - ], - [ - -73.502336, - 45.49662 - ], - [ - -73.502293, - 45.496588 - ], - [ - -73.501808, - 45.496251 - ], - [ - -73.501446, - 45.495989 - ], - [ - -73.501279, - 45.495868 - ], - [ - -73.501182, - 45.495805 - ], - [ - -73.501059, - 45.495724 - ], - [ - -73.50081, - 45.495567 - ], - [ - -73.500592, - 45.495409 - ], - [ - -73.500505, - 45.49534 - ], - [ - -73.500106, - 45.495026 - ], - [ - -73.500064, - 45.495 - ], - [ - -73.500025, - 45.494979 - ], - [ - -73.499778, - 45.494815 - ], - [ - -73.499763, - 45.494802 - ], - [ - -73.49959, - 45.494676 - ], - [ - -73.499359, - 45.494506 - ], - [ - -73.499315, - 45.494474 - ], - [ - -73.499159, - 45.494361 - ], - [ - -73.498924, - 45.49419 - ], - [ - -73.498797, - 45.494096 - ], - [ - -73.498616, - 45.49397 - ], - [ - -73.49848, - 45.493866 - ], - [ - -73.498239, - 45.493691 - ], - [ - -73.498238, - 45.493691 - ], - [ - -73.49804, - 45.493547 - ], - [ - -73.497995, - 45.493515 - ], - [ - -73.497927, - 45.49347 - ], - [ - -73.497866, - 45.493425 - ], - [ - -73.497771, - 45.493353 - ], - [ - -73.497557, - 45.493191 - ], - [ - -73.497339, - 45.493038 - ], - [ - -73.497128, - 45.492885 - ], - [ - -73.496772, - 45.492629 - ], - [ - -73.496464, - 45.492407 - ], - [ - -73.496416, - 45.492372 - ], - [ - -73.496321, - 45.492305 - ], - [ - -73.496235, - 45.492242 - ], - [ - -73.495851, - 45.491976 - ], - [ - -73.49562, - 45.491814 - ], - [ - -73.495442, - 45.491684 - ], - [ - -73.495204, - 45.491517 - ], - [ - -73.494917, - 45.491315 - ], - [ - -73.49433, - 45.490897 - ], - [ - -73.494242, - 45.490838 - ], - [ - -73.494216, - 45.490819 - ], - [ - -73.493838, - 45.49055 - ], - [ - -73.493701, - 45.490456 - ], - [ - -73.493573, - 45.490366 - ], - [ - -73.492976, - 45.489943 - ], - [ - -73.492778, - 45.489803 - ], - [ - -73.492465, - 45.489583 - ], - [ - -73.492419, - 45.48955 - ], - [ - -73.492257, - 45.489435 - ], - [ - -73.492218, - 45.489407 - ], - [ - -73.492033, - 45.489274 - ], - [ - -73.491721, - 45.489052 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.491557, - 45.488939 - ], - [ - -73.490801, - 45.488399 - ], - [ - -73.489411, - 45.487405 - ], - [ - -73.489374, - 45.487377 - ], - [ - -73.489048, - 45.487135 - ], - [ - -73.488568, - 45.486806 - ], - [ - -73.487831, - 45.486284 - ], - [ - -73.487157, - 45.485806 - ], - [ - -73.487051, - 45.485731 - ], - [ - -73.486783, - 45.485533 - ], - [ - -73.486446, - 45.485294 - ], - [ - -73.485807, - 45.484835 - ], - [ - -73.485416, - 45.484552 - ], - [ - -73.485019, - 45.484268 - ], - [ - -73.484263, - 45.483728 - ], - [ - -73.483637, - 45.483278 - ], - [ - -73.483483, - 45.483175 - ], - [ - -73.483337, - 45.483067 - ], - [ - -73.482999, - 45.482824 - ], - [ - -73.482644, - 45.48257 - ], - [ - -73.482188, - 45.482243 - ], - [ - -73.482091, - 45.482176 - ], - [ - -73.481995, - 45.482108 - ], - [ - -73.481822, - 45.481987 - ], - [ - -73.481716, - 45.481908 - ], - [ - -73.48159, - 45.481816 - ], - [ - -73.481483, - 45.481744 - ], - [ - -73.481141, - 45.481496 - ], - [ - -73.480755, - 45.481226 - ], - [ - -73.480428, - 45.480974 - ], - [ - -73.479961, - 45.480655 - ], - [ - -73.479511, - 45.480326 - ], - [ - -73.479422, - 45.480272 - ], - [ - -73.47933, - 45.4802 - ], - [ - -73.479251, - 45.480144 - ], - [ - -73.478515, - 45.47962 - ], - [ - -73.478122, - 45.479334 - ], - [ - -73.477833, - 45.479125 - ], - [ - -73.477798, - 45.479064 - ], - [ - -73.477757, - 45.479003 - ], - [ - -73.477575, - 45.47885 - ], - [ - -73.477033, - 45.478413 - ], - [ - -73.476677, - 45.478153 - ], - [ - -73.47654, - 45.478053 - ], - [ - -73.476251, - 45.477842 - ], - [ - -73.475153, - 45.477059 - ], - [ - -73.474544, - 45.476636 - ], - [ - -73.474345, - 45.476487 - ], - [ - -73.474176, - 45.476361 - ], - [ - -73.4733, - 45.475709 - ], - [ - -73.473152, - 45.475605 - ], - [ - -73.472484, - 45.475128 - ], - [ - -73.472437, - 45.475091 - ], - [ - -73.47218, - 45.47489 - ], - [ - -73.472074, - 45.474808 - ], - [ - -73.471729, - 45.474583 - ], - [ - -73.470379, - 45.473613 - ], - [ - -73.470064, - 45.473386 - ], - [ - -73.468607, - 45.472409 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.467156, - 45.471392 - ], - [ - -73.466545, - 45.47101 - ], - [ - -73.466282, - 45.470821 - ], - [ - -73.465866, - 45.470524 - ], - [ - -73.465264, - 45.470087 - ], - [ - -73.465197, - 45.470037 - ], - [ - -73.464559, - 45.469569 - ], - [ - -73.464, - 45.469161 - ], - [ - -73.463828, - 45.469036 - ] - ] - }, - "id": 329, - "properties": { - "id": "97cce46d-21f8-40ea-8937-6da40f469999", - "data": { - "gtfs": { - "shape_id": "606_1_R" - }, - "segments": [ - { - "distanceMeters": 21, - "travelTimeSeconds": 5 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 577, - "travelTimeSeconds": 161 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 412, - "travelTimeSeconds": 97 - }, - { - "distanceMeters": 63, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 67, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 25, - "travelTimeSeconds": 6 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 368, - "travelTimeSeconds": 88 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 446, - "travelTimeSeconds": 106 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 39 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 192, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7776, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6740.77672383107, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 4.05, - "travelTimeWithoutDwellTimesSeconds": 1920, - "operatingTimeWithLayoverTimeSeconds": 2112, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1920, - "operatingSpeedWithLayoverMetersPerSecond": 3.68, - "averageSpeedWithoutDwellTimesMetersPerSecond": 4.05 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "f250cba5-329e-4403-912d-778f924ce25e", - "f250cba5-329e-4403-912d-778f924ce25e", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "46687bb1-1189-4edc-bbd4-c90db18d4ff5", - "46687bb1-1189-4edc-bbd4-c90db18d4ff5", - "df5b9592-81e3-4b2c-8a30-7f3a9144671b", - "d24bea6e-da8d-4183-8a5f-0e99be199484", - "6557d1fe-6975-49e2-871c-ab07d42ea35b", - "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", - "1cea6199-481e-43b0-8d4a-8c7593ff485f", - "467e03f3-2556-4d22-ae48-618a76e6b0b4", - "ea9801c9-a110-4900-bcae-f1b3a40050e8", - "0b6032e7-414a-429f-9df2-796599b947c2", - "88d8365e-2528-4422-a483-bb2efd9de617", - "fa220212-b6b2-4456-934f-7248f9884444", - "196681e4-c9e5-4a79-a3b1-ce225227e0aa", - "54bbe390-ff6d-41d9-bd4b-1e4843d66512", - "aa413165-9699-49b6-9dea-fa35bda8f373", - "0a623471-271f-47f5-9a85-7feece2a3285", - "dc5fe0eb-b8cc-4186-82d3-6787360ae612", - "1e48d359-2463-4fbd-b946-c0a530db4bbe", - "c46257ee-b29f-4a62-9447-95eb1e19c941", - "fe84c986-2907-4842-bde4-72fbe08a0576", - "d73e4ff6-4502-4376-9cf1-5410d307a82f", - "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", - "85f19be2-1f67-4673-b3b3-52d06ed31ae3", - "42f48eea-ee59-46f6-9c43-4b63100a50dc", - "8e9afee7-e1de-4794-a91d-f9db0ef29ed2", - "ee43ab70-74a3-4a43-bfec-164062a98584" - ], - "stops": [], - "line_id": "7b1d0910-9b0b-4643-b6e4-94ef789b7f42", - "segments": [ - 0, - 1, - 6, - 22, - 28, - 35, - 41, - 46, - 58, - 61, - 71, - 76, - 82, - 89, - 97, - 106, - 110, - 116, - 130, - 141, - 152, - 160, - 162, - 168, - 172, - 178, - 189, - 199, - 201, - 207, - 213, - 217, - 221, - 228, - 230 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 329, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.521447, - 45.524278 - ], - [ - -73.521441, - 45.524366 - ], - [ - -73.521454, - 45.524378 - ], - [ - -73.521465, - 45.524397 - ], - [ - -73.521495, - 45.524411 - ], - [ - -73.52152, - 45.524415 - ], - [ - -73.522484, - 45.524441 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.522519, - 45.524053 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522269, - 45.521519 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522303, - 45.521246 - ], - [ - -73.522314, - 45.521124 - ], - [ - -73.522312, - 45.521061 - ], - [ - -73.522297, - 45.52099 - ], - [ - -73.522254, - 45.520918 - ], - [ - -73.522202, - 45.520873 - ], - [ - -73.52209, - 45.52081 - ], - [ - -73.522032, - 45.520781 - ], - [ - -73.521962, - 45.520763 - ], - [ - -73.521858, - 45.520746 - ], - [ - -73.52176, - 45.520743 - ], - [ - -73.521678, - 45.520754 - ], - [ - -73.521604, - 45.520768 - ], - [ - -73.521512, - 45.520792 - ], - [ - -73.521388, - 45.520815 - ], - [ - -73.521286, - 45.520832 - ], - [ - -73.521218, - 45.520843 - ], - [ - -73.52114, - 45.520855 - ], - [ - -73.521012, - 45.520865 - ], - [ - -73.520918, - 45.520872 - ], - [ - -73.520796, - 45.520877 - ], - [ - -73.52064, - 45.520878 - ], - [ - -73.520491, - 45.520857 - ], - [ - -73.520363, - 45.52084 - ], - [ - -73.520252, - 45.520837 - ], - [ - -73.520121, - 45.52083 - ], - [ - -73.519926, - 45.520815 - ], - [ - -73.51983, - 45.520803 - ], - [ - -73.519522, - 45.520753 - ], - [ - -73.519411, - 45.520725 - ], - [ - -73.519258, - 45.520728 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.515669, - 45.519549 - ], - [ - -73.515453, - 45.51947 - ], - [ - -73.515318, - 45.51943 - ], - [ - -73.514997, - 45.519328 - ], - [ - -73.514524, - 45.519178 - ], - [ - -73.514357, - 45.518863 - ], - [ - -73.514227, - 45.51866 - ], - [ - -73.513978, - 45.518323 - ], - [ - -73.513732, - 45.517986 - ], - [ - -73.513547, - 45.517774 - ], - [ - -73.513223, - 45.517458 - ], - [ - -73.513099, - 45.517338 - ], - [ - -73.51236, - 45.51673 - ], - [ - -73.512248, - 45.516528 - ], - [ - -73.51162, - 45.516272 - ], - [ - -73.51136, - 45.516146 - ], - [ - -73.510789, - 45.515876 - ], - [ - -73.510116, - 45.515606 - ], - [ - -73.509849, - 45.51557 - ], - [ - -73.509164, - 45.515381 - ], - [ - -73.508444, - 45.51521 - ], - [ - -73.503449, - 45.513618 - ], - [ - -73.500803, - 45.512776 - ], - [ - -73.499338, - 45.51231 - ], - [ - -73.499162, - 45.512254 - ], - [ - -73.498549, - 45.512062 - ], - [ - -73.497699, - 45.511795 - ], - [ - -73.496919, - 45.511546 - ], - [ - -73.496096, - 45.511283 - ], - [ - -73.495565, - 45.511107 - ], - [ - -73.495059, - 45.510918 - ], - [ - -73.494579, - 45.510716 - ], - [ - -73.494122, - 45.510491 - ], - [ - -73.493683, - 45.510252 - ], - [ - -73.493267, - 45.509991 - ], - [ - -73.492868, - 45.509712 - ], - [ - -73.492676, - 45.509564 - ], - [ - -73.4923, - 45.509258 - ], - [ - -73.491951, - 45.508929 - ], - [ - -73.49179, - 45.508763 - ], - [ - -73.491635, - 45.508592 - ], - [ - -73.491347, - 45.508236 - ], - [ - -73.4913, - 45.508173 - ], - [ - -73.491215, - 45.508056 - ], - [ - -73.490974, - 45.507678 - ], - [ - -73.490056, - 45.506158 - ], - [ - -73.48918, - 45.5047 - ], - [ - -73.488595, - 45.503723 - ], - [ - -73.488541, - 45.503629 - ], - [ - -73.48831, - 45.50321 - ], - [ - -73.48823, - 45.503039 - ], - [ - -73.488092, - 45.502693 - ], - [ - -73.487989, - 45.502369 - ], - [ - -73.487959, - 45.502275 - ], - [ - -73.487746, - 45.501478 - ], - [ - -73.487613, - 45.501033 - ], - [ - -73.487523, - 45.500735 - ], - [ - -73.487509, - 45.500686 - ], - [ - -73.487464, - 45.50056 - ], - [ - -73.487346, - 45.500232 - ], - [ - -73.487139, - 45.499795 - ], - [ - -73.486985, - 45.499512 - ], - [ - -73.486844, - 45.499277 - ], - [ - -73.486818, - 45.499233 - ], - [ - -73.48673, - 45.4991 - ], - [ - -73.486631, - 45.498949 - ], - [ - -73.486428, - 45.498675 - ], - [ - -73.486216, - 45.498401 - ], - [ - -73.486166, - 45.498342 - ], - [ - -73.486, - 45.498149 - ], - [ - -73.485576, - 45.497708 - ], - [ - -73.485299, - 45.497456 - ], - [ - -73.485255, - 45.497418 - ], - [ - -73.485251, - 45.497415 - ], - [ - -73.484899, - 45.497123 - ], - [ - -73.484452, - 45.496789 - ], - [ - -73.484387, - 45.49674 - ], - [ - -73.484357, - 45.496722 - ], - [ - -73.482246, - 45.495326 - ], - [ - -73.482144, - 45.49526 - ], - [ - -73.482055, - 45.495201 - ], - [ - -73.479554, - 45.493543 - ], - [ - -73.479372, - 45.493423 - ], - [ - -73.474537, - 45.490228 - ], - [ - -73.474366, - 45.490115 - ], - [ - -73.473909, - 45.489814 - ], - [ - -73.472122, - 45.488632 - ], - [ - -73.471942, - 45.488513 - ], - [ - -73.46708, - 45.485304 - ], - [ - -73.466642, - 45.484984 - ], - [ - -73.466533, - 45.484894 - ], - [ - -73.466473, - 45.484845 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466302, - 45.484687 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466022, - 45.484682 - ], - [ - -73.465888, - 45.484747 - ], - [ - -73.465767, - 45.484792 - ], - [ - -73.465702, - 45.484807 - ], - [ - -73.465661, - 45.484807 - ], - [ - -73.465627, - 45.484802 - ], - [ - -73.4655, - 45.484766 - ], - [ - -73.464965, - 45.484574 - ], - [ - -73.464559, - 45.484417 - ], - [ - -73.464508, - 45.484399 - ], - [ - -73.464185, - 45.484291 - ], - [ - -73.463703, - 45.484155 - ], - [ - -73.463657, - 45.484142 - ], - [ - -73.46319, - 45.484029 - ], - [ - -73.462672, - 45.483908 - ], - [ - -73.462287, - 45.483831 - ], - [ - -73.462032, - 45.483791 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.46135, - 45.4837 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461294, - 45.483961 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.459557, - 45.485497 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.457883, - 45.486537 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.456938, - 45.487846 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456449, - 45.487901 - ], - [ - -73.456154, - 45.487865 - ], - [ - -73.455852, - 45.487802 - ], - [ - -73.455596, - 45.487748 - ], - [ - -73.455357, - 45.487675 - ], - [ - -73.455213, - 45.487621 - ], - [ - -73.454998, - 45.487531 - ], - [ - -73.454777, - 45.487423 - ], - [ - -73.454672, - 45.487356 - ], - [ - -73.454523, - 45.487261 - ], - [ - -73.454176, - 45.487527 - ], - [ - -73.453821, - 45.487792 - ], - [ - -73.452906, - 45.488462 - ] - ] - }, - "id": 330, - "properties": { - "id": "6c150fb9-623d-4944-b95b-9e646a43c35f", - "data": { - "gtfs": { - "shape_id": "607_1_A" - }, - "segments": [ - { - "distanceMeters": 137, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 627, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 2920, - "travelTimeSeconds": 450 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 538, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 603, - "travelTimeSeconds": 93 - }, - { - "distanceMeters": 708, - "travelTimeSeconds": 108 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 62 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8188, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6651.5379629597555, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.5, - "travelTimeWithoutDwellTimesSeconds": 1260, - "operatingTimeWithLayoverTimeSeconds": 1440, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1260, - "operatingSpeedWithLayoverMetersPerSecond": 5.69, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.5 - }, - "mode": "bus", - "name": "École de l'Agora", - "color": "#A32638", - "nodes": [ - "d1011845-6c20-48e2-a9a9-e727cee5b959", - "4c755ece-2475-4915-941e-37859f0f391f", - "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "d3215c60-bb9e-40ac-89e4-1f922b39e266", - "bcd0a901-5384-443e-9be4-1f0faa123ccb", - "fdd9bfef-c8dc-4f65-9008-847050729854", - "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", - "7ad37664-fa6b-478f-8d31-2d3ae7009709", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "94cd69e7-ebc9-452b-a357-367107db73b4", - "03b1ef77-b509-4f21-97d5-d511eeb821cb", - "351136d8-2c40-4c3f-8032-a52e48738c07", - "159a0fe9-bedb-40f2-9806-32ab49594978", - "c24b91da-a4a3-4b28-b987-5726c6a01fdb", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "517a8299-e807-4040-8ccd-f417dda7338c" - ], - "stops": [], - "line_id": "796e8ac2-9576-476b-8fec-a488864ea34b", - "segments": [ - 0, - 8, - 49, - 56, - 63, - 109, - 115, - 125, - 128, - 131, - 134, - 136, - 139, - 143, - 179, - 185, - 194 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 330, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.452906, - 45.488462 - ], - [ - -73.452661, - 45.488642 - ], - [ - -73.452316, - 45.488894 - ], - [ - -73.452398, - 45.488943 - ], - [ - -73.452482, - 45.488993 - ], - [ - -73.452596, - 45.489092 - ], - [ - -73.452853, - 45.489389 - ], - [ - -73.453059, - 45.489641 - ], - [ - -73.453301, - 45.489897 - ], - [ - -73.453554, - 45.490154 - ], - [ - -73.453816, - 45.490388 - ], - [ - -73.454028, - 45.490572 - ], - [ - -73.454376, - 45.490852 - ], - [ - -73.454696, - 45.491104 - ], - [ - -73.454792, - 45.49118 - ], - [ - -73.455838, - 45.490552 - ], - [ - -73.456177, - 45.490348 - ], - [ - -73.456382, - 45.490186 - ], - [ - -73.45652, - 45.490034 - ], - [ - -73.456589, - 45.489894 - ], - [ - -73.456688, - 45.489687 - ], - [ - -73.456689, - 45.489683 - ], - [ - -73.456709, - 45.489602 - ], - [ - -73.456724, - 45.489525 - ], - [ - -73.456835, - 45.488612 - ], - [ - -73.456897, - 45.488082 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457713, - 45.486664 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.459237, - 45.485732 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.461094, - 45.484447 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.462585, - 45.484043 - ], - [ - -73.463416, - 45.484224 - ], - [ - -73.463639, - 45.484291 - ], - [ - -73.464599, - 45.48462 - ], - [ - -73.465244, - 45.484835 - ], - [ - -73.465443, - 45.484908 - ], - [ - -73.465586, - 45.484937 - ], - [ - -73.465724, - 45.484942 - ], - [ - -73.465848, - 45.484931 - ], - [ - -73.466018, - 45.484884 - ], - [ - -73.466121, - 45.484844 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.46623, - 45.484867 - ], - [ - -73.466294, - 45.484926 - ], - [ - -73.466467, - 45.485063 - ], - [ - -73.466566, - 45.485142 - ], - [ - -73.466759, - 45.48529 - ], - [ - -73.466948, - 45.485421 - ], - [ - -73.467024, - 45.48547 - ], - [ - -73.467222, - 45.485601 - ], - [ - -73.468004, - 45.486118 - ], - [ - -73.469888, - 45.487365 - ], - [ - -73.470621, - 45.487851 - ], - [ - -73.471609, - 45.488506 - ], - [ - -73.471789, - 45.488626 - ], - [ - -73.473768, - 45.489935 - ], - [ - -73.474013, - 45.490097 - ], - [ - -73.474218, - 45.490232 - ], - [ - -73.476501, - 45.49174 - ], - [ - -73.4777, - 45.49253 - ], - [ - -73.47909, - 45.493447 - ], - [ - -73.479217, - 45.493531 - ], - [ - -73.480275, - 45.494231 - ], - [ - -73.481907, - 45.495309 - ], - [ - -73.482, - 45.495372 - ], - [ - -73.482362, - 45.495611 - ], - [ - -73.483276, - 45.496213 - ], - [ - -73.483953, - 45.496659 - ], - [ - -73.48404, - 45.49672 - ], - [ - -73.484203, - 45.496835 - ], - [ - -73.48442, - 45.496983 - ], - [ - -73.484708, - 45.497199 - ], - [ - -73.484931, - 45.497378 - ], - [ - -73.485095, - 45.49751 - ], - [ - -73.485397, - 45.497784 - ], - [ - -73.485739, - 45.498135 - ], - [ - -73.485877, - 45.498284 - ], - [ - -73.486105, - 45.498553 - ], - [ - -73.486286, - 45.498787 - ], - [ - -73.486368, - 45.498907 - ], - [ - -73.486538, - 45.499154 - ], - [ - -73.486685, - 45.499381 - ], - [ - -73.486823, - 45.499615 - ], - [ - -73.486951, - 45.499858 - ], - [ - -73.487138, - 45.500263 - ], - [ - -73.487159, - 45.500317 - ], - [ - -73.487265, - 45.500602 - ], - [ - -73.487306, - 45.500713 - ], - [ - -73.48737, - 45.50092 - ], - [ - -73.487417, - 45.501077 - ], - [ - -73.487455, - 45.501208 - ], - [ - -73.487464, - 45.50124 - ], - [ - -73.48765, - 45.50191 - ], - [ - -73.487855, - 45.502589 - ], - [ - -73.488032, - 45.50303 - ], - [ - -73.488178, - 45.503309 - ], - [ - -73.488409, - 45.50371 - ], - [ - -73.489159, - 45.504974 - ], - [ - -73.490669, - 45.507471 - ], - [ - -73.490821, - 45.507732 - ], - [ - -73.491056, - 45.508101 - ], - [ - -73.491274, - 45.508389 - ], - [ - -73.491318, - 45.508448 - ], - [ - -73.491611, - 45.508785 - ], - [ - -73.491934, - 45.509114 - ], - [ - -73.492109, - 45.509276 - ], - [ - -73.492486, - 45.5096 - ], - [ - -73.492892, - 45.509906 - ], - [ - -73.493105, - 45.51005 - ], - [ - -73.493324, - 45.510189 - ], - [ - -73.493692, - 45.51041 - ], - [ - -73.494018, - 45.510585 - ], - [ - -73.494514, - 45.510828 - ], - [ - -73.495039, - 45.511049 - ], - [ - -73.495599, - 45.511256 - ], - [ - -73.496194, - 45.511454 - ], - [ - -73.499095, - 45.512371 - ], - [ - -73.500628, - 45.512866 - ], - [ - -73.500836, - 45.512931 - ], - [ - -73.502033, - 45.513303 - ], - [ - -73.505335, - 45.514355 - ], - [ - -73.507293, - 45.514976 - ], - [ - -73.50757, - 45.515057 - ], - [ - -73.508383, - 45.515323 - ], - [ - -73.509009, - 45.515606 - ], - [ - -73.509231, - 45.515687 - ], - [ - -73.509741, - 45.515862 - ], - [ - -73.510108, - 45.515993 - ], - [ - -73.510631, - 45.516182 - ], - [ - -73.510788, - 45.516245 - ], - [ - -73.511308, - 45.516497 - ], - [ - -73.511636, - 45.51669 - ], - [ - -73.511911, - 45.516869 - ], - [ - -73.511995, - 45.516924 - ], - [ - -73.512285, - 45.517135 - ], - [ - -73.512469, - 45.517288 - ], - [ - -73.512743, - 45.517531 - ], - [ - -73.513032, - 45.517815 - ], - [ - -73.513435, - 45.518304 - ], - [ - -73.513469, - 45.518346 - ], - [ - -73.513624, - 45.51858 - ], - [ - -73.513669, - 45.518683 - ], - [ - -73.513704, - 45.51875 - ], - [ - -73.51371, - 45.518777 - ], - [ - -73.513719, - 45.518813 - ], - [ - -73.513719, - 45.518845 - ], - [ - -73.513715, - 45.518903 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515001, - 45.519422 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.518896, - 45.52063 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 331, - "properties": { - "id": "897138c1-2e45-4fe8-ba9a-6494fa7336f8", - "data": { - "gtfs": { - "shape_id": "607_2_R" - }, - "segments": [ - { - "distanceMeters": 376, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 514, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 555, - "travelTimeSeconds": 82 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 544, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 507, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 2816, - "travelTimeSeconds": 416 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 745, - "travelTimeSeconds": 111 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8517, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6651.5379629597555, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.76, - "travelTimeWithoutDwellTimesSeconds": 1260, - "operatingTimeWithLayoverTimeSeconds": 1440, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1260, - "operatingSpeedWithLayoverMetersPerSecond": 5.91, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.76 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "517a8299-e807-4040-8ccd-f417dda7338c", - "da4ca96f-4db9-4287-b307-afc6221c923f", - "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "a90c4da7-455c-41d3-9961-c7a64d627572", - "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", - "4996264a-c3f0-4fe8-be81-9ca3d8659c61", - "e089008c-4123-4897-95b5-a61e5e049f48", - "03b1ef77-b509-4f21-97d5-d511eeb821cb", - "56af9248-f973-4335-84c1-2e5e744a3910", - "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "fd062866-a8eb-4466-b53a-6adf8fc3f09a", - "6c42a8f6-a98f-4058-9992-d00706a03dff", - "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", - "be19484c-af95-45b2-bfe5-24342dd1b710", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "796e8ac2-9576-476b-8fec-a488864ea34b", - "segments": [ - 0, - 13, - 21, - 25, - 34, - 39, - 44, - 69, - 78, - 81, - 85, - 90, - 93, - 111, - 157, - 163, - 176, - 182 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 331, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.396233, - 45.485905 - ], - [ - -73.396316, - 45.48599 - ], - [ - -73.396877, - 45.486562 - ], - [ - -73.397253, - 45.486945 - ], - [ - -73.397988, - 45.487693 - ], - [ - -73.398422, - 45.488141 - ], - [ - -73.398503, - 45.488224 - ], - [ - -73.400292, - 45.490061 - ], - [ - -73.400344, - 45.490114 - ], - [ - -73.400631, - 45.490403 - ], - [ - -73.40073, - 45.490503 - ], - [ - -73.40103, - 45.490791 - ], - [ - -73.401471, - 45.491169 - ], - [ - -73.401956, - 45.491543 - ], - [ - -73.402249, - 45.491741 - ], - [ - -73.402279, - 45.49176 - ], - [ - -73.402357, - 45.491809 - ], - [ - -73.40251, - 45.491908 - ], - [ - -73.402561, - 45.491939 - ], - [ - -73.403076, - 45.492241 - ], - [ - -73.403455, - 45.492444 - ], - [ - -73.403546, - 45.492488 - ], - [ - -73.403928, - 45.492669 - ], - [ - -73.405629, - 45.493438 - ], - [ - -73.405646, - 45.493445 - ], - [ - -73.406308, - 45.493744 - ], - [ - -73.406465, - 45.493815 - ], - [ - -73.407044, - 45.494076 - ], - [ - -73.407318, - 45.494207 - ], - [ - -73.407449, - 45.49427 - ], - [ - -73.408138, - 45.494635 - ], - [ - -73.408581, - 45.494879 - ], - [ - -73.408708, - 45.49495 - ], - [ - -73.408748, - 45.494972 - ], - [ - -73.408851, - 45.495036 - ], - [ - -73.4093, - 45.495297 - ], - [ - -73.410398, - 45.49591 - ], - [ - -73.410608, - 45.496021 - ], - [ - -73.410729, - 45.496085 - ], - [ - -73.411068, - 45.496248 - ], - [ - -73.41156, - 45.496461 - ], - [ - -73.411587, - 45.496473 - ], - [ - -73.412271, - 45.49673 - ], - [ - -73.412864, - 45.496955 - ], - [ - -73.413686, - 45.497254 - ], - [ - -73.414507, - 45.497553 - ], - [ - -73.415733, - 45.497998 - ], - [ - -73.416484, - 45.498271 - ], - [ - -73.416635, - 45.498326 - ], - [ - -73.416723, - 45.498362 - ], - [ - -73.417312, - 45.498592 - ], - [ - -73.417435, - 45.498648 - ], - [ - -73.417607, - 45.498727 - ], - [ - -73.418042, - 45.498952 - ], - [ - -73.418335, - 45.499128 - ], - [ - -73.418479, - 45.499214 - ], - [ - -73.418764, - 45.499407 - ], - [ - -73.419209, - 45.499737 - ], - [ - -73.419305, - 45.499808 - ], - [ - -73.419729, - 45.500092 - ], - [ - -73.419878, - 45.500182 - ], - [ - -73.420342, - 45.50043 - ], - [ - -73.420707, - 45.500605 - ], - [ - -73.420784, - 45.500641 - ], - [ - -73.420878, - 45.500678 - ], - [ - -73.421089, - 45.500763 - ], - [ - -73.421557, - 45.500934 - ], - [ - -73.421727, - 45.500998 - ], - [ - -73.422541, - 45.501286 - ], - [ - -73.423018, - 45.501457 - ], - [ - -73.423282, - 45.501552 - ], - [ - -73.423423, - 45.501602 - ], - [ - -73.424204, - 45.50188 - ], - [ - -73.425944, - 45.502499 - ], - [ - -73.426184, - 45.502584 - ], - [ - -73.427788, - 45.503152 - ], - [ - -73.428083, - 45.503265 - ], - [ - -73.428273, - 45.50335 - ], - [ - -73.428512, - 45.503472 - ], - [ - -73.428523, - 45.503478 - ], - [ - -73.428643, - 45.503549 - ], - [ - -73.428884, - 45.503715 - ], - [ - -73.428992, - 45.503801 - ], - [ - -73.429012, - 45.50382 - ], - [ - -73.429175, - 45.503967 - ], - [ - -73.429253, - 45.504057 - ], - [ - -73.429303, - 45.504111 - ], - [ - -73.429332, - 45.504143 - ], - [ - -73.429383, - 45.504202 - ], - [ - -73.429486, - 45.504359 - ], - [ - -73.429494, - 45.504373 - ], - [ - -73.429599, - 45.504566 - ], - [ - -73.429648, - 45.504679 - ], - [ - -73.429656, - 45.504708 - ], - [ - -73.429758, - 45.505057 - ], - [ - -73.429934, - 45.505849 - ], - [ - -73.430026, - 45.506263 - ], - [ - -73.430066, - 45.506425 - ], - [ - -73.430099, - 45.506555 - ], - [ - -73.430103, - 45.506573 - ], - [ - -73.4302, - 45.506807 - ], - [ - -73.430341, - 45.507086 - ], - [ - -73.430485, - 45.507257 - ], - [ - -73.430506, - 45.507276 - ], - [ - -73.430509, - 45.507278 - ], - [ - -73.430608, - 45.507365 - ], - [ - -73.430672, - 45.507415 - ], - [ - -73.431358, - 45.507856 - ], - [ - -73.431609, - 45.508014 - ], - [ - -73.431666, - 45.508054 - ], - [ - -73.432482, - 45.508559 - ], - [ - -73.433021, - 45.508883 - ], - [ - -73.433395, - 45.509082 - ], - [ - -73.433453, - 45.509113 - ], - [ - -73.433508, - 45.50914 - ], - [ - -73.43374, - 45.509257 - ], - [ - -73.434128, - 45.509428 - ], - [ - -73.43476, - 45.509703 - ], - [ - -73.435361, - 45.509959 - ], - [ - -73.435478, - 45.510009 - ], - [ - -73.435758, - 45.510131 - ], - [ - -73.435893, - 45.510189 - ], - [ - -73.43661, - 45.510502 - ], - [ - -73.437183, - 45.510752 - ], - [ - -73.437938, - 45.511081 - ], - [ - -73.438224, - 45.511212 - ], - [ - -73.438489, - 45.511332 - ], - [ - -73.439008, - 45.511568 - ], - [ - -73.439444, - 45.511753 - ], - [ - -73.439738, - 45.511879 - ], - [ - -73.43983, - 45.511919 - ], - [ - -73.439896, - 45.511951 - ], - [ - -73.440237, - 45.512095 - ], - [ - -73.441448, - 45.512613 - ], - [ - -73.441811, - 45.512775 - ], - [ - -73.442889, - 45.51321 - ], - [ - -73.443061, - 45.51328 - ], - [ - -73.445634, - 45.514379 - ], - [ - -73.445671, - 45.514394 - ], - [ - -73.446646, - 45.514811 - ], - [ - -73.447765, - 45.515271 - ], - [ - -73.448402, - 45.515534 - ], - [ - -73.448481, - 45.515566 - ], - [ - -73.44854, - 45.51559 - ], - [ - -73.449494, - 45.515978 - ], - [ - -73.449844, - 45.516127 - ], - [ - -73.450296, - 45.51632 - ], - [ - -73.451371, - 45.516761 - ], - [ - -73.451373, - 45.516761 - ], - [ - -73.451903, - 45.516982 - ], - [ - -73.452053, - 45.517054 - ], - [ - -73.45224, - 45.517153 - ], - [ - -73.452412, - 45.517228 - ], - [ - -73.452518, - 45.517275 - ], - [ - -73.453808, - 45.5178 - ], - [ - -73.453989, - 45.517874 - ], - [ - -73.454088, - 45.517914 - ], - [ - -73.455195, - 45.518372 - ], - [ - -73.455625, - 45.518549 - ], - [ - -73.45631, - 45.518837 - ], - [ - -73.457046, - 45.519138 - ], - [ - -73.457149, - 45.51918 - ], - [ - -73.457268, - 45.519234 - ], - [ - -73.458416, - 45.519718 - ], - [ - -73.458582, - 45.519788 - ], - [ - -73.460199, - 45.520465 - ], - [ - -73.460326, - 45.520518 - ], - [ - -73.460513, - 45.520597 - ], - [ - -73.462498, - 45.52143 - ], - [ - -73.462791, - 45.521553 - ], - [ - -73.463779, - 45.521958 - ], - [ - -73.463823, - 45.521976 - ], - [ - -73.464215, - 45.522138 - ], - [ - -73.464352, - 45.522188 - ], - [ - -73.464459, - 45.522246 - ], - [ - -73.464607, - 45.522332 - ], - [ - -73.465163, - 45.522554 - ], - [ - -73.465496, - 45.522687 - ], - [ - -73.466002, - 45.522899 - ], - [ - -73.466103, - 45.522924 - ], - [ - -73.466276, - 45.522967 - ], - [ - -73.467237, - 45.523363 - ], - [ - -73.467912, - 45.523648 - ], - [ - -73.468048, - 45.523705 - ], - [ - -73.468866, - 45.524038 - ], - [ - -73.469522, - 45.524322 - ], - [ - -73.469662, - 45.524379 - ], - [ - -73.469721, - 45.524403 - ], - [ - -73.470239, - 45.524623 - ], - [ - -73.470555, - 45.524749 - ], - [ - -73.471094, - 45.524979 - ], - [ - -73.471997, - 45.525357 - ], - [ - -73.472466, - 45.525556 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.474462, - 45.526385 - ], - [ - -73.474661, - 45.526467 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.475467, - 45.526811 - ], - [ - -73.475894, - 45.526982 - ], - [ - -73.476159, - 45.527092 - ], - [ - -73.476219, - 45.527117 - ], - [ - -73.476969, - 45.527428 - ], - [ - -73.477725, - 45.527748 - ], - [ - -73.478336, - 45.528006 - ], - [ - -73.478598, - 45.528117 - ], - [ - -73.479454, - 45.528472 - ], - [ - -73.480164, - 45.528774 - ], - [ - -73.480753, - 45.529011 - ], - [ - -73.48089, - 45.529066 - ], - [ - -73.481428, - 45.5293 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.484963, - 45.530775 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.485802, - 45.531123 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.488436, - 45.532219 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.490636, - 45.533124 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.492967, - 45.534086 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.494094, - 45.534551 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.495628, - 45.535241 - ], - [ - -73.495883, - 45.535371 - ], - [ - -73.496561, - 45.535688 - ], - [ - -73.496645, - 45.535727 - ], - [ - -73.49677, - 45.535781 - ], - [ - -73.49726, - 45.535988 - ], - [ - -73.498459, - 45.536487 - ], - [ - -73.498935, - 45.536687 - ], - [ - -73.499435, - 45.536897 - ], - [ - -73.501142, - 45.537612 - ], - [ - -73.502066, - 45.537998 - ], - [ - -73.50326, - 45.538497 - ], - [ - -73.503424, - 45.538566 - ], - [ - -73.503808, - 45.538728 - ], - [ - -73.503912, - 45.538786 - ], - [ - -73.504095, - 45.538926 - ], - [ - -73.504553, - 45.539317 - ], - [ - -73.504747, - 45.539452 - ], - [ - -73.504767, - 45.539463 - ], - [ - -73.504898, - 45.539533 - ], - [ - -73.506469, - 45.540185 - ], - [ - -73.507029, - 45.540406 - ], - [ - -73.507958, - 45.540788 - ], - [ - -73.508096, - 45.540847 - ], - [ - -73.508112, - 45.54082 - ], - [ - -73.508159, - 45.540752 - ], - [ - -73.508242, - 45.54063 - ], - [ - -73.508344, - 45.540481 - ], - [ - -73.508359, - 45.54046 - ], - [ - -73.508548, - 45.540185 - ], - [ - -73.508697, - 45.53997 - ], - [ - -73.508896, - 45.539681 - ], - [ - -73.508991, - 45.53956 - ], - [ - -73.5095, - 45.538868 - ], - [ - -73.509547, - 45.538804 - ], - [ - -73.510038, - 45.538129 - ], - [ - -73.510181, - 45.537976 - ], - [ - -73.510286, - 45.537872 - ], - [ - -73.510414, - 45.537805 - ], - [ - -73.510805, - 45.537571 - ], - [ - -73.51108, - 45.537427 - ], - [ - -73.511591, - 45.537131 - ], - [ - -73.511716, - 45.537058 - ], - [ - -73.51274, - 45.536459 - ], - [ - -73.513159, - 45.536081 - ], - [ - -73.513272, - 45.536035 - ], - [ - -73.513413, - 45.535879 - ], - [ - -73.513707, - 45.535583 - ], - [ - -73.513941, - 45.535349 - ], - [ - -73.513973, - 45.535318 - ], - [ - -73.514031, - 45.535263 - ], - [ - -73.514312, - 45.534967 - ], - [ - -73.514735, - 45.53454 - ], - [ - -73.514842, - 45.53442 - ], - [ - -73.514898, - 45.534357 - ], - [ - -73.515145, - 45.534084 - ], - [ - -73.515317, - 45.533897 - ], - [ - -73.515372, - 45.533842 - ], - [ - -73.515504, - 45.533699 - ], - [ - -73.515509, - 45.533694 - ], - [ - -73.515888, - 45.533287 - ], - [ - -73.515986, - 45.533193 - ], - [ - -73.516614, - 45.532648 - ], - [ - -73.516729, - 45.532549 - ], - [ - -73.517579, - 45.531802 - ], - [ - -73.517926, - 45.531463 - ], - [ - -73.518114, - 45.53128 - ], - [ - -73.518212, - 45.531168 - ], - [ - -73.51845, - 45.53088 - ], - [ - -73.518608, - 45.530695 - ], - [ - -73.518713, - 45.530574 - ], - [ - -73.518834, - 45.53043 - ], - [ - -73.518953, - 45.53029 - ], - [ - -73.51902, - 45.530169 - ], - [ - -73.519168, - 45.529849 - ], - [ - -73.519338, - 45.529471 - ], - [ - -73.519395, - 45.529185 - ], - [ - -73.519421, - 45.528792 - ], - [ - -73.519425, - 45.528096 - ], - [ - -73.519428, - 45.527606 - ], - [ - -73.519433, - 45.526821 - ], - [ - -73.519425, - 45.526551 - ], - [ - -73.519398, - 45.526011 - ], - [ - -73.519391, - 45.525872 - ], - [ - -73.51938, - 45.525587 - ], - [ - -73.519429, - 45.525494 - ], - [ - -73.519429, - 45.525151 - ], - [ - -73.519429, - 45.524623 - ], - [ - -73.519429, - 45.524477 - ], - [ - -73.519455, - 45.524194 - ], - [ - -73.519492, - 45.523954 - ], - [ - -73.519551, - 45.523677 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.519882, - 45.523386 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.520198, - 45.524077 - ], - [ - -73.520174, - 45.524387 - ], - [ - -73.520921, - 45.524418 - ], - [ - -73.520961, - 45.524418 - ], - [ - -73.520974, - 45.524409 - ], - [ - -73.520997, - 45.524405 - ], - [ - -73.521023, - 45.524373 - ], - [ - -73.521033, - 45.524294 - ] - ] - }, - "id": 332, - "properties": { - "id": "f64bebb1-3522-4c7f-9370-d8f8af57f329", - "data": { - "gtfs": { - "shape_id": "608_1_A" - }, - "segments": [ - { - "distanceMeters": 302, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 63, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 422, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 480, - "travelTimeSeconds": 88 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 88, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 18, - "travelTimeSeconds": 4 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 76, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 211, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 102, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 347, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 635, - "travelTimeSeconds": 128 - }, - { - "distanceMeters": 533, - "travelTimeSeconds": 109 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 252, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13294, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 10630.668433067924, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.28, - "travelTimeWithoutDwellTimesSeconds": 2520, - "operatingTimeWithLayoverTimeSeconds": 2772, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2520, - "operatingSpeedWithLayoverMetersPerSecond": 4.8, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.28 - }, - "mode": "bus", - "name": "Terminus Longueuil", - "color": "#A32638", - "nodes": [ - "819870cc-ffb6-4a2a-add6-5b056cc3e4c0", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", - "7c34d8fb-52d2-4cf7-8954-ff69847540ac", - "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", - "76b4c3d5-f580-480d-bfec-c2639dd60d13", - "76b4c3d5-f580-480d-bfec-c2639dd60d13", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "df19b328-a961-4b0c-b128-99b5bcce3403", - "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", - "e654777c-6941-47f5-a273-d73ab074f10e", - "bb148567-d18f-49e1-a388-f782610c5390", - "e8e5c7df-2edf-4749-98c2-97962c7eff9c", - "a0b2e96c-f14a-4143-9ef3-8bb0e0e8a984", - "1b175835-d1cc-4713-943f-5472ffaa8fea", - "b4fcda7a-779e-4762-b2e5-038988d405be", - "80008949-5a0f-4c5e-b778-592c2ee8487f", - "53ead0f5-ebe4-4285-9d12-aa867ff0e782", - "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", - "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", - "7b1c691c-8a55-45c2-8401-9d619a0efb76", - "c4825963-416e-404b-a744-6ffe763e2d89", - "344c16fc-7161-4015-9999-e3e0f325dd1e", - "5636d204-312b-4d1e-bac7-614621da4bb5", - "d3991811-d92b-4ba2-9732-26a74abc49b7", - "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "5981cea7-b196-4e72-820c-362fb9c4e212", - "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", - "130245ae-209b-4e27-b903-ff57832b92eb", - "0d6b35f8-1b6c-4403-a7a5-53247aec7649", - "c3a2368c-bf2d-4c72-9adb-41ee799004b3", - "011d1f54-164c-4564-a051-bdacad3e287d", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "49918c5a-8414-49fd-abf9-87ae6b9f3976", - "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", - "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", - "65175945-c54c-4732-85a9-890393a0975c", - "27c5df15-201f-4855-9f49-556fd659fd8e", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "999ed130-7d99-4115-ac3c-cabba7731288", - "d15f81ba-7519-47f7-aa07-0026f1b03e42", - "28f2fe65-961c-4550-a722-1e7790fe94ad", - "9cf81604-6d70-4ba8-a3fc-521104742058", - "4d48f36b-2274-4392-afac-b2c2c64b98f0", - "5f58acb6-be68-437f-bde7-a77d03125af9", - "4e61612c-2f48-47d6-ad42-7c0737853911", - "e46ba2d2-9f30-419f-acae-c73c3ef665c5", - "48ea0d06-7b69-4895-b55b-2a18e6e6f906", - "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", - "d00d9138-966b-4522-be1d-8c665c71246b", - "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "649e6394-9376-40eb-bc0e-4a376a0044aa", - "4fb4515b-e129-4622-b855-89143c2fd488", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "202d7303-a137-4cb6-a689-d93e9f2f9634", - "segments": [ - 0, - 5, - 8, - 15, - 21, - 23, - 25, - 31, - 37, - 44, - 47, - 62, - 70, - 73, - 89, - 95, - 114, - 118, - 126, - 128, - 135, - 138, - 141, - 147, - 155, - 160, - 165, - 170, - 176, - 182, - 186, - 192, - 196, - 197, - 201, - 205, - 211, - 218, - 220, - 222, - 226, - 231, - 233, - 239, - 244, - 248, - 255, - 264, - 270, - 278, - 286, - 296, - 299, - 302, - 319 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 332, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.476061, - 45.456487 - ], - [ - -73.475848, - 45.456479 - ], - [ - -73.474778, - 45.456443 - ], - [ - -73.473716, - 45.456411 - ], - [ - -73.47264, - 45.456375 - ], - [ - -73.471572, - 45.456339 - ], - [ - -73.47073, - 45.456312 - ], - [ - -73.47047, - 45.456303 - ], - [ - -73.469686, - 45.456262 - ], - [ - -73.46943, - 45.456244 - ], - [ - -73.468978, - 45.456199 - ], - [ - -73.468639, - 45.456149 - ], - [ - -73.468607, - 45.456145 - ], - [ - -73.468443, - 45.456109 - ], - [ - -73.467856, - 45.455996 - ], - [ - -73.467523, - 45.455919 - ], - [ - -73.467299, - 45.455861 - ], - [ - -73.466983, - 45.455757 - ], - [ - -73.466899, - 45.455728 - ], - [ - -73.466828, - 45.455703 - ], - [ - -73.466307, - 45.455496 - ], - [ - -73.466093, - 45.45541 - ], - [ - -73.465683, - 45.455224 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.463912, - 45.454506 - ], - [ - -73.463601, - 45.454377 - ], - [ - -73.463295, - 45.45425 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.461788, - 45.453569 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.461995, - 45.453092 - ], - [ - -73.462227, - 45.45284 - ], - [ - -73.462521, - 45.452512 - ], - [ - -73.462647, - 45.452373 - ], - [ - -73.462794, - 45.452251 - ], - [ - -73.46333, - 45.451858 - ], - [ - -73.463473, - 45.451752 - ], - [ - -73.464171, - 45.451253 - ], - [ - -73.464437, - 45.450996 - ], - [ - -73.464569, - 45.450815 - ], - [ - -73.464689, - 45.45065 - ], - [ - -73.465053, - 45.450083 - ], - [ - -73.465974, - 45.448648 - ], - [ - -73.466, - 45.448608 - ], - [ - -73.466078, - 45.448455 - ], - [ - -73.466096, - 45.44836 - ], - [ - -73.466204, - 45.447915 - ], - [ - -73.466314, - 45.447523 - ], - [ - -73.466576, - 45.447132 - ], - [ - -73.466916, - 45.446619 - ], - [ - -73.467121, - 45.446405 - ], - [ - -73.467388, - 45.446125 - ], - [ - -73.467467, - 45.446048 - ], - [ - -73.46755, - 45.445972 - ], - [ - -73.467743, - 45.445738 - ], - [ - -73.467879, - 45.445603 - ], - [ - -73.467947, - 45.445454 - ], - [ - -73.467968, - 45.445351 - ], - [ - -73.467959, - 45.445234 - ], - [ - -73.468021, - 45.445022 - ], - [ - -73.468044, - 45.444901 - ], - [ - -73.468082, - 45.444748 - ], - [ - -73.468126, - 45.444631 - ], - [ - -73.468179, - 45.444519 - ], - [ - -73.468216, - 45.444456 - ], - [ - -73.468613, - 45.443844 - ], - [ - -73.468955, - 45.443303 - ], - [ - -73.469051, - 45.443151 - ], - [ - -73.469477, - 45.442492 - ], - [ - -73.469784, - 45.442018 - ], - [ - -73.470012, - 45.441666 - ], - [ - -73.470027, - 45.441639 - ], - [ - -73.470099, - 45.441352 - ], - [ - -73.470257, - 45.441055 - ], - [ - -73.470303, - 45.440969 - ], - [ - -73.471678, - 45.438891 - ], - [ - -73.472219, - 45.438078 - ], - [ - -73.472271, - 45.438 - ], - [ - -73.471224, - 45.437922 - ], - [ - -73.470889, - 45.437897 - ], - [ - -73.470756, - 45.437887 - ], - [ - -73.470561, - 45.437874 - ], - [ - -73.470109, - 45.437842 - ], - [ - -73.468967, - 45.437779 - ], - [ - -73.46793, - 45.43771 - ], - [ - -73.46781, - 45.437702 - ], - [ - -73.465864, - 45.437562 - ], - [ - -73.465515, - 45.437526 - ], - [ - -73.465311, - 45.437496 - ], - [ - -73.4653, - 45.437494 - ], - [ - -73.465091, - 45.437458 - ], - [ - -73.464723, - 45.437368 - ], - [ - -73.463269, - 45.436949 - ], - [ - -73.462441, - 45.436705 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.462154, - 45.436845 - ], - [ - -73.461977, - 45.437119 - ], - [ - -73.461434, - 45.437958 - ], - [ - -73.460899, - 45.438784 - ], - [ - -73.460824, - 45.438928 - ], - [ - -73.460775, - 45.43905 - ], - [ - -73.460753, - 45.439144 - ], - [ - -73.460743, - 45.4392 - ], - [ - -73.460732, - 45.439261 - ], - [ - -73.460756, - 45.439374 - ], - [ - -73.460804, - 45.439527 - ], - [ - -73.460879, - 45.439666 - ], - [ - -73.4611, - 45.439963 - ], - [ - -73.461732, - 45.440683 - ], - [ - -73.46187, - 45.440814 - ], - [ - -73.462104, - 45.44098 - ], - [ - -73.462213, - 45.441057 - ], - [ - -73.462145, - 45.441115 - ], - [ - -73.46199, - 45.441264 - ], - [ - -73.461921, - 45.441345 - ], - [ - -73.461295, - 45.442296 - ], - [ - -73.461249, - 45.442366 - ], - [ - -73.460609, - 45.44336 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.460454, - 45.443598 - ], - [ - -73.460027, - 45.444237 - ], - [ - -73.459526, - 45.445028 - ], - [ - -73.459486, - 45.445092 - ], - [ - -73.458903, - 45.445978 - ], - [ - -73.458716, - 45.446252 - ], - [ - -73.458499, - 45.446437 - ], - [ - -73.458358, - 45.446536 - ], - [ - -73.45823, - 45.446598 - ], - [ - -73.458121, - 45.446639 - ], - [ - -73.4581, - 45.446646 - ], - [ - -73.458085, - 45.446651 - ], - [ - -73.458009, - 45.446676 - ], - [ - -73.457516, - 45.446841 - ], - [ - -73.456885, - 45.447052 - ], - [ - -73.456377, - 45.447222 - ], - [ - -73.456253, - 45.447264 - ], - [ - -73.455927, - 45.447371 - ], - [ - -73.455661, - 45.447479 - ], - [ - -73.455528, - 45.447551 - ], - [ - -73.455416, - 45.447619 - ], - [ - -73.455304, - 45.447709 - ], - [ - -73.455137, - 45.447929 - ], - [ - -73.454897, - 45.448293 - ], - [ - -73.454606, - 45.448707 - ], - [ - -73.454507, - 45.448806 - ], - [ - -73.454405, - 45.448886 - ], - [ - -73.454351, - 45.448928 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.454088, - 45.449121 - ], - [ - -73.454556, - 45.449427 - ], - [ - -73.454809, - 45.449619 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.453977, - 45.450264 - ], - [ - -73.452721, - 45.451143 - ], - [ - -73.452622, - 45.451213 - ], - [ - -73.45274, - 45.451298 - ], - [ - -73.453298, - 45.451699 - ], - [ - -73.452613, - 45.45218 - ], - [ - -73.45248, - 45.452271 - ], - [ - -73.451617, - 45.452863 - ], - [ - -73.451486, - 45.452953 - ], - [ - -73.45112, - 45.453219 - ], - [ - -73.450766, - 45.453502 - ], - [ - -73.450717, - 45.453562 - ], - [ - -73.450488, - 45.453839 - ], - [ - -73.451305, - 45.454127 - ], - [ - -73.451557, - 45.454204 - ], - [ - -73.45174, - 45.454276 - ], - [ - -73.451796, - 45.454305 - ], - [ - -73.451873, - 45.454344 - ], - [ - -73.451956, - 45.454402 - ], - [ - -73.452104, - 45.454551 - ], - [ - -73.452189, - 45.454636 - ], - [ - -73.452038, - 45.454708 - ], - [ - -73.451941, - 45.454767 - ], - [ - -73.451848, - 45.45487 - ], - [ - -73.45166, - 45.455126 - ], - [ - -73.451461, - 45.455422 - ], - [ - -73.451241, - 45.455747 - ], - [ - -73.450443, - 45.45693 - ], - [ - -73.450382, - 45.457097 - ], - [ - -73.450362, - 45.457232 - ], - [ - -73.450366, - 45.457377 - ], - [ - -73.450367, - 45.457403 - ], - [ - -73.4504, - 45.457554 - ], - [ - -73.450437, - 45.457731 - ], - [ - -73.451112, - 45.458216 - ], - [ - -73.452534, - 45.459239 - ], - [ - -73.453107, - 45.45966 - ], - [ - -73.453221, - 45.459743 - ], - [ - -73.454663, - 45.460779 - ], - [ - -73.455149, - 45.461128 - ], - [ - -73.456104, - 45.461814 - ], - [ - -73.456268, - 45.4619 - ], - [ - -73.456608, - 45.461964 - ], - [ - -73.457019, - 45.462007 - ], - [ - -73.457439, - 45.46205 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.458539, - 45.46218 - ], - [ - -73.458611, - 45.462189 - ], - [ - -73.459742, - 45.462333 - ], - [ - -73.460596, - 45.46227 - ], - [ - -73.461023, - 45.462239 - ], - [ - -73.461274, - 45.462221 - ], - [ - -73.46213, - 45.462145 - ], - [ - -73.462729, - 45.462095 - ], - [ - -73.462839, - 45.462082 - ], - [ - -73.462926, - 45.462051 - ], - [ - -73.463004, - 45.46201 - ], - [ - -73.463058, - 45.461956 - ], - [ - -73.463101, - 45.461866 - ], - [ - -73.463097, - 45.461763 - ], - [ - -73.463035, - 45.46138 - ], - [ - -73.462935, - 45.460758 - ], - [ - -73.462922, - 45.460678 - ], - [ - -73.462765, - 45.459532 - ], - [ - -73.462745, - 45.459391 - ], - [ - -73.463438, - 45.459357 - ], - [ - -73.463732, - 45.459342 - ], - [ - -73.464994, - 45.459278 - ], - [ - -73.465215, - 45.461562 - ], - [ - -73.465247, - 45.461893 - ], - [ - -73.465328, - 45.462497 - ], - [ - -73.465435, - 45.463211 - ], - [ - -73.465484, - 45.463543 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.468228, - 45.466848 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466754 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469319, - 45.467991 - ], - [ - -73.468598, - 45.467969 - ], - [ - -73.468434, - 45.467978 - ], - [ - -73.467926, - 45.468045 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467548, - 45.468225 - ], - [ - -73.467698, - 45.468792 - ], - [ - -73.467776, - 45.469183 - ], - [ - -73.46782, - 45.469453 - ], - [ - -73.467842, - 45.469714 - ], - [ - -73.467865, - 45.469989 - ], - [ - -73.467864, - 45.470057 - ], - [ - -73.467862, - 45.470168 - ], - [ - -73.46786, - 45.470362 - ], - [ - -73.467821, - 45.470781 - ], - [ - -73.467786, - 45.471019 - ], - [ - -73.467768, - 45.4711 - ], - [ - -73.467742, - 45.471226 - ], - [ - -73.467655, - 45.471563 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467508, - 45.472063 - ], - [ - -73.467493, - 45.472108 - ], - [ - -73.467339, - 45.472573 - ], - [ - -73.467254, - 45.472832 - ], - [ - -73.467075, - 45.473412 - ], - [ - -73.467018, - 45.473612 - ], - [ - -73.46686, - 45.474168 - ], - [ - -73.466715, - 45.474632 - ], - [ - -73.466501, - 45.475269 - ], - [ - -73.466278, - 45.475935 - ], - [ - -73.466234, - 45.476067 - ], - [ - -73.466123, - 45.476397 - ], - [ - -73.465592, - 45.477979 - ], - [ - -73.465357, - 45.478703 - ], - [ - -73.465332, - 45.478768 - ], - [ - -73.465269, - 45.478932 - ], - [ - -73.465247, - 45.479 - ], - [ - -73.465115, - 45.479397 - ], - [ - -73.464879, - 45.480107 - ], - [ - -73.464823, - 45.480273 - ], - [ - -73.464733, - 45.480574 - ], - [ - -73.464664, - 45.480885 - ], - [ - -73.464645, - 45.481025 - ], - [ - -73.464634, - 45.481108 - ], - [ - -73.464622, - 45.481195 - ], - [ - -73.464619, - 45.481245 - ], - [ - -73.464603, - 45.481524 - ], - [ - -73.464619, - 45.481956 - ], - [ - -73.464693, - 45.482383 - ], - [ - -73.464736, - 45.482559 - ], - [ - -73.46485, - 45.482905 - ], - [ - -73.46499, - 45.483243 - ], - [ - -73.465069, - 45.483405 - ], - [ - -73.465231, - 45.483688 - ], - [ - -73.465328, - 45.483837 - ], - [ - -73.465516, - 45.484318 - ], - [ - -73.465535, - 45.48439 - ], - [ - -73.465531, - 45.484453 - ], - [ - -73.465521, - 45.484494 - ], - [ - -73.465494, - 45.484521 - ], - [ - -73.465464, - 45.484552 - ], - [ - -73.46542, - 45.484575 - ], - [ - -73.465379, - 45.484592 - ], - [ - -73.465324, - 45.484601 - ], - [ - -73.465214, - 45.484601 - ], - [ - -73.464965, - 45.484574 - ], - [ - -73.464559, - 45.484417 - ], - [ - -73.464508, - 45.484399 - ], - [ - -73.464185, - 45.484291 - ], - [ - -73.464064, - 45.484257 - ], - [ - -73.463703, - 45.484155 - ], - [ - -73.463657, - 45.484142 - ], - [ - -73.46319, - 45.484029 - ], - [ - -73.462672, - 45.483908 - ], - [ - -73.462287, - 45.483831 - ], - [ - -73.462032, - 45.483791 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.461912, - 45.483773 - ], - [ - -73.46135, - 45.4837 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.45955, - 45.485502 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.457875, - 45.486542 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.456938, - 45.487845 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456449, - 45.487901 - ], - [ - -73.456154, - 45.487865 - ], - [ - -73.455852, - 45.487802 - ], - [ - -73.455596, - 45.487748 - ], - [ - -73.455357, - 45.487675 - ], - [ - -73.455213, - 45.487621 - ], - [ - -73.454998, - 45.487531 - ], - [ - -73.454777, - 45.487423 - ], - [ - -73.454672, - 45.487356 - ], - [ - -73.454523, - 45.487261 - ], - [ - -73.454176, - 45.487527 - ], - [ - -73.453821, - 45.487792 - ], - [ - -73.452906, - 45.488462 - ] - ] - }, - "id": 333, - "properties": { - "id": "4dedb880-0f16-4a1c-b5ca-a6309aca1d9b", - "data": { - "gtfs": { - "shape_id": "609_1_A" - }, - "segments": [ - { - "distanceMeters": 581, - "travelTimeSeconds": 79 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 37, - "travelTimeSeconds": 5 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 168, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 87, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 93, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 1188, - "travelTimeSeconds": 163 - }, - { - "distanceMeters": 754, - "travelTimeSeconds": 179 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 436, - "travelTimeSeconds": 103 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 72, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 1000, - "travelTimeSeconds": 238 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 96 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 222, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13427, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3985.4196725437887, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.05, - "travelTimeWithoutDwellTimesSeconds": 2220, - "operatingTimeWithLayoverTimeSeconds": 2442, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2220, - "operatingSpeedWithLayoverMetersPerSecond": 5.5, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.05 - }, - "mode": "bus", - "name": "École de l'Agora", - "color": "#A32638", - "nodes": [ - "1782a1a7-eddc-4228-a7a8-bf733f339e68", - "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", - "8443a69f-fccf-4a19-8d08-6da77269e686", - "2946050b-73ca-45c7-be10-f80ba5b43ab5", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "90d9bb0e-4845-468b-af33-21831922eede", - "d300031f-a642-4e09-b48b-0e859400e1f7", - "27cd912d-c30d-4955-977f-68eb1e010190", - "809d30b8-456e-4e86-b782-8a6448d546e0", - "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", - "daacedd2-0b84-4f73-9f01-d9072ec32dce", - "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", - "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "c7e2639a-bb94-426e-918b-714f0212d53b", - "19a4f64a-0169-40b9-8b9c-84de3158151e", - "b93691d0-438e-4eac-87a0-7c1ac45a7c18", - "9b31d865-da9f-4eb8-b8a9-3d488eb579df", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "57126f14-f5bb-4578-a4ae-48d75eae5e82", - "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", - "8b7e764f-0227-410c-89b9-51b9a8ad8c88", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", - "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", - "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", - "0087674f-0098-4bab-9a77-b31eb3602613", - "db56dff4-d82c-4b2d-ad34-35b3db3f27de", - "800b4ca8-f540-48ef-9acf-ec6d45db3496", - "0c735a18-4964-435c-ad38-89ab21a47f83", - "c01e4d9c-c5df-425f-9b40-215a62d76b50", - "4ca26d1e-a5a2-4d1a-ba5a-7bed9b5a1bee", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "5d862a7d-92b0-4def-8199-258993ce3523", - "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", - "d0325326-9fbf-42e2-aefa-29fa09853c10", - "d13720b6-fb91-4a90-a816-addaef17cf17", - "80775ca9-8434-48d9-a65d-5f3eace6e2d8", - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "acb7092d-3b2a-4d79-a4e3-09e7e52af475", - "47d29e21-b442-4f1e-bc41-0d7871af14e8", - "7eaffbff-c86c-4810-b174-bda8780c04b4", - "e76a6766-6730-419b-bd29-f65b80bb6721", - "bf51d692-a22e-42e9-a495-2d1955e0c462", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "c24b91da-a4a3-4b28-b987-5726c6a01fdb", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "517a8299-e807-4040-8ccd-f417dda7338c" - ], - "stops": [], - "line_id": "e4a4b657-a352-4726-ac1d-5b2ae996f95c", - "segments": [ - 0, - 11, - 20, - 27, - 30, - 37, - 41, - 44, - 52, - 68, - 75, - 78, - 81, - 86, - 90, - 95, - 97, - 99, - 104, - 112, - 117, - 119, - 123, - 131, - 136, - 147, - 152, - 155, - 161, - 165, - 173, - 180, - 186, - 190, - 192, - 198, - 200, - 204, - 215, - 217, - 220, - 258, - 281, - 295, - 304, - 307, - 310, - 315, - 362, - 368, - 377 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 333, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.452906, - 45.488462 - ], - [ - -73.452661, - 45.488642 - ], - [ - -73.452316, - 45.488894 - ], - [ - -73.452398, - 45.488943 - ], - [ - -73.452482, - 45.488993 - ], - [ - -73.452596, - 45.489092 - ], - [ - -73.452853, - 45.489389 - ], - [ - -73.453059, - 45.489641 - ], - [ - -73.453301, - 45.489897 - ], - [ - -73.453554, - 45.490154 - ], - [ - -73.453816, - 45.490388 - ], - [ - -73.454028, - 45.490572 - ], - [ - -73.454376, - 45.490852 - ], - [ - -73.454696, - 45.491105 - ], - [ - -73.454792, - 45.49118 - ], - [ - -73.455557, - 45.490721 - ], - [ - -73.456177, - 45.490348 - ], - [ - -73.456382, - 45.490186 - ], - [ - -73.45652, - 45.490034 - ], - [ - -73.456589, - 45.489894 - ], - [ - -73.456688, - 45.489687 - ], - [ - -73.456689, - 45.489683 - ], - [ - -73.456709, - 45.489602 - ], - [ - -73.456724, - 45.489525 - ], - [ - -73.456835, - 45.488612 - ], - [ - -73.456898, - 45.488081 - ], - [ - -73.456914, - 45.487946 - ], - [ - -73.456962, - 45.487748 - ], - [ - -73.457061, - 45.487501 - ], - [ - -73.457135, - 45.487357 - ], - [ - -73.457168, - 45.487285 - ], - [ - -73.457257, - 45.487163 - ], - [ - -73.457384, - 45.486988 - ], - [ - -73.457563, - 45.486808 - ], - [ - -73.457715, - 45.486663 - ], - [ - -73.457779, - 45.486601 - ], - [ - -73.45845, - 45.486187 - ], - [ - -73.4585, - 45.48616 - ], - [ - -73.45866, - 45.486071 - ], - [ - -73.459238, - 45.485731 - ], - [ - -73.459365, - 45.485657 - ], - [ - -73.459428, - 45.485585 - ], - [ - -73.459818, - 45.485319 - ], - [ - -73.460288, - 45.484998 - ], - [ - -73.461097, - 45.484445 - ], - [ - -73.4611, - 45.484443 - ], - [ - -73.46115, - 45.484389 - ], - [ - -73.461194, - 45.484339 - ], - [ - -73.461241, - 45.484263 - ], - [ - -73.461246, - 45.484236 - ], - [ - -73.461257, - 45.484173 - ], - [ - -73.461295, - 45.483957 - ], - [ - -73.461321, - 45.483835 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.461742, - 45.483894 - ], - [ - -73.462585, - 45.484043 - ], - [ - -73.463416, - 45.484224 - ], - [ - -73.463639, - 45.484291 - ], - [ - -73.464054, - 45.484433 - ], - [ - -73.464599, - 45.48462 - ], - [ - -73.465244, - 45.484835 - ], - [ - -73.465443, - 45.484908 - ], - [ - -73.465586, - 45.484937 - ], - [ - -73.465724, - 45.484942 - ], - [ - -73.465848, - 45.484931 - ], - [ - -73.466018, - 45.484884 - ], - [ - -73.466121, - 45.484844 - ], - [ - -73.466168, - 45.484809 - ], - [ - -73.466327, - 45.48471 - ], - [ - -73.466302, - 45.484687 - ], - [ - -73.466193, - 45.48458 - ], - [ - -73.466188, - 45.484448 - ], - [ - -73.466149, - 45.484395 - ], - [ - -73.465905, - 45.484113 - ], - [ - -73.465719, - 45.4839 - ], - [ - -73.46546, - 45.483541 - ], - [ - -73.465236, - 45.483174 - ], - [ - -73.465161, - 45.483037 - ], - [ - -73.465057, - 45.482799 - ], - [ - -73.464968, - 45.48254 - ], - [ - -73.46489, - 45.482284 - ], - [ - -73.464833, - 45.481906 - ], - [ - -73.464816, - 45.481524 - ], - [ - -73.46484, - 45.481211 - ], - [ - -73.464843, - 45.481165 - ], - [ - -73.464847, - 45.481114 - ], - [ - -73.464866, - 45.480979 - ], - [ - -73.46492, - 45.48071 - ], - [ - -73.465032, - 45.480327 - ], - [ - -73.465198, - 45.479819 - ], - [ - -73.46547, - 45.479009 - ], - [ - -73.465543, - 45.478792 - ], - [ - -73.465652, - 45.478467 - ], - [ - -73.465874, - 45.477808 - ], - [ - -73.46647, - 45.47601 - ], - [ - -73.466484, - 45.475966 - ], - [ - -73.466637, - 45.475504 - ], - [ - -73.467366, - 45.473305 - ], - [ - -73.467411, - 45.473172 - ], - [ - -73.467616, - 45.472553 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467869, - 45.471793 - ], - [ - -73.467954, - 45.471482 - ], - [ - -73.467979, - 45.471365 - ], - [ - -73.468005, - 45.471249 - ], - [ - -73.468064, - 45.470898 - ], - [ - -73.468087, - 45.47067 - ], - [ - -73.468112, - 45.470407 - ], - [ - -73.468119, - 45.470155 - ], - [ - -73.468115, - 45.470044 - ], - [ - -73.468111, - 45.469894 - ], - [ - -73.468108, - 45.469818 - ], - [ - -73.468107, - 45.469773 - ], - [ - -73.46805, - 45.4693 - ], - [ - -73.467957, - 45.468854 - ], - [ - -73.467932, - 45.468733 - ], - [ - -73.467793, - 45.468274 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.468735, - 45.466864 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466788 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466352, - 45.465288 - ], - [ - -73.466238, - 45.465062 - ], - [ - -73.466142, - 45.464853 - ], - [ - -73.466048, - 45.464638 - ], - [ - -73.46599, - 45.464498 - ], - [ - -73.465967, - 45.464441 - ], - [ - -73.465973, - 45.464235 - ], - [ - -73.466002, - 45.464038 - ], - [ - -73.466104, - 45.463863 - ], - [ - -73.466216, - 45.463756 - ], - [ - -73.466371, - 45.463679 - ], - [ - -73.466622, - 45.463647 - ], - [ - -73.466852, - 45.463668 - ], - [ - -73.467082, - 45.463784 - ], - [ - -73.467212, - 45.463951 - ], - [ - -73.467234, - 45.464135 - ], - [ - -73.467163, - 45.464287 - ], - [ - -73.467024, - 45.464416 - ], - [ - -73.466735, - 45.46451 - ], - [ - -73.466567, - 45.464522 - ], - [ - -73.465706, - 45.464485 - ], - [ - -73.464402, - 45.464429 - ], - [ - -73.463422, - 45.464395 - ], - [ - -73.462294, - 45.464357 - ], - [ - -73.461419, - 45.464323 - ], - [ - -73.460353, - 45.4642 - ], - [ - -73.459906, - 45.464144 - ], - [ - -73.459408, - 45.464052 - ], - [ - -73.458521, - 45.463796 - ], - [ - -73.458275, - 45.463724 - ], - [ - -73.457681, - 45.463496 - ], - [ - -73.457669, - 45.463491 - ], - [ - -73.456975, - 45.463149 - ], - [ - -73.456896, - 45.463092 - ], - [ - -73.456843, - 45.463043 - ], - [ - -73.456777, - 45.462977 - ], - [ - -73.456717, - 45.462912 - ], - [ - -73.456666, - 45.462833 - ], - [ - -73.456625, - 45.462758 - ], - [ - -73.456603, - 45.462667 - ], - [ - -73.456593, - 45.462539 - ], - [ - -73.4566, - 45.462399 - ], - [ - -73.456621, - 45.462264 - ], - [ - -73.456608, - 45.461964 - ], - [ - -73.456268, - 45.4619 - ], - [ - -73.456104, - 45.461814 - ], - [ - -73.455636, - 45.461478 - ], - [ - -73.454204, - 45.46045 - ], - [ - -73.453336, - 45.459826 - ], - [ - -73.453221, - 45.459743 - ], - [ - -73.452534, - 45.459239 - ], - [ - -73.451112, - 45.458216 - ], - [ - -73.450794, - 45.457988 - ], - [ - -73.450437, - 45.457731 - ], - [ - -73.450367, - 45.457403 - ], - [ - -73.450362, - 45.457232 - ], - [ - -73.450382, - 45.457097 - ], - [ - -73.450443, - 45.45693 - ], - [ - -73.450536, - 45.456792 - ], - [ - -73.451215, - 45.455786 - ], - [ - -73.451461, - 45.455422 - ], - [ - -73.45166, - 45.455126 - ], - [ - -73.451848, - 45.45487 - ], - [ - -73.451887, - 45.454827 - ], - [ - -73.451941, - 45.454767 - ], - [ - -73.452038, - 45.454708 - ], - [ - -73.452189, - 45.454636 - ], - [ - -73.451956, - 45.454402 - ], - [ - -73.451873, - 45.454344 - ], - [ - -73.45174, - 45.454276 - ], - [ - -73.451557, - 45.454204 - ], - [ - -73.451305, - 45.454127 - ], - [ - -73.450822, - 45.453957 - ], - [ - -73.450488, - 45.453839 - ], - [ - -73.450766, - 45.453502 - ], - [ - -73.45112, - 45.453219 - ], - [ - -73.451321, - 45.453073 - ], - [ - -73.451486, - 45.452953 - ], - [ - -73.45248, - 45.452271 - ], - [ - -73.452613, - 45.45218 - ], - [ - -73.453298, - 45.451699 - ], - [ - -73.452791, - 45.451334 - ], - [ - -73.452622, - 45.451213 - ], - [ - -73.453977, - 45.450264 - ], - [ - -73.454474, - 45.449931 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.455056, - 45.44954 - ], - [ - -73.454737, - 45.449301 - ], - [ - -73.45446, - 45.449119 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.454351, - 45.448928 - ], - [ - -73.454507, - 45.448806 - ], - [ - -73.454606, - 45.448707 - ], - [ - -73.454897, - 45.448293 - ], - [ - -73.455137, - 45.447929 - ], - [ - -73.455304, - 45.447709 - ], - [ - -73.455416, - 45.447619 - ], - [ - -73.455528, - 45.447551 - ], - [ - -73.455661, - 45.447479 - ], - [ - -73.455871, - 45.447394 - ], - [ - -73.455927, - 45.447371 - ], - [ - -73.456253, - 45.447264 - ], - [ - -73.456885, - 45.447052 - ], - [ - -73.457516, - 45.446841 - ], - [ - -73.457754, - 45.446762 - ], - [ - -73.458009, - 45.446676 - ], - [ - -73.458085, - 45.446651 - ], - [ - -73.458121, - 45.446639 - ], - [ - -73.45823, - 45.446598 - ], - [ - -73.458358, - 45.446536 - ], - [ - -73.458499, - 45.446437 - ], - [ - -73.458716, - 45.446252 - ], - [ - -73.458903, - 45.445978 - ], - [ - -73.459421, - 45.445191 - ], - [ - -73.459486, - 45.445092 - ], - [ - -73.460027, - 45.444237 - ], - [ - -73.460298, - 45.443833 - ], - [ - -73.460454, - 45.443598 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.461184, - 45.442467 - ], - [ - -73.461249, - 45.442366 - ], - [ - -73.461921, - 45.441345 - ], - [ - -73.46199, - 45.441264 - ], - [ - -73.462035, - 45.44122 - ], - [ - -73.462145, - 45.441115 - ], - [ - -73.462213, - 45.441057 - ], - [ - -73.46187, - 45.440814 - ], - [ - -73.461732, - 45.440683 - ], - [ - -73.461128, - 45.439995 - ], - [ - -73.4611, - 45.439963 - ], - [ - -73.460879, - 45.439666 - ], - [ - -73.460804, - 45.439527 - ], - [ - -73.460756, - 45.439374 - ], - [ - -73.460732, - 45.439261 - ], - [ - -73.460748, - 45.439173 - ], - [ - -73.460753, - 45.439144 - ], - [ - -73.460775, - 45.43905 - ], - [ - -73.460824, - 45.438928 - ], - [ - -73.460899, - 45.438784 - ], - [ - -73.461524, - 45.437819 - ], - [ - -73.462043, - 45.437017 - ], - [ - -73.462055, - 45.436998 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.463269, - 45.436949 - ], - [ - -73.464723, - 45.437368 - ], - [ - -73.465091, - 45.437458 - ], - [ - -73.465112, - 45.437462 - ], - [ - -73.4653, - 45.437494 - ], - [ - -73.465515, - 45.437526 - ], - [ - -73.465864, - 45.437562 - ], - [ - -73.467637, - 45.43769 - ], - [ - -73.46781, - 45.437702 - ], - [ - -73.468967, - 45.437779 - ], - [ - -73.470109, - 45.437842 - ], - [ - -73.47029, - 45.437855 - ], - [ - -73.470561, - 45.437874 - ], - [ - -73.470756, - 45.437887 - ], - [ - -73.471663, - 45.437955 - ], - [ - -73.471971, - 45.437978 - ], - [ - -73.472271, - 45.438 - ], - [ - -73.471889, - 45.438574 - ], - [ - -73.471678, - 45.438891 - ], - [ - -73.470362, - 45.44088 - ], - [ - -73.470303, - 45.440969 - ], - [ - -73.470099, - 45.441352 - ], - [ - -73.470027, - 45.441639 - ], - [ - -73.470012, - 45.441666 - ], - [ - -73.469784, - 45.442018 - ], - [ - -73.469477, - 45.442492 - ], - [ - -73.469144, - 45.443007 - ], - [ - -73.469051, - 45.443151 - ], - [ - -73.468613, - 45.443844 - ], - [ - -73.468216, - 45.444456 - ], - [ - -73.468179, - 45.444519 - ], - [ - -73.468126, - 45.444631 - ], - [ - -73.468082, - 45.444748 - ], - [ - -73.468044, - 45.444901 - ], - [ - -73.468021, - 45.445022 - ], - [ - -73.467959, - 45.445234 - ], - [ - -73.467968, - 45.445351 - ], - [ - -73.467947, - 45.445454 - ], - [ - -73.467879, - 45.445603 - ], - [ - -73.467842, - 45.44564 - ], - [ - -73.467743, - 45.445738 - ], - [ - -73.46755, - 45.445972 - ], - [ - -73.467467, - 45.446048 - ], - [ - -73.467388, - 45.446125 - ], - [ - -73.466916, - 45.446619 - ], - [ - -73.466576, - 45.447132 - ], - [ - -73.466314, - 45.447523 - ], - [ - -73.466204, - 45.447915 - ], - [ - -73.466096, - 45.44836 - ], - [ - -73.466078, - 45.448455 - ], - [ - -73.466036, - 45.448538 - ], - [ - -73.466, - 45.448608 - ], - [ - -73.465053, - 45.450083 - ], - [ - -73.464776, - 45.450515 - ], - [ - -73.464689, - 45.45065 - ], - [ - -73.464437, - 45.450996 - ], - [ - -73.464171, - 45.451253 - ], - [ - -73.463607, - 45.451656 - ], - [ - -73.463473, - 45.451752 - ], - [ - -73.462794, - 45.452251 - ], - [ - -73.462647, - 45.452373 - ], - [ - -73.462227, - 45.45284 - ], - [ - -73.462118, - 45.452958 - ], - [ - -73.461995, - 45.453092 - ], - [ - -73.461759, - 45.453345 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.462898, - 45.454213 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463822, - 45.454609 - ], - [ - -73.46487, - 45.455052 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465851, - 45.455474 - ], - [ - -73.466482, - 45.45573 - ], - [ - -73.466742, - 45.45582 - ], - [ - -73.466794, - 45.455838 - ], - [ - -73.466905, - 45.455874 - ], - [ - -73.467229, - 45.455978 - ], - [ - -73.467462, - 45.456041 - ], - [ - -73.467802, - 45.456122 - ], - [ - -73.468113, - 45.456181 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468564, - 45.456262 - ], - [ - -73.468949, - 45.456316 - ], - [ - -73.469418, - 45.456365 - ], - [ - -73.469671, - 45.456392 - ], - [ - -73.470468, - 45.456429 - ], - [ - -73.471559, - 45.45646 - ], - [ - -73.472632, - 45.456497 - ], - [ - -73.473708, - 45.456537 - ], - [ - -73.474773, - 45.456569 - ], - [ - -73.475672, - 45.456588 - ] - ] - }, - "id": 334, - "properties": { - "id": "65edaad3-f17f-4b9b-b4f7-5f9e32ca5591", - "data": { - "gtfs": { - "shape_id": "609_2_R" - }, - "segments": [ - { - "distanceMeters": 376, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 909, - "travelTimeSeconds": 205 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 608, - "travelTimeSeconds": 137 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 82 - }, - { - "distanceMeters": 1753, - "travelTimeSeconds": 227 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 119, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 593, - "travelTimeSeconds": 78 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 210, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13234, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3985.4196725437887, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.3, - "travelTimeWithoutDwellTimesSeconds": 2100, - "operatingTimeWithLayoverTimeSeconds": 2310, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2100, - "operatingSpeedWithLayoverMetersPerSecond": 5.73, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.3 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "517a8299-e807-4040-8ccd-f417dda7338c", - "da4ca96f-4db9-4287-b307-afc6221c923f", - "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", - "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "a90c4da7-455c-41d3-9961-c7a64d627572", - "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", - "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "579043e1-54f7-411f-9a36-e7ee3324290f", - "1758013c-4193-42f0-a495-c36930003f5b", - "51e1600d-418e-4477-9b26-9e5507d72a03", - "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "30d24143-abd0-4a47-955d-cdbc3943ae61", - "47d3a0e8-5db6-4263-911d-0835de2b9cb0", - "c01e4d9c-c5df-425f-9b40-215a62d76b50", - "5781af67-07a2-4732-99f5-af7b2835e18a", - "800b4ca8-f540-48ef-9acf-ec6d45db3496", - "db56dff4-d82c-4b2d-ad34-35b3db3f27de", - "0087674f-0098-4bab-9a77-b31eb3602613", - "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", - "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", - "fd4f887b-9300-41e3-8cc1-44b80109a4ad", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "8b7e764f-0227-410c-89b9-51b9a8ad8c88", - "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", - "57126f14-f5bb-4578-a4ae-48d75eae5e82", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "9b31d865-da9f-4eb8-b8a9-3d488eb579df", - "b93691d0-438e-4eac-87a0-7c1ac45a7c18", - "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", - "19a4f64a-0169-40b9-8b9c-84de3158151e", - "c7e2639a-bb94-426e-918b-714f0212d53b", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", - "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", - "e13d482c-ee57-4f7d-bc38-264ca460deda", - "daacedd2-0b84-4f73-9f01-d9072ec32dce", - "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", - "e7ac28b2-1ac9-4d12-811f-8e49f5a7d7ab", - "27cd912d-c30d-4955-977f-68eb1e010190", - "d300031f-a642-4e09-b48b-0e859400e1f7", - "90d9bb0e-4845-468b-af33-21831922eede", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "981ebecb-3dc2-4439-8648-8052a51df7ec", - "2a268094-fe95-4a75-83da-d02aa638cbb6", - "1782a1a7-eddc-4228-a7a8-bf733f339e68" - ], - "stops": [], - "line_id": "e4a4b657-a352-4726-ac1d-5b2ae996f95c", - "segments": [ - 0, - 13, - 21, - 25, - 34, - 39, - 44, - 83, - 91, - 94, - 107, - 115, - 130, - 193, - 194, - 195, - 199, - 206, - 210, - 219, - 223, - 228, - 231, - 235, - 246, - 251, - 260, - 263, - 266, - 270, - 275, - 281, - 286, - 287, - 293, - 297, - 301, - 305, - 307, - 309, - 316, - 329, - 340, - 343, - 347, - 354, - 357, - 360, - 371 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 334, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.475383, - 45.468739 - ], - [ - -73.475537, - 45.468744 - ], - [ - -73.477762, - 45.468838 - ], - [ - -73.477791, - 45.468839 - ], - [ - -73.478795, - 45.46888 - ], - [ - -73.479733, - 45.468916 - ], - [ - -73.480589, - 45.468948 - ], - [ - -73.480705, - 45.468952 - ], - [ - -73.481592, - 45.468898 - ], - [ - -73.482517, - 45.468777 - ], - [ - -73.483914, - 45.468794 - ], - [ - -73.484035, - 45.468795 - ], - [ - -73.484852, - 45.468827 - ], - [ - -73.484983, - 45.468836 - ], - [ - -73.485068, - 45.468858 - ], - [ - -73.485183, - 45.468899 - ], - [ - -73.485272, - 45.468957 - ], - [ - -73.485494, - 45.469218 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.485925, - 45.469758 - ], - [ - -73.485957, - 45.470015 - ], - [ - -73.485933, - 45.470276 - ], - [ - -73.485863, - 45.471338 - ], - [ - -73.485859, - 45.471396 - ], - [ - -73.485922, - 45.47159 - ], - [ - -73.486077, - 45.471855 - ], - [ - -73.486282, - 45.472161 - ], - [ - -73.486545, - 45.47257 - ], - [ - -73.486649, - 45.472714 - ], - [ - -73.486715, - 45.472804 - ], - [ - -73.486787, - 45.472912 - ], - [ - -73.486941, - 45.472862 - ], - [ - -73.488142, - 45.472472 - ], - [ - -73.488555, - 45.472341 - ], - [ - -73.488966, - 45.472197 - ], - [ - -73.489081, - 45.472161 - ], - [ - -73.489198, - 45.472121 - ], - [ - -73.489607, - 45.471977 - ], - [ - -73.489856, - 45.471867 - ], - [ - -73.490057, - 45.471779 - ], - [ - -73.490233, - 45.471992 - ], - [ - -73.490819, - 45.472701 - ], - [ - -73.491133, - 45.473071 - ], - [ - -73.491514, - 45.47352 - ], - [ - -73.491147, - 45.473678 - ], - [ - -73.490727, - 45.473858 - ], - [ - -73.490172, - 45.474079 - ], - [ - -73.489892, - 45.474191 - ], - [ - -73.489482, - 45.474308 - ], - [ - -73.48921, - 45.474343 - ], - [ - -73.488939, - 45.474348 - ], - [ - -73.488579, - 45.47433 - ], - [ - -73.48828, - 45.474348 - ], - [ - -73.487939, - 45.474393 - ], - [ - -73.487678, - 45.474467 - ], - [ - -73.487656, - 45.474474 - ], - [ - -73.487464, - 45.474541 - ], - [ - -73.487385, - 45.474582 - ], - [ - -73.487244, - 45.47464 - ], - [ - -73.487321, - 45.474735 - ], - [ - -73.487376, - 45.474807 - ], - [ - -73.487428, - 45.474874 - ], - [ - -73.487615, - 45.475158 - ], - [ - -73.487741, - 45.475441 - ], - [ - -73.487791, - 45.475603 - ], - [ - -73.487792, - 45.475608 - ], - [ - -73.487881, - 45.476058 - ], - [ - -73.487976, - 45.47662 - ], - [ - -73.488008, - 45.476755 - ], - [ - -73.488063, - 45.477092 - ], - [ - -73.488079, - 45.477241 - ], - [ - -73.488077, - 45.477259 - ], - [ - -73.488079, - 45.477295 - ], - [ - -73.488061, - 45.477358 - ], - [ - -73.488022, - 45.477403 - ], - [ - -73.48794, - 45.477475 - ], - [ - -73.487785, - 45.477583 - ], - [ - -73.487346, - 45.477872 - ], - [ - -73.487212, - 45.477961 - ], - [ - -73.486606, - 45.478379 - ], - [ - -73.486467, - 45.478469 - ], - [ - -73.486456, - 45.47848 - ], - [ - -73.486363, - 45.478568 - ], - [ - -73.486284, - 45.478752 - ], - [ - -73.48627, - 45.478815 - ], - [ - -73.486253, - 45.478887 - ], - [ - -73.486246, - 45.47895 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486526, - 45.47904 - ], - [ - -73.486789, - 45.47904 - ], - [ - -73.487039, - 45.479049 - ], - [ - -73.487771, - 45.479064 - ], - [ - -73.491329, - 45.479132 - ], - [ - -73.491505, - 45.479136 - ], - [ - -73.491713, - 45.47914 - ], - [ - -73.49213, - 45.479149 - ], - [ - -73.493367, - 45.479162 - ], - [ - -73.49581, - 45.479202 - ], - [ - -73.496137, - 45.479208 - ], - [ - -73.496207, - 45.479208 - ], - [ - -73.496272, - 45.479208 - ], - [ - -73.497101, - 45.479217 - ], - [ - -73.497989, - 45.479231 - ], - [ - -73.498188, - 45.479235 - ], - [ - -73.498413, - 45.479239 - ], - [ - -73.498669, - 45.479235 - ], - [ - -73.498683, - 45.479234 - ], - [ - -73.498818, - 45.47923 - ], - [ - -73.499162, - 45.479257 - ], - [ - -73.49961, - 45.479198 - ], - [ - -73.49984, - 45.479133 - ], - [ - -73.500019, - 45.479082 - ], - [ - -73.500107, - 45.478998 - ], - [ - -73.500272, - 45.479047 - ], - [ - -73.500354, - 45.479074 - ], - [ - -73.500404, - 45.479087 - ], - [ - -73.500422, - 45.479099 - ], - [ - -73.500588, - 45.479205 - ], - [ - -73.501159, - 45.479818 - ], - [ - -73.501455, - 45.480118 - ], - [ - -73.50163, - 45.480263 - ], - [ - -73.501828, - 45.48048 - ], - [ - -73.502022, - 45.480693 - ], - [ - -73.502676, - 45.481412 - ], - [ - -73.502806, - 45.48156 - ], - [ - -73.503272, - 45.482092 - ], - [ - -73.50345, - 45.482308 - ], - [ - -73.503512, - 45.48238 - ], - [ - -73.503554, - 45.482437 - ], - [ - -73.503598, - 45.482497 - ], - [ - -73.504141, - 45.483117 - ], - [ - -73.504614, - 45.483657 - ], - [ - -73.504846, - 45.483915 - ], - [ - -73.504857, - 45.483927 - ], - [ - -73.504919, - 45.48399 - ], - [ - -73.504924, - 45.483995 - ], - [ - -73.505108, - 45.484152 - ], - [ - -73.505242, - 45.484242 - ], - [ - -73.505364, - 45.484314 - ], - [ - -73.505521, - 45.484395 - ], - [ - -73.505663, - 45.484463 - ], - [ - -73.505851, - 45.484535 - ], - [ - -73.505993, - 45.484584 - ], - [ - -73.506624, - 45.484814 - ], - [ - -73.506746, - 45.484863 - ], - [ - -73.506951, - 45.484962 - ], - [ - -73.507115, - 45.485056 - ], - [ - -73.507185, - 45.485097 - ], - [ - -73.507329, - 45.4852 - ], - [ - -73.507431, - 45.485295 - ], - [ - -73.507518, - 45.485367 - ], - [ - -73.50762, - 45.485484 - ], - [ - -73.507754, - 45.485677 - ], - [ - -73.508077, - 45.486145 - ], - [ - -73.508225, - 45.48637 - ], - [ - -73.508351, - 45.486569 - ], - [ - -73.508385, - 45.486622 - ], - [ - -73.508489, - 45.486784 - ], - [ - -73.508543, - 45.486852 - ], - [ - -73.509589, - 45.488365 - ], - [ - -73.509675, - 45.488489 - ], - [ - -73.509764, - 45.488615 - ], - [ - -73.509971, - 45.488912 - ], - [ - -73.510813, - 45.490118 - ], - [ - -73.510823, - 45.490133 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.511224, - 45.490715 - ], - [ - -73.512404, - 45.492412 - ], - [ - -73.51242, - 45.492446 - ], - [ - -73.51245, - 45.492507 - ], - [ - -73.512764, - 45.493074 - ], - [ - -73.512921, - 45.493393 - ], - [ - -73.512971, - 45.493496 - ], - [ - -73.512984, - 45.493515 - ], - [ - -73.513094, - 45.493766 - ], - [ - -73.513261, - 45.494078 - ], - [ - -73.513283, - 45.494149 - ], - [ - -73.513342, - 45.494287 - ], - [ - -73.513459, - 45.494626 - ], - [ - -73.513505, - 45.494783 - ], - [ - -73.513561, - 45.49499 - ], - [ - -73.513604, - 45.495179 - ], - [ - -73.513621, - 45.495251 - ], - [ - -73.513692, - 45.495557 - ], - [ - -73.513768, - 45.4959 - ], - [ - -73.513786, - 45.49598 - ], - [ - -73.51384, - 45.496187 - ], - [ - -73.513899, - 45.496425 - ], - [ - -73.513925, - 45.49652 - ], - [ - -73.513974, - 45.496614 - ], - [ - -73.514009, - 45.496686 - ], - [ - -73.514054, - 45.496749 - ], - [ - -73.514104, - 45.49683 - ], - [ - -73.514166, - 45.496911 - ], - [ - -73.514219, - 45.49697 - ], - [ - -73.514552, - 45.497478 - ], - [ - -73.514769, - 45.497838 - ], - [ - -73.515085, - 45.498391 - ], - [ - -73.51517, - 45.49854 - ], - [ - -73.515554, - 45.499234 - ], - [ - -73.515623, - 45.499359 - ], - [ - -73.515674, - 45.499453 - ], - [ - -73.515873, - 45.499831 - ], - [ - -73.515977, - 45.500074 - ], - [ - -73.516146, - 45.500501 - ], - [ - -73.516373, - 45.50114 - ], - [ - -73.51647, - 45.501401 - ], - [ - -73.51658, - 45.50168 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517553, - 45.504146 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.51744, - 45.505244 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517233, - 45.507268 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517556, - 45.509202 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517799, - 45.511415 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517595, - 45.513228 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518261, - 45.515302 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518968, - 45.516736 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.518554, - 45.516912 - ], - [ - -73.518456, - 45.516887 - ], - [ - -73.518077, - 45.516793 - ], - [ - -73.517978, - 45.516757 - ], - [ - -73.517748, - 45.516674 - ], - [ - -73.517741, - 45.516671 - ], - [ - -73.517498, - 45.516583 - ], - [ - -73.517318, - 45.516518 - ], - [ - -73.51692, - 45.51637 - ], - [ - -73.516876, - 45.516355 - ], - [ - -73.515414, - 45.515844 - ], - [ - -73.514727, - 45.515604 - ], - [ - -73.514563, - 45.515547 - ], - [ - -73.513759, - 45.515273 - ], - [ - -73.512796, - 45.514944 - ], - [ - -73.512165, - 45.514728 - ], - [ - -73.511589, - 45.514536 - ] - ] - }, - "id": 335, - "properties": { - "id": "6064bfa2-3ef7-45b7-b528-61a86fd1a3c1", - "data": { - "gtfs": { - "shape_id": "613_1_A" - }, - "segments": [ - { - "distanceMeters": 186, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 478, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 418, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 406, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 400, - "travelTimeSeconds": 95 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 95 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 97 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 22, - "travelTimeSeconds": 5 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 84, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 45 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9058, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5812.119800044617, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.59, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 5.03, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.59 - }, - "mode": "bus", - "name": "Collèges NDL et Durocher", - "color": "#A32638", - "nodes": [ - "0296a406-079c-41f9-8c5b-0723a0b5f294", - "79c669a1-9060-4e5d-b272-f107884dee00", - "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "3e9388da-8f48-48c6-b6c0-5461e27eb26a", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "7e4b21bb-20d6-4104-9b98-071226922d49", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "c6165892-3719-417f-8d25-92e65471b42c", - "6735199f-47fc-47db-9116-7c110cca8945", - "6e4c328c-6fba-4e81-b589-59318e11a37a", - "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", - "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", - "fc92d5a1-fe31-4274-9837-2686b4525030", - "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", - "6b54424b-6f85-4448-8e7d-a05da4ef5b95", - "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", - "4df7f34c-ec49-4d48-90b3-56f3faffc976", - "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "9f22d75f-cc66-4020-8804-7912f49950d8", - "41d7b6d4-1fe4-44ed-a774-b005607fc59d", - "bc9b9243-e0ec-461a-9898-6eb69ecd511a", - "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "114aaaad-d40e-4930-853f-ef5cebdd299f", - "0b09b82c-ec97-406d-9f1c-690cc935b5ea", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "2259b112-2e60-4bcc-ad14-9e0e577f2909", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "f250cba5-329e-4403-912d-778f924ce25e", - "f250cba5-329e-4403-912d-778f924ce25e", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "f1be4054-f28c-45a4-bc0b-58b82e1e6e83" - ], - "stops": [], - "line_id": "3c0a8fd0-87ee-4bee-8465-a0d907b9e825", - "segments": [ - 0, - 2, - 6, - 10, - 17, - 22, - 28, - 38, - 42, - 46, - 54, - 64, - 77, - 81, - 94, - 98, - 103, - 123, - 129, - 135, - 156, - 160, - 165, - 169, - 185, - 200, - 208, - 222, - 228, - 233, - 239, - 245, - 253, - 260, - 266, - 268, - 273, - 275 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 335, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.513787, - 45.515282 - ], - [ - -73.514563, - 45.515547 - ], - [ - -73.515414, - 45.515844 - ], - [ - -73.516876, - 45.516355 - ], - [ - -73.51692, - 45.51637 - ], - [ - -73.517318, - 45.516518 - ], - [ - -73.517741, - 45.516671 - ], - [ - -73.517978, - 45.516757 - ], - [ - -73.518077, - 45.516793 - ], - [ - -73.518456, - 45.516887 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.518972, - 45.516742 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517545, - 45.50406 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.516768, - 45.502126 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.51647, - 45.501401 - ], - [ - -73.516373, - 45.50114 - ], - [ - -73.516146, - 45.500501 - ], - [ - -73.515977, - 45.500074 - ], - [ - -73.515873, - 45.499831 - ], - [ - -73.515695, - 45.499492 - ], - [ - -73.515674, - 45.499453 - ], - [ - -73.515623, - 45.499359 - ], - [ - -73.51517, - 45.49854 - ], - [ - -73.515085, - 45.498391 - ], - [ - -73.514769, - 45.497838 - ], - [ - -73.514552, - 45.497478 - ], - [ - -73.514219, - 45.49697 - ], - [ - -73.514166, - 45.496911 - ], - [ - -73.514104, - 45.49683 - ], - [ - -73.514054, - 45.496749 - ], - [ - -73.514009, - 45.496686 - ], - [ - -73.513974, - 45.496614 - ], - [ - -73.513925, - 45.49652 - ], - [ - -73.513899, - 45.496425 - ], - [ - -73.51384, - 45.496187 - ], - [ - -73.513786, - 45.49598 - ], - [ - -73.513692, - 45.495557 - ], - [ - -73.513662, - 45.495427 - ], - [ - -73.513621, - 45.495251 - ], - [ - -73.513604, - 45.495179 - ], - [ - -73.513561, - 45.49499 - ], - [ - -73.513505, - 45.494783 - ], - [ - -73.513459, - 45.494626 - ], - [ - -73.513342, - 45.494287 - ], - [ - -73.513283, - 45.494149 - ], - [ - -73.513261, - 45.494078 - ], - [ - -73.513094, - 45.493766 - ], - [ - -73.512984, - 45.493515 - ], - [ - -73.512971, - 45.493496 - ], - [ - -73.512921, - 45.493393 - ], - [ - -73.512764, - 45.493074 - ], - [ - -73.51245, - 45.492507 - ], - [ - -73.512404, - 45.492412 - ], - [ - -73.512397, - 45.492401 - ], - [ - -73.511201, - 45.490682 - ], - [ - -73.510959, - 45.490334 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.510813, - 45.490118 - ], - [ - -73.509971, - 45.488912 - ], - [ - -73.509813, - 45.488686 - ], - [ - -73.509764, - 45.488615 - ], - [ - -73.509675, - 45.488489 - ], - [ - -73.508576, - 45.4869 - ], - [ - -73.508543, - 45.486852 - ], - [ - -73.508489, - 45.486784 - ], - [ - -73.508385, - 45.486622 - ], - [ - -73.508225, - 45.48637 - ], - [ - -73.508077, - 45.486145 - ], - [ - -73.507754, - 45.485677 - ], - [ - -73.50762, - 45.485484 - ], - [ - -73.507518, - 45.485367 - ], - [ - -73.507431, - 45.485295 - ], - [ - -73.507329, - 45.4852 - ], - [ - -73.507185, - 45.485097 - ], - [ - -73.507115, - 45.485056 - ], - [ - -73.506951, - 45.484962 - ], - [ - -73.506746, - 45.484863 - ], - [ - -73.506624, - 45.484814 - ], - [ - -73.505993, - 45.484584 - ], - [ - -73.505851, - 45.484535 - ], - [ - -73.505663, - 45.484463 - ], - [ - -73.505521, - 45.484395 - ], - [ - -73.505364, - 45.484314 - ], - [ - -73.505242, - 45.484242 - ], - [ - -73.505108, - 45.484152 - ], - [ - -73.504924, - 45.483995 - ], - [ - -73.504918, - 45.483988 - ], - [ - -73.504857, - 45.483927 - ], - [ - -73.504846, - 45.483915 - ], - [ - -73.504614, - 45.483657 - ], - [ - -73.504141, - 45.483117 - ], - [ - -73.503667, - 45.482576 - ], - [ - -73.503598, - 45.482497 - ], - [ - -73.503512, - 45.48238 - ], - [ - -73.50345, - 45.482308 - ], - [ - -73.503272, - 45.482092 - ], - [ - -73.502806, - 45.48156 - ], - [ - -73.502676, - 45.481412 - ], - [ - -73.501965, - 45.480631 - ], - [ - -73.501828, - 45.48048 - ], - [ - -73.50163, - 45.480263 - ], - [ - -73.501562, - 45.480174 - ], - [ - -73.501309, - 45.479775 - ], - [ - -73.501238, - 45.479689 - ], - [ - -73.501074, - 45.479488 - ], - [ - -73.500829, - 45.479284 - ], - [ - -73.50074, - 45.479167 - ], - [ - -73.500635, - 45.479076 - ], - [ - -73.500662, - 45.478997 - ], - [ - -73.500703, - 45.478888 - ], - [ - -73.500708, - 45.478848 - ], - [ - -73.500618, - 45.478724 - ], - [ - -73.500601, - 45.478716 - ], - [ - -73.500465, - 45.47866 - ], - [ - -73.500435, - 45.478659 - ], - [ - -73.500337, - 45.478661 - ], - [ - -73.50019, - 45.478724 - ], - [ - -73.500175, - 45.478743 - ], - [ - -73.500117, - 45.478833 - ], - [ - -73.500109, - 45.478859 - ], - [ - -73.500134, - 45.478943 - ], - [ - -73.50015, - 45.47896 - ], - [ - -73.500209, - 45.479027 - ], - [ - -73.500272, - 45.479047 - ], - [ - -73.500354, - 45.479074 - ], - [ - -73.500428, - 45.479084 - ], - [ - -73.500459, - 45.479088 - ], - [ - -73.500565, - 45.479065 - ], - [ - -73.500641, - 45.479027 - ], - [ - -73.500662, - 45.478997 - ], - [ - -73.500703, - 45.478888 - ], - [ - -73.500708, - 45.478848 - ], - [ - -73.500618, - 45.478724 - ], - [ - -73.500601, - 45.478716 - ], - [ - -73.500465, - 45.47866 - ], - [ - -73.500435, - 45.478659 - ], - [ - -73.500337, - 45.478661 - ], - [ - -73.50019, - 45.478724 - ], - [ - -73.500175, - 45.478743 - ], - [ - -73.500117, - 45.478833 - ], - [ - -73.500062, - 45.478934 - ], - [ - -73.499809, - 45.479021 - ], - [ - -73.4995, - 45.479103 - ], - [ - -73.498818, - 45.47923 - ], - [ - -73.498683, - 45.479234 - ], - [ - -73.498669, - 45.479235 - ], - [ - -73.4985, - 45.479238 - ], - [ - -73.498413, - 45.479239 - ], - [ - -73.498188, - 45.479235 - ], - [ - -73.497101, - 45.479217 - ], - [ - -73.49645, - 45.47921 - ], - [ - -73.496272, - 45.479208 - ], - [ - -73.496207, - 45.479208 - ], - [ - -73.496137, - 45.479208 - ], - [ - -73.493367, - 45.479162 - ], - [ - -73.49213, - 45.479149 - ], - [ - -73.491888, - 45.479144 - ], - [ - -73.491713, - 45.47914 - ], - [ - -73.491329, - 45.479132 - ], - [ - -73.487039, - 45.479049 - ], - [ - -73.486789, - 45.47904 - ], - [ - -73.486662, - 45.47904 - ], - [ - -73.486526, - 45.47904 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486426, - 45.478914 - ], - [ - -73.486427, - 45.478891 - ], - [ - -73.486429, - 45.478851 - ], - [ - -73.486457, - 45.478743 - ], - [ - -73.486515, - 45.478644 - ], - [ - -73.486599, - 45.478568 - ], - [ - -73.487334, - 45.478055 - ], - [ - -73.487569, - 45.477901 - ], - [ - -73.487867, - 45.477704 - ], - [ - -73.48804, - 45.477592 - ], - [ - -73.488143, - 45.477497 - ], - [ - -73.488191, - 45.477434 - ], - [ - -73.48823, - 45.477367 - ], - [ - -73.488245, - 45.477317 - ], - [ - -73.488261, - 45.477254 - ], - [ - -73.488221, - 45.47702 - ], - [ - -73.488146, - 45.476629 - ], - [ - -73.488047, - 45.476044 - ], - [ - -73.487985, - 45.475724 - ], - [ - -73.487958, - 45.475585 - ], - [ - -73.487905, - 45.475414 - ], - [ - -73.48781, - 45.475189 - ], - [ - -73.487773, - 45.475113 - ], - [ - -73.487674, - 45.474955 - ], - [ - -73.487579, - 45.474821 - ], - [ - -73.487579, - 45.47482 - ], - [ - -73.487467, - 45.474676 - ], - [ - -73.487385, - 45.474582 - ], - [ - -73.487464, - 45.474541 - ], - [ - -73.487656, - 45.474474 - ], - [ - -73.487939, - 45.474393 - ], - [ - -73.48828, - 45.474348 - ], - [ - -73.488579, - 45.47433 - ], - [ - -73.488939, - 45.474348 - ], - [ - -73.48921, - 45.474343 - ], - [ - -73.489482, - 45.474308 - ], - [ - -73.489786, - 45.474221 - ], - [ - -73.489892, - 45.474191 - ], - [ - -73.490727, - 45.473858 - ], - [ - -73.491385, - 45.473576 - ], - [ - -73.491514, - 45.47352 - ], - [ - -73.491197, - 45.473146 - ], - [ - -73.490819, - 45.472701 - ], - [ - -73.490176, - 45.471923 - ], - [ - -73.490057, - 45.471779 - ], - [ - -73.489969, - 45.471675 - ], - [ - -73.489522, - 45.471873 - ], - [ - -73.489116, - 45.472013 - ], - [ - -73.48901, - 45.472049 - ], - [ - -73.488898, - 45.472089 - ], - [ - -73.488483, - 45.472229 - ], - [ - -73.48807, - 45.472359 - ], - [ - -73.487081, - 45.472684 - ], - [ - -73.486715, - 45.472804 - ], - [ - -73.486545, - 45.47257 - ], - [ - -73.486282, - 45.472161 - ], - [ - -73.486077, - 45.471855 - ], - [ - -73.48603, - 45.471775 - ], - [ - -73.485922, - 45.47159 - ], - [ - -73.485859, - 45.471396 - ], - [ - -73.485933, - 45.470276 - ], - [ - -73.485957, - 45.470015 - ], - [ - -73.485925, - 45.469758 - ], - [ - -73.485646, - 45.469404 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.485272, - 45.468957 - ], - [ - -73.485183, - 45.468899 - ], - [ - -73.485068, - 45.468858 - ], - [ - -73.484983, - 45.468836 - ], - [ - -73.484852, - 45.468827 - ], - [ - -73.484168, - 45.4688 - ], - [ - -73.484035, - 45.468795 - ], - [ - -73.482517, - 45.468777 - ], - [ - -73.481592, - 45.468898 - ], - [ - -73.480831, - 45.468945 - ], - [ - -73.480705, - 45.468952 - ], - [ - -73.479733, - 45.468916 - ], - [ - -73.478795, - 45.46888 - ], - [ - -73.477978, - 45.468847 - ], - [ - -73.477791, - 45.468839 - ], - [ - -73.475537, - 45.468744 - ], - [ - -73.475149, - 45.468731 - ], - [ - -73.474822, - 45.468708 - ], - [ - -73.474819, - 45.468708 - ], - [ - -73.47475, - 45.468669 - ], - [ - -73.47474, - 45.468663 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.473201, - 45.468294 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.471423, - 45.468098 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469574, - 45.467137 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.468577, - 45.467094 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466768 - ] - ] - }, - "id": 336, - "properties": { - "id": "aee1d5c4-3653-4861-8be2-547b7762f5e1", - "data": { - "gtfs": { - "shape_id": "613_2_R" - }, - "segments": [ - { - "distanceMeters": 2163, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 482, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 447, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 582, - "travelTimeSeconds": 98 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 356, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 40 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9941, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5719.201914435239, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.2, - "travelTimeWithoutDwellTimesSeconds": 1380, - "operatingTimeWithLayoverTimeSeconds": 1560, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1380, - "operatingSpeedWithLayoverMetersPerSecond": 6.37, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.2 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "0b09b82c-ec97-406d-9f1c-690cc935b5ea", - "27330ef0-4c59-4e22-a044-51b9d43c9719", - "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "bc9b9243-e0ec-461a-9898-6eb69ecd511a", - "41d7b6d4-1fe4-44ed-a774-b005607fc59d", - "9f22d75f-cc66-4020-8804-7912f49950d8", - "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "4df7f34c-ec49-4d48-90b3-56f3faffc976", - "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", - "6b54424b-6f85-4448-8e7d-a05da4ef5b95", - "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", - "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", - "6e4c328c-6fba-4e81-b589-59318e11a37a", - "6735199f-47fc-47db-9116-7c110cca8945", - "c6165892-3719-417f-8d25-92e65471b42c", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "7e4b21bb-20d6-4104-9b98-071226922d49", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "3acbe4f4-b4c0-469f-af21-f4af3c6e2b53", - "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "79c669a1-9060-4e5d-b272-f107884dee00", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "0efa9d7f-9938-46ee-97f6-a92cc9c04c7d", - "131616ed-8c78-458b-a65e-78f1aeac1fc7" - ], - "stops": [], - "line_id": "3c0a8fd0-87ee-4bee-8465-a0d907b9e825", - "segments": [ - 0, - 55, - 63, - 81, - 97, - 99, - 103, - 106, - 130, - 135, - 142, - 190, - 194, - 200, - 205, - 215, - 226, - 232, - 244, - 247, - 251, - 260, - 265, - 271, - 278, - 282, - 286, - 292, - 301, - 308, - 315 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 336, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.513787, - 45.515282 - ], - [ - -73.514432, - 45.515502 - ], - [ - -73.514563, - 45.515547 - ], - [ - -73.515414, - 45.515844 - ], - [ - -73.516876, - 45.516355 - ], - [ - -73.51692, - 45.51637 - ], - [ - -73.517218, - 45.516481 - ], - [ - -73.517318, - 45.516518 - ], - [ - -73.517741, - 45.516671 - ], - [ - -73.517978, - 45.516757 - ], - [ - -73.518077, - 45.516793 - ], - [ - -73.518456, - 45.516887 - ], - [ - -73.519037, - 45.517035 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.518972, - 45.516742 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518914, - 45.516641 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517657, - 45.513608 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517706, - 45.511764 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.517607, - 45.509402 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517232, - 45.507319 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.51735, - 45.505741 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517545, - 45.50406 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.516768, - 45.502126 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.51647, - 45.501401 - ], - [ - -73.516373, - 45.50114 - ], - [ - -73.516146, - 45.500501 - ], - [ - -73.515977, - 45.500074 - ], - [ - -73.515873, - 45.499831 - ], - [ - -73.515695, - 45.499492 - ], - [ - -73.515674, - 45.499453 - ], - [ - -73.515623, - 45.499359 - ], - [ - -73.51517, - 45.49854 - ], - [ - -73.515085, - 45.498391 - ], - [ - -73.514769, - 45.497838 - ], - [ - -73.514552, - 45.497478 - ], - [ - -73.514219, - 45.49697 - ], - [ - -73.514166, - 45.496911 - ], - [ - -73.514104, - 45.49683 - ], - [ - -73.514054, - 45.496749 - ], - [ - -73.514009, - 45.496686 - ], - [ - -73.513974, - 45.496614 - ], - [ - -73.513925, - 45.49652 - ], - [ - -73.513899, - 45.496425 - ], - [ - -73.51384, - 45.496187 - ], - [ - -73.513786, - 45.49598 - ], - [ - -73.513692, - 45.495557 - ], - [ - -73.513662, - 45.495427 - ], - [ - -73.513621, - 45.495251 - ], - [ - -73.513604, - 45.495179 - ], - [ - -73.513561, - 45.49499 - ], - [ - -73.513505, - 45.494783 - ], - [ - -73.513459, - 45.494626 - ], - [ - -73.513342, - 45.494287 - ], - [ - -73.513283, - 45.494149 - ], - [ - -73.513261, - 45.494078 - ], - [ - -73.513094, - 45.493766 - ], - [ - -73.512984, - 45.493515 - ], - [ - -73.512971, - 45.493496 - ], - [ - -73.512921, - 45.493393 - ], - [ - -73.512764, - 45.493074 - ], - [ - -73.51245, - 45.492507 - ], - [ - -73.512404, - 45.492412 - ], - [ - -73.512397, - 45.492401 - ], - [ - -73.511201, - 45.490682 - ], - [ - -73.510959, - 45.490334 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.510813, - 45.490118 - ], - [ - -73.509971, - 45.488912 - ], - [ - -73.509813, - 45.488686 - ], - [ - -73.509764, - 45.488615 - ], - [ - -73.509675, - 45.488489 - ], - [ - -73.508576, - 45.4869 - ], - [ - -73.508543, - 45.486852 - ], - [ - -73.508489, - 45.486784 - ], - [ - -73.508385, - 45.486622 - ], - [ - -73.508225, - 45.48637 - ], - [ - -73.508077, - 45.486145 - ], - [ - -73.507754, - 45.485677 - ], - [ - -73.50762, - 45.485484 - ], - [ - -73.507518, - 45.485367 - ], - [ - -73.507431, - 45.485295 - ], - [ - -73.507329, - 45.4852 - ], - [ - -73.507185, - 45.485097 - ], - [ - -73.507115, - 45.485056 - ], - [ - -73.506951, - 45.484962 - ], - [ - -73.506746, - 45.484863 - ], - [ - -73.506624, - 45.484814 - ], - [ - -73.505993, - 45.484584 - ], - [ - -73.505851, - 45.484535 - ], - [ - -73.505663, - 45.484463 - ], - [ - -73.505521, - 45.484395 - ], - [ - -73.505364, - 45.484314 - ], - [ - -73.505242, - 45.484242 - ], - [ - -73.505108, - 45.484152 - ], - [ - -73.504924, - 45.483995 - ], - [ - -73.504918, - 45.483988 - ], - [ - -73.504857, - 45.483927 - ], - [ - -73.504846, - 45.483915 - ], - [ - -73.504614, - 45.483657 - ], - [ - -73.504141, - 45.483117 - ], - [ - -73.503667, - 45.482576 - ], - [ - -73.503598, - 45.482497 - ], - [ - -73.503512, - 45.48238 - ], - [ - -73.50345, - 45.482308 - ], - [ - -73.503272, - 45.482092 - ], - [ - -73.502806, - 45.48156 - ], - [ - -73.502676, - 45.481412 - ], - [ - -73.501965, - 45.480631 - ], - [ - -73.501828, - 45.48048 - ], - [ - -73.50163, - 45.480263 - ], - [ - -73.501562, - 45.480174 - ], - [ - -73.501309, - 45.479775 - ], - [ - -73.501238, - 45.479689 - ], - [ - -73.501074, - 45.479488 - ], - [ - -73.500829, - 45.479284 - ], - [ - -73.50074, - 45.479167 - ], - [ - -73.500635, - 45.479076 - ], - [ - -73.500662, - 45.478997 - ], - [ - -73.500703, - 45.478888 - ], - [ - -73.500708, - 45.478848 - ], - [ - -73.500618, - 45.478724 - ], - [ - -73.500601, - 45.478716 - ], - [ - -73.500465, - 45.47866 - ], - [ - -73.500435, - 45.478659 - ], - [ - -73.500337, - 45.478661 - ], - [ - -73.50019, - 45.478724 - ], - [ - -73.500175, - 45.478743 - ], - [ - -73.500117, - 45.478833 - ], - [ - -73.500109, - 45.478859 - ], - [ - -73.500134, - 45.478943 - ], - [ - -73.50015, - 45.47896 - ], - [ - -73.500209, - 45.479027 - ], - [ - -73.500272, - 45.479047 - ], - [ - -73.500354, - 45.479074 - ], - [ - -73.500428, - 45.479084 - ], - [ - -73.500459, - 45.479088 - ], - [ - -73.500565, - 45.479065 - ], - [ - -73.500641, - 45.479027 - ], - [ - -73.500662, - 45.478997 - ], - [ - -73.500703, - 45.478888 - ], - [ - -73.500708, - 45.478848 - ], - [ - -73.500618, - 45.478724 - ], - [ - -73.500601, - 45.478716 - ], - [ - -73.500465, - 45.47866 - ], - [ - -73.500435, - 45.478659 - ], - [ - -73.500337, - 45.478661 - ], - [ - -73.50019, - 45.478724 - ], - [ - -73.500175, - 45.478743 - ], - [ - -73.500117, - 45.478833 - ], - [ - -73.500062, - 45.478934 - ], - [ - -73.499809, - 45.479021 - ], - [ - -73.4995, - 45.479103 - ], - [ - -73.498818, - 45.47923 - ], - [ - -73.498683, - 45.479234 - ], - [ - -73.498669, - 45.479235 - ], - [ - -73.4985, - 45.479238 - ], - [ - -73.498413, - 45.479239 - ], - [ - -73.498188, - 45.479235 - ], - [ - -73.497101, - 45.479217 - ], - [ - -73.49645, - 45.47921 - ], - [ - -73.496272, - 45.479208 - ], - [ - -73.496207, - 45.479208 - ], - [ - -73.496137, - 45.479208 - ], - [ - -73.493367, - 45.479162 - ], - [ - -73.49213, - 45.479149 - ], - [ - -73.491888, - 45.479144 - ], - [ - -73.491713, - 45.47914 - ], - [ - -73.491329, - 45.479132 - ], - [ - -73.487039, - 45.479049 - ], - [ - -73.486789, - 45.47904 - ], - [ - -73.486662, - 45.47904 - ], - [ - -73.486526, - 45.47904 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486426, - 45.478914 - ], - [ - -73.486427, - 45.478891 - ], - [ - -73.486429, - 45.478851 - ], - [ - -73.486457, - 45.478743 - ], - [ - -73.486515, - 45.478644 - ], - [ - -73.486599, - 45.478568 - ], - [ - -73.487334, - 45.478055 - ], - [ - -73.487569, - 45.477901 - ], - [ - -73.487867, - 45.477704 - ], - [ - -73.48804, - 45.477592 - ], - [ - -73.488143, - 45.477497 - ], - [ - -73.488191, - 45.477434 - ], - [ - -73.48823, - 45.477367 - ], - [ - -73.488245, - 45.477317 - ], - [ - -73.488261, - 45.477254 - ], - [ - -73.488221, - 45.47702 - ], - [ - -73.488146, - 45.476629 - ], - [ - -73.488047, - 45.476044 - ], - [ - -73.487985, - 45.475724 - ], - [ - -73.487958, - 45.475585 - ], - [ - -73.487905, - 45.475414 - ], - [ - -73.48781, - 45.475189 - ], - [ - -73.487773, - 45.475113 - ], - [ - -73.487674, - 45.474955 - ], - [ - -73.487579, - 45.474821 - ], - [ - -73.487579, - 45.47482 - ], - [ - -73.487467, - 45.474676 - ], - [ - -73.487385, - 45.474582 - ], - [ - -73.487464, - 45.474541 - ], - [ - -73.487656, - 45.474474 - ], - [ - -73.487939, - 45.474393 - ], - [ - -73.48828, - 45.474348 - ], - [ - -73.488579, - 45.47433 - ], - [ - -73.488939, - 45.474348 - ], - [ - -73.48921, - 45.474343 - ], - [ - -73.489482, - 45.474308 - ], - [ - -73.489786, - 45.474221 - ], - [ - -73.489892, - 45.474191 - ], - [ - -73.490727, - 45.473858 - ], - [ - -73.491385, - 45.473576 - ], - [ - -73.491514, - 45.47352 - ], - [ - -73.491197, - 45.473146 - ], - [ - -73.490819, - 45.472701 - ], - [ - -73.490176, - 45.471923 - ], - [ - -73.490057, - 45.471779 - ], - [ - -73.489969, - 45.471675 - ], - [ - -73.489522, - 45.471873 - ], - [ - -73.489116, - 45.472013 - ], - [ - -73.48901, - 45.472049 - ], - [ - -73.488898, - 45.472089 - ], - [ - -73.488483, - 45.472229 - ], - [ - -73.48807, - 45.472359 - ], - [ - -73.487081, - 45.472684 - ], - [ - -73.486715, - 45.472804 - ], - [ - -73.486545, - 45.47257 - ], - [ - -73.486282, - 45.472161 - ], - [ - -73.486077, - 45.471855 - ], - [ - -73.48603, - 45.471775 - ], - [ - -73.485922, - 45.47159 - ], - [ - -73.485859, - 45.471396 - ], - [ - -73.485933, - 45.470276 - ], - [ - -73.485957, - 45.470015 - ], - [ - -73.485925, - 45.469758 - ], - [ - -73.485646, - 45.469404 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.485272, - 45.468957 - ], - [ - -73.485183, - 45.468899 - ], - [ - -73.485068, - 45.468858 - ], - [ - -73.484983, - 45.468836 - ], - [ - -73.484852, - 45.468827 - ], - [ - -73.484168, - 45.4688 - ], - [ - -73.484035, - 45.468795 - ], - [ - -73.482517, - 45.468777 - ], - [ - -73.481592, - 45.468898 - ], - [ - -73.480831, - 45.468945 - ], - [ - -73.480705, - 45.468952 - ], - [ - -73.479733, - 45.468916 - ], - [ - -73.478795, - 45.46888 - ], - [ - -73.477978, - 45.468847 - ], - [ - -73.477791, - 45.468839 - ], - [ - -73.475537, - 45.468744 - ], - [ - -73.475149, - 45.468731 - ], - [ - -73.474822, - 45.468708 - ], - [ - -73.474819, - 45.468708 - ], - [ - -73.47475, - 45.468669 - ], - [ - -73.47474, - 45.468663 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.473201, - 45.468294 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.471423, - 45.468098 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469574, - 45.467137 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.468577, - 45.467094 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466768 - ] - ] - }, - "id": 337, - "properties": { - "id": "b57b72e7-bf36-45e5-9849-1b7b0336ec66", - "data": { - "gtfs": { - "shape_id": "613_2_R" - }, - "segments": [ - { - "distanceMeters": 56, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 64, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 412, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 482, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 447, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 582, - "travelTimeSeconds": 98 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 356, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 40 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9941, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 6450.8352911251495, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.92, - "travelTimeWithoutDwellTimesSeconds": 1680, - "operatingTimeWithLayoverTimeSeconds": 1860, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1680, - "operatingSpeedWithLayoverMetersPerSecond": 5.34, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.92 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "f250cba5-329e-4403-912d-778f924ce25e", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "0b09b82c-ec97-406d-9f1c-690cc935b5ea", - "27330ef0-4c59-4e22-a044-51b9d43c9719", - "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "bc9b9243-e0ec-461a-9898-6eb69ecd511a", - "41d7b6d4-1fe4-44ed-a774-b005607fc59d", - "9f22d75f-cc66-4020-8804-7912f49950d8", - "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "4df7f34c-ec49-4d48-90b3-56f3faffc976", - "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", - "6b54424b-6f85-4448-8e7d-a05da4ef5b95", - "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", - "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", - "6e4c328c-6fba-4e81-b589-59318e11a37a", - "6735199f-47fc-47db-9116-7c110cca8945", - "c6165892-3719-417f-8d25-92e65471b42c", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "7e4b21bb-20d6-4104-9b98-071226922d49", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "3acbe4f4-b4c0-469f-af21-f4af3c6e2b53", - "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "79c669a1-9060-4e5d-b272-f107884dee00", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "0efa9d7f-9938-46ee-97f6-a92cc9c04c7d", - "131616ed-8c78-458b-a65e-78f1aeac1fc7" - ], - "stops": [], - "line_id": "3c0a8fd0-87ee-4bee-8465-a0d907b9e825", - "segments": [ - 0, - 1, - 6, - 12, - 16, - 27, - 33, - 40, - 46, - 51, - 64, - 72, - 90, - 106, - 108, - 112, - 115, - 139, - 144, - 151, - 199, - 203, - 209, - 214, - 224, - 235, - 241, - 253, - 256, - 260, - 269, - 274, - 280, - 287, - 291, - 295, - 301, - 310, - 317, - 324 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 337, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.517735, - 45.516669 - ], - [ - -73.517495, - 45.516583 - ], - [ - -73.517318, - 45.516518 - ], - [ - -73.51692, - 45.51637 - ], - [ - -73.516876, - 45.516355 - ], - [ - -73.515414, - 45.515844 - ], - [ - -73.514724, - 45.515603 - ], - [ - -73.514563, - 45.515547 - ], - [ - -73.514692, - 45.515374 - ], - [ - -73.51474, - 45.515308 - ], - [ - -73.51499, - 45.51498 - ], - [ - -73.515208, - 45.514692 - ], - [ - -73.515467, - 45.514337 - ], - [ - -73.515566, - 45.514206 - ], - [ - -73.515671, - 45.514071 - ], - [ - -73.516146, - 45.51425 - ], - [ - -73.516645, - 45.514438 - ], - [ - -73.516734, - 45.514471 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.518009, - 45.514644 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517656, - 45.513606 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517707, - 45.511762 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.517607, - 45.509399 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517232, - 45.507316 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.51735, - 45.505736 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517545, - 45.504708 - ], - [ - -73.517624, - 45.504735 - ], - [ - -73.517927, - 45.504848 - ], - [ - -73.518275, - 45.504978 - ], - [ - -73.518448, - 45.505027 - ], - [ - -73.518565, - 45.505054 - ], - [ - -73.518612, - 45.505059 - ], - [ - -73.518688, - 45.505063 - ], - [ - -73.518724, - 45.505059 - ], - [ - -73.518804, - 45.505054 - ], - [ - -73.519306, - 45.504964 - ], - [ - -73.519143, - 45.504742 - ], - [ - -73.518589, - 45.503983 - ], - [ - -73.517824, - 45.502971 - ], - [ - -73.517656, - 45.502728 - ], - [ - -73.51758, - 45.502602 - ], - [ - -73.517384, - 45.502224 - ], - [ - -73.517279, - 45.50199 - ], - [ - -73.516505, - 45.500249 - ], - [ - -73.516141, - 45.499372 - ], - [ - -73.515797, - 45.498666 - ], - [ - -73.515557, - 45.498211 - ], - [ - -73.51531, - 45.49777 - ], - [ - -73.514841, - 45.496875 - ], - [ - -73.51473, - 45.496655 - ], - [ - -73.514567, - 45.49629 - ], - [ - -73.514302, - 45.495593 - ], - [ - -73.513809, - 45.494225 - ], - [ - -73.513621, - 45.493721 - ], - [ - -73.513407, - 45.493145 - ], - [ - -73.5133, - 45.492903 - ], - [ - -73.51308, - 45.492502 - ], - [ - -73.51286, - 45.492156 - ], - [ - -73.511495, - 45.490203 - ], - [ - -73.511236, - 45.489825 - ], - [ - -73.511116, - 45.489632 - ], - [ - -73.510976, - 45.489447 - ], - [ - -73.510614, - 45.488876 - ], - [ - -73.510385, - 45.488494 - ], - [ - -73.510073, - 45.487927 - ], - [ - -73.50999, - 45.487756 - ], - [ - -73.509875, - 45.487535 - ], - [ - -73.509493, - 45.486739 - ], - [ - -73.509244, - 45.486118 - ], - [ - -73.509089, - 45.4857 - ], - [ - -73.508873, - 45.485047 - ], - [ - -73.508687, - 45.484395 - ], - [ - -73.508246, - 45.482663 - ], - [ - -73.508076, - 45.482055 - ], - [ - -73.508003, - 45.481848 - ], - [ - -73.507918, - 45.481646 - ], - [ - -73.507721, - 45.48125 - ], - [ - -73.507674, - 45.481165 - ], - [ - -73.507613, - 45.481066 - ], - [ - -73.507347, - 45.480701 - ], - [ - -73.50705, - 45.48035 - ], - [ - -73.506701, - 45.479999 - ], - [ - -73.506328, - 45.479689 - ], - [ - -73.505671, - 45.47923 - ], - [ - -73.50361, - 45.477871 - ], - [ - -73.502677, - 45.477264 - ], - [ - -73.502438, - 45.477102 - ], - [ - -73.500934, - 45.476112 - ], - [ - -73.500318, - 45.475613 - ], - [ - -73.499835, - 45.475253 - ], - [ - -73.499539, - 45.475014 - ], - [ - -73.499134, - 45.474659 - ], - [ - -73.498747, - 45.474299 - ], - [ - -73.498386, - 45.47393 - ], - [ - -73.498219, - 45.473741 - ], - [ - -73.498167, - 45.473683 - ], - [ - -73.49797, - 45.473435 - ], - [ - -73.497878, - 45.473309 - ], - [ - -73.497713, - 45.473057 - ], - [ - -73.497572, - 45.47281 - ], - [ - -73.497162, - 45.472027 - ], - [ - -73.496825, - 45.471419 - ], - [ - -73.496018, - 45.469957 - ], - [ - -73.495641, - 45.469215 - ], - [ - -73.495398, - 45.468643 - ], - [ - -73.495188, - 45.46809 - ], - [ - -73.494985, - 45.467532 - ], - [ - -73.494442, - 45.46593 - ], - [ - -73.494139, - 45.465053 - ], - [ - -73.494127, - 45.465021 - ], - [ - -73.493678, - 45.463735 - ], - [ - -73.493659, - 45.463676 - ], - [ - -73.493494, - 45.463181 - ], - [ - -73.493471, - 45.4631 - ], - [ - -73.493398, - 45.46278 - ], - [ - -73.493387, - 45.462702 - ], - [ - -73.493348, - 45.462495 - ], - [ - -73.493265, - 45.461696 - ], - [ - -73.49322, - 45.460923 - ], - [ - -73.493225, - 45.459757 - ], - [ - -73.493227, - 45.459429 - ], - [ - -73.493227, - 45.45939 - ], - [ - -73.493227, - 45.459163 - ], - [ - -73.493176, - 45.458389 - ], - [ - -73.49313, - 45.457634 - ], - [ - -73.493082, - 45.457085 - ], - [ - -73.493073, - 45.457004 - ], - [ - -73.492597, - 45.457018 - ], - [ - -73.492328, - 45.457023 - ], - [ - -73.492185, - 45.457026 - ], - [ - -73.492061, - 45.457031 - ], - [ - -73.491825, - 45.457026 - ], - [ - -73.491366, - 45.457004 - ], - [ - -73.490908, - 45.456984 - ], - [ - -73.490025, - 45.456946 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.488779, - 45.456899 - ], - [ - -73.488212, - 45.456877 - ], - [ - -73.486545, - 45.45682 - ], - [ - -73.486364, - 45.456814 - ], - [ - -73.485148, - 45.456777 - ], - [ - -73.483698, - 45.456733 - ], - [ - -73.482922, - 45.456699 - ], - [ - -73.482756, - 45.456692 - ], - [ - -73.480029, - 45.456617 - ], - [ - -73.479792, - 45.456611 - ], - [ - -73.479622, - 45.456606 - ], - [ - -73.479632, - 45.456719 - ], - [ - -73.47968, - 45.457236 - ], - [ - -73.479701, - 45.457465 - ], - [ - -73.47972, - 45.457668 - ], - [ - -73.479747, - 45.458082 - ], - [ - -73.479754, - 45.45832 - ], - [ - -73.479732, - 45.458469 - ], - [ - -73.479695, - 45.458689 - ], - [ - -73.479603, - 45.459 - ], - [ - -73.479545, - 45.459171 - ], - [ - -73.479521, - 45.459223 - ], - [ - -73.479465, - 45.459342 - ], - [ - -73.479339, - 45.459576 - ], - [ - -73.479253, - 45.45972 - ], - [ - -73.479162, - 45.45985 - ], - [ - -73.478872, - 45.460205 - ], - [ - -73.478751, - 45.460331 - ], - [ - -73.478336, - 45.460689 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.47855, - 45.461011 - ], - [ - -73.478678, - 45.461105 - ], - [ - -73.478837, - 45.461293 - ], - [ - -73.478983, - 45.461465 - ], - [ - -73.479274, - 45.461807 - ], - [ - -73.479705, - 45.462322 - ], - [ - -73.480306, - 45.46304 - ], - [ - -73.480932, - 45.463792 - ], - [ - -73.48135, - 45.464292 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.480952, - 45.464593 - ], - [ - -73.480652, - 45.464687 - ], - [ - -73.480572, - 45.464706 - ], - [ - -73.480287, - 45.464772 - ], - [ - -73.479951, - 45.464831 - ], - [ - -73.479651, - 45.464862 - ], - [ - -73.479281, - 45.464889 - ], - [ - -73.478969, - 45.464889 - ], - [ - -73.478742, - 45.464881 - ], - [ - -73.478688, - 45.464879 - ], - [ - -73.476229, - 45.46479 - ], - [ - -73.475061, - 45.464753 - ], - [ - -73.474661, - 45.464744 - ], - [ - -73.474508, - 45.464734 - ], - [ - -73.474301, - 45.464724 - ], - [ - -73.474168, - 45.464717 - ], - [ - -73.473949, - 45.464699 - ], - [ - -73.473705, - 45.464641 - ], - [ - -73.473499, - 45.464573 - ], - [ - -73.473207, - 45.464434 - ], - [ - -73.473036, - 45.464325 - ], - [ - -73.472811, - 45.464181 - ], - [ - -73.472107, - 45.4637 - ], - [ - -73.471841, - 45.463592 - ], - [ - -73.471697, - 45.46357 - ], - [ - -73.471666, - 45.463565 - ], - [ - -73.471494, - 45.463556 - ], - [ - -73.471257, - 45.463547 - ], - [ - -73.470687, - 45.463533 - ], - [ - -73.469188, - 45.463482 - ], - [ - -73.468972, - 45.463474 - ], - [ - -73.468884, - 45.463461 - ], - [ - -73.468833, - 45.46342 - ], - [ - -73.468836, - 45.463308 - ], - [ - -73.468837, - 45.463254 - ], - [ - -73.468876, - 45.462738 - ], - [ - -73.46897, - 45.46149 - ], - [ - -73.46901, - 45.460865 - ], - [ - -73.469028, - 45.460628 - ], - [ - -73.469045, - 45.460397 - ], - [ - -73.469046, - 45.459978 - ], - [ - -73.46901, - 45.459861 - ], - [ - -73.468938, - 45.459704 - ], - [ - -73.468742, - 45.459506 - ], - [ - -73.468425, - 45.459258 - ], - [ - -73.468212, - 45.459096 - ], - [ - -73.468172, - 45.459054 - ], - [ - -73.468056, - 45.45893 - ], - [ - -73.467979, - 45.458754 - ], - [ - -73.467956, - 45.458669 - ], - [ - -73.467971, - 45.458525 - ], - [ - -73.467975, - 45.458309 - ], - [ - -73.467992, - 45.458217 - ], - [ - -73.468021, - 45.458057 - ], - [ - -73.468109, - 45.457211 - ], - [ - -73.468145, - 45.457018 - ], - [ - -73.468147, - 45.457005 - ], - [ - -73.468158, - 45.456945 - ], - [ - -73.468339, - 45.456413 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468443, - 45.456109 - ], - [ - -73.467856, - 45.455996 - ], - [ - -73.467649, - 45.455948 - ], - [ - -73.467523, - 45.455919 - ], - [ - -73.467299, - 45.455861 - ], - [ - -73.466983, - 45.455757 - ], - [ - -73.466899, - 45.455728 - ], - [ - -73.466828, - 45.455703 - ], - [ - -73.466327, - 45.455504 - ], - [ - -73.466093, - 45.45541 - ], - [ - -73.465683, - 45.455224 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.463912, - 45.454506 - ], - [ - -73.463601, - 45.454377 - ], - [ - -73.463314, - 45.454258 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.461806, - 45.453577 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.459815, - 45.452691 - ], - [ - -73.459195, - 45.452403 - ], - [ - -73.45904, - 45.452331 - ], - [ - -73.458688, - 45.452137 - ], - [ - -73.458046, - 45.451791 - ], - [ - -73.457687, - 45.451583 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457438, - 45.451421 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.456651, - 45.452055 - ] - ] - }, - "id": 338, - "properties": { - "id": "ccb6b0ed-c7fe-4896-9cec-10aecee50a1a", - "data": { - "gtfs": { - "shape_id": "614_2_R" - }, - "segments": [ - { - "distanceMeters": 21, - "travelTimeSeconds": 6 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 577, - "travelTimeSeconds": 181 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 5844, - "travelTimeSeconds": 883 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 69, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 102, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 87, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 347, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 111, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 69, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 19 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 222, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 12838, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 8620.03119725235, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.78, - "travelTimeWithoutDwellTimesSeconds": 2220, - "operatingTimeWithLayoverTimeSeconds": 2442, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2220, - "operatingSpeedWithLayoverMetersPerSecond": 5.26, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.78 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "f250cba5-329e-4403-912d-778f924ce25e", - "f250cba5-329e-4403-912d-778f924ce25e", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "f5036251-0211-4905-a979-2d3d0f8db7ed", - "16a4cfe7-4b02-454a-8a07-9501f3c5e0c5", - "117181e4-9af2-4572-89ec-28895ad235ae", - "984def83-5f59-45f7-bb33-ed1dbca30502", - "1d56d4cb-0ab2-44f2-924d-aa119de8c362", - "ecb00316-793a-4c41-88bd-3870bea4d999", - "9c3366b7-c832-4b7b-8636-18bed8c1e2de", - "9a86a407-515f-4b5e-8a56-9a4c52c91c96", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "003bcf5e-54a8-471f-b008-b7fa64ff94ba", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "eee98f97-7434-4d16-88a6-93a424bc6846", - "4bbdfb79-c7dc-46c0-893b-48e38ccd2db0", - "70ace55a-2f3c-410b-8740-bea06ecb9924", - "71ffac32-604a-4260-b51e-c427856a20c4", - "f872f4da-bae9-485b-a2fb-ae01787389fc", - "f045bfca-885e-4fa6-be24-3e8f1855457a", - "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", - "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", - "ca62a640-5508-4ced-94a0-1f22107c57c9", - "ca62a640-5508-4ced-94a0-1f22107c57c9", - "8443a69f-fccf-4a19-8d08-6da77269e686", - "2946050b-73ca-45c7-be10-f80ba5b43ab5", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "ab493a3c-1217-4122-93b5-217f7741b2ea", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804" - ], - "stops": [], - "line_id": "70bfeebb-26a4-449d-89bd-dc842f377c6c", - "segments": [ - 0, - 1, - 6, - 22, - 28, - 35, - 41, - 46, - 146, - 153, - 158, - 159, - 163, - 167, - 169, - 173, - 182, - 189, - 194, - 197, - 200, - 210, - 216, - 222, - 226, - 231, - 240, - 248, - 254, - 257, - 260, - 270, - 277, - 280, - 283, - 287 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 338, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.489818, - 45.512425 - ], - [ - -73.489247, - 45.51224 - ], - [ - -73.489123, - 45.5122 - ], - [ - -73.486295, - 45.511274 - ], - [ - -73.486057, - 45.511196 - ], - [ - -73.482934, - 45.510206 - ], - [ - -73.482887, - 45.510277 - ], - [ - -73.482482, - 45.510894 - ], - [ - -73.482007, - 45.511596 - ], - [ - -73.481659, - 45.512142 - ], - [ - -73.48158, - 45.512266 - ], - [ - -73.481183, - 45.51286 - ], - [ - -73.480831, - 45.513389 - ], - [ - -73.480785, - 45.513459 - ], - [ - -73.480359, - 45.514111 - ], - [ - -73.479976, - 45.514697 - ], - [ - -73.479924, - 45.514777 - ], - [ - -73.479817, - 45.515002 - ], - [ - -73.479797, - 45.515146 - ], - [ - -73.479857, - 45.515614 - ], - [ - -73.479528, - 45.516065 - ], - [ - -73.479464, - 45.516153 - ], - [ - -73.479072, - 45.516698 - ], - [ - -73.478751, - 45.51714 - ], - [ - -73.478676, - 45.517242 - ], - [ - -73.478269, - 45.517795 - ], - [ - -73.477677, - 45.518612 - ], - [ - -73.477613, - 45.5187 - ], - [ - -73.477254, - 45.51923 - ], - [ - -73.476906, - 45.519699 - ], - [ - -73.47683, - 45.519802 - ], - [ - -73.476473, - 45.520306 - ], - [ - -73.476161, - 45.520734 - ], - [ - -73.476081, - 45.520845 - ], - [ - -73.475434, - 45.521732 - ], - [ - -73.475294, - 45.521907 - ], - [ - -73.474999, - 45.522337 - ], - [ - -73.474964, - 45.522388 - ], - [ - -73.474526, - 45.522973 - ], - [ - -73.474023, - 45.523693 - ], - [ - -73.473889, - 45.523877 - ], - [ - -73.473762, - 45.524053 - ], - [ - -73.473573, - 45.524314 - ], - [ - -73.473363, - 45.524597 - ], - [ - -73.472906, - 45.525231 - ], - [ - -73.472624, - 45.525623 - ], - [ - -73.473054, - 45.525801 - ], - [ - -73.473275, - 45.525893 - ], - [ - -73.473987, - 45.52619 - ], - [ - -73.474447, - 45.526379 - ], - [ - -73.474646, - 45.526461 - ], - [ - -73.474731, - 45.526496 - ], - [ - -73.474569, - 45.526796 - ], - [ - -73.473648, - 45.528499 - ], - [ - -73.4736, - 45.528588 - ], - [ - -73.472506, - 45.530638 - ], - [ - -73.47246, - 45.530725 - ], - [ - -73.471365, - 45.532757 - ], - [ - -73.471309, - 45.532862 - ], - [ - -73.470217, - 45.534884 - ], - [ - -73.470214, - 45.534891 - ], - [ - -73.470158, - 45.534994 - ], - [ - -73.469177, - 45.536809 - ], - [ - -73.469167, - 45.536827 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.468965, - 45.537225 - ], - [ - -73.468894, - 45.537383 - ], - [ - -73.468821, - 45.537568 - ], - [ - -73.468811, - 45.537594 - ], - [ - -73.468727, - 45.537968 - ], - [ - -73.468709, - 45.538089 - ], - [ - -73.468533, - 45.538881 - ], - [ - -73.468316, - 45.539859 - ], - [ - -73.468315, - 45.539866 - ], - [ - -73.468289, - 45.539983 - ], - [ - -73.468097, - 45.539977 - ], - [ - -73.467958, - 45.539975 - ], - [ - -73.467889, - 45.539974 - ], - [ - -73.467676, - 45.539978 - ], - [ - -73.467668, - 45.539978 - ], - [ - -73.467407, - 45.539989 - ], - [ - -73.467341, - 45.540003 - ], - [ - -73.467302, - 45.540031 - ], - [ - -73.466892, - 45.540019 - ], - [ - -73.466727, - 45.539999 - ], - [ - -73.466559, - 45.539965 - ], - [ - -73.466407, - 45.539932 - ], - [ - -73.466227, - 45.539907 - ], - [ - -73.466142, - 45.539902 - ], - [ - -73.466115, - 45.539901 - ], - [ - -73.46602, - 45.539896 - ], - [ - -73.465942, - 45.539897 - ], - [ - -73.465848, - 45.539899 - ], - [ - -73.465709, - 45.539906 - ], - [ - -73.4656, - 45.539921 - ], - [ - -73.465482, - 45.539933 - ], - [ - -73.465335, - 45.539946 - ], - [ - -73.465216, - 45.539952 - ], - [ - -73.465098, - 45.539953 - ], - [ - -73.464951, - 45.539943 - ], - [ - -73.464825, - 45.539928 - ], - [ - -73.464679, - 45.539901 - ], - [ - -73.464558, - 45.53987 - ], - [ - -73.464497, - 45.539849 - ], - [ - -73.464445, - 45.539835 - ], - [ - -73.464385, - 45.539815 - ], - [ - -73.464334, - 45.539792 - ], - [ - -73.464269, - 45.539763 - ], - [ - -73.464231, - 45.539745 - ], - [ - -73.46418, - 45.539719 - ], - [ - -73.46414, - 45.539697 - ], - [ - -73.464104, - 45.539676 - ], - [ - -73.464064, - 45.539651 - ], - [ - -73.464033, - 45.539628 - ], - [ - -73.464022, - 45.53962 - ], - [ - -73.463967, - 45.539581 - ], - [ - -73.463917, - 45.539539 - ], - [ - -73.463869, - 45.5395 - ], - [ - -73.463819, - 45.53946 - ], - [ - -73.463797, - 45.539442 - ], - [ - -73.463513, - 45.539212 - ], - [ - -73.463464, - 45.539174 - ], - [ - -73.463271, - 45.539023 - ], - [ - -73.463118, - 45.538911 - ], - [ - -73.462874, - 45.538753 - ], - [ - -73.462697, - 45.53865 - ], - [ - -73.462534, - 45.538551 - ], - [ - -73.462187, - 45.53833 - ], - [ - -73.461989, - 45.538189 - ], - [ - -73.461864, - 45.5381 - ], - [ - -73.462077, - 45.537938 - ], - [ - -73.462556, - 45.537575 - ], - [ - -73.462834, - 45.537383 - ], - [ - -73.462922, - 45.537322 - ], - [ - -73.463661, - 45.536866 - ], - [ - -73.464142, - 45.536599 - ] - ] - }, - "id": 339, - "properties": { - "id": "eb23ef11-e367-46b5-8cec-1f39e3bacb2f", - "data": { - "gtfs": { - "shape_id": "616_2_R" - }, - "segments": [ - { - "distanceMeters": 49, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 525, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 18, - "travelTimeSeconds": 3 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 89, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 38 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5099, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3348.785103142474, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.07, - "travelTimeWithoutDwellTimesSeconds": 840, - "operatingTimeWithLayoverTimeSeconds": 1020, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 840, - "operatingSpeedWithLayoverMetersPerSecond": 5, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.07 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "229965c6-9bf9-414c-9970-4f7b1b31441b", - "229965c6-9bf9-414c-9970-4f7b1b31441b", - "6ab67241-b06e-417b-b6fb-88a16df29924", - "e1825eb4-cef2-4f98-872f-0d169be63859", - "65d27cdb-34eb-4bce-af66-d925b6cbeb28", - "d3bdcdd3-55f8-4e08-a7fc-b8e6dbef8ce7", - "6519add4-6360-4c95-9945-0c2d867f68d6", - "40cc5489-ce8f-4df1-916b-c682450d39d7", - "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", - "242c7269-ce0d-45c7-8356-927308e89900", - "bad427d3-2698-4efd-8d52-2bc92f049d64", - "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", - "75f82802-187b-4386-b435-5da7ab066898", - "471a40a2-ebb0-4658-a772-8036d064636d", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "e709ab81-b01c-47b3-a19c-63757b8320b0", - "eba98b16-12e9-4172-bbf2-62d1e69950a5", - "c2c8c1e8-4373-4b59-91c6-b04f7c4c1d76", - "523fb848-4048-4ab2-8e1c-32aab05ea63f", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "7173d99c-f55d-41f4-8d2d-0266835b40ee", - "248781a4-a949-4c45-bc5a-1de80211510e", - "8e9d3a93-2217-4362-8631-6cc69bd428bc", - "497c7cbc-7c2a-4684-ae90-71dc2a66863f", - "a392bf4c-9790-451e-a9bc-51428fa10a69", - "faaa7c6f-4c6c-443c-99d4-d4c617571545" - ], - "stops": [], - "line_id": "96f6f53d-fc88-4ddb-818e-cf6c3484a1f9", - "segments": [ - 0, - 1, - 3, - 9, - 12, - 15, - 20, - 23, - 26, - 29, - 32, - 36, - 40, - 44, - 49, - 50, - 53, - 55, - 57, - 59, - 62, - 68, - 73, - 92, - 115, - 129 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 339, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469004, - 45.466768 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.467433, - 45.466676 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467569, - 45.46701 - ], - [ - -73.467704, - 45.467049 - ], - [ - -73.467839, - 45.467063 - ], - [ - -73.468862, - 45.467106 - ], - [ - -73.469426, - 45.467129 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469327, - 45.468092 - ], - [ - -73.469492, - 45.4681 - ], - [ - -73.470299, - 45.468145 - ], - [ - -73.471063, - 45.468181 - ], - [ - -73.471238, - 45.46819 - ], - [ - -73.471526, - 45.468208 - ], - [ - -73.472194, - 45.468244 - ], - [ - -73.472443, - 45.468255 - ], - [ - -73.472597, - 45.468262 - ], - [ - -73.472728, - 45.468276 - ], - [ - -73.472834, - 45.468294 - ], - [ - -73.472877, - 45.468307 - ], - [ - -73.473025, - 45.468348 - ], - [ - -73.473214, - 45.468424 - ], - [ - -73.473672, - 45.468604 - ], - [ - -73.473673, - 45.468604 - ], - [ - -73.473905, - 45.468649 - ], - [ - -73.474077, - 45.468676 - ], - [ - -73.474259, - 45.46869 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474718, - 45.468735 - ], - [ - -73.474819, - 45.468708 - ], - [ - -73.474822, - 45.468708 - ], - [ - -73.475149, - 45.468731 - ], - [ - -73.475387, - 45.468739 - ], - [ - -73.475537, - 45.468744 - ], - [ - -73.477766, - 45.468838 - ], - [ - -73.477791, - 45.468839 - ], - [ - -73.478795, - 45.46888 - ], - [ - -73.479733, - 45.468916 - ], - [ - -73.480593, - 45.468948 - ], - [ - -73.480705, - 45.468952 - ], - [ - -73.481592, - 45.468898 - ], - [ - -73.482517, - 45.468777 - ], - [ - -73.48393, - 45.468794 - ], - [ - -73.484035, - 45.468795 - ], - [ - -73.484852, - 45.468827 - ], - [ - -73.484983, - 45.468836 - ], - [ - -73.485068, - 45.468858 - ], - [ - -73.485183, - 45.468899 - ], - [ - -73.485272, - 45.468957 - ], - [ - -73.485502, - 45.469227 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.485925, - 45.469758 - ], - [ - -73.485957, - 45.470015 - ], - [ - -73.485933, - 45.470276 - ], - [ - -73.485862, - 45.471349 - ], - [ - -73.485859, - 45.471396 - ], - [ - -73.485922, - 45.47159 - ], - [ - -73.486077, - 45.471855 - ], - [ - -73.486282, - 45.472161 - ], - [ - -73.486545, - 45.47257 - ], - [ - -73.486656, - 45.472723 - ], - [ - -73.486715, - 45.472804 - ], - [ - -73.486787, - 45.472912 - ], - [ - -73.486906, - 45.472874 - ], - [ - -73.488142, - 45.472472 - ], - [ - -73.488555, - 45.472341 - ], - [ - -73.488966, - 45.472197 - ], - [ - -73.489081, - 45.472161 - ], - [ - -73.489198, - 45.472121 - ], - [ - -73.489607, - 45.471977 - ], - [ - -73.489868, - 45.471862 - ], - [ - -73.490057, - 45.471779 - ], - [ - -73.490819, - 45.472701 - ], - [ - -73.49114, - 45.473079 - ], - [ - -73.491508, - 45.473513 - ], - [ - -73.491514, - 45.47352 - ], - [ - -73.490727, - 45.473858 - ], - [ - -73.49016, - 45.474084 - ], - [ - -73.489892, - 45.474191 - ], - [ - -73.489482, - 45.474308 - ], - [ - -73.48921, - 45.474343 - ], - [ - -73.488939, - 45.474348 - ], - [ - -73.488579, - 45.47433 - ], - [ - -73.48828, - 45.474348 - ], - [ - -73.487939, - 45.474393 - ], - [ - -73.487667, - 45.474471 - ], - [ - -73.487656, - 45.474474 - ], - [ - -73.487464, - 45.474541 - ], - [ - -73.487385, - 45.474582 - ], - [ - -73.487244, - 45.47464 - ], - [ - -73.487321, - 45.474735 - ], - [ - -73.487428, - 45.474874 - ], - [ - -73.487615, - 45.475158 - ], - [ - -73.487741, - 45.475441 - ], - [ - -73.487791, - 45.475603 - ], - [ - -73.487792, - 45.475608 - ], - [ - -73.487881, - 45.476058 - ], - [ - -73.487976, - 45.47662 - ], - [ - -73.488008, - 45.476755 - ], - [ - -73.488063, - 45.477092 - ], - [ - -73.488079, - 45.477241 - ], - [ - -73.488077, - 45.477259 - ], - [ - -73.488079, - 45.477295 - ], - [ - -73.488061, - 45.477358 - ], - [ - -73.488022, - 45.477403 - ], - [ - -73.48794, - 45.477475 - ], - [ - -73.487785, - 45.477583 - ], - [ - -73.487338, - 45.477878 - ], - [ - -73.487212, - 45.477961 - ], - [ - -73.486606, - 45.478379 - ], - [ - -73.486467, - 45.478469 - ], - [ - -73.486449, - 45.478486 - ], - [ - -73.486363, - 45.478568 - ], - [ - -73.486284, - 45.478752 - ], - [ - -73.48627, - 45.478815 - ], - [ - -73.486253, - 45.478887 - ], - [ - -73.486246, - 45.47895 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486526, - 45.47904 - ], - [ - -73.486789, - 45.47904 - ], - [ - -73.487039, - 45.479049 - ], - [ - -73.487771, - 45.479064 - ], - [ - -73.491329, - 45.479132 - ], - [ - -73.491516, - 45.479136 - ], - [ - -73.491713, - 45.47914 - ], - [ - -73.49213, - 45.479149 - ], - [ - -73.493367, - 45.479162 - ], - [ - -73.49582, - 45.479202 - ], - [ - -73.496137, - 45.479208 - ], - [ - -73.496207, - 45.479208 - ], - [ - -73.496272, - 45.479208 - ], - [ - -73.497101, - 45.479217 - ], - [ - -73.497998, - 45.479231 - ], - [ - -73.498188, - 45.479235 - ], - [ - -73.498413, - 45.479239 - ], - [ - -73.498669, - 45.479235 - ], - [ - -73.498683, - 45.479234 - ], - [ - -73.498818, - 45.47923 - ], - [ - -73.499162, - 45.479257 - ], - [ - -73.49961, - 45.479198 - ], - [ - -73.499795, - 45.479146 - ], - [ - -73.500019, - 45.479082 - ], - [ - -73.500107, - 45.478998 - ], - [ - -73.500272, - 45.479047 - ], - [ - -73.500354, - 45.479074 - ], - [ - -73.500404, - 45.479087 - ], - [ - -73.500422, - 45.479099 - ], - [ - -73.500588, - 45.479205 - ], - [ - -73.501159, - 45.479818 - ], - [ - -73.501455, - 45.480118 - ], - [ - -73.50163, - 45.480263 - ], - [ - -73.501828, - 45.48048 - ], - [ - -73.502027, - 45.480699 - ], - [ - -73.502676, - 45.481412 - ], - [ - -73.502806, - 45.48156 - ], - [ - -73.503272, - 45.482092 - ], - [ - -73.50345, - 45.482308 - ], - [ - -73.503512, - 45.48238 - ], - [ - -73.503558, - 45.482443 - ], - [ - -73.503598, - 45.482497 - ], - [ - -73.504141, - 45.483117 - ], - [ - -73.504614, - 45.483657 - ], - [ - -73.504846, - 45.483915 - ], - [ - -73.504857, - 45.483927 - ], - [ - -73.504924, - 45.483995 - ], - [ - -73.504924, - 45.483995 - ], - [ - -73.505108, - 45.484152 - ], - [ - -73.505242, - 45.484242 - ], - [ - -73.505364, - 45.484314 - ], - [ - -73.505521, - 45.484395 - ], - [ - -73.505663, - 45.484463 - ], - [ - -73.505851, - 45.484535 - ], - [ - -73.505993, - 45.484584 - ], - [ - -73.506624, - 45.484814 - ], - [ - -73.506746, - 45.484863 - ], - [ - -73.506951, - 45.484962 - ], - [ - -73.507115, - 45.485056 - ], - [ - -73.507185, - 45.485097 - ], - [ - -73.507329, - 45.4852 - ], - [ - -73.507431, - 45.485295 - ], - [ - -73.507518, - 45.485367 - ], - [ - -73.50762, - 45.485484 - ], - [ - -73.507754, - 45.485677 - ], - [ - -73.508077, - 45.486145 - ], - [ - -73.508225, - 45.48637 - ], - [ - -73.508354, - 45.486574 - ], - [ - -73.508385, - 45.486622 - ], - [ - -73.508489, - 45.486784 - ], - [ - -73.508543, - 45.486852 - ], - [ - -73.509592, - 45.488369 - ], - [ - -73.509675, - 45.488489 - ], - [ - -73.509764, - 45.488615 - ], - [ - -73.509971, - 45.488912 - ], - [ - -73.510813, - 45.490118 - ], - [ - -73.510825, - 45.490137 - ], - [ - -73.510906, - 45.490257 - ], - [ - -73.511275, - 45.490788 - ], - [ - -73.512404, - 45.492412 - ], - [ - -73.512418, - 45.492441 - ], - [ - -73.51245, - 45.492507 - ], - [ - -73.512764, - 45.493074 - ], - [ - -73.512921, - 45.493393 - ], - [ - -73.512971, - 45.493496 - ], - [ - -73.512984, - 45.493515 - ], - [ - -73.513094, - 45.493766 - ], - [ - -73.513261, - 45.494078 - ], - [ - -73.513283, - 45.494149 - ], - [ - -73.513342, - 45.494287 - ], - [ - -73.513459, - 45.494626 - ], - [ - -73.513505, - 45.494783 - ], - [ - -73.513561, - 45.49499 - ], - [ - -73.513604, - 45.495179 - ], - [ - -73.513621, - 45.495251 - ], - [ - -73.513692, - 45.495557 - ], - [ - -73.513769, - 45.495904 - ], - [ - -73.513786, - 45.49598 - ], - [ - -73.51384, - 45.496187 - ], - [ - -73.513899, - 45.496425 - ], - [ - -73.513925, - 45.49652 - ], - [ - -73.513974, - 45.496614 - ], - [ - -73.514009, - 45.496686 - ], - [ - -73.514054, - 45.496749 - ], - [ - -73.514104, - 45.49683 - ], - [ - -73.514166, - 45.496911 - ], - [ - -73.514219, - 45.49697 - ], - [ - -73.514552, - 45.497478 - ], - [ - -73.514769, - 45.497838 - ], - [ - -73.515085, - 45.498391 - ], - [ - -73.51517, - 45.49854 - ], - [ - -73.515555, - 45.499237 - ], - [ - -73.515623, - 45.499359 - ], - [ - -73.515674, - 45.499453 - ], - [ - -73.515873, - 45.499831 - ], - [ - -73.515977, - 45.500074 - ], - [ - -73.516146, - 45.500501 - ], - [ - -73.516373, - 45.50114 - ], - [ - -73.51647, - 45.501401 - ], - [ - -73.516581, - 45.501682 - ], - [ - -73.516643, - 45.501842 - ], - [ - -73.516705, - 45.501986 - ], - [ - -73.516967, - 45.502566 - ], - [ - -73.517068, - 45.5028 - ], - [ - -73.517227, - 45.503156 - ], - [ - -73.517458, - 45.503745 - ], - [ - -73.517476, - 45.503807 - ], - [ - -73.517545, - 45.504056 - ], - [ - -73.517576, - 45.504406 - ], - [ - -73.517547, - 45.504631 - ], - [ - -73.517534, - 45.504703 - ], - [ - -73.517471, - 45.50509 - ], - [ - -73.51744, - 45.505246 - ], - [ - -73.51738, - 45.505554 - ], - [ - -73.517325, - 45.505896 - ], - [ - -73.517276, - 45.506369 - ], - [ - -73.517272, - 45.506413 - ], - [ - -73.51724, - 45.506895 - ], - [ - -73.517233, - 45.507261 - ], - [ - -73.517231, - 45.507371 - ], - [ - -73.517271, - 45.507803 - ], - [ - -73.517341, - 45.508348 - ], - [ - -73.517381, - 45.508505 - ], - [ - -73.517557, - 45.509203 - ], - [ - -73.517602, - 45.509383 - ], - [ - -73.51787, - 45.510359 - ], - [ - -73.51789, - 45.510606 - ], - [ - -73.517894, - 45.510836 - ], - [ - -73.51783, - 45.511241 - ], - [ - -73.517799, - 45.511415 - ], - [ - -73.517775, - 45.511547 - ], - [ - -73.517734, - 45.511668 - ], - [ - -73.517679, - 45.511857 - ], - [ - -73.517621, - 45.512235 - ], - [ - -73.517591, - 45.512752 - ], - [ - -73.517595, - 45.513228 - ], - [ - -73.517596, - 45.513256 - ], - [ - -73.51762, - 45.513472 - ], - [ - -73.517713, - 45.513819 - ], - [ - -73.517877, - 45.514282 - ], - [ - -73.518137, - 45.514998 - ], - [ - -73.518165, - 45.51506 - ], - [ - -73.518252, - 45.515281 - ], - [ - -73.518257, - 45.515293 - ], - [ - -73.518338, - 45.51548 - ], - [ - -73.518503, - 45.515861 - ], - [ - -73.518612, - 45.5161 - ], - [ - -73.518761, - 45.516353 - ], - [ - -73.518797, - 45.516415 - ], - [ - -73.518938, - 45.516689 - ], - [ - -73.518968, - 45.516736 - ], - [ - -73.518973, - 45.516744 - ], - [ - -73.519179, - 45.517071 - ], - [ - -73.518456, - 45.516887 - ], - [ - -73.518077, - 45.516793 - ], - [ - -73.517978, - 45.516757 - ], - [ - -73.517749, - 45.516674 - ], - [ - -73.517741, - 45.516671 - ], - [ - -73.517498, - 45.516584 - ], - [ - -73.517318, - 45.516518 - ], - [ - -73.51692, - 45.51637 - ], - [ - -73.516876, - 45.516355 - ], - [ - -73.515414, - 45.515844 - ], - [ - -73.514728, - 45.515604 - ], - [ - -73.514563, - 45.515547 - ], - [ - -73.513772, - 45.515277 - ], - [ - -73.512796, - 45.514944 - ], - [ - -73.512165, - 45.514728 - ], - [ - -73.511591, - 45.514536 - ], - [ - -73.511507, - 45.514508 - ], - [ - -73.511388, - 45.514467 - ], - [ - -73.510118, - 45.514045 - ], - [ - -73.50981, - 45.513942 - ], - [ - -73.509393, - 45.513802 - ], - [ - -73.508861, - 45.513622 - ], - [ - -73.508741, - 45.513581 - ], - [ - -73.508131, - 45.513338 - ], - [ - -73.506731, - 45.512793 - ] - ] - }, - "id": 340, - "properties": { - "id": "ea3ea963-edaa-400f-a934-4ff3e32ba42e", - "data": { - "gtfs": { - "shape_id": "618_1_A" - }, - "segments": [ - { - "distanceMeters": 577, - "travelTimeSeconds": 93 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 478, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 418, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 406, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 22, - "travelTimeSeconds": 4 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 83, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 31 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10409, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5869.814599689504, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.2, - "travelTimeWithoutDwellTimesSeconds": 1680, - "operatingTimeWithLayoverTimeSeconds": 1860, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1680, - "operatingSpeedWithLayoverMetersPerSecond": 5.6, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.2 - }, - "mode": "bus", - "name": "Pav. Durocher/St-Lambert", - "color": "#A32638", - "nodes": [ - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "a1799b5f-9add-43c2-89ac-80ade94b6634", - "0296a406-079c-41f9-8c5b-0723a0b5f294", - "79c669a1-9060-4e5d-b272-f107884dee00", - "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "3e9388da-8f48-48c6-b6c0-5461e27eb26a", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "7e4b21bb-20d6-4104-9b98-071226922d49", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "c6165892-3719-417f-8d25-92e65471b42c", - "6735199f-47fc-47db-9116-7c110cca8945", - "6e4c328c-6fba-4e81-b589-59318e11a37a", - "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", - "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", - "fc92d5a1-fe31-4274-9837-2686b4525030", - "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", - "6b54424b-6f85-4448-8e7d-a05da4ef5b95", - "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", - "4df7f34c-ec49-4d48-90b3-56f3faffc976", - "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "9f22d75f-cc66-4020-8804-7912f49950d8", - "41d7b6d4-1fe4-44ed-a774-b005607fc59d", - "bc9b9243-e0ec-461a-9898-6eb69ecd511a", - "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "114aaaad-d40e-4930-853f-ef5cebdd299f", - "0b09b82c-ec97-406d-9f1c-690cc935b5ea", - "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "9b5a2104-c851-4abe-88ee-090849d3adca", - "cf524087-95a4-43fb-a2f1-74822356a0a9", - "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "2259b112-2e60-4bcc-ad14-9e0e577f2909", - "6250ca71-cb3c-4550-b402-0f2dd1999975", - "f250cba5-329e-4403-912d-778f924ce25e", - "f250cba5-329e-4403-912d-778f924ce25e", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "74539ff2-4125-4083-be0c-4345bf87f6fa", - "f1be4054-f28c-45a4-bc0b-58b82e1e6e83", - "969092dd-fcfd-493a-be55-d0467c757fb1", - "2227a38f-9c32-4890-9719-eef7445fa1fc" - ], - "stops": [], - "line_id": "8f581ac8-c528-4e5e-8e82-7bf3e2b1f150", - "segments": [ - 0, - 15, - 19, - 26, - 37, - 39, - 43, - 47, - 54, - 59, - 65, - 75, - 78, - 82, - 90, - 99, - 112, - 116, - 129, - 133, - 138, - 158, - 164, - 170, - 191, - 195, - 200, - 204, - 220, - 235, - 243, - 256, - 262, - 267, - 273, - 279, - 287, - 294, - 300, - 302, - 307, - 309, - 312, - 318 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 340, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.484644, - 45.507615 - ], - [ - -73.48473, - 45.507484 - ], - [ - -73.485803, - 45.507835 - ], - [ - -73.48655, - 45.508085 - ], - [ - -73.486813, - 45.508173 - ], - [ - -73.487623, - 45.508427 - ], - [ - -73.487874, - 45.508506 - ], - [ - -73.487374, - 45.509243 - ], - [ - -73.487035, - 45.509743 - ], - [ - -73.486501, - 45.51053 - ], - [ - -73.486269, - 45.510879 - ], - [ - -73.486057, - 45.511196 - ], - [ - -73.488983, - 45.512154 - ], - [ - -73.489123, - 45.5122 - ], - [ - -73.492054, - 45.513148 - ], - [ - -73.492199, - 45.513195 - ], - [ - -73.495125, - 45.51412 - ], - [ - -73.495274, - 45.514166 - ], - [ - -73.495455, - 45.513884 - ], - [ - -73.495699, - 45.5135 - ], - [ - -73.495774, - 45.513384 - ], - [ - -73.498948, - 45.514387 - ], - [ - -73.499247, - 45.514482 - ], - [ - -73.501107, - 45.515074 - ], - [ - -73.501252, - 45.51512 - ], - [ - -73.501676, - 45.515264 - ], - [ - -73.503119, - 45.515714 - ], - [ - -73.503239, - 45.515746 - ], - [ - -73.50337, - 45.515769 - ], - [ - -73.503487, - 45.515791 - ], - [ - -73.503653, - 45.515813 - ], - [ - -73.504061, - 45.515903 - ], - [ - -73.504906, - 45.516155 - ], - [ - -73.50541, - 45.516318 - ], - [ - -73.505601, - 45.51638 - ], - [ - -73.506087, - 45.516538 - ], - [ - -73.506374, - 45.516632 - ], - [ - -73.506766, - 45.516758 - ], - [ - -73.507015, - 45.516838 - ], - [ - -73.509656, - 45.517693 - ], - [ - -73.509783, - 45.517734 - ], - [ - -73.512029, - 45.518461 - ], - [ - -73.512173, - 45.518508 - ], - [ - -73.51354, - 45.518952 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.515008, - 45.519424 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.5189, - 45.520631 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520384, - 45.520947 - ], - [ - -73.520579, - 45.520957 - ], - [ - -73.520814, - 45.520956 - ], - [ - -73.521071, - 45.520931 - ], - [ - -73.521704, - 45.520864 - ], - [ - -73.52186, - 45.520904 - ], - [ - -73.521944, - 45.520931 - ], - [ - -73.522016, - 45.520967 - ], - [ - -73.522095, - 45.521021 - ], - [ - -73.522197, - 45.521093 - ], - [ - -73.522262, - 45.521179 - ], - [ - -73.522274, - 45.521462 - ], - [ - -73.522211, - 45.522152 - ], - [ - -73.522201, - 45.522265 - ], - [ - -73.522129, - 45.523061 - ], - [ - -73.522103, - 45.523345 - ], - [ - -73.522091, - 45.523481 - ], - [ - -73.522533, - 45.523496 - ], - [ - -73.522534, - 45.523707 - ], - [ - -73.522523, - 45.523955 - ], - [ - -73.522516, - 45.524144 - ], - [ - -73.521586, - 45.524128 - ], - [ - -73.521515, - 45.524126 - ], - [ - -73.521495, - 45.52413 - ], - [ - -73.521468, - 45.524145 - ], - [ - -73.521455, - 45.524176 - ], - [ - -73.521449, - 45.524251 - ], - [ - -73.521447, - 45.524278 - ] - ] - }, - "id": 341, - "properties": { - "id": "c4185d4a-8e06-4559-b613-9ab9d8295ca8", - "data": { - "gtfs": { - "shape_id": "620_1_R" - }, - "segments": [ - { - "distanceMeters": 173, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 92, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 744, - "travelTimeSeconds": 117 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 4223, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3377.620784333219, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.4, - "travelTimeWithoutDwellTimesSeconds": 660, - "operatingTimeWithLayoverTimeSeconds": 840, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 660, - "operatingSpeedWithLayoverMetersPerSecond": 5.03, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.4 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "2e045adb-bebd-4da6-b99a-63531ab62f07", - "ec8cd08f-9336-4f9e-945b-09c8eb5b3620", - "0f8d4bf1-fdee-4df3-8471-0b6ede606755", - "808ef7d7-1aa0-4a40-a96d-0615a6e712b5", - "6ab67241-b06e-417b-b6fb-88a16df29924", - "229965c6-9bf9-414c-9970-4f7b1b31441b", - "d76fa63a-1787-4749-9166-b1ecce1f4af2", - "2c0958f9-14bd-4467-9157-d96db49f68da", - "4a0c512f-2ce4-41cc-a200-cf81d75487c1", - "09272548-09d5-4afa-a45f-80ba6dd656dd", - "4070ca4c-584b-43bd-a874-a91871fdf63a", - "9e3f5b7f-c832-420a-b6d0-a87946ebafd2", - "d2f3e0fa-8998-4ca4-96de-f858c0088aad", - "60f00f0f-eca3-4ad1-beab-4b6811c87e8c", - "e66fb997-f83d-42a0-a232-e5b0a94a0caf", - "608948b3-8ac4-493b-a2b3-48bd266c12ab", - "9da92501-0f80-4a3e-b324-83bbfa32d05c", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "fe3abe5a-3bfa-4814-808a-3da69f0ecbea", - "segments": [ - 0, - 3, - 5, - 8, - 10, - 12, - 14, - 16, - 19, - 21, - 23, - 28, - 33, - 38, - 39, - 41, - 43, - 48, - 54 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 341, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.510609, - 45.52478 - ], - [ - -73.510559, - 45.524591 - ], - [ - -73.510103, - 45.523637 - ], - [ - -73.510027, - 45.523495 - ], - [ - -73.509617, - 45.522732 - ], - [ - -73.509474, - 45.522467 - ], - [ - -73.509184, - 45.521936 - ], - [ - -73.509122, - 45.521825 - ], - [ - -73.509119, - 45.521819 - ], - [ - -73.508895, - 45.52141 - ], - [ - -73.508879, - 45.521381 - ], - [ - -73.508774, - 45.52119 - ], - [ - -73.50866, - 45.520978 - ], - [ - -73.508615, - 45.520897 - ], - [ - -73.508348, - 45.520379 - ], - [ - -73.507929, - 45.519568 - ], - [ - -73.507805, - 45.519327 - ], - [ - -73.507767, - 45.519257 - ], - [ - -73.507222, - 45.518237 - ], - [ - -73.507088, - 45.517986 - ], - [ - -73.50664, - 45.517136 - ], - [ - -73.506596, - 45.517059 - ], - [ - -73.506515, - 45.516915 - ], - [ - -73.506521, - 45.516821 - ], - [ - -73.506537, - 45.516798 - ], - [ - -73.506559, - 45.516785 - ], - [ - -73.506565, - 45.51678 - ], - [ - -73.506617, - 45.516753 - ], - [ - -73.506766, - 45.516758 - ], - [ - -73.506998, - 45.516833 - ], - [ - -73.50964, - 45.517688 - ], - [ - -73.509783, - 45.517734 - ], - [ - -73.512015, - 45.518456 - ], - [ - -73.512173, - 45.518508 - ], - [ - -73.513527, - 45.518948 - ], - [ - -73.513777, - 45.519029 - ], - [ - -73.513908, - 45.519079 - ], - [ - -73.514336, - 45.519216 - ], - [ - -73.514507, - 45.519269 - ], - [ - -73.514995, - 45.51942 - ], - [ - -73.515201, - 45.519484 - ], - [ - -73.515284, - 45.519506 - ], - [ - -73.515409, - 45.519547 - ], - [ - -73.51562, - 45.51961 - ], - [ - -73.51571, - 45.519606 - ], - [ - -73.51889, - 45.520628 - ], - [ - -73.519022, - 45.52067 - ], - [ - -73.519206, - 45.520729 - ], - [ - -73.519388, - 45.520809 - ], - [ - -73.519545, - 45.520842 - ], - [ - -73.519821, - 45.520894 - ], - [ - -73.520137, - 45.52093 - ], - [ - -73.520253, - 45.52094 - ], - [ - -73.520267, - 45.521081 - ], - [ - -73.520267, - 45.521193 - ], - [ - -73.520266, - 45.52152 - ], - [ - -73.52024, - 45.521656 - ], - [ - -73.520186, - 45.521863 - ], - [ - -73.520122, - 45.522057 - ], - [ - -73.520078, - 45.522195 - ], - [ - -73.519986, - 45.522346 - ], - [ - -73.519898, - 45.522488 - ], - [ - -73.519741, - 45.522806 - ], - [ - -73.519466, - 45.523362 - ], - [ - -73.519636, - 45.523373 - ], - [ - -73.520277, - 45.523406 - ], - [ - -73.52025, - 45.523627 - ], - [ - -73.520225, - 45.52387 - ], - [ - -73.521017, - 45.523892 - ], - [ - -73.521053, - 45.523883 - ], - [ - -73.521061, - 45.523869 - ], - [ - -73.521065, - 45.523851 - ], - [ - -73.521071, - 45.523799 - ] - ] - }, - "id": 342, - "properties": { - "id": "944c9327-1801-491c-92c9-c3fd2284ecc1", - "data": { - "gtfs": { - "shape_id": "624_1_R" - }, - "segments": [ - { - "distanceMeters": 241, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 119, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 96, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 70, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 582, - "travelTimeSeconds": 95 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 2585, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 853.7326483900574, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.15, - "travelTimeWithoutDwellTimesSeconds": 420, - "operatingTimeWithLayoverTimeSeconds": 600, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 420, - "operatingSpeedWithLayoverMetersPerSecond": 4.31, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.15 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "94f3304d-66ff-42a6-bd12-7828cf5efc64", - "7dd9be07-f5cb-4f00-86f7-d61821676a78", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "01cbab8a-50a9-42e0-9d05-820a9dd4fa51", - "c28a8fa6-886c-4f1e-b291-00d0237d02dd", - "eab3c393-e690-4d4a-921c-9c45533c53f2", - "60f00f0f-eca3-4ad1-beab-4b6811c87e8c", - "e66fb997-f83d-42a0-a232-e5b0a94a0caf", - "608948b3-8ac4-493b-a2b3-48bd266c12ab", - "9da92501-0f80-4a3e-b324-83bbfa32d05c", - "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "24b6917b-6070-4fb2-a53e-3551153f56bd", - "d1011845-6c20-48e2-a9a9-e727cee5b959" - ], - "stops": [], - "line_id": "165acff1-a8ae-4b91-9f5b-5798cb82f91c", - "segments": [ - 0, - 4, - 10, - 14, - 15, - 18, - 21, - 29, - 30, - 32, - 34, - 39, - 45 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 342, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.424853, - 45.462423 - ], - [ - -73.4247, - 45.462321 - ], - [ - -73.42397, - 45.461837 - ], - [ - -73.423457, - 45.461497 - ], - [ - -73.423345, - 45.461423 - ], - [ - -73.422579, - 45.460915 - ], - [ - -73.419929, - 45.459157 - ], - [ - -73.419828, - 45.45909 - ], - [ - -73.419877, - 45.459055 - ], - [ - -73.419973, - 45.458983 - ], - [ - -73.420409, - 45.458658 - ], - [ - -73.420587, - 45.458524 - ], - [ - -73.42063, - 45.458492 - ], - [ - -73.420736, - 45.458359 - ], - [ - -73.420842, - 45.458218 - ], - [ - -73.420969, - 45.457966 - ], - [ - -73.421005, - 45.457768 - ], - [ - -73.420993, - 45.457597 - ], - [ - -73.420984, - 45.457466 - ], - [ - -73.420984, - 45.457462 - ], - [ - -73.420768, - 45.456709 - ], - [ - -73.420731, - 45.456406 - ], - [ - -73.420728, - 45.456281 - ], - [ - -73.420766, - 45.456105 - ], - [ - -73.420872, - 45.455877 - ], - [ - -73.421054, - 45.45561 - ], - [ - -73.421295, - 45.455422 - ], - [ - -73.422321, - 45.454723 - ], - [ - -73.422712, - 45.454457 - ], - [ - -73.422823, - 45.454382 - ], - [ - -73.425, - 45.452904 - ], - [ - -73.425235, - 45.452745 - ], - [ - -73.42721, - 45.451405 - ], - [ - -73.427291, - 45.45135 - ], - [ - -73.42733, - 45.451323 - ], - [ - -73.427666, - 45.451103 - ], - [ - -73.42768, - 45.451094 - ], - [ - -73.428037, - 45.450878 - ], - [ - -73.430991, - 45.449139 - ], - [ - -73.431162, - 45.449043 - ], - [ - -73.431275, - 45.448979 - ], - [ - -73.431167, - 45.448894 - ], - [ - -73.43096, - 45.449015 - ], - [ - -73.430882, - 45.449061 - ], - [ - -73.428846, - 45.450249 - ], - [ - -73.427598, - 45.450978 - ], - [ - -73.427528, - 45.451024 - ], - [ - -73.427205, - 45.451234 - ], - [ - -73.427162, - 45.451264 - ], - [ - -73.427291, - 45.45135 - ], - [ - -73.42733, - 45.451323 - ], - [ - -73.427666, - 45.451103 - ], - [ - -73.427684, - 45.451092 - ], - [ - -73.428037, - 45.450878 - ], - [ - -73.430991, - 45.449139 - ], - [ - -73.431166, - 45.44904 - ], - [ - -73.431275, - 45.448979 - ], - [ - -73.432931, - 45.450108 - ], - [ - -73.433653, - 45.450548 - ], - [ - -73.433864, - 45.450615 - ], - [ - -73.433938, - 45.450638 - ], - [ - -73.434086, - 45.450685 - ], - [ - -73.434372, - 45.450754 - ], - [ - -73.434532, - 45.45078 - ], - [ - -73.434811, - 45.450806 - ], - [ - -73.435216, - 45.450834 - ], - [ - -73.43546, - 45.450862 - ], - [ - -73.435648, - 45.450893 - ], - [ - -73.435818, - 45.450928 - ], - [ - -73.435935, - 45.450963 - ], - [ - -73.436195, - 45.451061 - ], - [ - -73.436419, - 45.451155 - ], - [ - -73.436602, - 45.451264 - ], - [ - -73.436681, - 45.451316 - ], - [ - -73.436758, - 45.451367 - ], - [ - -73.436938, - 45.4515 - ], - [ - -73.437141, - 45.451649 - ], - [ - -73.43763, - 45.452001 - ], - [ - -73.438297, - 45.452482 - ], - [ - -73.438425, - 45.452575 - ], - [ - -73.438899, - 45.452918 - ], - [ - -73.439474, - 45.45333 - ], - [ - -73.439588, - 45.453411 - ], - [ - -73.43982, - 45.453574 - ], - [ - -73.439861, - 45.453603 - ], - [ - -73.439909, - 45.45364 - ], - [ - -73.439987, - 45.4537 - ], - [ - -73.440478, - 45.454051 - ], - [ - -73.44074, - 45.454241 - ], - [ - -73.44099, - 45.454406 - ], - [ - -73.441259, - 45.45456 - ], - [ - -73.441361, - 45.454611 - ], - [ - -73.441496, - 45.454678 - ], - [ - -73.441752, - 45.454794 - ], - [ - -73.441936, - 45.454864 - ], - [ - -73.442015, - 45.454895 - ], - [ - -73.442069, - 45.454915 - ], - [ - -73.442434, - 45.455032 - ], - [ - -73.442619, - 45.455085 - ], - [ - -73.442851, - 45.45514 - ], - [ - -73.442711, - 45.455401 - ], - [ - -73.442537, - 45.455671 - ], - [ - -73.442076, - 45.456224 - ], - [ - -73.441851, - 45.45649 - ], - [ - -73.441716, - 45.456616 - ], - [ - -73.441606, - 45.456713 - ], - [ - -73.441548, - 45.456764 - ], - [ - -73.441473, - 45.456822 - ], - [ - -73.44081, - 45.457277 - ], - [ - -73.440142, - 45.457735 - ], - [ - -73.439938, - 45.457893 - ], - [ - -73.439859, - 45.457955 - ], - [ - -73.439614, - 45.458149 - ], - [ - -73.43929, - 45.458432 - ], - [ - -73.438818, - 45.459021 - ], - [ - -73.438626, - 45.459273 - ], - [ - -73.438614, - 45.459291 - ], - [ - -73.438414, - 45.459492 - ], - [ - -73.437866, - 45.460042 - ], - [ - -73.437761, - 45.460148 - ], - [ - -73.437619, - 45.460293 - ], - [ - -73.437101, - 45.460817 - ], - [ - -73.43693, - 45.460991 - ], - [ - -73.436084, - 45.461838 - ], - [ - -73.435953, - 45.461969 - ], - [ - -73.435883, - 45.462039 - ], - [ - -73.435417, - 45.462506 - ], - [ - -73.435116, - 45.462807 - ], - [ - -73.435017, - 45.462901 - ], - [ - -73.434675, - 45.463227 - ], - [ - -73.434449, - 45.463423 - ], - [ - -73.434426, - 45.463444 - ], - [ - -73.433916, - 45.463851 - ], - [ - -73.432011, - 45.465218 - ], - [ - -73.431899, - 45.465299 - ], - [ - -73.431759, - 45.465404 - ], - [ - -73.431232, - 45.465802 - ], - [ - -73.431153, - 45.465861 - ], - [ - -73.430632, - 45.466255 - ], - [ - -73.430573, - 45.466288 - ], - [ - -73.43057, - 45.466298 - ], - [ - -73.43053, - 45.466326 - ], - [ - -73.430808, - 45.46651 - ], - [ - -73.432747, - 45.467791 - ], - [ - -73.434094, - 45.468676 - ], - [ - -73.434186, - 45.468737 - ], - [ - -73.435228, - 45.46943 - ], - [ - -73.435371, - 45.469525 - ], - [ - -73.437736, - 45.471088 - ], - [ - -73.437899, - 45.471196 - ], - [ - -73.440427, - 45.472898 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.440904, - 45.473168 - ], - [ - -73.441015, - 45.473108 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.441803, - 45.472553 - ], - [ - -73.442533, - 45.472039 - ], - [ - -73.442653, - 45.471954 - ], - [ - -73.444466, - 45.470668 - ], - [ - -73.444558, - 45.470603 - ], - [ - -73.444704, - 45.470499 - ], - [ - -73.445328, - 45.470057 - ], - [ - -73.445338, - 45.470052 - ], - [ - -73.445622, - 45.469854 - ], - [ - -73.446091, - 45.469543 - ], - [ - -73.446391, - 45.469344 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.447066, - 45.468996 - ], - [ - -73.4474, - 45.468829 - ], - [ - -73.447822, - 45.468645 - ], - [ - -73.448427, - 45.468407 - ], - [ - -73.449383, - 45.468079 - ], - [ - -73.449758, - 45.467951 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450233, - 45.467787 - ], - [ - -73.451014, - 45.467517 - ], - [ - -73.451685, - 45.467271 - ], - [ - -73.451729, - 45.467255 - ], - [ - -73.451774, - 45.467238 - ], - [ - -73.452564, - 45.466965 - ], - [ - -73.452657, - 45.466933 - ], - [ - -73.453014, - 45.466803 - ], - [ - -73.45314, - 45.466749 - ], - [ - -73.453548, - 45.466537 - ], - [ - -73.453946, - 45.466304 - ], - [ - -73.454693, - 45.465786 - ], - [ - -73.454719, - 45.465768 - ], - [ - -73.45516, - 45.46545 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.45762, - 45.462209 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.45769, - 45.462033 - ], - [ - -73.457776, - 45.461966 - ], - [ - -73.45778, - 45.461865 - ], - [ - -73.457799, - 45.461756 - ], - [ - -73.457805, - 45.461716 - ], - [ - -73.457817, - 45.461563 - ], - [ - -73.45782, - 45.461477 - ], - [ - -73.457812, - 45.461383 - ], - [ - -73.457786, - 45.461212 - ], - [ - -73.457776, - 45.461173 - ], - [ - -73.457743, - 45.46105 - ], - [ - -73.457714, - 45.460928 - ], - [ - -73.457665, - 45.460784 - ], - [ - -73.457595, - 45.460627 - ], - [ - -73.457462, - 45.460379 - ], - [ - -73.457342, - 45.460166 - ], - [ - -73.4565, - 45.458675 - ], - [ - -73.456446, - 45.458579 - ], - [ - -73.455819, - 45.457453 - ], - [ - -73.455767, - 45.45736 - ], - [ - -73.455551, - 45.456955 - ], - [ - -73.455474, - 45.456802 - ], - [ - -73.455367, - 45.456563 - ], - [ - -73.455234, - 45.456113 - ], - [ - -73.455192, - 45.45589 - ], - [ - -73.455162, - 45.455731 - ], - [ - -73.455134, - 45.455281 - ], - [ - -73.455165, - 45.454907 - ], - [ - -73.455177, - 45.454772 - ], - [ - -73.455206, - 45.454588 - ], - [ - -73.455346, - 45.454111 - ], - [ - -73.455479, - 45.453796 - ], - [ - -73.455501, - 45.453755 - ], - [ - -73.455716, - 45.453355 - ], - [ - -73.455869, - 45.453126 - ], - [ - -73.455902, - 45.453077 - ], - [ - -73.456055, - 45.452883 - ], - [ - -73.45626, - 45.452645 - ], - [ - -73.456494, - 45.452415 - ], - [ - -73.45667, - 45.452253 - ], - [ - -73.457293, - 45.451714 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457598, - 45.451363 - ], - [ - -73.457627, - 45.45129 - ], - [ - -73.457661, - 45.451176 - ], - [ - -73.457648, - 45.45104 - ], - [ - -73.457607, - 45.450938 - ], - [ - -73.457498, - 45.450823 - ], - [ - -73.457365, - 45.450743 - ] - ] - }, - "id": 343, - "properties": { - "id": "02824c66-dc4f-49f8-a5ce-540e74cc3f79", - "data": { - "gtfs": { - "shape_id": "640_1_A" - }, - "segments": [ - { - "distanceMeters": 150, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 77, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 422, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 45, - "travelTimeSeconds": 7 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 95, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 304, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 463, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 119, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 18 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9955, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2871.5902355163707, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.91, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 6.14, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.91 - }, - "mode": "bus", - "name": "École Antoine-Brossard", - "color": "#A32638", - "nodes": [ - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "bfb03303-2ee6-40dd-8e8f-859a06b338a6", - "2b6f210c-4f28-43d1-b096-b48c582f5274", - "57b5655a-03f7-4fb9-a3a9-26c2523cb5bf", - "3947066a-3681-4f55-8693-0a5fac46c728", - "006d28ae-a3cc-4f45-8689-daa6cf9386f5", - "94721b0b-0bae-4300-ab61-58dc9d3fe85b", - "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", - "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", - "1f1619c9-3302-430c-9ade-aab4bf9e1e55", - "c74e0c90-a5ea-4788-9b1d-7bf05f50a1c4", - "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", - "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", - "27e1da8c-287d-4c6b-9905-9c8c3d07097d", - "9fe6df14-62d0-4a44-8e19-85300b42de89", - "c46f92e7-e692-49ea-b12f-0df7099ee6d5", - "06cee1c3-abcc-4982-b889-e73356b844e0", - "9e4bc046-2878-4cee-af77-934e179aa77f", - "1f87e3a1-2127-4357-9fd4-016c6c31e011", - "b7b9e437-9aed-4216-8c9e-6ac432328b58", - "eeae68ef-a789-47cd-b1a9-a6fc5c2bb689", - "1a929515-9cf9-46e2-a23e-d4a14e85a95d", - "7c6202a7-3f19-4943-97ae-2c6baa7cb485", - "2dc5436a-aaba-417a-8f15-4777cfa70bbf", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "ba86f45f-9fb5-4525-a50b-a876919fd012", - "988c86da-04eb-4067-b650-f13c447b17e7", - "14e293a6-352a-4156-8578-66d0b5bdcc1f", - "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", - "2881ced2-6a46-4738-a470-6ff64097e482", - "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "4fc83229-a15e-48e1-aa4f-fae0073dacf9", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "ac84633b-6f3b-458c-8f4e-099cc310c05e", - "d271cca7-cd7a-4e22-8728-7a598b88fe32", - "f5f0a75d-b9e9-4575-845b-09748935c6e0", - "c77e59d9-5075-4e39-a183-6bacc1afd03e", - "59b4f87c-067e-4dc3-856a-07fb245d4fe3", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "44eacee6-a348-48cf-aeda-c9ddae958f8e" - ], - "stops": [], - "line_id": "f1057248-6983-4d17-9a0c-3b25a0b3a0d7", - "segments": [ - 0, - 3, - 6, - 10, - 17, - 29, - 31, - 36, - 39, - 42, - 46, - 52, - 55, - 59, - 73, - 78, - 83, - 94, - 105, - 110, - 119, - 124, - 130, - 133, - 137, - 142, - 144, - 146, - 148, - 150, - 157, - 161, - 166, - 173, - 180, - 187, - 199, - 210, - 217, - 219, - 228, - 235, - 241 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 343, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.457365, - 45.450743 - ], - [ - -73.457311, - 45.45071 - ], - [ - -73.457055, - 45.450562 - ], - [ - -73.45697, - 45.450481 - ], - [ - -73.456931, - 45.450397 - ], - [ - -73.456841, - 45.450279 - ], - [ - -73.456733, - 45.450296 - ], - [ - -73.456625, - 45.450319 - ], - [ - -73.456525, - 45.450368 - ], - [ - -73.456438, - 45.450427 - ], - [ - -73.456357, - 45.45049 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456282, - 45.450641 - ], - [ - -73.456274, - 45.450721 - ], - [ - -73.456292, - 45.450794 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.45714, - 45.451439 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.456657, - 45.45205 - ], - [ - -73.456511, - 45.452168 - ], - [ - -73.456345, - 45.452339 - ], - [ - -73.456105, - 45.452573 - ], - [ - -73.455893, - 45.452816 - ], - [ - -73.455821, - 45.452909 - ], - [ - -73.45573, - 45.453027 - ], - [ - -73.455536, - 45.453301 - ], - [ - -73.455293, - 45.453751 - ], - [ - -73.455167, - 45.454075 - ], - [ - -73.455022, - 45.454574 - ], - [ - -73.455006, - 45.45464 - ], - [ - -73.454977, - 45.454754 - ], - [ - -73.454933, - 45.455281 - ], - [ - -73.454963, - 45.455744 - ], - [ - -73.455037, - 45.456136 - ], - [ - -73.455173, - 45.456599 - ], - [ - -73.455283, - 45.456847 - ], - [ - -73.455363, - 45.457004 - ], - [ - -73.455596, - 45.457405 - ], - [ - -73.455641, - 45.457484 - ], - [ - -73.456006, - 45.458134 - ], - [ - -73.456228, - 45.458529 - ], - [ - -73.456258, - 45.458583 - ], - [ - -73.456281, - 45.458624 - ], - [ - -73.457233, - 45.460328 - ], - [ - -73.457292, - 45.460433 - ], - [ - -73.45742, - 45.460667 - ], - [ - -73.457486, - 45.46082 - ], - [ - -73.457532, - 45.460955 - ], - [ - -73.457565, - 45.461072 - ], - [ - -73.457606, - 45.46123 - ], - [ - -73.457631, - 45.461396 - ], - [ - -73.457639, - 45.461477 - ], - [ - -73.457625, - 45.461707 - ], - [ - -73.457614, - 45.461848 - ], - [ - -73.457627, - 45.46193 - ], - [ - -73.45763, - 45.461949 - ], - [ - -73.45769, - 45.462033 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.45467, - 45.465612 - ], - [ - -73.45456, - 45.465692 - ], - [ - -73.453819, - 45.466205 - ], - [ - -73.453432, - 45.466434 - ], - [ - -73.453035, - 45.466641 - ], - [ - -73.452922, - 45.46669 - ], - [ - -73.452792, - 45.466746 - ], - [ - -73.452589, - 45.466834 - ], - [ - -73.451705, - 45.467139 - ], - [ - -73.451627, - 45.467166 - ], - [ - -73.45158, - 45.467183 - ], - [ - -73.451022, - 45.467375 - ], - [ - -73.450937, - 45.467405 - ], - [ - -73.450156, - 45.467679 - ], - [ - -73.449888, - 45.467769 - ], - [ - -73.449338, - 45.467948 - ], - [ - -73.44837, - 45.46829 - ], - [ - -73.447748, - 45.468524 - ], - [ - -73.447289, - 45.468721 - ], - [ - -73.446442, - 45.469161 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445905, - 45.469485 - ], - [ - -73.445671, - 45.469643 - ], - [ - -73.445475, - 45.469778 - ], - [ - -73.445396, - 45.469832 - ], - [ - -73.445298, - 45.469899 - ], - [ - -73.444328, - 45.470583 - ], - [ - -73.444082, - 45.470756 - ], - [ - -73.442664, - 45.471757 - ], - [ - -73.442644, - 45.471771 - ], - [ - -73.442519, - 45.471859 - ], - [ - -73.441942, - 45.47227 - ], - [ - -73.44177, - 45.472393 - ], - [ - -73.441027, - 45.472922 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.439193, - 45.471877 - ], - [ - -73.438166, - 45.471184 - ], - [ - -73.438035, - 45.471097 - ], - [ - -73.435602, - 45.469489 - ], - [ - -73.435506, - 45.469426 - ], - [ - -73.43454, - 45.468786 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.433058, - 45.467863 - ], - [ - -73.430746, - 45.46633 - ], - [ - -73.430632, - 45.466255 - ], - [ - -73.430224, - 45.465985 - ], - [ - -73.426696, - 45.463645 - ], - [ - -73.426608, - 45.463587 - ], - [ - -73.425566, - 45.462896 - ], - [ - -73.425014, - 45.46253 - ], - [ - -73.424853, - 45.462423 - ], - [ - -73.4247, - 45.462321 - ], - [ - -73.42397, - 45.461837 - ], - [ - -73.423456, - 45.461496 - ], - [ - -73.423345, - 45.461423 - ], - [ - -73.422579, - 45.460915 - ], - [ - -73.419928, - 45.459157 - ], - [ - -73.419828, - 45.45909 - ], - [ - -73.419877, - 45.459055 - ], - [ - -73.420118, - 45.458874 - ], - [ - -73.42041, - 45.458657 - ], - [ - -73.420587, - 45.458524 - ], - [ - -73.42063, - 45.458492 - ], - [ - -73.420736, - 45.458359 - ], - [ - -73.420842, - 45.458218 - ], - [ - -73.420969, - 45.457966 - ], - [ - -73.421005, - 45.457768 - ], - [ - -73.420993, - 45.457596 - ], - [ - -73.420984, - 45.457466 - ], - [ - -73.420984, - 45.457462 - ], - [ - -73.420768, - 45.456709 - ], - [ - -73.420731, - 45.456406 - ], - [ - -73.420728, - 45.456281 - ], - [ - -73.420766, - 45.456105 - ], - [ - -73.420872, - 45.455877 - ], - [ - -73.421054, - 45.45561 - ], - [ - -73.421295, - 45.455422 - ], - [ - -73.422321, - 45.454723 - ], - [ - -73.422712, - 45.454457 - ], - [ - -73.422824, - 45.454381 - ], - [ - -73.425, - 45.452904 - ], - [ - -73.425236, - 45.452744 - ], - [ - -73.42721, - 45.451405 - ], - [ - -73.427291, - 45.45135 - ], - [ - -73.42733, - 45.451323 - ], - [ - -73.427666, - 45.451103 - ], - [ - -73.427682, - 45.451093 - ], - [ - -73.428037, - 45.450878 - ], - [ - -73.430991, - 45.449139 - ], - [ - -73.431164, - 45.449041 - ], - [ - -73.431275, - 45.448979 - ], - [ - -73.43292, - 45.4501 - ], - [ - -73.432931, - 45.450108 - ], - [ - -73.433653, - 45.450548 - ], - [ - -73.433862, - 45.450614 - ], - [ - -73.433938, - 45.450638 - ], - [ - -73.434086, - 45.450685 - ], - [ - -73.434372, - 45.450754 - ], - [ - -73.434532, - 45.45078 - ], - [ - -73.434811, - 45.450806 - ], - [ - -73.435216, - 45.450834 - ], - [ - -73.43546, - 45.450862 - ], - [ - -73.435648, - 45.450893 - ], - [ - -73.435818, - 45.450928 - ], - [ - -73.435935, - 45.450963 - ], - [ - -73.436195, - 45.451061 - ], - [ - -73.436419, - 45.451155 - ], - [ - -73.436602, - 45.451264 - ], - [ - -73.43668, - 45.451316 - ], - [ - -73.436758, - 45.451367 - ], - [ - -73.436938, - 45.4515 - ], - [ - -73.437141, - 45.451649 - ], - [ - -73.43763, - 45.452001 - ], - [ - -73.438296, - 45.452482 - ], - [ - -73.438425, - 45.452575 - ], - [ - -73.438899, - 45.452918 - ], - [ - -73.439474, - 45.45333 - ], - [ - -73.439588, - 45.453411 - ], - [ - -73.439819, - 45.453574 - ], - [ - -73.439861, - 45.453603 - ], - [ - -73.439909, - 45.45364 - ], - [ - -73.439987, - 45.4537 - ], - [ - -73.440478, - 45.454051 - ], - [ - -73.44074, - 45.454241 - ], - [ - -73.44099, - 45.454406 - ], - [ - -73.441259, - 45.45456 - ], - [ - -73.441361, - 45.454611 - ], - [ - -73.441496, - 45.454678 - ], - [ - -73.441752, - 45.454794 - ], - [ - -73.441935, - 45.454864 - ], - [ - -73.442069, - 45.454915 - ], - [ - -73.442434, - 45.455032 - ], - [ - -73.442619, - 45.455085 - ], - [ - -73.442851, - 45.45514 - ], - [ - -73.442711, - 45.455401 - ], - [ - -73.442537, - 45.455671 - ], - [ - -73.442453, - 45.455772 - ], - [ - -73.442076, - 45.456224 - ], - [ - -73.441851, - 45.45649 - ], - [ - -73.441716, - 45.456616 - ], - [ - -73.441606, - 45.456713 - ], - [ - -73.441548, - 45.456764 - ], - [ - -73.441473, - 45.456822 - ], - [ - -73.44081, - 45.457277 - ], - [ - -73.440142, - 45.457735 - ], - [ - -73.439939, - 45.457893 - ], - [ - -73.439859, - 45.457955 - ], - [ - -73.439614, - 45.458149 - ], - [ - -73.43929, - 45.458432 - ], - [ - -73.438818, - 45.459021 - ], - [ - -73.438626, - 45.459273 - ], - [ - -73.438614, - 45.459291 - ], - [ - -73.438414, - 45.459492 - ], - [ - -73.437866, - 45.460042 - ], - [ - -73.437762, - 45.460148 - ], - [ - -73.437619, - 45.460293 - ], - [ - -73.437101, - 45.460817 - ], - [ - -73.43693, - 45.460991 - ], - [ - -73.436084, - 45.461838 - ], - [ - -73.435953, - 45.461969 - ], - [ - -73.435883, - 45.462039 - ], - [ - -73.435417, - 45.462506 - ], - [ - -73.435116, - 45.462807 - ], - [ - -73.435017, - 45.462901 - ], - [ - -73.434675, - 45.463227 - ], - [ - -73.434449, - 45.463424 - ], - [ - -73.434426, - 45.463444 - ], - [ - -73.433916, - 45.463851 - ], - [ - -73.43201, - 45.465219 - ] - ] - }, - "id": 344, - "properties": { - "id": "afa330b2-e212-4733-8709-c10c7d9ecca4", - "data": { - "gtfs": { - "shape_id": "640_2_R" - }, - "segments": [ - { - "distanceMeters": 248, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 91, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 483, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 310, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 403, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 56, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 77, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 422, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 304, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 47 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9697, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2567.456556702445, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.99, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 5.39, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.99 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "44eacee6-a348-48cf-aeda-c9ddae958f8e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "59b4f87c-067e-4dc3-856a-07fb245d4fe3", - "c77e59d9-5075-4e39-a183-6bacc1afd03e", - "f5f0a75d-b9e9-4575-845b-09748935c6e0", - "d271cca7-cd7a-4e22-8728-7a598b88fe32", - "3b708726-0db1-43de-b014-b11ddc9fc24a", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "bd9b4c12-08ed-4715-ae67-eb179ed7f974", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "ff779c9a-cd83-463a-8d0c-a93f3584a187", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", - "c8919560-2bb2-4063-8184-8e6c296badbe", - "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", - "14e293a6-352a-4156-8578-66d0b5bdcc1f", - "62558b4d-75af-4b04-8040-a30de5a89658", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "988183db-88f1-47cb-87bf-b2a03dd4a38d", - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "bfb03303-2ee6-40dd-8e8f-859a06b338a6", - "2b6f210c-4f28-43d1-b096-b48c582f5274", - "57b5655a-03f7-4fb9-a3a9-26c2523cb5bf", - "3947066a-3681-4f55-8693-0a5fac46c728", - "006d28ae-a3cc-4f45-8689-daa6cf9386f5", - "94721b0b-0bae-4300-ab61-58dc9d3fe85b", - "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", - "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", - "27e1da8c-287d-4c6b-9905-9c8c3d07097d", - "9fe6df14-62d0-4a44-8e19-85300b42de89", - "c46f92e7-e692-49ea-b12f-0df7099ee6d5", - "06cee1c3-abcc-4982-b889-e73356b844e0", - "9e4bc046-2878-4cee-af77-934e179aa77f", - "1f87e3a1-2127-4357-9fd4-016c6c31e011", - "b7b9e437-9aed-4216-8c9e-6ac432328b58", - "eeae68ef-a789-47cd-b1a9-a6fc5c2bb689", - "1a929515-9cf9-46e2-a23e-d4a14e85a95d", - "7c6202a7-3f19-4943-97ae-2c6baa7cb485", - "2dc5436a-aaba-417a-8f15-4777cfa70bbf" - ], - "stops": [], - "line_id": "f1057248-6983-4d17-9a0c-3b25a0b3a0d7", - "segments": [ - 0, - 16, - 18, - 23, - 29, - 38, - 40, - 43, - 54, - 67, - 73, - 78, - 86, - 94, - 95, - 100, - 103, - 105, - 107, - 110, - 112, - 113, - 117, - 120, - 123, - 127, - 134, - 146, - 148, - 153, - 156, - 161, - 175, - 180, - 185, - 196, - 207, - 212, - 221, - 226, - 232 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 344, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.45145, - 45.430962 - ], - [ - -73.451306, - 45.431026 - ], - [ - -73.450883, - 45.431238 - ], - [ - -73.450399, - 45.431499 - ], - [ - -73.449891, - 45.431803 - ], - [ - -73.449325, - 45.43218 - ], - [ - -73.448785, - 45.432585 - ], - [ - -73.448377, - 45.432935 - ], - [ - -73.447875, - 45.433413 - ], - [ - -73.447643, - 45.43369 - ], - [ - -73.44745, - 45.433901 - ], - [ - -73.447206, - 45.434187 - ], - [ - -73.447139, - 45.434272 - ], - [ - -73.447325, - 45.434288 - ], - [ - -73.447496, - 45.434296 - ], - [ - -73.447559, - 45.434294 - ], - [ - -73.447672, - 45.43429 - ], - [ - -73.447825, - 45.434283 - ], - [ - -73.448052, - 45.43426 - ], - [ - -73.448578, - 45.434176 - ], - [ - -73.448699, - 45.434165 - ], - [ - -73.448848, - 45.434152 - ], - [ - -73.449804, - 45.434095 - ], - [ - -73.450056, - 45.43408 - ], - [ - -73.451324, - 45.433994 - ], - [ - -73.451404, - 45.433989 - ], - [ - -73.452574, - 45.433909 - ], - [ - -73.452708, - 45.433899 - ], - [ - -73.453072, - 45.433895 - ], - [ - -73.453186, - 45.433903 - ], - [ - -73.453328, - 45.433913 - ], - [ - -73.453345, - 45.433915 - ], - [ - -73.453603, - 45.433946 - ], - [ - -73.453629, - 45.433949 - ], - [ - -73.453651, - 45.433954 - ], - [ - -73.453902, - 45.434003 - ], - [ - -73.454123, - 45.434057 - ], - [ - -73.45503, - 45.434305 - ], - [ - -73.455549, - 45.434449 - ], - [ - -73.455955, - 45.434571 - ], - [ - -73.456005, - 45.434588 - ], - [ - -73.456028, - 45.434596 - ], - [ - -73.456351, - 45.434706 - ], - [ - -73.45674, - 45.434846 - ], - [ - -73.457423, - 45.435094 - ], - [ - -73.457584, - 45.435152 - ], - [ - -73.458318, - 45.435418 - ], - [ - -73.459087, - 45.435697 - ], - [ - -73.459599, - 45.435873 - ], - [ - -73.459868, - 45.435958 - ], - [ - -73.4602, - 45.436053 - ], - [ - -73.46028, - 45.436076 - ], - [ - -73.461443, - 45.436418 - ], - [ - -73.462112, - 45.43661 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.463269, - 45.436949 - ], - [ - -73.464723, - 45.437368 - ], - [ - -73.465091, - 45.437458 - ], - [ - -73.465138, - 45.437466 - ], - [ - -73.4653, - 45.437494 - ], - [ - -73.465515, - 45.437526 - ], - [ - -73.465864, - 45.437562 - ], - [ - -73.467675, - 45.437692 - ], - [ - -73.46781, - 45.437702 - ], - [ - -73.468967, - 45.437779 - ], - [ - -73.470109, - 45.437842 - ], - [ - -73.470326, - 45.437857 - ], - [ - -73.470561, - 45.437874 - ], - [ - -73.470756, - 45.437887 - ], - [ - -73.472007, - 45.43798 - ], - [ - -73.472271, - 45.438 - ], - [ - -73.472146, - 45.438187 - ], - [ - -73.471874, - 45.438596 - ], - [ - -73.471678, - 45.438891 - ], - [ - -73.470353, - 45.440893 - ], - [ - -73.470303, - 45.440969 - ], - [ - -73.469973, - 45.440865 - ], - [ - -73.468418, - 45.44037 - ], - [ - -73.467652, - 45.440123 - ], - [ - -73.46707, - 45.439934 - ], - [ - -73.466608, - 45.439785 - ], - [ - -73.465969, - 45.439632 - ], - [ - -73.465764, - 45.439609 - ], - [ - -73.46555, - 45.439605 - ], - [ - -73.465254, - 45.439631 - ], - [ - -73.464962, - 45.43969 - ], - [ - -73.464528, - 45.439856 - ], - [ - -73.463561, - 45.440337 - ], - [ - -73.463318, - 45.440459 - ], - [ - -73.462563, - 45.440836 - ], - [ - -73.462314, - 45.440989 - ], - [ - -73.462298, - 45.441 - ], - [ - -73.462213, - 45.441057 - ], - [ - -73.462145, - 45.441115 - ], - [ - -73.46199, - 45.441264 - ], - [ - -73.461921, - 45.441345 - ], - [ - -73.461296, - 45.442294 - ], - [ - -73.461249, - 45.442366 - ], - [ - -73.46061, - 45.443357 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.460454, - 45.443598 - ], - [ - -73.460027, - 45.444237 - ], - [ - -73.459528, - 45.445025 - ], - [ - -73.459486, - 45.445092 - ], - [ - -73.458903, - 45.445978 - ], - [ - -73.458716, - 45.446252 - ], - [ - -73.458499, - 45.446437 - ], - [ - -73.458358, - 45.446536 - ], - [ - -73.45823, - 45.446598 - ], - [ - -73.458121, - 45.446639 - ], - [ - -73.458106, - 45.446644 - ], - [ - -73.458085, - 45.446651 - ], - [ - -73.458009, - 45.446676 - ], - [ - -73.457516, - 45.446841 - ], - [ - -73.456885, - 45.447052 - ], - [ - -73.456373, - 45.447223 - ], - [ - -73.456253, - 45.447264 - ], - [ - -73.455927, - 45.447371 - ], - [ - -73.455661, - 45.447479 - ], - [ - -73.455528, - 45.447551 - ], - [ - -73.455416, - 45.447619 - ], - [ - -73.455304, - 45.447709 - ], - [ - -73.455137, - 45.447929 - ], - [ - -73.454897, - 45.448293 - ], - [ - -73.454606, - 45.448707 - ], - [ - -73.454507, - 45.448806 - ], - [ - -73.454403, - 45.448887 - ], - [ - -73.454351, - 45.448928 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.454088, - 45.449121 - ], - [ - -73.454251, - 45.449228 - ], - [ - -73.454556, - 45.449427 - ], - [ - -73.45481, - 45.44962 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.455393, - 45.45012 - ], - [ - -73.456061, - 45.45066 - ], - [ - -73.456286, - 45.450829 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.457154, - 45.451449 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457598, - 45.451363 - ], - [ - -73.457627, - 45.45129 - ], - [ - -73.457661, - 45.451176 - ], - [ - -73.457648, - 45.45104 - ], - [ - -73.457607, - 45.450938 - ], - [ - -73.457498, - 45.450823 - ], - [ - -73.457365, - 45.450743 - ] - ] - }, - "id": 345, - "properties": { - "id": "faf88441-45ea-4959-bfa8-561d15e203db", - "data": { - "gtfs": { - "shape_id": "644_1_A" - }, - "segments": [ - { - "distanceMeters": 628, - "travelTimeSeconds": 107 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 427, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 24 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5261, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2248.9641491088037, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.85, - "travelTimeWithoutDwellTimesSeconds": 900, - "operatingTimeWithLayoverTimeSeconds": 1080, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 900, - "operatingSpeedWithLayoverMetersPerSecond": 4.87, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.85 - }, - "mode": "bus", - "name": "École Antoine-Brossard", - "color": "#A32638", - "nodes": [ - "1e5e280b-187c-453e-ae50-34515416c146", - "d26ce5e1-6c58-4e66-9161-bd0bb569b92f", - "95267540-c736-4584-b843-23c799e4aa83", - "8162eb5c-436c-4cc2-b9dd-2d13a57dd8d8", - "75a6ca63-e257-4bc0-9a35-e9f67206fdfb", - "dc444f91-de90-48b4-9750-8ab69f40baf5", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", - "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", - "e13d482c-ee57-4f7d-bc38-264ca460deda", - "daacedd2-0b84-4f73-9f01-d9072ec32dce", - "bd0ab07f-3423-4348-a03c-133d6cccab2d", - "b93691d0-438e-4eac-87a0-7c1ac45a7c18", - "9b31d865-da9f-4eb8-b8a9-3d488eb579df", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "57126f14-f5bb-4578-a4ae-48d75eae5e82", - "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", - "8b7e764f-0227-410c-89b9-51b9a8ad8c88", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "44eacee6-a348-48cf-aeda-c9ddae958f8e" - ], - "stops": [], - "line_id": "671c05ae-c514-40d5-ab39-2a29b06275ff", - "segments": [ - 0, - 20, - 24, - 32, - 40, - 46, - 53, - 58, - 62, - 66, - 69, - 72, - 74, - 79, - 91, - 96, - 98, - 102, - 110, - 115, - 126, - 132, - 138 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 345, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.457365, - 45.450743 - ], - [ - -73.457311, - 45.45071 - ], - [ - -73.457055, - 45.450562 - ], - [ - -73.45697, - 45.450481 - ], - [ - -73.456931, - 45.450397 - ], - [ - -73.456841, - 45.450279 - ], - [ - -73.456733, - 45.450296 - ], - [ - -73.456625, - 45.450319 - ], - [ - -73.456525, - 45.450368 - ], - [ - -73.456438, - 45.450427 - ], - [ - -73.456357, - 45.45049 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456003, - 45.45033 - ], - [ - -73.455824, - 45.450179 - ], - [ - -73.455605, - 45.449994 - ], - [ - -73.455056, - 45.44954 - ], - [ - -73.454737, - 45.449301 - ], - [ - -73.454452, - 45.449114 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.454351, - 45.448928 - ], - [ - -73.454507, - 45.448806 - ], - [ - -73.454606, - 45.448707 - ], - [ - -73.454645, - 45.448652 - ], - [ - -73.454897, - 45.448293 - ], - [ - -73.455137, - 45.447929 - ], - [ - -73.455304, - 45.447709 - ], - [ - -73.455416, - 45.447619 - ], - [ - -73.455528, - 45.447551 - ], - [ - -73.455661, - 45.447479 - ], - [ - -73.455879, - 45.447391 - ], - [ - -73.455927, - 45.447371 - ], - [ - -73.456253, - 45.447264 - ], - [ - -73.456885, - 45.447052 - ], - [ - -73.457516, - 45.446841 - ], - [ - -73.45775, - 45.446763 - ], - [ - -73.458009, - 45.446676 - ], - [ - -73.458085, - 45.446651 - ], - [ - -73.458121, - 45.446639 - ], - [ - -73.45823, - 45.446598 - ], - [ - -73.458358, - 45.446536 - ], - [ - -73.458499, - 45.446437 - ], - [ - -73.458716, - 45.446252 - ], - [ - -73.458903, - 45.445978 - ], - [ - -73.459418, - 45.445195 - ], - [ - -73.459486, - 45.445092 - ], - [ - -73.460027, - 45.444237 - ], - [ - -73.4603, - 45.443829 - ], - [ - -73.460454, - 45.443598 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.461185, - 45.442464 - ], - [ - -73.461249, - 45.442366 - ], - [ - -73.461921, - 45.441345 - ], - [ - -73.46199, - 45.441264 - ], - [ - -73.462029, - 45.441226 - ], - [ - -73.462145, - 45.441115 - ], - [ - -73.462213, - 45.441057 - ], - [ - -73.462314, - 45.440989 - ], - [ - -73.462563, - 45.440836 - ], - [ - -73.463318, - 45.440459 - ], - [ - -73.463561, - 45.440337 - ], - [ - -73.464528, - 45.439856 - ], - [ - -73.464962, - 45.43969 - ], - [ - -73.465254, - 45.439631 - ], - [ - -73.46555, - 45.439605 - ], - [ - -73.465764, - 45.439609 - ], - [ - -73.465969, - 45.439632 - ], - [ - -73.46634, - 45.43972 - ], - [ - -73.466608, - 45.439785 - ], - [ - -73.467652, - 45.440123 - ], - [ - -73.468418, - 45.44037 - ], - [ - -73.47018, - 45.44093 - ], - [ - -73.470303, - 45.440969 - ], - [ - -73.47058, - 45.440549 - ], - [ - -73.471678, - 45.438891 - ], - [ - -73.47221, - 45.438091 - ], - [ - -73.472271, - 45.438 - ], - [ - -73.471707, - 45.437958 - ], - [ - -73.470911, - 45.437899 - ], - [ - -73.470756, - 45.437887 - ], - [ - -73.470561, - 45.437874 - ], - [ - -73.470109, - 45.437842 - ], - [ - -73.468967, - 45.437779 - ], - [ - -73.467953, - 45.437712 - ], - [ - -73.46781, - 45.437702 - ], - [ - -73.465864, - 45.437562 - ], - [ - -73.465515, - 45.437526 - ], - [ - -73.465335, - 45.4375 - ], - [ - -73.4653, - 45.437494 - ], - [ - -73.465091, - 45.437458 - ], - [ - -73.464723, - 45.437368 - ], - [ - -73.463269, - 45.436949 - ], - [ - -73.462465, - 45.436712 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.461443, - 45.436418 - ], - [ - -73.46028, - 45.436076 - ], - [ - -73.4602, - 45.436053 - ], - [ - -73.459868, - 45.435958 - ], - [ - -73.459599, - 45.435873 - ], - [ - -73.459087, - 45.435697 - ], - [ - -73.458339, - 45.435426 - ], - [ - -73.457584, - 45.435152 - ], - [ - -73.457423, - 45.435094 - ], - [ - -73.45674, - 45.434846 - ], - [ - -73.456351, - 45.434706 - ], - [ - -73.456096, - 45.434619 - ], - [ - -73.456028, - 45.434596 - ], - [ - -73.455955, - 45.434571 - ], - [ - -73.455549, - 45.434449 - ], - [ - -73.45503, - 45.434305 - ], - [ - -73.454123, - 45.434057 - ], - [ - -73.453902, - 45.434003 - ], - [ - -73.453689, - 45.433961 - ], - [ - -73.453651, - 45.433954 - ], - [ - -73.453629, - 45.433949 - ], - [ - -73.453345, - 45.433915 - ], - [ - -73.453328, - 45.433913 - ], - [ - -73.453186, - 45.433903 - ], - [ - -73.453072, - 45.433895 - ], - [ - -73.452708, - 45.433899 - ], - [ - -73.452574, - 45.433909 - ], - [ - -73.451603, - 45.433975 - ], - [ - -73.451404, - 45.433989 - ], - [ - -73.450056, - 45.43408 - ], - [ - -73.449804, - 45.434095 - ], - [ - -73.449067, - 45.434139 - ], - [ - -73.448848, - 45.434152 - ], - [ - -73.448578, - 45.434176 - ], - [ - -73.448472, - 45.434175 - ], - [ - -73.448255, - 45.434181 - ], - [ - -73.448109, - 45.43419 - ], - [ - -73.447833, - 45.434203 - ], - [ - -73.447405, - 45.434193 - ], - [ - -73.447515, - 45.434057 - ], - [ - -73.447812, - 45.43372 - ], - [ - -73.44808, - 45.433435 - ], - [ - -73.448286, - 45.433242 - ], - [ - -73.448467, - 45.433072 - ], - [ - -73.448834, - 45.432756 - ], - [ - -73.449139, - 45.432514 - ], - [ - -73.449431, - 45.432297 - ], - [ - -73.44953, - 45.432225 - ], - [ - -73.449956, - 45.431941 - ], - [ - -73.450305, - 45.431728 - ], - [ - -73.450787, - 45.431457 - ], - [ - -73.451268, - 45.431211 - ], - [ - -73.451712, - 45.431001 - ], - [ - -73.451767, - 45.430973 - ] - ] - }, - "id": 346, - "properties": { - "id": "e300776c-7854-4d4e-bd55-7300bc47519a", - "data": { - "gtfs": { - "shape_id": "644_2_R" - }, - "segments": [ - { - "distanceMeters": 178, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 398, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 329, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 364, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 353, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 630, - "travelTimeSeconds": 112 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5082, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2229.973461505094, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.65, - "travelTimeWithoutDwellTimesSeconds": 900, - "operatingTimeWithLayoverTimeSeconds": 1080, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 900, - "operatingSpeedWithLayoverMetersPerSecond": 4.71, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.65 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "44eacee6-a348-48cf-aeda-c9ddae958f8e", - "2c6638eb-437e-4a41-bb5d-d6093797361d", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "8b7e764f-0227-410c-89b9-51b9a8ad8c88", - "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", - "57126f14-f5bb-4578-a4ae-48d75eae5e82", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "9b31d865-da9f-4eb8-b8a9-3d488eb579df", - "b93691d0-438e-4eac-87a0-7c1ac45a7c18", - "bd0ab07f-3423-4348-a03c-133d6cccab2d", - "daacedd2-0b84-4f73-9f01-d9072ec32dce", - "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", - "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "dc444f91-de90-48b4-9750-8ab69f40baf5", - "75a6ca63-e257-4bc0-9a35-e9f67206fdfb", - "8162eb5c-436c-4cc2-b9dd-2d13a57dd8d8", - "95267540-c736-4584-b843-23c799e4aa83", - "d26ce5e1-6c58-4e66-9161-bd0bb569b92f", - "601fc633-4aed-4e9a-b678-52e4dedfe19d" - ], - "stops": [], - "line_id": "671c05ae-c514-40d5-ab39-2a29b06275ff", - "segments": [ - 0, - 13, - 17, - 29, - 34, - 43, - 46, - 49, - 53, - 66, - 70, - 74, - 77, - 82, - 86, - 91, - 99, - 104, - 111, - 120, - 124 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 346, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.507629, - 45.510747 - ], - [ - -73.507709, - 45.510639 - ], - [ - -73.508209, - 45.509991 - ], - [ - -73.508624, - 45.509429 - ], - [ - -73.508684, - 45.509348 - ], - [ - -73.509167, - 45.508704 - ], - [ - -73.509534, - 45.508211 - ], - [ - -73.509625, - 45.508088 - ], - [ - -73.510082, - 45.507498 - ], - [ - -73.510454, - 45.506997 - ], - [ - -73.510542, - 45.506877 - ], - [ - -73.510994, - 45.506265 - ], - [ - -73.511329, - 45.505817 - ], - [ - -73.511448, - 45.505658 - ], - [ - -73.511912, - 45.505051 - ], - [ - -73.512265, - 45.504569 - ], - [ - -73.512356, - 45.504443 - ], - [ - -73.512804, - 45.50384 - ], - [ - -73.512873, - 45.503688 - ], - [ - -73.513239, - 45.503205 - ], - [ - -73.513316, - 45.503103 - ], - [ - -73.513748, - 45.502535 - ], - [ - -73.513806, - 45.502427 - ], - [ - -73.513873, - 45.50226 - ], - [ - -73.513904, - 45.502188 - ], - [ - -73.514024, - 45.501904 - ], - [ - -73.514045, - 45.501797 - ], - [ - -73.513805, - 45.501793 - ], - [ - -73.5136, - 45.501784 - ], - [ - -73.513542, - 45.501784 - ], - [ - -73.513522, - 45.501784 - ], - [ - -73.51344, - 45.501784 - ], - [ - -73.513341, - 45.50179 - ], - [ - -73.513284, - 45.501793 - ], - [ - -73.513035, - 45.501807 - ], - [ - -73.512897, - 45.501829 - ], - [ - -73.5127, - 45.501847 - ], - [ - -73.512502, - 45.501865 - ], - [ - -73.512398, - 45.501874 - ], - [ - -73.512063, - 45.501735 - ], - [ - -73.511327, - 45.50142 - ], - [ - -73.50993, - 45.500781 - ], - [ - -73.509908, - 45.500772 - ], - [ - -73.509762, - 45.500713 - ], - [ - -73.509608, - 45.500651 - ], - [ - -73.508958, - 45.500376 - ], - [ - -73.508861, - 45.50034 - ], - [ - -73.507712, - 45.499859 - ], - [ - -73.50735, - 45.499701 - ], - [ - -73.507071, - 45.499582 - ], - [ - -73.506801, - 45.499467 - ], - [ - -73.506709, - 45.499427 - ], - [ - -73.506259, - 45.499211 - ], - [ - -73.506001, - 45.499076 - ], - [ - -73.505704, - 45.498928 - ], - [ - -73.505329, - 45.498757 - ], - [ - -73.505105, - 45.498595 - ], - [ - -73.504952, - 45.498489 - ], - [ - -73.504839, - 45.49841 - ], - [ - -73.504683, - 45.498293 - ], - [ - -73.504473, - 45.49814 - ], - [ - -73.504131, - 45.497897 - ], - [ - -73.503475, - 45.497438 - ], - [ - -73.503408, - 45.497389 - ], - [ - -73.50327, - 45.49729 - ], - [ - -73.50284, - 45.49698 - ], - [ - -73.502636, - 45.496834 - ], - [ - -73.502336, - 45.49662 - ], - [ - -73.502293, - 45.496588 - ], - [ - -73.501808, - 45.496251 - ], - [ - -73.501448, - 45.49599 - ], - [ - -73.501279, - 45.495868 - ], - [ - -73.501182, - 45.495805 - ], - [ - -73.501059, - 45.495724 - ], - [ - -73.50081, - 45.495567 - ], - [ - -73.500592, - 45.495409 - ], - [ - -73.500498, - 45.495335 - ], - [ - -73.500106, - 45.495026 - ], - [ - -73.500064, - 45.495 - ], - [ - -73.500025, - 45.494979 - ], - [ - -73.499778, - 45.494815 - ], - [ - -73.499763, - 45.494802 - ], - [ - -73.49959, - 45.494676 - ], - [ - -73.499359, - 45.494506 - ], - [ - -73.499315, - 45.494474 - ], - [ - -73.499159, - 45.494361 - ], - [ - -73.498924, - 45.49419 - ], - [ - -73.498797, - 45.494096 - ], - [ - -73.498616, - 45.49397 - ], - [ - -73.49848, - 45.493866 - ], - [ - -73.498241, - 45.493693 - ], - [ - -73.498238, - 45.493691 - ], - [ - -73.49804, - 45.493547 - ], - [ - -73.497995, - 45.493515 - ], - [ - -73.497927, - 45.49347 - ], - [ - -73.497866, - 45.493425 - ], - [ - -73.497771, - 45.493353 - ], - [ - -73.497557, - 45.493191 - ], - [ - -73.497339, - 45.493038 - ], - [ - -73.497128, - 45.492885 - ], - [ - -73.496772, - 45.492629 - ], - [ - -73.496467, - 45.492409 - ], - [ - -73.496416, - 45.492372 - ], - [ - -73.496321, - 45.492305 - ], - [ - -73.496235, - 45.492242 - ], - [ - -73.495851, - 45.491976 - ], - [ - -73.49562, - 45.491814 - ], - [ - -73.495442, - 45.491684 - ], - [ - -73.495204, - 45.491517 - ], - [ - -73.494917, - 45.491315 - ], - [ - -73.49433, - 45.490897 - ], - [ - -73.494242, - 45.490838 - ], - [ - -73.494219, - 45.490821 - ], - [ - -73.493838, - 45.49055 - ], - [ - -73.493701, - 45.490456 - ], - [ - -73.493573, - 45.490366 - ], - [ - -73.492976, - 45.489943 - ], - [ - -73.492778, - 45.489803 - ], - [ - -73.492465, - 45.489583 - ], - [ - -73.492419, - 45.48955 - ], - [ - -73.492261, - 45.489437 - ], - [ - -73.492218, - 45.489407 - ], - [ - -73.492027, - 45.489271 - ], - [ - -73.491721, - 45.489052 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.491557, - 45.488939 - ], - [ - -73.490801, - 45.488399 - ], - [ - -73.489411, - 45.487405 - ], - [ - -73.489378, - 45.48738 - ], - [ - -73.489048, - 45.487135 - ], - [ - -73.488568, - 45.486806 - ], - [ - -73.487831, - 45.486284 - ], - [ - -73.487161, - 45.485809 - ], - [ - -73.487051, - 45.485731 - ], - [ - -73.486783, - 45.485533 - ], - [ - -73.486446, - 45.485294 - ], - [ - -73.485807, - 45.484835 - ], - [ - -73.485416, - 45.484552 - ], - [ - -73.485024, - 45.484272 - ], - [ - -73.484263, - 45.483728 - ], - [ - -73.483637, - 45.483278 - ], - [ - -73.483483, - 45.483175 - ], - [ - -73.483337, - 45.483067 - ], - [ - -73.482999, - 45.482824 - ], - [ - -73.482644, - 45.48257 - ], - [ - -73.482188, - 45.482243 - ], - [ - -73.482091, - 45.482176 - ], - [ - -73.481995, - 45.482108 - ], - [ - -73.481822, - 45.481987 - ], - [ - -73.481721, - 45.481912 - ], - [ - -73.48159, - 45.481816 - ], - [ - -73.481567, - 45.481829 - ], - [ - -73.481265, - 45.482036 - ], - [ - -73.480765, - 45.482378 - ], - [ - -73.480475, - 45.482571 - ], - [ - -73.479992, - 45.48292 - ], - [ - -73.479989, - 45.482922 - ], - [ - -73.479836, - 45.48303 - ], - [ - -73.479534, - 45.483242 - ], - [ - -73.479322, - 45.483399 - ], - [ - -73.479252, - 45.48344 - ], - [ - -73.477739, - 45.484479 - ], - [ - -73.477668, - 45.484528 - ], - [ - -73.477571, - 45.484591 - ], - [ - -73.476994, - 45.484996 - ], - [ - -73.476286, - 45.485495 - ], - [ - -73.476102, - 45.485612 - ], - [ - -73.475956, - 45.48572 - ], - [ - -73.475613, - 45.485467 - ], - [ - -73.475481, - 45.485369 - ], - [ - -73.475271, - 45.485218 - ], - [ - -73.475135, - 45.485121 - ], - [ - -73.474818, - 45.484892 - ], - [ - -73.474642, - 45.484763 - ], - [ - -73.474566, - 45.484707 - ], - [ - -73.473747, - 45.484113 - ], - [ - -73.473055, - 45.483614 - ], - [ - -73.472948, - 45.483537 - ], - [ - -73.472033, - 45.482872 - ], - [ - -73.471834, - 45.482727 - ], - [ - -73.47134, - 45.482367 - ], - [ - -73.470904, - 45.482036 - ], - [ - -73.470805, - 45.481962 - ], - [ - -73.470742, - 45.481922 - ], - [ - -73.470609, - 45.481836 - ], - [ - -73.470239, - 45.481512 - ], - [ - -73.470149, - 45.481381 - ], - [ - -73.470101, - 45.481279 - ], - [ - -73.469844, - 45.480737 - ], - [ - -73.469791, - 45.480625 - ], - [ - -73.469913, - 45.480604 - ], - [ - -73.470068, - 45.480576 - ], - [ - -73.470287, - 45.480532 - ], - [ - -73.470383, - 45.480513 - ], - [ - -73.470657, - 45.480464 - ], - [ - -73.471292, - 45.480347 - ], - [ - -73.471409, - 45.480342 - ], - [ - -73.47151, - 45.480342 - ], - [ - -73.471568, - 45.480347 - ], - [ - -73.471671, - 45.48036 - ], - [ - -73.471804, - 45.480383 - ], - [ - -73.471904, - 45.480419 - ], - [ - -73.472029, - 45.480487 - ], - [ - -73.47207, - 45.480511 - ], - [ - -73.472135, - 45.48055 - ], - [ - -73.472485, - 45.480311 - ], - [ - -73.47284, - 45.480068 - ], - [ - -73.474157, - 45.479169 - ], - [ - -73.474346, - 45.479046 - ], - [ - -73.474461, - 45.478971 - ], - [ - -73.475372, - 45.478413 - ], - [ - -73.475478, - 45.478344 - ], - [ - -73.475599, - 45.478266 - ], - [ - -73.476014, - 45.477996 - ], - [ - -73.476119, - 45.477927 - ], - [ - -73.476929, - 45.478485 - ], - [ - -73.477462, - 45.478904 - ], - [ - -73.477559, - 45.478972 - ], - [ - -73.477667, - 45.479048 - ], - [ - -73.477713, - 45.479021 - ], - [ - -73.477757, - 45.479003 - ], - [ - -73.477866, - 45.478954 - ], - [ - -73.477979, - 45.478918 - ], - [ - -73.478075, - 45.478904 - ], - [ - -73.478146, - 45.478904 - ], - [ - -73.478298, - 45.478904 - ], - [ - -73.478426, - 45.478904 - ], - [ - -73.47892, - 45.478914 - ], - [ - -73.479078, - 45.478918 - ], - [ - -73.479175, - 45.478922 - ], - [ - -73.479295, - 45.478922 - ], - [ - -73.479623, - 45.478936 - ], - [ - -73.480089, - 45.478949 - ], - [ - -73.481631, - 45.478977 - ], - [ - -73.482205, - 45.478986 - ], - [ - -73.482352, - 45.478989 - ], - [ - -73.482631, - 45.478995 - ], - [ - -73.482756, - 45.478997 - ], - [ - -73.484917, - 45.479027 - ], - [ - -73.485227, - 45.479031 - ], - [ - -73.485584, - 45.479045 - ], - [ - -73.485771, - 45.479058 - ], - [ - -73.486116, - 45.479058 - ], - [ - -73.486149, - 45.479058 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486526, - 45.47904 - ], - [ - -73.486789, - 45.47904 - ], - [ - -73.487039, - 45.479049 - ], - [ - -73.491329, - 45.479132 - ], - [ - -73.491508, - 45.479136 - ], - [ - -73.491713, - 45.47914 - ], - [ - -73.491714, - 45.479248 - ], - [ - -73.491713, - 45.479479 - ], - [ - -73.491712, - 45.479783 - ], - [ - -73.49169, - 45.479945 - ], - [ - -73.491627, - 45.480148 - ], - [ - -73.491553, - 45.480274 - ], - [ - -73.491487, - 45.480377 - ], - [ - -73.49127, - 45.480553 - ], - [ - -73.491103, - 45.480665 - ], - [ - -73.491016, - 45.480715 - ], - [ - -73.49089, - 45.480751 - ], - [ - -73.490751, - 45.480796 - ], - [ - -73.490511, - 45.480858 - ], - [ - -73.489826, - 45.480989 - ], - [ - -73.489679, - 45.481016 - ], - [ - -73.489524, - 45.481046 - ], - [ - -73.489517, - 45.481047 - ], - [ - -73.489299, - 45.481083 - ], - [ - -73.488724, - 45.481186 - ], - [ - -73.488596, - 45.481209 - ], - [ - -73.488358, - 45.481254 - ], - [ - -73.488145, - 45.481295 - ], - [ - -73.48795, - 45.481331 - ], - [ - -73.487751, - 45.481349 - ], - [ - -73.487396, - 45.481353 - ], - [ - -73.486991, - 45.481335 - ], - [ - -73.486845, - 45.481313 - ], - [ - -73.486702, - 45.481259 - ], - [ - -73.486595, - 45.481214 - ], - [ - -73.486506, - 45.481151 - ], - [ - -73.486352, - 45.480984 - ], - [ - -73.48629, - 45.480791 - ], - [ - -73.486283, - 45.480482 - ], - [ - -73.486282, - 45.480458 - ], - [ - -73.486298, - 45.480129 - ], - [ - -73.486318, - 45.479855 - ], - [ - -73.486329, - 45.479263 - ], - [ - -73.486367, - 45.479175 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486149, - 45.479058 - ], - [ - -73.485771, - 45.479058 - ], - [ - -73.485678, - 45.479052 - ], - [ - -73.485584, - 45.479045 - ], - [ - -73.485227, - 45.479031 - ], - [ - -73.484917, - 45.479027 - ], - [ - -73.482777, - 45.478997 - ], - [ - -73.482756, - 45.478997 - ], - [ - -73.482631, - 45.478995 - ], - [ - -73.482205, - 45.478986 - ], - [ - -73.481631, - 45.478977 - ], - [ - -73.480089, - 45.478949 - ], - [ - -73.479623, - 45.478936 - ], - [ - -73.479295, - 45.478922 - ], - [ - -73.479256, - 45.478922 - ], - [ - -73.479175, - 45.478922 - ], - [ - -73.479078, - 45.478918 - ], - [ - -73.478426, - 45.478904 - ], - [ - -73.478115, - 45.478841 - ], - [ - -73.477983, - 45.47885 - ], - [ - -73.477828, - 45.478837 - ], - [ - -73.477715, - 45.478814 - ], - [ - -73.477616, - 45.478774 - ], - [ - -73.477564, - 45.478751 - ], - [ - -73.477508, - 45.478715 - ], - [ - -73.477033, - 45.478413 - ], - [ - -73.476647, - 45.478131 - ], - [ - -73.47654, - 45.478053 - ], - [ - -73.476251, - 45.477842 - ], - [ - -73.475153, - 45.477059 - ], - [ - -73.474544, - 45.476636 - ], - [ - -73.474345, - 45.476487 - ], - [ - -73.474276, - 45.476436 - ], - [ - -73.474156, - 45.476346 - ], - [ - -73.4733, - 45.475709 - ], - [ - -73.473152, - 45.475605 - ], - [ - -73.472484, - 45.475128 - ], - [ - -73.472409, - 45.475069 - ], - [ - -73.47218, - 45.47489 - ], - [ - -73.472074, - 45.474808 - ], - [ - -73.471729, - 45.474583 - ], - [ - -73.470359, - 45.473598 - ], - [ - -73.470064, - 45.473386 - ], - [ - -73.468607, - 45.472409 - ], - [ - -73.468277, - 45.472099 - ], - [ - -73.4682, - 45.472022 - ], - [ - -73.468135, - 45.47195 - ], - [ - -73.46809, - 45.471883 - ], - [ - -73.468053, - 45.47177 - ], - [ - -73.467979, - 45.471365 - ], - [ - -73.468005, - 45.471249 - ], - [ - -73.468022, - 45.471144 - ], - [ - -73.468064, - 45.470898 - ], - [ - -73.46809, - 45.470632 - ], - [ - -73.468112, - 45.470407 - ], - [ - -73.468119, - 45.470155 - ], - [ - -73.468115, - 45.470044 - ], - [ - -73.468111, - 45.469894 - ], - [ - -73.468108, - 45.469818 - ], - [ - -73.468107, - 45.469773 - ], - [ - -73.46805, - 45.4693 - ], - [ - -73.467949, - 45.468816 - ], - [ - -73.467932, - 45.468733 - ], - [ - -73.467793, - 45.468274 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.46758, - 45.467757 - ], - [ - -73.467357, - 45.467296 - ], - [ - -73.466914, - 45.466403 - ], - [ - -73.466752, - 45.466083 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466352, - 45.465288 - ], - [ - -73.466238, - 45.465062 - ], - [ - -73.466142, - 45.464853 - ], - [ - -73.466048, - 45.464638 - ], - [ - -73.46599, - 45.464498 - ], - [ - -73.465967, - 45.464441 - ], - [ - -73.465777, - 45.463945 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465663, - 45.463449 - ], - [ - -73.465646, - 45.463238 - ], - [ - -73.465636, - 45.463073 - ], - [ - -73.465461, - 45.461275 - ], - [ - -73.465447, - 45.461133 - ], - [ - -73.465251, - 45.459263 - ], - [ - -73.465215, - 45.458893 - ], - [ - -73.465199, - 45.458728 - ], - [ - -73.465132, - 45.458038 - ], - [ - -73.465113, - 45.457592 - ], - [ - -73.465124, - 45.457143 - ], - [ - -73.465143, - 45.45685 - ], - [ - -73.465153, - 45.456755 - ], - [ - -73.465199, - 45.456301 - ], - [ - -73.465244, - 45.456 - ], - [ - -73.465335, - 45.455572 - ], - [ - -73.465339, - 45.455554 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.46428, - 45.45465 - ], - [ - -73.463912, - 45.454506 - ], - [ - -73.463601, - 45.454377 - ], - [ - -73.463312, - 45.454258 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.461805, - 45.453576 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.459815, - 45.452691 - ], - [ - -73.459196, - 45.452403 - ], - [ - -73.45904, - 45.452331 - ], - [ - -73.458688, - 45.452137 - ], - [ - -73.458046, - 45.451791 - ], - [ - -73.457688, - 45.451583 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457598, - 45.451363 - ], - [ - -73.457627, - 45.45129 - ], - [ - -73.457661, - 45.451176 - ], - [ - -73.457648, - 45.45104 - ], - [ - -73.457607, - 45.450938 - ], - [ - -73.457498, - 45.450823 - ], - [ - -73.457365, - 45.450743 - ] - ] - }, - "id": 347, - "properties": { - "id": "34e43226-96e1-4498-88af-498503f54686", - "data": { - "gtfs": { - "shape_id": "650_1_A" - }, - "segments": [ - { - "distanceMeters": 166, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 100, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 66, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 104, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 26, - "travelTimeSeconds": 5 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 368, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 421, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 396, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 402, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 883, - "travelTimeSeconds": 158 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 615, - "travelTimeSeconds": 110 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 20 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 234, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13086, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7730.31604051811, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.59, - "travelTimeWithoutDwellTimesSeconds": 2340, - "operatingTimeWithLayoverTimeSeconds": 2574, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2340, - "operatingSpeedWithLayoverMetersPerSecond": 5.08, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.59 - }, - "mode": "bus", - "name": "École Antoine-Brossard", - "color": "#A32638", - "nodes": [ - "7009c13e-76ca-4283-afe5-33492dbd6d10", - "bb609a9b-192c-4f8e-9177-9dbd5b0d51a5", - "ed39b486-0ae1-40e4-a1bb-022292e07d90", - "36a7184c-7248-4c15-a0a7-68c04bd48cc7", - "9bf48d6d-7a0b-4fbe-9125-1eef756e334f", - "1232f389-204f-48ac-a95f-0f1b3e5706b2", - "23cc64ae-3ce4-46c2-8d0a-9082f50074d0", - "a230c1b0-ee13-40c1-8d3f-12ae20006cc6", - "46687bb1-1189-4edc-bbd4-c90db18d4ff5", - "46687bb1-1189-4edc-bbd4-c90db18d4ff5", - "df5b9592-81e3-4b2c-8a30-7f3a9144671b", - "d24bea6e-da8d-4183-8a5f-0e99be199484", - "6557d1fe-6975-49e2-871c-ab07d42ea35b", - "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", - "1cea6199-481e-43b0-8d4a-8c7593ff485f", - "467e03f3-2556-4d22-ae48-618a76e6b0b4", - "ea9801c9-a110-4900-bcae-f1b3a40050e8", - "0b6032e7-414a-429f-9df2-796599b947c2", - "88d8365e-2528-4422-a483-bb2efd9de617", - "fa220212-b6b2-4456-934f-7248f9884444", - "196681e4-c9e5-4a79-a3b1-ce225227e0aa", - "54bbe390-ff6d-41d9-bd4b-1e4843d66512", - "aa413165-9699-49b6-9dea-fa35bda8f373", - "0a623471-271f-47f5-9a85-7feece2a3285", - "dc5fe0eb-b8cc-4186-82d3-6787360ae612", - "a3997372-5a39-4bfb-8751-2c107b865fce", - "2d362ed7-6d89-4629-988c-787207ccdc69", - "3c04c568-5ef2-4b47-8d34-b0d175358d60", - "c229b499-645e-4877-8f57-0fc6de2a8d53", - "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", - "a4f163e1-b90e-4fc3-82f3-f03b3181860d", - "c2e1b4a6-db9f-4050-848a-68486b390a21", - "96e97125-39ff-47a9-b41d-043c4ca5c57e", - "784b0f22-55ff-44d1-a754-ddad81fb81cd", - "c04702f7-b2cf-440e-a6da-0a84aefc3963", - "f32e29fd-d271-4ae6-8083-6d24349dccdf", - "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", - "528dcb9e-5a83-46d3-8e03-42692ca57a5a", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", - "b4a272ff-ad07-49f4-b3bf-37e38018a4d0", - "a9e9d254-0411-40ff-8540-2c41b97aa285", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "528dcb9e-5a83-46d3-8e03-42692ca57a5a", - "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", - "fe84c986-2907-4842-bde4-72fbe08a0576", - "d73e4ff6-4502-4376-9cf1-5410d307a82f", - "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", - "85f19be2-1f67-4673-b3b3-52d06ed31ae3", - "51e1600d-418e-4477-9b26-9e5507d72a03", - "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "74887516-47d5-4269-9513-84672d18e287", - "1e3a74d9-9d8a-467f-a82e-3dafee501e32", - "2946050b-73ca-45c7-be10-f80ba5b43ab5", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "ab493a3c-1217-4122-93b5-217f7741b2ea", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "44eacee6-a348-48cf-aeda-c9ddae958f8e" - ], - "stops": [], - "line_id": "5e84d4cc-fcb7-4c39-bd5f-84a197ded9a7", - "segments": [ - 0, - 3, - 6, - 9, - 12, - 15, - 19, - 24, - 32, - 37, - 42, - 49, - 57, - 66, - 70, - 76, - 90, - 101, - 112, - 120, - 122, - 128, - 132, - 138, - 149, - 155, - 161, - 168, - 173, - 176, - 181, - 188, - 203, - 208, - 213, - 217, - 227, - 235, - 242, - 250, - 270, - 284, - 289, - 298, - 306, - 318, - 325, - 329, - 333, - 345, - 353, - 375, - 377, - 394, - 397, - 400, - 404 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 347, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.457365, - 45.450743 - ], - [ - -73.457311, - 45.45071 - ], - [ - -73.457055, - 45.450562 - ], - [ - -73.45697, - 45.450481 - ], - [ - -73.456931, - 45.450397 - ], - [ - -73.456841, - 45.450279 - ], - [ - -73.456733, - 45.450296 - ], - [ - -73.456625, - 45.450319 - ], - [ - -73.456525, - 45.450368 - ], - [ - -73.456438, - 45.450427 - ], - [ - -73.456357, - 45.45049 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456282, - 45.450641 - ], - [ - -73.456274, - 45.450721 - ], - [ - -73.456292, - 45.450794 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.45714, - 45.451439 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457924, - 45.451894 - ], - [ - -73.458487, - 45.4522 - ], - [ - -73.458729, - 45.45233 - ], - [ - -73.458941, - 45.452443 - ], - [ - -73.459713, - 45.452799 - ], - [ - -73.46123, - 45.453471 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.462917, - 45.454222 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463822, - 45.454609 - ], - [ - -73.464888, - 45.45506 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465093, - 45.455349 - ], - [ - -73.465048, - 45.455509 - ], - [ - -73.465041, - 45.455536 - ], - [ - -73.464975, - 45.455829 - ], - [ - -73.464919, - 45.45613 - ], - [ - -73.464878, - 45.456427 - ], - [ - -73.464848, - 45.456873 - ], - [ - -73.464844, - 45.457169 - ], - [ - -73.464871, - 45.457574 - ], - [ - -73.464981, - 45.459101 - ], - [ - -73.464994, - 45.459278 - ], - [ - -73.465215, - 45.461562 - ], - [ - -73.465247, - 45.461893 - ], - [ - -73.465328, - 45.462497 - ], - [ - -73.465435, - 45.463211 - ], - [ - -73.465484, - 45.463543 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467476, - 45.467991 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467548, - 45.468225 - ], - [ - -73.467698, - 45.468792 - ], - [ - -73.467776, - 45.469183 - ], - [ - -73.46782, - 45.469453 - ], - [ - -73.467839, - 45.469679 - ], - [ - -73.467865, - 45.469989 - ], - [ - -73.467864, - 45.470057 - ], - [ - -73.467862, - 45.470168 - ], - [ - -73.46786, - 45.470362 - ], - [ - -73.467821, - 45.470781 - ], - [ - -73.467786, - 45.471019 - ], - [ - -73.467768, - 45.4711 - ], - [ - -73.467742, - 45.471226 - ], - [ - -73.467655, - 45.471563 - ], - [ - -73.467617, - 45.471689 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.468499, - 45.472486 - ], - [ - -73.469236, - 45.473 - ], - [ - -73.469633, - 45.473276 - ], - [ - -73.469926, - 45.473481 - ], - [ - -73.471608, - 45.474678 - ], - [ - -73.471773, - 45.4748 - ], - [ - -73.471919, - 45.474907 - ], - [ - -73.472018, - 45.474979 - ], - [ - -73.47234, - 45.475227 - ], - [ - -73.472601, - 45.475413 - ], - [ - -73.473157, - 45.475808 - ], - [ - -73.473415, - 45.476001 - ], - [ - -73.473816, - 45.476288 - ], - [ - -73.475018, - 45.477149 - ], - [ - -73.475694, - 45.477627 - ], - [ - -73.476119, - 45.477927 - ], - [ - -73.476929, - 45.478485 - ], - [ - -73.477234, - 45.478725 - ], - [ - -73.477462, - 45.478904 - ], - [ - -73.477542, - 45.47896 - ], - [ - -73.477667, - 45.479048 - ], - [ - -73.477713, - 45.479021 - ], - [ - -73.477757, - 45.479003 - ], - [ - -73.477866, - 45.478954 - ], - [ - -73.477979, - 45.478918 - ], - [ - -73.478075, - 45.478904 - ], - [ - -73.478146, - 45.478904 - ], - [ - -73.478298, - 45.478904 - ], - [ - -73.478426, - 45.478904 - ], - [ - -73.478895, - 45.478914 - ], - [ - -73.479078, - 45.478918 - ], - [ - -73.479175, - 45.478922 - ], - [ - -73.479295, - 45.478922 - ], - [ - -73.479623, - 45.478936 - ], - [ - -73.480089, - 45.478949 - ], - [ - -73.481631, - 45.478977 - ], - [ - -73.482205, - 45.478986 - ], - [ - -73.482327, - 45.478988 - ], - [ - -73.482631, - 45.478995 - ], - [ - -73.482756, - 45.478997 - ], - [ - -73.484917, - 45.479027 - ], - [ - -73.485227, - 45.479031 - ], - [ - -73.485584, - 45.479045 - ], - [ - -73.485771, - 45.479058 - ], - [ - -73.486092, - 45.479058 - ], - [ - -73.486149, - 45.479058 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486526, - 45.47904 - ], - [ - -73.486789, - 45.47904 - ], - [ - -73.487039, - 45.479049 - ], - [ - -73.491329, - 45.479132 - ], - [ - -73.49147, - 45.479135 - ], - [ - -73.491616, - 45.479138 - ], - [ - -73.491713, - 45.47914 - ], - [ - -73.491714, - 45.479248 - ], - [ - -73.491712, - 45.479783 - ], - [ - -73.49169, - 45.479945 - ], - [ - -73.491627, - 45.480148 - ], - [ - -73.491553, - 45.480274 - ], - [ - -73.491487, - 45.480377 - ], - [ - -73.49127, - 45.480553 - ], - [ - -73.491103, - 45.480665 - ], - [ - -73.491016, - 45.480715 - ], - [ - -73.49089, - 45.480751 - ], - [ - -73.490751, - 45.480796 - ], - [ - -73.490511, - 45.480858 - ], - [ - -73.489826, - 45.480989 - ], - [ - -73.489679, - 45.481016 - ], - [ - -73.489517, - 45.481047 - ], - [ - -73.489399, - 45.481067 - ], - [ - -73.489299, - 45.481083 - ], - [ - -73.488747, - 45.481182 - ], - [ - -73.488596, - 45.481209 - ], - [ - -73.488358, - 45.481254 - ], - [ - -73.488145, - 45.481295 - ], - [ - -73.48795, - 45.481331 - ], - [ - -73.487751, - 45.481349 - ], - [ - -73.487396, - 45.481353 - ], - [ - -73.486991, - 45.481335 - ], - [ - -73.486845, - 45.481313 - ], - [ - -73.486702, - 45.481259 - ], - [ - -73.486595, - 45.481214 - ], - [ - -73.486506, - 45.481151 - ], - [ - -73.486352, - 45.480984 - ], - [ - -73.48629, - 45.480791 - ], - [ - -73.486283, - 45.480499 - ], - [ - -73.486282, - 45.480458 - ], - [ - -73.486298, - 45.480129 - ], - [ - -73.486318, - 45.479855 - ], - [ - -73.486329, - 45.479263 - ], - [ - -73.48636, - 45.479191 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486149, - 45.479058 - ], - [ - -73.485826, - 45.479058 - ], - [ - -73.485771, - 45.479058 - ], - [ - -73.485584, - 45.479045 - ], - [ - -73.485227, - 45.479031 - ], - [ - -73.484917, - 45.479027 - ], - [ - -73.482801, - 45.478997 - ], - [ - -73.482756, - 45.478997 - ], - [ - -73.482631, - 45.478995 - ], - [ - -73.482205, - 45.478986 - ], - [ - -73.481631, - 45.478977 - ], - [ - -73.480089, - 45.478949 - ], - [ - -73.479623, - 45.478936 - ], - [ - -73.479295, - 45.478922 - ], - [ - -73.479292, - 45.478922 - ], - [ - -73.479175, - 45.478922 - ], - [ - -73.479078, - 45.478918 - ], - [ - -73.478426, - 45.478904 - ], - [ - -73.478115, - 45.478841 - ], - [ - -73.477983, - 45.47885 - ], - [ - -73.477828, - 45.478837 - ], - [ - -73.477715, - 45.478814 - ], - [ - -73.477616, - 45.478774 - ], - [ - -73.477564, - 45.478751 - ], - [ - -73.477508, - 45.478715 - ], - [ - -73.477033, - 45.478413 - ], - [ - -73.476663, - 45.478143 - ], - [ - -73.47654, - 45.478053 - ], - [ - -73.476251, - 45.477842 - ], - [ - -73.476119, - 45.477927 - ], - [ - -73.475937, - 45.478046 - ], - [ - -73.475478, - 45.478344 - ], - [ - -73.475372, - 45.478413 - ], - [ - -73.474532, - 45.478927 - ], - [ - -73.474461, - 45.478971 - ], - [ - -73.474157, - 45.479169 - ], - [ - -73.47284, - 45.480068 - ], - [ - -73.472485, - 45.480311 - ], - [ - -73.472246, - 45.480474 - ], - [ - -73.472135, - 45.48055 - ], - [ - -73.472029, - 45.480487 - ], - [ - -73.471904, - 45.480419 - ], - [ - -73.471804, - 45.480383 - ], - [ - -73.471671, - 45.48036 - ], - [ - -73.471568, - 45.480347 - ], - [ - -73.47151, - 45.480342 - ], - [ - -73.471409, - 45.480342 - ], - [ - -73.471292, - 45.480347 - ], - [ - -73.470657, - 45.480464 - ], - [ - -73.470383, - 45.480513 - ], - [ - -73.470287, - 45.480532 - ], - [ - -73.470068, - 45.480576 - ], - [ - -73.469898, - 45.480606 - ], - [ - -73.469791, - 45.480625 - ], - [ - -73.46985, - 45.48075 - ], - [ - -73.470101, - 45.481279 - ], - [ - -73.470149, - 45.481381 - ], - [ - -73.470239, - 45.481512 - ], - [ - -73.470516, - 45.481755 - ], - [ - -73.470609, - 45.481836 - ], - [ - -73.470742, - 45.481922 - ], - [ - -73.470805, - 45.481962 - ], - [ - -73.47134, - 45.482367 - ], - [ - -73.471834, - 45.482727 - ], - [ - -73.472033, - 45.482872 - ], - [ - -73.472844, - 45.483462 - ], - [ - -73.472948, - 45.483537 - ], - [ - -73.473747, - 45.484113 - ], - [ - -73.474476, - 45.484642 - ], - [ - -73.474566, - 45.484707 - ], - [ - -73.474818, - 45.484892 - ], - [ - -73.475135, - 45.485121 - ], - [ - -73.475481, - 45.485369 - ], - [ - -73.475661, - 45.485501 - ], - [ - -73.475956, - 45.48572 - ], - [ - -73.476102, - 45.485612 - ], - [ - -73.476109, - 45.485608 - ], - [ - -73.476286, - 45.485495 - ], - [ - -73.476994, - 45.484996 - ], - [ - -73.477494, - 45.484645 - ], - [ - -73.477571, - 45.484591 - ], - [ - -73.477668, - 45.484528 - ], - [ - -73.479252, - 45.48344 - ], - [ - -73.479322, - 45.483399 - ], - [ - -73.479534, - 45.483242 - ], - [ - -73.47976, - 45.483084 - ], - [ - -73.479836, - 45.48303 - ], - [ - -73.479989, - 45.482922 - ], - [ - -73.480475, - 45.482571 - ], - [ - -73.480765, - 45.482378 - ], - [ - -73.481567, - 45.481829 - ], - [ - -73.48159, - 45.481816 - ], - [ - -73.481822, - 45.481987 - ], - [ - -73.481851, - 45.482007 - ], - [ - -73.481995, - 45.482108 - ], - [ - -73.482091, - 45.482176 - ], - [ - -73.482188, - 45.482243 - ], - [ - -73.482644, - 45.48257 - ], - [ - -73.482999, - 45.482824 - ], - [ - -73.483337, - 45.483067 - ], - [ - -73.483483, - 45.483175 - ], - [ - -73.483637, - 45.483278 - ], - [ - -73.484263, - 45.483728 - ], - [ - -73.484784, - 45.484101 - ], - [ - -73.485416, - 45.484552 - ], - [ - -73.485807, - 45.484835 - ], - [ - -73.486446, - 45.485294 - ], - [ - -73.486783, - 45.485533 - ], - [ - -73.486863, - 45.485591 - ], - [ - -73.487051, - 45.485731 - ], - [ - -73.487831, - 45.486284 - ], - [ - -73.488568, - 45.486806 - ], - [ - -73.488965, - 45.487078 - ], - [ - -73.489048, - 45.487135 - ], - [ - -73.489411, - 45.487405 - ], - [ - -73.490801, - 45.488399 - ], - [ - -73.491471, - 45.488878 - ], - [ - -73.491557, - 45.488939 - ], - [ - -73.491637, - 45.488998 - ], - [ - -73.491721, - 45.489052 - ], - [ - -73.492218, - 45.489407 - ], - [ - -73.492419, - 45.48955 - ], - [ - -73.492465, - 45.489583 - ], - [ - -73.492778, - 45.489803 - ], - [ - -73.492976, - 45.489943 - ], - [ - -73.493573, - 45.490366 - ], - [ - -73.493701, - 45.490456 - ], - [ - -73.493838, - 45.49055 - ], - [ - -73.494242, - 45.490838 - ], - [ - -73.494259, - 45.490849 - ], - [ - -73.49433, - 45.490897 - ], - [ - -73.494917, - 45.491315 - ], - [ - -73.495204, - 45.491517 - ], - [ - -73.495442, - 45.491684 - ], - [ - -73.49562, - 45.491814 - ], - [ - -73.495851, - 45.491976 - ], - [ - -73.496235, - 45.492242 - ], - [ - -73.496321, - 45.492305 - ], - [ - -73.496372, - 45.492341 - ], - [ - -73.496416, - 45.492372 - ], - [ - -73.496772, - 45.492629 - ], - [ - -73.497128, - 45.492885 - ], - [ - -73.497339, - 45.493038 - ], - [ - -73.497557, - 45.493191 - ], - [ - -73.497633, - 45.493248 - ], - [ - -73.497771, - 45.493353 - ], - [ - -73.497866, - 45.493425 - ], - [ - -73.497927, - 45.49347 - ], - [ - -73.497995, - 45.493515 - ], - [ - -73.49804, - 45.493547 - ], - [ - -73.498238, - 45.493691 - ], - [ - -73.49848, - 45.493866 - ], - [ - -73.498616, - 45.49397 - ], - [ - -73.498797, - 45.494096 - ], - [ - -73.498924, - 45.49419 - ], - [ - -73.499159, - 45.494361 - ], - [ - -73.499315, - 45.494474 - ], - [ - -73.499359, - 45.494506 - ], - [ - -73.49959, - 45.494676 - ], - [ - -73.499763, - 45.494802 - ], - [ - -73.499778, - 45.494815 - ], - [ - -73.499817, - 45.494841 - ], - [ - -73.500025, - 45.494979 - ], - [ - -73.500064, - 45.495 - ], - [ - -73.500106, - 45.495026 - ], - [ - -73.500592, - 45.495409 - ], - [ - -73.50081, - 45.495567 - ], - [ - -73.501059, - 45.495724 - ], - [ - -73.501182, - 45.495805 - ], - [ - -73.501279, - 45.495868 - ], - [ - -73.501291, - 45.495877 - ], - [ - -73.501808, - 45.496251 - ], - [ - -73.502254, - 45.496561 - ], - [ - -73.502293, - 45.496588 - ], - [ - -73.502336, - 45.49662 - ], - [ - -73.50284, - 45.49698 - ], - [ - -73.50327, - 45.49729 - ], - [ - -73.503408, - 45.497389 - ], - [ - -73.503475, - 45.497438 - ], - [ - -73.504131, - 45.497897 - ], - [ - -73.504473, - 45.49814 - ], - [ - -73.504683, - 45.498293 - ], - [ - -73.504758, - 45.49835 - ], - [ - -73.504839, - 45.49841 - ], - [ - -73.505105, - 45.498595 - ], - [ - -73.505329, - 45.498757 - ], - [ - -73.505704, - 45.498928 - ], - [ - -73.506001, - 45.499076 - ], - [ - -73.506259, - 45.499211 - ], - [ - -73.506709, - 45.499427 - ], - [ - -73.506801, - 45.499467 - ], - [ - -73.50725, - 45.499659 - ], - [ - -73.50735, - 45.499701 - ], - [ - -73.507712, - 45.499859 - ], - [ - -73.508861, - 45.50034 - ], - [ - -73.508958, - 45.500376 - ], - [ - -73.509608, - 45.500651 - ], - [ - -73.509762, - 45.500713 - ], - [ - -73.50993, - 45.500781 - ], - [ - -73.510439, - 45.501014 - ], - [ - -73.511327, - 45.50142 - ], - [ - -73.512063, - 45.501735 - ], - [ - -73.512398, - 45.501874 - ], - [ - -73.5127, - 45.501847 - ], - [ - -73.512897, - 45.501829 - ], - [ - -73.513035, - 45.501807 - ], - [ - -73.513284, - 45.501793 - ], - [ - -73.51344, - 45.501784 - ], - [ - -73.513522, - 45.501784 - ], - [ - -73.5136, - 45.501784 - ], - [ - -73.513805, - 45.501793 - ], - [ - -73.513814, - 45.501793 - ], - [ - -73.514045, - 45.501797 - ], - [ - -73.514024, - 45.501904 - ], - [ - -73.513895, - 45.502209 - ], - [ - -73.513873, - 45.50226 - ], - [ - -73.513806, - 45.502427 - ], - [ - -73.513748, - 45.502535 - ], - [ - -73.513316, - 45.503103 - ], - [ - -73.513059, - 45.503443 - ], - [ - -73.512873, - 45.503688 - ], - [ - -73.512716, - 45.503804 - ], - [ - -73.512314, - 45.504354 - ], - [ - -73.512272, - 45.504412 - ], - [ - -73.511819, - 45.505019 - ], - [ - -73.511434, - 45.505532 - ], - [ - -73.511362, - 45.505627 - ], - [ - -73.510901, - 45.506234 - ], - [ - -73.510511, - 45.506765 - ], - [ - -73.510451, - 45.506846 - ], - [ - -73.509985, - 45.507458 - ], - [ - -73.509594, - 45.50797 - ], - [ - -73.509531, - 45.508052 - ], - [ - -73.509072, - 45.508673 - ], - [ - -73.508663, - 45.50921 - ], - [ - -73.508585, - 45.509312 - ], - [ - -73.508101, - 45.509951 - ], - [ - -73.507675, - 45.510521 - ] - ] - }, - "id": 348, - "properties": { - "id": "2107bcb9-3c8a-435c-a8c1-076ff1f30470", - "data": { - "gtfs": { - "shape_id": "650_2_R" - }, - "segments": [ - { - "distanceMeters": 248, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 463, - "travelTimeSeconds": 98 - }, - { - "distanceMeters": 1205, - "travelTimeSeconds": 256 - }, - { - "distanceMeters": 468, - "travelTimeSeconds": 100 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 420, - "travelTimeSeconds": 89 - }, - { - "distanceMeters": 397, - "travelTimeSeconds": 85 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 557, - "travelTimeSeconds": 118 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 107, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 36 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 282, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 13262, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 7730.31604051811, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 4.7, - "travelTimeWithoutDwellTimesSeconds": 2820, - "operatingTimeWithLayoverTimeSeconds": 3102, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2820, - "operatingSpeedWithLayoverMetersPerSecond": 4.28, - "averageSpeedWithoutDwellTimesMetersPerSecond": 4.7 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "44eacee6-a348-48cf-aeda-c9ddae958f8e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", - "2ac07b96-98be-4710-a749-3162a661fcb5", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "981ebecb-3dc2-4439-8648-8052a51df7ec", - "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", - "acb7092d-3b2a-4d79-a4e3-09e7e52af475", - "1345672a-9148-439f-9a52-b8a216612929", - "ece1943b-159a-42fa-a0c1-16e06714e25e", - "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", - "d73e4ff6-4502-4376-9cf1-5410d307a82f", - "c04702f7-b2cf-440e-a6da-0a84aefc3963", - "f32e29fd-d271-4ae6-8083-6d24349dccdf", - "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", - "528dcb9e-5a83-46d3-8e03-42692ca57a5a", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", - "b4a272ff-ad07-49f4-b3bf-37e38018a4d0", - "a9e9d254-0411-40ff-8540-2c41b97aa285", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "528dcb9e-5a83-46d3-8e03-42692ca57a5a", - "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", - "fe84c986-2907-4842-bde4-72fbe08a0576", - "784b0f22-55ff-44d1-a754-ddad81fb81cd", - "96e97125-39ff-47a9-b41d-043c4ca5c57e", - "c2e1b4a6-db9f-4050-848a-68486b390a21", - "a4f163e1-b90e-4fc3-82f3-f03b3181860d", - "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", - "c229b499-645e-4877-8f57-0fc6de2a8d53", - "3c04c568-5ef2-4b47-8d34-b0d175358d60", - "2d362ed7-6d89-4629-988c-787207ccdc69", - "a3997372-5a39-4bfb-8751-2c107b865fce", - "0a623471-271f-47f5-9a85-7feece2a3285", - "aa413165-9699-49b6-9dea-fa35bda8f373", - "54bbe390-ff6d-41d9-bd4b-1e4843d66512", - "7faed35b-7709-443d-b0ec-5f09ab018202", - "88d8365e-2528-4422-a483-bb2efd9de617", - "0b6032e7-414a-429f-9df2-796599b947c2", - "1cedf968-65c8-4c0f-b92c-c06da7b8fe69", - "16f75d06-f538-4735-a99f-9bc7eaa6eaab", - "1cea6199-481e-43b0-8d4a-8c7593ff485f", - "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", - "6557d1fe-6975-49e2-871c-ab07d42ea35b", - "0ac44bed-6f37-406e-8654-f8d5f36c840e", - "443288e2-2ae9-4c97-a015-0e176d8f71b2", - "a230c1b0-ee13-40c1-8d3f-12ae20006cc6", - "1232f389-204f-48ac-a95f-0f1b3e5706b2", - "9bf48d6d-7a0b-4fbe-9125-1eef756e334f", - "36a7184c-7248-4c15-a0a7-68c04bd48cc7", - "ed39b486-0ae1-40e4-a1bb-022292e07d90", - "bb609a9b-192c-4f8e-9177-9dbd5b0d51a5", - "7009c13e-76ca-4283-afe5-33492dbd6d10" - ], - "stops": [], - "line_id": "5e84d4cc-fcb7-4c39-bd5f-84a197ded9a7", - "segments": [ - 0, - 16, - 21, - 24, - 26, - 29, - 40, - 71, - 86, - 89, - 93, - 96, - 98, - 103, - 113, - 121, - 128, - 136, - 156, - 170, - 175, - 184, - 192, - 204, - 211, - 216, - 230, - 236, - 243, - 246, - 251, - 257, - 263, - 281, - 286, - 290, - 294, - 307, - 316, - 322, - 339, - 348, - 350, - 360, - 369, - 377, - 392, - 400, - 403, - 406, - 409, - 412 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 348, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.475383, - 45.468739 - ], - [ - -73.475537, - 45.468744 - ], - [ - -73.477761, - 45.468838 - ], - [ - -73.477791, - 45.468839 - ], - [ - -73.478795, - 45.46888 - ], - [ - -73.479733, - 45.468916 - ], - [ - -73.480587, - 45.468948 - ], - [ - -73.480705, - 45.468952 - ], - [ - -73.481592, - 45.468898 - ], - [ - -73.482517, - 45.468777 - ], - [ - -73.48391, - 45.468794 - ], - [ - -73.484035, - 45.468795 - ], - [ - -73.484852, - 45.468827 - ], - [ - -73.484983, - 45.468836 - ], - [ - -73.485068, - 45.468858 - ], - [ - -73.485183, - 45.468899 - ], - [ - -73.485272, - 45.468957 - ], - [ - -73.485492, - 45.469215 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.485925, - 45.469758 - ], - [ - -73.485957, - 45.470015 - ], - [ - -73.485933, - 45.470276 - ], - [ - -73.485863, - 45.471334 - ], - [ - -73.485859, - 45.471396 - ], - [ - -73.485922, - 45.47159 - ], - [ - -73.486077, - 45.471855 - ], - [ - -73.486282, - 45.472161 - ], - [ - -73.486545, - 45.47257 - ], - [ - -73.486646, - 45.47271 - ], - [ - -73.486715, - 45.472804 - ], - [ - -73.48607, - 45.47302 - ], - [ - -73.485914, - 45.473065 - ], - [ - -73.485421, - 45.473196 - ], - [ - -73.485194, - 45.47325 - ], - [ - -73.484873, - 45.473304 - ], - [ - -73.484747, - 45.473331 - ], - [ - -73.484539, - 45.473353 - ], - [ - -73.484309, - 45.47338 - ], - [ - -73.484047, - 45.473403 - ], - [ - -73.483829, - 45.473413 - ], - [ - -73.483761, - 45.473416 - ], - [ - -73.483613, - 45.473425 - ], - [ - -73.48263, - 45.473402 - ], - [ - -73.479095, - 45.47329 - ], - [ - -73.478915, - 45.473285 - ], - [ - -73.476016, - 45.473194 - ], - [ - -73.47556, - 45.473217 - ], - [ - -73.475367, - 45.473239 - ], - [ - -73.475163, - 45.47327 - ], - [ - -73.474757, - 45.473357 - ], - [ - -73.474613, - 45.473387 - ], - [ - -73.474531, - 45.473224 - ], - [ - -73.474431, - 45.473027 - ], - [ - -73.474274, - 45.472609 - ], - [ - -73.474213, - 45.472397 - ], - [ - -73.474173, - 45.472208 - ], - [ - -73.474165, - 45.472163 - ], - [ - -73.474141, - 45.472028 - ], - [ - -73.474136, - 45.472001 - ], - [ - -73.47411, - 45.47183 - ], - [ - -73.474121, - 45.471228 - ], - [ - -73.474166, - 45.470967 - ], - [ - -73.474399, - 45.469698 - ], - [ - -73.474423, - 45.469563 - ], - [ - -73.474454, - 45.469396 - ], - [ - -73.474489, - 45.469055 - ], - [ - -73.474519, - 45.468803 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474544, - 45.468492 - ], - [ - -73.474545, - 45.468488 - ], - [ - -73.474528, - 45.468236 - ], - [ - -73.474508, - 45.467936 - ], - [ - -73.474508, - 45.467294 - ], - [ - -73.474542, - 45.4665 - ], - [ - -73.474546, - 45.466404 - ], - [ - -73.474554, - 45.466199 - ], - [ - -73.474621, - 45.465194 - ], - [ - -73.474664, - 45.464506 - ], - [ - -73.474669, - 45.464397 - ], - [ - -73.474734, - 45.464067 - ], - [ - -73.474884, - 45.463697 - ], - [ - -73.475002, - 45.463492 - ], - [ - -73.47522, - 45.463212 - ], - [ - -73.475408, - 45.463039 - ], - [ - -73.47556, - 45.462909 - ], - [ - -73.475821, - 45.462711 - ], - [ - -73.476105, - 45.462495 - ], - [ - -73.476442, - 45.462257 - ], - [ - -73.476557, - 45.462176 - ], - [ - -73.477249, - 45.461685 - ], - [ - -73.478211, - 45.460958 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.47888, - 45.460399 - ], - [ - -73.479008, - 45.460264 - ], - [ - -73.479302, - 45.459904 - ], - [ - -73.479398, - 45.459769 - ], - [ - -73.479488, - 45.459616 - ], - [ - -73.479616, - 45.459382 - ], - [ - -73.479641, - 45.459328 - ], - [ - -73.479699, - 45.459202 - ], - [ - -73.47976, - 45.459027 - ], - [ - -73.479776, - 45.458968 - ], - [ - -73.479808, - 45.458865 - ], - [ - -73.479852, - 45.458707 - ], - [ - -73.479891, - 45.458478 - ], - [ - -73.479913, - 45.458325 - ], - [ - -73.479923, - 45.458145 - ], - [ - -73.479926, - 45.458073 - ], - [ - -73.479893, - 45.457659 - ], - [ - -73.479821, - 45.456908 - ], - [ - -73.479803, - 45.456723 - ], - [ - -73.479792, - 45.456611 - ], - [ - -73.479622, - 45.456606 - ], - [ - -73.479272, - 45.456594 - ], - [ - -73.476072, - 45.456487 - ], - [ - -73.475848, - 45.456479 - ], - [ - -73.474778, - 45.456443 - ], - [ - -73.473716, - 45.456411 - ], - [ - -73.47264, - 45.456375 - ], - [ - -73.471572, - 45.456339 - ], - [ - -73.47073, - 45.456312 - ], - [ - -73.47047, - 45.456303 - ], - [ - -73.469686, - 45.456262 - ], - [ - -73.46943, - 45.456244 - ], - [ - -73.468978, - 45.456199 - ], - [ - -73.468654, - 45.456152 - ], - [ - -73.468607, - 45.456145 - ], - [ - -73.468443, - 45.456109 - ], - [ - -73.467856, - 45.455996 - ], - [ - -73.467523, - 45.455919 - ], - [ - -73.467299, - 45.455861 - ], - [ - -73.466983, - 45.455757 - ], - [ - -73.466899, - 45.455728 - ], - [ - -73.466828, - 45.455703 - ], - [ - -73.466321, - 45.455501 - ], - [ - -73.466093, - 45.45541 - ], - [ - -73.465683, - 45.455224 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.463912, - 45.454506 - ], - [ - -73.463601, - 45.454377 - ], - [ - -73.463299, - 45.454252 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.461804, - 45.453576 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.459815, - 45.452691 - ], - [ - -73.459185, - 45.452398 - ], - [ - -73.45904, - 45.452331 - ], - [ - -73.458688, - 45.452137 - ], - [ - -73.458046, - 45.451791 - ], - [ - -73.457688, - 45.451583 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457598, - 45.451363 - ], - [ - -73.457627, - 45.45129 - ], - [ - -73.457661, - 45.451176 - ], - [ - -73.457648, - 45.45104 - ], - [ - -73.457607, - 45.450938 - ], - [ - -73.457498, - 45.450823 - ], - [ - -73.457365, - 45.450743 - ] - ] - }, - "id": 349, - "properties": { - "id": "e7b9b66a-6e48-489c-b8f6-5277f82c930f", - "data": { - "gtfs": { - "shape_id": "653_1_A" - }, - "segments": [ - { - "distanceMeters": 186, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 85, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 774, - "travelTimeSeconds": 120 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 581, - "travelTimeSeconds": 90 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 17 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6180, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2452.2778649386005, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.44, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 5.42, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.44 - }, - "mode": "bus", - "name": "École Antoine-Brossard", - "color": "#A32638", - "nodes": [ - "0296a406-079c-41f9-8c5b-0723a0b5f294", - "79c669a1-9060-4e5d-b272-f107884dee00", - "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "3e9388da-8f48-48c6-b6c0-5461e27eb26a", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "7e4b21bb-20d6-4104-9b98-071226922d49", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", - "2ef5dac7-c226-43bb-8534-6642e7a8ab89", - "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", - "3a8b9936-4595-4770-a3f4-b31253602356", - "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", - "1782a1a7-eddc-4228-a7a8-bf733f339e68", - "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", - "8443a69f-fccf-4a19-8d08-6da77269e686", - "2946050b-73ca-45c7-be10-f80ba5b43ab5", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "ab493a3c-1217-4122-93b5-217f7741b2ea", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "44eacee6-a348-48cf-aeda-c9ddae958f8e" - ], - "stops": [], - "line_id": "223b7a8b-6ab2-4c7b-9207-a0958d5dd4aa", - "segments": [ - 0, - 2, - 6, - 10, - 17, - 22, - 28, - 39, - 43, - 49, - 58, - 63, - 66, - 88, - 91, - 99, - 110, - 115, - 126, - 135, - 142, - 145, - 148, - 152 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 349, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.457365, - 45.450743 - ], - [ - -73.457311, - 45.45071 - ], - [ - -73.457055, - 45.450562 - ], - [ - -73.45697, - 45.450481 - ], - [ - -73.456931, - 45.450397 - ], - [ - -73.456841, - 45.450279 - ], - [ - -73.456733, - 45.450296 - ], - [ - -73.456625, - 45.450319 - ], - [ - -73.456525, - 45.450368 - ], - [ - -73.456438, - 45.450427 - ], - [ - -73.456357, - 45.45049 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456282, - 45.450641 - ], - [ - -73.456274, - 45.450721 - ], - [ - -73.456292, - 45.450794 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.457139, - 45.451438 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457924, - 45.451894 - ], - [ - -73.458487, - 45.4522 - ], - [ - -73.458728, - 45.452329 - ], - [ - -73.458941, - 45.452443 - ], - [ - -73.459713, - 45.452799 - ], - [ - -73.461228, - 45.45347 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.462915, - 45.454221 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463822, - 45.454609 - ], - [ - -73.464886, - 45.455059 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465851, - 45.455474 - ], - [ - -73.466482, - 45.45573 - ], - [ - -73.466742, - 45.45582 - ], - [ - -73.466794, - 45.455838 - ], - [ - -73.466905, - 45.455874 - ], - [ - -73.467229, - 45.455978 - ], - [ - -73.467462, - 45.456041 - ], - [ - -73.467802, - 45.456122 - ], - [ - -73.468131, - 45.456184 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468564, - 45.456262 - ], - [ - -73.468949, - 45.456316 - ], - [ - -73.469418, - 45.456365 - ], - [ - -73.469671, - 45.456392 - ], - [ - -73.470468, - 45.456429 - ], - [ - -73.471559, - 45.45646 - ], - [ - -73.472632, - 45.456497 - ], - [ - -73.473708, - 45.456537 - ], - [ - -73.474773, - 45.456569 - ], - [ - -73.475687, - 45.456589 - ], - [ - -73.475839, - 45.456592 - ], - [ - -73.479486, - 45.456714 - ], - [ - -73.479632, - 45.456719 - ], - [ - -73.479637, - 45.456774 - ], - [ - -73.479682, - 45.457262 - ], - [ - -73.47972, - 45.457668 - ], - [ - -73.479747, - 45.458082 - ], - [ - -73.479754, - 45.45832 - ], - [ - -73.479732, - 45.458469 - ], - [ - -73.479695, - 45.458689 - ], - [ - -73.479603, - 45.459 - ], - [ - -73.479545, - 45.459171 - ], - [ - -73.47951, - 45.459246 - ], - [ - -73.479465, - 45.459342 - ], - [ - -73.479339, - 45.459576 - ], - [ - -73.479253, - 45.45972 - ], - [ - -73.479162, - 45.45985 - ], - [ - -73.478872, - 45.460205 - ], - [ - -73.478751, - 45.460331 - ], - [ - -73.478315, - 45.460707 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.476638, - 45.46198 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.474375, - 45.468232 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474718, - 45.468735 - ], - [ - -73.474819, - 45.468708 - ], - [ - -73.474822, - 45.468708 - ], - [ - -73.475149, - 45.468731 - ], - [ - -73.475371, - 45.468738 - ], - [ - -73.475537, - 45.468744 - ], - [ - -73.477762, - 45.468838 - ], - [ - -73.477791, - 45.468839 - ], - [ - -73.478795, - 45.46888 - ], - [ - -73.479733, - 45.468916 - ], - [ - -73.480588, - 45.468948 - ], - [ - -73.480705, - 45.468952 - ], - [ - -73.481592, - 45.468898 - ], - [ - -73.482517, - 45.468777 - ], - [ - -73.483911, - 45.468794 - ], - [ - -73.484035, - 45.468795 - ], - [ - -73.484852, - 45.468827 - ], - [ - -73.484983, - 45.468836 - ], - [ - -73.485068, - 45.468858 - ], - [ - -73.485183, - 45.468899 - ], - [ - -73.485272, - 45.468957 - ], - [ - -73.485492, - 45.469216 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.485925, - 45.469758 - ], - [ - -73.485957, - 45.470015 - ], - [ - -73.485933, - 45.470276 - ], - [ - -73.485863, - 45.471335 - ], - [ - -73.485859, - 45.471396 - ], - [ - -73.485922, - 45.47159 - ], - [ - -73.486077, - 45.471855 - ], - [ - -73.486282, - 45.472161 - ], - [ - -73.486545, - 45.47257 - ], - [ - -73.486647, - 45.472711 - ], - [ - -73.486715, - 45.472804 - ], - [ - -73.48607, - 45.47302 - ], - [ - -73.485914, - 45.473065 - ], - [ - -73.485421, - 45.473196 - ], - [ - -73.485194, - 45.47325 - ], - [ - -73.484873, - 45.473304 - ], - [ - -73.484747, - 45.473331 - ], - [ - -73.484539, - 45.473353 - ], - [ - -73.484309, - 45.47338 - ], - [ - -73.484047, - 45.473403 - ], - [ - -73.483828, - 45.473413 - ], - [ - -73.483761, - 45.473416 - ], - [ - -73.483613, - 45.473425 - ], - [ - -73.48263, - 45.473402 - ], - [ - -73.479093, - 45.47329 - ], - [ - -73.478915, - 45.473285 - ], - [ - -73.476016, - 45.473194 - ], - [ - -73.47556, - 45.473217 - ], - [ - -73.475367, - 45.473239 - ], - [ - -73.475163, - 45.47327 - ], - [ - -73.474755, - 45.473357 - ], - [ - -73.474613, - 45.473387 - ], - [ - -73.474531, - 45.473224 - ], - [ - -73.474431, - 45.473027 - ], - [ - -73.474274, - 45.472609 - ], - [ - -73.474213, - 45.472397 - ], - [ - -73.474173, - 45.472208 - ], - [ - -73.474165, - 45.472163 - ], - [ - -73.474141, - 45.472028 - ], - [ - -73.474136, - 45.472 - ], - [ - -73.47411, - 45.47183 - ], - [ - -73.474121, - 45.471228 - ], - [ - -73.474166, - 45.470967 - ], - [ - -73.474399, - 45.469698 - ], - [ - -73.474424, - 45.469562 - ], - [ - -73.474454, - 45.469396 - ], - [ - -73.474489, - 45.469055 - ], - [ - -73.474518, - 45.468811 - ] - ] - }, - "id": 350, - "properties": { - "id": "5da0ddaf-124b-4e8e-ba37-2724fd67a41b", - "data": { - "gtfs": { - "shape_id": "653_2_R" - }, - "segments": [ - { - "distanceMeters": 248, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 593, - "travelTimeSeconds": 94 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 72, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 750, - "travelTimeSeconds": 119 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 84, - "travelTimeSeconds": 14 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6412, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2389.227891427287, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.29, - "travelTimeWithoutDwellTimesSeconds": 1020, - "operatingTimeWithLayoverTimeSeconds": 1200, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1020, - "operatingSpeedWithLayoverMetersPerSecond": 5.34, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.29 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "44eacee6-a348-48cf-aeda-c9ddae958f8e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", - "2ac07b96-98be-4710-a749-3162a661fcb5", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "981ebecb-3dc2-4439-8648-8052a51df7ec", - "2a268094-fe95-4a75-83da-d02aa638cbb6", - "1782a1a7-eddc-4228-a7a8-bf733f339e68", - "9a86a407-515f-4b5e-8a56-9a4c52c91c96", - "9a86a407-515f-4b5e-8a56-9a4c52c91c96", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "0296a406-079c-41f9-8c5b-0723a0b5f294", - "79c669a1-9060-4e5d-b272-f107884dee00", - "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "3e9388da-8f48-48c6-b6c0-5461e27eb26a", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "7e4b21bb-20d6-4104-9b98-071226922d49", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", - "2ef5dac7-c226-43bb-8534-6642e7a8ab89", - "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", - "3a8b9936-4595-4770-a3f4-b31253602356", - "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6" - ], - "stops": [], - "line_id": "223b7a8b-6ab2-4c7b-9207-a0958d5dd4aa", - "segments": [ - 0, - 16, - 21, - 24, - 26, - 29, - 40, - 51, - 53, - 56, - 64, - 71, - 73, - 101, - 110, - 112, - 116, - 120, - 127, - 132, - 138, - 149, - 153, - 159, - 168, - 173 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 350, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.45262, - 45.461963 - ], - [ - -73.451744, - 45.461344 - ], - [ - -73.451566, - 45.461218 - ], - [ - -73.450867, - 45.460728 - ], - [ - -73.450263, - 45.460311 - ], - [ - -73.450156, - 45.460237 - ], - [ - -73.449533, - 45.459751 - ], - [ - -73.449148, - 45.459368 - ], - [ - -73.448862, - 45.459013 - ], - [ - -73.44872, - 45.458837 - ], - [ - -73.447008, - 45.457621 - ], - [ - -73.446704, - 45.457387 - ], - [ - -73.446542, - 45.457279 - ], - [ - -73.446522, - 45.457266 - ], - [ - -73.446491, - 45.457243 - ], - [ - -73.446422, - 45.457203 - ], - [ - -73.446401, - 45.457189 - ], - [ - -73.446378, - 45.457189 - ], - [ - -73.446356, - 45.457189 - ], - [ - -73.446333, - 45.457189 - ], - [ - -73.446306, - 45.457198 - ], - [ - -73.446296, - 45.457204 - ], - [ - -73.446277, - 45.457216 - ], - [ - -73.446222, - 45.457252 - ], - [ - -73.446124, - 45.457317 - ], - [ - -73.446093, - 45.457338 - ], - [ - -73.44586, - 45.457499 - ], - [ - -73.445829, - 45.457526 - ], - [ - -73.445802, - 45.457549 - ], - [ - -73.445734, - 45.457616 - ], - [ - -73.445677, - 45.457684 - ], - [ - -73.445622, - 45.45776 - ], - [ - -73.445587, - 45.457814 - ], - [ - -73.44556, - 45.457868 - ], - [ - -73.445533, - 45.457936 - ], - [ - -73.445517, - 45.45799 - ], - [ - -73.445494, - 45.458098 - ], - [ - -73.445484, - 45.458192 - ], - [ - -73.445487, - 45.458269 - ], - [ - -73.445499, - 45.458359 - ], - [ - -73.445519, - 45.458431 - ], - [ - -73.445566, - 45.458548 - ], - [ - -73.445589, - 45.458593 - ], - [ - -73.445635, - 45.458683 - ], - [ - -73.445516, - 45.458705 - ], - [ - -73.44522, - 45.458817 - ], - [ - -73.444921, - 45.458939 - ], - [ - -73.444686, - 45.459087 - ], - [ - -73.444104, - 45.459504 - ], - [ - -73.443294, - 45.460085 - ], - [ - -73.442676, - 45.460485 - ], - [ - -73.44257, - 45.460553 - ], - [ - -73.440903, - 45.461686 - ], - [ - -73.44047, - 45.46196 - ], - [ - -73.440096, - 45.462131 - ], - [ - -73.439948, - 45.462189 - ], - [ - -73.439923, - 45.462198 - ], - [ - -73.439564, - 45.462315 - ], - [ - -73.43934, - 45.462423 - ], - [ - -73.438984, - 45.462639 - ], - [ - -73.438333, - 45.463115 - ], - [ - -73.4379, - 45.463423 - ], - [ - -73.437701, - 45.463565 - ], - [ - -73.438136, - 45.46386 - ], - [ - -73.438391, - 45.464033 - ], - [ - -73.440876, - 45.465713 - ], - [ - -73.440976, - 45.46578 - ], - [ - -73.441167, - 45.465915 - ], - [ - -73.441736, - 45.466257 - ], - [ - -73.442013, - 45.466357 - ], - [ - -73.442166, - 45.466409 - ], - [ - -73.442317, - 45.46646 - ], - [ - -73.442367, - 45.466471 - ], - [ - -73.442596, - 45.466523 - ], - [ - -73.442918, - 45.466614 - ], - [ - -73.44316, - 45.466708 - ], - [ - -73.4434, - 45.466798 - ], - [ - -73.443571, - 45.466875 - ], - [ - -73.443775, - 45.466978 - ], - [ - -73.44395, - 45.467091 - ], - [ - -73.44423, - 45.467276 - ], - [ - -73.44435, - 45.46737 - ], - [ - -73.44443, - 45.467451 - ], - [ - -73.44446, - 45.46748 - ], - [ - -73.444535, - 45.46755 - ], - [ - -73.445104, - 45.468072 - ], - [ - -73.445679, - 45.468635 - ], - [ - -73.44617, - 45.469097 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.446957, - 45.469051 - ], - [ - -73.447066, - 45.468996 - ], - [ - -73.4474, - 45.468829 - ], - [ - -73.447822, - 45.468645 - ], - [ - -73.448427, - 45.468407 - ], - [ - -73.449383, - 45.468079 - ], - [ - -73.449753, - 45.467953 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450233, - 45.467787 - ], - [ - -73.451014, - 45.467517 - ], - [ - -73.451685, - 45.467271 - ], - [ - -73.451729, - 45.467255 - ], - [ - -73.451774, - 45.467238 - ], - [ - -73.45256, - 45.466966 - ], - [ - -73.452657, - 45.466933 - ], - [ - -73.453014, - 45.466803 - ], - [ - -73.45314, - 45.466749 - ], - [ - -73.453548, - 45.466537 - ], - [ - -73.453946, - 45.466304 - ], - [ - -73.454693, - 45.465786 - ], - [ - -73.454716, - 45.46577 - ], - [ - -73.45516, - 45.46545 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.457622, - 45.462203 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.45769, - 45.462033 - ], - [ - -73.457776, - 45.461966 - ], - [ - -73.45778, - 45.461865 - ], - [ - -73.457805, - 45.461716 - ], - [ - -73.457817, - 45.461563 - ], - [ - -73.45782, - 45.461477 - ], - [ - -73.457812, - 45.461383 - ], - [ - -73.457786, - 45.461212 - ], - [ - -73.457776, - 45.461175 - ], - [ - -73.457743, - 45.46105 - ], - [ - -73.457714, - 45.460928 - ], - [ - -73.457665, - 45.460784 - ], - [ - -73.457595, - 45.460627 - ], - [ - -73.457462, - 45.460379 - ], - [ - -73.457342, - 45.460166 - ], - [ - -73.456496, - 45.458668 - ], - [ - -73.456446, - 45.458579 - ], - [ - -73.455819, - 45.457454 - ], - [ - -73.455767, - 45.45736 - ], - [ - -73.455551, - 45.456955 - ], - [ - -73.455474, - 45.456802 - ], - [ - -73.455367, - 45.456563 - ], - [ - -73.455234, - 45.456113 - ], - [ - -73.455192, - 45.45589 - ], - [ - -73.455162, - 45.455731 - ], - [ - -73.455134, - 45.455281 - ], - [ - -73.455165, - 45.454908 - ], - [ - -73.455177, - 45.454772 - ], - [ - -73.455206, - 45.454588 - ], - [ - -73.455346, - 45.454111 - ], - [ - -73.455479, - 45.453796 - ], - [ - -73.455501, - 45.453755 - ], - [ - -73.455716, - 45.453355 - ], - [ - -73.455869, - 45.453127 - ], - [ - -73.455902, - 45.453077 - ], - [ - -73.456055, - 45.452883 - ], - [ - -73.45626, - 45.452645 - ], - [ - -73.456494, - 45.452415 - ], - [ - -73.45667, - 45.452253 - ], - [ - -73.457301, - 45.451707 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457598, - 45.451363 - ], - [ - -73.457627, - 45.45129 - ], - [ - -73.457661, - 45.451176 - ], - [ - -73.457648, - 45.45104 - ], - [ - -73.457607, - 45.450938 - ], - [ - -73.457498, - 45.450823 - ], - [ - -73.457365, - 45.450743 - ] - ] - }, - "id": 351, - "properties": { - "id": "77d48a89-3dc1-476b-95f1-5bb4cef02b9c", - "data": { - "gtfs": { - "shape_id": "656_1_A" - }, - "segments": [ - { - "distanceMeters": 97, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 335, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 464, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 19 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5295, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 1332.2803365216164, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.79, - "travelTimeWithoutDwellTimesSeconds": 780, - "operatingTimeWithLayoverTimeSeconds": 960, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 780, - "operatingSpeedWithLayoverMetersPerSecond": 5.51, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.79 - }, - "mode": "bus", - "name": "École Antoine-Brossard", - "color": "#A32638", - "nodes": [ - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "5cacbe7b-f308-4076-8842-25195b37874b", - "70f95ad2-eba4-4503-b7ff-17df9ce33ba4", - "e5e1c5c5-36d2-4221-83f3-658f6d4b6761", - "ea0252a4-936b-49d7-8af7-57e55fff6184", - "5b6c9f4f-7b19-41d9-ad96-38e8e97fc190", - "379600fc-81b2-40f5-8ddd-317a0b4fe4c0", - "735e4ba2-6503-4586-98da-feccec61a212", - "af14ce12-74fa-4edf-a439-c058d0014323", - "4bc3caff-ed56-497d-8ae6-f486cc6662a6", - "596478dc-5795-41d8-b76f-e8b99c5314f6", - "966472c1-4384-4d94-92f7-48afa023de51", - "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "4fc83229-a15e-48e1-aa4f-fae0073dacf9", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "ac84633b-6f3b-458c-8f4e-099cc310c05e", - "d271cca7-cd7a-4e22-8728-7a598b88fe32", - "f5f0a75d-b9e9-4575-845b-09748935c6e0", - "c77e59d9-5075-4e39-a183-6bacc1afd03e", - "59b4f87c-067e-4dc3-856a-07fb245d4fe3", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "44eacee6-a348-48cf-aeda-c9ddae958f8e" - ], - "stops": [], - "line_id": "3b2f326d-dba1-4f40-b7dd-3889635c14d4", - "segments": [ - 0, - 1, - 4, - 8, - 27, - 42, - 48, - 50, - 55, - 63, - 65, - 70, - 83, - 87, - 96, - 103, - 110, - 122, - 132, - 139, - 141, - 150, - 157, - 163 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 351, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.457365, - 45.450743 - ], - [ - -73.457311, - 45.45071 - ], - [ - -73.457055, - 45.450562 - ], - [ - -73.45697, - 45.450481 - ], - [ - -73.456931, - 45.450397 - ], - [ - -73.456841, - 45.450279 - ], - [ - -73.456733, - 45.450296 - ], - [ - -73.456625, - 45.450319 - ], - [ - -73.456525, - 45.450368 - ], - [ - -73.456438, - 45.450427 - ], - [ - -73.456357, - 45.45049 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456282, - 45.450641 - ], - [ - -73.456274, - 45.450721 - ], - [ - -73.456292, - 45.450794 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.457141, - 45.451439 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.456657, - 45.45205 - ], - [ - -73.456511, - 45.452168 - ], - [ - -73.456345, - 45.452339 - ], - [ - -73.456105, - 45.452573 - ], - [ - -73.455893, - 45.452816 - ], - [ - -73.455821, - 45.45291 - ], - [ - -73.45573, - 45.453027 - ], - [ - -73.455536, - 45.453301 - ], - [ - -73.455293, - 45.453751 - ], - [ - -73.455167, - 45.454075 - ], - [ - -73.455022, - 45.454574 - ], - [ - -73.455005, - 45.454641 - ], - [ - -73.454977, - 45.454754 - ], - [ - -73.454933, - 45.455281 - ], - [ - -73.454963, - 45.455744 - ], - [ - -73.455037, - 45.456136 - ], - [ - -73.455173, - 45.456599 - ], - [ - -73.455283, - 45.456847 - ], - [ - -73.455363, - 45.457004 - ], - [ - -73.455596, - 45.457405 - ], - [ - -73.455642, - 45.457486 - ], - [ - -73.456006, - 45.458134 - ], - [ - -73.456229, - 45.458531 - ], - [ - -73.456258, - 45.458583 - ], - [ - -73.456281, - 45.458624 - ], - [ - -73.457234, - 45.460331 - ], - [ - -73.457292, - 45.460433 - ], - [ - -73.45742, - 45.460667 - ], - [ - -73.457486, - 45.46082 - ], - [ - -73.457532, - 45.460955 - ], - [ - -73.457565, - 45.461072 - ], - [ - -73.457606, - 45.46123 - ], - [ - -73.457631, - 45.461396 - ], - [ - -73.457639, - 45.461477 - ], - [ - -73.457625, - 45.461707 - ], - [ - -73.457614, - 45.461848 - ], - [ - -73.457628, - 45.461934 - ], - [ - -73.45763, - 45.461949 - ], - [ - -73.45769, - 45.462033 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.454376, - 45.464741 - ], - [ - -73.45432, - 45.464702 - ], - [ - -73.453971, - 45.464449 - ], - [ - -73.453617, - 45.464193 - ], - [ - -73.453261, - 45.463932 - ], - [ - -73.452912, - 45.463662 - ], - [ - -73.452802, - 45.463536 - ], - [ - -73.452721, - 45.463379 - ], - [ - -73.452662, - 45.463158 - ], - [ - -73.45263, - 45.463001 - ], - [ - -73.452634, - 45.462879 - ], - [ - -73.452663, - 45.462722 - ], - [ - -73.452703, - 45.4626 - ], - [ - -73.452775, - 45.462447 - ], - [ - -73.452835, - 45.462344 - ], - [ - -73.452841, - 45.462335 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.452635, - 45.461973 - ], - [ - -73.45175, - 45.461348 - ], - [ - -73.451566, - 45.461218 - ], - [ - -73.450867, - 45.460728 - ], - [ - -73.450278, - 45.460322 - ], - [ - -73.450156, - 45.460237 - ], - [ - -73.449533, - 45.459751 - ], - [ - -73.449148, - 45.459368 - ], - [ - -73.448872, - 45.459026 - ], - [ - -73.44872, - 45.458837 - ], - [ - -73.447008, - 45.457621 - ], - [ - -73.446704, - 45.457387 - ], - [ - -73.446542, - 45.457279 - ], - [ - -73.446522, - 45.457266 - ], - [ - -73.446491, - 45.457243 - ], - [ - -73.446422, - 45.457203 - ], - [ - -73.446401, - 45.457189 - ], - [ - -73.446378, - 45.457189 - ], - [ - -73.446356, - 45.457189 - ], - [ - -73.446333, - 45.457189 - ], - [ - -73.446306, - 45.457198 - ], - [ - -73.446296, - 45.457204 - ], - [ - -73.446277, - 45.457216 - ], - [ - -73.446222, - 45.457252 - ], - [ - -73.446093, - 45.457338 - ], - [ - -73.445922, - 45.457456 - ], - [ - -73.44586, - 45.457499 - ], - [ - -73.445834, - 45.457522 - ], - [ - -73.445802, - 45.457549 - ], - [ - -73.445734, - 45.457616 - ], - [ - -73.445677, - 45.457684 - ], - [ - -73.445622, - 45.45776 - ], - [ - -73.445587, - 45.457814 - ], - [ - -73.44556, - 45.457868 - ], - [ - -73.445533, - 45.457936 - ], - [ - -73.445517, - 45.45799 - ], - [ - -73.445494, - 45.458098 - ], - [ - -73.445484, - 45.458192 - ], - [ - -73.445487, - 45.458269 - ], - [ - -73.445499, - 45.458359 - ], - [ - -73.445519, - 45.458431 - ], - [ - -73.445566, - 45.458548 - ], - [ - -73.445587, - 45.458589 - ], - [ - -73.445635, - 45.458683 - ], - [ - -73.445516, - 45.458705 - ], - [ - -73.44522, - 45.458817 - ], - [ - -73.444921, - 45.458939 - ], - [ - -73.444686, - 45.459087 - ], - [ - -73.444118, - 45.459494 - ], - [ - -73.443294, - 45.460085 - ], - [ - -73.44268, - 45.460481 - ], - [ - -73.44257, - 45.460553 - ], - [ - -73.440903, - 45.461686 - ], - [ - -73.44047, - 45.46196 - ], - [ - -73.440096, - 45.462131 - ], - [ - -73.439953, - 45.462187 - ], - [ - -73.439923, - 45.462198 - ], - [ - -73.439564, - 45.462315 - ], - [ - -73.43934, - 45.462423 - ], - [ - -73.438984, - 45.462639 - ], - [ - -73.438333, - 45.463115 - ], - [ - -73.437701, - 45.463565 - ], - [ - -73.437964, - 45.463744 - ], - [ - -73.438132, - 45.463858 - ], - [ - -73.438391, - 45.464033 - ], - [ - -73.440872, - 45.46571 - ], - [ - -73.440976, - 45.46578 - ], - [ - -73.441167, - 45.465915 - ], - [ - -73.441736, - 45.466257 - ], - [ - -73.442013, - 45.466357 - ], - [ - -73.442161, - 45.466407 - ], - [ - -73.442317, - 45.46646 - ], - [ - -73.442367, - 45.466471 - ], - [ - -73.442596, - 45.466523 - ], - [ - -73.442918, - 45.466614 - ], - [ - -73.44316, - 45.466708 - ], - [ - -73.4434, - 45.466798 - ], - [ - -73.443571, - 45.466875 - ], - [ - -73.443775, - 45.466978 - ], - [ - -73.44395, - 45.467091 - ], - [ - -73.44423, - 45.467276 - ], - [ - -73.44435, - 45.46737 - ], - [ - -73.44443, - 45.467451 - ], - [ - -73.44445, - 45.46747 - ], - [ - -73.444535, - 45.46755 - ], - [ - -73.445104, - 45.468072 - ], - [ - -73.445679, - 45.468635 - ], - [ - -73.446167, - 45.469095 - ] - ] - }, - "id": 352, - "properties": { - "id": "9de5ccc1-ffee-4eb0-b6aa-605c32e25821", - "data": { - "gtfs": { - "shape_id": "656_2_R" - }, - "segments": [ - { - "distanceMeters": 248, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 91, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 514, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 52, - "travelTimeSeconds": 7 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 30 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5055, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2238.9598785718053, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.66, - "travelTimeWithoutDwellTimesSeconds": 660, - "operatingTimeWithLayoverTimeSeconds": 840, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 660, - "operatingSpeedWithLayoverMetersPerSecond": 6.02, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.66 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "44eacee6-a348-48cf-aeda-c9ddae958f8e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "59b4f87c-067e-4dc3-856a-07fb245d4fe3", - "c77e59d9-5075-4e39-a183-6bacc1afd03e", - "f5f0a75d-b9e9-4575-845b-09748935c6e0", - "d271cca7-cd7a-4e22-8728-7a598b88fe32", - "3b708726-0db1-43de-b014-b11ddc9fc24a", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "5cacbe7b-f308-4076-8842-25195b37874b", - "70f95ad2-eba4-4503-b7ff-17df9ce33ba4", - "e5e1c5c5-36d2-4221-83f3-658f6d4b6761", - "ea0252a4-936b-49d7-8af7-57e55fff6184", - "5b6c9f4f-7b19-41d9-ad96-38e8e97fc190", - "379600fc-81b2-40f5-8ddd-317a0b4fe4c0", - "735e4ba2-6503-4586-98da-feccec61a212", - "af14ce12-74fa-4edf-a439-c058d0014323", - "4bc3caff-ed56-497d-8ae6-f486cc6662a6", - "596478dc-5795-41d8-b76f-e8b99c5314f6", - "966472c1-4384-4d94-92f7-48afa023de51", - "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c" - ], - "stops": [], - "line_id": "3b2f326d-dba1-4f40-b7dd-3889635c14d4", - "segments": [ - 0, - 16, - 18, - 23, - 29, - 38, - 40, - 43, - 54, - 67, - 82, - 84, - 85, - 88, - 92, - 111, - 126, - 132, - 134, - 139, - 147, - 149, - 154, - 167 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 352, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.486092, - 45.469091 - ], - [ - -73.486363, - 45.468976 - ], - [ - -73.486598, - 45.468913 - ], - [ - -73.486742, - 45.468895 - ], - [ - -73.486913, - 45.468899 - ], - [ - -73.487892, - 45.468935 - ], - [ - -73.488649, - 45.468977 - ], - [ - -73.488788, - 45.468985 - ], - [ - -73.492282, - 45.469102 - ], - [ - -73.492434, - 45.469107 - ], - [ - -73.4927, - 45.469111 - ], - [ - -73.49395, - 45.46917 - ], - [ - -73.494075, - 45.469188 - ], - [ - -73.494154, - 45.469237 - ], - [ - -73.494559, - 45.469968 - ], - [ - -73.494611, - 45.470061 - ], - [ - -73.494791, - 45.470417 - ], - [ - -73.494862, - 45.47056 - ], - [ - -73.494851, - 45.470811 - ], - [ - -73.494847, - 45.470884 - ], - [ - -73.49484, - 45.471001 - ], - [ - -73.495967, - 45.471037 - ], - [ - -73.496018, - 45.471127 - ], - [ - -73.496235, - 45.471478 - ], - [ - -73.496437, - 45.471928 - ], - [ - -73.496814, - 45.472585 - ], - [ - -73.496974, - 45.472864 - ], - [ - -73.497895, - 45.474517 - ], - [ - -73.497955, - 45.474625 - ], - [ - -73.498064, - 45.474821 - ], - [ - -73.497243, - 45.474807 - ], - [ - -73.496473, - 45.474726 - ], - [ - -73.495455, - 45.474677 - ], - [ - -73.495339, - 45.474671 - ], - [ - -73.494958, - 45.47465 - ], - [ - -73.494447, - 45.474632 - ], - [ - -73.493574, - 45.474611 - ], - [ - -73.49348, - 45.474609 - ], - [ - -73.492987, - 45.474582 - ], - [ - -73.492833, - 45.474564 - ], - [ - -73.492566, - 45.474483 - ], - [ - -73.4924, - 45.474429 - ], - [ - -73.492221, - 45.474321 - ], - [ - -73.491964, - 45.474047 - ], - [ - -73.491842, - 45.473885 - ], - [ - -73.491647, - 45.473668 - ], - [ - -73.491514, - 45.47352 - ], - [ - -73.490727, - 45.473858 - ], - [ - -73.490176, - 45.474077 - ], - [ - -73.489892, - 45.474191 - ], - [ - -73.489482, - 45.474308 - ], - [ - -73.48921, - 45.474343 - ], - [ - -73.488939, - 45.474348 - ], - [ - -73.488579, - 45.47433 - ], - [ - -73.48828, - 45.474348 - ], - [ - -73.487939, - 45.474393 - ], - [ - -73.487684, - 45.474466 - ], - [ - -73.487656, - 45.474474 - ], - [ - -73.487464, - 45.474541 - ], - [ - -73.487385, - 45.474582 - ], - [ - -73.486897, - 45.473997 - ], - [ - -73.486669, - 45.473713 - ], - [ - -73.486204, - 45.473181 - ], - [ - -73.486151, - 45.473119 - ], - [ - -73.48607, - 45.47302 - ], - [ - -73.485914, - 45.473065 - ], - [ - -73.485421, - 45.473196 - ], - [ - -73.485194, - 45.47325 - ], - [ - -73.484873, - 45.473304 - ], - [ - -73.484747, - 45.473331 - ], - [ - -73.484539, - 45.473353 - ], - [ - -73.484309, - 45.47338 - ], - [ - -73.484047, - 45.473403 - ], - [ - -73.48383, - 45.473413 - ], - [ - -73.483761, - 45.473416 - ], - [ - -73.483613, - 45.473425 - ], - [ - -73.48263, - 45.473402 - ], - [ - -73.479095, - 45.47329 - ], - [ - -73.478915, - 45.473285 - ], - [ - -73.476016, - 45.473194 - ], - [ - -73.47556, - 45.473217 - ], - [ - -73.475367, - 45.473239 - ], - [ - -73.475163, - 45.47327 - ], - [ - -73.474745, - 45.473359 - ], - [ - -73.474613, - 45.473387 - ], - [ - -73.474531, - 45.473224 - ], - [ - -73.474431, - 45.473027 - ], - [ - -73.474274, - 45.472609 - ], - [ - -73.474213, - 45.472397 - ], - [ - -73.474173, - 45.472208 - ], - [ - -73.474165, - 45.472163 - ], - [ - -73.474141, - 45.472028 - ], - [ - -73.474137, - 45.472001 - ], - [ - -73.47411, - 45.47183 - ], - [ - -73.474121, - 45.471228 - ], - [ - -73.474166, - 45.470967 - ], - [ - -73.474399, - 45.469698 - ], - [ - -73.474425, - 45.469555 - ], - [ - -73.474454, - 45.469396 - ], - [ - -73.474489, - 45.469055 - ], - [ - -73.474519, - 45.468803 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474544, - 45.468492 - ], - [ - -73.474545, - 45.468488 - ], - [ - -73.474528, - 45.468236 - ], - [ - -73.474508, - 45.467936 - ], - [ - -73.474508, - 45.467294 - ], - [ - -73.474542, - 45.4665 - ], - [ - -73.474546, - 45.466404 - ], - [ - -73.474554, - 45.466199 - ], - [ - -73.474621, - 45.465194 - ], - [ - -73.474664, - 45.464506 - ], - [ - -73.474669, - 45.464397 - ], - [ - -73.474734, - 45.464067 - ], - [ - -73.474884, - 45.463697 - ], - [ - -73.475002, - 45.463492 - ], - [ - -73.47522, - 45.463212 - ], - [ - -73.475408, - 45.463039 - ], - [ - -73.47556, - 45.462909 - ], - [ - -73.475821, - 45.462711 - ], - [ - -73.476105, - 45.462495 - ], - [ - -73.476442, - 45.462257 - ], - [ - -73.476557, - 45.462176 - ], - [ - -73.477249, - 45.461685 - ], - [ - -73.47822, - 45.460952 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.47888, - 45.460399 - ], - [ - -73.479008, - 45.460264 - ], - [ - -73.479302, - 45.459904 - ], - [ - -73.479398, - 45.459769 - ], - [ - -73.479488, - 45.459616 - ], - [ - -73.479616, - 45.459382 - ], - [ - -73.479645, - 45.45932 - ], - [ - -73.479699, - 45.459202 - ], - [ - -73.47976, - 45.459027 - ], - [ - -73.479776, - 45.458968 - ], - [ - -73.479808, - 45.458865 - ], - [ - -73.479852, - 45.458707 - ], - [ - -73.479891, - 45.458478 - ], - [ - -73.479913, - 45.458325 - ], - [ - -73.479923, - 45.458145 - ], - [ - -73.479926, - 45.458073 - ], - [ - -73.479893, - 45.457659 - ], - [ - -73.479821, - 45.456908 - ], - [ - -73.479803, - 45.456723 - ], - [ - -73.479792, - 45.456611 - ], - [ - -73.479622, - 45.456606 - ], - [ - -73.479363, - 45.456597 - ], - [ - -73.476073, - 45.456487 - ], - [ - -73.475848, - 45.456479 - ], - [ - -73.474778, - 45.456443 - ], - [ - -73.473716, - 45.456411 - ], - [ - -73.47264, - 45.456375 - ], - [ - -73.471572, - 45.456339 - ], - [ - -73.47073, - 45.456312 - ], - [ - -73.47047, - 45.456303 - ], - [ - -73.469686, - 45.456262 - ], - [ - -73.46943, - 45.456244 - ], - [ - -73.468978, - 45.456199 - ], - [ - -73.468654, - 45.456152 - ], - [ - -73.468607, - 45.456145 - ], - [ - -73.468443, - 45.456109 - ], - [ - -73.467856, - 45.455996 - ], - [ - -73.467523, - 45.455919 - ], - [ - -73.467299, - 45.455861 - ], - [ - -73.466983, - 45.455757 - ], - [ - -73.466899, - 45.455728 - ], - [ - -73.466828, - 45.455703 - ], - [ - -73.46631, - 45.455497 - ], - [ - -73.466093, - 45.45541 - ], - [ - -73.465683, - 45.455224 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.463912, - 45.454506 - ], - [ - -73.463601, - 45.454377 - ], - [ - -73.4633, - 45.454252 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.461793, - 45.453571 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.459815, - 45.452691 - ], - [ - -73.459185, - 45.452398 - ], - [ - -73.45904, - 45.452331 - ], - [ - -73.458688, - 45.452137 - ], - [ - -73.458046, - 45.451791 - ], - [ - -73.457688, - 45.451583 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457598, - 45.451363 - ], - [ - -73.457627, - 45.45129 - ], - [ - -73.457661, - 45.451176 - ], - [ - -73.457648, - 45.45104 - ], - [ - -73.457607, - 45.450938 - ], - [ - -73.457498, - 45.450823 - ], - [ - -73.457365, - 45.450743 - ] - ] - }, - "id": 353, - "properties": { - "id": "37afe4b2-0e8a-4c68-be2e-ac0fb07088e6", - "data": { - "gtfs": { - "shape_id": "660_1_A" - }, - "segments": [ - { - "distanceMeters": 205, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 84, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 774, - "travelTimeSeconds": 126 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 581, - "travelTimeSeconds": 94 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 18 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7395, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3024.198917110167, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.16, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 5.36, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.16 - }, - "mode": "bus", - "name": "École Antoine-Brossard", - "color": "#A32638", - "nodes": [ - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "d83daa69-bf92-4b93-8173-1c0fd22cbec0", - "66a0749c-2a5b-458d-b059-307f555cb93a", - "c5effd0a-a9b0-4cfe-8176-06c99313f58b", - "e7a825d7-e677-4fe7-b1ef-b6db556d3c70", - "9e1adf1c-c578-4c50-baba-31b7f0c157c4", - "2e10a277-1746-4c1f-9808-3de94d853988", - "28d21225-939d-4260-9ed4-5c109f412ad9", - "be011751-8885-454f-b767-5c0f1402d83f", - "c6165892-3719-417f-8d25-92e65471b42c", - "6735199f-47fc-47db-9116-7c110cca8945", - "6e4c328c-6fba-4e81-b589-59318e11a37a", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", - "2ef5dac7-c226-43bb-8534-6642e7a8ab89", - "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", - "3a8b9936-4595-4770-a3f4-b31253602356", - "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", - "1782a1a7-eddc-4228-a7a8-bf733f339e68", - "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", - "8443a69f-fccf-4a19-8d08-6da77269e686", - "2946050b-73ca-45c7-be10-f80ba5b43ab5", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "ab493a3c-1217-4122-93b5-217f7741b2ea", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "44eacee6-a348-48cf-aeda-c9ddae958f8e" - ], - "stops": [], - "line_id": "29429376-037c-4405-bf39-ccfd7d570b63", - "segments": [ - 0, - 6, - 8, - 14, - 18, - 25, - 27, - 33, - 36, - 45, - 48, - 56, - 62, - 73, - 77, - 83, - 92, - 97, - 100, - 122, - 125, - 133, - 144, - 149, - 160, - 169, - 176, - 179, - 182, - 186 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 353, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.457365, - 45.450743 - ], - [ - -73.457311, - 45.45071 - ], - [ - -73.457055, - 45.450562 - ], - [ - -73.45697, - 45.450481 - ], - [ - -73.456931, - 45.450397 - ], - [ - -73.456841, - 45.450279 - ], - [ - -73.456733, - 45.450296 - ], - [ - -73.456625, - 45.450319 - ], - [ - -73.456525, - 45.450368 - ], - [ - -73.456438, - 45.450427 - ], - [ - -73.456357, - 45.45049 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456282, - 45.450641 - ], - [ - -73.456274, - 45.450721 - ], - [ - -73.456292, - 45.450794 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.457139, - 45.451438 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457924, - 45.451894 - ], - [ - -73.458487, - 45.4522 - ], - [ - -73.458727, - 45.452329 - ], - [ - -73.458941, - 45.452443 - ], - [ - -73.459713, - 45.452799 - ], - [ - -73.461227, - 45.453469 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.462913, - 45.45422 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463822, - 45.454609 - ], - [ - -73.464884, - 45.455058 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465851, - 45.455474 - ], - [ - -73.466482, - 45.45573 - ], - [ - -73.466742, - 45.45582 - ], - [ - -73.466794, - 45.455838 - ], - [ - -73.466905, - 45.455874 - ], - [ - -73.467229, - 45.455978 - ], - [ - -73.467462, - 45.456041 - ], - [ - -73.467802, - 45.456122 - ], - [ - -73.468127, - 45.456183 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468564, - 45.456262 - ], - [ - -73.468949, - 45.456316 - ], - [ - -73.469418, - 45.456365 - ], - [ - -73.469671, - 45.456392 - ], - [ - -73.470468, - 45.456429 - ], - [ - -73.471559, - 45.45646 - ], - [ - -73.472632, - 45.456497 - ], - [ - -73.473708, - 45.456537 - ], - [ - -73.474773, - 45.456569 - ], - [ - -73.475682, - 45.456589 - ], - [ - -73.475839, - 45.456592 - ], - [ - -73.47948, - 45.456714 - ], - [ - -73.479632, - 45.456719 - ], - [ - -73.479682, - 45.457257 - ], - [ - -73.479701, - 45.457465 - ], - [ - -73.47972, - 45.457668 - ], - [ - -73.479747, - 45.458082 - ], - [ - -73.479754, - 45.45832 - ], - [ - -73.479732, - 45.458469 - ], - [ - -73.479695, - 45.458689 - ], - [ - -73.479603, - 45.459 - ], - [ - -73.479545, - 45.459171 - ], - [ - -73.479512, - 45.459241 - ], - [ - -73.479465, - 45.459342 - ], - [ - -73.479339, - 45.459576 - ], - [ - -73.479253, - 45.45972 - ], - [ - -73.479162, - 45.45985 - ], - [ - -73.478872, - 45.460205 - ], - [ - -73.478751, - 45.460331 - ], - [ - -73.47832, - 45.460703 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.476644, - 45.461976 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.474375, - 45.468225 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474718, - 45.468735 - ], - [ - -73.474819, - 45.468708 - ], - [ - -73.474822, - 45.468708 - ], - [ - -73.475143, - 45.46873 - ], - [ - -73.475149, - 45.468731 - ], - [ - -73.47536, - 45.468738 - ], - [ - -73.475537, - 45.468744 - ], - [ - -73.477751, - 45.468838 - ], - [ - -73.477791, - 45.468839 - ], - [ - -73.478795, - 45.46888 - ], - [ - -73.479733, - 45.468916 - ], - [ - -73.480576, - 45.468947 - ], - [ - -73.480705, - 45.468952 - ], - [ - -73.481592, - 45.468898 - ], - [ - -73.482517, - 45.468777 - ], - [ - -73.483899, - 45.468794 - ], - [ - -73.484035, - 45.468795 - ], - [ - -73.484852, - 45.468827 - ], - [ - -73.484983, - 45.468836 - ], - [ - -73.485068, - 45.468858 - ], - [ - -73.485183, - 45.468899 - ], - [ - -73.485272, - 45.468957 - ], - [ - -73.485486, - 45.469208 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.486093, - 45.469091 - ], - [ - -73.486363, - 45.468976 - ], - [ - -73.486598, - 45.468913 - ], - [ - -73.486742, - 45.468895 - ], - [ - -73.486913, - 45.468899 - ], - [ - -73.487892, - 45.468935 - ], - [ - -73.488649, - 45.468977 - ], - [ - -73.488788, - 45.468985 - ], - [ - -73.492281, - 45.469102 - ], - [ - -73.492434, - 45.469107 - ], - [ - -73.4927, - 45.469111 - ], - [ - -73.49395, - 45.46917 - ], - [ - -73.494075, - 45.469188 - ], - [ - -73.494154, - 45.469237 - ], - [ - -73.494559, - 45.469967 - ], - [ - -73.494611, - 45.470061 - ], - [ - -73.494791, - 45.470417 - ], - [ - -73.494862, - 45.47056 - ], - [ - -73.494851, - 45.47081 - ], - [ - -73.494847, - 45.470884 - ], - [ - -73.49484, - 45.471001 - ], - [ - -73.495967, - 45.471037 - ], - [ - -73.496018, - 45.471127 - ], - [ - -73.496235, - 45.471478 - ], - [ - -73.496437, - 45.471928 - ], - [ - -73.496813, - 45.472584 - ], - [ - -73.496974, - 45.472864 - ], - [ - -73.497894, - 45.474515 - ], - [ - -73.497955, - 45.474625 - ], - [ - -73.498064, - 45.474821 - ], - [ - -73.497243, - 45.474807 - ], - [ - -73.496473, - 45.474726 - ], - [ - -73.495455, - 45.474677 - ], - [ - -73.495343, - 45.474671 - ], - [ - -73.494958, - 45.47465 - ], - [ - -73.494447, - 45.474632 - ], - [ - -73.493578, - 45.474612 - ], - [ - -73.49348, - 45.474609 - ], - [ - -73.492987, - 45.474582 - ], - [ - -73.492833, - 45.474564 - ], - [ - -73.492566, - 45.474483 - ], - [ - -73.4924, - 45.474429 - ], - [ - -73.492221, - 45.474321 - ], - [ - -73.491964, - 45.474047 - ], - [ - -73.491842, - 45.473885 - ], - [ - -73.49165, - 45.473671 - ], - [ - -73.491514, - 45.47352 - ], - [ - -73.490727, - 45.473858 - ], - [ - -73.49018, - 45.474076 - ], - [ - -73.489892, - 45.474191 - ], - [ - -73.489482, - 45.474308 - ], - [ - -73.48921, - 45.474343 - ], - [ - -73.488939, - 45.474348 - ], - [ - -73.488579, - 45.47433 - ], - [ - -73.48828, - 45.474348 - ], - [ - -73.487939, - 45.474393 - ], - [ - -73.487689, - 45.474464 - ], - [ - -73.487656, - 45.474474 - ], - [ - -73.487464, - 45.474541 - ], - [ - -73.487385, - 45.474582 - ], - [ - -73.486897, - 45.473997 - ], - [ - -73.486669, - 45.473713 - ], - [ - -73.486207, - 45.473184 - ], - [ - -73.486151, - 45.473119 - ], - [ - -73.48607, - 45.47302 - ], - [ - -73.485914, - 45.473065 - ], - [ - -73.485421, - 45.473196 - ], - [ - -73.485194, - 45.47325 - ], - [ - -73.484873, - 45.473304 - ], - [ - -73.484747, - 45.473331 - ], - [ - -73.484539, - 45.473353 - ], - [ - -73.484309, - 45.47338 - ], - [ - -73.484047, - 45.473403 - ], - [ - -73.483837, - 45.473412 - ], - [ - -73.483761, - 45.473416 - ], - [ - -73.483613, - 45.473425 - ], - [ - -73.48263, - 45.473402 - ], - [ - -73.479091, - 45.47329 - ], - [ - -73.478915, - 45.473285 - ], - [ - -73.476016, - 45.473194 - ], - [ - -73.47556, - 45.473217 - ], - [ - -73.475367, - 45.473239 - ], - [ - -73.475163, - 45.47327 - ], - [ - -73.474754, - 45.473357 - ], - [ - -73.474613, - 45.473387 - ], - [ - -73.474531, - 45.473224 - ], - [ - -73.474431, - 45.473027 - ], - [ - -73.474274, - 45.472609 - ], - [ - -73.474213, - 45.472397 - ], - [ - -73.474173, - 45.472208 - ], - [ - -73.474165, - 45.472163 - ], - [ - -73.474141, - 45.472028 - ], - [ - -73.474138, - 45.472008 - ], - [ - -73.47411, - 45.47183 - ], - [ - -73.474121, - 45.471228 - ], - [ - -73.474166, - 45.470967 - ], - [ - -73.474399, - 45.469698 - ], - [ - -73.474424, - 45.469562 - ], - [ - -73.474454, - 45.469396 - ], - [ - -73.474489, - 45.469055 - ], - [ - -73.474518, - 45.468811 - ] - ] - }, - "id": 354, - "properties": { - "id": "c5996d19-e30e-4110-8421-17ca76d4f2d8", - "data": { - "gtfs": { - "shape_id": "660_2_R" - }, - "segments": [ - { - "distanceMeters": 248, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 593, - "travelTimeSeconds": 100 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 72, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 749, - "travelTimeSeconds": 127 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 61, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 371, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 84, - "travelTimeSeconds": 15 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8498, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2389.227891427287, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.9, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 5.25, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.9 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "44eacee6-a348-48cf-aeda-c9ddae958f8e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", - "2ac07b96-98be-4710-a749-3162a661fcb5", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "981ebecb-3dc2-4439-8648-8052a51df7ec", - "2a268094-fe95-4a75-83da-d02aa638cbb6", - "1782a1a7-eddc-4228-a7a8-bf733f339e68", - "9a86a407-515f-4b5e-8a56-9a4c52c91c96", - "9a86a407-515f-4b5e-8a56-9a4c52c91c96", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "0296a406-079c-41f9-8c5b-0723a0b5f294", - "79c669a1-9060-4e5d-b272-f107884dee00", - "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "3e9388da-8f48-48c6-b6c0-5461e27eb26a", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "d83daa69-bf92-4b93-8173-1c0fd22cbec0", - "66a0749c-2a5b-458d-b059-307f555cb93a", - "c5effd0a-a9b0-4cfe-8176-06c99313f58b", - "e7a825d7-e677-4fe7-b1ef-b6db556d3c70", - "9e1adf1c-c578-4c50-baba-31b7f0c157c4", - "2e10a277-1746-4c1f-9808-3de94d853988", - "28d21225-939d-4260-9ed4-5c109f412ad9", - "be011751-8885-454f-b767-5c0f1402d83f", - "c6165892-3719-417f-8d25-92e65471b42c", - "6735199f-47fc-47db-9116-7c110cca8945", - "6e4c328c-6fba-4e81-b589-59318e11a37a", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", - "2ef5dac7-c226-43bb-8534-6642e7a8ab89", - "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", - "3a8b9936-4595-4770-a3f4-b31253602356", - "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6" - ], - "stops": [], - "line_id": "29429376-037c-4405-bf39-ccfd7d570b63", - "segments": [ - 0, - 16, - 21, - 24, - 26, - 29, - 40, - 51, - 53, - 55, - 64, - 71, - 73, - 101, - 111, - 113, - 117, - 121, - 128, - 130, - 136, - 138, - 144, - 148, - 155, - 157, - 163, - 166, - 175, - 178, - 186, - 192, - 203, - 207, - 213, - 222, - 227 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 354, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.460174, - 45.48358 - ], - [ - -73.459999, - 45.483565 - ], - [ - -73.459497, - 45.483511 - ], - [ - -73.459033, - 45.483457 - ], - [ - -73.458739, - 45.483407 - ], - [ - -73.458547, - 45.483371 - ], - [ - -73.458333, - 45.483321 - ], - [ - -73.458016, - 45.483245 - ], - [ - -73.45777, - 45.483182 - ], - [ - -73.457489, - 45.4831 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.457453, - 45.482764 - ], - [ - -73.46093, - 45.480411 - ], - [ - -73.461043, - 45.480335 - ], - [ - -73.46017, - 45.47975 - ], - [ - -73.460562, - 45.479485 - ], - [ - -73.461947, - 45.478549 - ], - [ - -73.462028, - 45.478495 - ], - [ - -73.461431, - 45.478057 - ], - [ - -73.461335, - 45.477986 - ], - [ - -73.461651, - 45.47777 - ], - [ - -73.462711, - 45.477044 - ], - [ - -73.462832, - 45.476961 - ], - [ - -73.464383, - 45.475913 - ], - [ - -73.464095, - 45.475711 - ], - [ - -73.463948, - 45.475607 - ], - [ - -73.463529, - 45.475427 - ], - [ - -73.462895, - 45.475142 - ], - [ - -73.462818, - 45.475107 - ], - [ - -73.461823, - 45.474666 - ], - [ - -73.461583, - 45.474509 - ], - [ - -73.4615, - 45.474454 - ], - [ - -73.461737, - 45.474293 - ], - [ - -73.462087, - 45.474055 - ], - [ - -73.462597, - 45.473708 - ], - [ - -73.462985, - 45.473456 - ], - [ - -73.464058, - 45.4727 - ], - [ - -73.464089, - 45.472678 - ], - [ - -73.465434, - 45.471774 - ], - [ - -73.465948, - 45.47142 - ], - [ - -73.466451, - 45.471073 - ], - [ - -73.467061, - 45.471469 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467869, - 45.471793 - ], - [ - -73.467954, - 45.471482 - ], - [ - -73.467979, - 45.471365 - ], - [ - -73.468005, - 45.471249 - ], - [ - -73.468064, - 45.470898 - ], - [ - -73.468089, - 45.470644 - ], - [ - -73.468112, - 45.470407 - ], - [ - -73.468119, - 45.470155 - ], - [ - -73.468115, - 45.470044 - ], - [ - -73.468111, - 45.469894 - ], - [ - -73.468108, - 45.469818 - ], - [ - -73.468107, - 45.469773 - ], - [ - -73.46805, - 45.4693 - ], - [ - -73.467952, - 45.468827 - ], - [ - -73.467932, - 45.468733 - ], - [ - -73.467793, - 45.468274 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.46758, - 45.467757 - ], - [ - -73.467357, - 45.467296 - ], - [ - -73.466914, - 45.466403 - ], - [ - -73.466752, - 45.466083 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466352, - 45.465288 - ], - [ - -73.466238, - 45.465062 - ], - [ - -73.466142, - 45.464853 - ], - [ - -73.466048, - 45.464638 - ], - [ - -73.46599, - 45.464498 - ], - [ - -73.465967, - 45.464441 - ], - [ - -73.465777, - 45.463945 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465663, - 45.463449 - ], - [ - -73.465646, - 45.463238 - ], - [ - -73.465636, - 45.463073 - ], - [ - -73.465461, - 45.461275 - ], - [ - -73.465446, - 45.461131 - ], - [ - -73.465251, - 45.459263 - ], - [ - -73.465215, - 45.45889 - ], - [ - -73.465199, - 45.458728 - ], - [ - -73.465132, - 45.458038 - ], - [ - -73.465113, - 45.457592 - ], - [ - -73.465124, - 45.457143 - ], - [ - -73.465143, - 45.45685 - ], - [ - -73.465153, - 45.456755 - ], - [ - -73.465199, - 45.456301 - ], - [ - -73.465244, - 45.456 - ], - [ - -73.465335, - 45.455572 - ], - [ - -73.465339, - 45.455554 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.464797, - 45.454854 - ], - [ - -73.463912, - 45.454506 - ], - [ - -73.463601, - 45.454377 - ], - [ - -73.463305, - 45.454254 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.461808, - 45.453578 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.459815, - 45.452691 - ], - [ - -73.459187, - 45.452399 - ], - [ - -73.45904, - 45.452331 - ], - [ - -73.458688, - 45.452137 - ], - [ - -73.458046, - 45.451791 - ], - [ - -73.457689, - 45.451584 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457598, - 45.451363 - ], - [ - -73.457627, - 45.45129 - ], - [ - -73.457661, - 45.451176 - ], - [ - -73.457648, - 45.45104 - ], - [ - -73.457607, - 45.450938 - ], - [ - -73.457498, - 45.450823 - ], - [ - -73.457365, - 45.450743 - ] - ] - }, - "id": 355, - "properties": { - "id": "ef69852f-a675-43fc-a438-fe703a1befdb", - "data": { - "gtfs": { - "shape_id": "664_1_A" - }, - "segments": [ - { - "distanceMeters": 217, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 445, - "travelTimeSeconds": 85 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 76, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 884, - "travelTimeSeconds": 167 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 615, - "travelTimeSeconds": 116 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 21 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5082, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3654.283658753422, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.29, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 4.46, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.29 - }, - "mode": "bus", - "name": "École Antoine-Brossard", - "color": "#A32638", - "nodes": [ - "491099bb-9493-4888-bd4e-20bd2140830a", - "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", - "10c2e9e3-14c8-465a-917c-28c8d9977609", - "9f622393-7da9-4ff8-9bda-12008512c7ed", - "4122212c-2ecd-4db2-a305-20f02711d17b", - "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", - "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", - "c467599b-2164-4b14-b9ca-8960936bda58", - "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", - "156c412f-0b84-4b14-a73e-e1d07d0b148d", - "51e1600d-418e-4477-9b26-9e5507d72a03", - "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "74887516-47d5-4269-9513-84672d18e287", - "1e3a74d9-9d8a-467f-a82e-3dafee501e32", - "2946050b-73ca-45c7-be10-f80ba5b43ab5", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "ab493a3c-1217-4122-93b5-217f7741b2ea", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "44eacee6-a348-48cf-aeda-c9ddae958f8e" - ], - "stops": [], - "line_id": "9c6a923c-773a-4088-b39b-862e87c2e0e4", - "segments": [ - 0, - 9, - 12, - 16, - 18, - 21, - 24, - 30, - 36, - 39, - 50, - 58, - 80, - 82, - 99, - 102, - 105, - 109 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 355, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.457365, - 45.450743 - ], - [ - -73.457311, - 45.45071 - ], - [ - -73.457055, - 45.450562 - ], - [ - -73.45697, - 45.450481 - ], - [ - -73.456931, - 45.450397 - ], - [ - -73.456841, - 45.450279 - ], - [ - -73.456733, - 45.450296 - ], - [ - -73.456625, - 45.450319 - ], - [ - -73.456525, - 45.450368 - ], - [ - -73.456438, - 45.450427 - ], - [ - -73.456357, - 45.45049 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456282, - 45.450641 - ], - [ - -73.456274, - 45.450721 - ], - [ - -73.456292, - 45.450794 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.45714, - 45.451439 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457924, - 45.451894 - ], - [ - -73.458487, - 45.4522 - ], - [ - -73.45873, - 45.452331 - ], - [ - -73.458941, - 45.452443 - ], - [ - -73.459713, - 45.452799 - ], - [ - -73.461232, - 45.453472 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.462919, - 45.454223 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463822, - 45.454609 - ], - [ - -73.464892, - 45.455061 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465048, - 45.455509 - ], - [ - -73.465041, - 45.455536 - ], - [ - -73.464975, - 45.455829 - ], - [ - -73.464919, - 45.45613 - ], - [ - -73.464878, - 45.456427 - ], - [ - -73.464848, - 45.456873 - ], - [ - -73.464844, - 45.457169 - ], - [ - -73.464871, - 45.457574 - ], - [ - -73.464982, - 45.459105 - ], - [ - -73.464994, - 45.459278 - ], - [ - -73.465215, - 45.461562 - ], - [ - -73.465247, - 45.461893 - ], - [ - -73.465328, - 45.462497 - ], - [ - -73.465435, - 45.463211 - ], - [ - -73.465484, - 45.463543 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467476, - 45.467991 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467548, - 45.468225 - ], - [ - -73.467698, - 45.468792 - ], - [ - -73.467776, - 45.469183 - ], - [ - -73.46782, - 45.469453 - ], - [ - -73.467839, - 45.469687 - ], - [ - -73.467865, - 45.469989 - ], - [ - -73.467864, - 45.470057 - ], - [ - -73.467862, - 45.470168 - ], - [ - -73.46786, - 45.470362 - ], - [ - -73.467821, - 45.470781 - ], - [ - -73.467786, - 45.471019 - ], - [ - -73.467768, - 45.4711 - ], - [ - -73.467579, - 45.47132 - ], - [ - -73.467528, - 45.471365 - ], - [ - -73.467462, - 45.471392 - ], - [ - -73.467361, - 45.47141 - ], - [ - -73.467264, - 45.471406 - ], - [ - -73.467156, - 45.471392 - ], - [ - -73.466545, - 45.47101 - ], - [ - -73.466451, - 45.471073 - ], - [ - -73.46618, - 45.47126 - ], - [ - -73.466003, - 45.471381 - ], - [ - -73.465434, - 45.471774 - ], - [ - -73.46416, - 45.47263 - ], - [ - -73.464089, - 45.472678 - ], - [ - -73.462985, - 45.473456 - ], - [ - -73.462597, - 45.473708 - ], - [ - -73.462087, - 45.474055 - ], - [ - -73.461669, - 45.47434 - ], - [ - -73.4615, - 45.474454 - ], - [ - -73.461823, - 45.474666 - ], - [ - -73.462818, - 45.475107 - ], - [ - -73.462895, - 45.475142 - ], - [ - -73.463529, - 45.475427 - ], - [ - -73.463802, - 45.475545 - ], - [ - -73.463948, - 45.475607 - ], - [ - -73.464293, - 45.47585 - ], - [ - -73.464383, - 45.475913 - ], - [ - -73.462943, - 45.476886 - ], - [ - -73.462832, - 45.476961 - ], - [ - -73.46143, - 45.477921 - ], - [ - -73.461335, - 45.477986 - ], - [ - -73.46171, - 45.478262 - ], - [ - -73.461934, - 45.478426 - ], - [ - -73.462028, - 45.478495 - ], - [ - -73.46017, - 45.47975 - ], - [ - -73.460634, - 45.480061 - ], - [ - -73.460866, - 45.480216 - ], - [ - -73.461043, - 45.480335 - ], - [ - -73.457235, - 45.482912 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.456963, - 45.483096 - ], - [ - -73.457696, - 45.483312 - ], - [ - -73.457948, - 45.48338 - ], - [ - -73.45825, - 45.483452 - ], - [ - -73.458477, - 45.483499 - ], - [ - -73.458491, - 45.483501 - ], - [ - -73.458691, - 45.483542 - ], - [ - -73.458995, - 45.483592 - ], - [ - -73.459974, - 45.483704 - ], - [ - -73.46004, - 45.48371 - ], - [ - -73.460532, - 45.483756 - ] - ] - }, - "id": 356, - "properties": { - "id": "82015141-2698-41c2-a052-3e125f1e31fa", - "data": { - "gtfs": { - "shape_id": "664_2_R" - }, - "segments": [ - { - "distanceMeters": 248, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 463, - "travelTimeSeconds": 85 - }, - { - "distanceMeters": 1206, - "travelTimeSeconds": 223 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 78, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 432, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 59 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5194, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3690.198244187587, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.41, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 4.56, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.41 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "44eacee6-a348-48cf-aeda-c9ddae958f8e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", - "2ac07b96-98be-4710-a749-3162a661fcb5", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "981ebecb-3dc2-4439-8648-8052a51df7ec", - "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", - "acb7092d-3b2a-4d79-a4e3-09e7e52af475", - "156c412f-0b84-4b14-a73e-e1d07d0b148d", - "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", - "c467599b-2164-4b14-b9ca-8960936bda58", - "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", - "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", - "4122212c-2ecd-4db2-a305-20f02711d17b", - "9f622393-7da9-4ff8-9bda-12008512c7ed", - "10c2e9e3-14c8-465a-917c-28c8d9977609", - "fd67ddde-e938-481c-8721-79fa136304ae", - "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca" - ], - "stops": [], - "line_id": "9c6a923c-773a-4088-b39b-862e87c2e0e4", - "segments": [ - 0, - 16, - 21, - 24, - 26, - 29, - 39, - 70, - 87, - 89, - 94, - 102, - 104, - 106, - 109, - 113, - 115 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 356, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.442941, - 45.472153 - ], - [ - -73.443403, - 45.472472 - ], - [ - -73.44368, - 45.472746 - ], - [ - -73.443798, - 45.472886 - ], - [ - -73.443885, - 45.472989 - ], - [ - -73.444022, - 45.473228 - ], - [ - -73.444096, - 45.473399 - ], - [ - -73.444201, - 45.473651 - ], - [ - -73.444225, - 45.473729 - ], - [ - -73.444267, - 45.473862 - ], - [ - -73.444376, - 45.474083 - ], - [ - -73.444434, - 45.474168 - ], - [ - -73.444536, - 45.474295 - ], - [ - -73.444637, - 45.474416 - ], - [ - -73.444821, - 45.47456 - ], - [ - -73.445071, - 45.474758 - ], - [ - -73.445389, - 45.47492 - ], - [ - -73.445454, - 45.474949 - ], - [ - -73.445688, - 45.475051 - ], - [ - -73.446018, - 45.475155 - ], - [ - -73.446335, - 45.475213 - ], - [ - -73.446655, - 45.475267 - ], - [ - -73.446928, - 45.475258 - ], - [ - -73.447461, - 45.475227 - ], - [ - -73.447817, - 45.47516 - ], - [ - -73.448039, - 45.475106 - ], - [ - -73.448341, - 45.474989 - ], - [ - -73.448574, - 45.474899 - ], - [ - -73.448857, - 45.474724 - ], - [ - -73.449175, - 45.474468 - ], - [ - -73.449337, - 45.474301 - ], - [ - -73.449358, - 45.474272 - ], - [ - -73.449377, - 45.474246 - ], - [ - -73.449481, - 45.474103 - ], - [ - -73.449578, - 45.473928 - ], - [ - -73.449727, - 45.47369 - ], - [ - -73.44993, - 45.473433 - ], - [ - -73.450137, - 45.473231 - ], - [ - -73.450285, - 45.473112 - ], - [ - -73.450313, - 45.473092 - ], - [ - -73.450449, - 45.472994 - ], - [ - -73.450608, - 45.472887 - ], - [ - -73.450793, - 45.472777 - ], - [ - -73.451205, - 45.472597 - ], - [ - -73.45163, - 45.472453 - ], - [ - -73.452008, - 45.472363 - ], - [ - -73.452169, - 45.47234 - ], - [ - -73.452316, - 45.472318 - ], - [ - -73.45285, - 45.472157 - ], - [ - -73.453004, - 45.472085 - ], - [ - -73.453204, - 45.471986 - ], - [ - -73.453393, - 45.471855 - ], - [ - -73.453575, - 45.471693 - ], - [ - -73.453715, - 45.471523 - ], - [ - -73.453836, - 45.471338 - ], - [ - -73.453911, - 45.471154 - ], - [ - -73.453946, - 45.471068 - ], - [ - -73.453949, - 45.470627 - ], - [ - -73.453915, - 45.47047 - ], - [ - -73.45386, - 45.470321 - ], - [ - -73.453779, - 45.470173 - ], - [ - -73.45368, - 45.470042 - ], - [ - -73.453598, - 45.469954 - ], - [ - -73.45358, - 45.469934 - ], - [ - -73.453451, - 45.469814 - ], - [ - -73.453362, - 45.469732 - ], - [ - -73.452949, - 45.469507 - ], - [ - -73.452836, - 45.469466 - ], - [ - -73.452751, - 45.469436 - ], - [ - -73.452697, - 45.469417 - ], - [ - -73.452447, - 45.46934 - ], - [ - -73.452066, - 45.469251 - ], - [ - -73.451848, - 45.4692 - ], - [ - -73.451441, - 45.469043 - ], - [ - -73.451294, - 45.468975 - ], - [ - -73.451105, - 45.468885 - ], - [ - -73.45058, - 45.468552 - ], - [ - -73.450324, - 45.468312 - ], - [ - -73.450316, - 45.468304 - ], - [ - -73.450122, - 45.468079 - ], - [ - -73.450072, - 45.468013 - ], - [ - -73.450014, - 45.467935 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450233, - 45.467787 - ], - [ - -73.451014, - 45.467517 - ], - [ - -73.451685, - 45.467271 - ], - [ - -73.451729, - 45.467255 - ], - [ - -73.451774, - 45.467238 - ], - [ - -73.452554, - 45.466968 - ], - [ - -73.452657, - 45.466933 - ], - [ - -73.453014, - 45.466803 - ], - [ - -73.45314, - 45.466749 - ], - [ - -73.453548, - 45.466537 - ], - [ - -73.453946, - 45.466304 - ], - [ - -73.454693, - 45.465786 - ], - [ - -73.454721, - 45.465766 - ], - [ - -73.45516, - 45.46545 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.457621, - 45.462206 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.45769, - 45.462033 - ], - [ - -73.457776, - 45.461966 - ], - [ - -73.45778, - 45.461865 - ], - [ - -73.457805, - 45.461716 - ], - [ - -73.457817, - 45.461563 - ], - [ - -73.45782, - 45.461477 - ], - [ - -73.457812, - 45.461383 - ], - [ - -73.457786, - 45.461212 - ], - [ - -73.457775, - 45.461169 - ], - [ - -73.457743, - 45.46105 - ], - [ - -73.457714, - 45.460928 - ], - [ - -73.457665, - 45.460784 - ], - [ - -73.457595, - 45.460627 - ], - [ - -73.457462, - 45.460379 - ], - [ - -73.457342, - 45.460166 - ], - [ - -73.456497, - 45.45867 - ], - [ - -73.456446, - 45.458579 - ], - [ - -73.45582, - 45.457456 - ], - [ - -73.455767, - 45.45736 - ], - [ - -73.455551, - 45.456955 - ], - [ - -73.455474, - 45.456802 - ], - [ - -73.455367, - 45.456563 - ], - [ - -73.455234, - 45.456113 - ], - [ - -73.455192, - 45.45589 - ], - [ - -73.455162, - 45.455731 - ], - [ - -73.455134, - 45.455281 - ], - [ - -73.455165, - 45.454909 - ], - [ - -73.455177, - 45.454772 - ], - [ - -73.455206, - 45.454588 - ], - [ - -73.455346, - 45.454111 - ], - [ - -73.455479, - 45.453796 - ], - [ - -73.455501, - 45.453755 - ], - [ - -73.455716, - 45.453355 - ], - [ - -73.455874, - 45.453119 - ], - [ - -73.455902, - 45.453077 - ], - [ - -73.456055, - 45.452883 - ], - [ - -73.45626, - 45.452645 - ], - [ - -73.456494, - 45.452415 - ], - [ - -73.45667, - 45.452253 - ], - [ - -73.4573, - 45.451708 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457598, - 45.451363 - ], - [ - -73.457627, - 45.45129 - ], - [ - -73.457661, - 45.451176 - ], - [ - -73.457648, - 45.45104 - ], - [ - -73.457607, - 45.450938 - ], - [ - -73.457498, - 45.450823 - ], - [ - -73.457365, - 45.450743 - ] - ] - }, - "id": 357, - "properties": { - "id": "b1b67b16-1741-40a1-8e4a-a84d1e4728ce", - "data": { - "gtfs": { - "shape_id": "665_1_A" - }, - "segments": [ - { - "distanceMeters": 106, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 463, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 119, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 21 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 4047, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2641.5241839820637, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.13, - "travelTimeWithoutDwellTimesSeconds": 660, - "operatingTimeWithLayoverTimeSeconds": 840, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 660, - "operatingSpeedWithLayoverMetersPerSecond": 4.82, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.13 - }, - "mode": "bus", - "name": "École Antoine-Brossard", - "color": "#A32638", - "nodes": [ - "8bc1fa43-5a96-4718-96d6-82d3768ab9f4", - "f761f132-09f4-4a01-a76e-f9b0e50d8a9d", - "18d33d13-0d37-41d0-8a27-4c75ae6704a6", - "ab44c70e-171d-4dd2-b074-2fbdab29c11d", - "030a4337-a3e4-4cae-9b3c-548f03210dcf", - "014a3440-ffed-405b-9391-031896ce89b5", - "de0dd837-0f5e-4afa-a1ce-1042af81def1", - "4d428a9f-d12a-42d6-ab66-7ad0c7ad2850", - "ee666934-d186-4b8b-a152-1fdeb23a5242", - "e3925175-d7e8-4440-80a1-64bd3d7d9b18", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "4fc83229-a15e-48e1-aa4f-fae0073dacf9", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "ac84633b-6f3b-458c-8f4e-099cc310c05e", - "d271cca7-cd7a-4e22-8728-7a598b88fe32", - "f5f0a75d-b9e9-4575-845b-09748935c6e0", - "c77e59d9-5075-4e39-a183-6bacc1afd03e", - "59b4f87c-067e-4dc3-856a-07fb245d4fe3", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "44eacee6-a348-48cf-aeda-c9ddae958f8e" - ], - "stops": [], - "line_id": "3098cf50-ada1-462c-8cb5-9f40b533af3a", - "segments": [ - 0, - 3, - 17, - 26, - 31, - 39, - 46, - 55, - 64, - 71, - 80, - 88, - 95, - 107, - 117, - 124, - 126, - 135, - 142, - 148 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 357, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.457365, - 45.450743 - ], - [ - -73.457311, - 45.45071 - ], - [ - -73.457055, - 45.450562 - ], - [ - -73.45697, - 45.450481 - ], - [ - -73.456931, - 45.450397 - ], - [ - -73.456841, - 45.450279 - ], - [ - -73.456733, - 45.450296 - ], - [ - -73.456625, - 45.450319 - ], - [ - -73.456525, - 45.450368 - ], - [ - -73.456438, - 45.450427 - ], - [ - -73.456357, - 45.45049 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456282, - 45.450641 - ], - [ - -73.456274, - 45.450721 - ], - [ - -73.456292, - 45.450794 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.457141, - 45.451439 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.456657, - 45.45205 - ], - [ - -73.456511, - 45.452168 - ], - [ - -73.456345, - 45.452339 - ], - [ - -73.456105, - 45.452573 - ], - [ - -73.455893, - 45.452816 - ], - [ - -73.455821, - 45.45291 - ], - [ - -73.45573, - 45.453027 - ], - [ - -73.455536, - 45.453301 - ], - [ - -73.455293, - 45.453751 - ], - [ - -73.455167, - 45.454075 - ], - [ - -73.455022, - 45.454574 - ], - [ - -73.455005, - 45.454641 - ], - [ - -73.454977, - 45.454754 - ], - [ - -73.454933, - 45.455281 - ], - [ - -73.454963, - 45.455744 - ], - [ - -73.455037, - 45.456136 - ], - [ - -73.455173, - 45.456599 - ], - [ - -73.455283, - 45.456847 - ], - [ - -73.455363, - 45.457004 - ], - [ - -73.455596, - 45.457405 - ], - [ - -73.455642, - 45.457487 - ], - [ - -73.456006, - 45.458134 - ], - [ - -73.456229, - 45.458532 - ], - [ - -73.456258, - 45.458583 - ], - [ - -73.456281, - 45.458624 - ], - [ - -73.457235, - 45.460331 - ], - [ - -73.457292, - 45.460433 - ], - [ - -73.45742, - 45.460667 - ], - [ - -73.457486, - 45.46082 - ], - [ - -73.457532, - 45.460955 - ], - [ - -73.457565, - 45.461072 - ], - [ - -73.457606, - 45.46123 - ], - [ - -73.457631, - 45.461396 - ], - [ - -73.457639, - 45.461477 - ], - [ - -73.457625, - 45.461707 - ], - [ - -73.457614, - 45.461848 - ], - [ - -73.457628, - 45.461934 - ], - [ - -73.45763, - 45.461949 - ], - [ - -73.45769, - 45.462033 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.454665, - 45.465616 - ], - [ - -73.45456, - 45.465692 - ], - [ - -73.453819, - 45.466205 - ], - [ - -73.453432, - 45.466434 - ], - [ - -73.453035, - 45.466641 - ], - [ - -73.452922, - 45.46669 - ], - [ - -73.452786, - 45.466749 - ], - [ - -73.452589, - 45.466834 - ], - [ - -73.451705, - 45.467139 - ], - [ - -73.451627, - 45.467166 - ], - [ - -73.45158, - 45.467183 - ], - [ - -73.451014, - 45.467378 - ], - [ - -73.450937, - 45.467405 - ], - [ - -73.450156, - 45.467679 - ], - [ - -73.449888, - 45.467769 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450014, - 45.467935 - ], - [ - -73.450122, - 45.468079 - ], - [ - -73.450316, - 45.468304 - ], - [ - -73.45058, - 45.468552 - ], - [ - -73.451029, - 45.468837 - ], - [ - -73.451105, - 45.468885 - ], - [ - -73.451294, - 45.468975 - ], - [ - -73.451441, - 45.469043 - ], - [ - -73.451848, - 45.4692 - ], - [ - -73.452447, - 45.46934 - ], - [ - -73.452697, - 45.469417 - ], - [ - -73.452751, - 45.469436 - ], - [ - -73.452836, - 45.469466 - ], - [ - -73.452949, - 45.469507 - ], - [ - -73.453362, - 45.469732 - ], - [ - -73.453576, - 45.469931 - ], - [ - -73.45358, - 45.469934 - ], - [ - -73.453598, - 45.469954 - ], - [ - -73.45368, - 45.470042 - ], - [ - -73.453779, - 45.470173 - ], - [ - -73.45386, - 45.470321 - ], - [ - -73.453915, - 45.47047 - ], - [ - -73.453949, - 45.470627 - ], - [ - -73.453947, - 45.470998 - ], - [ - -73.453946, - 45.471068 - ], - [ - -73.453836, - 45.471338 - ], - [ - -73.453823, - 45.471358 - ], - [ - -73.453715, - 45.471523 - ], - [ - -73.453575, - 45.471693 - ], - [ - -73.453393, - 45.471855 - ], - [ - -73.453204, - 45.471986 - ], - [ - -73.453004, - 45.472085 - ], - [ - -73.45285, - 45.472157 - ], - [ - -73.45247, - 45.472272 - ], - [ - -73.452316, - 45.472318 - ], - [ - -73.452008, - 45.472363 - ], - [ - -73.45163, - 45.472453 - ], - [ - -73.451205, - 45.472597 - ], - [ - -73.450793, - 45.472777 - ], - [ - -73.450608, - 45.472887 - ], - [ - -73.450449, - 45.472994 - ], - [ - -73.450285, - 45.473112 - ], - [ - -73.450208, - 45.473174 - ], - [ - -73.450137, - 45.473231 - ], - [ - -73.44993, - 45.473433 - ], - [ - -73.449727, - 45.47369 - ], - [ - -73.449578, - 45.473928 - ], - [ - -73.449481, - 45.474103 - ], - [ - -73.449386, - 45.474234 - ], - [ - -73.449337, - 45.474301 - ], - [ - -73.449175, - 45.474468 - ], - [ - -73.448857, - 45.474724 - ], - [ - -73.448574, - 45.474899 - ], - [ - -73.448039, - 45.475106 - ], - [ - -73.447999, - 45.475116 - ], - [ - -73.447817, - 45.47516 - ], - [ - -73.447461, - 45.475227 - ], - [ - -73.446928, - 45.475258 - ], - [ - -73.446655, - 45.475267 - ], - [ - -73.446335, - 45.475213 - ], - [ - -73.446018, - 45.475155 - ], - [ - -73.445688, - 45.475051 - ], - [ - -73.445389, - 45.47492 - ], - [ - -73.445335, - 45.474893 - ], - [ - -73.445071, - 45.474758 - ], - [ - -73.444821, - 45.47456 - ], - [ - -73.444637, - 45.474416 - ], - [ - -73.444536, - 45.474295 - ], - [ - -73.444434, - 45.474168 - ], - [ - -73.444376, - 45.474083 - ], - [ - -73.444267, - 45.473862 - ], - [ - -73.444225, - 45.473729 - ], - [ - -73.444201, - 45.473651 - ], - [ - -73.444109, - 45.473429 - ], - [ - -73.444096, - 45.473399 - ], - [ - -73.444022, - 45.473228 - ], - [ - -73.443964, - 45.473127 - ], - [ - -73.443885, - 45.472989 - ], - [ - -73.44368, - 45.472746 - ], - [ - -73.443403, - 45.472472 - ], - [ - -73.442803, - 45.472058 - ] - ] - }, - "id": 358, - "properties": { - "id": "a9e24bfa-a55e-40d1-893b-0ecff5a14c29", - "data": { - "gtfs": { - "shape_id": "665_2_R" - }, - "segments": [ - { - "distanceMeters": 248, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 91, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 483, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 24 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 4231, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2641.5241839820637, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.41, - "travelTimeWithoutDwellTimesSeconds": 660, - "operatingTimeWithLayoverTimeSeconds": 840, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 660, - "operatingSpeedWithLayoverMetersPerSecond": 5.04, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.41 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "44eacee6-a348-48cf-aeda-c9ddae958f8e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "59b4f87c-067e-4dc3-856a-07fb245d4fe3", - "c77e59d9-5075-4e39-a183-6bacc1afd03e", - "f5f0a75d-b9e9-4575-845b-09748935c6e0", - "d271cca7-cd7a-4e22-8728-7a598b88fe32", - "3b708726-0db1-43de-b014-b11ddc9fc24a", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "bd9b4c12-08ed-4715-ae67-eb179ed7f974", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "ff779c9a-cd83-463a-8d0c-a93f3584a187", - "c9664cb0-d2ee-485f-8261-b02c66f8f9aa", - "ee666934-d186-4b8b-a152-1fdeb23a5242", - "4d428a9f-d12a-42d6-ab66-7ad0c7ad2850", - "de0dd837-0f5e-4afa-a1ce-1042af81def1", - "014a3440-ffed-405b-9391-031896ce89b5", - "030a4337-a3e4-4cae-9b3c-548f03210dcf", - "ab44c70e-171d-4dd2-b074-2fbdab29c11d", - "18d33d13-0d37-41d0-8a27-4c75ae6704a6", - "f761f132-09f4-4a01-a76e-f9b0e50d8a9d", - "8bc1fa43-5a96-4718-96d6-82d3768ab9f4" - ], - "stops": [], - "line_id": "3098cf50-ada1-462c-8cb5-9f40b533af3a", - "segments": [ - 0, - 16, - 18, - 23, - 29, - 38, - 40, - 43, - 54, - 67, - 73, - 78, - 87, - 98, - 106, - 116, - 125, - 131, - 137, - 146, - 159 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 358, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.469004, - 45.466768 - ], - [ - -73.469003, - 45.466637 - ], - [ - -73.46744, - 45.466583 - ], - [ - -73.46744, - 45.466582 - ], - [ - -73.46745, - 45.466456 - ], - [ - -73.467474, - 45.466326 - ], - [ - -73.467492, - 45.466224 - ], - [ - -73.467591, - 45.46606 - ], - [ - -73.467651, - 45.465959 - ], - [ - -73.467726, - 45.465836 - ], - [ - -73.467594, - 45.465752 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467341, - 45.465648 - ], - [ - -73.467145, - 45.465614 - ], - [ - -73.466939, - 45.465603 - ], - [ - -73.466716, - 45.465604 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466509, - 45.466021 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465586, - 45.46821 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.463779, - 45.468251 - ], - [ - -73.463257, - 45.46862 - ], - [ - -73.463137, - 45.468678 - ], - [ - -73.463016, - 45.468741 - ], - [ - -73.462763, - 45.468943 - ], - [ - -73.462691, - 45.469019 - ], - [ - -73.462689, - 45.46902 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.461694, - 45.469719 - ], - [ - -73.460801, - 45.470334 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.458442, - 45.471945 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.456057, - 45.473576 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.453673, - 45.475209 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.451326, - 45.476816 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.449272, - 45.478222 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448748, - 45.478356 - ], - [ - -73.448305, - 45.478058 - ], - [ - -73.44777, - 45.477695 - ], - [ - -73.4477, - 45.477648 - ], - [ - -73.446992, - 45.477175 - ], - [ - -73.446393, - 45.476765 - ], - [ - -73.445743, - 45.476329 - ], - [ - -73.445364, - 45.476066 - ], - [ - -73.445205, - 45.475955 - ], - [ - -73.444867, - 45.475726 - ], - [ - -73.444508, - 45.475482 - ], - [ - -73.443698, - 45.474934 - ], - [ - -73.443609, - 45.474874 - ], - [ - -73.44285, - 45.474357 - ], - [ - -73.441155, - 45.473198 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.441447, - 45.472804 - ], - [ - -73.442531, - 45.47204 - ], - [ - -73.442653, - 45.471954 - ], - [ - -73.444466, - 45.470668 - ], - [ - -73.444558, - 45.470603 - ], - [ - -73.444703, - 45.4705 - ], - [ - -73.445328, - 45.470057 - ], - [ - -73.445338, - 45.470052 - ], - [ - -73.445622, - 45.469854 - ], - [ - -73.446091, - 45.469543 - ], - [ - -73.446389, - 45.469345 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.447066, - 45.468996 - ], - [ - -73.4474, - 45.468829 - ], - [ - -73.447822, - 45.468645 - ], - [ - -73.448427, - 45.468407 - ], - [ - -73.449383, - 45.468079 - ], - [ - -73.449757, - 45.467952 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450233, - 45.467787 - ], - [ - -73.451014, - 45.467517 - ], - [ - -73.451685, - 45.467271 - ], - [ - -73.451729, - 45.467255 - ], - [ - -73.451774, - 45.467238 - ], - [ - -73.452563, - 45.466965 - ], - [ - -73.452657, - 45.466933 - ], - [ - -73.453014, - 45.466803 - ], - [ - -73.45314, - 45.466749 - ], - [ - -73.453548, - 45.466537 - ], - [ - -73.453946, - 45.466304 - ], - [ - -73.454693, - 45.465786 - ], - [ - -73.454719, - 45.465768 - ], - [ - -73.45516, - 45.46545 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.457623, - 45.462201 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.45769, - 45.462033 - ], - [ - -73.457776, - 45.461966 - ], - [ - -73.45778, - 45.461865 - ], - [ - -73.457805, - 45.461716 - ], - [ - -73.457817, - 45.461563 - ], - [ - -73.45782, - 45.461477 - ], - [ - -73.457812, - 45.461383 - ], - [ - -73.457786, - 45.461212 - ], - [ - -73.457776, - 45.461174 - ], - [ - -73.457743, - 45.46105 - ], - [ - -73.457714, - 45.460928 - ], - [ - -73.457665, - 45.460784 - ], - [ - -73.457595, - 45.460627 - ], - [ - -73.457462, - 45.460379 - ], - [ - -73.457342, - 45.460166 - ], - [ - -73.456495, - 45.458667 - ], - [ - -73.456446, - 45.458579 - ], - [ - -73.455819, - 45.457453 - ], - [ - -73.455767, - 45.45736 - ], - [ - -73.455551, - 45.456955 - ], - [ - -73.455474, - 45.456802 - ], - [ - -73.455367, - 45.456563 - ], - [ - -73.455234, - 45.456113 - ], - [ - -73.455192, - 45.45589 - ], - [ - -73.455162, - 45.455731 - ], - [ - -73.455134, - 45.455281 - ], - [ - -73.455165, - 45.454907 - ], - [ - -73.455177, - 45.454772 - ], - [ - -73.455206, - 45.454588 - ], - [ - -73.455346, - 45.454111 - ], - [ - -73.455479, - 45.453796 - ], - [ - -73.455501, - 45.453755 - ], - [ - -73.455716, - 45.453355 - ], - [ - -73.455869, - 45.453126 - ], - [ - -73.455902, - 45.453077 - ], - [ - -73.456055, - 45.452883 - ], - [ - -73.45626, - 45.452645 - ], - [ - -73.456494, - 45.452415 - ], - [ - -73.45667, - 45.452253 - ], - [ - -73.457301, - 45.451707 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457598, - 45.451363 - ], - [ - -73.457627, - 45.45129 - ], - [ - -73.457661, - 45.451176 - ], - [ - -73.457648, - 45.45104 - ], - [ - -73.457607, - 45.450938 - ], - [ - -73.457498, - 45.450823 - ], - [ - -73.457365, - 45.450743 - ] - ] - }, - "id": 359, - "properties": { - "id": "b6e419c4-1081-40ae-81ba-7d190c4c81ca", - "data": { - "gtfs": { - "shape_id": "670_1_A" - }, - "segments": [ - { - "distanceMeters": 762, - "travelTimeSeconds": 131 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 464, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 22 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6583, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2005.6719818386628, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.77, - "travelTimeWithoutDwellTimesSeconds": 1140, - "operatingTimeWithLayoverTimeSeconds": 1320, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1140, - "operatingSpeedWithLayoverMetersPerSecond": 4.99, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.77 - }, - "mode": "bus", - "name": "École Antoine-Brossard", - "color": "#A32638", - "nodes": [ - "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "907f8610-452b-440d-849b-c803b07dedc1", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "76ff8292-f41f-4d17-998d-6dd3d2c32288", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "e80498a8-505d-4215-ba07-7582f8783d8e", - "014d61e3-acfc-41f6-b78a-5c2178c073b1", - "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "4fc83229-a15e-48e1-aa4f-fae0073dacf9", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "ac84633b-6f3b-458c-8f4e-099cc310c05e", - "d271cca7-cd7a-4e22-8728-7a598b88fe32", - "f5f0a75d-b9e9-4575-845b-09748935c6e0", - "c77e59d9-5075-4e39-a183-6bacc1afd03e", - "59b4f87c-067e-4dc3-856a-07fb245d4fe3", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "44eacee6-a348-48cf-aeda-c9ddae958f8e" - ], - "stops": [], - "line_id": "84f64aa8-4fc5-49cf-8503-588f8a79e0ec", - "segments": [ - 0, - 33, - 48, - 53, - 55, - 57, - 59, - 61, - 63, - 67, - 72, - 76, - 79, - 82, - 86, - 91, - 98, - 105, - 112, - 124, - 134, - 141, - 143, - 152, - 159, - 165 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 359, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.457365, - 45.450743 - ], - [ - -73.457311, - 45.45071 - ], - [ - -73.457055, - 45.450562 - ], - [ - -73.45697, - 45.450481 - ], - [ - -73.456931, - 45.450397 - ], - [ - -73.456841, - 45.450279 - ], - [ - -73.456733, - 45.450296 - ], - [ - -73.456625, - 45.450319 - ], - [ - -73.456525, - 45.450368 - ], - [ - -73.456438, - 45.450427 - ], - [ - -73.456357, - 45.45049 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456282, - 45.450641 - ], - [ - -73.456274, - 45.450721 - ], - [ - -73.456292, - 45.450794 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.457141, - 45.451439 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.456657, - 45.45205 - ], - [ - -73.456511, - 45.452168 - ], - [ - -73.456345, - 45.452339 - ], - [ - -73.456105, - 45.452573 - ], - [ - -73.455893, - 45.452816 - ], - [ - -73.455821, - 45.45291 - ], - [ - -73.45573, - 45.453027 - ], - [ - -73.455536, - 45.453301 - ], - [ - -73.455293, - 45.453751 - ], - [ - -73.455167, - 45.454075 - ], - [ - -73.455022, - 45.454574 - ], - [ - -73.455005, - 45.45464 - ], - [ - -73.454977, - 45.454754 - ], - [ - -73.454933, - 45.455281 - ], - [ - -73.454963, - 45.455744 - ], - [ - -73.455037, - 45.456136 - ], - [ - -73.455173, - 45.456599 - ], - [ - -73.455283, - 45.456847 - ], - [ - -73.455363, - 45.457004 - ], - [ - -73.455596, - 45.457405 - ], - [ - -73.455641, - 45.457486 - ], - [ - -73.456006, - 45.458134 - ], - [ - -73.456229, - 45.458531 - ], - [ - -73.456258, - 45.458583 - ], - [ - -73.456281, - 45.458624 - ], - [ - -73.457234, - 45.46033 - ], - [ - -73.457292, - 45.460433 - ], - [ - -73.45742, - 45.460667 - ], - [ - -73.457486, - 45.46082 - ], - [ - -73.457532, - 45.460955 - ], - [ - -73.457565, - 45.461072 - ], - [ - -73.457606, - 45.46123 - ], - [ - -73.457631, - 45.461396 - ], - [ - -73.457639, - 45.461477 - ], - [ - -73.457625, - 45.461707 - ], - [ - -73.457614, - 45.461848 - ], - [ - -73.457628, - 45.461932 - ], - [ - -73.45763, - 45.461949 - ], - [ - -73.45769, - 45.462033 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.454871, - 45.465468 - ], - [ - -73.454668, - 45.465614 - ], - [ - -73.45456, - 45.465692 - ], - [ - -73.453819, - 45.466205 - ], - [ - -73.453432, - 45.466434 - ], - [ - -73.453035, - 45.466641 - ], - [ - -73.452922, - 45.46669 - ], - [ - -73.452789, - 45.466747 - ], - [ - -73.452589, - 45.466834 - ], - [ - -73.451705, - 45.467139 - ], - [ - -73.451627, - 45.467166 - ], - [ - -73.45158, - 45.467183 - ], - [ - -73.451018, - 45.467377 - ], - [ - -73.450937, - 45.467405 - ], - [ - -73.450156, - 45.467679 - ], - [ - -73.449888, - 45.467769 - ], - [ - -73.449338, - 45.467948 - ], - [ - -73.44837, - 45.46829 - ], - [ - -73.447748, - 45.468524 - ], - [ - -73.447289, - 45.468721 - ], - [ - -73.446438, - 45.469163 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445905, - 45.469485 - ], - [ - -73.445671, - 45.469643 - ], - [ - -73.445475, - 45.469778 - ], - [ - -73.445396, - 45.469832 - ], - [ - -73.445298, - 45.469899 - ], - [ - -73.444328, - 45.470583 - ], - [ - -73.444078, - 45.470759 - ], - [ - -73.44266, - 45.47176 - ], - [ - -73.442644, - 45.471771 - ], - [ - -73.442519, - 45.471859 - ], - [ - -73.441942, - 45.47227 - ], - [ - -73.441022, - 45.472925 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.440777, - 45.473082 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.441371, - 45.47354 - ], - [ - -73.441938, - 45.473928 - ], - [ - -73.442708, - 45.474456 - ], - [ - -73.443366, - 45.474904 - ], - [ - -73.443474, - 45.474978 - ], - [ - -73.44437, - 45.475586 - ], - [ - -73.445005, - 45.476017 - ], - [ - -73.445067, - 45.476058 - ], - [ - -73.445608, - 45.476432 - ], - [ - -73.446237, - 45.47686 - ], - [ - -73.446803, - 45.477247 - ], - [ - -73.446869, - 45.477292 - ], - [ - -73.44719, - 45.47751 - ], - [ - -73.44754, - 45.477747 - ], - [ - -73.448146, - 45.478157 - ], - [ - -73.448648, - 45.478495 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.448868, - 45.478494 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.449299, - 45.478203 - ], - [ - -73.44939, - 45.478141 - ], - [ - -73.451123, - 45.476955 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.453443, - 45.475366 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.455864, - 45.473709 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.45824, - 45.472083 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.460526, - 45.470522 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.462624, - 45.469083 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.463211, - 45.468741 - ], - [ - -73.463569, - 45.468988 - ], - [ - -73.463833, - 45.469169 - ], - [ - -73.464474, - 45.469628 - ], - [ - -73.464837, - 45.469894 - ], - [ - -73.465113, - 45.470096 - ], - [ - -73.465778, - 45.470582 - ], - [ - -73.466301, - 45.470963 - ], - [ - -73.466451, - 45.471073 - ], - [ - -73.467061, - 45.471469 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467869, - 45.471793 - ], - [ - -73.467954, - 45.471482 - ], - [ - -73.467979, - 45.471365 - ], - [ - -73.468005, - 45.471249 - ], - [ - -73.468064, - 45.470898 - ], - [ - -73.468089, - 45.470643 - ], - [ - -73.468112, - 45.470407 - ], - [ - -73.468119, - 45.470155 - ], - [ - -73.468115, - 45.470044 - ], - [ - -73.468111, - 45.469894 - ], - [ - -73.468108, - 45.469818 - ], - [ - -73.468107, - 45.469773 - ], - [ - -73.46805, - 45.4693 - ], - [ - -73.467953, - 45.468835 - ], - [ - -73.467932, - 45.468733 - ], - [ - -73.467793, - 45.468274 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.467733, - 45.467901 - ], - [ - -73.467682, - 45.467773 - ], - [ - -73.467632, - 45.467646 - ], - [ - -73.467536, - 45.46744 - ], - [ - -73.46747, - 45.467137 - ], - [ - -73.467452, - 45.466907 - ], - [ - -73.467452, - 45.466906 - ], - [ - -73.467445, - 45.466824 - ], - [ - -73.469005, - 45.466872 - ], - [ - -73.469004, - 45.466768 - ] - ] - }, - "id": 360, - "properties": { - "id": "544b3590-42f7-43b3-b5be-9215b90567d3", - "data": { - "gtfs": { - "shape_id": "670_2_R" - }, - "segments": [ - { - "distanceMeters": 248, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 91, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 483, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 317, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 42, - "travelTimeSeconds": 7 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 80, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 240, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 62 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7037, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2005.6719818386628, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.86, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 5.1, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.86 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "44eacee6-a348-48cf-aeda-c9ddae958f8e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "59b4f87c-067e-4dc3-856a-07fb245d4fe3", - "c77e59d9-5075-4e39-a183-6bacc1afd03e", - "f5f0a75d-b9e9-4575-845b-09748935c6e0", - "d271cca7-cd7a-4e22-8728-7a598b88fe32", - "3b708726-0db1-43de-b014-b11ddc9fc24a", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "bd9b4c12-08ed-4715-ae67-eb179ed7f974", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "ff779c9a-cd83-463a-8d0c-a93f3584a187", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", - "c8919560-2bb2-4063-8184-8e6c296badbe", - "e80498a8-505d-4215-ba07-7582f8783d8e", - "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "c4061c94-e615-4bca-b219-1ff6ea9657d0", - "c4061c94-e615-4bca-b219-1ff6ea9657d0", - "89553e99-6867-4296-935e-718bb768cb73", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "907f8610-452b-440d-849b-c803b07dedc1", - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "977065eb-9054-495e-befc-5f3b6e0e6046", - "42f48eea-ee59-46f6-9c43-4b63100a50dc", - "51e1600d-418e-4477-9b26-9e5507d72a03", - "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "131616ed-8c78-458b-a65e-78f1aeac1fc7" - ], - "stops": [], - "line_id": "84f64aa8-4fc5-49cf-8503-588f8a79e0ec", - "segments": [ - 0, - 16, - 18, - 23, - 29, - 38, - 40, - 43, - 54, - 68, - 74, - 79, - 87, - 95, - 96, - 100, - 108, - 111, - 115, - 117, - 120, - 125, - 126, - 128, - 130, - 132, - 134, - 137, - 143, - 146, - 157, - 165 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 360, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.448459, - 45.536842 - ], - [ - -73.44835, - 45.536912 - ], - [ - -73.448071, - 45.537128 - ], - [ - -73.447991, - 45.537204 - ], - [ - -73.447918, - 45.537281 - ], - [ - -73.447816, - 45.537429 - ], - [ - -73.447771, - 45.537519 - ], - [ - -73.447701, - 45.537636 - ], - [ - -73.447679, - 45.537709 - ], - [ - -73.447673, - 45.53773 - ], - [ - -73.447635, - 45.53791 - ], - [ - -73.447655, - 45.538145 - ], - [ - -73.447658, - 45.53818 - ], - [ - -73.447598, - 45.53877 - ], - [ - -73.447512, - 45.539058 - ], - [ - -73.447394, - 45.539323 - ], - [ - -73.447278, - 45.53953 - ], - [ - -73.447205, - 45.539653 - ], - [ - -73.447171, - 45.53971 - ], - [ - -73.447123, - 45.539791 - ], - [ - -73.447078, - 45.539849 - ], - [ - -73.447272, - 45.539904 - ], - [ - -73.447396, - 45.539999 - ], - [ - -73.447961, - 45.54043 - ], - [ - -73.448572, - 45.540885 - ], - [ - -73.44916, - 45.541353 - ], - [ - -73.449312, - 45.54147 - ], - [ - -73.449424, - 45.541556 - ], - [ - -73.449532, - 45.541605 - ], - [ - -73.449689, - 45.541677 - ], - [ - -73.449749, - 45.541704 - ], - [ - -73.449964, - 45.541763 - ], - [ - -73.45028, - 45.541808 - ], - [ - -73.450402, - 45.541819 - ], - [ - -73.450524, - 45.54183 - ], - [ - -73.450741, - 45.541822 - ], - [ - -73.450967, - 45.541781 - ], - [ - -73.451107, - 45.541748 - ], - [ - -73.451233, - 45.541718 - ], - [ - -73.451437, - 45.541633 - ], - [ - -73.451796, - 45.541426 - ], - [ - -73.45197, - 45.541296 - ], - [ - -73.452075, - 45.541179 - ], - [ - -73.452235, - 45.540994 - ], - [ - -73.45227, - 45.540954 - ], - [ - -73.452594, - 45.540342 - ], - [ - -73.452706, - 45.539781 - ], - [ - -73.452717, - 45.539726 - ], - [ - -73.452804, - 45.539091 - ], - [ - -73.452904, - 45.538462 - ], - [ - -73.453038, - 45.53771 - ], - [ - -73.45366, - 45.53778 - ], - [ - -73.454051, - 45.537823 - ], - [ - -73.455005, - 45.537945 - ], - [ - -73.456292, - 45.538122 - ], - [ - -73.456445, - 45.538144 - ], - [ - -73.456716, - 45.53818 - ], - [ - -73.456753, - 45.538063 - ], - [ - -73.456906, - 45.537595 - ], - [ - -73.457034, - 45.537289 - ], - [ - -73.457312, - 45.536745 - ], - [ - -73.457525, - 45.536412 - ], - [ - -73.457654, - 45.536215 - ], - [ - -73.457717, - 45.536119 - ], - [ - -73.457866, - 45.535926 - ], - [ - -73.458063, - 45.535706 - ], - [ - -73.458203, - 45.535555 - ], - [ - -73.45852, - 45.535215 - ], - [ - -73.45895, - 45.534833 - ], - [ - -73.459005, - 45.53479 - ], - [ - -73.459195, - 45.53464 - ], - [ - -73.460968, - 45.533133 - ], - [ - -73.461497, - 45.532611 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.462006, - 45.532616 - ], - [ - -73.46239, - 45.532816 - ], - [ - -73.462751, - 45.533003 - ], - [ - -73.463679, - 45.533551 - ], - [ - -73.463873, - 45.533665 - ], - [ - -73.464875, - 45.534543 - ], - [ - -73.465713, - 45.535316 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.468782, - 45.537042 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469941, - 45.537318 - ], - [ - -73.470305, - 45.537406 - ], - [ - -73.470749, - 45.537487 - ], - [ - -73.471335, - 45.537563 - ], - [ - -73.471845, - 45.53759 - ], - [ - -73.471901, - 45.53759 - ], - [ - -73.472146, - 45.537591 - ], - [ - -73.472355, - 45.537591 - ], - [ - -73.473126, - 45.537555 - ], - [ - -73.473826, - 45.537492 - ], - [ - -73.474491, - 45.537431 - ], - [ - -73.474517, - 45.537429 - ], - [ - -73.474599, - 45.537423 - ], - [ - -73.475173, - 45.53738 - ], - [ - -73.47563, - 45.537344 - ], - [ - -73.476192, - 45.537353 - ], - [ - -73.476662, - 45.537394 - ], - [ - -73.477026, - 45.537434 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.477716, - 45.537557 - ], - [ - -73.477854, - 45.537592 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.482443, - 45.538907 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.485756, - 45.54011 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.491356, - 45.541251 - ], - [ - -73.491461, - 45.541175 - ], - [ - -73.491486, - 45.541152 - ], - [ - -73.49185, - 45.54078 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.490724, - 45.539892 - ], - [ - -73.490551, - 45.539825 - ], - [ - -73.490497, - 45.539768 - ], - [ - -73.49051, - 45.539681 - ], - [ - -73.490564, - 45.539666 - ], - [ - -73.49064, - 45.539646 - ], - [ - -73.490709, - 45.539683 - ] - ] - }, - "id": 361, - "properties": { - "id": "afaf7512-b13d-42f1-a199-3a1025c6346b", - "data": { - "gtfs": { - "shape_id": "671_1_A" - }, - "segments": [ - { - "distanceMeters": 165, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 490, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 311, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 56, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 316, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 556, - "travelTimeSeconds": 95 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 36 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5233, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3280.338345936284, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.81, - "travelTimeWithoutDwellTimesSeconds": 900, - "operatingTimeWithLayoverTimeSeconds": 1080, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 900, - "operatingSpeedWithLayoverMetersPerSecond": 4.85, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.81 - }, - "mode": "bus", - "name": "École Jacques-Rousseau", - "color": "#A32638", - "nodes": [ - "25a5f82a-36a7-4a52-af2b-32a681f87765", - "4923c68b-ab12-4ac9-b43c-35ae6563b694", - "3d4b782b-1f81-40fc-b6e4-db01a1a8f864", - "ed2d86bc-14d2-40cc-9b3c-fcf430af3d76", - "78852b27-6481-4593-91bd-0a0ac5e52bda", - "97fd6b08-e74d-4e78-a89d-1a8506473313", - "f1d63efc-c02d-4bb9-828b-ddc2e062546b", - "8a5c9ba1-a597-4c12-90c9-b58f8d4f8d95", - "ead7d270-6dcb-4161-af5c-95bec6715688", - "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "1e4facbf-29da-4515-97c4-4ef86c22290e", - "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", - "06d26eca-08e9-467e-9ff0-9595778162a0", - "abdcf999-0861-4881-a478-42fa957c7f17", - "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "5f672947-8abc-447c-bf60-535abbf76fae", - "31e8057b-0fb0-44bd-83cf-3acad24654ec", - "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", - "411bafbe-bac8-4586-9af4-bc0b3163bdde", - "1c85a97d-9927-406a-a2ae-6f738750a95d" - ], - "stops": [], - "line_id": "e01bec9e-c255-4d5c-a90f-23f867e65133", - "segments": [ - 0, - 11, - 17, - 29, - 43, - 46, - 54, - 62, - 69, - 72, - 74, - 77, - 80, - 90, - 97, - 102, - 114, - 117, - 124, - 129, - 150 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 361, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.490709, - 45.539683 - ], - [ - -73.490762, - 45.539711 - ], - [ - -73.490724, - 45.539892 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.491774, - 45.540689 - ], - [ - -73.491536, - 45.540936 - ], - [ - -73.491291, - 45.541175 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.490595, - 45.540696 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486479, - 45.540151 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482892, - 45.53885 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.480024, - 45.538054 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476948, - 45.537232 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472331, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.46937, - 45.536993 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.46618, - 45.535471 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464118, - 45.533592 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.461306, - 45.532454 - ], - [ - -73.46089, - 45.532868 - ], - [ - -73.460874, - 45.532884 - ], - [ - -73.460757, - 45.533003 - ], - [ - -73.459629, - 45.533974 - ], - [ - -73.459043, - 45.534444 - ], - [ - -73.458963, - 45.534509 - ], - [ - -73.458731, - 45.534693 - ], - [ - -73.458241, - 45.535152 - ], - [ - -73.457986, - 45.535404 - ], - [ - -73.457781, - 45.535638 - ], - [ - -73.457342, - 45.536214 - ], - [ - -73.457298, - 45.536286 - ], - [ - -73.45713, - 45.536556 - ], - [ - -73.456948, - 45.536857 - ], - [ - -73.456811, - 45.537145 - ], - [ - -73.456744, - 45.5373 - ], - [ - -73.456664, - 45.537487 - ], - [ - -73.456514, - 45.537935 - ], - [ - -73.456485, - 45.538022 - ], - [ - -73.455771, - 45.537926 - ], - [ - -73.455426, - 45.53788 - ], - [ - -73.455036, - 45.537828 - ], - [ - -73.454083, - 45.537706 - ], - [ - -73.453207, - 45.537595 - ], - [ - -73.453056, - 45.537575 - ], - [ - -73.453038, - 45.53771 - ], - [ - -73.452919, - 45.538378 - ], - [ - -73.452904, - 45.538462 - ], - [ - -73.452804, - 45.539091 - ], - [ - -73.452721, - 45.5397 - ], - [ - -73.452717, - 45.539726 - ], - [ - -73.452594, - 45.540342 - ], - [ - -73.452358, - 45.540787 - ], - [ - -73.45227, - 45.540954 - ], - [ - -73.452075, - 45.541179 - ], - [ - -73.45197, - 45.541296 - ], - [ - -73.451932, - 45.541324 - ], - [ - -73.451796, - 45.541426 - ], - [ - -73.451437, - 45.541633 - ], - [ - -73.451233, - 45.541718 - ], - [ - -73.450967, - 45.541781 - ], - [ - -73.450741, - 45.541822 - ], - [ - -73.450641, - 45.541826 - ], - [ - -73.450524, - 45.54183 - ], - [ - -73.450402, - 45.541819 - ], - [ - -73.45028, - 45.541808 - ], - [ - -73.449964, - 45.541763 - ], - [ - -73.449749, - 45.541704 - ], - [ - -73.449532, - 45.541605 - ], - [ - -73.449424, - 45.541556 - ], - [ - -73.449312, - 45.54147 - ], - [ - -73.44916, - 45.541353 - ], - [ - -73.448572, - 45.540885 - ], - [ - -73.447961, - 45.54043 - ], - [ - -73.447559, - 45.540123 - ], - [ - -73.447272, - 45.539904 - ], - [ - -73.447182, - 45.539732 - ], - [ - -73.447171, - 45.53971 - ], - [ - -73.447278, - 45.53953 - ], - [ - -73.447394, - 45.539323 - ], - [ - -73.447512, - 45.539058 - ], - [ - -73.447598, - 45.53877 - ], - [ - -73.447655, - 45.538213 - ], - [ - -73.447658, - 45.53818 - ], - [ - -73.447635, - 45.53791 - ], - [ - -73.447673, - 45.53773 - ], - [ - -73.447679, - 45.537709 - ], - [ - -73.447701, - 45.537636 - ], - [ - -73.447771, - 45.537519 - ], - [ - -73.447816, - 45.537429 - ], - [ - -73.447918, - 45.537281 - ], - [ - -73.447991, - 45.537204 - ], - [ - -73.448071, - 45.537128 - ], - [ - -73.44835, - 45.536912 - ], - [ - -73.448776, - 45.536639 - ] - ] - }, - "id": 362, - "properties": { - "id": "9c35ae7b-af1f-41da-9054-a1f81f46584f", - "data": { - "gtfs": { - "shape_id": "671_1_R" - }, - "segments": [ - { - "distanceMeters": 318, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 310, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 353, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 102, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 371, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 36 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5235, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3280.338345936284, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.82, - "travelTimeWithoutDwellTimesSeconds": 900, - "operatingTimeWithLayoverTimeSeconds": 1080, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 900, - "operatingSpeedWithLayoverMetersPerSecond": 4.85, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.82 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "1c85a97d-9927-406a-a2ae-6f738750a95d", - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "ce58f095-9b51-4521-8a41-e64bfb0df31e", - "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", - "65003b15-0baf-4f82-9e15-665e17fd1c75", - "81b3573e-d948-478d-a011-db20e21b0c62", - "def08726-b847-4fc6-b901-78e04519a492", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "3b70b024-5c5b-4081-8c70-3fc026422289", - "1e4facbf-29da-4515-97c4-4ef86c22290e", - "85594754-b583-4735-aac6-bc45902705ca", - "ead7d270-6dcb-4161-af5c-95bec6715688", - "c24ac61d-1b21-4358-b45f-8dd4921fc769", - "f1d63efc-c02d-4bb9-828b-ddc2e062546b", - "fce7a113-2e0c-4a0f-922a-957670252ea1", - "e5c2d9f4-1be6-458f-854f-8103a3048b8c", - "74325106-fd46-4be2-9872-2d362cabf10d", - "97fd6b08-e74d-4e78-a89d-1a8506473313", - "78852b27-6481-4593-91bd-0a0ac5e52bda", - "ed2d86bc-14d2-40cc-9b3c-fcf430af3d76", - "3d4b782b-1f81-40fc-b6e4-db01a1a8f864", - "4923c68b-ab12-4ac9-b43c-35ae6563b694", - "25a5f82a-36a7-4a52-af2b-32a681f87765" - ], - "stops": [], - "line_id": "e01bec9e-c255-4d5c-a90f-23f867e65133", - "segments": [ - 0, - 12, - 22, - 27, - 36, - 45, - 57, - 67, - 80, - 86, - 97, - 100, - 107, - 113, - 116, - 119, - 122, - 125, - 128, - 138, - 152, - 158 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 362, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.443772, - 45.53457 - ], - [ - -73.443379, - 45.535204 - ], - [ - -73.44311, - 45.535924 - ], - [ - -73.442872, - 45.536513 - ], - [ - -73.442839, - 45.536594 - ], - [ - -73.442686, - 45.536815 - ], - [ - -73.442459, - 45.537008 - ], - [ - -73.441939, - 45.537372 - ], - [ - -73.441569, - 45.537651 - ], - [ - -73.4412, - 45.537934 - ], - [ - -73.441098, - 45.538047 - ], - [ - -73.441023, - 45.538164 - ], - [ - -73.440957, - 45.538285 - ], - [ - -73.440917, - 45.538393 - ], - [ - -73.440907, - 45.538487 - ], - [ - -73.440906, - 45.538501 - ], - [ - -73.440899, - 45.538573 - ], - [ - -73.440902, - 45.5386 - ], - [ - -73.440917, - 45.538748 - ], - [ - -73.440944, - 45.538829 - ], - [ - -73.441004, - 45.538991 - ], - [ - -73.441122, - 45.539153 - ], - [ - -73.441242, - 45.539293 - ], - [ - -73.441387, - 45.539397 - ], - [ - -73.44151, - 45.539487 - ], - [ - -73.441646, - 45.539559 - ], - [ - -73.441759, - 45.539614 - ], - [ - -73.441896, - 45.53968 - ], - [ - -73.442001, - 45.539712 - ], - [ - -73.442205, - 45.539784 - ], - [ - -73.442456, - 45.539852 - ], - [ - -73.44267, - 45.539892 - ], - [ - -73.443365, - 45.540017 - ], - [ - -73.4435, - 45.540041 - ], - [ - -73.44377, - 45.540109 - ], - [ - -73.44408, - 45.540185 - ], - [ - -73.444216, - 45.540244 - ], - [ - -73.444375, - 45.540325 - ], - [ - -73.444511, - 45.54041 - ], - [ - -73.44545, - 45.5411 - ], - [ - -73.445503, - 45.54114 - ], - [ - -73.4453, - 45.541276 - ], - [ - -73.444838, - 45.541585 - ], - [ - -73.443987, - 45.542147 - ], - [ - -73.441568, - 45.543693 - ], - [ - -73.44146, - 45.543777 - ], - [ - -73.441366, - 45.543851 - ], - [ - -73.441469, - 45.543941 - ], - [ - -73.44199, - 45.544319 - ], - [ - -73.442654, - 45.544846 - ], - [ - -73.442803, - 45.544955 - ], - [ - -73.443348, - 45.545354 - ], - [ - -73.443962, - 45.545827 - ], - [ - -73.444033, - 45.545881 - ], - [ - -73.444459, - 45.546196 - ], - [ - -73.444546, - 45.546255 - ], - [ - -73.44465, - 45.546309 - ], - [ - -73.444819, - 45.546349 - ], - [ - -73.44535, - 45.546453 - ], - [ - -73.446356, - 45.54662 - ], - [ - -73.446934, - 45.547003 - ], - [ - -73.447483, - 45.547458 - ], - [ - -73.447629, - 45.547579 - ], - [ - -73.447947, - 45.54746 - ], - [ - -73.448002, - 45.54744 - ], - [ - -73.448251, - 45.54734 - ], - [ - -73.448339, - 45.547305 - ], - [ - -73.448543, - 45.547215 - ], - [ - -73.448765, - 45.547097 - ], - [ - -73.448831, - 45.547062 - ], - [ - -73.449103, - 45.546914 - ], - [ - -73.449271, - 45.546806 - ], - [ - -73.449736, - 45.546505 - ], - [ - -73.449968, - 45.546338 - ], - [ - -73.450509, - 45.545965 - ], - [ - -73.4506, - 45.545902 - ], - [ - -73.451253, - 45.545453 - ], - [ - -73.452328, - 45.544699 - ], - [ - -73.452491, - 45.544585 - ], - [ - -73.453705, - 45.543758 - ], - [ - -73.453772, - 45.543712 - ], - [ - -73.454376, - 45.543288 - ], - [ - -73.454746, - 45.543027 - ], - [ - -73.455166, - 45.542732 - ], - [ - -73.455282, - 45.54266 - ], - [ - -73.455702, - 45.542678 - ], - [ - -73.455971, - 45.542683 - ], - [ - -73.456034, - 45.542341 - ], - [ - -73.456127, - 45.541828 - ], - [ - -73.456281, - 45.541837 - ], - [ - -73.45643, - 45.541833 - ], - [ - -73.456479, - 45.541824 - ], - [ - -73.456523, - 45.541801 - ], - [ - -73.45665, - 45.541711 - ], - [ - -73.45695, - 45.541509 - ], - [ - -73.457486, - 45.541136 - ], - [ - -73.457586, - 45.541064 - ], - [ - -73.458502, - 45.54043 - ], - [ - -73.458577, - 45.540376 - ], - [ - -73.459325, - 45.539858 - ], - [ - -73.459859, - 45.539489 - ], - [ - -73.459971, - 45.539411 - ], - [ - -73.460057, - 45.539352 - ], - [ - -73.460539, - 45.539018 - ], - [ - -73.460715, - 45.538897 - ], - [ - -73.460897, - 45.538771 - ], - [ - -73.461553, - 45.538316 - ], - [ - -73.461709, - 45.538208 - ], - [ - -73.461864, - 45.5381 - ], - [ - -73.462556, - 45.537575 - ], - [ - -73.462834, - 45.537383 - ], - [ - -73.462922, - 45.537322 - ], - [ - -73.463661, - 45.536866 - ], - [ - -73.464128, - 45.536607 - ], - [ - -73.464185, - 45.536575 - ], - [ - -73.464357, - 45.53646 - ], - [ - -73.4648, - 45.536162 - ], - [ - -73.465211, - 45.53589 - ], - [ - -73.465655, - 45.535595 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.468783, - 45.537042 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469941, - 45.537318 - ], - [ - -73.470305, - 45.537406 - ], - [ - -73.470749, - 45.537487 - ], - [ - -73.471335, - 45.537563 - ], - [ - -73.471845, - 45.53759 - ], - [ - -73.471914, - 45.53759 - ], - [ - -73.472146, - 45.537591 - ], - [ - -73.472355, - 45.537591 - ], - [ - -73.473126, - 45.537555 - ], - [ - -73.473826, - 45.537492 - ], - [ - -73.474504, - 45.53743 - ], - [ - -73.474517, - 45.537429 - ], - [ - -73.474599, - 45.537423 - ], - [ - -73.475173, - 45.53738 - ], - [ - -73.47563, - 45.537344 - ], - [ - -73.476192, - 45.537353 - ], - [ - -73.476662, - 45.537394 - ], - [ - -73.477026, - 45.537434 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.477867, - 45.537596 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.482443, - 45.538908 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.485756, - 45.54011 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.491356, - 45.541251 - ], - [ - -73.491461, - 45.541175 - ], - [ - -73.491486, - 45.541152 - ], - [ - -73.491851, - 45.54078 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.490724, - 45.539892 - ], - [ - -73.490551, - 45.539825 - ], - [ - -73.490497, - 45.539768 - ], - [ - -73.49051, - 45.539681 - ], - [ - -73.490564, - 45.539666 - ], - [ - -73.49064, - 45.539646 - ], - [ - -73.490709, - 45.539683 - ] - ] - }, - "id": 363, - "properties": { - "id": "3b81a721-ed00-42e6-a329-12c86fd91ef8", - "data": { - "gtfs": { - "shape_id": "672_1_A" - }, - "segments": [ - { - "distanceMeters": 228, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 437, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 310, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 73, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 700, - "travelTimeSeconds": 122 - }, - { - "distanceMeters": 109, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 556, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 36 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6555, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3687.4558134210874, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.75, - "travelTimeWithoutDwellTimesSeconds": 1140, - "operatingTimeWithLayoverTimeSeconds": 1320, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1140, - "operatingSpeedWithLayoverMetersPerSecond": 4.97, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.75 - }, - "mode": "bus", - "name": "École Jacques-Rousseau", - "color": "#A32638", - "nodes": [ - "210e532b-2acc-4a3e-b173-3471add098b1", - "5360d4c3-b5aa-452d-a69b-73fcfc24260f", - "90aff802-7f58-4407-a26e-45f80682eeaf", - "6ad75842-382c-44ee-b7d6-fd3532656bb0", - "1f21bce0-b8ed-434c-ade7-9416eb8a180a", - "5251f580-cc4c-4e24-adc5-09ece02102d8", - "146c0089-3caf-43e6-be7c-9f8a4573762c", - "5f232e4f-49b4-4ca7-8ee6-3aec9ca49e66", - "92a52522-0981-490b-a541-e3514efa3ed8", - "92a52522-0981-490b-a541-e3514efa3ed8", - "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", - "946a029d-014a-45ca-adcd-e5b8e3927d52", - "43f18805-a4b1-4fc6-a1c9-787eb883bcde", - "e4670d3f-1aa4-4e69-ac7c-0f6fbe1ebddb", - "3f5db866-fafa-412d-a611-8e8ceedc9d66", - "a392bf4c-9790-451e-a9bc-51428fa10a69", - "faaa7c6f-4c6c-443c-99d4-d4c617571545", - "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", - "06d26eca-08e9-467e-9ff0-9595778162a0", - "abdcf999-0861-4881-a478-42fa957c7f17", - "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "5f672947-8abc-447c-bf60-535abbf76fae", - "31e8057b-0fb0-44bd-83cf-3acad24654ec", - "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", - "411bafbe-bac8-4586-9af4-bc0b3163bdde", - "1c85a97d-9927-406a-a2ae-6f738750a95d" - ], - "stops": [], - "line_id": "939f13e7-a607-453b-a783-b43d443b0225", - "segments": [ - 0, - 3, - 15, - 26, - 32, - 39, - 45, - 52, - 61, - 65, - 74, - 77, - 79, - 82, - 104, - 107, - 113, - 118, - 128, - 135, - 140, - 151, - 155, - 161, - 166, - 187 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 363, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.490709, - 45.539683 - ], - [ - -73.490762, - 45.539711 - ], - [ - -73.490724, - 45.539892 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.491774, - 45.540689 - ], - [ - -73.491536, - 45.540936 - ], - [ - -73.491291, - 45.541175 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.490595, - 45.540697 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.48648, - 45.540152 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482894, - 45.53885 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.480026, - 45.538054 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476951, - 45.537232 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472334, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.469374, - 45.536994 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466182, - 45.535474 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.465509, - 45.535692 - ], - [ - -73.4648, - 45.536162 - ], - [ - -73.464357, - 45.53646 - ], - [ - -73.464185, - 45.536575 - ], - [ - -73.463661, - 45.536866 - ], - [ - -73.462922, - 45.537322 - ], - [ - -73.462834, - 45.537383 - ], - [ - -73.462556, - 45.537575 - ], - [ - -73.461864, - 45.5381 - ], - [ - -73.461553, - 45.538316 - ], - [ - -73.460897, - 45.538771 - ], - [ - -73.460751, - 45.538872 - ], - [ - -73.460539, - 45.539018 - ], - [ - -73.460057, - 45.539352 - ], - [ - -73.459971, - 45.539411 - ], - [ - -73.459859, - 45.539489 - ], - [ - -73.459325, - 45.539858 - ], - [ - -73.45858, - 45.540374 - ], - [ - -73.458577, - 45.540376 - ], - [ - -73.458502, - 45.54043 - ], - [ - -73.457586, - 45.541064 - ], - [ - -73.457486, - 45.541136 - ], - [ - -73.45695, - 45.541509 - ], - [ - -73.45665, - 45.541711 - ], - [ - -73.456523, - 45.541801 - ], - [ - -73.456479, - 45.541824 - ], - [ - -73.45643, - 45.541833 - ], - [ - -73.456281, - 45.541837 - ], - [ - -73.456127, - 45.541828 - ], - [ - -73.455834, - 45.54181 - ], - [ - -73.455731, - 45.542483 - ], - [ - -73.455702, - 45.542678 - ], - [ - -73.455282, - 45.54266 - ], - [ - -73.455166, - 45.542732 - ], - [ - -73.454376, - 45.543288 - ], - [ - -73.453888, - 45.543631 - ], - [ - -73.453772, - 45.543712 - ], - [ - -73.452722, - 45.544428 - ], - [ - -73.452491, - 45.544585 - ], - [ - -73.451253, - 45.545453 - ], - [ - -73.450674, - 45.545851 - ], - [ - -73.4506, - 45.545902 - ], - [ - -73.449968, - 45.546338 - ], - [ - -73.449736, - 45.546505 - ], - [ - -73.449271, - 45.546806 - ], - [ - -73.449103, - 45.546914 - ], - [ - -73.448831, - 45.547062 - ], - [ - -73.448543, - 45.547215 - ], - [ - -73.448339, - 45.547305 - ], - [ - -73.448002, - 45.54744 - ], - [ - -73.447947, - 45.54746 - ], - [ - -73.447769, - 45.547527 - ], - [ - -73.447629, - 45.547579 - ], - [ - -73.447476, - 45.547452 - ], - [ - -73.446934, - 45.547003 - ], - [ - -73.446356, - 45.54662 - ], - [ - -73.44535, - 45.546453 - ], - [ - -73.444819, - 45.546349 - ], - [ - -73.44465, - 45.546309 - ], - [ - -73.444546, - 45.546255 - ], - [ - -73.444459, - 45.546196 - ], - [ - -73.444101, - 45.545932 - ], - [ - -73.444033, - 45.545881 - ], - [ - -73.443348, - 45.545354 - ], - [ - -73.442654, - 45.544846 - ], - [ - -73.44199, - 45.544319 - ], - [ - -73.441469, - 45.543941 - ], - [ - -73.44143, - 45.543907 - ], - [ - -73.441366, - 45.543851 - ], - [ - -73.441568, - 45.543693 - ], - [ - -73.441604, - 45.543671 - ], - [ - -73.443987, - 45.542147 - ], - [ - -73.444838, - 45.541585 - ], - [ - -73.44542, - 45.541195 - ], - [ - -73.445503, - 45.54114 - ], - [ - -73.444511, - 45.54041 - ], - [ - -73.444375, - 45.540325 - ], - [ - -73.444216, - 45.540244 - ], - [ - -73.44408, - 45.540185 - ], - [ - -73.443864, - 45.540132 - ], - [ - -73.44377, - 45.540109 - ], - [ - -73.4435, - 45.540041 - ], - [ - -73.44267, - 45.539892 - ], - [ - -73.442456, - 45.539852 - ], - [ - -73.442205, - 45.539784 - ], - [ - -73.442139, - 45.539761 - ], - [ - -73.442001, - 45.539712 - ], - [ - -73.441896, - 45.53968 - ], - [ - -73.441646, - 45.539559 - ], - [ - -73.44151, - 45.539487 - ], - [ - -73.441387, - 45.539397 - ], - [ - -73.441242, - 45.539293 - ], - [ - -73.441122, - 45.539153 - ], - [ - -73.441004, - 45.538991 - ], - [ - -73.440944, - 45.538829 - ], - [ - -73.440917, - 45.538748 - ], - [ - -73.440908, - 45.538662 - ], - [ - -73.440902, - 45.5386 - ], - [ - -73.440899, - 45.538573 - ], - [ - -73.440907, - 45.538487 - ], - [ - -73.440917, - 45.538393 - ], - [ - -73.440957, - 45.538285 - ], - [ - -73.441023, - 45.538164 - ], - [ - -73.441098, - 45.538047 - ], - [ - -73.4412, - 45.537934 - ], - [ - -73.441569, - 45.537651 - ], - [ - -73.441939, - 45.537372 - ], - [ - -73.442459, - 45.537008 - ], - [ - -73.442686, - 45.536815 - ], - [ - -73.442791, - 45.536664 - ], - [ - -73.442839, - 45.536594 - ], - [ - -73.44311, - 45.535924 - ], - [ - -73.443379, - 45.535204 - ], - [ - -73.443894, - 45.534372 - ], - [ - -73.44395, - 45.534271 - ] - ] - }, - "id": 364, - "properties": { - "id": "6e605347-0128-4d13-89f5-ef3d67dc4e7e", - "data": { - "gtfs": { - "shape_id": "672_1_R" - }, - "segments": [ - { - "distanceMeters": 318, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 310, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 587, - "travelTimeSeconds": 102 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 356, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 127, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 356, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 307, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 50 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6549, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3687.4558134210874, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.74, - "travelTimeWithoutDwellTimesSeconds": 1140, - "operatingTimeWithLayoverTimeSeconds": 1320, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1140, - "operatingSpeedWithLayoverMetersPerSecond": 4.96, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.74 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "1c85a97d-9927-406a-a2ae-6f738750a95d", - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "ce58f095-9b51-4521-8a41-e64bfb0df31e", - "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", - "65003b15-0baf-4f82-9e15-665e17fd1c75", - "81b3573e-d948-478d-a011-db20e21b0c62", - "def08726-b847-4fc6-b901-78e04519a492", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "3b70b024-5c5b-4081-8c70-3fc026422289", - "3f5db866-fafa-412d-a611-8e8ceedc9d66", - "6fd0bc88-4e0d-40ae-bdaa-413bd47146b0", - "1254d090-1d68-478c-a4fc-972cd246c948", - "43f18805-a4b1-4fc6-a1c9-787eb883bcde", - "946a029d-014a-45ca-adcd-e5b8e3927d52", - "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", - "92a52522-0981-490b-a541-e3514efa3ed8", - "5f232e4f-49b4-4ca7-8ee6-3aec9ca49e66", - "146c0089-3caf-43e6-be7c-9f8a4573762c", - "5251f580-cc4c-4e24-adc5-09ece02102d8", - "1f21bce0-b8ed-434c-ade7-9416eb8a180a", - "6ad75842-382c-44ee-b7d6-fd3532656bb0", - "90aff802-7f58-4407-a26e-45f80682eeaf", - "5360d4c3-b5aa-452d-a69b-73fcfc24260f", - "210e532b-2acc-4a3e-b173-3471add098b1" - ], - "stops": [], - "line_id": "939f13e7-a607-453b-a783-b43d443b0225", - "segments": [ - 0, - 12, - 22, - 27, - 36, - 45, - 57, - 67, - 80, - 94, - 100, - 113, - 118, - 120, - 123, - 134, - 144, - 150, - 156, - 162, - 168, - 179, - 192 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 364, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.4614, - 45.561625 - ], - [ - -73.461679, - 45.561618 - ], - [ - -73.461978, - 45.561613 - ], - [ - -73.46207, - 45.561609 - ], - [ - -73.462165, - 45.561609 - ], - [ - -73.46239, - 45.561604 - ], - [ - -73.462462, - 45.561604 - ], - [ - -73.463036, - 45.561587 - ], - [ - -73.463459, - 45.561555 - ], - [ - -73.463851, - 45.561519 - ], - [ - -73.464159, - 45.561474 - ], - [ - -73.464383, - 45.56143 - ], - [ - -73.464635, - 45.561385 - ], - [ - -73.464943, - 45.561331 - ], - [ - -73.465298, - 45.56125 - ], - [ - -73.465606, - 45.561173 - ], - [ - -73.465739, - 45.561136 - ], - [ - -73.465993, - 45.561066 - ], - [ - -73.466384, - 45.560949 - ], - [ - -73.466692, - 45.560841 - ], - [ - -73.46697, - 45.560742 - ], - [ - -73.467261, - 45.560621 - ], - [ - -73.467525, - 45.560508 - ], - [ - -73.467816, - 45.560373 - ], - [ - -73.467979, - 45.560279 - ], - [ - -73.468117, - 45.560229 - ], - [ - -73.468235, - 45.560175 - ], - [ - -73.468563, - 45.559978 - ], - [ - -73.468878, - 45.559766 - ], - [ - -73.468988, - 45.55969 - ], - [ - -73.469567, - 45.559298 - ], - [ - -73.469573, - 45.559295 - ], - [ - -73.469855, - 45.559096 - ], - [ - -73.470074, - 45.558948 - ], - [ - -73.470224, - 45.55884 - ], - [ - -73.470906, - 45.55839 - ], - [ - -73.471028, - 45.558322 - ], - [ - -73.470903, - 45.558228 - ], - [ - -73.470033, - 45.557566 - ], - [ - -73.469941, - 45.557497 - ], - [ - -73.469575, - 45.55722 - ], - [ - -73.469106, - 45.556862 - ], - [ - -73.468985, - 45.55677 - ], - [ - -73.468826, - 45.556648 - ], - [ - -73.467509, - 45.555651 - ], - [ - -73.466771, - 45.555092 - ], - [ - -73.465456, - 45.554095 - ], - [ - -73.464874, - 45.553655 - ], - [ - -73.464766, - 45.553574 - ], - [ - -73.464651, - 45.553651 - ], - [ - -73.464574, - 45.553704 - ], - [ - -73.464098, - 45.55401 - ], - [ - -73.464057, - 45.55407 - ], - [ - -73.464004, - 45.554145 - ], - [ - -73.46269, - 45.554985 - ], - [ - -73.462576, - 45.555058 - ], - [ - -73.462207, - 45.555292 - ], - [ - -73.461991, - 45.555431 - ], - [ - -73.461967, - 45.555443 - ], - [ - -73.461925, - 45.555463 - ], - [ - -73.461827, - 45.555485 - ], - [ - -73.461719, - 45.555453 - ], - [ - -73.461661, - 45.555436 - ], - [ - -73.461575, - 45.555374 - ], - [ - -73.461529, - 45.555341 - ], - [ - -73.461353, - 45.555197 - ], - [ - -73.461155, - 45.555031 - ], - [ - -73.461091, - 45.55497 - ], - [ - -73.461041, - 45.554923 - ], - [ - -73.460904, - 45.55472 - ], - [ - -73.460843, - 45.554611 - ], - [ - -73.460476, - 45.553964 - ], - [ - -73.46013, - 45.553398 - ], - [ - -73.460074, - 45.553307 - ], - [ - -73.45984, - 45.552911 - ], - [ - -73.459717, - 45.552763 - ], - [ - -73.459495, - 45.552583 - ], - [ - -73.458867, - 45.552123 - ], - [ - -73.45828, - 45.551723 - ], - [ - -73.458174, - 45.551651 - ], - [ - -73.456341, - 45.550263 - ], - [ - -73.456272, - 45.55021 - ], - [ - -73.454367, - 45.548763 - ], - [ - -73.454302, - 45.548714 - ], - [ - -73.454269, - 45.548689 - ], - [ - -73.452377, - 45.547251 - ], - [ - -73.452243, - 45.547149 - ], - [ - -73.452485, - 45.546992 - ], - [ - -73.452859, - 45.546749 - ], - [ - -73.452912, - 45.546715 - ], - [ - -73.453255, - 45.546529 - ], - [ - -73.453306, - 45.546494 - ], - [ - -73.45375, - 45.546193 - ], - [ - -73.454098, - 45.545958 - ], - [ - -73.454416, - 45.545745 - ], - [ - -73.454536, - 45.545665 - ], - [ - -73.454687, - 45.545566 - ], - [ - -73.454901, - 45.545427 - ], - [ - -73.455048, - 45.545333 - ], - [ - -73.455094, - 45.545301 - ], - [ - -73.455158, - 45.545252 - ], - [ - -73.455247, - 45.545184 - ], - [ - -73.455332, - 45.545094 - ], - [ - -73.455461, - 45.54495 - ], - [ - -73.455559, - 45.544829 - ], - [ - -73.456108, - 45.544969 - ], - [ - -73.456291, - 45.545005 - ], - [ - -73.456381, - 45.545018 - ], - [ - -73.456413, - 45.545022 - ], - [ - -73.456506, - 45.545025 - ], - [ - -73.456655, - 45.545026 - ], - [ - -73.45681, - 45.545021 - ], - [ - -73.457082, - 45.545011 - ], - [ - -73.457324, - 45.544996 - ], - [ - -73.457656, - 45.544978 - ], - [ - -73.458864, - 45.54493 - ], - [ - -73.459543, - 45.544902 - ], - [ - -73.461269, - 45.544812 - ], - [ - -73.461426, - 45.544804 - ], - [ - -73.461578, - 45.544835 - ], - [ - -73.462079, - 45.544816 - ], - [ - -73.462661, - 45.544802 - ], - [ - -73.463226, - 45.544806 - ], - [ - -73.463613, - 45.544792 - ], - [ - -73.463647, - 45.544792 - ], - [ - -73.463763, - 45.544793 - ], - [ - -73.464006, - 45.544774 - ], - [ - -73.464279, - 45.544749 - ], - [ - -73.464624, - 45.544709 - ], - [ - -73.46498, - 45.544652 - ], - [ - -73.465084, - 45.544635 - ], - [ - -73.465297, - 45.544589 - ], - [ - -73.465549, - 45.544534 - ], - [ - -73.465651, - 45.544509 - ], - [ - -73.465759, - 45.544479 - ], - [ - -73.465837, - 45.544423 - ], - [ - -73.465862, - 45.544419 - ], - [ - -73.466248, - 45.544329 - ], - [ - -73.46648, - 45.54427 - ], - [ - -73.466764, - 45.544194 - ], - [ - -73.466769, - 45.544194 - ], - [ - -73.467143, - 45.544086 - ], - [ - -73.467484, - 45.543974 - ], - [ - -73.467587, - 45.543933 - ], - [ - -73.467632, - 45.543915 - ], - [ - -73.468074, - 45.543744 - ], - [ - -73.468467, - 45.543591 - ], - [ - -73.468689, - 45.543484 - ], - [ - -73.468945, - 45.543367 - ], - [ - -73.469346, - 45.54316 - ], - [ - -73.469557, - 45.543052 - ], - [ - -73.469727, - 45.542945 - ], - [ - -73.469836, - 45.542876 - ], - [ - -73.470253, - 45.542604 - ], - [ - -73.470294, - 45.542577 - ], - [ - -73.47055, - 45.542478 - ], - [ - -73.470835, - 45.54232 - ], - [ - -73.471384, - 45.542 - ], - [ - -73.471513, - 45.541905 - ], - [ - -73.47173, - 45.541959 - ], - [ - -73.471833, - 45.542019 - ], - [ - -73.472231, - 45.542247 - ], - [ - -73.472636, - 45.54249 - ], - [ - -73.473362, - 45.542963 - ], - [ - -73.473831, - 45.543264 - ], - [ - -73.473915, - 45.543318 - ], - [ - -73.474124, - 45.54344 - ], - [ - -73.474404, - 45.543587 - ], - [ - -73.474586, - 45.543683 - ], - [ - -73.475053, - 45.543884 - ], - [ - -73.475109, - 45.543908 - ], - [ - -73.475416, - 45.544033 - ], - [ - -73.475463, - 45.544052 - ], - [ - -73.475489, - 45.544062 - ], - [ - -73.475906, - 45.544232 - ], - [ - -73.476368, - 45.544484 - ], - [ - -73.476738, - 45.5447 - ], - [ - -73.477125, - 45.544952 - ], - [ - -73.47749, - 45.545227 - ], - [ - -73.478085, - 45.54574 - ], - [ - -73.478088, - 45.545743 - ], - [ - -73.478167, - 45.545816 - ], - [ - -73.478252, - 45.545902 - ], - [ - -73.479053, - 45.546743 - ], - [ - -73.47929, - 45.546982 - ], - [ - -73.479428, - 45.54712 - ], - [ - -73.479532, - 45.547225 - ], - [ - -73.479872, - 45.547514 - ], - [ - -73.479981, - 45.547607 - ], - [ - -73.480465, - 45.547976 - ], - [ - -73.480787, - 45.548206 - ], - [ - -73.481574, - 45.548732 - ], - [ - -73.481866, - 45.548943 - ], - [ - -73.481961, - 45.549011 - ], - [ - -73.482061, - 45.549092 - ], - [ - -73.482468, - 45.549434 - ], - [ - -73.482621, - 45.549591 - ], - [ - -73.48267, - 45.549641 - ], - [ - -73.482956, - 45.549956 - ], - [ - -73.483212, - 45.550235 - ], - [ - -73.483484, - 45.550524 - ], - [ - -73.483692, - 45.550744 - ], - [ - -73.483956, - 45.551023 - ], - [ - -73.48424, - 45.550878 - ], - [ - -73.485059, - 45.550458 - ], - [ - -73.485528, - 45.550218 - ], - [ - -73.485955, - 45.549961 - ], - [ - -73.489407, - 45.547816 - ], - [ - -73.48951, - 45.547751 - ], - [ - -73.490714, - 45.547006 - ], - [ - -73.491216, - 45.546506 - ], - [ - -73.491431, - 45.546368 - ], - [ - -73.491829, - 45.546111 - ], - [ - -73.491911, - 45.546057 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.491974, - 45.545187 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.491356, - 45.541251 - ], - [ - -73.491461, - 45.541175 - ], - [ - -73.491486, - 45.541152 - ], - [ - -73.49185, - 45.54078 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.490724, - 45.539892 - ], - [ - -73.490551, - 45.539825 - ], - [ - -73.490497, - 45.539768 - ], - [ - -73.49051, - 45.539681 - ], - [ - -73.490564, - 45.539666 - ], - [ - -73.49064, - 45.539646 - ], - [ - -73.490709, - 45.539683 - ] - ] - }, - "id": 365, - "properties": { - "id": "67a0b758-6fc3-458a-9867-78e9f9b0b7f7", - "data": { - "gtfs": { - "shape_id": "673_1_A" - }, - "segments": [ - { - "distanceMeters": 345, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 366, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 378, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 577, - "travelTimeSeconds": 96 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 511, - "travelTimeSeconds": 85 - }, - { - "distanceMeters": 619, - "travelTimeSeconds": 103 - }, - { - "distanceMeters": 435, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 464, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 1033, - "travelTimeSeconds": 172 - }, - { - "distanceMeters": 522, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 34 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7921, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3343.1513902454826, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 5.28, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6 - }, - "mode": "bus", - "name": "École Jacques-Rousseau", - "color": "#A32638", - "nodes": [ - "28b7e465-7627-4587-950e-0fe104f1bac7", - "83389414-0049-46f6-a04b-557250511611", - "5ed15359-4097-46e8-93c0-1b63029d1081", - "8ece351b-2186-4cfe-9624-9d1eacc2181d", - "1e6b54ae-f11e-4726-a36f-9c4411688776", - "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", - "2e8375c2-0f15-448a-8203-e8a29699849e", - "d9f7a5bd-7489-48e7-93cf-4368a09e2676", - "714fccbf-a3ad-45ea-8e3f-be54db61f028", - "bb4626e2-c410-497b-977c-2cc1b65d7b57", - "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", - "19d70945-d3db-430f-90e2-ad67901fda8d", - "7297ee1d-b36d-46fd-b6df-e9807a5791cf", - "ed9c5edc-a8fc-42c1-8283-02b881c76ff4", - "81ceaeba-df2d-476d-a80e-d7112cda70cb", - "50390f49-dc4e-4a3a-8b7e-5dae5f17aa70", - "3a5ea563-a764-4bb6-b2d3-d98a1c377161", - "0e8b7968-4242-43b0-a1a6-300cb3c93219", - "06cdca3a-f2d1-4f41-837c-693f8619463c", - "221d32b3-ef8a-416e-a402-91b2f0007208", - "2d7687a5-f458-4ce1-a3df-9639d89c0154", - "411bafbe-bac8-4586-9af4-bc0b3163bdde", - "1c85a97d-9927-406a-a2ae-6f738750a95d" - ], - "stops": [], - "line_id": "6fb1a6f8-a5d2-4a63-9e28-22d3be460c9b", - "segments": [ - 0, - 16, - 31, - 41, - 52, - 58, - 72, - 78, - 80, - 82, - 85, - 94, - 107, - 115, - 117, - 143, - 164, - 180, - 192, - 200, - 218, - 239 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 365, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.490709, - 45.539683 - ], - [ - -73.490762, - 45.539711 - ], - [ - -73.490724, - 45.539892 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.491904, - 45.540552 - ], - [ - -73.491774, - 45.540689 - ], - [ - -73.491536, - 45.540936 - ], - [ - -73.491291, - 45.541175 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491035, - 45.541427 - ], - [ - -73.491084, - 45.541584 - ], - [ - -73.491099, - 45.541724 - ], - [ - -73.491103, - 45.541795 - ], - [ - -73.491106, - 45.541854 - ], - [ - -73.491092, - 45.542156 - ], - [ - -73.491081, - 45.542381 - ], - [ - -73.49104, - 45.543146 - ], - [ - -73.490998, - 45.543726 - ], - [ - -73.491037, - 45.544117 - ], - [ - -73.491071, - 45.544252 - ], - [ - -73.491113, - 45.544396 - ], - [ - -73.491272, - 45.544698 - ], - [ - -73.491367, - 45.544855 - ], - [ - -73.491449, - 45.544981 - ], - [ - -73.491608, - 45.545148 - ], - [ - -73.491886, - 45.545409 - ], - [ - -73.492356, - 45.545778 - ], - [ - -73.492157, - 45.545903 - ], - [ - -73.491911, - 45.546057 - ], - [ - -73.491829, - 45.546111 - ], - [ - -73.491646, - 45.546229 - ], - [ - -73.491431, - 45.546368 - ], - [ - -73.491216, - 45.546506 - ], - [ - -73.490714, - 45.547006 - ], - [ - -73.48951, - 45.547751 - ], - [ - -73.489407, - 45.547816 - ], - [ - -73.485955, - 45.549961 - ], - [ - -73.485528, - 45.550218 - ], - [ - -73.485059, - 45.550458 - ], - [ - -73.484196, - 45.5509 - ], - [ - -73.483956, - 45.551023 - ], - [ - -73.483711, - 45.550763 - ], - [ - -73.483692, - 45.550744 - ], - [ - -73.483212, - 45.550235 - ], - [ - -73.482956, - 45.549956 - ], - [ - -73.48267, - 45.549641 - ], - [ - -73.482621, - 45.549591 - ], - [ - -73.482468, - 45.549434 - ], - [ - -73.482154, - 45.54917 - ], - [ - -73.482061, - 45.549092 - ], - [ - -73.481961, - 45.549011 - ], - [ - -73.481574, - 45.548732 - ], - [ - -73.480787, - 45.548206 - ], - [ - -73.480465, - 45.547976 - ], - [ - -73.479981, - 45.547607 - ], - [ - -73.479872, - 45.547514 - ], - [ - -73.479532, - 45.547225 - ], - [ - -73.479428, - 45.54712 - ], - [ - -73.47929, - 45.546982 - ], - [ - -73.479053, - 45.546743 - ], - [ - -73.47833, - 45.545984 - ], - [ - -73.478252, - 45.545902 - ], - [ - -73.478167, - 45.545816 - ], - [ - -73.478085, - 45.54574 - ], - [ - -73.47749, - 45.545227 - ], - [ - -73.477125, - 45.544952 - ], - [ - -73.476738, - 45.5447 - ], - [ - -73.476368, - 45.544484 - ], - [ - -73.475906, - 45.544232 - ], - [ - -73.475489, - 45.544062 - ], - [ - -73.475463, - 45.544052 - ], - [ - -73.475416, - 45.544033 - ], - [ - -73.475109, - 45.543908 - ], - [ - -73.475053, - 45.543884 - ], - [ - -73.474586, - 45.543683 - ], - [ - -73.474404, - 45.543587 - ], - [ - -73.474124, - 45.54344 - ], - [ - -73.474013, - 45.543375 - ], - [ - -73.473915, - 45.543318 - ], - [ - -73.473362, - 45.542963 - ], - [ - -73.472636, - 45.54249 - ], - [ - -73.472231, - 45.542247 - ], - [ - -73.471828, - 45.542015 - ], - [ - -73.47173, - 45.541959 - ], - [ - -73.471636, - 45.541824 - ], - [ - -73.471512, - 45.54173 - ], - [ - -73.471378, - 45.541806 - ], - [ - -73.47123, - 45.541901 - ], - [ - -73.470672, - 45.542296 - ], - [ - -73.47048, - 45.542427 - ], - [ - -73.470294, - 45.542577 - ], - [ - -73.470253, - 45.542604 - ], - [ - -73.470176, - 45.542655 - ], - [ - -73.469836, - 45.542876 - ], - [ - -73.469727, - 45.542945 - ], - [ - -73.469557, - 45.543052 - ], - [ - -73.469346, - 45.54316 - ], - [ - -73.468945, - 45.543367 - ], - [ - -73.468689, - 45.543484 - ], - [ - -73.468467, - 45.543591 - ], - [ - -73.468074, - 45.543744 - ], - [ - -73.467693, - 45.543891 - ], - [ - -73.467632, - 45.543915 - ], - [ - -73.467484, - 45.543974 - ], - [ - -73.467143, - 45.544086 - ], - [ - -73.466769, - 45.544194 - ], - [ - -73.466764, - 45.544194 - ], - [ - -73.46648, - 45.54427 - ], - [ - -73.466248, - 45.544329 - ], - [ - -73.465862, - 45.544419 - ], - [ - -73.465837, - 45.544423 - ], - [ - -73.465767, - 45.544414 - ], - [ - -73.465608, - 45.544444 - ], - [ - -73.465524, - 45.54446 - ], - [ - -73.465322, - 45.544499 - ], - [ - -73.464956, - 45.544556 - ], - [ - -73.464874, - 45.544569 - ], - [ - -73.464126, - 45.544648 - ], - [ - -73.463638, - 45.544692 - ], - [ - -73.463632, - 45.544692 - ], - [ - -73.461821, - 45.544766 - ], - [ - -73.461583, - 45.544772 - ], - [ - -73.461519, - 45.544785 - ], - [ - -73.461426, - 45.544804 - ], - [ - -73.459566, - 45.544901 - ], - [ - -73.459543, - 45.544902 - ], - [ - -73.457656, - 45.544978 - ], - [ - -73.457324, - 45.544996 - ], - [ - -73.457082, - 45.545011 - ], - [ - -73.45681, - 45.545021 - ], - [ - -73.456655, - 45.545026 - ], - [ - -73.456506, - 45.545025 - ], - [ - -73.456413, - 45.545022 - ], - [ - -73.456291, - 45.545005 - ], - [ - -73.456108, - 45.544969 - ], - [ - -73.455559, - 45.544829 - ], - [ - -73.455289, - 45.544748 - ], - [ - -73.455178, - 45.54491 - ], - [ - -73.455067, - 45.545031 - ], - [ - -73.454985, - 45.545117 - ], - [ - -73.45488, - 45.545202 - ], - [ - -73.454712, - 45.545301 - ], - [ - -73.454662, - 45.545337 - ], - [ - -73.454517, - 45.54544 - ], - [ - -73.454362, - 45.54553 - ], - [ - -73.454039, - 45.545719 - ], - [ - -73.453554, - 45.546052 - ], - [ - -73.453387, - 45.546196 - ], - [ - -73.453186, - 45.546448 - ], - [ - -73.45304, - 45.546592 - ], - [ - -73.452912, - 45.546715 - ], - [ - -73.452859, - 45.546749 - ], - [ - -73.452394, - 45.547051 - ], - [ - -73.452243, - 45.547149 - ], - [ - -73.452507, - 45.54735 - ], - [ - -73.45272, - 45.547512 - ], - [ - -73.454102, - 45.548562 - ], - [ - -73.454269, - 45.548689 - ], - [ - -73.454302, - 45.548714 - ], - [ - -73.456163, - 45.550128 - ], - [ - -73.456272, - 45.55021 - ], - [ - -73.458174, - 45.551651 - ], - [ - -73.45845, - 45.551839 - ], - [ - -73.458867, - 45.552123 - ], - [ - -73.459495, - 45.552583 - ], - [ - -73.459717, - 45.552763 - ], - [ - -73.45984, - 45.552911 - ], - [ - -73.459979, - 45.553146 - ], - [ - -73.460074, - 45.553307 - ], - [ - -73.460476, - 45.553964 - ], - [ - -73.460843, - 45.554611 - ], - [ - -73.460904, - 45.55472 - ], - [ - -73.461041, - 45.554923 - ], - [ - -73.461091, - 45.55497 - ], - [ - -73.461155, - 45.555031 - ], - [ - -73.461353, - 45.555197 - ], - [ - -73.461529, - 45.555341 - ], - [ - -73.461658, - 45.555433 - ], - [ - -73.461661, - 45.555436 - ], - [ - -73.461719, - 45.555453 - ], - [ - -73.461827, - 45.555485 - ], - [ - -73.461925, - 45.555463 - ], - [ - -73.461991, - 45.555431 - ], - [ - -73.462132, - 45.55534 - ], - [ - -73.462207, - 45.555292 - ], - [ - -73.462576, - 45.555058 - ], - [ - -73.46269, - 45.554985 - ], - [ - -73.464004, - 45.554145 - ], - [ - -73.46405, - 45.554132 - ], - [ - -73.464203, - 45.554087 - ], - [ - -73.464314, - 45.554019 - ], - [ - -73.464675, - 45.55379 - ], - [ - -73.464758, - 45.553732 - ], - [ - -73.466649, - 45.555169 - ], - [ - -73.467394, - 45.555735 - ], - [ - -73.468707, - 45.556734 - ], - [ - -73.468863, - 45.556851 - ], - [ - -73.468884, - 45.556867 - ], - [ - -73.468891, - 45.556872 - ], - [ - -73.469456, - 45.557296 - ], - [ - -73.469905, - 45.557643 - ], - [ - -73.470197, - 45.557962 - ], - [ - -73.470249, - 45.558057 - ], - [ - -73.470265, - 45.558151 - ], - [ - -73.470274, - 45.558277 - ], - [ - -73.470262, - 45.558403 - ], - [ - -73.470228, - 45.55852 - ], - [ - -73.470175, - 45.558628 - ], - [ - -73.470104, - 45.558723 - ], - [ - -73.469991, - 45.558844 - ], - [ - -73.469731, - 45.558997 - ], - [ - -73.469495, - 45.559157 - ], - [ - -73.46926, - 45.559316 - ], - [ - -73.468792, - 45.559631 - ], - [ - -73.468729, - 45.559676 - ], - [ - -73.468547, - 45.559798 - ], - [ - -73.467979, - 45.560279 - ], - [ - -73.467816, - 45.560373 - ], - [ - -73.467525, - 45.560508 - ], - [ - -73.467261, - 45.560621 - ], - [ - -73.46697, - 45.560742 - ], - [ - -73.466692, - 45.560841 - ], - [ - -73.466384, - 45.560949 - ], - [ - -73.466142, - 45.561021 - ], - [ - -73.465993, - 45.561066 - ], - [ - -73.465606, - 45.561173 - ], - [ - -73.465298, - 45.56125 - ], - [ - -73.464943, - 45.561331 - ], - [ - -73.464635, - 45.561385 - ], - [ - -73.464383, - 45.56143 - ], - [ - -73.464342, - 45.561416 - ], - [ - -73.46391, - 45.56142 - ], - [ - -73.463676, - 45.561411 - ], - [ - -73.463469, - 45.561416 - ], - [ - -73.463235, - 45.561434 - ], - [ - -73.463014, - 45.561456 - ], - [ - -73.462671, - 45.561478 - ], - [ - -73.46249, - 45.561483 - ], - [ - -73.462171, - 45.561492 - ], - [ - -73.461975, - 45.561496 - ], - [ - -73.460887, - 45.561523 - ] - ] - }, - "id": 366, - "properties": { - "id": "5f05cc13-ebf9-453e-8a94-d099ed9ee0a0", - "data": { - "gtfs": { - "shape_id": "673_1_R" - }, - "segments": [ - { - "distanceMeters": 313, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 549, - "travelTimeSeconds": 92 - }, - { - "distanceMeters": 782, - "travelTimeSeconds": 131 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 465, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 449, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 426, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 497, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 422, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 71, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 190, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 547, - "travelTimeSeconds": 91 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 125, - "travelTimeSeconds": 21 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7880, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3347.6451539953073, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.97, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 5.25, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.97 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "1c85a97d-9927-406a-a2ae-6f738750a95d", - "038a22ba-4928-42fc-aaed-50fbd831df37", - "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", - "cd788179-2c9b-4e1e-9ba3-10b35bfde3fa", - "06cdca3a-f2d1-4f41-837c-693f8619463c", - "0e8b7968-4242-43b0-a1a6-300cb3c93219", - "3a5ea563-a764-4bb6-b2d3-d98a1c377161", - "a1edad0a-8432-4850-b895-9d97092489b6", - "50390f49-dc4e-4a3a-8b7e-5dae5f17aa70", - "81ceaeba-df2d-476d-a80e-d7112cda70cb", - "ed9c5edc-a8fc-42c1-8283-02b881c76ff4", - "86d2a168-d8d6-4528-80ff-833432ddaf2d", - "c7d234f2-22e5-4459-8628-1d01e7ca4dc0", - "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", - "bb4626e2-c410-497b-977c-2cc1b65d7b57", - "714fccbf-a3ad-45ea-8e3f-be54db61f028", - "d9f7a5bd-7489-48e7-93cf-4368a09e2676", - "2e8375c2-0f15-448a-8203-e8a29699849e", - "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", - "1e6b54ae-f11e-4726-a36f-9c4411688776", - "8ece351b-2186-4cfe-9624-9d1eacc2181d", - "b070e296-b686-4ba3-bf68-049018a7af21", - "83389414-0049-46f6-a04b-557250511611", - "2b894d51-a427-4850-8fae-89ed3f29388d", - "fe1423a8-e632-40f2-9b1e-93314e069a43" - ], - "stops": [], - "line_id": "6fb1a6f8-a5d2-4a63-9e28-22d3be460c9b", - "segments": [ - 0, - 14, - 32, - 41, - 50, - 62, - 79, - 84, - 103, - 124, - 126, - 144, - 154, - 157, - 158, - 161, - 164, - 169, - 179, - 190, - 200, - 213, - 225, - 239 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 366, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.460306, - 45.44382 - ], - [ - -73.460454, - 45.443598 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.461187, - 45.442462 - ], - [ - -73.461249, - 45.442366 - ], - [ - -73.461921, - 45.441345 - ], - [ - -73.46199, - 45.441264 - ], - [ - -73.46204, - 45.441216 - ], - [ - -73.462145, - 45.441115 - ], - [ - -73.462213, - 45.441057 - ], - [ - -73.46187, - 45.440814 - ], - [ - -73.461732, - 45.440683 - ], - [ - -73.461124, - 45.43999 - ], - [ - -73.4611, - 45.439963 - ], - [ - -73.460879, - 45.439666 - ], - [ - -73.460804, - 45.439527 - ], - [ - -73.460756, - 45.439374 - ], - [ - -73.460732, - 45.439261 - ], - [ - -73.460749, - 45.439167 - ], - [ - -73.460753, - 45.439144 - ], - [ - -73.460775, - 45.43905 - ], - [ - -73.460824, - 45.438928 - ], - [ - -73.460899, - 45.438784 - ], - [ - -73.461527, - 45.437813 - ], - [ - -73.462052, - 45.437003 - ], - [ - -73.462055, - 45.436998 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.462701, - 45.435982 - ], - [ - -73.463836, - 45.436306 - ], - [ - -73.463949, - 45.43609 - ], - [ - -73.464014, - 45.43598 - ], - [ - -73.464042, - 45.435933 - ], - [ - -73.464129, - 45.435726 - ], - [ - -73.464208, - 45.435541 - ], - [ - -73.464217, - 45.435519 - ], - [ - -73.464262, - 45.435411 - ], - [ - -73.464363, - 45.435226 - ], - [ - -73.464402, - 45.435154 - ], - [ - -73.464983, - 45.434165 - ], - [ - -73.465295, - 45.433622 - ], - [ - -73.465352, - 45.433521 - ], - [ - -73.466273, - 45.43385 - ], - [ - -73.468905, - 45.434722 - ], - [ - -73.469086, - 45.434782 - ], - [ - -73.469951, - 45.435071 - ], - [ - -73.470598, - 45.435287 - ], - [ - -73.470685, - 45.435314 - ], - [ - -73.470856, - 45.435367 - ], - [ - -73.471308, - 45.435507 - ], - [ - -73.471308, - 45.435507 - ], - [ - -73.471657, - 45.43562 - ], - [ - -73.472058, - 45.435759 - ], - [ - -73.471139, - 45.437154 - ], - [ - -73.471113, - 45.437194 - ], - [ - -73.471037, - 45.437237 - ], - [ - -73.470968, - 45.437275 - ], - [ - -73.470767, - 45.437505 - ], - [ - -73.470657, - 45.43764 - ], - [ - -73.470585, - 45.437793 - ], - [ - -73.470584, - 45.437797 - ], - [ - -73.470561, - 45.437874 - ], - [ - -73.470756, - 45.437887 - ], - [ - -73.471979, - 45.437978 - ], - [ - -73.472271, - 45.438 - ], - [ - -73.471885, - 45.438579 - ], - [ - -73.471678, - 45.438891 - ], - [ - -73.470358, - 45.440885 - ], - [ - -73.470303, - 45.440969 - ], - [ - -73.470099, - 45.441352 - ], - [ - -73.470027, - 45.441639 - ], - [ - -73.470012, - 45.441666 - ], - [ - -73.469784, - 45.442018 - ], - [ - -73.469477, - 45.442492 - ], - [ - -73.46914, - 45.443013 - ], - [ - -73.469051, - 45.443151 - ], - [ - -73.468613, - 45.443844 - ], - [ - -73.468216, - 45.444456 - ], - [ - -73.468179, - 45.444519 - ], - [ - -73.468126, - 45.444631 - ], - [ - -73.468082, - 45.444748 - ], - [ - -73.468044, - 45.444901 - ], - [ - -73.468038, - 45.444935 - ], - [ - -73.468021, - 45.445022 - ], - [ - -73.467959, - 45.445234 - ], - [ - -73.467968, - 45.445351 - ], - [ - -73.467947, - 45.445454 - ], - [ - -73.467879, - 45.445603 - ], - [ - -73.467844, - 45.445638 - ], - [ - -73.467743, - 45.445738 - ], - [ - -73.46755, - 45.445972 - ], - [ - -73.466635, - 45.445539 - ], - [ - -73.466252, - 45.445364 - ], - [ - -73.466048, - 45.445292 - ], - [ - -73.465811, - 45.44522 - ], - [ - -73.464212, - 45.444702 - ], - [ - -73.464073, - 45.444657 - ], - [ - -73.461826, - 45.443936 - ], - [ - -73.46109, - 45.4437 - ], - [ - -73.460765, - 45.443595 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.460454, - 45.443598 - ], - [ - -73.460027, - 45.444237 - ], - [ - -73.459742, - 45.444687 - ], - [ - -73.459532, - 45.445019 - ], - [ - -73.459486, - 45.445092 - ], - [ - -73.458903, - 45.445978 - ], - [ - -73.458716, - 45.446252 - ], - [ - -73.458499, - 45.446437 - ], - [ - -73.458358, - 45.446536 - ], - [ - -73.45823, - 45.446598 - ], - [ - -73.458121, - 45.446639 - ], - [ - -73.458113, - 45.446641 - ], - [ - -73.458085, - 45.446651 - ], - [ - -73.458009, - 45.446676 - ], - [ - -73.457516, - 45.446841 - ], - [ - -73.456885, - 45.447052 - ], - [ - -73.45639, - 45.447218 - ], - [ - -73.456253, - 45.447264 - ], - [ - -73.455927, - 45.447371 - ], - [ - -73.455661, - 45.447479 - ], - [ - -73.455528, - 45.447551 - ], - [ - -73.455416, - 45.447619 - ], - [ - -73.455304, - 45.447709 - ], - [ - -73.455137, - 45.447929 - ], - [ - -73.454897, - 45.448293 - ], - [ - -73.454606, - 45.448707 - ], - [ - -73.454507, - 45.448806 - ], - [ - -73.454414, - 45.448878 - ], - [ - -73.454351, - 45.448928 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.454088, - 45.449121 - ], - [ - -73.454556, - 45.449427 - ], - [ - -73.454799, - 45.449612 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.455393, - 45.45012 - ], - [ - -73.456061, - 45.45066 - ], - [ - -73.456286, - 45.450829 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.457144, - 45.451442 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457598, - 45.451363 - ], - [ - -73.457627, - 45.45129 - ], - [ - -73.457661, - 45.451176 - ], - [ - -73.457648, - 45.45104 - ], - [ - -73.457607, - 45.450938 - ], - [ - -73.457498, - 45.450823 - ], - [ - -73.457365, - 45.450743 - ] - ] - }, - "id": 367, - "properties": { - "id": "be3ee5f9-43ef-4efe-a02f-f1e58a6ec505", - "data": { - "gtfs": { - "shape_id": "674_1_A" - }, - "segments": [ - { - "distanceMeters": 166, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 312, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 28, - "travelTimeSeconds": 5 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 24 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5284, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 833.3851519651183, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.87, - "travelTimeWithoutDwellTimesSeconds": 900, - "operatingTimeWithLayoverTimeSeconds": 1080, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 900, - "operatingSpeedWithLayoverMetersPerSecond": 4.89, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.87 - }, - "mode": "bus", - "name": "École Antoine-Brossard", - "color": "#A32638", - "nodes": [ - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "9b31d865-da9f-4eb8-b8a9-3d488eb579df", - "b93691d0-438e-4eac-87a0-7c1ac45a7c18", - "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", - "19a4f64a-0169-40b9-8b9c-84de3158151e", - "c7e2639a-bb94-426e-918b-714f0212d53b", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "e990ec2d-e586-4b2f-884d-4124f22426b3", - "1d638a17-5a2b-40f7-a0cc-6db81666104e", - "f36c7de3-84dd-4573-ac69-91ccd87efd4f", - "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", - "e13d482c-ee57-4f7d-bc38-264ca460deda", - "daacedd2-0b84-4f73-9f01-d9072ec32dce", - "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", - "e7ac28b2-1ac9-4d12-811f-8e49f5a7d7ab", - "ae5cac19-c84c-4e41-ae57-bbf3b3bda217", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "57126f14-f5bb-4578-a4ae-48d75eae5e82", - "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", - "8b7e764f-0227-410c-89b9-51b9a8ad8c88", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "44eacee6-a348-48cf-aeda-c9ddae958f8e" - ], - "stops": [], - "line_id": "beb52fea-e4d4-4d72-822c-3bf561a6346b", - "segments": [ - 0, - 3, - 7, - 12, - 18, - 23, - 24, - 30, - 39, - 42, - 49, - 59, - 62, - 64, - 66, - 73, - 87, - 94, - 97, - 98, - 103, - 111, - 116, - 127, - 132, - 138 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 367, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.457365, - 45.450743 - ], - [ - -73.457311, - 45.45071 - ], - [ - -73.457055, - 45.450562 - ], - [ - -73.45697, - 45.450481 - ], - [ - -73.456931, - 45.450397 - ], - [ - -73.456841, - 45.450279 - ], - [ - -73.456733, - 45.450296 - ], - [ - -73.456625, - 45.450319 - ], - [ - -73.456525, - 45.450368 - ], - [ - -73.456438, - 45.450427 - ], - [ - -73.456357, - 45.45049 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456003, - 45.45033 - ], - [ - -73.455823, - 45.450178 - ], - [ - -73.455605, - 45.449994 - ], - [ - -73.455056, - 45.44954 - ], - [ - -73.454737, - 45.449301 - ], - [ - -73.454449, - 45.449112 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.454351, - 45.448928 - ], - [ - -73.454507, - 45.448806 - ], - [ - -73.454606, - 45.448707 - ], - [ - -73.454897, - 45.448293 - ], - [ - -73.455137, - 45.447929 - ], - [ - -73.455304, - 45.447709 - ], - [ - -73.455416, - 45.447619 - ], - [ - -73.455528, - 45.447551 - ], - [ - -73.455661, - 45.447479 - ], - [ - -73.455885, - 45.447389 - ], - [ - -73.455927, - 45.447371 - ], - [ - -73.456253, - 45.447264 - ], - [ - -73.456885, - 45.447052 - ], - [ - -73.457516, - 45.446841 - ], - [ - -73.457757, - 45.446761 - ], - [ - -73.458009, - 45.446676 - ], - [ - -73.458085, - 45.446651 - ], - [ - -73.458121, - 45.446639 - ], - [ - -73.45823, - 45.446598 - ], - [ - -73.458358, - 45.446536 - ], - [ - -73.458499, - 45.446437 - ], - [ - -73.458716, - 45.446252 - ], - [ - -73.458903, - 45.445978 - ], - [ - -73.459422, - 45.445188 - ], - [ - -73.459486, - 45.445092 - ], - [ - -73.460027, - 45.444237 - ], - [ - -73.460305, - 45.443821 - ], - [ - -73.460454, - 45.443598 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.461191, - 45.442455 - ], - [ - -73.461249, - 45.442366 - ], - [ - -73.461921, - 45.441345 - ], - [ - -73.46199, - 45.441264 - ], - [ - -73.462039, - 45.441217 - ], - [ - -73.462145, - 45.441115 - ], - [ - -73.462213, - 45.441057 - ], - [ - -73.46187, - 45.440814 - ], - [ - -73.461732, - 45.440683 - ], - [ - -73.461117, - 45.439983 - ], - [ - -73.4611, - 45.439963 - ], - [ - -73.460879, - 45.439666 - ], - [ - -73.460804, - 45.439527 - ], - [ - -73.460756, - 45.439374 - ], - [ - -73.460732, - 45.439261 - ], - [ - -73.46075, - 45.439159 - ], - [ - -73.460753, - 45.439144 - ], - [ - -73.460775, - 45.43905 - ], - [ - -73.460824, - 45.438928 - ], - [ - -73.460899, - 45.438784 - ], - [ - -73.461527, - 45.437814 - ], - [ - -73.462052, - 45.437003 - ], - [ - -73.462055, - 45.436998 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.462701, - 45.435982 - ], - [ - -73.463836, - 45.436306 - ], - [ - -73.463949, - 45.43609 - ], - [ - -73.464014, - 45.43598 - ], - [ - -73.464042, - 45.435933 - ], - [ - -73.464129, - 45.435726 - ], - [ - -73.464208, - 45.435541 - ], - [ - -73.464217, - 45.435519 - ], - [ - -73.464262, - 45.435411 - ], - [ - -73.464363, - 45.435226 - ], - [ - -73.464402, - 45.435154 - ], - [ - -73.464983, - 45.434165 - ], - [ - -73.465295, - 45.433621 - ], - [ - -73.465352, - 45.433521 - ], - [ - -73.466273, - 45.43385 - ], - [ - -73.468907, - 45.434723 - ], - [ - -73.469086, - 45.434782 - ], - [ - -73.469951, - 45.435071 - ], - [ - -73.470598, - 45.435287 - ], - [ - -73.470685, - 45.435314 - ], - [ - -73.470856, - 45.435367 - ], - [ - -73.471308, - 45.435507 - ], - [ - -73.47131, - 45.435508 - ], - [ - -73.471657, - 45.43562 - ], - [ - -73.472058, - 45.435759 - ], - [ - -73.471139, - 45.437154 - ], - [ - -73.471113, - 45.437194 - ], - [ - -73.471037, - 45.437237 - ], - [ - -73.470968, - 45.437275 - ], - [ - -73.470767, - 45.437505 - ], - [ - -73.470657, - 45.43764 - ], - [ - -73.470585, - 45.437793 - ], - [ - -73.470581, - 45.437808 - ], - [ - -73.470561, - 45.437874 - ], - [ - -73.470756, - 45.437887 - ], - [ - -73.471995, - 45.43798 - ], - [ - -73.472271, - 45.438 - ], - [ - -73.471884, - 45.438581 - ], - [ - -73.471678, - 45.438891 - ], - [ - -73.470356, - 45.440888 - ], - [ - -73.470303, - 45.440969 - ], - [ - -73.470099, - 45.441352 - ], - [ - -73.470027, - 45.441639 - ], - [ - -73.470012, - 45.441666 - ], - [ - -73.469784, - 45.442018 - ], - [ - -73.469477, - 45.442492 - ], - [ - -73.469138, - 45.443016 - ], - [ - -73.469051, - 45.443151 - ], - [ - -73.468613, - 45.443844 - ], - [ - -73.468216, - 45.444456 - ], - [ - -73.468179, - 45.444519 - ], - [ - -73.468126, - 45.444631 - ], - [ - -73.468082, - 45.444748 - ], - [ - -73.468044, - 45.444901 - ], - [ - -73.468021, - 45.445022 - ], - [ - -73.467959, - 45.445234 - ], - [ - -73.467968, - 45.445351 - ], - [ - -73.467947, - 45.445454 - ], - [ - -73.467879, - 45.445603 - ], - [ - -73.467833, - 45.445649 - ] - ] - }, - "id": 368, - "properties": { - "id": "d0a20e6b-d3f2-44a2-88d7-3725508a86a9", - "data": { - "gtfs": { - "shape_id": "674_2_R" - }, - "segments": [ - { - "distanceMeters": 178, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 99, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 322, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 93, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 51 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 4437, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 986.4628463791121, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.16, - "travelTimeWithoutDwellTimesSeconds": 720, - "operatingTimeWithLayoverTimeSeconds": 900, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 720, - "operatingSpeedWithLayoverMetersPerSecond": 4.93, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.16 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "44eacee6-a348-48cf-aeda-c9ddae958f8e", - "2c6638eb-437e-4a41-bb5d-d6093797361d", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "8b7e764f-0227-410c-89b9-51b9a8ad8c88", - "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", - "57126f14-f5bb-4578-a4ae-48d75eae5e82", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "9b31d865-da9f-4eb8-b8a9-3d488eb579df", - "b93691d0-438e-4eac-87a0-7c1ac45a7c18", - "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", - "19a4f64a-0169-40b9-8b9c-84de3158151e", - "c7e2639a-bb94-426e-918b-714f0212d53b", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "e990ec2d-e586-4b2f-884d-4124f22426b3", - "1d638a17-5a2b-40f7-a0cc-6db81666104e", - "f36c7de3-84dd-4573-ac69-91ccd87efd4f", - "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", - "e13d482c-ee57-4f7d-bc38-264ca460deda", - "daacedd2-0b84-4f73-9f01-d9072ec32dce", - "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", - "e7ac28b2-1ac9-4d12-811f-8e49f5a7d7ab" - ], - "stops": [], - "line_id": "beb52fea-e4d4-4d72-822c-3bf561a6346b", - "segments": [ - 0, - 13, - 17, - 28, - 33, - 42, - 45, - 48, - 52, - 57, - 63, - 68, - 69, - 75, - 84, - 87, - 94, - 104, - 107, - 109, - 111, - 118 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 368, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.432978, - 45.523655 - ], - [ - -73.432949, - 45.523714 - ], - [ - -73.432601, - 45.524387 - ], - [ - -73.432398, - 45.524792 - ], - [ - -73.432026, - 45.525525 - ], - [ - -73.431458, - 45.526651 - ], - [ - -73.431435, - 45.526699 - ], - [ - -73.43143, - 45.52671 - ], - [ - -73.430919, - 45.527743 - ], - [ - -73.430793, - 45.527793 - ], - [ - -73.430701, - 45.527816 - ], - [ - -73.430693, - 45.527823 - ], - [ - -73.43063, - 45.527876 - ], - [ - -73.430607, - 45.527905 - ], - [ - -73.430587, - 45.527943 - ], - [ - -73.430578, - 45.528022 - ], - [ - -73.43058, - 45.528034 - ], - [ - -73.430593, - 45.528074 - ], - [ - -73.430622, - 45.528122 - ], - [ - -73.430658, - 45.528162 - ], - [ - -73.430703, - 45.52819 - ], - [ - -73.430762, - 45.528212 - ], - [ - -73.430835, - 45.528223 - ], - [ - -73.430897, - 45.528222 - ], - [ - -73.430956, - 45.528215 - ], - [ - -73.430992, - 45.528205 - ], - [ - -73.431119, - 45.528144 - ], - [ - -73.431155, - 45.528104 - ], - [ - -73.431168, - 45.528079 - ], - [ - -73.431176, - 45.528001 - ], - [ - -73.431176, - 45.527987 - ], - [ - -73.431158, - 45.527934 - ], - [ - -73.431122, - 45.52789 - ], - [ - -73.431109, - 45.527875 - ], - [ - -73.431089, - 45.527781 - ], - [ - -73.431568, - 45.526743 - ], - [ - -73.432147, - 45.525588 - ], - [ - -73.433078, - 45.523749 - ], - [ - -73.433693, - 45.522535 - ], - [ - -73.433807, - 45.522565 - ], - [ - -73.433875, - 45.522583 - ], - [ - -73.434321, - 45.522707 - ], - [ - -73.437851, - 45.523688 - ], - [ - -73.438325, - 45.523813 - ], - [ - -73.438143, - 45.524143 - ], - [ - -73.437418, - 45.525456 - ], - [ - -73.437336, - 45.525859 - ], - [ - -73.437466, - 45.526379 - ], - [ - -73.437644, - 45.527043 - ], - [ - -73.437663, - 45.527118 - ], - [ - -73.437995, - 45.52835 - ], - [ - -73.438003, - 45.528378 - ], - [ - -73.438018, - 45.528571 - ], - [ - -73.438014, - 45.528909 - ], - [ - -73.437936, - 45.529159 - ], - [ - -73.437705, - 45.529692 - ], - [ - -73.437373, - 45.530429 - ], - [ - -73.436999, - 45.531185 - ], - [ - -73.436846, - 45.531394 - ], - [ - -73.436514, - 45.531643 - ], - [ - -73.436328, - 45.531783 - ], - [ - -73.436242, - 45.53185 - ], - [ - -73.436738, - 45.532166 - ], - [ - -73.436807, - 45.5322 - ], - [ - -73.43711, - 45.532346 - ], - [ - -73.437143, - 45.532359 - ], - [ - -73.437365, - 45.532446 - ], - [ - -73.437788, - 45.532575 - ], - [ - -73.438512, - 45.532777 - ], - [ - -73.438764, - 45.532852 - ], - [ - -73.439121, - 45.532958 - ], - [ - -73.439267, - 45.532996 - ], - [ - -73.439309, - 45.532912 - ], - [ - -73.439381, - 45.532747 - ], - [ - -73.440126, - 45.531039 - ], - [ - -73.440178, - 45.530918 - ], - [ - -73.440526, - 45.530139 - ], - [ - -73.440971, - 45.529144 - ], - [ - -73.441026, - 45.529021 - ], - [ - -73.441195, - 45.528603 - ], - [ - -73.441677, - 45.52752 - ], - [ - -73.441723, - 45.527415 - ], - [ - -73.442111, - 45.526543 - ], - [ - -73.442305, - 45.526133 - ], - [ - -73.442765, - 45.52521 - ], - [ - -73.442852, - 45.525036 - ], - [ - -73.442988, - 45.525071 - ], - [ - -73.443244, - 45.525138 - ], - [ - -73.443912, - 45.525312 - ], - [ - -73.444302, - 45.525413 - ], - [ - -73.444482, - 45.52546 - ], - [ - -73.444863, - 45.525554 - ], - [ - -73.4451, - 45.525613 - ], - [ - -73.445298, - 45.525685 - ], - [ - -73.4455, - 45.525762 - ], - [ - -73.446265, - 45.526066 - ], - [ - -73.446307, - 45.526083 - ], - [ - -73.446395, - 45.526117 - ], - [ - -73.447841, - 45.526653 - ], - [ - -73.449303, - 45.52721 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.45067, - 45.527735 - ], - [ - -73.451123, - 45.527906 - ], - [ - -73.451519, - 45.528063 - ], - [ - -73.45214, - 45.528347 - ], - [ - -73.452276, - 45.528409 - ], - [ - -73.452337, - 45.528437 - ], - [ - -73.45321, - 45.528797 - ], - [ - -73.454095, - 45.529149 - ], - [ - -73.454876, - 45.529483 - ], - [ - -73.454978, - 45.529527 - ], - [ - -73.45507, - 45.529563 - ], - [ - -73.45727, - 45.530458 - ], - [ - -73.457482, - 45.530545 - ], - [ - -73.458332, - 45.530905 - ], - [ - -73.460581, - 45.531882 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.462008, - 45.532616 - ], - [ - -73.462751, - 45.533003 - ], - [ - -73.463681, - 45.533552 - ], - [ - -73.463873, - 45.533665 - ], - [ - -73.464875, - 45.534543 - ], - [ - -73.465715, - 45.535318 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.468787, - 45.537043 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469941, - 45.537318 - ], - [ - -73.470305, - 45.537406 - ], - [ - -73.470749, - 45.537487 - ], - [ - -73.471335, - 45.537563 - ], - [ - -73.471845, - 45.53759 - ], - [ - -73.471906, - 45.53759 - ], - [ - -73.472146, - 45.537591 - ], - [ - -73.472355, - 45.537591 - ], - [ - -73.473126, - 45.537555 - ], - [ - -73.473826, - 45.537492 - ], - [ - -73.474497, - 45.537431 - ], - [ - -73.474517, - 45.537429 - ], - [ - -73.474599, - 45.537423 - ], - [ - -73.475173, - 45.53738 - ], - [ - -73.47563, - 45.537344 - ], - [ - -73.476192, - 45.537353 - ], - [ - -73.476662, - 45.537394 - ], - [ - -73.477026, - 45.537434 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.477861, - 45.537594 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.47948, - 45.538072 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.48244, - 45.538906 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.485765, - 45.540113 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.491356, - 45.541251 - ], - [ - -73.491461, - 45.541175 - ], - [ - -73.491486, - 45.541152 - ], - [ - -73.491857, - 45.540773 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.490724, - 45.539892 - ], - [ - -73.490551, - 45.539825 - ], - [ - -73.490497, - 45.539768 - ], - [ - -73.49051, - 45.539681 - ], - [ - -73.490564, - 45.539666 - ], - [ - -73.49064, - 45.539646 - ], - [ - -73.490709, - 45.539683 - ] - ] - }, - "id": 369, - "properties": { - "id": "70fe79d1-87b3-4080-bf4b-80eb7fb023d2", - "data": { - "gtfs": { - "shape_id": "675_1_A" - }, - "segments": [ - { - "distanceMeters": 354, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 944, - "travelTimeSeconds": 168 - }, - { - "distanceMeters": 375, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 392, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 530, - "travelTimeSeconds": 95 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 88, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 316, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 556, - "travelTimeSeconds": 99 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 37 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8386, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4844.786012560933, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.59, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 4.99, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.59 - }, - "mode": "bus", - "name": "École Jacques-Rousseau", - "color": "#A32638", - "nodes": [ - "6b5e798b-1890-48ed-a234-04c622fd13ea", - "186b2759-8d28-41b8-beae-bac2adf7b3f9", - "455644f9-4a24-446b-b548-a53bc406a4d8", - "908faba3-76b8-49ef-bcfd-e4970978a82f", - "b3ae6488-015e-46a3-b034-181cc02048d1", - "0f82a749-1250-41a6-a638-43db1b5bd1a7", - "dd7e143a-63db-4b4e-82d6-e5e80de82672", - "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", - "de69f95c-e485-42da-bcac-5eeb8a8928ad", - "e36c087c-d78e-48bb-9430-6af9d10493cf", - "5b35096e-2561-4a9f-8bf4-a3e7609358bf", - "37e0037c-1e13-45e4-a410-24f20d2177f9", - "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", - "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "51878141-1194-4666-977c-0597ee638ffb", - "0a078431-12d6-4e73-9908-076c3a27e8ed", - "211cb268-dcfa-4d7b-810c-681bfa65d4c8", - "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "1e4facbf-29da-4515-97c4-4ef86c22290e", - "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", - "06d26eca-08e9-467e-9ff0-9595778162a0", - "abdcf999-0861-4881-a478-42fa957c7f17", - "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "5f672947-8abc-447c-bf60-535abbf76fae", - "31e8057b-0fb0-44bd-83cf-3acad24654ec", - "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", - "411bafbe-bac8-4586-9af4-bc0b3163bdde", - "1c85a97d-9927-406a-a2ae-6f738750a95d" - ], - "stops": [], - "line_id": "c648c8fb-8119-4b0d-a611-219f0014c88d", - "segments": [ - 0, - 5, - 41, - 44, - 48, - 50, - 59, - 74, - 77, - 80, - 87, - 89, - 95, - 99, - 104, - 109, - 112, - 118, - 120, - 123, - 133, - 140, - 145, - 156, - 160, - 166, - 171, - 192 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 369, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.490709, - 45.539683 - ], - [ - -73.490762, - 45.539711 - ], - [ - -73.490724, - 45.539892 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.491774, - 45.540689 - ], - [ - -73.491536, - 45.540936 - ], - [ - -73.491291, - 45.541175 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.490594, - 45.540696 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486478, - 45.540151 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482892, - 45.538849 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.480023, - 45.538053 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476947, - 45.537232 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472329, - 45.537403 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.469369, - 45.536992 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466178, - 45.53547 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464117, - 45.533591 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461194, - 45.531957 - ], - [ - -73.460868, - 45.531797 - ], - [ - -73.460137, - 45.531468 - ], - [ - -73.459095, - 45.531013 - ], - [ - -73.4578, - 45.530474 - ], - [ - -73.457591, - 45.530387 - ], - [ - -73.456631, - 45.529983 - ], - [ - -73.45522, - 45.529388 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.454653, - 45.529154 - ], - [ - -73.453608, - 45.528719 - ], - [ - -73.452449, - 45.528237 - ], - [ - -73.452419, - 45.528224 - ], - [ - -73.452095, - 45.528089 - ], - [ - -73.451849, - 45.527987 - ], - [ - -73.449873, - 45.527212 - ], - [ - -73.449586, - 45.5271 - ], - [ - -73.447563, - 45.526329 - ], - [ - -73.447243, - 45.526199 - ], - [ - -73.446596, - 45.52596 - ], - [ - -73.446438, - 45.5259 - ], - [ - -73.446226, - 45.525818 - ], - [ - -73.445479, - 45.525532 - ], - [ - -73.44525, - 45.525455 - ], - [ - -73.445048, - 45.525397 - ], - [ - -73.444823, - 45.525347 - ], - [ - -73.444676, - 45.525305 - ], - [ - -73.444476, - 45.525248 - ], - [ - -73.44392, - 45.525126 - ], - [ - -73.443091, - 45.524907 - ], - [ - -73.442951, - 45.524869 - ], - [ - -73.442817, - 45.524838 - ], - [ - -73.442117, - 45.524665 - ], - [ - -73.442013, - 45.52464 - ], - [ - -73.441281, - 45.524441 - ], - [ - -73.44044, - 45.524202 - ], - [ - -73.43954, - 45.523947 - ], - [ - -73.439329, - 45.52389 - ], - [ - -73.437964, - 45.523516 - ], - [ - -73.433955, - 45.522417 - ], - [ - -73.433848, - 45.522389 - ], - [ - -73.433776, - 45.522369 - ], - [ - -73.433738, - 45.522359 - ], - [ - -73.43365, - 45.522336 - ], - [ - -73.433608, - 45.522421 - ], - [ - -73.433569, - 45.522502 - ], - [ - -73.433421, - 45.522789 - ], - [ - -73.432996, - 45.523618 - ], - [ - -73.432963, - 45.523686 - ], - [ - -73.432949, - 45.523714 - ], - [ - -73.432601, - 45.524387 - ], - [ - -73.432398, - 45.524792 - ], - [ - -73.432026, - 45.525525 - ], - [ - -73.431443, - 45.526682 - ], - [ - -73.431435, - 45.526699 - ], - [ - -73.43143, - 45.52671 - ], - [ - -73.430919, - 45.527743 - ], - [ - -73.430793, - 45.527793 - ], - [ - -73.430701, - 45.527816 - ], - [ - -73.430693, - 45.527823 - ], - [ - -73.43063, - 45.527876 - ], - [ - -73.430607, - 45.527905 - ], - [ - -73.430587, - 45.527943 - ], - [ - -73.430578, - 45.528022 - ], - [ - -73.43058, - 45.528034 - ], - [ - -73.430593, - 45.528074 - ], - [ - -73.430622, - 45.528122 - ], - [ - -73.430658, - 45.528162 - ], - [ - -73.430703, - 45.52819 - ], - [ - -73.430762, - 45.528212 - ], - [ - -73.430835, - 45.528223 - ], - [ - -73.430897, - 45.528222 - ], - [ - -73.430956, - 45.528215 - ], - [ - -73.430992, - 45.528205 - ], - [ - -73.431119, - 45.528144 - ], - [ - -73.431155, - 45.528104 - ], - [ - -73.431168, - 45.528079 - ], - [ - -73.431176, - 45.528001 - ], - [ - -73.431176, - 45.527987 - ], - [ - -73.431158, - 45.527934 - ], - [ - -73.431122, - 45.52789 - ], - [ - -73.431109, - 45.527875 - ], - [ - -73.431089, - 45.527781 - ], - [ - -73.431381, - 45.527147 - ], - [ - -73.431568, - 45.526743 - ], - [ - -73.432147, - 45.525588 - ], - [ - -73.433078, - 45.523749 - ], - [ - -73.433693, - 45.522535 - ], - [ - -73.433807, - 45.522565 - ], - [ - -73.433875, - 45.522583 - ], - [ - -73.434375, - 45.522722 - ], - [ - -73.437851, - 45.523688 - ], - [ - -73.438325, - 45.523813 - ], - [ - -73.438122, - 45.524181 - ], - [ - -73.437418, - 45.525456 - ], - [ - -73.437336, - 45.525859 - ], - [ - -73.437466, - 45.526379 - ], - [ - -73.437652, - 45.527074 - ], - [ - -73.437663, - 45.527118 - ], - [ - -73.438003, - 45.528378 - ], - [ - -73.438003, - 45.528381 - ], - [ - -73.438018, - 45.528571 - ], - [ - -73.438014, - 45.528909 - ], - [ - -73.437967, - 45.529061 - ], - [ - -73.437936, - 45.529159 - ], - [ - -73.437705, - 45.529692 - ], - [ - -73.437373, - 45.530429 - ], - [ - -73.436999, - 45.531185 - ], - [ - -73.436846, - 45.531394 - ], - [ - -73.436484, - 45.531666 - ], - [ - -73.436328, - 45.531783 - ], - [ - -73.436242, - 45.53185 - ], - [ - -73.436738, - 45.532166 - ], - [ - -73.436807, - 45.5322 - ], - [ - -73.43711, - 45.532346 - ], - [ - -73.437143, - 45.532359 - ], - [ - -73.437365, - 45.532446 - ], - [ - -73.437788, - 45.532575 - ], - [ - -73.438512, - 45.532777 - ], - [ - -73.438764, - 45.532852 - ], - [ - -73.439121, - 45.532958 - ], - [ - -73.439267, - 45.532996 - ], - [ - -73.439309, - 45.532912 - ], - [ - -73.439599, - 45.532247 - ], - [ - -73.440142, - 45.531001 - ], - [ - -73.440178, - 45.530918 - ], - [ - -73.440526, - 45.530139 - ], - [ - -73.440987, - 45.529107 - ], - [ - -73.441026, - 45.529021 - ], - [ - -73.441195, - 45.528603 - ], - [ - -73.44169, - 45.527491 - ], - [ - -73.441723, - 45.527415 - ], - [ - -73.442111, - 45.526543 - ], - [ - -73.442305, - 45.526133 - ], - [ - -73.442765, - 45.52521 - ], - [ - -73.442852, - 45.525036 - ], - [ - -73.442988, - 45.525071 - ], - [ - -73.443284, - 45.525148 - ] - ] - }, - "id": 370, - "properties": { - "id": "de4c104a-72d0-47f1-962f-e16b7ff6cd0e", - "data": { - "gtfs": { - "shape_id": "675_1_R" - }, - "segments": [ - { - "distanceMeters": 318, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 310, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 312, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 459, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 944, - "travelTimeSeconds": 158 - }, - { - "distanceMeters": 375, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 335, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 392, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 531, - "travelTimeSeconds": 89 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 55 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9301, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 4058.484264493595, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.96, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 5.35, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.96 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "1c85a97d-9927-406a-a2ae-6f738750a95d", - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "ce58f095-9b51-4521-8a41-e64bfb0df31e", - "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", - "65003b15-0baf-4f82-9e15-665e17fd1c75", - "81b3573e-d948-478d-a011-db20e21b0c62", - "def08726-b847-4fc6-b901-78e04519a492", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "3b70b024-5c5b-4081-8c70-3fc026422289", - "1e4facbf-29da-4515-97c4-4ef86c22290e", - "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "53aec761-3dae-44a6-bc58-9d5003bfa1bb", - "6e83e147-802a-4695-95f3-96585bd15c4a", - "51878141-1194-4666-977c-0597ee638ffb", - "83cbcc26-a35c-4db6-a784-03a152cb9d6f", - "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", - "2800446d-aebc-4882-a018-9ab217599d73", - "f902a061-c5e9-4964-8e41-eba87bfc63fc", - "3d39c5de-3cd5-4fd7-925f-37e3d32bd66c", - "9b519782-0187-4aff-8d16-ed5c874d6b88", - "6b5e798b-1890-48ed-a234-04c622fd13ea", - "186b2759-8d28-41b8-beae-bac2adf7b3f9", - "455644f9-4a24-446b-b548-a53bc406a4d8", - "908faba3-76b8-49ef-bcfd-e4970978a82f", - "b3ae6488-015e-46a3-b034-181cc02048d1", - "0f82a749-1250-41a6-a638-43db1b5bd1a7", - "dd7e143a-63db-4b4e-82d6-e5e80de82672", - "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", - "de69f95c-e485-42da-bcac-5eeb8a8928ad", - "e36c087c-d78e-48bb-9430-6af9d10493cf", - "5b35096e-2561-4a9f-8bf4-a3e7609358bf" - ], - "stops": [], - "line_id": "c648c8fb-8119-4b0d-a611-219f0014c88d", - "segments": [ - 0, - 12, - 22, - 27, - 36, - 45, - 57, - 67, - 80, - 86, - 94, - 98, - 103, - 105, - 109, - 115, - 120, - 126, - 131, - 134, - 142, - 147, - 184, - 187, - 191, - 194, - 203, - 218, - 221, - 224 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 370, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.444179, - 45.534113 - ], - [ - -73.444063, - 45.534075 - ], - [ - -73.443132, - 45.533854 - ], - [ - -73.443002, - 45.533823 - ], - [ - -73.442012, - 45.533579 - ], - [ - -73.441709, - 45.533503 - ], - [ - -73.441658, - 45.533491 - ], - [ - -73.441131, - 45.533366 - ], - [ - -73.440969, - 45.533327 - ], - [ - -73.439556, - 45.532972 - ], - [ - -73.439441, - 45.532944 - ], - [ - -73.439309, - 45.532912 - ], - [ - -73.440133, - 45.531021 - ], - [ - -73.440178, - 45.530918 - ], - [ - -73.440526, - 45.530139 - ], - [ - -73.440964, - 45.52916 - ], - [ - -73.440978, - 45.529127 - ], - [ - -73.441026, - 45.529021 - ], - [ - -73.44147, - 45.52911 - ], - [ - -73.441955, - 45.529206 - ], - [ - -73.443116, - 45.529414 - ], - [ - -73.443204, - 45.529427 - ], - [ - -73.443317, - 45.529427 - ], - [ - -73.44338, - 45.529423 - ], - [ - -73.44346, - 45.529396 - ], - [ - -73.444039, - 45.529185 - ], - [ - -73.444543, - 45.528991 - ], - [ - -73.444859, - 45.528908 - ], - [ - -73.444933, - 45.528888 - ], - [ - -73.444914, - 45.528816 - ], - [ - -73.444923, - 45.528722 - ], - [ - -73.444949, - 45.52865 - ], - [ - -73.444989, - 45.528564 - ], - [ - -73.445351, - 45.527885 - ], - [ - -73.445472, - 45.527662 - ], - [ - -73.445709, - 45.527224 - ], - [ - -73.446007, - 45.52663 - ], - [ - -73.446132, - 45.526446 - ], - [ - -73.446304, - 45.526231 - ], - [ - -73.446395, - 45.526117 - ], - [ - -73.447841, - 45.526653 - ], - [ - -73.449326, - 45.527219 - ], - [ - -73.449498, - 45.527284 - ], - [ - -73.45067, - 45.527735 - ], - [ - -73.451123, - 45.527906 - ], - [ - -73.451519, - 45.528063 - ], - [ - -73.452161, - 45.528356 - ], - [ - -73.452276, - 45.528409 - ], - [ - -73.452337, - 45.528437 - ], - [ - -73.45321, - 45.528797 - ], - [ - -73.454095, - 45.529149 - ], - [ - -73.454884, - 45.529487 - ], - [ - -73.454978, - 45.529527 - ], - [ - -73.45507, - 45.529563 - ], - [ - -73.457289, - 45.530466 - ], - [ - -73.457482, - 45.530545 - ], - [ - -73.458332, - 45.530905 - ], - [ - -73.460581, - 45.531882 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.462023, - 45.532624 - ], - [ - -73.462751, - 45.533003 - ], - [ - -73.463694, - 45.53356 - ], - [ - -73.463873, - 45.533665 - ], - [ - -73.464875, - 45.534543 - ], - [ - -73.465725, - 45.535327 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.4688, - 45.537046 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469941, - 45.537318 - ], - [ - -73.470305, - 45.537406 - ], - [ - -73.470749, - 45.537487 - ], - [ - -73.471335, - 45.537563 - ], - [ - -73.471845, - 45.53759 - ], - [ - -73.471919, - 45.53759 - ], - [ - -73.472146, - 45.537591 - ], - [ - -73.472355, - 45.537591 - ], - [ - -73.473126, - 45.537555 - ], - [ - -73.473826, - 45.537492 - ], - [ - -73.474508, - 45.53743 - ], - [ - -73.474517, - 45.537429 - ], - [ - -73.474599, - 45.537423 - ], - [ - -73.475173, - 45.53738 - ], - [ - -73.47563, - 45.537344 - ], - [ - -73.476192, - 45.537353 - ], - [ - -73.476662, - 45.537394 - ], - [ - -73.477026, - 45.537434 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.47787, - 45.537597 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479487, - 45.538074 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.482446, - 45.538908 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.485769, - 45.540115 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.491356, - 45.541251 - ], - [ - -73.491461, - 45.541175 - ], - [ - -73.491486, - 45.541152 - ], - [ - -73.491851, - 45.540779 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.490724, - 45.539892 - ], - [ - -73.490551, - 45.539825 - ], - [ - -73.490497, - 45.539768 - ], - [ - -73.49051, - 45.539681 - ], - [ - -73.490564, - 45.539666 - ], - [ - -73.49064, - 45.539646 - ], - [ - -73.490709, - 45.539683 - ] - ] - }, - "id": 371, - "properties": { - "id": "d2c2e98a-0b5f-4f69-b8d6-986a27969348", - "data": { - "gtfs": { - "shape_id": "676_1_A" - }, - "segments": [ - { - "distanceMeters": 252, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 331, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 316, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 555, - "travelTimeSeconds": 109 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 40 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5817, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3687.4558134210874, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.1, - "travelTimeWithoutDwellTimesSeconds": 1140, - "operatingTimeWithLayoverTimeSeconds": 1320, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1140, - "operatingSpeedWithLayoverMetersPerSecond": 4.41, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.1 - }, - "mode": "bus", - "name": "École Jacques-Rousseau", - "color": "#A32638", - "nodes": [ - "210e532b-2acc-4a3e-b173-3471add098b1", - "576ef8c5-693c-4ae9-bb41-68685f43e174", - "2dda318d-8bf9-4860-b60d-6fcb1dd29156", - "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", - "de69f95c-e485-42da-bcac-5eeb8a8928ad", - "c37c473f-58f7-42cd-82b8-4282dea696a3", - "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", - "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "51878141-1194-4666-977c-0597ee638ffb", - "0a078431-12d6-4e73-9908-076c3a27e8ed", - "211cb268-dcfa-4d7b-810c-681bfa65d4c8", - "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "1e4facbf-29da-4515-97c4-4ef86c22290e", - "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", - "06d26eca-08e9-467e-9ff0-9595778162a0", - "abdcf999-0861-4881-a478-42fa957c7f17", - "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "5f672947-8abc-447c-bf60-535abbf76fae", - "31e8057b-0fb0-44bd-83cf-3acad24654ec", - "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", - "411bafbe-bac8-4586-9af4-bc0b3163bdde", - "1c85a97d-9927-406a-a2ae-6f738750a95d" - ], - "stops": [], - "line_id": "89c4af32-00c6-4332-b218-61365711704c", - "segments": [ - 0, - 7, - 10, - 12, - 16, - 27, - 38, - 41, - 46, - 51, - 54, - 60, - 62, - 65, - 75, - 82, - 87, - 98, - 102, - 108, - 113, - 134 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 371, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.490709, - 45.539683 - ], - [ - -73.490762, - 45.539711 - ], - [ - -73.490724, - 45.539892 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.491774, - 45.540689 - ], - [ - -73.491536, - 45.540936 - ], - [ - -73.491291, - 45.541175 - ], - [ - -73.4912, - 45.541242 - ], - [ - -73.491136, - 45.541157 - ], - [ - -73.490992, - 45.54099 - ], - [ - -73.490842, - 45.540864 - ], - [ - -73.490628, - 45.540711 - ], - [ - -73.490596, - 45.540697 - ], - [ - -73.49029, - 45.540558 - ], - [ - -73.490056, - 45.540495 - ], - [ - -73.489882, - 45.540459 - ], - [ - -73.489616, - 45.540437 - ], - [ - -73.48739, - 45.540374 - ], - [ - -73.487219, - 45.540365 - ], - [ - -73.487035, - 45.540347 - ], - [ - -73.486894, - 45.540306 - ], - [ - -73.486778, - 45.540266 - ], - [ - -73.486481, - 45.540152 - ], - [ - -73.486283, - 45.540077 - ], - [ - -73.485548, - 45.539807 - ], - [ - -73.484691, - 45.539492 - ], - [ - -73.483734, - 45.539149 - ], - [ - -73.482896, - 45.538851 - ], - [ - -73.482774, - 45.538807 - ], - [ - -73.482716, - 45.538785 - ], - [ - -73.482598, - 45.53874 - ], - [ - -73.48192, - 45.538573 - ], - [ - -73.481417, - 45.538456 - ], - [ - -73.480934, - 45.538339 - ], - [ - -73.48046, - 45.538204 - ], - [ - -73.480071, - 45.53807 - ], - [ - -73.480029, - 45.538055 - ], - [ - -73.479899, - 45.538011 - ], - [ - -73.478959, - 45.537703 - ], - [ - -73.478744, - 45.537632 - ], - [ - -73.478342, - 45.537493 - ], - [ - -73.477863, - 45.537376 - ], - [ - -73.477566, - 45.537326 - ], - [ - -73.477393, - 45.537299 - ], - [ - -73.477004, - 45.537236 - ], - [ - -73.476954, - 45.537232 - ], - [ - -73.476575, - 45.537205 - ], - [ - -73.476238, - 45.537178 - ], - [ - -73.475826, - 45.537168 - ], - [ - -73.475786, - 45.537168 - ], - [ - -73.475443, - 45.537168 - ], - [ - -73.475117, - 45.537179 - ], - [ - -73.475041, - 45.537182 - ], - [ - -73.474613, - 45.537231 - ], - [ - -73.473285, - 45.537352 - ], - [ - -73.473179, - 45.537361 - ], - [ - -73.472378, - 45.537402 - ], - [ - -73.472338, - 45.537402 - ], - [ - -73.472138, - 45.537406 - ], - [ - -73.47191, - 45.537397 - ], - [ - -73.471292, - 45.537352 - ], - [ - -73.47104, - 45.537338 - ], - [ - -73.470771, - 45.537301 - ], - [ - -73.470748, - 45.537298 - ], - [ - -73.470358, - 45.537235 - ], - [ - -73.469925, - 45.537131 - ], - [ - -73.469912, - 45.537128 - ], - [ - -73.469379, - 45.536995 - ], - [ - -73.469112, - 45.536928 - ], - [ - -73.468466, - 45.53678 - ], - [ - -73.468332, - 45.536746 - ], - [ - -73.468122, - 45.536694 - ], - [ - -73.467933, - 45.536631 - ], - [ - -73.46781, - 45.536591 - ], - [ - -73.46756, - 45.536496 - ], - [ - -73.467476, - 45.536464 - ], - [ - -73.467173, - 45.536302 - ], - [ - -73.467131, - 45.536271 - ], - [ - -73.466861, - 45.536077 - ], - [ - -73.466599, - 45.535866 - ], - [ - -73.466185, - 45.535477 - ], - [ - -73.466054, - 45.535353 - ], - [ - -73.465888, - 45.535192 - ], - [ - -73.465671, - 45.534979 - ], - [ - -73.465172, - 45.534493 - ], - [ - -73.464286, - 45.533719 - ], - [ - -73.464126, - 45.533598 - ], - [ - -73.464049, - 45.533539 - ], - [ - -73.463591, - 45.533242 - ], - [ - -73.463305, - 45.533089 - ], - [ - -73.463181, - 45.533022 - ], - [ - -73.462986, - 45.532918 - ], - [ - -73.461825, - 45.532265 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461206, - 45.531962 - ], - [ - -73.460868, - 45.531797 - ], - [ - -73.460137, - 45.531468 - ], - [ - -73.459095, - 45.531013 - ], - [ - -73.457813, - 45.53048 - ], - [ - -73.457591, - 45.530387 - ], - [ - -73.456631, - 45.529983 - ], - [ - -73.45522, - 45.529388 - ], - [ - -73.455128, - 45.529352 - ], - [ - -73.454669, - 45.52916 - ], - [ - -73.453608, - 45.528719 - ], - [ - -73.452465, - 45.528243 - ], - [ - -73.452419, - 45.528224 - ], - [ - -73.452095, - 45.528089 - ], - [ - -73.451849, - 45.527987 - ], - [ - -73.44989, - 45.527219 - ], - [ - -73.449586, - 45.5271 - ], - [ - -73.447563, - 45.526329 - ], - [ - -73.447243, - 45.526199 - ], - [ - -73.446596, - 45.52596 - ], - [ - -73.446438, - 45.5259 - ], - [ - -73.446245, - 45.525825 - ], - [ - -73.445479, - 45.525532 - ], - [ - -73.44525, - 45.525455 - ], - [ - -73.445048, - 45.525397 - ], - [ - -73.444823, - 45.525347 - ], - [ - -73.444697, - 45.525311 - ], - [ - -73.444476, - 45.525248 - ], - [ - -73.44392, - 45.525126 - ], - [ - -73.443091, - 45.524907 - ], - [ - -73.442951, - 45.524869 - ], - [ - -73.442817, - 45.524838 - ], - [ - -73.442704, - 45.525 - ], - [ - -73.442618, - 45.525173 - ], - [ - -73.442158, - 45.526102 - ], - [ - -73.441616, - 45.527307 - ], - [ - -73.441615, - 45.52731 - ], - [ - -73.441581, - 45.527384 - ], - [ - -73.441254, - 45.528072 - ], - [ - -73.440901, - 45.528913 - ], - [ - -73.440869, - 45.52899 - ], - [ - -73.44038, - 45.530083 - ], - [ - -73.440366, - 45.530114 - ], - [ - -73.440274, - 45.530321 - ], - [ - -73.440069, - 45.530782 - ], - [ - -73.440025, - 45.53088 - ], - [ - -73.439543, - 45.531958 - ], - [ - -73.439479, - 45.532111 - ], - [ - -73.439159, - 45.532867 - ], - [ - -73.439121, - 45.532958 - ], - [ - -73.439267, - 45.532996 - ], - [ - -73.439534, - 45.53307 - ], - [ - -73.439566, - 45.533079 - ], - [ - -73.440804, - 45.533409 - ], - [ - -73.440917, - 45.533439 - ], - [ - -73.441654, - 45.533615 - ], - [ - -73.441957, - 45.533692 - ], - [ - -73.44295, - 45.533944 - ], - [ - -73.443077, - 45.533976 - ], - [ - -73.443872, - 45.534172 - ] - ] - }, - "id": 372, - "properties": { - "id": "8acf576c-1359-480c-a74f-1bb84633da4b", - "data": { - "gtfs": { - "shape_id": "676_1_R" - }, - "segments": [ - { - "distanceMeters": 318, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 310, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 312, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 447, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 49 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5908, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3687.4558134210874, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.18, - "travelTimeWithoutDwellTimesSeconds": 1140, - "operatingTimeWithLayoverTimeSeconds": 1320, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1140, - "operatingSpeedWithLayoverMetersPerSecond": 4.48, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.18 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "1c85a97d-9927-406a-a2ae-6f738750a95d", - "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "ce58f095-9b51-4521-8a41-e64bfb0df31e", - "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", - "65003b15-0baf-4f82-9e15-665e17fd1c75", - "81b3573e-d948-478d-a011-db20e21b0c62", - "def08726-b847-4fc6-b901-78e04519a492", - "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "3b70b024-5c5b-4081-8c70-3fc026422289", - "1e4facbf-29da-4515-97c4-4ef86c22290e", - "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "53aec761-3dae-44a6-bc58-9d5003bfa1bb", - "6e83e147-802a-4695-95f3-96585bd15c4a", - "51878141-1194-4666-977c-0597ee638ffb", - "83cbcc26-a35c-4db6-a784-03a152cb9d6f", - "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", - "2800446d-aebc-4882-a018-9ab217599d73", - "e36c087c-d78e-48bb-9430-6af9d10493cf", - "de69f95c-e485-42da-bcac-5eeb8a8928ad", - "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", - "0e37f239-15e7-41c5-a31a-ce2ad3dc4eae", - "2dda318d-8bf9-4860-b60d-6fcb1dd29156", - "576ef8c5-693c-4ae9-bb41-68685f43e174", - "210e532b-2acc-4a3e-b173-3471add098b1" - ], - "stops": [], - "line_id": "89c4af32-00c6-4332-b218-61365711704c", - "segments": [ - 0, - 12, - 22, - 27, - 36, - 45, - 57, - 67, - 80, - 86, - 94, - 98, - 103, - 105, - 109, - 115, - 120, - 130, - 133, - 138, - 141, - 145, - 147 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 372, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.481451, - 45.529767 - ], - [ - -73.481326, - 45.530017 - ], - [ - -73.481304, - 45.530061 - ], - [ - -73.481198, - 45.530124 - ], - [ - -73.479917, - 45.532573 - ], - [ - -73.479864, - 45.532675 - ], - [ - -73.479068, - 45.532458 - ], - [ - -73.478243, - 45.532247 - ], - [ - -73.478045, - 45.532198 - ], - [ - -73.477701, - 45.532113 - ], - [ - -73.477534, - 45.532071 - ], - [ - -73.478611, - 45.530051 - ], - [ - -73.478676, - 45.52993 - ], - [ - -73.478201, - 45.529802 - ], - [ - -73.477753, - 45.529682 - ], - [ - -73.476841, - 45.52943 - ], - [ - -73.476086, - 45.529229 - ], - [ - -73.476011, - 45.529209 - ], - [ - -73.475204, - 45.528998 - ], - [ - -73.474395, - 45.528791 - ], - [ - -73.473728, - 45.528621 - ], - [ - -73.4736, - 45.528588 - ], - [ - -73.472809, - 45.528394 - ], - [ - -73.472079, - 45.528199 - ], - [ - -73.472018, - 45.528183 - ], - [ - -73.471289, - 45.527994 - ], - [ - -73.470663, - 45.527827 - ], - [ - -73.469147, - 45.527437 - ], - [ - -73.469036, - 45.527408 - ], - [ - -73.46814, - 45.52716 - ], - [ - -73.467315, - 45.526946 - ], - [ - -73.467236, - 45.526926 - ], - [ - -73.465397, - 45.526437 - ], - [ - -73.465154, - 45.526372 - ], - [ - -73.464731, - 45.526435 - ], - [ - -73.463642, - 45.52847 - ], - [ - -73.462723, - 45.530185 - ], - [ - -73.462624, - 45.530371 - ], - [ - -73.462437, - 45.530708 - ], - [ - -73.462358, - 45.530861 - ], - [ - -73.46217, - 45.531262 - ], - [ - -73.461938, - 45.531653 - ], - [ - -73.461719, - 45.531971 - ], - [ - -73.461594, - 45.532152 - ], - [ - -73.461433, - 45.532328 - ], - [ - -73.46167, - 45.53244 - ], - [ - -73.46202, - 45.532623 - ], - [ - -73.462751, - 45.533003 - ], - [ - -73.463183, - 45.533258 - ], - [ - -73.463682, - 45.533553 - ], - [ - -73.463873, - 45.533665 - ], - [ - -73.464875, - 45.534543 - ], - [ - -73.465723, - 45.535325 - ], - [ - -73.465865, - 45.535456 - ], - [ - -73.466411, - 45.535978 - ], - [ - -73.466736, - 45.536257 - ], - [ - -73.467022, - 45.536441 - ], - [ - -73.467079, - 45.536478 - ], - [ - -73.467286, - 45.53659 - ], - [ - -73.467515, - 45.53668 - ], - [ - -73.467814, - 45.536798 - ], - [ - -73.468166, - 45.536897 - ], - [ - -73.468785, - 45.537042 - ], - [ - -73.469046, - 45.537104 - ], - [ - -73.469941, - 45.537318 - ], - [ - -73.470305, - 45.537406 - ], - [ - -73.470749, - 45.537487 - ], - [ - -73.471335, - 45.537563 - ], - [ - -73.471845, - 45.53759 - ], - [ - -73.471916, - 45.53759 - ], - [ - -73.472146, - 45.537591 - ], - [ - -73.472355, - 45.537591 - ], - [ - -73.473126, - 45.537555 - ], - [ - -73.473826, - 45.537492 - ], - [ - -73.474493, - 45.537431 - ], - [ - -73.474517, - 45.537429 - ], - [ - -73.474599, - 45.537423 - ], - [ - -73.475173, - 45.53738 - ], - [ - -73.47563, - 45.537344 - ], - [ - -73.476192, - 45.537353 - ], - [ - -73.476662, - 45.537394 - ], - [ - -73.477026, - 45.537434 - ], - [ - -73.477274, - 45.53747 - ], - [ - -73.47746, - 45.537506 - ], - [ - -73.477625, - 45.537533 - ], - [ - -73.477868, - 45.537596 - ], - [ - -73.478288, - 45.537704 - ], - [ - -73.478769, - 45.537844 - ], - [ - -73.479473, - 45.538069 - ], - [ - -73.479475, - 45.53807 - ], - [ - -73.479713, - 45.538159 - ], - [ - -73.480503, - 45.538384 - ], - [ - -73.481236, - 45.538582 - ], - [ - -73.481767, - 45.538708 - ], - [ - -73.482303, - 45.538857 - ], - [ - -73.482444, - 45.538908 - ], - [ - -73.48258, - 45.538957 - ], - [ - -73.482614, - 45.538969 - ], - [ - -73.48418, - 45.539542 - ], - [ - -73.484865, - 45.539793 - ], - [ - -73.485757, - 45.54011 - ], - [ - -73.486117, - 45.540239 - ], - [ - -73.486682, - 45.540437 - ], - [ - -73.486867, - 45.540495 - ], - [ - -73.487008, - 45.540518 - ], - [ - -73.487265, - 45.540549 - ], - [ - -73.488279, - 45.54059 - ], - [ - -73.489733, - 45.540626 - ], - [ - -73.48997, - 45.540662 - ], - [ - -73.490151, - 45.540707 - ], - [ - -73.490333, - 45.540774 - ], - [ - -73.490606, - 45.540914 - ], - [ - -73.490682, - 45.540972 - ], - [ - -73.490795, - 45.541058 - ], - [ - -73.49093, - 45.541215 - ], - [ - -73.490985, - 45.541323 - ], - [ - -73.491022, - 45.541391 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.491356, - 45.541251 - ], - [ - -73.491461, - 45.541175 - ], - [ - -73.491486, - 45.541152 - ], - [ - -73.491851, - 45.54078 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.490724, - 45.539892 - ], - [ - -73.490551, - 45.539825 - ], - [ - -73.490497, - 45.539768 - ], - [ - -73.49051, - 45.539681 - ], - [ - -73.490564, - 45.539666 - ], - [ - -73.49064, - 45.539646 - ], - [ - -73.490709, - 45.539683 - ] - ] - }, - "id": 373, - "properties": { - "id": "5d7d40d8-c17a-45b3-bbde-a8fdee999e42", - "data": { - "gtfs": { - "shape_id": "678_1_A" - }, - "segments": [ - { - "distanceMeters": 336, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 102, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 315, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 136, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 556, - "travelTimeSeconds": 107 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 40 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5605, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 1327.803383396285, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.19, - "travelTimeWithoutDwellTimesSeconds": 1080, - "operatingTimeWithLayoverTimeSeconds": 1260, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1080, - "operatingSpeedWithLayoverMetersPerSecond": 4.45, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.19 - }, - "mode": "bus", - "name": "École Jacques-Rousseau", - "color": "#A32638", - "nodes": [ - "48e0fb78-b91c-4eec-a77a-11ad01e61d0c", - "d488846f-abf4-41f2-9dd0-43b9cbb645a3", - "621204a0-8cdd-445a-a8e4-bf8b08e16eba", - "af70f982-a652-4cf9-9be4-d543d75ad805", - "48d7eace-3f37-4246-9aea-13944ac3b50c", - "e709ab81-b01c-47b3-a19c-63757b8320b0", - "10a8a297-0790-40e2-901e-24be7500f796", - "979368fb-58ae-4231-bd7c-716ca91bbb6f", - "b6b773c1-84a4-412e-a7be-7f535298ece2", - "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", - "6beffd5a-a5e7-4808-863a-90505f6172be", - "8746746f-daed-4d54-a90f-724d51454ae1", - "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "1e4facbf-29da-4515-97c4-4ef86c22290e", - "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", - "06d26eca-08e9-467e-9ff0-9595778162a0", - "abdcf999-0861-4881-a478-42fa957c7f17", - "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", - "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "5f672947-8abc-447c-bf60-535abbf76fae", - "31e8057b-0fb0-44bd-83cf-3acad24654ec", - "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", - "411bafbe-bac8-4586-9af4-bc0b3163bdde", - "1c85a97d-9927-406a-a2ae-6f738750a95d" - ], - "stops": [], - "line_id": "0f52b506-b0e5-4459-8ca6-a462459fc2af", - "segments": [ - 0, - 4, - 9, - 11, - 16, - 20, - 23, - 27, - 30, - 32, - 35, - 36, - 42, - 46, - 49, - 52, - 62, - 69, - 74, - 85, - 89, - 95, - 100, - 121 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 373, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.490709, - 45.539683 - ], - [ - -73.490762, - 45.539711 - ], - [ - -73.490724, - 45.539892 - ], - [ - -73.491924, - 45.540532 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.492353, - 45.54027 - ], - [ - -73.492859, - 45.539758 - ], - [ - -73.494691, - 45.537875 - ], - [ - -73.494803, - 45.53776 - ], - [ - -73.495431, - 45.537131 - ], - [ - -73.495499, - 45.537063 - ], - [ - -73.495937, - 45.536623 - ], - [ - -73.496193, - 45.536366 - ], - [ - -73.49677, - 45.535781 - ], - [ - -73.496932, - 45.535682 - ], - [ - -73.496814, - 45.535632 - ], - [ - -73.496531, - 45.535518 - ], - [ - -73.495741, - 45.5352 - ], - [ - -73.495464, - 45.535119 - ], - [ - -73.494799, - 45.534843 - ], - [ - -73.494432, - 45.534691 - ], - [ - -73.49424, - 45.534611 - ], - [ - -73.493248, - 45.534202 - ], - [ - -73.492642, - 45.533952 - ], - [ - -73.492582, - 45.533927 - ], - [ - -73.491559, - 45.533504 - ], - [ - -73.491119, - 45.533321 - ], - [ - -73.490996, - 45.53327 - ], - [ - -73.49074, - 45.533166 - ], - [ - -73.48997, - 45.532856 - ], - [ - -73.489306, - 45.532577 - ], - [ - -73.488596, - 45.532287 - ], - [ - -73.488546, - 45.532266 - ], - [ - -73.487817, - 45.531951 - ], - [ - -73.485509, - 45.531003 - ], - [ - -73.485221, - 45.530885 - ], - [ - -73.483829, - 45.530295 - ], - [ - -73.483239, - 45.530049 - ], - [ - -73.483118, - 45.529998 - ], - [ - -73.482375, - 45.529701 - ], - [ - -73.482048, - 45.529561 - ], - [ - -73.48174, - 45.529434 - ], - [ - -73.481625, - 45.529386 - ], - [ - -73.48156, - 45.52953 - ], - [ - -73.481466, - 45.529737 - ], - [ - -73.481451, - 45.529767 - ], - [ - -73.481326, - 45.530017 - ], - [ - -73.481304, - 45.530061 - ], - [ - -73.481198, - 45.530124 - ], - [ - -73.479917, - 45.532574 - ], - [ - -73.479864, - 45.532675 - ], - [ - -73.479068, - 45.532458 - ], - [ - -73.478243, - 45.532247 - ], - [ - -73.478034, - 45.532195 - ], - [ - -73.4777, - 45.532112 - ], - [ - -73.477534, - 45.532071 - ], - [ - -73.478612, - 45.53005 - ], - [ - -73.478676, - 45.52993 - ], - [ - -73.478187, - 45.529798 - ], - [ - -73.477753, - 45.529682 - ], - [ - -73.476841, - 45.52943 - ], - [ - -73.476072, - 45.529226 - ], - [ - -73.476011, - 45.529209 - ], - [ - -73.475204, - 45.528998 - ], - [ - -73.474395, - 45.528791 - ], - [ - -73.473726, - 45.52862 - ], - [ - -73.4736, - 45.528588 - ], - [ - -73.472809, - 45.528394 - ], - [ - -73.472076, - 45.528198 - ], - [ - -73.472018, - 45.528183 - ], - [ - -73.471289, - 45.527994 - ], - [ - -73.470663, - 45.527827 - ], - [ - -73.469143, - 45.527436 - ], - [ - -73.469036, - 45.527408 - ], - [ - -73.46814, - 45.52716 - ], - [ - -73.467311, - 45.526945 - ], - [ - -73.467236, - 45.526926 - ], - [ - -73.465393, - 45.526436 - ] - ] - }, - "id": 374, - "properties": { - "id": "586826a2-b89a-4936-a94f-80ea93bc4eba", - "data": { - "gtfs": { - "shape_id": "678_1_R" - }, - "segments": [ - { - "distanceMeters": 198, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 323, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 69, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 55, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 195, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 28 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 4149, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2484.196276592894, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.76, - "travelTimeWithoutDwellTimesSeconds": 720, - "operatingTimeWithLayoverTimeSeconds": 900, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 720, - "operatingSpeedWithLayoverMetersPerSecond": 4.61, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.76 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "1c85a97d-9927-406a-a2ae-6f738750a95d", - "4e53f32e-03c3-4701-94aa-590f28b5adcd", - "04b348b3-bb46-4177-9e4b-604bf8d96a58", - "081e45a0-31c3-487c-996e-66d1b824569d", - "4ae33b06-30dd-4ad3-8df9-3ce610880853", - "9cf81604-6d70-4ba8-a3fc-521104742058", - "28f2fe65-961c-4550-a722-1e7790fe94ad", - "9d0a7ab6-be66-4ca9-b863-8712d8cd028c", - "999ed130-7d99-4115-ac3c-cabba7731288", - "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "27c5df15-201f-4855-9f49-556fd659fd8e", - "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", - "48e0fb78-b91c-4eec-a77a-11ad01e61d0c", - "d488846f-abf4-41f2-9dd0-43b9cbb645a3", - "621204a0-8cdd-445a-a8e4-bf8b08e16eba", - "af70f982-a652-4cf9-9be4-d543d75ad805", - "48d7eace-3f37-4246-9aea-13944ac3b50c", - "e709ab81-b01c-47b3-a19c-63757b8320b0", - "10a8a297-0790-40e2-901e-24be7500f796", - "979368fb-58ae-4231-bd7c-716ca91bbb6f", - "b6b773c1-84a4-412e-a7be-7f535298ece2", - "a64e19cc-ca7c-47f1-9793-ecfc50e76be9" - ], - "stops": [], - "line_id": "0f52b506-b0e5-4459-8ca6-a462459fc2af", - "segments": [ - 0, - 5, - 7, - 9, - 11, - 16, - 20, - 23, - 26, - 31, - 34, - 41, - 45, - 49, - 54, - 56, - 61, - 65, - 68, - 72, - 75 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 374, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.446863, - 45.578803 - ], - [ - -73.446887, - 45.57892 - ], - [ - -73.446904, - 45.579005 - ], - [ - -73.447123, - 45.580066 - ], - [ - -73.447136, - 45.58013 - ], - [ - -73.447307, - 45.58099 - ], - [ - -73.447337, - 45.581174 - ], - [ - -73.447364, - 45.581462 - ], - [ - -73.447358, - 45.581597 - ], - [ - -73.447346, - 45.581723 - ], - [ - -73.447325, - 45.581872 - ], - [ - -73.447274, - 45.582088 - ], - [ - -73.447195, - 45.582299 - ], - [ - -73.447195, - 45.5823 - ], - [ - -73.447144, - 45.582429 - ], - [ - -73.447053, - 45.582609 - ], - [ - -73.44698, - 45.58274 - ], - [ - -73.446895, - 45.58287 - ], - [ - -73.446759, - 45.583041 - ], - [ - -73.446638, - 45.583181 - ], - [ - -73.446546, - 45.58327 - ], - [ - -73.446413, - 45.583392 - ], - [ - -73.446342, - 45.583449 - ], - [ - -73.446149, - 45.583603 - ], - [ - -73.446125, - 45.583622 - ], - [ - -73.446013, - 45.583711 - ], - [ - -73.445939, - 45.583653 - ], - [ - -73.445658, - 45.583434 - ], - [ - -73.445465, - 45.583283 - ], - [ - -73.445375, - 45.583216 - ], - [ - -73.445296, - 45.583162 - ], - [ - -73.445278, - 45.58316 - ], - [ - -73.445214, - 45.583154 - ], - [ - -73.445192, - 45.583151 - ], - [ - -73.443826, - 45.582072 - ], - [ - -73.443724, - 45.581969 - ], - [ - -73.443652, - 45.58188 - ], - [ - -73.443575, - 45.581784 - ], - [ - -73.443489, - 45.581649 - ], - [ - -73.443437, - 45.581532 - ], - [ - -73.443375, - 45.581348 - ], - [ - -73.443359, - 45.581199 - ], - [ - -73.443264, - 45.580785 - ], - [ - -73.443203, - 45.58047 - ], - [ - -73.443169, - 45.580299 - ], - [ - -73.443122, - 45.580146 - ], - [ - -73.44301, - 45.579552 - ], - [ - -73.442822, - 45.57868 - ], - [ - -73.442754, - 45.578324 - ], - [ - -73.442692, - 45.577982 - ], - [ - -73.442644, - 45.577758 - ], - [ - -73.442632, - 45.577699 - ], - [ - -73.442584, - 45.577456 - ], - [ - -73.442456, - 45.576961 - ], - [ - -73.442427, - 45.576893 - ], - [ - -73.442391, - 45.576835 - ], - [ - -73.442323, - 45.576754 - ], - [ - -73.44223, - 45.576659 - ], - [ - -73.44214, - 45.576587 - ], - [ - -73.441907, - 45.576399 - ], - [ - -73.441505, - 45.576077 - ], - [ - -73.441396, - 45.575988 - ], - [ - -73.441078, - 45.575736 - ], - [ - -73.440733, - 45.575462 - ], - [ - -73.440381, - 45.575187 - ], - [ - -73.440036, - 45.574917 - ], - [ - -73.439719, - 45.574665 - ], - [ - -73.439615, - 45.574593 - ], - [ - -73.43947, - 45.574525 - ], - [ - -73.43935, - 45.574476 - ], - [ - -73.439334, - 45.574471 - ], - [ - -73.439097, - 45.574403 - ], - [ - -73.438625, - 45.5743 - ], - [ - -73.438216, - 45.5742 - ], - [ - -73.437342, - 45.573989 - ], - [ - -73.436799, - 45.573856 - ], - [ - -73.436584, - 45.573804 - ], - [ - -73.436462, - 45.574055 - ], - [ - -73.43627, - 45.574452 - ], - [ - -73.436268, - 45.574456 - ], - [ - -73.436179, - 45.574618 - ], - [ - -73.436118, - 45.574717 - ], - [ - -73.43596, - 45.574982 - ], - [ - -73.435699, - 45.575382 - ], - [ - -73.435467, - 45.575724 - ], - [ - -73.43543, - 45.575778 - ], - [ - -73.43534, - 45.575913 - ], - [ - -73.435197, - 45.576138 - ], - [ - -73.435093, - 45.576309 - ], - [ - -73.434836, - 45.576741 - ], - [ - -73.434758, - 45.576873 - ], - [ - -73.434669, - 45.577024 - ], - [ - -73.434583, - 45.577154 - ], - [ - -73.434306, - 45.577609 - ], - [ - -73.434048, - 45.57804 - ], - [ - -73.433813, - 45.578436 - ], - [ - -73.433689, - 45.578652 - ], - [ - -73.43354, - 45.57889 - ], - [ - -73.433468, - 45.578988 - ], - [ - -73.433444, - 45.579021 - ], - [ - -73.43335, - 45.57912 - ], - [ - -73.433199, - 45.579264 - ], - [ - -73.433076, - 45.579354 - ], - [ - -73.43294, - 45.579444 - ], - [ - -73.432711, - 45.579565 - ], - [ - -73.432272, - 45.579794 - ], - [ - -73.4319, - 45.579983 - ], - [ - -73.431767, - 45.580048 - ], - [ - -73.431616, - 45.580122 - ], - [ - -73.431365, - 45.580241 - ], - [ - -73.431218, - 45.580311 - ], - [ - -73.430652, - 45.580544 - ], - [ - -73.430169, - 45.580742 - ], - [ - -73.430012, - 45.580805 - ], - [ - -73.42982, - 45.580902 - ], - [ - -73.429773, - 45.580926 - ], - [ - -73.429655, - 45.581003 - ], - [ - -73.429134, - 45.581335 - ], - [ - -73.428889, - 45.581492 - ], - [ - -73.428761, - 45.581574 - ], - [ - -73.428049, - 45.582021 - ], - [ - -73.42763, - 45.582284 - ], - [ - -73.427138, - 45.582598 - ], - [ - -73.427107, - 45.582619 - ], - [ - -73.427069, - 45.582643 - ], - [ - -73.426641, - 45.582922 - ], - [ - -73.426528, - 45.583004 - ], - [ - -73.429814, - 45.585537 - ], - [ - -73.429832, - 45.585551 - ], - [ - -73.429958, - 45.585646 - ], - [ - -73.430085, - 45.585745 - ], - [ - -73.430467, - 45.586051 - ], - [ - -73.430716, - 45.586245 - ], - [ - -73.430893, - 45.586393 - ], - [ - -73.431289, - 45.586718 - ], - [ - -73.431318, - 45.586743 - ], - [ - -73.431717, - 45.587092 - ], - [ - -73.431535, - 45.58712 - ], - [ - -73.431364, - 45.587136 - ], - [ - -73.431293, - 45.587147 - ], - [ - -73.431197, - 45.587162 - ], - [ - -73.431023, - 45.587199 - ], - [ - -73.430126, - 45.587748 - ], - [ - -73.429364, - 45.588228 - ], - [ - -73.428809, - 45.588577 - ], - [ - -73.428677, - 45.58866 - ], - [ - -73.428716, - 45.588691 - ], - [ - -73.428853, - 45.588803 - ], - [ - -73.429011, - 45.588919 - ], - [ - -73.429127, - 45.589004 - ], - [ - -73.429464, - 45.589267 - ], - [ - -73.42947, - 45.589271 - ], - [ - -73.429525, - 45.589323 - ], - [ - -73.429569, - 45.589379 - ], - [ - -73.429601, - 45.589439 - ], - [ - -73.429621, - 45.589502 - ], - [ - -73.429799, - 45.590246 - ], - [ - -73.429965, - 45.590937 - ], - [ - -73.430035, - 45.591102 - ], - [ - -73.430052, - 45.591144 - ], - [ - -73.430249, - 45.591315 - ], - [ - -73.430625, - 45.591627 - ], - [ - -73.430742, - 45.591724 - ], - [ - -73.430999, - 45.591887 - ], - [ - -73.431426, - 45.592216 - ], - [ - -73.431736, - 45.592481 - ], - [ - -73.432411, - 45.593022 - ], - [ - -73.433124, - 45.593629 - ], - [ - -73.433267, - 45.593751 - ], - [ - -73.433582, - 45.593589 - ], - [ - -73.433689, - 45.593585 - ], - [ - -73.433785, - 45.593535 - ], - [ - -73.433902, - 45.593472 - ], - [ - -73.434067, - 45.593383 - ], - [ - -73.434286, - 45.593257 - ], - [ - -73.434482, - 45.593117 - ], - [ - -73.434699, - 45.59296 - ], - [ - -73.434861, - 45.592843 - ], - [ - -73.43505, - 45.592699 - ], - [ - -73.435304, - 45.592506 - ], - [ - -73.435474, - 45.592362 - ], - [ - -73.435781, - 45.592007 - ], - [ - -73.43601, - 45.591773 - ], - [ - -73.436174, - 45.591637 - ], - [ - -73.436205, - 45.591611 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.438326, - 45.592827 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.440066, - 45.594111 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.442146, - 45.595666 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442211, - 45.596301 - ], - [ - -73.442031, - 45.596415 - ], - [ - -73.441835, - 45.596541 - ], - [ - -73.441552, - 45.59672 - ], - [ - -73.441367, - 45.596828 - ], - [ - -73.441269, - 45.596877 - ], - [ - -73.440742, - 45.597138 - ], - [ - -73.439976, - 45.597521 - ], - [ - -73.43978, - 45.597624 - ], - [ - -73.438745, - 45.598161 - ], - [ - -73.438619, - 45.598226 - ], - [ - -73.438241, - 45.598406 - ], - [ - -73.437622, - 45.598721 - ], - [ - -73.43732, - 45.5989 - ], - [ - -73.437156, - 45.599026 - ], - [ - -73.437093, - 45.599081 - ], - [ - -73.437027, - 45.599139 - ], - [ - -73.43685, - 45.599305 - ], - [ - -73.436461, - 45.599693 - ], - [ - -73.436408, - 45.599746 - ], - [ - -73.436103, - 45.600029 - ], - [ - -73.435984, - 45.600152 - ], - [ - -73.435806, - 45.600335 - ], - [ - -73.435516, - 45.600609 - ], - [ - -73.435271, - 45.600843 - ], - [ - -73.43499, - 45.601122 - ], - [ - -73.434683, - 45.601399 - ], - [ - -73.434596, - 45.601477 - ], - [ - -73.434475, - 45.601531 - ], - [ - -73.434166, - 45.601679 - ], - [ - -73.433739, - 45.601863 - ], - [ - -73.432706, - 45.602245 - ], - [ - -73.431263, - 45.60278 - ], - [ - -73.430877, - 45.603027 - ], - [ - -73.430603, - 45.603201 - ], - [ - -73.430523, - 45.603252 - ], - [ - -73.429967, - 45.603607 - ], - [ - -73.429453, - 45.603926 - ], - [ - -73.42903, - 45.604191 - ], - [ - -73.428654, - 45.604426 - ], - [ - -73.428653, - 45.604427 - ], - [ - -73.428564, - 45.604483 - ], - [ - -73.427475, - 45.60518 - ], - [ - -73.427444, - 45.605211 - ], - [ - -73.427423, - 45.605237 - ], - [ - -73.427407, - 45.605278 - ], - [ - -73.427406, - 45.605312 - ], - [ - -73.427424, - 45.605353 - ], - [ - -73.42746, - 45.605399 - ], - [ - -73.427603, - 45.605522 - ], - [ - -73.427959, - 45.605798 - ], - [ - -73.427998, - 45.605828 - ], - [ - -73.428173, - 45.605959 - ], - [ - -73.428311, - 45.606067 - ], - [ - -73.428495, - 45.606184 - ], - [ - -73.42867, - 45.606274 - ], - [ - -73.428722, - 45.606295 - ], - [ - -73.42886, - 45.60635 - ], - [ - -73.429112, - 45.606427 - ], - [ - -73.429341, - 45.606472 - ], - [ - -73.429644, - 45.606521 - ], - [ - -73.429954, - 45.606572 - ], - [ - -73.430121, - 45.606599 - ], - [ - -73.430876, - 45.606707 - ], - [ - -73.431493, - 45.606793 - ], - [ - -73.431775, - 45.606798 - ], - [ - -73.431993, - 45.60678 - ], - [ - -73.43227, - 45.606721 - ], - [ - -73.432434, - 45.606672 - ], - [ - -73.432607, - 45.606605 - ], - [ - -73.432934, - 45.606461 - ], - [ - -73.433088, - 45.606393 - ], - [ - -73.433751, - 45.606088 - ], - [ - -73.436303, - 45.60492 - ], - [ - -73.436609, - 45.60478 - ], - [ - -73.436815, - 45.604686 - ], - [ - -73.436923, - 45.604637 - ], - [ - -73.437443, - 45.604403 - ], - [ - -73.437904, - 45.604192 - ], - [ - -73.437975, - 45.60416 - ], - [ - -73.438466, - 45.603935 - ], - [ - -73.438822, - 45.603769 - ], - [ - -73.441516, - 45.602542 - ], - [ - -73.441922, - 45.602327 - ], - [ - -73.442509, - 45.60198 - ], - [ - -73.443055, - 45.601648 - ], - [ - -73.443186, - 45.60157 - ], - [ - -73.443509, - 45.601378 - ], - [ - -73.444182, - 45.600973 - ], - [ - -73.444832, - 45.600591 - ], - [ - -73.445172, - 45.600385 - ], - [ - -73.445377, - 45.600266 - ], - [ - -73.445606, - 45.600133 - ], - [ - -73.446043, - 45.599863 - ], - [ - -73.446679, - 45.599485 - ], - [ - -73.446908, - 45.599337 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.447631, - 45.598916 - ], - [ - -73.447731, - 45.598856 - ], - [ - -73.448171, - 45.59861 - ], - [ - -73.448549, - 45.598398 - ], - [ - -73.448789, - 45.598275 - ], - [ - -73.448839, - 45.598249 - ], - [ - -73.448998, - 45.598218 - ], - [ - -73.44922, - 45.59824 - ], - [ - -73.449408, - 45.598272 - ], - [ - -73.449753, - 45.598322 - ], - [ - -73.449948, - 45.598342 - ], - [ - -73.450323, - 45.59838 - ], - [ - -73.450519, - 45.598376 - ], - [ - -73.451106, - 45.598269 - ], - [ - -73.451434, - 45.59821 - ], - [ - -73.451707, - 45.598139 - ], - [ - -73.45178, - 45.59812 - ], - [ - -73.451924, - 45.598053 - ], - [ - -73.452243, - 45.597868 - ], - [ - -73.452948, - 45.597441 - ], - [ - -73.453377, - 45.59718 - ], - [ - -73.453592, - 45.597032 - ], - [ - -73.453626, - 45.596997 - ], - [ - -73.453715, - 45.596906 - ], - [ - -73.453794, - 45.596785 - ], - [ - -73.453871, - 45.596596 - ], - [ - -73.453885, - 45.596532 - ], - [ - -73.453931, - 45.596308 - ], - [ - -73.453991, - 45.596137 - ], - [ - -73.454092, - 45.595664 - ], - [ - -73.454151, - 45.595322 - ], - [ - -73.454179, - 45.595182 - ], - [ - -73.454204, - 45.595062 - ], - [ - -73.45424, - 45.594796 - ], - [ - -73.454266, - 45.59466 - ], - [ - -73.454311, - 45.594418 - ], - [ - -73.454348, - 45.594256 - ], - [ - -73.454385, - 45.594198 - ], - [ - -73.454452, - 45.594099 - ], - [ - -73.454523, - 45.594018 - ], - [ - -73.454739, - 45.593883 - ], - [ - -73.454817, - 45.593955 - ], - [ - -73.454889, - 45.594009 - ], - [ - -73.455013, - 45.59409 - ], - [ - -73.455072, - 45.594122 - ], - [ - -73.455076, - 45.594123 - ], - [ - -73.455163, - 45.594144 - ], - [ - -73.455387, - 45.594185 - ], - [ - -73.455619, - 45.594225 - ], - [ - -73.455723, - 45.593917 - ], - [ - -73.455756, - 45.593816 - ], - [ - -73.455854, - 45.593569 - ], - [ - -73.456153, - 45.59288 - ], - [ - -73.456207, - 45.592759 - ], - [ - -73.456291, - 45.592592 - ], - [ - -73.456406, - 45.592363 - ], - [ - -73.456499, - 45.592179 - ], - [ - -73.45679, - 45.591652 - ], - [ - -73.456852, - 45.591559 - ], - [ - -73.456938, - 45.591427 - ], - [ - -73.457079, - 45.591212 - ], - [ - -73.457344, - 45.590807 - ], - [ - -73.457798, - 45.590177 - ], - [ - -73.457847, - 45.590109 - ], - [ - -73.458224, - 45.589642 - ], - [ - -73.45828, - 45.589578 - ], - [ - -73.458866, - 45.588918 - ], - [ - -73.45918, - 45.588576 - ], - [ - -73.459411, - 45.588319 - ], - [ - -73.459565, - 45.588139 - ], - [ - -73.459672, - 45.588027 - ], - [ - -73.46006, - 45.587602 - ], - [ - -73.460107, - 45.58755 - ], - [ - -73.46024, - 45.587403 - ], - [ - -73.46075, - 45.586842 - ], - [ - -73.461153, - 45.586394 - ], - [ - -73.46118, - 45.586364 - ], - [ - -73.461235, - 45.586304 - ], - [ - -73.461391, - 45.586115 - ], - [ - -73.461498, - 45.585994 - ], - [ - -73.461685, - 45.585787 - ], - [ - -73.461939, - 45.585508 - ], - [ - -73.462342, - 45.585071 - ], - [ - -73.462432, - 45.584973 - ], - [ - -73.462695, - 45.585153 - ], - [ - -73.463008, - 45.585396 - ], - [ - -73.463073, - 45.585446 - ], - [ - -73.463882, - 45.586067 - ], - [ - -73.464037, - 45.586186 - ], - [ - -73.466411, - 45.588016 - ], - [ - -73.466439, - 45.588038 - ], - [ - -73.466543, - 45.588142 - ], - [ - -73.466935, - 45.587825 - ], - [ - -73.467583, - 45.587301 - ], - [ - -73.468078, - 45.586878 - ], - [ - -73.468705, - 45.586302 - ], - [ - -73.469343, - 45.585587 - ], - [ - -73.469639, - 45.585161 - ], - [ - -73.470132, - 45.584453 - ], - [ - -73.470152, - 45.584422 - ], - [ - -73.470218, - 45.584246 - ], - [ - -73.470251, - 45.584156 - ], - [ - -73.470298, - 45.583954 - ], - [ - -73.470385, - 45.583842 - ], - [ - -73.470456, - 45.583585 - ], - [ - -73.47052, - 45.583429 - ], - [ - -73.470545, - 45.583369 - ], - [ - -73.470612, - 45.583247 - ], - [ - -73.470683, - 45.583117 - ], - [ - -73.470812, - 45.582911 - ], - [ - -73.470915, - 45.582744 - ], - [ - -73.470949, - 45.58269 - ], - [ - -73.471346, - 45.582051 - ], - [ - -73.471398, - 45.581925 - ], - [ - -73.471433, - 45.581808 - ], - [ - -73.471453, - 45.581699 - ], - [ - -73.471458, - 45.581595 - ], - [ - -73.471454, - 45.581489 - ], - [ - -73.471389, - 45.581345 - ], - [ - -73.471335, - 45.581232 - ], - [ - -73.471105, - 45.580881 - ], - [ - -73.470884, - 45.580526 - ], - [ - -73.470654, - 45.580152 - ], - [ - -73.470298, - 45.579576 - ], - [ - -73.47012, - 45.579347 - ], - [ - -73.469587, - 45.578501 - ], - [ - -73.469497, - 45.578352 - ], - [ - -73.469458, - 45.578217 - ], - [ - -73.469412, - 45.578105 - ], - [ - -73.469426, - 45.578028 - ], - [ - -73.469459, - 45.577871 - ], - [ - -73.469567, - 45.577727 - ], - [ - -73.469918, - 45.577331 - ], - [ - -73.46993, - 45.577318 - ], - [ - -73.46998, - 45.577261 - ], - [ - -73.470749, - 45.576405 - ], - [ - -73.470833, - 45.576315 - ], - [ - -73.471056, - 45.576076 - ], - [ - -73.471154, - 45.575991 - ], - [ - -73.471267, - 45.57591 - ], - [ - -73.471454, - 45.575824 - ], - [ - -73.471573, - 45.575815 - ], - [ - -73.47168, - 45.575793 - ], - [ - -73.471784, - 45.575788 - ], - [ - -73.47189, - 45.575788 - ], - [ - -73.472025, - 45.575797 - ], - [ - -73.472112, - 45.575815 - ], - [ - -73.472263, - 45.575852 - ], - [ - -73.472355, - 45.575892 - ], - [ - -73.472462, - 45.575951 - ], - [ - -73.472549, - 45.576014 - ], - [ - -73.472694, - 45.576122 - ], - [ - -73.473301, - 45.576594 - ], - [ - -73.473336, - 45.576621 - ], - [ - -73.473371, - 45.57665 - ], - [ - -73.473655, - 45.576878 - ], - [ - -73.474504, - 45.577526 - ], - [ - -73.47467, - 45.577629 - ], - [ - -73.474832, - 45.577728 - ], - [ - -73.474992, - 45.57776 - ], - [ - -73.475075, - 45.577797 - ], - [ - -73.475207, - 45.577851 - ], - [ - -73.4753, - 45.577885 - ], - [ - -73.47539, - 45.577914 - ], - [ - -73.475552, - 45.577947 - ], - [ - -73.475661, - 45.577961 - ], - [ - -73.475789, - 45.577962 - ], - [ - -73.475882, - 45.577959 - ], - [ - -73.475958, - 45.57795 - ], - [ - -73.476012, - 45.577939 - ], - [ - -73.476079, - 45.577928 - ], - [ - -73.476157, - 45.577912 - ], - [ - -73.476217, - 45.577897 - ], - [ - -73.476293, - 45.57787 - ], - [ - -73.476435, - 45.577844 - ], - [ - -73.476547, - 45.57778 - ], - [ - -73.476747, - 45.57765 - ], - [ - -73.476958, - 45.577498 - ], - [ - -73.477027, - 45.57744 - ], - [ - -73.477139, - 45.577348 - ], - [ - -73.477145, - 45.577342 - ], - [ - -73.477324, - 45.577191 - ], - [ - -73.477483, - 45.577054 - ], - [ - -73.477759, - 45.576825 - ], - [ - -73.477862, - 45.576731 - ], - [ - -73.478006, - 45.576618 - ], - [ - -73.478291, - 45.576373 - ], - [ - -73.478455, - 45.576238 - ], - [ - -73.478599, - 45.576116 - ], - [ - -73.478806, - 45.575943 - ], - [ - -73.478978, - 45.575795 - ], - [ - -73.479155, - 45.575649 - ], - [ - -73.479164, - 45.57564 - ], - [ - -73.479274, - 45.575534 - ], - [ - -73.47941, - 45.575433 - ], - [ - -73.479622, - 45.575253 - ], - [ - -73.4798, - 45.575097 - ], - [ - -73.479996, - 45.574941 - ], - [ - -73.480237, - 45.574738 - ], - [ - -73.480328, - 45.574659 - ], - [ - -73.480453, - 45.574551 - ], - [ - -73.480801, - 45.574263 - ], - [ - -73.481358, - 45.573789 - ], - [ - -73.481529, - 45.573644 - ], - [ - -73.481972, - 45.573269 - ], - [ - -73.482063, - 45.573191 - ], - [ - -73.482204, - 45.573068 - ], - [ - -73.482412, - 45.572903 - ], - [ - -73.482823, - 45.572557 - ], - [ - -73.482916, - 45.572476 - ], - [ - -73.482986, - 45.57241 - ], - [ - -73.483315, - 45.572122 - ], - [ - -73.483678, - 45.571813 - ], - [ - -73.483715, - 45.57178 - ], - [ - -73.483843, - 45.57167 - ], - [ - -73.484123, - 45.57144 - ], - [ - -73.484526, - 45.571099 - ], - [ - -73.484935, - 45.570755 - ], - [ - -73.484967, - 45.570727 - ], - [ - -73.485483, - 45.570269 - ], - [ - -73.485864, - 45.569911 - ], - [ - -73.485867, - 45.569908 - ], - [ - -73.485994, - 45.569784 - ], - [ - -73.486085, - 45.569691 - ], - [ - -73.486421, - 45.569373 - ], - [ - -73.487037, - 45.568739 - ], - [ - -73.487188, - 45.568584 - ], - [ - -73.487556, - 45.568196 - ], - [ - -73.487608, - 45.568138 - ], - [ - -73.488016, - 45.567684 - ], - [ - -73.488394, - 45.567236 - ], - [ - -73.488824, - 45.566727 - ], - [ - -73.488926, - 45.566606 - ], - [ - -73.489299, - 45.566117 - ], - [ - -73.489627, - 45.565684 - ], - [ - -73.489917, - 45.565286 - ], - [ - -73.490075, - 45.56507 - ], - [ - -73.490593, - 45.5643 - ], - [ - -73.490747, - 45.564066 - ], - [ - -73.491532, - 45.562873 - ], - [ - -73.491593, - 45.562778 - ], - [ - -73.491615, - 45.562743 - ], - [ - -73.4917, - 45.562606 - ], - [ - -73.491908, - 45.562298 - ], - [ - -73.49207, - 45.56203 - ], - [ - -73.492185, - 45.561871 - ], - [ - -73.492369, - 45.561588 - ], - [ - -73.492378, - 45.561574 - ], - [ - -73.492391, - 45.561555 - ], - [ - -73.492375, - 45.561439 - ], - [ - -73.49342, - 45.559914 - ], - [ - -73.49392, - 45.559275 - ], - [ - -73.494689, - 45.558398 - ], - [ - -73.494702, - 45.558384 - ], - [ - -73.495685, - 45.557305 - ], - [ - -73.496472, - 45.556445 - ], - [ - -73.498256, - 45.554371 - ], - [ - -73.498542, - 45.55402 - ], - [ - -73.498677, - 45.553944 - ], - [ - -73.498726, - 45.553872 - ], - [ - -73.498813, - 45.553714 - ], - [ - -73.498895, - 45.553562 - ], - [ - -73.49895, - 45.553404 - ], - [ - -73.498964, - 45.55335 - ], - [ - -73.498988, - 45.55326 - ], - [ - -73.499026, - 45.553035 - ], - [ - -73.499051, - 45.55281 - ], - [ - -73.49911, - 45.552261 - ], - [ - -73.499127, - 45.552095 - ], - [ - -73.498947, - 45.552086 - ], - [ - -73.498793, - 45.55209 - ], - [ - -73.498694, - 45.552086 - ], - [ - -73.498592, - 45.552072 - ], - [ - -73.498413, - 45.552 - ], - [ - -73.497809, - 45.551537 - ], - [ - -73.497569, - 45.551352 - ], - [ - -73.496964, - 45.550873 - ], - [ - -73.496546, - 45.550543 - ], - [ - -73.496482, - 45.550493 - ], - [ - -73.495901, - 45.550034 - ], - [ - -73.495874, - 45.550013 - ], - [ - -73.494604, - 45.549013 - ], - [ - -73.494377, - 45.548846 - ], - [ - -73.494352, - 45.548779 - ], - [ - -73.494351, - 45.54877 - ], - [ - -73.494341, - 45.548702 - ], - [ - -73.494355, - 45.548662 - ], - [ - -73.494517, - 45.548567 - ], - [ - -73.494756, - 45.548419 - ], - [ - -73.495272, - 45.548104 - ], - [ - -73.495446, - 45.547996 - ], - [ - -73.494882, - 45.547533 - ], - [ - -73.494037, - 45.54684 - ], - [ - -73.493868, - 45.546708 - ], - [ - -73.492532, - 45.54567 - ], - [ - -73.492193, - 45.545383 - ], - [ - -73.492091, - 45.545296 - ], - [ - -73.491973, - 45.545185 - ], - [ - -73.491821, - 45.545044 - ], - [ - -73.491678, - 45.544891 - ], - [ - -73.491607, - 45.544783 - ], - [ - -73.491515, - 45.54463 - ], - [ - -73.491425, - 45.544459 - ], - [ - -73.491366, - 45.544347 - ], - [ - -73.491328, - 45.544221 - ], - [ - -73.491298, - 45.544095 - ], - [ - -73.49126, - 45.543721 - ], - [ - -73.491278, - 45.543146 - ], - [ - -73.491292, - 45.542941 - ], - [ - -73.491331, - 45.54239 - ], - [ - -73.491356, - 45.541854 - ], - [ - -73.491354, - 45.541809 - ], - [ - -73.491349, - 45.541715 - ], - [ - -73.491332, - 45.541557 - ], - [ - -73.491274, - 45.541377 - ], - [ - -73.491237, - 45.54131 - ], - [ - -73.491356, - 45.541251 - ], - [ - -73.491461, - 45.541175 - ], - [ - -73.491486, - 45.541152 - ], - [ - -73.491853, - 45.540777 - ], - [ - -73.492032, - 45.540595 - ], - [ - -73.492356, - 45.540267 - ], - [ - -73.492859, - 45.539758 - ], - [ - -73.494703, - 45.537863 - ], - [ - -73.494803, - 45.53776 - ], - [ - -73.495436, - 45.537126 - ] - ] - }, - "id": 375, - "properties": { - "id": "7e0b7734-5dca-4c04-87b1-036d4c15d5ea", - "data": { - "gtfs": { - "shape_id": "683_1_A" - }, - "segments": [ - { - "distanceMeters": 142, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 171, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 441, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 390, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 349, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 237, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 84, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 378, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 210, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 361, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 101, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 505, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 154, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 64, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 1419, - "travelTimeSeconds": 202 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 423, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 332, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 401, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 922, - "travelTimeSeconds": 131 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 376, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 522, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 69, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 100, - "travelTimeSeconds": 15 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 276, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 19679, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5991.141571377438, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.13, - "travelTimeWithoutDwellTimesSeconds": 2760, - "operatingTimeWithLayoverTimeSeconds": 3036, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2760, - "operatingSpeedWithLayoverMetersPerSecond": 6.48, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.13 - }, - "mode": "bus", - "name": "CÉGEP Édouard-Montpetit", - "color": "#A32638", - "nodes": [ - "6c99422e-05cb-48dc-811f-162fee50cf80", - "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", - "44ce6da8-ee79-4e09-9c16-f31566643c0c", - "7b512bac-ad2d-4d5a-87d8-173290a7b311", - "b94a5730-dab3-4715-a12c-41d1c300a3ab", - "3f07914c-7958-4cd1-a0a6-c2c9e04cc913", - "589841be-b3c7-4f02-a8e7-b24569959def", - "d63304a9-15dd-4cf4-8ec7-3f7d0c080252", - "969d12ef-c40c-4428-9c70-2251a9d71a5e", - "b09cf260-c832-4cf7-bb1b-ef1c96c3308c", - "8a45829f-032b-46f2-a537-7925e71ca5d2", - "dda3c3c1-6952-475f-8547-789fb757f7c6", - "3ff2d59e-aa78-4d80-b1c5-f7852a289411", - "ba6e04e1-77fc-4b3f-86d2-fd956b418882", - "3bd4e28f-2392-4d87-96de-a2ab53d75020", - "e0ad666d-6319-4692-a7ee-a3080772e28d", - "c4a07fb5-3745-472e-8e03-a61e6908d906", - "3e60c63a-1f50-42ff-98f0-f081a7dc4017", - "de3d06d6-88af-49e3-b183-9464b2f111c8", - "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", - "ed16ff8f-f2f4-4914-b93b-f48229e580b7", - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "4fcc129f-8015-4b36-a21f-2437aa91a265", - "3d278b9f-fcbb-4681-9833-769bdbe48eaf", - "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", - "47dc43f6-90db-4837-be84-0b5d8a2becb4", - "628308c5-3a00-44cb-908b-068616e8e618", - "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", - "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", - "abeb197b-490c-4d67-8abe-37d08d73ce70", - "7d34a327-717a-432e-93f5-7310ac20c2c2", - "7ca4f3b1-99df-4499-964b-1702513ad59f", - "e134e428-8d59-4d84-966a-ce83afff1c1c", - "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", - "f7429ca8-1ccc-41e7-acab-a5d3915affbb", - "494d9db6-32c6-4aa3-9c11-91eba915c58f", - "6b55fd05-7687-457e-ae9d-e87027c7100f", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", - "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", - "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", - "b32eb408-e9c7-49ab-afd7-56523f4ec990", - "50c385af-a7f1-479f-b40d-4ed198aca8ce", - "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", - "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", - "8babca8c-ebff-46bc-b0c6-b6576c4fada6", - "c650007a-bdeb-4831-9df5-833406e44887", - "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", - "21aac851-6052-4e4d-8167-df2d9a876338", - "b54db9a8-0c8c-43a8-a385-bc532fde3f70", - "2f7a97d2-c790-4f58-9a63-010938bbaf69", - "48f19a5c-0937-4c87-ba6d-c01e50729a6a", - "064a6f97-fc69-48b1-8038-7d9a4eea77de", - "da1ccd92-4d5e-4317-ad9f-7a8daa9e9230", - "bf75043d-39f5-40a1-89fa-2154a9f2a45f", - "75347f42-115f-47ec-b394-c1f56ce167fb", - "dc112aae-906c-47be-a1fb-06ef714fd1ab", - "ab105343-272d-4aa3-9238-846c2fa787cb", - "24527bed-7ea6-44d6-b6db-18ac609f4938", - "1b1077ca-8a37-46a1-a7be-751ea2f7f2ae", - "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", - "d5099816-374e-4ebc-ab50-5ca4d2f829e5", - "84a0424b-0f35-4bd8-8109-5ac9219d5869", - "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", - "261a087b-9323-4696-9046-146a299af43d", - "f8b461c2-c03e-4da6-aa56-a50e7e1d9db0", - "86b1f9fa-fc35-4bee-a9b9-a70269091ef1", - "8a3f1208-7ffb-452e-8ebb-c436acba82d6", - "2d7687a5-f458-4ce1-a3df-9639d89c0154", - "411bafbe-bac8-4586-9af4-bc0b3163bdde", - "4e53f32e-03c3-4701-94aa-590f28b5adcd", - "04b348b3-bb46-4177-9e4b-604bf8d96a58", - "081e45a0-31c3-487c-996e-66d1b824569d" - ], - "stops": [], - "line_id": "1af974c3-a2fd-4a71-b2ec-d7a3b31d18be", - "segments": [ - 0, - 3, - 13, - 24, - 36, - 43, - 50, - 60, - 70, - 75, - 78, - 90, - 98, - 109, - 118, - 124, - 128, - 135, - 144, - 161, - 167, - 183, - 188, - 195, - 199, - 207, - 211, - 217, - 220, - 228, - 236, - 241, - 252, - 262, - 272, - 277, - 280, - 288, - 293, - 299, - 303, - 314, - 325, - 330, - 348, - 353, - 357, - 364, - 370, - 375, - 381, - 387, - 388, - 391, - 396, - 410, - 478, - 491, - 498, - 504, - 512, - 519, - 530, - 537, - 540, - 546, - 552, - 573, - 579, - 590, - 596, - 618, - 620, - 622 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 375, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.495436, - 45.537126 - ], - [ - -73.495499, - 45.537063 - ], - [ - -73.495942, - 45.536617 - ], - [ - -73.496193, - 45.536366 - ], - [ - -73.49677, - 45.535781 - ], - [ - -73.49726, - 45.535988 - ], - [ - -73.497442, - 45.536063 - ], - [ - -73.498459, - 45.536487 - ], - [ - -73.498915, - 45.536678 - ], - [ - -73.499435, - 45.536897 - ], - [ - -73.501142, - 45.537612 - ], - [ - -73.502066, - 45.537998 - ], - [ - -73.503243, - 45.53849 - ], - [ - -73.503424, - 45.538566 - ], - [ - -73.503808, - 45.538728 - ], - [ - -73.503912, - 45.538786 - ], - [ - -73.504095, - 45.538926 - ], - [ - -73.504553, - 45.539317 - ], - [ - -73.504747, - 45.539452 - ], - [ - -73.504752, - 45.539455 - ], - [ - -73.504898, - 45.539533 - ], - [ - -73.506469, - 45.540185 - ], - [ - -73.507029, - 45.540406 - ], - [ - -73.507958, - 45.540788 - ], - [ - -73.508096, - 45.540847 - ], - [ - -73.507711, - 45.541461 - ], - [ - -73.507514, - 45.541778 - ], - [ - -73.507368, - 45.542003 - ], - [ - -73.507112, - 45.542399 - ], - [ - -73.506629, - 45.543083 - ], - [ - -73.506394, - 45.543393 - ], - [ - -73.506245, - 45.543564 - ], - [ - -73.506072, - 45.543744 - ], - [ - -73.506032, - 45.543786 - ], - [ - -73.505954, - 45.54387 - ], - [ - -73.505635, - 45.544134 - ], - [ - -73.505629, - 45.54414 - ], - [ - -73.505579, - 45.544179 - ], - [ - -73.505527, - 45.544221 - ], - [ - -73.504296, - 45.545236 - ], - [ - -73.504222, - 45.545296 - ], - [ - -73.503599, - 45.545809 - ], - [ - -73.503243, - 45.546138 - ], - [ - -73.50284, - 45.546532 - ], - [ - -73.502631, - 45.546736 - ], - [ - -73.502628, - 45.546739 - ], - [ - -73.502577, - 45.546795 - ], - [ - -73.502495, - 45.546833 - ], - [ - -73.502421, - 45.546867 - ], - [ - -73.502363, - 45.54693 - ], - [ - -73.501891, - 45.547483 - ], - [ - -73.501089, - 45.54845 - ], - [ - -73.500323, - 45.549368 - ], - [ - -73.500136, - 45.549585 - ], - [ - -73.500016, - 45.549724 - ], - [ - -73.499756, - 45.550039 - ], - [ - -73.499564, - 45.550308 - ], - [ - -73.499518, - 45.550373 - ], - [ - -73.499348, - 45.550589 - ], - [ - -73.499249, - 45.550718 - ], - [ - -73.499149, - 45.550849 - ], - [ - -73.49909, - 45.551 - ], - [ - -73.499052, - 45.551292 - ], - [ - -73.498991, - 45.551754 - ], - [ - -73.498947, - 45.552086 - ], - [ - -73.498793, - 45.55209 - ], - [ - -73.498694, - 45.552086 - ], - [ - -73.498592, - 45.552072 - ], - [ - -73.498413, - 45.552 - ], - [ - -73.497817, - 45.551543 - ], - [ - -73.497569, - 45.551352 - ], - [ - -73.497461, - 45.551267 - ], - [ - -73.496964, - 45.550873 - ], - [ - -73.496827, - 45.550682 - ], - [ - -73.496793, - 45.550619 - ], - [ - -73.496772, - 45.550538 - ], - [ - -73.496789, - 45.550453 - ], - [ - -73.496817, - 45.550376 - ], - [ - -73.496833, - 45.550372 - ], - [ - -73.497231, - 45.550102 - ], - [ - -73.497398, - 45.55003 - ], - [ - -73.497527, - 45.550007 - ], - [ - -73.497663, - 45.550007 - ], - [ - -73.497789, - 45.550025 - ], - [ - -73.497936, - 45.550061 - ], - [ - -73.498283, - 45.550169 - ], - [ - -73.49868, - 45.550277 - ], - [ - -73.499072, - 45.550349 - ], - [ - -73.499514, - 45.550349 - ], - [ - -73.499763, - 45.550363 - ], - [ - -73.500269, - 45.550457 - ], - [ - -73.500381, - 45.550489 - ], - [ - -73.500508, - 45.550543 - ], - [ - -73.500621, - 45.550601 - ], - [ - -73.500711, - 45.550673 - ], - [ - -73.500782, - 45.550759 - ], - [ - -73.500831, - 45.550853 - ], - [ - -73.500844, - 45.550925 - ], - [ - -73.500851, - 45.550961 - ], - [ - -73.500846, - 45.551073 - ], - [ - -73.50082, - 45.551186 - ], - [ - -73.500772, - 45.551307 - ], - [ - -73.500707, - 45.551424 - ], - [ - -73.500628, - 45.551541 - ], - [ - -73.500279, - 45.551976 - ], - [ - -73.500025, - 45.552293 - ], - [ - -73.499573, - 45.552882 - ], - [ - -73.498972, - 45.553678 - ], - [ - -73.498458, - 45.55434 - ], - [ - -73.496787, - 45.55649 - ], - [ - -73.495905, - 45.557543 - ], - [ - -73.495369, - 45.558173 - ], - [ - -73.494314, - 45.559446 - ], - [ - -73.493461, - 45.560499 - ], - [ - -73.492975, - 45.561151 - ], - [ - -73.492659, - 45.561597 - ], - [ - -73.492068, - 45.562474 - ], - [ - -73.49148, - 45.563383 - ], - [ - -73.490434, - 45.564962 - ], - [ - -73.489967, - 45.565619 - ], - [ - -73.489477, - 45.566267 - ], - [ - -73.488962, - 45.566906 - ], - [ - -73.48825, - 45.567747 - ], - [ - -73.487877, - 45.568161 - ], - [ - -73.487301, - 45.568777 - ], - [ - -73.486712, - 45.56938 - ], - [ - -73.486308, - 45.569771 - ], - [ - -73.485474, - 45.570545 - ], - [ - -73.48461, - 45.571301 - ], - [ - -73.483654, - 45.572115 - ], - [ - -73.478606, - 45.576433 - ], - [ - -73.478028, - 45.576933 - ], - [ - -73.477248, - 45.577607 - ], - [ - -73.476645, - 45.578128 - ], - [ - -73.475915, - 45.578754 - ], - [ - -73.475553, - 45.579033 - ], - [ - -73.474887, - 45.579478 - ], - [ - -73.474437, - 45.579762 - ], - [ - -73.474095, - 45.580005 - ], - [ - -73.473853, - 45.580158 - ], - [ - -73.473398, - 45.580472 - ], - [ - -73.473077, - 45.58072 - ], - [ - -73.472886, - 45.580886 - ], - [ - -73.472612, - 45.581152 - ], - [ - -73.472574, - 45.581196 - ], - [ - -73.472319, - 45.581482 - ], - [ - -73.472175, - 45.581673 - ], - [ - -73.471994, - 45.581936 - ], - [ - -73.47191, - 45.582061 - ], - [ - -73.471753, - 45.582326 - ], - [ - -73.471543, - 45.582681 - ], - [ - -73.471245, - 45.583188 - ], - [ - -73.471013, - 45.58358 - ], - [ - -73.470714, - 45.584071 - ], - [ - -73.470067, - 45.585151 - ], - [ - -73.469784, - 45.585547 - ], - [ - -73.469628, - 45.585749 - ], - [ - -73.469287, - 45.586145 - ], - [ - -73.469101, - 45.586343 - ], - [ - -73.468904, - 45.586536 - ], - [ - -73.468695, - 45.586725 - ], - [ - -73.466029, - 45.588965 - ], - [ - -73.465851, - 45.589127 - ], - [ - -73.464661, - 45.590008 - ], - [ - -73.463452, - 45.59093 - ], - [ - -73.462873, - 45.59133 - ], - [ - -73.462371, - 45.591654 - ], - [ - -73.46224, - 45.591722 - ], - [ - -73.462125, - 45.591758 - ], - [ - -73.462005, - 45.59178 - ], - [ - -73.461886, - 45.591789 - ], - [ - -73.461876, - 45.591789 - ], - [ - -73.461768, - 45.591789 - ], - [ - -73.461658, - 45.591771 - ], - [ - -73.461565, - 45.591739 - ], - [ - -73.461505, - 45.591712 - ], - [ - -73.461385, - 45.591658 - ], - [ - -73.461314, - 45.591613 - ], - [ - -73.462065, - 45.590961 - ], - [ - -73.462195, - 45.590862 - ], - [ - -73.462294, - 45.590799 - ], - [ - -73.462386, - 45.590754 - ], - [ - -73.462519, - 45.590705 - ], - [ - -73.462602, - 45.590678 - ], - [ - -73.462706, - 45.590656 - ], - [ - -73.462813, - 45.590642 - ], - [ - -73.462888, - 45.590633 - ], - [ - -73.463001, - 45.590624 - ], - [ - -73.46316, - 45.59062 - ], - [ - -73.463269, - 45.590611 - ], - [ - -73.463357, - 45.590597 - ], - [ - -73.463462, - 45.590579 - ], - [ - -73.463571, - 45.590548 - ], - [ - -73.463709, - 45.590498 - ], - [ - -73.463772, - 45.590426 - ], - [ - -73.463826, - 45.590404 - ], - [ - -73.463931, - 45.590341 - ], - [ - -73.464069, - 45.590233 - ], - [ - -73.46414, - 45.59017 - ], - [ - -73.464647, - 45.589698 - ], - [ - -73.464755, - 45.589607 - ], - [ - -73.464769, - 45.589595 - ], - [ - -73.46517, - 45.589257 - ], - [ - -73.465623, - 45.588888 - ], - [ - -73.466111, - 45.588492 - ], - [ - -73.466543, - 45.588142 - ], - [ - -73.466439, - 45.588038 - ], - [ - -73.466346, - 45.587966 - ], - [ - -73.466124, - 45.587795 - ], - [ - -73.464044, - 45.586192 - ], - [ - -73.463882, - 45.586067 - ], - [ - -73.463008, - 45.585396 - ], - [ - -73.462705, - 45.585161 - ], - [ - -73.462695, - 45.585153 - ], - [ - -73.462432, - 45.584973 - ], - [ - -73.461939, - 45.585508 - ], - [ - -73.461685, - 45.585787 - ], - [ - -73.46157, - 45.585914 - ], - [ - -73.461498, - 45.585994 - ], - [ - -73.461395, - 45.58611 - ], - [ - -73.461391, - 45.586115 - ], - [ - -73.461235, - 45.586304 - ], - [ - -73.461153, - 45.586394 - ], - [ - -73.46075, - 45.586842 - ], - [ - -73.46024, - 45.587403 - ], - [ - -73.460107, - 45.58755 - ], - [ - -73.459748, - 45.587943 - ], - [ - -73.459672, - 45.588027 - ], - [ - -73.459565, - 45.588139 - ], - [ - -73.459411, - 45.588319 - ], - [ - -73.45918, - 45.588576 - ], - [ - -73.458866, - 45.588918 - ], - [ - -73.458388, - 45.589457 - ], - [ - -73.458224, - 45.589642 - ], - [ - -73.457847, - 45.590109 - ], - [ - -73.457798, - 45.590177 - ], - [ - -73.457344, - 45.590807 - ], - [ - -73.457079, - 45.591212 - ], - [ - -73.456938, - 45.591427 - ], - [ - -73.456894, - 45.591494 - ], - [ - -73.45679, - 45.591652 - ], - [ - -73.456499, - 45.592179 - ], - [ - -73.456406, - 45.592363 - ], - [ - -73.45632, - 45.592533 - ], - [ - -73.456207, - 45.592759 - ], - [ - -73.456153, - 45.59288 - ], - [ - -73.455854, - 45.593569 - ], - [ - -73.455756, - 45.593816 - ], - [ - -73.455696, - 45.593996 - ], - [ - -73.455619, - 45.594225 - ], - [ - -73.455387, - 45.594185 - ], - [ - -73.455163, - 45.594144 - ], - [ - -73.455072, - 45.594122 - ], - [ - -73.455013, - 45.59409 - ], - [ - -73.454889, - 45.594009 - ], - [ - -73.454817, - 45.593955 - ], - [ - -73.454739, - 45.593883 - ], - [ - -73.454523, - 45.594018 - ], - [ - -73.454452, - 45.594099 - ], - [ - -73.454385, - 45.594198 - ], - [ - -73.454348, - 45.594256 - ], - [ - -73.454311, - 45.594418 - ], - [ - -73.454266, - 45.59466 - ], - [ - -73.45424, - 45.594796 - ], - [ - -73.454229, - 45.594879 - ], - [ - -73.454204, - 45.595062 - ], - [ - -73.454151, - 45.595322 - ], - [ - -73.454092, - 45.595664 - ], - [ - -73.454003, - 45.596082 - ], - [ - -73.453991, - 45.596137 - ], - [ - -73.453931, - 45.596308 - ], - [ - -73.453871, - 45.596596 - ], - [ - -73.453794, - 45.596785 - ], - [ - -73.453715, - 45.596906 - ], - [ - -73.453626, - 45.596997 - ], - [ - -73.453592, - 45.597032 - ], - [ - -73.453377, - 45.59718 - ], - [ - -73.452948, - 45.597441 - ], - [ - -73.452243, - 45.597868 - ], - [ - -73.452077, - 45.597964 - ], - [ - -73.451924, - 45.598053 - ], - [ - -73.45178, - 45.59812 - ], - [ - -73.451434, - 45.59821 - ], - [ - -73.451106, - 45.598269 - ], - [ - -73.450519, - 45.598376 - ], - [ - -73.450323, - 45.59838 - ], - [ - -73.449948, - 45.598342 - ], - [ - -73.449753, - 45.598322 - ], - [ - -73.449408, - 45.598272 - ], - [ - -73.44922, - 45.59824 - ], - [ - -73.448998, - 45.598218 - ], - [ - -73.448839, - 45.598249 - ], - [ - -73.448706, - 45.598317 - ], - [ - -73.448549, - 45.598398 - ], - [ - -73.448171, - 45.59861 - ], - [ - -73.447731, - 45.598856 - ], - [ - -73.447317, - 45.599101 - ], - [ - -73.447161, - 45.599193 - ], - [ - -73.446908, - 45.599337 - ], - [ - -73.446679, - 45.599485 - ], - [ - -73.446043, - 45.599863 - ], - [ - -73.445865, - 45.599973 - ], - [ - -73.445606, - 45.600133 - ], - [ - -73.445172, - 45.600385 - ], - [ - -73.444832, - 45.600591 - ], - [ - -73.444182, - 45.600973 - ], - [ - -73.443509, - 45.601378 - ], - [ - -73.443055, - 45.601648 - ], - [ - -73.442778, - 45.601817 - ], - [ - -73.442509, - 45.60198 - ], - [ - -73.441922, - 45.602327 - ], - [ - -73.441516, - 45.602542 - ], - [ - -73.438822, - 45.603769 - ], - [ - -73.438466, - 45.603935 - ], - [ - -73.438109, - 45.604099 - ], - [ - -73.437975, - 45.60416 - ], - [ - -73.437443, - 45.604403 - ], - [ - -73.436923, - 45.604637 - ], - [ - -73.436609, - 45.60478 - ], - [ - -73.436429, - 45.604862 - ], - [ - -73.436303, - 45.60492 - ], - [ - -73.433751, - 45.606088 - ], - [ - -73.433088, - 45.606393 - ], - [ - -73.433, - 45.606432 - ], - [ - -73.432607, - 45.606605 - ], - [ - -73.432434, - 45.606672 - ], - [ - -73.43227, - 45.606721 - ], - [ - -73.431993, - 45.60678 - ], - [ - -73.431775, - 45.606798 - ], - [ - -73.431493, - 45.606793 - ], - [ - -73.430876, - 45.606707 - ], - [ - -73.43026, - 45.606619 - ], - [ - -73.430121, - 45.606599 - ], - [ - -73.429954, - 45.606572 - ], - [ - -73.429341, - 45.606472 - ], - [ - -73.429112, - 45.606427 - ], - [ - -73.42886, - 45.60635 - ], - [ - -73.428722, - 45.606295 - ], - [ - -73.42867, - 45.606274 - ], - [ - -73.428495, - 45.606184 - ], - [ - -73.428311, - 45.606067 - ], - [ - -73.428239, - 45.60601 - ], - [ - -73.428173, - 45.605959 - ], - [ - -73.427998, - 45.605828 - ], - [ - -73.427603, - 45.605522 - ], - [ - -73.42746, - 45.605399 - ], - [ - -73.427424, - 45.605353 - ], - [ - -73.427406, - 45.605312 - ], - [ - -73.427407, - 45.605278 - ], - [ - -73.427423, - 45.605237 - ], - [ - -73.427444, - 45.605211 - ], - [ - -73.427475, - 45.60518 - ], - [ - -73.428453, - 45.604554 - ], - [ - -73.428564, - 45.604483 - ], - [ - -73.428653, - 45.604427 - ], - [ - -73.42903, - 45.604191 - ], - [ - -73.429453, - 45.603926 - ], - [ - -73.429967, - 45.603607 - ], - [ - -73.430523, - 45.603252 - ], - [ - -73.430877, - 45.603027 - ], - [ - -73.431218, - 45.602808 - ], - [ - -73.431263, - 45.60278 - ], - [ - -73.432706, - 45.602245 - ], - [ - -73.433739, - 45.601863 - ], - [ - -73.434166, - 45.601679 - ], - [ - -73.434263, - 45.601633 - ], - [ - -73.434475, - 45.601531 - ], - [ - -73.434596, - 45.601477 - ], - [ - -73.43499, - 45.601122 - ], - [ - -73.435271, - 45.600843 - ], - [ - -73.435516, - 45.600609 - ], - [ - -73.435806, - 45.600335 - ], - [ - -73.435984, - 45.600152 - ], - [ - -73.436103, - 45.600029 - ], - [ - -73.436269, - 45.599875 - ], - [ - -73.436408, - 45.599746 - ], - [ - -73.43685, - 45.599305 - ], - [ - -73.437027, - 45.599139 - ], - [ - -73.437067, - 45.599104 - ], - [ - -73.437156, - 45.599026 - ], - [ - -73.43732, - 45.5989 - ], - [ - -73.437622, - 45.598721 - ], - [ - -73.438241, - 45.598406 - ], - [ - -73.438459, - 45.598302 - ], - [ - -73.438619, - 45.598226 - ], - [ - -73.43978, - 45.597624 - ], - [ - -73.439976, - 45.597521 - ], - [ - -73.440742, - 45.597138 - ], - [ - -73.441214, - 45.596904 - ], - [ - -73.441367, - 45.596828 - ], - [ - -73.441552, - 45.59672 - ], - [ - -73.441835, - 45.596541 - ], - [ - -73.442031, - 45.596415 - ], - [ - -73.4425, - 45.596119 - ], - [ - -73.442637, - 45.596033 - ], - [ - -73.442295, - 45.595776 - ], - [ - -73.442151, - 45.59567 - ], - [ - -73.441178, - 45.594952 - ], - [ - -73.440718, - 45.594605 - ], - [ - -73.440129, - 45.59416 - ], - [ - -73.439886, - 45.593975 - ], - [ - -73.439804, - 45.593912 - ], - [ - -73.439572, - 45.59375 - ], - [ - -73.439243, - 45.593507 - ], - [ - -73.438934, - 45.593273 - ], - [ - -73.438561, - 45.592999 - ], - [ - -73.438473, - 45.592935 - ], - [ - -73.438222, - 45.592751 - ], - [ - -73.438007, - 45.592593 - ], - [ - -73.437172, - 45.591963 - ], - [ - -73.436595, - 45.591527 - ], - [ - -73.436456, - 45.591422 - ], - [ - -73.436355, - 45.59135 - ], - [ - -73.43623, - 45.591445 - ], - [ - -73.436061, - 45.591575 - ], - [ - -73.435937, - 45.591669 - ], - [ - -73.435849, - 45.591743 - ], - [ - -73.435771, - 45.591809 - ], - [ - -73.435656, - 45.59193 - ], - [ - -73.435482, - 45.592133 - ], - [ - -73.435328, - 45.592303 - ], - [ - -73.435201, - 45.592416 - ], - [ - -73.435194, - 45.59242 - ], - [ - -73.434937, - 45.592614 - ], - [ - -73.434583, - 45.592879 - ], - [ - -73.434575, - 45.592883 - ], - [ - -73.434342, - 45.593054 - ], - [ - -73.434176, - 45.59318 - ], - [ - -73.433984, - 45.593306 - ], - [ - -73.433723, - 45.593472 - ], - [ - -73.433623, - 45.593526 - ], - [ - -73.433582, - 45.593589 - ], - [ - -73.433505, - 45.593629 - ], - [ - -73.433267, - 45.593751 - ], - [ - -73.432744, - 45.593305 - ], - [ - -73.432411, - 45.593022 - ], - [ - -73.431736, - 45.592481 - ], - [ - -73.431426, - 45.592216 - ], - [ - -73.430999, - 45.591887 - ], - [ - -73.430851, - 45.591793 - ], - [ - -73.430742, - 45.591724 - ], - [ - -73.430249, - 45.591315 - ], - [ - -73.430052, - 45.591144 - ], - [ - -73.430035, - 45.591102 - ], - [ - -73.429965, - 45.590937 - ], - [ - -73.429799, - 45.590246 - ], - [ - -73.429621, - 45.589502 - ], - [ - -73.429601, - 45.589438 - ], - [ - -73.429567, - 45.589376 - ], - [ - -73.429522, - 45.589319 - ], - [ - -73.429464, - 45.589267 - ], - [ - -73.429127, - 45.589004 - ], - [ - -73.429118, - 45.588997 - ], - [ - -73.429011, - 45.588919 - ], - [ - -73.429137, - 45.588834 - ], - [ - -73.429681, - 45.58849 - ], - [ - -73.429794, - 45.588417 - ], - [ - -73.430455, - 45.587999 - ], - [ - -73.43085, - 45.58775 - ], - [ - -73.431273, - 45.587482 - ], - [ - -73.431644, - 45.587248 - ], - [ - -73.431818, - 45.587179 - ], - [ - -73.431717, - 45.587092 - ], - [ - -73.431289, - 45.586718 - ], - [ - -73.431182, - 45.58663 - ], - [ - -73.430893, - 45.586393 - ], - [ - -73.430716, - 45.586245 - ], - [ - -73.430467, - 45.586051 - ], - [ - -73.430089, - 45.585748 - ], - [ - -73.430085, - 45.585745 - ], - [ - -73.429958, - 45.585646 - ], - [ - -73.429814, - 45.585537 - ], - [ - -73.428466, - 45.584498 - ], - [ - -73.426671, - 45.583114 - ], - [ - -73.426528, - 45.583004 - ], - [ - -73.426641, - 45.582922 - ], - [ - -73.427107, - 45.582619 - ], - [ - -73.427138, - 45.582598 - ], - [ - -73.42763, - 45.582284 - ], - [ - -73.428226, - 45.58191 - ], - [ - -73.428576, - 45.58169 - ], - [ - -73.428761, - 45.581574 - ], - [ - -73.429134, - 45.581335 - ], - [ - -73.429655, - 45.581003 - ], - [ - -73.429773, - 45.580926 - ], - [ - -73.42982, - 45.580902 - ], - [ - -73.430012, - 45.580805 - ], - [ - -73.430169, - 45.580742 - ], - [ - -73.430652, - 45.580544 - ], - [ - -73.431064, - 45.580374 - ], - [ - -73.431218, - 45.580311 - ], - [ - -73.431616, - 45.580122 - ], - [ - -73.431767, - 45.580048 - ], - [ - -73.4319, - 45.579983 - ], - [ - -73.432272, - 45.579794 - ], - [ - -73.432711, - 45.579565 - ], - [ - -73.43294, - 45.579444 - ], - [ - -73.433076, - 45.579354 - ], - [ - -73.433199, - 45.579264 - ], - [ - -73.433278, - 45.579189 - ], - [ - -73.43335, - 45.57912 - ], - [ - -73.433444, - 45.579021 - ], - [ - -73.43354, - 45.57889 - ], - [ - -73.433689, - 45.578652 - ], - [ - -73.433813, - 45.578436 - ], - [ - -73.434048, - 45.57804 - ], - [ - -73.434306, - 45.577609 - ], - [ - -73.43458, - 45.57716 - ], - [ - -73.434583, - 45.577154 - ], - [ - -73.434669, - 45.577024 - ], - [ - -73.434836, - 45.576741 - ], - [ - -73.435093, - 45.576309 - ], - [ - -73.435197, - 45.576138 - ], - [ - -73.43534, - 45.575913 - ], - [ - -73.43543, - 45.575778 - ], - [ - -73.435467, - 45.575724 - ], - [ - -73.435699, - 45.575382 - ], - [ - -73.43596, - 45.574982 - ], - [ - -73.436118, - 45.574717 - ], - [ - -73.436179, - 45.574618 - ], - [ - -73.436268, - 45.574456 - ], - [ - -73.436505, - 45.573966 - ], - [ - -73.436584, - 45.573804 - ], - [ - -73.437342, - 45.573989 - ], - [ - -73.437514, - 45.57403 - ], - [ - -73.438216, - 45.5742 - ], - [ - -73.438625, - 45.5743 - ], - [ - -73.439, - 45.574382 - ], - [ - -73.439097, - 45.574403 - ], - [ - -73.43935, - 45.574476 - ], - [ - -73.43947, - 45.574525 - ], - [ - -73.439615, - 45.574593 - ], - [ - -73.439719, - 45.574665 - ], - [ - -73.440036, - 45.574917 - ], - [ - -73.440381, - 45.575187 - ], - [ - -73.440733, - 45.575462 - ], - [ - -73.441078, - 45.575736 - ], - [ - -73.44132, - 45.575929 - ], - [ - -73.441396, - 45.575988 - ], - [ - -73.441907, - 45.576399 - ], - [ - -73.44214, - 45.576587 - ], - [ - -73.44223, - 45.576659 - ], - [ - -73.442323, - 45.576754 - ], - [ - -73.442391, - 45.576835 - ], - [ - -73.442427, - 45.576893 - ], - [ - -73.442456, - 45.576961 - ], - [ - -73.442584, - 45.577456 - ], - [ - -73.442632, - 45.577699 - ], - [ - -73.442671, - 45.577883 - ], - [ - -73.442692, - 45.577982 - ], - [ - -73.442754, - 45.578324 - ], - [ - -73.442822, - 45.57868 - ], - [ - -73.44301, - 45.579552 - ], - [ - -73.443122, - 45.580146 - ], - [ - -73.443126, - 45.580161 - ], - [ - -73.443169, - 45.580299 - ], - [ - -73.443264, - 45.580785 - ], - [ - -73.443359, - 45.581199 - ], - [ - -73.443375, - 45.581348 - ], - [ - -73.443437, - 45.581532 - ], - [ - -73.443442, - 45.581544 - ], - [ - -73.443489, - 45.581649 - ], - [ - -73.443575, - 45.581784 - ], - [ - -73.443724, - 45.581969 - ], - [ - -73.443826, - 45.582072 - ], - [ - -73.445192, - 45.583151 - ], - [ - -73.445199, - 45.583169 - ], - [ - -73.445212, - 45.583213 - ], - [ - -73.445216, - 45.583229 - ], - [ - -73.445297, - 45.583292 - ], - [ - -73.44537, - 45.583351 - ], - [ - -73.445826, - 45.583707 - ], - [ - -73.445827, - 45.583708 - ], - [ - -73.44592, - 45.583788 - ], - [ - -73.446073, - 45.583824 - ], - [ - -73.446269, - 45.583671 - ], - [ - -73.446281, - 45.583662 - ], - [ - -73.446365, - 45.583594 - ], - [ - -73.446509, - 45.583477 - ], - [ - -73.446663, - 45.583334 - ], - [ - -73.446759, - 45.583239 - ], - [ - -73.446885, - 45.583095 - ], - [ - -73.447026, - 45.582915 - ], - [ - -73.44712, - 45.582776 - ], - [ - -73.447194, - 45.582643 - ], - [ - -73.447216, - 45.582605 - ], - [ - -73.447288, - 45.582456 - ], - [ - -73.447348, - 45.582322 - ], - [ - -73.447422, - 45.58211 - ], - [ - -73.447475, - 45.581885 - ], - [ - -73.447497, - 45.581732 - ], - [ - -73.447521, - 45.581602 - ], - [ - -73.447516, - 45.581462 - ], - [ - -73.447513, - 45.581287 - ], - [ - -73.447477, - 45.581057 - ], - [ - -73.447323, - 45.580299 - ], - [ - -73.447286, - 45.580117 - ], - [ - -73.447144, - 45.579424 - ], - [ - -73.447088, - 45.579152 - ] - ] - }, - "id": 376, - "properties": { - "id": "b4de7e51-f7f0-4d39-aea7-5eecf300190f", - "data": { - "gtfs": { - "shape_id": "683_2_R" - }, - "segments": [ - { - "distanceMeters": 69, - "travelTimeSeconds": 7 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 378, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 6071, - "travelTimeSeconds": 676 - }, - { - "distanceMeters": 383, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 316, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 444, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 328, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 86, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 311, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 351, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 386, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 307, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 15 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 240, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 21577, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 5991.141571377439, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.99, - "travelTimeWithoutDwellTimesSeconds": 2400, - "operatingTimeWithLayoverTimeSeconds": 2640, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 2400, - "operatingSpeedWithLayoverMetersPerSecond": 8.17, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.99 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "081e45a0-31c3-487c-996e-66d1b824569d", - "4ae33b06-30dd-4ad3-8df9-3ce610880853", - "4d48f36b-2274-4392-afac-b2c2c64b98f0", - "5f58acb6-be68-437f-bde7-a77d03125af9", - "4e61612c-2f48-47d6-ad42-7c0737853911", - "2759f6fd-0d91-4292-9174-1b3724fde57a", - "cca1a0cf-beb4-489c-8f77-d54546a85821", - "17f362e0-58a1-4091-a2cb-677491725ae9", - "c5521133-14cc-4988-b8c2-4360698fa4ec", - "a42ad0c8-61c2-4ea6-ba0d-de9a1cb40394", - "bc056e84-1f20-4604-aad7-40427c6685a6", - "f8b461c2-c03e-4da6-aa56-a50e7e1d9db0", - "6460b11a-31ec-4bbc-b7b7-22be32195079", - "b2bf7d79-9175-4e1d-be9c-4f4140537e43", - "2f7a97d2-c790-4f58-9a63-010938bbaf69", - "b54db9a8-0c8c-43a8-a385-bc532fde3f70", - "21aac851-6052-4e4d-8167-df2d9a876338", - "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", - "c650007a-bdeb-4831-9df5-833406e44887", - "8babca8c-ebff-46bc-b0c6-b6576c4fada6", - "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", - "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", - "50c385af-a7f1-479f-b40d-4ed198aca8ce", - "b32eb408-e9c7-49ab-afd7-56523f4ec990", - "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", - "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", - "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", - "e215ed06-76bb-473a-80f3-21384e4c300f", - "6b55fd05-7687-457e-ae9d-e87027c7100f", - "494d9db6-32c6-4aa3-9c11-91eba915c58f", - "f7429ca8-1ccc-41e7-acab-a5d3915affbb", - "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", - "e134e428-8d59-4d84-966a-ce83afff1c1c", - "7ca4f3b1-99df-4499-964b-1702513ad59f", - "7d34a327-717a-432e-93f5-7310ac20c2c2", - "abeb197b-490c-4d67-8abe-37d08d73ce70", - "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", - "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", - "628308c5-3a00-44cb-908b-068616e8e618", - "47dc43f6-90db-4837-be84-0b5d8a2becb4", - "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", - "fc32be78-9480-4dfc-b10c-475dc000dd04", - "0872c388-8faf-4852-b4ce-cf3f6312e0ef", - "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "ed16ff8f-f2f4-4914-b93b-f48229e580b7", - "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", - "de3d06d6-88af-49e3-b183-9464b2f111c8", - "3613b472-6055-4b55-9c89-01a451d82804", - "4cd6eb13-aeec-4716-a3d3-8e1a38389723", - "9ad04c6c-abc1-49fe-8f36-db6146dd5c5c", - "3dedf179-3478-4b4d-b706-36e0a8981094", - "3bd4e28f-2392-4d87-96de-a2ab53d75020", - "ba6e04e1-77fc-4b3f-86d2-fd956b418882", - "3ff2d59e-aa78-4d80-b1c5-f7852a289411", - "dda3c3c1-6952-475f-8547-789fb757f7c6", - "b09cf260-c832-4cf7-bb1b-ef1c96c3308c", - "969d12ef-c40c-4428-9c70-2251a9d71a5e", - "d63304a9-15dd-4cf4-8ec7-3f7d0c080252", - "589841be-b3c7-4f02-a8e7-b24569959def", - "3f07914c-7958-4cd1-a0a6-c2c9e04cc913", - "b94a5730-dab3-4715-a12c-41d1c300a3ab", - "7b512bac-ad2d-4d5a-87d8-173290a7b311", - "44ce6da8-ee79-4e09-9c16-f31566643c0c", - "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", - "6c99422e-05cb-48dc-811f-162fee50cf80" - ], - "stops": [], - "line_id": "1af974c3-a2fd-4a71-b2ec-d7a3b31d18be", - "segments": [ - 0, - 2, - 8, - 12, - 19, - 25, - 35, - 39, - 45, - 53, - 63, - 69, - 175, - 200, - 208, - 209, - 212, - 219, - 226, - 232, - 239, - 243, - 248, - 264, - 268, - 279, - 292, - 296, - 301, - 308, - 314, - 319, - 323, - 331, - 341, - 352, - 360, - 365, - 374, - 378, - 383, - 388, - 393, - 400, - 407, - 410, - 416, - 432, - 439, - 452, - 459, - 468, - 472, - 473, - 480, - 489, - 499, - 507, - 521, - 527, - 537, - 548, - 554, - 560, - 572, - 584, - 595 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 376, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.490863, - 45.456982 - ], - [ - -73.48998, - 45.456944 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.489765, - 45.457071 - ], - [ - -73.489763, - 45.457296 - ], - [ - -73.489736, - 45.457408 - ], - [ - -73.489694, - 45.457516 - ], - [ - -73.489182, - 45.458344 - ], - [ - -73.489058, - 45.458542 - ], - [ - -73.488929, - 45.458754 - ], - [ - -73.488839, - 45.458979 - ], - [ - -73.488828, - 45.459006 - ], - [ - -73.488777, - 45.459727 - ], - [ - -73.488701, - 45.460814 - ], - [ - -73.488665, - 45.461402 - ], - [ - -73.488659, - 45.461512 - ], - [ - -73.488594, - 45.462464 - ], - [ - -73.488573, - 45.462762 - ], - [ - -73.488498, - 45.462929 - ], - [ - -73.488349, - 45.463109 - ], - [ - -73.488147, - 45.463215 - ], - [ - -73.488109, - 45.463235 - ], - [ - -73.487821, - 45.463302 - ], - [ - -73.487412, - 45.463379 - ], - [ - -73.487283, - 45.463388 - ], - [ - -73.487042, - 45.463406 - ], - [ - -73.486606, - 45.463401 - ], - [ - -73.486489, - 45.463401 - ], - [ - -73.486321, - 45.463433 - ], - [ - -73.486243, - 45.463455 - ], - [ - -73.486089, - 45.463495 - ], - [ - -73.485941, - 45.463558 - ], - [ - -73.485896, - 45.463576 - ], - [ - -73.485826, - 45.463612 - ], - [ - -73.485277, - 45.463878 - ], - [ - -73.485098, - 45.46395 - ], - [ - -73.484961, - 45.463999 - ], - [ - -73.484817, - 45.464035 - ], - [ - -73.484669, - 45.464067 - ], - [ - -73.484494, - 45.464076 - ], - [ - -73.484342, - 45.46408 - ], - [ - -73.48257, - 45.464048 - ], - [ - -73.482309, - 45.464098 - ], - [ - -73.481982, - 45.464183 - ], - [ - -73.481584, - 45.464342 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.481238, - 45.464158 - ], - [ - -73.480971, - 45.463838 - ], - [ - -73.480932, - 45.463792 - ], - [ - -73.480306, - 45.46304 - ], - [ - -73.479957, - 45.462623 - ], - [ - -73.479274, - 45.461807 - ], - [ - -73.478983, - 45.461465 - ], - [ - -73.478678, - 45.461105 - ], - [ - -73.47855, - 45.461011 - ], - [ - -73.478436, - 45.46091 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.47665, - 45.461971 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476066, - 45.461864 - ], - [ - -73.475666, - 45.461613 - ], - [ - -73.475411, - 45.461799 - ], - [ - -73.475315, - 45.461869 - ], - [ - -73.47512, - 45.462031 - ], - [ - -73.474994, - 45.462135 - ], - [ - -73.474502, - 45.462639 - ], - [ - -73.474394, - 45.46281 - ], - [ - -73.474225, - 45.463052 - ], - [ - -73.47413, - 45.463142 - ], - [ - -73.474125, - 45.463146 - ], - [ - -73.474018, - 45.46321 - ], - [ - -73.472907, - 45.464104 - ], - [ - -73.472811, - 45.464181 - ], - [ - -73.472107, - 45.4637 - ], - [ - -73.471841, - 45.463592 - ], - [ - -73.471692, - 45.463569 - ], - [ - -73.471666, - 45.463565 - ], - [ - -73.471494, - 45.463556 - ], - [ - -73.471257, - 45.463547 - ], - [ - -73.470687, - 45.463533 - ], - [ - -73.469185, - 45.463481 - ], - [ - -73.468972, - 45.463474 - ], - [ - -73.468884, - 45.463461 - ], - [ - -73.468833, - 45.46342 - ], - [ - -73.468836, - 45.463308 - ], - [ - -73.468837, - 45.463254 - ], - [ - -73.468876, - 45.462738 - ], - [ - -73.46897, - 45.46149 - ], - [ - -73.46901, - 45.460865 - ], - [ - -73.469029, - 45.460617 - ], - [ - -73.469045, - 45.460397 - ], - [ - -73.469046, - 45.459978 - ], - [ - -73.46901, - 45.459861 - ], - [ - -73.468938, - 45.459704 - ], - [ - -73.468742, - 45.459506 - ], - [ - -73.468425, - 45.459258 - ], - [ - -73.468212, - 45.459096 - ], - [ - -73.468171, - 45.459052 - ], - [ - -73.468056, - 45.45893 - ], - [ - -73.467979, - 45.458754 - ], - [ - -73.467956, - 45.458669 - ], - [ - -73.467971, - 45.458525 - ], - [ - -73.467975, - 45.458309 - ], - [ - -73.467992, - 45.458216 - ], - [ - -73.468021, - 45.458057 - ], - [ - -73.468109, - 45.457211 - ], - [ - -73.468145, - 45.457017 - ], - [ - -73.468147, - 45.457005 - ], - [ - -73.468158, - 45.456945 - ], - [ - -73.46834, - 45.456412 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468443, - 45.456109 - ], - [ - -73.467856, - 45.455996 - ], - [ - -73.467523, - 45.455919 - ], - [ - -73.467299, - 45.455861 - ], - [ - -73.466983, - 45.455757 - ], - [ - -73.466899, - 45.455728 - ], - [ - -73.466828, - 45.455703 - ], - [ - -73.466326, - 45.455503 - ], - [ - -73.466093, - 45.45541 - ], - [ - -73.465683, - 45.455224 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.463912, - 45.454506 - ], - [ - -73.463601, - 45.454377 - ], - [ - -73.463314, - 45.454258 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.461806, - 45.453577 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.459815, - 45.452691 - ], - [ - -73.459186, - 45.452399 - ], - [ - -73.45904, - 45.452331 - ], - [ - -73.458688, - 45.452137 - ], - [ - -73.458046, - 45.451791 - ], - [ - -73.457689, - 45.451583 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457598, - 45.451363 - ], - [ - -73.457627, - 45.45129 - ], - [ - -73.457661, - 45.451176 - ], - [ - -73.457648, - 45.45104 - ], - [ - -73.457607, - 45.450938 - ], - [ - -73.457498, - 45.450823 - ], - [ - -73.457365, - 45.450743 - ] - ] - }, - "id": 377, - "properties": { - "id": "c18d5aca-48d7-46f4-8169-e8c8f9b0af96", - "data": { - "gtfs": { - "shape_id": "684_1_A" - }, - "segments": [ - { - "distanceMeters": 69, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 79 - }, - { - "distanceMeters": 363, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 44, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 63, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 143, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 124, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 69, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 22 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 4763, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2698.903030564319, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 4.96, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 4.18, - "averageSpeedWithoutDwellTimesMetersPerSecond": 4.96 - }, - "mode": "bus", - "name": "École Antoine-Brossard", - "color": "#A32638", - "nodes": [ - "117181e4-9af2-4572-89ec-28895ad235ae", - "984def83-5f59-45f7-bb33-ed1dbca30502", - "5a6d8067-b58d-4ab2-838e-422e8f003ee9", - "9c711698-0f65-4997-8a72-24f5d8ab8fb7", - "1339471a-52fa-47e9-b0e4-753bf917ef08", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "003bcf5e-54a8-471f-b008-b7fa64ff94ba", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "06992afa-6d7e-4650-bffc-5a747de5860c", - "7389acbe-1784-4fea-a2ab-a4a9c9239e83", - "70ace55a-2f3c-410b-8740-bea06ecb9924", - "71ffac32-604a-4260-b51e-c427856a20c4", - "f872f4da-bae9-485b-a2fb-ae01787389fc", - "f045bfca-885e-4fa6-be24-3e8f1855457a", - "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", - "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", - "ca62a640-5508-4ced-94a0-1f22107c57c9", - "ca62a640-5508-4ced-94a0-1f22107c57c9", - "8443a69f-fccf-4a19-8d08-6da77269e686", - "2946050b-73ca-45c7-be10-f80ba5b43ab5", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "ab493a3c-1217-4122-93b5-217f7741b2ea", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "44eacee6-a348-48cf-aeda-c9ddae958f8e" - ], - "stops": [], - "line_id": "9ee80f39-41f5-48ee-aea8-5ac87d466001", - "segments": [ - 0, - 1, - 10, - 14, - 31, - 44, - 46, - 50, - 55, - 58, - 60, - 64, - 70, - 72, - 76, - 81, - 90, - 98, - 104, - 107, - 110, - 119, - 126, - 129, - 132, - 136 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 377, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.457365, - 45.450743 - ], - [ - -73.457311, - 45.45071 - ], - [ - -73.457055, - 45.450562 - ], - [ - -73.45697, - 45.450481 - ], - [ - -73.456931, - 45.450397 - ], - [ - -73.456841, - 45.450279 - ], - [ - -73.456733, - 45.450296 - ], - [ - -73.456625, - 45.450319 - ], - [ - -73.456525, - 45.450368 - ], - [ - -73.456438, - 45.450427 - ], - [ - -73.456357, - 45.45049 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456282, - 45.450641 - ], - [ - -73.456274, - 45.450721 - ], - [ - -73.456292, - 45.450794 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.45714, - 45.451439 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457924, - 45.451894 - ], - [ - -73.458487, - 45.4522 - ], - [ - -73.458729, - 45.45233 - ], - [ - -73.458941, - 45.452443 - ], - [ - -73.459713, - 45.452799 - ], - [ - -73.46123, - 45.453471 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.462917, - 45.454222 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463822, - 45.454609 - ], - [ - -73.464889, - 45.45506 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465851, - 45.455474 - ], - [ - -73.466482, - 45.45573 - ], - [ - -73.466742, - 45.45582 - ], - [ - -73.466794, - 45.455838 - ], - [ - -73.466905, - 45.455874 - ], - [ - -73.467229, - 45.455978 - ], - [ - -73.467462, - 45.456041 - ], - [ - -73.467802, - 45.456122 - ], - [ - -73.468135, - 45.456185 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468158, - 45.456945 - ], - [ - -73.468147, - 45.457005 - ], - [ - -73.468109, - 45.457211 - ], - [ - -73.468044, - 45.457834 - ], - [ - -73.468021, - 45.458057 - ], - [ - -73.467975, - 45.458309 - ], - [ - -73.467971, - 45.458525 - ], - [ - -73.467956, - 45.458669 - ], - [ - -73.467979, - 45.458754 - ], - [ - -73.468051, - 45.458918 - ], - [ - -73.468056, - 45.45893 - ], - [ - -73.468212, - 45.459096 - ], - [ - -73.468425, - 45.459258 - ], - [ - -73.468742, - 45.459506 - ], - [ - -73.468938, - 45.459704 - ], - [ - -73.46901, - 45.459861 - ], - [ - -73.469046, - 45.459978 - ], - [ - -73.469045, - 45.460397 - ], - [ - -73.469024, - 45.460681 - ], - [ - -73.46901, - 45.460865 - ], - [ - -73.46897, - 45.46149 - ], - [ - -73.468876, - 45.462738 - ], - [ - -73.468837, - 45.463254 - ], - [ - -73.468833, - 45.463418 - ], - [ - -73.468833, - 45.46342 - ], - [ - -73.468884, - 45.463461 - ], - [ - -73.468972, - 45.463474 - ], - [ - -73.46938, - 45.463488 - ], - [ - -73.470687, - 45.463533 - ], - [ - -73.471257, - 45.463547 - ], - [ - -73.471494, - 45.463556 - ], - [ - -73.471516, - 45.463557 - ], - [ - -73.471666, - 45.463565 - ], - [ - -73.471841, - 45.463592 - ], - [ - -73.472107, - 45.4637 - ], - [ - -73.47277, - 45.464153 - ], - [ - -73.472811, - 45.464181 - ], - [ - -73.474002, - 45.463223 - ], - [ - -73.474018, - 45.46321 - ], - [ - -73.47413, - 45.463142 - ], - [ - -73.474225, - 45.463052 - ], - [ - -73.474394, - 45.46281 - ], - [ - -73.474502, - 45.462639 - ], - [ - -73.47496, - 45.462171 - ], - [ - -73.474994, - 45.462135 - ], - [ - -73.475315, - 45.461869 - ], - [ - -73.475666, - 45.461613 - ], - [ - -73.475999, - 45.461821 - ], - [ - -73.476382, - 45.462062 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476557, - 45.462176 - ], - [ - -73.477249, - 45.461685 - ], - [ - -73.478221, - 45.460951 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.47855, - 45.461011 - ], - [ - -73.478678, - 45.461105 - ], - [ - -73.478798, - 45.461246 - ], - [ - -73.478852, - 45.461311 - ], - [ - -73.478983, - 45.461465 - ], - [ - -73.479274, - 45.461807 - ], - [ - -73.47972, - 45.46234 - ], - [ - -73.480306, - 45.46304 - ], - [ - -73.480932, - 45.463792 - ], - [ - -73.481364, - 45.464309 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.481982, - 45.464183 - ], - [ - -73.482309, - 45.464098 - ], - [ - -73.48257, - 45.464048 - ], - [ - -73.482856, - 45.464054 - ], - [ - -73.484342, - 45.46408 - ], - [ - -73.484494, - 45.464076 - ], - [ - -73.484669, - 45.464067 - ], - [ - -73.484817, - 45.464035 - ], - [ - -73.484961, - 45.463999 - ], - [ - -73.485098, - 45.46395 - ], - [ - -73.485277, - 45.463878 - ], - [ - -73.485826, - 45.463612 - ], - [ - -73.485896, - 45.463576 - ], - [ - -73.485989, - 45.463538 - ], - [ - -73.486089, - 45.463495 - ], - [ - -73.486243, - 45.463455 - ], - [ - -73.486321, - 45.463433 - ], - [ - -73.486489, - 45.463401 - ], - [ - -73.486606, - 45.463401 - ], - [ - -73.487042, - 45.463406 - ], - [ - -73.487283, - 45.463388 - ], - [ - -73.487412, - 45.463379 - ], - [ - -73.487821, - 45.463302 - ], - [ - -73.488109, - 45.463235 - ], - [ - -73.488349, - 45.463109 - ], - [ - -73.488498, - 45.462929 - ], - [ - -73.488573, - 45.462762 - ], - [ - -73.488581, - 45.462647 - ], - [ - -73.488594, - 45.462464 - ], - [ - -73.488653, - 45.461596 - ], - [ - -73.488659, - 45.461512 - ], - [ - -73.488701, - 45.460814 - ], - [ - -73.488777, - 45.459727 - ], - [ - -73.488805, - 45.459335 - ], - [ - -73.488828, - 45.459006 - ], - [ - -73.488929, - 45.458754 - ], - [ - -73.489058, - 45.458542 - ], - [ - -73.489182, - 45.458344 - ], - [ - -73.489694, - 45.457516 - ], - [ - -73.489701, - 45.457498 - ], - [ - -73.489736, - 45.457408 - ], - [ - -73.489763, - 45.457296 - ], - [ - -73.489765, - 45.457071 - ], - [ - -73.491355, - 45.457125 - ], - [ - -73.49153, - 45.457126 - ] - ] - }, - "id": 378, - "properties": { - "id": "dbfe0935-6e7c-488a-9100-5f5f8276dd74", - "data": { - "gtfs": { - "shape_id": "684_2_R" - }, - "segments": [ - { - "distanceMeters": 248, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 222, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 81, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 39 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 4975, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2757.437142128404, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 4.88, - "travelTimeWithoutDwellTimesSeconds": 1020, - "operatingTimeWithLayoverTimeSeconds": 1200, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1020, - "operatingSpeedWithLayoverMetersPerSecond": 4.15, - "averageSpeedWithoutDwellTimesMetersPerSecond": 4.88 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "44eacee6-a348-48cf-aeda-c9ddae958f8e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", - "2ac07b96-98be-4710-a749-3162a661fcb5", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "981ebecb-3dc2-4439-8648-8052a51df7ec", - "2a268094-fe95-4a75-83da-d02aa638cbb6", - "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", - "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", - "ef880d61-7a9a-4504-a9a1-27967a52e95d", - "f872f4da-bae9-485b-a2fb-ae01787389fc", - "71ffac32-604a-4260-b51e-c427856a20c4", - "70ace55a-2f3c-410b-8740-bea06ecb9924", - "7389acbe-1784-4fea-a2ab-a4a9c9239e83", - "06992afa-6d7e-4650-bffc-5a747de5860c", - "ff23cabb-ca11-421b-a582-f6413aa21fa0", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "003bcf5e-54a8-471f-b008-b7fa64ff94ba", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "57de752e-d268-4125-8223-581e6c2ff56e", - "1339471a-52fa-47e9-b0e4-753bf917ef08", - "9c711698-0f65-4997-8a72-24f5d8ab8fb7", - "5a6d8067-b58d-4ab2-838e-422e8f003ee9", - "e20e768c-bd5a-43fd-8842-af2717d6cb09", - "69fd316d-244b-48fa-871d-645ac04399fc" - ], - "stops": [], - "line_id": "9ee80f39-41f5-48ee-aea8-5ac87d466001", - "segments": [ - 0, - 16, - 21, - 24, - 26, - 29, - 40, - 45, - 51, - 60, - 65, - 73, - 77, - 79, - 85, - 90, - 94, - 99, - 102, - 105, - 110, - 120, - 136, - 140, - 146 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 378, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.490536, - 45.447995 - ], - [ - -73.490521, - 45.448293 - ], - [ - -73.490407, - 45.449501 - ], - [ - -73.490386, - 45.449719 - ], - [ - -73.490356, - 45.450109 - ], - [ - -73.490274, - 45.451145 - ], - [ - -73.490183, - 45.451912 - ], - [ - -73.490174, - 45.451996 - ], - [ - -73.490164, - 45.452099 - ], - [ - -73.490107, - 45.452689 - ], - [ - -73.490099, - 45.452842 - ], - [ - -73.490095, - 45.452936 - ], - [ - -73.490138, - 45.453076 - ], - [ - -73.490177, - 45.453161 - ], - [ - -73.490251, - 45.453269 - ], - [ - -73.490323, - 45.453345 - ], - [ - -73.490337, - 45.453359 - ], - [ - -73.490535, - 45.453506 - ], - [ - -73.49064, - 45.453584 - ], - [ - -73.490922, - 45.453778 - ], - [ - -73.491049, - 45.453868 - ], - [ - -73.491205, - 45.454016 - ], - [ - -73.491307, - 45.454169 - ], - [ - -73.491353, - 45.454286 - ], - [ - -73.491385, - 45.45439 - ], - [ - -73.491385, - 45.45452 - ], - [ - -73.491384, - 45.454529 - ], - [ - -73.491379, - 45.454673 - ], - [ - -73.491306, - 45.455478 - ], - [ - -73.491179, - 45.455672 - ], - [ - -73.491011, - 45.455801 - ], - [ - -73.49101, - 45.455802 - ], - [ - -73.490874, - 45.45587 - ], - [ - -73.490235, - 45.456194 - ], - [ - -73.490047, - 45.45632 - ], - [ - -73.489891, - 45.45645 - ], - [ - -73.489837, - 45.456558 - ], - [ - -73.489805, - 45.456679 - ], - [ - -73.48979, - 45.456792 - ], - [ - -73.489787, - 45.45681 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.489159, - 45.456913 - ], - [ - -73.488779, - 45.456899 - ], - [ - -73.488212, - 45.456877 - ], - [ - -73.48652, - 45.456819 - ], - [ - -73.486364, - 45.456814 - ], - [ - -73.485148, - 45.456777 - ], - [ - -73.483698, - 45.456733 - ], - [ - -73.482913, - 45.456699 - ], - [ - -73.482756, - 45.456692 - ], - [ - -73.482803, - 45.455945 - ], - [ - -73.482873, - 45.455347 - ], - [ - -73.482933, - 45.455144 - ], - [ - -73.483013, - 45.454949 - ], - [ - -73.483041, - 45.454879 - ], - [ - -73.483256, - 45.454555 - ], - [ - -73.483336, - 45.454466 - ], - [ - -73.483527, - 45.454254 - ], - [ - -73.483647, - 45.454132 - ], - [ - -73.48375, - 45.454002 - ], - [ - -73.48383, - 45.453858 - ], - [ - -73.483876, - 45.453709 - ], - [ - -73.483893, - 45.453567 - ], - [ - -73.483908, - 45.453444 - ], - [ - -73.483918, - 45.453192 - ], - [ - -73.483914, - 45.453106 - ], - [ - -73.483845, - 45.452961 - ], - [ - -73.483803, - 45.452872 - ], - [ - -73.483523, - 45.452683 - ], - [ - -73.483385, - 45.452634 - ], - [ - -73.483204, - 45.452607 - ], - [ - -73.481531, - 45.452556 - ], - [ - -73.481291, - 45.452548 - ], - [ - -73.480742, - 45.452539 - ], - [ - -73.480267, - 45.452543 - ], - [ - -73.479609, - 45.452606 - ], - [ - -73.479442, - 45.452631 - ], - [ - -73.479278, - 45.452656 - ], - [ - -73.479123, - 45.452678 - ], - [ - -73.47843, - 45.452784 - ], - [ - -73.478149, - 45.452826 - ], - [ - -73.477761, - 45.452903 - ], - [ - -73.477488, - 45.453011 - ], - [ - -73.47723, - 45.453123 - ], - [ - -73.475827, - 45.453802 - ], - [ - -73.475164, - 45.454109 - ], - [ - -73.474972, - 45.454198 - ], - [ - -73.475389, - 45.454625 - ], - [ - -73.475548, - 45.454788 - ], - [ - -73.475752, - 45.455094 - ], - [ - -73.47581, - 45.455248 - ], - [ - -73.475877, - 45.455431 - ], - [ - -73.475885, - 45.455566 - ], - [ - -73.475889, - 45.455724 - ], - [ - -73.475851, - 45.456427 - ], - [ - -73.475848, - 45.456479 - ], - [ - -73.475258, - 45.456459 - ], - [ - -73.474778, - 45.456443 - ], - [ - -73.473716, - 45.456411 - ], - [ - -73.47264, - 45.456375 - ], - [ - -73.471572, - 45.456339 - ], - [ - -73.47073, - 45.456312 - ], - [ - -73.47047, - 45.456303 - ], - [ - -73.469686, - 45.456262 - ], - [ - -73.46943, - 45.456244 - ], - [ - -73.468978, - 45.456199 - ], - [ - -73.468656, - 45.456152 - ], - [ - -73.468607, - 45.456145 - ], - [ - -73.468443, - 45.456109 - ], - [ - -73.467856, - 45.455996 - ], - [ - -73.467523, - 45.455919 - ], - [ - -73.467299, - 45.455861 - ], - [ - -73.466983, - 45.455757 - ], - [ - -73.466899, - 45.455728 - ], - [ - -73.466828, - 45.455703 - ], - [ - -73.466312, - 45.455498 - ], - [ - -73.466093, - 45.45541 - ], - [ - -73.465683, - 45.455224 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.463912, - 45.454506 - ], - [ - -73.463601, - 45.454377 - ], - [ - -73.463301, - 45.454253 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.461794, - 45.453571 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.459815, - 45.452691 - ], - [ - -73.459185, - 45.452398 - ], - [ - -73.45904, - 45.452331 - ], - [ - -73.458688, - 45.452137 - ], - [ - -73.458046, - 45.451791 - ], - [ - -73.457688, - 45.451583 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457598, - 45.451363 - ], - [ - -73.457627, - 45.45129 - ], - [ - -73.457661, - 45.451176 - ], - [ - -73.457648, - 45.45104 - ], - [ - -73.457607, - 45.450938 - ], - [ - -73.457498, - 45.450823 - ], - [ - -73.457365, - 45.450743 - ] - ] - }, - "id": 379, - "properties": { - "id": "8b570d07-35f7-4035-bf57-fd73f7aa6fa1", - "data": { - "gtfs": { - "shape_id": "689_1_A" - }, - "segments": [ - { - "distanceMeters": 168, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 188, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 378, - "travelTimeSeconds": 71 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 569, - "travelTimeSeconds": 107 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 21 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 4762, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2604.735314203061, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.29, - "travelTimeWithoutDwellTimesSeconds": 900, - "operatingTimeWithLayoverTimeSeconds": 1080, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 900, - "operatingSpeedWithLayoverMetersPerSecond": 4.41, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.29 - }, - "mode": "bus", - "name": "École Antoine-Brossard", - "color": "#A32638", - "nodes": [ - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "997c4af9-ab50-4dfb-941a-afadff58f267", - "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", - "c7c30949-db61-44fc-b7ab-a69b9fde12cc", - "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", - "f1131e74-6c65-4f22-a18d-41dbe35e4576", - "984def83-5f59-45f7-bb33-ed1dbca30502", - "1d56d4cb-0ab2-44f2-924d-aa119de8c362", - "ecb00316-793a-4c41-88bd-3870bea4d999", - "f92fabb3-5544-4aa3-8461-0c7fc17380ef", - "f889063d-4196-4990-bc8c-d6010d0c0192", - "95a6ef09-da34-422a-81ec-389b0e0bb278", - "c25adb1f-635e-4881-a89d-af8a9ea5ca92", - "e690066b-eb33-421c-89b1-e731dab9975f", - "91baaa10-e8cd-406f-a7c1-c8e2465ade3f", - "1782a1a7-eddc-4228-a7a8-bf733f339e68", - "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", - "8443a69f-fccf-4a19-8d08-6da77269e686", - "2946050b-73ca-45c7-be10-f80ba5b43ab5", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "ab493a3c-1217-4122-93b5-217f7741b2ea", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "44eacee6-a348-48cf-aeda-c9ddae958f8e" - ], - "stops": [], - "line_id": "b1bec197-6850-48e7-a309-5ab78730e864", - "segments": [ - 0, - 2, - 6, - 17, - 26, - 30, - 38, - 44, - 48, - 53, - 66, - 71, - 76, - 85, - 90, - 94, - 106, - 115, - 122, - 125, - 128, - 132 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 379, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.457365, - 45.450743 - ], - [ - -73.457311, - 45.45071 - ], - [ - -73.457055, - 45.450562 - ], - [ - -73.45697, - 45.450481 - ], - [ - -73.456931, - 45.450397 - ], - [ - -73.456841, - 45.450279 - ], - [ - -73.456733, - 45.450296 - ], - [ - -73.456625, - 45.450319 - ], - [ - -73.456525, - 45.450368 - ], - [ - -73.456438, - 45.450427 - ], - [ - -73.456357, - 45.45049 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456282, - 45.450641 - ], - [ - -73.456274, - 45.450721 - ], - [ - -73.456292, - 45.450794 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.456756, - 45.451165 - ], - [ - -73.457139, - 45.451439 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457924, - 45.451894 - ], - [ - -73.458487, - 45.4522 - ], - [ - -73.458728, - 45.45233 - ], - [ - -73.458941, - 45.452443 - ], - [ - -73.459713, - 45.452799 - ], - [ - -73.461229, - 45.45347 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.462916, - 45.454221 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463822, - 45.454609 - ], - [ - -73.464887, - 45.455059 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465851, - 45.455474 - ], - [ - -73.466482, - 45.45573 - ], - [ - -73.466742, - 45.45582 - ], - [ - -73.466794, - 45.455838 - ], - [ - -73.466905, - 45.455874 - ], - [ - -73.467229, - 45.455978 - ], - [ - -73.467462, - 45.456041 - ], - [ - -73.467802, - 45.456122 - ], - [ - -73.468132, - 45.456184 - ], - [ - -73.4684, - 45.456235 - ], - [ - -73.468564, - 45.456262 - ], - [ - -73.468949, - 45.456316 - ], - [ - -73.469418, - 45.456365 - ], - [ - -73.469671, - 45.456392 - ], - [ - -73.470468, - 45.456429 - ], - [ - -73.471559, - 45.45646 - ], - [ - -73.472632, - 45.456497 - ], - [ - -73.473708, - 45.456537 - ], - [ - -73.474773, - 45.456569 - ], - [ - -73.475689, - 45.456589 - ], - [ - -73.475839, - 45.456592 - ], - [ - -73.475848, - 45.456479 - ], - [ - -73.47587, - 45.456069 - ], - [ - -73.475889, - 45.455724 - ], - [ - -73.475885, - 45.455566 - ], - [ - -73.475883, - 45.45553 - ], - [ - -73.475877, - 45.455431 - ], - [ - -73.475752, - 45.455094 - ], - [ - -73.475548, - 45.454788 - ], - [ - -73.475052, - 45.45428 - ], - [ - -73.474972, - 45.454198 - ], - [ - -73.475607, - 45.453904 - ], - [ - -73.475827, - 45.453802 - ], - [ - -73.47723, - 45.453123 - ], - [ - -73.477488, - 45.453011 - ], - [ - -73.477761, - 45.452903 - ], - [ - -73.478149, - 45.452826 - ], - [ - -73.478914, - 45.45271 - ], - [ - -73.479123, - 45.452678 - ], - [ - -73.479278, - 45.452656 - ], - [ - -73.479609, - 45.452606 - ], - [ - -73.480267, - 45.452543 - ], - [ - -73.480742, - 45.452539 - ], - [ - -73.481261, - 45.452548 - ], - [ - -73.481291, - 45.452548 - ], - [ - -73.482674, - 45.452591 - ], - [ - -73.483204, - 45.452607 - ], - [ - -73.483385, - 45.452634 - ], - [ - -73.483523, - 45.452683 - ], - [ - -73.48375, - 45.452837 - ], - [ - -73.483803, - 45.452872 - ], - [ - -73.483914, - 45.453106 - ], - [ - -73.483918, - 45.453192 - ], - [ - -73.483908, - 45.453444 - ], - [ - -73.483893, - 45.453567 - ], - [ - -73.483876, - 45.453709 - ], - [ - -73.48383, - 45.453858 - ], - [ - -73.48375, - 45.454002 - ], - [ - -73.483647, - 45.454132 - ], - [ - -73.483527, - 45.454254 - ], - [ - -73.483256, - 45.454555 - ], - [ - -73.483085, - 45.454813 - ], - [ - -73.483041, - 45.454879 - ], - [ - -73.482933, - 45.455144 - ], - [ - -73.482873, - 45.455347 - ], - [ - -73.482803, - 45.455945 - ], - [ - -73.482764, - 45.456577 - ], - [ - -73.482756, - 45.456692 - ], - [ - -73.482746, - 45.456836 - ], - [ - -73.483334, - 45.456859 - ], - [ - -73.483692, - 45.456872 - ], - [ - -73.485139, - 45.456916 - ], - [ - -73.486304, - 45.456952 - ], - [ - -73.48636, - 45.456954 - ], - [ - -73.488203, - 45.457017 - ], - [ - -73.489591, - 45.457065 - ], - [ - -73.489765, - 45.457071 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.489787, - 45.45681 - ], - [ - -73.489805, - 45.456679 - ], - [ - -73.489826, - 45.456598 - ], - [ - -73.489837, - 45.456558 - ], - [ - -73.489891, - 45.45645 - ], - [ - -73.490047, - 45.45632 - ], - [ - -73.490235, - 45.456194 - ], - [ - -73.490846, - 45.455884 - ], - [ - -73.490874, - 45.45587 - ], - [ - -73.49101, - 45.455802 - ], - [ - -73.491179, - 45.455672 - ], - [ - -73.491306, - 45.455478 - ], - [ - -73.491366, - 45.454815 - ], - [ - -73.491379, - 45.454673 - ], - [ - -73.491385, - 45.45452 - ], - [ - -73.491385, - 45.45439 - ], - [ - -73.491353, - 45.454286 - ], - [ - -73.491307, - 45.454169 - ], - [ - -73.491205, - 45.454016 - ], - [ - -73.491049, - 45.453868 - ], - [ - -73.490922, - 45.453778 - ], - [ - -73.490731, - 45.453646 - ], - [ - -73.49064, - 45.453584 - ], - [ - -73.490337, - 45.453359 - ], - [ - -73.490251, - 45.453269 - ], - [ - -73.490177, - 45.453161 - ], - [ - -73.490138, - 45.453076 - ], - [ - -73.490095, - 45.452936 - ], - [ - -73.490099, - 45.452842 - ], - [ - -73.490107, - 45.452689 - ], - [ - -73.490162, - 45.452117 - ], - [ - -73.490164, - 45.452099 - ], - [ - -73.490174, - 45.451996 - ], - [ - -73.490274, - 45.451145 - ], - [ - -73.490348, - 45.450208 - ], - [ - -73.490356, - 45.450109 - ], - [ - -73.490386, - 45.449719 - ], - [ - -73.490521, - 45.448293 - ], - [ - -73.490549, - 45.447733 - ] - ] - }, - "id": 380, - "properties": { - "id": "47ac9255-c045-42db-86e4-103695306b78", - "data": { - "gtfs": { - "shape_id": "689_2_R" - }, - "segments": [ - { - "distanceMeters": 248, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 593, - "travelTimeSeconds": 106 - }, - { - "distanceMeters": 130, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 365, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 307, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 50 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 5027, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2604.7353142030606, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.58, - "travelTimeWithoutDwellTimesSeconds": 900, - "operatingTimeWithLayoverTimeSeconds": 1080, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 900, - "operatingSpeedWithLayoverMetersPerSecond": 4.65, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.58 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "44eacee6-a348-48cf-aeda-c9ddae958f8e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", - "2ac07b96-98be-4710-a749-3162a661fcb5", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "981ebecb-3dc2-4439-8648-8052a51df7ec", - "2a268094-fe95-4a75-83da-d02aa638cbb6", - "1782a1a7-eddc-4228-a7a8-bf733f339e68", - "91baaa10-e8cd-406f-a7c1-c8e2465ade3f", - "e690066b-eb33-421c-89b1-e731dab9975f", - "c25adb1f-635e-4881-a89d-af8a9ea5ca92", - "95a6ef09-da34-422a-81ec-389b0e0bb278", - "f889063d-4196-4990-bc8c-d6010d0c0192", - "f92fabb3-5544-4aa3-8461-0c7fc17380ef", - "ecb00316-793a-4c41-88bd-3870bea4d999", - "1d56d4cb-0ab2-44f2-924d-aa119de8c362", - "2f68c8b3-ace6-41af-8853-d72177e835fd", - "f1131e74-6c65-4f22-a18d-41dbe35e4576", - "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", - "c7c30949-db61-44fc-b7ab-a69b9fde12cc", - "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", - "997c4af9-ab50-4dfb-941a-afadff58f267", - "11a7e876-eb5a-402b-8bb8-10625e7584e3" - ], - "stops": [], - "line_id": "b1bec197-6850-48e7-a309-5ab78730e864", - "segments": [ - 0, - 17, - 22, - 25, - 27, - 30, - 41, - 52, - 58, - 62, - 70, - 76, - 82, - 94, - 99, - 105, - 108, - 118, - 123, - 132, - 141, - 145 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 380, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.474269, - 45.446255 - ], - [ - -73.474281, - 45.446153 - ], - [ - -73.474377, - 45.444612 - ], - [ - -73.474384, - 45.444507 - ], - [ - -73.474438, - 45.443521 - ], - [ - -73.474469, - 45.443314 - ], - [ - -73.474541, - 45.443044 - ], - [ - -73.474682, - 45.442761 - ], - [ - -73.474902, - 45.442388 - ], - [ - -73.475039, - 45.44219 - ], - [ - -73.475115, - 45.442091 - ], - [ - -73.475247, - 45.441942 - ], - [ - -73.475479, - 45.441749 - ], - [ - -73.475647, - 45.441641 - ], - [ - -73.475703, - 45.441605 - ], - [ - -73.475852, - 45.44151 - ], - [ - -73.476413, - 45.441313 - ], - [ - -73.476584, - 45.441272 - ], - [ - -73.47678, - 45.441236 - ], - [ - -73.477021, - 45.4412 - ], - [ - -73.477247, - 45.441191 - ], - [ - -73.477702, - 45.441194 - ], - [ - -73.478107, - 45.441196 - ], - [ - -73.479817, - 45.44121 - ], - [ - -73.480147, - 45.441223 - ], - [ - -73.480964, - 45.441277 - ], - [ - -73.481107, - 45.441286 - ], - [ - -73.481299, - 45.441295 - ], - [ - -73.481334, - 45.441029 - ], - [ - -73.48139, - 45.440598 - ], - [ - -73.481487, - 45.439784 - ], - [ - -73.481519, - 45.439469 - ], - [ - -73.481531, - 45.439172 - ], - [ - -73.481538, - 45.438618 - ], - [ - -73.48154, - 45.438492 - ], - [ - -73.481571, - 45.437827 - ], - [ - -73.481572, - 45.437776 - ], - [ - -73.481581, - 45.437111 - ], - [ - -73.481587, - 45.436695 - ], - [ - -73.48159, - 45.436549 - ], - [ - -73.481583, - 45.435536 - ], - [ - -73.481582, - 45.43541 - ], - [ - -73.482223, - 45.435406 - ], - [ - -73.482932, - 45.435402 - ], - [ - -73.484565, - 45.435388 - ], - [ - -73.484708, - 45.435387 - ], - [ - -73.487421, - 45.435365 - ], - [ - -73.487529, - 45.435364 - ], - [ - -73.487766, - 45.435362 - ], - [ - -73.488499, - 45.435353 - ], - [ - -73.489078, - 45.435353 - ], - [ - -73.490339, - 45.435335 - ], - [ - -73.490512, - 45.435353 - ], - [ - -73.490636, - 45.435389 - ], - [ - -73.49074, - 45.435443 - ], - [ - -73.490825, - 45.43552 - ], - [ - -73.490911, - 45.435596 - ], - [ - -73.490933, - 45.435804 - ], - [ - -73.490941, - 45.43588 - ], - [ - -73.490978, - 45.436131 - ], - [ - -73.491142, - 45.436851 - ], - [ - -73.49121, - 45.437091 - ], - [ - -73.491237, - 45.437184 - ], - [ - -73.49152, - 45.437954 - ], - [ - -73.491752, - 45.438468 - ], - [ - -73.491829, - 45.438638 - ], - [ - -73.492171, - 45.439317 - ], - [ - -73.492536, - 45.440134 - ], - [ - -73.492686, - 45.440476 - ], - [ - -73.492772, - 45.440644 - ], - [ - -73.492804, - 45.441148 - ], - [ - -73.492835, - 45.441319 - ], - [ - -73.492886, - 45.441751 - ], - [ - -73.492955, - 45.442327 - ], - [ - -73.492825, - 45.443281 - ], - [ - -73.491857, - 45.443253 - ], - [ - -73.491559, - 45.443245 - ], - [ - -73.491531, - 45.443617 - ], - [ - -73.491504, - 45.443969 - ], - [ - -73.491285, - 45.444689 - ], - [ - -73.491121, - 45.445196 - ], - [ - -73.491092, - 45.445287 - ], - [ - -73.491055, - 45.445404 - ], - [ - -73.49061, - 45.446822 - ], - [ - -73.490574, - 45.447277 - ], - [ - -73.490565, - 45.447402 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.489879, - 45.447482 - ], - [ - -73.486184, - 45.447402 - ], - [ - -73.485408, - 45.447385 - ], - [ - -73.485334, - 45.447383 - ], - [ - -73.484501, - 45.447365 - ], - [ - -73.483174, - 45.447338 - ], - [ - -73.483047, - 45.447334 - ], - [ - -73.482811, - 45.447302 - ], - [ - -73.4826, - 45.447257 - ], - [ - -73.482392, - 45.447199 - ], - [ - -73.48231, - 45.44732 - ], - [ - -73.482146, - 45.447564 - ], - [ - -73.482041, - 45.447719 - ], - [ - -73.481672, - 45.448265 - ], - [ - -73.481538, - 45.448436 - ], - [ - -73.481405, - 45.448562 - ], - [ - -73.481319, - 45.448638 - ], - [ - -73.481186, - 45.448724 - ], - [ - -73.480948, - 45.448841 - ], - [ - -73.480707, - 45.44894 - ], - [ - -73.479528, - 45.44936 - ], - [ - -73.479229, - 45.449466 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.478213, - 45.449845 - ], - [ - -73.477921, - 45.449951 - ], - [ - -73.477701, - 45.449722 - ], - [ - -73.477557, - 45.449605 - ], - [ - -73.477399, - 45.449483 - ], - [ - -73.477241, - 45.449371 - ], - [ - -73.477001, - 45.449227 - ], - [ - -73.476819, - 45.449132 - ], - [ - -73.476586, - 45.449024 - ], - [ - -73.476264, - 45.448894 - ], - [ - -73.475856, - 45.448768 - ], - [ - -73.475447, - 45.448629 - ], - [ - -73.475296, - 45.448579 - ], - [ - -73.474198, - 45.448236 - ], - [ - -73.473507, - 45.448007 - ], - [ - -73.47251, - 45.447683 - ], - [ - -73.471666, - 45.447408 - ], - [ - -73.471252, - 45.447282 - ], - [ - -73.47028, - 45.446953 - ], - [ - -73.470002, - 45.446863 - ], - [ - -73.469936, - 45.446962 - ], - [ - -73.4697, - 45.447326 - ], - [ - -73.469571, - 45.447526 - ], - [ - -73.467906, - 45.450089 - ], - [ - -73.467328, - 45.451002 - ], - [ - -73.46669, - 45.452054 - ], - [ - -73.465968, - 45.453278 - ], - [ - -73.465918, - 45.453363 - ], - [ - -73.465707, - 45.453755 - ], - [ - -73.46558, - 45.454016 - ], - [ - -73.46536, - 45.454529 - ], - [ - -73.465344, - 45.454574 - ], - [ - -73.46526, - 45.454817 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.464263, - 45.454644 - ], - [ - -73.463912, - 45.454506 - ], - [ - -73.463601, - 45.454377 - ], - [ - -73.463313, - 45.454258 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.461806, - 45.453577 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.459815, - 45.452691 - ], - [ - -73.459186, - 45.452398 - ], - [ - -73.45904, - 45.452331 - ], - [ - -73.458688, - 45.452137 - ], - [ - -73.458046, - 45.451791 - ], - [ - -73.457689, - 45.451583 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457598, - 45.451363 - ], - [ - -73.457627, - 45.45129 - ], - [ - -73.457661, - 45.451176 - ], - [ - -73.457648, - 45.45104 - ], - [ - -73.457607, - 45.450938 - ], - [ - -73.457498, - 45.450823 - ], - [ - -73.457365, - 45.450743 - ] - ] - }, - "id": 381, - "properties": { - "id": "ad77b7a5-bb5f-4dbb-811b-5e6775665e50", - "data": { - "gtfs": { - "shape_id": "690_1_A" - }, - "segments": [ - { - "distanceMeters": 183, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 356, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 307, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 690, - "travelTimeSeconds": 111 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 427, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 1428, - "travelTimeSeconds": 229 - }, - { - "distanceMeters": 191, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 140, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 108, - "travelTimeSeconds": 18 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7471, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 1409.9141025235178, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.23, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 5.41, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.23 - }, - "mode": "bus", - "name": "École Antoine-Brossard", - "color": "#A32638", - "nodes": [ - "aebecb3d-b7f4-4a39-9b68-19a1c1a3b2b2", - "eab0f5d6-db57-4bf2-a26d-a49e7fe11c54", - "972f2e12-8185-4823-8ce3-2c965170ad9a", - "ca880d29-2a91-4666-9ed1-c2825e5165f2", - "a532b39a-66ec-444f-abc1-766787d9387c", - "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", - "52fa062f-ca90-4e1d-998a-7b658a499b52", - "553f2fec-7dd4-475c-b1ed-ff9a62614e74", - "7a321951-38aa-4886-b297-59c69bcf3448", - "23afb18c-7e9a-4c38-a0e7-59d1aa5f5f5f", - "8f8e9cec-3b4e-465e-9db7-a68a74d060d1", - "a755707e-dbca-49b2-ba36-d6e6ffe0de89", - "70846d21-918c-4542-969d-4e5cccbc6e50", - "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", - "56755a3d-6779-4355-8b48-27271fb6ce0b", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "601c2147-2f83-405b-be6a-8fe05117cb43", - "91b595a9-abca-41fb-9723-f6ca055bd16b", - "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", - "4509b80b-76a5-49de-acb2-533a50bafac5", - "8f39e220-8ec5-4425-b9f8-90e418e7d6d3", - "3481b163-efe1-4b08-b6af-eecb2141ddbe", - "2946050b-73ca-45c7-be10-f80ba5b43ab5", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "ab493a3c-1217-4122-93b5-217f7741b2ea", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "44eacee6-a348-48cf-aeda-c9ddae958f8e" - ], - "stops": [], - "line_id": "d845ff1c-9626-4192-9dda-53e391db792f", - "segments": [ - 0, - 2, - 13, - 21, - 25, - 33, - 38, - 40, - 44, - 46, - 57, - 61, - 64, - 77, - 80, - 84, - 89, - 99, - 107, - 110, - 121, - 142, - 147, - 150, - 153, - 157 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 381, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.457365, - 45.450743 - ], - [ - -73.457311, - 45.45071 - ], - [ - -73.457055, - 45.450562 - ], - [ - -73.45697, - 45.450481 - ], - [ - -73.456931, - 45.450397 - ], - [ - -73.456841, - 45.450279 - ], - [ - -73.456733, - 45.450296 - ], - [ - -73.456625, - 45.450319 - ], - [ - -73.456525, - 45.450368 - ], - [ - -73.456438, - 45.450427 - ], - [ - -73.456357, - 45.45049 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456282, - 45.450641 - ], - [ - -73.456274, - 45.450721 - ], - [ - -73.456292, - 45.450794 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.45714, - 45.451439 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457924, - 45.451894 - ], - [ - -73.458487, - 45.4522 - ], - [ - -73.45873, - 45.45233 - ], - [ - -73.458941, - 45.452443 - ], - [ - -73.459713, - 45.452799 - ], - [ - -73.461231, - 45.453471 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.462918, - 45.454222 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463822, - 45.454609 - ], - [ - -73.46489, - 45.45506 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465569, - 45.454816 - ], - [ - -73.465617, - 45.454677 - ], - [ - -73.465629, - 45.454641 - ], - [ - -73.465631, - 45.454638 - ], - [ - -73.465694, - 45.454481 - ], - [ - -73.465735, - 45.45438 - ], - [ - -73.465853, - 45.45411 - ], - [ - -73.466087, - 45.453654 - ], - [ - -73.46613, - 45.45357 - ], - [ - -73.466877, - 45.452297 - ], - [ - -73.467521, - 45.451236 - ], - [ - -73.468182, - 45.450183 - ], - [ - -73.469986, - 45.447403 - ], - [ - -73.470111, - 45.447212 - ], - [ - -73.470215, - 45.447052 - ], - [ - -73.471183, - 45.44739 - ], - [ - -73.471746, - 45.44757 - ], - [ - -73.472443, - 45.447795 - ], - [ - -73.473347, - 45.448088 - ], - [ - -73.473437, - 45.448115 - ], - [ - -73.473507, - 45.448007 - ], - [ - -73.473833, - 45.447525 - ], - [ - -73.473958, - 45.447322 - ], - [ - -73.473962, - 45.447314 - ], - [ - -73.474095, - 45.447058 - ], - [ - -73.474171, - 45.446882 - ], - [ - -73.474217, - 45.446698 - ], - [ - -73.474268, - 45.446262 - ], - [ - -73.474281, - 45.446153 - ], - [ - -73.474377, - 45.444619 - ], - [ - -73.474384, - 45.444507 - ], - [ - -73.474438, - 45.443521 - ], - [ - -73.474469, - 45.443314 - ], - [ - -73.474541, - 45.443044 - ], - [ - -73.474682, - 45.442761 - ], - [ - -73.474902, - 45.442388 - ], - [ - -73.475039, - 45.44219 - ], - [ - -73.475115, - 45.442091 - ], - [ - -73.475247, - 45.441942 - ], - [ - -73.475479, - 45.441749 - ], - [ - -73.475649, - 45.44164 - ], - [ - -73.475703, - 45.441605 - ], - [ - -73.475852, - 45.44151 - ], - [ - -73.476413, - 45.441313 - ], - [ - -73.476584, - 45.441272 - ], - [ - -73.47678, - 45.441236 - ], - [ - -73.477021, - 45.4412 - ], - [ - -73.477247, - 45.441191 - ], - [ - -73.477705, - 45.441194 - ], - [ - -73.478107, - 45.441196 - ], - [ - -73.479817, - 45.44121 - ], - [ - -73.480147, - 45.441223 - ], - [ - -73.480966, - 45.441277 - ], - [ - -73.481107, - 45.441286 - ], - [ - -73.481299, - 45.441295 - ], - [ - -73.48139, - 45.440598 - ], - [ - -73.481487, - 45.439784 - ], - [ - -73.481519, - 45.439469 - ], - [ - -73.481531, - 45.439172 - ], - [ - -73.481538, - 45.438625 - ], - [ - -73.48154, - 45.438492 - ], - [ - -73.481571, - 45.437827 - ], - [ - -73.481572, - 45.437776 - ], - [ - -73.481581, - 45.437111 - ], - [ - -73.481588, - 45.436694 - ], - [ - -73.48159, - 45.436549 - ], - [ - -73.481583, - 45.435535 - ], - [ - -73.481582, - 45.43541 - ], - [ - -73.482382, - 45.435405 - ], - [ - -73.482932, - 45.435402 - ], - [ - -73.484555, - 45.435388 - ], - [ - -73.484708, - 45.435387 - ], - [ - -73.487423, - 45.435365 - ], - [ - -73.487529, - 45.435364 - ], - [ - -73.487766, - 45.435362 - ], - [ - -73.488499, - 45.435353 - ], - [ - -73.489078, - 45.435353 - ], - [ - -73.490339, - 45.435335 - ], - [ - -73.490512, - 45.435353 - ], - [ - -73.490636, - 45.435389 - ], - [ - -73.49074, - 45.435443 - ], - [ - -73.490825, - 45.43552 - ], - [ - -73.490911, - 45.435596 - ], - [ - -73.490932, - 45.435796 - ], - [ - -73.490941, - 45.43588 - ], - [ - -73.490978, - 45.436131 - ], - [ - -73.491142, - 45.436851 - ], - [ - -73.491211, - 45.437093 - ], - [ - -73.491237, - 45.437184 - ], - [ - -73.49152, - 45.437954 - ], - [ - -73.491749, - 45.438461 - ], - [ - -73.491829, - 45.438638 - ], - [ - -73.492171, - 45.439317 - ], - [ - -73.492536, - 45.440134 - ], - [ - -73.492686, - 45.440476 - ], - [ - -73.492772, - 45.440644 - ], - [ - -73.492804, - 45.441148 - ], - [ - -73.492835, - 45.441319 - ], - [ - -73.492886, - 45.441751 - ], - [ - -73.492955, - 45.442327 - ], - [ - -73.492825, - 45.443281 - ], - [ - -73.492537, - 45.443273 - ], - [ - -73.491559, - 45.443245 - ], - [ - -73.491532, - 45.44361 - ], - [ - -73.491504, - 45.443969 - ], - [ - -73.491285, - 45.444689 - ], - [ - -73.491123, - 45.445189 - ], - [ - -73.491092, - 45.445287 - ], - [ - -73.491055, - 45.445404 - ], - [ - -73.49061, - 45.446822 - ], - [ - -73.490575, - 45.447269 - ], - [ - -73.490565, - 45.447402 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.489725, - 45.447478 - ], - [ - -73.486184, - 45.447402 - ], - [ - -73.485406, - 45.447385 - ], - [ - -73.485334, - 45.447383 - ], - [ - -73.484501, - 45.447365 - ], - [ - -73.483174, - 45.447338 - ], - [ - -73.483047, - 45.447334 - ], - [ - -73.482811, - 45.447302 - ], - [ - -73.4826, - 45.447257 - ], - [ - -73.482392, - 45.447199 - ], - [ - -73.48231, - 45.44732 - ], - [ - -73.482195, - 45.447491 - ], - [ - -73.48204, - 45.447721 - ], - [ - -73.481672, - 45.448265 - ], - [ - -73.481538, - 45.448436 - ], - [ - -73.481405, - 45.448562 - ], - [ - -73.481319, - 45.448638 - ], - [ - -73.481186, - 45.448724 - ], - [ - -73.480948, - 45.448841 - ], - [ - -73.480707, - 45.44894 - ], - [ - -73.479526, - 45.44936 - ], - [ - -73.479229, - 45.449466 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.478211, - 45.449846 - ], - [ - -73.477921, - 45.449951 - ], - [ - -73.477811, - 45.449836 - ], - [ - -73.477701, - 45.449722 - ], - [ - -73.477557, - 45.449605 - ], - [ - -73.477399, - 45.449483 - ], - [ - -73.477241, - 45.449371 - ], - [ - -73.477001, - 45.449227 - ], - [ - -73.476819, - 45.449132 - ], - [ - -73.476586, - 45.449024 - ], - [ - -73.476264, - 45.448894 - ], - [ - -73.475856, - 45.448768 - ], - [ - -73.475445, - 45.448629 - ] - ] - }, - "id": 382, - "properties": { - "id": "eb6c33e1-9b29-47e8-8f10-980b58fb9545", - "data": { - "gtfs": { - "shape_id": "690_2_R" - }, - "segments": [ - { - "distanceMeters": 248, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 122, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 898, - "travelTimeSeconds": 139 - }, - { - "distanceMeters": 516, - "travelTimeSeconds": 80 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 357, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 324, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 146, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 690, - "travelTimeSeconds": 107 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 428, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 43 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7725, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 1429.0107322968581, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.44, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 5.6, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.44 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "44eacee6-a348-48cf-aeda-c9ddae958f8e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", - "2ac07b96-98be-4710-a749-3162a661fcb5", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "981ebecb-3dc2-4439-8648-8052a51df7ec", - "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", - "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", - "aebecb3d-b7f4-4a39-9b68-19a1c1a3b2b2", - "eab0f5d6-db57-4bf2-a26d-a49e7fe11c54", - "972f2e12-8185-4823-8ce3-2c965170ad9a", - "ca880d29-2a91-4666-9ed1-c2825e5165f2", - "a532b39a-66ec-444f-abc1-766787d9387c", - "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", - "52fa062f-ca90-4e1d-998a-7b658a499b52", - "553f2fec-7dd4-475c-b1ed-ff9a62614e74", - "7a321951-38aa-4886-b297-59c69bcf3448", - "23afb18c-7e9a-4c38-a0e7-59d1aa5f5f5f", - "8f8e9cec-3b4e-465e-9db7-a68a74d060d1", - "a755707e-dbca-49b2-ba36-d6e6ffe0de89", - "70846d21-918c-4542-969d-4e5cccbc6e50", - "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", - "56755a3d-6779-4355-8b48-27271fb6ce0b", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "601c2147-2f83-405b-be6a-8fe05117cb43", - "91b595a9-abca-41fb-9723-f6ca055bd16b", - "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", - "4509b80b-76a5-49de-acb2-533a50bafac5", - "8f39e220-8ec5-4425-b9f8-90e418e7d6d3" - ], - "stops": [], - "line_id": "d845ff1c-9626-4192-9dda-53e391db792f", - "segments": [ - 0, - 16, - 21, - 24, - 26, - 29, - 36, - 46, - 60, - 62, - 73, - 81, - 85, - 92, - 97, - 99, - 103, - 105, - 116, - 120, - 123, - 136, - 139, - 143, - 148, - 158, - 166, - 169 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 382, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.45145, - 45.430962 - ], - [ - -73.451306, - 45.431026 - ], - [ - -73.450883, - 45.431238 - ], - [ - -73.450399, - 45.431499 - ], - [ - -73.449891, - 45.431803 - ], - [ - -73.449325, - 45.43218 - ], - [ - -73.448785, - 45.432585 - ], - [ - -73.448377, - 45.432935 - ], - [ - -73.447875, - 45.433413 - ], - [ - -73.447643, - 45.43369 - ], - [ - -73.44745, - 45.433901 - ], - [ - -73.447206, - 45.434187 - ], - [ - -73.447139, - 45.434272 - ], - [ - -73.447325, - 45.434288 - ], - [ - -73.447496, - 45.434296 - ], - [ - -73.447559, - 45.434294 - ], - [ - -73.447672, - 45.43429 - ], - [ - -73.447825, - 45.434283 - ], - [ - -73.448052, - 45.43426 - ], - [ - -73.448578, - 45.434176 - ], - [ - -73.448698, - 45.434165 - ], - [ - -73.448848, - 45.434152 - ], - [ - -73.449804, - 45.434095 - ], - [ - -73.450056, - 45.43408 - ], - [ - -73.451323, - 45.433994 - ], - [ - -73.451404, - 45.433989 - ], - [ - -73.452574, - 45.433909 - ], - [ - -73.452708, - 45.433899 - ], - [ - -73.453072, - 45.433895 - ], - [ - -73.453186, - 45.433903 - ], - [ - -73.453328, - 45.433913 - ], - [ - -73.453345, - 45.433915 - ], - [ - -73.453602, - 45.433946 - ], - [ - -73.453629, - 45.433949 - ], - [ - -73.453651, - 45.433954 - ], - [ - -73.453902, - 45.434003 - ], - [ - -73.454123, - 45.434057 - ], - [ - -73.45503, - 45.434305 - ], - [ - -73.455549, - 45.434449 - ], - [ - -73.455955, - 45.434571 - ], - [ - -73.456004, - 45.434588 - ], - [ - -73.456028, - 45.434596 - ], - [ - -73.456351, - 45.434706 - ], - [ - -73.45674, - 45.434846 - ], - [ - -73.457423, - 45.435094 - ], - [ - -73.457584, - 45.435152 - ], - [ - -73.458316, - 45.435418 - ], - [ - -73.459087, - 45.435697 - ], - [ - -73.459599, - 45.435873 - ], - [ - -73.459868, - 45.435958 - ], - [ - -73.4602, - 45.436053 - ], - [ - -73.46028, - 45.436076 - ], - [ - -73.461443, - 45.436418 - ], - [ - -73.46211, - 45.436609 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.463269, - 45.436949 - ], - [ - -73.464723, - 45.437368 - ], - [ - -73.465091, - 45.437458 - ], - [ - -73.465135, - 45.437466 - ], - [ - -73.4653, - 45.437494 - ], - [ - -73.465515, - 45.437526 - ], - [ - -73.465864, - 45.437562 - ], - [ - -73.467672, - 45.437692 - ], - [ - -73.46781, - 45.437702 - ], - [ - -73.468967, - 45.437779 - ], - [ - -73.470109, - 45.437842 - ], - [ - -73.470323, - 45.437857 - ], - [ - -73.470561, - 45.437874 - ], - [ - -73.470756, - 45.437887 - ], - [ - -73.470768, - 45.437797 - ], - [ - -73.470807, - 45.437719 - ], - [ - -73.470818, - 45.437698 - ], - [ - -73.47086, - 45.43763 - ], - [ - -73.470909, - 45.43755 - ], - [ - -73.471049, - 45.437306 - ], - [ - -73.471113, - 45.437194 - ], - [ - -73.471139, - 45.437154 - ], - [ - -73.472058, - 45.435759 - ], - [ - -73.471657, - 45.43562 - ], - [ - -73.471604, - 45.435603 - ], - [ - -73.471308, - 45.435507 - ], - [ - -73.470685, - 45.435314 - ], - [ - -73.470598, - 45.435287 - ], - [ - -73.469951, - 45.435071 - ], - [ - -73.469132, - 45.434797 - ], - [ - -73.469086, - 45.434782 - ], - [ - -73.466273, - 45.43385 - ], - [ - -73.465521, - 45.433582 - ], - [ - -73.465352, - 45.433521 - ], - [ - -73.465294, - 45.433624 - ], - [ - -73.464983, - 45.434165 - ], - [ - -73.464402, - 45.435154 - ], - [ - -73.464363, - 45.435226 - ], - [ - -73.464262, - 45.435411 - ], - [ - -73.464217, - 45.435519 - ], - [ - -73.464208, - 45.435541 - ], - [ - -73.464129, - 45.435726 - ], - [ - -73.464042, - 45.435933 - ], - [ - -73.463949, - 45.43609 - ], - [ - -73.463875, - 45.436231 - ], - [ - -73.463836, - 45.436306 - ], - [ - -73.462701, - 45.435982 - ], - [ - -73.462322, - 45.436584 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.462363, - 45.436682 - ], - [ - -73.463269, - 45.436949 - ], - [ - -73.464723, - 45.437368 - ], - [ - -73.465091, - 45.437458 - ], - [ - -73.465137, - 45.437466 - ], - [ - -73.4653, - 45.437494 - ], - [ - -73.465515, - 45.437526 - ], - [ - -73.465864, - 45.437562 - ], - [ - -73.467674, - 45.437692 - ], - [ - -73.46781, - 45.437702 - ], - [ - -73.468967, - 45.437779 - ], - [ - -73.470109, - 45.437842 - ], - [ - -73.470326, - 45.437857 - ], - [ - -73.470561, - 45.437874 - ], - [ - -73.470756, - 45.437887 - ], - [ - -73.472006, - 45.43798 - ], - [ - -73.472271, - 45.438 - ], - [ - -73.474202, - 45.438163 - ], - [ - -73.474023, - 45.438441 - ], - [ - -73.473974, - 45.438517 - ], - [ - -73.47371, - 45.438932 - ], - [ - -73.473393, - 45.439449 - ], - [ - -73.473246, - 45.439724 - ], - [ - -73.473111, - 45.440012 - ], - [ - -73.472993, - 45.440308 - ], - [ - -73.472892, - 45.440614 - ], - [ - -73.472775, - 45.441091 - ], - [ - -73.472634, - 45.442077 - ], - [ - -73.472562, - 45.44241 - ], - [ - -73.472464, - 45.442742 - ], - [ - -73.47234, - 45.44308 - ], - [ - -73.47219, - 45.443413 - ], - [ - -73.472106, - 45.443579 - ], - [ - -73.471921, - 45.443899 - ], - [ - -73.471725, - 45.444209 - ], - [ - -73.470198, - 45.446562 - ], - [ - -73.470086, - 45.446733 - ], - [ - -73.470002, - 45.446863 - ], - [ - -73.469936, - 45.446962 - ], - [ - -73.470215, - 45.447052 - ], - [ - -73.470742, - 45.447236 - ], - [ - -73.471183, - 45.44739 - ], - [ - -73.471746, - 45.44757 - ], - [ - -73.472443, - 45.447795 - ], - [ - -73.473347, - 45.448088 - ], - [ - -73.473437, - 45.448115 - ], - [ - -73.475223, - 45.448691 - ], - [ - -73.475787, - 45.448871 - ], - [ - -73.476196, - 45.449002 - ], - [ - -73.476498, - 45.449128 - ], - [ - -73.476722, - 45.449231 - ], - [ - -73.476897, - 45.449321 - ], - [ - -73.477126, - 45.449456 - ], - [ - -73.477278, - 45.449564 - ], - [ - -73.477431, - 45.449681 - ], - [ - -73.477567, - 45.449794 - ], - [ - -73.477783, - 45.450014 - ], - [ - -73.477921, - 45.449951 - ], - [ - -73.477991, - 45.449926 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.4775, - 45.449189 - ] - ] - }, - "id": 383, - "properties": { - "id": "cc26b986-8272-497a-a08c-b9e0aaa19faa", - "data": { - "gtfs": { - "shape_id": "691_1_A" - }, - "segments": [ - { - "distanceMeters": 628, - "travelTimeSeconds": 113 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 64, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 313, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 338, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 1186, - "travelTimeSeconds": 214 - }, - { - "distanceMeters": 893, - "travelTimeSeconds": 162 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6641, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2875.058313918524, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.53, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 4.81, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.53 - }, - "mode": "bus", - "name": "École Lucille-Teasdale", - "color": "#A32638", - "nodes": [ - "1e5e280b-187c-453e-ae50-34515416c146", - "d26ce5e1-6c58-4e66-9161-bd0bb569b92f", - "95267540-c736-4584-b843-23c799e4aa83", - "8162eb5c-436c-4cc2-b9dd-2d13a57dd8d8", - "75a6ca63-e257-4bc0-9a35-e9f67206fdfb", - "dc444f91-de90-48b4-9750-8ab69f40baf5", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", - "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", - "f36c7de3-84dd-4573-ac69-91ccd87efd4f", - "1d638a17-5a2b-40f7-a0cc-6db81666104e", - "e990ec2d-e586-4b2f-884d-4124f22426b3", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", - "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", - "25804924-ba76-4ef4-b42b-ff451a0d33dc", - "fe1d7eea-bdc6-4263-a13b-eb6645c5e393" - ], - "stops": [], - "line_id": "98f4ffe4-3534-40c3-a09d-6c007e2b4710", - "segments": [ - 0, - 20, - 24, - 32, - 40, - 46, - 53, - 58, - 62, - 66, - 72, - 79, - 84, - 87, - 99, - 102, - 108, - 112, - 116, - 119, - 140 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 383, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.4775, - 45.449189 - ], - [ - -73.477354, - 45.449101 - ], - [ - -73.476598, - 45.448646 - ], - [ - -73.476493, - 45.448669 - ], - [ - -73.476429, - 45.448682 - ], - [ - -73.476264, - 45.448894 - ], - [ - -73.475856, - 45.448768 - ], - [ - -73.475456, - 45.448632 - ], - [ - -73.475296, - 45.448579 - ], - [ - -73.474198, - 45.448236 - ], - [ - -73.473507, - 45.448007 - ], - [ - -73.47251, - 45.447683 - ], - [ - -73.471666, - 45.447408 - ], - [ - -73.471252, - 45.447282 - ], - [ - -73.47028, - 45.446953 - ], - [ - -73.470337, - 45.446865 - ], - [ - -73.470478, - 45.446647 - ], - [ - -73.471792, - 45.444623 - ], - [ - -73.47221, - 45.443966 - ], - [ - -73.472405, - 45.443633 - ], - [ - -73.472572, - 45.443287 - ], - [ - -73.472646, - 45.443111 - ], - [ - -73.472778, - 45.442752 - ], - [ - -73.472833, - 45.442567 - ], - [ - -73.472919, - 45.442194 - ], - [ - -73.472951, - 45.442005 - ], - [ - -73.473027, - 45.441433 - ], - [ - -73.473089, - 45.441055 - ], - [ - -73.47323, - 45.44052 - ], - [ - -73.473412, - 45.440048 - ], - [ - -73.47351, - 45.439841 - ], - [ - -73.47354, - 45.439773 - ], - [ - -73.473721, - 45.439445 - ], - [ - -73.474086, - 45.43886 - ], - [ - -73.474303, - 45.438527 - ], - [ - -73.474451, - 45.4383 - ], - [ - -73.474529, - 45.438181 - ], - [ - -73.474202, - 45.438163 - ], - [ - -73.472438, - 45.438014 - ], - [ - -73.472271, - 45.438 - ], - [ - -73.470911, - 45.437899 - ], - [ - -73.470756, - 45.437887 - ], - [ - -73.470561, - 45.437874 - ], - [ - -73.470109, - 45.437842 - ], - [ - -73.468967, - 45.437779 - ], - [ - -73.467954, - 45.437712 - ], - [ - -73.46781, - 45.437702 - ], - [ - -73.465864, - 45.437562 - ], - [ - -73.465515, - 45.437526 - ], - [ - -73.465336, - 45.4375 - ], - [ - -73.4653, - 45.437494 - ], - [ - -73.465091, - 45.437458 - ], - [ - -73.464723, - 45.437368 - ], - [ - -73.463269, - 45.436949 - ], - [ - -73.462628, - 45.43676 - ], - [ - -73.462467, - 45.436713 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.462701, - 45.435982 - ], - [ - -73.463836, - 45.436306 - ], - [ - -73.463949, - 45.43609 - ], - [ - -73.464015, - 45.435979 - ], - [ - -73.464042, - 45.435933 - ], - [ - -73.464129, - 45.435726 - ], - [ - -73.464208, - 45.435541 - ], - [ - -73.464217, - 45.435519 - ], - [ - -73.464262, - 45.435411 - ], - [ - -73.464363, - 45.435226 - ], - [ - -73.464402, - 45.435154 - ], - [ - -73.464983, - 45.434165 - ], - [ - -73.465294, - 45.433623 - ], - [ - -73.465352, - 45.433521 - ], - [ - -73.465927, - 45.433727 - ], - [ - -73.466273, - 45.43385 - ], - [ - -73.468901, - 45.434721 - ], - [ - -73.469086, - 45.434782 - ], - [ - -73.469951, - 45.435071 - ], - [ - -73.470598, - 45.435287 - ], - [ - -73.470685, - 45.435314 - ], - [ - -73.471302, - 45.435506 - ], - [ - -73.471308, - 45.435507 - ], - [ - -73.471657, - 45.43562 - ], - [ - -73.472058, - 45.435759 - ], - [ - -73.471958, - 45.435911 - ], - [ - -73.471139, - 45.437154 - ], - [ - -73.471113, - 45.437194 - ], - [ - -73.471037, - 45.437237 - ], - [ - -73.470968, - 45.437275 - ], - [ - -73.470767, - 45.437505 - ], - [ - -73.470657, - 45.43764 - ], - [ - -73.470586, - 45.437791 - ], - [ - -73.470585, - 45.437793 - ], - [ - -73.470561, - 45.437874 - ], - [ - -73.470241, - 45.437851 - ], - [ - -73.470109, - 45.437842 - ], - [ - -73.468967, - 45.437779 - ], - [ - -73.467953, - 45.437711 - ], - [ - -73.46781, - 45.437702 - ], - [ - -73.465864, - 45.437562 - ], - [ - -73.465515, - 45.437526 - ], - [ - -73.465335, - 45.437499 - ], - [ - -73.4653, - 45.437494 - ], - [ - -73.465091, - 45.437458 - ], - [ - -73.464723, - 45.437368 - ], - [ - -73.463269, - 45.436949 - ], - [ - -73.462453, - 45.436709 - ], - [ - -73.462276, - 45.436657 - ], - [ - -73.461443, - 45.436418 - ], - [ - -73.46028, - 45.436076 - ], - [ - -73.4602, - 45.436053 - ], - [ - -73.459868, - 45.435958 - ], - [ - -73.459599, - 45.435873 - ], - [ - -73.459087, - 45.435697 - ], - [ - -73.458328, - 45.435422 - ], - [ - -73.457584, - 45.435152 - ], - [ - -73.457423, - 45.435094 - ], - [ - -73.45674, - 45.434846 - ], - [ - -73.456351, - 45.434706 - ], - [ - -73.456084, - 45.434615 - ], - [ - -73.456028, - 45.434596 - ], - [ - -73.455955, - 45.434571 - ], - [ - -73.455549, - 45.434449 - ], - [ - -73.45503, - 45.434305 - ], - [ - -73.454123, - 45.434057 - ], - [ - -73.453902, - 45.434003 - ], - [ - -73.453688, - 45.433961 - ], - [ - -73.453651, - 45.433954 - ], - [ - -73.453629, - 45.433949 - ], - [ - -73.453345, - 45.433915 - ], - [ - -73.453328, - 45.433913 - ], - [ - -73.453186, - 45.433903 - ], - [ - -73.453072, - 45.433895 - ], - [ - -73.452708, - 45.433899 - ], - [ - -73.452574, - 45.433909 - ], - [ - -73.451603, - 45.433975 - ], - [ - -73.451404, - 45.433989 - ], - [ - -73.450056, - 45.43408 - ], - [ - -73.449804, - 45.434095 - ], - [ - -73.449067, - 45.434139 - ], - [ - -73.448848, - 45.434152 - ], - [ - -73.448578, - 45.434176 - ], - [ - -73.448472, - 45.434175 - ], - [ - -73.448255, - 45.434181 - ], - [ - -73.448109, - 45.43419 - ], - [ - -73.447833, - 45.434203 - ], - [ - -73.447405, - 45.434193 - ], - [ - -73.447515, - 45.434057 - ], - [ - -73.447812, - 45.43372 - ], - [ - -73.44808, - 45.433435 - ], - [ - -73.448286, - 45.433242 - ], - [ - -73.448467, - 45.433072 - ], - [ - -73.448834, - 45.432756 - ], - [ - -73.449139, - 45.432514 - ], - [ - -73.449431, - 45.432297 - ], - [ - -73.44953, - 45.432225 - ], - [ - -73.449956, - 45.431941 - ], - [ - -73.450305, - 45.431728 - ], - [ - -73.450787, - 45.431457 - ], - [ - -73.451268, - 45.431211 - ], - [ - -73.451712, - 45.431001 - ], - [ - -73.451767, - 45.430973 - ] - ] - }, - "id": 384, - "properties": { - "id": "9ce804c4-a25a-4833-a6f7-d2f104eb99e5", - "data": { - "gtfs": { - "shape_id": "691_2_R" - }, - "segments": [ - { - "distanceMeters": 203, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 1468, - "travelTimeSeconds": 275 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 206, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 353, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 164, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 630, - "travelTimeSeconds": 118 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 6410, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2843.039846700105, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.34, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 4.64, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.34 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", - "8f39e220-8ec5-4425-b9f8-90e418e7d6d3", - "9d435e32-ad0d-41e2-bb28-30458533923f", - "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", - "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "e990ec2d-e586-4b2f-884d-4124f22426b3", - "1d638a17-5a2b-40f7-a0cc-6db81666104e", - "f36c7de3-84dd-4573-ac69-91ccd87efd4f", - "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", - "3eb5b313-c26d-472e-a3c1-397c7596c769", - "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", - "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", - "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "dc444f91-de90-48b4-9750-8ab69f40baf5", - "75a6ca63-e257-4bc0-9a35-e9f67206fdfb", - "8162eb5c-436c-4cc2-b9dd-2d13a57dd8d8", - "95267540-c736-4584-b843-23c799e4aa83", - "d26ce5e1-6c58-4e66-9161-bd0bb569b92f", - "601fc633-4aed-4e9a-b678-52e4dedfe19d" - ], - "stops": [], - "line_id": "98f4ffe4-3534-40c3-a09d-6c007e2b4710", - "segments": [ - 0, - 7, - 35, - 38, - 40, - 45, - 49, - 55, - 60, - 69, - 73, - 78, - 89, - 95, - 99, - 104, - 112, - 117, - 124, - 133, - 137 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 384, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.475383, - 45.468739 - ], - [ - -73.475537, - 45.468744 - ], - [ - -73.477761, - 45.468838 - ], - [ - -73.477791, - 45.468839 - ], - [ - -73.478795, - 45.46888 - ], - [ - -73.479733, - 45.468916 - ], - [ - -73.480587, - 45.468948 - ], - [ - -73.480705, - 45.468952 - ], - [ - -73.481592, - 45.468898 - ], - [ - -73.482517, - 45.468777 - ], - [ - -73.483911, - 45.468794 - ], - [ - -73.484035, - 45.468795 - ], - [ - -73.484852, - 45.468827 - ], - [ - -73.484983, - 45.468836 - ], - [ - -73.485068, - 45.468858 - ], - [ - -73.485183, - 45.468899 - ], - [ - -73.485272, - 45.468957 - ], - [ - -73.485492, - 45.469215 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.485753, - 45.469237 - ], - [ - -73.486104, - 45.469087 - ], - [ - -73.486363, - 45.468976 - ], - [ - -73.486598, - 45.468913 - ], - [ - -73.486742, - 45.468895 - ], - [ - -73.486913, - 45.468899 - ], - [ - -73.487892, - 45.468935 - ], - [ - -73.488662, - 45.468978 - ], - [ - -73.488788, - 45.468985 - ], - [ - -73.492295, - 45.469102 - ], - [ - -73.492434, - 45.469107 - ], - [ - -73.4927, - 45.469111 - ], - [ - -73.49395, - 45.46917 - ], - [ - -73.494075, - 45.469188 - ], - [ - -73.494154, - 45.469237 - ], - [ - -73.494564, - 45.469977 - ], - [ - -73.494611, - 45.470061 - ], - [ - -73.494791, - 45.470417 - ], - [ - -73.494862, - 45.47056 - ], - [ - -73.49485, - 45.470821 - ], - [ - -73.494847, - 45.470884 - ], - [ - -73.494582, - 45.470874 - ], - [ - -73.494088, - 45.470857 - ], - [ - -73.493065, - 45.470821 - ], - [ - -73.492825, - 45.470816 - ], - [ - -73.492588, - 45.470825 - ], - [ - -73.492364, - 45.470843 - ], - [ - -73.492038, - 45.470888 - ], - [ - -73.491625, - 45.470969 - ], - [ - -73.491149, - 45.471131 - ], - [ - -73.491044, - 45.471167 - ], - [ - -73.490858, - 45.471248 - ], - [ - -73.490204, - 45.471562 - ], - [ - -73.490078, - 45.471623 - ], - [ - -73.489969, - 45.471675 - ], - [ - -73.489522, - 45.471873 - ], - [ - -73.489116, - 45.472013 - ], - [ - -73.48901, - 45.472049 - ], - [ - -73.488898, - 45.472089 - ], - [ - -73.488483, - 45.472229 - ], - [ - -73.48807, - 45.472359 - ], - [ - -73.487028, - 45.472701 - ], - [ - -73.486715, - 45.472804 - ], - [ - -73.48607, - 45.47302 - ], - [ - -73.485914, - 45.473065 - ], - [ - -73.485421, - 45.473196 - ], - [ - -73.485194, - 45.47325 - ], - [ - -73.484873, - 45.473304 - ], - [ - -73.484747, - 45.473331 - ], - [ - -73.484539, - 45.473353 - ], - [ - -73.484309, - 45.47338 - ], - [ - -73.484047, - 45.473403 - ], - [ - -73.483806, - 45.473414 - ], - [ - -73.483761, - 45.473416 - ], - [ - -73.483613, - 45.473425 - ], - [ - -73.48263, - 45.473402 - ], - [ - -73.479071, - 45.47329 - ], - [ - -73.478915, - 45.473285 - ], - [ - -73.476016, - 45.473194 - ], - [ - -73.47556, - 45.473217 - ], - [ - -73.475367, - 45.473239 - ], - [ - -73.475163, - 45.47327 - ], - [ - -73.474722, - 45.473364 - ], - [ - -73.474613, - 45.473387 - ], - [ - -73.47451, - 45.473184 - ], - [ - -73.474431, - 45.473027 - ], - [ - -73.474274, - 45.472609 - ], - [ - -73.474213, - 45.472397 - ], - [ - -73.474173, - 45.472208 - ], - [ - -73.474165, - 45.472163 - ], - [ - -73.474141, - 45.472028 - ], - [ - -73.474134, - 45.471984 - ], - [ - -73.47411, - 45.47183 - ], - [ - -73.474121, - 45.471228 - ], - [ - -73.474166, - 45.470967 - ], - [ - -73.474399, - 45.469698 - ], - [ - -73.474428, - 45.469537 - ], - [ - -73.474454, - 45.469396 - ], - [ - -73.474489, - 45.469055 - ], - [ - -73.474521, - 45.468786 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474544, - 45.468492 - ], - [ - -73.474545, - 45.468488 - ], - [ - -73.474528, - 45.468236 - ], - [ - -73.474508, - 45.467936 - ], - [ - -73.474508, - 45.467294 - ], - [ - -73.474542, - 45.4665 - ], - [ - -73.474546, - 45.466404 - ], - [ - -73.474554, - 45.466199 - ], - [ - -73.474621, - 45.465194 - ], - [ - -73.474664, - 45.464506 - ], - [ - -73.474669, - 45.464397 - ], - [ - -73.474734, - 45.464067 - ], - [ - -73.474884, - 45.463697 - ], - [ - -73.475002, - 45.463492 - ], - [ - -73.47522, - 45.463212 - ], - [ - -73.475408, - 45.463039 - ], - [ - -73.47556, - 45.462909 - ], - [ - -73.475821, - 45.462711 - ], - [ - -73.476105, - 45.462495 - ], - [ - -73.47646, - 45.462244 - ], - [ - -73.476557, - 45.462176 - ], - [ - -73.477249, - 45.461685 - ], - [ - -73.478237, - 45.460939 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.478447, - 45.460919 - ], - [ - -73.47855, - 45.461011 - ], - [ - -73.478678, - 45.461105 - ], - [ - -73.478864, - 45.461325 - ], - [ - -73.478983, - 45.461465 - ], - [ - -73.479274, - 45.461807 - ], - [ - -73.479725, - 45.462346 - ], - [ - -73.480306, - 45.46304 - ], - [ - -73.480932, - 45.463792 - ], - [ - -73.481375, - 45.464322 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.481593, - 45.464338 - ], - [ - -73.481982, - 45.464183 - ], - [ - -73.482309, - 45.464098 - ], - [ - -73.48257, - 45.464048 - ], - [ - -73.482878, - 45.464054 - ], - [ - -73.484342, - 45.46408 - ], - [ - -73.484494, - 45.464076 - ], - [ - -73.484669, - 45.464067 - ], - [ - -73.484817, - 45.464035 - ], - [ - -73.484961, - 45.463999 - ], - [ - -73.485098, - 45.46395 - ], - [ - -73.485277, - 45.463878 - ], - [ - -73.485826, - 45.463612 - ], - [ - -73.485896, - 45.463576 - ], - [ - -73.486007, - 45.46353 - ], - [ - -73.486089, - 45.463495 - ], - [ - -73.486243, - 45.463455 - ], - [ - -73.486321, - 45.463433 - ], - [ - -73.486489, - 45.463401 - ], - [ - -73.486606, - 45.463401 - ], - [ - -73.487042, - 45.463406 - ], - [ - -73.487283, - 45.463388 - ], - [ - -73.487412, - 45.463379 - ], - [ - -73.487821, - 45.463302 - ], - [ - -73.488109, - 45.463235 - ], - [ - -73.488349, - 45.463109 - ], - [ - -73.488498, - 45.462929 - ], - [ - -73.488573, - 45.462762 - ], - [ - -73.488594, - 45.462464 - ], - [ - -73.488654, - 45.461583 - ], - [ - -73.488659, - 45.461512 - ], - [ - -73.488701, - 45.460814 - ], - [ - -73.488777, - 45.459727 - ], - [ - -73.488806, - 45.459321 - ], - [ - -73.488828, - 45.459006 - ], - [ - -73.488929, - 45.458754 - ], - [ - -73.489058, - 45.458542 - ], - [ - -73.489182, - 45.458344 - ], - [ - -73.489694, - 45.457516 - ], - [ - -73.489706, - 45.457486 - ], - [ - -73.489736, - 45.457408 - ], - [ - -73.489763, - 45.457296 - ], - [ - -73.489765, - 45.457071 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.489787, - 45.45681 - ], - [ - -73.489805, - 45.456679 - ], - [ - -73.489837, - 45.456558 - ], - [ - -73.489891, - 45.45645 - ], - [ - -73.490047, - 45.45632 - ], - [ - -73.490235, - 45.456194 - ], - [ - -73.490835, - 45.455889 - ], - [ - -73.490874, - 45.45587 - ], - [ - -73.49101, - 45.455802 - ], - [ - -73.491179, - 45.455672 - ], - [ - -73.491306, - 45.455478 - ], - [ - -73.491366, - 45.454824 - ], - [ - -73.491379, - 45.454673 - ], - [ - -73.491385, - 45.45452 - ], - [ - -73.491385, - 45.45439 - ], - [ - -73.491353, - 45.454286 - ], - [ - -73.491307, - 45.454169 - ], - [ - -73.491205, - 45.454016 - ], - [ - -73.491049, - 45.453868 - ], - [ - -73.490922, - 45.453778 - ], - [ - -73.490741, - 45.453653 - ], - [ - -73.49064, - 45.453584 - ], - [ - -73.490337, - 45.453359 - ], - [ - -73.490251, - 45.453269 - ], - [ - -73.490177, - 45.453161 - ], - [ - -73.490138, - 45.453076 - ], - [ - -73.490095, - 45.452936 - ], - [ - -73.490099, - 45.452842 - ], - [ - -73.490107, - 45.452689 - ], - [ - -73.490161, - 45.452127 - ], - [ - -73.490164, - 45.452099 - ], - [ - -73.490174, - 45.451996 - ], - [ - -73.490274, - 45.451145 - ], - [ - -73.490346, - 45.450227 - ], - [ - -73.490356, - 45.450109 - ], - [ - -73.490386, - 45.449719 - ], - [ - -73.490521, - 45.448293 - ], - [ - -73.490548, - 45.447743 - ], - [ - -73.490554, - 45.447636 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.490382, - 45.447493 - ], - [ - -73.486184, - 45.447402 - ], - [ - -73.485396, - 45.447385 - ], - [ - -73.485334, - 45.447383 - ], - [ - -73.484501, - 45.447365 - ], - [ - -73.483174, - 45.447338 - ], - [ - -73.483047, - 45.447334 - ], - [ - -73.482811, - 45.447302 - ], - [ - -73.4826, - 45.447257 - ], - [ - -73.482392, - 45.447199 - ], - [ - -73.48231, - 45.44732 - ], - [ - -73.48217, - 45.447527 - ], - [ - -73.482036, - 45.447726 - ], - [ - -73.481672, - 45.448265 - ], - [ - -73.481538, - 45.448436 - ], - [ - -73.481405, - 45.448562 - ], - [ - -73.481319, - 45.448638 - ], - [ - -73.481186, - 45.448724 - ], - [ - -73.480948, - 45.448841 - ], - [ - -73.480707, - 45.44894 - ], - [ - -73.479519, - 45.449362 - ], - [ - -73.479229, - 45.449466 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.4775, - 45.449189 - ] - ] - }, - "id": 385, - "properties": { - "id": "343247b3-8443-473b-8acb-28edcd72c5a9", - "data": { - "gtfs": { - "shape_id": "692_1_A" - }, - "segments": [ - { - "distanceMeters": 186, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 61, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 402, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 84, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 774, - "travelTimeSeconds": 114 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 81, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 261, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 367, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 252, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 218, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 133, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 147, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 431, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 29 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8907, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2189.5988528612766, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.75, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 5.94, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.75 - }, - "mode": "bus", - "name": "École Lucille-Teasdale", - "color": "#A32638", - "nodes": [ - "0296a406-079c-41f9-8c5b-0723a0b5f294", - "79c669a1-9060-4e5d-b272-f107884dee00", - "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "3e9388da-8f48-48c6-b6c0-5461e27eb26a", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "d83daa69-bf92-4b93-8173-1c0fd22cbec0", - "66a0749c-2a5b-458d-b059-307f555cb93a", - "c5effd0a-a9b0-4cfe-8176-06c99313f58b", - "e7a825d7-e677-4fe7-b1ef-b6db556d3c70", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", - "2ef5dac7-c226-43bb-8534-6642e7a8ab89", - "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", - "3a8b9936-4595-4770-a3f4-b31253602356", - "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "003bcf5e-54a8-471f-b008-b7fa64ff94ba", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "57de752e-d268-4125-8223-581e6c2ff56e", - "1339471a-52fa-47e9-b0e4-753bf917ef08", - "9c711698-0f65-4997-8a72-24f5d8ab8fb7", - "5a6d8067-b58d-4ab2-838e-422e8f003ee9", - "e20e768c-bd5a-43fd-8842-af2717d6cb09", - "f1131e74-6c65-4f22-a18d-41dbe35e4576", - "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", - "c7c30949-db61-44fc-b7ab-a69b9fde12cc", - "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", - "997c4af9-ab50-4dfb-941a-afadff58f267", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "601c2147-2f83-405b-be6a-8fe05117cb43", - "91b595a9-abca-41fb-9723-f6ca055bd16b", - "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", - "fe1d7eea-bdc6-4263-a13b-eb6645c5e393" - ], - "stops": [], - "line_id": "0ace1a53-efbf-40d0-b083-99e314f68253", - "segments": [ - 0, - 2, - 6, - 10, - 17, - 20, - 26, - 28, - 34, - 38, - 52, - 60, - 71, - 75, - 81, - 90, - 95, - 98, - 120, - 123, - 128, - 131, - 134, - 140, - 150, - 165, - 169, - 175, - 186, - 191, - 200, - 209, - 213, - 217, - 222, - 232, - 240 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 385, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.4775, - 45.449189 - ], - [ - -73.477354, - 45.449101 - ], - [ - -73.476598, - 45.448646 - ], - [ - -73.476493, - 45.448669 - ], - [ - -73.476429, - 45.448682 - ], - [ - -73.476264, - 45.448894 - ], - [ - -73.476196, - 45.449002 - ], - [ - -73.476216, - 45.44901 - ], - [ - -73.476498, - 45.449128 - ], - [ - -73.476722, - 45.449231 - ], - [ - -73.476897, - 45.449321 - ], - [ - -73.477126, - 45.449456 - ], - [ - -73.477278, - 45.449564 - ], - [ - -73.477431, - 45.449681 - ], - [ - -73.477567, - 45.449794 - ], - [ - -73.477783, - 45.450014 - ], - [ - -73.477921, - 45.449951 - ], - [ - -73.478103, - 45.449885 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.479229, - 45.449466 - ], - [ - -73.479303, - 45.44944 - ], - [ - -73.480707, - 45.44894 - ], - [ - -73.480948, - 45.448841 - ], - [ - -73.481186, - 45.448724 - ], - [ - -73.481319, - 45.448638 - ], - [ - -73.481405, - 45.448562 - ], - [ - -73.481538, - 45.448436 - ], - [ - -73.481594, - 45.448364 - ], - [ - -73.481672, - 45.448265 - ], - [ - -73.482261, - 45.447393 - ], - [ - -73.48231, - 45.44732 - ], - [ - -73.482533, - 45.447388 - ], - [ - -73.482583, - 45.447398 - ], - [ - -73.482766, - 45.447437 - ], - [ - -73.483026, - 45.447469 - ], - [ - -73.483183, - 45.447473 - ], - [ - -73.484513, - 45.447496 - ], - [ - -73.485351, - 45.447516 - ], - [ - -73.486178, - 45.447537 - ], - [ - -73.486624, - 45.447547 - ], - [ - -73.490554, - 45.447636 - ], - [ - -73.490546, - 45.447786 - ], - [ - -73.490536, - 45.447996 - ], - [ - -73.490521, - 45.448293 - ], - [ - -73.490406, - 45.449511 - ], - [ - -73.490386, - 45.449719 - ], - [ - -73.490356, - 45.450109 - ], - [ - -73.490274, - 45.451145 - ], - [ - -73.490183, - 45.451913 - ], - [ - -73.490174, - 45.451996 - ], - [ - -73.490164, - 45.452099 - ], - [ - -73.490107, - 45.452689 - ], - [ - -73.490099, - 45.452842 - ], - [ - -73.490095, - 45.452936 - ], - [ - -73.490138, - 45.453076 - ], - [ - -73.490177, - 45.453161 - ], - [ - -73.490251, - 45.453269 - ], - [ - -73.490337, - 45.453359 - ], - [ - -73.490545, - 45.453513 - ], - [ - -73.49064, - 45.453584 - ], - [ - -73.490922, - 45.453778 - ], - [ - -73.491049, - 45.453868 - ], - [ - -73.491205, - 45.454016 - ], - [ - -73.491307, - 45.454169 - ], - [ - -73.491353, - 45.454286 - ], - [ - -73.491385, - 45.45439 - ], - [ - -73.491385, - 45.45452 - ], - [ - -73.491384, - 45.454539 - ], - [ - -73.491379, - 45.454673 - ], - [ - -73.491306, - 45.455478 - ], - [ - -73.491179, - 45.455672 - ], - [ - -73.49101, - 45.455802 - ], - [ - -73.491, - 45.455807 - ], - [ - -73.490874, - 45.45587 - ], - [ - -73.490235, - 45.456194 - ], - [ - -73.490047, - 45.45632 - ], - [ - -73.489891, - 45.45645 - ], - [ - -73.489837, - 45.456558 - ], - [ - -73.489805, - 45.456679 - ], - [ - -73.48979, - 45.456792 - ], - [ - -73.489787, - 45.45681 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.489765, - 45.457071 - ], - [ - -73.489763, - 45.457296 - ], - [ - -73.489736, - 45.457408 - ], - [ - -73.489694, - 45.457516 - ], - [ - -73.489182, - 45.458344 - ], - [ - -73.489058, - 45.458542 - ], - [ - -73.488929, - 45.458754 - ], - [ - -73.488841, - 45.458974 - ], - [ - -73.488828, - 45.459006 - ], - [ - -73.488777, - 45.459727 - ], - [ - -73.488701, - 45.460814 - ], - [ - -73.488666, - 45.461395 - ], - [ - -73.488659, - 45.461512 - ], - [ - -73.488594, - 45.462464 - ], - [ - -73.488573, - 45.462762 - ], - [ - -73.488498, - 45.462929 - ], - [ - -73.488349, - 45.463109 - ], - [ - -73.488109, - 45.463235 - ], - [ - -73.487821, - 45.463302 - ], - [ - -73.487412, - 45.463379 - ], - [ - -73.487283, - 45.463388 - ], - [ - -73.487042, - 45.463406 - ], - [ - -73.486606, - 45.463401 - ], - [ - -73.486489, - 45.463401 - ], - [ - -73.486321, - 45.463433 - ], - [ - -73.486243, - 45.463455 - ], - [ - -73.486089, - 45.463495 - ], - [ - -73.48595, - 45.463554 - ], - [ - -73.485896, - 45.463576 - ], - [ - -73.485826, - 45.463612 - ], - [ - -73.485277, - 45.463878 - ], - [ - -73.485098, - 45.46395 - ], - [ - -73.484961, - 45.463999 - ], - [ - -73.484817, - 45.464035 - ], - [ - -73.484669, - 45.464067 - ], - [ - -73.484494, - 45.464076 - ], - [ - -73.484342, - 45.46408 - ], - [ - -73.48257, - 45.464048 - ], - [ - -73.482309, - 45.464098 - ], - [ - -73.481982, - 45.464183 - ], - [ - -73.481595, - 45.464337 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.481333, - 45.464271 - ], - [ - -73.481245, - 45.464167 - ], - [ - -73.480932, - 45.463792 - ], - [ - -73.480306, - 45.46304 - ], - [ - -73.479964, - 45.462632 - ], - [ - -73.479274, - 45.461807 - ], - [ - -73.478983, - 45.461465 - ], - [ - -73.478678, - 45.461105 - ], - [ - -73.47855, - 45.461011 - ], - [ - -73.478446, - 45.460919 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.478119, - 45.460863 - ], - [ - -73.476662, - 45.461962 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.474374, - 45.468208 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474292, - 45.469387 - ], - [ - -73.474262, - 45.469541 - ], - [ - -73.474234, - 45.469689 - ], - [ - -73.474156, - 45.470095 - ], - [ - -73.474035, - 45.470724 - ], - [ - -73.473974, - 45.47107 - ], - [ - -73.473942, - 45.471336 - ], - [ - -73.473932, - 45.471601 - ], - [ - -73.473936, - 45.471665 - ], - [ - -73.473947, - 45.471826 - ], - [ - -73.473986, - 45.472118 - ], - [ - -73.473998, - 45.472177 - ], - [ - -73.474046, - 45.47242 - ], - [ - -73.474106, - 45.47264 - ], - [ - -73.474275, - 45.473063 - ], - [ - -73.474463, - 45.473437 - ], - [ - -73.474513, - 45.473518 - ], - [ - -73.474653, - 45.473477 - ], - [ - -73.474883, - 45.473438 - ], - [ - -73.475204, - 45.473383 - ], - [ - -73.475211, - 45.473382 - ], - [ - -73.4754, - 45.473356 - ], - [ - -73.47558, - 45.473334 - ], - [ - -73.476017, - 45.473311 - ], - [ - -73.47871, - 45.4734 - ], - [ - -73.478906, - 45.473406 - ], - [ - -73.482446, - 45.473518 - ], - [ - -73.482622, - 45.473524 - ], - [ - -73.483288, - 45.473542 - ], - [ - -73.483471, - 45.473542 - ], - [ - -73.483606, - 45.473542 - ], - [ - -73.484062, - 45.473524 - ], - [ - -73.484567, - 45.473475 - ], - [ - -73.484784, - 45.473448 - ], - [ - -73.485243, - 45.473362 - ], - [ - -73.485556, - 45.473295 - ], - [ - -73.485864, - 45.473204 - ], - [ - -73.485874, - 45.4732 - ], - [ - -73.485995, - 45.473164 - ], - [ - -73.486151, - 45.473119 - ], - [ - -73.486635, - 45.472962 - ], - [ - -73.486787, - 45.472912 - ], - [ - -73.488142, - 45.472472 - ], - [ - -73.488555, - 45.472341 - ], - [ - -73.488966, - 45.472197 - ], - [ - -73.489081, - 45.472161 - ], - [ - -73.489198, - 45.472121 - ], - [ - -73.489607, - 45.471977 - ], - [ - -73.489817, - 45.471884 - ], - [ - -73.490057, - 45.471779 - ], - [ - -73.490953, - 45.471352 - ], - [ - -73.49113, - 45.471275 - ], - [ - -73.491309, - 45.471203 - ], - [ - -73.49144, - 45.471158 - ], - [ - -73.491671, - 45.471086 - ], - [ - -73.492077, - 45.471005 - ], - [ - -73.49239, - 45.47096 - ], - [ - -73.492603, - 45.470947 - ], - [ - -73.492828, - 45.470933 - ], - [ - -73.493058, - 45.470938 - ], - [ - -73.494082, - 45.470974 - ], - [ - -73.49484, - 45.471001 - ], - [ - -73.494847, - 45.470884 - ], - [ - -73.494853, - 45.470767 - ], - [ - -73.494862, - 45.47056 - ], - [ - -73.494791, - 45.470417 - ], - [ - -73.494611, - 45.470061 - ], - [ - -73.494154, - 45.469237 - ], - [ - -73.494075, - 45.469188 - ], - [ - -73.49395, - 45.46917 - ], - [ - -73.492856, - 45.469118 - ], - [ - -73.4927, - 45.469111 - ], - [ - -73.492434, - 45.469107 - ], - [ - -73.489056, - 45.468994 - ], - [ - -73.488788, - 45.468985 - ], - [ - -73.487892, - 45.468935 - ], - [ - -73.486913, - 45.468899 - ], - [ - -73.486742, - 45.468895 - ], - [ - -73.486598, - 45.468913 - ], - [ - -73.486363, - 45.468976 - ], - [ - -73.485575, - 45.469313 - ], - [ - -73.485272, - 45.468957 - ], - [ - -73.485183, - 45.468899 - ], - [ - -73.485068, - 45.468858 - ], - [ - -73.484983, - 45.468836 - ], - [ - -73.484852, - 45.468827 - ], - [ - -73.484165, - 45.4688 - ], - [ - -73.484035, - 45.468795 - ], - [ - -73.482517, - 45.468777 - ], - [ - -73.481592, - 45.468898 - ], - [ - -73.480828, - 45.468945 - ], - [ - -73.480705, - 45.468952 - ], - [ - -73.479733, - 45.468916 - ], - [ - -73.478795, - 45.46888 - ], - [ - -73.477977, - 45.468847 - ], - [ - -73.477791, - 45.468839 - ], - [ - -73.475537, - 45.468744 - ], - [ - -73.475149, - 45.468731 - ], - [ - -73.474822, - 45.468708 - ], - [ - -73.474819, - 45.468708 - ], - [ - -73.47474, - 45.468663 - ] - ] - }, - "id": 386, - "properties": { - "id": "0449c4e9-5385-4e1a-b395-022474ad0461", - "data": { - "gtfs": { - "shape_id": "692_2_R" - }, - "segments": [ - { - "distanceMeters": 451, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 696, - "travelTimeSeconds": 99 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 393, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 363, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 44, - "travelTimeSeconds": 6 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 750, - "travelTimeSeconds": 107 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 66, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 730, - "travelTimeSeconds": 104 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 421, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 37 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9267, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2165.066938276511, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.02, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 6.18, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.02 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", - "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", - "3e4f29c9-7bf2-4ca4-9cb4-2a3c4710cea6", - "91b595a9-abca-41fb-9723-f6ca055bd16b", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "997c4af9-ab50-4dfb-941a-afadff58f267", - "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", - "c7c30949-db61-44fc-b7ab-a69b9fde12cc", - "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", - "f1131e74-6c65-4f22-a18d-41dbe35e4576", - "984def83-5f59-45f7-bb33-ed1dbca30502", - "5a6d8067-b58d-4ab2-838e-422e8f003ee9", - "9c711698-0f65-4997-8a72-24f5d8ab8fb7", - "1339471a-52fa-47e9-b0e4-753bf917ef08", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "003bcf5e-54a8-471f-b008-b7fa64ff94ba", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", - "3a8b9936-4595-4770-a3f4-b31253602356", - "80a85fd6-8b7e-4c4c-b616-26338ab496f1", - "2ef5dac7-c226-43bb-8534-6642e7a8ab89", - "a9b02686-8465-48b9-89ba-773a03aed1e8", - "17fd1ec9-db8e-4d18-a174-72ce7cb4c434", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "66a0749c-2a5b-458d-b059-307f555cb93a", - "d83daa69-bf92-4b93-8173-1c0fd22cbec0", - "3acbe4f4-b4c0-469f-af21-f4af3c6e2b53", - "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "79c669a1-9060-4e5d-b272-f107884dee00", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6" - ], - "stops": [], - "line_id": "0ace1a53-efbf-40d0-b083-99e314f68253", - "segments": [ - 0, - 20, - 27, - 29, - 42, - 44, - 48, - 58, - 67, - 72, - 79, - 89, - 93, - 109, - 122, - 125, - 128, - 133, - 137, - 165, - 170, - 177, - 189, - 193, - 195, - 205, - 209, - 217, - 239, - 242, - 255, - 259, - 263 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 386, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.440201, - 45.440298 - ], - [ - -73.440843, - 45.440775 - ], - [ - -73.441836, - 45.441512 - ], - [ - -73.441948, - 45.441595 - ], - [ - -73.442064, - 45.44172 - ], - [ - -73.442173, - 45.441795 - ], - [ - -73.444491, - 45.443456 - ], - [ - -73.444646, - 45.443567 - ], - [ - -73.444814, - 45.443691 - ], - [ - -73.445792, - 45.44439 - ], - [ - -73.445916, - 45.444479 - ], - [ - -73.447002, - 45.445251 - ], - [ - -73.447144, - 45.445352 - ], - [ - -73.44736, - 45.4455 - ], - [ - -73.447729, - 45.445718 - ], - [ - -73.448087, - 45.44592 - ], - [ - -73.449209, - 45.446548 - ], - [ - -73.449266, - 45.44658 - ], - [ - -73.4494, - 45.446659 - ], - [ - -73.449563, - 45.446742 - ], - [ - -73.450068, - 45.447011 - ], - [ - -73.450448, - 45.447201 - ], - [ - -73.451097, - 45.447517 - ], - [ - -73.4522, - 45.448094 - ], - [ - -73.452476, - 45.448237 - ], - [ - -73.453807, - 45.448921 - ], - [ - -73.454006, - 45.449062 - ], - [ - -73.454088, - 45.449121 - ], - [ - -73.454556, - 45.449427 - ], - [ - -73.454798, - 45.449611 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.455393, - 45.45012 - ], - [ - -73.456061, - 45.45066 - ], - [ - -73.456286, - 45.450829 - ], - [ - -73.456327, - 45.45086 - ], - [ - -73.457142, - 45.45144 - ], - [ - -73.457286, - 45.451543 - ], - [ - -73.457407, - 45.451615 - ], - [ - -73.457924, - 45.451894 - ], - [ - -73.458487, - 45.4522 - ], - [ - -73.458731, - 45.452331 - ], - [ - -73.458941, - 45.452443 - ], - [ - -73.459713, - 45.452799 - ], - [ - -73.461232, - 45.453472 - ], - [ - -73.461523, - 45.4536 - ], - [ - -73.462919, - 45.454222 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.462973, - 45.45452 - ], - [ - -73.462597, - 45.455054 - ], - [ - -73.462203, - 45.455612 - ], - [ - -73.462014, - 45.455891 - ], - [ - -73.461922, - 45.456093 - ], - [ - -73.461874, - 45.456197 - ], - [ - -73.461786, - 45.456489 - ], - [ - -73.461737, - 45.456795 - ], - [ - -73.461721, - 45.457015 - ], - [ - -73.461748, - 45.457291 - ], - [ - -73.46176, - 45.45742 - ], - [ - -73.461867, - 45.457825 - ], - [ - -73.462081, - 45.458239 - ], - [ - -73.462238, - 45.458487 - ], - [ - -73.462455, - 45.458766 - ], - [ - -73.462621, - 45.45898 - ], - [ - -73.462647, - 45.459013 - ], - [ - -73.462712, - 45.459175 - ], - [ - -73.462745, - 45.459391 - ], - [ - -73.462911, - 45.460597 - ], - [ - -73.462922, - 45.460678 - ], - [ - -73.463035, - 45.46138 - ], - [ - -73.463087, - 45.461704 - ], - [ - -73.463097, - 45.461763 - ], - [ - -73.463101, - 45.461866 - ], - [ - -73.463058, - 45.461956 - ], - [ - -73.463004, - 45.46201 - ], - [ - -73.462926, - 45.462051 - ], - [ - -73.462839, - 45.462082 - ], - [ - -73.462729, - 45.462095 - ], - [ - -73.46213, - 45.462145 - ], - [ - -73.461317, - 45.462217 - ], - [ - -73.461274, - 45.462221 - ], - [ - -73.460596, - 45.46227 - ], - [ - -73.459742, - 45.462333 - ], - [ - -73.458611, - 45.462189 - ], - [ - -73.457909, - 45.462103 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.457019, - 45.462007 - ], - [ - -73.456859, - 45.46199 - ], - [ - -73.456608, - 45.461964 - ], - [ - -73.456268, - 45.4619 - ], - [ - -73.456104, - 45.461814 - ], - [ - -73.455632, - 45.461475 - ], - [ - -73.4542, - 45.460447 - ], - [ - -73.453333, - 45.459823 - ], - [ - -73.453221, - 45.459743 - ], - [ - -73.452534, - 45.459239 - ], - [ - -73.451112, - 45.458216 - ], - [ - -73.450782, - 45.457979 - ], - [ - -73.450437, - 45.457731 - ], - [ - -73.450367, - 45.457403 - ], - [ - -73.450362, - 45.457232 - ], - [ - -73.450382, - 45.457097 - ], - [ - -73.450443, - 45.45693 - ], - [ - -73.451222, - 45.455776 - ], - [ - -73.451461, - 45.455422 - ], - [ - -73.45166, - 45.455126 - ], - [ - -73.451697, - 45.455076 - ], - [ - -73.451848, - 45.45487 - ], - [ - -73.451889, - 45.454825 - ], - [ - -73.451941, - 45.454767 - ], - [ - -73.452038, - 45.454708 - ], - [ - -73.452189, - 45.454636 - ], - [ - -73.451956, - 45.454402 - ], - [ - -73.451873, - 45.454344 - ], - [ - -73.45174, - 45.454276 - ], - [ - -73.451557, - 45.454204 - ], - [ - -73.451305, - 45.454127 - ], - [ - -73.45082, - 45.453956 - ], - [ - -73.450488, - 45.453839 - ], - [ - -73.450766, - 45.453502 - ], - [ - -73.450798, - 45.453476 - ], - [ - -73.45112, - 45.453219 - ], - [ - -73.451322, - 45.453072 - ], - [ - -73.451486, - 45.452953 - ], - [ - -73.45248, - 45.452271 - ], - [ - -73.452613, - 45.45218 - ], - [ - -73.453298, - 45.451699 - ], - [ - -73.452781, - 45.451327 - ], - [ - -73.452622, - 45.451213 - ], - [ - -73.453977, - 45.450264 - ], - [ - -73.454474, - 45.449931 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.455056, - 45.44954 - ], - [ - -73.454771, - 45.449327 - ], - [ - -73.454737, - 45.449301 - ], - [ - -73.454461, - 45.449119 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.454351, - 45.448928 - ], - [ - -73.454507, - 45.448806 - ], - [ - -73.454606, - 45.448707 - ], - [ - -73.454897, - 45.448293 - ], - [ - -73.455137, - 45.447929 - ], - [ - -73.455304, - 45.447709 - ], - [ - -73.455416, - 45.447619 - ], - [ - -73.455528, - 45.447551 - ], - [ - -73.455661, - 45.447479 - ], - [ - -73.45587, - 45.447395 - ], - [ - -73.455927, - 45.447371 - ], - [ - -73.456253, - 45.447264 - ], - [ - -73.456885, - 45.447052 - ], - [ - -73.457516, - 45.446841 - ], - [ - -73.457752, - 45.446762 - ], - [ - -73.458009, - 45.446676 - ], - [ - -73.458085, - 45.446651 - ], - [ - -73.458121, - 45.446639 - ], - [ - -73.45823, - 45.446598 - ], - [ - -73.458358, - 45.446536 - ], - [ - -73.458499, - 45.446437 - ], - [ - -73.458716, - 45.446252 - ], - [ - -73.458903, - 45.445978 - ], - [ - -73.459419, - 45.445193 - ], - [ - -73.459486, - 45.445092 - ], - [ - -73.460027, - 45.444237 - ], - [ - -73.460296, - 45.443835 - ], - [ - -73.460454, - 45.443598 - ], - [ - -73.461771, - 45.444017 - ], - [ - -73.463013, - 45.444418 - ], - [ - -73.464019, - 45.444742 - ], - [ - -73.465754, - 45.44531 - ], - [ - -73.465988, - 45.445382 - ], - [ - -73.466182, - 45.445449 - ], - [ - -73.466559, - 45.44562 - ], - [ - -73.466885, - 45.445774 - ], - [ - -73.467467, - 45.446048 - ], - [ - -73.467858, - 45.44626 - ], - [ - -73.468293, - 45.446453 - ], - [ - -73.468548, - 45.446543 - ], - [ - -73.469098, - 45.446714 - ], - [ - -73.46979, - 45.446931 - ], - [ - -73.469936, - 45.446962 - ], - [ - -73.470215, - 45.447052 - ], - [ - -73.471183, - 45.44739 - ], - [ - -73.471746, - 45.44757 - ], - [ - -73.472443, - 45.447795 - ], - [ - -73.473347, - 45.448088 - ], - [ - -73.473437, - 45.448115 - ], - [ - -73.475223, - 45.448691 - ], - [ - -73.475787, - 45.448871 - ], - [ - -73.476196, - 45.449002 - ], - [ - -73.476498, - 45.449128 - ], - [ - -73.476722, - 45.449231 - ], - [ - -73.476897, - 45.449321 - ], - [ - -73.477126, - 45.449456 - ], - [ - -73.477278, - 45.449564 - ], - [ - -73.477431, - 45.449681 - ], - [ - -73.477567, - 45.449794 - ], - [ - -73.477783, - 45.450014 - ], - [ - -73.477921, - 45.449951 - ], - [ - -73.478061, - 45.4499 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.4775, - 45.449189 - ] - ] - }, - "id": 387, - "properties": { - "id": "5eaea76d-91dc-4df8-9292-26df46cf414b", - "data": { - "gtfs": { - "shape_id": "693_1_A" - }, - "segments": [ - { - "distanceMeters": 186, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 468, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 87, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 159, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 135, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 83, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 116, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 1726, - "travelTimeSeconds": 264 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8264, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3078.261471413936, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.56, - "travelTimeWithoutDwellTimesSeconds": 1260, - "operatingTimeWithLayoverTimeSeconds": 1440, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1260, - "operatingSpeedWithLayoverMetersPerSecond": 5.74, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.56 - }, - "mode": "bus", - "name": "École Lucille-Teasdale", - "color": "#A32638", - "nodes": [ - "49b9afd3-56d8-4495-8b7a-642e5568568e", - "13dab893-0384-46f9-a2e5-e504a47de39a", - "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", - "d306b992-8d43-4ba8-8460-68d87b486222", - "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", - "b5853393-4072-4255-b507-e9c4b6659c5b", - "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", - "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", - "2ac07b96-98be-4710-a749-3162a661fcb5", - "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", - "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", - "d13720b6-fb91-4a90-a816-addaef17cf17", - "d0325326-9fbf-42e2-aefa-29fa09853c10", - "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "30d24143-abd0-4a47-955d-cdbc3943ae61", - "47d3a0e8-5db6-4263-911d-0835de2b9cb0", - "c01e4d9c-c5df-425f-9b40-215a62d76b50", - "5781af67-07a2-4732-99f5-af7b2835e18a", - "800b4ca8-f540-48ef-9acf-ec6d45db3496", - "db56dff4-d82c-4b2d-ad34-35b3db3f27de", - "0087674f-0098-4bab-9a77-b31eb3602613", - "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", - "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", - "fd4f887b-9300-41e3-8cc1-44b80109a4ad", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "8b7e764f-0227-410c-89b9-51b9a8ad8c88", - "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", - "57126f14-f5bb-4578-a4ae-48d75eae5e82", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "fe1d7eea-bdc6-4263-a13b-eb6645c5e393" - ], - "stops": [], - "line_id": "c63586ec-56ce-4d9d-bdaf-685692053661", - "segments": [ - 0, - 2, - 6, - 11, - 16, - 26, - 29, - 35, - 40, - 43, - 45, - 51, - 56, - 62, - 66, - 78, - 83, - 86, - 90, - 91, - 92, - 96, - 102, - 107, - 116, - 121, - 126, - 129, - 134, - 145, - 150, - 159, - 162 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 387, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.4775, - 45.449189 - ], - [ - -73.477354, - 45.449101 - ], - [ - -73.476598, - 45.448646 - ], - [ - -73.476493, - 45.448669 - ], - [ - -73.476429, - 45.448682 - ], - [ - -73.476264, - 45.448894 - ], - [ - -73.475856, - 45.448768 - ], - [ - -73.475455, - 45.448632 - ], - [ - -73.475296, - 45.448579 - ], - [ - -73.474198, - 45.448236 - ], - [ - -73.473507, - 45.448007 - ], - [ - -73.47251, - 45.447683 - ], - [ - -73.471666, - 45.447408 - ], - [ - -73.471252, - 45.447282 - ], - [ - -73.47028, - 45.446953 - ], - [ - -73.470002, - 45.446863 - ], - [ - -73.469858, - 45.446832 - ], - [ - -73.469169, - 45.446615 - ], - [ - -73.468615, - 45.446444 - ], - [ - -73.468374, - 45.446359 - ], - [ - -73.468208, - 45.446282 - ], - [ - -73.467947, - 45.446165 - ], - [ - -73.46755, - 45.445972 - ], - [ - -73.466635, - 45.445539 - ], - [ - -73.466252, - 45.445364 - ], - [ - -73.466048, - 45.445292 - ], - [ - -73.465811, - 45.44522 - ], - [ - -73.464192, - 45.444695 - ], - [ - -73.464073, - 45.444657 - ], - [ - -73.461826, - 45.443936 - ], - [ - -73.461072, - 45.443693 - ], - [ - -73.460746, - 45.443589 - ], - [ - -73.46051, - 45.443513 - ], - [ - -73.460454, - 45.443598 - ], - [ - -73.460365, - 45.443732 - ], - [ - -73.460027, - 45.444237 - ], - [ - -73.45953, - 45.445023 - ], - [ - -73.459486, - 45.445092 - ], - [ - -73.458903, - 45.445978 - ], - [ - -73.458716, - 45.446252 - ], - [ - -73.458499, - 45.446437 - ], - [ - -73.458358, - 45.446536 - ], - [ - -73.45823, - 45.446598 - ], - [ - -73.458121, - 45.446639 - ], - [ - -73.458108, - 45.446643 - ], - [ - -73.458085, - 45.446651 - ], - [ - -73.458009, - 45.446676 - ], - [ - -73.457516, - 45.446841 - ], - [ - -73.456885, - 45.447052 - ], - [ - -73.456375, - 45.447223 - ], - [ - -73.456253, - 45.447264 - ], - [ - -73.455927, - 45.447371 - ], - [ - -73.455661, - 45.447479 - ], - [ - -73.455528, - 45.447551 - ], - [ - -73.455416, - 45.447619 - ], - [ - -73.455304, - 45.447709 - ], - [ - -73.455137, - 45.447929 - ], - [ - -73.454897, - 45.448293 - ], - [ - -73.454606, - 45.448707 - ], - [ - -73.454507, - 45.448806 - ], - [ - -73.454404, - 45.448887 - ], - [ - -73.454351, - 45.448928 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.454088, - 45.449121 - ], - [ - -73.454556, - 45.449427 - ], - [ - -73.45481, - 45.44962 - ], - [ - -73.45487, - 45.449666 - ], - [ - -73.454515, - 45.449903 - ], - [ - -73.453977, - 45.450264 - ], - [ - -73.452721, - 45.451143 - ], - [ - -73.452622, - 45.451213 - ], - [ - -73.453298, - 45.451699 - ], - [ - -73.452613, - 45.45218 - ], - [ - -73.45248, - 45.452271 - ], - [ - -73.451627, - 45.452856 - ], - [ - -73.451486, - 45.452953 - ], - [ - -73.45112, - 45.453219 - ], - [ - -73.450766, - 45.453502 - ], - [ - -73.450718, - 45.453561 - ], - [ - -73.450488, - 45.453839 - ], - [ - -73.451305, - 45.454127 - ], - [ - -73.451557, - 45.454204 - ], - [ - -73.45174, - 45.454276 - ], - [ - -73.451873, - 45.454344 - ], - [ - -73.451956, - 45.454402 - ], - [ - -73.452095, - 45.454542 - ], - [ - -73.452189, - 45.454636 - ], - [ - -73.452038, - 45.454708 - ], - [ - -73.451941, - 45.454767 - ], - [ - -73.451848, - 45.45487 - ], - [ - -73.45166, - 45.455126 - ], - [ - -73.451461, - 45.455422 - ], - [ - -73.451248, - 45.455737 - ], - [ - -73.450443, - 45.45693 - ], - [ - -73.450382, - 45.457097 - ], - [ - -73.450362, - 45.457232 - ], - [ - -73.450367, - 45.457403 - ], - [ - -73.450399, - 45.457551 - ], - [ - -73.450437, - 45.457731 - ], - [ - -73.450592, - 45.457842 - ], - [ - -73.451112, - 45.458216 - ], - [ - -73.452534, - 45.459239 - ], - [ - -73.453094, - 45.45965 - ], - [ - -73.453221, - 45.459743 - ], - [ - -73.45465, - 45.460769 - ], - [ - -73.456104, - 45.461814 - ], - [ - -73.456268, - 45.4619 - ], - [ - -73.456608, - 45.461964 - ], - [ - -73.457019, - 45.462007 - ], - [ - -73.457419, - 45.462048 - ], - [ - -73.457675, - 45.462075 - ], - [ - -73.45853, - 45.462179 - ], - [ - -73.458611, - 45.462189 - ], - [ - -73.459742, - 45.462333 - ], - [ - -73.460596, - 45.46227 - ], - [ - -73.461001, - 45.462241 - ], - [ - -73.461274, - 45.462221 - ], - [ - -73.46213, - 45.462145 - ], - [ - -73.462729, - 45.462095 - ], - [ - -73.462818, - 45.462085 - ], - [ - -73.462839, - 45.462082 - ], - [ - -73.462926, - 45.462051 - ], - [ - -73.463004, - 45.46201 - ], - [ - -73.463058, - 45.461956 - ], - [ - -73.463101, - 45.461866 - ], - [ - -73.463097, - 45.461763 - ], - [ - -73.463035, - 45.46138 - ], - [ - -73.462937, - 45.460774 - ], - [ - -73.462922, - 45.460678 - ], - [ - -73.462766, - 45.45954 - ], - [ - -73.462745, - 45.459391 - ], - [ - -73.462712, - 45.459175 - ], - [ - -73.462647, - 45.459013 - ], - [ - -73.462455, - 45.458766 - ], - [ - -73.462238, - 45.458487 - ], - [ - -73.462081, - 45.458239 - ], - [ - -73.461867, - 45.457825 - ], - [ - -73.461775, - 45.457477 - ], - [ - -73.46176, - 45.45742 - ], - [ - -73.461721, - 45.457015 - ], - [ - -73.461737, - 45.456795 - ], - [ - -73.461786, - 45.456489 - ], - [ - -73.461833, - 45.456334 - ], - [ - -73.461874, - 45.456197 - ], - [ - -73.462014, - 45.455891 - ], - [ - -73.462203, - 45.455612 - ], - [ - -73.462522, - 45.455159 - ], - [ - -73.462597, - 45.455054 - ], - [ - -73.463119, - 45.454312 - ], - [ - -73.463193, - 45.454208 - ], - [ - -73.462942, - 45.454094 - ], - [ - -73.462149, - 45.453733 - ], - [ - -73.461809, - 45.453578 - ], - [ - -73.461621, - 45.453493 - ], - [ - -73.459815, - 45.452691 - ], - [ - -73.459189, - 45.4524 - ], - [ - -73.45904, - 45.452331 - ], - [ - -73.458688, - 45.452137 - ], - [ - -73.458046, - 45.451791 - ], - [ - -73.457693, - 45.451586 - ], - [ - -73.457541, - 45.451498 - ], - [ - -73.457438, - 45.451421 - ], - [ - -73.457131, - 45.451219 - ], - [ - -73.456851, - 45.451021 - ], - [ - -73.45659, - 45.450823 - ], - [ - -73.456273, - 45.450557 - ], - [ - -73.456003, - 45.45033 - ], - [ - -73.455819, - 45.450175 - ], - [ - -73.455605, - 45.449994 - ], - [ - -73.455056, - 45.44954 - ], - [ - -73.454737, - 45.449301 - ], - [ - -73.454446, - 45.44911 - ], - [ - -73.454264, - 45.448991 - ], - [ - -73.453273, - 45.448481 - ], - [ - -73.451557, - 45.447603 - ], - [ - -73.45107, - 45.447354 - ], - [ - -73.45026, - 45.446936 - ], - [ - -73.449669, - 45.446635 - ], - [ - -73.449652, - 45.446626 - ], - [ - -73.449554, - 45.446569 - ], - [ - -73.449363, - 45.446456 - ], - [ - -73.447677, - 45.44551 - ], - [ - -73.447484, - 45.445387 - ], - [ - -73.447408, - 45.44534 - ], - [ - -73.447287, - 45.445263 - ], - [ - -73.447125, - 45.445146 - ], - [ - -73.446612, - 45.444764 - ], - [ - -73.445568, - 45.444021 - ], - [ - -73.444905, - 45.443527 - ], - [ - -73.444834, - 45.443475 - ], - [ - -73.444807, - 45.443457 - ], - [ - -73.442882, - 45.442105 - ], - [ - -73.442354, - 45.441734 - ], - [ - -73.442337, - 45.441722 - ], - [ - -73.442193, - 45.441589 - ], - [ - -73.442073, - 45.441479 - ], - [ - -73.441548, - 45.441133 - ], - [ - -73.4411, - 45.440787 - ], - [ - -73.440974, - 45.440696 - ], - [ - -73.440252, - 45.440176 - ], - [ - -73.439969, - 45.43997 - ] - ] - }, - "id": 388, - "properties": { - "id": "38733f4c-57e0-44a3-9867-43b451414663", - "data": { - "gtfs": { - "shape_id": "693_2_R" - }, - "segments": [ - { - "distanceMeters": 203, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 984, - "travelTimeSeconds": 152 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 28, - "travelTimeSeconds": 4 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 150, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 242, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 158, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 217, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 270, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 88, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 195, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 128, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 464, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 281, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 282, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 42 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8127, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3097.7745575377717, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.45, - "travelTimeWithoutDwellTimesSeconds": 1260, - "operatingTimeWithLayoverTimeSeconds": 1440, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1260, - "operatingSpeedWithLayoverMetersPerSecond": 5.64, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.45 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", - "8f39e220-8ec5-4425-b9f8-90e418e7d6d3", - "ae5cac19-c84c-4e41-ae57-bbf3b3bda217", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "57126f14-f5bb-4578-a4ae-48d75eae5e82", - "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", - "8b7e764f-0227-410c-89b9-51b9a8ad8c88", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", - "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", - "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", - "0087674f-0098-4bab-9a77-b31eb3602613", - "db56dff4-d82c-4b2d-ad34-35b3db3f27de", - "800b4ca8-f540-48ef-9acf-ec6d45db3496", - "0c735a18-4964-435c-ad38-89ab21a47f83", - "c01e4d9c-c5df-425f-9b40-215a62d76b50", - "4ca26d1e-a5a2-4d1a-ba5a-7bed9b5a1bee", - "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "5d862a7d-92b0-4def-8199-258993ce3523", - "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", - "d0325326-9fbf-42e2-aefa-29fa09853c10", - "d13720b6-fb91-4a90-a816-addaef17cf17", - "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", - "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", - "5b030db6-8eaf-4505-a2c0-5a5290886d5b", - "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "ab493a3c-1217-4122-93b5-217f7741b2ea", - "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "2c6638eb-437e-4a41-bb5d-d6093797361d", - "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", - "d306b992-8d43-4ba8-8460-68d87b486222", - "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", - "88486643-e9da-4936-905d-86d1e3882217", - "c5b32d48-73e8-4193-bbcc-f643b32c6ad7" - ], - "stops": [], - "line_id": "c63586ec-56ce-4d9d-bdaf-685692053661", - "segments": [ - 0, - 7, - 27, - 30, - 31, - 36, - 44, - 49, - 60, - 65, - 69, - 74, - 78, - 85, - 92, - 97, - 102, - 104, - 109, - 111, - 115, - 127, - 129, - 137, - 142, - 146, - 152, - 155, - 159, - 167, - 171, - 177, - 183, - 188, - 192 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 388, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.462689, - 45.46902 - ], - [ - -73.462634, - 45.469078 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.460808, - 45.47033 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.458439, - 45.471947 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.456063, - 45.473572 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.453679, - 45.475205 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.451331, - 45.476812 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.449277, - 45.478219 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.448868, - 45.478494 - ], - [ - -73.448753, - 45.478566 - ], - [ - -73.448994, - 45.478733 - ], - [ - -73.449425, - 45.47903 - ], - [ - -73.450119, - 45.479471 - ], - [ - -73.45087, - 45.479962 - ], - [ - -73.451, - 45.480048 - ], - [ - -73.451438, - 45.480342 - ], - [ - -73.451689, - 45.480511 - ], - [ - -73.452165, - 45.480813 - ], - [ - -73.452542, - 45.481076 - ], - [ - -73.452751, - 45.481223 - ], - [ - -73.452851, - 45.48129 - ], - [ - -73.453668, - 45.481781 - ], - [ - -73.454023, - 45.481974 - ], - [ - -73.454266, - 45.482101 - ], - [ - -73.454494, - 45.482204 - ], - [ - -73.454893, - 45.482398 - ], - [ - -73.455361, - 45.482587 - ], - [ - -73.455562, - 45.482663 - ], - [ - -73.455798, - 45.482744 - ], - [ - -73.456376, - 45.48292 - ], - [ - -73.456963, - 45.483096 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45732, - 45.482854 - ], - [ - -73.460939, - 45.480405 - ], - [ - -73.461043, - 45.480335 - ], - [ - -73.460857, - 45.48021 - ], - [ - -73.46017, - 45.47975 - ], - [ - -73.461956, - 45.478544 - ], - [ - -73.462028, - 45.478495 - ], - [ - -73.461949, - 45.478438 - ], - [ - -73.461424, - 45.478052 - ], - [ - -73.461335, - 45.477986 - ], - [ - -73.462719, - 45.477038 - ], - [ - -73.462832, - 45.476961 - ], - [ - -73.464383, - 45.475913 - ], - [ - -73.464088, - 45.475706 - ], - [ - -73.463948, - 45.475607 - ], - [ - -73.463529, - 45.475427 - ], - [ - -73.462895, - 45.475142 - ], - [ - -73.462818, - 45.475107 - ], - [ - -73.461823, - 45.474666 - ], - [ - -73.461576, - 45.474504 - ], - [ - -73.4615, - 45.474454 - ], - [ - -73.461544, - 45.474425 - ], - [ - -73.462087, - 45.474055 - ], - [ - -73.462597, - 45.473708 - ], - [ - -73.462985, - 45.473456 - ], - [ - -73.464065, - 45.472695 - ], - [ - -73.464089, - 45.472678 - ], - [ - -73.465434, - 45.471774 - ], - [ - -73.465954, - 45.471415 - ], - [ - -73.466451, - 45.471073 - ], - [ - -73.466809, - 45.471305 - ], - [ - -73.467061, - 45.471469 - ], - [ - -73.46758, - 45.47182 - ], - [ - -73.467806, - 45.471982 - ], - [ - -73.46785, - 45.471847 - ], - [ - -73.467869, - 45.471793 - ], - [ - -73.467954, - 45.471482 - ], - [ - -73.467979, - 45.471365 - ], - [ - -73.468005, - 45.471249 - ], - [ - -73.468064, - 45.470898 - ], - [ - -73.468076, - 45.470781 - ], - [ - -73.46809, - 45.470638 - ], - [ - -73.468112, - 45.470407 - ], - [ - -73.468119, - 45.470155 - ], - [ - -73.468115, - 45.470044 - ], - [ - -73.468111, - 45.469894 - ], - [ - -73.468108, - 45.469818 - ], - [ - -73.468107, - 45.469773 - ], - [ - -73.46805, - 45.4693 - ], - [ - -73.46795, - 45.468821 - ], - [ - -73.467932, - 45.468733 - ], - [ - -73.467793, - 45.468274 - ], - [ - -73.467751, - 45.468166 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.46758, - 45.467757 - ], - [ - -73.467357, - 45.467296 - ], - [ - -73.466914, - 45.466403 - ], - [ - -73.466752, - 45.466083 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466352, - 45.465288 - ], - [ - -73.466238, - 45.465062 - ], - [ - -73.466142, - 45.464853 - ], - [ - -73.466048, - 45.464638 - ], - [ - -73.46599, - 45.464498 - ], - [ - -73.465967, - 45.464441 - ], - [ - -73.465777, - 45.463945 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465663, - 45.463449 - ], - [ - -73.465646, - 45.463238 - ], - [ - -73.465636, - 45.463073 - ], - [ - -73.465461, - 45.461275 - ], - [ - -73.465446, - 45.461126 - ], - [ - -73.465251, - 45.459263 - ], - [ - -73.465215, - 45.458894 - ], - [ - -73.465199, - 45.458728 - ], - [ - -73.465132, - 45.458038 - ], - [ - -73.465113, - 45.457592 - ], - [ - -73.465124, - 45.457143 - ], - [ - -73.465143, - 45.45685 - ], - [ - -73.465153, - 45.456755 - ], - [ - -73.465199, - 45.456301 - ], - [ - -73.465244, - 45.456 - ], - [ - -73.465335, - 45.455572 - ], - [ - -73.465339, - 45.455554 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465617, - 45.454677 - ], - [ - -73.465629, - 45.454641 - ], - [ - -73.46563, - 45.454641 - ], - [ - -73.465694, - 45.454481 - ], - [ - -73.465735, - 45.45438 - ], - [ - -73.465853, - 45.45411 - ], - [ - -73.466087, - 45.453654 - ], - [ - -73.46613, - 45.45357 - ], - [ - -73.466877, - 45.452297 - ], - [ - -73.467521, - 45.451236 - ], - [ - -73.468182, - 45.450183 - ], - [ - -73.469986, - 45.447403 - ], - [ - -73.47011, - 45.447213 - ], - [ - -73.470141, - 45.447165 - ], - [ - -73.470215, - 45.447052 - ], - [ - -73.471183, - 45.44739 - ], - [ - -73.471746, - 45.44757 - ], - [ - -73.472443, - 45.447795 - ], - [ - -73.473347, - 45.448088 - ], - [ - -73.473437, - 45.448115 - ], - [ - -73.475223, - 45.448691 - ], - [ - -73.475787, - 45.448871 - ], - [ - -73.476196, - 45.449002 - ], - [ - -73.476498, - 45.449128 - ], - [ - -73.476722, - 45.449231 - ], - [ - -73.476897, - 45.449321 - ], - [ - -73.477126, - 45.449456 - ], - [ - -73.477278, - 45.449564 - ], - [ - -73.477431, - 45.449681 - ], - [ - -73.477567, - 45.449794 - ], - [ - -73.477726, - 45.449957 - ], - [ - -73.477783, - 45.450014 - ], - [ - -73.477921, - 45.449951 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.4775, - 45.449189 - ] - ] - }, - "id": 389, - "properties": { - "id": "f058daa5-911e-40fc-a128-97d5935b8ff3", - "data": { - "gtfs": { - "shape_id": "694_1_A" - }, - "segments": [ - { - "distanceMeters": 207, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 180, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 846, - "travelTimeSeconds": 149 - }, - { - "distanceMeters": 299, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 76, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 161, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 352, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 884, - "travelTimeSeconds": 156 - }, - { - "distanceMeters": 249, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 477, - "travelTimeSeconds": 84 - }, - { - "distanceMeters": 898, - "travelTimeSeconds": 158 - }, - { - "distanceMeters": 861, - "travelTimeSeconds": 152 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 8172, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2498.1869479866095, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.67, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 5.04, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.67 - }, - "mode": "bus", - "name": "École Lucille-Teasdale", - "color": "#A32638", - "nodes": [ - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "907f8610-452b-440d-849b-c803b07dedc1", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "72a48bdf-3a35-4f3b-8d05-e465faf044cf", - "70af9f63-28e4-474e-896b-5462b7252980", - "10c2e9e3-14c8-465a-917c-28c8d9977609", - "9f622393-7da9-4ff8-9bda-12008512c7ed", - "4122212c-2ecd-4db2-a305-20f02711d17b", - "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", - "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", - "c467599b-2164-4b14-b9ca-8960936bda58", - "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", - "156c412f-0b84-4b14-a73e-e1d07d0b148d", - "51e1600d-418e-4477-9b26-9e5507d72a03", - "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "74887516-47d5-4269-9513-84672d18e287", - "1e3a74d9-9d8a-467f-a82e-3dafee501e32", - "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", - "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", - "fe1d7eea-bdc6-4263-a13b-eb6645c5e393" - ], - "stops": [], - "line_id": "03325740-8fd8-4309-a150-bf5624bb8be9", - "segments": [ - 0, - 3, - 5, - 7, - 9, - 11, - 13, - 20, - 25, - 40, - 44, - 47, - 49, - 52, - 58, - 64, - 67, - 80, - 88, - 110, - 112, - 127, - 137 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 389, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.4775, - 45.449189 - ], - [ - -73.477354, - 45.449101 - ], - [ - -73.476598, - 45.448646 - ], - [ - -73.476493, - 45.448669 - ], - [ - -73.476429, - 45.448682 - ], - [ - -73.476264, - 45.448894 - ], - [ - -73.475856, - 45.448768 - ], - [ - -73.475454, - 45.448632 - ], - [ - -73.475296, - 45.448579 - ], - [ - -73.474198, - 45.448236 - ], - [ - -73.473507, - 45.448007 - ], - [ - -73.47251, - 45.447683 - ], - [ - -73.471666, - 45.447408 - ], - [ - -73.471252, - 45.447282 - ], - [ - -73.47028, - 45.446953 - ], - [ - -73.470002, - 45.446863 - ], - [ - -73.469936, - 45.446962 - ], - [ - -73.469837, - 45.447115 - ], - [ - -73.4697, - 45.447326 - ], - [ - -73.467906, - 45.450089 - ], - [ - -73.467328, - 45.451002 - ], - [ - -73.46669, - 45.452054 - ], - [ - -73.465968, - 45.453278 - ], - [ - -73.465918, - 45.453363 - ], - [ - -73.465707, - 45.453755 - ], - [ - -73.46558, - 45.454016 - ], - [ - -73.46536, - 45.454529 - ], - [ - -73.465344, - 45.454574 - ], - [ - -73.465257, - 45.454824 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.465167, - 45.455082 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465048, - 45.455509 - ], - [ - -73.465041, - 45.455536 - ], - [ - -73.464975, - 45.455829 - ], - [ - -73.464919, - 45.45613 - ], - [ - -73.464878, - 45.456427 - ], - [ - -73.464848, - 45.456873 - ], - [ - -73.464844, - 45.457169 - ], - [ - -73.464871, - 45.457574 - ], - [ - -73.464981, - 45.459093 - ], - [ - -73.464994, - 45.459278 - ], - [ - -73.465215, - 45.461562 - ], - [ - -73.465247, - 45.461893 - ], - [ - -73.465328, - 45.462497 - ], - [ - -73.465435, - 45.463211 - ], - [ - -73.465484, - 45.463543 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467476, - 45.467991 - ], - [ - -73.467504, - 45.468108 - ], - [ - -73.46754, - 45.468207 - ], - [ - -73.467548, - 45.468225 - ], - [ - -73.467698, - 45.468792 - ], - [ - -73.467776, - 45.469183 - ], - [ - -73.46782, - 45.469453 - ], - [ - -73.467839, - 45.469685 - ], - [ - -73.467865, - 45.469989 - ], - [ - -73.467864, - 45.470057 - ], - [ - -73.467862, - 45.470168 - ], - [ - -73.46786, - 45.470362 - ], - [ - -73.467821, - 45.470781 - ], - [ - -73.467786, - 45.471019 - ], - [ - -73.467768, - 45.4711 - ], - [ - -73.467579, - 45.47132 - ], - [ - -73.467528, - 45.471365 - ], - [ - -73.467462, - 45.471392 - ], - [ - -73.467361, - 45.47141 - ], - [ - -73.467264, - 45.471406 - ], - [ - -73.467156, - 45.471392 - ], - [ - -73.467054, - 45.471328 - ], - [ - -73.466545, - 45.47101 - ], - [ - -73.466451, - 45.471073 - ], - [ - -73.46631, - 45.47117 - ], - [ - -73.466004, - 45.471381 - ], - [ - -73.465434, - 45.471774 - ], - [ - -73.464161, - 45.47263 - ], - [ - -73.464089, - 45.472678 - ], - [ - -73.462985, - 45.473456 - ], - [ - -73.462597, - 45.473708 - ], - [ - -73.462087, - 45.474055 - ], - [ - -73.461669, - 45.474339 - ], - [ - -73.4615, - 45.474454 - ], - [ - -73.461687, - 45.474577 - ], - [ - -73.461823, - 45.474666 - ], - [ - -73.462818, - 45.475107 - ], - [ - -73.462895, - 45.475142 - ], - [ - -73.463529, - 45.475427 - ], - [ - -73.463948, - 45.475607 - ], - [ - -73.464292, - 45.475849 - ], - [ - -73.464383, - 45.475913 - ], - [ - -73.464108, - 45.476099 - ], - [ - -73.462943, - 45.476886 - ], - [ - -73.462832, - 45.476961 - ], - [ - -73.46143, - 45.477921 - ], - [ - -73.461335, - 45.477986 - ], - [ - -73.461508, - 45.478113 - ], - [ - -73.461934, - 45.478426 - ], - [ - -73.462028, - 45.478495 - ], - [ - -73.46017, - 45.47975 - ], - [ - -73.460369, - 45.479883 - ], - [ - -73.460867, - 45.480216 - ], - [ - -73.461043, - 45.480335 - ], - [ - -73.457244, - 45.482906 - ], - [ - -73.457116, - 45.482992 - ], - [ - -73.45697, - 45.48295 - ], - [ - -73.45645, - 45.482799 - ], - [ - -73.455886, - 45.482623 - ], - [ - -73.455654, - 45.482542 - ], - [ - -73.455462, - 45.482465 - ], - [ - -73.455285, - 45.482388 - ], - [ - -73.455276, - 45.482384 - ], - [ - -73.455009, - 45.482272 - ], - [ - -73.454605, - 45.482087 - ], - [ - -73.454381, - 45.481984 - ], - [ - -73.454145, - 45.481862 - ], - [ - -73.453796, - 45.481673 - ], - [ - -73.453035, - 45.48118 - ], - [ - -73.452928, - 45.481113 - ], - [ - -73.452515, - 45.480856 - ], - [ - -73.452296, - 45.480719 - ], - [ - -73.452295, - 45.480718 - ], - [ - -73.451837, - 45.480421 - ], - [ - -73.451565, - 45.480238 - ], - [ - -73.451002, - 45.479859 - ], - [ - -73.450929, - 45.479809 - ], - [ - -73.450257, - 45.479368 - ], - [ - -73.449701, - 45.479005 - ], - [ - -73.449587, - 45.478931 - ], - [ - -73.448913, - 45.478467 - ], - [ - -73.449159, - 45.478299 - ], - [ - -73.449383, - 45.478146 - ], - [ - -73.451116, - 45.476959 - ], - [ - -73.451199, - 45.476903 - ], - [ - -73.453437, - 45.475371 - ], - [ - -73.453577, - 45.475275 - ], - [ - -73.455857, - 45.473713 - ], - [ - -73.455973, - 45.473634 - ], - [ - -73.458243, - 45.472081 - ], - [ - -73.45834, - 45.472015 - ], - [ - -73.46052, - 45.470526 - ], - [ - -73.460724, - 45.470387 - ], - [ - -73.462599, - 45.469096 - ], - [ - -73.462617, - 45.469087 - ] - ] - }, - "id": 390, - "properties": { - "id": "32daf9a6-ce2f-492d-aad9-8d1b9a624c77", - "data": { - "gtfs": { - "shape_id": "694_2_R" - }, - "segments": [ - { - "distanceMeters": 203, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 1430, - "travelTimeSeconds": 261 - }, - { - "distanceMeters": 478, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 1207, - "travelTimeSeconds": 221 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 165, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 78, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 431, - "travelTimeSeconds": 79 - }, - { - "distanceMeters": 172, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 42 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7875, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2498.1869479866095, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.47, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 4.86, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.47 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", - "8f39e220-8ec5-4425-b9f8-90e418e7d6d3", - "3481b163-efe1-4b08-b6af-eecb2141ddbe", - "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", - "acb7092d-3b2a-4d79-a4e3-09e7e52af475", - "156c412f-0b84-4b14-a73e-e1d07d0b148d", - "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", - "c467599b-2164-4b14-b9ca-8960936bda58", - "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", - "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", - "4122212c-2ecd-4db2-a305-20f02711d17b", - "9f622393-7da9-4ff8-9bda-12008512c7ed", - "10c2e9e3-14c8-465a-917c-28c8d9977609", - "fd67ddde-e938-481c-8721-79fa136304ae", - "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", - "5f21960f-8919-4407-8a49-57c39947c4fe", - "cc43f372-04e8-4c4c-b711-2e4159e3855d", - "9b7055a8-adca-44c6-9935-6026756d4460", - "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "0a5574e2-bc64-452e-aa4a-d40291008573", - "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "907f8610-452b-440d-849b-c803b07dedc1", - "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38" - ], - "stops": [], - "line_id": "03325740-8fd8-4309-a150-bf5624bb8be9", - "segments": [ - 0, - 7, - 28, - 40, - 71, - 89, - 91, - 96, - 104, - 107, - 109, - 112, - 116, - 118, - 125, - 134, - 139, - 142, - 146, - 147, - 149, - 151, - 153, - 155 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 390, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.478926, - 45.478915 - ], - [ - -73.479078, - 45.478918 - ], - [ - -73.479175, - 45.478922 - ], - [ - -73.479295, - 45.478922 - ], - [ - -73.479623, - 45.478936 - ], - [ - -73.480089, - 45.478949 - ], - [ - -73.481631, - 45.478977 - ], - [ - -73.482205, - 45.478986 - ], - [ - -73.482357, - 45.478989 - ], - [ - -73.482631, - 45.478995 - ], - [ - -73.482756, - 45.478997 - ], - [ - -73.484917, - 45.479027 - ], - [ - -73.485227, - 45.479031 - ], - [ - -73.485584, - 45.479045 - ], - [ - -73.485771, - 45.479058 - ], - [ - -73.486122, - 45.479058 - ], - [ - -73.486149, - 45.479058 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486526, - 45.47904 - ], - [ - -73.486789, - 45.47904 - ], - [ - -73.487039, - 45.479049 - ], - [ - -73.491329, - 45.479132 - ], - [ - -73.4915, - 45.479136 - ], - [ - -73.491713, - 45.47914 - ], - [ - -73.49213, - 45.479149 - ], - [ - -73.493367, - 45.479162 - ], - [ - -73.495803, - 45.479202 - ], - [ - -73.496137, - 45.479208 - ], - [ - -73.496207, - 45.479208 - ], - [ - -73.496272, - 45.479208 - ], - [ - -73.497101, - 45.479217 - ], - [ - -73.497981, - 45.479231 - ], - [ - -73.498188, - 45.479235 - ], - [ - -73.498413, - 45.479239 - ], - [ - -73.498669, - 45.479235 - ], - [ - -73.498683, - 45.479234 - ], - [ - -73.498818, - 45.47923 - ], - [ - -73.499162, - 45.479257 - ], - [ - -73.49961, - 45.479198 - ], - [ - -73.500019, - 45.479082 - ], - [ - -73.500107, - 45.478998 - ], - [ - -73.500272, - 45.479047 - ], - [ - -73.500354, - 45.479074 - ], - [ - -73.500428, - 45.479084 - ], - [ - -73.500459, - 45.479088 - ], - [ - -73.500565, - 45.479065 - ], - [ - -73.500641, - 45.479027 - ], - [ - -73.500662, - 45.478997 - ], - [ - -73.500703, - 45.478888 - ], - [ - -73.500708, - 45.478848 - ], - [ - -73.500618, - 45.478724 - ], - [ - -73.500601, - 45.478716 - ], - [ - -73.500554, - 45.478697 - ], - [ - -73.500465, - 45.47866 - ], - [ - -73.500394, - 45.478632 - ], - [ - -73.500191, - 45.478362 - ], - [ - -73.500102, - 45.478164 - ], - [ - -73.500052, - 45.478083 - ], - [ - -73.500034, - 45.478051 - ], - [ - -73.499927, - 45.477858 - ], - [ - -73.499728, - 45.477516 - ], - [ - -73.49902, - 45.476223 - ], - [ - -73.498986, - 45.476162 - ], - [ - -73.49875, - 45.475721 - ], - [ - -73.498676, - 45.475532 - ], - [ - -73.498471, - 45.475001 - ], - [ - -73.498395, - 45.474902 - ], - [ - -73.498245, - 45.474839 - ], - [ - -73.498064, - 45.474821 - ], - [ - -73.497868, - 45.474818 - ], - [ - -73.497243, - 45.474807 - ], - [ - -73.496473, - 45.474726 - ], - [ - -73.495455, - 45.474677 - ], - [ - -73.495312, - 45.474669 - ], - [ - -73.494958, - 45.47465 - ], - [ - -73.494447, - 45.474632 - ], - [ - -73.493546, - 45.474611 - ], - [ - -73.49348, - 45.474609 - ], - [ - -73.492987, - 45.474582 - ], - [ - -73.492833, - 45.474564 - ], - [ - -73.492566, - 45.474483 - ], - [ - -73.4924, - 45.474429 - ], - [ - -73.492221, - 45.474321 - ], - [ - -73.491964, - 45.474047 - ], - [ - -73.491842, - 45.473885 - ], - [ - -73.491633, - 45.473652 - ], - [ - -73.491514, - 45.47352 - ], - [ - -73.490819, - 45.472701 - ], - [ - -73.490153, - 45.471896 - ], - [ - -73.490057, - 45.471779 - ], - [ - -73.489969, - 45.471675 - ], - [ - -73.489868, - 45.47172 - ], - [ - -73.489522, - 45.471873 - ], - [ - -73.489116, - 45.472013 - ], - [ - -73.48901, - 45.472049 - ], - [ - -73.488898, - 45.472089 - ], - [ - -73.488483, - 45.472229 - ], - [ - -73.48807, - 45.472359 - ], - [ - -73.48703, - 45.472701 - ], - [ - -73.486715, - 45.472804 - ], - [ - -73.48607, - 45.47302 - ], - [ - -73.485914, - 45.473065 - ], - [ - -73.485421, - 45.473196 - ], - [ - -73.485194, - 45.47325 - ], - [ - -73.484873, - 45.473304 - ], - [ - -73.484747, - 45.473331 - ], - [ - -73.484539, - 45.473353 - ], - [ - -73.484309, - 45.47338 - ], - [ - -73.484047, - 45.473403 - ], - [ - -73.483794, - 45.473414 - ], - [ - -73.483761, - 45.473416 - ], - [ - -73.483613, - 45.473425 - ], - [ - -73.48263, - 45.473402 - ], - [ - -73.47906, - 45.473289 - ], - [ - -73.478915, - 45.473285 - ], - [ - -73.476016, - 45.473194 - ], - [ - -73.47556, - 45.473217 - ], - [ - -73.475367, - 45.473239 - ], - [ - -73.475163, - 45.47327 - ], - [ - -73.474723, - 45.473364 - ], - [ - -73.474613, - 45.473387 - ], - [ - -73.474578, - 45.473317 - ], - [ - -73.474431, - 45.473027 - ], - [ - -73.474274, - 45.472609 - ], - [ - -73.474213, - 45.472397 - ], - [ - -73.474173, - 45.472208 - ], - [ - -73.474165, - 45.472163 - ], - [ - -73.474141, - 45.472028 - ], - [ - -73.474134, - 45.471985 - ], - [ - -73.47411, - 45.47183 - ], - [ - -73.474121, - 45.471228 - ], - [ - -73.474166, - 45.470967 - ], - [ - -73.474399, - 45.469698 - ], - [ - -73.474428, - 45.469538 - ], - [ - -73.474454, - 45.469396 - ], - [ - -73.474489, - 45.469055 - ], - [ - -73.474521, - 45.468786 - ], - [ - -73.474529, - 45.468717 - ], - [ - -73.474534, - 45.468636 - ], - [ - -73.474544, - 45.468492 - ], - [ - -73.474545, - 45.468488 - ], - [ - -73.474528, - 45.468236 - ], - [ - -73.474508, - 45.467936 - ], - [ - -73.474508, - 45.467294 - ], - [ - -73.474542, - 45.4665 - ], - [ - -73.474546, - 45.466404 - ], - [ - -73.474554, - 45.466199 - ], - [ - -73.474621, - 45.465194 - ], - [ - -73.474664, - 45.464506 - ], - [ - -73.474669, - 45.464397 - ], - [ - -73.474734, - 45.464067 - ], - [ - -73.474884, - 45.463697 - ], - [ - -73.475002, - 45.463492 - ], - [ - -73.47522, - 45.463212 - ], - [ - -73.475408, - 45.463039 - ], - [ - -73.47556, - 45.462909 - ], - [ - -73.475821, - 45.462711 - ], - [ - -73.476105, - 45.462495 - ], - [ - -73.47646, - 45.462245 - ], - [ - -73.476557, - 45.462176 - ], - [ - -73.477249, - 45.461685 - ], - [ - -73.478237, - 45.460939 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.47888, - 45.460399 - ], - [ - -73.479008, - 45.460264 - ], - [ - -73.479302, - 45.459904 - ], - [ - -73.479398, - 45.459769 - ], - [ - -73.479488, - 45.459616 - ], - [ - -73.479616, - 45.459382 - ], - [ - -73.479653, - 45.459302 - ], - [ - -73.479699, - 45.459202 - ], - [ - -73.47976, - 45.459027 - ], - [ - -73.479776, - 45.458968 - ], - [ - -73.479808, - 45.458865 - ], - [ - -73.479852, - 45.458707 - ], - [ - -73.479891, - 45.458478 - ], - [ - -73.479913, - 45.458325 - ], - [ - -73.479923, - 45.458145 - ], - [ - -73.479926, - 45.458073 - ], - [ - -73.479893, - 45.457659 - ], - [ - -73.479819, - 45.45689 - ], - [ - -73.479803, - 45.456723 - ], - [ - -73.479792, - 45.456611 - ], - [ - -73.479747, - 45.456084 - ], - [ - -73.479731, - 45.4559 - ], - [ - -73.479696, - 45.455396 - ], - [ - -73.479645, - 45.454845 - ], - [ - -73.479629, - 45.454671 - ], - [ - -73.479566, - 45.454028 - ], - [ - -73.479521, - 45.453709 - ], - [ - -73.47946, - 45.45338 - ], - [ - -73.479374, - 45.453016 - ], - [ - -73.479306, - 45.452759 - ], - [ - -73.479278, - 45.452656 - ], - [ - -73.479074, - 45.452084 - ], - [ - -73.478902, - 45.451688 - ], - [ - -73.478649, - 45.451162 - ], - [ - -73.478451, - 45.450779 - ], - [ - -73.47833, - 45.450536 - ], - [ - -73.478167, - 45.450257 - ], - [ - -73.478007, - 45.45005 - ], - [ - -73.478004, - 45.450046 - ], - [ - -73.477921, - 45.449951 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.4775, - 45.449189 - ] - ] - }, - "id": 391, - "properties": { - "id": "d8fa3477-fe5f-4913-ad86-9e706fb3b5f8", - "data": { - "gtfs": { - "shape_id": "695_1_A" - }, - "segments": [ - { - "distanceMeters": 268, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 420, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 336, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 565, - "travelTimeSeconds": 89 - }, - { - "distanceMeters": 399, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 138, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 285, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 84, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 774, - "travelTimeSeconds": 122 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 271, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 25 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7198, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3313.0174595807075, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.31, - "travelTimeWithoutDwellTimesSeconds": 1140, - "operatingTimeWithLayoverTimeSeconds": 1320, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1140, - "operatingSpeedWithLayoverMetersPerSecond": 5.45, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.31 - }, - "mode": "bus", - "name": "École Lucille-Teasdale", - "color": "#A32638", - "nodes": [ - "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", - "528dcb9e-5a83-46d3-8e03-42692ca57a5a", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", - "6b54424b-6f85-4448-8e7d-a05da4ef5b95", - "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", - "aa2b19e6-8fc9-4313-8ff2-0087861c575d", - "28d21225-939d-4260-9ed4-5c109f412ad9", - "be011751-8885-454f-b767-5c0f1402d83f", - "c6165892-3719-417f-8d25-92e65471b42c", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", - "2ef5dac7-c226-43bb-8534-6642e7a8ab89", - "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", - "3a8b9936-4595-4770-a3f4-b31253602356", - "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", - "87774b57-5ee3-418d-948c-ba4db73d3893", - "c25adb1f-635e-4881-a89d-af8a9ea5ca92", - "4509b80b-76a5-49de-acb2-533a50bafac5", - "fe1d7eea-bdc6-4263-a13b-eb6645c5e393" - ], - "stops": [], - "line_id": "9c5e775b-df6b-4c50-a1e3-479109a4a402", - "segments": [ - 0, - 8, - 15, - 23, - 27, - 32, - 62, - 74, - 77, - 86, - 89, - 99, - 110, - 114, - 120, - 129, - 134, - 137, - 159, - 162, - 170, - 181, - 187, - 193, - 201 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 391, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.4775, - 45.449189 - ], - [ - -73.477354, - 45.449101 - ], - [ - -73.476598, - 45.448646 - ], - [ - -73.476493, - 45.448669 - ], - [ - -73.476429, - 45.448682 - ], - [ - -73.476264, - 45.448894 - ], - [ - -73.476196, - 45.449002 - ], - [ - -73.47626, - 45.449029 - ], - [ - -73.476498, - 45.449128 - ], - [ - -73.476722, - 45.449231 - ], - [ - -73.476897, - 45.449321 - ], - [ - -73.477126, - 45.449456 - ], - [ - -73.477278, - 45.449564 - ], - [ - -73.477431, - 45.449681 - ], - [ - -73.477567, - 45.449794 - ], - [ - -73.477783, - 45.450014 - ], - [ - -73.477866, - 45.4501 - ], - [ - -73.478024, - 45.450307 - ], - [ - -73.478182, - 45.450577 - ], - [ - -73.4785, - 45.451198 - ], - [ - -73.478751, - 45.451724 - ], - [ - -73.478921, - 45.452116 - ], - [ - -73.479084, - 45.452568 - ], - [ - -73.479123, - 45.452678 - ], - [ - -73.479207, - 45.453038 - ], - [ - -73.479292, - 45.453398 - ], - [ - -73.479352, - 45.453722 - ], - [ - -73.479396, - 45.454042 - ], - [ - -73.47947, - 45.454759 - ], - [ - -73.47953, - 45.455342 - ], - [ - -73.479549, - 45.455666 - ], - [ - -73.479585, - 45.456089 - ], - [ - -73.479606, - 45.456391 - ], - [ - -73.479622, - 45.456606 - ], - [ - -73.479632, - 45.456719 - ], - [ - -73.47968, - 45.457234 - ], - [ - -73.47972, - 45.457668 - ], - [ - -73.479747, - 45.458082 - ], - [ - -73.479754, - 45.45832 - ], - [ - -73.479732, - 45.458469 - ], - [ - -73.479695, - 45.458689 - ], - [ - -73.479603, - 45.459 - ], - [ - -73.479545, - 45.459171 - ], - [ - -73.479522, - 45.459219 - ], - [ - -73.479465, - 45.459342 - ], - [ - -73.479339, - 45.459576 - ], - [ - -73.479253, - 45.45972 - ], - [ - -73.479162, - 45.45985 - ], - [ - -73.478872, - 45.460205 - ], - [ - -73.478751, - 45.460331 - ], - [ - -73.47834, - 45.460685 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.476665, - 45.46196 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.474374, - 45.468205 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.47439, - 45.468704 - ], - [ - -73.474292, - 45.469387 - ], - [ - -73.474263, - 45.469539 - ], - [ - -73.474234, - 45.469689 - ], - [ - -73.474156, - 45.470095 - ], - [ - -73.474035, - 45.470724 - ], - [ - -73.473974, - 45.47107 - ], - [ - -73.473942, - 45.471336 - ], - [ - -73.473932, - 45.471601 - ], - [ - -73.473936, - 45.471662 - ], - [ - -73.473947, - 45.471826 - ], - [ - -73.473986, - 45.472118 - ], - [ - -73.473998, - 45.472177 - ], - [ - -73.474046, - 45.47242 - ], - [ - -73.474106, - 45.47264 - ], - [ - -73.474275, - 45.473063 - ], - [ - -73.474463, - 45.473437 - ], - [ - -73.474513, - 45.473518 - ], - [ - -73.474653, - 45.473477 - ], - [ - -73.475183, - 45.473387 - ], - [ - -73.475204, - 45.473383 - ], - [ - -73.475207, - 45.473382 - ], - [ - -73.4754, - 45.473356 - ], - [ - -73.47558, - 45.473334 - ], - [ - -73.476017, - 45.473311 - ], - [ - -73.478707, - 45.4734 - ], - [ - -73.478906, - 45.473406 - ], - [ - -73.482444, - 45.473518 - ], - [ - -73.482622, - 45.473524 - ], - [ - -73.483288, - 45.473542 - ], - [ - -73.483471, - 45.473542 - ], - [ - -73.483606, - 45.473542 - ], - [ - -73.484062, - 45.473524 - ], - [ - -73.484567, - 45.473475 - ], - [ - -73.484784, - 45.473448 - ], - [ - -73.485243, - 45.473362 - ], - [ - -73.485556, - 45.473295 - ], - [ - -73.485862, - 45.473204 - ], - [ - -73.485874, - 45.4732 - ], - [ - -73.485995, - 45.473164 - ], - [ - -73.486151, - 45.473119 - ], - [ - -73.486633, - 45.472962 - ], - [ - -73.486787, - 45.472912 - ], - [ - -73.488142, - 45.472472 - ], - [ - -73.488555, - 45.472341 - ], - [ - -73.488966, - 45.472197 - ], - [ - -73.489081, - 45.472161 - ], - [ - -73.489198, - 45.472121 - ], - [ - -73.489607, - 45.471977 - ], - [ - -73.489816, - 45.471885 - ], - [ - -73.490057, - 45.471779 - ], - [ - -73.4902, - 45.471953 - ], - [ - -73.490819, - 45.472701 - ], - [ - -73.491108, - 45.473042 - ], - [ - -73.491514, - 45.47352 - ], - [ - -73.491842, - 45.473885 - ], - [ - -73.491964, - 45.474047 - ], - [ - -73.492221, - 45.474321 - ], - [ - -73.4924, - 45.474429 - ], - [ - -73.492566, - 45.474483 - ], - [ - -73.492833, - 45.474564 - ], - [ - -73.492987, - 45.474582 - ], - [ - -73.493312, - 45.4746 - ], - [ - -73.49348, - 45.474609 - ], - [ - -73.494447, - 45.474632 - ], - [ - -73.494958, - 45.47465 - ], - [ - -73.495308, - 45.474669 - ], - [ - -73.495455, - 45.474677 - ], - [ - -73.496473, - 45.474726 - ], - [ - -73.497243, - 45.474807 - ], - [ - -73.498064, - 45.474821 - ], - [ - -73.498721, - 45.476029 - ], - [ - -73.498798, - 45.476171 - ], - [ - -73.499541, - 45.477511 - ], - [ - -73.499719, - 45.477795 - ], - [ - -73.499782, - 45.477895 - ], - [ - -73.49991, - 45.478097 - ], - [ - -73.499973, - 45.478195 - ], - [ - -73.50001, - 45.478273 - ], - [ - -73.500209, - 45.478682 - ], - [ - -73.500175, - 45.478743 - ], - [ - -73.500117, - 45.478833 - ], - [ - -73.500062, - 45.478934 - ], - [ - -73.499809, - 45.479021 - ], - [ - -73.4995, - 45.479103 - ], - [ - -73.498818, - 45.47923 - ], - [ - -73.498683, - 45.479234 - ], - [ - -73.498669, - 45.479235 - ], - [ - -73.498482, - 45.479238 - ], - [ - -73.498413, - 45.479239 - ], - [ - -73.498188, - 45.479235 - ], - [ - -73.497101, - 45.479217 - ], - [ - -73.496432, - 45.479209 - ], - [ - -73.496272, - 45.479208 - ], - [ - -73.496207, - 45.479208 - ], - [ - -73.496137, - 45.479208 - ], - [ - -73.493367, - 45.479162 - ], - [ - -73.49213, - 45.479149 - ], - [ - -73.491873, - 45.479143 - ], - [ - -73.491713, - 45.47914 - ], - [ - -73.491329, - 45.479132 - ], - [ - -73.487039, - 45.479049 - ], - [ - -73.486789, - 45.47904 - ], - [ - -73.486648, - 45.47904 - ], - [ - -73.486526, - 45.47904 - ], - [ - -73.486424, - 45.479045 - ], - [ - -73.486246, - 45.479054 - ], - [ - -73.486149, - 45.479058 - ], - [ - -73.485771, - 45.479058 - ], - [ - -73.485584, - 45.479045 - ], - [ - -73.485227, - 45.479031 - ], - [ - -73.484917, - 45.479027 - ], - [ - -73.482807, - 45.478997 - ], - [ - -73.482756, - 45.478997 - ], - [ - -73.482631, - 45.478995 - ], - [ - -73.482205, - 45.478986 - ], - [ - -73.481631, - 45.478977 - ], - [ - -73.480089, - 45.478949 - ], - [ - -73.479623, - 45.478936 - ], - [ - -73.479295, - 45.478922 - ], - [ - -73.479286, - 45.478922 - ] - ] - }, - "id": 392, - "properties": { - "id": "2ee1fcc2-a2fc-4a5d-a7be-d9acccee9a97", - "data": { - "gtfs": { - "shape_id": "695_2_R" - }, - "segments": [ - { - "distanceMeters": 619, - "travelTimeSeconds": 97 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 94, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 223, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 750, - "travelTimeSeconds": 118 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 66, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 276, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 260, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 360, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 477, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 356, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 300, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 44 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 7261, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3313.0174595807075, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.37, - "travelTimeWithoutDwellTimesSeconds": 1140, - "operatingTimeWithLayoverTimeSeconds": 1320, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1140, - "operatingSpeedWithLayoverMetersPerSecond": 5.5, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.37 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", - "c25adb1f-635e-4881-a89d-af8a9ea5ca92", - "87774b57-5ee3-418d-948c-ba4db73d3893", - "1ea7db5e-3ee6-4553-9276-7c24296c866d", - "9a86a407-515f-4b5e-8a56-9a4c52c91c96", - "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "be3bd929-da81-47c1-9a06-fee0adc72da5", - "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", - "3a8b9936-4595-4770-a3f4-b31253602356", - "80a85fd6-8b7e-4c4c-b616-26338ab496f1", - "2ef5dac7-c226-43bb-8534-6642e7a8ab89", - "a9b02686-8465-48b9-89ba-773a03aed1e8", - "17fd1ec9-db8e-4d18-a174-72ce7cb4c434", - "b92e7022-9719-4479-bc45-c3dac5a8d257", - "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "c6165892-3719-417f-8d25-92e65471b42c", - "be011751-8885-454f-b767-5c0f1402d83f", - "28d21225-939d-4260-9ed4-5c109f412ad9", - "aa2b19e6-8fc9-4313-8ff2-0087861c575d", - "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", - "6b54424b-6f85-4448-8e7d-a05da4ef5b95", - "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", - "dfda995e-8686-4f89-a9b1-4109795a27c3", - "528dcb9e-5a83-46d3-8e03-42692ca57a5a", - "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498" - ], - "stops": [], - "line_id": "9c5e775b-df6b-4c50-a1e3-479109a4a402", - "segments": [ - 0, - 22, - 28, - 32, - 35, - 43, - 50, - 52, - 80, - 85, - 92, - 104, - 108, - 110, - 120, - 124, - 132, - 136, - 145, - 149, - 154, - 171, - 175, - 181, - 186, - 195 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 392, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.454651, - 45.465626 - ], - [ - -73.45456, - 45.465692 - ], - [ - -73.453819, - 45.466205 - ], - [ - -73.453432, - 45.466434 - ], - [ - -73.453035, - 45.466641 - ], - [ - -73.452922, - 45.46669 - ], - [ - -73.45278, - 45.466751 - ], - [ - -73.452589, - 45.466834 - ], - [ - -73.451705, - 45.467139 - ], - [ - -73.451627, - 45.467166 - ], - [ - -73.45158, - 45.467183 - ], - [ - -73.451009, - 45.46738 - ], - [ - -73.450937, - 45.467405 - ], - [ - -73.450156, - 45.467679 - ], - [ - -73.449888, - 45.467769 - ], - [ - -73.449338, - 45.467948 - ], - [ - -73.44837, - 45.46829 - ], - [ - -73.447748, - 45.468524 - ], - [ - -73.447289, - 45.468721 - ], - [ - -73.446421, - 45.469171 - ], - [ - -73.44631, - 45.469229 - ], - [ - -73.445905, - 45.469485 - ], - [ - -73.445671, - 45.469643 - ], - [ - -73.445475, - 45.469778 - ], - [ - -73.445396, - 45.469832 - ], - [ - -73.445298, - 45.469899 - ], - [ - -73.444328, - 45.470583 - ], - [ - -73.444073, - 45.470763 - ], - [ - -73.442655, - 45.471763 - ], - [ - -73.442644, - 45.471771 - ], - [ - -73.442519, - 45.471859 - ], - [ - -73.441942, - 45.47227 - ], - [ - -73.441019, - 45.472928 - ], - [ - -73.44089, - 45.473019 - ], - [ - -73.440133, - 45.47251 - ], - [ - -73.439193, - 45.471877 - ], - [ - -73.438158, - 45.471179 - ], - [ - -73.438035, - 45.471097 - ], - [ - -73.435594, - 45.469484 - ], - [ - -73.435506, - 45.469426 - ], - [ - -73.434523, - 45.468775 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.434426, - 45.468557 - ], - [ - -73.434574, - 45.46844 - ], - [ - -73.434603, - 45.468421 - ], - [ - -73.434654, - 45.468386 - ], - [ - -73.434706, - 45.46835 - ], - [ - -73.43479, - 45.468319 - ], - [ - -73.434953, - 45.468251 - ], - [ - -73.435208, - 45.468188 - ], - [ - -73.435895, - 45.468018 - ], - [ - -73.437598, - 45.467581 - ], - [ - -73.437909, - 45.467502 - ], - [ - -73.438637, - 45.467322 - ], - [ - -73.438692, - 45.467309 - ], - [ - -73.439001, - 45.46721 - ], - [ - -73.439742, - 45.466711 - ], - [ - -73.439775, - 45.466686 - ], - [ - -73.440049, - 45.466474 - ], - [ - -73.440337, - 45.466252 - ], - [ - -73.440976, - 45.46578 - ], - [ - -73.440101, - 45.465189 - ], - [ - -73.438668, - 45.46422 - ], - [ - -73.438391, - 45.464033 - ], - [ - -73.438331, - 45.463826 - ], - [ - -73.4383, - 45.463696 - ], - [ - -73.438272, - 45.463574 - ], - [ - -73.438292, - 45.463399 - ], - [ - -73.438344, - 45.463264 - ], - [ - -73.438333, - 45.463115 - ], - [ - -73.438984, - 45.462639 - ], - [ - -73.43934, - 45.462423 - ], - [ - -73.439564, - 45.462315 - ], - [ - -73.439819, - 45.462232 - ], - [ - -73.439923, - 45.462198 - ], - [ - -73.440096, - 45.462131 - ], - [ - -73.44047, - 45.46196 - ], - [ - -73.440903, - 45.461686 - ], - [ - -73.442487, - 45.460609 - ], - [ - -73.44257, - 45.460553 - ], - [ - -73.443294, - 45.460085 - ], - [ - -73.444686, - 45.459087 - ], - [ - -73.444921, - 45.458939 - ], - [ - -73.44522, - 45.458817 - ], - [ - -73.445516, - 45.458705 - ], - [ - -73.445635, - 45.458683 - ], - [ - -73.445566, - 45.458548 - ], - [ - -73.445519, - 45.458431 - ], - [ - -73.445499, - 45.458359 - ], - [ - -73.445487, - 45.458269 - ], - [ - -73.445484, - 45.458192 - ], - [ - -73.445494, - 45.458098 - ], - [ - -73.445517, - 45.45799 - ], - [ - -73.445533, - 45.457936 - ], - [ - -73.44556, - 45.457868 - ], - [ - -73.445587, - 45.457814 - ], - [ - -73.445622, - 45.45776 - ], - [ - -73.445677, - 45.457684 - ], - [ - -73.445734, - 45.457616 - ], - [ - -73.445802, - 45.457549 - ], - [ - -73.44586, - 45.457499 - ], - [ - -73.446093, - 45.457338 - ], - [ - -73.446222, - 45.457252 - ], - [ - -73.446277, - 45.457216 - ], - [ - -73.446296, - 45.457204 - ], - [ - -73.446306, - 45.457198 - ], - [ - -73.446333, - 45.457189 - ], - [ - -73.446356, - 45.457189 - ], - [ - -73.446378, - 45.457189 - ], - [ - -73.446401, - 45.457189 - ], - [ - -73.446422, - 45.457203 - ], - [ - -73.446491, - 45.457243 - ], - [ - -73.446522, - 45.457266 - ], - [ - -73.446542, - 45.457279 - ], - [ - -73.446704, - 45.457387 - ], - [ - -73.447008, - 45.457621 - ], - [ - -73.447347, - 45.457863 - ], - [ - -73.44872, - 45.458837 - ], - [ - -73.449148, - 45.459368 - ], - [ - -73.449533, - 45.459751 - ], - [ - -73.450156, - 45.460237 - ], - [ - -73.450867, - 45.460728 - ], - [ - -73.451566, - 45.461218 - ], - [ - -73.45285, - 45.462125 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.452835, - 45.462344 - ], - [ - -73.452775, - 45.462447 - ], - [ - -73.452703, - 45.4626 - ], - [ - -73.452685, - 45.462655 - ], - [ - -73.452663, - 45.462722 - ], - [ - -73.452634, - 45.462879 - ], - [ - -73.45263, - 45.463001 - ], - [ - -73.452662, - 45.463158 - ], - [ - -73.452721, - 45.463379 - ], - [ - -73.452802, - 45.463536 - ], - [ - -73.452912, - 45.463662 - ], - [ - -73.453261, - 45.463932 - ], - [ - -73.453543, - 45.464139 - ], - [ - -73.453617, - 45.464193 - ], - [ - -73.453971, - 45.464449 - ], - [ - -73.45432, - 45.464702 - ], - [ - -73.454645, - 45.464929 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.455291, - 45.465378 - ], - [ - -73.455597, - 45.465209 - ], - [ - -73.455721, - 45.465163 - ], - [ - -73.455952, - 45.465079 - ], - [ - -73.456078, - 45.465023 - ], - [ - -73.456262, - 45.464907 - ], - [ - -73.456407, - 45.464824 - ], - [ - -73.456567, - 45.464772 - ], - [ - -73.456717, - 45.464744 - ], - [ - -73.456888, - 45.464733 - ], - [ - -73.457035, - 45.464719 - ], - [ - -73.45718, - 45.464674 - ], - [ - -73.457301, - 45.4646 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457473, - 45.46447 - ], - [ - -73.457535, - 45.464441 - ], - [ - -73.457603, - 45.46442 - ], - [ - -73.457626, - 45.464413 - ], - [ - -73.457735, - 45.464395 - ], - [ - -73.457836, - 45.464393 - ], - [ - -73.457944, - 45.464401 - ], - [ - -73.458017, - 45.46441 - ], - [ - -73.45812, - 45.464427 - ], - [ - -73.458231, - 45.464451 - ], - [ - -73.458392, - 45.464491 - ], - [ - -73.458598, - 45.464536 - ], - [ - -73.458915, - 45.464603 - ], - [ - -73.459184, - 45.464658 - ], - [ - -73.459848, - 45.464797 - ], - [ - -73.460341, - 45.46487 - ], - [ - -73.460876, - 45.464928 - ], - [ - -73.461292, - 45.464968 - ], - [ - -73.461888, - 45.465033 - ], - [ - -73.462599, - 45.465146 - ], - [ - -73.463202, - 45.465285 - ], - [ - -73.463734, - 45.465422 - ], - [ - -73.464137, - 45.465531 - ], - [ - -73.464519, - 45.465639 - ], - [ - -73.464829, - 45.465721 - ], - [ - -73.465021, - 45.465762 - ], - [ - -73.465202, - 45.465781 - ], - [ - -73.465352, - 45.4658 - ], - [ - -73.465498, - 45.465796 - ], - [ - -73.465647, - 45.465796 - ], - [ - -73.465791, - 45.465789 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466488, - 45.465573 - ], - [ - -73.466352, - 45.465288 - ], - [ - -73.466238, - 45.465062 - ], - [ - -73.466142, - 45.464853 - ], - [ - -73.466048, - 45.464638 - ], - [ - -73.46599, - 45.464498 - ], - [ - -73.465967, - 45.464441 - ], - [ - -73.465777, - 45.463945 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465663, - 45.463449 - ], - [ - -73.465646, - 45.463238 - ], - [ - -73.465636, - 45.463073 - ], - [ - -73.465461, - 45.461275 - ], - [ - -73.465446, - 45.461128 - ], - [ - -73.465251, - 45.459263 - ], - [ - -73.465215, - 45.458888 - ], - [ - -73.465199, - 45.458728 - ], - [ - -73.465132, - 45.458038 - ], - [ - -73.465113, - 45.457592 - ], - [ - -73.465124, - 45.457143 - ], - [ - -73.465143, - 45.45685 - ], - [ - -73.465153, - 45.456755 - ], - [ - -73.465199, - 45.456301 - ], - [ - -73.465244, - 45.456 - ], - [ - -73.465335, - 45.455572 - ], - [ - -73.465339, - 45.455554 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465617, - 45.454677 - ], - [ - -73.465629, - 45.454641 - ], - [ - -73.465632, - 45.454636 - ], - [ - -73.465694, - 45.454481 - ], - [ - -73.465735, - 45.45438 - ], - [ - -73.465853, - 45.45411 - ], - [ - -73.466087, - 45.453654 - ], - [ - -73.46613, - 45.45357 - ], - [ - -73.466877, - 45.452297 - ], - [ - -73.467521, - 45.451236 - ], - [ - -73.468182, - 45.450183 - ], - [ - -73.469986, - 45.447403 - ], - [ - -73.470055, - 45.447298 - ], - [ - -73.470111, - 45.447211 - ], - [ - -73.470215, - 45.447052 - ], - [ - -73.471183, - 45.44739 - ], - [ - -73.471746, - 45.44757 - ], - [ - -73.472443, - 45.447795 - ], - [ - -73.473347, - 45.448088 - ], - [ - -73.473437, - 45.448115 - ], - [ - -73.475223, - 45.448691 - ], - [ - -73.475787, - 45.448871 - ], - [ - -73.476196, - 45.449002 - ], - [ - -73.476498, - 45.449128 - ], - [ - -73.476722, - 45.449231 - ], - [ - -73.476897, - 45.449321 - ], - [ - -73.477126, - 45.449456 - ], - [ - -73.477278, - 45.449564 - ], - [ - -73.477431, - 45.449681 - ], - [ - -73.477567, - 45.449794 - ], - [ - -73.477697, - 45.449927 - ], - [ - -73.477783, - 45.450014 - ], - [ - -73.477921, - 45.449951 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.4775, - 45.449189 - ] - ] - }, - "id": 393, - "properties": { - "id": "7e0a5cff-1244-4d31-bbb6-fba303fd976d", - "data": { - "gtfs": { - "shape_id": "696_1_A" - }, - "segments": [ - { - "distanceMeters": 193, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 155, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 411, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 255, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 310, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 275, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 55, - "travelTimeSeconds": 9 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 356, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 287, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 1272, - "travelTimeSeconds": 200 - }, - { - "distanceMeters": 66, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 1518, - "travelTimeSeconds": 238 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 477, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 898, - "travelTimeSeconds": 141 - }, - { - "distanceMeters": 861, - "travelTimeSeconds": 136 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9161, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2555.4553839081764, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.36, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 5.65, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.36 - }, - "mode": "bus", - "name": "École Lucille-Teasdale", - "color": "#A32638", - "nodes": [ - "bd9b4c12-08ed-4715-ae67-eb179ed7f974", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "ff779c9a-cd83-463a-8d0c-a93f3584a187", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", - "c8919560-2bb2-4063-8184-8e6c296badbe", - "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", - "14e293a6-352a-4156-8578-66d0b5bdcc1f", - "62558b4d-75af-4b04-8040-a30de5a89658", - "988c86da-04eb-4067-b650-f13c447b17e7", - "4827a17d-8dc9-4cbd-8430-3334ebece64a", - "504cb53f-f1f4-46f2-81f5-f99fef8227fd", - "a02ece0d-dd7f-42ce-ab40-b24192e1114e", - "af14ce12-74fa-4edf-a439-c058d0014323", - "735e4ba2-6503-4586-98da-feccec61a212", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "b6dfeeab-9981-4db8-9a90-2e14691bf516", - "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", - "74887516-47d5-4269-9513-84672d18e287", - "1e3a74d9-9d8a-467f-a82e-3dafee501e32", - "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", - "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", - "fe1d7eea-bdc6-4263-a13b-eb6645c5e393" - ], - "stops": [], - "line_id": "a69faa44-2d07-4242-a96a-f2eb2b3cbc5c", - "segments": [ - 0, - 6, - 11, - 19, - 27, - 28, - 32, - 36, - 38, - 40, - 44, - 51, - 58, - 62, - 73, - 78, - 123, - 128, - 137, - 141, - 203, - 205, - 220, - 231 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 393, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.4775, - 45.449189 - ], - [ - -73.477354, - 45.449101 - ], - [ - -73.476598, - 45.448646 - ], - [ - -73.476493, - 45.448669 - ], - [ - -73.476429, - 45.448682 - ], - [ - -73.476264, - 45.448894 - ], - [ - -73.475856, - 45.448768 - ], - [ - -73.475454, - 45.448632 - ], - [ - -73.475296, - 45.448579 - ], - [ - -73.474198, - 45.448236 - ], - [ - -73.473507, - 45.448007 - ], - [ - -73.47251, - 45.447683 - ], - [ - -73.471666, - 45.447408 - ], - [ - -73.471252, - 45.447282 - ], - [ - -73.47028, - 45.446953 - ], - [ - -73.470002, - 45.446863 - ], - [ - -73.469936, - 45.446962 - ], - [ - -73.469888, - 45.447037 - ], - [ - -73.4697, - 45.447326 - ], - [ - -73.467906, - 45.450089 - ], - [ - -73.467328, - 45.451002 - ], - [ - -73.46669, - 45.452054 - ], - [ - -73.465968, - 45.453278 - ], - [ - -73.465918, - 45.453363 - ], - [ - -73.465707, - 45.453755 - ], - [ - -73.46558, - 45.454016 - ], - [ - -73.46536, - 45.454529 - ], - [ - -73.465344, - 45.454574 - ], - [ - -73.465259, - 45.45482 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.465167, - 45.455082 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465048, - 45.455509 - ], - [ - -73.465041, - 45.455536 - ], - [ - -73.464975, - 45.455829 - ], - [ - -73.464919, - 45.45613 - ], - [ - -73.464878, - 45.456427 - ], - [ - -73.464848, - 45.456873 - ], - [ - -73.464844, - 45.457169 - ], - [ - -73.464871, - 45.457574 - ], - [ - -73.46498, - 45.459088 - ], - [ - -73.464994, - 45.459278 - ], - [ - -73.465215, - 45.461562 - ], - [ - -73.465247, - 45.461893 - ], - [ - -73.465168, - 45.462216 - ], - [ - -73.465077, - 45.462593 - ], - [ - -73.464995, - 45.462888 - ], - [ - -73.46481, - 45.463312 - ], - [ - -73.464565, - 45.463588 - ], - [ - -73.464117, - 45.46375 - ], - [ - -73.463733, - 45.463906 - ], - [ - -73.463323, - 45.463985 - ], - [ - -73.462946, - 45.464058 - ], - [ - -73.461977, - 45.464188 - ], - [ - -73.461326, - 45.464235 - ], - [ - -73.460353, - 45.4642 - ], - [ - -73.459906, - 45.464144 - ], - [ - -73.459408, - 45.464052 - ], - [ - -73.458521, - 45.463796 - ], - [ - -73.458275, - 45.463724 - ], - [ - -73.457681, - 45.463496 - ], - [ - -73.457669, - 45.463491 - ], - [ - -73.456975, - 45.463149 - ], - [ - -73.456896, - 45.463092 - ], - [ - -73.456843, - 45.463043 - ], - [ - -73.456777, - 45.462977 - ], - [ - -73.456717, - 45.462912 - ], - [ - -73.456666, - 45.462833 - ], - [ - -73.456625, - 45.462758 - ], - [ - -73.456603, - 45.462667 - ], - [ - -73.456593, - 45.462539 - ], - [ - -73.4566, - 45.462399 - ], - [ - -73.456621, - 45.462264 - ], - [ - -73.456608, - 45.461964 - ], - [ - -73.457019, - 45.462007 - ], - [ - -73.457033, - 45.462012 - ], - [ - -73.457292, - 45.46211 - ], - [ - -73.457369, - 45.46218 - ], - [ - -73.45742, - 45.46227 - ], - [ - -73.45744, - 45.462394 - ], - [ - -73.457465, - 45.462588 - ], - [ - -73.457392, - 45.462758 - ], - [ - -73.457069, - 45.463208 - ], - [ - -73.457053, - 45.463231 - ], - [ - -73.456947, - 45.463378 - ], - [ - -73.456792, - 45.463594 - ], - [ - -73.456553, - 45.463927 - ], - [ - -73.456063, - 45.464611 - ], - [ - -73.45514, - 45.465274 - ], - [ - -73.454379, - 45.464743 - ], - [ - -73.45432, - 45.464702 - ], - [ - -73.454244, - 45.464647 - ], - [ - -73.453971, - 45.464449 - ], - [ - -73.453617, - 45.464193 - ], - [ - -73.453261, - 45.463932 - ], - [ - -73.452912, - 45.463662 - ], - [ - -73.452802, - 45.463536 - ], - [ - -73.452721, - 45.463379 - ], - [ - -73.452662, - 45.463158 - ], - [ - -73.45263, - 45.463001 - ], - [ - -73.452634, - 45.462879 - ], - [ - -73.452663, - 45.462722 - ], - [ - -73.452703, - 45.4626 - ], - [ - -73.452775, - 45.462447 - ], - [ - -73.452835, - 45.462344 - ], - [ - -73.452839, - 45.462338 - ], - [ - -73.452943, - 45.462191 - ], - [ - -73.452639, - 45.461976 - ], - [ - -73.451754, - 45.461351 - ], - [ - -73.451566, - 45.461218 - ], - [ - -73.450867, - 45.460728 - ], - [ - -73.450283, - 45.460325 - ], - [ - -73.450156, - 45.460237 - ], - [ - -73.449533, - 45.459751 - ], - [ - -73.449148, - 45.459368 - ], - [ - -73.448875, - 45.45903 - ], - [ - -73.44872, - 45.458837 - ], - [ - -73.447008, - 45.457621 - ], - [ - -73.446704, - 45.457387 - ], - [ - -73.446542, - 45.457279 - ], - [ - -73.446522, - 45.457266 - ], - [ - -73.446491, - 45.457243 - ], - [ - -73.446422, - 45.457203 - ], - [ - -73.446401, - 45.457189 - ], - [ - -73.446378, - 45.457189 - ], - [ - -73.446356, - 45.457189 - ], - [ - -73.446333, - 45.457189 - ], - [ - -73.446306, - 45.457198 - ], - [ - -73.446296, - 45.457204 - ], - [ - -73.446277, - 45.457216 - ], - [ - -73.446222, - 45.457252 - ], - [ - -73.446093, - 45.457338 - ], - [ - -73.445979, - 45.457417 - ], - [ - -73.44586, - 45.457499 - ], - [ - -73.445839, - 45.457517 - ], - [ - -73.445802, - 45.457549 - ], - [ - -73.445734, - 45.457616 - ], - [ - -73.445677, - 45.457684 - ], - [ - -73.445622, - 45.45776 - ], - [ - -73.445587, - 45.457814 - ], - [ - -73.44556, - 45.457868 - ], - [ - -73.445533, - 45.457936 - ], - [ - -73.445517, - 45.45799 - ], - [ - -73.445494, - 45.458098 - ], - [ - -73.445484, - 45.458192 - ], - [ - -73.445487, - 45.458269 - ], - [ - -73.445499, - 45.458359 - ], - [ - -73.445519, - 45.458431 - ], - [ - -73.445566, - 45.458548 - ], - [ - -73.445584, - 45.458583 - ], - [ - -73.445635, - 45.458683 - ], - [ - -73.445516, - 45.458705 - ], - [ - -73.44522, - 45.458817 - ], - [ - -73.444921, - 45.458939 - ], - [ - -73.444686, - 45.459087 - ], - [ - -73.444124, - 45.45949 - ], - [ - -73.443294, - 45.460085 - ], - [ - -73.442688, - 45.460477 - ], - [ - -73.44257, - 45.460553 - ], - [ - -73.440903, - 45.461686 - ], - [ - -73.44047, - 45.46196 - ], - [ - -73.440096, - 45.462131 - ], - [ - -73.439963, - 45.462183 - ], - [ - -73.439923, - 45.462198 - ], - [ - -73.439564, - 45.462315 - ], - [ - -73.43934, - 45.462423 - ], - [ - -73.438984, - 45.462639 - ], - [ - -73.438333, - 45.463115 - ], - [ - -73.438344, - 45.463264 - ], - [ - -73.438292, - 45.463399 - ], - [ - -73.438272, - 45.463574 - ], - [ - -73.4383, - 45.463696 - ], - [ - -73.438331, - 45.463826 - ], - [ - -73.438391, - 45.464033 - ], - [ - -73.438977, - 45.46443 - ], - [ - -73.440859, - 45.465701 - ], - [ - -73.440976, - 45.46578 - ], - [ - -73.44047, - 45.466154 - ], - [ - -73.440337, - 45.466252 - ], - [ - -73.439775, - 45.466686 - ], - [ - -73.439742, - 45.466711 - ], - [ - -73.439001, - 45.46721 - ], - [ - -73.438692, - 45.467309 - ], - [ - -73.438637, - 45.467322 - ], - [ - -73.438061, - 45.467464 - ], - [ - -73.437909, - 45.467502 - ], - [ - -73.435895, - 45.468018 - ], - [ - -73.434953, - 45.468251 - ], - [ - -73.43479, - 45.468319 - ], - [ - -73.434706, - 45.46835 - ], - [ - -73.434654, - 45.468386 - ], - [ - -73.434574, - 45.46844 - ], - [ - -73.434433, - 45.468551 - ], - [ - -73.434426, - 45.468557 - ], - [ - -73.434317, - 45.468638 - ], - [ - -73.434223, - 45.46871 - ], - [ - -73.434186, - 45.468737 - ], - [ - -73.434698, - 45.469078 - ], - [ - -73.435215, - 45.469421 - ], - [ - -73.435371, - 45.469525 - ], - [ - -73.437723, - 45.471079 - ], - [ - -73.437899, - 45.471196 - ], - [ - -73.440414, - 45.472889 - ], - [ - -73.440734, - 45.473105 - ], - [ - -73.440861, - 45.47319 - ], - [ - -73.440904, - 45.473168 - ], - [ - -73.441015, - 45.473108 - ], - [ - -73.44102, - 45.473105 - ], - [ - -73.44252, - 45.472048 - ], - [ - -73.442653, - 45.471954 - ], - [ - -73.444466, - 45.470668 - ], - [ - -73.444558, - 45.470603 - ], - [ - -73.444692, - 45.470508 - ], - [ - -73.445328, - 45.470057 - ], - [ - -73.445338, - 45.470052 - ], - [ - -73.445622, - 45.469854 - ], - [ - -73.446091, - 45.469543 - ], - [ - -73.446377, - 45.469353 - ], - [ - -73.446414, - 45.469328 - ], - [ - -73.447066, - 45.468996 - ], - [ - -73.4474, - 45.468829 - ], - [ - -73.447822, - 45.468645 - ], - [ - -73.448427, - 45.468407 - ], - [ - -73.449383, - 45.468079 - ], - [ - -73.449742, - 45.467957 - ], - [ - -73.449964, - 45.467881 - ], - [ - -73.450233, - 45.467787 - ], - [ - -73.451014, - 45.467517 - ], - [ - -73.451685, - 45.467271 - ], - [ - -73.451729, - 45.467255 - ], - [ - -73.451774, - 45.467238 - ], - [ - -73.452548, - 45.466971 - ], - [ - -73.452657, - 45.466933 - ], - [ - -73.453014, - 45.466803 - ], - [ - -73.45314, - 45.466749 - ], - [ - -73.453548, - 45.466537 - ], - [ - -73.453946, - 45.466304 - ], - [ - -73.454693, - 45.465786 - ], - [ - -73.454707, - 45.465777 - ] - ] - }, - "id": 394, - "properties": { - "id": "284def9f-928e-41dc-adbc-96d8ed29bc9a", - "data": { - "gtfs": { - "shape_id": "696_2_R" - }, - "segments": [ - { - "distanceMeters": 203, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 1429, - "travelTimeSeconds": 226 - }, - { - "distanceMeters": 478, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 1834, - "travelTimeSeconds": 290 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 52, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 98, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 126, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 162, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 537, - "travelTimeSeconds": 85 - }, - { - "distanceMeters": 70, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 311, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 139, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 35 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9106, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2564.58008082812, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.32, - "travelTimeWithoutDwellTimesSeconds": 1440, - "operatingTimeWithLayoverTimeSeconds": 1620, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1440, - "operatingSpeedWithLayoverMetersPerSecond": 5.62, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.32 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", - "8f39e220-8ec5-4425-b9f8-90e418e7d6d3", - "3481b163-efe1-4b08-b6af-eecb2141ddbe", - "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", - "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "5cacbe7b-f308-4076-8842-25195b37874b", - "70f95ad2-eba4-4503-b7ff-17df9ce33ba4", - "e5e1c5c5-36d2-4221-83f3-658f6d4b6761", - "ea0252a4-936b-49d7-8af7-57e55fff6184", - "5b6c9f4f-7b19-41d9-ad96-38e8e97fc190", - "379600fc-81b2-40f5-8ddd-317a0b4fe4c0", - "735e4ba2-6503-4586-98da-feccec61a212", - "af14ce12-74fa-4edf-a439-c058d0014323", - "596478dc-5795-41d8-b76f-e8b99c5314f6", - "504cb53f-f1f4-46f2-81f5-f99fef8227fd", - "4827a17d-8dc9-4cbd-8430-3334ebece64a", - "988c86da-04eb-4067-b650-f13c447b17e7", - "14e293a6-352a-4156-8578-66d0b5bdcc1f", - "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", - "2881ced2-6a46-4738-a470-6ff64097e482", - "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", - "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "4fc83229-a15e-48e1-aa4f-fae0073dacf9" - ], - "stops": [], - "line_id": "a69faa44-2d07-4242-a96a-f2eb2b3cbc5c", - "segments": [ - 0, - 7, - 28, - 40, - 89, - 105, - 107, - 108, - 111, - 115, - 134, - 149, - 155, - 157, - 162, - 175, - 177, - 184, - 192, - 198, - 200, - 202, - 208, - 212, - 217, - 224, - 231 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 394, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.437764, - 45.460145 - ], - [ - -73.437619, - 45.460293 - ], - [ - -73.437101, - 45.460817 - ], - [ - -73.43693, - 45.460991 - ], - [ - -73.436084, - 45.461838 - ], - [ - -73.435956, - 45.461966 - ], - [ - -73.435883, - 45.462039 - ], - [ - -73.435417, - 45.462506 - ], - [ - -73.435116, - 45.462807 - ], - [ - -73.435017, - 45.462901 - ], - [ - -73.434675, - 45.463227 - ], - [ - -73.43446, - 45.463414 - ], - [ - -73.434426, - 45.463444 - ], - [ - -73.433916, - 45.463851 - ], - [ - -73.432014, - 45.465216 - ], - [ - -73.431899, - 45.465299 - ], - [ - -73.431759, - 45.465404 - ], - [ - -73.431165, - 45.465852 - ], - [ - -73.430632, - 45.466255 - ], - [ - -73.430223, - 45.465984 - ], - [ - -73.429945, - 45.4658 - ], - [ - -73.426695, - 45.463644 - ], - [ - -73.426608, - 45.463587 - ], - [ - -73.425566, - 45.462896 - ], - [ - -73.425014, - 45.46253 - ], - [ - -73.424861, - 45.462428 - ], - [ - -73.4247, - 45.462321 - ], - [ - -73.42397, - 45.461837 - ], - [ - -73.423456, - 45.461496 - ], - [ - -73.423345, - 45.461423 - ], - [ - -73.422579, - 45.460915 - ], - [ - -73.419928, - 45.459156 - ], - [ - -73.419828, - 45.45909 - ], - [ - -73.419877, - 45.459055 - ], - [ - -73.420094, - 45.458893 - ], - [ - -73.42041, - 45.458656 - ], - [ - -73.420587, - 45.458524 - ], - [ - -73.42063, - 45.458492 - ], - [ - -73.420736, - 45.458359 - ], - [ - -73.420842, - 45.458218 - ], - [ - -73.420969, - 45.457966 - ], - [ - -73.421005, - 45.457768 - ], - [ - -73.420993, - 45.457595 - ], - [ - -73.420984, - 45.457466 - ], - [ - -73.420984, - 45.457462 - ], - [ - -73.420768, - 45.456709 - ], - [ - -73.420731, - 45.456406 - ], - [ - -73.420728, - 45.456281 - ], - [ - -73.420766, - 45.456105 - ], - [ - -73.420872, - 45.455877 - ], - [ - -73.421054, - 45.45561 - ], - [ - -73.421295, - 45.455422 - ], - [ - -73.422321, - 45.454723 - ], - [ - -73.422712, - 45.454457 - ], - [ - -73.422824, - 45.454381 - ], - [ - -73.425, - 45.452904 - ], - [ - -73.425236, - 45.452744 - ], - [ - -73.42721, - 45.451405 - ], - [ - -73.427291, - 45.45135 - ], - [ - -73.42733, - 45.451323 - ], - [ - -73.427666, - 45.451103 - ], - [ - -73.427682, - 45.451093 - ], - [ - -73.428037, - 45.450878 - ], - [ - -73.430991, - 45.449139 - ], - [ - -73.431164, - 45.449042 - ], - [ - -73.431275, - 45.448979 - ], - [ - -73.432931, - 45.450108 - ], - [ - -73.433653, - 45.450548 - ], - [ - -73.433861, - 45.450614 - ], - [ - -73.433938, - 45.450638 - ], - [ - -73.434086, - 45.450685 - ], - [ - -73.434372, - 45.450754 - ], - [ - -73.434532, - 45.45078 - ], - [ - -73.434811, - 45.450806 - ], - [ - -73.435216, - 45.450834 - ], - [ - -73.43546, - 45.450862 - ], - [ - -73.435648, - 45.450893 - ], - [ - -73.435818, - 45.450928 - ], - [ - -73.435935, - 45.450963 - ], - [ - -73.436195, - 45.451061 - ], - [ - -73.436419, - 45.451155 - ], - [ - -73.436602, - 45.451264 - ], - [ - -73.43668, - 45.451315 - ], - [ - -73.436758, - 45.451367 - ], - [ - -73.436938, - 45.4515 - ], - [ - -73.437141, - 45.451649 - ], - [ - -73.43763, - 45.452001 - ], - [ - -73.438295, - 45.452481 - ], - [ - -73.438425, - 45.452575 - ], - [ - -73.438899, - 45.452918 - ], - [ - -73.439007, - 45.452995 - ], - [ - -73.439474, - 45.45333 - ], - [ - -73.439588, - 45.453411 - ], - [ - -73.439818, - 45.453573 - ], - [ - -73.439861, - 45.453603 - ], - [ - -73.439909, - 45.45364 - ], - [ - -73.439987, - 45.4537 - ], - [ - -73.440478, - 45.454051 - ], - [ - -73.44074, - 45.454241 - ], - [ - -73.44099, - 45.454406 - ], - [ - -73.441259, - 45.45456 - ], - [ - -73.441361, - 45.454611 - ], - [ - -73.441496, - 45.454678 - ], - [ - -73.441752, - 45.454794 - ], - [ - -73.441934, - 45.454863 - ], - [ - -73.442069, - 45.454915 - ], - [ - -73.442434, - 45.455032 - ], - [ - -73.442619, - 45.455085 - ], - [ - -73.442851, - 45.45514 - ], - [ - -73.443004, - 45.455181 - ], - [ - -73.443312, - 45.455218 - ], - [ - -73.443443, - 45.455253 - ], - [ - -73.443793, - 45.455352 - ], - [ - -73.443977, - 45.455424 - ], - [ - -73.444277, - 45.455609 - ], - [ - -73.444561, - 45.455812 - ], - [ - -73.445006, - 45.456208 - ], - [ - -73.445443, - 45.456518 - ], - [ - -73.445605, - 45.456635 - ], - [ - -73.445878, - 45.456816 - ], - [ - -73.445952, - 45.456865 - ], - [ - -73.446142, - 45.456982 - ], - [ - -73.446227, - 45.457004 - ], - [ - -73.446332, - 45.457032 - ], - [ - -73.446489, - 45.457095 - ], - [ - -73.446596, - 45.457158 - ], - [ - -73.446702, - 45.457243 - ], - [ - -73.446812, - 45.457324 - ], - [ - -73.446913, - 45.457357 - ], - [ - -73.446965, - 45.457368 - ], - [ - -73.447054, - 45.457381 - ], - [ - -73.447226, - 45.457406 - ], - [ - -73.447335, - 45.457449 - ], - [ - -73.448552, - 45.458228 - ], - [ - -73.448934, - 45.458388 - ], - [ - -73.449458, - 45.458593 - ], - [ - -73.449707, - 45.458708 - ], - [ - -73.450153, - 45.459037 - ], - [ - -73.451481, - 45.460003 - ], - [ - -73.452547, - 45.46077 - ], - [ - -73.454622, - 45.462265 - ], - [ - -73.454692, - 45.462368 - ], - [ - -73.454988, - 45.462608 - ], - [ - -73.455597, - 45.463097 - ], - [ - -73.456345, - 45.463585 - ], - [ - -73.45668, - 45.463751 - ], - [ - -73.457165, - 45.463986 - ], - [ - -73.45779, - 45.464251 - ], - [ - -73.457936, - 45.464285 - ], - [ - -73.458332, - 45.464415 - ], - [ - -73.458709, - 45.464519 - ], - [ - -73.459184, - 45.464658 - ], - [ - -73.459848, - 45.464797 - ], - [ - -73.460341, - 45.46487 - ], - [ - -73.460876, - 45.464928 - ], - [ - -73.461292, - 45.464968 - ], - [ - -73.461888, - 45.465033 - ], - [ - -73.462599, - 45.465146 - ], - [ - -73.463202, - 45.465285 - ], - [ - -73.463734, - 45.465422 - ], - [ - -73.464137, - 45.465531 - ], - [ - -73.464519, - 45.465639 - ], - [ - -73.464829, - 45.465721 - ], - [ - -73.465021, - 45.465762 - ], - [ - -73.465202, - 45.465781 - ], - [ - -73.465352, - 45.4658 - ], - [ - -73.465498, - 45.465796 - ], - [ - -73.465647, - 45.465796 - ], - [ - -73.465791, - 45.465789 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.46652, - 45.465639 - ], - [ - -73.466352, - 45.465288 - ], - [ - -73.466238, - 45.465062 - ], - [ - -73.466142, - 45.464853 - ], - [ - -73.466048, - 45.464638 - ], - [ - -73.46599, - 45.464498 - ], - [ - -73.465967, - 45.464441 - ], - [ - -73.465777, - 45.463945 - ], - [ - -73.465723, - 45.463731 - ], - [ - -73.465663, - 45.463449 - ], - [ - -73.465646, - 45.463238 - ], - [ - -73.465636, - 45.463073 - ], - [ - -73.46561, - 45.462808 - ], - [ - -73.465461, - 45.461275 - ], - [ - -73.465445, - 45.461122 - ], - [ - -73.465251, - 45.459263 - ], - [ - -73.465214, - 45.458881 - ], - [ - -73.465199, - 45.458728 - ], - [ - -73.465132, - 45.458038 - ], - [ - -73.465113, - 45.457592 - ], - [ - -73.465124, - 45.457143 - ], - [ - -73.465143, - 45.45685 - ], - [ - -73.465153, - 45.456755 - ], - [ - -73.465199, - 45.456301 - ], - [ - -73.465244, - 45.456 - ], - [ - -73.465335, - 45.455572 - ], - [ - -73.465339, - 45.455554 - ], - [ - -73.465416, - 45.455284 - ], - [ - -73.465461, - 45.455127 - ], - [ - -73.465617, - 45.454677 - ], - [ - -73.465629, - 45.454641 - ], - [ - -73.465634, - 45.454629 - ], - [ - -73.465694, - 45.454481 - ], - [ - -73.465735, - 45.45438 - ], - [ - -73.465853, - 45.45411 - ], - [ - -73.466087, - 45.453654 - ], - [ - -73.46613, - 45.45357 - ], - [ - -73.466877, - 45.452297 - ], - [ - -73.467521, - 45.451236 - ], - [ - -73.468182, - 45.450183 - ], - [ - -73.469986, - 45.447403 - ], - [ - -73.470116, - 45.447204 - ], - [ - -73.470215, - 45.447052 - ], - [ - -73.470659, - 45.447207 - ], - [ - -73.471183, - 45.44739 - ], - [ - -73.471746, - 45.44757 - ], - [ - -73.472443, - 45.447795 - ], - [ - -73.473347, - 45.448088 - ], - [ - -73.473437, - 45.448115 - ], - [ - -73.475223, - 45.448691 - ], - [ - -73.475787, - 45.448871 - ], - [ - -73.476196, - 45.449002 - ], - [ - -73.476498, - 45.449128 - ], - [ - -73.476722, - 45.449231 - ], - [ - -73.476897, - 45.449321 - ], - [ - -73.477126, - 45.449456 - ], - [ - -73.477278, - 45.449564 - ], - [ - -73.477431, - 45.449681 - ], - [ - -73.477567, - 45.449794 - ], - [ - -73.477783, - 45.450014 - ], - [ - -73.477921, - 45.449951 - ], - [ - -73.478139, - 45.449872 - ], - [ - -73.478451, - 45.449758 - ], - [ - -73.4775, - 45.449189 - ] - ] - }, - "id": 395, - "properties": { - "id": "c53381f5-a9f8-40ab-9d5e-13735f4b6e9f", - "data": { - "gtfs": { - "shape_id": "697_1_A" - }, - "segments": [ - { - "distanceMeters": 247, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 62 - }, - { - "distanceMeters": 77, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 422, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 2866, - "travelTimeSeconds": 465 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 477, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 898, - "travelTimeSeconds": 146 - }, - { - "distanceMeters": 860, - "travelTimeSeconds": 140 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 9981, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 3346.117652583036, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.16, - "travelTimeWithoutDwellTimesSeconds": 1620, - "operatingTimeWithLayoverTimeSeconds": 1800, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1620, - "operatingSpeedWithLayoverMetersPerSecond": 5.54, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.16 - }, - "mode": "bus", - "name": "École Lucille-Teasdale", - "color": "#A32638", - "nodes": [ - "eeae68ef-a789-47cd-b1a9-a6fc5c2bb689", - "1a929515-9cf9-46e2-a23e-d4a14e85a95d", - "7c6202a7-3f19-4943-97ae-2c6baa7cb485", - "2dc5436a-aaba-417a-8f15-4777cfa70bbf", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "988183db-88f1-47cb-87bf-b2a03dd4a38d", - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "bfb03303-2ee6-40dd-8e8f-859a06b338a6", - "2b6f210c-4f28-43d1-b096-b48c582f5274", - "57b5655a-03f7-4fb9-a3a9-26c2523cb5bf", - "3947066a-3681-4f55-8693-0a5fac46c728", - "006d28ae-a3cc-4f45-8689-daa6cf9386f5", - "94721b0b-0bae-4300-ab61-58dc9d3fe85b", - "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", - "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", - "27e1da8c-287d-4c6b-9905-9c8c3d07097d", - "9fe6df14-62d0-4a44-8e19-85300b42de89", - "c46f92e7-e692-49ea-b12f-0df7099ee6d5", - "06cee1c3-abcc-4982-b889-e73356b844e0", - "9e4bc046-2878-4cee-af77-934e179aa77f", - "74887516-47d5-4269-9513-84672d18e287", - "1e3a74d9-9d8a-467f-a82e-3dafee501e32", - "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", - "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", - "fe1d7eea-bdc6-4263-a13b-eb6645c5e393" - ], - "stops": [], - "line_id": "c69e504c-61f0-4e23-9d7f-bf8c0e6a904e", - "segments": [ - 0, - 5, - 11, - 14, - 17, - 19, - 21, - 25, - 28, - 31, - 35, - 42, - 54, - 56, - 61, - 64, - 68, - 82, - 87, - 93, - 104, - 184, - 186, - 201, - 211 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 395, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.4775, - 45.449189 - ], - [ - -73.477354, - 45.449101 - ], - [ - -73.476598, - 45.448646 - ], - [ - -73.476493, - 45.448669 - ], - [ - -73.476429, - 45.448682 - ], - [ - -73.476264, - 45.448894 - ], - [ - -73.475856, - 45.448768 - ], - [ - -73.475454, - 45.448632 - ], - [ - -73.475296, - 45.448579 - ], - [ - -73.474198, - 45.448236 - ], - [ - -73.473507, - 45.448007 - ], - [ - -73.47251, - 45.447683 - ], - [ - -73.471666, - 45.447408 - ], - [ - -73.471252, - 45.447282 - ], - [ - -73.47028, - 45.446953 - ], - [ - -73.470002, - 45.446863 - ], - [ - -73.469936, - 45.446962 - ], - [ - -73.4697, - 45.447326 - ], - [ - -73.467906, - 45.450089 - ], - [ - -73.467892, - 45.45011 - ], - [ - -73.467328, - 45.451002 - ], - [ - -73.46669, - 45.452054 - ], - [ - -73.465968, - 45.453278 - ], - [ - -73.465918, - 45.453363 - ], - [ - -73.465707, - 45.453755 - ], - [ - -73.46558, - 45.454016 - ], - [ - -73.46536, - 45.454529 - ], - [ - -73.465344, - 45.454574 - ], - [ - -73.465258, - 45.454822 - ], - [ - -73.465193, - 45.45501 - ], - [ - -73.465167, - 45.455082 - ], - [ - -73.465143, - 45.455167 - ], - [ - -73.465048, - 45.455509 - ], - [ - -73.465041, - 45.455536 - ], - [ - -73.464975, - 45.455829 - ], - [ - -73.464919, - 45.45613 - ], - [ - -73.464878, - 45.456427 - ], - [ - -73.464848, - 45.456873 - ], - [ - -73.464844, - 45.457169 - ], - [ - -73.464871, - 45.457574 - ], - [ - -73.464981, - 45.45909 - ], - [ - -73.464994, - 45.459278 - ], - [ - -73.465215, - 45.461562 - ], - [ - -73.465247, - 45.461893 - ], - [ - -73.465328, - 45.462497 - ], - [ - -73.465435, - 45.463211 - ], - [ - -73.465484, - 45.463543 - ], - [ - -73.465538, - 45.46379 - ], - [ - -73.465626, - 45.464088 - ], - [ - -73.465783, - 45.464475 - ], - [ - -73.46579, - 45.464493 - ], - [ - -73.465817, - 45.464557 - ], - [ - -73.465848, - 45.464629 - ], - [ - -73.465982, - 45.464935 - ], - [ - -73.465999, - 45.464975 - ], - [ - -73.46603, - 45.465039 - ], - [ - -73.466144, - 45.465278 - ], - [ - -73.466224, - 45.465446 - ], - [ - -73.46634, - 45.465678 - ], - [ - -73.466544, - 45.466093 - ], - [ - -73.466754, - 45.466512 - ], - [ - -73.466905, - 45.466821 - ], - [ - -73.46709, - 45.467181 - ], - [ - -73.467395, - 45.467802 - ], - [ - -73.467338, - 45.468013 - ], - [ - -73.467297, - 45.468072 - ], - [ - -73.467245, - 45.468117 - ], - [ - -73.467184, - 45.468148 - ], - [ - -73.466944, - 45.46822 - ], - [ - -73.466769, - 45.468252 - ], - [ - -73.466575, - 45.468272 - ], - [ - -73.466554, - 45.468274 - ], - [ - -73.466295, - 45.46827 - ], - [ - -73.465854, - 45.468233 - ], - [ - -73.465606, - 45.468212 - ], - [ - -73.465388, - 45.468193 - ], - [ - -73.465093, - 45.468166 - ], - [ - -73.464662, - 45.46813 - ], - [ - -73.464409, - 45.468116 - ], - [ - -73.464182, - 45.468125 - ], - [ - -73.464067, - 45.468143 - ], - [ - -73.463974, - 45.46817 - ], - [ - -73.463882, - 45.468201 - ], - [ - -73.463835, - 45.468224 - ], - [ - -73.46363, - 45.4683 - ], - [ - -73.463472, - 45.468395 - ], - [ - -73.463397, - 45.468431 - ], - [ - -73.463306, - 45.468449 - ], - [ - -73.463219, - 45.468458 - ], - [ - -73.463124, - 45.468449 - ], - [ - -73.463037, - 45.468413 - ], - [ - -73.462702, - 45.468201 - ], - [ - -73.462471, - 45.468057 - ], - [ - -73.462195, - 45.467872 - ], - [ - -73.462028, - 45.467752 - ], - [ - -73.461894, - 45.467656 - ], - [ - -73.461788, - 45.46758 - ], - [ - -73.46133, - 45.467251 - ], - [ - -73.461109, - 45.467094 - ], - [ - -73.460905, - 45.466945 - ], - [ - -73.460739, - 45.466826 - ], - [ - -73.460722, - 45.466814 - ], - [ - -73.460629, - 45.466751 - ], - [ - -73.460376, - 45.466631 - ], - [ - -73.458945, - 45.465599 - ], - [ - -73.458783, - 45.465482 - ], - [ - -73.458133, - 45.464996 - ], - [ - -73.457829, - 45.464789 - ], - [ - -73.457411, - 45.464509 - ], - [ - -73.457079, - 45.464307 - ], - [ - -73.456595, - 45.463957 - ], - [ - -73.45655, - 45.463924 - ], - [ - -73.455675, - 45.463282 - ], - [ - -73.454797, - 45.462637 - ], - [ - -73.454278, - 45.462276 - ], - [ - -73.453602, - 45.461785 - ], - [ - -73.453448, - 45.461674 - ], - [ - -73.453385, - 45.461629 - ], - [ - -73.45305, - 45.461381 - ], - [ - -73.45275, - 45.461169 - ], - [ - -73.452262, - 45.460814 - ], - [ - -73.449839, - 45.459072 - ], - [ - -73.449359, - 45.458774 - ], - [ - -73.448479, - 45.458383 - ], - [ - -73.448024, - 45.45813 - ], - [ - -73.447729, - 45.457941 - ], - [ - -73.447401, - 45.457716 - ], - [ - -73.447206, - 45.457532 - ], - [ - -73.447146, - 45.457473 - ], - [ - -73.447054, - 45.457381 - ], - [ - -73.446923, - 45.457262 - ], - [ - -73.446661, - 45.457072 - ], - [ - -73.44657, - 45.457027 - ], - [ - -73.446482, - 45.456996 - ], - [ - -73.446388, - 45.45696 - ], - [ - -73.446222, - 45.456915 - ], - [ - -73.445958, - 45.456735 - ], - [ - -73.445693, - 45.456555 - ], - [ - -73.445542, - 45.456451 - ], - [ - -73.445085, - 45.456131 - ], - [ - -73.444561, - 45.455812 - ], - [ - -73.444277, - 45.455609 - ], - [ - -73.443977, - 45.455424 - ], - [ - -73.443793, - 45.455352 - ], - [ - -73.443443, - 45.455253 - ], - [ - -73.443312, - 45.455218 - ], - [ - -73.443048, - 45.455091 - ], - [ - -73.442897, - 45.455046 - ], - [ - -73.442851, - 45.45514 - ], - [ - -73.442773, - 45.455286 - ], - [ - -73.442711, - 45.455401 - ], - [ - -73.442537, - 45.455671 - ], - [ - -73.442076, - 45.456224 - ], - [ - -73.441851, - 45.45649 - ], - [ - -73.441716, - 45.456616 - ], - [ - -73.441623, - 45.456698 - ], - [ - -73.441548, - 45.456764 - ], - [ - -73.441473, - 45.456822 - ], - [ - -73.44081, - 45.457277 - ], - [ - -73.440142, - 45.457735 - ], - [ - -73.439957, - 45.457879 - ], - [ - -73.439859, - 45.457955 - ], - [ - -73.439614, - 45.458149 - ], - [ - -73.43929, - 45.458432 - ], - [ - -73.438818, - 45.459021 - ], - [ - -73.438626, - 45.459273 - ], - [ - -73.438614, - 45.459291 - ], - [ - -73.438414, - 45.459492 - ], - [ - -73.437866, - 45.460042 - ], - [ - -73.437769, - 45.46014 - ], - [ - -73.437619, - 45.460293 - ], - [ - -73.437101, - 45.460817 - ], - [ - -73.43693, - 45.460991 - ], - [ - -73.436084, - 45.461838 - ], - [ - -73.435961, - 45.461961 - ], - [ - -73.435883, - 45.462039 - ], - [ - -73.435417, - 45.462506 - ], - [ - -73.435116, - 45.462807 - ], - [ - -73.435017, - 45.462901 - ], - [ - -73.434675, - 45.463227 - ], - [ - -73.434465, - 45.463409 - ], - [ - -73.434426, - 45.463444 - ], - [ - -73.433916, - 45.463851 - ], - [ - -73.43202, - 45.465212 - ], - [ - -73.431899, - 45.465299 - ], - [ - -73.431759, - 45.465404 - ], - [ - -73.43117, - 45.465848 - ], - [ - -73.430632, - 45.466255 - ], - [ - -73.430432, - 45.466123 - ], - [ - -73.430229, - 45.465988 - ], - [ - -73.4267, - 45.463648 - ], - [ - -73.426608, - 45.463587 - ], - [ - -73.425566, - 45.462896 - ], - [ - -73.425014, - 45.46253 - ], - [ - -73.424866, - 45.462432 - ], - [ - -73.4247, - 45.462321 - ], - [ - -73.42397, - 45.461837 - ], - [ - -73.42346, - 45.461499 - ], - [ - -73.423345, - 45.461423 - ], - [ - -73.422579, - 45.460915 - ], - [ - -73.419932, - 45.459159 - ], - [ - -73.419828, - 45.45909 - ], - [ - -73.419877, - 45.459055 - ], - [ - -73.420054, - 45.458923 - ], - [ - -73.420406, - 45.458659 - ], - [ - -73.420587, - 45.458524 - ], - [ - -73.42063, - 45.458492 - ], - [ - -73.420736, - 45.458359 - ], - [ - -73.420842, - 45.458218 - ], - [ - -73.420969, - 45.457966 - ], - [ - -73.421005, - 45.457768 - ], - [ - -73.420993, - 45.457599 - ], - [ - -73.420984, - 45.457466 - ], - [ - -73.420984, - 45.457462 - ], - [ - -73.420768, - 45.456709 - ], - [ - -73.420731, - 45.456406 - ], - [ - -73.420728, - 45.456281 - ], - [ - -73.420766, - 45.456105 - ], - [ - -73.420872, - 45.455877 - ], - [ - -73.421054, - 45.45561 - ], - [ - -73.421295, - 45.455422 - ], - [ - -73.422321, - 45.454723 - ], - [ - -73.422712, - 45.454457 - ], - [ - -73.42282, - 45.454384 - ], - [ - -73.425, - 45.452904 - ], - [ - -73.425233, - 45.452747 - ], - [ - -73.42721, - 45.451405 - ], - [ - -73.427291, - 45.45135 - ], - [ - -73.42733, - 45.451323 - ], - [ - -73.427666, - 45.451103 - ], - [ - -73.427678, - 45.451095 - ], - [ - -73.428037, - 45.450878 - ], - [ - -73.430991, - 45.449139 - ], - [ - -73.43116, - 45.449043 - ], - [ - -73.431275, - 45.448979 - ], - [ - -73.43165, - 45.449234 - ], - [ - -73.432931, - 45.450108 - ], - [ - -73.433653, - 45.450548 - ], - [ - -73.433858, - 45.450613 - ], - [ - -73.433938, - 45.450638 - ], - [ - -73.434086, - 45.450685 - ], - [ - -73.434372, - 45.450754 - ], - [ - -73.434532, - 45.45078 - ], - [ - -73.434811, - 45.450806 - ], - [ - -73.435216, - 45.450834 - ], - [ - -73.43546, - 45.450862 - ], - [ - -73.435648, - 45.450893 - ], - [ - -73.435818, - 45.450928 - ], - [ - -73.435935, - 45.450963 - ], - [ - -73.436195, - 45.451061 - ], - [ - -73.436419, - 45.451155 - ], - [ - -73.436602, - 45.451264 - ], - [ - -73.436677, - 45.451313 - ], - [ - -73.436758, - 45.451367 - ], - [ - -73.436938, - 45.4515 - ], - [ - -73.437141, - 45.451649 - ], - [ - -73.43763, - 45.452001 - ], - [ - -73.438293, - 45.45248 - ], - [ - -73.438425, - 45.452575 - ], - [ - -73.438899, - 45.452918 - ], - [ - -73.439474, - 45.45333 - ], - [ - -73.439588, - 45.453411 - ], - [ - -73.439816, - 45.453572 - ] - ] - }, - "id": 396, - "properties": { - "id": "ec2bf774-f853-41cd-b016-1ec904a5a985", - "data": { - "gtfs": { - "shape_id": "697_1_R" - }, - "segments": [ - { - "distanceMeters": 203, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 1429, - "travelTimeSeconds": 175 - }, - { - "distanceMeters": 478, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 1164, - "travelTimeSeconds": 143 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 1677, - "travelTimeSeconds": 206 - }, - { - "distanceMeters": 185, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 305, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 199, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 277, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 97, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 105, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 77, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 131, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 422, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 355, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 284, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 170, - "travelTimeSeconds": 21 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "bus_urban", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 10770, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "birdDistanceBetweenTerminals": 2967.6498031600477, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.16, - "travelTimeWithoutDwellTimesSeconds": 1320, - "operatingTimeWithLayoverTimeSeconds": 1500, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1320, - "operatingSpeedWithLayoverMetersPerSecond": 7.18, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.16 - }, - "mode": "bus", - "name": "Domicile", - "color": "#A32638", - "nodes": [ - "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", - "8f39e220-8ec5-4425-b9f8-90e418e7d6d3", - "3481b163-efe1-4b08-b6af-eecb2141ddbe", - "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", - "cbfe7779-9081-4538-b1fe-f238be6c7969", - "87719027-eaeb-4ca2-9916-48e459caa53b", - "827d769c-823c-44fa-9c17-8d7db0bd4459", - "7d672010-5387-42b1-8ad3-257c7e6df63a", - "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", - "1f87e3a1-2127-4357-9fd4-016c6c31e011", - "b7b9e437-9aed-4216-8c9e-6ac432328b58", - "eeae68ef-a789-47cd-b1a9-a6fc5c2bb689", - "1a929515-9cf9-46e2-a23e-d4a14e85a95d", - "7c6202a7-3f19-4943-97ae-2c6baa7cb485", - "2dc5436a-aaba-417a-8f15-4777cfa70bbf", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "988183db-88f1-47cb-87bf-b2a03dd4a38d", - "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "bfb03303-2ee6-40dd-8e8f-859a06b338a6", - "2b6f210c-4f28-43d1-b096-b48c582f5274", - "57b5655a-03f7-4fb9-a3a9-26c2523cb5bf", - "3947066a-3681-4f55-8693-0a5fac46c728", - "006d28ae-a3cc-4f45-8689-daa6cf9386f5", - "94721b0b-0bae-4300-ab61-58dc9d3fe85b", - "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", - "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", - "27e1da8c-287d-4c6b-9905-9c8c3d07097d", - "9fe6df14-62d0-4a44-8e19-85300b42de89", - "c46f92e7-e692-49ea-b12f-0df7099ee6d5", - "06cee1c3-abcc-4982-b889-e73356b844e0" - ], - "stops": [], - "line_id": "c69e504c-61f0-4e23-9d7f-bf8c0e6a904e", - "segments": [ - 0, - 7, - 28, - 40, - 74, - 94, - 100, - 104, - 110, - 155, - 160, - 169, - 174, - 180, - 183, - 186, - 189, - 190, - 194, - 197, - 200, - 204, - 211, - 223, - 225, - 230, - 233, - 238, - 252, - 257 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 396, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.35899, - 45.453258 - ], - [ - -73.358937, - 45.453238 - ], - [ - -73.35859, - 45.45311 - ], - [ - -73.358011, - 45.452897 - ], - [ - -73.357988, - 45.452887 - ], - [ - -73.357968, - 45.452874 - ], - [ - -73.35795, - 45.45286 - ], - [ - -73.357937, - 45.452843 - ], - [ - -73.357927, - 45.452825 - ], - [ - -73.357921, - 45.452807 - ], - [ - -73.357919, - 45.452788 - ], - [ - -73.357921, - 45.452769 - ], - [ - -73.357928, - 45.45275 - ], - [ - -73.357938, - 45.452733 - ], - [ - -73.358327, - 45.452213 - ], - [ - -73.359077, - 45.451209 - ], - [ - -73.35979, - 45.450256 - ], - [ - -73.359955, - 45.450031 - ], - [ - -73.360012, - 45.449953 - ], - [ - -73.360198, - 45.449699 - ], - [ - -73.360219, - 45.44968 - ], - [ - -73.360247, - 45.449663 - ], - [ - -73.360274, - 45.449652 - ], - [ - -73.360313, - 45.449642 - ], - [ - -73.360356, - 45.44964 - ], - [ - -73.360398, - 45.449646 - ], - [ - -73.360435, - 45.449657 - ], - [ - -73.360474, - 45.44968 - ], - [ - -73.361154, - 45.450101 - ], - [ - -73.362089, - 45.45068 - ], - [ - -73.362328, - 45.450833 - ], - [ - -73.362734, - 45.451093 - ], - [ - -73.362862, - 45.451175 - ], - [ - -73.362884, - 45.45119 - ], - [ - -73.362024, - 45.45235 - ], - [ - -73.361614, - 45.452902 - ], - [ - -73.360947, - 45.453822 - ], - [ - -73.36089, - 45.453881 - ], - [ - -73.36085, - 45.453914 - ], - [ - -73.360808, - 45.45392 - ], - [ - -73.360735, - 45.453904 - ], - [ - -73.36037, - 45.453772 - ], - [ - -73.36019, - 45.454014 - ], - [ - -73.358218, - 45.456659 - ], - [ - -73.357925, - 45.457056 - ], - [ - -73.356938, - 45.45839 - ], - [ - -73.355713, - 45.460008 - ], - [ - -73.355595, - 45.460166 - ], - [ - -73.35416, - 45.462083 - ], - [ - -73.3541, - 45.462163 - ], - [ - -73.352894, - 45.463799 - ], - [ - -73.35259, - 45.464211 - ], - [ - -73.352126, - 45.464849 - ], - [ - -73.351664, - 45.465467 - ], - [ - -73.351443, - 45.465762 - ], - [ - -73.351359, - 45.46587 - ], - [ - -73.351134, - 45.466175 - ], - [ - -73.349284, - 45.46868 - ], - [ - -73.349182, - 45.468818 - ], - [ - -73.350423, - 45.469636 - ], - [ - -73.351372, - 45.470261 - ], - [ - -73.351393, - 45.470274 - ], - [ - -73.352287, - 45.470834 - ], - [ - -73.354769, - 45.472443 - ], - [ - -73.355491, - 45.472949 - ], - [ - -73.356607, - 45.473732 - ], - [ - -73.357451, - 45.4743 - ], - [ - -73.358178, - 45.474674 - ], - [ - -73.358837, - 45.474971 - ], - [ - -73.358929, - 45.475013 - ], - [ - -73.360718, - 45.475762 - ], - [ - -73.361798, - 45.476213 - ], - [ - -73.362641, - 45.476583 - ], - [ - -73.363292, - 45.476888 - ], - [ - -73.363431, - 45.476953 - ], - [ - -73.36408, - 45.477314 - ], - [ - -73.365319, - 45.477987 - ], - [ - -73.365398, - 45.478031 - ], - [ - -73.368661, - 45.479841 - ], - [ - -73.36929, - 45.48019 - ], - [ - -73.369613, - 45.479742 - ], - [ - -73.372901, - 45.475178 - ], - [ - -73.373075, - 45.474921 - ], - [ - -73.373508, - 45.474319 - ], - [ - -73.37362, - 45.474193 - ], - [ - -73.374115, - 45.47437 - ], - [ - -73.374589, - 45.474539 - ], - [ - -73.376526, - 45.475231 - ], - [ - -73.377036, - 45.475416 - ], - [ - -73.377771, - 45.475696 - ], - [ - -73.378232, - 45.475885 - ], - [ - -73.378654, - 45.47607 - ], - [ - -73.378768, - 45.47612 - ], - [ - -73.378865, - 45.476016 - ], - [ - -73.378999, - 45.475829 - ], - [ - -73.379381, - 45.475298 - ], - [ - -73.37977, - 45.474904 - ], - [ - -73.379868, - 45.474867 - ], - [ - -73.37992, - 45.474823 - ], - [ - -73.379949, - 45.474771 - ], - [ - -73.379955, - 45.474715 - ], - [ - -73.379944, - 45.474689 - ], - [ - -73.379928, - 45.47465 - ], - [ - -73.379898, - 45.474617 - ], - [ - -73.379826, - 45.474574 - ], - [ - -73.379738, - 45.474563 - ], - [ - -73.379662, - 45.474553 - ], - [ - -73.379578, - 45.474573 - ], - [ - -73.379521, - 45.474603 - ], - [ - -73.379485, - 45.474634 - ], - [ - -73.379454, - 45.474683 - ], - [ - -73.379447, - 45.474748 - ], - [ - -73.379247, - 45.475249 - ], - [ - -73.378874, - 45.475757 - ], - [ - -73.378727, - 45.475958 - ], - [ - -73.378654, - 45.47607 - ], - [ - -73.378768, - 45.47612 - ], - [ - -73.378357, - 45.4767 - ], - [ - -73.379312, - 45.477038 - ], - [ - -73.379286, - 45.477173 - ], - [ - -73.379234, - 45.477277 - ], - [ - -73.379049, - 45.477564 - ], - [ - -73.378962, - 45.477691 - ], - [ - -73.378887, - 45.477798 - ], - [ - -73.375036, - 45.483176 - ], - [ - -73.37494, - 45.48331 - ], - [ - -73.375418, - 45.483571 - ], - [ - -73.376053, - 45.483919 - ], - [ - -73.376944, - 45.48441 - ], - [ - -73.377333, - 45.484662 - ], - [ - -73.377568, - 45.484792 - ], - [ - -73.377619, - 45.48482 - ], - [ - -73.377777, - 45.484906 - ], - [ - -73.378273, - 45.485158 - ], - [ - -73.379364, - 45.485713 - ], - [ - -73.379961, - 45.486024 - ], - [ - -73.381303, - 45.486687 - ], - [ - -73.381938, - 45.486995 - ], - [ - -73.382231, - 45.487138 - ], - [ - -73.38239, - 45.487214 - ], - [ - -73.382639, - 45.48734 - ], - [ - -73.383202, - 45.487615 - ], - [ - -73.383953, - 45.487976 - ], - [ - -73.384699, - 45.48831 - ], - [ - -73.384728, - 45.48832 - ], - [ - -73.384901, - 45.488369 - ], - [ - -73.385381, - 45.488599 - ], - [ - -73.385628, - 45.488725 - ], - [ - -73.385962, - 45.488879 - ], - [ - -73.386215, - 45.488995 - ], - [ - -73.387001, - 45.489365 - ], - [ - -73.387621, - 45.489654 - ], - [ - -73.388224, - 45.489938 - ], - [ - -73.388765, - 45.490199 - ], - [ - -73.389177, - 45.490388 - ], - [ - -73.389565, - 45.490569 - ], - [ - -73.390592, - 45.491047 - ], - [ - -73.391016, - 45.491244 - ], - [ - -73.391367, - 45.491407 - ], - [ - -73.391618, - 45.49152 - ], - [ - -73.39168, - 45.491549 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.401121, - 45.49596 - ], - [ - -73.402418, - 45.496555 - ], - [ - -73.402953, - 45.49679 - ], - [ - -73.403543, - 45.497051 - ], - [ - -73.403795, - 45.49716 - ], - [ - -73.404434, - 45.497426 - ], - [ - -73.404858, - 45.497588 - ], - [ - -73.405172, - 45.497723 - ], - [ - -73.405568, - 45.497876 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.406574, - 45.498264 - ], - [ - -73.407382, - 45.497122 - ], - [ - -73.407675, - 45.496708 - ], - [ - -73.407892, - 45.496394 - ], - [ - -73.408205, - 45.495957 - ], - [ - -73.408715, - 45.495247 - ], - [ - -73.408772, - 45.495159 - ] - ] - }, - "id": 397, - "properties": { - "id": "7c602c79-5580-4b7b-a829-e28aa1701ce0", - "data": { - "gtfs": { - "shape_id": "820_1_A" - }, - "segments": [ - { - "distanceMeters": 299, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 303, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 430, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 382, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 391, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 215, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 209, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 89, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 314, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 254, - "travelTimeSeconds": 40 - }, - { - "distanceMeters": 437, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 408, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 451, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 1184, - "travelTimeSeconds": 189 - }, - { - "distanceMeters": 331, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 966, - "travelTimeSeconds": 154 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 420, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 914, - "travelTimeSeconds": 145 - }, - { - "distanceMeters": 1767, - "travelTimeSeconds": 282 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 10972, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 6060.030832965471, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.31, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 5.71, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.31 - }, - "mode": "taxi", - "name": "boul. Cousineau", - "color": "#A32638", - "nodes": [ - "391ee800-682d-4882-8762-f7283ff37556", - "35bbf632-18f8-44dd-ab04-b98a1c0d6a9e", - "21eee29a-2e1c-4976-998c-3e4733f522e7", - "79ae40e4-ac61-4b2e-a0be-b4970ad0e618", - "ffb2037a-ed82-4fd2-9ba4-9740ffc9fc74", - "9fdbce5a-94e4-48ab-912d-f3a78f30abc3", - "13b8a3e4-2729-40dc-9d31-6c29415c10b5", - "88e03d45-747f-4e6b-aeb6-97810526c65b", - "13ce318e-8a74-454a-940f-02135b69457c", - "e9563d31-b4cc-432d-bbf1-a6ee47aee4e9", - "b966dc8d-04a6-41da-9b2d-4c18b27bb13f", - "387ad44c-0d6a-4a89-821b-3e0834eed8e2", - "4dd490ae-1643-4ca9-948e-eb5c251b5754", - "e66f2736-29ec-4b36-b206-47f7af7309b0", - "8a9ec4a8-34de-402b-ac5c-aa964c85104b", - "97664706-d6c8-4052-8818-e52a0be48a3e", - "d4214201-daf1-434d-b42f-8c8d41dcb39c", - "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", - "021fa80e-da9f-408b-be90-bb5e978d84f8", - "021fa80e-da9f-408b-be90-bb5e978d84f8", - "057da5dd-23f2-431d-8955-7a7d8f0dae40", - "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", - "88a428f4-cdde-43a8-a2c3-c4652eae6722", - "ced239e0-91f5-4429-96fd-20bbb8fcfd11", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3" - ], - "stops": [], - "line_id": "f2105914-2e93-44da-96b4-d541d3a4896d", - "segments": [ - 0, - 15, - 17, - 31, - 42, - 44, - 47, - 48, - 50, - 53, - 56, - 57, - 61, - 64, - 68, - 73, - 76, - 80, - 94, - 113, - 124, - 130, - 137, - 160 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 397, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.408394, - 45.495468 - ], - [ - -73.408074, - 45.495912 - ], - [ - -73.407847, - 45.49623 - ], - [ - -73.407762, - 45.496348 - ], - [ - -73.407544, - 45.496654 - ], - [ - -73.40725, - 45.497068 - ], - [ - -73.406438, - 45.49821 - ], - [ - -73.406128, - 45.498091 - ], - [ - -73.405568, - 45.497876 - ], - [ - -73.405172, - 45.497723 - ], - [ - -73.404858, - 45.497588 - ], - [ - -73.404434, - 45.497426 - ], - [ - -73.403795, - 45.49716 - ], - [ - -73.403543, - 45.497051 - ], - [ - -73.402953, - 45.49679 - ], - [ - -73.402418, - 45.496555 - ], - [ - -73.401121, - 45.49596 - ], - [ - -73.399985, - 45.495433 - ], - [ - -73.399879, - 45.495383 - ], - [ - -73.399728, - 45.495307 - ], - [ - -73.39739, - 45.494216 - ], - [ - -73.396885, - 45.493982 - ], - [ - -73.39654, - 45.493815 - ], - [ - -73.396134, - 45.49363 - ], - [ - -73.395695, - 45.493432 - ], - [ - -73.395514, - 45.493341 - ], - [ - -73.395339, - 45.49326 - ], - [ - -73.395159, - 45.49317 - ], - [ - -73.394968, - 45.493089 - ], - [ - -73.394402, - 45.492819 - ], - [ - -73.394199, - 45.492724 - ], - [ - -73.39383, - 45.492553 - ], - [ - -73.39348, - 45.492388 - ], - [ - -73.393397, - 45.49235 - ], - [ - -73.392925, - 45.492138 - ], - [ - -73.39266, - 45.492007 - ], - [ - -73.392021, - 45.491705 - ], - [ - -73.391814, - 45.49161 - ], - [ - -73.391618, - 45.49152 - ], - [ - -73.391367, - 45.491407 - ], - [ - -73.391263, - 45.491359 - ], - [ - -73.391016, - 45.491244 - ], - [ - -73.390592, - 45.491047 - ], - [ - -73.389565, - 45.490569 - ], - [ - -73.389177, - 45.490388 - ], - [ - -73.388765, - 45.490199 - ], - [ - -73.388224, - 45.489938 - ], - [ - -73.387621, - 45.489654 - ], - [ - -73.387001, - 45.489365 - ], - [ - -73.386215, - 45.488995 - ], - [ - -73.385628, - 45.488725 - ], - [ - -73.385381, - 45.488599 - ], - [ - -73.384901, - 45.488369 - ], - [ - -73.384743, - 45.488246 - ], - [ - -73.384445, - 45.488089 - ], - [ - -73.384044, - 45.487891 - ], - [ - -73.383491, - 45.487611 - ], - [ - -73.382868, - 45.487294 - ], - [ - -73.382616, - 45.487166 - ], - [ - -73.3825, - 45.487106 - ], - [ - -73.382345, - 45.487025 - ], - [ - -73.382237, - 45.486971 - ], - [ - -73.381986, - 45.486854 - ], - [ - -73.381371, - 45.486556 - ], - [ - -73.380021, - 45.485902 - ], - [ - -73.379495, - 45.485632 - ], - [ - -73.378643, - 45.485213 - ], - [ - -73.377846, - 45.484834 - ], - [ - -73.377633, - 45.484731 - ], - [ - -73.377163, - 45.484505 - ], - [ - -73.376944, - 45.48441 - ], - [ - -73.376053, - 45.483919 - ], - [ - -73.375418, - 45.483571 - ], - [ - -73.37494, - 45.48331 - ], - [ - -73.375184, - 45.482969 - ], - [ - -73.378887, - 45.477798 - ], - [ - -73.379049, - 45.477564 - ], - [ - -73.379234, - 45.477277 - ], - [ - -73.379286, - 45.477173 - ], - [ - -73.379312, - 45.477038 - ], - [ - -73.378357, - 45.4767 - ], - [ - -73.378768, - 45.47612 - ], - [ - -73.378865, - 45.476016 - ], - [ - -73.379013, - 45.47581 - ], - [ - -73.379381, - 45.475298 - ], - [ - -73.37977, - 45.474904 - ], - [ - -73.379868, - 45.474867 - ], - [ - -73.37992, - 45.474823 - ], - [ - -73.379949, - 45.474771 - ], - [ - -73.379955, - 45.474715 - ], - [ - -73.379944, - 45.474689 - ], - [ - -73.379928, - 45.47465 - ], - [ - -73.379898, - 45.474617 - ], - [ - -73.37987, - 45.4746 - ], - [ - -73.379826, - 45.474574 - ], - [ - -73.379662, - 45.474553 - ], - [ - -73.379578, - 45.474573 - ], - [ - -73.379521, - 45.474603 - ], - [ - -73.379485, - 45.474634 - ], - [ - -73.379454, - 45.474683 - ], - [ - -73.379447, - 45.474748 - ], - [ - -73.379247, - 45.475249 - ], - [ - -73.37886, - 45.475776 - ], - [ - -73.378727, - 45.475958 - ], - [ - -73.378232, - 45.475746 - ], - [ - -73.377593, - 45.475489 - ], - [ - -73.37695, - 45.47525 - ], - [ - -73.376248, - 45.474999 - ], - [ - -73.375066, - 45.474576 - ], - [ - -73.373694, - 45.474085 - ], - [ - -73.37362, - 45.474193 - ], - [ - -73.373508, - 45.474319 - ], - [ - -73.373075, - 45.474921 - ], - [ - -73.372901, - 45.475178 - ], - [ - -73.369394, - 45.480046 - ], - [ - -73.36929, - 45.48019 - ], - [ - -73.368508, - 45.479756 - ], - [ - -73.365398, - 45.478031 - ], - [ - -73.365331, - 45.477994 - ], - [ - -73.36408, - 45.477314 - ], - [ - -73.363431, - 45.476953 - ], - [ - -73.362889, - 45.476699 - ], - [ - -73.362641, - 45.476583 - ], - [ - -73.361798, - 45.476213 - ], - [ - -73.360718, - 45.475762 - ], - [ - -73.358929, - 45.475013 - ], - [ - -73.358925, - 45.475011 - ], - [ - -73.358178, - 45.474674 - ], - [ - -73.357451, - 45.4743 - ], - [ - -73.356607, - 45.473732 - ], - [ - -73.35484, - 45.472493 - ], - [ - -73.354769, - 45.472443 - ], - [ - -73.352287, - 45.470834 - ], - [ - -73.351405, - 45.470281 - ], - [ - -73.351372, - 45.470261 - ], - [ - -73.349182, - 45.468818 - ], - [ - -73.349501, - 45.468387 - ], - [ - -73.351233, - 45.466041 - ], - [ - -73.351359, - 45.46587 - ], - [ - -73.351443, - 45.465762 - ], - [ - -73.351752, - 45.46535 - ], - [ - -73.352126, - 45.464849 - ], - [ - -73.35259, - 45.464211 - ], - [ - -73.352887, - 45.463809 - ], - [ - -73.354076, - 45.462197 - ], - [ - -73.3541, - 45.462163 - ], - [ - -73.355111, - 45.460812 - ], - [ - -73.355713, - 45.460008 - ], - [ - -73.356938, - 45.45839 - ], - [ - -73.357611, - 45.457481 - ], - [ - -73.358218, - 45.456659 - ], - [ - -73.360278, - 45.453896 - ], - [ - -73.36037, - 45.453772 - ], - [ - -73.360735, - 45.453904 - ], - [ - -73.360808, - 45.45392 - ], - [ - -73.36085, - 45.453914 - ], - [ - -73.36089, - 45.453881 - ], - [ - -73.360947, - 45.453822 - ], - [ - -73.361614, - 45.452902 - ], - [ - -73.362884, - 45.45119 - ], - [ - -73.362862, - 45.451175 - ], - [ - -73.362753, - 45.451106 - ], - [ - -73.362245, - 45.45078 - ], - [ - -73.362089, - 45.45068 - ], - [ - -73.361154, - 45.450101 - ], - [ - -73.360529, - 45.449714 - ], - [ - -73.360474, - 45.44968 - ], - [ - -73.360435, - 45.449657 - ], - [ - -73.360398, - 45.449646 - ], - [ - -73.360356, - 45.44964 - ], - [ - -73.360313, - 45.449642 - ], - [ - -73.360274, - 45.449652 - ], - [ - -73.360247, - 45.449663 - ], - [ - -73.360219, - 45.44968 - ], - [ - -73.360198, - 45.449699 - ], - [ - -73.360072, - 45.44987 - ], - [ - -73.35979, - 45.450256 - ], - [ - -73.358811, - 45.451565 - ], - [ - -73.358327, - 45.452213 - ], - [ - -73.357938, - 45.452733 - ], - [ - -73.357928, - 45.45275 - ], - [ - -73.357921, - 45.452769 - ], - [ - -73.357919, - 45.452788 - ], - [ - -73.357921, - 45.452807 - ], - [ - -73.357927, - 45.452825 - ], - [ - -73.357937, - 45.452843 - ], - [ - -73.35795, - 45.45286 - ], - [ - -73.357968, - 45.452874 - ], - [ - -73.357988, - 45.452887 - ], - [ - -73.358011, - 45.452897 - ], - [ - -73.35859, - 45.45311 - ] - ] - }, - "id": 398, - "properties": { - "id": "8206192c-0dee-415f-b02a-2d220371965d", - "data": { - "gtfs": { - "shape_id": "820_1_R" - }, - "segments": [ - { - "distanceMeters": 1749, - "travelTimeSeconds": 280 - }, - { - "distanceMeters": 821, - "travelTimeSeconds": 131 - }, - { - "distanceMeters": 474, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 1235, - "travelTimeSeconds": 198 - }, - { - "distanceMeters": 331, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 1210, - "travelTimeSeconds": 194 - }, - { - "distanceMeters": 412, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 239, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 426, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 364, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 292, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 87, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 202, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 174, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 419, - "travelTimeSeconds": 67 - }, - { - "distanceMeters": 450, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 467, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 179, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 35 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 10858, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 6081.928046710087, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.24, - "travelTimeWithoutDwellTimesSeconds": 1740, - "operatingTimeWithLayoverTimeSeconds": 1920, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1740, - "operatingSpeedWithLayoverMetersPerSecond": 5.65, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.24 - }, - "mode": "taxi", - "name": "La Fredière", - "color": "#A32638", - "nodes": [ - "d1cd707b-8ed5-4d1d-b1cb-7633cade451b", - "ced239e0-91f5-4429-96fd-20bbb8fcfd11", - "88a428f4-cdde-43a8-a2c3-c4652eae6722", - "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", - "021fa80e-da9f-408b-be90-bb5e978d84f8", - "021fa80e-da9f-408b-be90-bb5e978d84f8", - "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", - "d4214201-daf1-434d-b42f-8c8d41dcb39c", - "97664706-d6c8-4052-8818-e52a0be48a3e", - "8a9ec4a8-34de-402b-ac5c-aa964c85104b", - "e66f2736-29ec-4b36-b206-47f7af7309b0", - "4dd490ae-1643-4ca9-948e-eb5c251b5754", - "387ad44c-0d6a-4a89-821b-3e0834eed8e2", - "b966dc8d-04a6-41da-9b2d-4c18b27bb13f", - "e9563d31-b4cc-432d-bbf1-a6ee47aee4e9", - "67c19007-add6-4dc0-8788-d8052cdf5468", - "88e03d45-747f-4e6b-aeb6-97810526c65b", - "6879e62e-b2af-404b-9ac0-810ced89b9c5", - "584e7592-5868-423c-a0f3-f7047fcc0c94", - "ffb2037a-ed82-4fd2-9ba4-9740ffc9fc74", - "79ae40e4-ac61-4b2e-a0be-b4970ad0e618", - "21eee29a-2e1c-4976-998c-3e4733f522e7", - "35bbf632-18f8-44dd-ab04-b98a1c0d6a9e", - "391ee800-682d-4882-8762-f7283ff37556" - ], - "stops": [], - "line_id": "f2105914-2e93-44da-96b4-d541d3a4896d", - "segments": [ - 0, - 40, - 58, - 68, - 83, - 102, - 114, - 118, - 121, - 126, - 130, - 133, - 136, - 137, - 140, - 143, - 144, - 146, - 149, - 151, - 162, - 165, - 177 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 398, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.416829, - 45.457739 - ], - [ - -73.416622, - 45.457887 - ], - [ - -73.416344, - 45.458017 - ], - [ - -73.416165, - 45.458062 - ], - [ - -73.415997, - 45.458084 - ], - [ - -73.415882, - 45.458093 - ], - [ - -73.415729, - 45.458102 - ], - [ - -73.415567, - 45.45812 - ], - [ - -73.415388, - 45.458142 - ], - [ - -73.415204, - 45.458183 - ], - [ - -73.415063, - 45.458237 - ], - [ - -73.414927, - 45.458313 - ], - [ - -73.414818, - 45.458382 - ], - [ - -73.414651, - 45.458488 - ], - [ - -73.410032, - 45.461922 - ], - [ - -73.410017, - 45.461933 - ], - [ - -73.40945, - 45.462354 - ], - [ - -73.408357, - 45.463154 - ], - [ - -73.40765, - 45.463671 - ], - [ - -73.404488, - 45.461547 - ], - [ - -73.404296, - 45.461418 - ], - [ - -73.402471, - 45.462753 - ], - [ - -73.401773, - 45.463279 - ], - [ - -73.401752, - 45.463294 - ], - [ - -73.400271, - 45.464402 - ] - ] - }, - "id": 399, - "properties": { - "id": "7884da10-8f18-4b2f-b063-c4eb0a874670", - "data": { - "gtfs": { - "shape_id": "821_1_R" - }, - "segments": [ - { - "distanceMeters": 178, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 543, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 611, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 23 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 1809, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 1483.9941474341915, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.53, - "travelTimeWithoutDwellTimesSeconds": 240, - "operatingTimeWithLayoverTimeSeconds": 420, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 240, - "operatingSpeedWithLayoverMetersPerSecond": 4.31, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.53 - }, - "mode": "taxi", - "name": "Armand-Frappier", - "color": "#A32638", - "nodes": [ - "cdda3c7c-b577-49de-afc0-aa4c4e60c34b", - "dc623539-3b98-4807-a5d5-f66507b8bc4c", - "fee943f3-e127-46e6-bc62-d6c4c320bd7a", - "28acd503-64ba-4c57-925c-1acd27dd7dde", - "3950239b-5631-4d11-8c79-64fecfa361ca", - "079e9464-8795-42f3-bc7f-526d1ec5de83" - ], - "stops": [], - "line_id": "7ea078f5-8350-43aa-857d-f29641193594", - "segments": [ - 0, - 12, - 14, - 19, - 23 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 399, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.400358, - 45.464338 - ], - [ - -73.40161, - 45.4634 - ], - [ - -73.401773, - 45.463279 - ], - [ - -73.402471, - 45.462753 - ], - [ - -73.40415, - 45.461524 - ], - [ - -73.404296, - 45.461418 - ], - [ - -73.406249, - 45.460063 - ], - [ - -73.406952, - 45.459576 - ], - [ - -73.408728, - 45.458425 - ], - [ - -73.409865, - 45.457688 - ], - [ - -73.410149, - 45.457553 - ], - [ - -73.410462, - 45.457446 - ], - [ - -73.410807, - 45.457387 - ], - [ - -73.411159, - 45.457347 - ], - [ - -73.411393, - 45.457343 - ], - [ - -73.411627, - 45.457361 - ], - [ - -73.412457, - 45.457447 - ], - [ - -73.412673, - 45.457474 - ], - [ - -73.412926, - 45.457502 - ], - [ - -73.413147, - 45.457542 - ], - [ - -73.413262, - 45.457587 - ], - [ - -73.413399, - 45.457668 - ], - [ - -73.414309, - 45.458264 - ], - [ - -73.414651, - 45.458488 - ], - [ - -73.414927, - 45.458313 - ], - [ - -73.415063, - 45.458237 - ], - [ - -73.415204, - 45.458183 - ], - [ - -73.415388, - 45.458142 - ], - [ - -73.415567, - 45.45812 - ], - [ - -73.415729, - 45.458102 - ], - [ - -73.415882, - 45.458093 - ], - [ - -73.415997, - 45.458084 - ], - [ - -73.416165, - 45.458062 - ], - [ - -73.416344, - 45.458017 - ], - [ - -73.416622, - 45.457887 - ], - [ - -73.416854, - 45.457722 - ] - ] - }, - "id": 400, - "properties": { - "id": "e32f2c1d-2d2d-404f-beb0-3b88971837c5", - "data": { - "gtfs": { - "shape_id": "821_1_A" - }, - "segments": [ - { - "distanceMeters": 143, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 231, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 509, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 235, - "travelTimeSeconds": 34 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 1670, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 1483.9941474341915, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.96, - "travelTimeWithoutDwellTimesSeconds": 240, - "operatingTimeWithLayoverTimeSeconds": 420, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 240, - "operatingSpeedWithLayoverMetersPerSecond": 3.98, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.96 - }, - "mode": "taxi", - "name": "Grande Allée", - "color": "#A32638", - "nodes": [ - "079e9464-8795-42f3-bc7f-526d1ec5de83", - "3950239b-5631-4d11-8c79-64fecfa361ca", - "28acd503-64ba-4c57-925c-1acd27dd7dde", - "abd6e1bb-b826-4462-87f2-3bae5c6594ea", - "fcd51ec2-f1b1-4630-8f4f-bbfd7b67c91f", - "dc623539-3b98-4807-a5d5-f66507b8bc4c", - "cdda3c7c-b577-49de-afc0-aa4c4e60c34b" - ], - "stops": [], - "line_id": "7ea078f5-8350-43aa-857d-f29641193594", - "segments": [ - 0, - 1, - 4, - 6, - 8, - 22 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 400, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.409131, - 45.494986 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.408825, - 45.494811 - ], - [ - -73.408434, - 45.49459 - ], - [ - -73.408369, - 45.494555 - ], - [ - -73.408119, - 45.494419 - ], - [ - -73.407735, - 45.494211 - ], - [ - -73.407122, - 45.493914 - ], - [ - -73.406594, - 45.493675 - ], - [ - -73.404056, - 45.49253 - ], - [ - -73.40355, - 45.492282 - ], - [ - -73.403081, - 45.492034 - ], - [ - -73.402782, - 45.491854 - ], - [ - -73.402626, - 45.491759 - ], - [ - -73.402493, - 45.491674 - ], - [ - -73.402463, - 45.491651 - ], - [ - -73.402075, - 45.491386 - ], - [ - -73.401668, - 45.491075 - ], - [ - -73.401167, - 45.490642 - ], - [ - -73.400821, - 45.490307 - ], - [ - -73.40081, - 45.490296 - ], - [ - -73.398815, - 45.488253 - ], - [ - -73.398629, - 45.488062 - ], - [ - -73.398311, - 45.487738 - ], - [ - -73.397543, - 45.486952 - ], - [ - -73.397073, - 45.486473 - ], - [ - -73.396515, - 45.485901 - ], - [ - -73.395797, - 45.485167 - ], - [ - -73.395424, - 45.48482 - ], - [ - -73.39519, - 45.484626 - ], - [ - -73.394903, - 45.484401 - ], - [ - -73.39454, - 45.484131 - ], - [ - -73.394481, - 45.484095 - ], - [ - -73.394291, - 45.483964 - ], - [ - -73.393942, - 45.483748 - ], - [ - -73.393737, - 45.48363 - ], - [ - -73.393666, - 45.48359 - ], - [ - -73.393194, - 45.483333 - ], - [ - -73.389941, - 45.481662 - ], - [ - -73.389604, - 45.481489 - ], - [ - -73.390327, - 45.480471 - ], - [ - -73.390189, - 45.480347 - ], - [ - -73.39014, - 45.480293 - ], - [ - -73.390072, - 45.480244 - ], - [ - -73.389421, - 45.47987 - ], - [ - -73.389193, - 45.479779 - ], - [ - -73.388979, - 45.479671 - ], - [ - -73.387452, - 45.478897 - ], - [ - -73.387157, - 45.478747 - ], - [ - -73.386978, - 45.478639 - ], - [ - -73.386905, - 45.478549 - ], - [ - -73.386905, - 45.478427 - ], - [ - -73.386987, - 45.478283 - ], - [ - -73.38737, - 45.477598 - ], - [ - -73.388259, - 45.476008 - ], - [ - -73.388803, - 45.475306 - ], - [ - -73.390004, - 45.473756 - ], - [ - -73.390088, - 45.473648 - ], - [ - -73.390141, - 45.473594 - ], - [ - -73.390206, - 45.473553 - ], - [ - -73.390246, - 45.473544 - ], - [ - -73.390301, - 45.473535 - ], - [ - -73.390506, - 45.473581 - ], - [ - -73.390724, - 45.473667 - ], - [ - -73.39155, - 45.473992 - ], - [ - -73.391902, - 45.474131 - ], - [ - -73.392574, - 45.474419 - ], - [ - -73.392966, - 45.474592 - ], - [ - -73.393067, - 45.474636 - ], - [ - -73.393169, - 45.474708 - ], - [ - -73.393219, - 45.474789 - ], - [ - -73.393214, - 45.474865 - ], - [ - -73.393186, - 45.474924 - ], - [ - -73.391445, - 45.47727 - ], - [ - -73.390196, - 45.478952 - ], - [ - -73.389899, - 45.479384 - ], - [ - -73.389655, - 45.479667 - ], - [ - -73.389421, - 45.47987 - ], - [ - -73.390072, - 45.480244 - ], - [ - -73.390126, - 45.480283 - ] - ] - }, - "id": 401, - "properties": { - "id": "52cf0d16-84e0-49e2-9f81-6a7adebcb043", - "data": { - "gtfs": { - "shape_id": "822_1_A" - }, - "segments": [ - { - "distanceMeters": 1114, - "travelTimeSeconds": 187 - }, - { - "distanceMeters": 1020, - "travelTimeSeconds": 173 - }, - { - "distanceMeters": 298, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 402, - "travelTimeSeconds": 103 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 4240, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 2182.3024987933086, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.44, - "travelTimeWithoutDwellTimesSeconds": 780, - "operatingTimeWithLayoverTimeSeconds": 960, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 780, - "operatingSpeedWithLayoverMetersPerSecond": 4.42, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.44 - }, - "mode": "taxi", - "name": "boul. Gaétan-Boucher", - "color": "#A32638", - "nodes": [ - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "f7cea010-bc23-4b23-9787-ee1c97385691", - "bbd5aca7-7e7b-4d06-8311-2cf48d52f004", - "7a57d6b0-c7c3-4126-8d8e-15b73700298c", - "ed4d769a-a729-464c-9950-c3c85c6236e8", - "b9093d84-9af5-4f2a-93ad-1688b71ea956", - "bc2d979c-1e8c-4c22-b201-faf3b0883de7", - "4e8e590f-c7fc-411e-a553-507fa178df0d", - "fa4f53a1-c17d-439f-ba32-89d994d23052" - ], - "stops": [], - "line_id": "1ca41c74-841c-4027-b55a-90ed5a1fb305", - "segments": [ - 0, - 21, - 38, - 46, - 53, - 55, - 63, - 67, - 73 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 401, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.390126, - 45.480283 - ], - [ - -73.39014, - 45.480293 - ], - [ - -73.390189, - 45.480347 - ], - [ - -73.389621, - 45.481161 - ], - [ - -73.389467, - 45.481417 - ], - [ - -73.389334, - 45.481534 - ], - [ - -73.389467, - 45.481602 - ], - [ - -73.38959, - 45.481669 - ], - [ - -73.390071, - 45.481927 - ], - [ - -73.390313, - 45.482057 - ], - [ - -73.390427, - 45.482115 - ], - [ - -73.393166, - 45.483526 - ], - [ - -73.393715, - 45.483828 - ], - [ - -73.393921, - 45.48395 - ], - [ - -73.394183, - 45.484121 - ], - [ - -73.394326, - 45.48422 - ], - [ - -73.394526, - 45.48436 - ], - [ - -73.394852, - 45.484608 - ], - [ - -73.395097, - 45.484806 - ], - [ - -73.395347, - 45.485022 - ], - [ - -73.395593, - 45.485252 - ], - [ - -73.396316, - 45.48599 - ], - [ - -73.396877, - 45.486562 - ], - [ - -73.397253, - 45.486945 - ], - [ - -73.397988, - 45.487693 - ], - [ - -73.398423, - 45.488141 - ], - [ - -73.398503, - 45.488224 - ], - [ - -73.400292, - 45.490061 - ], - [ - -73.400631, - 45.490403 - ], - [ - -73.40073, - 45.490503 - ], - [ - -73.40103, - 45.490791 - ], - [ - -73.401471, - 45.491169 - ], - [ - -73.401956, - 45.491543 - ], - [ - -73.402249, - 45.491741 - ], - [ - -73.402357, - 45.491809 - ], - [ - -73.40251, - 45.491908 - ], - [ - -73.402561, - 45.491939 - ], - [ - -73.403076, - 45.492241 - ], - [ - -73.403455, - 45.492444 - ], - [ - -73.403928, - 45.492669 - ], - [ - -73.405646, - 45.493445 - ], - [ - -73.406465, - 45.493815 - ], - [ - -73.407044, - 45.494076 - ], - [ - -73.407318, - 45.494207 - ], - [ - -73.407449, - 45.49427 - ], - [ - -73.408138, - 45.494635 - ], - [ - -73.408589, - 45.494884 - ] - ] - }, - "id": 402, - "properties": { - "id": "279861ae-1060-4ea3-bf22-49eb63641433", - "data": { - "gtfs": { - "shape_id": "822_1_R" - }, - "segments": [ - { - "distanceMeters": 1190, - "travelTimeSeconds": 155 - }, - { - "distanceMeters": 1107, - "travelTimeSeconds": 145 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 2296, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 2182.3024987933086, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.65, - "travelTimeWithoutDwellTimesSeconds": 300, - "operatingTimeWithLayoverTimeSeconds": 480, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 300, - "operatingSpeedWithLayoverMetersPerSecond": 4.78, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.65 - }, - "mode": "taxi", - "name": "boul. Gaétan-Boucher", - "color": "#A32638", - "nodes": [ - "fa4f53a1-c17d-439f-ba32-89d994d23052", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3" - ], - "stops": [], - "line_id": "1ca41c74-841c-4027-b55a-90ed5a1fb305", - "segments": [ - 0, - 25 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 402, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.389948, - 45.481666 - ], - [ - -73.389604, - 45.481489 - ], - [ - -73.390327, - 45.480471 - ], - [ - -73.390189, - 45.480347 - ], - [ - -73.39014, - 45.480293 - ], - [ - -73.390072, - 45.480244 - ], - [ - -73.389421, - 45.47987 - ], - [ - -73.389193, - 45.479779 - ], - [ - -73.388988, - 45.479675 - ], - [ - -73.387194, - 45.478766 - ], - [ - -73.387157, - 45.478747 - ], - [ - -73.386978, - 45.478639 - ], - [ - -73.386905, - 45.478549 - ], - [ - -73.386905, - 45.478427 - ], - [ - -73.386987, - 45.478283 - ], - [ - -73.387361, - 45.477614 - ], - [ - -73.388259, - 45.476008 - ], - [ - -73.388792, - 45.47532 - ], - [ - -73.390004, - 45.473756 - ], - [ - -73.390088, - 45.473648 - ], - [ - -73.390141, - 45.473594 - ], - [ - -73.390206, - 45.473553 - ], - [ - -73.390246, - 45.473544 - ], - [ - -73.390301, - 45.473535 - ], - [ - -73.390506, - 45.473581 - ], - [ - -73.390715, - 45.473663 - ], - [ - -73.391902, - 45.474131 - ], - [ - -73.391934, - 45.474145 - ], - [ - -73.392574, - 45.474419 - ], - [ - -73.392957, - 45.474588 - ], - [ - -73.393067, - 45.474636 - ], - [ - -73.393169, - 45.474708 - ], - [ - -73.393219, - 45.474789 - ], - [ - -73.393214, - 45.474865 - ], - [ - -73.393186, - 45.474924 - ], - [ - -73.39145, - 45.477263 - ], - [ - -73.390196, - 45.478952 - ], - [ - -73.389899, - 45.479384 - ], - [ - -73.389655, - 45.479667 - ], - [ - -73.389421, - 45.47987 - ], - [ - -73.390072, - 45.480244 - ], - [ - -73.390118, - 45.480277 - ], - [ - -73.39014, - 45.480293 - ], - [ - -73.390189, - 45.480347 - ], - [ - -73.389621, - 45.481161 - ], - [ - -73.389467, - 45.481417 - ], - [ - -73.389334, - 45.481534 - ], - [ - -73.389467, - 45.481602 - ], - [ - -73.38959, - 45.481669 - ], - [ - -73.390071, - 45.481927 - ], - [ - -73.390313, - 45.482057 - ], - [ - -73.390427, - 45.482115 - ], - [ - -73.393166, - 45.483526 - ], - [ - -73.393715, - 45.483828 - ], - [ - -73.393921, - 45.48395 - ], - [ - -73.394183, - 45.484121 - ], - [ - -73.394326, - 45.48422 - ], - [ - -73.394526, - 45.48436 - ], - [ - -73.394852, - 45.484608 - ], - [ - -73.395097, - 45.484806 - ], - [ - -73.395347, - 45.485022 - ], - [ - -73.395593, - 45.485252 - ], - [ - -73.396316, - 45.48599 - ], - [ - -73.396877, - 45.486562 - ], - [ - -73.397253, - 45.486945 - ], - [ - -73.397988, - 45.487693 - ], - [ - -73.398423, - 45.488142 - ], - [ - -73.398503, - 45.488224 - ], - [ - -73.400292, - 45.490061 - ], - [ - -73.400631, - 45.490403 - ], - [ - -73.40073, - 45.490503 - ], - [ - -73.40103, - 45.490791 - ], - [ - -73.401471, - 45.491169 - ], - [ - -73.401956, - 45.491543 - ], - [ - -73.402249, - 45.491741 - ], - [ - -73.402357, - 45.491809 - ], - [ - -73.40251, - 45.491908 - ], - [ - -73.402561, - 45.491939 - ], - [ - -73.403076, - 45.492241 - ], - [ - -73.403455, - 45.492444 - ], - [ - -73.403928, - 45.492669 - ], - [ - -73.405646, - 45.493445 - ], - [ - -73.406465, - 45.493815 - ], - [ - -73.407044, - 45.494076 - ], - [ - -73.407318, - 45.494207 - ], - [ - -73.407449, - 45.49427 - ], - [ - -73.408138, - 45.494635 - ], - [ - -73.408589, - 45.494884 - ] - ] - }, - "id": 403, - "properties": { - "id": "883d3779-1270-400a-b992-20848e52561d", - "data": { - "gtfs": { - "shape_id": "822_2_R" - }, - "segments": [ - { - "distanceMeters": 298, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 317, - "travelTimeSeconds": 49 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 340, - "travelTimeSeconds": 74 - }, - { - "distanceMeters": 402, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 1191, - "travelTimeSeconds": 180 - }, - { - "distanceMeters": 1107, - "travelTimeSeconds": 156 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 4403, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 2082.060043488649, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.12, - "travelTimeWithoutDwellTimesSeconds": 720, - "operatingTimeWithLayoverTimeSeconds": 900, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 720, - "operatingSpeedWithLayoverMetersPerSecond": 4.89, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.12 - }, - "mode": "taxi", - "name": "boul. Gaétan-Boucher", - "color": "#A32638", - "nodes": [ - "f7cea010-bc23-4b23-9787-ee1c97385691", - "bbd5aca7-7e7b-4d06-8311-2cf48d52f004", - "7a57d6b0-c7c3-4126-8d8e-15b73700298c", - "ed4d769a-a729-464c-9950-c3c85c6236e8", - "b9093d84-9af5-4f2a-93ad-1688b71ea956", - "bc2d979c-1e8c-4c22-b201-faf3b0883de7", - "4e8e590f-c7fc-411e-a553-507fa178df0d", - "fa4f53a1-c17d-439f-ba32-89d994d23052", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3" - ], - "stops": [], - "line_id": "1ca41c74-841c-4027-b55a-90ed5a1fb305", - "segments": [ - 0, - 8, - 15, - 17, - 25, - 29, - 35, - 41, - 66 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 403, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.409131, - 45.494986 - ], - [ - -73.408999, - 45.49491 - ], - [ - -73.408825, - 45.494811 - ], - [ - -73.408434, - 45.49459 - ], - [ - -73.408369, - 45.494555 - ], - [ - -73.408119, - 45.494419 - ], - [ - -73.407735, - 45.494211 - ], - [ - -73.407122, - 45.493914 - ], - [ - -73.406594, - 45.493675 - ], - [ - -73.404056, - 45.49253 - ], - [ - -73.40355, - 45.492282 - ], - [ - -73.403081, - 45.492034 - ], - [ - -73.402782, - 45.491854 - ], - [ - -73.402626, - 45.491759 - ], - [ - -73.402493, - 45.491674 - ], - [ - -73.402463, - 45.491651 - ], - [ - -73.402075, - 45.491386 - ], - [ - -73.401668, - 45.491075 - ], - [ - -73.401167, - 45.490642 - ], - [ - -73.400821, - 45.490307 - ], - [ - -73.40081, - 45.490296 - ], - [ - -73.398818, - 45.488256 - ], - [ - -73.398629, - 45.488062 - ], - [ - -73.398311, - 45.487738 - ], - [ - -73.397543, - 45.486952 - ], - [ - -73.397073, - 45.486473 - ], - [ - -73.396515, - 45.485901 - ], - [ - -73.395797, - 45.485167 - ], - [ - -73.395424, - 45.48482 - ], - [ - -73.39519, - 45.484626 - ], - [ - -73.394903, - 45.484401 - ], - [ - -73.39454, - 45.484131 - ], - [ - -73.394481, - 45.484095 - ], - [ - -73.394291, - 45.483964 - ], - [ - -73.393942, - 45.483748 - ], - [ - -73.393737, - 45.48363 - ], - [ - -73.393666, - 45.48359 - ], - [ - -73.393194, - 45.483333 - ], - [ - -73.389948, - 45.481666 - ] - ] - }, - "id": 404, - "properties": { - "id": "983c31b8-fa22-454e-bca7-7e741cc311cc", - "data": { - "gtfs": { - "shape_id": "822_2_A" - }, - "segments": [ - { - "distanceMeters": 1113, - "travelTimeSeconds": 187 - }, - { - "distanceMeters": 1020, - "travelTimeSeconds": 173 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 2132, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 2082.060043488649, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.92, - "travelTimeWithoutDwellTimesSeconds": 360, - "operatingTimeWithLayoverTimeSeconds": 540, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 360, - "operatingSpeedWithLayoverMetersPerSecond": 3.95, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.92 - }, - "mode": "taxi", - "name": "Parc ind. G-Leclerc", - "color": "#A32638", - "nodes": [ - "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "54d47023-e112-40d5-b44e-eafc96f238ef", - "f7cea010-bc23-4b23-9787-ee1c97385691" - ], - "stops": [], - "line_id": "1ca41c74-841c-4027-b55a-90ed5a1fb305", - "segments": [ - 0, - 21 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 404, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.470282, - 45.465904 - ], - [ - -73.47253, - 45.465927 - ], - [ - -73.472532, - 45.466083 - ], - [ - -73.472532, - 45.466141 - ], - [ - -73.473351, - 45.466148 - ], - [ - -73.473543, - 45.466181 - ], - [ - -73.473738, - 45.466268 - ], - [ - -73.473913, - 45.466413 - ], - [ - -73.47407, - 45.466476 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474542, - 45.4665 - ], - [ - -73.474546, - 45.466404 - ], - [ - -73.474554, - 45.466199 - ], - [ - -73.474621, - 45.465194 - ], - [ - -73.474664, - 45.464506 - ], - [ - -73.474669, - 45.464397 - ], - [ - -73.474734, - 45.464067 - ], - [ - -73.474884, - 45.463697 - ], - [ - -73.475002, - 45.463492 - ], - [ - -73.47522, - 45.463212 - ], - [ - -73.475408, - 45.463039 - ], - [ - -73.47556, - 45.462909 - ], - [ - -73.475821, - 45.462711 - ], - [ - -73.476105, - 45.462495 - ], - [ - -73.476557, - 45.462176 - ], - [ - -73.477249, - 45.461685 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.47888, - 45.460399 - ], - [ - -73.479008, - 45.460264 - ], - [ - -73.479302, - 45.459904 - ], - [ - -73.479398, - 45.459769 - ], - [ - -73.479488, - 45.459616 - ], - [ - -73.479616, - 45.459382 - ], - [ - -73.479699, - 45.459202 - ], - [ - -73.47976, - 45.459027 - ], - [ - -73.479776, - 45.458968 - ], - [ - -73.479808, - 45.458865 - ], - [ - -73.479852, - 45.458707 - ], - [ - -73.479891, - 45.458478 - ], - [ - -73.479913, - 45.458325 - ], - [ - -73.479923, - 45.458145 - ], - [ - -73.479926, - 45.458073 - ], - [ - -73.479893, - 45.457659 - ], - [ - -73.479803, - 45.456723 - ], - [ - -73.48065, - 45.456756 - ], - [ - -73.482746, - 45.456836 - ], - [ - -73.483692, - 45.456872 - ], - [ - -73.485139, - 45.456916 - ], - [ - -73.48636, - 45.456954 - ], - [ - -73.488203, - 45.457017 - ], - [ - -73.489765, - 45.457071 - ], - [ - -73.491355, - 45.457125 - ], - [ - -73.491539, - 45.457127 - ], - [ - -73.491916, - 45.45713 - ], - [ - -73.492063, - 45.457125 - ], - [ - -73.492191, - 45.457112 - ], - [ - -73.492604, - 45.457095 - ], - [ - -73.492835, - 45.457085 - ], - [ - -73.492872, - 45.457121 - ], - [ - -73.492924, - 45.45717 - ], - [ - -73.492952, - 45.457224 - ], - [ - -73.49298, - 45.457571 - ], - [ - -73.493075, - 45.459123 - ], - [ - -73.493088, - 45.459222 - ], - [ - -73.493088, - 45.459415 - ], - [ - -73.493088, - 45.459555 - ], - [ - -73.493088, - 45.459645 - ], - [ - -73.493114, - 45.459681 - ], - [ - -73.493167, - 45.459726 - ], - [ - -73.493225, - 45.459757 - ], - [ - -73.493227, - 45.459429 - ], - [ - -73.493227, - 45.459353 - ], - [ - -73.493227, - 45.459163 - ], - [ - -73.493176, - 45.458389 - ], - [ - -73.493131, - 45.457654 - ], - [ - -73.49313, - 45.457634 - ], - [ - -73.493168, - 45.457359 - ], - [ - -73.493184, - 45.457247 - ], - [ - -73.493212, - 45.457202 - ], - [ - -73.493265, - 45.457157 - ], - [ - -73.493346, - 45.457107 - ], - [ - -73.493489, - 45.457062 - ], - [ - -73.49357, - 45.457044 - ], - [ - -73.493685, - 45.456995 - ], - [ - -73.493839, - 45.456873 - ], - [ - -73.49389, - 45.456828 - ] - ] - }, - "id": 405, - "properties": { - "id": "d9c6b4a5-4f13-4c95-a588-0963b23f0843", - "data": { - "gtfs": { - "shape_id": "848_1_R" - }, - "segments": [ - { - "distanceMeters": 2509, - "travelTimeSeconds": 457 - }, - { - "distanceMeters": 451, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 60 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 3268, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 2103.6555490012965, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.45, - "travelTimeWithoutDwellTimesSeconds": 600, - "operatingTimeWithLayoverTimeSeconds": 780, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 600, - "operatingSpeedWithLayoverMetersPerSecond": 4.19, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.45 - }, - "mode": "taxi", - "name": "boul. Marie-Victorin", - "color": "#A32638", - "nodes": [ - "c4ad0852-4be5-437b-8da5-934b6b309e04", - "69fd316d-244b-48fa-871d-645ac04399fc", - "f5036251-0211-4905-a979-2d3d0f8db7ed", - "d8eae8f7-d8ed-4c6f-8280-28fd4b885b03" - ], - "stops": [], - "line_id": "b2678cc1-3ae4-4f7e-b5e5-83cfed80afc1", - "segments": [ - 0, - 52, - 71 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 405, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.470282, - 45.465904 - ], - [ - -73.47253, - 45.465927 - ], - [ - -73.472532, - 45.466083 - ], - [ - -73.472532, - 45.466141 - ], - [ - -73.473351, - 45.466148 - ], - [ - -73.473543, - 45.466181 - ], - [ - -73.473738, - 45.466268 - ], - [ - -73.473913, - 45.466413 - ], - [ - -73.47407, - 45.466476 - ], - [ - -73.474418, - 45.466493 - ], - [ - -73.474407, - 45.466674 - ], - [ - -73.474378, - 45.46715 - ], - [ - -73.474356, - 45.46763 - ], - [ - -73.474357, - 45.467948 - ], - [ - -73.47439, - 45.468455 - ], - [ - -73.474396, - 45.468587 - ], - [ - -73.474279, - 45.468564 - ], - [ - -73.474188, - 45.468555 - ], - [ - -73.474106, - 45.468546 - ], - [ - -73.47395, - 45.468523 - ], - [ - -73.473746, - 45.468478 - ], - [ - -73.473377, - 45.468366 - ], - [ - -73.47308, - 45.468244 - ], - [ - -73.472952, - 45.468208 - ], - [ - -73.472878, - 45.46819 - ], - [ - -73.47268, - 45.468159 - ], - [ - -73.47254, - 45.46815 - ], - [ - -73.471932, - 45.468123 - ], - [ - -73.471273, - 45.468091 - ], - [ - -73.470317, - 45.468041 - ], - [ - -73.469498, - 45.468002 - ], - [ - -73.469338, - 45.467993 - ], - [ - -73.469319, - 45.467991 - ], - [ - -73.468598, - 45.467969 - ], - [ - -73.468434, - 45.467978 - ], - [ - -73.467926, - 45.468045 - ], - [ - -73.467714, - 45.468067 - ], - [ - -73.46758, - 45.467757 - ], - [ - -73.467357, - 45.467296 - ], - [ - -73.467335, - 45.467098 - ], - [ - -73.467287, - 45.466921 - ], - [ - -73.46724, - 45.46679 - ], - [ - -73.467201, - 45.466621 - ], - [ - -73.467171, - 45.466457 - ], - [ - -73.467168, - 45.466361 - ], - [ - -73.467171, - 45.466266 - ], - [ - -73.46719, - 45.46616 - ], - [ - -73.467233, - 45.466051 - ], - [ - -73.467286, - 45.465947 - ], - [ - -73.467347, - 45.465852 - ], - [ - -73.46743, - 45.465768 - ], - [ - -73.467509, - 45.465697 - ], - [ - -73.467565, - 45.465647 - ], - [ - -73.467708, - 45.465556 - ], - [ - -73.467878, - 45.465455 - ], - [ - -73.467899, - 45.465442 - ], - [ - -73.46805, - 45.465387 - ], - [ - -73.468287, - 45.465321 - ], - [ - -73.468514, - 45.465288 - ], - [ - -73.468859, - 45.465256 - ], - [ - -73.469207, - 45.465245 - ], - [ - -73.471824, - 45.46534 - ], - [ - -73.47278, - 45.465351 - ], - [ - -73.473923, - 45.465346 - ], - [ - -73.474792, - 45.465284 - ], - [ - -73.476448, - 45.465339 - ], - [ - -73.478069, - 45.465419 - ], - [ - -73.47931, - 45.465481 - ], - [ - -73.480681, - 45.465584 - ], - [ - -73.481658, - 45.465665 - ], - [ - -73.483804, - 45.465854 - ], - [ - -73.484553, - 45.466021 - ], - [ - -73.485079, - 45.466155 - ], - [ - -73.485321, - 45.466217 - ], - [ - -73.485597, - 45.466363 - ], - [ - -73.485805, - 45.466512 - ], - [ - -73.48587, - 45.466606 - ], - [ - -73.486215, - 45.46715 - ], - [ - -73.486309, - 45.467253 - ], - [ - -73.48642, - 45.467342 - ], - [ - -73.486517, - 45.467414 - ], - [ - -73.486647, - 45.467482 - ], - [ - -73.486801, - 45.467547 - ], - [ - -73.486973, - 45.467585 - ], - [ - -73.4872, - 45.467617 - ], - [ - -73.49074, - 45.467901 - ], - [ - -73.491044, - 45.467928 - ], - [ - -73.493839, - 45.468153 - ], - [ - -73.496128, - 45.468328 - ], - [ - -73.496279, - 45.468355 - ], - [ - -73.496463, - 45.468391 - ], - [ - -73.496703, - 45.468486 - ], - [ - -73.496842, - 45.46858 - ], - [ - -73.496944, - 45.468675 - ], - [ - -73.497008, - 45.468765 - ], - [ - -73.497057, - 45.468873 - ], - [ - -73.497086, - 45.46899 - ], - [ - -73.497085, - 45.469111 - ], - [ - -73.497047, - 45.469224 - ], - [ - -73.496971, - 45.469327 - ], - [ - -73.496865, - 45.469413 - ], - [ - -73.496737, - 45.469476 - ], - [ - -73.496592, - 45.469521 - ], - [ - -73.496439, - 45.469543 - ], - [ - -73.496287, - 45.469543 - ], - [ - -73.496141, - 45.469516 - ], - [ - -73.496005, - 45.469471 - ], - [ - -73.495891, - 45.469404 - ], - [ - -73.4958, - 45.469318 - ], - [ - -73.49573, - 45.469219 - ], - [ - -73.495608, - 45.468985 - ], - [ - -73.495553, - 45.468855 - ], - [ - -73.495188, - 45.46809 - ], - [ - -73.494985, - 45.467532 - ], - [ - -73.494442, - 45.46593 - ], - [ - -73.494139, - 45.465053 - ], - [ - -73.494127, - 45.465021 - ], - [ - -73.493678, - 45.463735 - ], - [ - -73.493659, - 45.463676 - ], - [ - -73.493917, - 45.463636 - ], - [ - -73.493991, - 45.46364 - ], - [ - -73.494085, - 45.463658 - ], - [ - -73.494132, - 45.46369 - ], - [ - -73.494165, - 45.463748 - ], - [ - -73.494233, - 45.463951 - ], - [ - -73.494269, - 45.464113 - ], - [ - -73.494299, - 45.464153 - ], - [ - -73.494359, - 45.464176 - ], - [ - -73.494454, - 45.464176 - ], - [ - -73.495155, - 45.464144 - ], - [ - -73.495242, - 45.46418 - ], - [ - -73.495278, - 45.464189 - ], - [ - -73.495316, - 45.464198 - ], - [ - -73.495332, - 45.464193 - ], - [ - -73.495347, - 45.464189 - ], - [ - -73.495374, - 45.464176 - ], - [ - -73.495392, - 45.464149 - ], - [ - -73.495392, - 45.464126 - ], - [ - -73.49539, - 45.464115 - ], - [ - -73.495388, - 45.464104 - ], - [ - -73.495368, - 45.464081 - ], - [ - -73.495341, - 45.464068 - ], - [ - -73.495302, - 45.464063 - ], - [ - -73.495286, - 45.464067 - ], - [ - -73.495239, - 45.464077 - ], - [ - -73.495203, - 45.464099 - ], - [ - -73.495155, - 45.464144 - ], - [ - -73.494454, - 45.464176 - ], - [ - -73.494359, - 45.464176 - ], - [ - -73.494299, - 45.464153 - ], - [ - -73.494269, - 45.464113 - ], - [ - -73.494233, - 45.463951 - ], - [ - -73.494165, - 45.463748 - ], - [ - -73.494132, - 45.46369 - ], - [ - -73.494085, - 45.463658 - ], - [ - -73.493991, - 45.46364 - ], - [ - -73.493917, - 45.463636 - ], - [ - -73.493708, - 45.463668 - ], - [ - -73.493659, - 45.463676 - ], - [ - -73.493494, - 45.463181 - ], - [ - -73.493471, - 45.4631 - ], - [ - -73.493398, - 45.46278 - ], - [ - -73.493387, - 45.462702 - ], - [ - -73.493348, - 45.462495 - ], - [ - -73.493265, - 45.461696 - ], - [ - -73.49322, - 45.460923 - ], - [ - -73.493225, - 45.459757 - ], - [ - -73.493227, - 45.459429 - ], - [ - -73.493227, - 45.459343 - ], - [ - -73.493227, - 45.459163 - ], - [ - -73.493176, - 45.458389 - ], - [ - -73.49313, - 45.457634 - ], - [ - -73.493168, - 45.457359 - ], - [ - -73.493184, - 45.457247 - ], - [ - -73.493212, - 45.457202 - ], - [ - -73.493265, - 45.457157 - ], - [ - -73.493346, - 45.457107 - ], - [ - -73.493489, - 45.457062 - ], - [ - -73.49357, - 45.457044 - ], - [ - -73.493685, - 45.456995 - ], - [ - -73.493839, - 45.456873 - ], - [ - -73.49389, - 45.456828 - ] - ] - }, - "id": 406, - "properties": { - "id": "5bf1b821-00f5-45c9-87d2-858d267c1392", - "data": { - "gtfs": { - "shape_id": "848_2_R" - }, - "segments": [ - { - "distanceMeters": 5018, - "travelTimeSeconds": 505 - }, - { - "distanceMeters": 489, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 60 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 5814, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 2103.6555490012965, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.69, - "travelTimeWithoutDwellTimesSeconds": 600, - "operatingTimeWithLayoverTimeSeconds": 780, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 600, - "operatingSpeedWithLayoverMetersPerSecond": 7.45, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.69 - }, - "mode": "taxi", - "name": "boul. Marie-Victorin", - "color": "#A32638", - "nodes": [ - "c4ad0852-4be5-437b-8da5-934b6b309e04", - "b19b665b-1a3f-41e4-97e7-48f99301b48f", - "f5036251-0211-4905-a979-2d3d0f8db7ed", - "d8eae8f7-d8ed-4c6f-8280-28fd4b885b03" - ], - "stops": [], - "line_id": "b2678cc1-3ae4-4f7e-b5e5-83cfed80afc1", - "segments": [ - 0, - 157, - 168 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 406, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.49389, - 45.456828 - ], - [ - -73.493987, - 45.456743 - ], - [ - -73.494541, - 45.456266 - ], - [ - -73.494697, - 45.456063 - ], - [ - -73.494742, - 45.455982 - ], - [ - -73.494781, - 45.455901 - ], - [ - -73.494793, - 45.45582 - ], - [ - -73.494815, - 45.455658 - ], - [ - -73.494801, - 45.455497 - ], - [ - -73.494713, - 45.455193 - ], - [ - -73.4947, - 45.45515 - ], - [ - -73.494644, - 45.454934 - ], - [ - -73.494633, - 45.454606 - ], - [ - -73.494639, - 45.454208 - ], - [ - -73.494657, - 45.4529 - ], - [ - -73.494661, - 45.45272 - ], - [ - -73.494661, - 45.452707 - ], - [ - -73.494642, - 45.452086 - ], - [ - -73.494617, - 45.451655 - ], - [ - -73.494597, - 45.451326 - ], - [ - -73.494586, - 45.45114 - ], - [ - -73.494547, - 45.450511 - ], - [ - -73.494535, - 45.450326 - ], - [ - -73.494533, - 45.450291 - ], - [ - -73.494494, - 45.449652 - ], - [ - -73.494477, - 45.449575 - ], - [ - -73.494455, - 45.449517 - ], - [ - -73.494402, - 45.449423 - ], - [ - -73.494348, - 45.449342 - ], - [ - -73.494245, - 45.449225 - ], - [ - -73.494147, - 45.449144 - ], - [ - -73.494268, - 45.449068 - ], - [ - -73.494276, - 45.449063 - ], - [ - -73.494471, - 45.448874 - ], - [ - -73.494489, - 45.448329 - ], - [ - -73.4946, - 45.448203 - ], - [ - -73.494627, - 45.448172 - ], - [ - -73.494714, - 45.448037 - ], - [ - -73.494728, - 45.447947 - ], - [ - -73.494717, - 45.447928 - ], - [ - -73.494697, - 45.447893 - ], - [ - -73.494624, - 45.447861 - ], - [ - -73.494525, - 45.447852 - ], - [ - -73.494509, - 45.447854 - ], - [ - -73.494476, - 45.447857 - ], - [ - -73.494435, - 45.447875 - ], - [ - -73.49439, - 45.447915 - ], - [ - -73.494386, - 45.448037 - ], - [ - -73.494428, - 45.448163 - ], - [ - -73.494462, - 45.448248 - ], - [ - -73.494489, - 45.448329 - ], - [ - -73.494471, - 45.448874 - ], - [ - -73.494276, - 45.449063 - ], - [ - -73.494147, - 45.449144 - ], - [ - -73.49394, - 45.449049 - ], - [ - -73.493856, - 45.449013 - ], - [ - -73.493747, - 45.448977 - ], - [ - -73.493571, - 45.448941 - ], - [ - -73.493073, - 45.448905 - ], - [ - -73.4929, - 45.448892 - ], - [ - -73.49291, - 45.448771 - ], - [ - -73.49296, - 45.448149 - ], - [ - -73.493007, - 45.447654 - ], - [ - -73.493156, - 45.446086 - ], - [ - -73.493229, - 45.445324 - ], - [ - -73.493262, - 45.444847 - ], - [ - -73.4933, - 45.444446 - ], - [ - -73.493406, - 45.443357 - ], - [ - -73.493429, - 45.44262 - ], - [ - -73.493466, - 45.442098 - ], - [ - -73.493451, - 45.441636 - ], - [ - -73.493411, - 45.441199 - ], - [ - -73.493271, - 45.440509 - ], - [ - -73.493138, - 45.44014 - ], - [ - -73.49292, - 45.439677 - ], - [ - -73.492491, - 45.438692 - ], - [ - -73.492331, - 45.438305 - ], - [ - -73.492202, - 45.437981 - ], - [ - -73.492046, - 45.437427 - ], - [ - -73.491995, - 45.437207 - ], - [ - -73.491944, - 45.436946 - ], - [ - -73.491917, - 45.436775 - ], - [ - -73.491816, - 45.436078 - ], - [ - -73.49173, - 45.435439 - ], - [ - -73.491694, - 45.435263 - ], - [ - -73.491684, - 45.4352 - ], - [ - -73.491661, - 45.434957 - ], - [ - -73.491513, - 45.433962 - ], - [ - -73.4915, - 45.433877 - ], - [ - -73.491853, - 45.433886 - ], - [ - -73.491863, - 45.433963 - ], - [ - -73.491871, - 45.434003 - ], - [ - -73.491871, - 45.434048 - ], - [ - -73.491867, - 45.43408 - ], - [ - -73.491859, - 45.434105 - ], - [ - -73.491849, - 45.434138 - ], - [ - -73.491828, - 45.434174 - ], - [ - -73.491814, - 45.434228 - ], - [ - -73.491804, - 45.434278 - ], - [ - -73.491807, - 45.434327 - ], - [ - -73.491818, - 45.434426 - ], - [ - -73.491831, - 45.434568 - ], - [ - -73.491835, - 45.434615 - ], - [ - -73.491866, - 45.434768 - ], - [ - -73.49188, - 45.434863 - ], - [ - -73.491895, - 45.434944 - ], - [ - -73.491904, - 45.435038 - ], - [ - -73.49191, - 45.435083 - ], - [ - -73.491915, - 45.43511 - ], - [ - -73.491911, - 45.435142 - ], - [ - -73.491882, - 45.435169 - ], - [ - -73.491835, - 45.435179 - ], - [ - -73.491773, - 45.435188 - ], - [ - -73.491684, - 45.4352 - ], - [ - -73.491282, - 45.435228 - ], - [ - -73.490861, - 45.435254 - ], - [ - -73.490871, - 45.435313 - ], - [ - -73.490911, - 45.435596 - ], - [ - -73.490941, - 45.43588 - ], - [ - -73.490978, - 45.436131 - ], - [ - -73.491142, - 45.436851 - ], - [ - -73.491237, - 45.437184 - ], - [ - -73.49152, - 45.437954 - ], - [ - -73.491829, - 45.438638 - ], - [ - -73.492171, - 45.439317 - ], - [ - -73.492536, - 45.440134 - ], - [ - -73.492686, - 45.440476 - ], - [ - -73.492772, - 45.440644 - ], - [ - -73.492804, - 45.441148 - ], - [ - -73.492835, - 45.441319 - ], - [ - -73.492886, - 45.441751 - ], - [ - -73.492955, - 45.442327 - ], - [ - -73.492825, - 45.443281 - ], - [ - -73.49278, - 45.443672 - ], - [ - -73.492671, - 45.445045 - ], - [ - -73.492587, - 45.445944 - ], - [ - -73.49245, - 45.447542 - ], - [ - -73.491852, - 45.447527 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.490554, - 45.447636 - ], - [ - -73.490537, - 45.447972 - ], - [ - -73.490521, - 45.448293 - ], - [ - -73.490408, - 45.449489 - ], - [ - -73.490386, - 45.449719 - ], - [ - -73.490356, - 45.450109 - ], - [ - -73.490274, - 45.451145 - ], - [ - -73.490186, - 45.451894 - ], - [ - -73.490174, - 45.451996 - ], - [ - -73.490164, - 45.452099 - ], - [ - -73.490107, - 45.452689 - ], - [ - -73.490099, - 45.452842 - ], - [ - -73.490095, - 45.452936 - ], - [ - -73.490138, - 45.453076 - ], - [ - -73.490177, - 45.453161 - ], - [ - -73.490251, - 45.453269 - ], - [ - -73.490337, - 45.453359 - ], - [ - -73.490528, - 45.453501 - ], - [ - -73.49064, - 45.453584 - ], - [ - -73.490922, - 45.453778 - ], - [ - -73.491049, - 45.453868 - ], - [ - -73.491205, - 45.454016 - ], - [ - -73.491307, - 45.454169 - ], - [ - -73.491353, - 45.454286 - ], - [ - -73.491385, - 45.45439 - ], - [ - -73.491385, - 45.45452 - ], - [ - -73.491384, - 45.454523 - ], - [ - -73.491379, - 45.454673 - ], - [ - -73.491306, - 45.455478 - ], - [ - -73.491179, - 45.455672 - ], - [ - -73.491016, - 45.455797 - ], - [ - -73.49101, - 45.455802 - ], - [ - -73.490874, - 45.45587 - ], - [ - -73.490235, - 45.456194 - ], - [ - -73.490047, - 45.45632 - ], - [ - -73.489891, - 45.45645 - ], - [ - -73.489837, - 45.456558 - ], - [ - -73.489805, - 45.456679 - ], - [ - -73.48979, - 45.456788 - ], - [ - -73.489787, - 45.45681 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.488779, - 45.456899 - ], - [ - -73.488212, - 45.456877 - ], - [ - -73.486364, - 45.456814 - ], - [ - -73.485148, - 45.456777 - ], - [ - -73.483698, - 45.456733 - ], - [ - -73.482756, - 45.456692 - ], - [ - -73.480663, - 45.456635 - ], - [ - -73.479792, - 45.456611 - ], - [ - -73.479622, - 45.456606 - ], - [ - -73.479632, - 45.456719 - ], - [ - -73.47972, - 45.457668 - ], - [ - -73.479747, - 45.458082 - ], - [ - -73.479754, - 45.45832 - ], - [ - -73.479732, - 45.458469 - ], - [ - -73.479695, - 45.458689 - ], - [ - -73.479603, - 45.459 - ], - [ - -73.479545, - 45.459171 - ], - [ - -73.479465, - 45.459342 - ], - [ - -73.479339, - 45.459576 - ], - [ - -73.479253, - 45.45972 - ], - [ - -73.479162, - 45.45985 - ], - [ - -73.478872, - 45.460205 - ], - [ - -73.478751, - 45.460331 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474065, - 45.466381 - ], - [ - -73.47383, - 45.466232 - ], - [ - -73.473605, - 45.466125 - ], - [ - -73.473418, - 45.466091 - ], - [ - -73.472532, - 45.466083 - ], - [ - -73.47253, - 45.465927 - ], - [ - -73.472528, - 45.465779 - ], - [ - -73.470085, - 45.465745 - ], - [ - -73.470082, - 45.465902 - ], - [ - -73.470282, - 45.465904 - ] - ] - }, - "id": 407, - "properties": { - "id": "e37dbe09-6beb-4ab4-9541-3b1cf19657e5", - "data": { - "gtfs": { - "shape_id": "848_1_A" - }, - "segments": [ - { - "distanceMeters": 205, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 595, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 1427, - "travelTimeSeconds": 113 - }, - { - "distanceMeters": 1790, - "travelTimeSeconds": 225 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 2448, - "travelTimeSeconds": 420 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 8360, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 2103.655549001296, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.2, - "travelTimeWithoutDwellTimesSeconds": 1020, - "operatingTimeWithLayoverTimeSeconds": 1200, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1020, - "operatingSpeedWithLayoverMetersPerSecond": 6.97, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.2 - }, - "mode": "taxi", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "d8eae8f7-d8ed-4c6f-8280-28fd4b885b03", - "81232cdf-e1d4-440c-91bd-cfdc85007144", - "7ad52fd5-2149-40d5-ae51-5e78e11fdbc1", - "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", - "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", - "c25e5964-dcb2-42c5-8dcb-381856954cdc", - "127a18dc-2231-401d-91c9-c547e1fe457d", - "4b68f075-e5fe-41d1-ab47-bccc21ae9421", - "23aabe88-4903-4450-a13c-36afbe3bd891", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "997c4af9-ab50-4dfb-941a-afadff58f267", - "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", - "c7c30949-db61-44fc-b7ab-a69b9fde12cc", - "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", - "f1131e74-6c65-4f22-a18d-41dbe35e4576", - "984def83-5f59-45f7-bb33-ed1dbca30502", - "c4ad0852-4be5-437b-8da5-934b6b309e04" - ], - "stops": [], - "line_id": "b2678cc1-3ae4-4f7e-b5e5-83cfed80afc1", - "segments": [ - 0, - 9, - 13, - 16, - 18, - 22, - 39, - 63, - 94, - 140, - 142, - 146, - 156, - 165, - 169, - 177 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 407, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.49389, - 45.456828 - ], - [ - -73.493987, - 45.456743 - ], - [ - -73.494541, - 45.456266 - ], - [ - -73.494697, - 45.456063 - ], - [ - -73.494742, - 45.455982 - ], - [ - -73.494781, - 45.455901 - ], - [ - -73.494793, - 45.45582 - ], - [ - -73.494815, - 45.455658 - ], - [ - -73.494801, - 45.455497 - ], - [ - -73.494713, - 45.455193 - ], - [ - -73.4947, - 45.45515 - ], - [ - -73.494644, - 45.454934 - ], - [ - -73.494633, - 45.454606 - ], - [ - -73.494639, - 45.454208 - ], - [ - -73.494657, - 45.4529 - ], - [ - -73.494661, - 45.45272 - ], - [ - -73.494661, - 45.452707 - ], - [ - -73.494642, - 45.452086 - ], - [ - -73.494617, - 45.451655 - ], - [ - -73.494597, - 45.451326 - ], - [ - -73.494586, - 45.45114 - ], - [ - -73.494547, - 45.450511 - ], - [ - -73.494535, - 45.450326 - ], - [ - -73.494533, - 45.450291 - ], - [ - -73.494494, - 45.449652 - ], - [ - -73.494477, - 45.449575 - ], - [ - -73.494455, - 45.449517 - ], - [ - -73.494402, - 45.449423 - ], - [ - -73.494348, - 45.449342 - ], - [ - -73.494245, - 45.449225 - ], - [ - -73.494147, - 45.449144 - ], - [ - -73.494276, - 45.449063 - ], - [ - -73.494471, - 45.448874 - ], - [ - -73.494489, - 45.448329 - ], - [ - -73.494627, - 45.448172 - ], - [ - -73.494714, - 45.448037 - ], - [ - -73.494728, - 45.447947 - ], - [ - -73.494717, - 45.447928 - ], - [ - -73.494697, - 45.447893 - ], - [ - -73.494624, - 45.447861 - ], - [ - -73.494606, - 45.44786 - ], - [ - -73.494525, - 45.447852 - ], - [ - -73.494476, - 45.447857 - ], - [ - -73.494435, - 45.447875 - ], - [ - -73.49439, - 45.447915 - ], - [ - -73.494386, - 45.448037 - ], - [ - -73.494422, - 45.448144 - ], - [ - -73.494428, - 45.448163 - ], - [ - -73.494462, - 45.448248 - ], - [ - -73.494489, - 45.448329 - ], - [ - -73.494471, - 45.448874 - ], - [ - -73.494276, - 45.449063 - ], - [ - -73.494147, - 45.449144 - ], - [ - -73.49394, - 45.449049 - ], - [ - -73.493856, - 45.449013 - ], - [ - -73.493747, - 45.448977 - ], - [ - -73.493571, - 45.448941 - ], - [ - -73.493073, - 45.448905 - ], - [ - -73.4929, - 45.448892 - ], - [ - -73.49296, - 45.448149 - ], - [ - -73.493007, - 45.447654 - ], - [ - -73.493156, - 45.446087 - ], - [ - -73.493229, - 45.445324 - ], - [ - -73.493262, - 45.444847 - ], - [ - -73.4933, - 45.444446 - ], - [ - -73.493406, - 45.443357 - ], - [ - -73.493429, - 45.44262 - ], - [ - -73.493466, - 45.442098 - ], - [ - -73.493451, - 45.441636 - ], - [ - -73.493411, - 45.441199 - ], - [ - -73.493271, - 45.440509 - ], - [ - -73.493138, - 45.44014 - ], - [ - -73.49292, - 45.439677 - ], - [ - -73.492491, - 45.438692 - ], - [ - -73.492331, - 45.438305 - ], - [ - -73.492202, - 45.437981 - ], - [ - -73.492046, - 45.437427 - ], - [ - -73.491995, - 45.437207 - ], - [ - -73.491944, - 45.436946 - ], - [ - -73.491917, - 45.436775 - ], - [ - -73.491816, - 45.436078 - ], - [ - -73.49173, - 45.435439 - ], - [ - -73.491694, - 45.435263 - ], - [ - -73.491684, - 45.4352 - ], - [ - -73.491661, - 45.434957 - ], - [ - -73.491513, - 45.433962 - ], - [ - -73.4915, - 45.433877 - ], - [ - -73.491853, - 45.433886 - ], - [ - -73.491863, - 45.433963 - ], - [ - -73.491871, - 45.434003 - ], - [ - -73.491871, - 45.434048 - ], - [ - -73.491867, - 45.43408 - ], - [ - -73.49186, - 45.434104 - ], - [ - -73.491849, - 45.434138 - ], - [ - -73.491828, - 45.434174 - ], - [ - -73.491814, - 45.434228 - ], - [ - -73.491804, - 45.434278 - ], - [ - -73.491807, - 45.434327 - ], - [ - -73.491818, - 45.434426 - ], - [ - -73.491831, - 45.434568 - ], - [ - -73.491835, - 45.434615 - ], - [ - -73.491866, - 45.434768 - ], - [ - -73.49188, - 45.434863 - ], - [ - -73.491895, - 45.434944 - ], - [ - -73.491904, - 45.435038 - ], - [ - -73.49191, - 45.435083 - ], - [ - -73.491915, - 45.43511 - ], - [ - -73.491911, - 45.435142 - ], - [ - -73.491882, - 45.435169 - ], - [ - -73.491835, - 45.435179 - ], - [ - -73.491773, - 45.435188 - ], - [ - -73.491684, - 45.4352 - ], - [ - -73.491282, - 45.435228 - ], - [ - -73.490861, - 45.435254 - ], - [ - -73.490871, - 45.435313 - ], - [ - -73.490911, - 45.435596 - ], - [ - -73.490941, - 45.43588 - ], - [ - -73.490978, - 45.436131 - ], - [ - -73.491142, - 45.436851 - ], - [ - -73.491237, - 45.437184 - ], - [ - -73.49152, - 45.437954 - ], - [ - -73.491829, - 45.438638 - ], - [ - -73.492171, - 45.439317 - ], - [ - -73.492536, - 45.440134 - ], - [ - -73.492686, - 45.440476 - ], - [ - -73.492772, - 45.440644 - ], - [ - -73.492804, - 45.441148 - ], - [ - -73.492835, - 45.441319 - ], - [ - -73.492886, - 45.441751 - ], - [ - -73.492955, - 45.442327 - ], - [ - -73.492825, - 45.443281 - ], - [ - -73.49278, - 45.443672 - ], - [ - -73.492671, - 45.445045 - ], - [ - -73.492587, - 45.445944 - ], - [ - -73.49245, - 45.447542 - ], - [ - -73.491852, - 45.447527 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.490554, - 45.447636 - ], - [ - -73.490537, - 45.447971 - ], - [ - -73.490521, - 45.448293 - ], - [ - -73.490408, - 45.449488 - ], - [ - -73.490386, - 45.449719 - ], - [ - -73.490356, - 45.450109 - ], - [ - -73.490274, - 45.451145 - ], - [ - -73.490186, - 45.451892 - ], - [ - -73.490174, - 45.451996 - ], - [ - -73.490164, - 45.452099 - ], - [ - -73.490107, - 45.452689 - ], - [ - -73.490099, - 45.452842 - ], - [ - -73.490095, - 45.452936 - ], - [ - -73.490138, - 45.453076 - ], - [ - -73.490177, - 45.453161 - ], - [ - -73.490251, - 45.453269 - ], - [ - -73.490337, - 45.453359 - ], - [ - -73.490526, - 45.453499 - ], - [ - -73.49064, - 45.453584 - ], - [ - -73.490922, - 45.453778 - ], - [ - -73.491049, - 45.453868 - ], - [ - -73.491205, - 45.454016 - ], - [ - -73.491307, - 45.454169 - ], - [ - -73.491353, - 45.454286 - ], - [ - -73.491385, - 45.45439 - ], - [ - -73.491385, - 45.45452 - ], - [ - -73.491384, - 45.454521 - ], - [ - -73.491379, - 45.454673 - ], - [ - -73.491306, - 45.455478 - ], - [ - -73.491179, - 45.455672 - ], - [ - -73.491018, - 45.455796 - ], - [ - -73.49101, - 45.455802 - ], - [ - -73.490874, - 45.45587 - ], - [ - -73.490235, - 45.456194 - ], - [ - -73.490047, - 45.45632 - ], - [ - -73.489891, - 45.45645 - ], - [ - -73.489837, - 45.456558 - ], - [ - -73.489805, - 45.456679 - ], - [ - -73.48979, - 45.456786 - ], - [ - -73.489787, - 45.45681 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.489765, - 45.457071 - ], - [ - -73.490973, - 45.457112 - ], - [ - -73.491355, - 45.457125 - ], - [ - -73.491497, - 45.457126 - ], - [ - -73.491916, - 45.45713 - ], - [ - -73.492063, - 45.457125 - ], - [ - -73.492191, - 45.457112 - ], - [ - -73.492207, - 45.457328 - ], - [ - -73.492451, - 45.459737 - ], - [ - -73.492461, - 45.459829 - ], - [ - -73.492544, - 45.460635 - ], - [ - -73.492615, - 45.461161 - ], - [ - -73.49267, - 45.461326 - ], - [ - -73.492688, - 45.461621 - ], - [ - -73.491311, - 45.461584 - ], - [ - -73.491151, - 45.461579 - ], - [ - -73.490078, - 45.461548 - ], - [ - -73.489429, - 45.461531 - ], - [ - -73.488659, - 45.461512 - ], - [ - -73.488594, - 45.462464 - ], - [ - -73.488573, - 45.462762 - ], - [ - -73.488498, - 45.462929 - ], - [ - -73.488349, - 45.463109 - ], - [ - -73.488109, - 45.463235 - ], - [ - -73.487821, - 45.463302 - ], - [ - -73.487412, - 45.463379 - ], - [ - -73.487283, - 45.463388 - ], - [ - -73.487042, - 45.463406 - ], - [ - -73.486606, - 45.463401 - ], - [ - -73.486489, - 45.463401 - ], - [ - -73.486321, - 45.463433 - ], - [ - -73.486243, - 45.463455 - ], - [ - -73.486089, - 45.463495 - ], - [ - -73.485896, - 45.463576 - ], - [ - -73.485826, - 45.463612 - ], - [ - -73.485277, - 45.463878 - ], - [ - -73.485098, - 45.46395 - ], - [ - -73.484961, - 45.463999 - ], - [ - -73.484817, - 45.464035 - ], - [ - -73.484669, - 45.464067 - ], - [ - -73.484494, - 45.464076 - ], - [ - -73.484342, - 45.46408 - ], - [ - -73.48257, - 45.464048 - ], - [ - -73.482309, - 45.464098 - ], - [ - -73.481982, - 45.464183 - ], - [ - -73.48144, - 45.464399 - ], - [ - -73.480932, - 45.463792 - ], - [ - -73.480306, - 45.46304 - ], - [ - -73.479274, - 45.461807 - ], - [ - -73.478983, - 45.461465 - ], - [ - -73.478678, - 45.461105 - ], - [ - -73.47855, - 45.461011 - ], - [ - -73.478362, - 45.460844 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474065, - 45.466381 - ], - [ - -73.47383, - 45.466232 - ], - [ - -73.473605, - 45.466125 - ], - [ - -73.473418, - 45.466091 - ], - [ - -73.472532, - 45.466083 - ], - [ - -73.47253, - 45.465927 - ], - [ - -73.472528, - 45.465779 - ], - [ - -73.470085, - 45.465745 - ], - [ - -73.470082, - 45.465902 - ], - [ - -73.470282, - 45.465904 - ] - ] - }, - "id": 408, - "properties": { - "id": "00d7b0b4-8ca4-440b-8a0b-2b7895d034f3", - "data": { - "gtfs": { - "shape_id": "848_2_A" - }, - "segments": [ - { - "distanceMeters": 205, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 595, - "travelTimeSeconds": 58 - }, - { - "distanceMeters": 1427, - "travelTimeSeconds": 141 - }, - { - "distanceMeters": 1790, - "travelTimeSeconds": 150 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 60 - }, - { - "distanceMeters": 347, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 2583, - "travelTimeSeconds": 287 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 9326, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 2103.655549001296, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 9.71, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 8.18, - "averageSpeedWithoutDwellTimesMetersPerSecond": 9.71 - }, - "mode": "taxi", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "d8eae8f7-d8ed-4c6f-8280-28fd4b885b03", - "81232cdf-e1d4-440c-91bd-cfdc85007144", - "7ad52fd5-2149-40d5-ae51-5e78e11fdbc1", - "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", - "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", - "c25e5964-dcb2-42c5-8dcb-381856954cdc", - "127a18dc-2231-401d-91c9-c547e1fe457d", - "4b68f075-e5fe-41d1-ab47-bccc21ae9421", - "23aabe88-4903-4450-a13c-36afbe3bd891", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "997c4af9-ab50-4dfb-941a-afadff58f267", - "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", - "c7c30949-db61-44fc-b7ab-a69b9fde12cc", - "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", - "f1131e74-6c65-4f22-a18d-41dbe35e4576", - "984def83-5f59-45f7-bb33-ed1dbca30502", - "69fd316d-244b-48fa-871d-645ac04399fc", - "8e7df7c5-fbe3-41d1-a80a-c492814328ef", - "13911923-9958-42d2-8802-57ffe78c7f38", - "c4ad0852-4be5-437b-8da5-934b6b309e04" - ], - "stops": [], - "line_id": "b2678cc1-3ae4-4f7e-b5e5-83cfed80afc1", - "segments": [ - 0, - 9, - 13, - 16, - 18, - 22, - 37, - 61, - 92, - 138, - 140, - 144, - 154, - 163, - 167, - 175, - 181, - 186, - 192 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 408, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.49389, - 45.456828 - ], - [ - -73.493987, - 45.456743 - ], - [ - -73.494541, - 45.456266 - ], - [ - -73.494697, - 45.456063 - ], - [ - -73.494742, - 45.455982 - ], - [ - -73.494781, - 45.455901 - ], - [ - -73.494793, - 45.45582 - ], - [ - -73.494815, - 45.455658 - ], - [ - -73.494801, - 45.455497 - ], - [ - -73.494713, - 45.455193 - ], - [ - -73.4947, - 45.45515 - ], - [ - -73.494644, - 45.454934 - ], - [ - -73.494633, - 45.454606 - ], - [ - -73.494639, - 45.454208 - ], - [ - -73.494657, - 45.4529 - ], - [ - -73.494661, - 45.45272 - ], - [ - -73.494661, - 45.452707 - ], - [ - -73.494642, - 45.452086 - ], - [ - -73.494617, - 45.451655 - ], - [ - -73.494597, - 45.451326 - ], - [ - -73.494586, - 45.45114 - ], - [ - -73.494547, - 45.450511 - ], - [ - -73.494535, - 45.450326 - ], - [ - -73.494533, - 45.450291 - ], - [ - -73.494494, - 45.449652 - ], - [ - -73.494477, - 45.449575 - ], - [ - -73.494455, - 45.449517 - ], - [ - -73.494402, - 45.449423 - ], - [ - -73.494348, - 45.449342 - ], - [ - -73.494245, - 45.449225 - ], - [ - -73.494147, - 45.449144 - ], - [ - -73.494268, - 45.449068 - ], - [ - -73.494276, - 45.449063 - ], - [ - -73.494471, - 45.448874 - ], - [ - -73.494489, - 45.448329 - ], - [ - -73.4946, - 45.448203 - ], - [ - -73.494627, - 45.448172 - ], - [ - -73.494714, - 45.448037 - ], - [ - -73.494728, - 45.447947 - ], - [ - -73.494717, - 45.447928 - ], - [ - -73.494697, - 45.447893 - ], - [ - -73.494624, - 45.447861 - ], - [ - -73.494525, - 45.447852 - ], - [ - -73.494509, - 45.447854 - ], - [ - -73.494476, - 45.447857 - ], - [ - -73.494435, - 45.447875 - ], - [ - -73.49439, - 45.447915 - ], - [ - -73.494386, - 45.448037 - ], - [ - -73.494428, - 45.448163 - ], - [ - -73.494462, - 45.448248 - ], - [ - -73.494489, - 45.448329 - ], - [ - -73.494471, - 45.448874 - ], - [ - -73.494276, - 45.449063 - ], - [ - -73.494147, - 45.449144 - ], - [ - -73.49394, - 45.449049 - ], - [ - -73.493856, - 45.449013 - ], - [ - -73.493747, - 45.448977 - ], - [ - -73.493571, - 45.448941 - ], - [ - -73.493073, - 45.448905 - ], - [ - -73.4929, - 45.448892 - ], - [ - -73.49291, - 45.448771 - ], - [ - -73.49296, - 45.448149 - ], - [ - -73.493007, - 45.447654 - ], - [ - -73.493156, - 45.446086 - ], - [ - -73.493229, - 45.445324 - ], - [ - -73.493262, - 45.444847 - ], - [ - -73.4933, - 45.444446 - ], - [ - -73.493406, - 45.443357 - ], - [ - -73.493429, - 45.44262 - ], - [ - -73.493466, - 45.442098 - ], - [ - -73.493451, - 45.441636 - ], - [ - -73.493411, - 45.441199 - ], - [ - -73.493271, - 45.440509 - ], - [ - -73.493138, - 45.44014 - ], - [ - -73.49292, - 45.439677 - ], - [ - -73.492491, - 45.438692 - ], - [ - -73.492331, - 45.438305 - ], - [ - -73.492202, - 45.437981 - ], - [ - -73.492046, - 45.437427 - ], - [ - -73.491995, - 45.437207 - ], - [ - -73.491944, - 45.436946 - ], - [ - -73.491917, - 45.436775 - ], - [ - -73.491816, - 45.436078 - ], - [ - -73.49173, - 45.435439 - ], - [ - -73.491694, - 45.435263 - ], - [ - -73.491684, - 45.4352 - ], - [ - -73.491661, - 45.434957 - ], - [ - -73.491513, - 45.433962 - ], - [ - -73.4915, - 45.433877 - ], - [ - -73.491853, - 45.433886 - ], - [ - -73.491863, - 45.433963 - ], - [ - -73.491871, - 45.434003 - ], - [ - -73.491871, - 45.434048 - ], - [ - -73.491867, - 45.43408 - ], - [ - -73.491859, - 45.434105 - ], - [ - -73.491849, - 45.434138 - ], - [ - -73.491828, - 45.434174 - ], - [ - -73.491814, - 45.434228 - ], - [ - -73.491804, - 45.434278 - ], - [ - -73.491807, - 45.434327 - ], - [ - -73.491818, - 45.434426 - ], - [ - -73.491831, - 45.434568 - ], - [ - -73.491835, - 45.434615 - ], - [ - -73.491866, - 45.434768 - ], - [ - -73.49188, - 45.434863 - ], - [ - -73.491895, - 45.434944 - ], - [ - -73.491904, - 45.435038 - ], - [ - -73.49191, - 45.435083 - ], - [ - -73.491915, - 45.43511 - ], - [ - -73.491911, - 45.435142 - ], - [ - -73.491882, - 45.435169 - ], - [ - -73.491835, - 45.435179 - ], - [ - -73.491773, - 45.435188 - ], - [ - -73.491684, - 45.4352 - ], - [ - -73.491282, - 45.435228 - ], - [ - -73.490861, - 45.435254 - ], - [ - -73.490871, - 45.435313 - ], - [ - -73.490911, - 45.435596 - ], - [ - -73.490941, - 45.43588 - ], - [ - -73.490978, - 45.436131 - ], - [ - -73.491142, - 45.436851 - ], - [ - -73.491237, - 45.437184 - ], - [ - -73.49152, - 45.437954 - ], - [ - -73.491829, - 45.438638 - ], - [ - -73.492171, - 45.439317 - ], - [ - -73.492536, - 45.440134 - ], - [ - -73.492686, - 45.440476 - ], - [ - -73.492772, - 45.440644 - ], - [ - -73.492804, - 45.441148 - ], - [ - -73.492835, - 45.441319 - ], - [ - -73.492886, - 45.441751 - ], - [ - -73.492955, - 45.442327 - ], - [ - -73.492825, - 45.443281 - ], - [ - -73.49278, - 45.443672 - ], - [ - -73.492671, - 45.445045 - ], - [ - -73.492587, - 45.445944 - ], - [ - -73.49245, - 45.447542 - ], - [ - -73.491852, - 45.447527 - ], - [ - -73.490561, - 45.447497 - ], - [ - -73.490554, - 45.447636 - ], - [ - -73.490537, - 45.447972 - ], - [ - -73.490521, - 45.448293 - ], - [ - -73.490408, - 45.449489 - ], - [ - -73.490386, - 45.449719 - ], - [ - -73.490356, - 45.450109 - ], - [ - -73.490274, - 45.451145 - ], - [ - -73.490186, - 45.451894 - ], - [ - -73.490174, - 45.451996 - ], - [ - -73.490164, - 45.452099 - ], - [ - -73.490107, - 45.452689 - ], - [ - -73.490099, - 45.452842 - ], - [ - -73.490095, - 45.452936 - ], - [ - -73.490138, - 45.453076 - ], - [ - -73.490177, - 45.453161 - ], - [ - -73.490251, - 45.453269 - ], - [ - -73.490337, - 45.453359 - ], - [ - -73.490528, - 45.453501 - ], - [ - -73.49064, - 45.453584 - ], - [ - -73.490922, - 45.453778 - ], - [ - -73.491049, - 45.453868 - ], - [ - -73.491205, - 45.454016 - ], - [ - -73.491307, - 45.454169 - ], - [ - -73.491353, - 45.454286 - ], - [ - -73.491385, - 45.45439 - ], - [ - -73.491385, - 45.45452 - ], - [ - -73.491384, - 45.454523 - ], - [ - -73.491379, - 45.454673 - ], - [ - -73.491306, - 45.455478 - ], - [ - -73.491179, - 45.455672 - ], - [ - -73.491016, - 45.455797 - ], - [ - -73.49101, - 45.455802 - ], - [ - -73.490874, - 45.45587 - ], - [ - -73.490235, - 45.456194 - ], - [ - -73.490047, - 45.45632 - ], - [ - -73.489891, - 45.45645 - ], - [ - -73.489837, - 45.456558 - ], - [ - -73.489805, - 45.456679 - ], - [ - -73.48979, - 45.456788 - ], - [ - -73.489787, - 45.45681 - ], - [ - -73.489781, - 45.456936 - ], - [ - -73.488779, - 45.456899 - ], - [ - -73.488212, - 45.456877 - ], - [ - -73.486364, - 45.456814 - ], - [ - -73.485148, - 45.456777 - ], - [ - -73.483698, - 45.456733 - ], - [ - -73.482756, - 45.456692 - ], - [ - -73.480663, - 45.456635 - ], - [ - -73.479792, - 45.456611 - ], - [ - -73.479622, - 45.456606 - ], - [ - -73.479632, - 45.456719 - ], - [ - -73.47972, - 45.457668 - ], - [ - -73.479747, - 45.458082 - ], - [ - -73.479754, - 45.45832 - ], - [ - -73.479732, - 45.458469 - ], - [ - -73.479695, - 45.458689 - ], - [ - -73.479603, - 45.459 - ], - [ - -73.479545, - 45.459171 - ], - [ - -73.479465, - 45.459342 - ], - [ - -73.479339, - 45.459576 - ], - [ - -73.479253, - 45.45972 - ], - [ - -73.479162, - 45.45985 - ], - [ - -73.478872, - 45.460205 - ], - [ - -73.478751, - 45.460331 - ], - [ - -73.478239, - 45.460772 - ], - [ - -73.476463, - 45.462113 - ], - [ - -73.476014, - 45.462432 - ], - [ - -73.475822, - 45.462607 - ], - [ - -73.475637, - 45.46274 - ], - [ - -73.475488, - 45.462847 - ], - [ - -73.475333, - 45.462977 - ], - [ - -73.475134, - 45.463165 - ], - [ - -73.474954, - 45.463391 - ], - [ - -73.474914, - 45.463441 - ], - [ - -73.474784, - 45.463665 - ], - [ - -73.474663, - 45.463965 - ], - [ - -73.474626, - 45.46406 - ], - [ - -73.474559, - 45.46439 - ], - [ - -73.474553, - 45.464519 - ], - [ - -73.474549, - 45.464612 - ], - [ - -73.4745, - 45.465249 - ], - [ - -73.474495, - 45.465305 - ], - [ - -73.474487, - 45.465416 - ], - [ - -73.474484, - 45.46546 - ], - [ - -73.474464, - 45.465753 - ], - [ - -73.474438, - 45.466178 - ], - [ - -73.474424, - 45.4664 - ], - [ - -73.474065, - 45.466381 - ], - [ - -73.47383, - 45.466232 - ], - [ - -73.473605, - 45.466125 - ], - [ - -73.473418, - 45.466091 - ], - [ - -73.472532, - 45.466083 - ], - [ - -73.47253, - 45.465927 - ], - [ - -73.472528, - 45.465779 - ], - [ - -73.470085, - 45.465745 - ], - [ - -73.470082, - 45.465902 - ], - [ - -73.470282, - 45.465904 - ] - ] - }, - "id": 409, - "properties": { - "id": "ea2d2793-8db7-4007-af6e-4ae7e89cf220", - "data": { - "gtfs": { - "shape_id": "848_3_A" - }, - "segments": [ - { - "distanceMeters": 205, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 110, - "travelTimeSeconds": 8 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 117, - "travelTimeSeconds": 10 - }, - { - "distanceMeters": 148, - "travelTimeSeconds": 11 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 595, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 1427, - "travelTimeSeconds": 113 - }, - { - "distanceMeters": 1790, - "travelTimeSeconds": 225 - }, - { - "distanceMeters": 169, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 137, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 149, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 2448, - "travelTimeSeconds": 420 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 8360, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 2103.655549001296, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.2, - "travelTimeWithoutDwellTimesSeconds": 1020, - "operatingTimeWithLayoverTimeSeconds": 1200, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1020, - "operatingSpeedWithLayoverMetersPerSecond": 6.97, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.2 - }, - "mode": "taxi", - "name": "Terminus Panama", - "color": "#A32638", - "nodes": [ - "d8eae8f7-d8ed-4c6f-8280-28fd4b885b03", - "81232cdf-e1d4-440c-91bd-cfdc85007144", - "7ad52fd5-2149-40d5-ae51-5e78e11fdbc1", - "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", - "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", - "c25e5964-dcb2-42c5-8dcb-381856954cdc", - "127a18dc-2231-401d-91c9-c547e1fe457d", - "4b68f075-e5fe-41d1-ab47-bccc21ae9421", - "23aabe88-4903-4450-a13c-36afbe3bd891", - "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "997c4af9-ab50-4dfb-941a-afadff58f267", - "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", - "c7c30949-db61-44fc-b7ab-a69b9fde12cc", - "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", - "f1131e74-6c65-4f22-a18d-41dbe35e4576", - "984def83-5f59-45f7-bb33-ed1dbca30502", - "c4ad0852-4be5-437b-8da5-934b6b309e04" - ], - "stops": [], - "line_id": "b2678cc1-3ae4-4f7e-b5e5-83cfed80afc1", - "segments": [ - 0, - 9, - 13, - 16, - 18, - 22, - 39, - 63, - 94, - 140, - 142, - 146, - 156, - 165, - 169, - 177 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 409, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.468473, - 45.429621 - ], - [ - -73.468612, - 45.429671 - ], - [ - -73.467519, - 45.431402 - ], - [ - -73.467377, - 45.431628 - ], - [ - -73.466993, - 45.431531 - ], - [ - -73.466476, - 45.431402 - ], - [ - -73.46615, - 45.431313 - ], - [ - -73.465754, - 45.431189 - ], - [ - -73.465322, - 45.431045 - ], - [ - -73.465217, - 45.43101 - ], - [ - -73.464587, - 45.430806 - ], - [ - -73.464091, - 45.430641 - ], - [ - -73.463081, - 45.430309 - ], - [ - -73.462712, - 45.430188 - ], - [ - -73.461078, - 45.429654 - ], - [ - -73.460639, - 45.429496 - ], - [ - -73.460407, - 45.429402 - ], - [ - -73.460136, - 45.429283 - ], - [ - -73.459955, - 45.42919 - ], - [ - -73.459701, - 45.429046 - ], - [ - -73.459276, - 45.428772 - ], - [ - -73.458984, - 45.428544 - ], - [ - -73.458861, - 45.42844 - ], - [ - -73.458826, - 45.428406 - ], - [ - -73.458694, - 45.428274 - ], - [ - -73.458557, - 45.428134 - ], - [ - -73.458424, - 45.427988 - ], - [ - -73.458192, - 45.427699 - ], - [ - -73.45811, - 45.427595 - ], - [ - -73.458013, - 45.427475 - ], - [ - -73.457764, - 45.427158 - ], - [ - -73.457466, - 45.426823 - ], - [ - -73.457294, - 45.426683 - ], - [ - -73.457368, - 45.426635 - ], - [ - -73.458102, - 45.425956 - ], - [ - -73.458392, - 45.425488 - ], - [ - -73.4585, - 45.425443 - ], - [ - -73.458873, - 45.425164 - ], - [ - -73.459146, - 45.424954 - ] - ] - }, - "id": 410, - "properties": { - "id": "4e2b92e2-c4ab-4e20-bd4e-ea66a17e180d", - "data": { - "gtfs": { - "shape_id": "877_1_R" - }, - "segments": [ - { - "distanceMeters": 223, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 394, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 399, - "travelTimeSeconds": 65 - }, - { - "distanceMeters": 470, - "travelTimeSeconds": 76 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 1485, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 893.6054038760034, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.19, - "travelTimeWithoutDwellTimesSeconds": 240, - "operatingTimeWithLayoverTimeSeconds": 420, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 240, - "operatingSpeedWithLayoverMetersPerSecond": 3.53, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.19 - }, - "mode": "taxi", - "name": "av. de l'Illinois", - "color": "#A32638", - "nodes": [ - "dd75840f-4ec8-4ee8-b04f-ae7639f6c994", - "fbc5c4f7-343a-481e-867b-6e46cf998478", - "4b0fd39d-15a0-46ea-89e7-d0952ab5c888", - "4e38482f-be48-4cee-bcb2-e6dee0843574", - "c231ce0f-25f6-4aeb-9a45-f6162e368fe7" - ], - "stops": [], - "line_id": "b54f1f61-b36a-4650-a3b1-4686978c64c4", - "segments": [ - 0, - 2, - 12, - 23 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 410, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.459146, - 45.424954 - ], - [ - -73.459283, - 45.424849 - ], - [ - -73.459291, - 45.424845 - ], - [ - -73.459295, - 45.42484 - ], - [ - -73.459298, - 45.424836 - ], - [ - -73.459302, - 45.424831 - ], - [ - -73.459304, - 45.424827 - ], - [ - -73.459308, - 45.424827 - ], - [ - -73.45931, - 45.424822 - ], - [ - -73.459313, - 45.424818 - ], - [ - -73.459316, - 45.424813 - ], - [ - -73.459318, - 45.424809 - ], - [ - -73.45932, - 45.424804 - ], - [ - -73.459322, - 45.4248 - ], - [ - -73.459324, - 45.424795 - ], - [ - -73.459326, - 45.424791 - ], - [ - -73.459327, - 45.424786 - ], - [ - -73.459328, - 45.424782 - ], - [ - -73.45933, - 45.424777 - ], - [ - -73.459331, - 45.424773 - ], - [ - -73.459332, - 45.424768 - ], - [ - -73.459332, - 45.424764 - ], - [ - -73.459333, - 45.424759 - ], - [ - -73.459333, - 45.424755 - ], - [ - -73.459333, - 45.42475 - ], - [ - -73.459333, - 45.424746 - ], - [ - -73.459333, - 45.424741 - ], - [ - -73.459333, - 45.424737 - ], - [ - -73.459332, - 45.424732 - ], - [ - -73.459331, - 45.424728 - ], - [ - -73.459331, - 45.424723 - ], - [ - -73.459329, - 45.424719 - ], - [ - -73.459328, - 45.424714 - ], - [ - -73.459327, - 45.42471 - ], - [ - -73.459325, - 45.424705 - ], - [ - -73.459324, - 45.424701 - ], - [ - -73.459322, - 45.424696 - ], - [ - -73.45932, - 45.424692 - ], - [ - -73.459317, - 45.424692 - ], - [ - -73.459315, - 45.424687 - ], - [ - -73.459313, - 45.424683 - ], - [ - -73.45931, - 45.424678 - ], - [ - -73.459307, - 45.424674 - ], - [ - -73.459304, - 45.424669 - ], - [ - -73.459301, - 45.424665 - ], - [ - -73.459297, - 45.42466 - ], - [ - -73.459294, - 45.424656 - ], - [ - -73.459291, - 45.424656 - ], - [ - -73.459287, - 45.424651 - ], - [ - -73.459283, - 45.424647 - ], - [ - -73.459279, - 45.424642 - ], - [ - -73.459275, - 45.424638 - ], - [ - -73.45927, - 45.424638 - ], - [ - -73.459266, - 45.424633 - ], - [ - -73.459261, - 45.424629 - ], - [ - -73.459257, - 45.424629 - ], - [ - -73.459252, - 45.424624 - ], - [ - -73.459247, - 45.42462 - ], - [ - -73.459242, - 45.42462 - ], - [ - -73.459237, - 45.424615 - ], - [ - -73.459232, - 45.424611 - ], - [ - -73.459227, - 45.424611 - ], - [ - -73.459221, - 45.424606 - ], - [ - -73.459216, - 45.424606 - ], - [ - -73.45921, - 45.424602 - ], - [ - -73.459205, - 45.424602 - ], - [ - -73.459199, - 45.424597 - ], - [ - -73.459193, - 45.424597 - ], - [ - -73.459187, - 45.424597 - ], - [ - -73.459181, - 45.424593 - ], - [ - -73.459175, - 45.424593 - ], - [ - -73.459169, - 45.424593 - ], - [ - -73.459163, - 45.424588 - ], - [ - -73.459157, - 45.424588 - ], - [ - -73.459151, - 45.424588 - ], - [ - -73.459145, - 45.424588 - ], - [ - -73.459138, - 45.424584 - ], - [ - -73.459132, - 45.424584 - ], - [ - -73.459126, - 45.424584 - ], - [ - -73.459119, - 45.424584 - ], - [ - -73.459113, - 45.424584 - ], - [ - -73.459107, - 45.424584 - ], - [ - -73.4591, - 45.424584 - ], - [ - -73.459094, - 45.424584 - ], - [ - -73.459087, - 45.424584 - ], - [ - -73.459081, - 45.424584 - ], - [ - -73.459075, - 45.424584 - ], - [ - -73.459068, - 45.424584 - ], - [ - -73.459062, - 45.424584 - ], - [ - -73.459055, - 45.424584 - ], - [ - -73.459049, - 45.424588 - ], - [ - -73.459043, - 45.424588 - ], - [ - -73.459037, - 45.424588 - ], - [ - -73.459031, - 45.424588 - ], - [ - -73.459025, - 45.424593 - ], - [ - -73.459019, - 45.424593 - ], - [ - -73.459013, - 45.424593 - ], - [ - -73.459007, - 45.424597 - ], - [ - -73.459001, - 45.424597 - ], - [ - -73.458995, - 45.424597 - ], - [ - -73.458989, - 45.424602 - ], - [ - -73.458984, - 45.424602 - ], - [ - -73.458978, - 45.424606 - ], - [ - -73.458972, - 45.424606 - ], - [ - -73.458967, - 45.424611 - ], - [ - -73.458962, - 45.424611 - ], - [ - -73.458957, - 45.424615 - ], - [ - -73.458952, - 45.42462 - ], - [ - -73.458946, - 45.42462 - ], - [ - -73.458942, - 45.424624 - ], - [ - -73.458937, - 45.424629 - ], - [ - -73.458932, - 45.424629 - ], - [ - -73.458928, - 45.424633 - ], - [ - -73.458923, - 45.424638 - ], - [ - -73.458919, - 45.424638 - ], - [ - -73.458915, - 45.424642 - ], - [ - -73.458911, - 45.424647 - ], - [ - -73.458907, - 45.424651 - ], - [ - -73.458903, - 45.424656 - ], - [ - -73.4589, - 45.424656 - ], - [ - -73.458896, - 45.42466 - ], - [ - -73.458893, - 45.424665 - ], - [ - -73.458889, - 45.424669 - ], - [ - -73.458772, - 45.424843 - ], - [ - -73.45838, - 45.425425 - ], - [ - -73.458392, - 45.425488 - ], - [ - -73.458102, - 45.425956 - ], - [ - -73.457487, - 45.426525 - ], - [ - -73.457368, - 45.426635 - ], - [ - -73.457294, - 45.426683 - ], - [ - -73.457176, - 45.426759 - ], - [ - -73.457337, - 45.4269 - ], - [ - -73.457478, - 45.427053 - ], - [ - -73.457673, - 45.427288 - ], - [ - -73.45792, - 45.427585 - ], - [ - -73.457973, - 45.42765 - ], - [ - -73.457568, - 45.42781 - ], - [ - -73.457097, - 45.428037 - ], - [ - -73.45672, - 45.428258 - ], - [ - -73.456438, - 45.428448 - ], - [ - -73.4562, - 45.428609 - ], - [ - -73.455948, - 45.428776 - ], - [ - -73.455672, - 45.428959 - ], - [ - -73.455452, - 45.429112 - ], - [ - -73.455179, - 45.429293 - ], - [ - -73.45515, - 45.429313 - ], - [ - -73.454933, - 45.42945 - ], - [ - -73.455018, - 45.429522 - ], - [ - -73.455039, - 45.42954 - ], - [ - -73.455243, - 45.429411 - ], - [ - -73.455656, - 45.429131 - ], - [ - -73.456327, - 45.428677 - ], - [ - -73.456722, - 45.428415 - ], - [ - -73.457072, - 45.428204 - ], - [ - -73.457568, - 45.427951 - ], - [ - -73.458058, - 45.427753 - ], - [ - -73.458345, - 45.428101 - ], - [ - -73.458572, - 45.42834 - ], - [ - -73.458825, - 45.428587 - ], - [ - -73.458977, - 45.428706 - ], - [ - -73.459068, - 45.428777 - ], - [ - -73.459152, - 45.428842 - ], - [ - -73.459251, - 45.428918 - ], - [ - -73.459385, - 45.42901 - ], - [ - -73.459593, - 45.429127 - ], - [ - -73.459771, - 45.429226 - ], - [ - -73.459939, - 45.429319 - ], - [ - -73.46022, - 45.429449 - ], - [ - -73.460456, - 45.429549 - ], - [ - -73.460624, - 45.42962 - ], - [ - -73.460892, - 45.429712 - ], - [ - -73.461565, - 45.429935 - ], - [ - -73.462273, - 45.430171 - ], - [ - -73.463038, - 45.430419 - ], - [ - -73.463289, - 45.430501 - ], - [ - -73.464799, - 45.430999 - ], - [ - -73.465674, - 45.431285 - ], - [ - -73.466046, - 45.431398 - ], - [ - -73.466685, - 45.431574 - ], - [ - -73.466696, - 45.431577 - ], - [ - -73.466706, - 45.431579 - ], - [ - -73.467321, - 45.431724 - ], - [ - -73.467377, - 45.431628 - ], - [ - -73.467538, - 45.431372 - ], - [ - -73.468534, - 45.429795 - ] - ] - }, - "id": 411, - "properties": { - "id": "e82160a1-3d1f-48db-b41e-c0842986aa42", - "data": { - "gtfs": { - "shape_id": "877_1_A" - }, - "segments": [ - { - "distanceMeters": 316, - "travelTimeSeconds": 51 - }, - { - "distanceMeters": 439, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 477, - "travelTimeSeconds": 78 - }, - { - "distanceMeters": 395, - "travelTimeSeconds": 64 - }, - { - "distanceMeters": 386, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 192, - "travelTimeSeconds": 32 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 2203, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 919.287586426439, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.12, - "travelTimeWithoutDwellTimesSeconds": 360, - "operatingTimeWithLayoverTimeSeconds": 540, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 360, - "operatingSpeedWithLayoverMetersPerSecond": 4.08, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.12 - }, - "mode": "taxi", - "name": "av. de l'Illinois", - "color": "#A32638", - "nodes": [ - "c231ce0f-25f6-4aeb-9a45-f6162e368fe7", - "5ed225d6-d1a5-4cf8-b496-0bdeecc5f50f", - "dca1f1af-a3cf-4dc0-9b7c-88db3f7a9ff7", - "65e410b8-04ff-4ccd-883a-8d764b8c7d37", - "4b0fd39d-15a0-46ea-89e7-d0952ab5c888", - "99ed9a7e-9c9a-49bd-8a93-0c7a4fc5376d", - "f58a318f-2fac-4a22-b374-38335fe92155" - ], - "stops": [], - "line_id": "b54f1f61-b36a-4650-a3b1-4686978c64c4", - "segments": [ - 0, - 127, - 144, - 159, - 174, - 183 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 411, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.466116, - 45.587789 - ], - [ - -73.464045, - 45.586193 - ], - [ - -73.463882, - 45.586067 - ], - [ - -73.463008, - 45.585396 - ], - [ - -73.462699, - 45.585156 - ], - [ - -73.462695, - 45.585153 - ], - [ - -73.462432, - 45.584973 - ], - [ - -73.461583, - 45.58432 - ], - [ - -73.460674, - 45.583623 - ], - [ - -73.459322, - 45.582584 - ], - [ - -73.459198, - 45.582488 - ], - [ - -73.458433, - 45.582969 - ], - [ - -73.457769, - 45.583373 - ], - [ - -73.457597, - 45.583478 - ], - [ - -73.456185, - 45.582393 - ], - [ - -73.45586, - 45.58214 - ], - [ - -73.45575, - 45.582055 - ], - [ - -73.454385, - 45.580997 - ], - [ - -73.454001, - 45.5807 - ], - [ - -73.453713, - 45.58048 - ], - [ - -73.453279, - 45.580142 - ], - [ - -73.453165, - 45.580047 - ], - [ - -73.452925, - 45.579856 - ], - [ - -73.452651, - 45.579638 - ], - [ - -73.452413, - 45.579449 - ], - [ - -73.452177, - 45.579269 - ], - [ - -73.451973, - 45.579107 - ], - [ - -73.451905, - 45.579062 - ], - [ - -73.451728, - 45.578945 - ], - [ - -73.451578, - 45.57885 - ], - [ - -73.451104, - 45.578697 - ], - [ - -73.450828, - 45.578634 - ], - [ - -73.450592, - 45.578602 - ], - [ - -73.450371, - 45.578589 - ], - [ - -73.450127, - 45.578588 - ], - [ - -73.450095, - 45.578593 - ], - [ - -73.449875, - 45.578611 - ], - [ - -73.449822, - 45.578616 - ], - [ - -73.449402, - 45.57866 - ], - [ - -73.44906, - 45.578696 - ], - [ - -73.448846, - 45.578718 - ], - [ - -73.448502, - 45.578754 - ], - [ - -73.448017, - 45.578803 - ], - [ - -73.44788, - 45.578818 - ], - [ - -73.447593, - 45.578848 - ], - [ - -73.447371, - 45.578844 - ], - [ - -73.447296, - 45.578844 - ], - [ - -73.447245, - 45.578835 - ], - [ - -73.447193, - 45.578821 - ], - [ - -73.447144, - 45.578803 - ], - [ - -73.447102, - 45.578776 - ], - [ - -73.447078, - 45.578754 - ], - [ - -73.446989, - 45.578673 - ], - [ - -73.446922, - 45.578339 - ], - [ - -73.446764, - 45.577557 - ], - [ - -73.446738, - 45.577422 - ], - [ - -73.446692, - 45.57717 - ], - [ - -73.446671, - 45.576945 - ], - [ - -73.446671, - 45.57667 - ], - [ - -73.446671, - 45.576571 - ], - [ - -73.446689, - 45.576447 - ], - [ - -73.44669, - 45.576436 - ], - [ - -73.446707, - 45.576333 - ], - [ - -73.446734, - 45.576243 - ], - [ - -73.446807, - 45.576018 - ], - [ - -73.446886, - 45.575843 - ], - [ - -73.446894, - 45.575825 - ], - [ - -73.447166, - 45.575249 - ], - [ - -73.447388, - 45.574789 - ], - [ - -73.447238, - 45.574749 - ], - [ - -73.446746, - 45.574587 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442396, - 45.5725 - ], - [ - -73.442327, - 45.572407 - ], - [ - -73.442172, - 45.572214 - ], - [ - -73.442103, - 45.572145 - ], - [ - -73.442431, - 45.57202 - ], - [ - -73.442488, - 45.571998 - ], - [ - -73.442639, - 45.571977 - ], - [ - -73.442743, - 45.572044 - ], - [ - -73.443302, - 45.572631 - ], - [ - -73.443631, - 45.572972 - ], - [ - -73.444342, - 45.573197 - ], - [ - -73.444882, - 45.573368 - ], - [ - -73.444958, - 45.573259 - ], - [ - -73.445007, - 45.573188 - ], - [ - -73.445046, - 45.573132 - ], - [ - -73.443302, - 45.572631 - ], - [ - -73.442743, - 45.572044 - ], - [ - -73.442639, - 45.571977 - ], - [ - -73.442488, - 45.571998 - ], - [ - -73.442103, - 45.572145 - ], - [ - -73.442172, - 45.572214 - ], - [ - -73.442327, - 45.572407 - ], - [ - -73.442411, - 45.57252 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442753, - 45.572972 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.446746, - 45.574587 - ], - [ - -73.447238, - 45.574749 - ], - [ - -73.447388, - 45.574789 - ], - [ - -73.447436, - 45.574664 - ], - [ - -73.447623, - 45.574219 - ], - [ - -73.44779, - 45.573737 - ], - [ - -73.447926, - 45.573404 - ], - [ - -73.448288, - 45.57264 - ], - [ - -73.448668, - 45.571794 - ], - [ - -73.449152, - 45.570638 - ], - [ - -73.449223, - 45.570544 - ], - [ - -73.449264, - 45.570454 - ], - [ - -73.449093, - 45.570413 - ], - [ - -73.448988, - 45.570407 - ], - [ - -73.448759, - 45.570398 - ], - [ - -73.448494, - 45.570395 - ], - [ - -73.448177, - 45.570336 - ], - [ - -73.447945, - 45.570309 - ], - [ - -73.447255, - 45.570174 - ], - [ - -73.4464, - 45.570007 - ], - [ - -73.446311, - 45.569989 - ], - [ - -73.446194, - 45.569957 - ], - [ - -73.44618, - 45.569952 - ], - [ - -73.446079, - 45.569912 - ], - [ - -73.44598, - 45.569845 - ], - [ - -73.445832, - 45.569723 - ], - [ - -73.44535, - 45.56935 - ], - [ - -73.445158, - 45.569201 - ], - [ - -73.444719, - 45.568877 - ], - [ - -73.444688, - 45.568854 - ], - [ - -73.444286, - 45.568557 - ], - [ - -73.44375, - 45.568147 - ], - [ - -73.442738, - 45.567373 - ], - [ - -73.44266, - 45.567297 - ], - [ - -73.442626, - 45.567202 - ], - [ - -73.442645, - 45.567108 - ], - [ - -73.442699, - 45.567027 - ], - [ - -73.443963, - 45.565808 - ], - [ - -73.444144, - 45.565592 - ], - [ - -73.443981, - 45.565444 - ], - [ - -73.44349, - 45.565054 - ], - [ - -73.442879, - 45.56457 - ], - [ - -73.442508, - 45.564295 - ], - [ - -73.442266, - 45.564115 - ], - [ - -73.442143, - 45.564003 - ], - [ - -73.441254, - 45.56331 - ], - [ - -73.440214, - 45.562491 - ], - [ - -73.439139, - 45.561644 - ], - [ - -73.438958, - 45.561495 - ], - [ - -73.438883, - 45.561387 - ], - [ - -73.438837, - 45.561234 - ], - [ - -73.438882, - 45.561027 - ], - [ - -73.438934, - 45.560907 - ], - [ - -73.438972, - 45.56082 - ], - [ - -73.438971, - 45.560636 - ], - [ - -73.437363, - 45.560298 - ], - [ - -73.436168, - 45.560039 - ], - [ - -73.435865, - 45.559973 - ], - [ - -73.43466, - 45.559725 - ], - [ - -73.431826, - 45.559116 - ], - [ - -73.431639, - 45.559077 - ], - [ - -73.431282, - 45.559003 - ], - [ - -73.430103, - 45.55875 - ], - [ - -73.429913, - 45.558701 - ], - [ - -73.429765, - 45.558646 - ], - [ - -73.429502, - 45.558529 - ], - [ - -73.429201, - 45.55838 - ], - [ - -73.429028, - 45.558295 - ], - [ - -73.428814, - 45.558169 - ], - [ - -73.428483, - 45.557975 - ], - [ - -73.428147, - 45.55771 - ], - [ - -73.426734, - 45.556587 - ], - [ - -73.426525, - 45.556422 - ], - [ - -73.426228, - 45.556183 - ], - [ - -73.424224, - 45.554605 - ], - [ - -73.424021, - 45.554445 - ], - [ - -73.421784, - 45.555836 - ], - [ - -73.42074, - 45.556485 - ], - [ - -73.420532, - 45.556615 - ], - [ - -73.418885, - 45.55764 - ], - [ - -73.418468, - 45.557901 - ], - [ - -73.416296, - 45.559259 - ], - [ - -73.414236, - 45.560548 - ], - [ - -73.413751, - 45.56085 - ], - [ - -73.413349, - 45.561101 - ], - [ - -73.412841, - 45.561208 - ], - [ - -73.412305, - 45.561361 - ], - [ - -73.412026, - 45.561465 - ], - [ - -73.411761, - 45.561564 - ], - [ - -73.406235, - 45.565009 - ], - [ - -73.40489, - 45.565853 - ], - [ - -73.40476, - 45.565935 - ], - [ - -73.404576, - 45.565795 - ], - [ - -73.404259, - 45.565548 - ], - [ - -73.403138, - 45.564701 - ], - [ - -73.402147, - 45.56532 - ], - [ - -73.401592, - 45.565667 - ], - [ - -73.399112, - 45.567217 - ], - [ - -73.398475, - 45.567607 - ], - [ - -73.398275, - 45.567729 - ], - [ - -73.397609, - 45.568156 - ], - [ - -73.397554, - 45.56825 - ], - [ - -73.397545, - 45.56834 - ], - [ - -73.397569, - 45.56839 - ], - [ - -73.397619, - 45.568457 - ], - [ - -73.398633, - 45.56926 - ], - [ - -73.398791, - 45.569385 - ], - [ - -73.398845, - 45.569466 - ], - [ - -73.398868, - 45.569534 - ], - [ - -73.398872, - 45.569831 - ], - [ - -73.397337, - 45.569982 - ], - [ - -73.396252, - 45.570116 - ], - [ - -73.39531, - 45.570246 - ], - [ - -73.394177, - 45.570398 - ], - [ - -73.394124, - 45.570405 - ], - [ - -73.393727, - 45.570456 - ], - [ - -73.39317, - 45.570536 - ], - [ - -73.39269, - 45.570599 - ], - [ - -73.392081, - 45.570684 - ], - [ - -73.391191, - 45.570804 - ], - [ - -73.390528, - 45.570894 - ], - [ - -73.389658, - 45.571014 - ], - [ - -73.388912, - 45.571113 - ], - [ - -73.387898, - 45.571251 - ], - [ - -73.387801, - 45.571264 - ], - [ - -73.386982, - 45.571372 - ], - [ - -73.38625, - 45.571475 - ], - [ - -73.385674, - 45.57155 - ], - [ - -73.384997, - 45.571649 - ], - [ - -73.383765, - 45.571818 - ], - [ - -73.383299, - 45.571875 - ], - [ - -73.383227, - 45.571593 - ], - [ - -73.382776, - 45.571649 - ], - [ - -73.382659, - 45.571664 - ], - [ - -73.38222, - 45.571719 - ], - [ - -73.382294, - 45.571994 - ], - [ - -73.38163, - 45.572065 - ], - [ - -73.381419, - 45.571553 - ], - [ - -73.381529, - 45.571532 - ], - [ - -73.3815, - 45.571448 - ], - [ - -73.381383, - 45.571463 - ], - [ - -73.381398, - 45.571501 - ] - ] - }, - "id": 412, - "properties": { - "id": "9f155a14-36ef-4bca-a859-631c91cfaed5", - "data": { - "gtfs": { - "shape_id": "889_1_R" - }, - "segments": [ - { - "distanceMeters": 240, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 156, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 389, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 163, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 342, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 119, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 177, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 115, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 673, - "travelTimeSeconds": 87 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 463, - "travelTimeSeconds": 89 - }, - { - "distanceMeters": 1085, - "travelTimeSeconds": 211 - }, - { - "distanceMeters": 181, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 183, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 433, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 114, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 269, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 369, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 207, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 278, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 295, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 346, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 266, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 741, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 362, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 445, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 502, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 425, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 219, - "travelTimeSeconds": 21 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 12098, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 6854.324677165403, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 8.06, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 7.2, - "averageSpeedWithoutDwellTimesMetersPerSecond": 8.06 - }, - "mode": "taxi", - "name": "Eiffel", - "color": "#A32638", - "nodes": [ - "2f7a97d2-c790-4f58-9a63-010938bbaf69", - "b54db9a8-0c8c-43a8-a385-bc532fde3f70", - "21aac851-6052-4e4d-8167-df2d9a876338", - "6841469f-681d-47f3-a552-9c9ea4973966", - "a3ce54d5-25e0-4e55-a21f-2d2c2139447f", - "3370bd8e-b7b2-4aab-8679-28f57be8da19", - "a6014278-4b2c-4dc8-a0d9-22c0ac11eb1c", - "b0a54de7-81a4-4a54-ac92-70b7a1a6f8cd", - "5d689515-eb8c-46f5-b76c-9783188effbb", - "43c9714a-9286-4827-a621-a7c2f8cbdfb6", - "7c5ab4a9-cc9e-4b88-bc68-d214d8c04000", - "a83efd44-0d7a-49ef-b344-ef523d875f87", - "c75630d1-5494-4596-bc82-707a62fa5988", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "36054208-e9c6-4e5a-99d2-bfca0679b681", - "33622e57-d444-4916-a7fb-d1fa4643eb90", - "e979db3f-26cd-41d5-8708-f07b7090bef0", - "83669f2f-a25c-47b1-99a1-53a7c08fed91", - "a77f8bf1-6b13-445b-a79c-6b0770c935c0", - "68d70807-e1f4-4393-a156-0cb02f37fe17", - "bdfd6a86-57e8-4208-bd34-2b30f1846e4b", - "891bcf48-145c-4536-a871-eba463dca9a2", - "5406ad55-4f73-400c-be4e-2a11bd2e7e9a", - "ca8a495a-977a-4942-bdad-b75787da5697", - "3babd96f-413d-4615-8f50-ca3cd1b6b052", - "eba2d290-ee5d-4bce-bdc1-d2b8c52db23b", - "2bc51500-8df7-434b-a2d7-e073aed7d6fc", - "9d7899a8-defc-4e0a-81af-a591f5887bd8", - "d3be8a5e-1a82-4082-9319-940ad42306fa", - "4987f1ae-bfd4-4242-9f97-87bf5101bd17", - "1fe4d00f-490a-4b9c-a4fc-f708161d232c", - "d41fd5d6-e4c4-4145-9ae3-6c1c4eaf93df", - "0681e3d4-c5fd-4f85-982e-d5d26960784a", - "334d379f-12a2-4d6f-b070-272e37ff00dd", - "a913c5ce-8de0-458e-a9ee-4ae555d41e98", - "a93c22b5-170a-45a8-a2c1-143c975239a9", - "7335aafe-31d7-4598-a3ca-7bfa36ca76b3", - "35827d6c-59cb-43b0-bfdd-eaa586fe772c", - "b195cac8-133e-4e85-98b4-0a7ab23c800c", - "c7077046-1c3c-45a5-980c-e3cf3605f303" - ], - "stops": [], - "line_id": "9cea7d77-1752-4d7e-a87d-19bf9b783c71", - "segments": [ - 0, - 1, - 4, - 9, - 12, - 15, - 22, - 27, - 37, - 43, - 53, - 60, - 84, - 94, - 109, - 139, - 147, - 152, - 161, - 163, - 167, - 173, - 177, - 181, - 187, - 192, - 195, - 197, - 201, - 202, - 204, - 208, - 211, - 217, - 219, - 226, - 235, - 245, - 253 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 412, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.381398, - 45.571501 - ], - [ - -73.381419, - 45.571553 - ], - [ - -73.38163, - 45.572065 - ], - [ - -73.381681, - 45.57206 - ], - [ - -73.382294, - 45.571994 - ], - [ - -73.383299, - 45.571875 - ], - [ - -73.383232, - 45.571614 - ], - [ - -73.383227, - 45.571593 - ], - [ - -73.382773, - 45.57165 - ], - [ - -73.38222, - 45.571719 - ], - [ - -73.382238, - 45.571784 - ], - [ - -73.382294, - 45.571994 - ], - [ - -73.383299, - 45.571875 - ], - [ - -73.383765, - 45.571818 - ], - [ - -73.384997, - 45.571649 - ], - [ - -73.385674, - 45.57155 - ], - [ - -73.38625, - 45.571475 - ], - [ - -73.386982, - 45.571372 - ], - [ - -73.387855, - 45.571257 - ], - [ - -73.387898, - 45.571251 - ], - [ - -73.388912, - 45.571113 - ], - [ - -73.389658, - 45.571014 - ], - [ - -73.390528, - 45.570894 - ], - [ - -73.391191, - 45.570804 - ], - [ - -73.392081, - 45.570684 - ], - [ - -73.39269, - 45.570599 - ], - [ - -73.39317, - 45.570536 - ], - [ - -73.393727, - 45.570456 - ], - [ - -73.39409, - 45.570409 - ], - [ - -73.394177, - 45.570398 - ], - [ - -73.39531, - 45.570246 - ], - [ - -73.396252, - 45.570116 - ], - [ - -73.397337, - 45.569982 - ], - [ - -73.398872, - 45.569831 - ], - [ - -73.398868, - 45.569534 - ], - [ - -73.398845, - 45.569466 - ], - [ - -73.398791, - 45.569385 - ], - [ - -73.398461, - 45.569123 - ], - [ - -73.397619, - 45.568457 - ], - [ - -73.397569, - 45.56839 - ], - [ - -73.397545, - 45.56834 - ], - [ - -73.397554, - 45.56825 - ], - [ - -73.397609, - 45.568156 - ], - [ - -73.398105, - 45.567838 - ], - [ - -73.398275, - 45.567729 - ], - [ - -73.399112, - 45.567217 - ], - [ - -73.400876, - 45.566114 - ], - [ - -73.402147, - 45.56532 - ], - [ - -73.403138, - 45.564701 - ], - [ - -73.404259, - 45.565548 - ], - [ - -73.404576, - 45.565795 - ], - [ - -73.40462, - 45.565829 - ], - [ - -73.40476, - 45.565935 - ], - [ - -73.406235, - 45.565009 - ], - [ - -73.411595, - 45.561667 - ], - [ - -73.411761, - 45.561564 - ], - [ - -73.412305, - 45.561361 - ], - [ - -73.412841, - 45.561208 - ], - [ - -73.413349, - 45.561101 - ], - [ - -73.413744, - 45.560855 - ], - [ - -73.414236, - 45.560548 - ], - [ - -73.416299, - 45.559258 - ], - [ - -73.418518, - 45.55787 - ], - [ - -73.418885, - 45.55764 - ], - [ - -73.420532, - 45.556615 - ], - [ - -73.42074, - 45.556485 - ], - [ - -73.421586, - 45.55596 - ], - [ - -73.423791, - 45.554588 - ], - [ - -73.424021, - 45.554445 - ], - [ - -73.426228, - 45.556183 - ], - [ - -73.426313, - 45.556252 - ], - [ - -73.426525, - 45.556422 - ], - [ - -73.428147, - 45.55771 - ], - [ - -73.428483, - 45.557975 - ], - [ - -73.428814, - 45.558169 - ], - [ - -73.428888, - 45.558213 - ], - [ - -73.429028, - 45.558295 - ], - [ - -73.429502, - 45.558529 - ], - [ - -73.429765, - 45.558646 - ], - [ - -73.429913, - 45.558701 - ], - [ - -73.430103, - 45.55875 - ], - [ - -73.431282, - 45.559003 - ], - [ - -73.431371, - 45.559021 - ], - [ - -73.431826, - 45.559116 - ], - [ - -73.433279, - 45.559428 - ], - [ - -73.43466, - 45.559725 - ], - [ - -73.435312, - 45.559859 - ], - [ - -73.435865, - 45.559973 - ], - [ - -73.437363, - 45.560298 - ], - [ - -73.437803, - 45.56039 - ], - [ - -73.438971, - 45.560636 - ], - [ - -73.438972, - 45.56082 - ], - [ - -73.438882, - 45.561027 - ], - [ - -73.438837, - 45.561234 - ], - [ - -73.438883, - 45.561387 - ], - [ - -73.438958, - 45.561495 - ], - [ - -73.439139, - 45.561644 - ], - [ - -73.44014, - 45.562432 - ], - [ - -73.441254, - 45.56331 - ], - [ - -73.442079, - 45.563953 - ], - [ - -73.442143, - 45.564003 - ], - [ - -73.442266, - 45.564115 - ], - [ - -73.442879, - 45.56457 - ], - [ - -73.443314, - 45.564915 - ], - [ - -73.443981, - 45.565444 - ], - [ - -73.444144, - 45.565592 - ], - [ - -73.443963, - 45.565808 - ], - [ - -73.442699, - 45.567027 - ], - [ - -73.442645, - 45.567108 - ], - [ - -73.442626, - 45.567202 - ], - [ - -73.44266, - 45.567297 - ], - [ - -73.442738, - 45.567373 - ], - [ - -73.443735, - 45.568136 - ], - [ - -73.444286, - 45.568557 - ], - [ - -73.444688, - 45.568854 - ], - [ - -73.444719, - 45.568877 - ], - [ - -73.445058, - 45.569127 - ], - [ - -73.445158, - 45.569201 - ], - [ - -73.445832, - 45.569723 - ], - [ - -73.44598, - 45.569845 - ], - [ - -73.446079, - 45.569912 - ], - [ - -73.446194, - 45.569957 - ], - [ - -73.446311, - 45.569989 - ], - [ - -73.4464, - 45.570007 - ], - [ - -73.446542, - 45.570035 - ], - [ - -73.447945, - 45.570309 - ], - [ - -73.448177, - 45.570336 - ], - [ - -73.448494, - 45.570395 - ], - [ - -73.448719, - 45.570485 - ], - [ - -73.448772, - 45.570503 - ], - [ - -73.448806, - 45.570521 - ], - [ - -73.448851, - 45.570552 - ], - [ - -73.448874, - 45.570584 - ], - [ - -73.448893, - 45.57062 - ], - [ - -73.448903, - 45.570647 - ], - [ - -73.448906, - 45.570683 - ], - [ - -73.448873, - 45.570917 - ], - [ - -73.448823, - 45.571034 - ], - [ - -73.44818, - 45.572625 - ], - [ - -73.447654, - 45.573778 - ], - [ - -73.447519, - 45.574084 - ], - [ - -73.447518, - 45.574088 - ], - [ - -73.447455, - 45.574133 - ], - [ - -73.447308, - 45.574407 - ], - [ - -73.447267, - 45.574466 - ], - [ - -73.447241, - 45.574497 - ], - [ - -73.447197, - 45.574529 - ], - [ - -73.447149, - 45.574547 - ], - [ - -73.447112, - 45.574556 - ], - [ - -73.447049, - 45.574565 - ], - [ - -73.446965, - 45.574569 - ], - [ - -73.446884, - 45.574565 - ], - [ - -73.446792, - 45.574547 - ], - [ - -73.446652, - 45.574511 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442385, - 45.572485 - ], - [ - -73.442327, - 45.572407 - ], - [ - -73.442172, - 45.572214 - ], - [ - -73.442103, - 45.572145 - ], - [ - -73.442355, - 45.572049 - ], - [ - -73.442488, - 45.571998 - ], - [ - -73.442639, - 45.571977 - ], - [ - -73.442743, - 45.572044 - ], - [ - -73.443302, - 45.572631 - ], - [ - -73.443631, - 45.572972 - ], - [ - -73.444364, - 45.573204 - ], - [ - -73.444882, - 45.573368 - ], - [ - -73.444958, - 45.573259 - ], - [ - -73.444989, - 45.573213 - ], - [ - -73.445046, - 45.573132 - ], - [ - -73.443302, - 45.572631 - ], - [ - -73.442743, - 45.572044 - ], - [ - -73.442639, - 45.571977 - ], - [ - -73.442488, - 45.571998 - ], - [ - -73.442103, - 45.572145 - ], - [ - -73.442172, - 45.572214 - ], - [ - -73.442327, - 45.572407 - ], - [ - -73.442465, - 45.572593 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442765, - 45.572986 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.446698, - 45.574646 - ], - [ - -73.446963, - 45.574749 - ], - [ - -73.446986, - 45.574767 - ], - [ - -73.447005, - 45.574781 - ], - [ - -73.447026, - 45.574808 - ], - [ - -73.447042, - 45.57483 - ], - [ - -73.447056, - 45.574857 - ], - [ - -73.44707, - 45.574889 - ], - [ - -73.447082, - 45.57492 - ], - [ - -73.447099, - 45.575037 - ], - [ - -73.447053, - 45.57514 - ], - [ - -73.446759, - 45.575802 - ], - [ - -73.446721, - 45.575887 - ], - [ - -73.446618, - 45.576202 - ], - [ - -73.446585, - 45.576297 - ], - [ - -73.446578, - 45.576319 - ], - [ - -73.446558, - 45.576387 - ], - [ - -73.44653, - 45.57654 - ], - [ - -73.446519, - 45.57667 - ], - [ - -73.446516, - 45.576796 - ], - [ - -73.446516, - 45.576958 - ], - [ - -73.446539, - 45.577179 - ], - [ - -73.446584, - 45.57744 - ], - [ - -73.446584, - 45.577441 - ], - [ - -73.446615, - 45.57757 - ], - [ - -73.446887, - 45.57892 - ], - [ - -73.446904, - 45.579005 - ], - [ - -73.447056, - 45.578992 - ], - [ - -73.447608, - 45.578938 - ], - [ - -73.447883, - 45.578909 - ], - [ - -73.448031, - 45.578893 - ], - [ - -73.44852, - 45.578844 - ], - [ - -73.449074, - 45.578786 - ], - [ - -73.449991, - 45.578693 - ], - [ - -73.450095, - 45.578683 - ], - [ - -73.450109, - 45.578683 - ], - [ - -73.450463, - 45.578688 - ], - [ - -73.450661, - 45.578706 - ], - [ - -73.450775, - 45.578719 - ], - [ - -73.450895, - 45.578737 - ], - [ - -73.451093, - 45.578791 - ], - [ - -73.451234, - 45.578836 - ], - [ - -73.451238, - 45.578838 - ], - [ - -73.451309, - 45.578863 - ], - [ - -73.451495, - 45.578945 - ], - [ - -73.451582, - 45.57899 - ], - [ - -73.451744, - 45.579089 - ], - [ - -73.451869, - 45.579174 - ], - [ - -73.452082, - 45.579336 - ], - [ - -73.452313, - 45.579516 - ], - [ - -73.452549, - 45.579701 - ], - [ - -73.453039, - 45.580079 - ], - [ - -73.453063, - 45.580097 - ], - [ - -73.453179, - 45.580196 - ], - [ - -73.453622, - 45.580543 - ], - [ - -73.453903, - 45.580759 - ], - [ - -73.45429, - 45.581056 - ], - [ - -73.455063, - 45.581657 - ], - [ - -73.455188, - 45.581753 - ], - [ - -73.455378, - 45.581904 - ], - [ - -73.455648, - 45.582118 - ], - [ - -73.456087, - 45.582456 - ], - [ - -73.456184, - 45.582528 - ], - [ - -73.457491, - 45.583541 - ], - [ - -73.457597, - 45.583478 - ], - [ - -73.458087, - 45.58318 - ], - [ - -73.458433, - 45.582969 - ], - [ - -73.459198, - 45.582488 - ], - [ - -73.45929, - 45.582559 - ], - [ - -73.459337, - 45.582596 - ], - [ - -73.460674, - 45.583623 - ], - [ - -73.461583, - 45.58432 - ], - [ - -73.462319, - 45.584887 - ], - [ - -73.462432, - 45.584973 - ], - [ - -73.462695, - 45.585153 - ], - [ - -73.463008, - 45.585396 - ], - [ - -73.463882, - 45.586067 - ], - [ - -73.464027, - 45.586179 - ], - [ - -73.466391, - 45.588001 - ] - ] - }, - "id": 413, - "properties": { - "id": "b39b67b7-eb35-4920-8dff-95052611c1bf", - "data": { - "gtfs": { - "shape_id": "889_1_A" - }, - "segments": [ - { - "distanceMeters": 265, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 516, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 495, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 468, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 289, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 407, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 730, - "travelTimeSeconds": 68 - }, - { - "distanceMeters": 193, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 267, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 232, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 320, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 216, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 333, - "travelTimeSeconds": 63 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 452, - "travelTimeSeconds": 86 - }, - { - "distanceMeters": 151, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 157, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 1118, - "travelTimeSeconds": 190 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 463, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 435, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 262, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 253, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 100, - "travelTimeSeconds": 13 - }, - { - "distanceMeters": 198, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 273, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 307, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 132, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 345, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 196, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 274, - "travelTimeSeconds": 34 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 12189, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 6854.324677165403, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.81, - "travelTimeWithoutDwellTimesSeconds": 1560, - "operatingTimeWithLayoverTimeSeconds": 1740, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1560, - "operatingSpeedWithLayoverMetersPerSecond": 7, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.81 - }, - "mode": "taxi", - "name": "boul. Marie-Victorin", - "color": "#A32638", - "nodes": [ - "c7077046-1c3c-45a5-980c-e3cf3605f303", - "b195cac8-133e-4e85-98b4-0a7ab23c800c", - "35827d6c-59cb-43b0-bfdd-eaa586fe772c", - "7335aafe-31d7-4598-a3ca-7bfa36ca76b3", - "a93c22b5-170a-45a8-a2c1-143c975239a9", - "a913c5ce-8de0-458e-a9ee-4ae555d41e98", - "a4120eb1-d1f9-43e5-8720-90115641165b", - "0681e3d4-c5fd-4f85-982e-d5d26960784a", - "d41fd5d6-e4c4-4145-9ae3-6c1c4eaf93df", - "1fe4d00f-490a-4b9c-a4fc-f708161d232c", - "4987f1ae-bfd4-4242-9f97-87bf5101bd17", - "d3be8a5e-1a82-4082-9319-940ad42306fa", - "9d7899a8-defc-4e0a-81af-a591f5887bd8", - "2bc51500-8df7-434b-a2d7-e073aed7d6fc", - "eba2d290-ee5d-4bce-bdc1-d2b8c52db23b", - "3babd96f-413d-4615-8f50-ca3cd1b6b052", - "ca8a495a-977a-4942-bdad-b75787da5697", - "5406ad55-4f73-400c-be4e-2a11bd2e7e9a", - "288f625b-dae5-465b-9986-818da198e5d5", - "bdfd6a86-57e8-4208-bd34-2b30f1846e4b", - "68d70807-e1f4-4393-a156-0cb02f37fe17", - "a77f8bf1-6b13-445b-a79c-6b0770c935c0", - "83669f2f-a25c-47b1-99a1-53a7c08fed91", - "e979db3f-26cd-41d5-8708-f07b7090bef0", - "33622e57-d444-4916-a7fb-d1fa4643eb90", - "c75630d1-5494-4596-bc82-707a62fa5988", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "36054208-e9c6-4e5a-99d2-bfca0679b681", - "c520acc8-980c-45c0-9195-152ad50ee471", - "18aabfcd-f4e1-4782-a757-80cdf1597763", - "43c9714a-9286-4827-a621-a7c2f8cbdfb6", - "5d689515-eb8c-46f5-b76c-9783188effbb", - "b0a54de7-81a4-4a54-ac92-70b7a1a6f8cd", - "a6014278-4b2c-4dc8-a0d9-22c0ac11eb1c", - "3370bd8e-b7b2-4aab-8679-28f57be8da19", - "a3ce54d5-25e0-4e55-a21f-2d2c2139447f", - "6841469f-681d-47f3-a552-9c9ea4973966", - "21aac851-6052-4e4d-8167-df2d9a876338", - "b54db9a8-0c8c-43a8-a385-bc532fde3f70", - "2f7a97d2-c790-4f58-9a63-010938bbaf69" - ], - "stops": [], - "line_id": "9cea7d77-1752-4d7e-a87d-19bf9b783c71", - "segments": [ - 0, - 8, - 18, - 28, - 37, - 43, - 46, - 51, - 54, - 59, - 61, - 62, - 66, - 67, - 70, - 75, - 82, - 86, - 89, - 97, - 99, - 103, - 112, - 116, - 124, - 167, - 177, - 192, - 214, - 227, - 233, - 237, - 246, - 255, - 263, - 269, - 273, - 276, - 281 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 413, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.41744, - 45.573518 - ], - [ - -73.417361, - 45.573566 - ], - [ - -73.416949, - 45.573818 - ], - [ - -73.41659, - 45.574029 - ], - [ - -73.416162, - 45.574303 - ], - [ - -73.415841, - 45.574516 - ], - [ - -73.415714, - 45.5746 - ], - [ - -73.414791, - 45.57387 - ], - [ - -73.414647, - 45.573758 - ], - [ - -73.414077, - 45.573294 - ], - [ - -73.414068, - 45.573288 - ], - [ - -73.413911, - 45.573168 - ], - [ - -73.414244, - 45.572963 - ], - [ - -73.414438, - 45.57284 - ], - [ - -73.414603, - 45.572714 - ], - [ - -73.414683, - 45.572615 - ], - [ - -73.414726, - 45.572503 - ], - [ - -73.414932, - 45.571927 - ], - [ - -73.414964, - 45.571837 - ], - [ - -73.415227, - 45.571104 - ], - [ - -73.41537, - 45.570699 - ], - [ - -73.415436, - 45.570537 - ], - [ - -73.415527, - 45.570353 - ], - [ - -73.415627, - 45.57024 - ], - [ - -73.415778, - 45.570101 - ], - [ - -73.415904, - 45.570025 - ], - [ - -73.415923, - 45.570017 - ], - [ - -73.416084, - 45.569948 - ], - [ - -73.416182, - 45.569915 - ], - [ - -73.41628, - 45.569881 - ], - [ - -73.416545, - 45.569832 - ], - [ - -73.416713, - 45.569818 - ], - [ - -73.417529, - 45.569774 - ], - [ - -73.418983, - 45.569667 - ], - [ - -73.419829, - 45.569604 - ], - [ - -73.420778, - 45.569551 - ], - [ - -73.421741, - 45.569502 - ], - [ - -73.42241, - 45.569465 - ], - [ - -73.422873, - 45.56944 - ], - [ - -73.423733, - 45.569392 - ], - [ - -73.424354, - 45.569357 - ], - [ - -73.424538, - 45.569347 - ], - [ - -73.424562, - 45.569513 - ], - [ - -73.424628, - 45.570152 - ], - [ - -73.424653, - 45.570373 - ], - [ - -73.424693, - 45.570539 - ], - [ - -73.424729, - 45.57062 - ], - [ - -73.424803, - 45.570692 - ], - [ - -73.424894, - 45.570778 - ], - [ - -73.425582, - 45.571311 - ], - [ - -73.425614, - 45.571336 - ], - [ - -73.425716, - 45.571377 - ], - [ - -73.425864, - 45.571408 - ], - [ - -73.426472, - 45.571382 - ], - [ - -73.42732, - 45.571342 - ], - [ - -73.427626, - 45.571342 - ], - [ - -73.428023, - 45.571342 - ], - [ - -73.428324, - 45.571347 - ], - [ - -73.428377, - 45.571349 - ], - [ - -73.428617, - 45.57136 - ], - [ - -73.42894, - 45.571383 - ], - [ - -73.429449, - 45.571428 - ], - [ - -73.42993, - 45.571492 - ], - [ - -73.430291, - 45.571546 - ], - [ - -73.430609, - 45.5716 - ], - [ - -73.431316, - 45.57175 - ], - [ - -73.432763, - 45.572056 - ], - [ - -73.434031, - 45.572324 - ], - [ - -73.436351, - 45.572816 - ], - [ - -73.436831, - 45.572917 - ], - [ - -73.437002, - 45.572954 - ], - [ - -73.437141, - 45.572652 - ], - [ - -73.437277, - 45.572369 - ], - [ - -73.437365, - 45.572207 - ], - [ - -73.437639, - 45.571843 - ], - [ - -73.437915, - 45.571494 - ], - [ - -73.438071, - 45.571298 - ], - [ - -73.438113, - 45.571241 - ], - [ - -73.438292, - 45.571002 - ], - [ - -73.43873, - 45.571092 - ], - [ - -73.439233, - 45.571191 - ], - [ - -73.43982, - 45.571308 - ], - [ - -73.440331, - 45.571417 - ], - [ - -73.440756, - 45.571507 - ], - [ - -73.441159, - 45.571606 - ], - [ - -73.4413, - 45.571651 - ], - [ - -73.441501, - 45.571723 - ], - [ - -73.44164, - 45.571795 - ], - [ - -73.441785, - 45.571885 - ], - [ - -73.441925, - 45.571984 - ], - [ - -73.442041, - 45.572083 - ], - [ - -73.442103, - 45.572145 - ], - [ - -73.442357, - 45.572049 - ], - [ - -73.442488, - 45.571998 - ], - [ - -73.442639, - 45.571977 - ], - [ - -73.442743, - 45.572044 - ], - [ - -73.443302, - 45.572631 - ], - [ - -73.443631, - 45.572972 - ], - [ - -73.444363, - 45.573203 - ], - [ - -73.444882, - 45.573368 - ], - [ - -73.444953, - 45.573266 - ], - [ - -73.444958, - 45.573259 - ], - [ - -73.445046, - 45.573132 - ], - [ - -73.443302, - 45.572631 - ], - [ - -73.442743, - 45.572044 - ], - [ - -73.442639, - 45.571977 - ], - [ - -73.442488, - 45.571998 - ], - [ - -73.442103, - 45.572145 - ], - [ - -73.442172, - 45.572214 - ], - [ - -73.442327, - 45.572407 - ], - [ - -73.442488, - 45.572624 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442771, - 45.572994 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.446698, - 45.574646 - ], - [ - -73.446963, - 45.574749 - ], - [ - -73.446986, - 45.574767 - ], - [ - -73.447005, - 45.574781 - ], - [ - -73.447026, - 45.574808 - ], - [ - -73.447042, - 45.57483 - ], - [ - -73.447056, - 45.574857 - ], - [ - -73.44707, - 45.574889 - ], - [ - -73.447082, - 45.57492 - ], - [ - -73.447099, - 45.575037 - ], - [ - -73.447053, - 45.575141 - ], - [ - -73.446759, - 45.575802 - ], - [ - -73.446721, - 45.575887 - ], - [ - -73.446618, - 45.576202 - ], - [ - -73.446585, - 45.576297 - ], - [ - -73.446578, - 45.576319 - ], - [ - -73.446558, - 45.576387 - ], - [ - -73.44653, - 45.57654 - ], - [ - -73.446519, - 45.57667 - ], - [ - -73.446516, - 45.576796 - ], - [ - -73.446516, - 45.576958 - ], - [ - -73.446539, - 45.577179 - ], - [ - -73.446584, - 45.57744 - ], - [ - -73.446587, - 45.577451 - ], - [ - -73.446615, - 45.57757 - ], - [ - -73.446865, - 45.578811 - ], - [ - -73.446887, - 45.57892 - ], - [ - -73.446904, - 45.579005 - ], - [ - -73.447125, - 45.580074 - ], - [ - -73.447136, - 45.58013 - ], - [ - -73.447307, - 45.58099 - ], - [ - -73.447337, - 45.581174 - ], - [ - -73.447364, - 45.581462 - ], - [ - -73.447358, - 45.581597 - ], - [ - -73.447346, - 45.581723 - ], - [ - -73.447325, - 45.581872 - ], - [ - -73.447274, - 45.582088 - ], - [ - -73.447195, - 45.582299 - ], - [ - -73.447192, - 45.582306 - ] - ] - }, - "id": 414, - "properties": { - "id": "a4043fca-5d9f-4e8b-8edf-a47a09428e63", - "data": { - "gtfs": { - "shape_id": "892_1_A" - }, - "segments": [ - { - "distanceMeters": 167, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 208, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 194, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 244, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 268, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 17 - }, - { - "distanceMeters": 259, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 234, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 224, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 604, - "travelTimeSeconds": 132 - }, - { - "distanceMeters": 464, - "travelTimeSeconds": 81 - }, - { - "distanceMeters": 434, - "travelTimeSeconds": 76 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 153, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 251, - "travelTimeSeconds": 45 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 5146, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 2537.8002252576443, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.6, - "travelTimeWithoutDwellTimesSeconds": 780, - "operatingTimeWithLayoverTimeSeconds": 960, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 780, - "operatingSpeedWithLayoverMetersPerSecond": 5.36, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.6 - }, - "mode": "taxi", - "name": "boul. de Mortagne", - "color": "#A32638", - "nodes": [ - "80eb2b2c-3d80-431d-851d-8665038b93b7", - "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", - "c6549833-3800-4d1f-a789-747fc95c595a", - "ab419e3e-c877-4589-88de-b6df60ac6dd1", - "fb50e5b2-5326-4cb9-9888-65bcbf9b9592", - "834b9411-0d78-496d-8fb2-7131e0c1ec41", - "8b4e9db5-5481-4624-b5ab-e40bba2a2897", - "9cf65cb9-0319-47f1-8406-ca3211a7ff12", - "08debed2-a767-4e18-9342-678b9ff106e2", - "ab35419e-5bd1-4da1-bfdf-b33c65916d63", - "26830ba4-9f15-4574-ae58-812d3a6fc6d5", - "64d79080-f253-4cae-bbde-03e1a26a3f9e", - "7f184ebf-41da-496f-9ed8-536b6fff9c3f", - "7cc0727e-e69b-4711-8bea-f955d406f0ed", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "36054208-e9c6-4e5a-99d2-bfca0679b681", - "c520acc8-980c-45c0-9195-152ad50ee471", - "18aabfcd-f4e1-4782-a757-80cdf1597763", - "6c99422e-05cb-48dc-811f-162fee50cf80", - "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", - "44ce6da8-ee79-4e09-9c16-f31566643c0c" - ], - "stops": [], - "line_id": "855454e2-7380-4cee-b7f4-db041cfff1ca", - "segments": [ - 0, - 5, - 10, - 18, - 26, - 33, - 37, - 40, - 49, - 58, - 65, - 67, - 69, - 77, - 98, - 113, - 135, - 148, - 150, - 153 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 414, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.44719, - 45.58265 - ], - [ - -73.447216, - 45.582605 - ], - [ - -73.447288, - 45.582456 - ], - [ - -73.447348, - 45.582322 - ], - [ - -73.447422, - 45.58211 - ], - [ - -73.447475, - 45.581885 - ], - [ - -73.447497, - 45.581732 - ], - [ - -73.447521, - 45.581602 - ], - [ - -73.447516, - 45.581462 - ], - [ - -73.447513, - 45.581287 - ], - [ - -73.447477, - 45.581057 - ], - [ - -73.447325, - 45.580308 - ], - [ - -73.447286, - 45.580117 - ], - [ - -73.447144, - 45.579424 - ], - [ - -73.44709, - 45.579161 - ], - [ - -73.447056, - 45.578992 - ], - [ - -73.447038, - 45.578907 - ], - [ - -73.446989, - 45.578673 - ], - [ - -73.446923, - 45.578343 - ], - [ - -73.446764, - 45.577557 - ], - [ - -73.446738, - 45.577422 - ], - [ - -73.446692, - 45.57717 - ], - [ - -73.446671, - 45.576945 - ], - [ - -73.446671, - 45.57667 - ], - [ - -73.446671, - 45.576571 - ], - [ - -73.446688, - 45.576451 - ], - [ - -73.44669, - 45.576436 - ], - [ - -73.446707, - 45.576333 - ], - [ - -73.446734, - 45.576243 - ], - [ - -73.446807, - 45.576018 - ], - [ - -73.446886, - 45.575843 - ], - [ - -73.446894, - 45.575825 - ], - [ - -73.447166, - 45.575249 - ], - [ - -73.447388, - 45.574789 - ], - [ - -73.447238, - 45.574749 - ], - [ - -73.446746, - 45.574587 - ], - [ - -73.446527, - 45.57452 - ], - [ - -73.445962, - 45.574326 - ], - [ - -73.445227, - 45.574113 - ], - [ - -73.445119, - 45.574081 - ], - [ - -73.444281, - 45.573826 - ], - [ - -73.443874, - 45.573695 - ], - [ - -73.443666, - 45.573618 - ], - [ - -73.443347, - 45.57347 - ], - [ - -73.443062, - 45.573285 - ], - [ - -73.442883, - 45.573119 - ], - [ - -73.442792, - 45.57302 - ], - [ - -73.442704, - 45.572912 - ], - [ - -73.442673, - 45.572871 - ], - [ - -73.442398, - 45.572504 - ], - [ - -73.442327, - 45.572407 - ], - [ - -73.442172, - 45.572214 - ], - [ - -73.442103, - 45.572145 - ], - [ - -73.442346, - 45.572053 - ], - [ - -73.442488, - 45.571998 - ], - [ - -73.442639, - 45.571977 - ], - [ - -73.442743, - 45.572044 - ], - [ - -73.443302, - 45.572631 - ], - [ - -73.443631, - 45.572972 - ], - [ - -73.444337, - 45.573195 - ], - [ - -73.444882, - 45.573368 - ], - [ - -73.444958, - 45.573259 - ], - [ - -73.444963, - 45.573251 - ], - [ - -73.445046, - 45.573132 - ], - [ - -73.443302, - 45.572631 - ], - [ - -73.442743, - 45.572044 - ], - [ - -73.442639, - 45.571977 - ], - [ - -73.442488, - 45.571998 - ], - [ - -73.442103, - 45.572145 - ], - [ - -73.442041, - 45.572083 - ], - [ - -73.441925, - 45.571984 - ], - [ - -73.441785, - 45.571885 - ], - [ - -73.44164, - 45.571795 - ], - [ - -73.441501, - 45.571723 - ], - [ - -73.4413, - 45.571651 - ], - [ - -73.441159, - 45.571606 - ], - [ - -73.440756, - 45.571507 - ], - [ - -73.440331, - 45.571417 - ], - [ - -73.43982, - 45.571308 - ], - [ - -73.439233, - 45.571191 - ], - [ - -73.43873, - 45.571092 - ], - [ - -73.438292, - 45.571002 - ], - [ - -73.438187, - 45.571143 - ], - [ - -73.438071, - 45.571298 - ], - [ - -73.437915, - 45.571494 - ], - [ - -73.437905, - 45.571507 - ], - [ - -73.437639, - 45.571843 - ], - [ - -73.437365, - 45.572207 - ], - [ - -73.437277, - 45.572369 - ], - [ - -73.437141, - 45.572652 - ], - [ - -73.437137, - 45.57266 - ], - [ - -73.437002, - 45.572954 - ], - [ - -73.433666, - 45.572247 - ], - [ - -73.432763, - 45.572056 - ], - [ - -73.431541, - 45.571797 - ], - [ - -73.430609, - 45.5716 - ], - [ - -73.430291, - 45.571546 - ], - [ - -73.42993, - 45.571492 - ], - [ - -73.429449, - 45.571428 - ], - [ - -73.42894, - 45.571383 - ], - [ - -73.428617, - 45.57136 - ], - [ - -73.428496, - 45.571355 - ], - [ - -73.428324, - 45.571347 - ], - [ - -73.428023, - 45.571342 - ], - [ - -73.427626, - 45.571342 - ], - [ - -73.42732, - 45.571342 - ], - [ - -73.426566, - 45.571377 - ], - [ - -73.426472, - 45.571382 - ], - [ - -73.426074, - 45.571399 - ], - [ - -73.425864, - 45.571408 - ], - [ - -73.425716, - 45.571377 - ], - [ - -73.425614, - 45.571336 - ], - [ - -73.424894, - 45.570778 - ], - [ - -73.424803, - 45.570692 - ], - [ - -73.424729, - 45.57062 - ], - [ - -73.424693, - 45.570539 - ], - [ - -73.424653, - 45.570373 - ], - [ - -73.424628, - 45.570152 - ], - [ - -73.424565, - 45.569543 - ], - [ - -73.424562, - 45.569513 - ], - [ - -73.424538, - 45.569347 - ], - [ - -73.422873, - 45.56944 - ], - [ - -73.422325, - 45.56947 - ], - [ - -73.421741, - 45.569502 - ], - [ - -73.420778, - 45.569551 - ], - [ - -73.419829, - 45.569604 - ], - [ - -73.418962, - 45.569668 - ], - [ - -73.417529, - 45.569774 - ], - [ - -73.416713, - 45.569818 - ], - [ - -73.416574, - 45.569829 - ], - [ - -73.416545, - 45.569832 - ], - [ - -73.41628, - 45.569881 - ], - [ - -73.416182, - 45.569915 - ], - [ - -73.416084, - 45.569948 - ], - [ - -73.415904, - 45.570025 - ], - [ - -73.415778, - 45.570101 - ], - [ - -73.415627, - 45.57024 - ], - [ - -73.415527, - 45.570353 - ], - [ - -73.415436, - 45.570537 - ], - [ - -73.41537, - 45.570699 - ], - [ - -73.415227, - 45.571104 - ], - [ - -73.414974, - 45.571808 - ], - [ - -73.414932, - 45.571927 - ], - [ - -73.414726, - 45.572503 - ], - [ - -73.414683, - 45.572615 - ], - [ - -73.414618, - 45.572696 - ], - [ - -73.414603, - 45.572714 - ], - [ - -73.414438, - 45.57284 - ], - [ - -73.414244, - 45.572963 - ], - [ - -73.413911, - 45.573168 - ], - [ - -73.414077, - 45.573294 - ], - [ - -73.414647, - 45.573758 - ], - [ - -73.414791, - 45.57387 - ], - [ - -73.415714, - 45.5746 - ], - [ - -73.415986, - 45.57442 - ], - [ - -73.416162, - 45.574303 - ], - [ - -73.41659, - 45.574029 - ], - [ - -73.416949, - 45.573818 - ], - [ - -73.417166, - 45.573686 - ] - ] - }, - "id": 415, - "properties": { - "id": "96a834af-32c7-453a-a4a3-e19a39bd401d", - "data": { - "gtfs": { - "shape_id": "892_1_R" - }, - "segments": [ - { - "distanceMeters": 265, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 92, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 673, - "travelTimeSeconds": 121 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 752, - "travelTimeSeconds": 100 - }, - { - "distanceMeters": 142, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 306, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 173, - "travelTimeSeconds": 24 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 189, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 264, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 195, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 187, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 272, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 103, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 318, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 123, - "travelTimeSeconds": 17 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 5183, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 2537.8002252576443, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.64, - "travelTimeWithoutDwellTimesSeconds": 780, - "operatingTimeWithLayoverTimeSeconds": 960, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 780, - "operatingSpeedWithLayoverMetersPerSecond": 5.4, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.64 - }, - "mode": "taxi", - "name": "Ampère", - "color": "#A32638", - "nodes": [ - "44ce6da8-ee79-4e09-9c16-f31566643c0c", - "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", - "6c99422e-05cb-48dc-811f-162fee50cf80", - "7c5ab4a9-cc9e-4b88-bc68-d214d8c04000", - "a83efd44-0d7a-49ef-b344-ef523d875f87", - "c75630d1-5494-4596-bc82-707a62fa5988", - "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "c9b7f8d6-62a3-444a-bbd0-591def556854", - "7f184ebf-41da-496f-9ed8-536b6fff9c3f", - "64d79080-f253-4cae-bbde-03e1a26a3f9e", - "26830ba4-9f15-4574-ae58-812d3a6fc6d5", - "ab35419e-5bd1-4da1-bfdf-b33c65916d63", - "08debed2-a767-4e18-9342-678b9ff106e2", - "9cf65cb9-0319-47f1-8406-ca3211a7ff12", - "8b4e9db5-5481-4624-b5ab-e40bba2a2897", - "834b9411-0d78-496d-8fb2-7131e0c1ec41", - "fb50e5b2-5326-4cb9-9888-65bcbf9b9592", - "ab419e3e-c877-4589-88de-b6df60ac6dd1", - "ee85cfb1-201c-47a0-9d37-a01d18d76e92", - "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", - "80eb2b2c-3d80-431d-851d-8665038b93b7" - ], - "stops": [], - "line_id": "855454e2-7380-4cee-b7f4-db041cfff1ca", - "segments": [ - 0, - 11, - 14, - 18, - 25, - 49, - 59, - 85, - 90, - 92, - 94, - 101, - 108, - 118, - 122, - 126, - 129, - 141, - 145, - 154 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 415, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.436185, - 45.591213 - ], - [ - -73.43623, - 45.591247 - ], - [ - -73.436355, - 45.59135 - ], - [ - -73.43623, - 45.591445 - ], - [ - -73.435937, - 45.591669 - ], - [ - -73.435771, - 45.591809 - ], - [ - -73.435656, - 45.59193 - ], - [ - -73.435482, - 45.592133 - ], - [ - -73.435328, - 45.592303 - ], - [ - -73.435201, - 45.592416 - ], - [ - -73.435194, - 45.59242 - ], - [ - -73.434937, - 45.592614 - ], - [ - -73.434583, - 45.592879 - ], - [ - -73.434575, - 45.592883 - ], - [ - -73.434342, - 45.593054 - ], - [ - -73.434176, - 45.59318 - ], - [ - -73.433984, - 45.593306 - ], - [ - -73.433723, - 45.593472 - ], - [ - -73.433623, - 45.593526 - ], - [ - -73.433582, - 45.593589 - ], - [ - -73.433267, - 45.593751 - ], - [ - -73.433008, - 45.593886 - ], - [ - -73.432796, - 45.594012 - ], - [ - -73.432643, - 45.594115 - ], - [ - -73.432531, - 45.594178 - ], - [ - -73.432058, - 45.594473 - ], - [ - -73.432055, - 45.594475 - ], - [ - -73.431917, - 45.594569 - ], - [ - -73.431782, - 45.594668 - ], - [ - -73.431594, - 45.594825 - ], - [ - -73.43147, - 45.594956 - ], - [ - -73.431414, - 45.595014 - ], - [ - -73.431134, - 45.595351 - ], - [ - -73.430941, - 45.595572 - ], - [ - -73.430854, - 45.595684 - ], - [ - -73.430609, - 45.59595 - ], - [ - -73.430363, - 45.59621 - ], - [ - -73.430255, - 45.596318 - ], - [ - -73.430031, - 45.596525 - ], - [ - -73.429915, - 45.596619 - ], - [ - -73.42981, - 45.5967 - ], - [ - -73.429613, - 45.596862 - ], - [ - -73.429318, - 45.597082 - ], - [ - -73.429299, - 45.597096 - ], - [ - -73.429168, - 45.59719 - ], - [ - -73.428901, - 45.597006 - ], - [ - -73.42816, - 45.596492 - ], - [ - -73.428044, - 45.59647 - ], - [ - -73.425968, - 45.594881 - ], - [ - -73.42589, - 45.594822 - ], - [ - -73.425724, - 45.594928 - ], - [ - -73.425315, - 45.59519 - ], - [ - -73.425154, - 45.595291 - ], - [ - -73.424403, - 45.59577 - ], - [ - -73.424389, - 45.595779 - ], - [ - -73.424346, - 45.595806 - ], - [ - -73.424314, - 45.59582 - ], - [ - -73.42427, - 45.595828 - ], - [ - -73.424219, - 45.595828 - ], - [ - -73.424048, - 45.595824 - ], - [ - -73.423763, - 45.595816 - ], - [ - -73.423387, - 45.595805 - ], - [ - -73.423291, - 45.595802 - ], - [ - -73.423253, - 45.595801 - ], - [ - -73.422401, - 45.595778 - ], - [ - -73.422277, - 45.595772 - ], - [ - -73.42218, - 45.595765 - ], - [ - -73.422083, - 45.595744 - ], - [ - -73.421986, - 45.595693 - ], - [ - -73.421766, - 45.595519 - ], - [ - -73.421327, - 45.595172 - ], - [ - -73.421064, - 45.59497 - ], - [ - -73.420747, - 45.594726 - ], - [ - -73.420638, - 45.594642 - ], - [ - -73.419762, - 45.593964 - ], - [ - -73.419404, - 45.59369 - ], - [ - -73.41921, - 45.593542 - ], - [ - -73.419155, - 45.593435 - ], - [ - -73.419177, - 45.59311 - ], - [ - -73.419181, - 45.593058 - ], - [ - -73.419199, - 45.592802 - ], - [ - -73.4192, - 45.592784 - ], - [ - -73.419216, - 45.59257 - ], - [ - -73.419228, - 45.592373 - ], - [ - -73.419234, - 45.592287 - ], - [ - -73.419248, - 45.592076 - ], - [ - -73.41925, - 45.59204 - ], - [ - -73.419253, - 45.592004 - ], - [ - -73.419322, - 45.591902 - ], - [ - -73.420413, - 45.591205 - ], - [ - -73.420523, - 45.591135 - ], - [ - -73.42068, - 45.591034 - ], - [ - -73.420701, - 45.591021 - ], - [ - -73.420783, - 45.590968 - ], - [ - -73.420833, - 45.590937 - ], - [ - -73.420656, - 45.590797 - ], - [ - -73.418915, - 45.58942 - ], - [ - -73.418878, - 45.589389 - ], - [ - -73.418785, - 45.589312 - ], - [ - -73.418153, - 45.588786 - ], - [ - -73.417398, - 45.58817 - ], - [ - -73.417285, - 45.588078 - ], - [ - -73.416033, - 45.587004 - ], - [ - -73.415873, - 45.586847 - ], - [ - -73.415801, - 45.586765 - ], - [ - -73.415697, - 45.586647 - ], - [ - -73.415611, - 45.586509 - ], - [ - -73.415506, - 45.586391 - ], - [ - -73.415276, - 45.586167 - ], - [ - -73.414721, - 45.58571 - ], - [ - -73.414113, - 45.585277 - ], - [ - -73.413942, - 45.585139 - ], - [ - -73.41171, - 45.583342 - ], - [ - -73.411589, - 45.583244 - ], - [ - -73.411261, - 45.582974 - ], - [ - -73.410932, - 45.582707 - ], - [ - -73.410649, - 45.582481 - ], - [ - -73.410524, - 45.582384 - ], - [ - -73.410198, - 45.582124 - ], - [ - -73.40977, - 45.581743 - ], - [ - -73.409326, - 45.581385 - ], - [ - -73.409071, - 45.58113 - ], - [ - -73.408983, - 45.581041 - ], - [ - -73.408901, - 45.580908 - ], - [ - -73.408815, - 45.58074 - ], - [ - -73.408744, - 45.580442 - ], - [ - -73.408601, - 45.579953 - ], - [ - -73.408573, - 45.5799 - ], - [ - -73.408495, - 45.579881 - ], - [ - -73.408395, - 45.57989 - ], - [ - -73.408099, - 45.579917 - ], - [ - -73.407903, - 45.579935 - ], - [ - -73.407657, - 45.579922 - ], - [ - -73.407302, - 45.579893 - ], - [ - -73.407079, - 45.579861 - ], - [ - -73.406728, - 45.579771 - ], - [ - -73.40626, - 45.579611 - ], - [ - -73.405932, - 45.579444 - ], - [ - -73.405786, - 45.579342 - ], - [ - -73.405743, - 45.579303 - ], - [ - -73.4057, - 45.579264 - ], - [ - -73.405449, - 45.579042 - ], - [ - -73.405272, - 45.578897 - ], - [ - -73.40517, - 45.578813 - ], - [ - -73.404428, - 45.578224 - ], - [ - -73.404359, - 45.57817 - ], - [ - -73.404045, - 45.577927 - ], - [ - -73.403788, - 45.577749 - ], - [ - -73.403207, - 45.577445 - ], - [ - -73.403621, - 45.577033 - ], - [ - -73.404512, - 45.576201 - ], - [ - -73.40454, - 45.576175 - ], - [ - -73.404582, - 45.576139 - ], - [ - -73.404806, - 45.575896 - ], - [ - -73.404941, - 45.57582 - ], - [ - -73.405504, - 45.575339 - ], - [ - -73.405913, - 45.574988 - ], - [ - -73.406345, - 45.574609 - ], - [ - -73.406812, - 45.574199 - ], - [ - -73.407377, - 45.573703 - ], - [ - -73.407648, - 45.573464 - ], - [ - -73.407902, - 45.573272 - ], - [ - -73.408156, - 45.573119 - ], - [ - -73.408432, - 45.572987 - ], - [ - -73.40901, - 45.572865 - ], - [ - -73.410733, - 45.572762 - ], - [ - -73.410922, - 45.572751 - ], - [ - -73.411036, - 45.572745 - ], - [ - -73.412381, - 45.572673 - ], - [ - -73.412661, - 45.572692 - ], - [ - -73.412759, - 45.572574 - ], - [ - -73.41279, - 45.572436 - ], - [ - -73.412493, - 45.572143 - ], - [ - -73.412124, - 45.571846 - ], - [ - -73.411941, - 45.571638 - ], - [ - -73.411906, - 45.571399 - ], - [ - -73.41188, - 45.57122 - ], - [ - -73.411587, - 45.571236 - ] - ] - }, - "id": 416, - "properties": { - "id": "c8e5b516-d90b-4a79-9612-f90f0cd178fa", - "data": { - "gtfs": { - "shape_id": "893_2_A" - }, - "segments": [ - { - "distanceMeters": 506, - "travelTimeSeconds": 97 - }, - { - "distanceMeters": 364, - "travelTimeSeconds": 70 - }, - { - "distanceMeters": 374, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 247, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 256, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 309, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 197, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 246, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 233, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 321, - "travelTimeSeconds": 41 - }, - { - "distanceMeters": 384, - "travelTimeSeconds": 50 - }, - { - "distanceMeters": 166, - "travelTimeSeconds": 21 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 129, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 659, - "travelTimeSeconds": 151 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 5550, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 2964.0884710498603, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.78, - "travelTimeWithoutDwellTimesSeconds": 960, - "operatingTimeWithLayoverTimeSeconds": 1140, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 960, - "operatingSpeedWithLayoverMetersPerSecond": 4.87, - "averageSpeedWithoutDwellTimesMetersPerSecond": 5.78 - }, - "mode": "taxi", - "name": "Stat. de Touraine", - "color": "#A32638", - "nodes": [ - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "dbda0ea8-08e6-4d52-b455-3b21aae9d561", - "92d27f4f-1792-4dbb-8e38-aef6410a23d1", - "7cfada17-2082-416d-b64c-984a57776abe", - "81683acf-4f7f-4881-9c66-76f73077f14f", - "89a9cd80-8390-4b5d-ae70-b79c4f2755a8", - "47288795-8cf7-4a4f-a6d6-27f1d0029236", - "e6bd25b8-5158-4fce-9b9d-3a004cbf9ea1", - "b34b9d4c-8a10-4c6f-8680-e94a58cb3557", - "80ef4305-1848-4e04-a328-9a6224dacc70", - "560a4184-8ee9-4ea1-b3fb-4093c9ece9d5", - "144cb85b-88dc-4e09-90a2-f3d4d4c951bd", - "4941bea8-570f-4adc-b6d4-2b2cbff2bc03", - "35c1782c-662d-401b-9699-beb9fbc05ba4", - "1a872bc7-948e-475a-8527-ec3c2b61fd79", - "7b448eb1-37a4-4d74-be5a-f8938cae8304", - "d3a6dc19-15b0-45f0-a45a-d0eca5d46fd7", - "0f2d673a-8365-425e-adb1-c97927e1fe04", - "33427dde-b7ac-44e3-ba8b-3d835422c2dc", - "9c784932-945b-47d8-afa8-e5b73889acfb" - ], - "stops": [], - "line_id": "fa44047c-6b2a-47b5-bca4-e925c8baf4b2", - "segments": [ - 0, - 25, - 43, - 48, - 61, - 72, - 83, - 91, - 97, - 100, - 104, - 111, - 112, - 121, - 139, - 145, - 150, - 157, - 159 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 416, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.411587, - 45.571236 - ], - [ - -73.411416, - 45.571246 - ], - [ - -73.411426, - 45.571418 - ], - [ - -73.411906, - 45.571399 - ], - [ - -73.411941, - 45.571638 - ], - [ - -73.412124, - 45.571846 - ], - [ - -73.412493, - 45.572143 - ], - [ - -73.41279, - 45.572436 - ], - [ - -73.412759, - 45.572574 - ], - [ - -73.412619, - 45.572555 - ], - [ - -73.412388, - 45.572541 - ], - [ - -73.412156, - 45.572541 - ], - [ - -73.411544, - 45.572577 - ], - [ - -73.411304, - 45.572588 - ], - [ - -73.41125, - 45.57259 - ], - [ - -73.411126, - 45.572594 - ], - [ - -73.410903, - 45.572608 - ], - [ - -73.410714, - 45.572617 - ], - [ - -73.410503, - 45.57263 - ], - [ - -73.410213, - 45.572647 - ], - [ - -73.409062, - 45.572719 - ], - [ - -73.409057, - 45.572719 - ], - [ - -73.409052, - 45.572719 - ], - [ - -73.409047, - 45.572719 - ], - [ - -73.409041, - 45.57272 - ], - [ - -73.409036, - 45.57272 - ], - [ - -73.409031, - 45.57272 - ], - [ - -73.409026, - 45.57272 - ], - [ - -73.409021, - 45.57272 - ], - [ - -73.409016, - 45.572721 - ], - [ - -73.409011, - 45.572721 - ], - [ - -73.409006, - 45.572721 - ], - [ - -73.409, - 45.572722 - ], - [ - -73.408995, - 45.572722 - ], - [ - -73.40899, - 45.572722 - ], - [ - -73.408985, - 45.572722 - ], - [ - -73.40898, - 45.572723 - ], - [ - -73.408975, - 45.572723 - ], - [ - -73.40897, - 45.572723 - ], - [ - -73.408965, - 45.572724 - ], - [ - -73.40896, - 45.572724 - ], - [ - -73.408955, - 45.572725 - ], - [ - -73.408949, - 45.572725 - ], - [ - -73.408944, - 45.572725 - ], - [ - -73.408939, - 45.572726 - ], - [ - -73.408934, - 45.572726 - ], - [ - -73.408929, - 45.572727 - ], - [ - -73.408924, - 45.572727 - ], - [ - -73.408919, - 45.572728 - ], - [ - -73.408914, - 45.572728 - ], - [ - -73.408909, - 45.572729 - ], - [ - -73.408904, - 45.572729 - ], - [ - -73.408899, - 45.572729 - ], - [ - -73.408894, - 45.57273 - ], - [ - -73.408889, - 45.572731 - ], - [ - -73.408883, - 45.572731 - ], - [ - -73.408878, - 45.572732 - ], - [ - -73.408873, - 45.572732 - ], - [ - -73.408868, - 45.572733 - ], - [ - -73.408863, - 45.572733 - ], - [ - -73.408858, - 45.572734 - ], - [ - -73.408853, - 45.572734 - ], - [ - -73.408848, - 45.572735 - ], - [ - -73.408843, - 45.572736 - ], - [ - -73.408838, - 45.572736 - ], - [ - -73.408833, - 45.572737 - ], - [ - -73.408828, - 45.572737 - ], - [ - -73.408823, - 45.572738 - ], - [ - -73.408818, - 45.572739 - ], - [ - -73.408813, - 45.572739 - ], - [ - -73.408808, - 45.57274 - ], - [ - -73.408803, - 45.572741 - ], - [ - -73.408798, - 45.572742 - ], - [ - -73.408793, - 45.572742 - ], - [ - -73.408788, - 45.572743 - ], - [ - -73.408783, - 45.572744 - ], - [ - -73.408778, - 45.572744 - ], - [ - -73.408773, - 45.572745 - ], - [ - -73.408768, - 45.572746 - ], - [ - -73.408762, - 45.572747 - ], - [ - -73.408757, - 45.572747 - ], - [ - -73.408752, - 45.572748 - ], - [ - -73.408747, - 45.572749 - ], - [ - -73.408742, - 45.57275 - ], - [ - -73.408738, - 45.572751 - ], - [ - -73.408733, - 45.572752 - ], - [ - -73.408728, - 45.572752 - ], - [ - -73.408723, - 45.572753 - ], - [ - -73.408718, - 45.572754 - ], - [ - -73.408713, - 45.572755 - ], - [ - -73.408708, - 45.572756 - ], - [ - -73.408703, - 45.572757 - ], - [ - -73.408698, - 45.572758 - ], - [ - -73.408693, - 45.572759 - ], - [ - -73.408688, - 45.572759 - ], - [ - -73.408683, - 45.57276 - ], - [ - -73.408678, - 45.572761 - ], - [ - -73.408673, - 45.572762 - ], - [ - -73.408668, - 45.572763 - ], - [ - -73.408663, - 45.572764 - ], - [ - -73.408658, - 45.572765 - ], - [ - -73.408653, - 45.572766 - ], - [ - -73.408648, - 45.572767 - ], - [ - -73.408643, - 45.572768 - ], - [ - -73.408638, - 45.572769 - ], - [ - -73.408634, - 45.57277 - ], - [ - -73.408629, - 45.572771 - ], - [ - -73.408624, - 45.572772 - ], - [ - -73.408619, - 45.572773 - ], - [ - -73.408614, - 45.572774 - ], - [ - -73.408609, - 45.572775 - ], - [ - -73.408604, - 45.572777 - ], - [ - -73.408599, - 45.572778 - ], - [ - -73.408594, - 45.572779 - ], - [ - -73.40859, - 45.57278 - ], - [ - -73.408585, - 45.572781 - ], - [ - -73.40858, - 45.572782 - ], - [ - -73.408575, - 45.572783 - ], - [ - -73.40857, - 45.572784 - ], - [ - -73.408565, - 45.572786 - ], - [ - -73.40856, - 45.572787 - ], - [ - -73.408556, - 45.572788 - ], - [ - -73.408551, - 45.572789 - ], - [ - -73.408546, - 45.57279 - ], - [ - -73.408541, - 45.572792 - ], - [ - -73.408536, - 45.572793 - ], - [ - -73.408531, - 45.572794 - ], - [ - -73.408527, - 45.572795 - ], - [ - -73.408522, - 45.572797 - ], - [ - -73.408517, - 45.572798 - ], - [ - -73.408512, - 45.572799 - ], - [ - -73.408507, - 45.5728 - ], - [ - -73.408503, - 45.572802 - ], - [ - -73.408498, - 45.572803 - ], - [ - -73.408493, - 45.572804 - ], - [ - -73.408488, - 45.572806 - ], - [ - -73.408484, - 45.572807 - ], - [ - -73.408479, - 45.572808 - ], - [ - -73.408474, - 45.57281 - ], - [ - -73.408469, - 45.572811 - ], - [ - -73.408465, - 45.572812 - ], - [ - -73.40846, - 45.572814 - ], - [ - -73.408455, - 45.572815 - ], - [ - -73.40845, - 45.572817 - ], - [ - -73.408446, - 45.572818 - ], - [ - -73.408441, - 45.572819 - ], - [ - -73.408436, - 45.572821 - ], - [ - -73.408432, - 45.572822 - ], - [ - -73.408427, - 45.572824 - ], - [ - -73.408422, - 45.572825 - ], - [ - -73.408418, - 45.572827 - ], - [ - -73.408413, - 45.572828 - ], - [ - -73.408408, - 45.57283 - ], - [ - -73.408404, - 45.572831 - ], - [ - -73.408399, - 45.572833 - ], - [ - -73.408394, - 45.572834 - ], - [ - -73.40839, - 45.572836 - ], - [ - -73.408385, - 45.572837 - ], - [ - -73.40838, - 45.572839 - ], - [ - -73.408376, - 45.57284 - ], - [ - -73.408371, - 45.572842 - ], - [ - -73.408367, - 45.572843 - ], - [ - -73.408362, - 45.572845 - ], - [ - -73.408357, - 45.572847 - ], - [ - -73.408353, - 45.572848 - ], - [ - -73.408348, - 45.57285 - ], - [ - -73.408344, - 45.572851 - ], - [ - -73.408339, - 45.572853 - ], - [ - -73.408334, - 45.572855 - ], - [ - -73.40833, - 45.572856 - ], - [ - -73.408325, - 45.572858 - ], - [ - -73.408321, - 45.57286 - ], - [ - -73.408316, - 45.572861 - ], - [ - -73.408312, - 45.572863 - ], - [ - -73.408307, - 45.572865 - ], - [ - -73.408303, - 45.572867 - ], - [ - -73.408298, - 45.572868 - ], - [ - -73.408294, - 45.57287 - ], - [ - -73.408289, - 45.572872 - ], - [ - -73.408285, - 45.572874 - ], - [ - -73.40828, - 45.572875 - ], - [ - -73.408276, - 45.572877 - ], - [ - -73.408271, - 45.572879 - ], - [ - -73.408267, - 45.572881 - ], - [ - -73.408263, - 45.572883 - ], - [ - -73.408258, - 45.572884 - ], - [ - -73.408254, - 45.572886 - ], - [ - -73.408249, - 45.572888 - ], - [ - -73.408245, - 45.57289 - ], - [ - -73.408241, - 45.572892 - ], - [ - -73.408236, - 45.572894 - ], - [ - -73.408232, - 45.572895 - ], - [ - -73.408227, - 45.572897 - ], - [ - -73.408223, - 45.572899 - ], - [ - -73.408219, - 45.572901 - ], - [ - -73.408214, - 45.572903 - ], - [ - -73.40821, - 45.572905 - ], - [ - -73.408206, - 45.572907 - ], - [ - -73.408201, - 45.572909 - ], - [ - -73.408197, - 45.572911 - ], - [ - -73.408193, - 45.572913 - ], - [ - -73.408188, - 45.572915 - ], - [ - -73.408184, - 45.572917 - ], - [ - -73.40818, - 45.572919 - ], - [ - -73.408176, - 45.572921 - ], - [ - -73.408171, - 45.572923 - ], - [ - -73.408167, - 45.572925 - ], - [ - -73.408163, - 45.572927 - ], - [ - -73.408159, - 45.572929 - ], - [ - -73.408154, - 45.572931 - ], - [ - -73.40815, - 45.572933 - ], - [ - -73.408146, - 45.572935 - ], - [ - -73.408142, - 45.572937 - ], - [ - -73.408138, - 45.572939 - ], - [ - -73.408133, - 45.572941 - ], - [ - -73.408129, - 45.572943 - ], - [ - -73.408125, - 45.572945 - ], - [ - -73.408121, - 45.572947 - ], - [ - -73.408117, - 45.572949 - ], - [ - -73.408112, - 45.572951 - ], - [ - -73.408108, - 45.572953 - ], - [ - -73.408104, - 45.572955 - ], - [ - -73.4081, - 45.572958 - ], - [ - -73.408096, - 45.57296 - ], - [ - -73.408092, - 45.572962 - ], - [ - -73.408087, - 45.572964 - ], - [ - -73.408083, - 45.572966 - ], - [ - -73.408079, - 45.572968 - ], - [ - -73.408075, - 45.57297 - ], - [ - -73.408071, - 45.572972 - ], - [ - -73.408067, - 45.572975 - ], - [ - -73.408063, - 45.572977 - ], - [ - -73.408059, - 45.572979 - ], - [ - -73.408055, - 45.572981 - ], - [ - -73.408051, - 45.572983 - ], - [ - -73.408046, - 45.572985 - ], - [ - -73.408042, - 45.572988 - ], - [ - -73.408038, - 45.57299 - ], - [ - -73.408034, - 45.572992 - ], - [ - -73.40803, - 45.572994 - ], - [ - -73.408026, - 45.572996 - ], - [ - -73.408022, - 45.572999 - ], - [ - -73.408018, - 45.573001 - ], - [ - -73.408014, - 45.573003 - ], - [ - -73.40801, - 45.573005 - ], - [ - -73.408006, - 45.573008 - ], - [ - -73.408002, - 45.57301 - ], - [ - -73.407998, - 45.573012 - ], - [ - -73.407994, - 45.573014 - ], - [ - -73.40799, - 45.573017 - ], - [ - -73.407986, - 45.573019 - ], - [ - -73.407982, - 45.573021 - ], - [ - -73.407978, - 45.573024 - ], - [ - -73.407974, - 45.573026 - ], - [ - -73.40797, - 45.573028 - ], - [ - -73.407966, - 45.57303 - ], - [ - -73.407962, - 45.573033 - ], - [ - -73.407959, - 45.573035 - ], - [ - -73.407955, - 45.573037 - ], - [ - -73.407951, - 45.57304 - ], - [ - -73.407947, - 45.573042 - ], - [ - -73.407943, - 45.573044 - ], - [ - -73.407939, - 45.573047 - ], - [ - -73.407935, - 45.573049 - ], - [ - -73.407931, - 45.573052 - ], - [ - -73.407928, - 45.573054 - ], - [ - -73.407924, - 45.573056 - ], - [ - -73.40792, - 45.573059 - ], - [ - -73.407916, - 45.573061 - ], - [ - -73.407913, - 45.573064 - ], - [ - -73.407909, - 45.573066 - ], - [ - -73.407905, - 45.573069 - ], - [ - -73.407901, - 45.573071 - ], - [ - -73.407898, - 45.573074 - ], - [ - -73.407894, - 45.573076 - ], - [ - -73.40789, - 45.573079 - ], - [ - -73.407887, - 45.573081 - ], - [ - -73.407883, - 45.573084 - ], - [ - -73.40788, - 45.573086 - ], - [ - -73.407876, - 45.573089 - ], - [ - -73.407872, - 45.573091 - ], - [ - -73.407869, - 45.573094 - ], - [ - -73.407865, - 45.573097 - ], - [ - -73.407862, - 45.573099 - ], - [ - -73.407858, - 45.573102 - ], - [ - -73.407855, - 45.573105 - ], - [ - -73.407851, - 45.573107 - ], - [ - -73.407848, - 45.57311 - ], - [ - -73.407844, - 45.573112 - ], - [ - -73.407841, - 45.573115 - ], - [ - -73.407837, - 45.573118 - ], - [ - -73.407834, - 45.573121 - ], - [ - -73.407831, - 45.573123 - ], - [ - -73.407827, - 45.573126 - ], - [ - -73.407824, - 45.573129 - ], - [ - -73.407821, - 45.573131 - ], - [ - -73.407817, - 45.573134 - ], - [ - -73.407812, - 45.57314 - ], - [ - -73.407685, - 45.573152 - ], - [ - -73.407579, - 45.57316 - ], - [ - -73.407549, - 45.573159 - ], - [ - -73.407496, - 45.573159 - ], - [ - -73.407407, - 45.573146 - ], - [ - -73.407363, - 45.573135 - ], - [ - -73.407292, - 45.57311 - ], - [ - -73.407175, - 45.573055 - ], - [ - -73.406884, - 45.572882 - ], - [ - -73.405962, - 45.572152 - ], - [ - -73.405928, - 45.572128 - ], - [ - -73.405899, - 45.572108 - ], - [ - -73.405852, - 45.572099 - ], - [ - -73.405787, - 45.572088 - ], - [ - -73.405648, - 45.572091 - ], - [ - -73.40501, - 45.572118 - ], - [ - -73.404937, - 45.572127 - ], - [ - -73.404887, - 45.572144 - ], - [ - -73.404824, - 45.572173 - ], - [ - -73.404167, - 45.572586 - ], - [ - -73.404077, - 45.572646 - ], - [ - -73.404152, - 45.572702 - ], - [ - -73.404226, - 45.572758 - ], - [ - -73.404305, - 45.572839 - ], - [ - -73.404344, - 45.572907 - ], - [ - -73.404464, - 45.573131 - ], - [ - -73.404516, - 45.573227 - ], - [ - -73.405062, - 45.574199 - ], - [ - -73.405195, - 45.574394 - ], - [ - -73.405268, - 45.574469 - ], - [ - -73.405457, - 45.574621 - ], - [ - -73.405692, - 45.574808 - ], - [ - -73.40583, - 45.574917 - ], - [ - -73.405706, - 45.575031 - ], - [ - -73.404873, - 45.575797 - ], - [ - -73.404864, - 45.575811 - ], - [ - -73.404806, - 45.575896 - ], - [ - -73.404582, - 45.576139 - ], - [ - -73.40454, - 45.576175 - ], - [ - -73.403621, - 45.577033 - ], - [ - -73.403207, - 45.577445 - ], - [ - -73.40359, - 45.577645 - ], - [ - -73.403788, - 45.577749 - ], - [ - -73.404045, - 45.577927 - ], - [ - -73.404191, - 45.57804 - ], - [ - -73.404428, - 45.578224 - ], - [ - -73.40517, - 45.578813 - ], - [ - -73.405272, - 45.578897 - ], - [ - -73.405449, - 45.579042 - ], - [ - -73.405478, - 45.579067 - ], - [ - -73.4057, - 45.579264 - ], - [ - -73.405786, - 45.579342 - ], - [ - -73.405932, - 45.579444 - ], - [ - -73.40626, - 45.579611 - ], - [ - -73.406728, - 45.579771 - ], - [ - -73.407079, - 45.579861 - ], - [ - -73.407302, - 45.579893 - ], - [ - -73.407657, - 45.579922 - ], - [ - -73.407903, - 45.579935 - ], - [ - -73.408395, - 45.57989 - ], - [ - -73.408495, - 45.579881 - ], - [ - -73.408573, - 45.5799 - ], - [ - -73.408601, - 45.579953 - ], - [ - -73.408744, - 45.580442 - ], - [ - -73.408815, - 45.58074 - ], - [ - -73.408901, - 45.580908 - ], - [ - -73.40893, - 45.580955 - ], - [ - -73.408983, - 45.581041 - ], - [ - -73.409326, - 45.581385 - ], - [ - -73.40977, - 45.581743 - ], - [ - -73.410198, - 45.582124 - ], - [ - -73.410524, - 45.582384 - ], - [ - -73.410649, - 45.582481 - ], - [ - -73.410932, - 45.582707 - ], - [ - -73.411261, - 45.582974 - ], - [ - -73.411415, - 45.583101 - ], - [ - -73.411589, - 45.583244 - ], - [ - -73.413947, - 45.585143 - ], - [ - -73.414113, - 45.585277 - ], - [ - -73.414721, - 45.58571 - ], - [ - -73.415276, - 45.586167 - ], - [ - -73.415506, - 45.586391 - ], - [ - -73.415611, - 45.586509 - ], - [ - -73.415625, - 45.586532 - ], - [ - -73.415697, - 45.586647 - ], - [ - -73.415873, - 45.586847 - ], - [ - -73.416033, - 45.587004 - ], - [ - -73.417165, - 45.587975 - ], - [ - -73.417285, - 45.588078 - ], - [ - -73.418153, - 45.588786 - ], - [ - -73.418709, - 45.589249 - ], - [ - -73.418785, - 45.589312 - ], - [ - -73.418915, - 45.58942 - ], - [ - -73.420711, - 45.590841 - ], - [ - -73.420833, - 45.590937 - ], - [ - -73.420783, - 45.590968 - ], - [ - -73.420701, - 45.591021 - ], - [ - -73.420519, - 45.591137 - ], - [ - -73.420413, - 45.591205 - ], - [ - -73.419322, - 45.591902 - ], - [ - -73.419253, - 45.592004 - ], - [ - -73.41925, - 45.59204 - ], - [ - -73.419248, - 45.592076 - ], - [ - -73.419241, - 45.592173 - ], - [ - -73.419234, - 45.592287 - ], - [ - -73.419216, - 45.59257 - ], - [ - -73.4192, - 45.592784 - ], - [ - -73.419199, - 45.592802 - ], - [ - -73.419181, - 45.593058 - ], - [ - -73.419177, - 45.59311 - ], - [ - -73.419155, - 45.593435 - ], - [ - -73.41921, - 45.593542 - ], - [ - -73.419404, - 45.59369 - ], - [ - -73.419762, - 45.593964 - ], - [ - -73.420546, - 45.594571 - ], - [ - -73.420638, - 45.594642 - ], - [ - -73.421064, - 45.59497 - ], - [ - -73.421327, - 45.595172 - ], - [ - -73.421766, - 45.595519 - ], - [ - -73.421986, - 45.595693 - ], - [ - -73.422083, - 45.595744 - ], - [ - -73.42218, - 45.595765 - ], - [ - -73.422277, - 45.595772 - ], - [ - -73.422401, - 45.595778 - ], - [ - -73.4231, - 45.595797 - ], - [ - -73.423253, - 45.595801 - ], - [ - -73.423291, - 45.595802 - ], - [ - -73.423763, - 45.595816 - ], - [ - -73.424048, - 45.595824 - ], - [ - -73.424219, - 45.595828 - ], - [ - -73.42427, - 45.595828 - ], - [ - -73.424314, - 45.59582 - ], - [ - -73.424346, - 45.595806 - ], - [ - -73.424389, - 45.595779 - ], - [ - -73.424403, - 45.59577 - ], - [ - -73.425154, - 45.595291 - ], - [ - -73.425315, - 45.59519 - ], - [ - -73.425547, - 45.595042 - ], - [ - -73.425726, - 45.594927 - ], - [ - -73.42589, - 45.594822 - ], - [ - -73.426214, - 45.59507 - ], - [ - -73.428044, - 45.59647 - ], - [ - -73.428064, - 45.596555 - ], - [ - -73.428968, - 45.597186 - ], - [ - -73.429083, - 45.597267 - ], - [ - -73.429168, - 45.59719 - ], - [ - -73.429318, - 45.597082 - ], - [ - -73.429388, - 45.59703 - ], - [ - -73.429613, - 45.596862 - ], - [ - -73.42981, - 45.5967 - ], - [ - -73.429915, - 45.596619 - ], - [ - -73.430031, - 45.596525 - ], - [ - -73.430255, - 45.596318 - ], - [ - -73.430363, - 45.59621 - ], - [ - -73.430609, - 45.59595 - ], - [ - -73.430854, - 45.595684 - ], - [ - -73.430941, - 45.595572 - ], - [ - -73.431134, - 45.595351 - ], - [ - -73.431414, - 45.595014 - ], - [ - -73.43147, - 45.594956 - ], - [ - -73.431594, - 45.594825 - ], - [ - -73.431782, - 45.594668 - ], - [ - -73.431796, - 45.594658 - ], - [ - -73.431917, - 45.594569 - ], - [ - -73.432055, - 45.594475 - ], - [ - -73.432531, - 45.594178 - ], - [ - -73.432643, - 45.594115 - ], - [ - -73.432796, - 45.594012 - ], - [ - -73.433008, - 45.593886 - ], - [ - -73.433267, - 45.593751 - ], - [ - -73.433582, - 45.593589 - ], - [ - -73.433689, - 45.593585 - ], - [ - -73.433785, - 45.593535 - ], - [ - -73.434067, - 45.593383 - ], - [ - -73.434286, - 45.593257 - ], - [ - -73.434482, - 45.593117 - ], - [ - -73.434699, - 45.59296 - ], - [ - -73.434861, - 45.592843 - ], - [ - -73.43505, - 45.592699 - ], - [ - -73.435304, - 45.592506 - ], - [ - -73.435474, - 45.592362 - ], - [ - -73.435781, - 45.592007 - ], - [ - -73.43601, - 45.591773 - ], - [ - -73.436179, - 45.591633 - ] - ] - }, - "id": 417, - "properties": { - "id": "fca46353-6d3f-4cdc-a76c-0974f7fc92fa", - "data": { - "gtfs": { - "shape_id": "893_2_R" - }, - "segments": [ - { - "distanceMeters": 818, - "travelTimeSeconds": 233 - }, - { - "distanceMeters": 230, - "travelTimeSeconds": 66 - }, - { - "distanceMeters": 212, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 141, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 325, - "travelTimeSeconds": 59 - }, - { - "distanceMeters": 152, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 395, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 56 - }, - { - "distanceMeters": 301, - "travelTimeSeconds": 48 - }, - { - "distanceMeters": 203, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 236, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 205, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 308, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 257, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 243, - "travelTimeSeconds": 44 - }, - { - "distanceMeters": 375, - "travelTimeSeconds": 72 - }, - { - "distanceMeters": 373, - "travelTimeSeconds": 73 - }, - { - "distanceMeters": 485, - "travelTimeSeconds": 95 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 5949, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 2964.08847104986, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 4.96, - "travelTimeWithoutDwellTimesSeconds": 1200, - "operatingTimeWithLayoverTimeSeconds": 1380, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1200, - "operatingSpeedWithLayoverMetersPerSecond": 4.31, - "averageSpeedWithoutDwellTimesMetersPerSecond": 4.96 - }, - "mode": "taxi", - "name": "boul. de Mortagne", - "color": "#A32638", - "nodes": [ - "9c784932-945b-47d8-afa8-e5b73889acfb", - "9adb2d51-794e-405a-84b9-dacf33a046bb", - "2f7dafc2-f82c-429d-8ce9-0ab21c7cde49", - "e2e77ab6-27d8-4ca8-9f93-36a4bfb46efb", - "d3a6dc19-15b0-45f0-a45a-d0eca5d46fd7", - "7b448eb1-37a4-4d74-be5a-f8938cae8304", - "1a872bc7-948e-475a-8527-ec3c2b61fd79", - "35c1782c-662d-401b-9699-beb9fbc05ba4", - "4941bea8-570f-4adc-b6d4-2b2cbff2bc03", - "b7599023-7f7b-498e-8d55-1e94246bf9e4", - "1c1a55d1-8af4-4a8f-95a9-7af3f3207400", - "80ef4305-1848-4e04-a328-9a6224dacc70", - "b34b9d4c-8a10-4c6f-8680-e94a58cb3557", - "e6bd25b8-5158-4fce-9b9d-3a004cbf9ea1", - "47288795-8cf7-4a4f-a6d6-27f1d0029236", - "89a9cd80-8390-4b5d-ae70-b79c4f2755a8", - "81683acf-4f7f-4881-9c66-76f73077f14f", - "7cfada17-2082-416d-b64c-984a57776abe", - "92d27f4f-1792-4dbb-8e38-aef6410a23d1", - "dbda0ea8-08e6-4d52-b455-3b21aae9d561", - "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9" - ], - "stops": [], - "line_id": "fa44047c-6b2a-47b5-bca4-e925c8baf4b2", - "segments": [ - 0, - 308, - 323, - 329, - 333, - 342, - 347, - 364, - 373, - 375, - 381, - 385, - 388, - 391, - 401, - 412, - 422, - 436, - 441, - 460 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 417, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.383219, - 45.504148 - ], - [ - -73.383272, - 45.504038 - ], - [ - -73.383312, - 45.503943 - ], - [ - -73.383779, - 45.502957 - ], - [ - -73.384213, - 45.502038 - ], - [ - -73.384273, - 45.501912 - ], - [ - -73.384265, - 45.501888 - ], - [ - -73.38424, - 45.501865 - ], - [ - -73.384205, - 45.501854 - ], - [ - -73.384166, - 45.501858 - ], - [ - -73.384132, - 45.501876 - ], - [ - -73.383235, - 45.503784 - ], - [ - -73.383175, - 45.503912 - ], - [ - -73.382957, - 45.503857 - ], - [ - -73.382592, - 45.503772 - ], - [ - -73.382365, - 45.503717 - ], - [ - -73.382247, - 45.50369 - ], - [ - -73.382017, - 45.503632 - ], - [ - -73.381788, - 45.503586 - ], - [ - -73.381702, - 45.503586 - ], - [ - -73.381614, - 45.503595 - ], - [ - -73.381525, - 45.503613 - ], - [ - -73.381438, - 45.503649 - ], - [ - -73.381271, - 45.503748 - ], - [ - -73.381063, - 45.5039 - ], - [ - -73.380649, - 45.503653 - ], - [ - -73.379998, - 45.503229 - ], - [ - -73.379576, - 45.50295 - ], - [ - -73.379384, - 45.502828 - ], - [ - -73.37932, - 45.502783 - ], - [ - -73.37913, - 45.502648 - ], - [ - -73.379092, - 45.502627 - ], - [ - -73.379006, - 45.50258 - ], - [ - -73.37878, - 45.502481 - ], - [ - -73.378631, - 45.502438 - ], - [ - -73.37856, - 45.502418 - ], - [ - -73.378407, - 45.502386 - ], - [ - -73.378319, - 45.502372 - ], - [ - -73.37822, - 45.502368 - ], - [ - -73.378037, - 45.502359 - ], - [ - -73.377961, - 45.502365 - ], - [ - -73.377873, - 45.502372 - ], - [ - -73.37772, - 45.50239 - ], - [ - -73.377578, - 45.502421 - ], - [ - -73.377427, - 45.502461 - ], - [ - -73.37726, - 45.502529 - ], - [ - -73.3771, - 45.502609 - ], - [ - -73.376904, - 45.502699 - ], - [ - -73.376645, - 45.502847 - ], - [ - -73.376535, - 45.502915 - ], - [ - -73.376411, - 45.502996 - ], - [ - -73.376319, - 45.503059 - ], - [ - -73.376016, - 45.503247 - ], - [ - -73.375972, - 45.503274 - ], - [ - -73.375741, - 45.503453 - ], - [ - -73.375698, - 45.503485 - ], - [ - -73.375447, - 45.503715 - ], - [ - -73.375293, - 45.503854 - ], - [ - -73.37517, - 45.50398 - ], - [ - -73.374998, - 45.504213 - ], - [ - -73.374854, - 45.504429 - ], - [ - -73.374722, - 45.5046 - ], - [ - -73.374697, - 45.504635 - ], - [ - -73.374625, - 45.504735 - ], - [ - -73.374598, - 45.504793 - ], - [ - -73.374583, - 45.504843 - ], - [ - -73.374565, - 45.504919 - ], - [ - -73.374581, - 45.50514 - ], - [ - -73.37462, - 45.505338 - ], - [ - -73.374746, - 45.505563 - ], - [ - -73.374844, - 45.505788 - ], - [ - -73.374878, - 45.505846 - ], - [ - -73.374945, - 45.505963 - ], - [ - -73.374951, - 45.505973 - ], - [ - -73.375061, - 45.506067 - ], - [ - -73.375295, - 45.506238 - ], - [ - -73.375424, - 45.506333 - ], - [ - -73.375748, - 45.506597 - ], - [ - -73.375784, - 45.506626 - ], - [ - -73.375859, - 45.506698 - ], - [ - -73.375911, - 45.506761 - ], - [ - -73.375985, - 45.506896 - ], - [ - -73.376046, - 45.507022 - ], - [ - -73.375883, - 45.507054 - ], - [ - -73.375586, - 45.507112 - ], - [ - -73.37473, - 45.507255 - ], - [ - -73.374599, - 45.507263 - ], - [ - -73.374436, - 45.507272 - ], - [ - -73.372887, - 45.507302 - ], - [ - -73.372631, - 45.507306 - ], - [ - -73.371045, - 45.507325 - ], - [ - -73.37103, - 45.507325 - ], - [ - -73.370567, - 45.507304 - ], - [ - -73.370342, - 45.507358 - ], - [ - -73.370185, - 45.507385 - ], - [ - -73.369937, - 45.507438 - ], - [ - -73.369662, - 45.507523 - ], - [ - -73.36959, - 45.50755 - ], - [ - -73.369495, - 45.507586 - ], - [ - -73.369303, - 45.507667 - ], - [ - -73.369155, - 45.507739 - ], - [ - -73.368983, - 45.507838 - ], - [ - -73.368564, - 45.508094 - ], - [ - -73.368491, - 45.508158 - ], - [ - -73.368457, - 45.508199 - ], - [ - -73.368436, - 45.508296 - ], - [ - -73.367563, - 45.50897 - ], - [ - -73.367227, - 45.50923 - ], - [ - -73.366888, - 45.509491 - ], - [ - -73.366791, - 45.509545 - ], - [ - -73.36663, - 45.50963 - ], - [ - -73.366517, - 45.509684 - ], - [ - -73.366437, - 45.509729 - ], - [ - -73.36634, - 45.509765 - ], - [ - -73.36618, - 45.509827 - ], - [ - -73.366055, - 45.509872 - ], - [ - -73.365885, - 45.509935 - ], - [ - -73.365717, - 45.509993 - ], - [ - -73.365568, - 45.510038 - ], - [ - -73.365287, - 45.510128 - ], - [ - -73.364989, - 45.510222 - ], - [ - -73.364884, - 45.510258 - ], - [ - -73.364801, - 45.510289 - ], - [ - -73.364428, - 45.510415 - ], - [ - -73.363963, - 45.510554 - ], - [ - -73.363807, - 45.510603 - ], - [ - -73.363516, - 45.510675 - ], - [ - -73.363312, - 45.510724 - ], - [ - -73.363113, - 45.510769 - ], - [ - -73.36283, - 45.510827 - ], - [ - -73.362522, - 45.510867 - ], - [ - -73.362033, - 45.510911 - ], - [ - -73.361571, - 45.510947 - ], - [ - -73.360273, - 45.511035 - ], - [ - -73.359861, - 45.511062 - ], - [ - -73.359475, - 45.511093 - ], - [ - -73.358969, - 45.511182 - ], - [ - -73.358767, - 45.511222 - ], - [ - -73.358494, - 45.51128 - ], - [ - -73.357994, - 45.511379 - ], - [ - -73.357808, - 45.511419 - ], - [ - -73.357645, - 45.51145 - ], - [ - -73.357426, - 45.511482 - ], - [ - -73.357172, - 45.511499 - ], - [ - -73.356802, - 45.511517 - ], - [ - -73.356486, - 45.511534 - ], - [ - -73.355612, - 45.511556 - ], - [ - -73.354918, - 45.511591 - ], - [ - -73.35442, - 45.511608 - ], - [ - -73.354203, - 45.511612 - ], - [ - -73.352796, - 45.511656 - ], - [ - -73.352264, - 45.511666 - ], - [ - -73.351714, - 45.511677 - ], - [ - -73.351072, - 45.511694 - ], - [ - -73.350726, - 45.511702 - ], - [ - -73.350143, - 45.511706 - ], - [ - -73.349976, - 45.511715 - ], - [ - -73.349812, - 45.511737 - ], - [ - -73.349497, - 45.511795 - ], - [ - -73.349271, - 45.511854 - ], - [ - -73.348974, - 45.511939 - ], - [ - -73.348633, - 45.512033 - ], - [ - -73.348555, - 45.512055 - ], - [ - -73.348326, - 45.512118 - ], - [ - -73.348194, - 45.512149 - ], - [ - -73.347903, - 45.512212 - ], - [ - -73.34773, - 45.512243 - ], - [ - -73.347409, - 45.512292 - ], - [ - -73.347134, - 45.512332 - ], - [ - -73.346933, - 45.512357 - ], - [ - -73.346916, - 45.512359 - ], - [ - -73.346783, - 45.512368 - ], - [ - -73.346634, - 45.512381 - ], - [ - -73.346539, - 45.51239 - ], - [ - -73.346481, - 45.51239 - ], - [ - -73.346316, - 45.512399 - ], - [ - -73.346083, - 45.512389 - ], - [ - -73.345813, - 45.51233 - ], - [ - -73.345317, - 45.512181 - ], - [ - -73.344794, - 45.512014 - ], - [ - -73.344569, - 45.511951 - ], - [ - -73.34433, - 45.511901 - ], - [ - -73.344167, - 45.511892 - ], - [ - -73.3439, - 45.511905 - ], - [ - -73.343684, - 45.511945 - ], - [ - -73.343469, - 45.512003 - ], - [ - -73.343452, - 45.512008 - ], - [ - -73.343354, - 45.512062 - ], - [ - -73.34325, - 45.512077 - ], - [ - -73.343097, - 45.5121 - ], - [ - -73.343396, - 45.51257 - ], - [ - -73.343437, - 45.512674 - ], - [ - -73.343463, - 45.512804 - ], - [ - -73.343492, - 45.513074 - ], - [ - -73.343522, - 45.513542 - ], - [ - -73.343521, - 45.513731 - ], - [ - -73.343597, - 45.514311 - ], - [ - -73.343604, - 45.514376 - ], - [ - -73.343662, - 45.514928 - ], - [ - -73.343818, - 45.516263 - ], - [ - -73.343839, - 45.51644 - ], - [ - -73.343865, - 45.516956 - ], - [ - -73.343868, - 45.517007 - ], - [ - -73.34388, - 45.517106 - ], - [ - -73.343907, - 45.517382 - ], - [ - -73.34397, - 45.51801 - ], - [ - -73.344008, - 45.518389 - ], - [ - -73.344019, - 45.518505 - ], - [ - -73.344103, - 45.519059 - ], - [ - -73.344134, - 45.519324 - ], - [ - -73.34415, - 45.519419 - ], - [ - -73.344153, - 45.519444 - ], - [ - -73.344217, - 45.520058 - ], - [ - -73.344223, - 45.520328 - ], - [ - -73.344186, - 45.520584 - ], - [ - -73.344126, - 45.520715 - ], - [ - -73.344046, - 45.520881 - ], - [ - -73.343898, - 45.52107 - ], - [ - -73.343794, - 45.521169 - ], - [ - -73.343671, - 45.521281 - ], - [ - -73.343545, - 45.521362 - ], - [ - -73.343232, - 45.521573 - ], - [ - -73.343229, - 45.521574 - ], - [ - -73.34316, - 45.521627 - ], - [ - -73.342373, - 45.522165 - ], - [ - -73.341589, - 45.522686 - ], - [ - -73.341528, - 45.522727 - ], - [ - -73.340616, - 45.52335 - ], - [ - -73.340352, - 45.52353 - ], - [ - -73.340272, - 45.523584 - ], - [ - -73.340102, - 45.523754 - ], - [ - -73.340043, - 45.523791 - ], - [ - -73.339575, - 45.524088 - ], - [ - -73.339569, - 45.524092 - ], - [ - -73.338727, - 45.524626 - ], - [ - -73.338513, - 45.524752 - ], - [ - -73.338368, - 45.524837 - ], - [ - -73.339197, - 45.525405 - ], - [ - -73.339713, - 45.525764 - ], - [ - -73.339841, - 45.525854 - ], - [ - -73.340005, - 45.525968 - ], - [ - -73.340568, - 45.526316 - ], - [ - -73.340738, - 45.526442 - ], - [ - -73.341034, - 45.526636 - ], - [ - -73.341462, - 45.526915 - ], - [ - -73.34183, - 45.527172 - ], - [ - -73.341951, - 45.527269 - ], - [ - -73.341994, - 45.527303 - ], - [ - -73.342074, - 45.527389 - ], - [ - -73.342252, - 45.527555 - ], - [ - -73.342521, - 45.52779 - ], - [ - -73.342827, - 45.528033 - ], - [ - -73.343198, - 45.528321 - ], - [ - -73.343543, - 45.528556 - ], - [ - -73.343655, - 45.528635 - ], - [ - -73.343849, - 45.528772 - ], - [ - -73.344605, - 45.529334 - ], - [ - -73.345188, - 45.529767 - ], - [ - -73.345287, - 45.529841 - ], - [ - -73.344864, - 45.530128 - ], - [ - -73.344314, - 45.530501 - ], - [ - -73.343891, - 45.530779 - ], - [ - -73.343591, - 45.530977 - ], - [ - -73.343262, - 45.531188 - ], - [ - -73.342747, - 45.531549 - ], - [ - -73.34266, - 45.53161 - ], - [ - -73.342233, - 45.531892 - ], - [ - -73.341898, - 45.532126 - ], - [ - -73.341801, - 45.532193 - ], - [ - -73.341416, - 45.532445 - ], - [ - -73.341272, - 45.532539 - ], - [ - -73.34089, - 45.532795 - ], - [ - -73.340638, - 45.532948 - ], - [ - -73.340479, - 45.533028 - ], - [ - -73.34032, - 45.533087 - ], - [ - -73.340076, - 45.533181 - ], - [ - -73.339825, - 45.533257 - ], - [ - -73.339193, - 45.533418 - ], - [ - -73.339192, - 45.533418 - ], - [ - -73.338814, - 45.533494 - ], - [ - -73.338467, - 45.533588 - ], - [ - -73.33816, - 45.533691 - ], - [ - -73.337948, - 45.533781 - ], - [ - -73.337761, - 45.533879 - ], - [ - -73.337703, - 45.533911 - ], - [ - -73.337604, - 45.533969 - ], - [ - -73.337508, - 45.534041 - ], - [ - -73.337409, - 45.534123 - ], - [ - -73.337302, - 45.534212 - ], - [ - -73.337182, - 45.534319 - ], - [ - -73.337023, - 45.534243 - ], - [ - -73.33688, - 45.534169 - ], - [ - -73.336831, - 45.534143 - ], - [ - -73.336511, - 45.533972 - ], - [ - -73.336192, - 45.533801 - ], - [ - -73.336025, - 45.533719 - ], - [ - -73.335981, - 45.533692 - ], - [ - -73.335923, - 45.533656 - ], - [ - -73.335872, - 45.533638 - ], - [ - -73.335591, - 45.533467 - ], - [ - -73.335323, - 45.533286 - ], - [ - -73.335054, - 45.533106 - ], - [ - -73.334658, - 45.532854 - ], - [ - -73.333712, - 45.532276 - ], - [ - -73.333393, - 45.53206 - ], - [ - -73.333185, - 45.531925 - ], - [ - -73.333073, - 45.531852 - ], - [ - -73.332779, - 45.531663 - ], - [ - -73.332473, - 45.531483 - ], - [ - -73.332192, - 45.531293 - ], - [ - -73.331788, - 45.531009 - ], - [ - -73.331323, - 45.530662 - ], - [ - -73.33092, - 45.530363 - ], - [ - -73.330825, - 45.530292 - ], - [ - -73.330761, - 45.530256 - ], - [ - -73.330009, - 45.529693 - ], - [ - -73.328691, - 45.528715 - ], - [ - -73.328257, - 45.528395 - ], - [ - -73.328159, - 45.528322 - ], - [ - -73.327746, - 45.528029 - ], - [ - -73.326635, - 45.527209 - ], - [ - -73.326478, - 45.527089 - ], - [ - -73.325817, - 45.526587 - ], - [ - -73.325411, - 45.526298 - ], - [ - -73.324566, - 45.525567 - ], - [ - -73.324515, - 45.525523 - ], - [ - -73.324477, - 45.525478 - ], - [ - -73.323443, - 45.524603 - ], - [ - -73.322906, - 45.524151 - ], - [ - -73.322064, - 45.52344 - ], - [ - -73.321325, - 45.522814 - ], - [ - -73.321069, - 45.522593 - ], - [ - -73.32099, - 45.522525 - ], - [ - -73.319781, - 45.521516 - ], - [ - -73.319113, - 45.520953 - ], - [ - -73.318732, - 45.520632 - ], - [ - -73.318552, - 45.520474 - ], - [ - -73.318461, - 45.520393 - ], - [ - -73.318456, - 45.520312 - ], - [ - -73.318426, - 45.520276 - ], - [ - -73.318299, - 45.520113 - ], - [ - -73.318178, - 45.51995 - ], - [ - -73.31814, - 45.519962 - ], - [ - -73.31809, - 45.519979 - ], - [ - -73.318032, - 45.519996 - ], - [ - -73.31758, - 45.520131 - ], - [ - -73.31192, - 45.521822 - ], - [ - -73.310425, - 45.522271 - ], - [ - -73.310013, - 45.522395 - ], - [ - -73.309677, - 45.522494 - ], - [ - -73.308208, - 45.522923 - ], - [ - -73.302545, - 45.52465 - ], - [ - -73.302393, - 45.524695 - ], - [ - -73.302496, - 45.52486 - ], - [ - -73.302629, - 45.525053 - ] - ] - }, - "id": 418, - "properties": { - "id": "73cc2bbf-9b62-478e-8f51-0a830aaf71ec", - "data": { - "gtfs": { - "shape_id": "894_2_R" - }, - "segments": [ - { - "distanceMeters": 1219, - "travelTimeSeconds": 191 - }, - { - "distanceMeters": 296, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 14, - "travelTimeSeconds": 3 - }, - { - "distanceMeters": 2574, - "travelTimeSeconds": 300 - }, - { - "distanceMeters": 283, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 288, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 160, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 16 - }, - { - "distanceMeters": 263, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 178, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 106, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 227, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 176, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 228, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 376, - "travelTimeSeconds": 54 - }, - { - "distanceMeters": 286, - "travelTimeSeconds": 35 - }, - { - "distanceMeters": 144, - "travelTimeSeconds": 18 - }, - { - "distanceMeters": 370, - "travelTimeSeconds": 46 - }, - { - "distanceMeters": 145, - "travelTimeSeconds": 19 - }, - { - "distanceMeters": 294, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 248, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 302, - "travelTimeSeconds": 38 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 25 - }, - { - "distanceMeters": 226, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 225, - "travelTimeSeconds": 28 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 186, - "travelTimeSeconds": 29 - }, - { - "distanceMeters": 1332, - "travelTimeSeconds": 211 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 11189, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 6721.6152304566685, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 7.46, - "travelTimeWithoutDwellTimesSeconds": 1500, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 6.66, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.46 - }, - "mode": "taxi", - "name": "St-Basile-le-Grand", - "color": "#A32638", - "nodes": [ - "f5878f34-f127-426a-b40a-4b944c9b826c", - "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "71e14567-ffe9-47f4-8913-115ccc452daf", - "784a98f8-f964-4b51-9a84-d7aa241d6aab", - "4d3db5af-874a-4a4c-8a87-68ecc590af13", - "f20c1a67-6c7e-41a3-a85d-9c7b49ac0386", - "652ad35d-f3c9-49c6-b2de-8d15cab5cafb", - "7ac3961a-0b0e-47c8-a264-69b6edbbd2b9", - "9f67f31c-9015-4b9c-b5eb-210a53be617b", - "60ea8a19-f195-4f9b-b60e-122a63bd86bd", - "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", - "2c952684-5d97-4238-ae18-51cba6c9775e", - "819e2afa-bfef-47b3-8a41-a55f4c2f9156", - "0dae6aad-c792-48fd-a50b-e498ec730741", - "16815d0a-9758-4c90-a572-66e1110e9895", - "6a18cdcb-7d78-46ad-a358-7895b3877421", - "b96762ce-57d1-4d28-bc37-afabeacae179", - "3860f604-02bd-44a8-9d62-54ba0366b85f", - "59449548-0d0c-41e2-b094-c40114d0f9ce", - "a6331a68-3ea7-48f7-8560-80cafa791eb3", - "93fcd4a5-ee80-4c79-b0bc-547231801133", - "6b369192-79e8-4382-aaa0-abddf0da08d7", - "02c05e36-6f59-42fd-b6c5-b158e3d119a0", - "4f0816d5-67e0-4d4d-9413-6e045052da5f", - "7464372f-e710-4dc5-a76c-a68144e67289", - "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", - "5f32a25e-7895-498c-b5cd-182adcfb40dd", - "a94f1c18-1655-455b-9813-9178e8c9257e", - "26fb8877-5e09-4777-bcb0-88e1fd0fc274" - ], - "stops": [], - "line_id": "382bf851-753e-48f5-92c4-59cf640aaa2f", - "segments": [ - 0, - 54, - 71, - 72, - 169, - 185, - 197, - 201, - 206, - 211, - 222, - 225, - 227, - 235, - 239, - 246, - 257, - 264, - 269, - 287, - 296, - 305, - 312, - 317, - 321, - 324, - 328, - 331, - 334, - 345 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 418, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.302243, - 45.524936 - ], - [ - -73.302496, - 45.52486 - ], - [ - -73.302649, - 45.524814 - ], - [ - -73.308582, - 45.523031 - ], - [ - -73.309273, - 45.522823 - ], - [ - -73.309764, - 45.522675 - ], - [ - -73.309784, - 45.522669 - ], - [ - -73.310111, - 45.522571 - ], - [ - -73.311844, - 45.52205 - ], - [ - -73.311869, - 45.522043 - ], - [ - -73.315561, - 45.520935 - ], - [ - -73.317262, - 45.520425 - ], - [ - -73.318073, - 45.520181 - ], - [ - -73.318144, - 45.52016 - ], - [ - -73.318342, - 45.520362 - ], - [ - -73.318461, - 45.520393 - ], - [ - -73.318552, - 45.520474 - ], - [ - -73.318655, - 45.520564 - ], - [ - -73.318732, - 45.520632 - ], - [ - -73.319781, - 45.521516 - ], - [ - -73.32099, - 45.522525 - ], - [ - -73.32127, - 45.522767 - ], - [ - -73.321325, - 45.522814 - ], - [ - -73.322064, - 45.52344 - ], - [ - -73.322939, - 45.524178 - ], - [ - -73.323443, - 45.524603 - ], - [ - -73.324444, - 45.52545 - ], - [ - -73.324477, - 45.525478 - ], - [ - -73.324515, - 45.525523 - ], - [ - -73.325411, - 45.526298 - ], - [ - -73.325817, - 45.526587 - ], - [ - -73.326469, - 45.527082 - ], - [ - -73.326635, - 45.527209 - ], - [ - -73.327746, - 45.528029 - ], - [ - -73.328079, - 45.528266 - ], - [ - -73.328159, - 45.528322 - ], - [ - -73.328691, - 45.528715 - ], - [ - -73.330009, - 45.529693 - ], - [ - -73.330658, - 45.530179 - ], - [ - -73.330761, - 45.530256 - ], - [ - -73.330825, - 45.530292 - ], - [ - -73.331323, - 45.530662 - ], - [ - -73.331788, - 45.531009 - ], - [ - -73.332192, - 45.531293 - ], - [ - -73.332473, - 45.531483 - ], - [ - -73.332779, - 45.531663 - ], - [ - -73.333073, - 45.531852 - ], - [ - -73.333393, - 45.53206 - ], - [ - -73.333712, - 45.532276 - ], - [ - -73.333782, - 45.532319 - ], - [ - -73.334658, - 45.532854 - ], - [ - -73.335054, - 45.533106 - ], - [ - -73.335323, - 45.533286 - ], - [ - -73.335591, - 45.533467 - ], - [ - -73.335872, - 45.533638 - ], - [ - -73.335879, - 45.533641 - ], - [ - -73.335923, - 45.533656 - ], - [ - -73.336025, - 45.533719 - ], - [ - -73.336192, - 45.533801 - ], - [ - -73.336511, - 45.533972 - ], - [ - -73.336741, - 45.534095 - ], - [ - -73.336831, - 45.534143 - ], - [ - -73.337023, - 45.534243 - ], - [ - -73.33711, - 45.534285 - ], - [ - -73.337182, - 45.534319 - ], - [ - -73.337307, - 45.534374 - ], - [ - -73.337482, - 45.534198 - ], - [ - -73.337689, - 45.534041 - ], - [ - -73.337808, - 45.533974 - ], - [ - -73.338017, - 45.533853 - ], - [ - -73.338221, - 45.533768 - ], - [ - -73.338526, - 45.533664 - ], - [ - -73.338863, - 45.533588 - ], - [ - -73.339226, - 45.533508 - ], - [ - -73.339876, - 45.533342 - ], - [ - -73.340135, - 45.533266 - ], - [ - -73.340552, - 45.533109 - ], - [ - -73.340722, - 45.53302 - ], - [ - -73.340981, - 45.532867 - ], - [ - -73.341366, - 45.532607 - ], - [ - -73.341738, - 45.532355 - ], - [ - -73.341884, - 45.532256 - ], - [ - -73.341987, - 45.532185 - ], - [ - -73.342318, - 45.531956 - ], - [ - -73.342676, - 45.531717 - ], - [ - -73.342742, - 45.531673 - ], - [ - -73.343353, - 45.531255 - ], - [ - -73.343689, - 45.531049 - ], - [ - -73.344396, - 45.530559 - ], - [ - -73.344985, - 45.530159 - ], - [ - -73.345369, - 45.529899 - ], - [ - -73.345287, - 45.529841 - ], - [ - -73.345011, - 45.529635 - ], - [ - -73.344605, - 45.529334 - ], - [ - -73.343849, - 45.528772 - ], - [ - -73.343655, - 45.528635 - ], - [ - -73.343543, - 45.528556 - ], - [ - -73.343198, - 45.528321 - ], - [ - -73.342827, - 45.528033 - ], - [ - -73.342521, - 45.52779 - ], - [ - -73.342252, - 45.527555 - ], - [ - -73.342163, - 45.527472 - ], - [ - -73.342074, - 45.527389 - ], - [ - -73.341994, - 45.527303 - ], - [ - -73.34183, - 45.527172 - ], - [ - -73.341462, - 45.526915 - ], - [ - -73.341034, - 45.526636 - ], - [ - -73.340738, - 45.526442 - ], - [ - -73.340568, - 45.526316 - ], - [ - -73.340361, - 45.526188 - ], - [ - -73.340005, - 45.525968 - ], - [ - -73.339713, - 45.525764 - ], - [ - -73.339197, - 45.525405 - ], - [ - -73.338518, - 45.524939 - ], - [ - -73.338368, - 45.524837 - ], - [ - -73.338727, - 45.524626 - ], - [ - -73.338873, - 45.524533 - ], - [ - -73.339575, - 45.524088 - ], - [ - -73.340043, - 45.523791 - ], - [ - -73.340102, - 45.523754 - ], - [ - -73.340274, - 45.523685 - ], - [ - -73.340357, - 45.523652 - ], - [ - -73.340425, - 45.523602 - ], - [ - -73.341516, - 45.522856 - ], - [ - -73.341612, - 45.52279 - ], - [ - -73.342452, - 45.522224 - ], - [ - -73.343136, - 45.521768 - ], - [ - -73.343254, - 45.52169 - ], - [ - -73.343631, - 45.521425 - ], - [ - -73.343894, - 45.521227 - ], - [ - -73.344046, - 45.521061 - ], - [ - -73.344147, - 45.520913 - ], - [ - -73.344274, - 45.520719 - ], - [ - -73.344347, - 45.520476 - ], - [ - -73.344358, - 45.520296 - ], - [ - -73.344344, - 45.52004 - ], - [ - -73.344311, - 45.519741 - ], - [ - -73.344273, - 45.519406 - ], - [ - -73.344239, - 45.519032 - ], - [ - -73.344184, - 45.518506 - ], - [ - -73.344137, - 45.518006 - ], - [ - -73.344045, - 45.516998 - ], - [ - -73.344002, - 45.516569 - ], - [ - -73.343805, - 45.514586 - ], - [ - -73.343763, - 45.514238 - ], - [ - -73.343701, - 45.513718 - ], - [ - -73.343703, - 45.513529 - ], - [ - -73.343678, - 45.513173 - ], - [ - -73.34367, - 45.513061 - ], - [ - -73.343642, - 45.512791 - ], - [ - -73.343612, - 45.512647 - ], - [ - -73.343567, - 45.512534 - ], - [ - -73.343389, - 45.512139 - ], - [ - -73.343354, - 45.512062 - ], - [ - -73.343452, - 45.512008 - ], - [ - -73.343684, - 45.511945 - ], - [ - -73.3439, - 45.511905 - ], - [ - -73.344167, - 45.511892 - ], - [ - -73.34433, - 45.511901 - ], - [ - -73.344569, - 45.511951 - ], - [ - -73.344794, - 45.512014 - ], - [ - -73.345317, - 45.512181 - ], - [ - -73.345813, - 45.51233 - ], - [ - -73.346083, - 45.512389 - ], - [ - -73.346316, - 45.512399 - ], - [ - -73.346481, - 45.51239 - ], - [ - -73.346539, - 45.51239 - ], - [ - -73.346624, - 45.512382 - ], - [ - -73.346634, - 45.512381 - ], - [ - -73.346783, - 45.512368 - ], - [ - -73.346916, - 45.512359 - ], - [ - -73.347134, - 45.512332 - ], - [ - -73.347409, - 45.512292 - ], - [ - -73.34773, - 45.512243 - ], - [ - -73.347903, - 45.512212 - ], - [ - -73.348194, - 45.512149 - ], - [ - -73.348326, - 45.512118 - ], - [ - -73.348555, - 45.512055 - ], - [ - -73.348633, - 45.512033 - ], - [ - -73.348974, - 45.511939 - ], - [ - -73.349271, - 45.511854 - ], - [ - -73.349497, - 45.511795 - ], - [ - -73.349812, - 45.511737 - ], - [ - -73.349976, - 45.511715 - ], - [ - -73.350143, - 45.511706 - ], - [ - -73.350726, - 45.511702 - ], - [ - -73.351072, - 45.511694 - ], - [ - -73.351714, - 45.511677 - ], - [ - -73.352264, - 45.511666 - ], - [ - -73.352796, - 45.511656 - ], - [ - -73.354203, - 45.511612 - ], - [ - -73.35442, - 45.511608 - ], - [ - -73.354918, - 45.511591 - ], - [ - -73.355612, - 45.511556 - ], - [ - -73.356486, - 45.511534 - ], - [ - -73.356802, - 45.511517 - ], - [ - -73.357172, - 45.511499 - ], - [ - -73.357426, - 45.511482 - ], - [ - -73.357645, - 45.51145 - ], - [ - -73.357808, - 45.511419 - ], - [ - -73.357994, - 45.511379 - ], - [ - -73.358494, - 45.51128 - ], - [ - -73.358767, - 45.511222 - ], - [ - -73.358969, - 45.511182 - ], - [ - -73.359475, - 45.511093 - ], - [ - -73.359861, - 45.511062 - ], - [ - -73.360273, - 45.511035 - ], - [ - -73.361571, - 45.510947 - ], - [ - -73.362033, - 45.510911 - ], - [ - -73.362522, - 45.510867 - ], - [ - -73.36283, - 45.510827 - ], - [ - -73.363113, - 45.510769 - ], - [ - -73.363312, - 45.510724 - ], - [ - -73.363516, - 45.510675 - ], - [ - -73.363807, - 45.510603 - ], - [ - -73.363963, - 45.510554 - ], - [ - -73.364428, - 45.510415 - ], - [ - -73.364801, - 45.510289 - ], - [ - -73.364884, - 45.510258 - ], - [ - -73.364989, - 45.510222 - ], - [ - -73.365287, - 45.510128 - ], - [ - -73.365568, - 45.510038 - ], - [ - -73.365717, - 45.509993 - ], - [ - -73.365885, - 45.509935 - ], - [ - -73.366055, - 45.509872 - ], - [ - -73.36618, - 45.509827 - ], - [ - -73.36634, - 45.509765 - ], - [ - -73.366437, - 45.509729 - ], - [ - -73.366517, - 45.509684 - ], - [ - -73.36663, - 45.50963 - ], - [ - -73.366791, - 45.509545 - ], - [ - -73.366888, - 45.509491 - ], - [ - -73.367227, - 45.50923 - ], - [ - -73.367563, - 45.50897 - ], - [ - -73.368436, - 45.508296 - ], - [ - -73.368564, - 45.50826 - ], - [ - -73.368902, - 45.508008 - ], - [ - -73.36905, - 45.507914 - ], - [ - -73.369192, - 45.507833 - ], - [ - -73.369331, - 45.507761 - ], - [ - -73.369516, - 45.507658 - ], - [ - -73.369592, - 45.507631 - ], - [ - -73.369851, - 45.507564 - ], - [ - -73.370159, - 45.507483 - ], - [ - -73.370328, - 45.507457 - ], - [ - -73.370621, - 45.507421 - ], - [ - -73.370934, - 45.507408 - ], - [ - -73.371028, - 45.507408 - ], - [ - -73.372799, - 45.507392 - ], - [ - -73.374635, - 45.507344 - ], - [ - -73.374761, - 45.50734 - ], - [ - -73.37473, - 45.507255 - ], - [ - -73.374527, - 45.506687 - ], - [ - -73.374283, - 45.505985 - ], - [ - -73.373958, - 45.505013 - ], - [ - -73.37387, - 45.504482 - ], - [ - -73.373875, - 45.504217 - ], - [ - -73.373889, - 45.504095 - ], - [ - -73.373933, - 45.503704 - ], - [ - -73.374052, - 45.503331 - ], - [ - -73.374244, - 45.502903 - ], - [ - -73.374385, - 45.502755 - ], - [ - -73.374501, - 45.502652 - ], - [ - -73.374608, - 45.502607 - ], - [ - -73.37476, - 45.502575 - ], - [ - -73.375092, - 45.502612 - ], - [ - -73.375264, - 45.502648 - ], - [ - -73.375427, - 45.502684 - ], - [ - -73.375574, - 45.502747 - ], - [ - -73.376319, - 45.503059 - ], - [ - -73.376016, - 45.503247 - ], - [ - -73.375972, - 45.503274 - ], - [ - -73.375728, - 45.503463 - ], - [ - -73.375709, - 45.503477 - ], - [ - -73.375698, - 45.503485 - ], - [ - -73.375447, - 45.503715 - ], - [ - -73.375293, - 45.503854 - ], - [ - -73.37517, - 45.50398 - ], - [ - -73.374998, - 45.504213 - ], - [ - -73.374854, - 45.504429 - ], - [ - -73.374722, - 45.5046 - ], - [ - -73.374697, - 45.504635 - ], - [ - -73.374625, - 45.504735 - ], - [ - -73.374598, - 45.504793 - ], - [ - -73.374583, - 45.504843 - ], - [ - -73.374565, - 45.504919 - ], - [ - -73.374581, - 45.50514 - ], - [ - -73.37462, - 45.505338 - ], - [ - -73.374746, - 45.505563 - ], - [ - -73.374844, - 45.505788 - ], - [ - -73.374845, - 45.50579 - ], - [ - -73.37489, - 45.505867 - ], - [ - -73.374951, - 45.505973 - ], - [ - -73.374962, - 45.505982 - ], - [ - -73.375061, - 45.506067 - ], - [ - -73.375295, - 45.506238 - ], - [ - -73.375424, - 45.506333 - ], - [ - -73.375748, - 45.506597 - ], - [ - -73.375784, - 45.506626 - ], - [ - -73.375859, - 45.506698 - ], - [ - -73.375911, - 45.506761 - ], - [ - -73.375985, - 45.506896 - ], - [ - -73.376046, - 45.507022 - ], - [ - -73.376084, - 45.507108 - ], - [ - -73.376268, - 45.507459 - ], - [ - -73.376298, - 45.507513 - ], - [ - -73.376345, - 45.507576 - ], - [ - -73.3764, - 45.507639 - ], - [ - -73.376512, - 45.507729 - ], - [ - -73.376632, - 45.507801 - ], - [ - -73.376837, - 45.507891 - ], - [ - -73.376868, - 45.507902 - ], - [ - -73.376914, - 45.507917 - ], - [ - -73.377114, - 45.507982 - ], - [ - -73.377442, - 45.508081 - ], - [ - -73.377571, - 45.508108 - ], - [ - -73.377699, - 45.508135 - ], - [ - -73.377779, - 45.508144 - ], - [ - -73.377878, - 45.50815 - ], - [ - -73.377933, - 45.508153 - ], - [ - -73.378119, - 45.508163 - ], - [ - -73.378452, - 45.508145 - ], - [ - -73.378562, - 45.50814 - ], - [ - -73.379021, - 45.50812 - ], - [ - -73.379147, - 45.508114 - ], - [ - -73.3793, - 45.508105 - ], - [ - -73.379404, - 45.508091 - ], - [ - -73.379526, - 45.508074 - ], - [ - -73.379622, - 45.508047 - ], - [ - -73.379724, - 45.508025 - ], - [ - -73.379863, - 45.507975 - ], - [ - -73.379957, - 45.507934 - ], - [ - -73.380059, - 45.50789 - ], - [ - -73.380179, - 45.507823 - ], - [ - -73.380268, - 45.507759 - ], - [ - -73.380399, - 45.507666 - ], - [ - -73.380494, - 45.507592 - ], - [ - -73.380503, - 45.507585 - ], - [ - -73.380626, - 45.507481 - ], - [ - -73.38128, - 45.507806 - ], - [ - -73.381389, - 45.507851 - ], - [ - -73.381468, - 45.507752 - ], - [ - -73.381562, - 45.507572 - ], - [ - -73.381667, - 45.507356 - ], - [ - -73.381733, - 45.507226 - ], - [ - -73.381816, - 45.507051 - ], - [ - -73.381935, - 45.506785 - ], - [ - -73.382054, - 45.506552 - ], - [ - -73.382181, - 45.506291 - ], - [ - -73.382211, - 45.506232 - ], - [ - -73.382294, - 45.50607 - ], - [ - -73.382297, - 45.506061 - ], - [ - -73.382363, - 45.505931 - ], - [ - -73.382444, - 45.505769 - ], - [ - -73.382566, - 45.505517 - ], - [ - -73.382593, - 45.505454 - ], - [ - -73.382731, - 45.505162 - ], - [ - -73.382892, - 45.504865 - ], - [ - -73.382933, - 45.504757 - ], - [ - -73.382959, - 45.504685 - ], - [ - -73.383219, - 45.504148 - ] - ] - }, - "id": 419, - "properties": { - "id": "3b1648da-c300-4023-8f13-8994f42529d8", - "data": { - "gtfs": { - "shape_id": "894_1_A" - }, - "segments": [ - { - "distanceMeters": 538, - "travelTimeSeconds": 91 - }, - { - "distanceMeters": 872, - "travelTimeSeconds": 149 - }, - { - "distanceMeters": 319, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 204, - "travelTimeSeconds": 26 - }, - { - "distanceMeters": 184, - "travelTimeSeconds": 22 - }, - { - "distanceMeters": 241, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 182, - "travelTimeSeconds": 23 - }, - { - "distanceMeters": 293, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 341, - "travelTimeSeconds": 43 - }, - { - "distanceMeters": 220, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 120, - "travelTimeSeconds": 15 - }, - { - "distanceMeters": 439, - "travelTimeSeconds": 55 - }, - { - "distanceMeters": 102, - "travelTimeSeconds": 12 - }, - { - "distanceMeters": 250, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 410, - "travelTimeSeconds": 61 - }, - { - "distanceMeters": 201, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 200, - "travelTimeSeconds": 30 - }, - { - "distanceMeters": 213, - "travelTimeSeconds": 32 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 20 - }, - { - "distanceMeters": 175, - "travelTimeSeconds": 27 - }, - { - "distanceMeters": 258, - "travelTimeSeconds": 39 - }, - { - "distanceMeters": 354, - "travelTimeSeconds": 42 - }, - { - "distanceMeters": 379, - "travelTimeSeconds": 45 - }, - { - "distanceMeters": 118, - "travelTimeSeconds": 14 - }, - { - "distanceMeters": 279, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 3098, - "travelTimeSeconds": 370 - }, - { - "distanceMeters": 297, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 14, - "travelTimeSeconds": 3 - }, - { - "distanceMeters": 440, - "travelTimeSeconds": 119 - }, - { - "distanceMeters": 134, - "travelTimeSeconds": 36 - }, - { - "distanceMeters": 280, - "travelTimeSeconds": 75 - }, - { - "distanceMeters": 245, - "travelTimeSeconds": 67 - } - ], - "from_gtfs": true, - "nodeTypes": [], - "variables": { - "d_p": null, - "n_q_p": 0, - "n_s_p": 0, - "d_l_avg": null, - "d_l_max": null, - "d_l_med": null, - "d_l_min": null - }, - "waypoints": [], - "routingMode": "driving", - "routingEngine": "engine", - "waypointTypes": [], - "dwellTimeSeconds": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1.2, - "defaultDeceleration": 1.2, - "returnBackGeography": null, - "totalDistanceMeters": 11525, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 0, - "defaultRunningSpeedKmH": 50, - "defaultDwellTimeSeconds": 15, - "birdDistanceBetweenTerminals": 6721.6152304566685, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 6.86, - "travelTimeWithoutDwellTimesSeconds": 1680, - "operatingTimeWithLayoverTimeSeconds": 1860, - "totalTravelTimeWithReturnBackSeconds": null, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1680, - "operatingSpeedWithLayoverMetersPerSecond": 6.2, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.86 - }, - "mode": "taxi", - "name": "boul. St-Bruno", - "color": "#A32638", - "nodes": [ - "26fb8877-5e09-4777-bcb0-88e1fd0fc274", - "c3cf866f-d115-4fc2-9f1e-f70f34283f5f", - "5f32a25e-7895-498c-b5cd-182adcfb40dd", - "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", - "0893f164-19ee-46d7-888c-b2f0ceb4c706", - "4f0816d5-67e0-4d4d-9413-6e045052da5f", - "e3c142cf-278c-41ec-b9f5-dff43803109b", - "6b369192-79e8-4382-aaa0-abddf0da08d7", - "93fcd4a5-ee80-4c79-b0bc-547231801133", - "a6331a68-3ea7-48f7-8560-80cafa791eb3", - "59449548-0d0c-41e2-b094-c40114d0f9ce", - "3860f604-02bd-44a8-9d62-54ba0366b85f", - "b96762ce-57d1-4d28-bc37-afabeacae179", - "6a18cdcb-7d78-46ad-a358-7895b3877421", - "16815d0a-9758-4c90-a572-66e1110e9895", - "0dae6aad-c792-48fd-a50b-e498ec730741", - "4451201f-23d0-4b66-a2ac-a72029810b3b", - "2c952684-5d97-4238-ae18-51cba6c9775e", - "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", - "60ea8a19-f195-4f9b-b60e-122a63bd86bd", - "9f67f31c-9015-4b9c-b5eb-210a53be617b", - "106469e3-38d2-4015-b627-c243c3d7f8cd", - "0910a11d-1b83-4a5b-9c01-30b9a6d926ef", - "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d", - "784a98f8-f964-4b51-9a84-d7aa241d6aab", - "71e14567-ffe9-47f4-8913-115ccc452daf", - "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", - "01e0bcb2-ac63-4c88-b110-c273905a1d5c", - "c4c03f6a-b2dc-4fb8-87cd-df1a4417beae", - "f5878f34-f127-426a-b40a-4b944c9b826c" - ], - "stops": [], - "line_id": "382bf851-753e-48f5-92c4-59cf640aaa2f", - "segments": [ - 0, - 3, - 17, - 21, - 24, - 26, - 31, - 34, - 38, - 49, - 55, - 63, - 80, - 84, - 89, - 101, - 109, - 113, - 120, - 123, - 126, - 136, - 142, - 147, - 152, - 167, - 272, - 291, - 293, - 323, - 336, - 349 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-20T16:19:33.676269+00:00", - "integer_id": 419, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.501812, - 45.523633 - ], - [ - -73.500061, - 45.524846 - ], - [ - -73.504673, - 45.52101 - ], - [ - -73.506868, - 45.522376 - ], - [ - -73.502585, - 45.525591 - ], - [ - -73.500061, - 45.524846 - ] - ] - }, - "id": 420, - "properties": { - "id": "627d617d-6b7a-44a5-8d77-61753f20b0a4", - "data": { - "segments": [ - { - "distanceMeters": 192, - "travelTimeSeconds": 34 - }, - { - "distanceMeters": 558, - "travelTimeSeconds": 57 - }, - { - "distanceMeters": 229, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 490, - "travelTimeSeconds": 53 - }, - { - "distanceMeters": 214, - "travelTimeSeconds": 35 - } - ], - "from_gtfs": false, - "nodeTypes": [ - "manual", - "manual", - "manual", - "manual", - "manual", - "manual" - ], - "variables": { - "d_p": 1683, - "T_o_p": 420, - "n_q_p": 6, - "n_s_p": 6, - "d_l_avg": 337, - "d_l_max": 558, - "d_l_med": 229, - "d_l_min": 192 - }, - "waypoints": [ - [], - [], - [], - [], - [], - [] - ], - "routingMode": "rail", - "routingEngine": "manual", - "routingFailed": false, - "waypointTypes": [ - [], - [], - [], - [], - [], - [] - ], - "dwellTimeSeconds": [ - 0, - 30, - 30, - 30, - 30, - 30 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 250, - "defaultAcceleration": 0.7, - "defaultDeceleration": 0.7, - "returnBackGeography": null, - "totalDistanceMeters": 1683, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 150, - "defaultRunningSpeedKmH": 90, - "defaultDwellTimeSeconds": 30, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 4.01, - "travelTimeWithoutDwellTimesSeconds": 120, - "operatingTimeWithLayoverTimeSeconds": 600, - "totalTravelTimeWithReturnBackSeconds": 600, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 420, - "operatingSpeedWithLayoverMetersPerSecond": 2.81, - "directRouteBetweenTerminalsDistanceMeters": 192, - "averageSpeedWithoutDwellTimesMetersPerSecond": 14.03, - "directRouteBetweenTerminalsTravelTimeSeconds": 8 - }, - "mode": "rail", - "name": null, - "color": "#7cc2ff", - "nodes": [ - "0e5d2dfa-ebda-4bee-8d5e-46436cbea299", - "d41672d0-e186-418e-b20f-1d82b60c3365", - "c72f260f-0d66-46a0-aa47-d7bdf5b8c3c5", - "c64e94bb-98df-4524-930a-135a6f4b4bff", - "3166d228-f358-4741-9950-420cebd0aa4c", - "d41672d0-e186-418e-b20f-1d82b60c3365" - ], - "stops": [], - "line_id": "5908da12-15da-4997-b245-9ffec4a2fc0c", - "segments": [ - 0, - 1, - 2, - 3, - 4 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-24T18:12:55.253763+00:00", - "integer_id": 420, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.50194, - 45.523443 - ], - [ - -73.50133, - 45.523242 - ], - [ - -73.50062, - 45.523008 - ], - [ - -73.500708, - 45.522863 - ], - [ - -73.497284, - 45.521694 - ], - [ - -73.497276, - 45.521657 - ], - [ - -73.497203, - 45.521307 - ], - [ - -73.497117, - 45.520892 - ], - [ - -73.497423, - 45.520994 - ], - [ - -73.498031, - 45.521197 - ], - [ - -73.49828, - 45.52128 - ], - [ - -73.500256, - 45.521939 - ], - [ - -73.500549, - 45.521509 - ], - [ - -73.501004, - 45.52084 - ], - [ - -73.501434, - 45.520208 - ], - [ - -73.504546, - 45.521205 - ], - [ - -73.504759, - 45.521273 - ], - [ - -73.504331, - 45.521924 - ], - [ - -73.504778, - 45.52207 - ], - [ - -73.504334, - 45.522732 - ], - [ - -73.504015, - 45.52321 - ], - [ - -73.503676, - 45.523095 - ], - [ - -73.502184, - 45.522591 - ], - [ - -73.501625, - 45.522402 - ], - [ - -73.501184, - 45.522253 - ], - [ - -73.501099, - 45.522224 - ], - [ - -73.500708, - 45.522863 - ], - [ - -73.50062, - 45.523008 - ], - [ - -73.50133, - 45.523242 - ], - [ - -73.50194, - 45.523443 - ] - ] - }, - "id": 421, - "properties": { - "id": "7ae26289-ffdc-4f9e-add0-9e9e89336eb4", - "data": { - "segments": [ - { - "distanceMeters": 433, - "travelTimeSeconds": 69 - }, - { - "distanceMeters": 838, - "travelTimeSeconds": 122 - }, - { - "distanceMeters": 738, - "travelTimeSeconds": 123 - } - ], - "from_gtfs": false, - "nodeTypes": [ - "engine", - "engine", - "engine", - "engine" - ], - "variables": { - "d_p": 2009, - "T_o_p": 420, - "n_q_p": 4, - "n_s_p": 4, - "d_l_avg": 670, - "d_l_max": 838, - "d_l_med": 738, - "d_l_min": 433 - }, - "waypoints": [ - [], - [], - [], - [] - ], - "routingMode": "bus_urban", - "routingEngine": "engine", - "routingFailed": false, - "waypointTypes": [ - [], - [], - [], - [] - ], - "dwellTimeSeconds": [ - 0, - 20, - 20, - 20 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 2009, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 60, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 4.78, - "travelTimeWithoutDwellTimesSeconds": 300, - "operatingTimeWithLayoverTimeSeconds": 600, - "totalTravelTimeWithReturnBackSeconds": 600, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 420, - "operatingSpeedWithLayoverMetersPerSecond": 3.35, - "directRouteBetweenTerminalsDistanceMeters": 0, - "averageSpeedWithoutDwellTimesMetersPerSecond": 6.7, - "directRouteBetweenTerminalsTravelTimeSeconds": 0 - }, - "mode": "bus", - "name": null, - "color": "#fff600", - "nodes": [ - "0e5d2dfa-ebda-4bee-8d5e-46436cbea299", - "6c8872a8-685f-49ed-9246-92743dd113de", - "c72f260f-0d66-46a0-aa47-d7bdf5b8c3c5", - "0e5d2dfa-ebda-4bee-8d5e-46436cbea299" - ], - "stops": [], - "line_id": "f501d9ed-93db-4503-83dd-cf1890221267", - "segments": [ - 0, - 5, - 15 - ], - "direction": "loop", - "is_frozen": false, - "created_at": "2023-01-25T18:36:02.83819+00:00", - "integer_id": 421, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.508365, - 45.521033 - ], - [ - -73.508376, - 45.521052 - ], - [ - -73.50882, - 45.521847 - ], - [ - -73.508911, - 45.52201 - ], - [ - -73.509196, - 45.52252 - ], - [ - -73.509298, - 45.522709 - ], - [ - -73.509687, - 45.52343 - ], - [ - -73.509754, - 45.523555 - ], - [ - -73.509977, - 45.524041 - ], - [ - -73.51018, - 45.524458 - ], - [ - -73.510426, - 45.525377 - ], - [ - -73.510431, - 45.525413 - ], - [ - -73.510485, - 45.52576 - ], - [ - -73.510566, - 45.526288 - ], - [ - -73.51057, - 45.527241 - ], - [ - -73.510561, - 45.527302 - ], - [ - -73.510537, - 45.52747 - ], - [ - -73.510563, - 45.527791 - ], - [ - -73.510547, - 45.527893 - ], - [ - -73.510474, - 45.528039 - ], - [ - -73.510441, - 45.5281 - ], - [ - -73.510401, - 45.528159 - ], - [ - -73.51047, - 45.528232 - ], - [ - -73.510527, - 45.528147 - ], - [ - -73.510568, - 45.528082 - ], - [ - -73.510675, - 45.527879 - ], - [ - -73.510698, - 45.527819 - ], - [ - -73.510721, - 45.527758 - ], - [ - -73.510836, - 45.527394 - ], - [ - -73.510855, - 45.527335 - ], - [ - -73.510915, - 45.526403 - ], - [ - -73.510801, - 45.525535 - ], - [ - -73.510795, - 45.525489 - ], - [ - -73.510551, - 45.524579 - ], - [ - -73.511523, - 45.524887 - ], - [ - -73.511946, - 45.524236 - ], - [ - -73.512455, - 45.523454 - ], - [ - -73.51306, - 45.523637 - ], - [ - -73.513348, - 45.523723 - ], - [ - -73.513525, - 45.523724 - ], - [ - -73.513512, - 45.522963 - ], - [ - -73.513511, - 45.522924 - ], - [ - -73.513514, - 45.522659 - ], - [ - -73.513513, - 45.522529 - ], - [ - -73.513495, - 45.521155 - ], - [ - -73.513358, - 45.521154 - ], - [ - -73.513322, - 45.521154 - ], - [ - -73.513357, - 45.522351 - ], - [ - -73.51336, - 45.522467 - ], - [ - -73.513348, - 45.523723 - ], - [ - -73.513359, - 45.524687 - ], - [ - -73.513374, - 45.525191 - ], - [ - -73.513339, - 45.525305 - ], - [ - -73.513273, - 45.525347 - ], - [ - -73.513244, - 45.525365 - ], - [ - -73.513123, - 45.52537 - ], - [ - -73.512909, - 45.525325 - ], - [ - -73.511523, - 45.524887 - ], - [ - -73.510551, - 45.524579 - ], - [ - -73.510375, - 45.524523 - ], - [ - -73.510275, - 45.524491 - ], - [ - -73.51018, - 45.524458 - ], - [ - -73.510426, - 45.525377 - ], - [ - -73.510431, - 45.525413 - ], - [ - -73.510485, - 45.52576 - ], - [ - -73.510566, - 45.526288 - ], - [ - -73.510584, - 45.526294 - ], - [ - -73.510651, - 45.526316 - ], - [ - -73.510752, - 45.52635 - ], - [ - -73.510915, - 45.526403 - ], - [ - -73.510801, - 45.525535 - ], - [ - -73.510795, - 45.525489 - ], - [ - -73.510551, - 45.524579 - ], - [ - -73.510375, - 45.524523 - ], - [ - -73.510275, - 45.524491 - ], - [ - -73.51018, - 45.524458 - ], - [ - -73.509653, - 45.524285 - ], - [ - -73.50872, - 45.523979 - ], - [ - -73.508141, - 45.523971 - ], - [ - -73.507828, - 45.524421 - ], - [ - -73.507784, - 45.524484 - ], - [ - -73.504015, - 45.52321 - ], - [ - -73.503676, - 45.523095 - ], - [ - -73.502184, - 45.522591 - ], - [ - -73.501625, - 45.522402 - ], - [ - -73.501184, - 45.522253 - ], - [ - -73.501099, - 45.522224 - ], - [ - -73.500708, - 45.522863 - ], - [ - -73.50062, - 45.523008 - ], - [ - -73.500367, - 45.52342 - ], - [ - -73.500255, - 45.523604 - ], - [ - -73.500561, - 45.523716 - ], - [ - -73.500601, - 45.523754 - ], - [ - -73.500601, - 45.523821 - ], - [ - -73.500517, - 45.523949 - ], - [ - -73.500403, - 45.524121 - ], - [ - -73.500072, - 45.524631 - ], - [ - -73.500017, - 45.524714 - ], - [ - -73.499916, - 45.524664 - ], - [ - -73.499678, - 45.524544 - ], - [ - -73.496869, - 45.523566 - ], - [ - -73.49677, - 45.523532 - ], - [ - -73.496796, - 45.523506 - ], - [ - -73.496826, - 45.523476 - ], - [ - -73.497258, - 45.523041 - ], - [ - -73.497389, - 45.522847 - ], - [ - -73.497432, - 45.522704 - ], - [ - -73.49744, - 45.522428 - ], - [ - -73.497284, - 45.521694 - ], - [ - -73.497203, - 45.521307 - ], - [ - -73.497117, - 45.520892 - ], - [ - -73.497423, - 45.520994 - ], - [ - -73.498031, - 45.521197 - ], - [ - -73.49828, - 45.52128 - ], - [ - -73.500256, - 45.521939 - ], - [ - -73.500549, - 45.521509 - ], - [ - -73.501004, - 45.52084 - ], - [ - -73.501434, - 45.520208 - ], - [ - -73.501844, - 45.519605 - ], - [ - -73.502258, - 45.518996 - ], - [ - -73.505549, - 45.520069 - ], - [ - -73.508192, - 45.520901 - ], - [ - -73.508254, - 45.52092 - ], - [ - -73.508312, - 45.520939 - ], - [ - -73.508365, - 45.521033 - ], - [ - -73.508376, - 45.521052 - ], - [ - -73.50882, - 45.521847 - ], - [ - -73.507888, - 45.521547 - ], - [ - -73.507494, - 45.52215 - ], - [ - -73.50706, - 45.522813 - ], - [ - -73.504778, - 45.52207 - ], - [ - -73.504334, - 45.522732 - ], - [ - -73.504015, - 45.52321 - ], - [ - -73.503676, - 45.523095 - ], - [ - -73.502184, - 45.522591 - ], - [ - -73.501625, - 45.522402 - ], - [ - -73.501184, - 45.522253 - ], - [ - -73.501099, - 45.522224 - ], - [ - -73.500708, - 45.522863 - ], - [ - -73.50062, - 45.523008 - ], - [ - -73.500367, - 45.52342 - ], - [ - -73.500255, - 45.523604 - ], - [ - -73.500561, - 45.523716 - ], - [ - -73.500601, - 45.523754 - ], - [ - -73.500601, - 45.523821 - ], - [ - -73.500517, - 45.523949 - ], - [ - -73.500403, - 45.524121 - ], - [ - -73.500072, - 45.524631 - ], - [ - -73.500017, - 45.524714 - ], - [ - -73.499971, - 45.524784 - ], - [ - -73.499953, - 45.524811 - ], - [ - -73.499971, - 45.524784 - ], - [ - -73.500017, - 45.524714 - ], - [ - -73.500072, - 45.524631 - ], - [ - -73.500403, - 45.524121 - ], - [ - -73.500517, - 45.523949 - ], - [ - -73.500601, - 45.523821 - ], - [ - -73.500601, - 45.523754 - ], - [ - -73.500561, - 45.523716 - ], - [ - -73.500255, - 45.523604 - ], - [ - -73.500367, - 45.52342 - ], - [ - -73.50062, - 45.523008 - ], - [ - -73.500708, - 45.522863 - ], - [ - -73.501099, - 45.522224 - ], - [ - -73.501184, - 45.522253 - ], - [ - -73.501625, - 45.522402 - ], - [ - -73.502184, - 45.522591 - ], - [ - -73.503676, - 45.523095 - ], - [ - -73.504015, - 45.52321 - ], - [ - -73.507784, - 45.524484 - ], - [ - -73.507828, - 45.524421 - ], - [ - -73.508141, - 45.523971 - ], - [ - -73.50872, - 45.523979 - ], - [ - -73.509653, - 45.524285 - ], - [ - -73.51018, - 45.524458 - ], - [ - -73.510275, - 45.524491 - ], - [ - -73.510375, - 45.524523 - ], - [ - -73.510551, - 45.524579 - ], - [ - -73.510123, - 45.523669 - ], - [ - -73.510067, - 45.523566 - ], - [ - -73.509497, - 45.522526 - ], - [ - -73.509183, - 45.52195 - ], - [ - -73.50871, - 45.521082 - ], - [ - -73.508694, - 45.521054 - ], - [ - -73.508664, - 45.520999 - ], - [ - -73.508641, - 45.520956 - ] - ] - }, - "id": 422, - "properties": { - "id": "28f0c72b-b31a-450f-affb-ee32b550429a", - "data": { - "segments": [ - { - "distanceMeters": 833, - "travelTimeSeconds": 105 - }, - { - "distanceMeters": 1058, - "travelTimeSeconds": 161 - }, - { - "distanceMeters": 943, - "travelTimeSeconds": 141 - }, - { - "distanceMeters": 493, - "travelTimeSeconds": 83 - }, - { - "distanceMeters": 904, - "travelTimeSeconds": 130 - }, - { - "distanceMeters": 290, - "travelTimeSeconds": 52 - }, - { - "distanceMeters": 1472, - "travelTimeSeconds": 197 - }, - { - "distanceMeters": 1250, - "travelTimeSeconds": 186 - }, - { - "distanceMeters": 915, - "travelTimeSeconds": 127 - }, - { - "distanceMeters": 689, - "travelTimeSeconds": 113 - } - ], - "from_gtfs": false, - "nodeTypes": [ - "engine", - "engine", - "engine", - "engine", - "engine", - "engine", - "engine", - "engine", - "engine", - "engine", - "engine" - ], - "variables": { - "d_p": 8847, - "T_o_p": 1500, - "n_q_p": 11, - "n_s_p": 11, - "d_l_avg": 885, - "d_l_max": 1472, - "d_l_med": 910, - "d_l_min": 290 - }, - "waypoints": [ - [], - [], - [], - [], - [], - [], - [], - [], - [], - [], - [] - ], - "routingMode": "bus_urban", - "routingEngine": "engine", - "routingFailed": false, - "waypointTypes": [ - [], - [], - [], - [], - [], - [], - [], - [], - [], - [], - [] - ], - "dwellTimeSeconds": [ - 0, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "totalDistanceMeters": 8847, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 200, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 5.9, - "travelTimeWithoutDwellTimesSeconds": 1260, - "operatingTimeWithLayoverTimeSeconds": 1680, - "totalTravelTimeWithReturnBackSeconds": 1680, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 1500, - "operatingSpeedWithLayoverMetersPerSecond": 5.27, - "directRouteBetweenTerminalsDistanceMeters": 0, - "averageSpeedWithoutDwellTimesMetersPerSecond": 7.02, - "directRouteBetweenTerminalsTravelTimeSeconds": 0 - }, - "mode": "bus", - "name": null, - "color": "#fff600", - "nodes": [ - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "0abd44bc-ce59-4161-a0a7-b31176db0e89", - "9db6aff2-2175-49e9-984e-3eb4c8dd470c", - "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", - "1da8599d-038c-4242-b6d8-ab011dd7f5a1", - "d41672d0-e186-418e-b20f-1d82b60c3365", - "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "d41672d0-e186-418e-b20f-1d82b60c3365", - "1da8599d-038c-4242-b6d8-ab011dd7f5a1", - "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4" - ], - "stops": [], - "line_id": "f501d9ed-93db-4503-83dd-cf1890221267", - "segments": [ - 0, - 22, - 45, - 66, - 79, - 97, - 102, - 124, - 150, - 170 - ], - "direction": "inbound", - "is_frozen": false, - "created_at": "2023-01-25T18:36:22.639705+00:00", - "integer_id": 422, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.497734, - 45.517625 - ], - [ - -73.502224, - 45.518985 - ], - [ - -73.499242, - 45.519439 - ], - [ - -73.497116, - 45.519558 - ], - [ - -73.497734, - 45.517625 - ] - ] - }, - "id": 423, - "properties": { - "id": "b01f2354-b76c-411a-8ef6-1852afe88bb2", - "data": { - "segments": [ - { - "distanceMeters": 382, - "travelTimeSeconds": 47 - }, - { - "distanceMeters": 238, - "travelTimeSeconds": 37 - }, - { - "distanceMeters": 167, - "travelTimeSeconds": 31 - }, - { - "distanceMeters": 221, - "travelTimeSeconds": 36 - } - ], - "from_gtfs": false, - "nodeTypes": [ - "manual", - "manual", - "manual", - "manual", - "manual" - ], - "variables": { - "d_p": 1008, - "T_o_p": 300, - "n_q_p": 5, - "n_s_p": 5, - "d_l_avg": 252, - "d_l_max": 382, - "d_l_med": 230, - "d_l_min": 167 - }, - "waypoints": [ - [], - [], - [], - [], - [] - ], - "routingMode": "rail", - "routingEngine": "manual", - "routingFailed": false, - "waypointTypes": [ - [], - [], - [], - [], - [] - ], - "dwellTimeSeconds": [ - 0, - 30, - 30, - 30, - 30 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 250, - "defaultAcceleration": 0.7, - "defaultDeceleration": 0.7, - "returnBackGeography": null, - "totalDistanceMeters": 1008, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 120, - "defaultRunningSpeedKmH": 90, - "defaultDwellTimeSeconds": 30, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 3.36, - "travelTimeWithoutDwellTimesSeconds": 60, - "operatingTimeWithLayoverTimeSeconds": 480, - "totalTravelTimeWithReturnBackSeconds": 480, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 300, - "operatingSpeedWithLayoverMetersPerSecond": 2.1, - "directRouteBetweenTerminalsDistanceMeters": 0, - "averageSpeedWithoutDwellTimesMetersPerSecond": 16.8, - "directRouteBetweenTerminalsTravelTimeSeconds": 0 - }, - "mode": "rail", - "name": "1s", - "color": "#7cc2ff", - "nodes": [ - "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "54cba115-6a75-4b65-8019-b2b5de7a3947", - "98279ff5-957b-4eeb-9ad3-2a9d5fb6ef98", - "161f72ac-926f-49be-80a4-a3cb10884d02", - "d98b2f35-c33e-4d89-853d-ac91e28ea62b" - ], - "stops": [], - "line_id": "5908da12-15da-4997-b245-9ffec4a2fc0c", - "segments": [ - 0, - 1, - 2, - 3 - ], - "direction": "loop", - "is_frozen": false, - "created_at": "2023-01-30T15:10:31.171352+00:00", - "integer_id": 423, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - }, - { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": [ - [ - -73.493837, - 45.52251 - ], - [ - -73.493906, - 45.522534 - ], - [ - -73.496552, - 45.523456 - ], - [ - -73.496676, - 45.523499 - ], - [ - -73.49677, - 45.523532 - ], - [ - -73.496702, - 45.523584 - ], - [ - -73.496461, - 45.523767 - ], - [ - -73.495902, - 45.523951 - ], - [ - -73.495859, - 45.523964 - ], - [ - -73.495545, - 45.524055 - ], - [ - -73.495401, - 45.524007 - ], - [ - -73.495332, - 45.523984 - ], - [ - -73.494852, - 45.523813 - ], - [ - -73.494815, - 45.523866 - ], - [ - -73.494764, - 45.523939 - ], - [ - -73.494373, - 45.523804 - ], - [ - -73.494303, - 45.523908 - ], - [ - -73.494705, - 45.524035 - ], - [ - -73.494763, - 45.524053 - ], - [ - -73.494764, - 45.523939 - ], - [ - -73.494815, - 45.523866 - ], - [ - -73.494852, - 45.523813 - ], - [ - -73.493732, - 45.523422 - ], - [ - -73.493513, - 45.523346 - ], - [ - -73.493377, - 45.523298 - ], - [ - -73.493288, - 45.523271 - ], - [ - -73.493302, - 45.523241 - ], - [ - -73.493349, - 45.523178 - ], - [ - -73.493802, - 45.522558 - ], - [ - -73.493836, - 45.522511 - ] - ] - }, - "id": 424, - "properties": { - "id": "75653bb1-4560-4d9c-9277-a64b4459615a", - "data": { - "segments": [ - { - "distanceMeters": 238, - "travelTimeSeconds": 33 - }, - { - "distanceMeters": 291, - "travelTimeSeconds": 77 - }, - { - "distanceMeters": 265, - "travelTimeSeconds": 58 - } - ], - "from_gtfs": false, - "nodeTypes": [ - "engine", - "engine", - "engine", - "engine" - ], - "variables": { - "d_p": 794, - "T_o_p": 240, - "n_q_p": 4, - "n_s_p": 4, - "d_l_avg": 265, - "d_l_max": 291, - "d_l_med": 265, - "d_l_min": 238 - }, - "waypoints": [ - [], - [], - [], - [] - ], - "routingMode": "bus_urban", - "routingEngine": "engine", - "routingFailed": false, - "waypointTypes": [ - [], - [], - [], - [] - ], - "dwellTimeSeconds": [ - 0, - 20, - 20, - 20 - ], - "defaultRoutingMode": "bus_urban", - "layoverTimeSeconds": 180, - "maxRunningSpeedKmH": 120, - "defaultAcceleration": 1, - "defaultDeceleration": 1, - "returnBackGeography": null, - "totalDistanceMeters": 794, - "defaultRoutingEngine": "engine", - "totalDwellTimeSeconds": 60, - "defaultRunningSpeedKmH": 40, - "defaultDwellTimeSeconds": 20, - "defaultMinLayoverTimeSeconds": 180, - "operatingSpeedMetersPerSecond": 3.31, - "travelTimeWithoutDwellTimesSeconds": 180, - "operatingTimeWithLayoverTimeSeconds": 420, - "totalTravelTimeWithReturnBackSeconds": 420, - "defaultLayoverRatioOverTotalTravelTime": 0.1, - "operatingTimeWithoutLayoverTimeSeconds": 240, - "operatingSpeedWithLayoverMetersPerSecond": 1.89, - "directRouteBetweenTerminalsDistanceMeters": 0, - "averageSpeedWithoutDwellTimesMetersPerSecond": 4.41, - "directRouteBetweenTerminalsTravelTimeSeconds": 0 - }, - "mode": "bus", - "name": null, - "color": "#fff600", - "nodes": [ - "a76bf032-5164-44ff-92fb-30023319517e", - "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "afda06bb-9f3e-43a6-883f-96226fa884c5", - "a76bf032-5164-44ff-92fb-30023319517e" - ], - "stops": [], - "line_id": "f501d9ed-93db-4503-83dd-cf1890221267", - "segments": [ - 0, - 2, - 17 - ], - "direction": "outbound", - "is_frozen": false, - "created_at": "2023-01-30T15:24:09.686624+00:00", - "integer_id": 424, - "is_enabled": true, - "updated_at": null, - "description": null, - "internal_id": null - } - } - ] -} \ No newline at end of file diff --git a/deck-gl-pow/index.html b/deck-gl-pow/index.html deleted file mode 100644 index 55e82f34..00000000 --- a/deck-gl-pow/index.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - maplibre-custom-layer-example - - - - -
- - - - diff --git a/deck-gl-pow/nodes.geojson b/deck-gl-pow/nodes.geojson deleted file mode 100644 index db631f35..00000000 --- a/deck-gl-pow/nodes.geojson +++ /dev/null @@ -1,229198 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.605929, - 45.534479 - ] - }, - "id": 1, - "properties": { - "id": "96e58991-cfaa-4ae6-ba92-2c0e119b3a55", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7284462392411 - }, - "name": "n1", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.605929472, - 45.534479192 - ] - }, - "is_frozen": false, - "integer_id": 1, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.58744, - 45.528986 - ] - }, - "id": 2, - "properties": { - "id": "4c62b506-5036-4a10-8df2-3c468441896a", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6355018444641 - }, - "name": "n2", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.58744002, - 45.528986407 - ] - }, - "is_frozen": false, - "integer_id": 2, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.677646, - 45.594585 - ] - }, - "id": 3, - "properties": { - "id": "dfd47edd-1382-467e-befb-226624f23d4e", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7472728724861 - }, - "name": "n4", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.677645665, - 45.594585316 - ] - }, - "is_frozen": false, - "integer_id": 3, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.679747, - 45.590962 - ] - }, - "id": 4, - "properties": { - "id": "91dbd067-8089-4f8d-8daf-c1e5e6f13727", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6857672196336 - }, - "name": "n3", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.6797471, - 45.59096216 - ] - }, - "is_frozen": false, - "integer_id": 4, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.682889, - 45.593656 - ] - }, - "id": 5, - "properties": { - "id": "ad415560-2e75-47b0-a52e-3f9dec9a127d", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7314906884648 - }, - "name": "n5", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.682889027, - 45.59365569 - ] - }, - "is_frozen": false, - "integer_id": 5, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.508662, - 45.520951 - ] - }, - "id": 6, - "properties": { - "id": "1893a2d3-2e8b-4965-b8e9-5552ec8f07a4", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4995817398526 - }, - "name": "n10", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.508662, - 45.520951 - ] - }, - "is_frozen": false, - "integer_id": 6, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.510526, - 45.526381 - ] - }, - "id": 7, - "properties": { - "id": "2e11d7c6-5ded-4e4c-aeb2-4312df2b8e67", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5914246930248 - }, - "name": "n11", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.510526, - 45.526381 - ] - }, - "is_frozen": false, - "integer_id": 7, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.500061, - 45.524846 - ] - }, - "id": 8, - "properties": { - "id": "d41672d0-e186-418e-b20f-1d82b60c3365", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5654590578063 - }, - "name": "n12", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.500061, - 45.524846 - ] - }, - "is_frozen": false, - "integer_id": 8, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513362, - 45.520783 - ] - }, - "id": 9, - "properties": { - "id": "9db6aff2-2175-49e9-984e-3eb4c8dd470c", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4967406089457 - }, - "name": "n13", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.513362, - 45.520783 - ] - }, - "is_frozen": false, - "integer_id": 9, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.51055, - 45.528304 - ] - }, - "id": 10, - "properties": { - "id": "0abd44bc-ce59-4161-a0a7-b31176db0e89", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.623956592404 - }, - "name": "n14", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.51055, - 45.528304 - ] - }, - "is_frozen": false, - "integer_id": 10, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.496589, - 45.523404 - ] - }, - "id": 11, - "properties": { - "id": "13013916-32c5-4da2-8c6f-a9c582a4c0a5", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.541068497801 - }, - "name": "n15", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.496589, - 45.523404 - ] - }, - "is_frozen": false, - "integer_id": 11, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.507861, - 45.524432 - ] - }, - "id": 12, - "properties": { - "id": "1da8599d-038c-4242-b6d8-ab011dd7f5a1", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5584563079408 - }, - "name": "n16", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507861, - 45.524432 - ] - }, - "is_frozen": false, - "integer_id": 12, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455378, - 45.543565 - ] - }, - "id": 13, - "properties": { - "id": "82f56357-1445-4183-b302-5e7eee64e769", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8822550459716 - }, - "name": "n1", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455377504, - 45.543565423 - ] - }, - "is_frozen": false, - "integer_id": 13, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.499242, - 45.519439 - ] - }, - "id": 14, - "properties": { - "id": "98279ff5-957b-4eeb-9ad3-2a9d5fb6ef98", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4740124669719 - }, - "name": "n20", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.499242, - 45.519439 - ] - }, - "is_frozen": false, - "integer_id": 14, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.509867, - 45.517734 - ] - }, - "id": 15, - "properties": { - "id": "e66fb997-f83d-42a0-a232-e5b0a94a0caf", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4451818347184 - }, - "name": "n21", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.509867, - 45.517734 - ] - }, - "is_frozen": false, - "integer_id": 15, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.505308, - 45.524763 - ] - }, - "id": 16, - "properties": { - "id": "e657782a-839d-417e-8b23-9ba7a22fe0b9", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.56405511262 - }, - "name": "n30", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.505308, - 45.524763 - ] - }, - "is_frozen": false, - "integer_id": 16, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.506868, - 45.522376 - ] - }, - "id": 17, - "properties": { - "id": "c64e94bb-98df-4524-930a-135a6f4b4bff", - "code": null, - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.523681629408 - }, - "name": null, - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.506868, - 45.522376 - ] - }, - "is_frozen": false, - "integer_id": 17, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.501812, - 45.523633 - ] - }, - "id": 18, - "properties": { - "id": "0e5d2dfa-ebda-4bee-8d5e-46436cbea299", - "code": "n40", - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5449417708653 - }, - "name": "n40", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.501812, - 45.523633 - ] - }, - "is_frozen": false, - "integer_id": 18, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.504673, - 45.52101 - ] - }, - "id": 19, - "properties": { - "id": "c72f260f-0d66-46a0-aa47-d7bdf5b8c3c5", - "code": "n50", - "data": { - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5005729960499 - }, - "name": "n50", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.504672661, - 45.521009614 - ] - }, - "is_frozen": false, - "integer_id": 19, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.52125, - 45.52405 - ] - }, - "id": 20, - "properties": { - "id": "d1011845-6c20-48e2-a9a9-e727cee5b959", - "code": "39999", - "data": { - "stops": [ - { - "id": "9999", - "code": "39999", - "data": { - "gtfs": { - "stop_id": "9999", - "stop_code": "39999", - "stop_name": "TERMINUS LONGUEUIL", - "location_type": 1, - "parent_station": "" - } - }, - "name": "TERMINUS LONGUEUIL", - "geography": { - "type": "Point", - "coordinates": [ - -73.52141, - 45.52408 - ] - } - }, - { - "id": "1001", - "code": "31001", - "data": { - "gtfs": { - "stop_id": "1001", - "stop_code": "31001", - "stop_name": "TERMINUS LONGUEUIL", - "location_type": 0, - "parent_station": "9999" - } - }, - "name": "TERMINUS LONGUEUIL", - "geography": { - "type": "Point", - "coordinates": [ - -73.5213985554661, - 45.5242766150855 - ] - } - }, - { - "id": "1002", - "code": "31002", - "data": { - "gtfs": { - "stop_id": "1002", - "stop_code": "31002", - "stop_name": "TERMINUS LONGUEUIL", - "location_type": 0, - "parent_station": "9999" - } - }, - "name": "TERMINUS LONGUEUIL", - "geography": { - "type": "Point", - "coordinates": [ - -73.521412111409, - 45.5238158271292 - ] - } - }, - { - "id": "4415", - "code": "34415", - "data": { - "gtfs": { - "stop_id": "4415", - "stop_code": "34415", - "stop_name": "TERMINUS LONGUEUIL", - "location_type": 0, - "parent_station": "9999" - } - }, - "name": "TERMINUS LONGUEUIL", - "geography": { - "type": "Point", - "coordinates": [ - -73.5210871623634, - 45.5242975879659 - ] - } - }, - { - "id": "4416", - "code": "34416", - "data": { - "gtfs": { - "stop_id": "4416", - "stop_code": "34416", - "stop_name": "TERMINUS LONGUEUIL", - "location_type": 0, - "parent_station": "9999" - } - }, - "name": "TERMINUS LONGUEUIL", - "geography": { - "type": "Point", - "coordinates": [ - -73.5211468541076, - 45.5238027559785 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5519978781872 - }, - "name": "TERMINUS LONGUEUIL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.521249637, - 45.524050172 - ] - }, - "is_frozen": false, - "integer_id": 20, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.51391, - 45.502191 - ] - }, - "id": 21, - "properties": { - "id": "a230c1b0-ee13-40c1-8d3f-12ae20006cc6", - "code": "31003", - "data": { - "stops": [ - { - "id": "1003", - "code": "31003", - "data": { - "gtfs": { - "stop_id": "1003", - "stop_code": "31003", - "stop_name": "boul. Desaulniers et PARC GORDON", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et PARC GORDON", - "geography": { - "type": "Point", - "coordinates": [ - -73.5137868128974, - 45.5021782086122 - ] - } - }, - { - "id": "1027", - "code": "31027", - "data": { - "gtfs": { - "stop_id": "1027", - "stop_code": "31027", - "stop_name": "boul. Desaulniers et IGA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et IGA", - "geography": { - "type": "Point", - "coordinates": [ - -73.5140325129902, - 45.5022030755544 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1824713944492 - }, - "name": "boul. Desaulniers et PARC GORDON", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.513909663, - 45.502190642 - ] - }, - "is_frozen": false, - "integer_id": 21, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.512317, - 45.504461 - ] - }, - "id": 22, - "properties": { - "id": "1232f389-204f-48ac-a95f-0f1b3e5706b2", - "code": "31004", - "data": { - "stops": [ - { - "id": "1004", - "code": "31004", - "data": { - "gtfs": { - "stop_id": "1004", - "stop_code": "31004", - "stop_name": "boul. Desaulniers et av. Birch", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et av. Birch", - "geography": { - "type": "Point", - "coordinates": [ - -73.5122733634264, - 45.5043342232894 - ] - } - }, - { - "id": "1025", - "code": "31025", - "data": { - "gtfs": { - "stop_id": "1025", - "stop_code": "31025", - "stop_name": "boul. Desaulniers et av. Birch", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et av. Birch", - "geography": { - "type": "Point", - "coordinates": [ - -73.5123610093457, - 45.5045871083594 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2208254318991 - }, - "name": "boul. Desaulniers et av. Birch", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.512317186, - 45.504460666 - ] - }, - "is_frozen": false, - "integer_id": 22, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.51139, - 45.505669 - ] - }, - "id": 23, - "properties": { - "id": "9bf48d6d-7a0b-4fbe-9125-1eef756e334f", - "code": "31005", - "data": { - "stops": [ - { - "id": "1005", - "code": "31005", - "data": { - "gtfs": { - "stop_id": "1005", - "stop_code": "31005", - "stop_name": "boul. Desaulniers et av. Oak", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et av. Oak", - "geography": { - "type": "Point", - "coordinates": [ - -73.5113658333393, - 45.5055005520629 - ] - } - }, - { - "id": "1023", - "code": "31023", - "data": { - "gtfs": { - "stop_id": "1023", - "stop_code": "31023", - "stop_name": "boul. Desaulniers et av. Oak", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et av. Oak", - "geography": { - "type": "Point", - "coordinates": [ - -73.5114138906968, - 45.5058379882501 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.241247722685 - }, - "name": "boul. Desaulniers et av. Oak", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.511389862, - 45.50566927 - ] - }, - "is_frozen": false, - "integer_id": 23, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.510497, - 45.506877 - ] - }, - "id": 24, - "properties": { - "id": "36a7184c-7248-4c15-a0a7-68c04bd48cc7", - "code": "31006", - "data": { - "stops": [ - { - "id": "1006", - "code": "31006", - "data": { - "gtfs": { - "stop_id": "1006", - "stop_code": "31006", - "stop_name": "boul. Desaulniers et av. Walnut", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et av. Walnut", - "geography": { - "type": "Point", - "coordinates": [ - -73.5104511506177, - 45.5067370293582 - ] - } - }, - { - "id": "1024", - "code": "31024", - "data": { - "gtfs": { - "stop_id": "1024", - "stop_code": "31024", - "stop_name": "boul. Desaulniers et av. Walnut", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et av. Walnut", - "geography": { - "type": "Point", - "coordinates": [ - -73.5105427029211, - 45.5070168656388 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2616556482843 - }, - "name": "boul. Desaulniers et av. Walnut", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.510496927, - 45.506876947 - ] - }, - "is_frozen": false, - "integer_id": 24, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.508644, - 45.509314 - ] - }, - "id": 25, - "properties": { - "id": "bb609a9b-192c-4f8e-9177-9dbd5b0d51a5", - "code": "31007", - "data": { - "stops": [ - { - "id": "1007", - "code": "31007", - "data": { - "gtfs": { - "stop_id": "1007", - "stop_code": "31007", - "stop_name": "boul. Desaulniers et av. de Dulwich", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et av. de Dulwich", - "geography": { - "type": "Point", - "coordinates": [ - -73.5086038184187, - 45.5091856478922 - ] - } - }, - { - "id": "1021", - "code": "31021", - "data": { - "gtfs": { - "stop_id": "1021", - "stop_code": "31021", - "stop_name": "boul. Desaulniers et av. de Dulwich", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et av. de Dulwich", - "geography": { - "type": "Point", - "coordinates": [ - -73.5086846448902, - 45.5094420967554 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.302839970217 - }, - "name": "boul. Desaulniers et av. de Dulwich", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.508644232, - 45.509313872 - ] - }, - "is_frozen": false, - "integer_id": 25, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.50766, - 45.510637 - ] - }, - "id": 26, - "properties": { - "id": "7009c13e-76ca-4283-afe5-33492dbd6d10", - "code": "31008", - "data": { - "stops": [ - { - "id": "1008", - "code": "31008", - "data": { - "gtfs": { - "stop_id": "1008", - "stop_code": "31008", - "stop_name": "boul. Desaulniers et av. de Putney", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et av. de Putney", - "geography": { - "type": "Point", - "coordinates": [ - -73.5076173546379, - 45.5104994871794 - ] - } - }, - { - "id": "1020", - "code": "31020", - "data": { - "gtfs": { - "stop_id": "1020", - "stop_code": "31020", - "stop_name": "boul. Desaulniers et av. de Putney", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et av. de Putney", - "geography": { - "type": "Point", - "coordinates": [ - -73.5077029803291, - 45.5107739331939 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3251983035296 - }, - "name": "boul. Desaulniers et av. de Putney", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507660167, - 45.51063671 - ] - }, - "is_frozen": false, - "integer_id": 26, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.512686, - 45.514989 - ] - }, - "id": 27, - "properties": { - "id": "2a197d72-1b4b-4077-a350-4c8656ad7bb1", - "code": "31010", - "data": { - "stops": [ - { - "id": "1010", - "code": "31010", - "data": { - "gtfs": { - "stop_id": "1010", - "stop_code": "31010", - "stop_name": "ch. Tiffin et ECOLE SECONDAIRE NOTRE-DAME-DE-LOURDES", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et ECOLE SECONDAIRE NOTRE-DAME-DE-LOURDES", - "geography": { - "type": "Point", - "coordinates": [ - -73.5126862219778, - 45.5149888066266 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3987675400043 - }, - "name": "ch. Tiffin et ECOLE SECONDAIRE NOTRE-DAME-DE-LOURDES", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.512686222, - 45.514988807 - ] - }, - "is_frozen": false, - "integer_id": 27, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.514252, - 45.515391 - ] - }, - "id": 28, - "properties": { - "id": "74539ff2-4125-4083-be0c-4345bf87f6fa", - "code": "31011", - "data": { - "stops": [ - { - "id": "1011", - "code": "31011", - "data": { - "gtfs": { - "stop_id": "1011", - "stop_code": "31011", - "stop_name": "ch. Tiffin et de Wagram", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et de Wagram", - "geography": { - "type": "Point", - "coordinates": [ - -73.5143913074405, - 45.5155708341197 - ] - } - }, - { - "id": "1016", - "code": "31016", - "data": { - "gtfs": { - "stop_id": "1016", - "stop_code": "31016", - "stop_name": "ch. Tiffin et Robitaille", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et Robitaille", - "geography": { - "type": "Point", - "coordinates": [ - -73.5147627012842, - 45.5155424273363 - ] - } - }, - { - "id": "3480", - "code": "33480", - "data": { - "gtfs": { - "stop_id": "3480", - "stop_code": "33480", - "stop_name": "ch. Tiffin et ECOLE SECONDAIRE NOTRE-DAME-DE-LOURDES", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et ECOLE SECONDAIRE NOTRE-DAME-DE-LOURDES", - "geography": { - "type": "Point", - "coordinates": [ - -73.5137414893716, - 45.5153476671695 - ] - } - }, - { - "id": "4296", - "code": "34296", - "data": { - "gtfs": { - "stop_id": "4296", - "stop_code": "34296", - "stop_name": "ch. Tiffin et ECOLE SECONDAIRE NOTRE-DAME-DE-LOURDES", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et ECOLE SECONDAIRE NOTRE-DAME-DE-LOURDES", - "geography": { - "type": "Point", - "coordinates": [ - -73.5138015618208, - 45.5152115904569 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4055707744807 - }, - "name": "ch. Tiffin et de Wagram", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.514252095, - 45.515391212 - ] - }, - "is_frozen": false, - "integer_id": 28, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.517477, - 45.51657 - ] - }, - "id": 29, - "properties": { - "id": "f250cba5-329e-4403-912d-778f924ce25e", - "code": "31012", - "data": { - "stops": [ - { - "id": "1012", - "code": "31012", - "data": { - "gtfs": { - "stop_id": "1012", - "stop_code": "31012", - "stop_name": "ch. Tiffin et de la Providence", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et de la Providence", - "geography": { - "type": "Point", - "coordinates": [ - -73.5171758801222, - 45.5165408315723 - ] - } - }, - { - "id": "1015", - "code": "31015", - "data": { - "gtfs": { - "stop_id": "1015", - "stop_code": "31015", - "stop_name": "ch. Tiffin et de la Providence", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et de la Providence", - "geography": { - "type": "Point", - "coordinates": [ - -73.5175210959979, - 45.516528688882 - ] - } - }, - { - "id": "4949", - "code": "34949", - "data": { - "gtfs": { - "stop_id": "4949", - "stop_code": "34949", - "stop_name": "ch. Tiffin et de la Providence", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et de la Providence", - "geography": { - "type": "Point", - "coordinates": [ - -73.5177775684209, - 45.5166107219435 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4254957209657 - }, - "name": "ch. Tiffin et de la Providence", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.517476724, - 45.516569705 - ] - }, - "is_frozen": false, - "integer_id": 29, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.511627, - 45.514481 - ] - }, - "id": 30, - "properties": { - "id": "f1be4054-f28c-45a4-bc0b-58b82e1e6e83", - "code": "31017", - "data": { - "stops": [ - { - "id": "1017", - "code": "31017", - "data": { - "gtfs": { - "stop_id": "1017", - "stop_code": "31017", - "stop_name": "ch. Tiffin et Patenaude", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et Patenaude", - "geography": { - "type": "Point", - "coordinates": [ - -73.5116265702011, - 45.514480772782 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3901787015534 - }, - "name": "ch. Tiffin et Patenaude", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.51162657, - 45.514480773 - ] - }, - "is_frozen": false, - "integer_id": 30, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.508719, - 45.513562 - ] - }, - "id": 31, - "properties": { - "id": "969092dd-fcfd-493a-be55-d0467c757fb1", - "code": "31018", - "data": { - "stops": [ - { - "id": "1018", - "code": "31018", - "data": { - "gtfs": { - "stop_id": "1018", - "stop_code": "31018", - "stop_name": "ch. Tiffin et Logan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et Logan", - "geography": { - "type": "Point", - "coordinates": [ - -73.5089071925685, - 45.5135597299863 - ] - } - }, - { - "id": "4088", - "code": "34088", - "data": { - "gtfs": { - "stop_id": "4088", - "stop_code": "34088", - "stop_name": "ch. Tiffin et Logan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et Logan", - "geography": { - "type": "Point", - "coordinates": [ - -73.5085312921727, - 45.5135633832395 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3746389917711 - }, - "name": "ch. Tiffin et Logan", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.508719242, - 45.513561557 - ] - }, - "is_frozen": false, - "integer_id": 31, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.506396, - 45.512631 - ] - }, - "id": 32, - "properties": { - "id": "2227a38f-9c32-4890-9719-eef7445fa1fc", - "code": "31019", - "data": { - "stops": [ - { - "id": "1019", - "code": "31019", - "data": { - "gtfs": { - "stop_id": "1019", - "stop_code": "31019", - "stop_name": "ch. Tiffin et boul. Desaulniers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et boul. Desaulniers", - "geography": { - "type": "Point", - "coordinates": [ - -73.5067837359891, - 45.512726647859 - ] - } - }, - { - "id": "1102", - "code": "31102", - "data": { - "gtfs": { - "stop_id": "1102", - "stop_code": "31102", - "stop_name": "ch. Tiffin et boul. Desaulniers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et boul. Desaulniers", - "geography": { - "type": "Point", - "coordinates": [ - -73.506009257491, - 45.5126004362648 - ] - } - }, - { - "id": "3541", - "code": "33541", - "data": { - "gtfs": { - "stop_id": "3541", - "stop_code": "33541", - "stop_name": "boul. Desaulniers et ch. Tiffin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et ch. Tiffin", - "geography": { - "type": "Point", - "coordinates": [ - -73.5061875311206, - 45.5124393029235 - ] - } - }, - { - "id": "5809", - "code": "30578", - "data": { - "gtfs": { - "stop_id": "5809", - "stop_code": "30578", - "stop_name": "boul. Desaulniers et ch. Tiffin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et ch. Tiffin", - "geography": { - "type": "Point", - "coordinates": [ - -73.5061277720678, - 45.5128218539657 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3589011908292 - }, - "name": "ch. Tiffin et boul. Desaulniers", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.506396497, - 45.512630578 - ] - }, - "is_frozen": false, - "integer_id": 32, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.509578, - 45.508089 - ] - }, - "id": 33, - "properties": { - "id": "ed39b486-0ae1-40e4-a1bb-022292e07d90", - "code": "31022", - "data": { - "stops": [ - { - "id": "1022", - "code": "31022", - "data": { - "gtfs": { - "stop_id": "1022", - "stop_code": "31022", - "stop_name": "boul. Desaulniers et av. de Merton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et av. de Merton", - "geography": { - "type": "Point", - "coordinates": [ - -73.5096028899567, - 45.5082291764656 - ] - } - }, - { - "id": "3404", - "code": "33404", - "data": { - "gtfs": { - "stop_id": "3404", - "stop_code": "33404", - "stop_name": "boul. Desaulniers et av. de Merton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et av. de Merton", - "geography": { - "type": "Point", - "coordinates": [ - -73.5095528867331, - 45.5079496203745 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2821455533407 - }, - "name": "boul. Desaulniers et av. de Merton", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.509577888, - 45.508089398 - ] - }, - "is_frozen": false, - "integer_id": 33, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513359, - 45.503232 - ] - }, - "id": 34, - "properties": { - "id": "23cc64ae-3ce4-46c2-8d0a-9082f50074d0", - "code": "31026", - "data": { - "stops": [ - { - "id": "1026", - "code": "31026", - "data": { - "gtfs": { - "stop_id": "1026", - "stop_code": "31026", - "stop_name": "boul. Desaulniers et av. Notre-Dame", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et av. Notre-Dame", - "geography": { - "type": "Point", - "coordinates": [ - -73.5133594577219, - 45.5032319009505 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2000638050334 - }, - "name": "boul. Desaulniers et av. Notre-Dame", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.513359458, - 45.503231901 - ] - }, - "is_frozen": false, - "integer_id": 34, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.509944, - 45.500698 - ] - }, - "id": 35, - "properties": { - "id": "df5b9592-81e3-4b2c-8a30-7f3a9144671b", - "code": "31029", - "data": { - "stops": [ - { - "id": "1029", - "code": "31029", - "data": { - "gtfs": { - "stop_id": "1029", - "stop_code": "31029", - "stop_name": "av. Victoria et de Woodstock", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et de Woodstock", - "geography": { - "type": "Point", - "coordinates": [ - -73.5099442602883, - 45.5006983025662 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1572595224388 - }, - "name": "av. Victoria et de Woodstock", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.50994426, - 45.500698303 - ] - }, - "is_frozen": false, - "integer_id": 35, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.507114, - 45.499512 - ] - }, - "id": 36, - "properties": { - "id": "d24bea6e-da8d-4183-8a5f-0e99be199484", - "code": "31030", - "data": { - "stops": [ - { - "id": "1030", - "code": "31030", - "data": { - "gtfs": { - "stop_id": "1030", - "stop_code": "31030", - "stop_name": "av. Victoria et GARE SAINT-LAMBERT", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et GARE SAINT-LAMBERT", - "geography": { - "type": "Point", - "coordinates": [ - -73.5071144393821, - 45.4995124400556 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1372267300094 - }, - "name": "av. Victoria et GARE SAINT-LAMBERT", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507114439, - 45.49951244 - ] - }, - "is_frozen": false, - "integer_id": 36, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.504843, - 45.498418 - ] - }, - "id": 37, - "properties": { - "id": "6557d1fe-6975-49e2-871c-ab07d42ea35b", - "code": "31031", - "data": { - "stops": [ - { - "id": "1031", - "code": "31031", - "data": { - "gtfs": { - "stop_id": "1031", - "stop_code": "31031", - "stop_name": "av. Victoria et Cartier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et Cartier", - "geography": { - "type": "Point", - "coordinates": [ - -73.504995371936, - 45.498445156919 - ] - } - }, - { - "id": "1078", - "code": "31078", - "data": { - "gtfs": { - "stop_id": "1078", - "stop_code": "31078", - "stop_name": "av. Victoria et Cartier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et Cartier", - "geography": { - "type": "Point", - "coordinates": [ - -73.5046913921009, - 45.4983907166626 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1187383931043 - }, - "name": "av. Victoria et Cartier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.504843382, - 45.498417937 - ] - }, - "is_frozen": false, - "integer_id": 37, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.502441, - 45.49669 - ] - }, - "id": 38, - "properties": { - "id": "d6478d35-c1a6-4cc1-9f6f-e8345624e18f", - "code": "31032", - "data": { - "stops": [ - { - "id": "1032", - "code": "31032", - "data": { - "gtfs": { - "stop_id": "1032", - "stop_code": "31032", - "stop_name": "av. Victoria et av. Edison", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et av. Edison", - "geography": { - "type": "Point", - "coordinates": [ - -73.5026845796389, - 45.4967861033443 - ] - } - }, - { - "id": "1077", - "code": "31077", - "data": { - "gtfs": { - "stop_id": "1077", - "stop_code": "31077", - "stop_name": "av. Victoria et Upper Edison", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et Upper Edison", - "geography": { - "type": "Point", - "coordinates": [ - -73.5021982751104, - 45.4965948554886 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0895603533686 - }, - "name": "av. Victoria et av. Edison", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.502441427, - 45.496690479 - ] - }, - "is_frozen": false, - "integer_id": 38, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.501367, - 45.495931 - ] - }, - "id": 39, - "properties": { - "id": "1cea6199-481e-43b0-8d4a-8c7593ff485f", - "code": "31033", - "data": { - "stops": [ - { - "id": "1033", - "code": "31033", - "data": { - "gtfs": { - "stop_id": "1033", - "stop_code": "31033", - "stop_name": "av. Victoria et av. Hickson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et av. Hickson", - "geography": { - "type": "Point", - "coordinates": [ - -73.5015073917252, - 45.495941544786 - ] - } - }, - { - "id": "1076", - "code": "31076", - "data": { - "gtfs": { - "stop_id": "1076", - "stop_code": "31076", - "stop_name": "av. Victoria et Reid", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et Reid", - "geography": { - "type": "Point", - "coordinates": [ - -73.5012266330451, - 45.4959199032947 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0767283715932 - }, - "name": "av. Victoria et av. Hickson", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.501367012, - 45.495930724 - ] - }, - "is_frozen": false, - "integer_id": 39, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.500548, - 45.495299 - ] - }, - "id": 40, - "properties": { - "id": "467e03f3-2556-4d22-ae48-618a76e6b0b4", - "code": "31034", - "data": { - "stops": [ - { - "id": "1034", - "code": "31034", - "data": { - "gtfs": { - "stop_id": "1034", - "stop_code": "31034", - "stop_name": "av. Victoria et boul. Sir-Wilfrid-Laurier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et boul. Sir-Wilfrid-Laurier", - "geography": { - "type": "Point", - "coordinates": [ - -73.5005484772538, - 45.495299250924 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0660634162408 - }, - "name": "av. Victoria et boul. Sir-Wilfrid-Laurier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.500548477, - 45.495299251 - ] - }, - "is_frozen": false, - "integer_id": 40, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.498308, - 45.493637 - ] - }, - "id": 41, - "properties": { - "id": "ea9801c9-a110-4900-bcae-f1b3a40050e8", - "code": "31035", - "data": { - "stops": [ - { - "id": "1035", - "code": "31035", - "data": { - "gtfs": { - "stop_id": "1035", - "stop_code": "31035", - "stop_name": "av. Victoria et Imelda-Millette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et Imelda-Millette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4983081165907, - 45.4936370516674 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0379922122809 - }, - "name": "av. Victoria et Imelda-Millette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.498308117, - 45.493637052 - ] - }, - "is_frozen": false, - "integer_id": 41, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.49641, - 45.492373 - ] - }, - "id": 42, - "properties": { - "id": "0b6032e7-414a-429f-9df2-796599b947c2", - "code": "31036", - "data": { - "stops": [ - { - "id": "1036", - "code": "31036", - "data": { - "gtfs": { - "stop_id": "1036", - "stop_code": "31036", - "stop_name": "av. Victoria et King-Edward", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et King-Edward", - "geography": { - "type": "Point", - "coordinates": [ - -73.4965351893447, - 45.492345350392 - ] - } - }, - { - "id": "3291", - "code": "33291", - "data": { - "gtfs": { - "stop_id": "3291", - "stop_code": "33291", - "stop_name": "av. Victoria et King-Edward", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et King-Edward", - "geography": { - "type": "Point", - "coordinates": [ - -73.4962851538464, - 45.492400574103 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0166459151058 - }, - "name": "av. Victoria et King-Edward", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.496410172, - 45.492372962 - ] - }, - "is_frozen": false, - "integer_id": 42, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494232, - 45.490836 - ] - }, - "id": 43, - "properties": { - "id": "88d8365e-2528-4422-a483-bb2efd9de617", - "code": "31037", - "data": { - "stops": [ - { - "id": "1037", - "code": "31037", - "data": { - "gtfs": { - "stop_id": "1037", - "stop_code": "31037", - "stop_name": "av. Victoria et ch. Saint-Charles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et ch. Saint-Charles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4942927773624, - 45.4907615334407 - ] - } - }, - { - "id": "3290", - "code": "33290", - "data": { - "gtfs": { - "stop_id": "3290", - "stop_code": "33290", - "stop_name": "av. Victoria et ch. Saint-Charles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et ch. Saint-Charles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4941721040153, - 45.4909096706228 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9906869070282 - }, - "name": "av. Victoria et ch. Saint-Charles", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494232441, - 45.490835602 - ] - }, - "is_frozen": false, - "integer_id": 43, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491855, - 45.489025 - ] - }, - "id": 44, - "properties": { - "id": "196681e4-c9e5-4a79-a3b1-ce225227e0aa", - "code": "31038", - "data": { - "stops": [ - { - "id": "1038", - "code": "31038", - "data": { - "gtfs": { - "stop_id": "1038", - "stop_code": "31038", - "stop_name": "av. Victoria et boul. Churchill", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et boul. Churchill", - "geography": { - "type": "Point", - "coordinates": [ - -73.4920868666878, - 45.4892226668234 - ] - } - }, - { - "id": "2479", - "code": "32479", - "data": { - "gtfs": { - "stop_id": "2479", - "stop_code": "32479", - "stop_name": "boul. Churchill et av. Victoria", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Churchill et av. Victoria", - "geography": { - "type": "Point", - "coordinates": [ - -73.4916221862355, - 45.4888274270561 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9601175748978 - }, - "name": "av. Victoria et boul. Churchill", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491854526, - 45.489025047 - ] - }, - "is_frozen": false, - "integer_id": 44, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.489409, - 45.490192 - ] - }, - "id": 45, - "properties": { - "id": "a2e6b668-43de-43be-8b1b-07b41b333c8d", - "code": "31039", - "data": { - "stops": [ - { - "id": "1039", - "code": "31039", - "data": { - "gtfs": { - "stop_id": "1039", - "stop_code": "31039", - "stop_name": "boul. Churchill et Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Churchill et Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.489409233702, - 45.4901920339847 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9798205988992 - }, - "name": "boul. Churchill et Hubert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.489409234, - 45.490192034 - ] - }, - "is_frozen": false, - "integer_id": 45, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.487355, - 45.491543 - ] - }, - "id": 46, - "properties": { - "id": "f132c08e-1812-4b2f-84fb-340628d1ac39", - "code": "31040", - "data": { - "stops": [ - { - "id": "1040", - "code": "31040", - "data": { - "gtfs": { - "stop_id": "1040", - "stop_code": "31040", - "stop_name": "boul. Churchill et Empire", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Churchill et Empire", - "geography": { - "type": "Point", - "coordinates": [ - -73.4873879142154, - 45.4913925422227 - ] - } - }, - { - "id": "1073", - "code": "31073", - "data": { - "gtfs": { - "stop_id": "1073", - "stop_code": "31073", - "stop_name": "boul. Churchill et Empire", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Churchill et Empire", - "geography": { - "type": "Point", - "coordinates": [ - -73.4873221371154, - 45.491693626626 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0026327945234 - }, - "name": "boul. Churchill et Empire", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.487355026, - 45.491543084 - ] - }, - "is_frozen": false, - "integer_id": 46, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486014, - 45.492408 - ] - }, - "id": 47, - "properties": { - "id": "ff721ee3-8729-47c1-80cd-7dd5e7142284", - "code": "31041", - "data": { - "stops": [ - { - "id": "1041", - "code": "31041", - "data": { - "gtfs": { - "stop_id": "1041", - "stop_code": "31041", - "stop_name": "boul. Churchill et de Springfield", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Churchill et de Springfield", - "geography": { - "type": "Point", - "coordinates": [ - -73.4860049560195, - 45.4922858271618 - ] - } - }, - { - "id": "1072", - "code": "31072", - "data": { - "gtfs": { - "stop_id": "1072", - "stop_code": "31072", - "stop_name": "boul. Churchill et de Springfield", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Churchill et de Springfield", - "geography": { - "type": "Point", - "coordinates": [ - -73.4860236978119, - 45.4925301975845 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0172377744676 - }, - "name": "boul. Churchill et de Springfield", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486014327, - 45.492408012 - ] - }, - "is_frozen": false, - "integer_id": 47, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483872, - 45.493775 - ] - }, - "id": 48, - "properties": { - "id": "3040b262-0b20-4c40-9350-e484adfe1d60", - "code": "31042", - "data": { - "stops": [ - { - "id": "1042", - "code": "31042", - "data": { - "gtfs": { - "stop_id": "1042", - "stop_code": "31042", - "stop_name": "boul. Churchill et de Verchères", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Churchill et de Verchères", - "geography": { - "type": "Point", - "coordinates": [ - -73.4840141265468, - 45.4937267030482 - ] - } - }, - { - "id": "1071", - "code": "31071", - "data": { - "gtfs": { - "stop_id": "1071", - "stop_code": "31071", - "stop_name": "boul. Churchill et de Verchères", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Churchill et de Verchères", - "geography": { - "type": "Point", - "coordinates": [ - -73.4839891766793, - 45.4939955784833 - ] - } - }, - { - "id": "3993", - "code": "33993", - "data": { - "gtfs": { - "stop_id": "3993", - "stop_code": "33993", - "stop_name": "de Verchères et boul. Churchill", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Verchères et boul. Churchill", - "geography": { - "type": "Point", - "coordinates": [ - -73.4838373137989, - 45.4938159121464 - ] - } - }, - { - "id": "5030", - "code": "35030", - "data": { - "gtfs": { - "stop_id": "5030", - "stop_code": "35030", - "stop_name": "de Verchères et civique 271", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Verchères et civique 271", - "geography": { - "type": "Point", - "coordinates": [ - -73.4837303775, - 45.4935543310643 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0403210236026 - }, - "name": "boul. Churchill et de Verchères", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483872252, - 45.493774955 - ] - }, - "is_frozen": false, - "integer_id": 48, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482104, - 45.49531 - ] - }, - "id": 49, - "properties": { - "id": "7efe5a69-843b-4e1c-b95a-cdae4854b17d", - "code": "31043", - "data": { - "stops": [ - { - "id": "1043", - "code": "31043", - "data": { - "gtfs": { - "stop_id": "1043", - "stop_code": "31043", - "stop_name": "boul. Churchill et boul. Taschereau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Churchill et boul. Taschereau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4823470886998, - 45.4949219917692 - ] - } - }, - { - "id": "1069", - "code": "31069", - "data": { - "gtfs": { - "stop_id": "1069", - "stop_code": "31069", - "stop_name": "boul. Churchill et boul. Taschereau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Churchill et boul. Taschereau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4818526067998, - 45.4955138111435 - ] - } - }, - { - "id": "1167", - "code": "31167", - "data": { - "gtfs": { - "stop_id": "1167", - "stop_code": "31167", - "stop_name": "boul. Taschereau et boul. Churchill", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et boul. Churchill", - "geography": { - "type": "Point", - "coordinates": [ - -73.4823550681997, - 45.4952351676087 - ] - } - }, - { - "id": "3942", - "code": "33942", - "data": { - "gtfs": { - "stop_id": "3942", - "stop_code": "33942", - "stop_name": "boul. Taschereau et boul. Churchill", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et boul. Churchill", - "geography": { - "type": "Point", - "coordinates": [ - -73.4822564902695, - 45.4956971593596 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0662377924417 - }, - "name": "boul. Churchill et boul. Taschereau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482103837, - 45.495309576 - ] - }, - "is_frozen": false, - "integer_id": 49, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481099, - 45.495797 - ] - }, - "id": 50, - "properties": { - "id": "5cb517a3-d58a-47b9-835f-b13bd908a6f9", - "code": "31044", - "data": { - "stops": [ - { - "id": "1044", - "code": "31044", - "data": { - "gtfs": { - "stop_id": "1044", - "stop_code": "31044", - "stop_name": "boul. Churchill et de Mont-Royal", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Churchill et de Mont-Royal", - "geography": { - "type": "Point", - "coordinates": [ - -73.481098743191, - 45.4957970768247 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0744711761557 - }, - "name": "boul. Churchill et de Mont-Royal", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481098743, - 45.495797077 - ] - }, - "is_frozen": false, - "integer_id": 50, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479705, - 45.496927 - ] - }, - "id": 51, - "properties": { - "id": "6a2c9077-d7bd-4c23-a90d-45a5568fbdc9", - "code": "31045", - "data": { - "stops": [ - { - "id": "1045", - "code": "31045", - "data": { - "gtfs": { - "stop_id": "1045", - "stop_code": "31045", - "stop_name": "boul. Édouard et Grand Boulevard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Édouard et Grand Boulevard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4797975051483, - 45.4967324724036 - ] - } - }, - { - "id": "1068", - "code": "31068", - "data": { - "gtfs": { - "stop_id": "1068", - "stop_code": "31068", - "stop_name": "boul. Édouard et Grand Boulevard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Édouard et Grand Boulevard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4796132274783, - 45.4971217571683 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0935571530191 - }, - "name": "boul. Édouard et Grand Boulevard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479705366, - 45.496927115 - ] - }, - "is_frozen": false, - "integer_id": 51, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478194, - 45.497983 - ] - }, - "id": 52, - "properties": { - "id": "de8aa4d4-205c-4786-8a75-8902d51d8a41", - "code": "31046", - "data": { - "stops": [ - { - "id": "1046", - "code": "31046", - "data": { - "gtfs": { - "stop_id": "1046", - "stop_code": "31046", - "stop_name": "boul. Édouard et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Édouard et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4781862291345, - 45.497836098318 - ] - } - }, - { - "id": "1067", - "code": "31067", - "data": { - "gtfs": { - "stop_id": "1067", - "stop_code": "31067", - "stop_name": "boul. Édouard et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Édouard et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4781865714336, - 45.4981293187934 - ] - } - }, - { - "id": "1854", - "code": "31854", - "data": { - "gtfs": { - "stop_id": "1854", - "stop_code": "31854", - "stop_name": "Grande Allée et boul. Édouard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et boul. Édouard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4779475321663, - 45.4979358064753 - ] - } - }, - { - "id": "4002", - "code": "34002", - "data": { - "gtfs": { - "stop_id": "4002", - "stop_code": "34002", - "stop_name": "Grande Allée et boul. Édouard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et boul. Édouard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4784394741939, - 45.498056635132 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1113868209958 - }, - "name": "boul. Édouard et Grande Allée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.478193503, - 45.497982709 - ] - }, - "is_frozen": false, - "integer_id": 52, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474812, - 45.500118 - ] - }, - "id": 53, - "properties": { - "id": "a5cf96c7-9a5e-4888-8986-65b4b709f0ef", - "code": "31047", - "data": { - "stops": [ - { - "id": "1047", - "code": "31047", - "data": { - "gtfs": { - "stop_id": "1047", - "stop_code": "31047", - "stop_name": "boul. Édouard et William", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Édouard et William", - "geography": { - "type": "Point", - "coordinates": [ - -73.4747764825874, - 45.4999695555552 - ] - } - }, - { - "id": "1066", - "code": "31066", - "data": { - "gtfs": { - "stop_id": "1066", - "stop_code": "31066", - "stop_name": "boul. Édouard et William", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Édouard et William", - "geography": { - "type": "Point", - "coordinates": [ - -73.4746908594903, - 45.5002657264001 - ] - } - }, - { - "id": "1118", - "code": "31118", - "data": { - "gtfs": { - "stop_id": "1118", - "stop_code": "31118", - "stop_name": "William et boul. Édouard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "William et boul. Édouard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4749329905929, - 45.5001441326504 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1474502386334 - }, - "name": "boul. Édouard et William", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474811925, - 45.500117641 - ] - }, - "is_frozen": false, - "integer_id": 53, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.473524, - 45.500774 - ] - }, - "id": 54, - "properties": { - "id": "300a7442-8453-4aa4-89f9-beacdcc75174", - "code": "31048", - "data": { - "stops": [ - { - "id": "1048", - "code": "31048", - "data": { - "gtfs": { - "stop_id": "1048", - "stop_code": "31048", - "stop_name": "boul. Édouard et Windsor", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Édouard et Windsor", - "geography": { - "type": "Point", - "coordinates": [ - -73.473717196559, - 45.5006051461319 - ] - } - }, - { - "id": "1065", - "code": "31065", - "data": { - "gtfs": { - "stop_id": "1065", - "stop_code": "31065", - "stop_name": "Windsor et boul. Édouard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Windsor et boul. Édouard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4733310946314, - 45.5006766490844 - ] - } - }, - { - "id": "1151", - "code": "31151", - "data": { - "gtfs": { - "stop_id": "1151", - "stop_code": "31151", - "stop_name": "boul. Édouard et Windsor", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Édouard et Windsor", - "geography": { - "type": "Point", - "coordinates": [ - -73.4735782340584, - 45.5009426723236 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1585367775889 - }, - "name": "boul. Édouard et Windsor", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.473524146, - 45.500773909 - ] - }, - "is_frozen": false, - "integer_id": 54, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47225, - 45.499695 - ] - }, - "id": 55, - "properties": { - "id": "a44c12a5-9a53-4288-b77a-08bf3c4eaadc", - "code": "31049", - "data": { - "stops": [ - { - "id": "1049", - "code": "31049", - "data": { - "gtfs": { - "stop_id": "1049", - "stop_code": "31049", - "stop_name": "Windsor et Gustave-Désourdy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Windsor et Gustave-Désourdy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4724078396163, - 45.4997477877398 - ] - } - }, - { - "id": "1064", - "code": "31064", - "data": { - "gtfs": { - "stop_id": "1064", - "stop_code": "31064", - "stop_name": "Windsor et Gustave-Désourdy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Windsor et Gustave-Désourdy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4720914194483, - 45.4996422402077 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1403108724483 - }, - "name": "Windsor et Gustave-Désourdy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47224963, - 45.499695014 - ] - }, - "is_frozen": false, - "integer_id": 55, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.470975, - 45.498631 - ] - }, - "id": 56, - "properties": { - "id": "4a83802a-cebb-4e1a-b140-a3d386f52eae", - "code": "31050", - "data": { - "stops": [ - { - "id": "1050", - "code": "31050", - "data": { - "gtfs": { - "stop_id": "1050", - "stop_code": "31050", - "stop_name": "Windsor et Georges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Windsor et Georges", - "geography": { - "type": "Point", - "coordinates": [ - -73.4711252127621, - 45.4986676583624 - ] - } - }, - { - "id": "1063", - "code": "31063", - "data": { - "gtfs": { - "stop_id": "1063", - "stop_code": "31063", - "stop_name": "Windsor et Georges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Windsor et Georges", - "geography": { - "type": "Point", - "coordinates": [ - -73.4708240903837, - 45.498594407457 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1223379256674 - }, - "name": "Windsor et Georges", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.470974652, - 45.498631033 - ] - }, - "is_frozen": false, - "integer_id": 56, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468777, - 45.496804 - ] - }, - "id": 57, - "properties": { - "id": "5f4522a4-83cd-4392-9a71-d32067987a56", - "code": "31051", - "data": { - "stops": [ - { - "id": "1051", - "code": "31051", - "data": { - "gtfs": { - "stop_id": "1051", - "stop_code": "31051", - "stop_name": "Windsor et Holmes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Windsor et Holmes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4689517611139, - 45.4968584021237 - ] - } - }, - { - "id": "1061", - "code": "31061", - "data": { - "gtfs": { - "stop_id": "1061", - "stop_code": "31061", - "stop_name": "Windsor et Holmes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Windsor et Holmes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4686015538592, - 45.4967503251175 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0914838732756 - }, - "name": "Windsor et Holmes", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468776657, - 45.496804364 - ] - }, - "is_frozen": false, - "integer_id": 57, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467461, - 45.495676 - ] - }, - "id": 58, - "properties": { - "id": "2b94ffb1-8934-4ee0-a36c-60c433b4d09e", - "code": "31052", - "data": { - "stops": [ - { - "id": "1052", - "code": "31052", - "data": { - "gtfs": { - "stop_id": "1052", - "stop_code": "31052", - "stop_name": "Windsor et De Gaulle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Windsor et De Gaulle", - "geography": { - "type": "Point", - "coordinates": [ - -73.467653710129, - 45.4957107407099 - ] - } - }, - { - "id": "1060", - "code": "31060", - "data": { - "gtfs": { - "stop_id": "1060", - "stop_code": "31060", - "stop_name": "Windsor et De Gaulle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Windsor et De Gaulle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4672687328938, - 45.4956411828731 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0724256503208 - }, - "name": "Windsor et De Gaulle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.467461222, - 45.495675962 - ] - }, - "is_frozen": false, - "integer_id": 58, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469237, - 45.492152 - ] - }, - "id": 59, - "properties": { - "id": "acbbc4e1-8d5c-4e30-8e9f-b4f2de231387", - "code": "31054", - "data": { - "stops": [ - { - "id": "1054", - "code": "31054", - "data": { - "gtfs": { - "stop_id": "1054", - "stop_code": "31054", - "stop_name": "Montgomery et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montgomery et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.46918456458, - 45.4922917549981 - ] - } - }, - { - "id": "1808", - "code": "31808", - "data": { - "gtfs": { - "stop_id": "1808", - "stop_code": "31808", - "stop_name": "Grande Allée et Montgomery", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Montgomery", - "geography": { - "type": "Point", - "coordinates": [ - -73.4694721071149, - 45.4921523562708 - ] - } - }, - { - "id": "1848", - "code": "31848", - "data": { - "gtfs": { - "stop_id": "1848", - "stop_code": "31848", - "stop_name": "Grande Allée et Montgomery", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Montgomery", - "geography": { - "type": "Point", - "coordinates": [ - -73.4690027303779, - 45.4920125055707 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0129169391886 - }, - "name": "Montgomery et Grande Allée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469237419, - 45.49215213 - ] - }, - "is_frozen": false, - "integer_id": 59, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468262, - 45.491229 - ] - }, - "id": 60, - "properties": { - "id": "cee5ccf3-ece1-4350-8264-3c360d07d279", - "code": "31055", - "data": { - "stops": [ - { - "id": "1055", - "code": "31055", - "data": { - "gtfs": { - "stop_id": "1055", - "stop_code": "31055", - "stop_name": "Grande Allée et Pine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Pine", - "geography": { - "type": "Point", - "coordinates": [ - -73.4678686396273, - 45.4911125957091 - ] - } - }, - { - "id": "1809", - "code": "31809", - "data": { - "gtfs": { - "stop_id": "1809", - "stop_code": "31809", - "stop_name": "Grande Allée et Régent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Régent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4684188341274, - 45.4914399390471 - ] - } - }, - { - "id": "1847", - "code": "31847", - "data": { - "gtfs": { - "stop_id": "1847", - "stop_code": "31847", - "stop_name": "Grande Allée et Régent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Régent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4677364923684, - 45.4911700864465 - ] - } - }, - { - "id": "2900", - "code": "32900", - "data": { - "gtfs": { - "stop_id": "2900", - "stop_code": "32900", - "stop_name": "Régent et Mackay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Régent et Mackay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4687874501799, - 45.4910183667459 - ] - } - }, - { - "id": "2905", - "code": "32905", - "data": { - "gtfs": { - "stop_id": "2905", - "stop_code": "32905", - "stop_name": "Régent et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Régent et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4682280042508, - 45.4912251768415 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9973319907256 - }, - "name": "Grande Allée et Pine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468261971, - 45.491229153 - ] - }, - "is_frozen": false, - "integer_id": 60, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464052, - 45.492785 - ] - }, - "id": 61, - "properties": { - "id": "c369e9dc-cf92-48cf-bb8f-a258dbed5d8d", - "code": "31056", - "data": { - "stops": [ - { - "id": "1056", - "code": "31056", - "data": { - "gtfs": { - "stop_id": "1056", - "stop_code": "31056", - "stop_name": "Pine et Windsor", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pine et Windsor", - "geography": { - "type": "Point", - "coordinates": [ - -73.4640522096572, - 45.4927851697438 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0236065880581 - }, - "name": "Pine et Windsor", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46405221, - 45.49278517 - ] - }, - "is_frozen": false, - "integer_id": 61, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46971, - 45.497556 - ] - }, - "id": 62, - "properties": { - "id": "796a2647-8b16-4b22-808f-454e1bee3449", - "code": "31057", - "data": { - "stops": [ - { - "id": "1057", - "code": "31057", - "data": { - "gtfs": { - "stop_id": "1057", - "stop_code": "31057", - "stop_name": "Windsor et Godin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Windsor et Godin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4698953807871, - 45.4976505173754 - ] - } - }, - { - "id": "1062", - "code": "31062", - "data": { - "gtfs": { - "stop_id": "1062", - "stop_code": "31062", - "stop_name": "Windsor et Godin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Windsor et Godin", - "geography": { - "type": "Point", - "coordinates": [ - -73.469524535689, - 45.4974617442712 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1041815222743 - }, - "name": "Windsor et Godin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469709958, - 45.497556131 - ] - }, - "is_frozen": false, - "integer_id": 62, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464975, - 45.493761 - ] - }, - "id": 63, - "properties": { - "id": "3f687a06-b3d8-47a1-ba8d-00632eabcaf7", - "code": "31058", - "data": { - "stops": [ - { - "id": "1058", - "code": "31058", - "data": { - "gtfs": { - "stop_id": "1058", - "stop_code": "31058", - "stop_name": "Windsor et Walnut", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Windsor et Walnut", - "geography": { - "type": "Point", - "coordinates": [ - -73.4649749953546, - 45.4937606260771 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0400790444868 - }, - "name": "Windsor et Walnut", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464974995, - 45.493760626 - ] - }, - "is_frozen": false, - "integer_id": 63, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465821, - 45.494345 - ] - }, - "id": 64, - "properties": { - "id": "c988f5aa-9ab5-48a6-898c-21c53961d2f3", - "code": "31059", - "data": { - "stops": [ - { - "id": "1059", - "code": "31059", - "data": { - "gtfs": { - "stop_id": "1059", - "stop_code": "31059", - "stop_name": "Windsor et Roosevelt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Windsor et Roosevelt", - "geography": { - "type": "Point", - "coordinates": [ - -73.4659453574987, - 45.4945584435086 - ] - } - }, - { - "id": "2899", - "code": "32899", - "data": { - "gtfs": { - "stop_id": "2899", - "stop_code": "32899", - "stop_name": "Montgomery et Windsor", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montgomery et Windsor", - "geography": { - "type": "Point", - "coordinates": [ - -73.4656969606939, - 45.4943907254776 - ] - } - }, - { - "id": "2906", - "code": "32906", - "data": { - "gtfs": { - "stop_id": "2906", - "stop_code": "32906", - "stop_name": "Montgomery et Windsor", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montgomery et Windsor", - "geography": { - "type": "Point", - "coordinates": [ - -73.4657716239398, - 45.4941324106406 - ] - } - }, - { - "id": "4692", - "code": "34692", - "data": { - "gtfs": { - "stop_id": "4692", - "stop_code": "34692", - "stop_name": "Windsor et Montgomery", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Windsor et Montgomery", - "geography": { - "type": "Point", - "coordinates": [ - -73.4658779919021, - 45.4942860971982 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0499549433541 - }, - "name": "Windsor et Roosevelt", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465821159, - 45.494345427 - ] - }, - "is_frozen": false, - "integer_id": 64, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.489406, - 45.490404 - ] - }, - "id": 65, - "properties": { - "id": "5573bb7b-19f0-4d2b-a66d-9f04f87c1987", - "code": "31074", - "data": { - "stops": [ - { - "id": "1074", - "code": "31074", - "data": { - "gtfs": { - "stop_id": "1074", - "stop_code": "31074", - "stop_name": "boul. Churchill et Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Churchill et Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4894056756934, - 45.4904040956367 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9834011138572 - }, - "name": "boul. Churchill et Hubert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.489405676, - 45.490404096 - ] - }, - "is_frozen": false, - "integer_id": 65, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.497528, - 45.493311 - ] - }, - "id": 66, - "properties": { - "id": "1cedf968-65c8-4c0f-b92c-c06da7b8fe69", - "code": "31075", - "data": { - "stops": [ - { - "id": "1075", - "code": "31075", - "data": { - "gtfs": { - "stop_id": "1075", - "stop_code": "31075", - "stop_name": "av. Victoria et av. de Rothesay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et av. de Rothesay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4975276249706, - 45.4933106017372 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0324794158988 - }, - "name": "av. Victoria et av. de Rothesay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.497527625, - 45.493310602 - ] - }, - "is_frozen": false, - "integer_id": 66, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.507201, - 45.499713 - ] - }, - "id": 67, - "properties": { - "id": "0ac44bed-6f37-406e-8654-f8d5f36c840e", - "code": "31079", - "data": { - "stops": [ - { - "id": "1079", - "code": "31079", - "data": { - "gtfs": { - "stop_id": "1079", - "stop_code": "31079", - "stop_name": "av. Victoria et GARE SAINT-LAMBERT", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et GARE SAINT-LAMBERT", - "geography": { - "type": "Point", - "coordinates": [ - -73.5072007069933, - 45.4997125490617 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1406070850674 - }, - "name": "av. Victoria et GARE SAINT-LAMBERT", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507200707, - 45.499712549 - ] - }, - "is_frozen": false, - "integer_id": 67, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.510375, - 45.501068 - ] - }, - "id": 68, - "properties": { - "id": "443288e2-2ae9-4c97-a015-0e176d8f71b2", - "code": "31080", - "data": { - "stops": [ - { - "id": "1080", - "code": "31080", - "data": { - "gtfs": { - "stop_id": "1080", - "stop_code": "31080", - "stop_name": "av. Victoria et TAYLOR", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et TAYLOR", - "geography": { - "type": "Point", - "coordinates": [ - -73.5103746047388, - 45.5010682528898 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1635093466024 - }, - "name": "av. Victoria et TAYLOR", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.510374605, - 45.501068253 - ] - }, - "is_frozen": false, - "integer_id": 68, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.503396, - 45.511528 - ] - }, - "id": 69, - "properties": { - "id": "0f0a758f-b2db-4611-9b64-d413bfce8846", - "code": "31081", - "data": { - "stops": [ - { - "id": "1081", - "code": "31081", - "data": { - "gtfs": { - "stop_id": "1081", - "stop_code": "31081", - "stop_name": "ch. Tiffin et Boudreau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et Boudreau", - "geography": { - "type": "Point", - "coordinates": [ - -73.5034076677968, - 45.5114075667887 - ] - } - }, - { - "id": "1104", - "code": "31104", - "data": { - "gtfs": { - "stop_id": "1104", - "stop_code": "31104", - "stop_name": "ch. Tiffin et Boudreau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et Boudreau", - "geography": { - "type": "Point", - "coordinates": [ - -73.503302408273, - 45.511561506698 - ] - } - }, - { - "id": "5467", - "code": "30214", - "data": { - "gtfs": { - "stop_id": "5467", - "stop_code": "30214", - "stop_name": "Boudreau et ch. Tiffin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Boudreau et ch. Tiffin", - "geography": { - "type": "Point", - "coordinates": [ - -73.5034888428141, - 45.511649213223 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3402701729241 - }, - "name": "ch. Tiffin et Boudreau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.503395626, - 45.51152839 - ] - }, - "is_frozen": false, - "integer_id": 69, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.500784, - 45.510605 - ] - }, - "id": 70, - "properties": { - "id": "a73a9d8f-0a4d-4f45-8ed5-05aa8ce7acde", - "code": "31082", - "data": { - "stops": [ - { - "id": "1082", - "code": "31082", - "data": { - "gtfs": { - "stop_id": "1082", - "stop_code": "31082", - "stop_name": "ch. Tiffin et Laforest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et Laforest", - "geography": { - "type": "Point", - "coordinates": [ - -73.5009738440636, - 45.5105799839992 - ] - } - }, - { - "id": "1101", - "code": "31101", - "data": { - "gtfs": { - "stop_id": "1101", - "stop_code": "31101", - "stop_name": "ch. Tiffin et Laforest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et Laforest", - "geography": { - "type": "Point", - "coordinates": [ - -73.5005936287037, - 45.5106297847545 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3246603687917 - }, - "name": "ch. Tiffin et Laforest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.500783736, - 45.510604884 - ] - }, - "is_frozen": false, - "integer_id": 70, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.498342, - 45.509789 - ] - }, - "id": 71, - "properties": { - "id": "a331dc32-b29f-4455-9199-5b289acc7d53", - "code": "31083", - "data": { - "stops": [ - { - "id": "1083", - "code": "31083", - "data": { - "gtfs": { - "stop_id": "1083", - "stop_code": "31083", - "stop_name": "ch. Tiffin et Jean-Bariteau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et Jean-Bariteau", - "geography": { - "type": "Point", - "coordinates": [ - -73.498338392814, - 45.5097062241792 - ] - } - }, - { - "id": "1100", - "code": "31100", - "data": { - "gtfs": { - "stop_id": "1100", - "stop_code": "31100", - "stop_name": "ch. Tiffin et Jean-Bariteau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et Jean-Bariteau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4983446692782, - 45.5098708467573 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3108624464946 - }, - "name": "ch. Tiffin et Jean-Bariteau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.498341531, - 45.509788535 - ] - }, - "is_frozen": false, - "integer_id": 71, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.496841, - 45.508145 - ] - }, - "id": 72, - "properties": { - "id": "f31baed5-09fe-46fd-9f4a-0a7da7aeef56", - "code": "31084", - "data": { - "stops": [ - { - "id": "1084", - "code": "31084", - "data": { - "gtfs": { - "stop_id": "1084", - "stop_code": "31084", - "stop_name": "Saint-Georges et Saint-Thomas", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Georges et Saint-Thomas", - "geography": { - "type": "Point", - "coordinates": [ - -73.4970204955943, - 45.5082499739596 - ] - } - }, - { - "id": "1099", - "code": "31099", - "data": { - "gtfs": { - "stop_id": "1099", - "stop_code": "31099", - "stop_name": "Saint-Georges et Saint-Thomas", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Georges et Saint-Thomas", - "geography": { - "type": "Point", - "coordinates": [ - -73.4966618821991, - 45.5080405050702 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2830892908614 - }, - "name": "Saint-Georges et Saint-Thomas", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.496841189, - 45.50814524 - ] - }, - "is_frozen": false, - "integer_id": 72, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.495007, - 45.505696 - ] - }, - "id": 73, - "properties": { - "id": "9158bca7-e437-40a4-83b0-5632dd53d6ee", - "code": "31085", - "data": { - "stops": [ - { - "id": "1085", - "code": "31085", - "data": { - "gtfs": { - "stop_id": "1085", - "stop_code": "31085", - "stop_name": "Saint-Georges et av. de l'Église", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Georges et av. de l'Église", - "geography": { - "type": "Point", - "coordinates": [ - -73.4951629641124, - 45.5057611964879 - ] - } - }, - { - "id": "1098", - "code": "31098", - "data": { - "gtfs": { - "stop_id": "1098", - "stop_code": "31098", - "stop_name": "Saint-Georges et av. de l'Église", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Georges et av. de l'Église", - "geography": { - "type": "Point", - "coordinates": [ - -73.4948509618677, - 45.5056300820815 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2416933052763 - }, - "name": "Saint-Georges et av. de l'Église", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.495006963, - 45.505695639 - ] - }, - "is_frozen": false, - "integer_id": 73, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492702, - 45.502567 - ] - }, - "id": 74, - "properties": { - "id": "433424db-8ed2-48db-aa2a-385d6850eb86", - "code": "31087", - "data": { - "stops": [ - { - "id": "1087", - "code": "31087", - "data": { - "gtfs": { - "stop_id": "1087", - "stop_code": "31087", - "stop_name": "Saint-Georges et Saint-Louis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Georges et Saint-Louis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4927016261865, - 45.5025673966004 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.188836681714 - }, - "name": "Saint-Georges et Saint-Louis", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492701626, - 45.502567397 - ] - }, - "is_frozen": false, - "integer_id": 74, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491872, - 45.502339 - ] - }, - "id": 75, - "properties": { - "id": "dbf189ce-b09f-4cff-a75f-31e014aad97b", - "code": "31096", - "data": { - "stops": [ - { - "id": "1096", - "code": "31096", - "data": { - "gtfs": { - "stop_id": "1096", - "stop_code": "31096", - "stop_name": "Saint-Georges et boul. Sir-Wilfrid-Laurier - (116) est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Georges et boul. Sir-Wilfrid-Laurier - (116) est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4918719887114, - 45.5023386337543 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1849717087576 - }, - "name": "Saint-Georges et boul. Sir-Wilfrid-Laurier - (116) est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491871989, - 45.502338634 - ] - }, - "is_frozen": false, - "integer_id": 75, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.515029, - 45.519268 - ] - }, - "id": 76, - "properties": { - "id": "b9da7594-0d90-4be5-8a31-2e062ec4b5ae", - "code": "31107", - "data": { - "stops": [ - { - "id": "1107", - "code": "31107", - "data": { - "gtfs": { - "stop_id": "1107", - "stop_code": "31107", - "stop_name": "boul. La Fayette et de la Providence", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et de la Providence", - "geography": { - "type": "Point", - "coordinates": [ - -73.5150293430582, - 45.5192680932229 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4711224048073 - }, - "name": "boul. La Fayette et de la Providence", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.515029343, - 45.519268093 - ] - }, - "is_frozen": false, - "integer_id": 76, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.504807, - 45.51379 - ] - }, - "id": 77, - "properties": { - "id": "4ed2a7ab-646c-4d2e-9a17-052ac0f12b62", - "code": "31109", - "data": { - "stops": [ - { - "id": "1109", - "code": "31109", - "data": { - "gtfs": { - "stop_id": "1109", - "stop_code": "31109", - "stop_name": "boul. Taschereau et boul. Desaulniers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et boul. Desaulniers", - "geography": { - "type": "Point", - "coordinates": [ - -73.5048072979009, - 45.5137902248029 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3785046443724 - }, - "name": "boul. Taschereau et boul. Desaulniers", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.504807298, - 45.513790225 - ] - }, - "is_frozen": false, - "integer_id": 77, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.487666, - 45.500712 - ] - }, - "id": 78, - "properties": { - "id": "bcd0a901-5384-443e-9be4-1f0faa123ccb", - "code": "31110", - "data": { - "stops": [ - { - "id": "1110", - "code": "31110", - "data": { - "gtfs": { - "stop_id": "1110", - "stop_code": "31110", - "stop_name": "boul. Taschereau et King-Edward", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et King-Edward", - "geography": { - "type": "Point", - "coordinates": [ - -73.4876660115796, - 45.5007122087732 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1574944440225 - }, - "name": "boul. Taschereau et King-Edward", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.487666012, - 45.500712209 - ] - }, - "is_frozen": false, - "integer_id": 78, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.49972, - 45.512272 - ] - }, - "id": 79, - "properties": { - "id": "741876fc-030a-42f6-a33a-8f1f9c2aba12", - "code": "31111", - "data": { - "stops": [ - { - "id": "1111", - "code": "31111", - "data": { - "gtfs": { - "stop_id": "1111", - "stop_code": "31111", - "stop_name": "boul. Taschereau et Laforest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Laforest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4997204289479, - 45.5122724289729 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3528470410797 - }, - "name": "boul. Taschereau et Laforest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.499720429, - 45.512272429 - ] - }, - "is_frozen": false, - "integer_id": 79, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.498266, - 45.511804 - ] - }, - "id": 80, - "properties": { - "id": "688a3f67-a176-441e-a399-c92a55de9c74", - "code": "31112", - "data": { - "stops": [ - { - "id": "1112", - "code": "31112", - "data": { - "gtfs": { - "stop_id": "1112", - "stop_code": "31112", - "stop_name": "boul. Taschereau et Passerelle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Passerelle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4982664852053, - 45.5118040180129 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3449291951607 - }, - "name": "boul. Taschereau et Passerelle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.498266485, - 45.511804018 - ] - }, - "is_frozen": false, - "integer_id": 80, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491953, - 45.508648 - ] - }, - "id": 81, - "properties": { - "id": "37199bb2-9740-4484-b68f-12d3c82f8bf9", - "code": "31113", - "data": { - "stops": [ - { - "id": "1113", - "code": "31113", - "data": { - "gtfs": { - "stop_id": "1113", - "stop_code": "31113", - "stop_name": "boul. Taschereau et av. de l'Église", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et av. de l'Église", - "geography": { - "type": "Point", - "coordinates": [ - -73.4919530404916, - 45.5086481057116 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.291587920851 - }, - "name": "boul. Taschereau et av. de l'Église", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.49195304, - 45.508648106 - ] - }, - "is_frozen": false, - "integer_id": 81, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483745, - 45.497054 - ] - }, - "id": 82, - "properties": { - "id": "b2075e72-f3b5-420a-b22b-99e7608c7c0a", - "code": "31114", - "data": { - "stops": [ - { - "id": "1114", - "code": "31114", - "data": { - "gtfs": { - "stop_id": "1114", - "stop_code": "31114", - "stop_name": "Mary et boul. Taschereau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Mary et boul. Taschereau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4837454007708, - 45.4970541586367 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0957029561853 - }, - "name": "Mary et boul. Taschereau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483745401, - 45.497054159 - ] - }, - "is_frozen": false, - "integer_id": 82, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482634, - 45.49794 - ] - }, - "id": 83, - "properties": { - "id": "bfa9c4ea-bb50-4719-9f47-76d97f83ac6b", - "code": "31115", - "data": { - "stops": [ - { - "id": "1115", - "code": "31115", - "data": { - "gtfs": { - "stop_id": "1115", - "stop_code": "31115", - "stop_name": "boul. Marie et Mance", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie et Mance", - "geography": { - "type": "Point", - "coordinates": [ - -73.4826526764364, - 45.4978138486163 - ] - } - }, - { - "id": "1154", - "code": "31154", - "data": { - "gtfs": { - "stop_id": "1154", - "stop_code": "31154", - "stop_name": "boul. Marie et Mance", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie et Mance", - "geography": { - "type": "Point", - "coordinates": [ - -73.4826156278988, - 45.4980660197193 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.110664304204 - }, - "name": "boul. Marie et Mance", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482634152, - 45.497939934 - ] - }, - "is_frozen": false, - "integer_id": 83, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.480404, - 45.499478 - ] - }, - "id": 84, - "properties": { - "id": "47ef73cf-7799-46e3-b2f1-76a6533f7746", - "code": "31116", - "data": { - "stops": [ - { - "id": "1116", - "code": "31116", - "data": { - "gtfs": { - "stop_id": "1116", - "stop_code": "31116", - "stop_name": "boul. Marie et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4805239846036, - 45.4993367852819 - ] - } - }, - { - "id": "1153", - "code": "31153", - "data": { - "gtfs": { - "stop_id": "1153", - "stop_code": "31153", - "stop_name": "boul. Marie et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.48044852806, - 45.4996183937409 - ] - } - }, - { - "id": "1855", - "code": "31855", - "data": { - "gtfs": { - "stop_id": "1855", - "stop_code": "31855", - "stop_name": "Grande Allée et boul. Marie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et boul. Marie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4802845525818, - 45.4994794657026 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1366380276282 - }, - "name": "boul. Marie et Grande Allée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.480404269, - 45.49947759 - ] - }, - "is_frozen": false, - "integer_id": 84, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.4766, - 45.501595 - ] - }, - "id": 85, - "properties": { - "id": "9da3ecd5-fea1-433e-9a38-142aeff3882d", - "code": "31117", - "data": { - "stops": [ - { - "id": "1117", - "code": "31117", - "data": { - "gtfs": { - "stop_id": "1117", - "stop_code": "31117", - "stop_name": "boul. Marie et William", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie et William", - "geography": { - "type": "Point", - "coordinates": [ - -73.4768460867294, - 45.5016128018709 - ] - } - }, - { - "id": "1152", - "code": "31152", - "data": { - "gtfs": { - "stop_id": "1152", - "stop_code": "31152", - "stop_name": "William et boul. Marie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "William et boul. Marie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4763540024737, - 45.501576381595 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1724013694464 - }, - "name": "boul. Marie et William", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.476600045, - 45.501594592 - ] - }, - "is_frozen": false, - "integer_id": 85, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.471131, - 45.502294 - ] - }, - "id": 86, - "properties": { - "id": "dbae3900-2b78-4309-9fa5-5503ae30ad22", - "code": "31119", - "data": { - "stops": [ - { - "id": "1119", - "code": "31119", - "data": { - "gtfs": { - "stop_id": "1119", - "stop_code": "31119", - "stop_name": "boul. Édouard et place Édouard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Édouard et place Édouard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4711370357057, - 45.5021365578321 - ] - } - }, - { - "id": "1150", - "code": "31150", - "data": { - "gtfs": { - "stop_id": "1150", - "stop_code": "31150", - "stop_name": "boul. Édouard et des Émeraudes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Édouard et des Émeraudes", - "geography": { - "type": "Point", - "coordinates": [ - -73.471124713547, - 45.5024505486849 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1842100664065 - }, - "name": "boul. Édouard et place Édouard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.471130875, - 45.502293553 - ] - }, - "is_frozen": false, - "integer_id": 86, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469702, - 45.503029 - ] - }, - "id": 87, - "properties": { - "id": "5b1f9db8-9fc7-4028-9f92-fd33d2f419e7", - "code": "31120", - "data": { - "stops": [ - { - "id": "1120", - "code": "31120", - "data": { - "gtfs": { - "stop_id": "1120", - "stop_code": "31120", - "stop_name": "boul. Édouard et Elizabeth", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Édouard et Elizabeth", - "geography": { - "type": "Point", - "coordinates": [ - -73.4697020503422, - 45.5030292877143 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1966405166719 - }, - "name": "boul. Édouard et Elizabeth", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46970205, - 45.503029288 - ] - }, - "is_frozen": false, - "integer_id": 87, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468232, - 45.502076 - ] - }, - "id": 88, - "properties": { - "id": "4eccaf85-f33a-48ee-9da6-dcfe033b0d6b", - "code": "31121", - "data": { - "stops": [ - { - "id": "1121", - "code": "31121", - "data": { - "gtfs": { - "stop_id": "1121", - "stop_code": "31121", - "stop_name": "Elizabeth et Gustave-Désourdy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Elizabeth et Gustave-Désourdy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4683722527285, - 45.5020863344156 - ] - } - }, - { - "id": "1148", - "code": "31148", - "data": { - "gtfs": { - "stop_id": "1148", - "stop_code": "31148", - "stop_name": "Elizabeth et Gustave-Désourdy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Elizabeth et Gustave-Désourdy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4680913865008, - 45.502064918324 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1805282207741 - }, - "name": "Elizabeth et Gustave-Désourdy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46823182, - 45.502075626 - ] - }, - "is_frozen": false, - "integer_id": 88, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461617, - 45.501755 - ] - }, - "id": 89, - "properties": { - "id": "a9f1d99e-bf04-4b49-b1db-c78a4ded2ef2", - "code": "31123", - "data": { - "stops": [ - { - "id": "1123", - "code": "31123", - "data": { - "gtfs": { - "stop_id": "1123", - "stop_code": "31123", - "stop_name": "Alexandra et Stratton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Alexandra et Stratton", - "geography": { - "type": "Point", - "coordinates": [ - -73.4617600789158, - 45.501686289148 - ] - } - }, - { - "id": "1145", - "code": "31145", - "data": { - "gtfs": { - "stop_id": "1145", - "stop_code": "31145", - "stop_name": "Stratton et Alexandra", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Stratton et Alexandra", - "geography": { - "type": "Point", - "coordinates": [ - -73.461474006017, - 45.5018232616445 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.175107565736 - }, - "name": "Alexandra et Stratton", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461617042, - 45.501754775 - ] - }, - "is_frozen": false, - "integer_id": 89, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45919, - 45.500709 - ] - }, - "id": 90, - "properties": { - "id": "94bed3c4-1477-44c8-bcf4-cffdc71aa54c", - "code": "31124", - "data": { - "stops": [ - { - "id": "1124", - "code": "31124", - "data": { - "gtfs": { - "stop_id": "1124", - "stop_code": "31124", - "stop_name": "Joubert et De Gaulle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joubert et De Gaulle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4593822376129, - 45.5006797360069 - ] - } - }, - { - "id": "1143", - "code": "31143", - "data": { - "gtfs": { - "stop_id": "1143", - "stop_code": "31143", - "stop_name": "De Gaulle et Joubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Gaulle et Joubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4589984745777, - 45.5007381841096 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.157439556892 - }, - "name": "Joubert et De Gaulle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459190356, - 45.50070896 - ] - }, - "is_frozen": false, - "integer_id": 90, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457577, - 45.501375 - ] - }, - "id": 91, - "properties": { - "id": "bb534923-0939-4ebc-88f8-39847999c548", - "code": "31125", - "data": { - "stops": [ - { - "id": "1125", - "code": "31125", - "data": { - "gtfs": { - "stop_id": "1125", - "stop_code": "31125", - "stop_name": "De Gaulle et Diane", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Gaulle et Diane", - "geography": { - "type": "Point", - "coordinates": [ - -73.4576883340667, - 45.5013253022467 - ] - } - }, - { - "id": "1142", - "code": "31142", - "data": { - "gtfs": { - "stop_id": "1142", - "stop_code": "31142", - "stop_name": "Diane et De Gaulle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Diane et De Gaulle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4574660735327, - 45.5014240090001 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1686857190427 - }, - "name": "De Gaulle et Diane", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457577204, - 45.501374656 - ] - }, - "is_frozen": false, - "integer_id": 91, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45578, - 45.500243 - ] - }, - "id": 92, - "properties": { - "id": "800a1d6c-4d5b-4560-b691-99e1b0db1343", - "code": "31126", - "data": { - "stops": [ - { - "id": "1126", - "code": "31126", - "data": { - "gtfs": { - "stop_id": "1126", - "stop_code": "31126", - "stop_name": "Diane et Montgomery", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Diane et Montgomery", - "geography": { - "type": "Point", - "coordinates": [ - -73.4560031416748, - 45.5003545408673 - ] - } - }, - { - "id": "1141", - "code": "31141", - "data": { - "gtfs": { - "stop_id": "1141", - "stop_code": "31141", - "stop_name": "Montgomery et Diane", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montgomery et Diane", - "geography": { - "type": "Point", - "coordinates": [ - -73.4555559550505, - 45.5003289417779 - ] - } - }, - { - "id": "2910", - "code": "32910", - "data": { - "gtfs": { - "stop_id": "2910", - "stop_code": "32910", - "stop_name": "Montgomery et Diane", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montgomery et Diane", - "geography": { - "type": "Point", - "coordinates": [ - -73.4557341134123, - 45.5001323492642 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1495754549501 - }, - "name": "Diane et Montgomery", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455779548, - 45.500243445 - ] - }, - "is_frozen": false, - "integer_id": 92, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458263, - 45.498706 - ] - }, - "id": 93, - "properties": { - "id": "e827aa2c-577c-4249-9fc7-9a6572084b69", - "code": "31127", - "data": { - "stops": [ - { - "id": "1127", - "code": "31127", - "data": { - "gtfs": { - "stop_id": "1127", - "stop_code": "31127", - "stop_name": "Montgomery et Arthur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montgomery et Arthur", - "geography": { - "type": "Point", - "coordinates": [ - -73.4581764398747, - 45.498850428268 - ] - } - }, - { - "id": "2909", - "code": "32909", - "data": { - "gtfs": { - "stop_id": "2909", - "stop_code": "32909", - "stop_name": "Montgomery et Arthur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montgomery et Arthur", - "geography": { - "type": "Point", - "coordinates": [ - -73.4583502318908, - 45.4985611857132 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1236009878008 - }, - "name": "Montgomery et Arthur", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.458263336, - 45.498705807 - ] - }, - "is_frozen": false, - "integer_id": 93, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460177, - 45.497487 - ] - }, - "id": 94, - "properties": { - "id": "12181a0a-32eb-4333-b444-1760ecaa417c", - "code": "31128", - "data": { - "stops": [ - { - "id": "1128", - "code": "31128", - "data": { - "gtfs": { - "stop_id": "1128", - "stop_code": "31128", - "stop_name": "Edgar et Montgomery", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Edgar et Montgomery", - "geography": { - "type": "Point", - "coordinates": [ - -73.4601096202027, - 45.4972358820559 - ] - } - }, - { - "id": "2897", - "code": "32897", - "data": { - "gtfs": { - "stop_id": "2897", - "stop_code": "32897", - "stop_name": "Montgomery et Edgar", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montgomery et Edgar", - "geography": { - "type": "Point", - "coordinates": [ - -73.4600424536699, - 45.4977376961295 - ] - } - }, - { - "id": "2908", - "code": "32908", - "data": { - "gtfs": { - "stop_id": "2908", - "stop_code": "32908", - "stop_name": "Montgomery et Edgar", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montgomery et Edgar", - "geography": { - "type": "Point", - "coordinates": [ - -73.4603122730115, - 45.4973790080338 - ] - } - }, - { - "id": "4755", - "code": "34755", - "data": { - "gtfs": { - "stop_id": "4755", - "stop_code": "34755", - "stop_name": "Edgar et Montgomery", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Edgar et Montgomery", - "geography": { - "type": "Point", - "coordinates": [ - -73.4600750900254, - 45.4974671676758 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1030102867705 - }, - "name": "Edgar et Montgomery", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.460177363, - 45.497486789 - ] - }, - "is_frozen": false, - "integer_id": 94, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460297, - 45.495001 - ] - }, - "id": 95, - "properties": { - "id": "0689eff9-8438-4b1c-9e3a-78c672f6ef82", - "code": "31129", - "data": { - "stops": [ - { - "id": "1129", - "code": "31129", - "data": { - "gtfs": { - "stop_id": "1129", - "stop_code": "31129", - "stop_name": "Edgar et Kennedy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Edgar et Kennedy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4603918291199, - 45.4951100571404 - ] - } - }, - { - "id": "4754", - "code": "34754", - "data": { - "gtfs": { - "stop_id": "4754", - "stop_code": "34754", - "stop_name": "Edgar et Kennedy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Edgar et Kennedy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4602021878781, - 45.4948919517539 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0610264422744 - }, - "name": "Edgar et Kennedy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.460297008, - 45.495001004 - ] - }, - "is_frozen": false, - "integer_id": 95, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45982, - 45.493633 - ] - }, - "id": 96, - "properties": { - "id": "3c0294df-b0e7-4be1-af27-4b755f5639ad", - "code": "31130", - "data": { - "stops": [ - { - "id": "1130", - "code": "31130", - "data": { - "gtfs": { - "stop_id": "1130", - "stop_code": "31130", - "stop_name": "Edgar et Gauthier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Edgar et Gauthier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4599926058524, - 45.4937837066591 - ] - } - }, - { - "id": "4753", - "code": "34753", - "data": { - "gtfs": { - "stop_id": "4753", - "stop_code": "34753", - "stop_name": "Edgar et Gauthier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Edgar et Gauthier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4596483893916, - 45.4934820350881 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0379216066837 - }, - "name": "Edgar et Gauthier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459820498, - 45.493632871 - ] - }, - "is_frozen": false, - "integer_id": 96, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459131, - 45.492701 - ] - }, - "id": 97, - "properties": { - "id": "912a81e5-66f7-4af9-8125-ae16515fe284", - "code": "31131", - "data": { - "stops": [ - { - "id": "1131", - "code": "31131", - "data": { - "gtfs": { - "stop_id": "1131", - "stop_code": "31131", - "stop_name": "Edgar et Murray", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Edgar et Murray", - "geography": { - "type": "Point", - "coordinates": [ - -73.4591313995214, - 45.4927010156368 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0221855250703 - }, - "name": "Edgar et Murray", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.4591314, - 45.492701016 - ] - }, - "is_frozen": false, - "integer_id": 97, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457872, - 45.490893 - ] - }, - "id": 98, - "properties": { - "id": "504ca07a-925d-4f9a-9b79-37177c38a6d1", - "code": "31133", - "data": { - "stops": [ - { - "id": "1133", - "code": "31133", - "data": { - "gtfs": { - "stop_id": "1133", - "stop_code": "31133", - "stop_name": "9e Avenue et Soucy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "9e Avenue et Soucy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4578720068467, - 45.4908933835896 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9916625438102 - }, - "name": "9e Avenue et Soucy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457872007, - 45.490893384 - ] - }, - "is_frozen": false, - "integer_id": 98, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454807, - 45.492607 - ] - }, - "id": 99, - "properties": { - "id": "923afb03-b5b7-44ed-a97d-4785d2468e97", - "code": "31134", - "data": { - "stops": [ - { - "id": "1134", - "code": "31134", - "data": { - "gtfs": { - "stop_id": "1134", - "stop_code": "31134", - "stop_name": "Soucy et 8e Avenue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Soucy et 8e Avenue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4547689109325, - 45.4924870109032 - ] - } - }, - { - "id": "2893", - "code": "32893", - "data": { - "gtfs": { - "stop_id": "2893", - "stop_code": "32893", - "stop_name": "Soucy et 8e Avenue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Soucy et 8e Avenue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4547072687931, - 45.4927278560028 - ] - } - }, - { - "id": "2916", - "code": "32916", - "data": { - "gtfs": { - "stop_id": "2916", - "stop_code": "32916", - "stop_name": "8e Avenue et Soucy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "8e Avenue et Soucy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4549076434716, - 45.4926469492563 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0206052470666 - }, - "name": "Soucy et 8e Avenue", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454807456, - 45.492607433 - ] - }, - "is_frozen": false, - "integer_id": 99, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451974, - 45.494548 - ] - }, - "id": 100, - "properties": { - "id": "43297c29-6e25-4fbe-a1b6-70a1ce96533d", - "code": "31135", - "data": { - "stops": [ - { - "id": "1135", - "code": "31135", - "data": { - "gtfs": { - "stop_id": "1135", - "stop_code": "31135", - "stop_name": "Soucy et 7e Avenue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Soucy et 7e Avenue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4517999259104, - 45.4942773989221 - ] - } - }, - { - "id": "2892", - "code": "32892", - "data": { - "gtfs": { - "stop_id": "2892", - "stop_code": "32892", - "stop_name": "Soucy et 7e Avenue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Soucy et 7e Avenue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4517446787605, - 45.4945173335033 - ] - } - }, - { - "id": "5922", - "code": "30800", - "data": { - "gtfs": { - "stop_id": "5922", - "stop_code": "30800", - "stop_name": "7e Avenue et Balmoral", - "location_type": 0, - "parent_station": "" - } - }, - "name": "7e Avenue et Balmoral", - "geography": { - "type": "Point", - "coordinates": [ - -73.452202382235, - 45.4948181414412 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0533721065054 - }, - "name": "Soucy et 7e Avenue", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45197353, - 45.49454777 - ] - }, - "is_frozen": false, - "integer_id": 100, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449025, - 45.496026 - ] - }, - "id": 101, - "properties": { - "id": "c6b0edc5-b07e-4471-93c5-2b6117d67602", - "code": "31136", - "data": { - "stops": [ - { - "id": "1136", - "code": "31136", - "data": { - "gtfs": { - "stop_id": "1136", - "stop_code": "31136", - "stop_name": "Soucy et 6e Avenue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Soucy et 6e Avenue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4488114325509, - 45.496046287781 - ] - } - }, - { - "id": "2891", - "code": "32891", - "data": { - "gtfs": { - "stop_id": "2891", - "stop_code": "32891", - "stop_name": "Soucy et 6e Avenue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Soucy et 6e Avenue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4492383951095, - 45.4960054895116 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0783356452184 - }, - "name": "Soucy et 6e Avenue", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449024914, - 45.496025889 - ] - }, - "is_frozen": false, - "integer_id": 101, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44746, - 45.496977 - ] - }, - "id": 102, - "properties": { - "id": "e49c515c-3414-4a88-aaec-43f9499177ec", - "code": "31137", - "data": { - "stops": [ - { - "id": "1137", - "code": "31137", - "data": { - "gtfs": { - "stop_id": "1137", - "stop_code": "31137", - "stop_name": "Soucy et boul. Maricourt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Soucy et boul. Maricourt", - "geography": { - "type": "Point", - "coordinates": [ - -73.4476753479867, - 45.4967219167785 - ] - } - }, - { - "id": "2890", - "code": "32890", - "data": { - "gtfs": { - "stop_id": "2890", - "stop_code": "32890", - "stop_name": "Soucy et boul. Maricourt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Soucy et boul. Maricourt", - "geography": { - "type": "Point", - "coordinates": [ - -73.4472452336979, - 45.4972328735294 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0944063923777 - }, - "name": "Soucy et boul. Maricourt", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447460291, - 45.496977395 - ] - }, - "is_frozen": false, - "integer_id": 102, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46073, - 45.501908 - ] - }, - "id": 103, - "properties": { - "id": "b413fbdd-7e9a-4ce8-851e-787df6d3c3ee", - "code": "31144", - "data": { - "stops": [ - { - "id": "1144", - "code": "31144", - "data": { - "gtfs": { - "stop_id": "1144", - "stop_code": "31144", - "stop_name": "Joubert et Stratton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joubert et Stratton", - "geography": { - "type": "Point", - "coordinates": [ - -73.4607480710062, - 45.5020344776593 - ] - } - }, - { - "id": "3771", - "code": "33771", - "data": { - "gtfs": { - "stop_id": "3771", - "stop_code": "33771", - "stop_name": "Joubert et Holmes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joubert et Holmes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4607117806852, - 45.5017823408144 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1777031420269 - }, - "name": "Joubert et Stratton", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.460729926, - 45.501908409 - ] - }, - "is_frozen": false, - "integer_id": 103, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463166, - 45.502938 - ] - }, - "id": 104, - "properties": { - "id": "e2ff15cb-8736-4d3b-91e2-a62059ad5b25", - "code": "31146", - "data": { - "stops": [ - { - "id": "1146", - "code": "31146", - "data": { - "gtfs": { - "stop_id": "1146", - "stop_code": "31146", - "stop_name": "Alexandra et Georges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Alexandra et Georges", - "geography": { - "type": "Point", - "coordinates": [ - -73.463214137482, - 45.5030923018296 - ] - } - }, - { - "id": "4892", - "code": "34892", - "data": { - "gtfs": { - "stop_id": "4892", - "stop_code": "34892", - "stop_name": "Alexandra et Georges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Alexandra et Georges", - "geography": { - "type": "Point", - "coordinates": [ - -73.4631176735562, - 45.5027839700998 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.195100451787 - }, - "name": "Alexandra et Georges", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463165906, - 45.502938136 - ] - }, - "is_frozen": false, - "integer_id": 104, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.484049, - 45.496893 - ] - }, - "id": 105, - "properties": { - "id": "fd062866-a8eb-4466-b53a-6adf8fc3f09a", - "code": "31155", - "data": { - "stops": [ - { - "id": "1155", - "code": "31155", - "data": { - "gtfs": { - "stop_id": "1155", - "stop_code": "31155", - "stop_name": "Mary et boul. Taschereau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Mary et boul. Taschereau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4841358023402, - 45.4970008275788 - ] - } - }, - { - "id": "1240", - "code": "31240", - "data": { - "gtfs": { - "stop_id": "1240", - "stop_code": "31240", - "stop_name": "boul. Taschereau et Mary", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Mary", - "geography": { - "type": "Point", - "coordinates": [ - -73.4839613412325, - 45.4967846030979 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0929761313645 - }, - "name": "Mary et boul. Taschereau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.484048572, - 45.496892715 - ] - }, - "is_frozen": false, - "integer_id": 105, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492831, - 45.510191 - ] - }, - "id": 106, - "properties": { - "id": "7c9416e8-63ac-46a3-bec1-08ed29f5ac50", - "code": "31157", - "data": { - "stops": [ - { - "id": "1157", - "code": "31157", - "data": { - "gtfs": { - "stop_id": "1157", - "stop_code": "31157", - "stop_name": "boul. Taschereau et boul. Curé-Poirier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et boul. Curé-Poirier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4928309865253, - 45.5101909802156 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3176644935368 - }, - "name": "boul. Taschereau et boul. Curé-Poirier ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492830987, - 45.51019098 - ] - }, - "is_frozen": false, - "integer_id": 106, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.500849, - 45.513075 - ] - }, - "id": 107, - "properties": { - "id": "a5b9648a-83c0-4eab-a54b-68c23aecae43", - "code": "31158", - "data": { - "stops": [ - { - "id": "1158", - "code": "31158", - "data": { - "gtfs": { - "stop_id": "1158", - "stop_code": "31158", - "stop_name": "boul. Taschereau et ch. du Coteau-Rouge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et ch. du Coteau-Rouge", - "geography": { - "type": "Point", - "coordinates": [ - -73.5008493289044, - 45.5130749147072 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3664124210715 - }, - "name": "boul. Taschereau et ch. du Coteau-Rouge", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.500849329, - 45.513074915 - ] - }, - "is_frozen": false, - "integer_id": 107, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.505085, - 45.514554 - ] - }, - "id": 108, - "properties": { - "id": "a9942a30-a6ad-484e-9e20-4748407133ba", - "code": "31159", - "data": { - "stops": [ - { - "id": "1159", - "code": "31159", - "data": { - "gtfs": { - "stop_id": "1159", - "stop_code": "31159", - "stop_name": "boul. Taschereau et boul. Desaulniers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et boul. Desaulniers", - "geography": { - "type": "Point", - "coordinates": [ - -73.5050849152938, - 45.514553578722 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3914095479208 - }, - "name": "boul. Taschereau et boul. Desaulniers", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.505084915, - 45.514553579 - ] - }, - "is_frozen": false, - "integer_id": 108, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513365, - 45.518332 - ] - }, - "id": 109, - "properties": { - "id": "be19484c-af95-45b2-bfe5-24342dd1b710", - "code": "31161", - "data": { - "stops": [ - { - "id": "1161", - "code": "31161", - "data": { - "gtfs": { - "stop_id": "1161", - "stop_code": "31161", - "stop_name": "boul. Taschereau et boul. La Fayette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et boul. La Fayette", - "geography": { - "type": "Point", - "coordinates": [ - -73.5133648200166, - 45.5183320772084 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4552946999769 - }, - "name": "boul. Taschereau et boul. La Fayette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.51336482, - 45.518332077 - ] - }, - "is_frozen": false, - "integer_id": 109, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.514968, - 45.519474 - ] - }, - "id": 110, - "properties": { - "id": "94bcb32b-e5ee-4efe-abd4-44cb2b3c9672", - "code": "31162", - "data": { - "stops": [ - { - "id": "1162", - "code": "31162", - "data": { - "gtfs": { - "stop_id": "1162", - "stop_code": "31162", - "stop_name": "boul. La Fayette et de la Providence", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et de la Providence", - "geography": { - "type": "Point", - "coordinates": [ - -73.5149679935974, - 45.5194737535124 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4746001653377 - }, - "name": "boul. La Fayette et de la Providence", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.514967994, - 45.519473754 - ] - }, - "is_frozen": false, - "integer_id": 110, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.485381, - 45.497341 - ] - }, - "id": 111, - "properties": { - "id": "15b5024a-6dd9-42b9-80b1-c7dfe4ddea8c", - "code": "31165", - "data": { - "stops": [ - { - "id": "1165", - "code": "31165", - "data": { - "gtfs": { - "stop_id": "1165", - "stop_code": "31165", - "stop_name": "boul. Taschereau et HOPITAL CHARLES-LEMOYNE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et HOPITAL CHARLES-LEMOYNE", - "geography": { - "type": "Point", - "coordinates": [ - -73.485381068438, - 45.4973409943717 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1005477198878 - }, - "name": "boul. Taschereau et HOPITAL CHARLES-LEMOYNE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.485381068, - 45.497340994 - ] - }, - "is_frozen": false, - "integer_id": 111, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.484565, - 45.496703 - ] - }, - "id": 112, - "properties": { - "id": "7ad37664-fa6b-478f-8d31-2d3ae7009709", - "code": "31166", - "data": { - "stops": [ - { - "id": "1166", - "code": "31166", - "data": { - "gtfs": { - "stop_id": "1166", - "stop_code": "31166", - "stop_name": "boul. Taschereau et Mary", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Mary", - "geography": { - "type": "Point", - "coordinates": [ - -73.4845651428639, - 45.4967034420623 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0897792981134 - }, - "name": "boul. Taschereau et Mary", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.484565143, - 45.496703442 - ] - }, - "is_frozen": false, - "integer_id": 112, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479654, - 45.493459 - ] - }, - "id": 113, - "properties": { - "id": "94cd69e7-ebc9-452b-a357-367107db73b4", - "code": "31168", - "data": { - "stops": [ - { - "id": "1168", - "code": "31168", - "data": { - "gtfs": { - "stop_id": "1168", - "stop_code": "31168", - "stop_name": "boul. Taschereau et Gladstone", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Gladstone", - "geography": { - "type": "Point", - "coordinates": [ - -73.4796537317124, - 45.4934593982795 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0349921382542 - }, - "name": "boul. Taschereau et Gladstone", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479653732, - 45.493459398 - ] - }, - "is_frozen": false, - "integer_id": 113, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474275, - 45.490163 - ] - }, - "id": 114, - "properties": { - "id": "03b1ef77-b509-4f21-97d5-d511eeb821cb", - "code": "31169", - "data": { - "stops": [ - { - "id": "1169", - "code": "31169", - "data": { - "gtfs": { - "stop_id": "1169", - "stop_code": "31169", - "stop_name": "boul. Taschereau et Margaret", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Margaret", - "geography": { - "type": "Point", - "coordinates": [ - -73.4746266010101, - 45.4901541216301 - ] - } - }, - { - "id": "1237", - "code": "31237", - "data": { - "gtfs": { - "stop_id": "1237", - "stop_code": "31237", - "stop_name": "boul. Taschereau et Charles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Charles", - "geography": { - "type": "Point", - "coordinates": [ - -73.47392253719, - 45.490172175034 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9793328825763 - }, - "name": "boul. Taschereau et Margaret", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474274569, - 45.490163148 - ] - }, - "is_frozen": false, - "integer_id": 114, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.472236, - 45.488539 - ] - }, - "id": 115, - "properties": { - "id": "351136d8-2c40-4c3f-8032-a52e48738c07", - "code": "31170", - "data": { - "stops": [ - { - "id": "1170", - "code": "31170", - "data": { - "gtfs": { - "stop_id": "1170", - "stop_code": "31170", - "stop_name": "boul. Taschereau et Regent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Regent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4722356373804, - 45.4885387195244 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9519069475381 - }, - "name": "boul. Taschereau et Regent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472235637, - 45.48853872 - ] - }, - "is_frozen": false, - "integer_id": 115, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460898, - 45.480305 - ] - }, - "id": 116, - "properties": { - "id": "10c2e9e3-14c8-465a-917c-28c8d9977609", - "code": "31173", - "data": { - "stops": [ - { - "id": "1173", - "code": "31173", - "data": { - "gtfs": { - "stop_id": "1173", - "stop_code": "31173", - "stop_name": "Alphonse et Arbour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Alphonse et Arbour", - "geography": { - "type": "Point", - "coordinates": [ - -73.460999100828, - 45.4801638328937 - ] - } - }, - { - "id": "1232", - "code": "31232", - "data": { - "gtfs": { - "stop_id": "1232", - "stop_code": "31232", - "stop_name": "Alphonse et Arbour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Alphonse et Arbour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4609743588663, - 45.4804467533199 - ] - } - }, - { - "id": "2175", - "code": "32175", - "data": { - "gtfs": { - "stop_id": "2175", - "stop_code": "32175", - "stop_name": "Arbour et Alphonse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Arbour et Alphonse", - "geography": { - "type": "Point", - "coordinates": [ - -73.4607975556123, - 45.4802807439661 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.81293444233 - }, - "name": "Alphonse et Arbour", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.460898328, - 45.480305293 - ] - }, - "is_frozen": false, - "integer_id": 116, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457164, - 45.482867 - ] - }, - "id": 117, - "properties": { - "id": "fd67ddde-e938-481c-8721-79fa136304ae", - "code": "31174", - "data": { - "stops": [ - { - "id": "1174", - "code": "31174", - "data": { - "gtfs": { - "stop_id": "1174", - "stop_code": "31174", - "stop_name": "Alphonse et av. Auguste", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Alphonse et av. Auguste", - "geography": { - "type": "Point", - "coordinates": [ - -73.4571637639873, - 45.4828672435316 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8561713083859 - }, - "name": "Alphonse et av. Auguste", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457163764, - 45.482867244 - ] - }, - "is_frozen": false, - "integer_id": 117, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460519, - 45.483821 - ] - }, - "id": 118, - "properties": { - "id": "ba2f3a52-e7ea-4a67-a3fe-d4b1c478feca", - "code": "31175", - "data": { - "stops": [ - { - "id": "1175", - "code": "31175", - "data": { - "gtfs": { - "stop_id": "1175", - "stop_code": "31175", - "stop_name": "av. Auguste et Adam", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auguste et Adam", - "geography": { - "type": "Point", - "coordinates": [ - -73.460519392204, - 45.4838214472691 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8722764435349 - }, - "name": "av. Auguste et Adam", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.460519392, - 45.483821447 - ] - }, - "is_frozen": false, - "integer_id": 118, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459359, - 45.485508 - ] - }, - "id": 119, - "properties": { - "id": "c24b91da-a4a3-4b28-b987-5726c6a01fdb", - "code": "31176", - "data": { - "stops": [ - { - "id": "1176", - "code": "31176", - "data": { - "gtfs": { - "stop_id": "1176", - "stop_code": "31176", - "stop_name": "Adam et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adam et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4594511658038, - 45.4854273943605 - ] - } - }, - { - "id": "1844", - "code": "31844", - "data": { - "gtfs": { - "stop_id": "1844", - "stop_code": "31844", - "stop_name": "Grande Allée et Bellevue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Bellevue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4592667276434, - 45.4855890238325 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9007477637125 - }, - "name": "Adam et Grande Allée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459358947, - 45.485508209 - ] - }, - "is_frozen": false, - "integer_id": 119, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457814, - 45.486593 - ] - }, - "id": 120, - "properties": { - "id": "bbbae7a9-6e1d-4f08-9f27-e0a7e3b89eb4", - "code": "31177", - "data": { - "stops": [ - { - "id": "1177", - "code": "31177", - "data": { - "gtfs": { - "stop_id": "1177", - "stop_code": "31177", - "stop_name": "Bellevue et MacGregor", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et MacGregor", - "geography": { - "type": "Point", - "coordinates": [ - -73.4578093272258, - 45.4864862358201 - ] - } - }, - { - "id": "1228", - "code": "31228", - "data": { - "gtfs": { - "stop_id": "1228", - "stop_code": "31228", - "stop_name": "Bellevue et MacGregor", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et MacGregor", - "geography": { - "type": "Point", - "coordinates": [ - -73.4578177985657, - 45.4867005641813 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.91906633838 - }, - "name": "Bellevue et MacGregor", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457813563, - 45.4865934 - ] - }, - "is_frozen": false, - "integer_id": 120, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456912, - 45.487957 - ] - }, - "id": 121, - "properties": { - "id": "92b7c0ae-f6b4-40be-bac0-c87467170afd", - "code": "31178", - "data": { - "stops": [ - { - "id": "1178", - "code": "31178", - "data": { - "gtfs": { - "stop_id": "1178", - "stop_code": "31178", - "stop_name": "Bellevue et Park", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et Park", - "geography": { - "type": "Point", - "coordinates": [ - -73.4568243415877, - 45.4878323237521 - ] - } - }, - { - "id": "1227", - "code": "31227", - "data": { - "gtfs": { - "stop_id": "1227", - "stop_code": "31227", - "stop_name": "Bellevue et Park", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et Park", - "geography": { - "type": "Point", - "coordinates": [ - -73.4569986960102, - 45.488081568414 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9420851708858 - }, - "name": "Bellevue et Park", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456911519, - 45.487956946 - ] - }, - "is_frozen": false, - "integer_id": 121, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45662, - 45.489823 - ] - }, - "id": 122, - "properties": { - "id": "2e7c811f-70f8-4884-a19e-3fe6ec4e0fb7", - "code": "31179", - "data": { - "stops": [ - { - "id": "1179", - "code": "31179", - "data": { - "gtfs": { - "stop_id": "1179", - "stop_code": "31179", - "stop_name": "Bellevue et William-Barfoot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et William-Barfoot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4564519213521, - 45.4899607393667 - ] - } - }, - { - "id": "1226", - "code": "31226", - "data": { - "gtfs": { - "stop_id": "1226", - "stop_code": "31226", - "stop_name": "Bellevue et William-Barfoot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et William-Barfoot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4567871217983, - 45.4896854735637 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9735916092026 - }, - "name": "Bellevue et William-Barfoot", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456619522, - 45.489823106 - ] - }, - "is_frozen": false, - "integer_id": 122, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454779, - 45.491078 - ] - }, - "id": 123, - "properties": { - "id": "da4ca96f-4db9-4287-b307-afc6221c923f", - "code": "31180", - "data": { - "stops": [ - { - "id": "1180", - "code": "31180", - "data": { - "gtfs": { - "stop_id": "1180", - "stop_code": "31180", - "stop_name": "Bellevue et du Centenaire", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et du Centenaire", - "geography": { - "type": "Point", - "coordinates": [ - -73.4549658485358, - 45.4909849048699 - ] - } - }, - { - "id": "1225", - "code": "31225", - "data": { - "gtfs": { - "stop_id": "1225", - "stop_code": "31225", - "stop_name": "du Centenaire et Bellevue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Centenaire et Bellevue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4545925721985, - 45.491171078989 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9947796305275 - }, - "name": "Bellevue et du Centenaire", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45477921, - 45.491077992 - ] - }, - "is_frozen": false, - "integer_id": 123, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452452, - 45.488645 - ] - }, - "id": 124, - "properties": { - "id": "517a8299-e807-4040-8ccd-f417dda7338c", - "code": "31181", - "data": { - "stops": [ - { - "id": "1181", - "code": "31181", - "data": { - "gtfs": { - "stop_id": "1181", - "stop_code": "31181", - "stop_name": "du Centenaire et de l'École", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Centenaire et de l'École", - "geography": { - "type": "Point", - "coordinates": [ - -73.4524859775014, - 45.4889179702114 - ] - } - }, - { - "id": "1224", - "code": "31224", - "data": { - "gtfs": { - "stop_id": "1224", - "stop_code": "31224", - "stop_name": "du Centenaire et de l'École", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Centenaire et de l'École", - "geography": { - "type": "Point", - "coordinates": [ - -73.4522100962365, - 45.4889106824585 - ] - } - }, - { - "id": "5723", - "code": "30492", - "data": { - "gtfs": { - "stop_id": "5723", - "stop_code": "30492", - "stop_name": "de l'École et ECOLE SECONDAIRE L'AGORA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de l'École et ECOLE SECONDAIRE L'AGORA", - "geography": { - "type": "Point", - "coordinates": [ - -73.4527725773841, - 45.4883722878915 - ] - } - }, - { - "id": "5724", - "code": "30493", - "data": { - "gtfs": { - "stop_id": "5724", - "stop_code": "30493", - "stop_name": "du Centenaire et ECOLE SECONDAIRE L'AGORA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Centenaire et ECOLE SECONDAIRE L'AGORA", - "geography": { - "type": "Point", - "coordinates": [ - -73.452131156816, - 45.4887558130286 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9537034258464 - }, - "name": "du Centenaire et de l'École", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452451867, - 45.488645129 - ] - }, - "is_frozen": false, - "integer_id": 124, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450711, - 45.488542 - ] - }, - "id": 125, - "properties": { - "id": "55ec69be-8b93-4c2d-bd40-034e3cde0ca6", - "code": "31182", - "data": { - "stops": [ - { - "id": "1182", - "code": "31182", - "data": { - "gtfs": { - "stop_id": "1182", - "stop_code": "31182", - "stop_name": "du Centenaire et du Centenaire", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Centenaire et du Centenaire", - "geography": { - "type": "Point", - "coordinates": [ - -73.4507551946638, - 45.4884384591872 - ] - } - }, - { - "id": "1223", - "code": "31223", - "data": { - "gtfs": { - "stop_id": "1223", - "stop_code": "31223", - "stop_name": "Ivry et du Centenaire", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ivry et du Centenaire", - "geography": { - "type": "Point", - "coordinates": [ - -73.4506669262016, - 45.4886453018395 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9519603138182 - }, - "name": "du Centenaire et du Centenaire", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45071106, - 45.488541881 - ] - }, - "is_frozen": false, - "integer_id": 125, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449484, - 45.489797 - ] - }, - "id": 126, - "properties": { - "id": "4262a22a-885d-4877-ad99-0a8406e2adaa", - "code": "31183", - "data": { - "stops": [ - { - "id": "1183", - "code": "31183", - "data": { - "gtfs": { - "stop_id": "1183", - "stop_code": "31183", - "stop_name": "Ivry et Madel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ivry et Madel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4495748961613, - 45.4896499521201 - ] - } - }, - { - "id": "1222", - "code": "31222", - "data": { - "gtfs": { - "stop_id": "1222", - "stop_code": "31222", - "stop_name": "Ivry et Andrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ivry et Andrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4493935028331, - 45.4899446845622 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9731562084829 - }, - "name": "Ivry et Madel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449484199, - 45.489797318 - ] - }, - "is_frozen": false, - "integer_id": 126, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44729, - 45.491001 - ] - }, - "id": 127, - "properties": { - "id": "0f232130-277e-4d7b-b106-b6821c45f0a9", - "code": "31184", - "data": { - "stops": [ - { - "id": "1184", - "code": "31184", - "data": { - "gtfs": { - "stop_id": "1184", - "stop_code": "31184", - "stop_name": "Ivry et Bellevue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ivry et Bellevue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4473950226294, - 45.4909482256177 - ] - } - }, - { - "id": "4368", - "code": "34368", - "data": { - "gtfs": { - "stop_id": "4368", - "stop_code": "34368", - "stop_name": "Bellevue et Ivry", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et Ivry", - "geography": { - "type": "Point", - "coordinates": [ - -73.4471856840377, - 45.4910534090796 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9934765350604 - }, - "name": "Ivry et Bellevue", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447290353, - 45.491000817 - ] - }, - "is_frozen": false, - "integer_id": 127, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443741, - 45.491275 - ] - }, - "id": 128, - "properties": { - "id": "7650e289-ca0a-45d4-ad94-da11b1683dc6", - "code": "31186", - "data": { - "stops": [ - { - "id": "1186", - "code": "31186", - "data": { - "gtfs": { - "stop_id": "1186", - "stop_code": "31186", - "stop_name": "Hudson et Dominion", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Hudson et Dominion", - "geography": { - "type": "Point", - "coordinates": [ - -73.4438371936539, - 45.4911678756227 - ] - } - }, - { - "id": "2156", - "code": "32156", - "data": { - "gtfs": { - "stop_id": "2156", - "stop_code": "32156", - "stop_name": "Dominion et Hudson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Dominion et Hudson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4432942643934, - 45.4912965065763 - ] - } - }, - { - "id": "4076", - "code": "34076", - "data": { - "gtfs": { - "stop_id": "4076", - "stop_code": "34076", - "stop_name": "Dominion et Hudson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Dominion et Hudson", - "geography": { - "type": "Point", - "coordinates": [ - -73.444187353238, - 45.4913824316936 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9981087236861 - }, - "name": "Hudson et Dominion", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443740809, - 45.491275154 - ] - }, - "is_frozen": false, - "integer_id": 128, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443416, - 45.492945 - ] - }, - "id": 129, - "properties": { - "id": "6d59a527-4747-4d6f-9acd-29b4758d8c2c", - "code": "31187", - "data": { - "stops": [ - { - "id": "1187", - "code": "31187", - "data": { - "gtfs": { - "stop_id": "1187", - "stop_code": "31187", - "stop_name": "Legault et Baker", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Legault et Baker", - "geography": { - "type": "Point", - "coordinates": [ - -73.4434343630364, - 45.492814465692 - ] - } - }, - { - "id": "1218", - "code": "31218", - "data": { - "gtfs": { - "stop_id": "1218", - "stop_code": "31218", - "stop_name": "Legault et Baker", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Legault et Baker", - "geography": { - "type": "Point", - "coordinates": [ - -73.443398412736, - 45.4930760723112 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0263101104892 - }, - "name": "Legault et Baker", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443416388, - 45.492945269 - ] - }, - "is_frozen": false, - "integer_id": 129, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442338, - 45.493848 - ] - }, - "id": 130, - "properties": { - "id": "617e606b-4ed1-4dba-9147-4a51b4bb23f4", - "code": "31188", - "data": { - "stops": [ - { - "id": "1188", - "code": "31188", - "data": { - "gtfs": { - "stop_id": "1188", - "stop_code": "31188", - "stop_name": "Legault et Jeary", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Legault et Jeary", - "geography": { - "type": "Point", - "coordinates": [ - -73.4423865672923, - 45.4937707674621 - ] - } - }, - { - "id": "1217", - "code": "31217", - "data": { - "gtfs": { - "stop_id": "1217", - "stop_code": "31217", - "stop_name": "Jeary et Legault", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jeary et Legault", - "geography": { - "type": "Point", - "coordinates": [ - -73.442290035, - 45.493924276296 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0415464921409 - }, - "name": "Legault et Jeary", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442338301, - 45.493847522 - ] - }, - "is_frozen": false, - "integer_id": 130, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44063, - 45.492921 - ] - }, - "id": 131, - "properties": { - "id": "5aef33db-0b7d-4b46-a545-a163c8806e46", - "code": "31189", - "data": { - "stops": [ - { - "id": "1189", - "code": "31189", - "data": { - "gtfs": { - "stop_id": "1189", - "stop_code": "31189", - "stop_name": "Jeary et Geoffrion", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jeary et Geoffrion", - "geography": { - "type": "Point", - "coordinates": [ - -73.4407839764589, - 45.4929232571851 - ] - } - }, - { - "id": "1216", - "code": "31216", - "data": { - "gtfs": { - "stop_id": "1216", - "stop_code": "31216", - "stop_name": "Jeary et Geoffrion", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jeary et Geoffrion", - "geography": { - "type": "Point", - "coordinates": [ - -73.440475099, - 45.4929192921048 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0259049327572 - }, - "name": "Jeary et Geoffrion", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440629538, - 45.492921275 - ] - }, - "is_frozen": false, - "integer_id": 131, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440222, - 45.490647 - ] - }, - "id": 132, - "properties": { - "id": "5cb52e5c-c1b7-4111-984c-122d6e4401d5", - "code": "31190", - "data": { - "stops": [ - { - "id": "1190", - "code": "31190", - "data": { - "gtfs": { - "stop_id": "1190", - "stop_code": "31190", - "stop_name": "Cummings et Dominion", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Cummings et Dominion", - "geography": { - "type": "Point", - "coordinates": [ - -73.4399980607261, - 45.4907099235175 - ] - } - }, - { - "id": "1214", - "code": "31214", - "data": { - "gtfs": { - "stop_id": "1214", - "stop_code": "31214", - "stop_name": "Cummings et Dominion", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Cummings et Dominion", - "geography": { - "type": "Point", - "coordinates": [ - -73.4398626794751, - 45.4905658771258 - ] - } - }, - { - "id": "2155", - "code": "32155", - "data": { - "gtfs": { - "stop_id": "2155", - "stop_code": "32155", - "stop_name": "Dominion et Cabot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Dominion et Cabot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4405817000586, - 45.4907822161948 - ] - } - }, - { - "id": "2176", - "code": "32176", - "data": { - "gtfs": { - "stop_id": "2176", - "stop_code": "32176", - "stop_name": "Dominion et Cummings", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Dominion et Cummings", - "geography": { - "type": "Point", - "coordinates": [ - -73.4401150135222, - 45.4905120189897 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9875044154098 - }, - "name": "Cummings et Dominion", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44022219, - 45.490647118 - ] - }, - "is_frozen": false, - "integer_id": 132, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440562, - 45.489313 - ] - }, - "id": 133, - "properties": { - "id": "6e3cdc85-5c0c-43a6-859f-4ad3aa775f67", - "code": "31191", - "data": { - "stops": [ - { - "id": "1191", - "code": "31191", - "data": { - "gtfs": { - "stop_id": "1191", - "stop_code": "31191", - "stop_name": "Cummings et Hart", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Cummings et Hart", - "geography": { - "type": "Point", - "coordinates": [ - -73.4406219184471, - 45.4894089151405 - ] - } - }, - { - "id": "3982", - "code": "33982", - "data": { - "gtfs": { - "stop_id": "3982", - "stop_code": "33982", - "stop_name": "Cummings et Hart", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Cummings et Hart", - "geography": { - "type": "Point", - "coordinates": [ - -73.4405014595113, - 45.4892164439597 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9649737632469 - }, - "name": "Cummings et Hart", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440561689, - 45.48931268 - ] - }, - "is_frozen": false, - "integer_id": 133, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441522, - 45.488401 - ] - }, - "id": 134, - "properties": { - "id": "5a038102-c755-4ed1-808d-b41a0eb02aa9", - "code": "31192", - "data": { - "stops": [ - { - "id": "1192", - "code": "31192", - "data": { - "gtfs": { - "stop_id": "1192", - "stop_code": "31192", - "stop_name": "Cummings et Gaudry", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Cummings et Gaudry", - "geography": { - "type": "Point", - "coordinates": [ - -73.4414691016001, - 45.4885110989401 - ] - } - }, - { - "id": "1212", - "code": "31212", - "data": { - "gtfs": { - "stop_id": "1212", - "stop_code": "31212", - "stop_name": "Cummings et Gaudry", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Cummings et Gaudry", - "geography": { - "type": "Point", - "coordinates": [ - -73.4415757942678, - 45.4882901578402 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9495755875469 - }, - "name": "Cummings et Gaudry", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441522448, - 45.488400628 - ] - }, - "is_frozen": false, - "integer_id": 134, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442431, - 45.485464 - ] - }, - "id": 135, - "properties": { - "id": "e9d5490b-3d12-4a06-b11b-04a2d64d95f2", - "code": "31193", - "data": { - "stops": [ - { - "id": "1193", - "code": "31193", - "data": { - "gtfs": { - "stop_id": "1193", - "stop_code": "31193", - "stop_name": "boul. Payer et Kelly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Kelly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4426846640543, - 45.4854744485656 - ] - } - }, - { - "id": "1210", - "code": "31210", - "data": { - "gtfs": { - "stop_id": "1210", - "stop_code": "31210", - "stop_name": "boul. Payer et Jarry", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Jarry", - "geography": { - "type": "Point", - "coordinates": [ - -73.4421771619682, - 45.4854533217724 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8999995743571 - }, - "name": "boul. Payer et Kelly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442430913, - 45.485463885 - ] - }, - "is_frozen": false, - "integer_id": 135, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440773, - 45.484283 - ] - }, - "id": 136, - "properties": { - "id": "b934caec-f3a1-4894-b7b5-6872a3d78790", - "code": "31194", - "data": { - "stops": [ - { - "id": "1194", - "code": "31194", - "data": { - "gtfs": { - "stop_id": "1194", - "stop_code": "31194", - "stop_name": "boul. Payer et montée Saint-Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et montée Saint-Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4410536045981, - 45.4841371016805 - ] - } - }, - { - "id": "1251", - "code": "31251", - "data": { - "gtfs": { - "stop_id": "1251", - "stop_code": "31251", - "stop_name": "montée Saint-Hubert et boul. Payer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et boul. Payer", - "geography": { - "type": "Point", - "coordinates": [ - -73.440924227215, - 45.4839928399159 - ] - } - }, - { - "id": "1304", - "code": "31304", - "data": { - "gtfs": { - "stop_id": "1304", - "stop_code": "31304", - "stop_name": "montée Saint-Hubert et boul. Payer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et boul. Payer", - "geography": { - "type": "Point", - "coordinates": [ - -73.4406426810512, - 45.4843355739894 - ] - } - }, - { - "id": "3494", - "code": "33494", - "data": { - "gtfs": { - "stop_id": "3494", - "stop_code": "33494", - "stop_name": "montée Saint-Hubert et boul. Payer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et boul. Payer", - "geography": { - "type": "Point", - "coordinates": [ - -73.4404315347924, - 45.4842858969589 - ] - } - }, - { - "id": "3495", - "code": "33495", - "data": { - "gtfs": { - "stop_id": "3495", - "stop_code": "33495", - "stop_name": "boul. Payer et montée Saint-Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et montée Saint-Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4411154625082, - 45.4845733969174 - ] - } - }, - { - "id": "3626", - "code": "33626", - "data": { - "gtfs": { - "stop_id": "3626", - "stop_code": "33626", - "stop_name": "boul. Payer et montée Saint-Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et montée Saint-Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4405838469046, - 45.4841710209574 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8800688640697 - }, - "name": "boul. Payer et montée Saint-Hubert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440773499, - 45.484283118 - ] - }, - "is_frozen": false, - "integer_id": 136, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439, - 45.482787 - ] - }, - "id": 137, - "properties": { - "id": "d708c056-38e2-4ec2-a2c9-6f1d1d21a4f9", - "code": "31195", - "data": { - "stops": [ - { - "id": "1195", - "code": "31195", - "data": { - "gtfs": { - "stop_id": "1195", - "stop_code": "31195", - "stop_name": "boul. Payer et de la Légion", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et de la Légion", - "geography": { - "type": "Point", - "coordinates": [ - -73.4392245825978, - 45.482768377076 - ] - } - }, - { - "id": "1209", - "code": "31209", - "data": { - "gtfs": { - "stop_id": "1209", - "stop_code": "31209", - "stop_name": "boul. Payer et de la Légion", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et de la Légion", - "geography": { - "type": "Point", - "coordinates": [ - -73.4387752069842, - 45.4828064777515 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8548241856315 - }, - "name": "boul. Payer et de la Légion", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438999895, - 45.482787427 - ] - }, - "is_frozen": false, - "integer_id": 137, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437467, - 45.481725 - ] - }, - "id": 138, - "properties": { - "id": "f8f4067e-f90f-4d48-b8ba-5e238dee5e62", - "code": "31196", - "data": { - "stops": [ - { - "id": "1196", - "code": "31196", - "data": { - "gtfs": { - "stop_id": "1196", - "stop_code": "31196", - "stop_name": "boul. Payer et Redmond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Redmond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4376989733121, - 45.4816995212883 - ] - } - }, - { - "id": "1208", - "code": "31208", - "data": { - "gtfs": { - "stop_id": "1208", - "stop_code": "31208", - "stop_name": "boul. Payer et Redmond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Redmond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4372344268243, - 45.4817500030185 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8368894456796 - }, - "name": "boul. Payer et Redmond", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.4374667, - 45.481724762 - ] - }, - "is_frozen": false, - "integer_id": 138, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.435868, - 45.480641 - ] - }, - "id": 139, - "properties": { - "id": "cd932703-83f9-4acf-94fa-d521e6d427d0", - "code": "31197", - "data": { - "stops": [ - { - "id": "1197", - "code": "31197", - "data": { - "gtfs": { - "stop_id": "1197", - "stop_code": "31197", - "stop_name": "boul. Payer et Orchard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Orchard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4361057967569, - 45.4805980453011 - ] - } - }, - { - "id": "1207", - "code": "31207", - "data": { - "gtfs": { - "stop_id": "1207", - "stop_code": "31207", - "stop_name": "boul. Payer et Orchard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Orchard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4356298709103, - 45.4806642623647 - ] - } - }, - { - "id": "2831", - "code": "32831", - "data": { - "gtfs": { - "stop_id": "2831", - "stop_code": "32831", - "stop_name": "Orchard et boul. Payer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Orchard et boul. Payer", - "geography": { - "type": "Point", - "coordinates": [ - -73.4359545610282, - 45.4804588155282 - ] - } - }, - { - "id": "2862", - "code": "32862", - "data": { - "gtfs": { - "stop_id": "2862", - "stop_code": "32862", - "stop_name": "Orchard et boul. Payer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Orchard et boul. Payer", - "geography": { - "type": "Point", - "coordinates": [ - -73.4357295335651, - 45.4808225987937 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8185947379434 - }, - "name": "boul. Payer et Orchard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.435867834, - 45.480640707 - ] - }, - "is_frozen": false, - "integer_id": 139, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.433642, - 45.479134 - ] - }, - "id": 140, - "properties": { - "id": "a09ea856-287c-4215-ad6a-dab05db66e7a", - "code": "31198", - "data": { - "stops": [ - { - "id": "1198", - "code": "31198", - "data": { - "gtfs": { - "stop_id": "1198", - "stop_code": "31198", - "stop_name": "boul. Payer et Gilbert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Gilbert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4338976012672, - 45.4791167083456 - ] - } - }, - { - "id": "1206", - "code": "31206", - "data": { - "gtfs": { - "stop_id": "1206", - "stop_code": "31206", - "stop_name": "boul. Payer et Gilbert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Gilbert", - "geography": { - "type": "Point", - "coordinates": [ - -73.433385695541, - 45.4791519378197 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7931744636957 - }, - "name": "boul. Payer et Gilbert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.433641648, - 45.479134323 - ] - }, - "is_frozen": false, - "integer_id": 140, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.43162, - 45.477747 - ] - }, - "id": 141, - "properties": { - "id": "a17f387c-1398-49f4-8a7b-291d91ebc51f", - "code": "31199", - "data": { - "stops": [ - { - "id": "1199", - "code": "31199", - "data": { - "gtfs": { - "stop_id": "1199", - "stop_code": "31199", - "stop_name": "boul. Payer et Maurice", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Maurice", - "geography": { - "type": "Point", - "coordinates": [ - -73.4317550597078, - 45.4776485305209 - ] - } - }, - { - "id": "1205", - "code": "31205", - "data": { - "gtfs": { - "stop_id": "1205", - "stop_code": "31205", - "stop_name": "boul. Payer et Maurice", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Maurice", - "geography": { - "type": "Point", - "coordinates": [ - -73.4314842141203, - 45.4778461349681 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7697707496997 - }, - "name": "boul. Payer et Maurice", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431619637, - 45.477747333 - ] - }, - "is_frozen": false, - "integer_id": 141, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.430955, - 45.476901 - ] - }, - "id": 142, - "properties": { - "id": "71881b96-39d5-48ea-9242-5e05ded39cda", - "code": "31200", - "data": { - "stops": [ - { - "id": "1200", - "code": "31200", - "data": { - "gtfs": { - "stop_id": "1200", - "stop_code": "31200", - "stop_name": "boul. Payer et boul. Gaétan-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et boul. Gaétan-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4308909430032, - 45.4770934181313 - ] - } - }, - { - "id": "2701", - "code": "32701", - "data": { - "gtfs": { - "stop_id": "2701", - "stop_code": "32701", - "stop_name": "boul. Gaétan-Boucher et boul. Payer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et boul. Payer", - "geography": { - "type": "Point", - "coordinates": [ - -73.4310198623816, - 45.4767079916288 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7554858057978 - }, - "name": "boul. Payer et boul. Gaétan-Boucher", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.430955403, - 45.476900705 - ] - }, - "is_frozen": false, - "integer_id": 142, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.428865, - 45.475842 - ] - }, - "id": 143, - "properties": { - "id": "3bdfaeff-1b70-46d9-94b3-c14187a3f83c", - "code": "31201", - "data": { - "stops": [ - { - "id": "1201", - "code": "31201", - "data": { - "gtfs": { - "stop_id": "1201", - "stop_code": "31201", - "stop_name": "boul. Payer et Boisvert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Boisvert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4288645105497, - 45.4758420208821 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7376237897561 - }, - "name": "boul. Payer et Boisvert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.428864511, - 45.475842021 - ] - }, - "is_frozen": false, - "integer_id": 143, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.427264, - 45.475103 - ] - }, - "id": 144, - "properties": { - "id": "99164719-41bf-44c1-a7e0-77b9cb1d3a3d", - "code": "31202", - "data": { - "stops": [ - { - "id": "1202", - "code": "31202", - "data": { - "gtfs": { - "stop_id": "1202", - "stop_code": "31202", - "stop_name": "boul. Payer et Bélisle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Bélisle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4275242182036, - 45.4750633628613 - ] - } - }, - { - "id": "1203", - "code": "31203", - "data": { - "gtfs": { - "stop_id": "1203", - "stop_code": "31203", - "stop_name": "boul. Payer et Bélisle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Bélisle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4270032269373, - 45.4751422725818 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7251526171937 - }, - "name": "boul. Payer et Bélisle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.427263723, - 45.475102818 - ] - }, - "is_frozen": false, - "integer_id": 144, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.429462, - 45.476506 - ] - }, - "id": 145, - "properties": { - "id": "189acf66-403d-4292-8dff-0eed1cd28768", - "code": "31204", - "data": { - "stops": [ - { - "id": "1204", - "code": "31204", - "data": { - "gtfs": { - "stop_id": "1204", - "stop_code": "31204", - "stop_name": "boul. Payer et boul. Gaétan-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et boul. Gaétan-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4294624005474, - 45.476506053321 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.748827158271 - }, - "name": "boul. Payer et boul. Gaétan-Boucher", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.429462401, - 45.476506053 - ] - }, - "is_frozen": false, - "integer_id": 145, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443726, - 45.48699 - ] - }, - "id": 146, - "properties": { - "id": "e72d0d41-60dd-429c-9fc0-986190945d76", - "code": "31211", - "data": { - "stops": [ - { - "id": "1211", - "code": "31211", - "data": { - "gtfs": { - "stop_id": "1211", - "stop_code": "31211", - "stop_name": "boul. Payer et Cummings", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Cummings", - "geography": { - "type": "Point", - "coordinates": [ - -73.4438709316725, - 45.4868225844614 - ] - } - }, - { - "id": "2154", - "code": "32154", - "data": { - "gtfs": { - "stop_id": "2154", - "stop_code": "32154", - "stop_name": "Cummings et Gaudry", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Cummings et Gaudry", - "geography": { - "type": "Point", - "coordinates": [ - -73.4434439011287, - 45.4871578623579 - ] - } - }, - { - "id": "3298", - "code": "33298", - "data": { - "gtfs": { - "stop_id": "3298", - "stop_code": "33298", - "stop_name": "Cummings et boul. Payer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Cummings et boul. Payer", - "geography": { - "type": "Point", - "coordinates": [ - -73.4440085646416, - 45.4870180948685 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9257651733649 - }, - "name": "boul. Payer et Cummings", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443726233, - 45.486990223 - ] - }, - "is_frozen": false, - "integer_id": 146, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439222, - 45.492052 - ] - }, - "id": 147, - "properties": { - "id": "b795edd3-1e6e-4c63-b5cc-c707855d4f44", - "code": "31215", - "data": { - "stops": [ - { - "id": "1215", - "code": "31215", - "data": { - "gtfs": { - "stop_id": "1215", - "stop_code": "31215", - "stop_name": "Cummings et Jeary", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Cummings et Jeary", - "geography": { - "type": "Point", - "coordinates": [ - -73.4391115449599, - 45.4919817963878 - ] - } - }, - { - "id": "2598", - "code": "32598", - "data": { - "gtfs": { - "stop_id": "2598", - "stop_code": "32598", - "stop_name": "Jeary et Cummings", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jeary et Cummings", - "geography": { - "type": "Point", - "coordinates": [ - -73.4393318397364, - 45.4921219969348 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.01122441599 - }, - "name": "Cummings et Jeary", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439221692, - 45.492051897 - ] - }, - "is_frozen": false, - "integer_id": 147, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446224, - 45.490336 - ] - }, - "id": 148, - "properties": { - "id": "35f25056-4f99-4b6e-babc-10c53194c70e", - "code": "31220", - "data": { - "stops": [ - { - "id": "1220", - "code": "31220", - "data": { - "gtfs": { - "stop_id": "1220", - "stop_code": "31220", - "stop_name": "Hudson et Bellevue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Hudson et Bellevue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4458869249713, - 45.4901504618437 - ] - } - }, - { - "id": "4158", - "code": "34158", - "data": { - "gtfs": { - "stop_id": "4158", - "stop_code": "34158", - "stop_name": "Bellevue et Hudson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et Hudson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4463368170585, - 45.490120720038 - ] - } - }, - { - "id": "4248", - "code": "34248", - "data": { - "gtfs": { - "stop_id": "4248", - "stop_code": "34248", - "stop_name": "Bellevue et ECOLE SECONDAIRE CENTENNIAL REGIONAL HIGH SCHOOL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et ECOLE SECONDAIRE CENTENNIAL REGIONAL HIGH SCHOOL", - "geography": { - "type": "Point", - "coordinates": [ - -73.4465606106091, - 45.4905512100386 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9822507663682 - }, - "name": "Hudson et Bellevue", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446223768, - 45.490335965 - ] - }, - "is_frozen": false, - "integer_id": 148, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459463, - 45.485687 - ] - }, - "id": 149, - "properties": { - "id": "a90c4da7-455c-41d3-9961-c7a64d627572", - "code": "31229", - "data": { - "stops": [ - { - "id": "1229", - "code": "31229", - "data": { - "gtfs": { - "stop_id": "1229", - "stop_code": "31229", - "stop_name": "Bellevue et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4593197353503, - 45.4857823619892 - ] - } - }, - { - "id": "1813", - "code": "31813", - "data": { - "gtfs": { - "stop_id": "1813", - "stop_code": "31813", - "stop_name": "Grande Allée et Adam", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Adam", - "geography": { - "type": "Point", - "coordinates": [ - -73.4596055411352, - 45.4855923862923 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.903772087661 - }, - "name": "Bellevue et Grande Allée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459462638, - 45.485687374 - ] - }, - "is_frozen": false, - "integer_id": 149, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460186, - 45.483512 - ] - }, - "id": 150, - "properties": { - "id": "491099bb-9493-4888-bd4e-20bd2140830a", - "code": "31230", - "data": { - "stops": [ - { - "id": "1230", - "code": "31230", - "data": { - "gtfs": { - "stop_id": "1230", - "stop_code": "31230", - "stop_name": "av. Auguste et Angers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auguste et Angers", - "geography": { - "type": "Point", - "coordinates": [ - -73.4601857287999, - 45.4835117088155 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8670485653995 - }, - "name": "av. Auguste et Angers", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.460185729, - 45.483511709 - ] - }, - "is_frozen": false, - "integer_id": 150, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457534, - 45.483033 - ] - }, - "id": 151, - "properties": { - "id": "0c4d7d44-9133-4ca0-9c0f-78bb757adee1", - "code": "31231", - "data": { - "stops": [ - { - "id": "1231", - "code": "31231", - "data": { - "gtfs": { - "stop_id": "1231", - "stop_code": "31231", - "stop_name": "av. Auguste et Alphonse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auguste et Alphonse", - "geography": { - "type": "Point", - "coordinates": [ - -73.4575337067745, - 45.4830326177216 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.85896244958 - }, - "name": "av. Auguste et Alphonse", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457533707, - 45.483032618 - ] - }, - "is_frozen": false, - "integer_id": 151, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466337, - 45.485153 - ] - }, - "id": 152, - "properties": { - "id": "4996264a-c3f0-4fe8-be81-9ca3d8659c61", - "code": "31235", - "data": { - "stops": [ - { - "id": "1235", - "code": "31235", - "data": { - "gtfs": { - "stop_id": "1235", - "stop_code": "31235", - "stop_name": "boul. Taschereau et av. Auguste", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et av. Auguste", - "geography": { - "type": "Point", - "coordinates": [ - -73.4663367317857, - 45.4851528600672 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8947495198303 - }, - "name": "boul. Taschereau et av. Auguste", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466336732, - 45.48515286 - ] - }, - "is_frozen": false, - "integer_id": 152, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478997, - 45.49352 - ] - }, - "id": 153, - "properties": { - "id": "56af9248-f973-4335-84c1-2e5e744a3910", - "code": "31238", - "data": { - "stops": [ - { - "id": "1238", - "code": "31238", - "data": { - "gtfs": { - "stop_id": "1238", - "stop_code": "31238", - "stop_name": "boul. Taschereau et Georges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Georges", - "geography": { - "type": "Point", - "coordinates": [ - -73.478997480116, - 45.4935200676033 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0360166799503 - }, - "name": "boul. Taschereau et Georges", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47899748, - 45.493520068 - ] - }, - "is_frozen": false, - "integer_id": 153, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460656, - 45.470429 - ] - }, - "id": 154, - "properties": { - "id": "907f8610-452b-440d-849b-c803b07dedc1", - "code": "31242", - "data": { - "stops": [ - { - "id": "1242", - "code": "31242", - "data": { - "gtfs": { - "stop_id": "1242", - "stop_code": "31242", - "stop_name": "av. Auteuil et Audette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et Audette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4607307594761, - 45.4702840649636 - ] - } - }, - { - "id": "1313", - "code": "31313", - "data": { - "gtfs": { - "stop_id": "1313", - "stop_code": "31313", - "stop_name": "av. Auteuil et Audette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et Audette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4605815180404, - 45.4705737457802 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6463097699989 - }, - "name": "av. Auteuil et Audette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.460656139, - 45.470428905 - ] - }, - "is_frozen": false, - "integer_id": 154, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455963, - 45.473648 - ] - }, - "id": 155, - "properties": { - "id": "0a5574e2-bc64-452e-aa4a-d40291008573", - "code": "31244", - "data": { - "stops": [ - { - "id": "1244", - "code": "31244", - "data": { - "gtfs": { - "stop_id": "1244", - "stop_code": "31244", - "stop_name": "av. Auteuil et Asselin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et Asselin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4559892505453, - 45.4735256396206 - ] - } - }, - { - "id": "1311", - "code": "31311", - "data": { - "gtfs": { - "stop_id": "1311", - "stop_code": "31311", - "stop_name": "av. Auteuil et Asselin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et Asselin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4559366181593, - 45.47376954554 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.700602779601 - }, - "name": "av. Auteuil et Asselin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455962934, - 45.473647593 - ] - }, - "is_frozen": false, - "integer_id": 155, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453555, - 45.475282 - ] - }, - "id": 156, - "properties": { - "id": "26379e8f-3aed-43ae-b0ea-5a9391563bd8", - "code": "31245", - "data": { - "stops": [ - { - "id": "1245", - "code": "31245", - "data": { - "gtfs": { - "stop_id": "1245", - "stop_code": "31245", - "stop_name": "av. Auteuil et Arpin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et Arpin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4536138970984, - 45.4751585187725 - ] - } - }, - { - "id": "1310", - "code": "31310", - "data": { - "gtfs": { - "stop_id": "1310", - "stop_code": "31310", - "stop_name": "av. Auteuil et Arpin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et Arpin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4534960775907, - 45.4754053332097 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7281743227828 - }, - "name": "av. Auteuil et Arpin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453554987, - 45.475281926 - ] - }, - "is_frozen": false, - "integer_id": 156, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45123, - 45.476887 - ] - }, - "id": 157, - "properties": { - "id": "3b299238-16f1-4f0e-9fc7-8d65b43af12f", - "code": "31246", - "data": { - "stops": [ - { - "id": "1246", - "code": "31246", - "data": { - "gtfs": { - "stop_id": "1246", - "stop_code": "31246", - "stop_name": "av. Auteuil et Aubry", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et Aubry", - "geography": { - "type": "Point", - "coordinates": [ - -73.4512641987036, - 45.4767631721978 - ] - } - }, - { - "id": "1309", - "code": "31309", - "data": { - "gtfs": { - "stop_id": "1309", - "stop_code": "31309", - "stop_name": "av. Auteuil et Aubry", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et Aubry", - "geography": { - "type": "Point", - "coordinates": [ - -73.4511952356136, - 45.4770106007254 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7552526465265 - }, - "name": "av. Auteuil et Aubry", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451229717, - 45.476886886 - ] - }, - "is_frozen": false, - "integer_id": 157, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448627, - 45.47952 - ] - }, - "id": 158, - "properties": { - "id": "42f94a5d-c370-4fd6-9c9f-6767ef259624", - "code": "31248", - "data": { - "stops": [ - { - "id": "1248", - "code": "31248", - "data": { - "gtfs": { - "stop_id": "1248", - "stop_code": "31248", - "stop_name": "montée Saint-Hubert et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4486951350238, - 45.4793866246085 - ] - } - }, - { - "id": "1307", - "code": "31307", - "data": { - "gtfs": { - "stop_id": "1307", - "stop_code": "31307", - "stop_name": "montée Saint-Hubert et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4485594687072, - 45.4796526455801 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7996764230871 - }, - "name": "montée Saint-Hubert et Grande Allée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448627302, - 45.479519635 - ] - }, - "is_frozen": false, - "integer_id": 158, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446567, - 45.480781 - ] - }, - "id": 159, - "properties": { - "id": "e0286f28-f802-47e9-8fd2-0338e2927a2f", - "code": "31249", - "data": { - "stops": [ - { - "id": "1249", - "code": "31249", - "data": { - "gtfs": { - "stop_id": "1249", - "stop_code": "31249", - "stop_name": "montée Saint-Hubert et av. Glenn", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Glenn", - "geography": { - "type": "Point", - "coordinates": [ - -73.4465743148287, - 45.4806574119786 - ] - } - }, - { - "id": "1306", - "code": "31306", - "data": { - "gtfs": { - "stop_id": "1306", - "stop_code": "31306", - "stop_name": "montée Saint-Hubert et av. Glenn", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Glenn", - "geography": { - "type": "Point", - "coordinates": [ - -73.4465597365263, - 45.4809048629616 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8209646010737 - }, - "name": "montée Saint-Hubert et av. Glenn", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446567026, - 45.480781137 - ] - }, - "is_frozen": false, - "integer_id": 159, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443746, - 45.482433 - ] - }, - "id": 160, - "properties": { - "id": "46d1170e-039a-4a64-a065-b60146bf9006", - "code": "31250", - "data": { - "stops": [ - { - "id": "1250", - "code": "31250", - "data": { - "gtfs": { - "stop_id": "1250", - "stop_code": "31250", - "stop_name": "montée Saint-Hubert et av. Irving", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Irving", - "geography": { - "type": "Point", - "coordinates": [ - -73.4437458229946, - 45.4823298332278 - ] - } - }, - { - "id": "1305", - "code": "31305", - "data": { - "gtfs": { - "stop_id": "1305", - "stop_code": "31305", - "stop_name": "montée Saint-Hubert et av. Irving", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Irving", - "geography": { - "type": "Point", - "coordinates": [ - -73.4437467721969, - 45.4825367335537 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8488471382668 - }, - "name": "montée Saint-Hubert et av. Irving", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443746298, - 45.482433283 - ] - }, - "is_frozen": false, - "integer_id": 160, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437992, - 45.485798 - ] - }, - "id": 161, - "properties": { - "id": "68549053-a194-4fc4-9393-09f9a34040bb", - "code": "31252", - "data": { - "stops": [ - { - "id": "1252", - "code": "31252", - "data": { - "gtfs": { - "stop_id": "1252", - "stop_code": "31252", - "stop_name": "montée Saint-Hubert et av. Normand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Normand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4380665235009, - 45.4856742576815 - ] - } - }, - { - "id": "1303", - "code": "31303", - "data": { - "gtfs": { - "stop_id": "1303", - "stop_code": "31303", - "stop_name": "montée Saint-Hubert et av. Normand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Normand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4379178090103, - 45.4859225694784 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.905646468804 - }, - "name": "montée Saint-Hubert et av. Normand", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437992166, - 45.485798414 - ] - }, - "is_frozen": false, - "integer_id": 161, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.435189, - 45.487451 - ] - }, - "id": 162, - "properties": { - "id": "40ff3e02-8b3f-498b-908e-b391cc70a163", - "code": "31253", - "data": { - "stops": [ - { - "id": "1253", - "code": "31253", - "data": { - "gtfs": { - "stop_id": "1253", - "stop_code": "31253", - "stop_name": "montée Saint-Hubert et av. Grenier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Grenier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4352216713907, - 45.4873358474427 - ] - } - }, - { - "id": "1302", - "code": "31302", - "data": { - "gtfs": { - "stop_id": "1302", - "stop_code": "31302", - "stop_name": "montée Saint-Hubert et av. Grenier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Grenier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4351568758361, - 45.4875658030911 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9335408477997 - }, - "name": "montée Saint-Hubert et av. Grenier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.435189274, - 45.487450825 - ] - }, - "is_frozen": false, - "integer_id": 162, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.432686, - 45.488855 - ] - }, - "id": 163, - "properties": { - "id": "b535e273-90c1-49b6-b38e-2087d5bbebed", - "code": "31254", - "data": { - "stops": [ - { - "id": "1254", - "code": "31254", - "data": { - "gtfs": { - "stop_id": "1254", - "stop_code": "31254", - "stop_name": "montée Saint-Hubert et boul. Maricourt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et boul. Maricourt", - "geography": { - "type": "Point", - "coordinates": [ - -73.4326858661208, - 45.4888549013352 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9572449870423 - }, - "name": "montée Saint-Hubert et boul. Maricourt", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.432685866, - 45.488854901 - ] - }, - "is_frozen": false, - "integer_id": 163, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.429392, - 45.493256 - ] - }, - "id": 164, - "properties": { - "id": "ee09cf9f-32a4-4f14-abc4-35cf4e9dacb6", - "code": "31255", - "data": { - "stops": [ - { - "id": "1255", - "code": "31255", - "data": { - "gtfs": { - "stop_id": "1255", - "stop_code": "31255", - "stop_name": "montée Saint-Hubert et av. Hémard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Hémard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4293617790231, - 45.4931460534466 - ] - } - }, - { - "id": "1300", - "code": "31300", - "data": { - "gtfs": { - "stop_id": "1300", - "stop_code": "31300", - "stop_name": "montée Saint-Hubert et av. Hémard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Hémard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4294230136091, - 45.493366501029 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0315620329598 - }, - "name": "montée Saint-Hubert et av. Hémard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.429392396, - 45.493256277 - ] - }, - "is_frozen": false, - "integer_id": 164, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.427963, - 45.495082 - ] - }, - "id": 165, - "properties": { - "id": "8e8689c3-62f3-42eb-93e5-b882f067b52e", - "code": "31256", - "data": { - "stops": [ - { - "id": "1256", - "code": "31256", - "data": { - "gtfs": { - "stop_id": "1256", - "stop_code": "31256", - "stop_name": "montée Saint-Hubert et boul. Davis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et boul. Davis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4279625079771, - 45.4950823233265 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0623997984055 - }, - "name": "montée Saint-Hubert et boul. Davis", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.427962508, - 45.495082323 - ] - }, - "is_frozen": false, - "integer_id": 165, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.424913, - 45.499522 - ] - }, - "id": 166, - "properties": { - "id": "4fac5725-fd12-47be-9db0-8dea1c53b6f5", - "code": "31257", - "data": { - "stops": [ - { - "id": "1257", - "code": "31257", - "data": { - "gtfs": { - "stop_id": "1257", - "stop_code": "31257", - "stop_name": "montée Saint-Hubert et av. Coursol", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Coursol", - "geography": { - "type": "Point", - "coordinates": [ - -73.4248927534904, - 45.4993831525354 - ] - } - }, - { - "id": "3302", - "code": "33302", - "data": { - "gtfs": { - "stop_id": "3302", - "stop_code": "33302", - "stop_name": "montée Saint-Hubert et av. Coursol", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Coursol", - "geography": { - "type": "Point", - "coordinates": [ - -73.424933600083, - 45.4996604238961 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1373846409498 - }, - "name": "montée Saint-Hubert et av. Coursol", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.424913177, - 45.499521788 - ] - }, - "is_frozen": false, - "integer_id": 166, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.423818, - 45.500907 - ] - }, - "id": 167, - "properties": { - "id": "1202144f-3657-40d2-ae2e-917153a50f04", - "code": "31258", - "data": { - "stops": [ - { - "id": "1258", - "code": "31258", - "data": { - "gtfs": { - "stop_id": "1258", - "stop_code": "31258", - "stop_name": "montée Saint-Hubert et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4238175648701, - 45.5009067331245 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.160780661266 - }, - "name": "montée Saint-Hubert et boul. Cousineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.423817565, - 45.500906733 - ] - }, - "is_frozen": false, - "integer_id": 167, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.421775, - 45.503776 - ] - }, - "id": 168, - "properties": { - "id": "6d53f355-0dfd-420a-a1cc-6510f1a36363", - "code": "31259", - "data": { - "stops": [ - { - "id": "1259", - "code": "31259", - "data": { - "gtfs": { - "stop_id": "1259", - "stop_code": "31259", - "stop_name": "montée Saint-Hubert et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4217745537286, - 45.5037763909916 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2092635254697 - }, - "name": "montée Saint-Hubert et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.421774554, - 45.503776391 - ] - }, - "is_frozen": false, - "integer_id": 168, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.417221, - 45.502321 - ] - }, - "id": 169, - "properties": { - "id": "46ea2114-c4d6-46e8-be5d-60d028340abb", - "code": "31260", - "data": { - "stops": [ - { - "id": "1260", - "code": "31260", - "data": { - "gtfs": { - "stop_id": "1260", - "stop_code": "31260", - "stop_name": "ch. de Chambly et Rocheleau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Rocheleau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4173991450924, - 45.5023080766946 - ] - } - }, - { - "id": "1295", - "code": "31295", - "data": { - "gtfs": { - "stop_id": "1295", - "stop_code": "31295", - "stop_name": "ch. de Chambly et Rocheleau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Rocheleau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4170434660813, - 45.5023330550491 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.184666450139 - }, - "name": "ch. de Chambly et Rocheleau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.417221306, - 45.502320566 - ] - }, - "is_frozen": false, - "integer_id": 169, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.416025, - 45.502217 - ] - }, - "id": 170, - "properties": { - "id": "5f67d1de-bfb7-46e1-9c6a-87d005dd64b6", - "code": "31261", - "data": { - "stops": [ - { - "id": "1261", - "code": "31261", - "data": { - "gtfs": { - "stop_id": "1261", - "stop_code": "31261", - "stop_name": "Latour et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Latour et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4159399453632, - 45.5021632658742 - ] - } - }, - { - "id": "3987", - "code": "33987", - "data": { - "gtfs": { - "stop_id": "3987", - "stop_code": "33987", - "stop_name": "Latour et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Latour et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4161097357604, - 45.5022713718737 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1829220990259 - }, - "name": "Latour et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.416024841, - 45.502217319 - ] - }, - "is_frozen": false, - "integer_id": 170, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.414774, - 45.504744 - ] - }, - "id": 171, - "properties": { - "id": "9f0b95b0-8453-4218-9889-ef6146815766", - "code": "31262", - "data": { - "stops": [ - { - "id": "1262", - "code": "31262", - "data": { - "gtfs": { - "stop_id": "1262", - "stop_code": "31262", - "stop_name": "Latour et av. Philippe", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Latour et av. Philippe", - "geography": { - "type": "Point", - "coordinates": [ - -73.4147366471653, - 45.5046450021564 - ] - } - }, - { - "id": "1293", - "code": "31293", - "data": { - "gtfs": { - "stop_id": "1293", - "stop_code": "31293", - "stop_name": "Latour et av. Philippe", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Latour et av. Philippe", - "geography": { - "type": "Point", - "coordinates": [ - -73.4148110222128, - 45.5048439615924 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2256210735696 - }, - "name": "Latour et av. Philippe", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.414773835, - 45.504744482 - ] - }, - "is_frozen": false, - "integer_id": 171, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.413375, - 45.50541 - ] - }, - "id": 172, - "properties": { - "id": "72cda4fb-fbe8-47ba-b42e-f310ef91d335", - "code": "31263", - "data": { - "stops": [ - { - "id": "1263", - "code": "31263", - "data": { - "gtfs": { - "stop_id": "1263", - "stop_code": "31263", - "stop_name": "Latour et Morency", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Latour et Morency", - "geography": { - "type": "Point", - "coordinates": [ - -73.4135554763556, - 45.5053072103228 - ] - } - }, - { - "id": "1292", - "code": "31292", - "data": { - "gtfs": { - "stop_id": "1292", - "stop_code": "31292", - "stop_name": "Latour et Morency", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Latour et Morency", - "geography": { - "type": "Point", - "coordinates": [ - -73.4131950010097, - 45.5054936435197 - ] - } - }, - { - "id": "1444", - "code": "31444", - "data": { - "gtfs": { - "stop_id": "1444", - "stop_code": "31444", - "stop_name": "Morency et Latour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Morency et Latour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4134809782904, - 45.5055135139411 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2368727357417 - }, - "name": "Latour et Morency", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.413375239, - 45.505410362 - ] - }, - "is_frozen": false, - "integer_id": 172, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.411563, - 45.505194 - ] - }, - "id": 173, - "properties": { - "id": "bf493d01-4cc2-40cf-9fee-339de5acd0ce", - "code": "31264", - "data": { - "stops": [ - { - "id": "1264", - "code": "31264", - "data": { - "gtfs": { - "stop_id": "1264", - "stop_code": "31264", - "stop_name": "Latour et Michaud", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Latour et Michaud", - "geography": { - "type": "Point", - "coordinates": [ - -73.4116898745628, - 45.5051528640248 - ] - } - }, - { - "id": "4032", - "code": "34032", - "data": { - "gtfs": { - "stop_id": "4032", - "stop_code": "34032", - "stop_name": "Latour et Michaud", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Latour et Michaud", - "geography": { - "type": "Point", - "coordinates": [ - -73.4114367236171, - 45.5052345096313 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2332114412968 - }, - "name": "Latour et Michaud", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.411563299, - 45.505193687 - ] - }, - "is_frozen": false, - "integer_id": 173, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.409826, - 45.504763 - ] - }, - "id": 174, - "properties": { - "id": "35110be1-21ec-490a-b4c8-8b20aa6bef7f", - "code": "31265", - "data": { - "stops": [ - { - "id": "1265", - "code": "31265", - "data": { - "gtfs": { - "stop_id": "1265", - "stop_code": "31265", - "stop_name": "Latour et Morin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Latour et Morin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4099865466884, - 45.5047284932428 - ] - } - }, - { - "id": "1290", - "code": "31290", - "data": { - "gtfs": { - "stop_id": "1290", - "stop_code": "31290", - "stop_name": "Latour et Morin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Latour et Morin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4096661702432, - 45.5047981230282 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2259391792077 - }, - "name": "Latour et Morin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.409826358, - 45.504763308 - ] - }, - "is_frozen": false, - "integer_id": 174, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.407786, - 45.504289 - ] - }, - "id": 175, - "properties": { - "id": "aa49b5ca-26fd-4fe1-8e89-4237204a7250", - "code": "31266", - "data": { - "stops": [ - { - "id": "1266", - "code": "31266", - "data": { - "gtfs": { - "stop_id": "1266", - "stop_code": "31266", - "stop_name": "Latour et Moreau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Latour et Moreau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4079588109064, - 45.5042187280634 - ] - } - }, - { - "id": "4157", - "code": "34157", - "data": { - "gtfs": { - "stop_id": "4157", - "stop_code": "34157", - "stop_name": "Latour et Moreau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Latour et Moreau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4076124314739, - 45.5042939614569 - ] - } - }, - { - "id": "4998", - "code": "34998", - "data": { - "gtfs": { - "stop_id": "4998", - "stop_code": "34998", - "stop_name": "Moreau et Latour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Moreau et Latour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4078097163929, - 45.5043598741623 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2179299105658 - }, - "name": "Latour et Moreau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.407785621, - 45.504289301 - ] - }, - "is_frozen": false, - "integer_id": 175, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.406208, - 45.505373 - ] - }, - "id": 176, - "properties": { - "id": "3d4eebbc-a250-4177-81d6-19642e2b4176", - "code": "31268", - "data": { - "stops": [ - { - "id": "1268", - "code": "31268", - "data": { - "gtfs": { - "stop_id": "1268", - "stop_code": "31268", - "stop_name": "Maisonneuve et av. Magnan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maisonneuve et av. Magnan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4061554709287, - 45.5052302929979 - ] - } - }, - { - "id": "1288", - "code": "31288", - "data": { - "gtfs": { - "stop_id": "1288", - "stop_code": "31288", - "stop_name": "Maisonneuve et av. Magnan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maisonneuve et av. Magnan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4062611356863, - 45.5055166467066 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2362493453448 - }, - "name": "Maisonneuve et av. Magnan", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.406208303, - 45.50537347 - ] - }, - "is_frozen": false, - "integer_id": 176, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.403386, - 45.506823 - ] - }, - "id": 177, - "properties": { - "id": "f1de9305-8e6b-46d3-8c98-a08e73b2857f", - "code": "31269", - "data": { - "stops": [ - { - "id": "1269", - "code": "31269", - "data": { - "gtfs": { - "stop_id": "1269", - "stop_code": "31269", - "stop_name": "Maisonneuve et Léontine-Marsolais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maisonneuve et Léontine-Marsolais", - "geography": { - "type": "Point", - "coordinates": [ - -73.4035092615162, - 45.5067881049848 - ] - } - }, - { - "id": "1287", - "code": "31287", - "data": { - "gtfs": { - "stop_id": "1287", - "stop_code": "31287", - "stop_name": "Maisonneuve et Léontine-Marsolais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maisonneuve et Léontine-Marsolais", - "geography": { - "type": "Point", - "coordinates": [ - -73.4032623977694, - 45.5068586661022 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2607505203983 - }, - "name": "Maisonneuve et Léontine-Marsolais", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.40338583, - 45.506823386 - ] - }, - "is_frozen": false, - "integer_id": 177, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.400274, - 45.505993 - ] - }, - "id": 178, - "properties": { - "id": "b20c17a3-277e-418e-90be-8f8d32918ba9", - "code": "31270", - "data": { - "stops": [ - { - "id": "1270", - "code": "31270", - "data": { - "gtfs": { - "stop_id": "1270", - "stop_code": "31270", - "stop_name": "Maisonneuve et Lucien-Milette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maisonneuve et Lucien-Milette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4003248643488, - 45.5058897952775 - ] - } - }, - { - "id": "1286", - "code": "31286", - "data": { - "gtfs": { - "stop_id": "1286", - "stop_code": "31286", - "stop_name": "Maisonneuve et Lucien-Milette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maisonneuve et Lucien-Milette", - "geography": { - "type": "Point", - "coordinates": [ - -73.400565307765, - 45.5061634453915 - ] - } - }, - { - "id": "4991", - "code": "34991", - "data": { - "gtfs": { - "stop_id": "4991", - "stop_code": "34991", - "stop_name": "Lucien-Milette et Maisonneuve", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lucien-Milette et Maisonneuve", - "geography": { - "type": "Point", - "coordinates": [ - -73.4000929502576, - 45.5060008699139 - ] - } - }, - { - "id": "4992", - "code": "34992", - "data": { - "gtfs": { - "stop_id": "4992", - "stop_code": "34992", - "stop_name": "Maisonneuve et Lucien-Milette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maisonneuve et Lucien-Milette", - "geography": { - "type": "Point", - "coordinates": [ - -73.3999820590326, - 45.5058220578361 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2467139548403 - }, - "name": "Maisonneuve et Lucien-Milette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.400273683, - 45.505992752 - ] - }, - "is_frozen": false, - "integer_id": 178, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.399712, - 45.504702 - ] - }, - "id": 179, - "properties": { - "id": "2c6b4125-7bf8-4b8d-baba-27b6eb658b61", - "code": "31271", - "data": { - "stops": [ - { - "id": "1271", - "code": "31271", - "data": { - "gtfs": { - "stop_id": "1271", - "stop_code": "31271", - "stop_name": "Maisonneuve et Marquis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maisonneuve et Marquis", - "geography": { - "type": "Point", - "coordinates": [ - -73.399813083737, - 45.504786800018 - ] - } - }, - { - "id": "1285", - "code": "31285", - "data": { - "gtfs": { - "stop_id": "1285", - "stop_code": "31285", - "stop_name": "Maisonneuve et Marquis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maisonneuve et Marquis", - "geography": { - "type": "Point", - "coordinates": [ - -73.3996111722285, - 45.5046168602119 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2249003777396 - }, - "name": "Maisonneuve et Marquis", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.399712128, - 45.50470183 - ] - }, - "is_frozen": false, - "integer_id": 179, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.399552, - 45.50337 - ] - }, - "id": 180, - "properties": { - "id": "2b483be9-aa3b-4e6d-8f32-cf15ad2e423b", - "code": "31272", - "data": { - "stops": [ - { - "id": "1272", - "code": "31272", - "data": { - "gtfs": { - "stop_id": "1272", - "stop_code": "31272", - "stop_name": "Maisonneuve et Mainville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maisonneuve et Mainville", - "geography": { - "type": "Point", - "coordinates": [ - -73.3996640574578, - 45.5034890669966 - ] - } - }, - { - "id": "1284", - "code": "31284", - "data": { - "gtfs": { - "stop_id": "1284", - "stop_code": "31284", - "stop_name": "Maisonneuve et Mainville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maisonneuve et Mainville", - "geography": { - "type": "Point", - "coordinates": [ - -73.399439436886, - 45.5032516456687 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2024031201204 - }, - "name": "Maisonneuve et Mainville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.399551747, - 45.503370356 - ] - }, - "is_frozen": false, - "integer_id": 180, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.398934, - 45.501847 - ] - }, - "id": 181, - "properties": { - "id": "4f92fee6-d3d3-4ff4-a4c3-a85fcad01ae0", - "code": "31273", - "data": { - "stops": [ - { - "id": "1273", - "code": "31273", - "data": { - "gtfs": { - "stop_id": "1273", - "stop_code": "31273", - "stop_name": "boul. Gaétan-Boucher et Maisonneuve", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et Maisonneuve", - "geography": { - "type": "Point", - "coordinates": [ - -73.3989342603498, - 45.5018469901337 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1766654935413 - }, - "name": "boul. Gaétan-Boucher et Maisonneuve", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.39893426, - 45.50184699 - ] - }, - "is_frozen": false, - "integer_id": 181, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.395194, - 45.502032 - ] - }, - "id": 182, - "properties": { - "id": "5c25bfb5-c167-4f71-8798-e94a8ad7560d", - "code": "31274", - "data": { - "stops": [ - { - "id": "1274", - "code": "31274", - "data": { - "gtfs": { - "stop_id": "1274", - "stop_code": "31274", - "stop_name": "boul. Gaétan-Boucher et boul. Jacques-Marcil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et boul. Jacques-Marcil", - "geography": { - "type": "Point", - "coordinates": [ - -73.3953719856189, - 45.5020676746579 - ] - } - }, - { - "id": "5366", - "code": "30106", - "data": { - "gtfs": { - "stop_id": "5366", - "stop_code": "30106", - "stop_name": "boul. Jacques-Marcil et boul. Gaétan-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Marcil et boul. Gaétan-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.3950158833044, - 45.5019958274982 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1797869640076 - }, - "name": "boul. Gaétan-Boucher et boul. Jacques-Marcil", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.395193934, - 45.502031751 - ] - }, - "is_frozen": false, - "integer_id": 182, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.396685, - 45.49853 - ] - }, - "id": 183, - "properties": { - "id": "2550d07e-5034-443e-9840-7e9abcf5a62b", - "code": "31275", - "data": { - "stops": [ - { - "id": "1275", - "code": "31275", - "data": { - "gtfs": { - "stop_id": "1275", - "stop_code": "31275", - "stop_name": "boul. Jacques-Marcil et de Monaco", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Marcil et de Monaco", - "geography": { - "type": "Point", - "coordinates": [ - -73.3966097237137, - 45.4987369989275 - ] - } - }, - { - "id": "5364", - "code": "30104", - "data": { - "gtfs": { - "stop_id": "5364", - "stop_code": "30104", - "stop_name": "boul. Jacques-Marcil et de Monaco", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Marcil et de Monaco", - "geography": { - "type": "Point", - "coordinates": [ - -73.3967597926847, - 45.498323268615 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1206335750027 - }, - "name": "boul. Jacques-Marcil et de Monaco", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.396684758, - 45.498530134 - ] - }, - "is_frozen": false, - "integer_id": 183, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.395545, - 45.499965 - ] - }, - "id": 184, - "properties": { - "id": "e4d9e692-bf6d-4c61-9845-9e50427c4cad", - "code": "31276", - "data": { - "stops": [ - { - "id": "1276", - "code": "31276", - "data": { - "gtfs": { - "stop_id": "1276", - "stop_code": "31276", - "stop_name": "boul. Jacques-Marcil et Joseph-A.-Mantha", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Marcil et Joseph-A.-Mantha", - "geography": { - "type": "Point", - "coordinates": [ - -73.3955959407681, - 45.5000895847375 - ] - } - }, - { - "id": "5365", - "code": "30105", - "data": { - "gtfs": { - "stop_id": "5365", - "stop_code": "30105", - "stop_name": "boul. Jacques-Marcil et Joseph-A.-Mantha", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Marcil et Joseph-A.-Mantha", - "geography": { - "type": "Point", - "coordinates": [ - -73.3954949904072, - 45.4998397678485 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1448662084973 - }, - "name": "boul. Jacques-Marcil et Joseph-A.-Mantha", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.395545466, - 45.499964676 - ] - }, - "is_frozen": false, - "integer_id": 184, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.40005, - 45.495493 - ] - }, - "id": 185, - "properties": { - "id": "fe117da5-0ed3-4c59-9ce1-4e2c73ab4376", - "code": "31277", - "data": { - "stops": [ - { - "id": "1277", - "code": "31277", - "data": { - "gtfs": { - "stop_id": "1277", - "stop_code": "31277", - "stop_name": "boul. Jacques-Marcil et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Marcil et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.3999123106282, - 45.4955739023131 - ] - } - }, - { - "id": "3945", - "code": "33945", - "data": { - "gtfs": { - "stop_id": "3945", - "stop_code": "33945", - "stop_name": "ch. de Chambly et boul. Jacques-Marcil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Jacques-Marcil", - "geography": { - "type": "Point", - "coordinates": [ - -73.4001870838567, - 45.4954118288324 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0693333446786 - }, - "name": "boul. Jacques-Marcil et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.400049697, - 45.495492866 - ] - }, - "is_frozen": false, - "integer_id": 185, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.401697, - 45.496219 - ] - }, - "id": 186, - "properties": { - "id": "33ed66fe-2193-4e2a-b51d-d25140b9ad80", - "code": "31278", - "data": { - "stops": [ - { - "id": "1278", - "code": "31278", - "data": { - "gtfs": { - "stop_id": "1278", - "stop_code": "31278", - "stop_name": "ch. de Chambly et Henri-Cyr", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Henri-Cyr", - "geography": { - "type": "Point", - "coordinates": [ - -73.4015414563726, - 45.4962610128982 - ] - } - }, - { - "id": "1379", - "code": "31379", - "data": { - "gtfs": { - "stop_id": "1379", - "stop_code": "31379", - "stop_name": "ch. de Chambly et Henri-Cyr", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Henri-Cyr", - "geography": { - "type": "Point", - "coordinates": [ - -73.4018522525184, - 45.4961777631269 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0816037396172 - }, - "name": "ch. de Chambly et Henri-Cyr", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.401696854, - 45.496219388 - ] - }, - "is_frozen": false, - "integer_id": 186, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.403551, - 45.497056 - ] - }, - "id": 187, - "properties": { - "id": "6ab0ce04-cb83-416d-bb5f-0ffe35b15385", - "code": "31279", - "data": { - "stops": [ - { - "id": "1279", - "code": "31279", - "data": { - "gtfs": { - "stop_id": "1279", - "stop_code": "31279", - "stop_name": "ch. de Chambly et de Monaco", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et de Monaco", - "geography": { - "type": "Point", - "coordinates": [ - -73.4033431395568, - 45.4970522592567 - ] - } - }, - { - "id": "3944", - "code": "33944", - "data": { - "gtfs": { - "stop_id": "3944", - "stop_code": "33944", - "stop_name": "ch. de Chambly et de Monaco", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et de Monaco", - "geography": { - "type": "Point", - "coordinates": [ - -73.4037594341944, - 45.4970588241714 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0957263154608 - }, - "name": "ch. de Chambly et de Monaco", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.403551287, - 45.497055542 - ] - }, - "is_frozen": false, - "integer_id": 187, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.406324, - 45.498408 - ] - }, - "id": 188, - "properties": { - "id": "aab8672e-86c9-4a43-9806-f5135dc02b4e", - "code": "31280", - "data": { - "stops": [ - { - "id": "1280", - "code": "31280", - "data": { - "gtfs": { - "stop_id": "1280", - "stop_code": "31280", - "stop_name": "boul. Gaétan-Boucher et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4061021146563, - 45.4985709179673 - ] - } - }, - { - "id": "1448", - "code": "31448", - "data": { - "gtfs": { - "stop_id": "1448", - "stop_code": "31448", - "stop_name": "boul. Gaétan-Boucher et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4065455969929, - 45.4984422809484 - ] - } - }, - { - "id": "3272", - "code": "33272", - "data": { - "gtfs": { - "stop_id": "3272", - "stop_code": "33272", - "stop_name": "ch. de Chambly et boul. Gaétan-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Gaétan-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4061988448348, - 45.4982458739836 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1185772312862 - }, - "name": "boul. Gaétan-Boucher et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.406323856, - 45.498408396 - ] - }, - "is_frozen": false, - "integer_id": 188, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.403022, - 45.501668 - ] - }, - "id": 189, - "properties": { - "id": "dc630e4d-102e-48b9-8b4a-920cafc01d4a", - "code": "31281", - "data": { - "stops": [ - { - "id": "1281", - "code": "31281", - "data": { - "gtfs": { - "stop_id": "1281", - "stop_code": "31281", - "stop_name": "boul. Gaétan-Boucher et Latour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et Latour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4031979076987, - 45.501516237181 - ] - } - }, - { - "id": "1445", - "code": "31445", - "data": { - "gtfs": { - "stop_id": "1445", - "stop_code": "31445", - "stop_name": "boul. Gaétan-Boucher et Latour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et Latour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4028458658338, - 45.5018199377582 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1736430208215 - }, - "name": "boul. Gaétan-Boucher et Latour", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.403021887, - 45.501668087 - ] - }, - "is_frozen": false, - "integer_id": 189, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.400992, - 45.501835 - ] - }, - "id": 190, - "properties": { - "id": "00ed067b-7627-492d-ac0f-5d03bd3b185c", - "code": "31282", - "data": { - "stops": [ - { - "id": "1282", - "code": "31282", - "data": { - "gtfs": { - "stop_id": "1282", - "stop_code": "31282", - "stop_name": "boul. Gaétan-Boucher et av. de Mexico", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et av. de Mexico", - "geography": { - "type": "Point", - "coordinates": [ - -73.4011371567228, - 45.5017039450596 - ] - } - }, - { - "id": "1447", - "code": "31447", - "data": { - "gtfs": { - "stop_id": "1447", - "stop_code": "31447", - "stop_name": "boul. Gaétan-Boucher et av. de Mexico", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et av. de Mexico", - "geography": { - "type": "Point", - "coordinates": [ - -73.4008461899035, - 45.5019666936499 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1764683172253 - }, - "name": "boul. Gaétan-Boucher et av. de Mexico", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.400991673, - 45.501835319 - ] - }, - "is_frozen": false, - "integer_id": 190, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.399439, - 45.502333 - ] - }, - "id": 191, - "properties": { - "id": "2d9ee065-016b-451f-a85c-ba2cce6e5bc6", - "code": "31283", - "data": { - "stops": [ - { - "id": "1283", - "code": "31283", - "data": { - "gtfs": { - "stop_id": "1283", - "stop_code": "31283", - "stop_name": "Maisonneuve et boul. Gaétan-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maisonneuve et boul. Gaétan-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.3993644106603, - 45.5023429216469 - ] - } - }, - { - "id": "1446", - "code": "31446", - "data": { - "gtfs": { - "stop_id": "1446", - "stop_code": "31446", - "stop_name": "Maisonneuve et boul. Gaétan-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maisonneuve et boul. Gaétan-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.3995134267423, - 45.5023237844889 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1848824863033 - }, - "name": "Maisonneuve et boul. Gaétan-Boucher", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.399438919, - 45.502333353 - ] - }, - "is_frozen": false, - "integer_id": 191, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.423275, - 45.501781 - ] - }, - "id": 192, - "properties": { - "id": "e8e5c7df-2edf-4749-98c2-97962c7eff9c", - "code": "31297", - "data": { - "stops": [ - { - "id": "1297", - "code": "31297", - "data": { - "gtfs": { - "stop_id": "1297", - "stop_code": "31297", - "stop_name": "montée Saint-Hubert et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4233034638877, - 45.501953553843 - ] - } - }, - { - "id": "3644", - "code": "33644", - "data": { - "gtfs": { - "stop_id": "3644", - "stop_code": "33644", - "stop_name": "boul. Cousineau et montée Saint-Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et montée Saint-Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4232455573338, - 45.5016075117261 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.175542733921 - }, - "name": "montée Saint-Hubert et boul. Cousineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.423274511, - 45.501780533 - ] - }, - "is_frozen": false, - "integer_id": 192, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.427938, - 45.495312 - ] - }, - "id": 193, - "properties": { - "id": "d68685b2-7e92-4934-989f-8ccfae13451f", - "code": "31299", - "data": { - "stops": [ - { - "id": "1299", - "code": "31299", - "data": { - "gtfs": { - "stop_id": "1299", - "stop_code": "31299", - "stop_name": "montée Saint-Hubert et boul. Davis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et boul. Davis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4279235893855, - 45.495430980332 - ] - } - }, - { - "id": "1724", - "code": "31724", - "data": { - "gtfs": { - "stop_id": "1724", - "stop_code": "31724", - "stop_name": "boul. Davis et montée Saint-Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et montée Saint-Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4277347679401, - 45.4953343068468 - ] - } - }, - { - "id": "1744", - "code": "31744", - "data": { - "gtfs": { - "stop_id": "1744", - "stop_code": "31744", - "stop_name": "boul. Davis et montée Saint-Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et montée Saint-Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4281421382, - 45.4951933053809 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0662811458423 - }, - "name": "montée Saint-Hubert et boul. Davis", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.427938453, - 45.495312143 - ] - }, - "is_frozen": false, - "integer_id": 193, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.430852, - 45.491291 - ] - }, - "id": 194, - "properties": { - "id": "46a4fc7f-c064-4d08-ac44-e9eeffd46d50", - "code": "31301", - "data": { - "stops": [ - { - "id": "1301", - "code": "31301", - "data": { - "gtfs": { - "stop_id": "1301", - "stop_code": "31301", - "stop_name": "montée Saint-Hubert et av. Trudeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Trudeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4308371145741, - 45.4915371007301 - ] - } - }, - { - "id": "3903", - "code": "33903", - "data": { - "gtfs": { - "stop_id": "3903", - "stop_code": "33903", - "stop_name": "montée Saint-Hubert et av. Trudeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Trudeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4308667649174, - 45.4910452994527 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9983796629581 - }, - "name": "montée Saint-Hubert et av. Trudeau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.43085194, - 45.4912912 - ] - }, - "is_frozen": false, - "integer_id": 194, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449335, - 45.47818 - ] - }, - "id": 195, - "properties": { - "id": "9d35b7a9-abde-4942-9112-1597cdd98ea0", - "code": "31308", - "data": { - "stops": [ - { - "id": "1308", - "code": "31308", - "data": { - "gtfs": { - "stop_id": "1308", - "stop_code": "31308", - "stop_name": "av. Auteuil et boul. Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et boul. Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4494633792133, - 45.4781935991562 - ] - } - }, - { - "id": "3984", - "code": "33984", - "data": { - "gtfs": { - "stop_id": "3984", - "stop_code": "33984", - "stop_name": "av. Auteuil et boul. Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et boul. Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4492070843179, - 45.4781671154647 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7770773022363 - }, - "name": "av. Auteuil et boul. Grande Allée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449335232, - 45.478180357 - ] - }, - "is_frozen": false, - "integer_id": 195, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458349, - 45.472024 - ] - }, - "id": 196, - "properties": { - "id": "ba5c0d3d-92c0-4bd7-8079-bab093684934", - "code": "31312", - "data": { - "stops": [ - { - "id": "1312", - "code": "31312", - "data": { - "gtfs": { - "stop_id": "1312", - "stop_code": "31312", - "stop_name": "av. Auteuil et Alarie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et Alarie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4583162907513, - 45.4721415603315 - ] - } - }, - { - "id": "3773", - "code": "33773", - "data": { - "gtfs": { - "stop_id": "3773", - "stop_code": "33773", - "stop_name": "av. Auteuil et Alarie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et Alarie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4583816306103, - 45.4719062118312 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6732128488143 - }, - "name": "av. Auteuil et Alarie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.458348961, - 45.472023886 - ] - }, - "is_frozen": false, - "integer_id": 196, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462655, - 45.46907 - ] - }, - "id": 197, - "properties": { - "id": "0cd0cae0-c815-44f5-98fd-8d04fe5f8f38", - "code": "31314", - "data": { - "stops": [ - { - "id": "1314", - "code": "31314", - "data": { - "gtfs": { - "stop_id": "1314", - "stop_code": "31314", - "stop_name": "av. Auteuil et boul. Lapinière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et boul. Lapinière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4626852194355, - 45.4691510822556 - ] - } - }, - { - "id": "3772", - "code": "33772", - "data": { - "gtfs": { - "stop_id": "3772", - "stop_code": "33772", - "stop_name": "av. Auteuil et boul. Lapinière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et boul. Lapinière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4626240852999, - 45.4689896258657 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6233964169397 - }, - "name": "av. Auteuil et boul. Lapinière", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462654652, - 45.469070354 - ] - }, - "is_frozen": false, - "integer_id": 197, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.517648, - 45.51341 - ] - }, - "id": 198, - "properties": { - "id": "c348089b-75bd-4b39-a9e3-567f6168a9ba", - "code": "31315", - "data": { - "stops": [ - { - "id": "1315", - "code": "31315", - "data": { - "gtfs": { - "stop_id": "1315", - "stop_code": "31315", - "stop_name": "Riverside et av. de Brixton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. de Brixton", - "geography": { - "type": "Point", - "coordinates": [ - -73.5177912036182, - 45.5135838252656 - ] - } - }, - { - "id": "1344", - "code": "31344", - "data": { - "gtfs": { - "stop_id": "1344", - "stop_code": "31344", - "stop_name": "Riverside et av. de Brixton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. de Brixton", - "geography": { - "type": "Point", - "coordinates": [ - -73.5175044585745, - 45.5132367350542 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3720816664083 - }, - "name": "Riverside et av. de Brixton", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.517647831, - 45.51341028 - ] - }, - "is_frozen": false, - "integer_id": 198, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.517749, - 45.511589 - ] - }, - "id": 199, - "properties": { - "id": "8a39a492-c1fa-443a-8dde-cec8aa8d663b", - "code": "31316", - "data": { - "stops": [ - { - "id": "1316", - "code": "31316", - "data": { - "gtfs": { - "stop_id": "1316", - "stop_code": "31316", - "stop_name": "Riverside et av. de Sanford", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. de Sanford", - "geography": { - "type": "Point", - "coordinates": [ - -73.5178301285685, - 45.5117745978731 - ] - } - }, - { - "id": "1343", - "code": "31343", - "data": { - "gtfs": { - "stop_id": "1343", - "stop_code": "31343", - "stop_name": "Riverside et av. de Sanford", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. de Sanford", - "geography": { - "type": "Point", - "coordinates": [ - -73.5176670574606, - 45.5114027159465 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3412888782092 - }, - "name": "Riverside et av. de Sanford", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.517748593, - 45.511588657 - ] - }, - "is_frozen": false, - "integer_id": 199, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.517591, - 45.509296 - ] - }, - "id": 200, - "properties": { - "id": "cf524087-95a4-43fb-a2f1-74822356a0a9", - "code": "31317", - "data": { - "stops": [ - { - "id": "1317", - "code": "31317", - "data": { - "gtfs": { - "stop_id": "1317", - "stop_code": "31317", - "stop_name": "Riverside et av. Walnut", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Walnut", - "geography": { - "type": "Point", - "coordinates": [ - -73.5177237020192, - 45.5093798788593 - ] - } - }, - { - "id": "1342", - "code": "31342", - "data": { - "gtfs": { - "stop_id": "1342", - "stop_code": "31342", - "stop_name": "Riverside et av. Walnut", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Walnut", - "geography": { - "type": "Point", - "coordinates": [ - -73.5174584679761, - 45.5092116330459 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3025337881597 - }, - "name": "Riverside et av. Walnut", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.517591085, - 45.509295756 - ] - }, - "is_frozen": false, - "integer_id": 200, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.517215, - 45.507285 - ] - }, - "id": 201, - "properties": { - "id": "9b5a2104-c851-4abe-88ee-090849d3adca", - "code": "31318", - "data": { - "stops": [ - { - "id": "1318", - "code": "31318", - "data": { - "gtfs": { - "stop_id": "1318", - "stop_code": "31318", - "stop_name": "Riverside et av. Pine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Pine", - "geography": { - "type": "Point", - "coordinates": [ - -73.5173389825552, - 45.5073111899161 - ] - } - }, - { - "id": "1341", - "code": "31341", - "data": { - "gtfs": { - "stop_id": "1341", - "stop_code": "31341", - "stop_name": "Riverside et av. Pine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Pine", - "geography": { - "type": "Point", - "coordinates": [ - -73.5170906731055, - 45.507259031081 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2685532828716 - }, - "name": "Riverside et av. Pine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.517214828, - 45.50728511 - ] - }, - "is_frozen": false, - "integer_id": 201, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.516511, - 45.501885 - ] - }, - "id": 202, - "properties": { - "id": "ac69a18f-4dcd-4f88-8eb9-8adab33dfbd9", - "code": "31319", - "data": { - "stops": [ - { - "id": "1319", - "code": "31319", - "data": { - "gtfs": { - "stop_id": "1319", - "stop_code": "31319", - "stop_name": "av. Argyle et Riverside", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Argyle et Riverside", - "geography": { - "type": "Point", - "coordinates": [ - -73.5162305236968, - 45.5017747550852 - ] - } - }, - { - "id": "1339", - "code": "31339", - "data": { - "gtfs": { - "stop_id": "1339", - "stop_code": "31339", - "stop_name": "av. Argyle et Riverside", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Argyle et Riverside", - "geography": { - "type": "Point", - "coordinates": [ - -73.5161536596062, - 45.5019197793141 - ] - } - }, - { - "id": "1522", - "code": "31522", - "data": { - "gtfs": { - "stop_id": "1522", - "stop_code": "31522", - "stop_name": "Riverside et av. Argyle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Argyle", - "geography": { - "type": "Point", - "coordinates": [ - -73.5168691957907, - 45.5020838801728 - ] - } - }, - { - "id": "1567", - "code": "31567", - "data": { - "gtfs": { - "stop_id": "1567", - "stop_code": "31567", - "stop_name": "Riverside et av. Argyle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Argyle", - "geography": { - "type": "Point", - "coordinates": [ - -73.5164900662819, - 45.5016862147317 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1773084503483 - }, - "name": "av. Argyle et Riverside", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.516511428, - 45.501885047 - ] - }, - "is_frozen": false, - "integer_id": 202, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.489162, - 45.487233 - ] - }, - "id": 203, - "properties": { - "id": "54bbe390-ff6d-41d9-bd4b-1e4843d66512", - "code": "31320", - "data": { - "stops": [ - { - "id": "1320", - "code": "31320", - "data": { - "gtfs": { - "stop_id": "1320", - "stop_code": "31320", - "stop_name": "av. Victoria et av. Kerr", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et av. Kerr", - "geography": { - "type": "Point", - "coordinates": [ - -73.4894436386672, - 45.4873276145616 - ] - } - }, - { - "id": "1337", - "code": "31337", - "data": { - "gtfs": { - "stop_id": "1337", - "stop_code": "31337", - "stop_name": "av. Victoria et av. Kerr", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et av. Kerr", - "geography": { - "type": "Point", - "coordinates": [ - -73.4888802393235, - 45.4871373868529 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9298551773605 - }, - "name": "av. Victoria et av. Kerr", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.489161939, - 45.487232501 - ] - }, - "is_frozen": false, - "integer_id": 203, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479214, - 45.480123 - ] - }, - "id": 204, - "properties": { - "id": "1e48d359-2463-4fbd-b946-c0a530db4bbe", - "code": "31321", - "data": { - "stops": [ - { - "id": "1321", - "code": "31321", - "data": { - "gtfs": { - "stop_id": "1321", - "stop_code": "31321", - "stop_name": "av. Victoria et Allan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et Allan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4793131182397, - 45.4800911921688 - ] - } - }, - { - "id": "1333", - "code": "31333", - "data": { - "gtfs": { - "stop_id": "1333", - "stop_code": "31333", - "stop_name": "av. Victoria et Allan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et Allan", - "geography": { - "type": "Point", - "coordinates": [ - -73.479114087973, - 45.4801550837568 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8098605184721 - }, - "name": "av. Victoria et Allan", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479213603, - 45.480123138 - ] - }, - "is_frozen": false, - "integer_id": 204, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478206, - 45.479271 - ] - }, - "id": 205, - "properties": { - "id": "c46257ee-b29f-4a62-9447-95eb1e19c941", - "code": "31322", - "data": { - "stops": [ - { - "id": "1322", - "code": "31322", - "data": { - "gtfs": { - "stop_id": "1322", - "stop_code": "31322", - "stop_name": "av. Victoria et boul. Simard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et boul. Simard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4782063449852, - 45.4792710523355 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7954816863801 - }, - "name": "av. Victoria et boul. Simard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.478206345, - 45.479271052 - ] - }, - "is_frozen": false, - "integer_id": 205, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.476747, - 45.478094 - ] - }, - "id": 206, - "properties": { - "id": "fe84c986-2907-4842-bde4-72fbe08a0576", - "code": "31323", - "data": { - "stops": [ - { - "id": "1323", - "code": "31323", - "data": { - "gtfs": { - "stop_id": "1323", - "stop_code": "31323", - "stop_name": "av. Victoria et Morley", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et Morley", - "geography": { - "type": "Point", - "coordinates": [ - -73.4767472120275, - 45.4780936146347 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7756136633651 - }, - "name": "av. Victoria et Morley", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.476747212, - 45.478093615 - ] - }, - "is_frozen": false, - "integer_id": 206, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466294, - 45.470885 - ] - }, - "id": 207, - "properties": { - "id": "42f48eea-ee59-46f6-9c43-4b63100a50dc", - "code": "31325", - "data": { - "stops": [ - { - "id": "1325", - "code": "31325", - "data": { - "gtfs": { - "stop_id": "1325", - "stop_code": "31325", - "stop_name": "boul. Lapinière et Alfred", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et Alfred", - "geography": { - "type": "Point", - "coordinates": [ - -73.4663325440878, - 45.4707849676653 - ] - } - }, - { - "id": "3969", - "code": "33969", - "data": { - "gtfs": { - "stop_id": "3969", - "stop_code": "33969", - "stop_name": "boul. Lapinière et Alfred", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et Alfred", - "geography": { - "type": "Point", - "coordinates": [ - -73.4662551811334, - 45.4709855695741 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6540071837142 - }, - "name": "boul. Lapinière et Alfred", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466293863, - 45.470885269 - ] - }, - "is_frozen": false, - "integer_id": 207, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469592, - 45.473342 - ] - }, - "id": 208, - "properties": { - "id": "1345672a-9148-439f-9a52-b8a216612929", - "code": "31330", - "data": { - "stops": [ - { - "id": "1330", - "code": "31330", - "data": { - "gtfs": { - "stop_id": "1330", - "stop_code": "31330", - "stop_name": "boul. Lapinière et Alcide", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et Alcide", - "geography": { - "type": "Point", - "coordinates": [ - -73.4695918272203, - 45.4733421284052 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6954497836571 - }, - "name": "boul. Lapinière et Alcide", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469591827, - 45.473342128 - ] - }, - "is_frozen": false, - "integer_id": 208, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475883, - 45.477887 - ] - }, - "id": 209, - "properties": { - "id": "c04702f7-b2cf-440e-a6da-0a84aefc3963", - "code": "31331", - "data": { - "stops": [ - { - "id": "1331", - "code": "31331", - "data": { - "gtfs": { - "stop_id": "1331", - "stop_code": "31331", - "stop_name": "av. Victoria et Morley", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et Morley", - "geography": { - "type": "Point", - "coordinates": [ - -73.4756408939842, - 45.4776973209116 - ] - } - }, - { - "id": "2491", - "code": "32491", - "data": { - "gtfs": { - "stop_id": "2491", - "stop_code": "32491", - "stop_name": "Morley et av. Victoria", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Morley et av. Victoria", - "geography": { - "type": "Point", - "coordinates": [ - -73.4761245825502, - 45.4780758518923 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7721203919612 - }, - "name": "av. Victoria et Morley", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475882738, - 45.477886586 - ] - }, - "is_frozen": false, - "integer_id": 209, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.477506, - 45.479017 - ] - }, - "id": 210, - "properties": { - "id": "f32e29fd-d271-4ae6-8083-6d24349dccdf", - "code": "31332", - "data": { - "stops": [ - { - "id": "1332", - "code": "31332", - "data": { - "gtfs": { - "stop_id": "1332", - "stop_code": "31332", - "stop_name": "av. Victoria et boul. Simard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et boul. Simard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4775064005121, - 45.4790171697478 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7911975878877 - }, - "name": "av. Victoria et boul. Simard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.477506401, - 45.47901717 - ] - }, - "is_frozen": false, - "integer_id": 210, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.48157, - 45.481815 - ] - }, - "id": 211, - "properties": { - "id": "dc5fe0eb-b8cc-4186-82d3-6787360ae612", - "code": "31334", - "data": { - "stops": [ - { - "id": "1334", - "code": "31334", - "data": { - "gtfs": { - "stop_id": "1334", - "stop_code": "31334", - "stop_name": "av. Victoria et Regent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et Regent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4813603193656, - 45.4817689898721 - ] - } - }, - { - "id": "3643", - "code": "33643", - "data": { - "gtfs": { - "stop_id": "3643", - "stop_code": "33643", - "stop_name": "av. Victoria et Regent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et Regent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4817793394228, - 45.4818607491254 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8384101546795 - }, - "name": "av. Victoria et Regent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481569829, - 45.481814869 - ] - }, - "is_frozen": false, - "integer_id": 211, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.484889, - 45.484187 - ] - }, - "id": 212, - "properties": { - "id": "0a623471-271f-47f5-9a85-7feece2a3285", - "code": "31335", - "data": { - "stops": [ - { - "id": "1335", - "code": "31335", - "data": { - "gtfs": { - "stop_id": "1335", - "stop_code": "31335", - "stop_name": "av. Victoria et civique 1700", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et civique 1700", - "geography": { - "type": "Point", - "coordinates": [ - -73.4846940389769, - 45.4841602838916 - ] - } - }, - { - "id": "3642", - "code": "33642", - "data": { - "gtfs": { - "stop_id": "3642", - "stop_code": "33642", - "stop_name": "av. Victoria et civique 1755", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et civique 1755", - "geography": { - "type": "Point", - "coordinates": [ - -73.4850847982139, - 45.4842139619052 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8784485747038 - }, - "name": "av. Victoria et civique 1700", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.484889419, - 45.484187123 - ] - }, - "is_frozen": false, - "integer_id": 212, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.48701, - 45.485691 - ] - }, - "id": 213, - "properties": { - "id": "aa413165-9699-49b6-9dea-fa35bda8f373", - "code": "31336", - "data": { - "stops": [ - { - "id": "1336", - "code": "31336", - "data": { - "gtfs": { - "stop_id": "1336", - "stop_code": "31336", - "stop_name": "av. Victoria et James-E.-Davis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et James-E.-Davis", - "geography": { - "type": "Point", - "coordinates": [ - -73.486780178749, - 45.4856398874252 - ] - } - }, - { - "id": "2599", - "code": "32599", - "data": { - "gtfs": { - "stop_id": "2599", - "stop_code": "32599", - "stop_name": "av. Victoria et James-E.-Davis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et James-E.-Davis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4872388476348, - 45.4857419919951 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9038322824038 - }, - "name": "av. Victoria et James-E.-Davis", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.487009513, - 45.48569094 - ] - }, - "is_frozen": false, - "integer_id": 213, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491381, - 45.488941 - ] - }, - "id": 214, - "properties": { - "id": "7faed35b-7709-443d-b0ec-5f09ab018202", - "code": "31338", - "data": { - "stops": [ - { - "id": "1338", - "code": "31338", - "data": { - "gtfs": { - "stop_id": "1338", - "stop_code": "31338", - "stop_name": "av. Victoria et boul. Churchill", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et boul. Churchill", - "geography": { - "type": "Point", - "coordinates": [ - -73.4913813382034, - 45.4889411495796 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9587011322507 - }, - "name": "av. Victoria et boul. Churchill", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491381338, - 45.48894115 - ] - }, - "is_frozen": false, - "integer_id": 214, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.517405, - 45.505486 - ] - }, - "id": 215, - "properties": { - "id": "33c33575-6f8f-41f3-92e3-b54759cf28a1", - "code": "31340", - "data": { - "stops": [ - { - "id": "1340", - "code": "31340", - "data": { - "gtfs": { - "stop_id": "1340", - "stop_code": "31340", - "stop_name": "Riverside et av. Mercille", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Mercille", - "geography": { - "type": "Point", - "coordinates": [ - -73.5173601050762, - 45.5052343447835 - ] - } - }, - { - "id": "3303", - "code": "33303", - "data": { - "gtfs": { - "stop_id": "3303", - "stop_code": "33303", - "stop_name": "Riverside et av. Mercille", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Mercille", - "geography": { - "type": "Point", - "coordinates": [ - -73.5174503288528, - 45.5057378847772 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2381527919282 - }, - "name": "Riverside et av. Mercille", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.517405217, - 45.505486115 - ] - }, - "is_frozen": false, - "integer_id": 215, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.51541, - 45.533717 - ] - }, - "id": 216, - "properties": { - "id": "6ed6a309-b9c1-46d7-bd6c-05d8bb05ef59", - "code": "31346", - "data": { - "stops": [ - { - "id": "1346", - "code": "31346", - "data": { - "gtfs": { - "stop_id": "1346", - "stop_code": "31346", - "stop_name": "Saint-Charles ouest et Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.5152495553594, - 45.5336939910352 - ] - } - }, - { - "id": "3348", - "code": "33348", - "data": { - "gtfs": { - "stop_id": "3348", - "stop_code": "33348", - "stop_name": "Saint-Charles ouest et Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.5155707735635, - 45.5337406205092 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.715552623372 - }, - "name": "Saint-Charles ouest et Montarville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.515410164, - 45.533717306 - ] - }, - "is_frozen": false, - "integer_id": 216, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.51399, - 45.53524 - ] - }, - "id": 217, - "properties": { - "id": "d00d9138-966b-4522-be1d-8c665c71246b", - "code": "31347", - "data": { - "stops": [ - { - "id": "1347", - "code": "31347", - "data": { - "gtfs": { - "stop_id": "1347", - "stop_code": "31347", - "stop_name": "Saint-Charles ouest et Labonté", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et Labonté", - "geography": { - "type": "Point", - "coordinates": [ - -73.5139418465303, - 45.5351088214384 - ] - } - }, - { - "id": "1430", - "code": "31430", - "data": { - "gtfs": { - "stop_id": "1430", - "stop_code": "31430", - "stop_name": "Saint-Charles ouest et Labonté", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et Labonté", - "geography": { - "type": "Point", - "coordinates": [ - -73.5140374576043, - 45.5353704529053 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7413159848394 - }, - "name": "Saint-Charles ouest et Labonté", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.513989652, - 45.535239637 - ] - }, - "is_frozen": false, - "integer_id": 217, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.511399, - 45.53724 - ] - }, - "id": 218, - "properties": { - "id": "3f1ae8d0-3119-433b-a063-a0d6dbb43a6f", - "code": "31348", - "data": { - "stops": [ - { - "id": "1348", - "code": "31348", - "data": { - "gtfs": { - "stop_id": "1348", - "stop_code": "31348", - "stop_name": "Saint-Charles ouest et MAIRIE DE L'ARRONDISSEMENT DU VIEUX-LONGUEUIL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et MAIRIE DE L'ARRONDISSEMENT DU VIEUX-LONGUEUIL", - "geography": { - "type": "Point", - "coordinates": [ - -73.5111641652022, - 45.5372874242779 - ] - } - }, - { - "id": "1429", - "code": "31429", - "data": { - "gtfs": { - "stop_id": "1429", - "stop_code": "31429", - "stop_name": "Saint-Charles ouest et Saint-Jean", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et Saint-Jean", - "geography": { - "type": "Point", - "coordinates": [ - -73.5116331038971, - 45.5371928945361 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7751752148879 - }, - "name": "Saint-Charles ouest et MAIRIE DE L'ARRONDISSEMENT DU VIEUX-LONGUEUIL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.511398635, - 45.537240159 - ] - }, - "is_frozen": false, - "integer_id": 218, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.509567, - 45.538795 - ] - }, - "id": 219, - "properties": { - "id": "48ea0d06-7b69-4895-b55b-2a18e6e6f906", - "code": "31349", - "data": { - "stops": [ - { - "id": "1349", - "code": "31349", - "data": { - "gtfs": { - "stop_id": "1349", - "stop_code": "31349", - "stop_name": "Saint-Charles ouest et Saint-Alexandre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et Saint-Alexandre", - "geography": { - "type": "Point", - "coordinates": [ - -73.5095545103946, - 45.5386738032097 - ] - } - }, - { - "id": "1428", - "code": "31428", - "data": { - "gtfs": { - "stop_id": "1428", - "stop_code": "31428", - "stop_name": "Saint-Charles ouest et Saint-Alexandre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et Saint-Alexandre", - "geography": { - "type": "Point", - "coordinates": [ - -73.5095793683202, - 45.5389168184066 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8014989357348 - }, - "name": "Saint-Charles ouest et Saint-Alexandre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.509566939, - 45.538795311 - ] - }, - "is_frozen": false, - "integer_id": 219, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.505493, - 45.539593 - ] - }, - "id": 220, - "properties": { - "id": "0b419003-a369-45de-8ce5-7da6890d7f0a", - "code": "31350", - "data": { - "stops": [ - { - "id": "1350", - "code": "31350", - "data": { - "gtfs": { - "stop_id": "1350", - "stop_code": "31350", - "stop_name": "ch. de Chambly et Saint-Laurent ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Saint-Laurent ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.5054925397943, - 45.5395926660578 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8149964276224 - }, - "name": "ch. de Chambly et Saint-Laurent ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.50549254, - 45.539592666 - ] - }, - "is_frozen": false, - "integer_id": 220, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.504028, - 45.538662 - ] - }, - "id": 221, - "properties": { - "id": "680dba5d-14fa-4f77-98bd-f3a49fec7b48", - "code": "31351", - "data": { - "stops": [ - { - "id": "1351", - "code": "31351", - "data": { - "gtfs": { - "stop_id": "1351", - "stop_code": "31351", - "stop_name": "ch. de Chambly et Guillaume", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Guillaume", - "geography": { - "type": "Point", - "coordinates": [ - -73.504028336962, - 45.5386623735755 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7992486556246 - }, - "name": "ch. de Chambly et Guillaume", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.504028337, - 45.538662374 - ] - }, - "is_frozen": false, - "integer_id": 221, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.499666, - 45.536739 - ] - }, - "id": 222, - "properties": { - "id": "f45a38ac-0f3f-41d9-9da1-be7902cc983a", - "code": "31352", - "data": { - "stops": [ - { - "id": "1352", - "code": "31352", - "data": { - "gtfs": { - "stop_id": "1352", - "stop_code": "31352", - "stop_name": "ch. de Chambly et Le Moyne ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Le Moyne ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4997283688683, - 45.5368191963752 - ] - } - }, - { - "id": "1958", - "code": "31958", - "data": { - "gtfs": { - "stop_id": "1958", - "stop_code": "31958", - "stop_name": "Le Moyne ouest et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne ouest et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4996036172677, - 45.5366590213015 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.766694509611 - }, - "name": "ch. de Chambly et Le Moyne ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.499665993, - 45.536739109 - ] - }, - "is_frozen": false, - "integer_id": 222, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.496509, - 45.535613 - ] - }, - "id": 223, - "properties": { - "id": "9cf81604-6d70-4ba8-a3fc-521104742058", - "code": "31353", - "data": { - "stops": [ - { - "id": "1353", - "code": "31353", - "data": { - "gtfs": { - "stop_id": "1353", - "stop_code": "31353", - "stop_name": "ch. de Chambly et CEGEP EDOUARD-MONTPETIT", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et CEGEP EDOUARD-MONTPETIT", - "geography": { - "type": "Point", - "coordinates": [ - -73.4965690377931, - 45.5354571353991 - ] - } - }, - { - "id": "1423", - "code": "31423", - "data": { - "gtfs": { - "stop_id": "1423", - "stop_code": "31423", - "stop_name": "ch. de Chambly et De Gentilly est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et De Gentilly est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4964489163358, - 45.5357679114337 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7476268834029 - }, - "name": "ch. de Chambly et CEGEP EDOUARD-MONTPETIT", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.496508977, - 45.535612523 - ] - }, - "is_frozen": false, - "integer_id": 223, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494246, - 45.534619 - ] - }, - "id": 224, - "properties": { - "id": "28f2fe65-961c-4550-a722-1e7790fe94ad", - "code": "31354", - "data": { - "stops": [ - { - "id": "1354", - "code": "31354", - "data": { - "gtfs": { - "stop_id": "1354", - "stop_code": "31354", - "stop_name": "ch. de Chambly et Sainte-Catherine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Sainte-Catherine", - "geography": { - "type": "Point", - "coordinates": [ - -73.4944849475691, - 45.5346067033174 - ] - } - }, - { - "id": "3447", - "code": "33447", - "data": { - "gtfs": { - "stop_id": "3447", - "stop_code": "33447", - "stop_name": "ch. de Chambly et Sainte-Catherine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Sainte-Catherine", - "geography": { - "type": "Point", - "coordinates": [ - -73.4940065931541, - 45.5346317532082 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7308161650544 - }, - "name": "ch. de Chambly et Sainte-Catherine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.49424577, - 45.534619228 - ] - }, - "is_frozen": false, - "integer_id": 224, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.49271, - 45.53385 - ] - }, - "id": 225, - "properties": { - "id": "9d0a7ab6-be66-4ca9-b863-8712d8cd028c", - "code": "31355", - "data": { - "stops": [ - { - "id": "1355", - "code": "31355", - "data": { - "gtfs": { - "stop_id": "1355", - "stop_code": "31355", - "stop_name": "ch. de Chambly et place du Collège", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et place du Collège", - "geography": { - "type": "Point", - "coordinates": [ - -73.4927098184929, - 45.5338502917079 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7178031464008 - }, - "name": "ch. de Chambly et place du Collège", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492709818, - 45.533850292 - ] - }, - "is_frozen": false, - "integer_id": 225, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490853, - 45.533234 - ] - }, - "id": 226, - "properties": { - "id": "999ed130-7d99-4115-ac3c-cabba7731288", - "code": "31356", - "data": { - "stops": [ - { - "id": "1356", - "code": "31356", - "data": { - "gtfs": { - "stop_id": "1356", - "stop_code": "31356", - "stop_name": "ch. de Chambly et Leblanc ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Leblanc ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4911828598862, - 45.5332248612934 - ] - } - }, - { - "id": "1421", - "code": "31421", - "data": { - "gtfs": { - "stop_id": "1421", - "stop_code": "31421", - "stop_name": "ch. de Chambly et Leblanc est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Leblanc est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4905222822402, - 45.5332428051616 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7073709392222 - }, - "name": "ch. de Chambly et Leblanc ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490852571, - 45.533233833 - ] - }, - "is_frozen": false, - "integer_id": 226, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.488498, - 45.53219 - ] - }, - "id": 227, - "properties": { - "id": "b67af1ad-a22c-4a58-9c2e-cf2b980d905f", - "code": "31357", - "data": { - "stops": [ - { - "id": "1357", - "code": "31357", - "data": { - "gtfs": { - "stop_id": "1357", - "stop_code": "31357", - "stop_name": "ch. de Chambly et Briggs ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Briggs ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.488653916352, - 45.5322118772606 - ] - } - }, - { - "id": "1420", - "code": "31420", - "data": { - "gtfs": { - "stop_id": "1420", - "stop_code": "31420", - "stop_name": "ch. de Chambly et Briggs est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Briggs est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4883418991508, - 45.5322932740207 - ] - } - }, - { - "id": "4886", - "code": "34886", - "data": { - "gtfs": { - "stop_id": "4886", - "stop_code": "34886", - "stop_name": "Briggs ouest et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Briggs ouest et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4884833488102, - 45.5320859548 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6897071436043 - }, - "name": "ch. de Chambly et Briggs ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.488498, - 45.53219 - ] - }, - "is_frozen": false, - "integer_id": 227, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478898, - 45.528146 - ] - }, - "id": 228, - "properties": { - "id": "aa7795c0-dd5c-4462-b672-459c92223af2", - "code": "31359", - "data": { - "stops": [ - { - "id": "1359", - "code": "31359", - "data": { - "gtfs": { - "stop_id": "1359", - "stop_code": "31359", - "stop_name": "ch. de Chambly et Benoit ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Benoit ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4788979101183, - 45.5281456528469 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6212776698044 - }, - "name": "ch. de Chambly et Benoit ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47889791, - 45.528145653 - ] - }, - "is_frozen": false, - "integer_id": 228, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.476122, - 45.527073 - ] - }, - "id": 229, - "properties": { - "id": "49918c5a-8414-49fd-abf9-87ae6b9f3976", - "code": "31360", - "data": { - "stops": [ - { - "id": "1360", - "code": "31360", - "data": { - "gtfs": { - "stop_id": "1360", - "stop_code": "31360", - "stop_name": "ch. de Chambly et de Cherbourg", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et de Cherbourg", - "geography": { - "type": "Point", - "coordinates": [ - -73.4761539178719, - 45.5269823309531 - ] - } - }, - { - "id": "1417", - "code": "31417", - "data": { - "gtfs": { - "stop_id": "1417", - "stop_code": "31417", - "stop_name": "ch. de Chambly et Brodeur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Brodeur", - "geography": { - "type": "Point", - "coordinates": [ - -73.476089479408, - 45.5271629098168 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.603124631842 - }, - "name": "ch. de Chambly et de Cherbourg", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.476121699, - 45.52707262 - ] - }, - "is_frozen": false, - "integer_id": 229, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474459, - 45.526391 - ] - }, - "id": 230, - "properties": { - "id": "08c413fa-7a41-44db-95dd-16f0ed7ba039", - "code": "31361", - "data": { - "stops": [ - { - "id": "1361", - "code": "31361", - "data": { - "gtfs": { - "stop_id": "1361", - "stop_code": "31361", - "stop_name": "ch. de Chambly et boul. Wilson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Wilson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4743320663655, - 45.5262371004343 - ] - } - }, - { - "id": "1416", - "code": "31416", - "data": { - "gtfs": { - "stop_id": "1416", - "stop_code": "31416", - "stop_name": "ch. de Chambly et King-George", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et King-George", - "geography": { - "type": "Point", - "coordinates": [ - -73.4745852324556, - 45.5265440931361 - ] - } - }, - { - "id": "4304", - "code": "34304", - "data": { - "gtfs": { - "stop_id": "4304", - "stop_code": "34304", - "stop_name": "ch. de Chambly et King-George", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et King-George", - "geography": { - "type": "Point", - "coordinates": [ - -73.4743911235781, - 45.5264461148736 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.591587039827 - }, - "name": "ch. de Chambly et boul. Wilson", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474458649, - 45.526390597 - ] - }, - "is_frozen": false, - "integer_id": 230, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469638, - 45.524368 - ] - }, - "id": 231, - "properties": { - "id": "c3a2368c-bf2d-4c72-9adb-41ee799004b3", - "code": "31363", - "data": { - "stops": [ - { - "id": "1363", - "code": "31363", - "data": { - "gtfs": { - "stop_id": "1363", - "stop_code": "31363", - "stop_name": "ch. de Chambly et Payette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Payette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4696932228716, - 45.5242787085845 - ] - } - }, - { - "id": "1414", - "code": "31414", - "data": { - "gtfs": { - "stop_id": "1414", - "stop_code": "31414", - "stop_name": "ch. de Chambly et Briand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Briand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4695818956751, - 45.5244570515095 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5573717411154 - }, - "name": "ch. de Chambly et Payette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469637559, - 45.52436788 - ] - }, - "is_frozen": false, - "integer_id": 231, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468268, - 45.523693 - ] - }, - "id": 232, - "properties": { - "id": "6885c351-726d-4431-84b5-d9262699183f", - "code": "31364", - "data": { - "stops": [ - { - "id": "1364", - "code": "31364", - "data": { - "gtfs": { - "stop_id": "1364", - "stop_code": "31364", - "stop_name": "ch. de Chambly et Beaubien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Beaubien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4682676925322, - 45.5236925834222 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5459495568197 - }, - "name": "ch. de Chambly et Beaubien", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468267693, - 45.523692583 - ] - }, - "is_frozen": false, - "integer_id": 232, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460828, - 45.520528 - ] - }, - "id": 233, - "properties": { - "id": "ca3fc9fc-e2eb-41c4-a8d2-0ad2d2109db1", - "code": "31365", - "data": { - "stops": [ - { - "id": "1365", - "code": "31365", - "data": { - "gtfs": { - "stop_id": "1365", - "stop_code": "31365", - "stop_name": "ch. de Chambly et Deschamps", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Deschamps", - "geography": { - "type": "Point", - "coordinates": [ - -73.460828107179, - 45.5205280081865 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4924283614475 - }, - "name": "ch. de Chambly et Deschamps", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.460828107, - 45.520528008 - ] - }, - "is_frozen": false, - "integer_id": 233, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457163, - 45.519368 - ] - }, - "id": 234, - "properties": { - "id": "5720f65b-ba9f-440f-94f8-7ec0912acfa0", - "code": "31366", - "data": { - "stops": [ - { - "id": "1366", - "code": "31366", - "data": { - "gtfs": { - "stop_id": "1366", - "stop_code": "31366", - "stop_name": "ch. de Chambly et de Fontainebleau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et de Fontainebleau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4575653810272, - 45.5191671317664 - ] - } - }, - { - "id": "1411", - "code": "31411", - "data": { - "gtfs": { - "stop_id": "1411", - "stop_code": "31411", - "stop_name": "ch. de Chambly et boul. Des Ormeaux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Des Ormeaux", - "geography": { - "type": "Point", - "coordinates": [ - -73.4569950572288, - 45.5191960454174 - ] - } - }, - { - "id": "5453", - "code": "30197", - "data": { - "gtfs": { - "stop_id": "5453", - "stop_code": "30197", - "stop_name": "boul. Des Ormeaux et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Des Ormeaux et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4572965728507, - 45.5193701327854 - ] - } - }, - { - "id": "5454", - "code": "30198", - "data": { - "gtfs": { - "stop_id": "5454", - "stop_code": "30198", - "stop_name": "boul. Des Ormeaux et Mathieu", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Des Ormeaux et Mathieu", - "geography": { - "type": "Point", - "coordinates": [ - -73.456760932747, - 45.5195698524395 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4728201633094 - }, - "name": "ch. de Chambly et de Fontainebleau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457163157, - 45.519368492 - ] - }, - "is_frozen": false, - "integer_id": 234, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454195, - 45.517883 - ] - }, - "id": 235, - "properties": { - "id": "d3991811-d92b-4ba2-9732-26a74abc49b7", - "code": "31367", - "data": { - "stops": [ - { - "id": "1367", - "code": "31367", - "data": { - "gtfs": { - "stop_id": "1367", - "stop_code": "31367", - "stop_name": "ch. de Chambly et Roussin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Roussin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4544278893728, - 45.5178580381828 - ] - } - }, - { - "id": "3696", - "code": "33696", - "data": { - "gtfs": { - "stop_id": "3696", - "stop_code": "33696", - "stop_name": "ch. de Chambly et Roussin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Roussin", - "geography": { - "type": "Point", - "coordinates": [ - -73.453961530328, - 45.5179075052891 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4476973860329 - }, - "name": "ch. de Chambly et Roussin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45419471, - 45.517882772 - ] - }, - "is_frozen": false, - "integer_id": 235, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448584, - 45.515558 - ] - }, - "id": 236, - "properties": { - "id": "344c16fc-7161-4015-9999-e3e0f325dd1e", - "code": "31369", - "data": { - "stops": [ - { - "id": "1369", - "code": "31369", - "data": { - "gtfs": { - "stop_id": "1369", - "stop_code": "31369", - "stop_name": "ch. de Chambly et Radisson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Radisson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4488084698241, - 45.5155228836667 - ] - } - }, - { - "id": "1407", - "code": "31407", - "data": { - "gtfs": { - "stop_id": "1407", - "stop_code": "31407", - "stop_name": "ch. de Chambly et Radisson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Radisson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4483594663445, - 45.515594106453 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4083989762952 - }, - "name": "ch. de Chambly et Radisson", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448583968, - 45.515558495 - ] - }, - "is_frozen": false, - "integer_id": 236, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440493, - 45.511997 - ] - }, - "id": 237, - "properties": { - "id": "a3922a48-9f26-4845-9881-2b33d59d0127", - "code": "31371", - "data": { - "stops": [ - { - "id": "1371", - "code": "31371", - "data": { - "gtfs": { - "stop_id": "1371", - "stop_code": "31371", - "stop_name": "ch. de Chambly et boul. Julien-Lord", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Julien-Lord", - "geography": { - "type": "Point", - "coordinates": [ - -73.4404930741178, - 45.5119965984323 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3481844724464 - }, - "name": "ch. de Chambly et boul. Julien-Lord", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440493074, - 45.511996598 - ] - }, - "is_frozen": false, - "integer_id": 237, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.438362, - 45.511276 - ] - }, - "id": 238, - "properties": { - "id": "5edfafe3-ca6b-4b23-94e3-c6bed6b66b1a", - "code": "31372", - "data": { - "stops": [ - { - "id": "1372", - "code": "31372", - "data": { - "gtfs": { - "stop_id": "1372", - "stop_code": "31372", - "stop_name": "ch. de Chambly et Shirley", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Shirley", - "geography": { - "type": "Point", - "coordinates": [ - -73.438559709028, - 45.5111634427243 - ] - } - }, - { - "id": "1404", - "code": "31404", - "data": { - "gtfs": { - "stop_id": "1404", - "stop_code": "31404", - "stop_name": "ch. de Chambly et Shirley", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Shirley", - "geography": { - "type": "Point", - "coordinates": [ - -73.4384538768433, - 45.5113886269362 - ] - } - }, - { - "id": "2441", - "code": "32441", - "data": { - "gtfs": { - "stop_id": "2441", - "stop_code": "32441", - "stop_name": "Shirley et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Shirley et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4381633603438, - 45.5113893122933 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3360103981769 - }, - "name": "ch. de Chambly et Shirley", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438361535, - 45.511276378 - ] - }, - "is_frozen": false, - "integer_id": 238, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.42666, - 45.502504 - ] - }, - "id": 239, - "properties": { - "id": "b904303e-de8b-4c71-8b48-48af0de2a9a1", - "code": "31373", - "data": { - "stops": [ - { - "id": "1373", - "code": "31373", - "data": { - "gtfs": { - "stop_id": "1373", - "stop_code": "31373", - "stop_name": "boul. Cousineau et Perras", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Perras", - "geography": { - "type": "Point", - "coordinates": [ - -73.4266600490967, - 45.5025035935127 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1877587191899 - }, - "name": "boul. Cousineau et Perras", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.426660049, - 45.502503594 - ] - }, - "is_frozen": false, - "integer_id": 239, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.424415, - 45.501693 - ] - }, - "id": 240, - "properties": { - "id": "61fd8171-4497-441f-b32a-7917186d6014", - "code": "31374", - "data": { - "stops": [ - { - "id": "1374", - "code": "31374", - "data": { - "gtfs": { - "stop_id": "1374", - "stop_code": "31374", - "stop_name": "boul. Cousineau et COMPLEXE COUSINEAU", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et COMPLEXE COUSINEAU", - "geography": { - "type": "Point", - "coordinates": [ - -73.4244150414744, - 45.50169287771 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1740618501149 - }, - "name": "boul. Cousineau et COMPLEXE COUSINEAU", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.424415041, - 45.501692878 - ] - }, - "is_frozen": false, - "integer_id": 240, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.421198, - 45.50055 - ] - }, - "id": 241, - "properties": { - "id": "7de9ea25-e152-4431-8cc3-23b5e1427ab3", - "code": "31375", - "data": { - "stops": [ - { - "id": "1375", - "code": "31375", - "data": { - "gtfs": { - "stop_id": "1375", - "stop_code": "31375", - "stop_name": "boul. Cousineau et Coderre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Coderre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4211978575408, - 45.5005498003641 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1547507916239 - }, - "name": "boul. Cousineau et Coderre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.421197858, - 45.5005498 - ] - }, - "is_frozen": false, - "integer_id": 241, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.396334, - 45.49371 - ] - }, - "id": 242, - "properties": { - "id": "69b9716f-dd31-4ae3-9736-6d5edb237b8a", - "code": "31381", - "data": { - "stops": [ - { - "id": "1381", - "code": "31381", - "data": { - "gtfs": { - "stop_id": "1381", - "stop_code": "31381", - "stop_name": "ch. de Chambly et Lavoie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Lavoie", - "geography": { - "type": "Point", - "coordinates": [ - -73.3967517252041, - 45.4938100326875 - ] - } - }, - { - "id": "1395", - "code": "31395", - "data": { - "gtfs": { - "stop_id": "1395", - "stop_code": "31395", - "stop_name": "ch. de Chambly et Davidson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Davidson", - "geography": { - "type": "Point", - "coordinates": [ - -73.3959158382799, - 45.493609487022 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0392200530304 - }, - "name": "ch. de Chambly et Lavoie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.396333782, - 45.49370976 - ] - }, - "is_frozen": false, - "integer_id": 242, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.395143, - 45.49307 - ] - }, - "id": 243, - "properties": { - "id": "8354e556-947c-481c-96bd-d61737767f2d", - "code": "31382", - "data": { - "stops": [ - { - "id": "1382", - "code": "31382", - "data": { - "gtfs": { - "stop_id": "1382", - "stop_code": "31382", - "stop_name": "ch. de Chambly et Cornwall", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Cornwall", - "geography": { - "type": "Point", - "coordinates": [ - -73.3951428992667, - 45.4930696994274 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.028411321719 - }, - "name": "ch. de Chambly et Cornwall", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.395142899, - 45.493069699 - ] - }, - "is_frozen": false, - "integer_id": 243, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.391725, - 45.491446 - ] - }, - "id": 244, - "properties": { - "id": "ced239e0-91f5-4429-96fd-20bbb8fcfd11", - "code": "31384", - "data": { - "stops": [ - { - "id": "1384", - "code": "31384", - "data": { - "gtfs": { - "stop_id": "1384", - "stop_code": "31384", - "stop_name": "ch. de Chambly et HERITAGE REGIONAL HIGH SCHOOL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et HERITAGE REGIONAL HIGH SCHOOL", - "geography": { - "type": "Point", - "coordinates": [ - -73.3913408584537, - 45.4912764502184 - ] - } - }, - { - "id": "1392", - "code": "31392", - "data": { - "gtfs": { - "stop_id": "1392", - "stop_code": "31392", - "stop_name": "ch. de Chambly et HERITAGE REGIONAL HIGH SCHOOL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et HERITAGE REGIONAL HIGH SCHOOL", - "geography": { - "type": "Point", - "coordinates": [ - -73.3916278704496, - 45.491615195927 - ] - } - }, - { - "id": "4760", - "code": "34760", - "data": { - "gtfs": { - "stop_id": "4760", - "stop_code": "34760", - "stop_name": "HERITAGE REGIONAL HIGH SCHOOL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "HERITAGE REGIONAL HIGH SCHOOL", - "geography": { - "type": "Point", - "coordinates": [ - -73.3921095115339, - 45.4913126164916 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0009905087351 - }, - "name": "ch. de Chambly et HERITAGE REGIONAL HIGH SCHOOL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.391725185, - 45.491445823 - ] - }, - "is_frozen": false, - "integer_id": 244, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.389262, - 45.490444 - ] - }, - "id": 245, - "properties": { - "id": "a2ac9477-abf0-4b55-8588-e045bd0373a2", - "code": "31385", - "data": { - "stops": [ - { - "id": "1385", - "code": "31385", - "data": { - "gtfs": { - "stop_id": "1385", - "stop_code": "31385", - "stop_name": "ch. de Chambly et Bernard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Bernard", - "geography": { - "type": "Point", - "coordinates": [ - -73.3896499584773, - 45.4905004424772 - ] - } - }, - { - "id": "1391", - "code": "31391", - "data": { - "gtfs": { - "stop_id": "1391", - "stop_code": "31391", - "stop_name": "ch. de Chambly et tsse du Centre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et tsse du Centre", - "geography": { - "type": "Point", - "coordinates": [ - -73.3888745369595, - 45.4903877068449 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9840761351132 - }, - "name": "ch. de Chambly et Bernard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.389262248, - 45.490444075 - ] - }, - "is_frozen": false, - "integer_id": 245, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.386333, - 45.489054 - ] - }, - "id": 246, - "properties": { - "id": "658aec75-ba5b-4e43-b93b-5305ff3f6685", - "code": "31386", - "data": { - "stops": [ - { - "id": "1386", - "code": "31386", - "data": { - "gtfs": { - "stop_id": "1386", - "stop_code": "31386", - "stop_name": "ch. de Chambly et civique 7695", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et civique 7695", - "geography": { - "type": "Point", - "coordinates": [ - -73.3863869893529, - 45.4890146687524 - ] - } - }, - { - "id": "1390", - "code": "31390", - "data": { - "gtfs": { - "stop_id": "1390", - "stop_code": "31390", - "stop_name": "ch. de Chambly et civique 7682", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et civique 7682", - "geography": { - "type": "Point", - "coordinates": [ - -73.3862799466469, - 45.489093759419 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9606100061612 - }, - "name": "ch. de Chambly et civique 7695", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.386333468, - 45.489054214 - ] - }, - "is_frozen": false, - "integer_id": 246, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.381536, - 45.487785 - ] - }, - "id": 247, - "properties": { - "id": "af654275-2b6e-4152-a4be-6ba5d5eb2c23", - "code": "31387", - "data": { - "stops": [ - { - "id": "1387", - "code": "31387", - "data": { - "gtfs": { - "stop_id": "1387", - "stop_code": "31387", - "stop_name": "boul. des Promenades et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. des Promenades et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.3815357878277, - 45.4877849512954 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9391815297029 - }, - "name": "boul. des Promenades et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.381535788, - 45.487784951 - ] - }, - "is_frozen": false, - "integer_id": 247, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.374979, - 45.506037 - ] - }, - "id": 248, - "properties": { - "id": "92f002bc-31eb-4cd4-babf-60ca8f4a9202", - "code": "31388", - "data": { - "stops": [ - { - "id": "1388", - "code": "31388", - "data": { - "gtfs": { - "stop_id": "1388", - "stop_code": "31388", - "stop_name": "Stationnement des Promenades et Sports Experts", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Stationnement des Promenades et Sports Experts", - "geography": { - "type": "Point", - "coordinates": [ - -73.3746746114984, - 45.5059194789785 - ] - } - }, - { - "id": "4652", - "code": "34652", - "data": { - "gtfs": { - "stop_id": "4652", - "stop_code": "34652", - "stop_name": "Stationnement des Promenades et Sports Experts", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Stationnement des Promenades et Sports Experts", - "geography": { - "type": "Point", - "coordinates": [ - -73.3747545898888, - 45.5060927441027 - ] - } - }, - { - "id": "5043", - "code": "35043", - "data": { - "gtfs": { - "stop_id": "5043", - "stop_code": "35043", - "stop_name": "Stationnement des Promenades et Sports Experts", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Stationnement des Promenades et Sports Experts", - "geography": { - "type": "Point", - "coordinates": [ - -73.3752834494844, - 45.5061550492321 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2474661304913 - }, - "name": "Stationnement des Promenades et Sports Experts", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.37497903, - 45.506037264 - ] - }, - "is_frozen": false, - "integer_id": 248, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.394163, - 45.4928 - ] - }, - "id": 249, - "properties": { - "id": "70ea9063-86f0-43f5-9e7d-16ea087fc4ce", - "code": "31394", - "data": { - "stops": [ - { - "id": "1394", - "code": "31394", - "data": { - "gtfs": { - "stop_id": "1394", - "stop_code": "31394", - "stop_name": "ch. de Chambly et d'York", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et d'York", - "geography": { - "type": "Point", - "coordinates": [ - -73.3941630013602, - 45.4927995910069 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0238501083013 - }, - "name": "ch. de Chambly et d'York", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.394163001, - 45.492799591 - ] - }, - "is_frozen": false, - "integer_id": 249, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.406842, - 45.498103 - ] - }, - "id": 250, - "properties": { - "id": "50ca3159-13cc-4149-b07f-8267a31166e3", - "code": "31396", - "data": { - "stops": [ - { - "id": "1396", - "code": "31396", - "data": { - "gtfs": { - "stop_id": "1396", - "stop_code": "31396", - "stop_name": "boul. Gaétan-Boucher et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4068989738546, - 45.4979597232163 - ] - } - }, - { - "id": "3431", - "code": "33431", - "data": { - "gtfs": { - "stop_id": "3431", - "stop_code": "33431", - "stop_name": "ch. de Chambly et boul. Gaétan-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Gaétan-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4067845110222, - 45.4982460447594 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1134167176197 - }, - "name": "boul. Gaétan-Boucher et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.406841742, - 45.498102884 - ] - }, - "is_frozen": false, - "integer_id": 250, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.40893, - 45.494827 - ] - }, - "id": 251, - "properties": { - "id": "3c299df0-fbba-4dc3-a45a-dbff6e0a23a3", - "code": "31397", - "data": { - "stops": [ - { - "id": "1397", - "code": "31397", - "data": { - "gtfs": { - "stop_id": "1397", - "stop_code": "31397", - "stop_name": "boul. Gaétan-Boucher et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4088997025176, - 45.4951992172913 - ] - } - }, - { - "id": "1718", - "code": "31718", - "data": { - "gtfs": { - "stop_id": "1718", - "stop_code": "31718", - "stop_name": "boul. Gaétan-Boucher et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4093385946134, - 45.4945346822885 - ] - } - }, - { - "id": "2969", - "code": "32969", - "data": { - "gtfs": { - "stop_id": "2969", - "stop_code": "32969", - "stop_name": "boul. Cousineau et boul. Gaétan-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et boul. Gaétan-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4091833739558, - 45.4949406992402 - ] - } - }, - { - "id": "3275", - "code": "33275", - "data": { - "gtfs": { - "stop_id": "3275", - "stop_code": "33275", - "stop_name": "boul. Cousineau et boul. Gaétan-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et boul. Gaétan-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4085223396734, - 45.4949432159581 - ] - } - }, - { - "id": "3535", - "code": "33535", - "data": { - "gtfs": { - "stop_id": "3535", - "stop_code": "33535", - "stop_name": "boul. Gaétan-Boucher et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.40901401582, - 45.4944541688961 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0580826103408 - }, - "name": "boul. Gaétan-Boucher et boul. Cousineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.408930467, - 45.494826693 - ] - }, - "is_frozen": false, - "integer_id": 251, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.413653, - 45.497311 - ] - }, - "id": 252, - "properties": { - "id": "3d60bf3c-0f32-4f5f-8781-810d5a49b5ce", - "code": "31399", - "data": { - "stops": [ - { - "id": "1399", - "code": "31399", - "data": { - "gtfs": { - "stop_id": "1399", - "stop_code": "31399", - "stop_name": "boul. Cousineau et civique 5750", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et civique 5750", - "geography": { - "type": "Point", - "coordinates": [ - -73.4136531018974, - 45.4973106231647 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1000347374686 - }, - "name": "boul. Cousineau et civique 5750", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.413653102, - 45.497310623 - ] - }, - "is_frozen": false, - "integer_id": 252, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.416453, - 45.498332 - ] - }, - "id": 253, - "properties": { - "id": "e654777c-6941-47f5-a273-d73ab074f10e", - "code": "31400", - "data": { - "stops": [ - { - "id": "1400", - "code": "31400", - "data": { - "gtfs": { - "stop_id": "1400", - "stop_code": "31400", - "stop_name": "boul. Cousineau et Prince-Charles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Prince-Charles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4164526055622, - 45.4983323108933 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1172920442732 - }, - "name": "boul. Cousineau et Prince-Charles", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.416452606, - 45.498332311 - ] - }, - "is_frozen": false, - "integer_id": 253, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.425898, - 45.50256 - ] - }, - "id": 254, - "properties": { - "id": "a0b2e96c-f14a-4143-9ef3-8bb0e0e8a984", - "code": "31402", - "data": { - "stops": [ - { - "id": "1402", - "code": "31402", - "data": { - "gtfs": { - "stop_id": "1402", - "stop_code": "31402", - "stop_name": "boul. Cousineau et Perras", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Perras", - "geography": { - "type": "Point", - "coordinates": [ - -73.425898487459, - 45.5025600935909 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1887132961048 - }, - "name": "boul. Cousineau et Perras", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.425898487, - 45.502560094 - ] - }, - "is_frozen": false, - "integer_id": 254, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.43938, - 45.511837 - ] - }, - "id": 255, - "properties": { - "id": "fbbad9f5-cf9a-4ad6-a81c-0661b4969ab6", - "code": "31405", - "data": { - "stops": [ - { - "id": "1405", - "code": "31405", - "data": { - "gtfs": { - "stop_id": "1405", - "stop_code": "31405", - "stop_name": "ch. de Chambly et boul. Vauquelin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Vauquelin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4393797014289, - 45.5118365025891 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3454783032546 - }, - "name": "ch. de Chambly et boul. Vauquelin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439379701, - 45.511836503 - ] - }, - "is_frozen": false, - "integer_id": 255, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442845, - 45.513279 - ] - }, - "id": 256, - "properties": { - "id": "7b1c691c-8a55-45c2-8401-9d619a0efb76", - "code": "31406", - "data": { - "stops": [ - { - "id": "1406", - "code": "31406", - "data": { - "gtfs": { - "stop_id": "1406", - "stop_code": "31406", - "stop_name": "ch. de Chambly et Cuvillier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Cuvillier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4428447661494, - 45.5132789837461 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3698621347434 - }, - "name": "ch. de Chambly et Cuvillier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442844766, - 45.513278984 - ] - }, - "is_frozen": false, - "integer_id": 256, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460144, - 45.520527 - ] - }, - "id": 257, - "properties": { - "id": "5981cea7-b196-4e72-820c-362fb9c4e212", - "code": "31412", - "data": { - "stops": [ - { - "id": "1412", - "code": "31412", - "data": { - "gtfs": { - "stop_id": "1412", - "stop_code": "31412", - "stop_name": "ch. de Chambly et Deschamps", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Deschamps", - "geography": { - "type": "Point", - "coordinates": [ - -73.4601441765561, - 45.5205265811213 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4924042291784 - }, - "name": "ch. de Chambly et Deschamps", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.460144177, - 45.520526581 - ] - }, - "is_frozen": false, - "integer_id": 257, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467834, - 45.523721 - ] - }, - "id": 258, - "properties": { - "id": "0d6b35f8-1b6c-4403-a7a5-53247aec7649", - "code": "31413", - "data": { - "stops": [ - { - "id": "1413", - "code": "31413", - "data": { - "gtfs": { - "stop_id": "1413", - "stop_code": "31413", - "stop_name": "ch. de Chambly et Beaubien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Beaubien", - "geography": { - "type": "Point", - "coordinates": [ - -73.467834409787, - 45.5237206488211 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5464242658121 - }, - "name": "ch. de Chambly et Beaubien", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46783441, - 45.523720649 - ] - }, - "is_frozen": false, - "integer_id": 258, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47261, - 45.525619 - ] - }, - "id": 259, - "properties": { - "id": "011d1f54-164c-4564-a051-bdacad3e287d", - "code": "31415", - "data": { - "stops": [ - { - "id": "1415", - "code": "31415", - "data": { - "gtfs": { - "stop_id": "1415", - "stop_code": "31415", - "stop_name": "ch. de Chambly et boul. Nobert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Nobert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4723862163399, - 45.5256331369413 - ] - } - }, - { - "id": "3779", - "code": "33779", - "data": { - "gtfs": { - "stop_id": "3779", - "stop_code": "33779", - "stop_name": "ch. de Chambly et boul. Nobert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Nobert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4728340594332, - 45.5256048354901 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5785344125821 - }, - "name": "ch. de Chambly et boul. Nobert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472610138, - 45.525618986 - ] - }, - "is_frozen": false, - "integer_id": 259, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47826, - 45.528082 - ] - }, - "id": 260, - "properties": { - "id": "5e63207c-461d-4f9b-8a07-b5f5b5bbac35", - "code": "31418", - "data": { - "stops": [ - { - "id": "1418", - "code": "31418", - "data": { - "gtfs": { - "stop_id": "1418", - "stop_code": "31418", - "stop_name": "ch. de Chambly et Benoit est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Benoit est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4782599871083, - 45.528082388817 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6202073724833 - }, - "name": "ch. de Chambly et Benoit est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.478259987, - 45.528082389 - ] - }, - "is_frozen": false, - "integer_id": 260, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492874, - 45.53416 - ] - }, - "id": 261, - "properties": { - "id": "d15f81ba-7519-47f7-aa07-0026f1b03e42", - "code": "31422", - "data": { - "stops": [ - { - "id": "1422", - "code": "31422", - "data": { - "gtfs": { - "stop_id": "1422", - "stop_code": "31422", - "stop_name": "ch. de Chambly et place du Collège", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et place du Collège", - "geography": { - "type": "Point", - "coordinates": [ - -73.4928737619742, - 45.5341600794266 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7230457351758 - }, - "name": "ch. de Chambly et place du Collège", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492873762, - 45.534160079 - ] - }, - "is_frozen": false, - "integer_id": 261, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.503193, - 45.538541 - ] - }, - "id": 262, - "properties": { - "id": "5f58acb6-be68-437f-bde7-a77d03125af9", - "code": "31425", - "data": { - "stops": [ - { - "id": "1425", - "code": "31425", - "data": { - "gtfs": { - "stop_id": "1425", - "stop_code": "31425", - "stop_name": "ch. de Chambly et Lévis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Lévis", - "geography": { - "type": "Point", - "coordinates": [ - -73.5031933042441, - 45.5385410541972 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7971950350828 - }, - "name": "ch. de Chambly et Lévis", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.503193304, - 45.538541054 - ] - }, - "is_frozen": false, - "integer_id": 262, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.504789, - 45.539575 - ] - }, - "id": 263, - "properties": { - "id": "4e61612c-2f48-47d6-ad42-7c0737853911", - "code": "31426", - "data": { - "stops": [ - { - "id": "1426", - "code": "31426", - "data": { - "gtfs": { - "stop_id": "1426", - "stop_code": "31426", - "stop_name": "ch. de Chambly et Saint-Laurent est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Saint-Laurent est", - "geography": { - "type": "Point", - "coordinates": [ - -73.50469785298, - 45.5394959249068 - ] - } - }, - { - "id": "3013", - "code": "33013", - "data": { - "gtfs": { - "stop_id": "3013", - "stop_code": "33013", - "stop_name": "Saint-Laurent est et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent est et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.5048807360661, - 45.539653175496 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8146897567123 - }, - "name": "ch. de Chambly et Saint-Laurent est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.504789295, - 45.53957455 - ] - }, - "is_frozen": false, - "integer_id": 263, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.508425, - 45.540535 - ] - }, - "id": 264, - "properties": { - "id": "e46ba2d2-9f30-419f-acae-c73c3ef665c5", - "code": "31427", - "data": { - "stops": [ - { - "id": "1427", - "code": "31427", - "data": { - "gtfs": { - "stop_id": "1427", - "stop_code": "31427", - "stop_name": "Saint-Charles ouest et Charlotte", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et Charlotte", - "geography": { - "type": "Point", - "coordinates": [ - -73.5084248857608, - 45.5405354151014 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8309558565129 - }, - "name": "Saint-Charles ouest et Charlotte", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.508424886, - 45.540535415 - ] - }, - "is_frozen": false, - "integer_id": 264, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.516741, - 45.532474 - ] - }, - "id": 265, - "properties": { - "id": "52a14b05-0b25-4688-9d69-f9f1ed3b8a37", - "code": "31431", - "data": { - "stops": [ - { - "id": "1431", - "code": "31431", - "data": { - "gtfs": { - "stop_id": "1431", - "stop_code": "31431", - "stop_name": "Saint-Charles ouest et Jean-Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et Jean-Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.5166727776734, - 45.5326981301457 - ] - } - }, - { - "id": "3777", - "code": "33777", - "data": { - "gtfs": { - "stop_id": "3777", - "stop_code": "33777", - "stop_name": "Saint-Charles ouest et Jean-Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et Jean-Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.5168102182047, - 45.5322508615386 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6945213032091 - }, - "name": "Saint-Charles ouest et Jean-Béliveau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.516741498, - 45.532474496 - ] - }, - "is_frozen": false, - "integer_id": 265, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.519538, - 45.526006 - ] - }, - "id": 266, - "properties": { - "id": "4fb4515b-e129-4622-b855-89143c2fd488", - "code": "31433", - "data": { - "stops": [ - { - "id": "1433", - "code": "31433", - "data": { - "gtfs": { - "stop_id": "1433", - "stop_code": "31433", - "stop_name": "Saint-Charles ouest et place Charles-Le Moyne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et place Charles-Le Moyne", - "geography": { - "type": "Point", - "coordinates": [ - -73.5195379556377, - 45.5260059613304 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5850804432189 - }, - "name": "Saint-Charles ouest et place Charles-Le Moyne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.519537956, - 45.526005961 - ] - }, - "is_frozen": false, - "integer_id": 266, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442382, - 45.506851 - ] - }, - "id": 267, - "properties": { - "id": "631a5504-9e7c-4041-85e7-bf81e6a995d2", - "code": "31436", - "data": { - "stops": [ - { - "id": "1436", - "code": "31436", - "data": { - "gtfs": { - "stop_id": "1436", - "stop_code": "31436", - "stop_name": "boul. Sir-Wilfrid-Laurier et Harvey", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier et Harvey", - "geography": { - "type": "Point", - "coordinates": [ - -73.4424578622968, - 45.5069779893569 - ] - } - }, - { - "id": "1734", - "code": "31734", - "data": { - "gtfs": { - "stop_id": "1734", - "stop_code": "31734", - "stop_name": "Harvey et boul. Sir-Wilfrid-Laurier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Harvey et boul. Sir-Wilfrid-Laurier", - "geography": { - "type": "Point", - "coordinates": [ - -73.442306957622, - 45.5067234360025 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2612123193312 - }, - "name": "boul. Sir-Wilfrid-Laurier et Harvey", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44238241, - 45.506850713 - ] - }, - "is_frozen": false, - "integer_id": 267, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.438168, - 45.507239 - ] - }, - "id": 268, - "properties": { - "id": "b487112d-20d7-48e5-a658-6d701c316792", - "code": "31437", - "data": { - "stops": [ - { - "id": "1437", - "code": "31437", - "data": { - "gtfs": { - "stop_id": "1437", - "stop_code": "31437", - "stop_name": "boul. Sir-Wilfrid-Laurier et boul. Losch", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier et boul. Losch", - "geography": { - "type": "Point", - "coordinates": [ - -73.4381676550896, - 45.5072390757501 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2677753369549 - }, - "name": "boul. Sir-Wilfrid-Laurier et boul. Losch", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438167655, - 45.507239076 - ] - }, - "is_frozen": false, - "integer_id": 268, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.433666, - 45.50705 - ] - }, - "id": 269, - "properties": { - "id": "2f59e70c-00bf-46fc-9104-53f0aa9fb5e8", - "code": "31438", - "data": { - "stops": [ - { - "id": "1438", - "code": "31438", - "data": { - "gtfs": { - "stop_id": "1438", - "stop_code": "31438", - "stop_name": "boul. Sir-Wilfrid-Laurier et Jensens", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier et Jensens", - "geography": { - "type": "Point", - "coordinates": [ - -73.4336658196494, - 45.5070501982821 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2645834361924 - }, - "name": "boul. Sir-Wilfrid-Laurier et Jensens", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.43366582, - 45.507050198 - ] - }, - "is_frozen": false, - "integer_id": 269, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.426939, - 45.50657 - ] - }, - "id": 270, - "properties": { - "id": "c1aeb7b2-96eb-465c-a03f-d65b102a8eea", - "code": "31439", - "data": { - "stops": [ - { - "id": "1439", - "code": "31439", - "data": { - "gtfs": { - "stop_id": "1439", - "stop_code": "31439", - "stop_name": "Martineau et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Martineau et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4266216821875, - 45.5067958189497 - ] - } - }, - { - "id": "1454", - "code": "31454", - "data": { - "gtfs": { - "stop_id": "1454", - "stop_code": "31454", - "stop_name": "ch. de Chambly et Martineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Martineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4266617850599, - 45.5063447212741 - ] - } - }, - { - "id": "1456", - "code": "31456", - "data": { - "gtfs": { - "stop_id": "1456", - "stop_code": "31456", - "stop_name": "ch. de Chambly et Martineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Martineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4272567003019, - 45.5063511702076 - ] - } - }, - { - "id": "1466", - "code": "31466", - "data": { - "gtfs": { - "stop_id": "1466", - "stop_code": "31466", - "stop_name": "Martineau et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Martineau et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4269564543585, - 45.506563481819 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2564731450798 - }, - "name": "Martineau et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.426939191, - 45.50657027 - ] - }, - "is_frozen": false, - "integer_id": 270, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.422735, - 45.508112 - ] - }, - "id": 271, - "properties": { - "id": "8760b56a-bae1-4862-80b6-347cc65704e3", - "code": "31440", - "data": { - "stops": [ - { - "id": "1440", - "code": "31440", - "data": { - "gtfs": { - "stop_id": "1440", - "stop_code": "31440", - "stop_name": "av. Raoul et Caumartin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Raoul et Caumartin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4227354706504, - 45.5081115255035 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.282519519268 - }, - "name": "av. Raoul et Caumartin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.422735471, - 45.508111526 - ] - }, - "is_frozen": false, - "integer_id": 271, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.417765, - 45.508512 - ] - }, - "id": 272, - "properties": { - "id": "86f64d55-814a-4fbc-858b-c5c25e590481", - "code": "31441", - "data": { - "stops": [ - { - "id": "1441", - "code": "31441", - "data": { - "gtfs": { - "stop_id": "1441", - "stop_code": "31441", - "stop_name": "av. Raoul et de Chamonix", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Raoul et de Chamonix", - "geography": { - "type": "Point", - "coordinates": [ - -73.4178958074487, - 45.5084562462622 - ] - } - }, - { - "id": "1464", - "code": "31464", - "data": { - "gtfs": { - "stop_id": "1464", - "stop_code": "31464", - "stop_name": "av. Raoul et de Chamonix", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Raoul et de Chamonix", - "geography": { - "type": "Point", - "coordinates": [ - -73.4176341221608, - 45.508566880638 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.289280269049 - }, - "name": "av. Raoul et de Chamonix", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.417764965, - 45.508511563 - ] - }, - "is_frozen": false, - "integer_id": 272, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.414775, - 45.508653 - ] - }, - "id": 273, - "properties": { - "id": "a591956d-b42e-4489-8d54-3a5d5df835c1", - "code": "31442", - "data": { - "stops": [ - { - "id": "1442", - "code": "31442", - "data": { - "gtfs": { - "stop_id": "1442", - "stop_code": "31442", - "stop_name": "av. Raoul et tsse Masson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Raoul et tsse Masson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4148940790294, - 45.5086413586681 - ] - } - }, - { - "id": "1463", - "code": "31463", - "data": { - "gtfs": { - "stop_id": "1463", - "stop_code": "31463", - "stop_name": "tsse Masson et av. Raoul", - "location_type": 0, - "parent_station": "" - } - }, - "name": "tsse Masson et av. Raoul", - "geography": { - "type": "Point", - "coordinates": [ - -73.4146552865607, - 45.5086636765647 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2916624863545 - }, - "name": "av. Raoul et tsse Masson", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.414774683, - 45.508652518 - ] - }, - "is_frozen": false, - "integer_id": 273, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.413107, - 45.507781 - ] - }, - "id": 274, - "properties": { - "id": "16d596f0-097e-4afe-b8c4-9b129c3c3d66", - "code": "31443", - "data": { - "stops": [ - { - "id": "1443", - "code": "31443", - "data": { - "gtfs": { - "stop_id": "1443", - "stop_code": "31443", - "stop_name": "tsse Masson et Morency", - "location_type": 0, - "parent_station": "" - } - }, - "name": "tsse Masson et Morency", - "geography": { - "type": "Point", - "coordinates": [ - -73.4133440501881, - 45.5077898424312 - ] - } - }, - { - "id": "1462", - "code": "31462", - "data": { - "gtfs": { - "stop_id": "1462", - "stop_code": "31462", - "stop_name": "Morency et tsse Masson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Morency et tsse Masson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4128705662059, - 45.507771485419 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2769279561572 - }, - "name": "tsse Masson et Morency", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.413107308, - 45.507780664 - ] - }, - "is_frozen": false, - "integer_id": 274, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.410386, - 45.49976 - ] - }, - "id": 275, - "properties": { - "id": "f8be9684-c72e-4f8e-b55c-77a4b6ccd6bc", - "code": "31449", - "data": { - "stops": [ - { - "id": "1449", - "code": "31449", - "data": { - "gtfs": { - "stop_id": "1449", - "stop_code": "31449", - "stop_name": "ch. de Chambly et Meunier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Meunier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4103275965045, - 45.4998131261303 - ] - } - }, - { - "id": "1461", - "code": "31461", - "data": { - "gtfs": { - "stop_id": "1461", - "stop_code": "31461", - "stop_name": "ch. de Chambly et Meunier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Meunier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4104452551524, - 45.4997059129881 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1414005510813 - }, - "name": "ch. de Chambly et Meunier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.410386426, - 45.49975952 - ] - }, - "is_frozen": false, - "integer_id": 275, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.412241, - 45.500487 - ] - }, - "id": 276, - "properties": { - "id": "69889f24-c076-4661-981b-6008a401d446", - "code": "31450", - "data": { - "stops": [ - { - "id": "1450", - "code": "31450", - "data": { - "gtfs": { - "stop_id": "1450", - "stop_code": "31450", - "stop_name": "ch. de Chambly et Howard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Howard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4119684833759, - 45.5004910649752 - ] - } - }, - { - "id": "1460", - "code": "31460", - "data": { - "gtfs": { - "stop_id": "1460", - "stop_code": "31460", - "stop_name": "ch. de Chambly et Howard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Howard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4125131254006, - 45.5004824849687 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1536860866764 - }, - "name": "ch. de Chambly et Howard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.412240804, - 45.500486775 - ] - }, - "is_frozen": false, - "integer_id": 276, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.414608, - 45.5012 - ] - }, - "id": 277, - "properties": { - "id": "853b0202-bae1-4c20-ab0e-8b27d1350e9a", - "code": "31451", - "data": { - "stops": [ - { - "id": "1451", - "code": "31451", - "data": { - "gtfs": { - "stop_id": "1451", - "stop_code": "31451", - "stop_name": "ch. de Chambly et Mongeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Mongeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4144137677242, - 45.5013650838466 - ] - } - }, - { - "id": "1459", - "code": "31459", - "data": { - "gtfs": { - "stop_id": "1459", - "stop_code": "31459", - "stop_name": "ch. de Chambly et Prince-Charles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Prince-Charles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4147353714352, - 45.5013235275301 - ] - } - }, - { - "id": "2846", - "code": "32846", - "data": { - "gtfs": { - "stop_id": "2846", - "stop_code": "32846", - "stop_name": "Prince-Charles et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Prince-Charles et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4145227422093, - 45.5011022825133 - ] - } - }, - { - "id": "4750", - "code": "34750", - "data": { - "gtfs": { - "stop_id": "4750", - "stop_code": "34750", - "stop_name": "Prince-Charles et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Prince-Charles et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4148017875251, - 45.5010358116856 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1657426387541 - }, - "name": "ch. de Chambly et Mongeau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.414607778, - 45.501200448 - ] - }, - "is_frozen": false, - "integer_id": 277, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.423531, - 45.504895 - ] - }, - "id": 278, - "properties": { - "id": "7207a900-095a-4a6f-9e58-d5821a46e7d1", - "code": "31453", - "data": { - "stops": [ - { - "id": "1453", - "code": "31453", - "data": { - "gtfs": { - "stop_id": "1453", - "stop_code": "31453", - "stop_name": "ch. de Chambly et de Cherbourg", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et de Cherbourg", - "geography": { - "type": "Point", - "coordinates": [ - -73.4234706650278, - 45.5049479519679 - ] - } - }, - { - "id": "1458", - "code": "31458", - "data": { - "gtfs": { - "stop_id": "1458", - "stop_code": "31458", - "stop_name": "ch. de Chambly et de Cherbourg", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et de Cherbourg", - "geography": { - "type": "Point", - "coordinates": [ - -73.4235913417295, - 45.5048411737262 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2281570226447 - }, - "name": "ch. de Chambly et de Cherbourg", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.423531003, - 45.504894563 - ] - }, - "is_frozen": false, - "integer_id": 278, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.42506, - 45.505569 - ] - }, - "id": 279, - "properties": { - "id": "2d759b9b-5efb-4a57-814c-915d6b6185d7", - "code": "31457", - "data": { - "stops": [ - { - "id": "1457", - "code": "31457", - "data": { - "gtfs": { - "stop_id": "1457", - "stop_code": "31457", - "stop_name": "ch. de Chambly et Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4252915543787, - 45.5055846685602 - ] - } - }, - { - "id": "3561", - "code": "33561", - "data": { - "gtfs": { - "stop_id": "3561", - "stop_code": "33561", - "stop_name": "ch. de Chambly et Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4248289011054, - 45.5055528705507 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2395494822974 - }, - "name": "ch. de Chambly et Tremblay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.425060228, - 45.50556877 - ] - }, - "is_frozen": false, - "integer_id": 279, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486526, - 45.540087 - ] - }, - "id": 280, - "properties": { - "id": "ce58f095-9b51-4521-8a41-e64bfb0df31e", - "code": "31470", - "data": { - "stops": [ - { - "id": "1470", - "code": "31470", - "data": { - "gtfs": { - "stop_id": "1470", - "stop_code": "31470", - "stop_name": "boul. Roland-Therrien et de Bruges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et de Bruges", - "geography": { - "type": "Point", - "coordinates": [ - -73.4865261414744, - 45.5400872783817 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8233694217419 - }, - "name": "boul. Roland-Therrien et de Bruges", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486526141, - 45.540087278 - ] - }, - "is_frozen": false, - "integer_id": 280, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.480074, - 45.537984 - ] - }, - "id": 281, - "properties": { - "id": "65003b15-0baf-4f82-9e15-665e17fd1c75", - "code": "31473", - "data": { - "stops": [ - { - "id": "1473", - "code": "31473", - "data": { - "gtfs": { - "stop_id": "1473", - "stop_code": "31473", - "stop_name": "boul. Roland-Therrien et ch. du Lac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et ch. du Lac", - "geography": { - "type": "Point", - "coordinates": [ - -73.480074232291, - 45.5379836061027 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7877591119856 - }, - "name": "boul. Roland-Therrien et ch. du Lac", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.480074232, - 45.537983606 - ] - }, - "is_frozen": false, - "integer_id": 281, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.476967, - 45.537145 - ] - }, - "id": 282, - "properties": { - "id": "81b3573e-d948-478d-a011-db20e21b0c62", - "code": "31474", - "data": { - "stops": [ - { - "id": "1474", - "code": "31474", - "data": { - "gtfs": { - "stop_id": "1474", - "stop_code": "31474", - "stop_name": "boul. Roland-Therrien et boul. Curé-Poirier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et boul. Curé-Poirier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4769674798466, - 45.537145227283 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7735683913609 - }, - "name": "boul. Roland-Therrien et boul. Curé-Poirier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47696748, - 45.537145227 - ] - }, - "is_frozen": false, - "integer_id": 282, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469254, - 45.536852 - ] - }, - "id": 283, - "properties": { - "id": "2202db72-0aaa-4f54-a021-f6fae24f6d63", - "code": "31475", - "data": { - "stops": [ - { - "id": "1475", - "code": "31475", - "data": { - "gtfs": { - "stop_id": "1475", - "stop_code": "31475", - "stop_name": "boul. Roland-Therrien et King-George", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et King-George", - "geography": { - "type": "Point", - "coordinates": [ - -73.4694288845902, - 45.5369083300836 - ] - } - }, - { - "id": "5506", - "code": "30254", - "data": { - "gtfs": { - "stop_id": "5506", - "stop_code": "30254", - "stop_name": "King-George et boul. Roland-Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "King-George et boul. Roland-Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4690789964355, - 45.5367956095279 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.768604760262 - }, - "name": "boul. Roland-Therrien et King-George", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469253941, - 45.53685197 - ] - }, - "is_frozen": false, - "integer_id": 283, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466275, - 45.535437 - ] - }, - "id": 284, - "properties": { - "id": "3b70b024-5c5b-4081-8c70-3fc026422289", - "code": "31476", - "data": { - "stops": [ - { - "id": "1476", - "code": "31476", - "data": { - "gtfs": { - "stop_id": "1476", - "stop_code": "31476", - "stop_name": "boul. Roland-Therrien et ch. Du Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et ch. Du Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4662753705721, - 45.5354374568111 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.744663968393 - }, - "name": "boul. Roland-Therrien et ch. Du Tremblay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466275371, - 45.535437457 - ] - }, - "is_frozen": false, - "integer_id": 284, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494975, - 45.547488 - ] - }, - "id": 285, - "properties": { - "id": "8a3f1208-7ffb-452e-8ebb-c436acba82d6", - "code": "31477", - "data": { - "stops": [ - { - "id": "1477", - "code": "31477", - "data": { - "gtfs": { - "stop_id": "1477", - "stop_code": "31477", - "stop_name": "boul. Roland-Therrien et d'Auteuil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et d'Auteuil", - "geography": { - "type": "Point", - "coordinates": [ - -73.4949753974841, - 45.5474883067056 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.948683135472 - }, - "name": "boul. Roland-Therrien et d'Auteuil", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494975397, - 45.547488307 - ] - }, - "is_frozen": false, - "integer_id": 285, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463906, - 45.533593 - ] - }, - "id": 286, - "properties": { - "id": "1e4facbf-29da-4515-97c4-4ef86c22290e", - "code": "31478", - "data": { - "stops": [ - { - "id": "1478", - "code": "31478", - "data": { - "gtfs": { - "stop_id": "1478", - "stop_code": "31478", - "stop_name": "boul. Roland-Therrien et PALAIS DE JUSTICE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et PALAIS DE JUSTICE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4641914056155, - 45.5335568053197 - ] - } - }, - { - "id": "1503", - "code": "31503", - "data": { - "gtfs": { - "stop_id": "1503", - "stop_code": "31503", - "stop_name": "boul. Roland-Therrien et PALAIS DE JUSTICE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et PALAIS DE JUSTICE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4636201329929, - 45.5336296646818 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7134529831718 - }, - "name": "boul. Roland-Therrien et PALAIS DE JUSTICE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463905769, - 45.533593235 - ] - }, - "is_frozen": false, - "integer_id": 286, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457834, - 45.530459 - ] - }, - "id": 287, - "properties": { - "id": "53aec761-3dae-44a6-bc58-9d5003bfa1bb", - "code": "31479", - "data": { - "stops": [ - { - "id": "1479", - "code": "31479", - "data": { - "gtfs": { - "stop_id": "1479", - "stop_code": "31479", - "stop_name": "boul. Roland-Therrien et Toulouse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et Toulouse", - "geography": { - "type": "Point", - "coordinates": [ - -73.4578344773882, - 45.530459414651 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.660424235926 - }, - "name": "boul. Roland-Therrien et Toulouse", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457834477, - 45.530459415 - ] - }, - "is_frozen": false, - "integer_id": 287, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452314, - 45.52831 - ] - }, - "id": 288, - "properties": { - "id": "51878141-1194-4666-977c-0597ee638ffb", - "code": "31480", - "data": { - "stops": [ - { - "id": "1480", - "code": "31480", - "data": { - "gtfs": { - "stop_id": "1480", - "stop_code": "31480", - "stop_name": "boul. Roland-Therrien et Bizard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et Bizard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4525192122781, - 45.5281914267728 - ] - } - }, - { - "id": "1499", - "code": "31499", - "data": { - "gtfs": { - "stop_id": "1499", - "stop_code": "31499", - "stop_name": "boul. Roland-Therrien et Bizard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et Bizard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4521089629484, - 45.5284280211633 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.624053431746 - }, - "name": "boul. Roland-Therrien et Bizard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452314088, - 45.528309724 - ] - }, - "is_frozen": false, - "integer_id": 288, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449948, - 45.527156 - ] - }, - "id": 289, - "properties": { - "id": "83cbcc26-a35c-4db6-a784-03a152cb9d6f", - "code": "31481", - "data": { - "stops": [ - { - "id": "1481", - "code": "31481", - "data": { - "gtfs": { - "stop_id": "1481", - "stop_code": "31481", - "stop_name": "boul. Roland-Therrien et Montpetit", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et Montpetit", - "geography": { - "type": "Point", - "coordinates": [ - -73.449948357327, - 45.5271558724045 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6045330109962 - }, - "name": "boul. Roland-Therrien et Montpetit", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449948357, - 45.527155872 - ] - }, - "is_frozen": false, - "integer_id": 289, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44842, - 45.52936 - ] - }, - "id": 290, - "properties": { - "id": "da0ea2a1-8305-4096-84b5-3da6997f0293", - "code": "31482", - "data": { - "stops": [ - { - "id": "1482", - "code": "31482", - "data": { - "gtfs": { - "stop_id": "1482", - "stop_code": "31482", - "stop_name": "Boucher et Blainville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Boucher et Blainville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4483716025249, - 45.5292232104685 - ] - } - }, - { - "id": "1497", - "code": "31497", - "data": { - "gtfs": { - "stop_id": "1497", - "stop_code": "31497", - "stop_name": "Boucher et Blainville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Boucher et Blainville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4484681763198, - 45.5294971533282 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6418257049565 - }, - "name": "Boucher et Blainville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448419889, - 45.529360182 - ] - }, - "is_frozen": false, - "integer_id": 290, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.447478, - 45.530495 - ] - }, - "id": 291, - "properties": { - "id": "69483ac1-331d-4f0e-93b5-d8134f380763", - "code": "31483", - "data": { - "stops": [ - { - "id": "1483", - "code": "31483", - "data": { - "gtfs": { - "stop_id": "1483", - "stop_code": "31483", - "stop_name": "Boucher et Belcourt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Boucher et Belcourt", - "geography": { - "type": "Point", - "coordinates": [ - -73.4475702906617, - 45.5304236704739 - ] - } - }, - { - "id": "1496", - "code": "31496", - "data": { - "gtfs": { - "stop_id": "1496", - "stop_code": "31496", - "stop_name": "Belcourt et Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4473866176987, - 45.5305672335746 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6610339840934 - }, - "name": "Boucher et Belcourt", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447478454, - 45.530495452 - ] - }, - "is_frozen": false, - "integer_id": 291, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448366, - 45.532412 - ] - }, - "id": 292, - "properties": { - "id": "66f007ae-d813-40cb-ab41-e87b10da3a72", - "code": "31484", - "data": { - "stops": [ - { - "id": "1484", - "code": "31484", - "data": { - "gtfs": { - "stop_id": "1484", - "stop_code": "31484", - "stop_name": "Belcourt et tsse Bellemare", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et tsse Bellemare", - "geography": { - "type": "Point", - "coordinates": [ - -73.4483657008696, - 45.5324116501371 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.693457835036 - }, - "name": "Belcourt et tsse Bellemare", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448365701, - 45.53241165 - ] - }, - "is_frozen": false, - "integer_id": 292, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450097, - 45.533835 - ] - }, - "id": 293, - "properties": { - "id": "6685b5fc-0f35-439d-9c20-c96b665d5201", - "code": "31485", - "data": { - "stops": [ - { - "id": "1485", - "code": "31485", - "data": { - "gtfs": { - "stop_id": "1485", - "stop_code": "31485", - "stop_name": "Belcourt et tsse Des Ormeaux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et tsse Des Ormeaux", - "geography": { - "type": "Point", - "coordinates": [ - -73.450096876693, - 45.533835099824 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7175460512782 - }, - "name": "Belcourt et tsse Des Ormeaux", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450096877, - 45.5338351 - ] - }, - "is_frozen": false, - "integer_id": 293, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452216, - 45.534287 - ] - }, - "id": 294, - "properties": { - "id": "c896d257-2942-4aba-aded-59e49480d892", - "code": "31486", - "data": { - "stops": [ - { - "id": "1486", - "code": "31486", - "data": { - "gtfs": { - "stop_id": "1486", - "stop_code": "31486", - "stop_name": "Belcourt et Beauvais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et Beauvais", - "geography": { - "type": "Point", - "coordinates": [ - -73.4522159513844, - 45.5342872522125 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7251979346482 - }, - "name": "Belcourt et Beauvais", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452215951, - 45.534287252 - ] - }, - "is_frozen": false, - "integer_id": 294, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454728, - 45.533382 - ] - }, - "id": 295, - "properties": { - "id": "62590a84-0f1e-43e0-8046-574d7d23d2e9", - "code": "31487", - "data": { - "stops": [ - { - "id": "1487", - "code": "31487", - "data": { - "gtfs": { - "stop_id": "1487", - "stop_code": "31487", - "stop_name": "Belcourt et Bagot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et Bagot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4547279861442, - 45.533381697432 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7098731799844 - }, - "name": "Belcourt et Bagot", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454727986, - 45.533381697 - ] - }, - "is_frozen": false, - "integer_id": 295, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45593, - 45.534662 - ] - }, - "id": 296, - "properties": { - "id": "48a4676d-1da3-4489-8f80-1edfb1b61b1b", - "code": "31488", - "data": { - "stops": [ - { - "id": "1488", - "code": "31488", - "data": { - "gtfs": { - "stop_id": "1488", - "stop_code": "31488", - "stop_name": "Beauharnois et Bourdon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauharnois et Bourdon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4559304739465, - 45.5346624420541 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.731547508913 - }, - "name": "Beauharnois et Bourdon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455930474, - 45.534662442 - ] - }, - "is_frozen": false, - "integer_id": 296, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453735, - 45.535855 - ] - }, - "id": 297, - "properties": { - "id": "83c203fe-4b10-42fd-aafb-d9bc99f756b0", - "code": "31489", - "data": { - "stops": [ - { - "id": "1489", - "code": "31489", - "data": { - "gtfs": { - "stop_id": "1489", - "stop_code": "31489", - "stop_name": "Beauharnois et Beauvais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauharnois et Beauvais", - "geography": { - "type": "Point", - "coordinates": [ - -73.4537346354092, - 45.535855345625 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7517366010695 - }, - "name": "Beauharnois et Beauvais", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453734635, - 45.535855346 - ] - }, - "is_frozen": false, - "integer_id": 297, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453052, - 45.537592 - ] - }, - "id": 298, - "properties": { - "id": "e5c2d9f4-1be6-458f-854f-8103a3048b8c", - "code": "31490", - "data": { - "stops": [ - { - "id": "1490", - "code": "31490", - "data": { - "gtfs": { - "stop_id": "1490", - "stop_code": "31490", - "stop_name": "Beauharnois et boul. Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauharnois et boul. Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4529673807127, - 45.5374507910087 - ] - } - }, - { - "id": "1775", - "code": "31775", - "data": { - "gtfs": { - "stop_id": "1775", - "stop_code": "31775", - "stop_name": "boul. Béliveau et Beauharnois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et Beauharnois", - "geography": { - "type": "Point", - "coordinates": [ - -73.4528649280375, - 45.5377326633906 - ] - } - }, - { - "id": "5678", - "code": "30446", - "data": { - "gtfs": { - "stop_id": "5678", - "stop_code": "30446", - "stop_name": "boul. Béliveau et Beauharnois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et Beauharnois", - "geography": { - "type": "Point", - "coordinates": [ - -73.4532380853533, - 45.5375495828311 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7811259415091 - }, - "name": "Beauharnois et boul. Béliveau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453051507, - 45.537591727 - ] - }, - "is_frozen": false, - "integer_id": 298, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448784, - 45.536646 - ] - }, - "id": 299, - "properties": { - "id": "25a5f82a-36a7-4a52-af2b-32a681f87765", - "code": "31492", - "data": { - "stops": [ - { - "id": "1492", - "code": "31492", - "data": { - "gtfs": { - "stop_id": "1492", - "stop_code": "31492", - "stop_name": "boul. Béliveau et Braille", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et Braille", - "geography": { - "type": "Point", - "coordinates": [ - -73.4491631247747, - 45.5364913453642 - ] - } - }, - { - "id": "4865", - "code": "34865", - "data": { - "gtfs": { - "stop_id": "4865", - "stop_code": "34865", - "stop_name": "boul. Béliveau et Braille", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et Braille", - "geography": { - "type": "Point", - "coordinates": [ - -73.4487295278016, - 45.536528185302 - ] - } - }, - { - "id": "5800", - "code": "30569", - "data": { - "gtfs": { - "stop_id": "5800", - "stop_code": "30569", - "stop_name": "Braille et boul. Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Braille et boul. Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4484046621409, - 45.536799944795 - ] - } - }, - { - "id": "5802", - "code": "30571", - "data": { - "gtfs": { - "stop_id": "5802", - "stop_code": "30571", - "stop_name": "Braille et boul. Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Braille et boul. Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4488393399193, - 45.5366878378518 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7651125752294 - }, - "name": "boul. Béliveau et Braille", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448783893, - 45.536645645 - ] - }, - "is_frozen": false, - "integer_id": 299, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446251, - 45.535407 - ] - }, - "id": 300, - "properties": { - "id": "8b3a553d-dad5-41ff-b228-80f338c4b0e0", - "code": "31493", - "data": { - "stops": [ - { - "id": "1493", - "code": "31493", - "data": { - "gtfs": { - "stop_id": "1493", - "stop_code": "31493", - "stop_name": "boul. Béliveau et tsse Bourinot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et tsse Bourinot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4465448711421, - 45.5354892848609 - ] - } - }, - { - "id": "4890", - "code": "34890", - "data": { - "gtfs": { - "stop_id": "4890", - "stop_code": "34890", - "stop_name": "boul. Béliveau et tsse des Abénaquis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et tsse des Abénaquis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4459580893742, - 45.5353238291261 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.744141002329 - }, - "name": "boul. Béliveau et tsse Bourinot", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44625148, - 45.535406557 - ] - }, - "is_frozen": false, - "integer_id": 300, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44601, - 45.530493 - ] - }, - "id": 301, - "properties": { - "id": "23ef9461-bbd0-492e-8678-c51238629a13", - "code": "31495", - "data": { - "stops": [ - { - "id": "1495", - "code": "31495", - "data": { - "gtfs": { - "stop_id": "1495", - "stop_code": "31495", - "stop_name": "Belcourt et Brassard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et Brassard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4459176544979, - 45.5306661237046 - ] - } - }, - { - "id": "4896", - "code": "34896", - "data": { - "gtfs": { - "stop_id": "4896", - "stop_code": "34896", - "stop_name": "Belcourt et Brassard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et Brassard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4461017645058, - 45.530319892504 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6609926314326 - }, - "name": "Belcourt et Brassard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44600971, - 45.530493008 - ] - }, - "is_frozen": false, - "integer_id": 301, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449272, - 45.527631 - ] - }, - "id": 302, - "properties": { - "id": "3cd5bb2e-d93e-404b-bd40-9fce8e7fe61b", - "code": "31498", - "data": { - "stops": [ - { - "id": "1498", - "code": "31498", - "data": { - "gtfs": { - "stop_id": "1498", - "stop_code": "31498", - "stop_name": "Boucher et boul. Roland-Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Boucher et boul. Roland-Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4495294150375, - 45.5274608064483 - ] - } - }, - { - "id": "4175", - "code": "34175", - "data": { - "gtfs": { - "stop_id": "4175", - "stop_code": "34175", - "stop_name": "boul. Roland-Therrien et Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4492996342215, - 45.5272754961952 - ] - } - }, - { - "id": "4742", - "code": "34742", - "data": { - "gtfs": { - "stop_id": "4742", - "stop_code": "34742", - "stop_name": "Boucher et Bonneville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Boucher et Bonneville", - "geography": { - "type": "Point", - "coordinates": [ - -73.449014932699, - 45.5279861533183 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6125679379829 - }, - "name": "Boucher et boul. Roland-Therrien", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449272174, - 45.527630825 - ] - }, - "is_frozen": false, - "integer_id": 302, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454842, - 45.529561 - ] - }, - "id": 303, - "properties": { - "id": "0a078431-12d6-4e73-9908-076c3a27e8ed", - "code": "31500", - "data": { - "stops": [ - { - "id": "1500", - "code": "31500", - "data": { - "gtfs": { - "stop_id": "1500", - "stop_code": "31500", - "stop_name": "boul. Roland-Therrien et boul. Des Ormeaux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et boul. Des Ormeaux", - "geography": { - "type": "Point", - "coordinates": [ - -73.4548415412842, - 45.5295610549647 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6452243058806 - }, - "name": "boul. Roland-Therrien et boul. Des Ormeaux", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454841541, - 45.529561055 - ] - }, - "is_frozen": false, - "integer_id": 303, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457238, - 45.530538 - ] - }, - "id": 304, - "properties": { - "id": "211cb268-dcfa-4d7b-810c-681bfa65d4c8", - "code": "31501", - "data": { - "stops": [ - { - "id": "1501", - "code": "31501", - "data": { - "gtfs": { - "stop_id": "1501", - "stop_code": "31501", - "stop_name": "boul. Roland-Therrien et Bagot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et Bagot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4572383401336, - 45.5305379325352 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6617527666083 - }, - "name": "boul. Roland-Therrien et Bagot", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45723834, - 45.530537933 - ] - }, - "is_frozen": false, - "integer_id": 304, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454759, - 45.529075 - ] - }, - "id": 305, - "properties": { - "id": "6e83e147-802a-4695-95f3-96585bd15c4a", - "code": "31502", - "data": { - "stops": [ - { - "id": "1502", - "code": "31502", - "data": { - "gtfs": { - "stop_id": "1502", - "stop_code": "31502", - "stop_name": "boul. Roland-Therrien et boul. Des Ormeaux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et boul. Des Ormeaux", - "geography": { - "type": "Point", - "coordinates": [ - -73.4547592738122, - 45.5290749060582 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.636999138621 - }, - "name": "boul. Roland-Therrien et boul. Des Ormeaux", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454759274, - 45.529074906 - ] - }, - "is_frozen": false, - "integer_id": 305, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465677, - 45.535502 - ] - }, - "id": 306, - "properties": { - "id": "99ebc1ee-ae34-445f-80bb-b839bab4f3c5", - "code": "31504", - "data": { - "stops": [ - { - "id": "1504", - "code": "31504", - "data": { - "gtfs": { - "stop_id": "1504", - "stop_code": "31504", - "stop_name": "boul. Roland-Therrien et ch. Du Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et ch. Du Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4656332689873, - 45.53538720476 - ] - } - }, - { - "id": "5497", - "code": "30244", - "data": { - "gtfs": { - "stop_id": "5497", - "stop_code": "30244", - "stop_name": "ch. Du Tremblay et boul. Roland-Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et boul. Roland-Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4657207217018, - 45.5356175715401 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7457628938052 - }, - "name": "boul. Roland-Therrien et ch. Du Tremblay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465676995, - 45.535502388 - ] - }, - "is_frozen": false, - "integer_id": 306, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468768, - 45.537132 - ] - }, - "id": 307, - "properties": { - "id": "06d26eca-08e9-467e-9ff0-9595778162a0", - "code": "31505", - "data": { - "stops": [ - { - "id": "1505", - "code": "31505", - "data": { - "gtfs": { - "stop_id": "1505", - "stop_code": "31505", - "stop_name": "boul. Roland-Therrien et King-George", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et King-George", - "geography": { - "type": "Point", - "coordinates": [ - -73.4687677893865, - 45.5371324069894 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7733514000499 - }, - "name": "boul. Roland-Therrien et King-George", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468767789, - 45.537132407 - ] - }, - "is_frozen": false, - "integer_id": 307, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479388, - 45.538256 - ] - }, - "id": 308, - "properties": { - "id": "5f672947-8abc-447c-bf60-535abbf76fae", - "code": "31506", - "data": { - "stops": [ - { - "id": "1506", - "code": "31506", - "data": { - "gtfs": { - "stop_id": "1506", - "stop_code": "31506", - "stop_name": "boul. Roland-Therrien et ch. du Lac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et ch. du Lac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4794227912172, - 45.538156983781 - ] - } - }, - { - "id": "4905", - "code": "34905", - "data": { - "gtfs": { - "stop_id": "4905", - "stop_code": "34905", - "stop_name": "ch. du Lac et boul. Roland-Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et boul. Roland-Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4793527101902, - 45.5383546222325 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7923665563662 - }, - "name": "boul. Roland-Therrien et ch. du Lac", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479387751, - 45.538255803 - ] - }, - "is_frozen": false, - "integer_id": 308, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46145, - 45.531932 - ] - }, - "id": 309, - "properties": { - "id": "578c6989-4eaf-4641-bd71-dda3ad2bf2db", - "code": "31507", - "data": { - "stops": [ - { - "id": "1507", - "code": "31507", - "data": { - "gtfs": { - "stop_id": "1507", - "stop_code": "31507", - "stop_name": "boul. Roland-Therrien et boul. Jacques-Cartier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et boul. Jacques-Cartier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4612746563408, - 45.5319064402144 - ] - } - }, - { - "id": "1880", - "code": "31880", - "data": { - "gtfs": { - "stop_id": "1880", - "stop_code": "31880", - "stop_name": "boul. Jacques-Cartier est et boul. Roland-Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et boul. Roland-Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4616260128428, - 45.531957563428 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6853414379444 - }, - "name": "boul. Roland-Therrien et boul. Jacques-Cartier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461450335, - 45.531932002 - ] - }, - "is_frozen": false, - "integer_id": 309, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461821, - 45.53268 - ] - }, - "id": 310, - "properties": { - "id": "c0344ab7-a295-4325-be4f-32a7d1fe0ef1", - "code": "31508", - "data": { - "stops": [ - { - "id": "1508", - "code": "31508", - "data": { - "gtfs": { - "stop_id": "1508", - "stop_code": "31508", - "stop_name": "boul. Roland-Therrien et boul. Jacques-Cartier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et boul. Jacques-Cartier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4619693589884, - 45.5326888752338 - ] - } - }, - { - "id": "1897", - "code": "31897", - "data": { - "gtfs": { - "stop_id": "1897", - "stop_code": "31897", - "stop_name": "boul. Jacques-Cartier est et boul. Roland-Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et boul. Roland-Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4616723755639, - 45.532671799626 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.698004530492 - }, - "name": "boul. Roland-Therrien et boul. Jacques-Cartier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461820867, - 45.532680337 - ] - }, - "is_frozen": false, - "integer_id": 310, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.485715, - 45.540181 - ] - }, - "id": 311, - "properties": { - "id": "0bbf71d1-88b1-4b32-a995-4c16018b8b1b", - "code": "31511", - "data": { - "stops": [ - { - "id": "1511", - "code": "31511", - "data": { - "gtfs": { - "stop_id": "1511", - "stop_code": "31511", - "stop_name": "boul. Roland-Therrien et Fréchette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et Fréchette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4857146153706, - 45.540180594575 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8249491545353 - }, - "name": "boul. Roland-Therrien et Fréchette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.485714615, - 45.540180595 - ] - }, - "is_frozen": false, - "integer_id": 311, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490989, - 45.541803 - ] - }, - "id": 312, - "properties": { - "id": "038a22ba-4928-42fc-aaed-50fbd831df37", - "code": "31512", - "data": { - "stops": [ - { - "id": "1512", - "code": "31512", - "data": { - "gtfs": { - "stop_id": "1512", - "stop_code": "31512", - "stop_name": "boul. Roland-Therrien et De Gentilly est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et De Gentilly est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4909894363419, - 45.5418034755872 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8524236154784 - }, - "name": "boul. Roland-Therrien et De Gentilly est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490989436, - 45.541803476 - ] - }, - "is_frozen": false, - "integer_id": 312, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.49271, - 45.546169 - ] - }, - "id": 313, - "properties": { - "id": "d8edd688-4be6-49b3-b504-ebaca7d4d9bf", - "code": "31515", - "data": { - "stops": [ - { - "id": "1515", - "code": "31515", - "data": { - "gtfs": { - "stop_id": "1515", - "stop_code": "31515", - "stop_name": "boul. Roland-Therrien et boul. Fernand-Lafontaine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et boul. Fernand-Lafontaine", - "geography": { - "type": "Point", - "coordinates": [ - -73.4927100640981, - 45.5461687081417 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9263361953562 - }, - "name": "boul. Roland-Therrien et boul. Fernand-Lafontaine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492710064, - 45.546168708 - ] - }, - "is_frozen": false, - "integer_id": 313, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.495343, - 45.548316 - ] - }, - "id": 314, - "properties": { - "id": "64648218-6b63-436c-9a46-4770987ba432", - "code": "31516", - "data": { - "stops": [ - { - "id": "1516", - "code": "31516", - "data": { - "gtfs": { - "stop_id": "1516", - "stop_code": "31516", - "stop_name": "boul. Roland-Therrien et d'Auteuil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et d'Auteuil", - "geography": { - "type": "Point", - "coordinates": [ - -73.4950511325125, - 45.5480817527184 - ] - } - }, - { - "id": "1521", - "code": "31521", - "data": { - "gtfs": { - "stop_id": "1521", - "stop_code": "31521", - "stop_name": "boul. Roland-Therrien et d'Auteuil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et d'Auteuil", - "geography": { - "type": "Point", - "coordinates": [ - -73.4956343088755, - 45.5485499322987 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9626979564848 - }, - "name": "boul. Roland-Therrien et d'Auteuil", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.495342721, - 45.548315843 - ] - }, - "is_frozen": false, - "integer_id": 314, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.499792, - 45.550464 - ] - }, - "id": 315, - "properties": { - "id": "820a9d7c-25e9-487c-9e51-cfefcb1432f7", - "code": "31518", - "data": { - "stops": [ - { - "id": "1518", - "code": "31518", - "data": { - "gtfs": { - "stop_id": "1518", - "stop_code": "31518", - "stop_name": "Saint-Charles est et du Bord-de-l'Eau est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles est et du Bord-de-l'Eau est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4997919119377, - 45.5504644411228 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9990886127359 - }, - "name": "Saint-Charles est et du Bord-de-l'Eau est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.499791912, - 45.550464441 - ] - }, - "is_frozen": false, - "integer_id": 315, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492047, - 45.545157 - ] - }, - "id": 316, - "properties": { - "id": "2d7687a5-f458-4ce1-a3df-9639d89c0154", - "code": "31520", - "data": { - "stops": [ - { - "id": "1520", - "code": "31520", - "data": { - "gtfs": { - "stop_id": "1520", - "stop_code": "31520", - "stop_name": "boul. Roland-Therrien et civique 570", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et civique 570", - "geography": { - "type": "Point", - "coordinates": [ - -73.4920466081198, - 45.5451567673821 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9092003869729 - }, - "name": "boul. Roland-Therrien et civique 570", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492046608, - 45.545156767 - ] - }, - "is_frozen": false, - "integer_id": 316, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.515634, - 45.499342 - ] - }, - "id": 317, - "properties": { - "id": "0b09b82c-ec97-406d-9f1c-690cc935b5ea", - "code": "31523", - "data": { - "stops": [ - { - "id": "1523", - "code": "31523", - "data": { - "gtfs": { - "stop_id": "1523", - "stop_code": "31523", - "stop_name": "Riverside et av. Saint-Denis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Saint-Denis", - "geography": { - "type": "Point", - "coordinates": [ - -73.5157891110389, - 45.4994433649644 - ] - } - }, - { - "id": "1566", - "code": "31566", - "data": { - "gtfs": { - "stop_id": "1566", - "stop_code": "31566", - "stop_name": "Riverside et av. Saint-Denis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Saint-Denis", - "geography": { - "type": "Point", - "coordinates": [ - -73.5154782686814, - 45.4992403703933 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1343453588867 - }, - "name": "Riverside et av. Saint-Denis", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.51563369, - 45.499341868 - ] - }, - "is_frozen": false, - "integer_id": 317, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.512309, - 45.492475 - ] - }, - "id": 318, - "properties": { - "id": "3a7f24cb-ba64-4ec2-90b7-8ea6e3e997cb", - "code": "31525", - "data": { - "stops": [ - { - "id": "1525", - "code": "31525", - "data": { - "gtfs": { - "stop_id": "1525", - "stop_code": "31525", - "stop_name": "Riverside et av. Rivermere", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Rivermere", - "geography": { - "type": "Point", - "coordinates": [ - -73.5124738773251, - 45.4923447218685 - ] - } - }, - { - "id": "1563", - "code": "31563", - "data": { - "gtfs": { - "stop_id": "1563", - "stop_code": "31563", - "stop_name": "Riverside et av. Rivermere", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Rivermere", - "geography": { - "type": "Point", - "coordinates": [ - -73.512314397433, - 45.4924455838692 - ] - } - }, - { - "id": "4464", - "code": "34464", - "data": { - "gtfs": { - "stop_id": "4464", - "stop_code": "34464", - "stop_name": "av. Rivermere et Riverside", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Rivermere et Riverside", - "geography": { - "type": "Point", - "coordinates": [ - -73.5121435543162, - 45.4926052948965 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0183690816394 - }, - "name": "Riverside et av. Rivermere", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.512308716, - 45.492475008 - ] - }, - "is_frozen": false, - "integer_id": 318, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.510877, - 45.490243 - ] - }, - "id": 319, - "properties": { - "id": "8909e669-ff8b-4d47-9ba7-ae9a259a8ce7", - "code": "31526", - "data": { - "stops": [ - { - "id": "1526", - "code": "31526", - "data": { - "gtfs": { - "stop_id": "1526", - "stop_code": "31526", - "stop_name": "Riverside et av. Alexandra", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Alexandra", - "geography": { - "type": "Point", - "coordinates": [ - -73.5110429273544, - 45.490266227485 - ] - } - }, - { - "id": "1562", - "code": "31562", - "data": { - "gtfs": { - "stop_id": "1562", - "stop_code": "31562", - "stop_name": "Riverside et av. Alexandra", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Alexandra", - "geography": { - "type": "Point", - "coordinates": [ - -73.5107116117831, - 45.4901477692363 - ] - } - }, - { - "id": "1616", - "code": "31616", - "data": { - "gtfs": { - "stop_id": "1616", - "stop_code": "31616", - "stop_name": "av. Alexandra et Riverside", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et Riverside", - "geography": { - "type": "Point", - "coordinates": [ - -73.5107582821189, - 45.4903382422511 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9806812209541 - }, - "name": "Riverside et av. Alexandra", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.51087727, - 45.490243006 - ] - }, - "is_frozen": false, - "integer_id": 319, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.509686, - 45.488503 - ] - }, - "id": 320, - "properties": { - "id": "bc9b9243-e0ec-461a-9898-6eb69ecd511a", - "code": "31527", - "data": { - "stops": [ - { - "id": "1527", - "code": "31527", - "data": { - "gtfs": { - "stop_id": "1527", - "stop_code": "31527", - "stop_name": "Riverside et boul. de Montrose", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et boul. de Montrose", - "geography": { - "type": "Point", - "coordinates": [ - -73.5098732221397, - 45.4886331155792 - ] - } - }, - { - "id": "1561", - "code": "31561", - "data": { - "gtfs": { - "stop_id": "1561", - "stop_code": "31561", - "stop_name": "Riverside et boul. de Montrose", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et boul. de Montrose", - "geography": { - "type": "Point", - "coordinates": [ - -73.5094993736771, - 45.4883721921355 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9512980559632 - }, - "name": "Riverside et boul. de Montrose", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.509686298, - 45.488502654 - ] - }, - "is_frozen": false, - "integer_id": 320, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.508435, - 45.486711 - ] - }, - "id": 321, - "properties": { - "id": "41d7b6d4-1fe4-44ed-a774-b005607fc59d", - "code": "31528", - "data": { - "stops": [ - { - "id": "1528", - "code": "31528", - "data": { - "gtfs": { - "stop_id": "1528", - "stop_code": "31528", - "stop_name": "Riverside et av. de Bolton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. de Bolton", - "geography": { - "type": "Point", - "coordinates": [ - -73.5086395945767, - 45.4868425231035 - ] - } - }, - { - "id": "1560", - "code": "31560", - "data": { - "gtfs": { - "stop_id": "1560", - "stop_code": "31560", - "stop_name": "Riverside et av. de Bolton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. de Bolton", - "geography": { - "type": "Point", - "coordinates": [ - -73.5082309758475, - 45.4865797110748 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9210535240078 - }, - "name": "Riverside et av. de Bolton", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.508435285, - 45.486711117 - ] - }, - "is_frozen": false, - "integer_id": 321, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.504885, - 45.483974 - ] - }, - "id": 322, - "properties": { - "id": "9f22d75f-cc66-4020-8804-7912f49950d8", - "code": "31529", - "data": { - "stops": [ - { - "id": "1529", - "code": "31529", - "data": { - "gtfs": { - "stop_id": "1529", - "stop_code": "31529", - "stop_name": "Riverside et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.5049471536314, - 45.4839372926223 - ] - } - }, - { - "id": "3311", - "code": "33311", - "data": { - "gtfs": { - "stop_id": "3311", - "stop_code": "33311", - "stop_name": "Riverside et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.5048232467849, - 45.4840116827947 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.874859560386 - }, - "name": "Riverside et Passage piétonnier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.5048852, - 45.483974488 - ] - }, - "is_frozen": false, - "integer_id": 322, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.503412, - 45.482555 - ] - }, - "id": 323, - "properties": { - "id": "f1303a4a-bf8e-43e1-8273-0055e9b28ea7", - "code": "31530", - "data": { - "stops": [ - { - "id": "1530", - "code": "31530", - "data": { - "gtfs": { - "stop_id": "1530", - "stop_code": "31530", - "stop_name": "Riverside et av. de Normandie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. de Normandie", - "geography": { - "type": "Point", - "coordinates": [ - -73.5037211154899, - 45.4825139219901 - ] - } - }, - { - "id": "1559", - "code": "31559", - "data": { - "gtfs": { - "stop_id": "1559", - "stop_code": "31559", - "stop_name": "Riverside et av. de Normandie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. de Normandie", - "geography": { - "type": "Point", - "coordinates": [ - -73.5034312189398, - 45.482450926529 - ] - } - }, - { - "id": "2638", - "code": "32638", - "data": { - "gtfs": { - "stop_id": "2638", - "stop_code": "32638", - "stop_name": "av. de Normandie et Riverside", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. de Normandie et Riverside", - "geography": { - "type": "Point", - "coordinates": [ - -73.5034847941713, - 45.4825999277518 - ] - } - }, - { - "id": "2639", - "code": "32639", - "data": { - "gtfs": { - "stop_id": "2639", - "stop_code": "32639", - "stop_name": "av. de Normandie et Riverside", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. de Normandie et Riverside", - "geography": { - "type": "Point", - "coordinates": [ - -73.5031029379961, - 45.4826592971211 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8509032884463 - }, - "name": "Riverside et av. de Normandie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.503412027, - 45.482555112 - ] - }, - "is_frozen": false, - "integer_id": 323, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.501966, - 45.48064 - ] - }, - "id": 324, - "properties": { - "id": "4df7f34c-ec49-4d48-90b3-56f3faffc976", - "code": "31531", - "data": { - "stops": [ - { - "id": "1531", - "code": "31531", - "data": { - "gtfs": { - "stop_id": "1531", - "stop_code": "31531", - "stop_name": "Riverside et av. du Rhône", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. du Rhône", - "geography": { - "type": "Point", - "coordinates": [ - -73.5020559908241, - 45.4805516410936 - ] - } - }, - { - "id": "3503", - "code": "33503", - "data": { - "gtfs": { - "stop_id": "3503", - "stop_code": "33503", - "stop_name": "Riverside et av. du Rhône", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. du Rhône", - "geography": { - "type": "Point", - "coordinates": [ - -73.5018755206614, - 45.480727943939 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8185793135552 - }, - "name": "Riverside et av. du Rhône", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.501965756, - 45.480639793 - ] - }, - "is_frozen": false, - "integer_id": 324, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.487465, - 45.477871 - ] - }, - "id": 325, - "properties": { - "id": "e10498ae-4c8c-4fd9-a651-d9bc207c7e61", - "code": "31532", - "data": { - "stops": [ - { - "id": "1532", - "code": "31532", - "data": { - "gtfs": { - "stop_id": "1532", - "stop_code": "31532", - "stop_name": "boul. Plamondon et av. de Navarre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Plamondon et av. de Navarre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4876400250363, - 45.4779247043518 - ] - } - }, - { - "id": "1557", - "code": "31557", - "data": { - "gtfs": { - "stop_id": "1557", - "stop_code": "31557", - "stop_name": "boul. Plamondon et av. de Navarre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Plamondon et av. de Navarre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4872894989754, - 45.4778166842448 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7718522423621 - }, - "name": "boul. Plamondon et av. de Navarre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.487464762, - 45.477870694 - ] - }, - "is_frozen": false, - "integer_id": 325, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.487883, - 45.47565 - ] - }, - "id": 326, - "properties": { - "id": "8d0ecd5f-c5e9-4bd7-a1ff-cfdf8b59bbf5", - "code": "31533", - "data": { - "stops": [ - { - "id": "1533", - "code": "31533", - "data": { - "gtfs": { - "stop_id": "1533", - "stop_code": "31533", - "stop_name": "boul. Plamondon et Viger", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Plamondon et Viger", - "geography": { - "type": "Point", - "coordinates": [ - -73.4880641926967, - 45.4756976276991 - ] - } - }, - { - "id": "1556", - "code": "31556", - "data": { - "gtfs": { - "stop_id": "1556", - "stop_code": "31556", - "stop_name": "boul. Plamondon et Viger", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Plamondon et Viger", - "geography": { - "type": "Point", - "coordinates": [ - -73.4877012866945, - 45.4756031052296 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7343903112202 - }, - "name": "boul. Plamondon et Viger", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48788274, - 45.475650366 - ] - }, - "is_frozen": false, - "integer_id": 326, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.487646, - 45.474593 - ] - }, - "id": 327, - "properties": { - "id": "6e4c328c-6fba-4e81-b589-59318e11a37a", - "code": "31534", - "data": { - "stops": [ - { - "id": "1534", - "code": "31534", - "data": { - "gtfs": { - "stop_id": "1534", - "stop_code": "31534", - "stop_name": "boul. Plamondon et av. Ponsard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Plamondon et av. Ponsard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4876311199373, - 45.4747797372525 - ] - } - }, - { - "id": "1555", - "code": "31555", - "data": { - "gtfs": { - "stop_id": "1555", - "stop_code": "31555", - "stop_name": "av. Ponsard et boul. Plamondon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Ponsard et boul. Plamondon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4876611878854, - 45.4744066052294 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7165545910714 - }, - "name": "boul. Plamondon et av. Ponsard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.487646154, - 45.474593171 - ] - }, - "is_frozen": false, - "integer_id": 327, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.489989, - 45.474147 - ] - }, - "id": 328, - "properties": { - "id": "6735199f-47fc-47db-9116-7c110cca8945", - "code": "31535", - "data": { - "stops": [ - { - "id": "1535", - "code": "31535", - "data": { - "gtfs": { - "stop_id": "1535", - "stop_code": "31535", - "stop_name": "av. Ponsard et Picard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Ponsard et Picard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4898471048807, - 45.4742760410874 - ] - } - }, - { - "id": "1554", - "code": "31554", - "data": { - "gtfs": { - "stop_id": "1554", - "stop_code": "31554", - "stop_name": "av. Ponsard et Perrier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Ponsard et Perrier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4901314878564, - 45.474018231778 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.709029923824 - }, - "name": "av. Ponsard et Picard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.489989296, - 45.474147136 - ] - }, - "is_frozen": false, - "integer_id": 328, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491399, - 45.47336 - ] - }, - "id": 329, - "properties": { - "id": "c6165892-3719-417f-8d25-92e65471b42c", - "code": "31536", - "data": { - "stops": [ - { - "id": "1536", - "code": "31536", - "data": { - "gtfs": { - "stop_id": "1536", - "stop_code": "31536", - "stop_name": "av. Ponsard et av. Victor-Hugo", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Ponsard et av. Victor-Hugo", - "geography": { - "type": "Point", - "coordinates": [ - -73.4914498589963, - 45.4736200528999 - ] - } - }, - { - "id": "2001", - "code": "32001", - "data": { - "gtfs": { - "stop_id": "2001", - "stop_code": "32001", - "stop_name": "av. Victor-Hugo et av. Ponsard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victor-Hugo et av. Ponsard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4917349291685, - 45.473628302989 - ] - } - }, - { - "id": "3310", - "code": "33310", - "data": { - "gtfs": { - "stop_id": "3310", - "stop_code": "33310", - "stop_name": "av. Victor-Hugo et av. Ponsard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victor-Hugo et av. Ponsard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4910629485313, - 45.4730912907588 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6957478459406 - }, - "name": "av. Ponsard et av. Victor-Hugo", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491398939, - 45.473359797 - ] - }, - "is_frozen": false, - "integer_id": 329, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.485937, - 45.471535 - ] - }, - "id": 330, - "properties": { - "id": "7e4b21bb-20d6-4104-9b98-071226922d49", - "code": "31538", - "data": { - "stops": [ - { - "id": "1538", - "code": "31538", - "data": { - "gtfs": { - "stop_id": "1538", - "stop_code": "31538", - "stop_name": "av. Panama et Petit", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et Petit", - "geography": { - "type": "Point", - "coordinates": [ - -73.4860886554132, - 45.4717380744613 - ] - } - }, - { - "id": "3787", - "code": "33787", - "data": { - "gtfs": { - "stop_id": "3787", - "stop_code": "33787", - "stop_name": "av. Panama et Petit", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et Petit", - "geography": { - "type": "Point", - "coordinates": [ - -73.4857849298747, - 45.4713309782224 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6649584095054 - }, - "name": "av. Panama et Petit", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.485936793, - 45.471534526 - ] - }, - "is_frozen": false, - "integer_id": 330, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.485781, - 45.469245 - ] - }, - "id": 331, - "properties": { - "id": "c02d1e72-e7e4-466b-880a-3c6c790f2c7c", - "code": "31539", - "data": { - "stops": [ - { - "id": "1539", - "code": "31539", - "data": { - "gtfs": { - "stop_id": "1539", - "stop_code": "31539", - "stop_name": "av. Panama et av. Van Dyck", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et av. Van Dyck", - "geography": { - "type": "Point", - "coordinates": [ - -73.4857385418702, - 45.4693468071579 - ] - } - }, - { - "id": "4161", - "code": "34161", - "data": { - "gtfs": { - "stop_id": "4161", - "stop_code": "34161", - "stop_name": "av. Van Dyck et av. Panama", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Van Dyck et av. Panama", - "geography": { - "type": "Point", - "coordinates": [ - -73.4861368863735, - 45.4691428542716 - ] - } - }, - { - "id": "4207", - "code": "34207", - "data": { - "gtfs": { - "stop_id": "4207", - "stop_code": "34207", - "stop_name": "av. Panama et av. Van Dyck", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et av. Van Dyck", - "geography": { - "type": "Point", - "coordinates": [ - -73.4854259045073, - 45.4692396974397 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.626339058386 - }, - "name": "av. Panama et av. Van Dyck", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.485781395, - 45.469244831 - ] - }, - "is_frozen": false, - "integer_id": 331, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.484147, - 45.468759 - ] - }, - "id": 332, - "properties": { - "id": "3acbe4f4-b4c0-469f-af21-f4af3c6e2b53", - "code": "31540", - "data": { - "stops": [ - { - "id": "1540", - "code": "31540", - "data": { - "gtfs": { - "stop_id": "1540", - "stop_code": "31540", - "stop_name": "av. Panama et Poulin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et Poulin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4841466910497, - 45.4687593238598 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6181508082303 - }, - "name": "av. Panama et Poulin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.484146691, - 45.468759324 - ] - }, - "is_frozen": false, - "integer_id": 332, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.48069, - 45.468937 - ] - }, - "id": 333, - "properties": { - "id": "4ba7401a-cd63-4134-ba55-1e37c0dc02f3", - "code": "31541", - "data": { - "stops": [ - { - "id": "1541", - "code": "31541", - "data": { - "gtfs": { - "stop_id": "1541", - "stop_code": "31541", - "stop_name": "av. Panama et Pasteur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et Pasteur", - "geography": { - "type": "Point", - "coordinates": [ - -73.4808015189529, - 45.4688747380891 - ] - } - }, - { - "id": "1548", - "code": "31548", - "data": { - "gtfs": { - "stop_id": "1548", - "stop_code": "31548", - "stop_name": "av. Panama et Pasteur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et Pasteur", - "geography": { - "type": "Point", - "coordinates": [ - -73.4805787117508, - 45.4689987220333 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6211427999515 - }, - "name": "av. Panama et Pasteur", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.480690115, - 45.46893673 - ] - }, - "is_frozen": false, - "integer_id": 333, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.477864, - 45.46883 - ] - }, - "id": 334, - "properties": { - "id": "79c669a1-9060-4e5d-b272-f107884dee00", - "code": "31542", - "data": { - "stops": [ - { - "id": "1542", - "code": "31542", - "data": { - "gtfs": { - "stop_id": "1542", - "stop_code": "31542", - "stop_name": "av. Panama et Pérou", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et Pérou", - "geography": { - "type": "Point", - "coordinates": [ - -73.4779748262644, - 45.468773478298 - ] - } - }, - { - "id": "1547", - "code": "31547", - "data": { - "gtfs": { - "stop_id": "1547", - "stop_code": "31547", - "stop_name": "av. Panama et Pérou", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et Pérou", - "geography": { - "type": "Point", - "coordinates": [ - -73.4777538424299, - 45.4688867839836 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6193449807118 - }, - "name": "av. Panama et Pérou", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.477864334, - 45.468830131 - ] - }, - "is_frozen": false, - "integer_id": 334, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474524, - 45.468527 - ] - }, - "id": 335, - "properties": { - "id": "8ee627ae-bc68-4536-9016-30abc9c3d2b6", - "code": "31543", - "data": { - "stops": [ - { - "id": "1543", - "code": "31543", - "data": { - "gtfs": { - "stop_id": "1543", - "stop_code": "31543", - "stop_name": "av. Panama et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4747489812307, - 45.4686332775483 - ] - } - }, - { - "id": "3895", - "code": "33895", - "data": { - "gtfs": { - "stop_id": "3895", - "stop_code": "33895", - "stop_name": "boul. Pelletier et av. Panama", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et av. Panama", - "geography": { - "type": "Point", - "coordinates": [ - -73.4746312881383, - 45.4688171624984 - ] - } - }, - { - "id": "4847", - "code": "34847", - "data": { - "gtfs": { - "stop_id": "4847", - "stop_code": "34847", - "stop_name": "boul. Pelletier et av. Panama", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et av. Panama", - "geography": { - "type": "Point", - "coordinates": [ - -73.4742983735828, - 45.4682378349086 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6142410700701 - }, - "name": "av. Panama et boul. Pelletier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474523677, - 45.468527499 - ] - }, - "is_frozen": false, - "integer_id": 335, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47124, - 45.468144 - ] - }, - "id": 336, - "properties": { - "id": "c9311250-c5c0-4fed-8860-4c67f9b92d97", - "code": "31545", - "data": { - "stops": [ - { - "id": "1545", - "code": "31545", - "data": { - "gtfs": { - "stop_id": "1545", - "stop_code": "31545", - "stop_name": "av. Panama et GALERIES DE BROSSARD", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et GALERIES DE BROSSARD", - "geography": { - "type": "Point", - "coordinates": [ - -73.4714224679242, - 45.4680448089923 - ] - } - }, - { - "id": "3531", - "code": "33531", - "data": { - "gtfs": { - "stop_id": "3531", - "stop_code": "33531", - "stop_name": "av. Panama et CAISSE POPULAIRE DESJARDINS DE BROSSARD", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et CAISSE POPULAIRE DESJARDINS DE BROSSARD", - "geography": { - "type": "Point", - "coordinates": [ - -73.4710574513855, - 45.4682438436752 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6077789462909 - }, - "name": "av. Panama et GALERIES DE BROSSARD", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47123996, - 45.468144326 - ] - }, - "is_frozen": false, - "integer_id": 336, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475378, - 45.468804 - ] - }, - "id": 337, - "properties": { - "id": "0296a406-079c-41f9-8c5b-0723a0b5f294", - "code": "31546", - "data": { - "stops": [ - { - "id": "1546", - "code": "31546", - "data": { - "gtfs": { - "stop_id": "1546", - "stop_code": "31546", - "stop_name": "av. Panama et Parny", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et Parny", - "geography": { - "type": "Point", - "coordinates": [ - -73.4753782369708, - 45.4688039406988 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6189032812466 - }, - "name": "av. Panama et Parny", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475378237, - 45.468803941 - ] - }, - "is_frozen": false, - "integer_id": 337, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483902, - 45.468894 - ] - }, - "id": 338, - "properties": { - "id": "3e9388da-8f48-48c6-b6c0-5461e27eb26a", - "code": "31549", - "data": { - "stops": [ - { - "id": "1549", - "code": "31549", - "data": { - "gtfs": { - "stop_id": "1549", - "stop_code": "31549", - "stop_name": "av. Panama et Poulin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et Poulin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4839024659607, - 45.4688942669696 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6204266494503 - }, - "name": "av. Panama et Poulin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483902466, - 45.468894267 - ] - }, - "is_frozen": false, - "integer_id": 338, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486666, - 45.472904 - ] - }, - "id": 339, - "properties": { - "id": "b92e7022-9719-4479-bc45-c3dac5a8d257", - "code": "31552", - "data": { - "stops": [ - { - "id": "1552", - "code": "31552", - "data": { - "gtfs": { - "stop_id": "1552", - "stop_code": "31552", - "stop_name": "av. Panama et boul. Provencher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et boul. Provencher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4865564320912, - 45.47274146088 - ] - } - }, - { - "id": "2002", - "code": "32002", - "data": { - "gtfs": { - "stop_id": "2002", - "stop_code": "32002", - "stop_name": "boul. Plamondon et boul. Provencher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Plamondon et boul. Provencher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4862970099162, - 45.4731471885189 - ] - } - }, - { - "id": "3309", - "code": "33309", - "data": { - "gtfs": { - "stop_id": "3309", - "stop_code": "33309", - "stop_name": "boul. Provencher et av. Panama", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Provencher et av. Panama", - "geography": { - "type": "Point", - "coordinates": [ - -73.4870340651735, - 45.4726605297897 - ] - } - }, - { - "id": "4762", - "code": "34762", - "data": { - "gtfs": { - "stop_id": "4762", - "stop_code": "34762", - "stop_name": "boul. Provencher et av. Panama", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Provencher et av. Panama", - "geography": { - "type": "Point", - "coordinates": [ - -73.4867095719993, - 45.4730083466623 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6880566153446 - }, - "name": "av. Panama et boul. Provencher", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486665538, - 45.472903859 - ] - }, - "is_frozen": false, - "integer_id": 339, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490074, - 45.471749 - ] - }, - "id": 340, - "properties": { - "id": "687e247b-4a6d-4fd4-a20e-c7ddd3bb7d96", - "code": "31553", - "data": { - "stops": [ - { - "id": "1553", - "code": "31553", - "data": { - "gtfs": { - "stop_id": "1553", - "stop_code": "31553", - "stop_name": "boul. Provencher et av. Victor-Hugo", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Provencher et av. Victor-Hugo", - "geography": { - "type": "Point", - "coordinates": [ - -73.4898948587202, - 45.4719234158403 - ] - } - }, - { - "id": "3906", - "code": "33906", - "data": { - "gtfs": { - "stop_id": "3906", - "stop_code": "33906", - "stop_name": "av. Victor-Hugo et boul. Provencher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victor-Hugo et boul. Provencher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4902536028433, - 45.4718734829554 - ] - } - }, - { - "id": "4780", - "code": "34780", - "data": { - "gtfs": { - "stop_id": "4780", - "stop_code": "34780", - "stop_name": "boul. Provencher et av. Victor-Hugo", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Provencher et av. Victor-Hugo", - "geography": { - "type": "Point", - "coordinates": [ - -73.49005220277, - 45.4715754386418 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6685832959781 - }, - "name": "boul. Provencher et av. Victor-Hugo", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490074231, - 45.471749427 - ] - }, - "is_frozen": false, - "integer_id": 340, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486382, - 45.478428 - ] - }, - "id": 341, - "properties": { - "id": "fc92d5a1-fe31-4274-9837-2686b4525030", - "code": "31558", - "data": { - "stops": [ - { - "id": "1558", - "code": "31558", - "data": { - "gtfs": { - "stop_id": "1558", - "stop_code": "31558", - "stop_name": "boul. Plamondon et place Plamondon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Plamondon et place Plamondon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4863824015489, - 45.4784284756474 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7812639686139 - }, - "name": "boul. Plamondon et place Plamondon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486382402, - 45.478428476 - ] - }, - "is_frozen": false, - "integer_id": 341, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513535, - 45.49591 - ] - }, - "id": 342, - "properties": { - "id": "114aaaad-d40e-4930-853f-ef5cebdd299f", - "code": "31565", - "data": { - "stops": [ - { - "id": "1565", - "code": "31565", - "data": { - "gtfs": { - "stop_id": "1565", - "stop_code": "31565", - "stop_name": "Riverside et av. Hickson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Hickson", - "geography": { - "type": "Point", - "coordinates": [ - -73.5137037858885, - 45.4958941604028 - ] - } - }, - { - "id": "5596", - "code": "30345", - "data": { - "gtfs": { - "stop_id": "5596", - "stop_code": "30345", - "stop_name": "av. Hickson et Riverside", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Hickson et Riverside", - "geography": { - "type": "Point", - "coordinates": [ - -73.5133668159482, - 45.495926700902 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0763856373474 - }, - "name": "Riverside et av. Hickson", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.513535301, - 45.495910431 - ] - }, - "is_frozen": false, - "integer_id": 342, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.493727, - 45.463642 - ] - }, - "id": 343, - "properties": { - "id": "b19b665b-1a3f-41e4-97e7-48f99301b48f", - "code": "31568", - "data": { - "stops": [ - { - "id": "1568", - "code": "31568", - "data": { - "gtfs": { - "stop_id": "1568", - "stop_code": "31568", - "stop_name": "Turenne et boul. Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Turenne et boul. Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4937269658353, - 45.4636417620611 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5318540145854 - }, - "name": "Turenne et boul. Marie-Victorin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493726966, - 45.463641762 - ] - }, - "is_frozen": false, - "integer_id": 343, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.48982, - 45.456837 - ] - }, - "id": 344, - "properties": { - "id": "984def83-5f59-45f7-bb33-ed1dbca30502", - "code": "31570", - "data": { - "stops": [ - { - "id": "1570", - "code": "31570", - "data": { - "gtfs": { - "stop_id": "1570", - "stop_code": "31570", - "stop_name": "boul. de Rome et av. Stravinski", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. Stravinski", - "geography": { - "type": "Point", - "coordinates": [ - -73.4899770928305, - 45.4568764958068 - ] - } - }, - { - "id": "2763", - "code": "32763", - "data": { - "gtfs": { - "stop_id": "2763", - "stop_code": "32763", - "stop_name": "av. Stravinski et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4896621304927, - 45.4567972620096 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4171401511834 - }, - "name": "boul. de Rome et av. Stravinski", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.489819612, - 45.456836879 - ] - }, - "is_frozen": false, - "integer_id": 344, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486396, - 45.456887 - ] - }, - "id": 345, - "properties": { - "id": "1d56d4cb-0ab2-44f2-924d-aa119de8c362", - "code": "31571", - "data": { - "stops": [ - { - "id": "1571", - "code": "31571", - "data": { - "gtfs": { - "stop_id": "1571", - "stop_code": "31571", - "stop_name": "boul. de Rome et place Soulanges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et place Soulanges", - "geography": { - "type": "Point", - "coordinates": [ - -73.4865042758762, - 45.4567536758596 - ] - } - }, - { - "id": "1601", - "code": "31601", - "data": { - "gtfs": { - "stop_id": "1601", - "stop_code": "31601", - "stop_name": "boul. de Rome et place Soulanges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et place Soulanges", - "geography": { - "type": "Point", - "coordinates": [ - -73.4862878156747, - 45.4570208201421 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4179890996974 - }, - "name": "boul. de Rome et place Soulanges", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486396046, - 45.456887248 - ] - }, - "is_frozen": false, - "integer_id": 345, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482772, - 45.456731 - ] - }, - "id": 346, - "properties": { - "id": "ecb00316-793a-4c41-88bd-3870bea4d999", - "code": "31572", - "data": { - "stops": [ - { - "id": "1572", - "code": "31572", - "data": { - "gtfs": { - "stop_id": "1572", - "stop_code": "31572", - "stop_name": "boul. de Rome et av. Saguenay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. Saguenay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4828993282503, - 45.4566455961504 - ] - } - }, - { - "id": "1600", - "code": "31600", - "data": { - "gtfs": { - "stop_id": "1600", - "stop_code": "31600", - "stop_name": "boul. de Rome et av. Saguenay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. Saguenay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4826448502779, - 45.4568945913534 - ] - } - }, - { - "id": "2034", - "code": "32034", - "data": { - "gtfs": { - "stop_id": "2034", - "stop_code": "32034", - "stop_name": "av. Saguenay et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Saguenay et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4826920392004, - 45.4565669602999 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4153518366801 - }, - "name": "boul. de Rome et av. Saguenay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482772089, - 45.456730776 - ] - }, - "is_frozen": false, - "integer_id": 346, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479525, - 45.45702 - ] - }, - "id": 347, - "properties": { - "id": "9a86a407-515f-4b5e-8a56-9a4c52c91c96", - "code": "31573", - "data": { - "stops": [ - { - "id": "1573", - "code": "31573", - "data": { - "gtfs": { - "stop_id": "1573", - "stop_code": "31573", - "stop_name": "boul. Pelletier et Tardif", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et Tardif", - "geography": { - "type": "Point", - "coordinates": [ - -73.4795920364038, - 45.4572540268492 - ] - } - }, - { - "id": "2721", - "code": "32721", - "data": { - "gtfs": { - "stop_id": "2721", - "stop_code": "32721", - "stop_name": "boul. de Rome et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4794588395947, - 45.4567869635673 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4202349332343 - }, - "name": "boul. Pelletier et Tardif", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479525438, - 45.457020495 - ] - }, - "is_frozen": false, - "integer_id": 347, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478526, - 45.461005 - ] - }, - "id": 348, - "properties": { - "id": "a6a288e9-4aef-4ef9-9eef-61ba3a45b579", - "code": "31574", - "data": { - "stops": [ - { - "id": "1574", - "code": "31574", - "data": { - "gtfs": { - "stop_id": "1574", - "stop_code": "31574", - "stop_name": "av. Touchette et av. Thibault", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Touchette et av. Thibault", - "geography": { - "type": "Point", - "coordinates": [ - -73.4787889702715, - 45.4613391993147 - ] - } - }, - { - "id": "1599", - "code": "31599", - "data": { - "gtfs": { - "stop_id": "1599", - "stop_code": "31599", - "stop_name": "av. Touchette et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Touchette et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4784962439212, - 45.4608712227588 - ] - } - }, - { - "id": "2652", - "code": "32652", - "data": { - "gtfs": { - "stop_id": "2652", - "stop_code": "32652", - "stop_name": "boul. Pelletier et av. Touchette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et av. Touchette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4782840122032, - 45.4609926623163 - ] - } - }, - { - "id": "2780", - "code": "32780", - "data": { - "gtfs": { - "stop_id": "2780", - "stop_code": "32780", - "stop_name": "boul. Pelletier et av. Touchette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et av. Touchette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4782636856411, - 45.4606706112391 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4873981081514 - }, - "name": "av. Touchette et av. Thibault", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.478526328, - 45.461004905 - ] - }, - "is_frozen": false, - "integer_id": 348, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47984, - 45.462479 - ] - }, - "id": 349, - "properties": { - "id": "003bcf5e-54a8-471f-b008-b7fa64ff94ba", - "code": "31575", - "data": { - "stops": [ - { - "id": "1575", - "code": "31575", - "data": { - "gtfs": { - "stop_id": "1575", - "stop_code": "31575", - "stop_name": "av. Touchette et civique 1230", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Touchette et civique 1230", - "geography": { - "type": "Point", - "coordinates": [ - -73.4796485331119, - 45.4623696834207 - ] - } - }, - { - "id": "1598", - "code": "31598", - "data": { - "gtfs": { - "stop_id": "1598", - "stop_code": "31598", - "stop_name": "av. Touchette et civique 1225", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Touchette et civique 1225", - "geography": { - "type": "Point", - "coordinates": [ - -73.4800306228296, - 45.4625873524497 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5122416228375 - }, - "name": "av. Touchette et civique 1230", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479839578, - 45.462478518 - ] - }, - "is_frozen": false, - "integer_id": 349, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481413, - 45.46431 - ] - }, - "id": 350, - "properties": { - "id": "a473bafa-653d-45cd-9ee5-57c2d5726bb0", - "code": "31576", - "data": { - "stops": [ - { - "id": "1576", - "code": "31576", - "data": { - "gtfs": { - "stop_id": "1576", - "stop_code": "31576", - "stop_name": "av. Touchette et av. Tisserand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Touchette et av. Tisserand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4812916224168, - 45.4643435858305 - ] - } - }, - { - "id": "2012", - "code": "32012", - "data": { - "gtfs": { - "stop_id": "2012", - "stop_code": "32012", - "stop_name": "av. Touchette et av. Tisserand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Touchette et av. Tisserand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4813119086224, - 45.4641201745999 - ] - } - }, - { - "id": "2041", - "code": "32041", - "data": { - "gtfs": { - "stop_id": "2041", - "stop_code": "32041", - "stop_name": "av. Tisserand et av. Touchette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et av. Touchette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4815340484223, - 45.4642845573798 - ] - } - }, - { - "id": "5910", - "code": "30788", - "data": { - "gtfs": { - "stop_id": "5910", - "stop_code": "30788", - "stop_name": "av. Tisserand et av. Touchette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et av. Touchette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4813931470788, - 45.4644997010427 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5431200613212 - }, - "name": "av. Touchette et av. Tisserand", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481412835, - 45.464309938 - ] - }, - "is_frozen": false, - "integer_id": 350, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474288, - 45.464641 - ] - }, - "id": 351, - "properties": { - "id": "4bbdfb79-c7dc-46c0-893b-48e38ccd2db0", - "code": "31577", - "data": { - "stops": [ - { - "id": "1577", - "code": "31577", - "data": { - "gtfs": { - "stop_id": "1577", - "stop_code": "31577", - "stop_name": "av. Tisserand et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4742876039593, - 45.464640721927 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.548697522956 - }, - "name": "av. Tisserand et boul. Pelletier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474287604, - 45.464640722 - ] - }, - "is_frozen": false, - "integer_id": 351, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.472906, - 45.464165 - ] - }, - "id": 352, - "properties": { - "id": "70ace55a-2f3c-410b-8740-bea06ecb9924", - "code": "31578", - "data": { - "stops": [ - { - "id": "1578", - "code": "31578", - "data": { - "gtfs": { - "stop_id": "1578", - "stop_code": "31578", - "stop_name": "av. Tisserand et Toulon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et Toulon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4730841242054, - 45.4642670072971 - ] - } - }, - { - "id": "1596", - "code": "31596", - "data": { - "gtfs": { - "stop_id": "1596", - "stop_code": "31596", - "stop_name": "av. Tisserand et Toulon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et Toulon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4727281178063, - 45.4641842996046 - ] - } - }, - { - "id": "2793", - "code": "32793", - "data": { - "gtfs": { - "stop_id": "2793", - "stop_code": "32793", - "stop_name": "Toulon et av. Tisserand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Toulon et av. Tisserand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4728348601258, - 45.4640637920408 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.540682987392 - }, - "name": "av. Tisserand et Toulon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472906121, - 45.4641654 - ] - }, - "is_frozen": false, - "integer_id": 352, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468969, - 45.46342 - ] - }, - "id": 353, - "properties": { - "id": "f872f4da-bae9-485b-a2fb-ae01787389fc", - "code": "31579", - "data": { - "stops": [ - { - "id": "1579", - "code": "31579", - "data": { - "gtfs": { - "stop_id": "1579", - "stop_code": "31579", - "stop_name": "av. Tisserand et civique 7100", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et civique 7100", - "geography": { - "type": "Point", - "coordinates": [ - -73.4691871419308, - 45.4634151881221 - ] - } - }, - { - "id": "3956", - "code": "33956", - "data": { - "gtfs": { - "stop_id": "3956", - "stop_code": "33956", - "stop_name": "av. Tisserand et civique 7100", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et civique 7100", - "geography": { - "type": "Point", - "coordinates": [ - -73.4687503907454, - 45.4634247050602 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5281141023326 - }, - "name": "av. Tisserand et civique 7100", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468968766, - 45.463419947 - ] - }, - "is_frozen": false, - "integer_id": 353, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469137, - 45.460622 - ] - }, - "id": 354, - "properties": { - "id": "f045bfca-885e-4fa6-be24-3e8f1855457a", - "code": "31580", - "data": { - "stops": [ - { - "id": "1580", - "code": "31580", - "data": { - "gtfs": { - "stop_id": "1580", - "stop_code": "31580", - "stop_name": "av. Tisserand et Talleyrand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et Talleyrand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4691366872049, - 45.4606216186659 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4809366383298 - }, - "name": "av. Tisserand et Talleyrand", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469136687, - 45.460621619 - ] - }, - "is_frozen": false, - "integer_id": 354, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468109, - 45.458972 - ] - }, - "id": 355, - "properties": { - "id": "9c31442f-9d61-432b-9d5c-68ff1b1b4f35", - "code": "31581", - "data": { - "stops": [ - { - "id": "1581", - "code": "31581", - "data": { - "gtfs": { - "stop_id": "1581", - "stop_code": "31581", - "stop_name": "av. Tisserand et Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4682525045563, - 45.4590071932587 - ] - } - }, - { - "id": "1594", - "code": "31594", - "data": { - "gtfs": { - "stop_id": "1594", - "stop_code": "31594", - "stop_name": "av. Tisserand et Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4679664853299, - 45.4589369152083 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4531296114026 - }, - "name": "av. Tisserand et Therrien", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468109495, - 45.458972054 - ] - }, - "is_frozen": false, - "integer_id": 355, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468034, - 45.458025 - ] - }, - "id": 356, - "properties": { - "id": "ff1cf2b4-dc0f-4b72-9110-d44fca6fc05d", - "code": "31582", - "data": { - "stops": [ - { - "id": "1582", - "code": "31582", - "data": { - "gtfs": { - "stop_id": "1582", - "stop_code": "31582", - "stop_name": "av. Tisserand et av. Trépanier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et av. Trépanier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4680899126072, - 45.4582187317277 - ] - } - }, - { - "id": "3312", - "code": "33312", - "data": { - "gtfs": { - "stop_id": "3312", - "stop_code": "33312", - "stop_name": "av. Tisserand et av. Trépanier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et av. Trépanier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4679783723385, - 45.4578311836459 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.437165327542 - }, - "name": "av. Tisserand et av. Trépanier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468034142, - 45.458024958 - ] - }, - "is_frozen": false, - "integer_id": 356, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463365, - 45.454183 - ] - }, - "id": 357, - "properties": { - "id": "2946050b-73ca-45c7-be10-f80ba5b43ab5", - "code": "31584", - "data": { - "stops": [ - { - "id": "1584", - "code": "31584", - "data": { - "gtfs": { - "stop_id": "1584", - "stop_code": "31584", - "stop_name": "boul. de Rome et av. Malo", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. Malo", - "geography": { - "type": "Point", - "coordinates": [ - -73.4633650982521, - 45.4541828463579 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3724107146556 - }, - "name": "boul. de Rome et av. Malo", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463365098, - 45.454182846 - ] - }, - "is_frozen": false, - "integer_id": 357, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461772, - 45.453409 - ] - }, - "id": 358, - "properties": { - "id": "b3b32b85-3f83-40cf-ad3b-bac323b87469", - "code": "31585", - "data": { - "stops": [ - { - "id": "1585", - "code": "31585", - "data": { - "gtfs": { - "stop_id": "1585", - "stop_code": "31585", - "stop_name": "boul. de Rome et av. Naples", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. Naples", - "geography": { - "type": "Point", - "coordinates": [ - -73.4618779903785, - 45.4534934294504 - ] - } - }, - { - "id": "2751", - "code": "32751", - "data": { - "gtfs": { - "stop_id": "2751", - "stop_code": "32751", - "stop_name": "av. Naples et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Naples et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4616669196805, - 45.4533254979298 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3593777868929 - }, - "name": "boul. de Rome et av. Naples", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461772455, - 45.453409464 - ] - }, - "is_frozen": false, - "integer_id": 358, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459253, - 45.452333 - ] - }, - "id": 359, - "properties": { - "id": "ab493a3c-1217-4122-93b5-217f7741b2ea", - "code": "31586", - "data": { - "stops": [ - { - "id": "1586", - "code": "31586", - "data": { - "gtfs": { - "stop_id": "1586", - "stop_code": "31586", - "stop_name": "boul. de Rome et av. Neuville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. Neuville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4592533786848, - 45.4523331265896 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.341240385953 - }, - "name": "boul. de Rome et av. Neuville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459253379, - 45.452333127 - ] - }, - "is_frozen": false, - "integer_id": 359, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455924, - 45.450109 - ] - }, - "id": 360, - "properties": { - "id": "2c6638eb-437e-4a41-bb5d-d6093797361d", - "code": "31588", - "data": { - "stops": [ - { - "id": "1588", - "code": "31588", - "data": { - "gtfs": { - "stop_id": "1588", - "stop_code": "31588", - "stop_name": "boul. de Rome et ARENA MICHEL-NORMANDIN", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et ARENA MICHEL-NORMANDIN", - "geography": { - "type": "Point", - "coordinates": [ - -73.4559241961527, - 45.4501087819443 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3037611091853 - }, - "name": "boul. de Rome et ARENA MICHEL-NORMANDIN", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455924196, - 45.450108782 - ] - }, - "is_frozen": false, - "integer_id": 360, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458687, - 45.452374 - ] - }, - "id": 361, - "properties": { - "id": "ecc40005-3e04-4ac2-ac4e-25ea78ad75a9", - "code": "31590", - "data": { - "stops": [ - { - "id": "1590", - "code": "31590", - "data": { - "gtfs": { - "stop_id": "1590", - "stop_code": "31590", - "stop_name": "boul. de Rome et av. Neuville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. Neuville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4586870975534, - 45.452374059875 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3419301308932 - }, - "name": "boul. de Rome et av. Neuville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.458687098, - 45.45237406 - ] - }, - "is_frozen": false, - "integer_id": 361, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461175, - 45.453545 - ] - }, - "id": 362, - "properties": { - "id": "2ac07b96-98be-4710-a749-3162a661fcb5", - "code": "31591", - "data": { - "stops": [ - { - "id": "1591", - "code": "31591", - "data": { - "gtfs": { - "stop_id": "1591", - "stop_code": "31591", - "stop_name": "boul. de Rome et av. Naples", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. Naples", - "geography": { - "type": "Point", - "coordinates": [ - -73.4611751817048, - 45.4535450601375 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3616627937928 - }, - "name": "boul. de Rome et av. Naples", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461175182, - 45.45354506 - ] - }, - "is_frozen": false, - "integer_id": 362, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462858, - 45.454285 - ] - }, - "id": 363, - "properties": { - "id": "dac9322f-08e9-4886-a135-b1cc9beeb09b", - "code": "31592", - "data": { - "stops": [ - { - "id": "1592", - "code": "31592", - "data": { - "gtfs": { - "stop_id": "1592", - "stop_code": "31592", - "stop_name": "boul. de Rome et av. Malo", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. Malo", - "geography": { - "type": "Point", - "coordinates": [ - -73.4628577151327, - 45.4542853680718 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.37413844122 - }, - "name": "boul. de Rome et av. Malo", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462857715, - 45.454285368 - ] - }, - "is_frozen": false, - "integer_id": 363, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468111, - 45.456247 - ] - }, - "id": 364, - "properties": { - "id": "2a268094-fe95-4a75-83da-d02aa638cbb6", - "code": "31593", - "data": { - "stops": [ - { - "id": "1593", - "code": "31593", - "data": { - "gtfs": { - "stop_id": "1593", - "stop_code": "31593", - "stop_name": "boul. de Rome et av. Tisserand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. Tisserand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4681112685973, - 45.4562472107297 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4072017101012 - }, - "name": "boul. de Rome et av. Tisserand", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468111269, - 45.456247211 - ] - }, - "is_frozen": false, - "integer_id": 364, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468923, - 45.460679 - ] - }, - "id": 365, - "properties": { - "id": "ef880d61-7a9a-4504-a9a1-27967a52e95d", - "code": "31595", - "data": { - "stops": [ - { - "id": "1595", - "code": "31595", - "data": { - "gtfs": { - "stop_id": "1595", - "stop_code": "31595", - "stop_name": "av. Tisserand et Talleyrand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et Talleyrand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4689233742988, - 45.4606791818094 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4819070322346 - }, - "name": "av. Tisserand et Talleyrand", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468923374, - 45.460679182 - ] - }, - "is_frozen": false, - "integer_id": 365, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474788, - 45.464806 - ] - }, - "id": 366, - "properties": { - "id": "5a01eede-d090-4bda-988f-792a987bafc2", - "code": "31597", - "data": { - "stops": [ - { - "id": "1597", - "code": "31597", - "data": { - "gtfs": { - "stop_id": "1597", - "stop_code": "31597", - "stop_name": "av. Tisserand et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4747875538318, - 45.4648055408479 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5514766284832 - }, - "name": "av. Tisserand et boul. Pelletier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474787554, - 45.464805541 - ] - }, - "is_frozen": false, - "integer_id": 366, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490916, - 45.455854 - ] - }, - "id": 367, - "properties": { - "id": "f1131e74-6c65-4f22-a18d-41dbe35e4576", - "code": "31602", - "data": { - "stops": [ - { - "id": "1602", - "code": "31602", - "data": { - "gtfs": { - "stop_id": "1602", - "stop_code": "31602", - "stop_name": "av. Stravinski et Schumann", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et Schumann", - "geography": { - "type": "Point", - "coordinates": [ - -73.4908922419873, - 45.4559465140588 - ] - } - }, - { - "id": "2762", - "code": "32762", - "data": { - "gtfs": { - "stop_id": "2762", - "stop_code": "32762", - "stop_name": "av. Stravinski et Schumann", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et Schumann", - "geography": { - "type": "Point", - "coordinates": [ - -73.4909399439923, - 45.4557605088572 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4005663441403 - }, - "name": "av. Stravinski et Schumann", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490916093, - 45.455853511 - ] - }, - "is_frozen": false, - "integer_id": 367, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490642, - 45.453586 - ] - }, - "id": 368, - "properties": { - "id": "c7c30949-db61-44fc-b7ab-a69b9fde12cc", - "code": "31603", - "data": { - "stops": [ - { - "id": "1603", - "code": "31603", - "data": { - "gtfs": { - "stop_id": "1603", - "stop_code": "31603", - "stop_name": "av. Stravinski et Schubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et Schubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4908016944597, - 45.4536050431873 - ] - } - }, - { - "id": "2760", - "code": "32760", - "data": { - "gtfs": { - "stop_id": "2760", - "stop_code": "32760", - "stop_name": "av. Stravinski et av. Stravinski", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et av. Stravinski", - "geography": { - "type": "Point", - "coordinates": [ - -73.4904818456314, - 45.4535659742545 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3623444265277 - }, - "name": "av. Stravinski et Schubert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.49064177, - 45.453585509 - ] - }, - "is_frozen": false, - "integer_id": 368, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490167, - 45.452021 - ] - }, - "id": 369, - "properties": { - "id": "aaab71e0-fdfc-41f5-8a47-9c4e35a05da7", - "code": "31604", - "data": { - "stops": [ - { - "id": "1604", - "code": "31604", - "data": { - "gtfs": { - "stop_id": "1604", - "stop_code": "31604", - "stop_name": "av. Stravinski et place Santerre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et place Santerre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4902515900486, - 45.4521274638767 - ] - } - }, - { - "id": "2759", - "code": "32759", - "data": { - "gtfs": { - "stop_id": "2759", - "stop_code": "32759", - "stop_name": "av. Stravinski et place Santerre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et place Santerre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4900829711553, - 45.4519137851176 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3359745769997 - }, - "name": "av. Stravinski et place Santerre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490167281, - 45.452020624 - ] - }, - "is_frozen": false, - "integer_id": 369, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.49037, - 45.449863 - ] - }, - "id": 370, - "properties": { - "id": "997c4af9-ab50-4dfb-941a-afadff58f267", - "code": "31605", - "data": { - "stops": [ - { - "id": "1605", - "code": "31605", - "data": { - "gtfs": { - "stop_id": "1605", - "stop_code": "31605", - "stop_name": "av. Stravinski et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4904330251031, - 45.4502214062371 - ] - } - }, - { - "id": "2758", - "code": "32758", - "data": { - "gtfs": { - "stop_id": "2758", - "stop_code": "32758", - "stop_name": "av. Stravinski et croiss. Sabourin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et croiss. Sabourin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4903074394209, - 45.4495046027877 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2996201394466 - }, - "name": "av. Stravinski et Passage piétonnier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490370232, - 45.449863005 - ] - }, - "is_frozen": false, - "integer_id": 370, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490513, - 45.447638 - ] - }, - "id": 371, - "properties": { - "id": "11a7e876-eb5a-402b-8bb8-10625e7584e3", - "code": "31606", - "data": { - "stops": [ - { - "id": "1606", - "code": "31606", - "data": { - "gtfs": { - "stop_id": "1606", - "stop_code": "31606", - "stop_name": "av. Stravinski et boul. Rivard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et boul. Rivard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4906237039296, - 45.4477350412472 - ] - } - }, - { - "id": "3606", - "code": "33606", - "data": { - "gtfs": { - "stop_id": "3606", - "stop_code": "33606", - "stop_name": "av. Stravinski et boul. Rivard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et boul. Rivard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4904686159487, - 45.4472851025053 - ] - } - }, - { - "id": "3607", - "code": "33607", - "data": { - "gtfs": { - "stop_id": "3607", - "stop_code": "33607", - "stop_name": "av. Stravinski et boul. Rivard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et boul. Rivard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4904027355712, - 45.4479914806459 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2621395362596 - }, - "name": "av. Stravinski et boul. Rivard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.49051322, - 45.447638292 - ] - }, - "is_frozen": false, - "integer_id": 371, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492328, - 45.447601 - ] - }, - "id": 372, - "properties": { - "id": "0d8bc8fc-204a-4f67-a22f-4e3e93df3587", - "code": "31607", - "data": { - "stops": [ - { - "id": "1607", - "code": "31607", - "data": { - "gtfs": { - "stop_id": "1607", - "stop_code": "31607", - "stop_name": "boul. Rivard et boul. Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Rivard et boul. Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4922638603879, - 45.447728480905 - ] - } - }, - { - "id": "3662", - "code": "33662", - "data": { - "gtfs": { - "stop_id": "3662", - "stop_code": "33662", - "stop_name": "boul. Marie-Victorin et boul. Rivard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et boul. Rivard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4923923307124, - 45.4474742157114 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2615171634047 - }, - "name": "boul. Rivard et boul. Marie-Victorin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492328096, - 45.447601348 - ] - }, - "is_frozen": false, - "integer_id": 372, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.489567, - 45.457141 - ] - }, - "id": 373, - "properties": { - "id": "2f68c8b3-ace6-41af-8853-d72177e835fd", - "code": "31608", - "data": { - "stops": [ - { - "id": "1608", - "code": "31608", - "data": { - "gtfs": { - "stop_id": "1608", - "stop_code": "31608", - "stop_name": "boul. de Rome et av. Tisserand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. Tisserand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4895668925947, - 45.4571408431967 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4222633719886 - }, - "name": "boul. de Rome et av. Tisserand", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.489566893, - 45.457140843 - ] - }, - "is_frozen": false, - "integer_id": 373, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492349, - 45.45976 - ] - }, - "id": 374, - "properties": { - "id": "8e7df7c5-fbe3-41d1-a80a-c492814328ef", - "code": "31609", - "data": { - "stops": [ - { - "id": "1609", - "code": "31609", - "data": { - "gtfs": { - "stop_id": "1609", - "stop_code": "31609", - "stop_name": "boul. Marie-Victorin et place Trianon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et place Trianon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4923494503127, - 45.4597601491036 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4664143755277 - }, - "name": "boul. Marie-Victorin et place Trianon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.49234945, - 45.459760149 - ] - }, - "is_frozen": false, - "integer_id": 374, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491282, - 45.461519 - ] - }, - "id": 375, - "properties": { - "id": "13911923-9958-42d2-8802-57ffe78c7f38", - "code": "31610", - "data": { - "stops": [ - { - "id": "1610", - "code": "31610", - "data": { - "gtfs": { - "stop_id": "1610", - "stop_code": "31610", - "stop_name": "av. Thérèse et croiss. Tourangeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Thérèse et croiss. Tourangeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4912824477056, - 45.461518884754 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.496063033824 - }, - "name": "av. Thérèse et croiss. Tourangeau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491282448, - 45.461518885 - ] - }, - "is_frozen": false, - "integer_id": 375, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.470651, - 45.481964 - ] - }, - "id": 376, - "properties": { - "id": "a4f163e1-b90e-4fc3-82f3-f03b3181860d", - "code": "31611", - "data": { - "stops": [ - { - "id": "1611", - "code": "31611", - "data": { - "gtfs": { - "stop_id": "1611", - "stop_code": "31611", - "stop_name": "Campbell et tsse Plante", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Campbell et tsse Plante", - "geography": { - "type": "Point", - "coordinates": [ - -73.4709738410543, - 45.4819799937337 - ] - } - }, - { - "id": "2469", - "code": "32469", - "data": { - "gtfs": { - "stop_id": "2469", - "stop_code": "32469", - "stop_name": "Campbell et Lawrence", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Campbell et Lawrence", - "geography": { - "type": "Point", - "coordinates": [ - -73.4704212260477, - 45.4818082314751 - ] - } - }, - { - "id": "4163", - "code": "34163", - "data": { - "gtfs": { - "stop_id": "4163", - "stop_code": "34163", - "stop_name": "Lawrence et tsse Board", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lawrence et tsse Board", - "geography": { - "type": "Point", - "coordinates": [ - -73.4703283062496, - 45.4821187767507 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8409186390714 - }, - "name": "Campbell et tsse Plante", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.470651074, - 45.481963504 - ] - }, - "is_frozen": false, - "integer_id": 376, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494433, - 45.490069 - ] - }, - "id": 377, - "properties": { - "id": "8cbd7f4c-e67a-444b-a8dc-a2d596b202fe", - "code": "31612", - "data": { - "stops": [ - { - "id": "1612", - "code": "31612", - "data": { - "gtfs": { - "stop_id": "1612", - "stop_code": "31612", - "stop_name": "av. Alexandra et Clack", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et Clack", - "geography": { - "type": "Point", - "coordinates": [ - -73.4942014527172, - 45.4900023196922 - ] - } - }, - { - "id": "1623", - "code": "31623", - "data": { - "gtfs": { - "stop_id": "1623", - "stop_code": "31623", - "stop_name": "av. Alexandra et Clack", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et Clack", - "geography": { - "type": "Point", - "coordinates": [ - -73.4946638558216, - 45.4901361590902 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9777473115711 - }, - "name": "av. Alexandra et Clack", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494432654, - 45.490069239 - ] - }, - "is_frozen": false, - "integer_id": 377, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.504689, - 45.490304 - ] - }, - "id": 378, - "properties": { - "id": "51191948-9067-4256-853f-d80a1333a164", - "code": "31613", - "data": { - "stops": [ - { - "id": "1613", - "code": "31613", - "data": { - "gtfs": { - "stop_id": "1613", - "stop_code": "31613", - "stop_name": "av. Alexandra et av. Casgrain", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et av. Casgrain", - "geography": { - "type": "Point", - "coordinates": [ - -73.5051249969795, - 45.4902367462407 - ] - } - }, - { - "id": "1619", - "code": "31619", - "data": { - "gtfs": { - "stop_id": "1619", - "stop_code": "31619", - "stop_name": "av. Alexandra et boul. Queen", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et boul. Queen", - "geography": { - "type": "Point", - "coordinates": [ - -73.5042535046299, - 45.4903704980896 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9817046773575 - }, - "name": "av. Alexandra et av. Casgrain", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.504689251, - 45.490303622 - ] - }, - "is_frozen": false, - "integer_id": 378, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.507032, - 45.490204 - ] - }, - "id": 379, - "properties": { - "id": "602dc8fb-62ff-45ed-888f-4b4172318b5d", - "code": "31614", - "data": { - "stops": [ - { - "id": "1614", - "code": "31614", - "data": { - "gtfs": { - "stop_id": "1614", - "stop_code": "31614", - "stop_name": "av. Alexandra et civique 230", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et civique 230", - "geography": { - "type": "Point", - "coordinates": [ - -73.5070249172839, - 45.4902575468003 - ] - } - }, - { - "id": "1618", - "code": "31618", - "data": { - "gtfs": { - "stop_id": "1618", - "stop_code": "31618", - "stop_name": "av. Alexandra et civique 223", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et civique 223", - "geography": { - "type": "Point", - "coordinates": [ - -73.507039929981, - 45.4901495437728 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9800149528617 - }, - "name": "av. Alexandra et civique 230", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507032424, - 45.490203545 - ] - }, - "is_frozen": false, - "integer_id": 379, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.509584, - 45.490228 - ] - }, - "id": 380, - "properties": { - "id": "5224c05b-57d6-4d5c-87fd-b9e78147c66e", - "code": "31615", - "data": { - "stops": [ - { - "id": "1615", - "code": "31615", - "data": { - "gtfs": { - "stop_id": "1615", - "stop_code": "31615", - "stop_name": "av. Alexandra et Osborne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et Osborne", - "geography": { - "type": "Point", - "coordinates": [ - -73.5094905040803, - 45.49030686004 - ] - } - }, - { - "id": "1617", - "code": "31617", - "data": { - "gtfs": { - "stop_id": "1617", - "stop_code": "31617", - "stop_name": "av. Alexandra et Osborne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et Osborne", - "geography": { - "type": "Point", - "coordinates": [ - -73.5096771840879, - 45.4901493714933 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9804298147983 - }, - "name": "av. Alexandra et Osborne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.509583844, - 45.490228116 - ] - }, - "is_frozen": false, - "integer_id": 380, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.5009, - 45.490924 - ] - }, - "id": 381, - "properties": { - "id": "d67aee3e-be1e-429b-b464-c7a6549e761a", - "code": "31620", - "data": { - "stops": [ - { - "id": "1620", - "code": "31620", - "data": { - "gtfs": { - "stop_id": "1620", - "stop_code": "31620", - "stop_name": "av. Alexandra et d'Arran", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et d'Arran", - "geography": { - "type": "Point", - "coordinates": [ - -73.5010287002794, - 45.4908516558786 - ] - } - }, - { - "id": "3407", - "code": "33407", - "data": { - "gtfs": { - "stop_id": "3407", - "stop_code": "33407", - "stop_name": "av. Alexandra et d'Arran", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et d'Arran", - "geography": { - "type": "Point", - "coordinates": [ - -73.500770427546, - 45.4909956331034 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9921734786598 - }, - "name": "av. Alexandra et d'Arran", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.500899564, - 45.490923644 - ] - }, - "is_frozen": false, - "integer_id": 381, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.498736, - 45.490879 - ] - }, - "id": 382, - "properties": { - "id": "1fa03421-8026-43d9-b21a-b3e57dfa43c2", - "code": "31621", - "data": { - "stops": [ - { - "id": "1621", - "code": "31621", - "data": { - "gtfs": { - "stop_id": "1621", - "stop_code": "31621", - "stop_name": "av. Alexandra et boul. Houde", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et boul. Houde", - "geography": { - "type": "Point", - "coordinates": [ - -73.4985035736132, - 45.4908179803103 - ] - } - }, - { - "id": "3406", - "code": "33406", - "data": { - "gtfs": { - "stop_id": "3406", - "stop_code": "33406", - "stop_name": "av. Alexandra et de Rutledge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et de Rutledge", - "geography": { - "type": "Point", - "coordinates": [ - -73.4989691308364, - 45.4909402194986 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9914213612316 - }, - "name": "av. Alexandra et boul. Houde", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.498736352, - 45.4908791 - ] - }, - "is_frozen": false, - "integer_id": 382, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.495916, - 45.490842 - ] - }, - "id": 383, - "properties": { - "id": "1fc11ea4-4e32-4f30-8519-34208d0f8931", - "code": "31622", - "data": { - "stops": [ - { - "id": "1622", - "code": "31622", - "data": { - "gtfs": { - "stop_id": "1622", - "stop_code": "31622", - "stop_name": "av. Alexandra et av. Wickham", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et av. Wickham", - "geography": { - "type": "Point", - "coordinates": [ - -73.496027930553, - 45.4907931015287 - ] - } - }, - { - "id": "3405", - "code": "33405", - "data": { - "gtfs": { - "stop_id": "3405", - "stop_code": "33405", - "stop_name": "av. Alexandra et av. Wickham", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et av. Wickham", - "geography": { - "type": "Point", - "coordinates": [ - -73.4958048356609, - 45.4908900293512 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9907875908776 - }, - "name": "av. Alexandra et av. Wickham", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.495916383, - 45.490841565 - ] - }, - "is_frozen": false, - "integer_id": 383, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.512201, - 45.518457 - ] - }, - "id": 384, - "properties": { - "id": "608948b3-8ac4-493b-a2b3-48bd266c12ab", - "code": "31624", - "data": { - "stops": [ - { - "id": "1624", - "code": "31624", - "data": { - "gtfs": { - "stop_id": "1624", - "stop_code": "31624", - "stop_name": "boul. La Fayette et Goupil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et Goupil", - "geography": { - "type": "Point", - "coordinates": [ - -73.5124112354269, - 45.5184086712457 - ] - } - }, - { - "id": "1688", - "code": "31688", - "data": { - "gtfs": { - "stop_id": "1688", - "stop_code": "31688", - "stop_name": "boul. La Fayette et Goupil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et Goupil", - "geography": { - "type": "Point", - "coordinates": [ - -73.5119910689953, - 45.5185045635436 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4574005830211 - }, - "name": "boul. La Fayette et Goupil", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.512201152, - 45.518456617 - ] - }, - "is_frozen": false, - "integer_id": 384, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.507278, - 45.516754 - ] - }, - "id": 385, - "properties": { - "id": "aaca7ee9-974a-47d8-922b-2905590b6265", - "code": "31626", - "data": { - "stops": [ - { - "id": "1626", - "code": "31626", - "data": { - "gtfs": { - "stop_id": "1626", - "stop_code": "31626", - "stop_name": "boul. La Fayette et Logan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et Logan", - "geography": { - "type": "Point", - "coordinates": [ - -73.506926450541, - 45.5166459236653 - ] - } - }, - { - "id": "1943", - "code": "31943", - "data": { - "gtfs": { - "stop_id": "1943", - "stop_code": "31943", - "stop_name": "boul. La Fayette et civique 948", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et civique 948", - "geography": { - "type": "Point", - "coordinates": [ - -73.5076302126532, - 45.5168613646146 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4286057150542 - }, - "name": "boul. La Fayette et Logan", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507278332, - 45.516753644 - ] - }, - "is_frozen": false, - "integer_id": 385, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.505353, - 45.51613 - ] - }, - "id": 386, - "properties": { - "id": "37e8736b-c9d0-4a33-a437-1f0196c113f1", - "code": "31627", - "data": { - "stops": [ - { - "id": "1627", - "code": "31627", - "data": { - "gtfs": { - "stop_id": "1627", - "stop_code": "31627", - "stop_name": "boul. La Fayette et Franquelin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et Franquelin", - "geography": { - "type": "Point", - "coordinates": [ - -73.5053529883313, - 45.5161298954804 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4180596469054 - }, - "name": "boul. La Fayette et Franquelin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.505352988, - 45.516129895 - ] - }, - "is_frozen": false, - "integer_id": 386, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.503627, - 45.515782 - ] - }, - "id": 387, - "properties": { - "id": "9e3f5b7f-c832-420a-b6d0-a87946ebafd2", - "code": "31628", - "data": { - "stops": [ - { - "id": "1628", - "code": "31628", - "data": { - "gtfs": { - "stop_id": "1628", - "stop_code": "31628", - "stop_name": "boul. La Fayette et Beauchamp", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et Beauchamp", - "geography": { - "type": "Point", - "coordinates": [ - -73.5039219627571, - 45.5156754222949 - ] - } - }, - { - "id": "3556", - "code": "33556", - "data": { - "gtfs": { - "stop_id": "3556", - "stop_code": "33556", - "stop_name": "boul. La Fayette et Beauchamp", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et Beauchamp", - "geography": { - "type": "Point", - "coordinates": [ - -73.5033325327246, - 45.515888090539 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4121736196306 - }, - "name": "boul. La Fayette et Beauchamp", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.503627248, - 45.515781756 - ] - }, - "is_frozen": false, - "integer_id": 387, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.501281, - 45.515089 - ] - }, - "id": 388, - "properties": { - "id": "4070ca4c-584b-43bd-a874-a91871fdf63a", - "code": "31629", - "data": { - "stops": [ - { - "id": "1629", - "code": "31629", - "data": { - "gtfs": { - "stop_id": "1629", - "stop_code": "31629", - "stop_name": "boul. La Fayette et Green", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et Green", - "geography": { - "type": "Point", - "coordinates": [ - -73.5015088748119, - 45.5150122274932 - ] - } - }, - { - "id": "1684", - "code": "31684", - "data": { - "gtfs": { - "stop_id": "1684", - "stop_code": "31684", - "stop_name": "boul. La Fayette et Green", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et Green", - "geography": { - "type": "Point", - "coordinates": [ - -73.5010530881189, - 45.5151659623611 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4004630391893 - }, - "name": "boul. La Fayette et Green", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.501280981, - 45.515089095 - ] - }, - "is_frozen": false, - "integer_id": 388, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.495279, - 45.514111 - ] - }, - "id": 389, - "properties": { - "id": "2c0958f9-14bd-4467-9157-d96db49f68da", - "code": "31631", - "data": { - "stops": [ - { - "id": "1631", - "code": "31631", - "data": { - "gtfs": { - "stop_id": "1631", - "stop_code": "31631", - "stop_name": "Front et La Salle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Front et La Salle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4952287568018, - 45.5140180220413 - ] - } - }, - { - "id": "1682", - "code": "31682", - "data": { - "gtfs": { - "stop_id": "1682", - "stop_code": "31682", - "stop_name": "La Salle et Front", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Salle et Front", - "geography": { - "type": "Point", - "coordinates": [ - -73.4950807772364, - 45.5142045420628 - ] - } - }, - { - "id": "3087", - "code": "33087", - "data": { - "gtfs": { - "stop_id": "3087", - "stop_code": "33087", - "stop_name": "La Salle et Front", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Salle et Front", - "geography": { - "type": "Point", - "coordinates": [ - -73.4954767719655, - 45.5141560227912 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3839322197152 - }, - "name": "Front et La Salle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.495278775, - 45.514111282 - ] - }, - "is_frozen": false, - "integer_id": 389, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491921, - 45.513121 - ] - }, - "id": 390, - "properties": { - "id": "d76fa63a-1787-4749-9166-b1ecce1f4af2", - "code": "31632", - "data": { - "stops": [ - { - "id": "1632", - "code": "31632", - "data": { - "gtfs": { - "stop_id": "1632", - "stop_code": "31632", - "stop_name": "La Salle et ECOLE SECONDAIRE GERARD-FILION", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Salle et ECOLE SECONDAIRE GERARD-FILION", - "geography": { - "type": "Point", - "coordinates": [ - -73.4915947053, - 45.512903984293 - ] - } - }, - { - "id": "1681", - "code": "31681", - "data": { - "gtfs": { - "stop_id": "1681", - "stop_code": "31681", - "stop_name": "La Salle et boul. Curé-Poirier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Salle et boul. Curé-Poirier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.492017506377, - 45.5132244310606 - ] - } - }, - { - "id": "3117", - "code": "33117", - "data": { - "gtfs": { - "stop_id": "3117", - "stop_code": "33117", - "stop_name": "boul. Curé-Poirier ouest et La Salle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et La Salle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4922465237645, - 45.5133385845183 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3671962692248 - }, - "name": "La Salle et ECOLE SECONDAIRE GERARD-FILION", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491920615, - 45.513121284 - ] - }, - "is_frozen": false, - "integer_id": 390, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.489402, - 45.512257 - ] - }, - "id": 391, - "properties": { - "id": "229965c6-9bf9-414c-9970-4f7b1b31441b", - "code": "31633", - "data": { - "stops": [ - { - "id": "1633", - "code": "31633", - "data": { - "gtfs": { - "stop_id": "1633", - "stop_code": "31633", - "stop_name": "La Salle et Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Salle et Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.489290031949, - 45.5121648955948 - ] - } - }, - { - "id": "1680", - "code": "31680", - "data": { - "gtfs": { - "stop_id": "1680", - "stop_code": "31680", - "stop_name": "La Salle et Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Salle et Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4889365471068, - 45.5122353518962 - ] - } - }, - { - "id": "3479", - "code": "33479", - "data": { - "gtfs": { - "stop_id": "3479", - "stop_code": "33479", - "stop_name": "La Salle et ECOLE SECONDAIRE GERARD-FILION", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Salle et ECOLE SECONDAIRE GERARD-FILION", - "geography": { - "type": "Point", - "coordinates": [ - -73.4898674587144, - 45.5123484664615 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3525808395509 - }, - "name": "La Salle et Hubert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.489402003, - 45.512256681 - ] - }, - "is_frozen": false, - "integer_id": 391, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486247, - 45.511048 - ] - }, - "id": 392, - "properties": { - "id": "6ab67241-b06e-417b-b6fb-88a16df29924", - "code": "31634", - "data": { - "stops": [ - { - "id": "1634", - "code": "31634", - "data": { - "gtfs": { - "stop_id": "1634", - "stop_code": "31634", - "stop_name": "La Salle et Beauregard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Salle et Beauregard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4863136995063, - 45.5112367915311 - ] - } - }, - { - "id": "3996", - "code": "33996", - "data": { - "gtfs": { - "stop_id": "3996", - "stop_code": "33996", - "stop_name": "Beauregard et La Salle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauregard et La Salle", - "geography": { - "type": "Point", - "coordinates": [ - -73.486180208591, - 45.5108588419203 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3321470660667 - }, - "name": "La Salle et Beauregard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486246954, - 45.511047817 - ] - }, - "is_frozen": false, - "integer_id": 392, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486944, - 45.509904 - ] - }, - "id": 393, - "properties": { - "id": "808ef7d7-1aa0-4a40-a96d-0615a6e712b5", - "code": "31635", - "data": { - "stops": [ - { - "id": "1635", - "code": "31635", - "data": { - "gtfs": { - "stop_id": "1635", - "stop_code": "31635", - "stop_name": "Beauregard et civique 1280", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauregard et civique 1280", - "geography": { - "type": "Point", - "coordinates": [ - -73.4869315398967, - 45.5100879260518 - ] - } - }, - { - "id": "3995", - "code": "33995", - "data": { - "gtfs": { - "stop_id": "3995", - "stop_code": "33995", - "stop_name": "Beauregard et civique 1300", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauregard et civique 1300", - "geography": { - "type": "Point", - "coordinates": [ - -73.4869555700782, - 45.5097206331148 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3128187311786 - }, - "name": "Beauregard et civique 1280", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486943555, - 45.50990428 - ] - }, - "is_frozen": false, - "integer_id": 393, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.487736, - 45.508574 - ] - }, - "id": 394, - "properties": { - "id": "0f8d4bf1-fdee-4df3-8471-0b6ede606755", - "code": "31636", - "data": { - "stops": [ - { - "id": "1636", - "code": "31636", - "data": { - "gtfs": { - "stop_id": "1636", - "stop_code": "31636", - "stop_name": "Beauregard et Séguin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauregard et Séguin", - "geography": { - "type": "Point", - "coordinates": [ - -73.48789409967, - 45.5086461270543 - ] - } - }, - { - "id": "1677", - "code": "31677", - "data": { - "gtfs": { - "stop_id": "1677", - "stop_code": "31677", - "stop_name": "Séguin et Beauregard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Séguin et Beauregard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4875785435675, - 45.5085014165558 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2903316333071 - }, - "name": "Beauregard et Séguin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.487736322, - 45.508573772 - ] - }, - "is_frozen": false, - "integer_id": 394, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486329, - 45.508012 - ] - }, - "id": 395, - "properties": { - "id": "ec8cd08f-9336-4f9e-945b-09c8eb5b3620", - "code": "31637", - "data": { - "stops": [ - { - "id": "1637", - "code": "31637", - "data": { - "gtfs": { - "stop_id": "1637", - "stop_code": "31637", - "stop_name": "Séguin et Conefroy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Séguin et Conefroy", - "geography": { - "type": "Point", - "coordinates": [ - -73.48615103032, - 45.5078711936904 - ] - } - }, - { - "id": "1676", - "code": "31676", - "data": { - "gtfs": { - "stop_id": "1676", - "stop_code": "31676", - "stop_name": "Séguin et Conefroy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Séguin et Conefroy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4865076129095, - 45.5081532451228 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2808412221399 - }, - "name": "Séguin et Conefroy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486329322, - 45.508012219 - ] - }, - "is_frozen": false, - "integer_id": 395, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.484847, - 45.507557 - ] - }, - "id": 396, - "properties": { - "id": "2e045adb-bebd-4da6-b99a-63531ab62f07", - "code": "31638", - "data": { - "stops": [ - { - "id": "1638", - "code": "31638", - "data": { - "gtfs": { - "stop_id": "1638", - "stop_code": "31638", - "stop_name": "Séguin et boul. Nobert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Séguin et boul. Nobert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4849493224535, - 45.5074669108069 - ] - } - }, - { - "id": "1675", - "code": "31675", - "data": { - "gtfs": { - "stop_id": "1675", - "stop_code": "31675", - "stop_name": "boul. Nobert et Séguin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Séguin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4847437143165, - 45.5076470670565 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2731479070383 - }, - "name": "Séguin et boul. Nobert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.484846518, - 45.507556989 - ] - }, - "is_frozen": false, - "integer_id": 396, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483764, - 45.508955 - ] - }, - "id": 397, - "properties": { - "id": "79a61958-f84e-477b-8bcf-aa304101e537", - "code": "31639", - "data": { - "stops": [ - { - "id": "1639", - "code": "31639", - "data": { - "gtfs": { - "stop_id": "1639", - "stop_code": "31639", - "stop_name": "boul. Nobert et civique 1341", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et civique 1341", - "geography": { - "type": "Point", - "coordinates": [ - -73.4837627341849, - 45.5087670617095 - ] - } - }, - { - "id": "1674", - "code": "31674", - "data": { - "gtfs": { - "stop_id": "1674", - "stop_code": "31674", - "stop_name": "boul. Nobert et civique 1321", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et civique 1321", - "geography": { - "type": "Point", - "coordinates": [ - -73.4837647467511, - 45.5091428639478 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2967740334974 - }, - "name": "boul. Nobert et civique 1341", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48376374, - 45.508954963 - ] - }, - "is_frozen": false, - "integer_id": 397, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482918, - 45.510226 - ] - }, - "id": 398, - "properties": { - "id": "5ab29327-5bbe-43e2-9d7f-42e3ca97dbcb", - "code": "31640", - "data": { - "stops": [ - { - "id": "1640", - "code": "31640", - "data": { - "gtfs": { - "stop_id": "1640", - "stop_code": "31640", - "stop_name": "boul. Nobert et La Salle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et La Salle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4828884679474, - 45.5101025291027 - ] - } - }, - { - "id": "1673", - "code": "31673", - "data": { - "gtfs": { - "stop_id": "1673", - "stop_code": "31673", - "stop_name": "boul. Nobert et La Salle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et La Salle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4829479852652, - 45.5103499945224 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3182608299077 - }, - "name": "boul. Nobert et La Salle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482918227, - 45.510226262 - ] - }, - "is_frozen": false, - "integer_id": 398, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479888, - 45.51478 - ] - }, - "id": 399, - "properties": { - "id": "d3bdcdd3-55f8-4e08-a7fc-b8e6dbef8ce7", - "code": "31643", - "data": { - "stops": [ - { - "id": "1643", - "code": "31643", - "data": { - "gtfs": { - "stop_id": "1643", - "stop_code": "31643", - "stop_name": "boul. Nobert et Marquette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Marquette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4798592792928, - 45.5146597326226 - ] - } - }, - { - "id": "3974", - "code": "33974", - "data": { - "gtfs": { - "stop_id": "3974", - "stop_code": "33974", - "stop_name": "boul. Nobert et Marquette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Marquette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4799176705855, - 45.5149004855096 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.395239257369 - }, - "name": "boul. Nobert et Marquette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479888475, - 45.514780109 - ] - }, - "is_frozen": false, - "integer_id": 399, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47946, - 45.516151 - ] - }, - "id": 400, - "properties": { - "id": "6519add4-6360-4c95-9945-0c2d867f68d6", - "code": "31644", - "data": { - "stops": [ - { - "id": "1644", - "code": "31644", - "data": { - "gtfs": { - "stop_id": "1644", - "stop_code": "31644", - "stop_name": "boul. Nobert et Westgate", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Westgate", - "geography": { - "type": "Point", - "coordinates": [ - -73.4794194158349, - 45.516029737853 - ] - } - }, - { - "id": "1670", - "code": "31670", - "data": { - "gtfs": { - "stop_id": "1670", - "stop_code": "31670", - "stop_name": "boul. Nobert et Westgate", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Westgate", - "geography": { - "type": "Point", - "coordinates": [ - -73.4795001025716, - 45.5162730090656 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4184227815288 - }, - "name": "boul. Nobert et Westgate", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479459759, - 45.516151373 - ] - }, - "is_frozen": false, - "integer_id": 400, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478732, - 45.517343 - ] - }, - "id": 401, - "properties": { - "id": "40cc5489-ce8f-4df1-916b-c682450d39d7", - "code": "31645", - "data": { - "stops": [ - { - "id": "1645", - "code": "31645", - "data": { - "gtfs": { - "stop_id": "1645", - "stop_code": "31645", - "stop_name": "boul. Nobert et Joliette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Joliette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4786531890739, - 45.5171000578541 - ] - } - }, - { - "id": "1669", - "code": "31669", - "data": { - "gtfs": { - "stop_id": "1669", - "stop_code": "31669", - "stop_name": "boul. Nobert et Joliette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Joliette", - "geography": { - "type": "Point", - "coordinates": [ - -73.478551323615, - 45.5175852356124 - ] - } - }, - { - "id": "3135", - "code": "33135", - "data": { - "gtfs": { - "stop_id": "3135", - "stop_code": "33135", - "stop_name": "Joliette et boul. Nobert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et boul. Nobert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4789124988991, - 45.5172374109242 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4385646315704 - }, - "name": "boul. Nobert et Joliette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.478731911, - 45.517342647 - ] - }, - "is_frozen": false, - "integer_id": 401, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.477469, - 45.518666 - ] - }, - "id": 402, - "properties": { - "id": "1c0d8cac-22e9-4882-b333-7ae0ae626f9d", - "code": "31646", - "data": { - "stops": [ - { - "id": "1646", - "code": "31646", - "data": { - "gtfs": { - "stop_id": "1646", - "stop_code": "31646", - "stop_name": "boul. Nobert et Jean-Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Jean-Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4776014652592, - 45.5185871176583 - ] - } - }, - { - "id": "1668", - "code": "31668", - "data": { - "gtfs": { - "stop_id": "1668", - "stop_code": "31668", - "stop_name": "boul. Nobert et Jean-Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Jean-Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4776560522989, - 45.5188268638675 - ] - } - }, - { - "id": "3136", - "code": "33136", - "data": { - "gtfs": { - "stop_id": "3136", - "stop_code": "33136", - "stop_name": "Jean-Béliveau et Julien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jean-Béliveau et Julien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4772817022449, - 45.5185055370546 - ] - } - }, - { - "id": "3178", - "code": "33178", - "data": { - "gtfs": { - "stop_id": "3178", - "stop_code": "33178", - "stop_name": "Jean-Béliveau et boul. Nobert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jean-Béliveau et boul. Nobert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4773579852237, - 45.5186753089227 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.460944514053 - }, - "name": "boul. Nobert et Jean-Béliveau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.477468877, - 45.5186662 - ] - }, - "is_frozen": false, - "integer_id": 402, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.476829, - 45.519818 - ] - }, - "id": 403, - "properties": { - "id": "242c7269-ce0d-45c7-8356-927308e89900", - "code": "31647", - "data": { - "stops": [ - { - "id": "1647", - "code": "31647", - "data": { - "gtfs": { - "stop_id": "1647", - "stop_code": "31647", - "stop_name": "boul. Nobert et Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4768236972731, - 45.5196708410634 - ] - } - }, - { - "id": "1667", - "code": "31667", - "data": { - "gtfs": { - "stop_id": "1667", - "stop_code": "31667", - "stop_name": "boul. Nobert et Charlevoix", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Charlevoix", - "geography": { - "type": "Point", - "coordinates": [ - -73.4768347713101, - 45.5199660134479 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4804287256052 - }, - "name": "boul. Nobert et Montarville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.476829234, - 45.519818427 - ] - }, - "is_frozen": false, - "integer_id": 403, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.476083, - 45.520829 - ] - }, - "id": 404, - "properties": { - "id": "bad427d3-2698-4efd-8d52-2bc92f049d64", - "code": "31648", - "data": { - "stops": [ - { - "id": "1648", - "code": "31648", - "data": { - "gtfs": { - "stop_id": "1648", - "stop_code": "31648", - "stop_name": "boul. Nobert et de Boulogne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et de Boulogne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4760527394864, - 45.5207015553059 - ] - } - }, - { - "id": "1666", - "code": "31666", - "data": { - "gtfs": { - "stop_id": "1666", - "stop_code": "31666", - "stop_name": "boul. Nobert et de Boulogne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et de Boulogne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4761140112226, - 45.5209572928245 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4975257056053 - }, - "name": "boul. Nobert et de Boulogne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.476083375, - 45.520829424 - ] - }, - "is_frozen": false, - "integer_id": 404, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474937, - 45.52241 - ] - }, - "id": 405, - "properties": { - "id": "dc7c4109-aa5f-4e24-ab1e-8fc1d6309025", - "code": "31649", - "data": { - "stops": [ - { - "id": "1649", - "code": "31649", - "data": { - "gtfs": { - "stop_id": "1649", - "stop_code": "31649", - "stop_name": "boul. Nobert et McGill", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et McGill", - "geography": { - "type": "Point", - "coordinates": [ - -73.4748848617284, - 45.5223007307033 - ] - } - }, - { - "id": "1665", - "code": "31665", - "data": { - "gtfs": { - "stop_id": "1665", - "stop_code": "31665", - "stop_name": "boul. Nobert et McGill", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et McGill", - "geography": { - "type": "Point", - "coordinates": [ - -73.474989707007, - 45.522518877613 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5242533514953 - }, - "name": "boul. Nobert et McGill", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474937284, - 45.522409804 - ] - }, - "is_frozen": false, - "integer_id": 405, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474025, - 45.523766 - ] - }, - "id": 406, - "properties": { - "id": "75f82802-187b-4386-b435-5da7ab066898", - "code": "31650", - "data": { - "stops": [ - { - "id": "1650", - "code": "31650", - "data": { - "gtfs": { - "stop_id": "1650", - "stop_code": "31650", - "stop_name": "boul. Nobert et de Chatham", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et de Chatham", - "geography": { - "type": "Point", - "coordinates": [ - -73.473771424944, - 45.5238380278455 - ] - } - }, - { - "id": "1664", - "code": "31664", - "data": { - "gtfs": { - "stop_id": "1664", - "stop_code": "31664", - "stop_name": "boul. Nobert et Brébeuf", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Brébeuf", - "geography": { - "type": "Point", - "coordinates": [ - -73.4740307355709, - 45.5238425781907 - ] - } - }, - { - "id": "3036", - "code": "33036", - "data": { - "gtfs": { - "stop_id": "3036", - "stop_code": "33036", - "stop_name": "Brébeuf et boul. Nobert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brébeuf et boul. Nobert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4742780657747, - 45.5236892852598 - ] - } - }, - { - "id": "3084", - "code": "33084", - "data": { - "gtfs": { - "stop_id": "3084", - "stop_code": "33084", - "stop_name": "Brébeuf et boul. Nobert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brébeuf et boul. Nobert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4738065954767, - 45.5237242178855 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5471901850326 - }, - "name": "boul. Nobert et de Chatham", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474024745, - 45.523765932 - ] - }, - "is_frozen": false, - "integer_id": 406, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.472815, - 45.525202 - ] - }, - "id": 407, - "properties": { - "id": "471a40a2-ebb0-4658-a772-8036d064636d", - "code": "31651", - "data": { - "stops": [ - { - "id": "1651", - "code": "31651", - "data": { - "gtfs": { - "stop_id": "1651", - "stop_code": "31651", - "stop_name": "boul. Nobert et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4728154005743, - 45.5252017263557 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5714762334402 - }, - "name": "boul. Nobert et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472815401, - 45.525201726 - ] - }, - "is_frozen": false, - "integer_id": 407, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.473654, - 45.528601 - ] - }, - "id": 408, - "properties": { - "id": "e709ab81-b01c-47b3-a19c-63757b8320b0", - "code": "31652", - "data": { - "stops": [ - { - "id": "1652", - "code": "31652", - "data": { - "gtfs": { - "stop_id": "1652", - "stop_code": "31652", - "stop_name": "King-George et Gamache", - "location_type": 0, - "parent_station": "" - } - }, - "name": "King-George et Gamache", - "geography": { - "type": "Point", - "coordinates": [ - -73.4735456046833, - 45.5284799888281 - ] - } - }, - { - "id": "1661", - "code": "31661", - "data": { - "gtfs": { - "stop_id": "1661", - "stop_code": "31661", - "stop_name": "King-George et Gamache", - "location_type": 0, - "parent_station": "" - } - }, - "name": "King-George et Gamache", - "geography": { - "type": "Point", - "coordinates": [ - -73.4736615123115, - 45.528722972137 - ] - } - }, - { - "id": "5854", - "code": "30623", - "data": { - "gtfs": { - "stop_id": "5854", - "stop_code": "30623", - "stop_name": "Gamache et King-George", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gamache et King-George", - "geography": { - "type": "Point", - "coordinates": [ - -73.4737627040307, - 45.5285264696907 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6289894346135 - }, - "name": "King-George et Gamache", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.473654154, - 45.52860148 - ] - }, - "is_frozen": false, - "integer_id": 408, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.472466, - 45.530734 - ] - }, - "id": 409, - "properties": { - "id": "eba98b16-12e9-4172-bbf2-62d1e69950a5", - "code": "31653", - "data": { - "stops": [ - { - "id": "1653", - "code": "31653", - "data": { - "gtfs": { - "stop_id": "1653", - "stop_code": "31653", - "stop_name": "King-George et Lavallée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "King-George et Lavallée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4724269818449, - 45.5306198793834 - ] - } - }, - { - "id": "3792", - "code": "33792", - "data": { - "gtfs": { - "stop_id": "3792", - "stop_code": "33792", - "stop_name": "King-George et Lavallée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "King-George et Lavallée", - "geography": { - "type": "Point", - "coordinates": [ - -73.472505113707, - 45.5308481197924 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6650702595354 - }, - "name": "King-George et Lavallée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472466048, - 45.530734 - ] - }, - "is_frozen": false, - "integer_id": 409, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.471314, - 45.532856 - ] - }, - "id": 410, - "properties": { - "id": "c2c8c1e8-4373-4b59-91c6-b04f7c4c1d76", - "code": "31654", - "data": { - "stops": [ - { - "id": "1654", - "code": "31654", - "data": { - "gtfs": { - "stop_id": "1654", - "stop_code": "31654", - "stop_name": "King-George et Laurier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "King-George et Laurier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4712765063298, - 45.5327401768922 - ] - } - }, - { - "id": "1659", - "code": "31659", - "data": { - "gtfs": { - "stop_id": "1659", - "stop_code": "31659", - "stop_name": "King-George et Laurier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "King-George et Laurier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4713507209676, - 45.532971414382 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7009736654827 - }, - "name": "King-George et Laurier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.471313614, - 45.532855796 - ] - }, - "is_frozen": false, - "integer_id": 410, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.470141, - 45.53497 - ] - }, - "id": 411, - "properties": { - "id": "523fb848-4048-4ab2-8e1c-32aab05ea63f", - "code": "31655", - "data": { - "stops": [ - { - "id": "1655", - "code": "31655", - "data": { - "gtfs": { - "stop_id": "1655", - "stop_code": "31655", - "stop_name": "King-George et Bellerose", - "location_type": 0, - "parent_station": "" - } - }, - "name": "King-George et Bellerose", - "geography": { - "type": "Point", - "coordinates": [ - -73.4700787963265, - 45.5348544891354 - ] - } - }, - { - "id": "5498", - "code": "30245", - "data": { - "gtfs": { - "stop_id": "5498", - "stop_code": "30245", - "stop_name": "King-George et Bellerose", - "location_type": 0, - "parent_station": "" - } - }, - "name": "King-George et Bellerose", - "geography": { - "type": "Point", - "coordinates": [ - -73.4702030087705, - 45.5350862136846 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7367585386579 - }, - "name": "King-George et Bellerose", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.470140903, - 45.534970351 - ] - }, - "is_frozen": false, - "integer_id": 411, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474577, - 45.526984 - ] - }, - "id": 412, - "properties": { - "id": "98c75cb8-58bc-4128-adc4-4f1198e685a1", - "code": "31662", - "data": { - "stops": [ - { - "id": "1662", - "code": "31662", - "data": { - "gtfs": { - "stop_id": "1662", - "stop_code": "31662", - "stop_name": "King-George et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "King-George et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4745768129938, - 45.5269838499145 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6016229111515 - }, - "name": "King-George et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474576813, - 45.52698385 - ] - }, - "is_frozen": false, - "integer_id": 412, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.480743, - 45.513525 - ] - }, - "id": 413, - "properties": { - "id": "65d27cdb-34eb-4bce-af66-d925b6cbeb28", - "code": "31671", - "data": { - "stops": [ - { - "id": "1671", - "code": "31671", - "data": { - "gtfs": { - "stop_id": "1671", - "stop_code": "31671", - "stop_name": "boul. Nobert et Saint-Georges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Saint-Georges", - "geography": { - "type": "Point", - "coordinates": [ - -73.4807478088105, - 45.5136957832984 - ] - } - }, - { - "id": "3791", - "code": "33791", - "data": { - "gtfs": { - "stop_id": "3791", - "stop_code": "33791", - "stop_name": "boul. Nobert et Saint-Georges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Saint-Georges", - "geography": { - "type": "Point", - "coordinates": [ - -73.48073806854, - 45.5133551143123 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3740285871207 - }, - "name": "boul. Nobert et Saint-Georges", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.480742939, - 45.513525449 - ] - }, - "is_frozen": false, - "integer_id": 413, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.495817, - 45.513407 - ] - }, - "id": 414, - "properties": { - "id": "4a0c512f-2ce4-41cc-a200-cf81d75487c1", - "code": "31683", - "data": { - "stops": [ - { - "id": "1683", - "code": "31683", - "data": { - "gtfs": { - "stop_id": "1683", - "stop_code": "31683", - "stop_name": "Front et boul. La Fayette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Front et boul. La Fayette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4957965432976, - 45.5135292199416 - ] - } - }, - { - "id": "3118", - "code": "33118", - "data": { - "gtfs": { - "stop_id": "3118", - "stop_code": "33118", - "stop_name": "boul. La Fayette et Front", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et Front", - "geography": { - "type": "Point", - "coordinates": [ - -73.4955833459722, - 45.5134200890338 - ] - } - }, - { - "id": "4520", - "code": "34520", - "data": { - "gtfs": { - "stop_id": "4520", - "stop_code": "34520", - "stop_name": "boul. La Fayette et Front", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et Front", - "geography": { - "type": "Point", - "coordinates": [ - -73.4960502390975, - 45.5132838980394 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3720187634634 - }, - "name": "Front et boul. La Fayette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.495816793, - 45.513406559 - ] - }, - "is_frozen": false, - "integer_id": 414, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.505377, - 45.516371 - ] - }, - "id": 415, - "properties": { - "id": "d2f3e0fa-8998-4ca4-96de-f858c0088aad", - "code": "31685", - "data": { - "stops": [ - { - "id": "1685", - "code": "31685", - "data": { - "gtfs": { - "stop_id": "1685", - "stop_code": "31685", - "stop_name": "boul. La Fayette et Franquelin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et Franquelin", - "geography": { - "type": "Point", - "coordinates": [ - -73.5053766430245, - 45.5163707790886 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4221323643923 - }, - "name": "boul. La Fayette et Franquelin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.505376643, - 45.516370779 - ] - }, - "is_frozen": false, - "integer_id": 415, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.506988, - 45.516882 - ] - }, - "id": 416, - "properties": { - "id": "60f00f0f-eca3-4ad1-beab-4b6811c87e8c", - "code": "31686", - "data": { - "stops": [ - { - "id": "1686", - "code": "31686", - "data": { - "gtfs": { - "stop_id": "1686", - "stop_code": "31686", - "stop_name": "boul. La Fayette et civique 967", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et civique 967", - "geography": { - "type": "Point", - "coordinates": [ - -73.5069876581616, - 45.5168818186167 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4307728833526 - }, - "name": "boul. La Fayette et civique 967", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.506987658, - 45.516881819 - ] - }, - "is_frozen": false, - "integer_id": 416, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.51351, - 45.518998 - ] - }, - "id": 417, - "properties": { - "id": "9da92501-0f80-4a3e-b324-83bbfa32d05c", - "code": "31689", - "data": { - "stops": [ - { - "id": "1689", - "code": "31689", - "data": { - "gtfs": { - "stop_id": "1689", - "stop_code": "31689", - "stop_name": "boul. La Fayette et Saint-Laurent ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et Saint-Laurent ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.5135097795783, - 45.5189979421669 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.466554165281 - }, - "name": "boul. La Fayette et Saint-Laurent ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.51350978, - 45.518997942 - ] - }, - "is_frozen": false, - "integer_id": 417, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.518153, - 45.534211 - ] - }, - "id": 418, - "properties": { - "id": "72e3e510-0ae4-407e-a30d-82f52f41e278", - "code": "31693", - "data": { - "stops": [ - { - "id": "1693", - "code": "31693", - "data": { - "gtfs": { - "stop_id": "1693", - "stop_code": "31693", - "stop_name": "du Bord-de-l'Eau ouest et de Châteauguay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau ouest et de Châteauguay", - "geography": { - "type": "Point", - "coordinates": [ - -73.5180035023608, - 45.5342450991949 - ] - } - }, - { - "id": "1716", - "code": "31716", - "data": { - "gtfs": { - "stop_id": "1716", - "stop_code": "31716", - "stop_name": "du Bord-de-l'Eau ouest et de Châteauguay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau ouest et de Châteauguay", - "geography": { - "type": "Point", - "coordinates": [ - -73.5183015642948, - 45.5341775639737 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7239131084303 - }, - "name": "du Bord-de-l'Eau ouest et de Châteauguay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.518152533, - 45.534211332 - ] - }, - "is_frozen": false, - "integer_id": 418, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.516404, - 45.536259 - ] - }, - "id": 419, - "properties": { - "id": "28559490-1b1e-4bd4-83e1-408fd6a20c77", - "code": "31694", - "data": { - "stops": [ - { - "id": "1694", - "code": "31694", - "data": { - "gtfs": { - "stop_id": "1694", - "stop_code": "31694", - "stop_name": "du Bord-de-l'Eau ouest et Labonté", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau ouest et Labonté", - "geography": { - "type": "Point", - "coordinates": [ - -73.5162535930785, - 45.536284405125 - ] - } - }, - { - "id": "1715", - "code": "31715", - "data": { - "gtfs": { - "stop_id": "1715", - "stop_code": "31715", - "stop_name": "du Bord-de-l'Eau ouest et Labonté", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau ouest et Labonté", - "geography": { - "type": "Point", - "coordinates": [ - -73.5165534614982, - 45.5362335329289 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.758567934292 - }, - "name": "du Bord-de-l'Eau ouest et Labonté", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.516403527, - 45.536258969 - ] - }, - "is_frozen": false, - "integer_id": 419, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.514438, - 45.538097 - ] - }, - "id": 420, - "properties": { - "id": "dadcd93c-5469-44bf-8e3e-ccac4a5af110", - "code": "31695", - "data": { - "stops": [ - { - "id": "1695", - "code": "31695", - "data": { - "gtfs": { - "stop_id": "1695", - "stop_code": "31695", - "stop_name": "du Bord-de-l'Eau ouest et Saint-Jean", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau ouest et Saint-Jean", - "geography": { - "type": "Point", - "coordinates": [ - -73.5144926600117, - 45.5379574294684 - ] - } - }, - { - "id": "1714", - "code": "31714", - "data": { - "gtfs": { - "stop_id": "1714", - "stop_code": "31714", - "stop_name": "du Bord-de-l'Eau ouest et Saint-Jean", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau ouest et Saint-Jean", - "geography": { - "type": "Point", - "coordinates": [ - -73.5143835360026, - 45.5382368517966 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7896808966156 - }, - "name": "du Bord-de-l'Eau ouest et Saint-Jean", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.514438098, - 45.538097141 - ] - }, - "is_frozen": false, - "integer_id": 420, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.509821, - 45.541538 - ] - }, - "id": 421, - "properties": { - "id": "45ed93e4-f128-470f-b287-4d6ddc400e49", - "code": "31696", - "data": { - "stops": [ - { - "id": "1696", - "code": "31696", - "data": { - "gtfs": { - "stop_id": "1696", - "stop_code": "31696", - "stop_name": "du Bord-de-l'Eau ouest et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau ouest et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.5098064263642, - 45.5414223012068 - ] - } - }, - { - "id": "1713", - "code": "31713", - "data": { - "gtfs": { - "stop_id": "1713", - "stop_code": "31713", - "stop_name": "du Bord-de-l'Eau est et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau est et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.5098362108045, - 45.5416539175731 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8479309409876 - }, - "name": "du Bord-de-l'Eau ouest et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.509821319, - 45.541538109 - ] - }, - "is_frozen": false, - "integer_id": 421, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.507834, - 45.543524 - ] - }, - "id": 422, - "properties": { - "id": "d9324afd-9cb7-46ba-ad04-bb8387256785", - "code": "31697", - "data": { - "stops": [ - { - "id": "1697", - "code": "31697", - "data": { - "gtfs": { - "stop_id": "1697", - "stop_code": "31697", - "stop_name": "du Bord-de-l'Eau est et Saint-Étienne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau est et Saint-Étienne", - "geography": { - "type": "Point", - "coordinates": [ - -73.5077534727596, - 45.5435325762595 - ] - } - }, - { - "id": "1712", - "code": "31712", - "data": { - "gtfs": { - "stop_id": "1712", - "stop_code": "31712", - "stop_name": "du Bord-de-l'Eau est et Saint-Étienne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau est et Saint-Étienne", - "geography": { - "type": "Point", - "coordinates": [ - -73.5079138430781, - 45.5435160037691 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8815585937683 - }, - "name": "du Bord-de-l'Eau est et Saint-Étienne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507833658, - 45.54352429 - ] - }, - "is_frozen": false, - "integer_id": 422, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.505526, - 45.545998 - ] - }, - "id": 423, - "properties": { - "id": "72c849ab-069a-4dc5-92fe-9ecc63ba074d", - "code": "31698", - "data": { - "stops": [ - { - "id": "1698", - "code": "31698", - "data": { - "gtfs": { - "stop_id": "1698", - "stop_code": "31698", - "stop_name": "du Bord-de-l'Eau est et Pratt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau est et Pratt", - "geography": { - "type": "Point", - "coordinates": [ - -73.5055887250841, - 45.5458396007531 - ] - } - }, - { - "id": "3795", - "code": "33795", - "data": { - "gtfs": { - "stop_id": "3795", - "stop_code": "33795", - "stop_name": "du Bord-de-l'Eau est et Pratt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau est et Pratt", - "geography": { - "type": "Point", - "coordinates": [ - -73.5054627280132, - 45.546155731913 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9234397736446 - }, - "name": "du Bord-de-l'Eau est et Pratt", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.505525727, - 45.545997666 - ] - }, - "is_frozen": false, - "integer_id": 423, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.503839, - 45.547726 - ] - }, - "id": 424, - "properties": { - "id": "a04aa5a7-931e-4ad3-a495-f4ece86bd61d", - "code": "31699", - "data": { - "stops": [ - { - "id": "1699", - "code": "31699", - "data": { - "gtfs": { - "stop_id": "1699", - "stop_code": "31699", - "stop_name": "du Bord-de-l'Eau est et d'Auvergne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau est et d'Auvergne", - "geography": { - "type": "Point", - "coordinates": [ - -73.5038472019842, - 45.5476270297483 - ] - } - }, - { - "id": "3794", - "code": "33794", - "data": { - "gtfs": { - "stop_id": "3794", - "stop_code": "33794", - "stop_name": "du Bord-de-l'Eau est et d'Auvergne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau est et d'Auvergne", - "geography": { - "type": "Point", - "coordinates": [ - -73.5038317808972, - 45.5478258319242 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9527158463203 - }, - "name": "du Bord-de-l'Eau est et d'Auvergne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.503839491, - 45.547726431 - ] - }, - "is_frozen": false, - "integer_id": 424, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456929, - 45.521202 - ] - }, - "id": 425, - "properties": { - "id": "98268bc3-9f24-452e-8107-226a930051bc", - "code": "31705", - "data": { - "stops": [ - { - "id": "1705", - "code": "31705", - "data": { - "gtfs": { - "stop_id": "1705", - "stop_code": "31705", - "stop_name": "boul. Des Ormeaux et CENTRE COMMERCIAL PLACE DESORMEAUX", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Des Ormeaux et CENTRE COMMERCIAL PLACE DESORMEAUX", - "geography": { - "type": "Point", - "coordinates": [ - -73.4567035187172, - 45.5209611862685 - ] - } - }, - { - "id": "3351", - "code": "33351", - "data": { - "gtfs": { - "stop_id": "3351", - "stop_code": "33351", - "stop_name": "boul. Des Ormeaux et CENTRE COMMERCIAL PLACE DESORMEAUX", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Des Ormeaux et CENTRE COMMERCIAL PLACE DESORMEAUX", - "geography": { - "type": "Point", - "coordinates": [ - -73.4571551749252, - 45.5214427710464 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5038262164251 - }, - "name": "boul. Des Ormeaux et CENTRE COMMERCIAL PLACE DESORMEAUX", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456929347, - 45.521201979 - ] - }, - "is_frozen": false, - "integer_id": 425, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456553, - 45.523249 - ] - }, - "id": 426, - "properties": { - "id": "b9c0c47c-b605-460e-9360-3718e001061b", - "code": "31706", - "data": { - "stops": [ - { - "id": "1706", - "code": "31706", - "data": { - "gtfs": { - "stop_id": "1706", - "stop_code": "31706", - "stop_name": "boul. Des Ormeaux et Toulouse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Des Ormeaux et Toulouse", - "geography": { - "type": "Point", - "coordinates": [ - -73.4564551112154, - 45.523065326361 - ] - } - }, - { - "id": "2499", - "code": "32499", - "data": { - "gtfs": { - "stop_id": "2499", - "stop_code": "32499", - "stop_name": "boul. Des Ormeaux et Toulouse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Des Ormeaux et Toulouse", - "geography": { - "type": "Point", - "coordinates": [ - -73.4566511519101, - 45.5234324968812 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5384453882159 - }, - "name": "boul. Des Ormeaux et Toulouse", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456553132, - 45.523248912 - ] - }, - "is_frozen": false, - "integer_id": 426, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455945, - 45.524396 - ] - }, - "id": 427, - "properties": { - "id": "c33924bc-c890-4a49-b330-6134b056dd6d", - "code": "31707", - "data": { - "stops": [ - { - "id": "1707", - "code": "31707", - "data": { - "gtfs": { - "stop_id": "1707", - "stop_code": "31707", - "stop_name": "boul. Des Ormeaux et Mousseau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Des Ormeaux et Mousseau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4558533227691, - 45.5242079098845 - ] - } - }, - { - "id": "2498", - "code": "32498", - "data": { - "gtfs": { - "stop_id": "2498", - "stop_code": "32498", - "stop_name": "boul. Des Ormeaux et Mousseau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Des Ormeaux et Mousseau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4560366050562, - 45.524583998364 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5578466023155 - }, - "name": "boul. Des Ormeaux et Mousseau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455944964, - 45.524395954 - ] - }, - "is_frozen": false, - "integer_id": 427, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455821, - 45.526609 - ] - }, - "id": 428, - "properties": { - "id": "290dd81a-faeb-49a8-be84-7d76ab6dd7ef", - "code": "31708", - "data": { - "stops": [ - { - "id": "1708", - "code": "31708", - "data": { - "gtfs": { - "stop_id": "1708", - "stop_code": "31708", - "stop_name": "boul. Des Ormeaux et Mazenod", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Des Ormeaux et Mazenod", - "geography": { - "type": "Point", - "coordinates": [ - -73.4555945817752, - 45.5264843513458 - ] - } - }, - { - "id": "2497", - "code": "32497", - "data": { - "gtfs": { - "stop_id": "2497", - "stop_code": "32497", - "stop_name": "boul. Des Ormeaux et Périgny", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Des Ormeaux et Périgny", - "geography": { - "type": "Point", - "coordinates": [ - -73.4560479713743, - 45.526734320281 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5952873410448 - }, - "name": "boul. Des Ormeaux et Mazenod", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455821277, - 45.526609336 - ] - }, - "is_frozen": false, - "integer_id": 428, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455477, - 45.528764 - ] - }, - "id": 429, - "properties": { - "id": "cdd96034-dead-4f68-a8ed-c24b98b781eb", - "code": "31709", - "data": { - "stops": [ - { - "id": "1709", - "code": "31709", - "data": { - "gtfs": { - "stop_id": "1709", - "stop_code": "31709", - "stop_name": "boul. Des Ormeaux et boul. Roland-Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Des Ormeaux et boul. Roland-Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4554766580033, - 45.5287635116046 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.631730766337 - }, - "name": "boul. Des Ormeaux et boul. Roland-Therrien", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455476658, - 45.528763512 - ] - }, - "is_frozen": false, - "integer_id": 429, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.411369, - 45.491403 - ] - }, - "id": 430, - "properties": { - "id": "78262195-7c3a-4ed5-81d8-a33c906e3099", - "code": "31719", - "data": { - "stops": [ - { - "id": "1719", - "code": "31719", - "data": { - "gtfs": { - "stop_id": "1719", - "stop_code": "31719", - "stop_name": "boul. Gaétan-Boucher et Avon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et Avon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4114543073793, - 45.4915614015617 - ] - } - }, - { - "id": "3829", - "code": "33829", - "data": { - "gtfs": { - "stop_id": "3829", - "stop_code": "33829", - "stop_name": "boul. Gaétan-Boucher et Gabrielle-Roy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et Gabrielle-Roy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4112844583127, - 45.4912446368578 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0002677509843 - }, - "name": "boul. Gaétan-Boucher et Avon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.411369383, - 45.491403019 - ] - }, - "is_frozen": false, - "integer_id": 430, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.413267, - 45.488915 - ] - }, - "id": 431, - "properties": { - "id": "ec6dc36f-a6d2-4f32-a06b-8b08421e0620", - "code": "31720", - "data": { - "stops": [ - { - "id": "1720", - "code": "31720", - "data": { - "gtfs": { - "stop_id": "1720", - "stop_code": "31720", - "stop_name": "boul. Gaétan-Boucher et boul. Davis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et boul. Davis", - "geography": { - "type": "Point", - "coordinates": [ - -73.413179459674, - 45.4891155854748 - ] - } - }, - { - "id": "3619", - "code": "33619", - "data": { - "gtfs": { - "stop_id": "3619", - "stop_code": "33619", - "stop_name": "boul. Gaétan-Boucher et boul. Davis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et boul. Davis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4130867378465, - 45.4887148813504 - ] - } - }, - { - "id": "5436", - "code": "30179", - "data": { - "gtfs": { - "stop_id": "5436", - "stop_code": "30179", - "stop_name": "boul. Davis et boul. Gaétan-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et boul. Gaétan-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4134468181309, - 45.4888637003165 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9582635738404 - }, - "name": "boul. Gaétan-Boucher et boul. Davis", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.413266778, - 45.488915233 - ] - }, - "is_frozen": false, - "integer_id": 431, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.415917, - 45.489907 - ] - }, - "id": 432, - "properties": { - "id": "4b07d309-8f54-43c8-997d-d4abd77f2d1e", - "code": "31721", - "data": { - "stops": [ - { - "id": "1721", - "code": "31721", - "data": { - "gtfs": { - "stop_id": "1721", - "stop_code": "31721", - "stop_name": "boul. Davis et Sirois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et Sirois", - "geography": { - "type": "Point", - "coordinates": [ - -73.4157880661832, - 45.4899902694044 - ] - } - }, - { - "id": "5437", - "code": "30180", - "data": { - "gtfs": { - "stop_id": "5437", - "stop_code": "30180", - "stop_name": "boul. Davis et Sirois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et Sirois", - "geography": { - "type": "Point", - "coordinates": [ - -73.4161473841121, - 45.4898233479096 - ] - } - }, - { - "id": "5722", - "code": "30491", - "data": { - "gtfs": { - "stop_id": "5722", - "stop_code": "30491", - "stop_name": "boul. Davis et Sirois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et Sirois", - "geography": { - "type": "Point", - "coordinates": [ - -73.415687405469, - 45.4899598577735 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.97500484216 - }, - "name": "boul. Davis et Sirois", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.415917395, - 45.489906809 - ] - }, - "is_frozen": false, - "integer_id": 432, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.4254, - 45.494319 - ] - }, - "id": 433, - "properties": { - "id": "28985ee5-9fc5-416a-81f8-ff25dba2b6da", - "code": "31723", - "data": { - "stops": [ - { - "id": "1723", - "code": "31723", - "data": { - "gtfs": { - "stop_id": "1723", - "stop_code": "31723", - "stop_name": "boul. Davis et Coderre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et Coderre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4252260749498, - 45.4943797723804 - ] - } - }, - { - "id": "1745", - "code": "31745", - "data": { - "gtfs": { - "stop_id": "1745", - "stop_code": "31745", - "stop_name": "boul. Davis et Coderre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et Coderre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4255736049156, - 45.4942587983967 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0495134606166 - }, - "name": "boul. Davis et Coderre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.42539984, - 45.494319285 - ] - }, - "is_frozen": false, - "integer_id": 433, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.430792, - 45.496119 - ] - }, - "id": 434, - "properties": { - "id": "d9bf2534-8f61-4d16-adab-8e4d84e855be", - "code": "31725", - "data": { - "stops": [ - { - "id": "1725", - "code": "31725", - "data": { - "gtfs": { - "stop_id": "1725", - "stop_code": "31725", - "stop_name": "boul. Davis et Labrosse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et Labrosse", - "geography": { - "type": "Point", - "coordinates": [ - -73.4303450182016, - 45.4962595338069 - ] - } - }, - { - "id": "2925", - "code": "32925", - "data": { - "gtfs": { - "stop_id": "2925", - "stop_code": "32925", - "stop_name": "Labrosse et boul. Davis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Labrosse et boul. Davis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4306269063114, - 45.4959648021296 - ] - } - }, - { - "id": "3796", - "code": "33796", - "data": { - "gtfs": { - "stop_id": "3796", - "stop_code": "33796", - "stop_name": "boul. Davis et Labrosse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et Labrosse", - "geography": { - "type": "Point", - "coordinates": [ - -73.4308242961754, - 45.4961291991821 - ] - } - }, - { - "id": "5564", - "code": "30312", - "data": { - "gtfs": { - "stop_id": "5564", - "stop_code": "30312", - "stop_name": "boul. Davis et civique 5165", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et civique 5165", - "geography": { - "type": "Point", - "coordinates": [ - -73.4312388266402, - 45.496273461414 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0799104653543 - }, - "name": "boul. Davis et Labrosse", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.430791922, - 45.496119132 - ] - }, - "is_frozen": false, - "integer_id": 434, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.432266, - 45.496889 - ] - }, - "id": 435, - "properties": { - "id": "b54fcecb-6cb7-4df4-8b5d-e6e5676d3272", - "code": "31726", - "data": { - "stops": [ - { - "id": "1726", - "code": "31726", - "data": { - "gtfs": { - "stop_id": "1726", - "stop_code": "31726", - "stop_name": "boul. Davis et de Port-Royal", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et de Port-Royal", - "geography": { - "type": "Point", - "coordinates": [ - -73.4320257299016, - 45.4968738917096 - ] - } - }, - { - "id": "1742", - "code": "31742", - "data": { - "gtfs": { - "stop_id": "1742", - "stop_code": "31742", - "stop_name": "boul. Davis et de Port-Royal", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et de Port-Royal", - "geography": { - "type": "Point", - "coordinates": [ - -73.4325063139158, - 45.4967203276438 - ] - } - }, - { - "id": "2882", - "code": "32882", - "data": { - "gtfs": { - "stop_id": "2882", - "stop_code": "32882", - "stop_name": "de Port-Royal et boul. Davis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Port-Royal et boul. Davis", - "geography": { - "type": "Point", - "coordinates": [ - -73.432239827382, - 45.4970584869297 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0929202587562 - }, - "name": "boul. Davis et de Port-Royal", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.432266022, - 45.496889407 - ] - }, - "is_frozen": false, - "integer_id": 435, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.434372, - 45.497535 - ] - }, - "id": 436, - "properties": { - "id": "4a180761-ffc5-4d97-873b-916ca1656760", - "code": "31727", - "data": { - "stops": [ - { - "id": "1727", - "code": "31727", - "data": { - "gtfs": { - "stop_id": "1727", - "stop_code": "31727", - "stop_name": "boul. Davis et Loiselle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et Loiselle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4341628691599, - 45.497604017051 - ] - } - }, - { - "id": "1741", - "code": "31741", - "data": { - "gtfs": { - "stop_id": "1741", - "stop_code": "31741", - "stop_name": "boul. Davis et Loiselle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et Loiselle", - "geography": { - "type": "Point", - "coordinates": [ - -73.434580213942, - 45.4974649969836 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1038162771362 - }, - "name": "boul. Davis et Loiselle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.434371542, - 45.497534507 - ] - }, - "is_frozen": false, - "integer_id": 436, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439232, - 45.499919 - ] - }, - "id": 437, - "properties": { - "id": "565e8198-26d9-4715-bc5d-75974e6721d9", - "code": "31729", - "data": { - "stops": [ - { - "id": "1729", - "code": "31729", - "data": { - "gtfs": { - "stop_id": "1729", - "stop_code": "31729", - "stop_name": "boul. Gareau et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4392317251961, - 45.499919424376 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1441017727028 - }, - "name": "boul. Gareau et Passage piétonnier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439231725, - 45.499919424 - ] - }, - "is_frozen": false, - "integer_id": 437, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437896, - 45.501278 - ] - }, - "id": 438, - "properties": { - "id": "9b336d4e-db84-472b-aee3-9690d5d224b6", - "code": "31730", - "data": { - "stops": [ - { - "id": "1730", - "code": "31730", - "data": { - "gtfs": { - "stop_id": "1730", - "stop_code": "31730", - "stop_name": "boul. Gareau et Perras", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et Perras", - "geography": { - "type": "Point", - "coordinates": [ - -73.4378933317318, - 45.5010661794917 - ] - } - }, - { - "id": "3587", - "code": "33587", - "data": { - "gtfs": { - "stop_id": "3587", - "stop_code": "33587", - "stop_name": "boul. Gareau et Perras", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et Perras", - "geography": { - "type": "Point", - "coordinates": [ - -73.4378988312374, - 45.5014889342693 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1670453194441 - }, - "name": "boul. Gareau et Perras", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437896081, - 45.501277557 - ] - }, - "is_frozen": false, - "integer_id": 438, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441478, - 45.503886 - ] - }, - "id": 439, - "properties": { - "id": "1a2084b5-bc8c-4697-804e-35bea928cc06", - "code": "31732", - "data": { - "stops": [ - { - "id": "1732", - "code": "31732", - "data": { - "gtfs": { - "stop_id": "1732", - "stop_code": "31732", - "stop_name": "av. Thibault et boul. Losch", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Thibault et boul. Losch", - "geography": { - "type": "Point", - "coordinates": [ - -73.441526654315, - 45.5039822651501 - ] - } - }, - { - "id": "1736", - "code": "31736", - "data": { - "gtfs": { - "stop_id": "1736", - "stop_code": "31736", - "stop_name": "av. Thibault et boul. Losch", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Thibault et boul. Losch", - "geography": { - "type": "Point", - "coordinates": [ - -73.4414285976589, - 45.50378989779 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2111168831461 - }, - "name": "av. Thibault et boul. Losch", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441477626, - 45.503886081 - ] - }, - "is_frozen": false, - "integer_id": 439, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443673, - 45.504821 - ] - }, - "id": 440, - "properties": { - "id": "261db898-2ef3-4105-a628-5330af439dce", - "code": "31733", - "data": { - "stops": [ - { - "id": "1733", - "code": "31733", - "data": { - "gtfs": { - "stop_id": "1733", - "stop_code": "31733", - "stop_name": "av. Thibault et Harvey", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Thibault et Harvey", - "geography": { - "type": "Point", - "coordinates": [ - -73.4435685594293, - 45.5047118282718 - ] - } - }, - { - "id": "1735", - "code": "31735", - "data": { - "gtfs": { - "stop_id": "1735", - "stop_code": "31735", - "stop_name": "Harvey et av. Thibault", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Harvey et av. Thibault", - "geography": { - "type": "Point", - "coordinates": [ - -73.4437764619404, - 45.5049293786895 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.226907303029 - }, - "name": "av. Thibault et Harvey", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443672511, - 45.504820603 - ] - }, - "is_frozen": false, - "integer_id": 440, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439335, - 45.499031 - ] - }, - "id": 441, - "properties": { - "id": "45eb186b-1efe-43c4-8e82-92fe5a15a753", - "code": "31739", - "data": { - "stops": [ - { - "id": "1739", - "code": "31739", - "data": { - "gtfs": { - "stop_id": "1739", - "stop_code": "31739", - "stop_name": "boul. Davis et boul. Gareau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et boul. Gareau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4393347730323, - 45.4990314190026 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1291011954135 - }, - "name": "boul. Davis et boul. Gareau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439334773, - 45.499031419 - ] - }, - "is_frozen": false, - "integer_id": 441, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.436982, - 45.498362 - ] - }, - "id": 442, - "properties": { - "id": "63ff9173-3e59-4bee-9a21-57d199dc88ec", - "code": "31740", - "data": { - "stops": [ - { - "id": "1740", - "code": "31740", - "data": { - "gtfs": { - "stop_id": "1740", - "stop_code": "31740", - "stop_name": "boul. Davis et Paul-Provost", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et Paul-Provost", - "geography": { - "type": "Point", - "coordinates": [ - -73.4371474651095, - 45.4982445873707 - ] - } - }, - { - "id": "3797", - "code": "33797", - "data": { - "gtfs": { - "stop_id": "3797", - "stop_code": "33797", - "stop_name": "boul. Davis et Paul-Provost", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et Paul-Provost", - "geography": { - "type": "Point", - "coordinates": [ - -73.4368174755833, - 45.4984798638468 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1177973517944 - }, - "name": "boul. Davis et Paul-Provost", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.43698247, - 45.498362226 - ] - }, - "is_frozen": false, - "integer_id": 442, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.423904, - 45.493066 - ] - }, - "id": 443, - "properties": { - "id": "c1a5eb8c-0570-4acc-a3bc-ddcf0318a249", - "code": "31746", - "data": { - "stops": [ - { - "id": "1746", - "code": "31746", - "data": { - "gtfs": { - "stop_id": "1746", - "stop_code": "31746", - "stop_name": "boul. Davis et Rocheleau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et Rocheleau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4240840269613, - 45.4929971791636 - ] - } - }, - { - "id": "4270", - "code": "34270", - "data": { - "gtfs": { - "stop_id": "4270", - "stop_code": "34270", - "stop_name": "boul. Davis et Rocheleau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et Rocheleau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4237235229839, - 45.4931342957897 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0283444164285 - }, - "name": "boul. Davis et Rocheleau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.423903775, - 45.493065737 - ] - }, - "is_frozen": false, - "integer_id": 443, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.416949, - 45.497976 - ] - }, - "id": 444, - "properties": { - "id": "fc327306-9695-49c5-b3a4-e03dc25e8f2e", - "code": "31747", - "data": { - "stops": [ - { - "id": "1747", - "code": "31747", - "data": { - "gtfs": { - "stop_id": "1747", - "stop_code": "31747", - "stop_name": "Prince-Charles et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Prince-Charles et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4167508982064, - 45.4980428824484 - ] - } - }, - { - "id": "2584", - "code": "32584", - "data": { - "gtfs": { - "stop_id": "2584", - "stop_code": "32584", - "stop_name": "boul. Cousineau et Prince-Charles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Prince-Charles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4169387805121, - 45.4981842416081 - ] - } - }, - { - "id": "2851", - "code": "32851", - "data": { - "gtfs": { - "stop_id": "2851", - "stop_code": "32851", - "stop_name": "Prince-Charles et Adélaïde", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Prince-Charles et Adélaïde", - "geography": { - "type": "Point", - "coordinates": [ - -73.4171476491515, - 45.497768412582 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1112790218939 - }, - "name": "Prince-Charles et boul. Cousineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.416949274, - 45.497976327 - ] - }, - "is_frozen": false, - "integer_id": 444, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492443, - 45.561384 - ] - }, - "id": 445, - "properties": { - "id": "e3f93446-b3ee-4b2f-a7c7-d41c3e162249", - "code": "31748", - "data": { - "stops": [ - { - "id": "1748", - "code": "31748", - "data": { - "gtfs": { - "stop_id": "1748", - "stop_code": "31748", - "stop_name": "boul. Marie-Victorin et Charbonneau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Charbonneau", - "geography": { - "type": "Point", - "coordinates": [ - -73.492440031485, - 45.5611627134563 - ] - } - }, - { - "id": "1800", - "code": "31800", - "data": { - "gtfs": { - "stop_id": "1800", - "stop_code": "31800", - "stop_name": "boul. Marie-Victorin et Charbonneau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Charbonneau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4924467664912, - 45.5616051234862 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1840947476031 - }, - "name": "boul. Marie-Victorin et Charbonneau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492443399, - 45.561383918 - ] - }, - "is_frozen": false, - "integer_id": 445, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.488573, - 45.560031 - ] - }, - "id": 446, - "properties": { - "id": "acd343da-a23f-40aa-9f8e-9e9ed5b60bd1", - "code": "31749", - "data": { - "stops": [ - { - "id": "1749", - "code": "31749", - "data": { - "gtfs": { - "stop_id": "1749", - "stop_code": "31749", - "stop_name": "Lalande et Lapointe", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lalande et Lapointe", - "geography": { - "type": "Point", - "coordinates": [ - -73.4885732203633, - 45.5600309472402 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1611658978031 - }, - "name": "Lalande et Lapointe", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48857322, - 45.560030947 - ] - }, - "is_frozen": false, - "integer_id": 446, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.485654, - 45.562318 - ] - }, - "id": 447, - "properties": { - "id": "8541057e-6661-45be-93ff-9ed50114b9a1", - "code": "31750", - "data": { - "stops": [ - { - "id": "1750", - "code": "31750", - "data": { - "gtfs": { - "stop_id": "1750", - "stop_code": "31750", - "stop_name": "Lalande et Passage à piétons", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lalande et Passage à piétons", - "geography": { - "type": "Point", - "coordinates": [ - -73.4856380081898, - 45.5622215124569 - ] - } - }, - { - "id": "1799", - "code": "31799", - "data": { - "gtfs": { - "stop_id": "1799", - "stop_code": "31799", - "stop_name": "Lalande et Passage à piétons", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lalande et Passage à piétons", - "geography": { - "type": "Point", - "coordinates": [ - -73.4856700213524, - 45.5624140241883 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1999216921266 - }, - "name": "Lalande et Passage à piétons", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.485654015, - 45.562317768 - ] - }, - "is_frozen": false, - "integer_id": 447, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.485454, - 45.56504 - ] - }, - "id": 448, - "properties": { - "id": "48afa0b3-dc93-4216-9cf1-35b088276d02", - "code": "31751", - "data": { - "stops": [ - { - "id": "1751", - "code": "31751", - "data": { - "gtfs": { - "stop_id": "1751", - "stop_code": "31751", - "stop_name": "Lalande et Kirouac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lalande et Kirouac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4853388317075, - 45.5649770065166 - ] - } - }, - { - "id": "1798", - "code": "31798", - "data": { - "gtfs": { - "stop_id": "1798", - "stop_code": "31798", - "stop_name": "Kirouac et Lalande", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Kirouac et Lalande", - "geography": { - "type": "Point", - "coordinates": [ - -73.4855701310126, - 45.5651023611387 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2460573291334 - }, - "name": "Lalande et Kirouac", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.485454481, - 45.565039684 - ] - }, - "is_frozen": false, - "integer_id": 448, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.484419, - 45.565949 - ] - }, - "id": 449, - "properties": { - "id": "2c3ad537-4ff9-4b7f-9c7d-0b21ee34234d", - "code": "31752", - "data": { - "stops": [ - { - "id": "1752", - "code": "31752", - "data": { - "gtfs": { - "stop_id": "1752", - "stop_code": "31752", - "stop_name": "Kirouac et La Vérendrye", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Kirouac et La Vérendrye", - "geography": { - "type": "Point", - "coordinates": [ - -73.4845475124435, - 45.5657351241402 - ] - } - }, - { - "id": "1797", - "code": "31797", - "data": { - "gtfs": { - "stop_id": "1797", - "stop_code": "31797", - "stop_name": "Kirouac et La Vérendrye", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Kirouac et La Vérendrye", - "geography": { - "type": "Point", - "coordinates": [ - -73.4842910611095, - 45.5661626052551 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2614691416753 - }, - "name": "Kirouac et La Vérendrye", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.484419287, - 45.565948865 - ] - }, - "is_frozen": false, - "integer_id": 449, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482875, - 45.567197 - ] - }, - "id": 450, - "properties": { - "id": "056bf57a-8baa-407d-9c70-a2dcb2e36aea", - "code": "31753", - "data": { - "stops": [ - { - "id": "1753", - "code": "31753", - "data": { - "gtfs": { - "stop_id": "1753", - "stop_code": "31753", - "stop_name": "Kirouac et boul. Jean-Paul-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Kirouac et boul. Jean-Paul-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4827886843322, - 45.567103363009 - ] - } - }, - { - "id": "5469", - "code": "30216", - "data": { - "gtfs": { - "stop_id": "5469", - "stop_code": "30216", - "stop_name": "boul. Jean-Paul-Vincent et Kirouac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jean-Paul-Vincent et Kirouac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4829613841596, - 45.5672901105187 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2826234143645 - }, - "name": "Kirouac et boul. Jean-Paul-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482875034, - 45.567196737 - ] - }, - "is_frozen": false, - "integer_id": 450, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479638, - 45.564725 - ] - }, - "id": 451, - "properties": { - "id": "08472942-a2a0-45ef-be22-2dc8587875b6", - "code": "31754", - "data": { - "stops": [ - { - "id": "1754", - "code": "31754", - "data": { - "gtfs": { - "stop_id": "1754", - "stop_code": "31754", - "stop_name": "boul. Jean-Paul-Vincent et Adoncour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jean-Paul-Vincent et Adoncour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4796382585905, - 45.5647248155413 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2407200750183 - }, - "name": "boul. Jean-Paul-Vincent et Adoncour", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479638259, - 45.564724816 - ] - }, - "is_frozen": false, - "integer_id": 451, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.476551, - 45.562383 - ] - }, - "id": 452, - "properties": { - "id": "768e4b50-abe9-456e-9460-90d8cbf65940", - "code": "31755", - "data": { - "stops": [ - { - "id": "1755", - "code": "31755", - "data": { - "gtfs": { - "stop_id": "1755", - "stop_code": "31755", - "stop_name": "boul. Jean-Paul-Vincent et de la Province", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jean-Paul-Vincent et de la Province", - "geography": { - "type": "Point", - "coordinates": [ - -73.476551037026, - 45.5623827795216 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2010235483195 - }, - "name": "boul. Jean-Paul-Vincent et de la Province", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.476551037, - 45.56238278 - ] - }, - "is_frozen": false, - "integer_id": 452, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474278, - 45.560876 - ] - }, - "id": 453, - "properties": { - "id": "b15716e4-5653-476c-ba57-960f89ea42d5", - "code": "31756", - "data": { - "stops": [ - { - "id": "1756", - "code": "31756", - "data": { - "gtfs": { - "stop_id": "1756", - "stop_code": "31756", - "stop_name": "boul. Jean-Paul-Vincent et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jean-Paul-Vincent et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4744903499909, - 45.5608702833913 - ] - } - }, - { - "id": "1793", - "code": "31793", - "data": { - "gtfs": { - "stop_id": "1793", - "stop_code": "31793", - "stop_name": "boul. Jean-Paul-Vincent et civique 843", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jean-Paul-Vincent et civique 843", - "geography": { - "type": "Point", - "coordinates": [ - -73.4740648888662, - 45.5608826961815 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1754951547982 - }, - "name": "boul. Jean-Paul-Vincent et Passage piétonnier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474277619, - 45.56087649 - ] - }, - "is_frozen": false, - "integer_id": 453, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.471332, - 45.558425 - ] - }, - "id": 454, - "properties": { - "id": "2332d398-d991-4d3f-9d67-38ab4930ac25", - "code": "31757", - "data": { - "stops": [ - { - "id": "1757", - "code": "31757", - "data": { - "gtfs": { - "stop_id": "1757", - "stop_code": "31757", - "stop_name": "boul. Jean-Paul-Vincent et boul. Fernand-Lafontaine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jean-Paul-Vincent et boul. Fernand-Lafontaine", - "geography": { - "type": "Point", - "coordinates": [ - -73.4713322127706, - 45.5584250407656 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1339526714045 - }, - "name": "boul. Jean-Paul-Vincent et boul. Fernand-Lafontaine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.471332213, - 45.558425041 - ] - }, - "is_frozen": false, - "integer_id": 454, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464044, - 45.554141 - ] - }, - "id": 455, - "properties": { - "id": "1e6b54ae-f11e-4726-a36f-9c4411688776", - "code": "31759", - "data": { - "stops": [ - { - "id": "1759", - "code": "31759", - "data": { - "gtfs": { - "stop_id": "1759", - "stop_code": "31759", - "stop_name": "du Caribou et boul. Jean-Paul-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Caribou et boul. Jean-Paul-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4639561190623, - 45.5540366924603 - ] - } - }, - { - "id": "1790", - "code": "31790", - "data": { - "gtfs": { - "stop_id": "1790", - "stop_code": "31790", - "stop_name": "du Caribou et boul. Jean-Paul-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Caribou et boul. Jean-Paul-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4641310487318, - 45.5542458007742 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0613719833108 - }, - "name": "du Caribou et boul. Jean-Paul-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464043584, - 45.554141247 - ] - }, - "is_frozen": false, - "integer_id": 455, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460059, - 45.553274 - ] - }, - "id": 456, - "properties": { - "id": "2e8375c2-0f15-448a-8203-e8a29699849e", - "code": "31761", - "data": { - "stops": [ - { - "id": "1761", - "code": "31761", - "data": { - "gtfs": { - "stop_id": "1761", - "stop_code": "31761", - "stop_name": "Bédard et Giroux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bédard et Giroux", - "geography": { - "type": "Point", - "coordinates": [ - -73.4602224632009, - 45.5533701954679 - ] - } - }, - { - "id": "1789", - "code": "31789", - "data": { - "gtfs": { - "stop_id": "1789", - "stop_code": "31789", - "stop_name": "Bédard et Germain", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bédard et Germain", - "geography": { - "type": "Point", - "coordinates": [ - -73.4598947856051, - 45.5531771688544 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0466747507691 - }, - "name": "Bédard et Giroux", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.460058624, - 45.553273682 - ] - }, - "is_frozen": false, - "integer_id": 456, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458364, - 45.551784 - ] - }, - "id": 457, - "properties": { - "id": "d9f7a5bd-7489-48e7-93cf-4368a09e2676", - "code": "31762", - "data": { - "stops": [ - { - "id": "1762", - "code": "31762", - "data": { - "gtfs": { - "stop_id": "1762", - "stop_code": "31762", - "stop_name": "Bédard et Guérin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bédard et Guérin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4583353206463, - 45.5516777552005 - ] - } - }, - { - "id": "1788", - "code": "31788", - "data": { - "gtfs": { - "stop_id": "1788", - "stop_code": "31788", - "stop_name": "Bédard et Germain", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bédard et Germain", - "geography": { - "type": "Point", - "coordinates": [ - -73.4583921972827, - 45.5518902927374 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0214403417972 - }, - "name": "Bédard et Guérin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.458363759, - 45.551784024 - ] - }, - "is_frozen": false, - "integer_id": 457, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456261, - 45.550188 - ] - }, - "id": 458, - "properties": { - "id": "714fccbf-a3ad-45ea-8e3f-be54db61f028", - "code": "31763", - "data": { - "stops": [ - { - "id": "1763", - "code": "31763", - "data": { - "gtfs": { - "stop_id": "1763", - "stop_code": "31763", - "stop_name": "Bédard et Grou", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bédard et Grou", - "geography": { - "type": "Point", - "coordinates": [ - -73.4564155130476, - 45.5502117261176 - ] - } - }, - { - "id": "1787", - "code": "31787", - "data": { - "gtfs": { - "stop_id": "1787", - "stop_code": "31787", - "stop_name": "Bédard et Lincourt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bédard et Lincourt", - "geography": { - "type": "Point", - "coordinates": [ - -73.4561063770439, - 45.5501651969344 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9944141447667 - }, - "name": "Bédard et Grou", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456260945, - 45.550188462 - ] - }, - "is_frozen": false, - "integer_id": 458, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454239, - 45.548659 - ] - }, - "id": 459, - "properties": { - "id": "bb4626e2-c410-497b-977c-2cc1b65d7b57", - "code": "31764", - "data": { - "stops": [ - { - "id": "1764", - "code": "31764", - "data": { - "gtfs": { - "stop_id": "1764", - "stop_code": "31764", - "stop_name": "Bédard et Guérin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bédard et Guérin", - "geography": { - "type": "Point", - "coordinates": [ - -73.454432603977, - 45.5487113069033 - ] - } - }, - { - "id": "1786", - "code": "31786", - "data": { - "gtfs": { - "stop_id": "1786", - "stop_code": "31786", - "stop_name": "Bédard et Guérin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bédard et Guérin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4540444788889, - 45.5486076703055 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9685179882691 - }, - "name": "Bédard et Guérin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454238541, - 45.548659489 - ] - }, - "is_frozen": false, - "integer_id": 459, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452448, - 45.547376 - ] - }, - "id": 460, - "properties": { - "id": "afa3ad41-3eae-461f-a526-3f7ca1b74bc9", - "code": "31765", - "data": { - "stops": [ - { - "id": "1765", - "code": "31765", - "data": { - "gtfs": { - "stop_id": "1765", - "stop_code": "31765", - "stop_name": "Bédard et boul. Jacques-Cartier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bédard et boul. Jacques-Cartier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4524436058172, - 45.547198771838 - ] - } - }, - { - "id": "4211", - "code": "34211", - "data": { - "gtfs": { - "stop_id": "4211", - "stop_code": "34211", - "stop_name": "Bédard et boul. Jacques-Cartier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bédard et boul. Jacques-Cartier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4526570723857, - 45.5475523862802 - ] - } - }, - { - "id": "5441", - "code": "30184", - "data": { - "gtfs": { - "stop_id": "5441", - "stop_code": "30184", - "stop_name": "boul. Jacques-Cartier est et Bédard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et Bédard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4522390940394, - 45.5472877954791 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9467740661402 - }, - "name": "Bédard et boul. Jacques-Cartier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452448083, - 45.547375579 - ] - }, - "is_frozen": false, - "integer_id": 460, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450694, - 45.545899 - ] - }, - "id": 461, - "properties": { - "id": "e9a2766b-5d66-44e7-b6aa-e2b7898cae24", - "code": "31766", - "data": { - "stops": [ - { - "id": "1766", - "code": "31766", - "data": { - "gtfs": { - "stop_id": "1766", - "stop_code": "31766", - "stop_name": "Bédard et ch. Du Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bédard et ch. Du Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4507965701256, - 45.5459548408849 - ] - } - }, - { - "id": "1888", - "code": "31888", - "data": { - "gtfs": { - "stop_id": "1888", - "stop_code": "31888", - "stop_name": "ch. Du Tremblay et Bédard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Bédard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4505991074756, - 45.5457895736212 - ] - } - }, - { - "id": "2575", - "code": "32575", - "data": { - "gtfs": { - "stop_id": "2575", - "stop_code": "32575", - "stop_name": "ch. Du Tremblay et Bédard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Bédard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4505920856342, - 45.5460090523438 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9217742777878 - }, - "name": "Bédard et ch. Du Tremblay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450694328, - 45.545899313 - ] - }, - "is_frozen": false, - "integer_id": 461, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446947, - 45.542139 - ] - }, - "id": 462, - "properties": { - "id": "2b36885d-7487-45f3-88e4-95ced22c8df0", - "code": "31769", - "data": { - "stops": [ - { - "id": "1769", - "code": "31769", - "data": { - "gtfs": { - "stop_id": "1769", - "stop_code": "31769", - "stop_name": "Robin et Buies", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Robin et Buies", - "geography": { - "type": "Point", - "coordinates": [ - -73.446946742356, - 45.5421392703915 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8581087121004 - }, - "name": "Robin et Buies", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446946742, - 45.54213927 - ] - }, - "is_frozen": false, - "integer_id": 462, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445526, - 45.541202 - ] - }, - "id": 463, - "properties": { - "id": "5251f580-cc4c-4e24-adc5-09ece02102d8", - "code": "31770", - "data": { - "stops": [ - { - "id": "1770", - "code": "31770", - "data": { - "gtfs": { - "stop_id": "1770", - "stop_code": "31770", - "stop_name": "Robin et Braille", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Robin et Braille", - "geography": { - "type": "Point", - "coordinates": [ - -73.4456611178286, - 45.5411848389436 - ] - } - }, - { - "id": "5834", - "code": "30603", - "data": { - "gtfs": { - "stop_id": "5834", - "stop_code": "30603", - "stop_name": "Belcourt et Braille", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et Braille", - "geography": { - "type": "Point", - "coordinates": [ - -73.4453911472395, - 45.541150196957 - ] - } - }, - { - "id": "5840", - "code": "30609", - "data": { - "gtfs": { - "stop_id": "5840", - "stop_code": "30609", - "stop_name": "Braille et Robin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Braille et Robin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4454845585327, - 45.5412535995502 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8422389648176 - }, - "name": "Robin et Braille", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445526133, - 45.541201898 - ] - }, - "is_frozen": false, - "integer_id": 463, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452717, - 45.53973 - ] - }, - "id": 464, - "properties": { - "id": "97fd6b08-e74d-4e78-a89d-1a8506473313", - "code": "31776", - "data": { - "stops": [ - { - "id": "1776", - "code": "31776", - "data": { - "gtfs": { - "stop_id": "1776", - "stop_code": "31776", - "stop_name": "Beauharnois et Balleray", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauharnois et Balleray", - "geography": { - "type": "Point", - "coordinates": [ - -73.452663695981, - 45.5396848673784 - ] - } - }, - { - "id": "5829", - "code": "30598", - "data": { - "gtfs": { - "stop_id": "5829", - "stop_code": "30598", - "stop_name": "Beauharnois et Boisbriand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauharnois et Boisbriand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4527705665046, - 45.5397752795664 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8173224875935 - }, - "name": "Beauharnois et Balleray", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452717131, - 45.539730073 - ] - }, - "is_frozen": false, - "integer_id": 464, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452293, - 45.540886 - ] - }, - "id": 465, - "properties": { - "id": "78852b27-6481-4593-91bd-0a0ac5e52bda", - "code": "31777", - "data": { - "stops": [ - { - "id": "1777", - "code": "31777", - "data": { - "gtfs": { - "stop_id": "1777", - "stop_code": "31777", - "stop_name": "Beauharnois et Boullard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauharnois et Boullard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4522781689988, - 45.5407558731154 - ] - } - }, - { - "id": "5828", - "code": "30597", - "data": { - "gtfs": { - "stop_id": "5828", - "stop_code": "30597", - "stop_name": "Beauharnois et Boullard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauharnois et Boullard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4523077392982, - 45.5410154965504 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8368856422939 - }, - "name": "Beauharnois et Boullard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452292954, - 45.540885685 - ] - }, - "is_frozen": false, - "integer_id": 465, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468987, - 45.556882 - ] - }, - "id": 466, - "properties": { - "id": "8ece351b-2186-4cfe-9624-9d1eacc2181d", - "code": "31791", - "data": { - "stops": [ - { - "id": "1791", - "code": "31791", - "data": { - "gtfs": { - "stop_id": "1791", - "stop_code": "31791", - "stop_name": "boul. Jean-Paul-Vincent et ch. du Lac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jean-Paul-Vincent et ch. du Lac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4688066656284, - 45.5569411550466 - ] - } - }, - { - "id": "4676", - "code": "34676", - "data": { - "gtfs": { - "stop_id": "4676", - "stop_code": "34676", - "stop_name": "boul. Jean-Paul-Vincent et ch. du Lac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jean-Paul-Vincent et ch. du Lac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4691678128513, - 45.5568221231004 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1078007907165 - }, - "name": "boul. Jean-Paul-Vincent et ch. du Lac", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468987239, - 45.556881639 - ] - }, - "is_frozen": false, - "integer_id": 466, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.470622, - 45.558269 - ] - }, - "id": 467, - "properties": { - "id": "5a5c6460-b74c-4fc4-8f7e-fb80243c60b0", - "code": "31792", - "data": { - "stops": [ - { - "id": "1792", - "code": "31792", - "data": { - "gtfs": { - "stop_id": "1792", - "stop_code": "31792", - "stop_name": "boul. Jean-Paul-Vincent et boul. Fernand-Lafontaine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jean-Paul-Vincent et boul. Fernand-Lafontaine", - "geography": { - "type": "Point", - "coordinates": [ - -73.4706215596608, - 45.5582689144354 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1313071105213 - }, - "name": "boul. Jean-Paul-Vincent et boul. Fernand-Lafontaine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47062156, - 45.558268914 - ] - }, - "is_frozen": false, - "integer_id": 467, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.48346, - 45.566817 - ] - }, - "id": 468, - "properties": { - "id": "0c748835-952e-4739-8acb-c70076e8b112", - "code": "31796", - "data": { - "stops": [ - { - "id": "1796", - "code": "31796", - "data": { - "gtfs": { - "stop_id": "1796", - "stop_code": "31796", - "stop_name": "Kirouac et boul. Jean-Paul-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Kirouac et boul. Jean-Paul-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4834595867067, - 45.5668165917873 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2761789433641 - }, - "name": "Kirouac et boul. Jean-Paul-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483459587, - 45.566816592 - ] - }, - "is_frozen": false, - "integer_id": 468, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.497907, - 45.551484 - ] - }, - "id": 469, - "properties": { - "id": "f8b461c2-c03e-4da6-aa56-a50e7e1d9db0", - "code": "31801", - "data": { - "stops": [ - { - "id": "1801", - "code": "31801", - "data": { - "gtfs": { - "stop_id": "1801", - "stop_code": "31801", - "stop_name": "Geoffrion et HOTEL HOLIDAY INN", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Geoffrion et HOTEL HOLIDAY INN", - "geography": { - "type": "Point", - "coordinates": [ - -73.4979074333033, - 45.5514837341393 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0163537492805 - }, - "name": "Geoffrion et HOTEL HOLIDAY INN", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.497907433, - 45.551483734 - ] - }, - "is_frozen": false, - "integer_id": 469, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.476728, - 45.497015 - ] - }, - "id": 470, - "properties": { - "id": "b33d27b7-d555-4c52-b225-a20c1767dd3b", - "code": "31803", - "data": { - "stops": [ - { - "id": "1803", - "code": "31803", - "data": { - "gtfs": { - "stop_id": "1803", - "stop_code": "31803", - "stop_name": "Grande Allée et Gustave-Désourdy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Gustave-Désourdy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4769003201014, - 45.4970336886609 - ] - } - }, - { - "id": "1853", - "code": "31853", - "data": { - "gtfs": { - "stop_id": "1853", - "stop_code": "31853", - "stop_name": "Grande Allée et Gustave-Désourdy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Gustave-Désourdy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4765562049087, - 45.4969966763608 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0950446408127 - }, - "name": "Grande Allée et Gustave-Désourdy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.476728263, - 45.497015183 - ] - }, - "is_frozen": false, - "integer_id": 470, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47544, - 45.496168 - ] - }, - "id": 471, - "properties": { - "id": "4969c5f0-e6b6-4445-8d46-f637f2b3b640", - "code": "31804", - "data": { - "stops": [ - { - "id": "1804", - "code": "31804", - "data": { - "gtfs": { - "stop_id": "1804", - "stop_code": "31804", - "stop_name": "Grande Allée et Georges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Georges", - "geography": { - "type": "Point", - "coordinates": [ - -73.4758067746371, - 45.4963146713743 - ] - } - }, - { - "id": "1852", - "code": "31852", - "data": { - "gtfs": { - "stop_id": "1852", - "stop_code": "31852", - "stop_name": "Grande Allée et Georges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Georges", - "geography": { - "type": "Point", - "coordinates": [ - -73.4750735572647, - 45.4960205238603 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.080729031011 - }, - "name": "Grande Allée et Georges", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475440166, - 45.496167598 - ] - }, - "is_frozen": false, - "integer_id": 471, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.473841, - 45.495113 - ] - }, - "id": 472, - "properties": { - "id": "dae79222-5b12-4269-8d31-6271170c1f54", - "code": "31805", - "data": { - "stops": [ - { - "id": "1805", - "code": "31805", - "data": { - "gtfs": { - "stop_id": "1805", - "stop_code": "31805", - "stop_name": "Grande Allée et Godin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Godin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4740002521546, - 45.495124361922 - ] - } - }, - { - "id": "1851", - "code": "31851", - "data": { - "gtfs": { - "stop_id": "1851", - "stop_code": "31851", - "stop_name": "Grande Allée et Godin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Godin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4736819286352, - 45.4951026324731 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0629262821407 - }, - "name": "Grande Allée et Godin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47384109, - 45.495113497 - ] - }, - "is_frozen": false, - "integer_id": 472, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47279, - 45.494414 - ] - }, - "id": 473, - "properties": { - "id": "d8e1fde2-a0b2-4339-9d55-49a5f3be258b", - "code": "31806", - "data": { - "stops": [ - { - "id": "1806", - "code": "31806", - "data": { - "gtfs": { - "stop_id": "1806", - "stop_code": "31806", - "stop_name": "Grande Allée et Holmes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Holmes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4729740336413, - 45.4944436740493 - ] - } - }, - { - "id": "1850", - "code": "31850", - "data": { - "gtfs": { - "stop_id": "1850", - "stop_code": "31850", - "stop_name": "Grande Allée et Holmes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Holmes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4726065117596, - 45.4943843227536 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0511129644817 - }, - "name": "Grande Allée et Holmes", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472790273, - 45.494413998 - ] - }, - "is_frozen": false, - "integer_id": 473, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.470463, - 45.492875 - ] - }, - "id": 474, - "properties": { - "id": "9e73f7cd-aad7-4512-9984-973fdc775485", - "code": "31807", - "data": { - "stops": [ - { - "id": "1807", - "code": "31807", - "data": { - "gtfs": { - "stop_id": "1807", - "stop_code": "31807", - "stop_name": "Grande Allée et Charles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Charles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4706760553943, - 45.4929233715597 - ] - } - }, - { - "id": "1849", - "code": "31849", - "data": { - "gtfs": { - "stop_id": "1849", - "stop_code": "31849", - "stop_name": "Grande Allée et Charles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Charles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4702505079022, - 45.4928263563564 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0251212089574 - }, - "name": "Grande Allée et Charles", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.470463282, - 45.492874864 - ] - }, - "is_frozen": false, - "integer_id": 474, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466177, - 45.490064 - ] - }, - "id": 475, - "properties": { - "id": "3690607e-a520-4b5c-bb6d-5e6ec4c83aec", - "code": "31810", - "data": { - "stops": [ - { - "id": "1810", - "code": "31810", - "data": { - "gtfs": { - "stop_id": "1810", - "stop_code": "31810", - "stop_name": "Grande Allée et Raymond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Raymond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4664373266612, - 45.490131615845 - ] - } - }, - { - "id": "1846", - "code": "31846", - "data": { - "gtfs": { - "stop_id": "1846", - "stop_code": "31846", - "stop_name": "Grande Allée et ch. École Mgr-Parent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et ch. École Mgr-Parent", - "geography": { - "type": "Point", - "coordinates": [ - -73.465916211138, - 45.4899963048126 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9776581805243 - }, - "name": "Grande Allée et Raymond", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466176769, - 45.49006396 - ] - }, - "is_frozen": false, - "integer_id": 475, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462636, - 45.488016 - ] - }, - "id": 476, - "properties": { - "id": "f9cfcbf4-16de-4a93-8899-3d8d605b5d5a", - "code": "31812", - "data": { - "stops": [ - { - "id": "1812", - "code": "31812", - "data": { - "gtfs": { - "stop_id": "1812", - "stop_code": "31812", - "stop_name": "Grande Allée et Soucy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Soucy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4630639602322, - 45.4878839591449 - ] - } - }, - { - "id": "1845", - "code": "31845", - "data": { - "gtfs": { - "stop_id": "1845", - "stop_code": "31845", - "stop_name": "Grande Allée et Soucy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Soucy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4625828672334, - 45.4877873454393 - ] - } - }, - { - "id": "3651", - "code": "33651", - "data": { - "gtfs": { - "stop_id": "3651", - "stop_code": "33651", - "stop_name": "Soucy et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Soucy et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4622088787043, - 45.4882448567016 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9430838391008 - }, - "name": "Grande Allée et Soucy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462636419, - 45.488016101 - ] - }, - "is_frozen": false, - "integer_id": 476, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45711, - 45.483907 - ] - }, - "id": 477, - "properties": { - "id": "3fb067af-1fec-457b-80c2-3e3f8b141afb", - "code": "31814", - "data": { - "stops": [ - { - "id": "1814", - "code": "31814", - "data": { - "gtfs": { - "stop_id": "1814", - "stop_code": "31814", - "stop_name": "Grande Allée et Vallières", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Vallières", - "geography": { - "type": "Point", - "coordinates": [ - -73.4571104866884, - 45.4839073628915 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.873726582224 - }, - "name": "Grande Allée et Vallières", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457110487, - 45.483907363 - ] - }, - "is_frozen": false, - "integer_id": 477, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452576, - 45.480794 - ] - }, - "id": 478, - "properties": { - "id": "5f21960f-8919-4407-8a49-57c39947c4fe", - "code": "31815", - "data": { - "stops": [ - { - "id": "1815", - "code": "31815", - "data": { - "gtfs": { - "stop_id": "1815", - "stop_code": "31815", - "stop_name": "boul. Grande Allée et av. Albanie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et av. Albanie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4525764804309, - 45.4807944725167 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8211896571349 - }, - "name": "boul. Grande Allée et av. Albanie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45257648, - 45.480794473 - ] - }, - "is_frozen": false, - "integer_id": 478, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451071, - 45.479796 - ] - }, - "id": 479, - "properties": { - "id": "cc43f372-04e8-4c4c-b711-2e4159e3855d", - "code": "31816", - "data": { - "stops": [ - { - "id": "1816", - "code": "31816", - "data": { - "gtfs": { - "stop_id": "1816", - "stop_code": "31816", - "stop_name": "boul. Grande Allée et Alain", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et Alain", - "geography": { - "type": "Point", - "coordinates": [ - -73.4510705146028, - 45.4797955736156 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8043328454404 - }, - "name": "boul. Grande Allée et Alain", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451070515, - 45.479795574 - ] - }, - "is_frozen": false, - "integer_id": 479, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449765, - 45.478951 - ] - }, - "id": 480, - "properties": { - "id": "9b7055a8-adca-44c6-9935-6026756d4460", - "code": "31817", - "data": { - "stops": [ - { - "id": "1817", - "code": "31817", - "data": { - "gtfs": { - "stop_id": "1817", - "stop_code": "31817", - "stop_name": "boul. Grande Allée et Anthony", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et Anthony", - "geography": { - "type": "Point", - "coordinates": [ - -73.4497648423124, - 45.4789506365527 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7900748949818 - }, - "name": "boul. Grande Allée et Anthony", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449764842, - 45.478950637 - ] - }, - "is_frozen": false, - "integer_id": 480, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.447853, - 45.477641 - ] - }, - "id": 481, - "properties": { - "id": "76ff8292-f41f-4d17-998d-6dd3d2c32288", - "code": "31818", - "data": { - "stops": [ - { - "id": "1818", - "code": "31818", - "data": { - "gtfs": { - "stop_id": "1818", - "stop_code": "31818", - "stop_name": "boul. Grande Allée et Aline", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et Aline", - "geography": { - "type": "Point", - "coordinates": [ - -73.4478528813783, - 45.4776414067562 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7679834517635 - }, - "name": "boul. Grande Allée et Aline", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447852881, - 45.477641407 - ] - }, - "is_frozen": false, - "integer_id": 481, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445187, - 45.476041 - ] - }, - "id": 482, - "properties": { - "id": "9f964071-2f19-4d3c-8325-c12fdde1c69e", - "code": "31819", - "data": { - "stops": [ - { - "id": "1819", - "code": "31819", - "data": { - "gtfs": { - "stop_id": "1819", - "stop_code": "31819", - "stop_name": "boul. Grande Allée et Redmond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et Redmond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4454300406466, - 45.4760198014052 - ] - } - }, - { - "id": "1839", - "code": "31839", - "data": { - "gtfs": { - "stop_id": "1839", - "stop_code": "31839", - "stop_name": "Grande Allée et Redmond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Redmond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4449434407865, - 45.4760623421494 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7409820833406 - }, - "name": "boul. Grande Allée et Redmond", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445186741, - 45.476041072 - ] - }, - "is_frozen": false, - "integer_id": 482, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443535, - 45.474923 - ] - }, - "id": 483, - "properties": { - "id": "e80498a8-505d-4215-ba07-7582f8783d8e", - "code": "31820", - "data": { - "stops": [ - { - "id": "1820", - "code": "31820", - "data": { - "gtfs": { - "stop_id": "1820", - "stop_code": "31820", - "stop_name": "boul. Grande Allée et Orchard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et Orchard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4437719690212, - 45.4748880474638 - ] - } - }, - { - "id": "1838", - "code": "31838", - "data": { - "gtfs": { - "stop_id": "1838", - "stop_code": "31838", - "stop_name": "Grande Allée et Orchard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Orchard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4432972383071, - 45.474958337442 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7221222011221 - }, - "name": "boul. Grande Allée et Orchard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443534604, - 45.474923192 - ] - }, - "is_frozen": false, - "integer_id": 483, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441234, - 45.473153 - ] - }, - "id": 484, - "properties": { - "id": "014d61e3-acfc-41f6-b78a-5c2178c073b1", - "code": "31821", - "data": { - "stops": [ - { - "id": "1821", - "code": "31821", - "data": { - "gtfs": { - "stop_id": "1821", - "stop_code": "31821", - "stop_name": "boul. Grande Allée et boul. Milan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et boul. Milan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4412344965765, - 45.4731532848716 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6922641664861 - }, - "name": "boul. Grande Allée et boul. Milan", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441234497, - 45.473153285 - ] - }, - "is_frozen": false, - "integer_id": 484, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.435409, - 45.469458 - ] - }, - "id": 485, - "properties": { - "id": "14e293a6-352a-4156-8578-66d0b5bdcc1f", - "code": "31823", - "data": { - "stops": [ - { - "id": "1823", - "code": "31823", - "data": { - "gtfs": { - "stop_id": "1823", - "stop_code": "31823", - "stop_name": "boul. Grande Allée et Canon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et Canon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4356519591684, - 45.4694384158526 - ] - } - }, - { - "id": "4443", - "code": "34443", - "data": { - "gtfs": { - "stop_id": "4443", - "stop_code": "34443", - "stop_name": "Grande Allée et Canon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Canon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4351655895996, - 45.4694781273924 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6299388838486 - }, - "name": "boul. Grande Allée et Canon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.435408774, - 45.469458272 - ] - }, - "is_frozen": false, - "integer_id": 485, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.434589, - 45.468733 - ] - }, - "id": 486, - "properties": { - "id": "62558b4d-75af-4b04-8040-a30de5a89658", - "code": "31824", - "data": { - "stops": [ - { - "id": "1824", - "code": "31824", - "data": { - "gtfs": { - "stop_id": "1824", - "stop_code": "31824", - "stop_name": "boul. Grande Allée et av. Baudelaire", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et av. Baudelaire", - "geography": { - "type": "Point", - "coordinates": [ - -73.4345885457135, - 45.4687326969387 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6177017403542 - }, - "name": "boul. Grande Allée et av. Baudelaire", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.434588546, - 45.468732697 - ] - }, - "is_frozen": false, - "integer_id": 486, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.430682, - 45.466031 - ] - }, - "id": 487, - "properties": { - "id": "e31ab3e8-c317-4996-b902-f3d69835ee3a", - "code": "31826", - "data": { - "stops": [ - { - "id": "1826", - "code": "31826", - "data": { - "gtfs": { - "stop_id": "1826", - "stop_code": "31826", - "stop_name": "boul. Grande Allée et boul. Chevrier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et boul. Chevrier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4308095179803, - 45.4662738232837 - ] - } - }, - { - "id": "5287", - "code": "35287", - "data": { - "gtfs": { - "stop_id": "5287", - "stop_code": "35287", - "stop_name": "boul. Chevrier et civique 5501", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Chevrier et civique 5501", - "geography": { - "type": "Point", - "coordinates": [ - -73.4310531872616, - 45.4657883293719 - ] - } - }, - { - "id": "5918", - "code": "30796", - "data": { - "gtfs": { - "stop_id": "5918", - "stop_code": "30796", - "stop_name": "boul. Grande Allée et boul. Chevrier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et boul. Chevrier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4303115732617, - 45.4659056785563 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5721418172958 - }, - "name": "boul. Grande Allée et boul. Chevrier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.43068238, - 45.466031076 - ] - }, - "is_frozen": false, - "integer_id": 487, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.426766, - 45.463582 - ] - }, - "id": 488, - "properties": { - "id": "988183db-88f1-47cb-87bf-b2a03dd4a38d", - "code": "31827", - "data": { - "stops": [ - { - "id": "1827", - "code": "31827", - "data": { - "gtfs": { - "stop_id": "1827", - "stop_code": "31827", - "stop_name": "boul. Grande Allée et Albert-Millichamp", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et Albert-Millichamp", - "geography": { - "type": "Point", - "coordinates": [ - -73.426765912102, - 45.4635815869592 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5308394295599 - }, - "name": "boul. Grande Allée et Albert-Millichamp", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.426765912, - 45.463581587 - ] - }, - "is_frozen": false, - "integer_id": 488, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.424096, - 45.462758 - ] - }, - "id": 489, - "properties": { - "id": "d739fe08-5298-4356-bd9e-c48a7fee16a1", - "code": "31828", - "data": { - "stops": [ - { - "id": "1828", - "code": "31828", - "data": { - "gtfs": { - "stop_id": "1828", - "stop_code": "31828", - "stop_name": "boul. Westley et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Westley et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4238815107359, - 45.4628095571272 - ] - } - }, - { - "id": "2103", - "code": "32103", - "data": { - "gtfs": { - "stop_id": "2103", - "stop_code": "32103", - "stop_name": "boul. Westley et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Westley et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4243108347429, - 45.4627057874246 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5169480732376 - }, - "name": "boul. Westley et Grande Allée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.424096173, - 45.462757672 - ] - }, - "is_frozen": false, - "integer_id": 489, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.421317, - 45.464808 - ] - }, - "id": 490, - "properties": { - "id": "2bd6df5e-3e44-4ba6-82aa-fe2b08c708b1", - "code": "31829", - "data": { - "stops": [ - { - "id": "1829", - "code": "31829", - "data": { - "gtfs": { - "stop_id": "1829", - "stop_code": "31829", - "stop_name": "boul. Westley et av. Barlow", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Westley et av. Barlow", - "geography": { - "type": "Point", - "coordinates": [ - -73.4213465903456, - 45.464684025491 - ] - } - }, - { - "id": "2100", - "code": "32100", - "data": { - "gtfs": { - "stop_id": "2100", - "stop_code": "32100", - "stop_name": "boul. Westley et av. Barlow", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Westley et av. Barlow", - "geography": { - "type": "Point", - "coordinates": [ - -73.4212873392236, - 45.4649310598408 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5515103854755 - }, - "name": "boul. Westley et av. Barlow", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.421316965, - 45.464807543 - ] - }, - "is_frozen": false, - "integer_id": 490, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.426145, - 45.463512 - ] - }, - "id": 491, - "properties": { - "id": "2f104875-795a-4778-a419-276272abfb07", - "code": "31832", - "data": { - "stops": [ - { - "id": "1832", - "code": "31832", - "data": { - "gtfs": { - "stop_id": "1832", - "stop_code": "31832", - "stop_name": "Grande Allée et Albert-Millichamp", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Albert-Millichamp", - "geography": { - "type": "Point", - "coordinates": [ - -73.4261454976512, - 45.4635119567076 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5296654318213 - }, - "name": "Grande Allée et Albert-Millichamp", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.426145498, - 45.463511957 - ] - }, - "is_frozen": false, - "integer_id": 491, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.43071, - 45.466584 - ] - }, - "id": 492, - "properties": { - "id": "ba86f45f-9fb5-4525-a50b-a876919fd012", - "code": "31833", - "data": { - "stops": [ - { - "id": "1833", - "code": "31833", - "data": { - "gtfs": { - "stop_id": "1833", - "stop_code": "31833", - "stop_name": "Grande Allée et Ramsay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Ramsay", - "geography": { - "type": "Point", - "coordinates": [ - -73.430710342427, - 45.4665840499407 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5814665996593 - }, - "name": "Grande Allée et Ramsay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.430710342, - 45.46658405 - ] - }, - "is_frozen": false, - "integer_id": 492, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.43434, - 45.468604 - ] - }, - "id": 493, - "properties": { - "id": "988c86da-04eb-4067-b650-f13c447b17e7", - "code": "31835", - "data": { - "stops": [ - { - "id": "1835", - "code": "31835", - "data": { - "gtfs": { - "stop_id": "1835", - "stop_code": "31835", - "stop_name": "Grande Allée et Jonergin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Jonergin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4340062569148, - 45.468731535053 - ] - } - }, - { - "id": "2049", - "code": "32049", - "data": { - "gtfs": { - "stop_id": "2049", - "stop_code": "32049", - "stop_name": "av. Baudelaire et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Baudelaire et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4343675079573, - 45.4685223754437 - ] - } - }, - { - "id": "2101", - "code": "32101", - "data": { - "gtfs": { - "stop_id": "2101", - "stop_code": "32101", - "stop_name": "av. Baudelaire et boul. Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Baudelaire et boul. Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4346740496154, - 45.468476412331 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6155308188157 - }, - "name": "Grande Allée et Jonergin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.434340153, - 45.468603974 - ] - }, - "is_frozen": false, - "integer_id": 493, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.43795, - 45.471128 - ] - }, - "id": 494, - "properties": { - "id": "2bad5681-fb12-4d0c-bafa-ff05b22b54b7", - "code": "31837", - "data": { - "stops": [ - { - "id": "1837", - "code": "31837", - "data": { - "gtfs": { - "stop_id": "1837", - "stop_code": "31837", - "stop_name": "Grande Allée et Boisvert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Boisvert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4376655965972, - 45.4711349526649 - ] - } - }, - { - "id": "4442", - "code": "34442", - "data": { - "gtfs": { - "stop_id": "4442", - "stop_code": "34442", - "stop_name": "boul. Grande Allée et Boisvert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et Boisvert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4382340929297, - 45.4711217844537 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6581075854392 - }, - "name": "Grande Allée et Boisvert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437949845, - 45.471128369 - ] - }, - "is_frozen": false, - "integer_id": 494, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446934, - 45.477427 - ] - }, - "id": 495, - "properties": { - "id": "c4061c94-e615-4bca-b219-1ff6ea9657d0", - "code": "31840", - "data": { - "stops": [ - { - "id": "1840", - "code": "31840", - "data": { - "gtfs": { - "stop_id": "1840", - "stop_code": "31840", - "stop_name": "Grande Allée et de la Légion", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et de la Légion", - "geography": { - "type": "Point", - "coordinates": [ - -73.4471279477773, - 45.4775574165323 - ] - } - }, - { - "id": "4436", - "code": "34436", - "data": { - "gtfs": { - "stop_id": "4436", - "stop_code": "34436", - "stop_name": "Grande Allée et Baillargeon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Baillargeon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4467407261588, - 45.4772965257503 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7643652863691 - }, - "name": "Grande Allée et de la Légion", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446934337, - 45.477426971 - ] - }, - "is_frozen": false, - "integer_id": 495, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448573, - 45.478555 - ] - }, - "id": 496, - "properties": { - "id": "89553e99-6867-4296-935e-718bb768cb73", - "code": "31841", - "data": { - "stops": [ - { - "id": "1841", - "code": "31841", - "data": { - "gtfs": { - "stop_id": "1841", - "stop_code": "31841", - "stop_name": "Grande Allée et Forester", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Forester", - "geography": { - "type": "Point", - "coordinates": [ - -73.4485726801819, - 45.4785551722531 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7834018102063 - }, - "name": "Grande Allée et Forester", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44857268, - 45.478555172 - ] - }, - "is_frozen": false, - "integer_id": 496, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450777, - 45.480024 - ] - }, - "id": 497, - "properties": { - "id": "72a48bdf-3a35-4f3b-8d05-e465faf044cf", - "code": "31842", - "data": { - "stops": [ - { - "id": "1842", - "code": "31842", - "data": { - "gtfs": { - "stop_id": "1842", - "stop_code": "31842", - "stop_name": "Grande Allée et Perlini", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Perlini", - "geography": { - "type": "Point", - "coordinates": [ - -73.4507769362585, - 45.4800236351086 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8081813859899 - }, - "name": "Grande Allée et Perlini", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450776936, - 45.480023635 - ] - }, - "is_frozen": false, - "integer_id": 497, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452465, - 45.481129 - ] - }, - "id": 498, - "properties": { - "id": "70af9f63-28e4-474e-896b-5462b7252980", - "code": "31843", - "data": { - "stops": [ - { - "id": "1843", - "code": "31843", - "data": { - "gtfs": { - "stop_id": "1843", - "stop_code": "31843", - "stop_name": "Grande Allée et Bellevue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Bellevue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4524646132345, - 45.4811294433792 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8268426055578 - }, - "name": "Grande Allée et Bellevue", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452464613, - 45.481129443 - ] - }, - "is_frozen": false, - "integer_id": 498, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513277, - 45.519812 - ] - }, - "id": 499, - "properties": { - "id": "a4d70496-3fc5-40c1-865f-08991bdf0a19", - "code": "31857", - "data": { - "stops": [ - { - "id": "1857", - "code": "31857", - "data": { - "gtfs": { - "stop_id": "1857", - "stop_code": "31857", - "stop_name": "Saint-Laurent ouest et La Salle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et La Salle", - "geography": { - "type": "Point", - "coordinates": [ - -73.5132771680188, - 45.5198123250358 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4803255373893 - }, - "name": "Saint-Laurent ouest et La Salle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.513277168, - 45.519812325 - ] - }, - "is_frozen": false, - "integer_id": 499, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513258, - 45.52212 - ] - }, - "id": 500, - "properties": { - "id": "3e3330f1-b4ce-44de-ae6a-efb45bab99e2", - "code": "31858", - "data": { - "stops": [ - { - "id": "1858", - "code": "31858", - "data": { - "gtfs": { - "stop_id": "1858", - "stop_code": "31858", - "stop_name": "Saint-Laurent ouest et Sainte-Hélène", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Sainte-Hélène", - "geography": { - "type": "Point", - "coordinates": [ - -73.5132577095325, - 45.5221204173838 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5193590246181 - }, - "name": "Saint-Laurent ouest et Sainte-Hélène", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.51325771, - 45.522120417 - ] - }, - "is_frozen": false, - "integer_id": 500, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.510239, - 45.521434 - ] - }, - "id": 501, - "properties": { - "id": "7fd1ec61-df9e-447b-b9c0-3bcabad31dd7", - "code": "31859", - "data": { - "stops": [ - { - "id": "1859", - "code": "31859", - "data": { - "gtfs": { - "stop_id": "1859", - "stop_code": "31859", - "stop_name": "Sainte-Hélène et Goupil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Goupil", - "geography": { - "type": "Point", - "coordinates": [ - -73.5105253418188, - 45.5214144821438 - ] - } - }, - { - "id": "1920", - "code": "31920", - "data": { - "gtfs": { - "stop_id": "1920", - "stop_code": "31920", - "stop_name": "Sainte-Hélène et Goupil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Goupil", - "geography": { - "type": "Point", - "coordinates": [ - -73.5099521837803, - 45.5214537062562 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5077517210194 - }, - "name": "Sainte-Hélène et Goupil", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.510238763, - 45.521434094 - ] - }, - "is_frozen": false, - "integer_id": 501, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.505544, - 45.520091 - ] - }, - "id": 502, - "properties": { - "id": "83599e34-3fb9-44c4-9b7b-2f6d8596fb9d", - "code": "31861", - "data": { - "stops": [ - { - "id": "1861", - "code": "31861", - "data": { - "gtfs": { - "stop_id": "1861", - "stop_code": "31861", - "stop_name": "Sainte-Hélène et Joséphine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Joséphine", - "geography": { - "type": "Point", - "coordinates": [ - -73.5057021856531, - 45.5200919048237 - ] - } - }, - { - "id": "1918", - "code": "31918", - "data": { - "gtfs": { - "stop_id": "1918", - "stop_code": "31918", - "stop_name": "Sainte-Hélène et Joséphine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Joséphine", - "geography": { - "type": "Point", - "coordinates": [ - -73.5053867012705, - 45.5200902743283 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4850396425408 - }, - "name": "Sainte-Hélène et Joséphine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.505544443, - 45.52009109 - ] - }, - "is_frozen": false, - "integer_id": 502, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.502224, - 45.518985 - ] - }, - "id": 503, - "properties": { - "id": "54cba115-6a75-4b65-8019-b2b5de7a3947", - "code": "31862", - "data": { - "stops": [ - { - "id": "1862", - "code": "31862", - "data": { - "gtfs": { - "stop_id": "1862", - "stop_code": "31862", - "stop_name": "Sainte-Hélène et Albani", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Albani", - "geography": { - "type": "Point", - "coordinates": [ - -73.5023868295374, - 45.5189613025346 - ] - } - }, - { - "id": "1917", - "code": "31917", - "data": { - "gtfs": { - "stop_id": "1917", - "stop_code": "31917", - "stop_name": "Sainte-Hélène et Albani", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Albani", - "geography": { - "type": "Point", - "coordinates": [ - -73.5020604054054, - 45.519009391866 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4663411860644 - }, - "name": "Sainte-Hélène et Albani", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.502223617, - 45.518985347 - ] - }, - "is_frozen": false, - "integer_id": 503, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.5, - 45.518258 - ] - }, - "id": 504, - "properties": { - "id": "05287baf-76e5-4533-8eef-0902c45b01ae", - "code": "31863", - "data": { - "stops": [ - { - "id": "1863", - "code": "31863", - "data": { - "gtfs": { - "stop_id": "1863", - "stop_code": "31863", - "stop_name": "Sainte-Hélène et Saint-Édouard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Saint-Édouard", - "geography": { - "type": "Point", - "coordinates": [ - -73.5001395237808, - 45.5182235661024 - ] - } - }, - { - "id": "1916", - "code": "31916", - "data": { - "gtfs": { - "stop_id": "1916", - "stop_code": "31916", - "stop_name": "Sainte-Hélène et Saint-Édouard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Saint-Édouard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4998599998888, - 45.5182923661158 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.454041542103 - }, - "name": "Sainte-Hélène et Saint-Édouard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.499999762, - 45.518257966 - ] - }, - "is_frozen": false, - "integer_id": 504, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.497734, - 45.517625 - ] - }, - "id": 505, - "properties": { - "id": "d98b2f35-c33e-4d89-853d-ac91e28ea62b", - "code": "31864", - "data": { - "stops": [ - { - "id": "1864", - "code": "31864", - "data": { - "gtfs": { - "stop_id": "1864", - "stop_code": "31864", - "stop_name": "Sainte-Hélène et ch. du Coteau-Rouge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et ch. du Coteau-Rouge", - "geography": { - "type": "Point", - "coordinates": [ - -73.4979073610015, - 45.5174953464493 - ] - } - }, - { - "id": "1915", - "code": "31915", - "data": { - "gtfs": { - "stop_id": "1915", - "stop_code": "31915", - "stop_name": "Sainte-Hélène et ch. du Coteau-Rouge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et ch. du Coteau-Rouge", - "geography": { - "type": "Point", - "coordinates": [ - -73.4975613972015, - 45.5175492769411 - ] - } - }, - { - "id": "4469", - "code": "34469", - "data": { - "gtfs": { - "stop_id": "4469", - "stop_code": "34469", - "stop_name": "ch. du Coteau-Rouge et Sainte-Hélène", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Sainte-Hélène", - "geography": { - "type": "Point", - "coordinates": [ - -73.4976293412557, - 45.5173984227704 - ] - } - }, - { - "id": "4478", - "code": "34478", - "data": { - "gtfs": { - "stop_id": "4478", - "stop_code": "34478", - "stop_name": "ch. du Coteau-Rouge et Sainte-Hélène", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Sainte-Hélène", - "geography": { - "type": "Point", - "coordinates": [ - -73.4977490602351, - 45.5178523858362 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4433456225379 - }, - "name": "Sainte-Hélène et ch. du Coteau-Rouge", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.497734379, - 45.517625404 - ] - }, - "is_frozen": false, - "integer_id": 505, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.493895, - 45.516283 - ] - }, - "id": 506, - "properties": { - "id": "827a066d-6bdf-44f6-98c0-8d1fbe6c40c9", - "code": "31865", - "data": { - "stops": [ - { - "id": "1865", - "code": "31865", - "data": { - "gtfs": { - "stop_id": "1865", - "stop_code": "31865", - "stop_name": "Sainte-Hélène et Front", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Front", - "geography": { - "type": "Point", - "coordinates": [ - -73.4940542083591, - 45.516263070518 - ] - } - }, - { - "id": "1914", - "code": "31914", - "data": { - "gtfs": { - "stop_id": "1914", - "stop_code": "31914", - "stop_name": "Sainte-Hélène et Front", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Front", - "geography": { - "type": "Point", - "coordinates": [ - -73.4937350152131, - 45.5163024134002 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4206482454384 - }, - "name": "Sainte-Hélène et Front", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493895, - 45.516283 - ] - }, - "is_frozen": false, - "integer_id": 506, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490857, - 45.515265 - ] - }, - "id": 507, - "properties": { - "id": "315b8823-6c3a-493b-9af5-7325cbc48096", - "code": "31866", - "data": { - "stops": [ - { - "id": "1866", - "code": "31866", - "data": { - "gtfs": { - "stop_id": "1866", - "stop_code": "31866", - "stop_name": "Sainte-Hélène et boul. Curé-Poirier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et boul. Curé-Poirier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4910514774775, - 45.5152775227567 - ] - } - }, - { - "id": "3088", - "code": "33088", - "data": { - "gtfs": { - "stop_id": "3088", - "stop_code": "33088", - "stop_name": "boul. Curé-Poirier ouest et Sainte-Hélène", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Sainte-Hélène", - "geography": { - "type": "Point", - "coordinates": [ - -73.4908014645173, - 45.5151274723911 - ] - } - }, - { - "id": "3851", - "code": "33851", - "data": { - "gtfs": { - "stop_id": "3851", - "stop_code": "33851", - "stop_name": "boul. Curé-Poirier ouest et Sainte-Hélène", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Sainte-Hélène", - "geography": { - "type": "Point", - "coordinates": [ - -73.4908862307135, - 45.5154030105279 - ] - } - }, - { - "id": "4530", - "code": "34530", - "data": { - "gtfs": { - "stop_id": "4530", - "stop_code": "34530", - "stop_name": "Sainte-Hélène et boul. Curé-Poirier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et boul. Curé-Poirier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4906634905796, - 45.5153062380278 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.403441038293 - }, - "name": "Sainte-Hélène et boul. Curé-Poirier ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490857484, - 45.515265241 - ] - }, - "is_frozen": false, - "integer_id": 507, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.487749, - 45.514273 - ] - }, - "id": 508, - "properties": { - "id": "64ba3e91-9bea-4655-ac42-4f3f1a14955c", - "code": "31867", - "data": { - "stops": [ - { - "id": "1867", - "code": "31867", - "data": { - "gtfs": { - "stop_id": "1867", - "stop_code": "31867", - "stop_name": "Sainte-Hélène et Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4879082730632, - 45.5142413865191 - ] - } - }, - { - "id": "1912", - "code": "31912", - "data": { - "gtfs": { - "stop_id": "1912", - "stop_code": "31912", - "stop_name": "Sainte-Hélène et Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.487589265949, - 45.5143053967072 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3866727780488 - }, - "name": "Sainte-Hélène et Hubert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48774877, - 45.514273392 - ] - }, - "is_frozen": false, - "integer_id": 508, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.48468, - 45.51327 - ] - }, - "id": 509, - "properties": { - "id": "5a82a520-52b6-417e-972a-f9bf56fb4f33", - "code": "31868", - "data": { - "stops": [ - { - "id": "1868", - "code": "31868", - "data": { - "gtfs": { - "stop_id": "1868", - "stop_code": "31868", - "stop_name": "Sainte-Hélène et Beauregard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Beauregard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4848525800055, - 45.5132518869094 - ] - } - }, - { - "id": "1911", - "code": "31911", - "data": { - "gtfs": { - "stop_id": "1911", - "stop_code": "31911", - "stop_name": "Sainte-Hélène et Beauregard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Beauregard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4845077698478, - 45.5132881420684 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3697104993129 - }, - "name": "Sainte-Hélène et Beauregard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.484680175, - 45.513270014 - ] - }, - "is_frozen": false, - "integer_id": 509, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481597, - 45.512236 - ] - }, - "id": 510, - "properties": { - "id": "e1825eb4-cef2-4f98-872f-0d169be63859", - "code": "31869", - "data": { - "stops": [ - { - "id": "1869", - "code": "31869", - "data": { - "gtfs": { - "stop_id": "1869", - "stop_code": "31869", - "stop_name": "Sainte-Hélène et boul. Nobert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et boul. Nobert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4817610339117, - 45.5122458523644 - ] - } - }, - { - "id": "1910", - "code": "31910", - "data": { - "gtfs": { - "stop_id": "1910", - "stop_code": "31910", - "stop_name": "Sainte-Hélène et boul. Nobert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et boul. Nobert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4814319998355, - 45.5122894371717 - ] - } - }, - { - "id": "3790", - "code": "33790", - "data": { - "gtfs": { - "stop_id": "3790", - "stop_code": "33790", - "stop_name": "boul. Nobert et Sainte-Hélène", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Sainte-Hélène", - "geography": { - "type": "Point", - "coordinates": [ - -73.4815572052521, - 45.5121089690308 - ] - } - }, - { - "id": "3997", - "code": "33997", - "data": { - "gtfs": { - "stop_id": "3997", - "stop_code": "33997", - "stop_name": "boul. Nobert et Sainte-Hélène", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Nobert et Sainte-Hélène", - "geography": { - "type": "Point", - "coordinates": [ - -73.4816364049013, - 45.5123629908688 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.352230913684 - }, - "name": "Sainte-Hélène et boul. Nobert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481596517, - 45.51223598 - ] - }, - "is_frozen": false, - "integer_id": 510, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478494, - 45.511257 - ] - }, - "id": 511, - "properties": { - "id": "6c122298-4ea6-41ee-91e8-bb29cb41a320", - "code": "31870", - "data": { - "stops": [ - { - "id": "1870", - "code": "31870", - "data": { - "gtfs": { - "stop_id": "1870", - "stop_code": "31870", - "stop_name": "Sainte-Hélène et Champlain", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Champlain", - "geography": { - "type": "Point", - "coordinates": [ - -73.4787031733887, - 45.5112532171867 - ] - } - }, - { - "id": "1909", - "code": "31909", - "data": { - "gtfs": { - "stop_id": "1909", - "stop_code": "31909", - "stop_name": "Sainte-Hélène et Champlain", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Champlain", - "geography": { - "type": "Point", - "coordinates": [ - -73.4782850639251, - 45.5112614872027 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3356888027937 - }, - "name": "Sainte-Hélène et Champlain", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.478494119, - 45.511257352 - ] - }, - "is_frozen": false, - "integer_id": 511, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475424, - 45.510257 - ] - }, - "id": 512, - "properties": { - "id": "5b9b511c-8b21-4b1d-8a0b-e6224e816d26", - "code": "31871", - "data": { - "stops": [ - { - "id": "1871", - "code": "31871", - "data": { - "gtfs": { - "stop_id": "1871", - "stop_code": "31871", - "stop_name": "Sainte-Hélène et Maisonneuve", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Maisonneuve", - "geography": { - "type": "Point", - "coordinates": [ - -73.4756061653041, - 45.5102408867711 - ] - } - }, - { - "id": "3802", - "code": "33802", - "data": { - "gtfs": { - "stop_id": "3802", - "stop_code": "33802", - "stop_name": "Sainte-Hélène et Maisonneuve", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Maisonneuve", - "geography": { - "type": "Point", - "coordinates": [ - -73.475241679619, - 45.5102724809894 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3187750234471 - }, - "name": "Sainte-Hélène et Maisonneuve", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475423922, - 45.510256684 - ] - }, - "is_frozen": false, - "integer_id": 512, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.472433, - 45.509208 - ] - }, - "id": 513, - "properties": { - "id": "777c347b-29df-4aab-9968-5fdfd62ed61a", - "code": "31872", - "data": { - "stops": [ - { - "id": "1872", - "code": "31872", - "data": { - "gtfs": { - "stop_id": "1872", - "stop_code": "31872", - "stop_name": "Sainte-Hélène et Papineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Papineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4724330241005, - 45.5092082497085 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3010548362624 - }, - "name": "Sainte-Hélène et Papineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472433024, - 45.50920825 - ] - }, - "is_frozen": false, - "integer_id": 513, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466228, - 45.515041 - ] - }, - "id": 514, - "properties": { - "id": "b4ab1a55-9db4-4bd2-a050-c57df69f95bf", - "code": "31873", - "data": { - "stops": [ - { - "id": "1873", - "code": "31873", - "data": { - "gtfs": { - "stop_id": "1873", - "stop_code": "31873", - "stop_name": "boul. Jacques-Cartier ouest et de Lyon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier ouest et de Lyon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4660589795652, - 45.5152863546306 - ] - } - }, - { - "id": "3225", - "code": "33225", - "data": { - "gtfs": { - "stop_id": "3225", - "stop_code": "33225", - "stop_name": "boul. Jacques-Cartier ouest et David", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier ouest et David", - "geography": { - "type": "Point", - "coordinates": [ - -73.466397653625, - 45.5147960413407 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3996532769394 - }, - "name": "boul. Jacques-Cartier ouest et de Lyon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466228317, - 45.515041198 - ] - }, - "is_frozen": false, - "integer_id": 514, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463888, - 45.519987 - ] - }, - "id": 515, - "properties": { - "id": "146e7d43-1e02-4f93-ac9a-e66dd29d3576", - "code": "31874", - "data": { - "stops": [ - { - "id": "1874", - "code": "31874", - "data": { - "gtfs": { - "stop_id": "1874", - "stop_code": "31874", - "stop_name": "boul. Jacques-Cartier ouest et Deschamps", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier ouest et Deschamps", - "geography": { - "type": "Point", - "coordinates": [ - -73.463613724404, - 45.5199152824487 - ] - } - }, - { - "id": "1902", - "code": "31902", - "data": { - "gtfs": { - "stop_id": "1902", - "stop_code": "31902", - "stop_name": "boul. Jacques-Cartier ouest et Denonville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier ouest et Denonville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4641628497608, - 45.5200594304965 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4832854221811 - }, - "name": "boul. Jacques-Cartier ouest et Deschamps", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463888287, - 45.519987356 - ] - }, - "is_frozen": false, - "integer_id": 515, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46382, - 45.521686 - ] - }, - "id": 516, - "properties": { - "id": "a5ca0f69-bb6f-4ef0-aaaa-1498b5ff9d00", - "code": "31875", - "data": { - "stops": [ - { - "id": "1875", - "code": "31875", - "data": { - "gtfs": { - "stop_id": "1875", - "stop_code": "31875", - "stop_name": "boul. Jacques-Cartier ouest et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier ouest et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4639562434838, - 45.5216250874626 - ] - } - }, - { - "id": "3575", - "code": "33575", - "data": { - "gtfs": { - "stop_id": "3575", - "stop_code": "33575", - "stop_name": "ch. de Chambly et boul. Jacques-Cartier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Jacques-Cartier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4636838294526, - 45.5217459171937 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5120035609685 - }, - "name": "boul. Jacques-Cartier ouest et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463820036, - 45.521685502 - ] - }, - "is_frozen": false, - "integer_id": 516, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464272, - 45.522687 - ] - }, - "id": 517, - "properties": { - "id": "cc82fbc3-882e-47d6-b5d3-94ced115eefc", - "code": "31876", - "data": { - "stops": [ - { - "id": "1876", - "code": "31876", - "data": { - "gtfs": { - "stop_id": "1876", - "stop_code": "31876", - "stop_name": "boul. Jacques-Cartier est et Pasteur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et Pasteur", - "geography": { - "type": "Point", - "coordinates": [ - -73.4642715902569, - 45.5226869977339 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5289415313164 - }, - "name": "boul. Jacques-Cartier est et Pasteur", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46427159, - 45.522686998 - ] - }, - "is_frozen": false, - "integer_id": 517, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465092, - 45.526375 - ] - }, - "id": 518, - "properties": { - "id": "a64e19cc-ca7c-47f1-9793-ecfc50e76be9", - "code": "31877", - "data": { - "stops": [ - { - "id": "1877", - "code": "31877", - "data": { - "gtfs": { - "stop_id": "1877", - "stop_code": "31877", - "stop_name": "boul. Jacques-Cartier est et Périgny", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et Périgny", - "geography": { - "type": "Point", - "coordinates": [ - -73.4647534132951, - 45.5262464640083 - ] - } - }, - { - "id": "1900", - "code": "31900", - "data": { - "gtfs": { - "stop_id": "1900", - "stop_code": "31900", - "stop_name": "boul. Jacques-Cartier est et Gamache", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et Gamache", - "geography": { - "type": "Point", - "coordinates": [ - -73.4651777070877, - 45.5265025975277 - ] - } - }, - { - "id": "5798", - "code": "30567", - "data": { - "gtfs": { - "stop_id": "5798", - "stop_code": "30567", - "stop_name": "Gamache et boul. Jacques-Cartier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gamache et boul. Jacques-Cartier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4654296321478, - 45.5263674353934 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5913152608044 - }, - "name": "boul. Jacques-Cartier est et Périgny", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465091523, - 45.526374531 - ] - }, - "is_frozen": false, - "integer_id": 518, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463557, - 45.528451 - ] - }, - "id": 519, - "properties": { - "id": "6beffd5a-a5e7-4808-863a-90505f6172be", - "code": "31878", - "data": { - "stops": [ - { - "id": "1878", - "code": "31878", - "data": { - "gtfs": { - "stop_id": "1878", - "stop_code": "31878", - "stop_name": "boul. Jacques-Cartier est et civique 310", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et civique 310", - "geography": { - "type": "Point", - "coordinates": [ - -73.4635565803794, - 45.5284514917121 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6264518896676 - }, - "name": "boul. Jacques-Cartier est et civique 310", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46355658, - 45.528451492 - ] - }, - "is_frozen": false, - "integer_id": 519, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457217, - 45.536246 - ] - }, - "id": 520, - "properties": { - "id": "c24ac61d-1b21-4358-b45f-8dd4921fc769", - "code": "31882", - "data": { - "stops": [ - { - "id": "1882", - "code": "31882", - "data": { - "gtfs": { - "stop_id": "1882", - "stop_code": "31882", - "stop_name": "boul. Jacques-Cartier est et CLSC SIMONNE-MONET-CHARTRAND", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et CLSC SIMONNE-MONET-CHARTRAND", - "geography": { - "type": "Point", - "coordinates": [ - -73.4572166149503, - 45.5362455028995 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7583400194338 - }, - "name": "boul. Jacques-Cartier est et CLSC SIMONNE-MONET-CHARTRAND", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457216615, - 45.536245503 - ] - }, - "is_frozen": false, - "integer_id": 520, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45624, - 45.540373 - ] - }, - "id": 521, - "properties": { - "id": "751cfe1b-5ff9-4e3b-b5c1-b6ed495eb14b", - "code": "31883", - "data": { - "stops": [ - { - "id": "1883", - "code": "31883", - "data": { - "gtfs": { - "stop_id": "1883", - "stop_code": "31883", - "stop_name": "boul. Jacques-Cartier est et civique 1610", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et civique 1610", - "geography": { - "type": "Point", - "coordinates": [ - -73.4559920312875, - 45.5402669530053 - ] - } - }, - { - "id": "1893", - "code": "31893", - "data": { - "gtfs": { - "stop_id": "1893", - "stop_code": "31893", - "stop_name": "boul. Jacques-Cartier est et civique 1615", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et civique 1615", - "geography": { - "type": "Point", - "coordinates": [ - -73.4564876824691, - 45.5404787440751 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8282037837425 - }, - "name": "boul. Jacques-Cartier est et civique 1610", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456239857, - 45.540372849 - ] - }, - "is_frozen": false, - "integer_id": 521, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455633, - 45.542468 - ] - }, - "id": 522, - "properties": { - "id": "1254d090-1d68-478c-a4fc-972cd246c948", - "code": "31884", - "data": { - "stops": [ - { - "id": "1884", - "code": "31884", - "data": { - "gtfs": { - "stop_id": "1884", - "stop_code": "31884", - "stop_name": "boul. Jacques-Cartier est et ch. Du Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et ch. Du Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4556334685916, - 45.5424678569219 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8636718893656 - }, - "name": "boul. Jacques-Cartier est et ch. Du Tremblay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455633469, - 45.542467857 - ] - }, - "is_frozen": false, - "integer_id": 522, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453807, - 45.543683 - ] - }, - "id": 523, - "properties": { - "id": "43f18805-a4b1-4fc6-a1c9-787eb883bcde", - "code": "31886", - "data": { - "stops": [ - { - "id": "1886", - "code": "31886", - "data": { - "gtfs": { - "stop_id": "1886", - "stop_code": "31886", - "stop_name": "ch. Du Tremblay et Bonaventure", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Bonaventure", - "geography": { - "type": "Point", - "coordinates": [ - -73.4538244841805, - 45.5435684987583 - ] - } - }, - { - "id": "1891", - "code": "31891", - "data": { - "gtfs": { - "stop_id": "1891", - "stop_code": "31891", - "stop_name": "ch. Du Tremblay et Bonaventure", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Bonaventure", - "geography": { - "type": "Point", - "coordinates": [ - -73.4537900195041, - 45.5437974113517 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8842450725342 - }, - "name": "ch. Du Tremblay et Bonaventure", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453807252, - 45.543682955 - ] - }, - "is_frozen": false, - "integer_id": 523, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452537, - 45.54456 - ] - }, - "id": 524, - "properties": { - "id": "946a029d-014a-45ca-adcd-e5b8e3927d52", - "code": "31887", - "data": { - "stops": [ - { - "id": "1887", - "code": "31887", - "data": { - "gtfs": { - "stop_id": "1887", - "stop_code": "31887", - "stop_name": "ch. Du Tremblay et Bossuet", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Bossuet", - "geography": { - "type": "Point", - "coordinates": [ - -73.4526488889498, - 45.5443643728662 - ] - } - }, - { - "id": "3800", - "code": "33800", - "data": { - "gtfs": { - "stop_id": "3800", - "stop_code": "33800", - "stop_name": "ch. Du Tremblay et Bossuet", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Bossuet", - "geography": { - "type": "Point", - "coordinates": [ - -73.4524250710358, - 45.5447558212134 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.899097041618 - }, - "name": "ch. Du Tremblay et Bossuet", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45253698, - 45.544560097 - ] - }, - "is_frozen": false, - "integer_id": 524, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454845, - 45.543085 - ] - }, - "id": 525, - "properties": { - "id": "e4670d3f-1aa4-4e69-ac7c-0f6fbe1ebddb", - "code": "31892", - "data": { - "stops": [ - { - "id": "1892", - "code": "31892", - "data": { - "gtfs": { - "stop_id": "1892", - "stop_code": "31892", - "stop_name": "ch. Du Tremblay et boul. Jacques-Cartier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et boul. Jacques-Cartier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4548449988845, - 45.5430847163019 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8741159466709 - }, - "name": "ch. Du Tremblay et boul. Jacques-Cartier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454844999, - 45.543084716 - ] - }, - "is_frozen": false, - "integer_id": 525, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459037, - 45.534609 - ] - }, - "id": 526, - "properties": { - "id": "ead7d270-6dcb-4161-af5c-95bec6715688", - "code": "31896", - "data": { - "stops": [ - { - "id": "1896", - "code": "31896", - "data": { - "gtfs": { - "stop_id": "1896", - "stop_code": "31896", - "stop_name": "boul. Jacques-Cartier est et Bruchési", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et Bruchési", - "geography": { - "type": "Point", - "coordinates": [ - -73.459099113745, - 45.534828564425 - ] - } - }, - { - "id": "4182", - "code": "34182", - "data": { - "gtfs": { - "stop_id": "4182", - "stop_code": "34182", - "stop_name": "boul. Jacques-Cartier est et Bruchési", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et Bruchési", - "geography": { - "type": "Point", - "coordinates": [ - -73.4589745777231, - 45.5343904300208 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7306514800644 - }, - "name": "boul. Jacques-Cartier est et Bruchési", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459036846, - 45.534609497 - ] - }, - "is_frozen": false, - "integer_id": 526, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462781, - 45.530421 - ] - }, - "id": 527, - "properties": { - "id": "8746746f-daed-4d54-a90f-724d51454ae1", - "code": "31898", - "data": { - "stops": [ - { - "id": "1898", - "code": "31898", - "data": { - "gtfs": { - "stop_id": "1898", - "stop_code": "31898", - "stop_name": "boul. Jacques-Cartier est et Laurier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et Laurier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4629295148318, - 45.5306701629265 - ] - } - }, - { - "id": "4433", - "code": "34433", - "data": { - "gtfs": { - "stop_id": "4433", - "stop_code": "34433", - "stop_name": "boul. Jacques-Cartier est et Laurier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et Laurier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4626334410079, - 45.5301728191977 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6597825608577 - }, - "name": "boul. Jacques-Cartier est et Laurier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462781478, - 45.530421491 - ] - }, - "is_frozen": false, - "integer_id": 527, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46405, - 45.528578 - ] - }, - "id": 528, - "properties": { - "id": "47143cf4-4cce-4e8f-bfed-223c71fcc466", - "code": "31899", - "data": { - "stops": [ - { - "id": "1899", - "code": "31899", - "data": { - "gtfs": { - "stop_id": "1899", - "stop_code": "31899", - "stop_name": "boul. Jacques-Cartier est et civique 303", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et civique 303", - "geography": { - "type": "Point", - "coordinates": [ - -73.4640501799758, - 45.528578150183 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6285947288959 - }, - "name": "boul. Jacques-Cartier est et civique 303", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46405018, - 45.52857815 - ] - }, - "is_frozen": false, - "integer_id": 528, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464764, - 45.522591 - ] - }, - "id": 529, - "properties": { - "id": "334bd241-267c-4081-968b-fd0340fabe8f", - "code": "31901", - "data": { - "stops": [ - { - "id": "1901", - "code": "31901", - "data": { - "gtfs": { - "stop_id": "1901", - "stop_code": "31901", - "stop_name": "boul. Jacques-Cartier est et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4647637206288, - 45.5225914049289 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5273247599663 - }, - "name": "boul. Jacques-Cartier est et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464763721, - 45.522591405 - ] - }, - "is_frozen": false, - "integer_id": 529, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464973, - 45.517711 - ] - }, - "id": 530, - "properties": { - "id": "9cfa8f82-cfc5-49a5-8686-d6562a1799e8", - "code": "31903", - "data": { - "stops": [ - { - "id": "1903", - "code": "31903", - "data": { - "gtfs": { - "stop_id": "1903", - "stop_code": "31903", - "stop_name": "boul. Jacques-Cartier ouest et Cadillac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier ouest et Cadillac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4649731327891, - 45.5177110980635 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4447945918523 - }, - "name": "boul. Jacques-Cartier ouest et Cadillac", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464973133, - 45.517711098 - ] - }, - "is_frozen": false, - "integer_id": 530, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466517, - 45.515819 - ] - }, - "id": 531, - "properties": { - "id": "6cd3b26a-f769-4c25-a6d1-211b3ce2b060", - "code": "31904", - "data": { - "stops": [ - { - "id": "1904", - "code": "31904", - "data": { - "gtfs": { - "stop_id": "1904", - "stop_code": "31904", - "stop_name": "boul. Jacques-Cartier ouest et de Lyon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier ouest et de Lyon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4662388510518, - 45.515860071897 - ] - } - }, - { - "id": "3593", - "code": "33593", - "data": { - "gtfs": { - "stop_id": "3593", - "stop_code": "33593", - "stop_name": "de Lyon et boul. Jacques-Cartier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Lyon et boul. Jacques-Cartier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4664351204663, - 45.5156900624834 - ] - } - }, - { - "id": "3853", - "code": "33853", - "data": { - "gtfs": { - "stop_id": "3853", - "stop_code": "33853", - "stop_name": "de Lyon et Cadillac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Lyon et Cadillac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4667960036274, - 45.5159474414941 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4127991102546 - }, - "name": "boul. Jacques-Cartier ouest et de Lyon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466517427, - 45.515818752 - ] - }, - "is_frozen": false, - "integer_id": 531, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467806, - 45.513678 - ] - }, - "id": 532, - "properties": { - "id": "f9f88325-b670-4d47-91fa-edb372992bbc", - "code": "31905", - "data": { - "stops": [ - { - "id": "1905", - "code": "31905", - "data": { - "gtfs": { - "stop_id": "1905", - "stop_code": "31905", - "stop_name": "boul. Jacques-Cartier ouest et de Carignan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier ouest et de Carignan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4678057661988, - 45.5136777219275 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3766027654679 - }, - "name": "boul. Jacques-Cartier ouest et de Carignan", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.467805766, - 45.513677722 - ] - }, - "is_frozen": false, - "integer_id": 532, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468583, - 45.512236 - ] - }, - "id": 533, - "properties": { - "id": "e1a9e623-935b-47b9-a038-bcbd5a33f95e", - "code": "31906", - "data": { - "stops": [ - { - "id": "1906", - "code": "31906", - "data": { - "gtfs": { - "stop_id": "1906", - "stop_code": "31906", - "stop_name": "boul. Jacques-Cartier ouest et civique 859", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier ouest et civique 859", - "geography": { - "type": "Point", - "coordinates": [ - -73.4687827966667, - 45.5123515935162 - ] - } - }, - { - "id": "3611", - "code": "33611", - "data": { - "gtfs": { - "stop_id": "3611", - "stop_code": "33611", - "stop_name": "boul. Jacques-Cartier ouest et civique 862", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier ouest et civique 862", - "geography": { - "type": "Point", - "coordinates": [ - -73.468383602735, - 45.5121203306241 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3522306094155 - }, - "name": "boul. Jacques-Cartier ouest et civique 859", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.4685832, - 45.512235962 - ] - }, - "is_frozen": false, - "integer_id": 533, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.471375, - 45.50902 - ] - }, - "id": 534, - "properties": { - "id": "ba348c95-9f07-48ca-a139-5d5c2dd83350", - "code": "31907", - "data": { - "stops": [ - { - "id": "1907", - "code": "31907", - "data": { - "gtfs": { - "stop_id": "1907", - "stop_code": "31907", - "stop_name": "Sainte-Hélène et boul. Jacques-Cartier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et boul. Jacques-Cartier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4713747164152, - 45.5090195228877 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.297865156424 - }, - "name": "Sainte-Hélène et boul. Jacques-Cartier ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.471374716, - 45.509019523 - ] - }, - "is_frozen": false, - "integer_id": 534, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.512415, - 45.522266 - ] - }, - "id": 535, - "properties": { - "id": "52b1586a-11ae-4a36-8706-2e4367c6d3c8", - "code": "31921", - "data": { - "stops": [ - { - "id": "1921", - "code": "31921", - "data": { - "gtfs": { - "stop_id": "1921", - "stop_code": "31921", - "stop_name": "Sainte-Hélène et Saint-Laurent ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et Saint-Laurent ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.512415287618, - 45.5222660962612 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5218228462339 - }, - "name": "Sainte-Hélène et Saint-Laurent ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.512415288, - 45.522266096 - ] - }, - "is_frozen": false, - "integer_id": 535, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.42938, - 45.516714 - ] - }, - "id": 536, - "properties": { - "id": "5fca388e-eb04-4453-a322-bc37f3153a8f", - "code": "31927", - "data": { - "stops": [ - { - "id": "1927", - "code": "31927", - "data": { - "gtfs": { - "stop_id": "1927", - "stop_code": "31927", - "stop_name": "ch. de la Savane et De Tonnancour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et De Tonnancour", - "geography": { - "type": "Point", - "coordinates": [ - -73.429284343447, - 45.5166957565776 - ] - } - }, - { - "id": "1939", - "code": "31939", - "data": { - "gtfs": { - "stop_id": "1939", - "stop_code": "31939", - "stop_name": "ch. de la Savane et De Tonnancour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et De Tonnancour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4294758924338, - 45.5167318686308 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4279322600242 - }, - "name": "ch. de la Savane et De Tonnancour", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.429380118, - 45.516713813 - ] - }, - "is_frozen": false, - "integer_id": 536, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.418602, - 45.527201 - ] - }, - "id": 537, - "properties": { - "id": "96dc38f6-44d4-438d-b986-07c908b99f23", - "code": "31931", - "data": { - "stops": [ - { - "id": "1931", - "code": "31931", - "data": { - "gtfs": { - "stop_id": "1931", - "stop_code": "31931", - "stop_name": "Viger et ch. de la Savane", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Viger et ch. de la Savane", - "geography": { - "type": "Point", - "coordinates": [ - -73.4185332072995, - 45.5271111554676 - ] - } - }, - { - "id": "1936", - "code": "31936", - "data": { - "gtfs": { - "stop_id": "1936", - "stop_code": "31936", - "stop_name": "ch. de la Savane et Viger", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et Viger", - "geography": { - "type": "Point", - "coordinates": [ - -73.4186708162753, - 45.5272904915965 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6052934692863 - }, - "name": "Viger et ch. de la Savane", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.418602012, - 45.527200824 - ] - }, - "is_frozen": false, - "integer_id": 537, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.41412, - 45.528128 - ] - }, - "id": 538, - "properties": { - "id": "a208dd9e-53a1-4deb-bed5-724b8b3ed912", - "code": "31932", - "data": { - "stops": [ - { - "id": "1932", - "code": "31932", - "data": { - "gtfs": { - "stop_id": "1932", - "stop_code": "31932", - "stop_name": "ch. de la Savane et de l'ENA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et de l'ENA", - "geography": { - "type": "Point", - "coordinates": [ - -73.4140278441803, - 45.5280786198428 - ] - } - }, - { - "id": "1935", - "code": "31935", - "data": { - "gtfs": { - "stop_id": "1935", - "stop_code": "31935", - "stop_name": "ch. de la Savane et de l'ENA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et de l'ENA", - "geography": { - "type": "Point", - "coordinates": [ - -73.4142115372402, - 45.5281778230263 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6209827557075 - }, - "name": "ch. de la Savane et de l'ENA", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.414119691, - 45.528128221 - ] - }, - "is_frozen": false, - "integer_id": 538, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.407768, - 45.534477 - ] - }, - "id": 539, - "properties": { - "id": "84766cb6-ab9a-4256-a341-0b084c084dbb", - "code": "31933", - "data": { - "stops": [ - { - "id": "1933", - "code": "31933", - "data": { - "gtfs": { - "stop_id": "1933", - "stop_code": "31933", - "stop_name": "ch. de la Savane et boul. Clairevue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et boul. Clairevue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4079558878023, - 45.5343489634847 - ] - } - }, - { - "id": "1934", - "code": "31934", - "data": { - "gtfs": { - "stop_id": "1934", - "stop_code": "31934", - "stop_name": "boul. Clairevue et ch. de la Savane", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue et ch. de la Savane", - "geography": { - "type": "Point", - "coordinates": [ - -73.4075804173269, - 45.5346050610913 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7284093457358 - }, - "name": "ch. de la Savane et boul. Clairevue", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.407768153, - 45.534477012 - ] - }, - "is_frozen": false, - "integer_id": 539, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.426218, - 45.523079 - ] - }, - "id": 540, - "properties": { - "id": "e508c7cf-026b-4bcf-8135-74c7544363a5", - "code": "31937", - "data": { - "stops": [ - { - "id": "1937", - "code": "31937", - "data": { - "gtfs": { - "stop_id": "1937", - "stop_code": "31937", - "stop_name": "ch. de la Savane et La Vérendrye", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et La Vérendrye", - "geography": { - "type": "Point", - "coordinates": [ - -73.4262782829631, - 45.5232308238056 - ] - } - }, - { - "id": "3910", - "code": "33910", - "data": { - "gtfs": { - "stop_id": "3910", - "stop_code": "33910", - "stop_name": "ch. de la Savane et La Vérendrye", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et La Vérendrye", - "geography": { - "type": "Point", - "coordinates": [ - -73.4261569973197, - 45.5229265501012 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5355662808544 - }, - "name": "ch. de la Savane et La Vérendrye", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.42621764, - 45.523078687 - ] - }, - "is_frozen": false, - "integer_id": 540, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.426901, - 45.521604 - ] - }, - "id": 541, - "properties": { - "id": "945bff31-775d-46d3-8e37-f61285a9e40d", - "code": "31938", - "data": { - "stops": [ - { - "id": "1938", - "code": "31938", - "data": { - "gtfs": { - "stop_id": "1938", - "stop_code": "31938", - "stop_name": "ch. de la Savane et Senneville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et Senneville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4269617467423, - 45.5216618573553 - ] - } - }, - { - "id": "3909", - "code": "33909", - "data": { - "gtfs": { - "stop_id": "3909", - "stop_code": "33909", - "stop_name": "ch. de la Savane et Senneville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et Senneville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4268406009845, - 45.5215466920834 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5106298347872 - }, - "name": "ch. de la Savane et Senneville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.426901174, - 45.521604275 - ] - }, - "is_frozen": false, - "integer_id": 541, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.507406, - 45.519318 - ] - }, - "id": 542, - "properties": { - "id": "a9120d5d-ef7d-4b1d-b378-8c10096d7dd8", - "code": "31945", - "data": { - "stops": [ - { - "id": "1945", - "code": "31945", - "data": { - "gtfs": { - "stop_id": "1945", - "stop_code": "31945", - "stop_name": "boul. Desaulniers et Mercier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et Mercier", - "geography": { - "type": "Point", - "coordinates": [ - -73.5074061397859, - 45.5193179443232 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4719653897612 - }, - "name": "boul. Desaulniers et Mercier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.50740614, - 45.519317944 - ] - }, - "is_frozen": false, - "integer_id": 542, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.50931, - 45.527701 - ] - }, - "id": 543, - "properties": { - "id": "0bf73f5f-c68a-4a9e-ae23-67c7ea602d08", - "code": "31950", - "data": { - "stops": [ - { - "id": "1950", - "code": "31950", - "data": { - "gtfs": { - "stop_id": "1950", - "stop_code": "31950", - "stop_name": "Joliette et boul. Desaulniers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et boul. Desaulniers", - "geography": { - "type": "Point", - "coordinates": [ - -73.5093100417197, - 45.5277012712824 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6137551272395 - }, - "name": "Joliette et boul. Desaulniers", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.50931, - 45.527701 - ] - }, - "is_frozen": false, - "integer_id": 543, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.507058, - 45.527069 - ] - }, - "id": 544, - "properties": { - "id": "43f366d5-ac33-41ca-be94-6282f0233cd1", - "code": "31951", - "data": { - "stops": [ - { - "id": "1951", - "code": "31951", - "data": { - "gtfs": { - "stop_id": "1951", - "stop_code": "31951", - "stop_name": "Joliette et Le Moyne ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Le Moyne ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.5075526169949, - 45.5271451753108 - ] - } - }, - { - "id": "1984", - "code": "31984", - "data": { - "gtfs": { - "stop_id": "1984", - "stop_code": "31984", - "stop_name": "Le Moyne ouest et Joliette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne ouest et Joliette", - "geography": { - "type": "Point", - "coordinates": [ - -73.50677266595, - 45.527137591779 - ] - } - }, - { - "id": "3188", - "code": "33188", - "data": { - "gtfs": { - "stop_id": "3188", - "stop_code": "33188", - "stop_name": "Joliette et Le Moyne ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Le Moyne ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.5065642170209, - 45.5269936296714 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6030633922217 - }, - "name": "Joliette et Le Moyne ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507058, - 45.527069 - ] - }, - "is_frozen": false, - "integer_id": 544, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.505931, - 45.528074 - ] - }, - "id": 545, - "properties": { - "id": "09e0cc45-0105-4ba6-b7c5-86201ed79edf", - "code": "31952", - "data": { - "stops": [ - { - "id": "1952", - "code": "31952", - "data": { - "gtfs": { - "stop_id": "1952", - "stop_code": "31952", - "stop_name": "Le Moyne ouest et Gardenville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne ouest et Gardenville", - "geography": { - "type": "Point", - "coordinates": [ - -73.5059142156166, - 45.5279474946839 - ] - } - }, - { - "id": "1983", - "code": "31983", - "data": { - "gtfs": { - "stop_id": "1983", - "stop_code": "31983", - "stop_name": "Le Moyne ouest et Gardenville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne ouest et Gardenville", - "geography": { - "type": "Point", - "coordinates": [ - -73.505947631675, - 45.5282002838378 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6200654480512 - }, - "name": "Le Moyne ouest et Gardenville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.505931, - 45.528074 - ] - }, - "is_frozen": false, - "integer_id": 545, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.504327, - 45.530821 - ] - }, - "id": 546, - "properties": { - "id": "91d2eb2a-bbfe-4d2d-887b-5ab9a417b7e2", - "code": "31954", - "data": { - "stops": [ - { - "id": "1954", - "code": "31954", - "data": { - "gtfs": { - "stop_id": "1954", - "stop_code": "31954", - "stop_name": "Le Moyne ouest et boul. Quinn", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne ouest et boul. Quinn", - "geography": { - "type": "Point", - "coordinates": [ - -73.5040989121053, - 45.5306412392089 - ] - } - }, - { - "id": "3620", - "code": "33620", - "data": { - "gtfs": { - "stop_id": "3620", - "stop_code": "33620", - "stop_name": "Le Moyne ouest et boul. Quinn", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne ouest et boul. Quinn", - "geography": { - "type": "Point", - "coordinates": [ - -73.5040965168375, - 45.5308900473782 - ] - } - }, - { - "id": "3859", - "code": "33859", - "data": { - "gtfs": { - "stop_id": "3859", - "stop_code": "33859", - "stop_name": "boul. Quinn et Le Moyne ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Quinn et Le Moyne ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.5043391947621, - 45.530734647084 - ] - } - }, - { - "id": "4117", - "code": "34117", - "data": { - "gtfs": { - "stop_id": "4117", - "stop_code": "34117", - "stop_name": "boul. Quinn et Le Moyne ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Quinn et Le Moyne ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.5045571768484, - 45.5310015037364 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6665423279462 - }, - "name": "Le Moyne ouest et boul. Quinn", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.504327, - 45.530821 - ] - }, - "is_frozen": false, - "integer_id": 546, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.503209, - 45.532076 - ] - }, - "id": 547, - "properties": { - "id": "dac4f8d3-28c8-4cad-bd6d-c9e7c6bfb82b", - "code": "31955", - "data": { - "stops": [ - { - "id": "1955", - "code": "31955", - "data": { - "gtfs": { - "stop_id": "1955", - "stop_code": "31955", - "stop_name": "Le Moyne ouest et De Maricourt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne ouest et De Maricourt", - "geography": { - "type": "Point", - "coordinates": [ - -73.5032101932649, - 45.5319430928748 - ] - } - }, - { - "id": "1981", - "code": "31981", - "data": { - "gtfs": { - "stop_id": "1981", - "stop_code": "31981", - "stop_name": "Le Moyne ouest et De Maricourt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne ouest et De Maricourt", - "geography": { - "type": "Point", - "coordinates": [ - -73.5032075926681, - 45.5322083392224 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6877780885986 - }, - "name": "Le Moyne ouest et De Maricourt", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.503209, - 45.532076 - ] - }, - "is_frozen": false, - "integer_id": 547, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.50217, - 45.533538 - ] - }, - "id": 548, - "properties": { - "id": "95af381b-5ec5-4208-a73c-8f86d7b96b62", - "code": "31956", - "data": { - "stops": [ - { - "id": "1956", - "code": "31956", - "data": { - "gtfs": { - "stop_id": "1956", - "stop_code": "31956", - "stop_name": "Le Moyne ouest et Saint-Jean", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne ouest et Saint-Jean", - "geography": { - "type": "Point", - "coordinates": [ - -73.5021678370792, - 45.5334363118442 - ] - } - }, - { - "id": "1980", - "code": "31980", - "data": { - "gtfs": { - "stop_id": "1980", - "stop_code": "31980", - "stop_name": "Le Moyne ouest et Saint-Jean", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne ouest et Saint-Jean", - "geography": { - "type": "Point", - "coordinates": [ - -73.502171792187, - 45.5336391065047 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7125182516185 - }, - "name": "Le Moyne ouest et Saint-Jean", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.50217, - 45.533538 - ] - }, - "is_frozen": false, - "integer_id": 548, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.493317, - 45.539001 - ] - }, - "id": 549, - "properties": { - "id": "df883f3f-5d1a-4061-a525-ec3be165a7a9", - "code": "31961", - "data": { - "stops": [ - { - "id": "1961", - "code": "31961", - "data": { - "gtfs": { - "stop_id": "1961", - "stop_code": "31961", - "stop_name": "De Gentilly est et ECOLE SECONDAIRE JACQUES-ROUSSEAU", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Gentilly est et ECOLE SECONDAIRE JACQUES-ROUSSEAU", - "geography": { - "type": "Point", - "coordinates": [ - -73.4933171524409, - 45.5390011584707 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8049834249642 - }, - "name": "De Gentilly est et ECOLE SECONDAIRE JACQUES-ROUSSEAU", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493317152, - 45.539001158 - ] - }, - "is_frozen": false, - "integer_id": 549, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.484585, - 45.553142 - ] - }, - "id": 550, - "properties": { - "id": "717d6b36-87fa-4b34-a418-6b20c1bc0d29", - "code": "31963", - "data": { - "stops": [ - { - "id": "1963", - "code": "31963", - "data": { - "gtfs": { - "stop_id": "1963", - "stop_code": "31963", - "stop_name": "Adoncour et civique 601", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et civique 601", - "geography": { - "type": "Point", - "coordinates": [ - -73.4845852686755, - 45.5531420463443 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0444447922548 - }, - "name": "Adoncour et civique 601", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.484585269, - 45.553142046 - ] - }, - "is_frozen": false, - "integer_id": 550, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.484627, - 45.557145 - ] - }, - "id": 551, - "properties": { - "id": "a77c95ec-f278-40ce-a777-9f8b498d4367", - "code": "31964", - "data": { - "stops": [ - { - "id": "1964", - "code": "31964", - "data": { - "gtfs": { - "stop_id": "1964", - "stop_code": "31964", - "stop_name": "Adoncour et des Pluviers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et des Pluviers", - "geography": { - "type": "Point", - "coordinates": [ - -73.4846268121597, - 45.5571453701009 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1122693796142 - }, - "name": "Adoncour et des Pluviers", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.484626812, - 45.55714537 - ] - }, - "is_frozen": false, - "integer_id": 551, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.485009, - 45.559478 - ] - }, - "id": 552, - "properties": { - "id": "f1b172ed-b501-4e36-bd1c-2425165ce50b", - "code": "31965", - "data": { - "stops": [ - { - "id": "1965", - "code": "31965", - "data": { - "gtfs": { - "stop_id": "1965", - "stop_code": "31965", - "stop_name": "Adoncour et des Alouettes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et des Alouettes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4850089236193, - 45.5594776536681 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1517896918588 - }, - "name": "Adoncour et des Alouettes", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.485008924, - 45.559477654 - ] - }, - "is_frozen": false, - "integer_id": 552, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479134, - 45.564214 - ] - }, - "id": 553, - "properties": { - "id": "4f581479-b61b-497b-82d2-4c290ee6a857", - "code": "31970", - "data": { - "stops": [ - { - "id": "1970", - "code": "31970", - "data": { - "gtfs": { - "stop_id": "1970", - "stop_code": "31970", - "stop_name": "Adoncour et boul. Jean-Paul-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et boul. Jean-Paul-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4791338030877, - 45.5642136407893 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2320554553273 - }, - "name": "Adoncour et boul. Jean-Paul-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479133803, - 45.564213641 - ] - }, - "is_frozen": false, - "integer_id": 553, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47369, - 45.556612 - ] - }, - "id": 554, - "properties": { - "id": "f5001112-5d1e-4489-87be-a34e9ded0d46", - "code": "31971", - "data": { - "stops": [ - { - "id": "1971", - "code": "31971", - "data": { - "gtfs": { - "stop_id": "1971", - "stop_code": "31971", - "stop_name": "boul. Fernand-Lafontaine et des Hirondelles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et des Hirondelles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4736010528362, - 45.5567580882882 - ] - } - }, - { - "id": "5147", - "code": "35147", - "data": { - "gtfs": { - "stop_id": "5147", - "stop_code": "35147", - "stop_name": "boul. Fernand-Lafontaine et des Hirondelles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et des Hirondelles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4737786355557, - 45.5564666340839 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.103238278997 - }, - "name": "boul. Fernand-Lafontaine et des Hirondelles", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.473689844, - 45.556612361 - ] - }, - "is_frozen": false, - "integer_id": 554, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475478, - 45.555457 - ] - }, - "id": 555, - "properties": { - "id": "215b06de-c53f-44ed-85bf-f3e4b1dd8daa", - "code": "31972", - "data": { - "stops": [ - { - "id": "1972", - "code": "31972", - "data": { - "gtfs": { - "stop_id": "1972", - "stop_code": "31972", - "stop_name": "boul. Fernand-Lafontaine et des Hirondelles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et des Hirondelles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4753867434118, - 45.5556115037945 - ] - } - }, - { - "id": "5146", - "code": "35146", - "data": { - "gtfs": { - "stop_id": "5146", - "stop_code": "35146", - "stop_name": "boul. Fernand-Lafontaine et des Hirondelles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et des Hirondelles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4755699682849, - 45.5553021196546 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.083659970014 - }, - "name": "boul. Fernand-Lafontaine et des Hirondelles", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475478356, - 45.555456812 - ] - }, - "is_frozen": false, - "integer_id": 555, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.480376, - 45.552869 - ] - }, - "id": 556, - "properties": { - "id": "a388aa98-4c24-4671-8a33-a0e95f9d5ada", - "code": "31973", - "data": { - "stops": [ - { - "id": "1973", - "code": "31973", - "data": { - "gtfs": { - "stop_id": "1973", - "stop_code": "31973", - "stop_name": "boul. Fernand-Lafontaine et des Grands-Ducs", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et des Grands-Ducs", - "geography": { - "type": "Point", - "coordinates": [ - -73.4802915277726, - 45.5530103252764 - ] - } - }, - { - "id": "5145", - "code": "35145", - "data": { - "gtfs": { - "stop_id": "5145", - "stop_code": "35145", - "stop_name": "boul. Fernand-Lafontaine et des Grands-Ducs", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et des Grands-Ducs", - "geography": { - "type": "Point", - "coordinates": [ - -73.4804599226214, - 45.5527278005706 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0398204169009 - }, - "name": "boul. Fernand-Lafontaine et des Grands-Ducs", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.480375725, - 45.552869063 - ] - }, - "is_frozen": false, - "integer_id": 556, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483905, - 45.551347 - ] - }, - "id": 557, - "properties": { - "id": "fc1c0989-eb4e-4e77-b261-f952dd40601e", - "code": "31974", - "data": { - "stops": [ - { - "id": "1974", - "code": "31974", - "data": { - "gtfs": { - "stop_id": "1974", - "stop_code": "31974", - "stop_name": "boul. Fernand-Lafontaine et Adoncour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et Adoncour", - "geography": { - "type": "Point", - "coordinates": [ - -73.48362847644, - 45.5513015224943 - ] - } - }, - { - "id": "4126", - "code": "34126", - "data": { - "gtfs": { - "stop_id": "4126", - "stop_code": "34126", - "stop_name": "Adoncour et boul. Fernand-Lafontaine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et boul. Fernand-Lafontaine", - "geography": { - "type": "Point", - "coordinates": [ - -73.484182012827, - 45.5513926917185 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0140394601801 - }, - "name": "boul. Fernand-Lafontaine et Adoncour", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483905245, - 45.551347107 - ] - }, - "is_frozen": false, - "integer_id": 557, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492418, - 45.540298 - ] - }, - "id": 558, - "properties": { - "id": "4e53f32e-03c3-4701-94aa-590f28b5adcd", - "code": "31975", - "data": { - "stops": [ - { - "id": "1975", - "code": "31975", - "data": { - "gtfs": { - "stop_id": "1975", - "stop_code": "31975", - "stop_name": "De Gentilly est et d'Auvergne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Gentilly est et d'Auvergne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4924178379863, - 45.5402976741908 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8269311573969 - }, - "name": "De Gentilly est et d'Auvergne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492417838, - 45.540297674 - ] - }, - "is_frozen": false, - "integer_id": 558, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494577, - 45.537924 - ] - }, - "id": 559, - "properties": { - "id": "04b348b3-bb46-4177-9e4b-604bf8d96a58", - "code": "31976", - "data": { - "stops": [ - { - "id": "1976", - "code": "31976", - "data": { - "gtfs": { - "stop_id": "1976", - "stop_code": "31976", - "stop_name": "De Gentilly est et de Normandie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Gentilly est et de Normandie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4947681778235, - 45.5378997395523 - ] - } - }, - { - "id": "5595", - "code": "30344", - "data": { - "gtfs": { - "stop_id": "5595", - "stop_code": "30344", - "stop_name": "De Gentilly est et de Normandie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Gentilly est et de Normandie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4943849150789, - 45.537948244194 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7867500421283 - }, - "name": "De Gentilly est et de Normandie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494576546, - 45.537923992 - ] - }, - "is_frozen": false, - "integer_id": 559, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.496347, - 45.536648 - ] - }, - "id": 560, - "properties": { - "id": "4ae33b06-30dd-4ad3-8df9-3ce610880853", - "code": "31977", - "data": { - "stops": [ - { - "id": "1977", - "code": "31977", - "data": { - "gtfs": { - "stop_id": "1977", - "stop_code": "31977", - "stop_name": "De Gentilly est et Thurber", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Gentilly est et Thurber", - "geography": { - "type": "Point", - "coordinates": [ - -73.496018301314, - 45.536649015689 - ] - } - }, - { - "id": "3199", - "code": "33199", - "data": { - "gtfs": { - "stop_id": "3199", - "stop_code": "33199", - "stop_name": "Thurber et De Gentilly est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Thurber et De Gentilly est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4966748918624, - 45.5366459970362 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7651440736972 - }, - "name": "De Gentilly est et Thurber", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.496346597, - 45.536647506 - ] - }, - "is_frozen": false, - "integer_id": 560, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.504987, - 45.529486 - ] - }, - "id": 561, - "properties": { - "id": "3b0f936b-399c-4201-853b-8259a72529d0", - "code": "31982", - "data": { - "stops": [ - { - "id": "1982", - "code": "31982", - "data": { - "gtfs": { - "stop_id": "1982", - "stop_code": "31982", - "stop_name": "Le Moyne ouest et de Châteauguay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne ouest et de Châteauguay", - "geography": { - "type": "Point", - "coordinates": [ - -73.5050114677919, - 45.5295974987597 - ] - } - }, - { - "id": "3807", - "code": "33807", - "data": { - "gtfs": { - "stop_id": "3807", - "stop_code": "33807", - "stop_name": "Le Moyne ouest et de Châteauguay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne ouest et de Châteauguay", - "geography": { - "type": "Point", - "coordinates": [ - -73.5049628597716, - 45.5293735957824 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6439544346788 - }, - "name": "Le Moyne ouest et de Châteauguay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.504987, - 45.529486 - ] - }, - "is_frozen": false, - "integer_id": 561, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.51068, - 45.52743 - ] - }, - "id": 562, - "properties": { - "id": "aa2ca75c-2e9d-4072-a531-98e6423e4538", - "code": "31985", - "data": { - "stops": [ - { - "id": "1985", - "code": "31985", - "data": { - "gtfs": { - "stop_id": "1985", - "stop_code": "31985", - "stop_name": "boul. Desaulniers et Marmier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et Marmier", - "geography": { - "type": "Point", - "coordinates": [ - -73.5109177767549, - 45.5274342177504 - ] - } - }, - { - "id": "4199", - "code": "34199", - "data": { - "gtfs": { - "stop_id": "4199", - "stop_code": "34199", - "stop_name": "boul. Desaulniers et Marmier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et Marmier", - "geography": { - "type": "Point", - "coordinates": [ - -73.5104423915266, - 45.5274254383731 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6091704947296 - }, - "name": "boul. Desaulniers et Marmier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.51068, - 45.52743 - ] - }, - "is_frozen": false, - "integer_id": 562, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.510316, - 45.524566 - ] - }, - "id": 563, - "properties": { - "id": "94f3304d-66ff-42a6-bd12-7828cf5efc64", - "code": "31987", - "data": { - "stops": [ - { - "id": "1987", - "code": "31987", - "data": { - "gtfs": { - "stop_id": "1987", - "stop_code": "31987", - "stop_name": "boul. Desaulniers et Marquette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et Marquette", - "geography": { - "type": "Point", - "coordinates": [ - -73.5106828728066, - 45.5247705066395 - ] - } - }, - { - "id": "4006", - "code": "34006", - "data": { - "gtfs": { - "stop_id": "4006", - "stop_code": "34006", - "stop_name": "boul. Desaulniers et Marquette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et Marquette", - "geography": { - "type": "Point", - "coordinates": [ - -73.5099494769065, - 45.5243613546066 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5607228817578 - }, - "name": "boul. Desaulniers et Marquette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.510316, - 45.524566 - ] - }, - "is_frozen": false, - "integer_id": 563, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.509398, - 45.52263 - ] - }, - "id": 564, - "properties": { - "id": "7dd9be07-f5cb-4f00-86f7-d61821676a78", - "code": "31988", - "data": { - "stops": [ - { - "id": "1988", - "code": "31988", - "data": { - "gtfs": { - "stop_id": "1988", - "stop_code": "31988", - "stop_name": "boul. Desaulniers et Préfontaine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et Préfontaine", - "geography": { - "type": "Point", - "coordinates": [ - -73.5096801841953, - 45.5227032024811 - ] - } - }, - { - "id": "4008", - "code": "34008", - "data": { - "gtfs": { - "stop_id": "4008", - "stop_code": "34008", - "stop_name": "boul. Desaulniers et Saint-Georges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et Saint-Georges", - "geography": { - "type": "Point", - "coordinates": [ - -73.5091154952568, - 45.5225572454103 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5279813075499 - }, - "name": "boul. Desaulniers et Préfontaine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.50939784, - 45.522630224 - ] - }, - "is_frozen": false, - "integer_id": 564, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.507982, - 45.519547 - ] - }, - "id": 565, - "properties": { - "id": "01cbab8a-50a9-42e0-9d05-820a9dd4fa51", - "code": "31989", - "data": { - "stops": [ - { - "id": "1989", - "code": "31989", - "data": { - "gtfs": { - "stop_id": "1989", - "stop_code": "31989", - "stop_name": "boul. Desaulniers et Mercier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et Mercier", - "geography": { - "type": "Point", - "coordinates": [ - -73.5079821831469, - 45.519547364834 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4758449483243 - }, - "name": "boul. Desaulniers et Mercier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507982183, - 45.519547365 - ] - }, - "is_frozen": false, - "integer_id": 565, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.507256, - 45.518217 - ] - }, - "id": 566, - "properties": { - "id": "c28a8fa6-886c-4f1e-b291-00d0237d02dd", - "code": "31990", - "data": { - "stops": [ - { - "id": "1990", - "code": "31990", - "data": { - "gtfs": { - "stop_id": "1990", - "stop_code": "31990", - "stop_name": "boul. Desaulniers et La Salle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et La Salle", - "geography": { - "type": "Point", - "coordinates": [ - -73.5072558809138, - 45.518217293316 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4533537962071 - }, - "name": "boul. Desaulniers et La Salle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507255881, - 45.518217293 - ] - }, - "is_frozen": false, - "integer_id": 566, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.506621, - 45.517032 - ] - }, - "id": 567, - "properties": { - "id": "eab3c393-e690-4d4a-921c-9c45533c53f2", - "code": "31991", - "data": { - "stops": [ - { - "id": "1991", - "code": "31991", - "data": { - "gtfs": { - "stop_id": "1991", - "stop_code": "31991", - "stop_name": "boul. Desaulniers et boul. La Fayette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et boul. La Fayette", - "geography": { - "type": "Point", - "coordinates": [ - -73.506621457481, - 45.517032397298 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4333188577177 - }, - "name": "boul. Desaulniers et boul. La Fayette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.506621457, - 45.517032397 - ] - }, - "is_frozen": false, - "integer_id": 567, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.488845, - 45.468981 - ] - }, - "id": 568, - "properties": { - "id": "d83daa69-bf92-4b93-8173-1c0fd22cbec0", - "code": "31992", - "data": { - "stops": [ - { - "id": "1992", - "code": "31992", - "data": { - "gtfs": { - "stop_id": "1992", - "stop_code": "31992", - "stop_name": "av. Van Dyck et Valois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Van Dyck et Valois", - "geography": { - "type": "Point", - "coordinates": [ - -73.4886482904907, - 45.4690388129311 - ] - } - }, - { - "id": "4764", - "code": "34764", - "data": { - "gtfs": { - "stop_id": "4764", - "stop_code": "34764", - "stop_name": "av. Van Dyck et Valois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Van Dyck et Valois", - "geography": { - "type": "Point", - "coordinates": [ - -73.4890409565841, - 45.4689222165261 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.621881248033 - }, - "name": "av. Van Dyck et Valois", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.488844624, - 45.468980515 - ] - }, - "is_frozen": false, - "integer_id": 568, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492559, - 45.469105 - ] - }, - "id": 569, - "properties": { - "id": "66a0749c-2a5b-458d-b059-307f555cb93a", - "code": "31993", - "data": { - "stops": [ - { - "id": "1993", - "code": "31993", - "data": { - "gtfs": { - "stop_id": "1993", - "stop_code": "31993", - "stop_name": "av. Van Dyck et Valois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Van Dyck et Valois", - "geography": { - "type": "Point", - "coordinates": [ - -73.4922803020091, - 45.4691582020658 - ] - } - }, - { - "id": "4763", - "code": "34763", - "data": { - "gtfs": { - "stop_id": "4763", - "stop_code": "34763", - "stop_name": "av. Van Dyck et Voltaire", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Van Dyck et Voltaire", - "geography": { - "type": "Point", - "coordinates": [ - -73.4928381372902, - 45.4690511285486 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6239750868966 - }, - "name": "av. Van Dyck et Valois", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.49255922, - 45.469104665 - ] - }, - "is_frozen": false, - "integer_id": 569, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494446, - 45.469993 - ] - }, - "id": 570, - "properties": { - "id": "c5effd0a-a9b0-4cfe-8176-06c99313f58b", - "code": "31994", - "data": { - "stops": [ - { - "id": "1994", - "code": "31994", - "data": { - "gtfs": { - "stop_id": "1994", - "stop_code": "31994", - "stop_name": "av. Van Dyck et place Vimy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Van Dyck et place Vimy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4944459446823, - 45.4699930811872 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6389589736198 - }, - "name": "av. Van Dyck et place Vimy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494445945, - 45.469993081 - ] - }, - "is_frozen": false, - "integer_id": 570, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.496704, - 45.472616 - ] - }, - "id": 571, - "properties": { - "id": "9e1adf1c-c578-4c50-baba-31b7f0c157c4", - "code": "31997", - "data": { - "stops": [ - { - "id": "1997", - "code": "31997", - "data": { - "gtfs": { - "stop_id": "1997", - "stop_code": "31997", - "stop_name": "boul. Marie-Victorin et Venise", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Venise", - "geography": { - "type": "Point", - "coordinates": [ - -73.4967042909713, - 45.4726161609382 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.683203524927 - }, - "name": "boul. Marie-Victorin et Venise", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.496704291, - 45.472616161 - ] - }, - "is_frozen": false, - "integer_id": 571, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.49781, - 45.474542 - ] - }, - "id": 572, - "properties": { - "id": "2e10a277-1746-4c1f-9808-3de94d853988", - "code": "31998", - "data": { - "stops": [ - { - "id": "1998", - "code": "31998", - "data": { - "gtfs": { - "stop_id": "1998", - "stop_code": "31998", - "stop_name": "boul. Marie-Victorin et av. Victor-Hugo", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et av. Victor-Hugo", - "geography": { - "type": "Point", - "coordinates": [ - -73.4978104790396, - 45.4745424977411 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7156997222103 - }, - "name": "boul. Marie-Victorin et av. Victor-Hugo", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.497810479, - 45.474542498 - ] - }, - "is_frozen": false, - "integer_id": 572, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.493459, - 45.474604 - ] - }, - "id": 573, - "properties": { - "id": "be011751-8885-454f-b767-5c0f1402d83f", - "code": "32000", - "data": { - "stops": [ - { - "id": "2000", - "code": "32000", - "data": { - "gtfs": { - "stop_id": "2000", - "stop_code": "32000", - "stop_name": "av. Victor-Hugo et Vallerand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victor-Hugo et Vallerand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4935745735365, - 45.47453276813 - ] - } - }, - { - "id": "5715", - "code": "30484", - "data": { - "gtfs": { - "stop_id": "5715", - "stop_code": "30484", - "stop_name": "av. Victor-Hugo et Vallerand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victor-Hugo et Vallerand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4933426761635, - 45.4746745852178 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7167318307594 - }, - "name": "av. Victor-Hugo et Vallerand", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493458625, - 45.474603677 - ] - }, - "is_frozen": false, - "integer_id": 573, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483827, - 45.473363 - ] - }, - "id": 574, - "properties": { - "id": "c7f3156a-cc0e-41da-9e5e-adc5d5a56df3", - "code": "32003", - "data": { - "stops": [ - { - "id": "2003", - "code": "32003", - "data": { - "gtfs": { - "stop_id": "2003", - "stop_code": "32003", - "stop_name": "boul. Provencher et Péloquin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Provencher et Péloquin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4838274910851, - 45.4733630153043 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6958021311269 - }, - "name": "boul. Provencher et Péloquin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483827491, - 45.473363015 - ] - }, - "is_frozen": false, - "integer_id": 574, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478926, - 45.473351 - ] - }, - "id": 575, - "properties": { - "id": "2ef5dac7-c226-43bb-8534-6642e7a8ab89", - "code": "32004", - "data": { - "stops": [ - { - "id": "2004", - "code": "32004", - "data": { - "gtfs": { - "stop_id": "2004", - "stop_code": "32004", - "stop_name": "boul. Provencher et av. Platon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Provencher et av. Platon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4791057425497, - 45.4732375321134 - ] - } - }, - { - "id": "4757", - "code": "34757", - "data": { - "gtfs": { - "stop_id": "4757", - "stop_code": "34757", - "stop_name": "boul. Provencher et av. Platon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Provencher et av. Platon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4787471861069, - 45.4734637083793 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6955930370556 - }, - "name": "boul. Provencher et av. Platon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.478926464, - 45.47335062 - ] - }, - "is_frozen": false, - "integer_id": 575, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47474, - 45.473288 - ] - }, - "id": 576, - "properties": { - "id": "1eb451f0-ea3f-4799-b4dc-b683fd1762ef", - "code": "32005", - "data": { - "stops": [ - { - "id": "2005", - "code": "32005", - "data": { - "gtfs": { - "stop_id": "2005", - "stop_code": "32005", - "stop_name": "boul. Provencher et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Provencher et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4747401085157, - 45.473288366194 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6945428622491 - }, - "name": "boul. Provencher et boul. Pelletier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474740109, - 45.473288366 - ] - }, - "is_frozen": false, - "integer_id": 576, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482558, - 45.462218 - ] - }, - "id": 577, - "properties": { - "id": "2ecca6ee-e688-465d-a0b1-929435b41047", - "code": "32007", - "data": { - "stops": [ - { - "id": "2007", - "code": "32007", - "data": { - "gtfs": { - "stop_id": "2007", - "stop_code": "32007", - "stop_name": "av. Trahan et Trudeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Trahan et Trudeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4826518836893, - 45.4623450660328 - ] - } - }, - { - "id": "2039", - "code": "32039", - "data": { - "gtfs": { - "stop_id": "2039", - "stop_code": "32039", - "stop_name": "av. Trahan et Trudeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Trahan et Trudeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.482465033158, - 45.4620911971613 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5078516574839 - }, - "name": "av. Trahan et Trudeau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482558458, - 45.462218132 - ] - }, - "is_frozen": false, - "integer_id": 577, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482857, - 45.461002 - ] - }, - "id": 578, - "properties": { - "id": "57b17011-c22d-458b-b4e5-e636c5436ed9", - "code": "32008", - "data": { - "stops": [ - { - "id": "2008", - "code": "32008", - "data": { - "gtfs": { - "stop_id": "2008", - "stop_code": "32008", - "stop_name": "av. Trahan et Trottier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Trahan et Trottier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4828565748106, - 45.4610024385892 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4873565356849 - }, - "name": "av. Trahan et Trottier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482856575, - 45.461002439 - ] - }, - "is_frozen": false, - "integer_id": 578, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483289, - 45.459819 - ] - }, - "id": 579, - "properties": { - "id": "e51dbc0e-9385-4f59-b401-fd29a59c8b5b", - "code": "32009", - "data": { - "stops": [ - { - "id": "2009", - "code": "32009", - "data": { - "gtfs": { - "stop_id": "2009", - "stop_code": "32009", - "stop_name": "av. Trahan et place Trahan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Trahan et place Trahan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4833460049341, - 45.4598956957834 - ] - } - }, - { - "id": "2037", - "code": "32037", - "data": { - "gtfs": { - "stop_id": "2037", - "stop_code": "32037", - "stop_name": "av. Trahan et place Trahan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Trahan et place Trahan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4832316288827, - 45.4597429979244 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.467412286956 - }, - "name": "av. Trahan et place Trahan", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483288817, - 45.459819347 - ] - }, - "is_frozen": false, - "integer_id": 579, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483682, - 45.457236 - ] - }, - "id": 580, - "properties": { - "id": "258cb5fd-8795-41af-8e07-3de8ea977e23", - "code": "32011", - "data": { - "stops": [ - { - "id": "2011", - "code": "32011", - "data": { - "gtfs": { - "stop_id": "2011", - "stop_code": "32011", - "stop_name": "av. Trahan et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Trahan et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4837743155535, - 45.4572726945001 - ] - } - }, - { - "id": "2035", - "code": "32035", - "data": { - "gtfs": { - "stop_id": "2035", - "stop_code": "32035", - "stop_name": "av. Trahan et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Trahan et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4835905479064, - 45.4571997614795 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4238710740632 - }, - "name": "av. Trahan et boul. de Rome", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483682432, - 45.457236228 - ] - }, - "is_frozen": false, - "integer_id": 580, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483066, - 45.454869 - ] - }, - "id": 581, - "properties": { - "id": "f92fabb3-5544-4aa3-8461-0c7fc17380ef", - "code": "32014", - "data": { - "stops": [ - { - "id": "2014", - "code": "32014", - "data": { - "gtfs": { - "stop_id": "2014", - "stop_code": "32014", - "stop_name": "av. Saguenay et croiss. de Séville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Saguenay et croiss. de Séville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4830950898415, - 45.4549529956985 - ] - } - }, - { - "id": "2033", - "code": "32033", - "data": { - "gtfs": { - "stop_id": "2033", - "stop_code": "32033", - "stop_name": "av. Saguenay et croiss. de Séville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Saguenay et croiss. de Séville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4830377006572, - 45.4547847052213 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3839716043883 - }, - "name": "av. Saguenay et croiss. de Séville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483066395, - 45.45486885 - ] - }, - "is_frozen": false, - "integer_id": 581, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479167, - 45.452676 - ] - }, - "id": 582, - "properties": { - "id": "c25adb1f-635e-4881-a89d-af8a9ea5ca92", - "code": "32017", - "data": { - "stops": [ - { - "id": "2017", - "code": "32017", - "data": { - "gtfs": { - "stop_id": "2017", - "stop_code": "32017", - "stop_name": "av. Saguenay et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Saguenay et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4794102847993, - 45.4525838090003 - ] - } - }, - { - "id": "2030", - "code": "32030", - "data": { - "gtfs": { - "stop_id": "2030", - "stop_code": "32030", - "stop_name": "av. Saguenay et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Saguenay et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.478924030589, - 45.4527681501775 - ] - } - }, - { - "id": "2765", - "code": "32765", - "data": { - "gtfs": { - "stop_id": "2765", - "stop_code": "32765", - "stop_name": "boul. Pelletier et av. Saguenay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et av. Saguenay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4793877157834, - 45.4527541737192 - ] - } - }, - { - "id": "2778", - "code": "32778", - "data": { - "gtfs": { - "stop_id": "2778", - "stop_code": "32778", - "stop_name": "boul. Pelletier et av. Saguenay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et av. Saguenay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4789973436773, - 45.4525881934818 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3470177050178 - }, - "name": "av. Saguenay et boul. Pelletier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479167158, - 45.45267598 - ] - }, - "is_frozen": false, - "integer_id": 582, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475834, - 45.455406 - ] - }, - "id": 583, - "properties": { - "id": "91baaa10-e8cd-406f-a7c1-c8e2465ade3f", - "code": "32018", - "data": { - "stops": [ - { - "id": "2018", - "code": "32018", - "data": { - "gtfs": { - "stop_id": "2018", - "stop_code": "32018", - "stop_name": "av. Sartre et croiss. Samson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Sartre et croiss. Samson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4757123868127, - 45.4552768246444 - ] - } - }, - { - "id": "2028", - "code": "32028", - "data": { - "gtfs": { - "stop_id": "2028", - "stop_code": "32028", - "stop_name": "av. Sartre et croiss. Samson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Sartre et croiss. Samson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4759554954018, - 45.4555346049764 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.393019418759 - }, - "name": "av. Sartre et croiss. Samson", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475833941, - 45.455405715 - ] - }, - "is_frozen": false, - "integer_id": 583, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475868, - 45.456786 - ] - }, - "id": 584, - "properties": { - "id": "1782a1a7-eddc-4228-a7a8-bf733f339e68", - "code": "32019", - "data": { - "stops": [ - { - "id": "2019", - "code": "32019", - "data": { - "gtfs": { - "stop_id": "2019", - "stop_code": "32019", - "stop_name": "av. Sartre et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Sartre et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4757457421196, - 45.4564344111039 - ] - } - }, - { - "id": "2027", - "code": "32027", - "data": { - "gtfs": { - "stop_id": "2027", - "stop_code": "32027", - "stop_name": "av. Trépanier et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Trépanier et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4759042356587, - 45.4567448930274 - ] - } - }, - { - "id": "2658", - "code": "32658", - "data": { - "gtfs": { - "stop_id": "2658", - "stop_code": "32658", - "stop_name": "boul. de Rome et av. Sartre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. Sartre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4760664267569, - 45.456404064702 - ] - } - }, - { - "id": "3457", - "code": "33457", - "data": { - "gtfs": { - "stop_id": "3457", - "stop_code": "33457", - "stop_name": "boul. de Rome et av. Trépanier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. Trépanier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4756693138748, - 45.4566600989227 - ] - } - }, - { - "id": "5908", - "code": "30786", - "data": { - "gtfs": { - "stop_id": "5908", - "stop_code": "30786", - "stop_name": "av. Trépanier et de Trinidad", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Trépanier et de Trinidad", - "geography": { - "type": "Point", - "coordinates": [ - -73.4757127702682, - 45.4571684516166 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4162869575821 - }, - "name": "av. Sartre et boul. de Rome", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47586787, - 45.456786258 - ] - }, - "is_frozen": false, - "integer_id": 584, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475019, - 45.458398 - ] - }, - "id": 585, - "properties": { - "id": "54e2350c-1dbf-481f-9610-f78cb1a71b49", - "code": "32020", - "data": { - "stops": [ - { - "id": "2020", - "code": "32020", - "data": { - "gtfs": { - "stop_id": "2020", - "stop_code": "32020", - "stop_name": "av. Trépanier et Tunisie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Trépanier et Tunisie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4751184418758, - 45.4582968951225 - ] - } - }, - { - "id": "2026", - "code": "32026", - "data": { - "gtfs": { - "stop_id": "2026", - "stop_code": "32026", - "stop_name": "Tunisie et av. Trépanier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Tunisie et av. Trépanier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4749193300604, - 45.4584993889361 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4434556352894 - }, - "name": "av. Trépanier et Tunisie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475018886, - 45.458398142 - ] - }, - "is_frozen": false, - "integer_id": 585, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474191, - 45.459604 - ] - }, - "id": 586, - "properties": { - "id": "ef6b8e74-cf7c-405a-a81c-caa03b93a96a", - "code": "32021", - "data": { - "stops": [ - { - "id": "2021", - "code": "32021", - "data": { - "gtfs": { - "stop_id": "2021", - "stop_code": "32021", - "stop_name": "Tunisie et de Trinidad", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Tunisie et de Trinidad", - "geography": { - "type": "Point", - "coordinates": [ - -73.4742352244161, - 45.4594395799304 - ] - } - }, - { - "id": "3815", - "code": "33815", - "data": { - "gtfs": { - "stop_id": "3815", - "stop_code": "33815", - "stop_name": "Tunisie et de Trinidad", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Tunisie et de Trinidad", - "geography": { - "type": "Point", - "coordinates": [ - -73.4741471658524, - 45.4597680052478 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4637786690182 - }, - "name": "Tunisie et de Trinidad", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474191195, - 45.459603793 - ] - }, - "is_frozen": false, - "integer_id": 586, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.476359, - 45.462062 - ] - }, - "id": 587, - "properties": { - "id": "be3bd929-da81-47c1-9a06-fee0adc72da5", - "code": "32024", - "data": { - "stops": [ - { - "id": "2024", - "code": "32024", - "data": { - "gtfs": { - "stop_id": "2024", - "stop_code": "32024", - "stop_name": "Tunisie et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Tunisie et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4761282535981, - 45.4618065960419 - ] - } - }, - { - "id": "2726", - "code": "32726", - "data": { - "gtfs": { - "stop_id": "2726", - "stop_code": "32726", - "stop_name": "boul. Pelletier et Tunisie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et Tunisie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4765899076213, - 45.4619375792022 - ] - } - }, - { - "id": "4848", - "code": "34848", - "data": { - "gtfs": { - "stop_id": "4848", - "stop_code": "34848", - "stop_name": "boul. Pelletier et Tunisie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et Tunisie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4765369063769, - 45.4623183162477 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5052270741293 - }, - "name": "Tunisie et boul. Pelletier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.476359081, - 45.462062456 - ] - }, - "is_frozen": false, - "integer_id": 587, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483807, - 45.452896 - ] - }, - "id": 588, - "properties": { - "id": "f889063d-4196-4990-bc8c-d6010d0c0192", - "code": "32032", - "data": { - "stops": [ - { - "id": "2032", - "code": "32032", - "data": { - "gtfs": { - "stop_id": "2032", - "stop_code": "32032", - "stop_name": "av. Saguenay et croiss. Saturne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Saguenay et croiss. Saturne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4836951654006, - 45.4528616694959 - ] - } - }, - { - "id": "3812", - "code": "33812", - "data": { - "gtfs": { - "stop_id": "3812", - "stop_code": "33812", - "stop_name": "av. Saguenay et croiss. Saturne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Saguenay et croiss. Saturne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4839193942984, - 45.4529309358152 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3507303606949 - }, - "name": "av. Saguenay et croiss. Saturne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48380728, - 45.452896303 - ] - }, - "is_frozen": false, - "integer_id": 588, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483603, - 45.458404 - ] - }, - "id": 589, - "properties": { - "id": "d2127fc0-fbc1-4459-b6f9-07c0b8d9cdbe", - "code": "32036", - "data": { - "stops": [ - { - "id": "2036", - "code": "32036", - "data": { - "gtfs": { - "stop_id": "2036", - "stop_code": "32036", - "stop_name": "av. Trahan et Trudeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Trahan et Trudeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4835131855391, - 45.458325938049 - ] - } - }, - { - "id": "4341", - "code": "34341", - "data": { - "gtfs": { - "stop_id": "4341", - "stop_code": "34341", - "stop_name": "av. Trahan et Trudeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Trahan et Trudeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.48369189749, - 45.4584819518164 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4435534503618 - }, - "name": "av. Trahan et Trudeau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483602542, - 45.458403945 - ] - }, - "is_frozen": false, - "integer_id": 589, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482743, - 45.460791 - ] - }, - "id": 590, - "properties": { - "id": "2d435714-a542-4404-9910-0df9675e2087", - "code": "32038", - "data": { - "stops": [ - { - "id": "2038", - "code": "32038", - "data": { - "gtfs": { - "stop_id": "2038", - "stop_code": "32038", - "stop_name": "av. Trahan et Trottier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Trahan et Trottier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4827428244381, - 45.4607909567825 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4837913374691 - }, - "name": "av. Trahan et Trottier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482742824, - 45.460790957 - ] - }, - "is_frozen": false, - "integer_id": 590, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482656, - 45.463903 - ] - }, - "id": 591, - "properties": { - "id": "57de752e-d268-4125-8223-581e6c2ff56e", - "code": "32040", - "data": { - "stops": [ - { - "id": "2040", - "code": "32040", - "data": { - "gtfs": { - "stop_id": "2040", - "stop_code": "32040", - "stop_name": "av. Trahan et av. Tisserand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Trahan et av. Tisserand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4824564578126, - 45.4639718810007 - ] - } - }, - { - "id": "3962", - "code": "33962", - "data": { - "gtfs": { - "stop_id": "3962", - "stop_code": "33962", - "stop_name": "av. Tisserand et av. Trahan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et av. Trahan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4828553018921, - 45.4641137766906 - ] - } - }, - { - "id": "5539", - "code": "30287", - "data": { - "gtfs": { - "stop_id": "5539", - "stop_code": "30287", - "stop_name": "av. Trahan et place Trevi", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Trahan et place Trevi", - "geography": { - "type": "Point", - "coordinates": [ - -73.4826942914595, - 45.4636914819674 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5362524190504 - }, - "name": "av. Trahan et av. Tisserand", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48265588, - 45.463902629 - ] - }, - "is_frozen": false, - "integer_id": 591, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451515, - 45.4614 - ] - }, - "id": 592, - "properties": { - "id": "5cacbe7b-f308-4076-8842-25195b37874b", - "code": "32042", - "data": { - "stops": [ - { - "id": "2042", - "code": "32042", - "data": { - "gtfs": { - "stop_id": "2042", - "stop_code": "32042", - "stop_name": "av. Balzac et Bergerac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Balzac et Bergerac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4512223286203, - 45.4613577495939 - ] - } - }, - { - "id": "2109", - "code": "32109", - "data": { - "gtfs": { - "stop_id": "2109", - "stop_code": "32109", - "stop_name": "av. Balzac et Bergerac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Balzac et Bergerac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4513292890975, - 45.4615107696526 - ] - } - }, - { - "id": "2448", - "code": "32448", - "data": { - "gtfs": { - "stop_id": "2448", - "stop_code": "32448", - "stop_name": "Bergerac et av. Balzac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bergerac et av. Balzac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4518073155719, - 45.4612896534187 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4940623656565 - }, - "name": "av. Balzac et Bergerac", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451514822, - 45.461400212 - ] - }, - "is_frozen": false, - "integer_id": 592, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450116, - 45.46225 - ] - }, - "id": 593, - "properties": { - "id": "90bf0496-ccdf-450d-91bf-4dc999f62290", - "code": "32043", - "data": { - "stops": [ - { - "id": "2043", - "code": "32043", - "data": { - "gtfs": { - "stop_id": "2043", - "stop_code": "32043", - "stop_name": "av. Balzac et Berne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Balzac et Berne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4502384098014, - 45.462053730483 - ] - } - }, - { - "id": "2108", - "code": "32108", - "data": { - "gtfs": { - "stop_id": "2108", - "stop_code": "32108", - "stop_name": "av. Balzac et Berne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Balzac et Berne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4499938029601, - 45.4624460363242 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5083869587331 - }, - "name": "av. Balzac et Berne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450116106, - 45.462249883 - ] - }, - "is_frozen": false, - "integer_id": 593, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446662, - 45.463408 - ] - }, - "id": 594, - "properties": { - "id": "d7a2b864-2fd6-4357-924f-7fbbb1858b57", - "code": "32044", - "data": { - "stops": [ - { - "id": "2044", - "code": "32044", - "data": { - "gtfs": { - "stop_id": "2044", - "stop_code": "32044", - "stop_name": "av. Balzac et av. Baffin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Balzac et av. Baffin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4468249646918, - 45.4632373076534 - ] - } - }, - { - "id": "2106", - "code": "32106", - "data": { - "gtfs": { - "stop_id": "2106", - "stop_code": "32106", - "stop_name": "av. Baffin et av. Balzac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Baffin et av. Balzac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4464998092243, - 45.4635795151902 - ] - } - }, - { - "id": "5085", - "code": "35085", - "data": { - "gtfs": { - "stop_id": "5085", - "stop_code": "35085", - "stop_name": "av. Balzac et av. Baffin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Balzac et av. Baffin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4465221345025, - 45.4632636911379 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5279196007763 - }, - "name": "av. Balzac et av. Baffin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446662387, - 45.463408411 - ] - }, - "is_frozen": false, - "integer_id": 594, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.444716, - 45.464589 - ] - }, - "id": 595, - "properties": { - "id": "6159ebda-8d7f-40cc-ac22-1f98fc48a7cc", - "code": "32045", - "data": { - "stops": [ - { - "id": "2045", - "code": "32045", - "data": { - "gtfs": { - "stop_id": "2045", - "stop_code": "32045", - "stop_name": "av. Baffin et av. Bréard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Baffin et av. Bréard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4445495677644, - 45.4645784786498 - ] - } - }, - { - "id": "2105", - "code": "32105", - "data": { - "gtfs": { - "stop_id": "2105", - "stop_code": "32105", - "stop_name": "av. Baffin et av. Bréard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Baffin et av. Bréard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4448817978155, - 45.4646003168086 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5478321251529 - }, - "name": "av. Baffin et av. Bréard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.444715683, - 45.464589398 - ] - }, - "is_frozen": false, - "integer_id": 595, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442452, - 45.4664 - ] - }, - "id": 596, - "properties": { - "id": "966472c1-4384-4d94-92f7-48afa023de51", - "code": "32046", - "data": { - "stops": [ - { - "id": "2046", - "code": "32046", - "data": { - "gtfs": { - "stop_id": "2046", - "stop_code": "32046", - "stop_name": "av. Baffin et av. Bienvenue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Baffin et av. Bienvenue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4426147899318, - 45.4662894227526 - ] - } - }, - { - "id": "2457", - "code": "32457", - "data": { - "gtfs": { - "stop_id": "2457", - "stop_code": "32457", - "stop_name": "av. Bienvenue et Bosco", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienvenue et Bosco", - "geography": { - "type": "Point", - "coordinates": [ - -73.4421207176098, - 45.4664669791052 - ] - } - }, - { - "id": "2613", - "code": "32613", - "data": { - "gtfs": { - "stop_id": "2613", - "stop_code": "32613", - "stop_name": "av. Bienvenue et av. Baffin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienvenue et av. Baffin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4427831225207, - 45.4665108718063 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5783654192919 - }, - "name": "av. Baffin et av. Bienvenue", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44245192, - 45.466400147 - ] - }, - "is_frozen": false, - "integer_id": 596, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44146, - 45.466019 - ] - }, - "id": 597, - "properties": { - "id": "43d1b9da-374a-4022-9200-6e68a13388db", - "code": "32047", - "data": { - "stops": [ - { - "id": "2047", - "code": "32047", - "data": { - "gtfs": { - "stop_id": "2047", - "stop_code": "32047", - "stop_name": "av. Bienvenue et av. Baudelaire", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienvenue et av. Baudelaire", - "geography": { - "type": "Point", - "coordinates": [ - -73.4414601324139, - 45.4660188821859 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5719361933345 - }, - "name": "av. Bienvenue et av. Baudelaire", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441460132, - 45.466018882 - ] - }, - "is_frozen": false, - "integer_id": 597, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437814, - 45.467518 - ] - }, - "id": 598, - "properties": { - "id": "4827a17d-8dc9-4cbd-8430-3334ebece64a", - "code": "32048", - "data": { - "stops": [ - { - "id": "2048", - "code": "32048", - "data": { - "gtfs": { - "stop_id": "2048", - "stop_code": "32048", - "stop_name": "av. Baudelaire et croiss. Boulogne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Baudelaire et croiss. Boulogne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4380078366325, - 45.4674039194163 - ] - } - }, - { - "id": "2102", - "code": "32102", - "data": { - "gtfs": { - "stop_id": "2102", - "stop_code": "32102", - "stop_name": "av. Baudelaire et croiss. Boulogne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Baudelaire et croiss. Boulogne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4376211015326, - 45.4676320787691 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5972163674097 - }, - "name": "av. Baudelaire et croiss. Boulogne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437814469, - 45.467517999 - ] - }, - "is_frozen": false, - "integer_id": 598, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.417747, - 45.46748 - ] - }, - "id": 599, - "properties": { - "id": "d8fee1b6-4c52-4e50-b46e-c39a830e06cb", - "code": "32050", - "data": { - "stops": [ - { - "id": "2050", - "code": "32050", - "data": { - "gtfs": { - "stop_id": "2050", - "stop_code": "32050", - "stop_name": "boul. Westley et civique 5105", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Westley et civique 5105", - "geography": { - "type": "Point", - "coordinates": [ - -73.4177701582355, - 45.4673722836546 - ] - } - }, - { - "id": "2099", - "code": "32099", - "data": { - "gtfs": { - "stop_id": "2099", - "stop_code": "32099", - "stop_name": "boul. Westley et civique 5105", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Westley et civique 5105", - "geography": { - "type": "Point", - "coordinates": [ - -73.4177233979501, - 45.4675879851018 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5965778111027 - }, - "name": "boul. Westley et civique 5105", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.417746778, - 45.467480134 - ] - }, - "is_frozen": false, - "integer_id": 599, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.415823, - 45.468903 - ] - }, - "id": 600, - "properties": { - "id": "176a1328-a08b-40f7-9010-c279f0b6cf5d", - "code": "32051", - "data": { - "stops": [ - { - "id": "2051", - "code": "32051", - "data": { - "gtfs": { - "stop_id": "2051", - "stop_code": "32051", - "stop_name": "boul. Westley et boul. Payer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Westley et boul. Payer", - "geography": { - "type": "Point", - "coordinates": [ - -73.4159609010658, - 45.4687160119508 - ] - } - }, - { - "id": "3519", - "code": "33519", - "data": { - "gtfs": { - "stop_id": "3519", - "stop_code": "33519", - "stop_name": "boul. Westley et boul. Payer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Westley et boul. Payer", - "geography": { - "type": "Point", - "coordinates": [ - -73.4156846536613, - 45.4690904764741 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6205780489599 - }, - "name": "boul. Westley et boul. Payer", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.415822777, - 45.468903244 - ] - }, - "is_frozen": false, - "integer_id": 600, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.414068, - 45.470196 - ] - }, - "id": 601, - "properties": { - "id": "8dc191fb-71db-4873-9019-c9cedd32b2f0", - "code": "32052", - "data": { - "stops": [ - { - "id": "2052", - "code": "32052", - "data": { - "gtfs": { - "stop_id": "2052", - "stop_code": "32052", - "stop_name": "boul. Westley et av. Lalande", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Westley et av. Lalande", - "geography": { - "type": "Point", - "coordinates": [ - -73.4141497560558, - 45.4700503613323 - ] - } - }, - { - "id": "2098", - "code": "32098", - "data": { - "gtfs": { - "stop_id": "2098", - "stop_code": "32098", - "stop_name": "boul. Westley et av. Lalande", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Westley et av. Lalande", - "geography": { - "type": "Point", - "coordinates": [ - -73.4139852765767, - 45.4703406510174 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6423731403797 - }, - "name": "boul. Westley et av. Lalande", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.414067516, - 45.470195506 - ] - }, - "is_frozen": false, - "integer_id": 601, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.411628, - 45.47203 - ] - }, - "id": 602, - "properties": { - "id": "cbe5dd37-dce1-464a-9725-6d31d37c48ab", - "code": "32053", - "data": { - "stops": [ - { - "id": "2053", - "code": "32053", - "data": { - "gtfs": { - "stop_id": "2053", - "stop_code": "32053", - "stop_name": "boul. Westley et av. McRae", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Westley et av. McRae", - "geography": { - "type": "Point", - "coordinates": [ - -73.4116543765764, - 45.4719011334189 - ] - } - }, - { - "id": "2097", - "code": "32097", - "data": { - "gtfs": { - "stop_id": "2097", - "stop_code": "32097", - "stop_name": "boul. Westley et av. McRae", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Westley et av. McRae", - "geography": { - "type": "Point", - "coordinates": [ - -73.4115409867098, - 45.472159093262 - ] - } - }, - { - "id": "4186", - "code": "34186", - "data": { - "gtfs": { - "stop_id": "4186", - "stop_code": "34186", - "stop_name": "av. McRae et boul. Westley", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. McRae et boul. Westley", - "geography": { - "type": "Point", - "coordinates": [ - -73.4117157908488, - 45.4720647444641 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6733178861369 - }, - "name": "boul. Westley et av. McRae", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.411628389, - 45.472030113 - ] - }, - "is_frozen": false, - "integer_id": 602, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.409622, - 45.473391 - ] - }, - "id": 603, - "properties": { - "id": "fb30643a-60d9-443e-8b22-29ad762aebdb", - "code": "32054", - "data": { - "stops": [ - { - "id": "2054", - "code": "32054", - "data": { - "gtfs": { - "stop_id": "2054", - "stop_code": "32054", - "stop_name": "boul. Westley et civique 4205", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Westley et civique 4205", - "geography": { - "type": "Point", - "coordinates": [ - -73.4096219025707, - 45.4733905354975 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6962663727475 - }, - "name": "boul. Westley et civique 4205", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.409621903, - 45.473390535 - ] - }, - "is_frozen": false, - "integer_id": 603, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.405586, - 45.474606 - ] - }, - "id": 604, - "properties": { - "id": "931c7650-b24c-4431-a556-56243637e8a2", - "code": "32056", - "data": { - "stops": [ - { - "id": "2056", - "code": "32056", - "data": { - "gtfs": { - "stop_id": "2056", - "stop_code": "32056", - "stop_name": "boul. Maricourt et de Kensington", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Maricourt et de Kensington", - "geography": { - "type": "Point", - "coordinates": [ - -73.4055857566901, - 45.4746064113533 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7167779542583 - }, - "name": "boul. Maricourt et de Kensington", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.405585757, - 45.474606411 - ] - }, - "is_frozen": false, - "integer_id": 604, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.398887, - 45.471426 - ] - }, - "id": 605, - "properties": { - "id": "8566f24d-a192-4017-b9c9-09c3d46779b5", - "code": "32059", - "data": { - "stops": [ - { - "id": "2059", - "code": "32059", - "data": { - "gtfs": { - "stop_id": "2059", - "stop_code": "32059", - "stop_name": "boul. Kimber et Hampton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Hampton", - "geography": { - "type": "Point", - "coordinates": [ - -73.3990291325084, - 45.4713889258389 - ] - } - }, - { - "id": "2091", - "code": "32091", - "data": { - "gtfs": { - "stop_id": "2091", - "stop_code": "32091", - "stop_name": "boul. Kimber et Hampton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Hampton", - "geography": { - "type": "Point", - "coordinates": [ - -73.3987447824376, - 45.4714630645752 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6631277563029 - }, - "name": "boul. Kimber et Hampton", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.398886957, - 45.471425995 - ] - }, - "is_frozen": false, - "integer_id": 605, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.397171, - 45.470488 - ] - }, - "id": 606, - "properties": { - "id": "6d9b7e37-cd6f-4931-b931-b7d0d8977c84", - "code": "32060", - "data": { - "stops": [ - { - "id": "2060", - "code": "32060", - "data": { - "gtfs": { - "stop_id": "2060", - "stop_code": "32060", - "stop_name": "boul. Kimber et Hillcrest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Hillcrest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3973156258043, - 45.4704914708639 - ] - } - }, - { - "id": "2090", - "code": "32090", - "data": { - "gtfs": { - "stop_id": "2090", - "stop_code": "32090", - "stop_name": "boul. Kimber et Hillcrest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Hillcrest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3970262182207, - 45.4704843435957 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6473049362543 - }, - "name": "boul. Kimber et Hillcrest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.397170922, - 45.470487907 - ] - }, - "is_frozen": false, - "integer_id": 606, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.387674, - 45.465334 - ] - }, - "id": 607, - "properties": { - "id": "76c5dc0c-6c87-48e4-b4a8-6f7986e09fb7", - "code": "32061", - "data": { - "stops": [ - { - "id": "2061", - "code": "32061", - "data": { - "gtfs": { - "stop_id": "2061", - "stop_code": "32061", - "stop_name": "boul. Kimber et Ovila", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Ovila", - "geography": { - "type": "Point", - "coordinates": [ - -73.3878306277758, - 45.4653624120451 - ] - } - }, - { - "id": "4970", - "code": "34970", - "data": { - "gtfs": { - "stop_id": "4970", - "stop_code": "34970", - "stop_name": "boul. Kimber et Ovila", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Ovila", - "geography": { - "type": "Point", - "coordinates": [ - -73.3875166265992, - 45.4653065402937 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5603954608295 - }, - "name": "boul. Kimber et Ovila", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.387673627, - 45.465334476 - ] - }, - "is_frozen": false, - "integer_id": 607, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.384094, - 45.463267 - ] - }, - "id": 608, - "properties": { - "id": "2bfdc814-6852-43cf-a60e-ce2e7fee82b8", - "code": "32063", - "data": { - "stops": [ - { - "id": "2063", - "code": "32063", - "data": { - "gtfs": { - "stop_id": "2063", - "stop_code": "32063", - "stop_name": "boul. Kimber et Caron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Caron", - "geography": { - "type": "Point", - "coordinates": [ - -73.3844802130917, - 45.4634641875986 - ] - } - }, - { - "id": "2088", - "code": "32088", - "data": { - "gtfs": { - "stop_id": "2088", - "stop_code": "32088", - "stop_name": "boul. Kimber et Caron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Caron", - "geography": { - "type": "Point", - "coordinates": [ - -73.3843668856152, - 45.4635235889664 - ] - } - }, - { - "id": "4503", - "code": "34503", - "data": { - "gtfs": { - "stop_id": "4503", - "stop_code": "34503", - "stop_name": "boul. Kimber et Léonard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Léonard", - "geography": { - "type": "Point", - "coordinates": [ - -73.3837083651866, - 45.4630107864878 - ] - } - }, - { - "id": "4504", - "code": "34504", - "data": { - "gtfs": { - "stop_id": "4504", - "stop_code": "34504", - "stop_name": "boul. Kimber et Léonard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Léonard", - "geography": { - "type": "Point", - "coordinates": [ - -73.3837507628162, - 45.4631199588769 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5255385343029 - }, - "name": "boul. Kimber et Caron", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.384094289, - 45.463267188 - ] - }, - "is_frozen": false, - "integer_id": 608, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.382351, - 45.462336 - ] - }, - "id": 609, - "properties": { - "id": "2bad9abb-726e-4e19-bd55-ea4436446fe9", - "code": "32064", - "data": { - "stops": [ - { - "id": "2064", - "code": "32064", - "data": { - "gtfs": { - "stop_id": "2064", - "stop_code": "32064", - "stop_name": "boul. Kimber et boul. Mountainview", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et boul. Mountainview", - "geography": { - "type": "Point", - "coordinates": [ - -73.3824689343, - 45.4622435426914 - ] - } - }, - { - "id": "2087", - "code": "32087", - "data": { - "gtfs": { - "stop_id": "2087", - "stop_code": "32087", - "stop_name": "boul. Mountainview et boul. Kimber", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Mountainview et boul. Kimber", - "geography": { - "type": "Point", - "coordinates": [ - -73.3822339839634, - 45.4624277698509 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5098330403076 - }, - "name": "boul. Kimber et boul. Mountainview", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.382351459, - 45.462335656 - ] - }, - "is_frozen": false, - "integer_id": 609, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.380298, - 45.464918 - ] - }, - "id": 610, - "properties": { - "id": "40363de6-68fe-4797-a6b6-a7c0b8b379e0", - "code": "32065", - "data": { - "stops": [ - { - "id": "2065", - "code": "32065", - "data": { - "gtfs": { - "stop_id": "2065", - "stop_code": "32065", - "stop_name": "boul. Mountainview et av. Matheson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Mountainview et av. Matheson", - "geography": { - "type": "Point", - "coordinates": [ - -73.3802524781374, - 45.4648005452397 - ] - } - }, - { - "id": "3819", - "code": "33819", - "data": { - "gtfs": { - "stop_id": "3819", - "stop_code": "33819", - "stop_name": "boul. Mountainview et av. Matheson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Mountainview et av. Matheson", - "geography": { - "type": "Point", - "coordinates": [ - -73.3803443291739, - 45.4650353689262 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5533721514936 - }, - "name": "boul. Mountainview et av. Matheson", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.380298404, - 45.464917957 - ] - }, - "is_frozen": false, - "integer_id": 610, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.378176, - 45.467865 - ] - }, - "id": 611, - "properties": { - "id": "24542ec6-1b63-420d-8089-98a7341dfe66", - "code": "32066", - "data": { - "stops": [ - { - "id": "2066", - "code": "32066", - "data": { - "gtfs": { - "stop_id": "2066", - "stop_code": "32066", - "stop_name": "boul. Mountainview et av. Gervais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Mountainview et av. Gervais", - "geography": { - "type": "Point", - "coordinates": [ - -73.3782036386128, - 45.4676661047169 - ] - } - }, - { - "id": "2085", - "code": "32085", - "data": { - "gtfs": { - "stop_id": "2085", - "stop_code": "32085", - "stop_name": "boul. Mountainview et av. Gervais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Mountainview et av. Gervais", - "geography": { - "type": "Point", - "coordinates": [ - -73.3781488074177, - 45.4680639233061 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6030684963429 - }, - "name": "boul. Mountainview et av. Gervais", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.378176223, - 45.467865014 - ] - }, - "is_frozen": false, - "integer_id": 611, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.375928, - 45.471014 - ] - }, - "id": 612, - "properties": { - "id": "035dd6d8-b2e3-4b08-a45a-35d95f3c6ad6", - "code": "32067", - "data": { - "stops": [ - { - "id": "2067", - "code": "32067", - "data": { - "gtfs": { - "stop_id": "2067", - "stop_code": "32067", - "stop_name": "boul. Mountainview et av. McFarlane", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Mountainview et av. McFarlane", - "geography": { - "type": "Point", - "coordinates": [ - -73.3758620523024, - 45.4708934818317 - ] - } - }, - { - "id": "2084", - "code": "32084", - "data": { - "gtfs": { - "stop_id": "2084", - "stop_code": "32084", - "stop_name": "boul. Mountainview et av. McFarlane", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Mountainview et av. McFarlane", - "geography": { - "type": "Point", - "coordinates": [ - -73.3759933523441, - 45.4711342510343 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6561762407733 - }, - "name": "boul. Mountainview et av. McFarlane", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.375927702, - 45.471013866 - ] - }, - "is_frozen": false, - "integer_id": 612, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.369502, - 45.479882 - ] - }, - "id": 613, - "properties": { - "id": "c1b4afc5-9ddf-4e60-81ef-7e506b3eaab6", - "code": "32070", - "data": { - "stops": [ - { - "id": "2070", - "code": "32070", - "data": { - "gtfs": { - "stop_id": "2070", - "stop_code": "32070", - "stop_name": "boul. Mountainview et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Mountainview et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.3693136174275, - 45.4800061087725 - ] - } - }, - { - "id": "2081", - "code": "32081", - "data": { - "gtfs": { - "stop_id": "2081", - "stop_code": "32081", - "stop_name": "boul. Mountainview et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Mountainview et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.3696904090992, - 45.4797587214404 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8057982861214 - }, - "name": "boul. Mountainview et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.369502013, - 45.479882415 - ] - }, - "is_frozen": false, - "integer_id": 613, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.374877, - 45.483243 - ] - }, - "id": 614, - "properties": { - "id": "057da5dd-23f2-431d-8955-7a7d8f0dae40", - "code": "32071", - "data": { - "stops": [ - { - "id": "2071", - "code": "32071", - "data": { - "gtfs": { - "stop_id": "2071", - "stop_code": "32071", - "stop_name": "ch. de Chambly et Patenaude", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Patenaude", - "geography": { - "type": "Point", - "coordinates": [ - -73.3746360592582, - 45.4832347958051 - ] - } - }, - { - "id": "2080", - "code": "32080", - "data": { - "gtfs": { - "stop_id": "2080", - "stop_code": "32080", - "stop_name": "ch. de Chambly et Patenaude", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Patenaude", - "geography": { - "type": "Point", - "coordinates": [ - -73.3751172396768, - 45.4833191768425 - ] - } - }, - { - "id": "5926", - "code": "30804", - "data": { - "gtfs": { - "stop_id": "5926", - "stop_code": "30804", - "stop_name": "Patenaude et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Patenaude et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.3749590822561, - 45.4831670396001 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8625150825478 - }, - "name": "ch. de Chambly et Patenaude", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.374876649, - 45.483243108 - ] - }, - "is_frozen": false, - "integer_id": 614, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.37763, - 45.48475 - ] - }, - "id": 615, - "properties": { - "id": "e70b80e5-5b6f-48e2-b79c-3d9558d2505a", - "code": "32072", - "data": { - "stops": [ - { - "id": "2072", - "code": "32072", - "data": { - "gtfs": { - "stop_id": "2072", - "stop_code": "32072", - "stop_name": "ch. de Chambly et Pinard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Pinard", - "geography": { - "type": "Point", - "coordinates": [ - -73.3775284354584, - 45.4848531292896 - ] - } - }, - { - "id": "2079", - "code": "32079", - "data": { - "gtfs": { - "stop_id": "2079", - "stop_code": "32079", - "stop_name": "ch. de Chambly et Pinard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Pinard", - "geography": { - "type": "Point", - "coordinates": [ - -73.3777310665744, - 45.4846472393461 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8879525381482 - }, - "name": "ch. de Chambly et Pinard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.377629751, - 45.484750184 - ] - }, - "is_frozen": false, - "integer_id": 615, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.382282, - 45.487257 - ] - }, - "id": 616, - "properties": { - "id": "88a428f4-cdde-43a8-a2c3-c4652eae6722", - "code": "32073", - "data": { - "stops": [ - { - "id": "2073", - "code": "32073", - "data": { - "gtfs": { - "stop_id": "2073", - "stop_code": "32073", - "stop_name": "ch. de Chambly et boul. des Promenades", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. des Promenades", - "geography": { - "type": "Point", - "coordinates": [ - -73.3818755115794, - 45.4870900383634 - ] - } - }, - { - "id": "4153", - "code": "34153", - "data": { - "gtfs": { - "stop_id": "4153", - "stop_code": "34153", - "stop_name": "ch. de Chambly et boul. des Promenades", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. des Promenades", - "geography": { - "type": "Point", - "coordinates": [ - -73.3826886802909, - 45.487110033177 - ] - } - }, - { - "id": "4350", - "code": "34350", - "data": { - "gtfs": { - "stop_id": "4350", - "stop_code": "34350", - "stop_name": "boul. des Promenades et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. des Promenades et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.3822689809783, - 45.4874243853545 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9302723378096 - }, - "name": "ch. de Chambly et boul. des Promenades", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.382282096, - 45.487257212 - ] - }, - "is_frozen": false, - "integer_id": 616, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.403497, - 45.49255 - ] - }, - "id": 617, - "properties": { - "id": "b01ddb3b-ebc8-4e78-abbe-0ccfb7470a59", - "code": "32076", - "data": { - "stops": [ - { - "id": "2076", - "code": "32076", - "data": { - "gtfs": { - "stop_id": "2076", - "stop_code": "32076", - "stop_name": "boul. Cousineau et CLSC SAINT-HUBERT", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et CLSC SAINT-HUBERT", - "geography": { - "type": "Point", - "coordinates": [ - -73.403496800185, - 45.4925498002083 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0196320382624 - }, - "name": "boul. Cousineau et CLSC SAINT-HUBERT", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.4034968, - 45.4925498 - ] - }, - "is_frozen": false, - "integer_id": 617, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.405913, - 45.493662 - ] - }, - "id": 618, - "properties": { - "id": "76b4c3d5-f580-480d-bfec-c2639dd60d13", - "code": "32077", - "data": { - "stops": [ - { - "id": "2077", - "code": "32077", - "data": { - "gtfs": { - "stop_id": "2077", - "stop_code": "32077", - "stop_name": "boul. Cousineau et de la Tourbière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et de la Tourbière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4062611459954, - 45.4938053849883 - ] - } - }, - { - "id": "4936", - "code": "34936", - "data": { - "gtfs": { - "stop_id": "4936", - "stop_code": "34936", - "stop_name": "boul. Cousineau et IGA EXTRA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et IGA EXTRA", - "geography": { - "type": "Point", - "coordinates": [ - -73.4055646535678, - 45.4935184897831 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0384124518498 - }, - "name": "boul. Cousineau et de la Tourbière", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.4059129, - 45.493661937 - ] - }, - "is_frozen": false, - "integer_id": 618, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.371649, - 45.476935 - ] - }, - "id": 619, - "properties": { - "id": "f585bf2c-536e-4916-a0ee-20092a76ccad", - "code": "32082", - "data": { - "stops": [ - { - "id": "2082", - "code": "32082", - "data": { - "gtfs": { - "stop_id": "2082", - "stop_code": "32082", - "stop_name": "boul. Mountainview et civique 2550", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Mountainview et civique 2550", - "geography": { - "type": "Point", - "coordinates": [ - -73.3717842099073, - 45.4769265728596 - ] - } - }, - { - "id": "4011", - "code": "34011", - "data": { - "gtfs": { - "stop_id": "4011", - "stop_code": "34011", - "stop_name": "boul. Mountainview et civique 2540", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Mountainview et civique 2540", - "geography": { - "type": "Point", - "coordinates": [ - -73.3715131679722, - 45.4769442652514 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7560715139745 - }, - "name": "boul. Mountainview et civique 2550", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.371648689, - 45.476935419 - ] - }, - "is_frozen": false, - "integer_id": 619, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.385762, - 45.464301 - ] - }, - "id": 620, - "properties": { - "id": "cfa8e93e-db19-45e9-8258-0b21519d678a", - "code": "32089", - "data": { - "stops": [ - { - "id": "2089", - "code": "32089", - "data": { - "gtfs": { - "stop_id": "2089", - "stop_code": "32089", - "stop_name": "boul. Kimber et Émile", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Émile", - "geography": { - "type": "Point", - "coordinates": [ - -73.3855979952754, - 45.4642808477298 - ] - } - }, - { - "id": "3901", - "code": "33901", - "data": { - "gtfs": { - "stop_id": "3901", - "stop_code": "33901", - "stop_name": "boul. Kimber et Émile", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Émile", - "geography": { - "type": "Point", - "coordinates": [ - -73.3859269115492, - 45.464321201066 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5429697606768 - }, - "name": "boul. Kimber et Émile", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.385762453, - 45.464301024 - ] - }, - "is_frozen": false, - "integer_id": 620, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.400134, - 45.471738 - ] - }, - "id": 621, - "properties": { - "id": "e50671a0-a4b5-4876-82f3-d4b9358f2b9f", - "code": "32092", - "data": { - "stops": [ - { - "id": "2092", - "code": "32092", - "data": { - "gtfs": { - "stop_id": "2092", - "stop_code": "32092", - "stop_name": "boul. Maricourt et Roland", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Maricourt et Roland", - "geography": { - "type": "Point", - "coordinates": [ - -73.3999842941242, - 45.4717337519549 - ] - } - }, - { - "id": "4369", - "code": "34369", - "data": { - "gtfs": { - "stop_id": "4369", - "stop_code": "34369", - "stop_name": "boul. Maricourt et Roland", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Maricourt et Roland", - "geography": { - "type": "Point", - "coordinates": [ - -73.4002829373651, - 45.4717430493231 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6683973116749 - }, - "name": "boul. Maricourt et Roland", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.400133616, - 45.471738401 - ] - }, - "is_frozen": false, - "integer_id": 621, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.404496, - 45.474185 - ] - }, - "id": 622, - "properties": { - "id": "55ca5f95-fab1-46cf-be83-81db90d348a5", - "code": "32094", - "data": { - "stops": [ - { - "id": "2094", - "code": "32094", - "data": { - "gtfs": { - "stop_id": "2094", - "stop_code": "32094", - "stop_name": "boul. Maricourt et Belmont", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Maricourt et Belmont", - "geography": { - "type": "Point", - "coordinates": [ - -73.4044955641255, - 45.4741854580167 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7096764139043 - }, - "name": "boul. Maricourt et Belmont", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.404495564, - 45.474185458 - ] - }, - "is_frozen": false, - "integer_id": 622, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.406845, - 45.475277 - ] - }, - "id": 623, - "properties": { - "id": "bd054361-ba99-4c5e-bde0-47f325682b88", - "code": "32095", - "data": { - "stops": [ - { - "id": "2095", - "code": "32095", - "data": { - "gtfs": { - "stop_id": "2095", - "stop_code": "32095", - "stop_name": "boul. Maricourt et boul. Westley", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Maricourt et boul. Westley", - "geography": { - "type": "Point", - "coordinates": [ - -73.4065482198651, - 45.4752963780047 - ] - } - }, - { - "id": "4437", - "code": "34437", - "data": { - "gtfs": { - "stop_id": "4437", - "stop_code": "34437", - "stop_name": "boul. Westley et boul. Maricourt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Westley et boul. Maricourt", - "geography": { - "type": "Point", - "coordinates": [ - -73.4071419283258, - 45.4752570628291 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7280864926951 - }, - "name": "boul. Maricourt et boul. Westley", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.406845074, - 45.47527672 - ] - }, - "is_frozen": false, - "integer_id": 623, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.409615, - 45.473576 - ] - }, - "id": 624, - "properties": { - "id": "cf532e47-3506-49e5-a1ed-43182c89aa79", - "code": "32096", - "data": { - "stops": [ - { - "id": "2096", - "code": "32096", - "data": { - "gtfs": { - "stop_id": "2096", - "stop_code": "32096", - "stop_name": "boul. Westley et civique 4192", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Westley et civique 4192", - "geography": { - "type": "Point", - "coordinates": [ - -73.4096145916559, - 45.4735763113732 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6994002911931 - }, - "name": "boul. Westley et civique 4192", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.409614592, - 45.473576311 - ] - }, - "is_frozen": false, - "integer_id": 624, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440252, - 45.466318 - ] - }, - "id": 625, - "properties": { - "id": "504cb53f-f1f4-46f2-81f5-f99fef8227fd", - "code": "32104", - "data": { - "stops": [ - { - "id": "2104", - "code": "32104", - "data": { - "gtfs": { - "stop_id": "2104", - "stop_code": "32104", - "stop_name": "av. Baudelaire et Bosco", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Baudelaire et Bosco", - "geography": { - "type": "Point", - "coordinates": [ - -73.4401150394157, - 45.4665208863903 - ] - } - }, - { - "id": "4205", - "code": "34205", - "data": { - "gtfs": { - "stop_id": "4205", - "stop_code": "34205", - "stop_name": "av. Baudelaire et croiss. Bazin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Baudelaire et croiss. Bazin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4403882609506, - 45.4661146575643 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5769763286189 - }, - "name": "av. Baudelaire et Bosco", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44025165, - 45.466317772 - ] - }, - "is_frozen": false, - "integer_id": 625, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448599, - 45.463235 - ] - }, - "id": 626, - "properties": { - "id": "160a49df-4dfe-423d-acd7-52bd439d623b", - "code": "32107", - "data": { - "stops": [ - { - "id": "2107", - "code": "32107", - "data": { - "gtfs": { - "stop_id": "2107", - "stop_code": "32107", - "stop_name": "av. Balzac et av. Bernard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Balzac et av. Bernard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4485152399608, - 45.4633543749268 - ] - } - }, - { - "id": "2628", - "code": "32628", - "data": { - "gtfs": { - "stop_id": "2628", - "stop_code": "32628", - "stop_name": "av. Balzac et av. Bernard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Balzac et av. Bernard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4486826917112, - 45.4631164230331 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5250025636934 - }, - "name": "av. Balzac et av. Bernard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448598966, - 45.463235399 - ] - }, - "is_frozen": false, - "integer_id": 626, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452988, - 45.462279 - ] - }, - "id": 627, - "properties": { - "id": "a3cd74ed-1846-425b-9b0e-0cefffbbda2a", - "code": "32110", - "data": { - "stops": [ - { - "id": "2110", - "code": "32110", - "data": { - "gtfs": { - "stop_id": "2110", - "stop_code": "32110", - "stop_name": "Bergerac et av. Broadway", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bergerac et av. Broadway", - "geography": { - "type": "Point", - "coordinates": [ - -73.4527497012602, - 45.4621817539512 - ] - } - }, - { - "id": "2447", - "code": "32447", - "data": { - "gtfs": { - "stop_id": "2447", - "stop_code": "32447", - "stop_name": "Bergerac et av. Broadway", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bergerac et av. Broadway", - "geography": { - "type": "Point", - "coordinates": [ - -73.4526848314778, - 45.4619170120682 - ] - } - }, - { - "id": "3632", - "code": "33632", - "data": { - "gtfs": { - "stop_id": "3632", - "stop_code": "33632", - "stop_name": "av. Broadway et Bergerac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Broadway et Bergerac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4526282377949, - 45.4626406268673 - ] - } - }, - { - "id": "3633", - "code": "33633", - "data": { - "gtfs": { - "stop_id": "3633", - "stop_code": "33633", - "stop_name": "av. Broadway et Bergerac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Broadway et Bergerac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4529514639146, - 45.4623608019964 - ] - } - }, - { - "id": "5424", - "code": "30167", - "data": { - "gtfs": { - "stop_id": "5424", - "stop_code": "30167", - "stop_name": "Bergerac et av. Broadway", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bergerac et av. Broadway", - "geography": { - "type": "Point", - "coordinates": [ - -73.4533472480257, - 45.4623045482651 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5088748016888 - }, - "name": "Bergerac et av. Broadway", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452987743, - 45.462278819 - ] - }, - "is_frozen": false, - "integer_id": 627, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453213, - 45.45973 - ] - }, - "id": 628, - "properties": { - "id": "c01e4d9c-c5df-425f-9b40-215a62d76b50", - "code": "32115", - "data": { - "stops": [ - { - "id": "2115", - "code": "32115", - "data": { - "gtfs": { - "stop_id": "2115", - "stop_code": "32115", - "stop_name": "av. Malo et Massenet", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et Massenet", - "geography": { - "type": "Point", - "coordinates": [ - -73.4533966837212, - 45.4597639058722 - ] - } - }, - { - "id": "2142", - "code": "32142", - "data": { - "gtfs": { - "stop_id": "2142", - "stop_code": "32142", - "stop_name": "av. Malo et Massenet", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et Massenet", - "geography": { - "type": "Point", - "coordinates": [ - -73.4530297824589, - 45.4596967644679 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4659117966971 - }, - "name": "av. Malo et Massenet", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453213233, - 45.459730335 - ] - }, - "is_frozen": false, - "integer_id": 628, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451234, - 45.455752 - ] - }, - "id": 629, - "properties": { - "id": "800b4ca8-f540-48ef-9acf-ec6d45db3496", - "code": "32116", - "data": { - "stops": [ - { - "id": "2116", - "code": "32116", - "data": { - "gtfs": { - "stop_id": "2116", - "stop_code": "32116", - "stop_name": "av. Maupassant et civique 4040", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Maupassant et civique 4040", - "geography": { - "type": "Point", - "coordinates": [ - -73.4513112459919, - 45.4557987648815 - ] - } - }, - { - "id": "2140", - "code": "32140", - "data": { - "gtfs": { - "stop_id": "2140", - "stop_code": "32140", - "stop_name": "av. Maupassant et civique 4040", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Maupassant et civique 4040", - "geography": { - "type": "Point", - "coordinates": [ - -73.4511571376656, - 45.4557043272671 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3988478623954 - }, - "name": "av. Maupassant et civique 4040", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451234192, - 45.455751546 - ] - }, - "is_frozen": false, - "integer_id": 629, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452014, - 45.454709 - ] - }, - "id": 630, - "properties": { - "id": "db56dff4-d82c-4b2d-ad34-35b3db3f27de", - "code": "32117", - "data": { - "stops": [ - { - "id": "2117", - "code": "32117", - "data": { - "gtfs": { - "stop_id": "2117", - "stop_code": "32117", - "stop_name": "av. Maupassant et Montpetit", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Maupassant et Montpetit", - "geography": { - "type": "Point", - "coordinates": [ - -73.451983516024, - 45.4548516948626 - ] - } - }, - { - "id": "2139", - "code": "32139", - "data": { - "gtfs": { - "stop_id": "2139", - "stop_code": "32139", - "stop_name": "Montpetit et av. Maupassant", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montpetit et av. Maupassant", - "geography": { - "type": "Point", - "coordinates": [ - -73.4520439615797, - 45.4545664522932 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3812789403469 - }, - "name": "av. Maupassant et Montpetit", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452013739, - 45.454709074 - ] - }, - "is_frozen": false, - "integer_id": 630, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450735, - 45.453728 - ] - }, - "id": 631, - "properties": { - "id": "0087674f-0098-4bab-9a77-b31eb3602613", - "code": "32118", - "data": { - "stops": [ - { - "id": "2118", - "code": "32118", - "data": { - "gtfs": { - "stop_id": "2118", - "stop_code": "32118", - "stop_name": "Montpetit et Mauriac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montpetit et Mauriac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4508180410114, - 45.4539268831281 - ] - } - }, - { - "id": "2138", - "code": "32138", - "data": { - "gtfs": { - "stop_id": "2138", - "stop_code": "32138", - "stop_name": "Mauriac et Montpetit", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Mauriac et Montpetit", - "geography": { - "type": "Point", - "coordinates": [ - -73.4506527111342, - 45.4535296635582 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3647502483058 - }, - "name": "Montpetit et Mauriac", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450735376, - 45.453728273 - ] - }, - "is_frozen": false, - "integer_id": 631, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45149, - 45.452968 - ] - }, - "id": 632, - "properties": { - "id": "9350e708-dca8-4f0e-ab42-9b2a650fe7f2", - "code": "32119", - "data": { - "stops": [ - { - "id": "2119", - "code": "32119", - "data": { - "gtfs": { - "stop_id": "2119", - "stop_code": "32119", - "stop_name": "Mauriac et Massé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Mauriac et Massé", - "geography": { - "type": "Point", - "coordinates": [ - -73.4514092234033, - 45.453119699958 - ] - } - }, - { - "id": "2137", - "code": "32137", - "data": { - "gtfs": { - "stop_id": "2137", - "stop_code": "32137", - "stop_name": "Mauriac et Massé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Mauriac et Massé", - "geography": { - "type": "Point", - "coordinates": [ - -73.4515716587018, - 45.4528166127538 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3519411625625 - }, - "name": "Mauriac et Massé", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451490441, - 45.452968156 - ] - }, - "is_frozen": false, - "integer_id": 632, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452737, - 45.45119 - ] - }, - "id": 633, - "properties": { - "id": "47b8cbb5-ce9c-44f7-9307-d21ce7737a98", - "code": "32120", - "data": { - "stops": [ - { - "id": "2120", - "code": "32120", - "data": { - "gtfs": { - "stop_id": "2120", - "stop_code": "32120", - "stop_name": "Meilleur et Mondor", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Meilleur et Mondor", - "geography": { - "type": "Point", - "coordinates": [ - -73.4528175247463, - 45.4512935926716 - ] - } - }, - { - "id": "2136", - "code": "32136", - "data": { - "gtfs": { - "stop_id": "2136", - "stop_code": "32136", - "stop_name": "Mondor et Meilleur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Mondor et Meilleur", - "geography": { - "type": "Point", - "coordinates": [ - -73.4526562892746, - 45.4510865601741 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3219799097002 - }, - "name": "Meilleur et Mondor", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452736907, - 45.451190076 - ] - }, - "is_frozen": false, - "integer_id": 633, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454562, - 45.44998 - ] - }, - "id": 634, - "properties": { - "id": "fd4f887b-9300-41e3-8cc1-44b80109a4ad", - "code": "32121", - "data": { - "stops": [ - { - "id": "2121", - "code": "32121", - "data": { - "gtfs": { - "stop_id": "2121", - "stop_code": "32121", - "stop_name": "Mondor et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Mondor et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4545617854148, - 45.449980285646 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3015961397614 - }, - "name": "Mondor et boul. de Rome", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454561785, - 45.449980286 - ] - }, - "is_frozen": false, - "integer_id": 634, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45614, - 45.447304 - ] - }, - "id": 635, - "properties": { - "id": "8b7e764f-0227-410c-89b9-51b9a8ad8c88", - "code": "32122", - "data": { - "stops": [ - { - "id": "2122", - "code": "32122", - "data": { - "gtfs": { - "stop_id": "2122", - "stop_code": "32122", - "stop_name": "av. Niagara et civique 7895", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Niagara et civique 7895", - "geography": { - "type": "Point", - "coordinates": [ - -73.4559414971259, - 45.4474539923936 - ] - } - }, - { - "id": "2134", - "code": "32134", - "data": { - "gtfs": { - "stop_id": "2134", - "stop_code": "32134", - "stop_name": "av. Niagara et Navarre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Niagara et Navarre", - "geography": { - "type": "Point", - "coordinates": [ - -73.456337792206, - 45.4471531801124 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2565009942444 - }, - "name": "av. Niagara et civique 7895", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456139645, - 45.447303586 - ] - }, - "is_frozen": false, - "integer_id": 635, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459457, - 45.445096 - ] - }, - "id": 636, - "properties": { - "id": "57126f14-f5bb-4578-a4ae-48d75eae5e82", - "code": "32124", - "data": { - "stops": [ - { - "id": "2124", - "code": "32124", - "data": { - "gtfs": { - "stop_id": "2124", - "stop_code": "32124", - "stop_name": "av. Niagara et Nolet", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Niagara et Nolet", - "geography": { - "type": "Point", - "coordinates": [ - -73.4594736040324, - 45.445199652841 - ] - } - }, - { - "id": "2132", - "code": "32132", - "data": { - "gtfs": { - "stop_id": "2132", - "stop_code": "32132", - "stop_name": "av. Niagara et Nolet", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Niagara et Nolet", - "geography": { - "type": "Point", - "coordinates": [ - -73.4594409947107, - 45.4449926752615 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2193166923129 - }, - "name": "av. Niagara et Nolet", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459457299, - 45.445096164 - ] - }, - "is_frozen": false, - "integer_id": 636, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460759, - 45.443589 - ] - }, - "id": 637, - "properties": { - "id": "59a89b84-f5a9-4a1a-a527-c7a4262ccd35", - "code": "32125", - "data": { - "stops": [ - { - "id": "2125", - "code": "32125", - "data": { - "gtfs": { - "stop_id": "2125", - "stop_code": "32125", - "stop_name": "av. Niagara et boul. Napoléon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Niagara et boul. Napoléon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4603966751953, - 45.4438497662472 - ] - } - }, - { - "id": "2131", - "code": "32131", - "data": { - "gtfs": { - "stop_id": "2131", - "stop_code": "32131", - "stop_name": "av. Orégon et boul. Napoléon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orégon et boul. Napoléon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4605491199356, - 45.443328336516 - ] - } - }, - { - "id": "2735", - "code": "32735", - "data": { - "gtfs": { - "stop_id": "2735", - "stop_code": "32735", - "stop_name": "boul. Napoléon et av. Orégon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Napoléon et av. Orégon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4607966490373, - 45.4435302982385 - ] - } - }, - { - "id": "4425", - "code": "34425", - "data": { - "gtfs": { - "stop_id": "4425", - "stop_code": "34425", - "stop_name": "boul. Napoléon et av. Orégon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Napoléon et av. Orégon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4611204734063, - 45.4436356367626 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1939316656103 - }, - "name": "av. Niagara et boul. Napoléon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.460758574, - 45.443589051 - ] - }, - "is_frozen": false, - "integer_id": 637, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461254, - 45.442371 - ] - }, - "id": 638, - "properties": { - "id": "9b31d865-da9f-4eb8-b8a9-3d488eb579df", - "code": "32126", - "data": { - "stops": [ - { - "id": "2126", - "code": "32126", - "data": { - "gtfs": { - "stop_id": "2126", - "stop_code": "32126", - "stop_name": "av. Orégon et croiss. Olivier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orégon et croiss. Olivier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4612843071354, - 45.4424822317552 - ] - } - }, - { - "id": "3912", - "code": "33912", - "data": { - "gtfs": { - "stop_id": "3912", - "stop_code": "33912", - "stop_name": "av. Orégon et croiss. Olivier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orégon et croiss. Olivier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4612245950243, - 45.4422595222714 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1734148486083 - }, - "name": "av. Orégon et croiss. Olivier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461254451, - 45.442370877 - ] - }, - "is_frozen": false, - "integer_id": 638, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462118, - 45.441094 - ] - }, - "id": 639, - "properties": { - "id": "b93691d0-438e-4eac-87a0-7c1ac45a7c18", - "code": "32129", - "data": { - "stops": [ - { - "id": "2129", - "code": "32129", - "data": { - "gtfs": { - "stop_id": "2129", - "stop_code": "32129", - "stop_name": "av. Orient et av. Orégon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orient et av. Orégon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4619951415501, - 45.4410387017686 - ] - } - }, - { - "id": "2736", - "code": "32736", - "data": { - "gtfs": { - "stop_id": "2736", - "stop_code": "32736", - "stop_name": "av. Orégon et av. Orient", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orégon et av. Orient", - "geography": { - "type": "Point", - "coordinates": [ - -73.4621379986156, - 45.4412592131513 - ] - } - }, - { - "id": "5573", - "code": "30321", - "data": { - "gtfs": { - "stop_id": "5573", - "stop_code": "30321", - "stop_name": "av. Orégon et av. Orient", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orégon et av. Orient", - "geography": { - "type": "Point", - "coordinates": [ - -73.462240974477, - 45.4409285900164 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.151909101472 - }, - "name": "av. Orient et av. Orégon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462118058, - 45.441093902 - ] - }, - "is_frozen": false, - "integer_id": 639, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457939, - 45.446706 - ] - }, - "id": 640, - "properties": { - "id": "4d0c656c-4c2a-490e-9c6b-ef3afebe7833", - "code": "32133", - "data": { - "stops": [ - { - "id": "2133", - "code": "32133", - "data": { - "gtfs": { - "stop_id": "2133", - "stop_code": "32133", - "stop_name": "av. Niagara et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Niagara et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4580694326702, - 45.4465877023567 - ] - } - }, - { - "id": "3824", - "code": "33824", - "data": { - "gtfs": { - "stop_id": "3824", - "stop_code": "33824", - "stop_name": "av. Niagara et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Niagara et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4578089458202, - 45.4468252213435 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2464419388664 - }, - "name": "av. Niagara et Passage piétonnier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457939189, - 45.446706462 - ] - }, - "is_frozen": false, - "integer_id": 640, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454422, - 45.448947 - ] - }, - "id": 641, - "properties": { - "id": "1ea7e8d9-5ff2-4c82-9794-39b3e67d7846", - "code": "32135", - "data": { - "stops": [ - { - "id": "2135", - "code": "32135", - "data": { - "gtfs": { - "stop_id": "2135", - "stop_code": "32135", - "stop_name": "av. Niagara et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Niagara et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4543324415186, - 45.4488356019537 - ] - } - }, - { - "id": "3394", - "code": "33394", - "data": { - "gtfs": { - "stop_id": "3394", - "stop_code": "33394", - "stop_name": "boul. de Rome et av. Niagara", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. Niagara", - "geography": { - "type": "Point", - "coordinates": [ - -73.4545123659175, - 45.4490588153429 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2841908373387 - }, - "name": "av. Niagara et boul. de Rome", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454422404, - 45.448947209 - ] - }, - "is_frozen": false, - "integer_id": 641, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450312, - 45.45756 - ] - }, - "id": 642, - "properties": { - "id": "0c735a18-4964-435c-ad38-89ab21a47f83", - "code": "32141", - "data": { - "stops": [ - { - "id": "2141", - "code": "32141", - "data": { - "gtfs": { - "stop_id": "2141", - "stop_code": "32141", - "stop_name": "av. Maupassant et av. Malo", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Maupassant et av. Malo", - "geography": { - "type": "Point", - "coordinates": [ - -73.4503117855295, - 45.4575599904533 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4293281017093 - }, - "name": "av. Maupassant et av. Malo", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450311786, - 45.45755999 - ] - }, - "is_frozen": false, - "integer_id": 642, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454561, - 45.460833 - ] - }, - "id": 643, - "properties": { - "id": "4ca26d1e-a5a2-4d1a-ba5a-7bed9b5a1bee", - "code": "32143", - "data": { - "stops": [ - { - "id": "2143", - "code": "32143", - "data": { - "gtfs": { - "stop_id": "2143", - "stop_code": "32143", - "stop_name": "av. Malo et civique 3127", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et civique 3127", - "geography": { - "type": "Point", - "coordinates": [ - -73.4545609880758, - 45.4608327144269 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4844952806736 - }, - "name": "av. Malo et civique 3127", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454560988, - 45.460832714 - ] - }, - "is_frozen": false, - "integer_id": 643, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458505, - 45.462255 - ] - }, - "id": 644, - "properties": { - "id": "5d862a7d-92b0-4def-8199-258993ce3523", - "code": "32144", - "data": { - "stops": [ - { - "id": "2144", - "code": "32144", - "data": { - "gtfs": { - "stop_id": "2144", - "stop_code": "32144", - "stop_name": "av. Malo et Moquin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et Moquin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4585052271216, - 45.4622551120278 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5084751163645 - }, - "name": "av. Malo et Moquin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.458505227, - 45.462255112 - ] - }, - "is_frozen": false, - "integer_id": 644, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462924, - 45.460692 - ] - }, - "id": 645, - "properties": { - "id": "d0325326-9fbf-42e2-aefa-29fa09853c10", - "code": "32146", - "data": { - "stops": [ - { - "id": "2146", - "code": "32146", - "data": { - "gtfs": { - "stop_id": "2146", - "stop_code": "32146", - "stop_name": "av. Malo et Molière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et Molière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4630192331038, - 45.4607682771783 - ] - } - }, - { - "id": "4330", - "code": "34330", - "data": { - "gtfs": { - "stop_id": "4330", - "stop_code": "34330", - "stop_name": "av. Malo et Molière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et Molière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4628280986916, - 45.460615943468 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4821249721558 - }, - "name": "av. Malo et Molière", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462923666, - 45.46069211 - ] - }, - "is_frozen": false, - "integer_id": 645, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463069, - 45.459279 - ] - }, - "id": 646, - "properties": { - "id": "d13720b6-fb91-4a90-a816-addaef17cf17", - "code": "32147", - "data": { - "stops": [ - { - "id": "2147", - "code": "32147", - "data": { - "gtfs": { - "stop_id": "2147", - "stop_code": "32147", - "stop_name": "av. Malo et Mario", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et Mario", - "geography": { - "type": "Point", - "coordinates": [ - -73.4628465189701, - 45.4595382713116 - ] - } - }, - { - "id": "2754", - "code": "32754", - "data": { - "gtfs": { - "stop_id": "2754", - "stop_code": "32754", - "stop_name": "av. Malo et Murville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et Murville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4625439931521, - 45.4590206193123 - ] - } - }, - { - "id": "4340", - "code": "34340", - "data": { - "gtfs": { - "stop_id": "4340", - "stop_code": "34340", - "stop_name": "Mario et civique 2100", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Mario et civique 2100", - "geography": { - "type": "Point", - "coordinates": [ - -73.463593009063, - 45.4592689310323 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 969.4674773996558 - }, - "name": "av. Malo et Mario", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463068501, - 45.459279445 - ] - }, - "is_frozen": false, - "integer_id": 646, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 51, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451514, - 45.482026 - ] - }, - "id": 647, - "properties": { - "id": "9e951734-6b3c-4bdd-adf4-832ff4bf51af", - "code": "32149", - "data": { - "stops": [ - { - "id": "2149", - "code": "32149", - "data": { - "gtfs": { - "stop_id": "2149", - "stop_code": "32149", - "stop_name": "Bellevue et CENTRE D'EXPLOITATION DU RESEAU DE TRANSPORT DE LONGUEUIL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et CENTRE D'EXPLOITATION DU RESEAU DE TRANSPORT DE LONGUEUIL", - "geography": { - "type": "Point", - "coordinates": [ - -73.4511992334882, - 45.4820743019449 - ] - } - }, - { - "id": "2181", - "code": "32181", - "data": { - "gtfs": { - "stop_id": "2181", - "stop_code": "32181", - "stop_name": "Bellevue et civique 1685", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et civique 1685", - "geography": { - "type": "Point", - "coordinates": [ - -73.4518297366828, - 45.4819780241515 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8419761288819 - }, - "name": "Bellevue et CENTRE D'EXPLOITATION DU RESEAU DE TRANSPORT DE LONGUEUIL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451514485, - 45.482026163 - ] - }, - "is_frozen": false, - "integer_id": 647, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449997, - 45.48295 - ] - }, - "id": 648, - "properties": { - "id": "4d67ff32-8baa-4f46-bb29-fa3253415875", - "code": "32150", - "data": { - "stops": [ - { - "id": "2150", - "code": "32150", - "data": { - "gtfs": { - "stop_id": "2150", - "stop_code": "32150", - "stop_name": "Bellevue et Park", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et Park", - "geography": { - "type": "Point", - "coordinates": [ - -73.4500609739375, - 45.4827691293189 - ] - } - }, - { - "id": "2180", - "code": "32180", - "data": { - "gtfs": { - "stop_id": "2180", - "stop_code": "32180", - "stop_name": "Bellevue et Park", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et Park", - "geography": { - "type": "Point", - "coordinates": [ - -73.4499325849153, - 45.483130085118 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8575614075532 - }, - "name": "Bellevue et Park", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449996779, - 45.482949607 - ] - }, - "is_frozen": false, - "integer_id": 648, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44815, - 45.484447 - ] - }, - "id": 649, - "properties": { - "id": "d9b94443-0b59-40db-aecb-0acb5ea7976c", - "code": "32151", - "data": { - "stops": [ - { - "id": "2151", - "code": "32151", - "data": { - "gtfs": { - "stop_id": "2151", - "stop_code": "32151", - "stop_name": "Bellevue et Baron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et Baron", - "geography": { - "type": "Point", - "coordinates": [ - -73.4481502074088, - 45.4844469840891 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8828347597307 - }, - "name": "Bellevue et Baron", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448150207, - 45.484446984 - ] - }, - "is_frozen": false, - "integer_id": 649, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446753, - 45.485967 - ] - }, - "id": 650, - "properties": { - "id": "070bdb64-f7ee-43c2-8e32-71e1dacd4745", - "code": "32152", - "data": { - "stops": [ - { - "id": "2152", - "code": "32152", - "data": { - "gtfs": { - "stop_id": "2152", - "stop_code": "32152", - "stop_name": "Bellevue et du Centenaire", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et du Centenaire", - "geography": { - "type": "Point", - "coordinates": [ - -73.4467199073781, - 45.4858172176887 - ] - } - }, - { - "id": "2178", - "code": "32178", - "data": { - "gtfs": { - "stop_id": "2178", - "stop_code": "32178", - "stop_name": "Bellevue et du Centenaire", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et du Centenaire", - "geography": { - "type": "Point", - "coordinates": [ - -73.4467867590564, - 45.4861176776461 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9084998232593 - }, - "name": "Bellevue et du Centenaire", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446753333, - 45.485967448 - ] - }, - "is_frozen": false, - "integer_id": 650, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44551, - 45.487163 - ] - }, - "id": 651, - "properties": { - "id": "ee549609-3f81-482a-ad57-c350bc1bbf48", - "code": "32153", - "data": { - "stops": [ - { - "id": "2153", - "code": "32153", - "data": { - "gtfs": { - "stop_id": "2153", - "stop_code": "32153", - "stop_name": "Bellevue et boul. Payer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et boul. Payer", - "geography": { - "type": "Point", - "coordinates": [ - -73.4452856828035, - 45.4871986828388 - ] - } - }, - { - "id": "2177", - "code": "32177", - "data": { - "gtfs": { - "stop_id": "2177", - "stop_code": "32177", - "stop_name": "Bellevue et civique 1305", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et civique 1305", - "geography": { - "type": "Point", - "coordinates": [ - -73.4457337132402, - 45.4871277628699 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9286856589248 - }, - "name": "Bellevue et boul. Payer", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445509698, - 45.487163223 - ] - }, - "is_frozen": false, - "integer_id": 651, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461947, - 45.478537 - ] - }, - "id": 652, - "properties": { - "id": "9f622393-7da9-4ff8-9bda-12008512c7ed", - "code": "32158", - "data": { - "stops": [ - { - "id": "2158", - "code": "32158", - "data": { - "gtfs": { - "stop_id": "2158", - "stop_code": "32158", - "stop_name": "Agathe et André", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Agathe et André", - "geography": { - "type": "Point", - "coordinates": [ - -73.4620095751167, - 45.4785946714845 - ] - } - }, - { - "id": "2173", - "code": "32173", - "data": { - "gtfs": { - "stop_id": "2173", - "stop_code": "32173", - "stop_name": "André et Agathe", - "location_type": 0, - "parent_station": "" - } - }, - "name": "André et Agathe", - "geography": { - "type": "Point", - "coordinates": [ - -73.4618844649362, - 45.4784788627025 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7830912472314 - }, - "name": "Agathe et André", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46194702, - 45.478536767 - ] - }, - "is_frozen": false, - "integer_id": 652, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461426, - 45.477956 - ] - }, - "id": 653, - "properties": { - "id": "4122212c-2ecd-4db2-a305-20f02711d17b", - "code": "32159", - "data": { - "stops": [ - { - "id": "2159", - "code": "32159", - "data": { - "gtfs": { - "stop_id": "2159", - "stop_code": "32159", - "stop_name": "André et av. Aumont", - "location_type": 0, - "parent_station": "" - } - }, - "name": "André et av. Aumont", - "geography": { - "type": "Point", - "coordinates": [ - -73.461487299483, - 45.478020742483 - ] - } - }, - { - "id": "2172", - "code": "32172", - "data": { - "gtfs": { - "stop_id": "2172", - "stop_code": "32172", - "stop_name": "av. Aumont et André", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Aumont et André", - "geography": { - "type": "Point", - "coordinates": [ - -73.46136391506, - 45.4778911165502 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7732904528418 - }, - "name": "André et av. Aumont", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461425607, - 45.47795593 - ] - }, - "is_frozen": false, - "integer_id": 653, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462832, - 45.476981 - ] - }, - "id": 654, - "properties": { - "id": "8c855cee-f0d1-43ca-8e4b-f53ab51873bb", - "code": "32160", - "data": { - "stops": [ - { - "id": "2160", - "code": "32160", - "data": { - "gtfs": { - "stop_id": "2160", - "stop_code": "32160", - "stop_name": "av. Aumont et av. d'Athènes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Aumont et av. d'Athènes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4627871099821, - 45.4771049499467 - ] - } - }, - { - "id": "2171", - "code": "32171", - "data": { - "gtfs": { - "stop_id": "2171", - "stop_code": "32171", - "stop_name": "av. Aumont et av. d'Athènes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Aumont et av. d'Athènes", - "geography": { - "type": "Point", - "coordinates": [ - -73.462876406877, - 45.4768575210357 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7568445410737 - }, - "name": "av. Aumont et av. d'Athènes", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462831758, - 45.476981235 - ] - }, - "is_frozen": false, - "integer_id": 654, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464202, - 45.475788 - ] - }, - "id": 655, - "properties": { - "id": "33a5d9b6-fd0c-4372-b98d-5ab41a890e6f", - "code": "32161", - "data": { - "stops": [ - { - "id": "2161", - "code": "32161", - "data": { - "gtfs": { - "stop_id": "2161", - "stop_code": "32161", - "stop_name": "av. Aubert et civique 2475", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Aubert et civique 2475", - "geography": { - "type": "Point", - "coordinates": [ - -73.4641684359061, - 45.4756699120767 - ] - } - }, - { - "id": "2170", - "code": "32170", - "data": { - "gtfs": { - "stop_id": "2170", - "stop_code": "32170", - "stop_name": "av. Aubert et av. Aumont", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Aubert et av. Aumont", - "geography": { - "type": "Point", - "coordinates": [ - -73.4642361559351, - 45.4759061666221 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7367130372528 - }, - "name": "av. Aubert et civique 2475", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464202296, - 45.475788039 - ] - }, - "is_frozen": false, - "integer_id": 655, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461623, - 45.474384 - ] - }, - "id": 656, - "properties": { - "id": "c467599b-2164-4b14-b9ca-8960936bda58", - "code": "32162", - "data": { - "stops": [ - { - "id": "2162", - "code": "32162", - "data": { - "gtfs": { - "stop_id": "2162", - "stop_code": "32162", - "stop_name": "av. Aubert et Alfred", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Aubert et Alfred", - "geography": { - "type": "Point", - "coordinates": [ - -73.4616587918548, - 45.4744619924085 - ] - } - }, - { - "id": "2169", - "code": "32169", - "data": { - "gtfs": { - "stop_id": "2169", - "stop_code": "32169", - "stop_name": "Alfred et av. Aubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Alfred et av. Aubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.461587885986, - 45.4743060277036 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7130259963615 - }, - "name": "av. Aubert et Alfred", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461623339, - 45.47438401 - ] - }, - "is_frozen": false, - "integer_id": 656, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464103, - 45.472679 - ] - }, - "id": 657, - "properties": { - "id": "da6d2edd-8e3f-432e-9df4-cc472a80c9ad", - "code": "32163", - "data": { - "stops": [ - { - "id": "2163", - "code": "32163", - "data": { - "gtfs": { - "stop_id": "2163", - "stop_code": "32163", - "stop_name": "Alfred et Audette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Alfred et Audette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4641352908574, - 45.4727664966368 - ] - } - }, - { - "id": "2168", - "code": "32168", - "data": { - "gtfs": { - "stop_id": "2168", - "stop_code": "32168", - "stop_name": "Alfred et Audette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Alfred et Audette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4640706454128, - 45.4725912300564 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.684261219707 - }, - "name": "Alfred et Audette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464102968, - 45.472678863 - ] - }, - "is_frozen": false, - "integer_id": 657, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465933, - 45.47139 - ] - }, - "id": 658, - "properties": { - "id": "156c412f-0b84-4b14-a73e-e1d07d0b148d", - "code": "32164", - "data": { - "stops": [ - { - "id": "2164", - "code": "32164", - "data": { - "gtfs": { - "stop_id": "2164", - "stop_code": "32164", - "stop_name": "Alfred et boul. Lapinière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Alfred et boul. Lapinière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4659905692144, - 45.4714684035582 - ] - } - }, - { - "id": "2167", - "code": "32167", - "data": { - "gtfs": { - "stop_id": "2167", - "stop_code": "32167", - "stop_name": "Alfred et boul. Lapinière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Alfred et boul. Lapinière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4658747602677, - 45.4713108956132 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.662514707157 - }, - "name": "Alfred et boul. Lapinière", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465932665, - 45.47138965 - ] - }, - "is_frozen": false, - "integer_id": 658, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448365, - 45.484631 - ] - }, - "id": 659, - "properties": { - "id": "cea8ab13-e98b-471f-93af-2a54f4f6d0d8", - "code": "32179", - "data": { - "stops": [ - { - "id": "2179", - "code": "32179", - "data": { - "gtfs": { - "stop_id": "2179", - "stop_code": "32179", - "stop_name": "Bellevue et Baron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellevue et Baron", - "geography": { - "type": "Point", - "coordinates": [ - -73.4483651373859, - 45.4846310567515 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8859417579882 - }, - "name": "Bellevue et Baron", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448365137, - 45.484631057 - ] - }, - "is_frozen": false, - "integer_id": 659, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491529, - 45.457196 - ] - }, - "id": 660, - "properties": { - "id": "69fd316d-244b-48fa-871d-645ac04399fc", - "code": "32182", - "data": { - "stops": [ - { - "id": "2182", - "code": "32182", - "data": { - "gtfs": { - "stop_id": "2182", - "stop_code": "32182", - "stop_name": "boul. de Rome et boul. Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et boul. Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4915288910383, - 45.4571961528732 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4231956140387 - }, - "name": "boul. de Rome et boul. Marie-Victorin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491528891, - 45.457196153 - ] - }, - "is_frozen": false, - "integer_id": 660, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448657, - 45.571148 - ] - }, - "id": 661, - "properties": { - "id": "6672cb43-3241-42d7-b5c0-fdaed10338b9", - "code": "32183", - "data": { - "stops": [ - { - "id": "2183", - "code": "32183", - "data": { - "gtfs": { - "stop_id": "2183", - "stop_code": "32183", - "stop_name": "boul. de Mortagne et Volta", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Volta", - "geography": { - "type": "Point", - "coordinates": [ - -73.4486573437763, - 45.5711476378381 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3496093638884 - }, - "name": "boul. de Mortagne et Volta", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448657344, - 45.571147638 - ] - }, - "is_frozen": false, - "integer_id": 661, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.447232, - 45.580187 - ] - }, - "id": 662, - "properties": { - "id": "a9da3baa-5fa3-4048-b41d-0eb12d74f7c5", - "code": "32185", - "data": { - "stops": [ - { - "id": "2185", - "code": "32185", - "data": { - "gtfs": { - "stop_id": "2185", - "stop_code": "32185", - "stop_name": "boul. de Mortagne et Lionel-Groulx", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Lionel-Groulx", - "geography": { - "type": "Point", - "coordinates": [ - -73.4470239711468, - 45.5800816038741 - ] - } - }, - { - "id": "2201", - "code": "32201", - "data": { - "gtfs": { - "stop_id": "2201", - "stop_code": "32201", - "stop_name": "boul. de Mortagne et Lionel-Groulx", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Lionel-Groulx", - "geography": { - "type": "Point", - "coordinates": [ - -73.4474410047757, - 45.5802924532012 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5029211196014 - }, - "name": "boul. de Mortagne et Lionel-Groulx", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447232488, - 45.580187029 - ] - }, - "is_frozen": false, - "integer_id": 662, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44734, - 45.582486 - ] - }, - "id": 663, - "properties": { - "id": "44ce6da8-ee79-4e09-9c16-f31566643c0c", - "code": "32186", - "data": { - "stops": [ - { - "id": "2186", - "code": "32186", - "data": { - "gtfs": { - "stop_id": "2186", - "stop_code": "32186", - "stop_name": "boul. de Mortagne et Calixa-Lavallée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Calixa-Lavallée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4471093200052, - 45.5822901725193 - ] - } - }, - { - "id": "2200", - "code": "32200", - "data": { - "gtfs": { - "stop_id": "2200", - "stop_code": "32200", - "stop_name": "boul. de Mortagne et Calixa-Lavallée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Calixa-Lavallée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4473022203604, - 45.5826814395652 - ] - } - }, - { - "id": "2411", - "code": "32411", - "data": { - "gtfs": { - "stop_id": "2411", - "stop_code": "32411", - "stop_name": "Calixa-Lavallée et boul. de Mortagne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Calixa-Lavallée et boul. de Mortagne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4475715419449, - 45.582452612425 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5419209690286 - }, - "name": "boul. de Mortagne et Calixa-Lavallée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447340431, - 45.582485806 - ] - }, - "is_frozen": false, - "integer_id": 663, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44589, - 45.583811 - ] - }, - "id": 664, - "properties": { - "id": "7b512bac-ad2d-4d5a-87d8-173290a7b311", - "code": "32187", - "data": { - "stops": [ - { - "id": "2187", - "code": "32187", - "data": { - "gtfs": { - "stop_id": "2187", - "stop_code": "32187", - "stop_name": "boul. de Mortagne et du Perche", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et du Perche", - "geography": { - "type": "Point", - "coordinates": [ - -73.4460287140069, - 45.5835716770604 - ] - } - }, - { - "id": "2316", - "code": "32316", - "data": { - "gtfs": { - "stop_id": "2316", - "stop_code": "32316", - "stop_name": "du Perche et boul. de Mortagne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Perche et boul. de Mortagne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4457503101092, - 45.5837462769335 - ] - } - }, - { - "id": "3548", - "code": "33548", - "data": { - "gtfs": { - "stop_id": "3548", - "stop_code": "33548", - "stop_name": "boul. de Mortagne et du Perche", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et du Perche", - "geography": { - "type": "Point", - "coordinates": [ - -73.4459427018356, - 45.5840499780568 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5644027475745 - }, - "name": "boul. de Mortagne et du Perche", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445889512, - 45.583810828 - ] - }, - "is_frozen": false, - "integer_id": 664, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.447297, - 45.599042 - ] - }, - "id": 665, - "properties": { - "id": "e215ed06-76bb-473a-80f3-21384e4c300f", - "code": "32189", - "data": { - "stops": [ - { - "id": "2189", - "code": "32189", - "data": { - "gtfs": { - "stop_id": "2189", - "stop_code": "32189", - "stop_name": "boul. De Montarville et Samuel-De Champlain", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et Samuel-De Champlain", - "geography": { - "type": "Point", - "coordinates": [ - -73.4469078731305, - 45.5991391317818 - ] - } - }, - { - "id": "2352", - "code": "32352", - "data": { - "gtfs": { - "stop_id": "2352", - "stop_code": "32352", - "stop_name": "Samuel-De Champlain et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4472180145817, - 45.5990357952956 - ] - } - }, - { - "id": "3325", - "code": "33325", - "data": { - "gtfs": { - "stop_id": "3325", - "stop_code": "33325", - "stop_name": "boul. De Montarville et Samuel-De Champlain", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et Samuel-De Champlain", - "geography": { - "type": "Point", - "coordinates": [ - -73.4469828873584, - 45.5989447219207 - ] - } - }, - { - "id": "4289", - "code": "34289", - "data": { - "gtfs": { - "stop_id": "4289", - "stop_code": "34289", - "stop_name": "Samuel-De Champlain et civique 425", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et civique 425", - "geography": { - "type": "Point", - "coordinates": [ - -73.4476869952226, - 45.5989924260539 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8229431363615 - }, - "name": "boul. De Montarville et Samuel-De Champlain", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447297434, - 45.599041927 - ] - }, - "is_frozen": false, - "integer_id": 665, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456546, - 45.606424 - ] - }, - "id": 666, - "properties": { - "id": "e34a3beb-0101-4ee3-90ec-6a82d60bf88b", - "code": "32191", - "data": { - "stops": [ - { - "id": "2191", - "code": "32191", - "data": { - "gtfs": { - "stop_id": "2191", - "stop_code": "32191", - "stop_name": "boul. De Montarville et Samuel-Provost", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et Samuel-Provost", - "geography": { - "type": "Point", - "coordinates": [ - -73.4563765229973, - 45.606539719796 - ] - } - }, - { - "id": "2270", - "code": "32270", - "data": { - "gtfs": { - "stop_id": "2270", - "stop_code": "32270", - "stop_name": "boul. Marie-Victorin et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.456572720538, - 45.6061618673388 - ] - } - }, - { - "id": "4017", - "code": "34017", - "data": { - "gtfs": { - "stop_id": "4017", - "stop_code": "34017", - "stop_name": "boul. Marie-Victorin et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4567163125841, - 45.6066861950474 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.948325442891 - }, - "name": "boul. De Montarville et Samuel-Provost", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456546418, - 45.606424031 - ] - }, - "is_frozen": false, - "integer_id": 666, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442736, - 45.596144 - ] - }, - "id": 667, - "properties": { - "id": "0872c388-8faf-4852-b4ce-cf3f6312e0ef", - "code": "32197", - "data": { - "stops": [ - { - "id": "2197", - "code": "32197", - "data": { - "gtfs": { - "stop_id": "2197", - "stop_code": "32197", - "stop_name": "boul. De Montarville et de Brion", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et de Brion", - "geography": { - "type": "Point", - "coordinates": [ - -73.4429217759937, - 45.5961151227576 - ] - } - }, - { - "id": "2368", - "code": "32368", - "data": { - "gtfs": { - "stop_id": "2368", - "stop_code": "32368", - "stop_name": "Jacques-Cartier et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jacques-Cartier et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4425493095665, - 45.5961738631086 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7737446290439 - }, - "name": "boul. De Montarville et de Brion", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442735543, - 45.596144493 - ] - }, - "is_frozen": false, - "integer_id": 667, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491549, - 45.562578 - ] - }, - "id": 668, - "properties": { - "id": "84a0424b-0f35-4bd8-8109-5ac9219d5869", - "code": "32203", - "data": { - "stops": [ - { - "id": "2203", - "code": "32203", - "data": { - "gtfs": { - "stop_id": "2203", - "stop_code": "32203", - "stop_name": "boul. Marie-Victorin et Lapointe", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Lapointe", - "geography": { - "type": "Point", - "coordinates": [ - -73.4916166426828, - 45.562388576879 - ] - } - }, - { - "id": "2262", - "code": "32262", - "data": { - "gtfs": { - "stop_id": "2262", - "stop_code": "32262", - "stop_name": "boul. Marie-Victorin et Lapointe", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Lapointe", - "geography": { - "type": "Point", - "coordinates": [ - -73.4916650240449, - 45.5627665105341 - ] - } - }, - { - "id": "2588", - "code": "32588", - "data": { - "gtfs": { - "stop_id": "2588", - "stop_code": "32588", - "stop_name": "Lapointe et boul. Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lapointe et boul. Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4914320751289, - 45.5625370357333 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2043245295058 - }, - "name": "boul. Marie-Victorin et Lapointe", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.49154855, - 45.562577544 - ] - }, - "is_frozen": false, - "integer_id": 668, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486242, - 45.569302 - ] - }, - "id": 669, - "properties": { - "id": "de56e105-40ff-411e-a830-378b68780088", - "code": "32204", - "data": { - "stops": [ - { - "id": "2204", - "code": "32204", - "data": { - "gtfs": { - "stop_id": "2204", - "stop_code": "32204", - "stop_name": "boul. Marie-Victorin et boul. Jean-Paul-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et boul. Jean-Paul-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4862422985231, - 45.5693015429731 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.318307823495 - }, - "name": "boul. Marie-Victorin et boul. Jean-Paul-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486242299, - 45.569301543 - ] - }, - "is_frozen": false, - "integer_id": 669, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482137, - 45.573075 - ] - }, - "id": 670, - "properties": { - "id": "ab105343-272d-4aa3-9238-846c2fa787cb", - "code": "32205", - "data": { - "stops": [ - { - "id": "2205", - "code": "32205", - "data": { - "gtfs": { - "stop_id": "2205", - "stop_code": "32205", - "stop_name": "boul. Marie-Victorin et Guy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Guy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4821523669673, - 45.5729064133973 - ] - } - }, - { - "id": "3572", - "code": "33572", - "data": { - "gtfs": { - "stop_id": "3572", - "stop_code": "33572", - "stop_name": "boul. Marie-Victorin et Guy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Guy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4821225223181, - 45.5732437962198 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.382293861503 - }, - "name": "boul. Marie-Victorin et Guy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482137445, - 45.573075105 - ] - }, - "is_frozen": false, - "integer_id": 670, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.480385, - 45.574548 - ] - }, - "id": 671, - "properties": { - "id": "dc112aae-906c-47be-a1fb-06ef714fd1ab", - "code": "32206", - "data": { - "stops": [ - { - "id": "2206", - "code": "32206", - "data": { - "gtfs": { - "stop_id": "2206", - "stop_code": "32206", - "stop_name": "boul. Marie-Victorin et Guillerm", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Guillerm", - "geography": { - "type": "Point", - "coordinates": [ - -73.4803969811333, - 45.5743897576271 - ] - } - }, - { - "id": "2257", - "code": "32257", - "data": { - "gtfs": { - "stop_id": "2257", - "stop_code": "32257", - "stop_name": "boul. Marie-Victorin et Guillerm", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Guillerm", - "geography": { - "type": "Point", - "coordinates": [ - -73.480373705224, - 45.5747068714232 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4072776590081 - }, - "name": "boul. Marie-Victorin et Guillerm", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.480385343, - 45.574548315 - ] - }, - "is_frozen": false, - "integer_id": 671, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479146, - 45.575529 - ] - }, - "id": 672, - "properties": { - "id": "75347f42-115f-47ec-b394-c1f56ce167fb", - "code": "32207", - "data": { - "stops": [ - { - "id": "2207", - "code": "32207", - "data": { - "gtfs": { - "stop_id": "2207", - "stop_code": "32207", - "stop_name": "boul. Marie-Victorin et boul. Guimond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et boul. Guimond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4792153578925, - 45.5753715782341 - ] - } - }, - { - "id": "3870", - "code": "33870", - "data": { - "gtfs": { - "stop_id": "3870", - "stop_code": "33870", - "stop_name": "boul. Marie-Victorin et boul. Guimond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et boul. Guimond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4792152802624, - 45.5756862097234 - ] - } - }, - { - "id": "5233", - "code": "35233", - "data": { - "gtfs": { - "stop_id": "5233", - "stop_code": "35233", - "stop_name": "boul. Guimond et boul. Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Guimond et boul. Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4790769377167, - 45.5754864218652 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4239081270662 - }, - "name": "boul. Marie-Victorin et boul. Guimond", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479146148, - 45.575528894 - ] - }, - "is_frozen": false, - "integer_id": 672, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.477087, - 45.577316 - ] - }, - "id": 673, - "properties": { - "id": "bf75043d-39f5-40a1-89fa-2154a9f2a45f", - "code": "32208", - "data": { - "stops": [ - { - "id": "2208", - "code": "32208", - "data": { - "gtfs": { - "stop_id": "2208", - "stop_code": "32208", - "stop_name": "boul. Marie-Victorin et Arsène", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Arsène", - "geography": { - "type": "Point", - "coordinates": [ - -73.4769979499007, - 45.5772428026588 - ] - } - }, - { - "id": "2255", - "code": "32255", - "data": { - "gtfs": { - "stop_id": "2255", - "stop_code": "32255", - "stop_name": "boul. Marie-Victorin et Arsène", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Arsène", - "geography": { - "type": "Point", - "coordinates": [ - -73.4771758390855, - 45.5773894892408 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4542218560132 - }, - "name": "boul. Marie-Victorin et Arsène", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.477086894, - 45.577316146 - ] - }, - "is_frozen": false, - "integer_id": 673, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460972, - 45.586236 - ] - }, - "id": 674, - "properties": { - "id": "2d2f5d4f-b80f-4685-8856-d5cf556fe1b0", - "code": "32210", - "data": { - "stops": [ - { - "id": "2210", - "code": "32210", - "data": { - "gtfs": { - "stop_id": "2210", - "stop_code": "32210", - "stop_name": "boul. du Fort-Saint-Louis et boul. Industriel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et boul. Industriel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4613214725522, - 45.5860849166582 - ] - } - }, - { - "id": "4019", - "code": "34019", - "data": { - "gtfs": { - "stop_id": "4019", - "stop_code": "34019", - "stop_name": "boul. du Fort-Saint-Louis et boul. Industriel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et boul. Industriel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4612600523212, - 45.5864181577347 - ] - } - }, - { - "id": "4074", - "code": "34074", - "data": { - "gtfs": { - "stop_id": "4074", - "stop_code": "34074", - "stop_name": "boul. Industriel et boul. du Fort-Saint-Louis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Industriel et boul. du Fort-Saint-Louis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4606223242219, - 45.586053585081 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6055527586639 - }, - "name": "boul. du Fort-Saint-Louis et boul. Industriel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.460971898, - 45.586235871 - ] - }, - "is_frozen": false, - "integer_id": 674, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459872, - 45.587775 - ] - }, - "id": 675, - "properties": { - "id": "c650007a-bdeb-4831-9df5-833406e44887", - "code": "32211", - "data": { - "stops": [ - { - "id": "2211", - "code": "32211", - "data": { - "gtfs": { - "stop_id": "2211", - "stop_code": "32211", - "stop_name": "boul. du Fort-Saint-Louis et De Cournoyer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et De Cournoyer", - "geography": { - "type": "Point", - "coordinates": [ - -73.4596298470529, - 45.5879039518062 - ] - } - }, - { - "id": "2298", - "code": "32298", - "data": { - "gtfs": { - "stop_id": "2298", - "stop_code": "32298", - "stop_name": "boul. du Fort-Saint-Louis et Claude-Dauzat", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Claude-Dauzat", - "geography": { - "type": "Point", - "coordinates": [ - -73.4601139579856, - 45.5876456799918 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6316695006225 - }, - "name": "boul. du Fort-Saint-Louis et De Cournoyer", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459871903, - 45.587774816 - ] - }, - "is_frozen": false, - "integer_id": 675, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464014, - 45.586191 - ] - }, - "id": 676, - "properties": { - "id": "b54db9a8-0c8c-43a8-a385-bc532fde3f70", - "code": "32213", - "data": { - "stops": [ - { - "id": "2213", - "code": "32213", - "data": { - "gtfs": { - "stop_id": "2213", - "stop_code": "32213", - "stop_name": "De La Barre et civique 50", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Barre et civique 50", - "geography": { - "type": "Point", - "coordinates": [ - -73.4640907816779, - 45.5861522965495 - ] - } - }, - { - "id": "2301", - "code": "32301", - "data": { - "gtfs": { - "stop_id": "2301", - "stop_code": "32301", - "stop_name": "De La Barre et civique 50", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Barre et civique 50", - "geography": { - "type": "Point", - "coordinates": [ - -73.4639371768524, - 45.586229035145 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6047856370233 - }, - "name": "De La Barre et civique 50", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464013979, - 45.586190666 - ] - }, - "is_frozen": false, - "integer_id": 676, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458299, - 45.589521 - ] - }, - "id": 677, - "properties": { - "id": "8babca8c-ebff-46bc-b0c6-b6576c4fada6", - "code": "32214", - "data": { - "stops": [ - { - "id": "2214", - "code": "32214", - "data": { - "gtfs": { - "stop_id": "2214", - "stop_code": "32214", - "stop_name": "boul. du Fort-Saint-Louis et civique 198", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et civique 198", - "geography": { - "type": "Point", - "coordinates": [ - -73.4582801963323, - 45.5894277996288 - ] - } - }, - { - "id": "2297", - "code": "32297", - "data": { - "gtfs": { - "stop_id": "2297", - "stop_code": "32297", - "stop_name": "boul. du Fort-Saint-Louis et civique 198", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et civique 198", - "geography": { - "type": "Point", - "coordinates": [ - -73.4583172359911, - 45.5896135433261 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6613001849074 - }, - "name": "boul. du Fort-Saint-Louis et civique 198", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.458298716, - 45.589520671 - ] - }, - "is_frozen": false, - "integer_id": 677, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45686, - 45.591543 - ] - }, - "id": 678, - "properties": { - "id": "3fabaebc-1128-4bfb-ac88-6a1fb328d6a5", - "code": "32215", - "data": { - "stops": [ - { - "id": "2215", - "code": "32215", - "data": { - "gtfs": { - "stop_id": "2215", - "stop_code": "32215", - "stop_name": "boul. du Fort-Saint-Louis et Tailhandier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Tailhandier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4567806045779, - 45.591475090531 - ] - } - }, - { - "id": "2296", - "code": "32296", - "data": { - "gtfs": { - "stop_id": "2296", - "stop_code": "32296", - "stop_name": "boul. du Fort-Saint-Louis et Tailhandier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Tailhandier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4569392459746, - 45.591611304469 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.695629962271 - }, - "name": "boul. du Fort-Saint-Louis et Tailhandier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456859925, - 45.591543198 - ] - }, - "is_frozen": false, - "integer_id": 678, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455705, - 45.593973 - ] - }, - "id": 679, - "properties": { - "id": "50c385af-a7f1-479f-b40d-4ed198aca8ce", - "code": "32216", - "data": { - "stops": [ - { - "id": "2216", - "code": "32216", - "data": { - "gtfs": { - "stop_id": "2216", - "stop_code": "32216", - "stop_name": "boul. du Fort-Saint-Louis et Thomas-Pépin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Thomas-Pépin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4555837119844, - 45.5939898114269 - ] - } - }, - { - "id": "2295", - "code": "32295", - "data": { - "gtfs": { - "stop_id": "2295", - "stop_code": "32295", - "stop_name": "boul. du Fort-Saint-Louis et Thomas-Pépin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Thomas-Pépin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4558263195612, - 45.5939559774563 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.736875747686 - }, - "name": "boul. du Fort-Saint-Louis et Thomas-Pépin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455705016, - 45.593972894 - ] - }, - "is_frozen": false, - "integer_id": 679, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454782, - 45.597707 - ] - }, - "id": 680, - "properties": { - "id": "c70f5c69-70b5-4f23-92e4-0440931e6d31", - "code": "32217", - "data": { - "stops": [ - { - "id": "2217", - "code": "32217", - "data": { - "gtfs": { - "stop_id": "2217", - "stop_code": "32217", - "stop_name": "boul. du Fort-Saint-Louis et TUNNEL M.-VICTORIN", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et TUNNEL M.-VICTORIN", - "geography": { - "type": "Point", - "coordinates": [ - -73.4547820298938, - 45.5977072115247 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.800278705873 - }, - "name": "boul. du Fort-Saint-Louis et TUNNEL M.-VICTORIN", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45478203, - 45.597707212 - ] - }, - "is_frozen": false, - "integer_id": 680, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454228, - 45.600559 - ] - }, - "id": 681, - "properties": { - "id": "0c7061af-3fd1-4686-aa29-c78d142ae807", - "code": "32218", - "data": { - "stops": [ - { - "id": "2218", - "code": "32218", - "data": { - "gtfs": { - "stop_id": "2218", - "stop_code": "32218", - "stop_name": "boul. du Fort-Saint-Louis et Jean-De Lafond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Jean-De Lafond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4542284647133, - 45.600558672337 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.84870050508 - }, - "name": "boul. du Fort-Saint-Louis et Jean-De Lafond", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454228465, - 45.600558672 - ] - }, - "is_frozen": false, - "integer_id": 681, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453543, - 45.60383 - ] - }, - "id": 682, - "properties": { - "id": "bef3dd7a-32fd-4081-9a62-9328ee51057a", - "code": "32219", - "data": { - "stops": [ - { - "id": "2219", - "code": "32219", - "data": { - "gtfs": { - "stop_id": "2219", - "stop_code": "32219", - "stop_name": "boul. du Fort-Saint-Louis et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4535431214001, - 45.6038301238227 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9042633289378 - }, - "name": "boul. du Fort-Saint-Louis et boul. De Montarville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453543121, - 45.603830124 - ] - }, - "is_frozen": false, - "integer_id": 682, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45292, - 45.607011 - ] - }, - "id": 683, - "properties": { - "id": "1fa5bec6-00bf-4d49-9290-67a2b0919f84", - "code": "32220", - "data": { - "stops": [ - { - "id": "2220", - "code": "32220", - "data": { - "gtfs": { - "stop_id": "2220", - "stop_code": "32220", - "stop_name": "boul. du Fort-Saint-Louis et Jacques-Viau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Jacques-Viau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4529198097415, - 45.6070109094755 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9582954435126 - }, - "name": "boul. du Fort-Saint-Louis et Jacques-Viau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45291981, - 45.607010909 - ] - }, - "is_frozen": false, - "integer_id": 683, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452477, - 45.609973 - ] - }, - "id": 684, - "properties": { - "id": "e2d71c2d-a170-4ce7-a381-519755a00e36", - "code": "32221", - "data": { - "stops": [ - { - "id": "2221", - "code": "32221", - "data": { - "gtfs": { - "stop_id": "2221", - "stop_code": "32221", - "stop_name": "boul. du Fort-Saint-Louis et Pierre-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Pierre-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4524063738835, - 45.6097784195496 - ] - } - }, - { - "id": "3605", - "code": "33605", - "data": { - "gtfs": { - "stop_id": "3605", - "stop_code": "33605", - "stop_name": "boul. du Fort-Saint-Louis et Pierre-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Pierre-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4525475343747, - 45.6101681173755 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.008625300127 - }, - "name": "boul. du Fort-Saint-Louis et Pierre-Boucher", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452476954, - 45.609973268 - ] - }, - "is_frozen": false, - "integer_id": 684, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451816, - 45.612252 - ] - }, - "id": 685, - "properties": { - "id": "039c87a4-2647-4079-9a79-c7d3278ef6b2", - "code": "32222", - "data": { - "stops": [ - { - "id": "2222", - "code": "32222", - "data": { - "gtfs": { - "stop_id": "2222", - "stop_code": "32222", - "stop_name": "boul. du Fort-Saint-Louis et De Lavaltrie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et De Lavaltrie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4517741864955, - 45.612071800909 - ] - } - }, - { - "id": "2291", - "code": "32291", - "data": { - "gtfs": { - "stop_id": "2291", - "stop_code": "32291", - "stop_name": "boul. du Fort-Saint-Louis et De Lavaltrie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et De Lavaltrie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4518570996264, - 45.6124312406832 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.0473376894279 - }, - "name": "boul. du Fort-Saint-Louis et De Lavaltrie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451815643, - 45.612251521 - ] - }, - "is_frozen": false, - "integer_id": 685, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451028, - 45.614489 - ] - }, - "id": 686, - "properties": { - "id": "507d4d36-69ca-4fe9-9a4e-be52c3bffed9", - "code": "32223", - "data": { - "stops": [ - { - "id": "2223", - "code": "32223", - "data": { - "gtfs": { - "stop_id": "2223", - "stop_code": "32223", - "stop_name": "boul. du Fort-Saint-Louis et De Montbrun", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et De Montbrun", - "geography": { - "type": "Point", - "coordinates": [ - -73.4509215437633, - 45.6142475958436 - ] - } - }, - { - "id": "3327", - "code": "33327", - "data": { - "gtfs": { - "stop_id": "3327", - "stop_code": "33327", - "stop_name": "boul. du Fort-Saint-Louis et De Montbrun", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et De Montbrun", - "geography": { - "type": "Point", - "coordinates": [ - -73.4508984136885, - 45.614730412418 - ] - } - }, - { - "id": "5866", - "code": "30635", - "data": { - "gtfs": { - "stop_id": "5866", - "stop_code": "30635", - "stop_name": "De Montbrun et boul. du Fort-Saint-Louis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Montbrun et boul. du Fort-Saint-Louis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4511581629825, - 45.6143847343649 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.0853618373272 - }, - "name": "boul. du Fort-Saint-Louis et De Montbrun", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451028288, - 45.614489004 - ] - }, - "is_frozen": false, - "integer_id": 686, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449507, - 45.617107 - ] - }, - "id": 687, - "properties": { - "id": "0778ac37-7369-4d81-abbc-9aa1d13b1c38", - "code": "32224", - "data": { - "stops": [ - { - "id": "2224", - "code": "32224", - "data": { - "gtfs": { - "stop_id": "2224", - "stop_code": "32224", - "stop_name": "boul. du Fort-Saint-Louis et Pierre-Bourgery", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Pierre-Bourgery", - "geography": { - "type": "Point", - "coordinates": [ - -73.4494545802536, - 45.6169789857563 - ] - } - }, - { - "id": "2290", - "code": "32290", - "data": { - "gtfs": { - "stop_id": "2290", - "stop_code": "32290", - "stop_name": "boul. du Fort-Saint-Louis et Pierre-Bourgery", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Pierre-Bourgery", - "geography": { - "type": "Point", - "coordinates": [ - -73.4495586797765, - 45.6172358418181 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.1298652192534 - }, - "name": "boul. du Fort-Saint-Louis et Pierre-Bourgery", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44950663, - 45.617107414 - ] - }, - "is_frozen": false, - "integer_id": 687, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445479, - 45.623999 - ] - }, - "id": 688, - "properties": { - "id": "253353ba-aba2-4e63-bf86-819bb7c9cecd", - "code": "32226", - "data": { - "stops": [ - { - "id": "2226", - "code": "32226", - "data": { - "gtfs": { - "stop_id": "2226", - "stop_code": "32226", - "stop_name": "boul. du Fort-Saint-Louis et Joseph-Bouchette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Joseph-Bouchette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4454828355888, - 45.6238187246229 - ] - } - }, - { - "id": "3329", - "code": "33329", - "data": { - "gtfs": { - "stop_id": "3329", - "stop_code": "33329", - "stop_name": "boul. du Fort-Saint-Louis et Joseph-Bouchette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Joseph-Bouchette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4454760648664, - 45.6241795156813 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.2470283695029 - }, - "name": "boul. du Fort-Saint-Louis et Joseph-Bouchette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44547945, - 45.62399912 - ] - }, - "is_frozen": false, - "integer_id": 688, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.444119, - 45.626339 - ] - }, - "id": 689, - "properties": { - "id": "5bd0f63e-39b6-46f9-8d43-d5974b208b0e", - "code": "32227", - "data": { - "stops": [ - { - "id": "2227", - "code": "32227", - "data": { - "gtfs": { - "stop_id": "2227", - "stop_code": "32227", - "stop_name": "boul. du Fort-Saint-Louis et Jean-Bois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Jean-Bois", - "geography": { - "type": "Point", - "coordinates": [ - -73.4440672965056, - 45.6262495242451 - ] - } - }, - { - "id": "3328", - "code": "33328", - "data": { - "gtfs": { - "stop_id": "3328", - "stop_code": "33328", - "stop_name": "boul. du Fort-Saint-Louis et Jean-Bois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Jean-Bois", - "geography": { - "type": "Point", - "coordinates": [ - -73.4441714081908, - 45.6264284528891 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.2868172377288 - }, - "name": "boul. du Fort-Saint-Louis et Jean-Bois", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.444119352, - 45.626338989 - ] - }, - "is_frozen": false, - "integer_id": 689, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442031, - 45.630033 - ] - }, - "id": 690, - "properties": { - "id": "78a9a588-c1f0-470f-bbcc-52b6da866dad", - "code": "32229", - "data": { - "stops": [ - { - "id": "2229", - "code": "32229", - "data": { - "gtfs": { - "stop_id": "2229", - "stop_code": "32229", - "stop_name": "boul. du Fort-Saint-Louis et civique 958", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et civique 958", - "geography": { - "type": "Point", - "coordinates": [ - -73.4420056585702, - 45.6298342919573 - ] - } - }, - { - "id": "2292", - "code": "32292", - "data": { - "gtfs": { - "stop_id": "2292", - "stop_code": "32292", - "stop_name": "boul. du Fort-Saint-Louis et civique 980", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et civique 980", - "geography": { - "type": "Point", - "coordinates": [ - -73.4420567393866, - 45.630231438536 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.3496406432092 - }, - "name": "boul. du Fort-Saint-Louis et civique 958", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442031199, - 45.630032865 - ] - }, - "is_frozen": false, - "integer_id": 690, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440845, - 45.632839 - ] - }, - "id": 691, - "properties": { - "id": "90b41412-0c12-4505-b7c9-b915901b1dd2", - "code": "32230", - "data": { - "stops": [ - { - "id": "2230", - "code": "32230", - "data": { - "gtfs": { - "stop_id": "2230", - "stop_code": "32230", - "stop_name": "D'Argenson et Gilles-Hocquart", - "location_type": 0, - "parent_station": "" - } - }, - "name": "D'Argenson et Gilles-Hocquart", - "geography": { - "type": "Point", - "coordinates": [ - -73.4412886046867, - 45.6331005935022 - ] - } - }, - { - "id": "3919", - "code": "33919", - "data": { - "gtfs": { - "stop_id": "3919", - "stop_code": "33919", - "stop_name": "D'Argenson et boul. du Fort-Saint-Louis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "D'Argenson et boul. du Fort-Saint-Louis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4408373879768, - 45.6328435999782 - ] - } - }, - { - "id": "5463", - "code": "30210", - "data": { - "gtfs": { - "stop_id": "5463", - "stop_code": "30210", - "stop_name": "boul. du Fort-Saint-Louis et François-V.-Malhiot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et François-V.-Malhiot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4404015524482, - 45.6325769602891 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.3973702293853 - }, - "name": "D'Argenson et Gilles-Hocquart", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440845079, - 45.632838777 - ] - }, - "is_frozen": false, - "integer_id": 691, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443511, - 45.63417 - ] - }, - "id": 692, - "properties": { - "id": "f659a652-a61c-4199-abbc-a42f3ceef5cb", - "code": "32231", - "data": { - "stops": [ - { - "id": "2231", - "code": "32231", - "data": { - "gtfs": { - "stop_id": "2231", - "stop_code": "32231", - "stop_name": "D'Argenson et De Duquesne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "D'Argenson et De Duquesne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4435927921883, - 45.6343247038962 - ] - } - }, - { - "id": "2285", - "code": "32285", - "data": { - "gtfs": { - "stop_id": "2285", - "stop_code": "32285", - "stop_name": "D'Argenson et Le Gardeur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "D'Argenson et Le Gardeur", - "geography": { - "type": "Point", - "coordinates": [ - -73.4434298792015, - 45.6340146822544 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.4200120664528 - }, - "name": "D'Argenson et De Duquesne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443511336, - 45.634169693 - ] - }, - "is_frozen": false, - "integer_id": 692, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445118, - 45.635426 - ] - }, - "id": 693, - "properties": { - "id": "02fef102-0f62-42d0-b4ed-790bc76ef1ad", - "code": "32232", - "data": { - "stops": [ - { - "id": "2232", - "code": "32232", - "data": { - "gtfs": { - "stop_id": "2232", - "stop_code": "32232", - "stop_name": "D'Argenson et Michel-Moreau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "D'Argenson et Michel-Moreau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4449728974213, - 45.6353966629774 - ] - } - }, - { - "id": "2708", - "code": "32708", - "data": { - "gtfs": { - "stop_id": "2708", - "stop_code": "32708", - "stop_name": "D'Argenson et Michel-Moreau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "D'Argenson et Michel-Moreau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4452633495519, - 45.6354554565122 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.4413871182869 - }, - "name": "D'Argenson et Michel-Moreau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445118123, - 45.63542606 - ] - }, - "is_frozen": false, - "integer_id": 693, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.447675, - 45.637282 - ] - }, - "id": 694, - "properties": { - "id": "389622d0-ee1f-428b-9366-e69f134ff23e", - "code": "32233", - "data": { - "stops": [ - { - "id": "2233", - "code": "32233", - "data": { - "gtfs": { - "stop_id": "2233", - "stop_code": "32233", - "stop_name": "D'Argenson et boul. Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "D'Argenson et boul. Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4475824609224, - 45.6373480184109 - ] - } - }, - { - "id": "3918", - "code": "33918", - "data": { - "gtfs": { - "stop_id": "3918", - "stop_code": "33918", - "stop_name": "boul. Marie-Victorin et D'Argenson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et D'Argenson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4477674158721, - 45.6372156151612 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.4729624133877 - }, - "name": "D'Argenson et boul. Marie-Victorin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447674938, - 45.637281817 - ] - }, - "is_frozen": false, - "integer_id": 694, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44944, - 45.635356 - ] - }, - "id": 695, - "properties": { - "id": "c9c6e3a8-2822-43cf-8bc7-9616a4adb84c", - "code": "32234", - "data": { - "stops": [ - { - "id": "2234", - "code": "32234", - "data": { - "gtfs": { - "stop_id": "2234", - "stop_code": "32234", - "stop_name": "boul. Marie-Victorin et Birtz", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Birtz", - "geography": { - "type": "Point", - "coordinates": [ - -73.4494436772629, - 45.635482996359 - ] - } - }, - { - "id": "2283", - "code": "32283", - "data": { - "gtfs": { - "stop_id": "2283", - "stop_code": "32283", - "stop_name": "boul. Marie-Victorin et Birtz", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Birtz", - "geography": { - "type": "Point", - "coordinates": [ - -73.4494365555464, - 45.6352280907031 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.440187365104 - }, - "name": "boul. Marie-Victorin et Birtz", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449440116, - 45.635355544 - ] - }, - "is_frozen": false, - "integer_id": 695, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452047, - 45.63267 - ] - }, - "id": 696, - "properties": { - "id": "17cb8bb3-d8b7-472f-9a1a-e49fc66b519c", - "code": "32235", - "data": { - "stops": [ - { - "id": "2235", - "code": "32235", - "data": { - "gtfs": { - "stop_id": "2235", - "stop_code": "32235", - "stop_name": "boul. Marie-Victorin et De Mésy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De Mésy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4520474200582, - 45.6326698328993 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.3944962304411 - }, - "name": "boul. Marie-Victorin et De Mésy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45204742, - 45.632669833 - ] - }, - "is_frozen": false, - "integer_id": 696, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452974, - 45.630609 - ] - }, - "id": 697, - "properties": { - "id": "777d67e8-62c3-46b4-a71f-e76a88b45f45", - "code": "32236", - "data": { - "stops": [ - { - "id": "2236", - "code": "32236", - "data": { - "gtfs": { - "stop_id": "2236", - "stop_code": "32236", - "stop_name": "boul. Marie-Victorin et Charles-Guimond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Charles-Guimond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4530507871508, - 45.6306894492871 - ] - } - }, - { - "id": "2281", - "code": "32281", - "data": { - "gtfs": { - "stop_id": "2281", - "stop_code": "32281", - "stop_name": "boul. Marie-Victorin et Charles-Guimond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Charles-Guimond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4528970273717, - 45.6305276662327 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.359432814942 - }, - "name": "boul. Marie-Victorin et Charles-Guimond", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452973907, - 45.630608558 - ] - }, - "is_frozen": false, - "integer_id": 697, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453854, - 45.62805 - ] - }, - "id": 698, - "properties": { - "id": "6928ef4b-2825-4234-84d9-1c82edb211b0", - "code": "32237", - "data": { - "stops": [ - { - "id": "2237", - "code": "32237", - "data": { - "gtfs": { - "stop_id": "2237", - "stop_code": "32237", - "stop_name": "boul. Marie-Victorin et De Monts", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De Monts", - "geography": { - "type": "Point", - "coordinates": [ - -73.4539367014534, - 45.6281095817562 - ] - } - }, - { - "id": "2280", - "code": "32280", - "data": { - "gtfs": { - "stop_id": "2280", - "stop_code": "32280", - "stop_name": "boul. Marie-Victorin et De Monts", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De Monts", - "geography": { - "type": "Point", - "coordinates": [ - -73.4537720508911, - 45.6279905226223 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.3159165313941 - }, - "name": "boul. Marie-Victorin et De Monts", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453854376, - 45.628050052 - ] - }, - "is_frozen": false, - "integer_id": 698, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454263, - 45.626909 - ] - }, - "id": 699, - "properties": { - "id": "2c88f1a7-73c6-4cf1-8a86-2c7cdda76671", - "code": "32238", - "data": { - "stops": [ - { - "id": "2238", - "code": "32238", - "data": { - "gtfs": { - "stop_id": "2238", - "stop_code": "32238", - "stop_name": "boul. Marie-Victorin et De Léry", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De Léry", - "geography": { - "type": "Point", - "coordinates": [ - -73.4542978181523, - 45.6270729143603 - ] - } - }, - { - "id": "2279", - "code": "32279", - "data": { - "gtfs": { - "stop_id": "2279", - "stop_code": "32279", - "stop_name": "boul. Marie-Victorin et De Léry", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De Léry", - "geography": { - "type": "Point", - "coordinates": [ - -73.4542275493831, - 45.6267444506744 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.2965054806027 - }, - "name": "boul. Marie-Victorin et De Léry", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454262684, - 45.626908683 - ] - }, - "is_frozen": false, - "integer_id": 699, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455133, - 45.624252 - ] - }, - "id": 700, - "properties": { - "id": "568437d9-2de5-4e5e-b111-1a7811ac5c99", - "code": "32239", - "data": { - "stops": [ - { - "id": "2239", - "code": "32239", - "data": { - "gtfs": { - "stop_id": "2239", - "stop_code": "32239", - "stop_name": "boul. Marie-Victorin et De Varennes nord", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De Varennes nord", - "geography": { - "type": "Point", - "coordinates": [ - -73.4552196804343, - 45.6243729078392 - ] - } - }, - { - "id": "2278", - "code": "32278", - "data": { - "gtfs": { - "stop_id": "2278", - "stop_code": "32278", - "stop_name": "boul. Marie-Victorin et De Varennes nord", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De Varennes nord", - "geography": { - "type": "Point", - "coordinates": [ - -73.4550472111466, - 45.624130788388 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.2513257073081 - }, - "name": "boul. Marie-Victorin et De Varennes nord", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455133446, - 45.624251848 - ] - }, - "is_frozen": false, - "integer_id": 700, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455362, - 45.621887 - ] - }, - "id": 701, - "properties": { - "id": "148d4b0f-418e-4993-b335-f1dcd1c4df41", - "code": "32240", - "data": { - "stops": [ - { - "id": "2240", - "code": "32240", - "data": { - "gtfs": { - "stop_id": "2240", - "stop_code": "32240", - "stop_name": "boul. Marie-Victorin et François-Piedmont", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et François-Piedmont", - "geography": { - "type": "Point", - "coordinates": [ - -73.4554750531656, - 45.6219727648598 - ] - } - }, - { - "id": "2277", - "code": "32277", - "data": { - "gtfs": { - "stop_id": "2277", - "stop_code": "32277", - "stop_name": "boul. Marie-Victorin et François-Piedmont", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et François-Piedmont", - "geography": { - "type": "Point", - "coordinates": [ - -73.4552498428247, - 45.6218003236312 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.2111087786698 - }, - "name": "boul. Marie-Victorin et François-Piedmont", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455362448, - 45.621886544 - ] - }, - "is_frozen": false, - "integer_id": 701, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455734, - 45.61803 - ] - }, - "id": 702, - "properties": { - "id": "949c3098-32ca-4f3b-81ba-cbe506f68923", - "code": "32241", - "data": { - "stops": [ - { - "id": "2241", - "code": "32241", - "data": { - "gtfs": { - "stop_id": "2241", - "stop_code": "32241", - "stop_name": "boul. Marie-Victorin et De Niverville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De Niverville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4558502592203, - 45.6180797827869 - ] - } - }, - { - "id": "2276", - "code": "32276", - "data": { - "gtfs": { - "stop_id": "2276", - "stop_code": "32276", - "stop_name": "boul. Marie-Victorin et De Niverville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De Niverville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4556175259674, - 45.6179807118756 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.1455514659864 - }, - "name": "boul. Marie-Victorin et De Niverville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455733893, - 45.618030247 - ] - }, - "is_frozen": false, - "integer_id": 702, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456341, - 45.613738 - ] - }, - "id": 703, - "properties": { - "id": "dfe2e549-8d4a-496b-ab2e-84c047fc15bc", - "code": "32243", - "data": { - "stops": [ - { - "id": "2243", - "code": "32243", - "data": { - "gtfs": { - "stop_id": "2243", - "stop_code": "32243", - "stop_name": "boul. Marie-Victorin et De Montbrun", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De Montbrun", - "geography": { - "type": "Point", - "coordinates": [ - -73.4564458203625, - 45.6138186373627 - ] - } - }, - { - "id": "2273", - "code": "32273", - "data": { - "gtfs": { - "stop_id": "2273", - "stop_code": "32273", - "stop_name": "boul. Marie-Victorin et De Montbrun", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De Montbrun", - "geography": { - "type": "Point", - "coordinates": [ - -73.4562365729037, - 45.6136564349327 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.0725907681366 - }, - "name": "boul. Marie-Victorin et De Montbrun", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456341197, - 45.613737536 - ] - }, - "is_frozen": false, - "integer_id": 703, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456548, - 45.610122 - ] - }, - "id": 704, - "properties": { - "id": "82681b8f-0d3b-4ca4-8825-5dae0806cfbe", - "code": "32245", - "data": { - "stops": [ - { - "id": "2245", - "code": "32245", - "data": { - "gtfs": { - "stop_id": "2245", - "stop_code": "32245", - "stop_name": "boul. Marie-Victorin et Pierre-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Pierre-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4566407893143, - 45.6102255973744 - ] - } - }, - { - "id": "2272", - "code": "32272", - "data": { - "gtfs": { - "stop_id": "2272", - "stop_code": "32272", - "stop_name": "boul. Marie-Victorin et Pierre-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Pierre-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4564543573978, - 45.6100175784539 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.0111454324676 - }, - "name": "boul. Marie-Victorin et Pierre-Boucher", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456547573, - 45.610121588 - ] - }, - "is_frozen": false, - "integer_id": 704, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456604, - 45.608324 - ] - }, - "id": 705, - "properties": { - "id": "ba8aa3d8-1e66-41d6-88f7-71d9bfc94e1e", - "code": "32246", - "data": { - "stops": [ - { - "id": "2246", - "code": "32246", - "data": { - "gtfs": { - "stop_id": "2246", - "stop_code": "32246", - "stop_name": "boul. Marie-Victorin et des Seigneurs", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et des Seigneurs", - "geography": { - "type": "Point", - "coordinates": [ - -73.4566867100255, - 45.6084564916719 - ] - } - }, - { - "id": "2271", - "code": "32271", - "data": { - "gtfs": { - "stop_id": "2271", - "stop_code": "32271", - "stop_name": "boul. Marie-Victorin et des Seigneurs", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et des Seigneurs", - "geography": { - "type": "Point", - "coordinates": [ - -73.4565218768503, - 45.6081909568822 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9805989241098 - }, - "name": "boul. Marie-Victorin et des Seigneurs", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456604293, - 45.608323724 - ] - }, - "is_frozen": false, - "integer_id": 705, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457182, - 45.604317 - ] - }, - "id": 706, - "properties": { - "id": "bc367579-e120-4c24-8a22-9700d9580818", - "code": "32248", - "data": { - "stops": [ - { - "id": "2248", - "code": "32248", - "data": { - "gtfs": { - "stop_id": "2248", - "stop_code": "32248", - "stop_name": "boul. Marie-Victorin et Desmarteau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Desmarteau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4572209740985, - 45.6045244270679 - ] - } - }, - { - "id": "2269", - "code": "32269", - "data": { - "gtfs": { - "stop_id": "2269", - "stop_code": "32269", - "stop_name": "boul. Marie-Victorin et Desmarteau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Desmarteau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4571427692076, - 45.6041104773326 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9125410000587 - }, - "name": "boul. Marie-Victorin et Desmarteau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457181872, - 45.604317452 - ] - }, - "is_frozen": false, - "integer_id": 706, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457704, - 45.602368 - ] - }, - "id": 707, - "properties": { - "id": "0d10f2fd-9087-48c2-a3cc-d12114887a2b", - "code": "32249", - "data": { - "stops": [ - { - "id": "2249", - "code": "32249", - "data": { - "gtfs": { - "stop_id": "2249", - "stop_code": "32249", - "stop_name": "boul. Marie-Victorin et Charlotte-Denys", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Charlotte-Denys", - "geography": { - "type": "Point", - "coordinates": [ - -73.4577833954722, - 45.6023611305942 - ] - } - }, - { - "id": "2268", - "code": "32268", - "data": { - "gtfs": { - "stop_id": "2268", - "stop_code": "32268", - "stop_name": "boul. Marie-Victorin et Charlotte-Denys", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Charlotte-Denys", - "geography": { - "type": "Point", - "coordinates": [ - -73.4576236057958, - 45.6023739902541 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8794217411228 - }, - "name": "boul. Marie-Victorin et Charlotte-Denys", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457703501, - 45.60236756 - ] - }, - "is_frozen": false, - "integer_id": 707, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458467, - 45.600347 - ] - }, - "id": 708, - "properties": { - "id": "cc54b5e7-0d92-40a3-a2d0-962bd60dc85b", - "code": "32250", - "data": { - "stops": [ - { - "id": "2250", - "code": "32250", - "data": { - "gtfs": { - "stop_id": "2250", - "stop_code": "32250", - "stop_name": "boul. Marie-Victorin et De La Broquerie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De La Broquerie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4585093660923, - 45.6004378218873 - ] - } - }, - { - "id": "2267", - "code": "32267", - "data": { - "gtfs": { - "stop_id": "2267", - "stop_code": "32267", - "stop_name": "boul. Marie-Victorin et De La Broquerie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De La Broquerie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4584239619566, - 45.6002551906152 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8450973774071 - }, - "name": "boul. Marie-Victorin et De La Broquerie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.458466664, - 45.600346506 - ] - }, - "is_frozen": false, - "integer_id": 708, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459108, - 45.598651 - ] - }, - "id": 709, - "properties": { - "id": "695f9244-0dd1-45c0-ba42-b49de2270ee6", - "code": "32251", - "data": { - "stops": [ - { - "id": "2251", - "code": "32251", - "data": { - "gtfs": { - "stop_id": "2251", - "stop_code": "32251", - "stop_name": "boul. Marie-Victorin et Marguerite-Bourgeoys", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Marguerite-Bourgeoys", - "geography": { - "type": "Point", - "coordinates": [ - -73.4591922059938, - 45.5986987655771 - ] - } - }, - { - "id": "2266", - "code": "32266", - "data": { - "gtfs": { - "stop_id": "2266", - "stop_code": "32266", - "stop_name": "boul. Marie-Victorin et Marguerite-Bourgeoys", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Marguerite-Bourgeoys", - "geography": { - "type": "Point", - "coordinates": [ - -73.4590236336773, - 45.5986042233068 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8163131352613 - }, - "name": "boul. Marie-Victorin et Marguerite-Bourgeoys", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45910792, - 45.598651494 - ] - }, - "is_frozen": false, - "integer_id": 709, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459997, - 45.596792 - ] - }, - "id": 710, - "properties": { - "id": "51dc5cf7-92db-46c8-8c42-9f02a7f9e23c", - "code": "32252", - "data": { - "stops": [ - { - "id": "2252", - "code": "32252", - "data": { - "gtfs": { - "stop_id": "2252", - "stop_code": "32252", - "stop_name": "boul. Marie-Victorin et Bachand nord", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Bachand nord", - "geography": { - "type": "Point", - "coordinates": [ - -73.4600917930151, - 45.596872238094 - ] - } - }, - { - "id": "2265", - "code": "32265", - "data": { - "gtfs": { - "stop_id": "2265", - "stop_code": "32265", - "stop_name": "boul. Marie-Victorin et Bachand nord", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Bachand nord", - "geography": { - "type": "Point", - "coordinates": [ - -73.4599020444539, - 45.5967111051022 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7847330938682 - }, - "name": "boul. Marie-Victorin et Bachand nord", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459996919, - 45.596791672 - ] - }, - "is_frozen": false, - "integer_id": 710, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464734, - 45.589625 - ] - }, - "id": 711, - "properties": { - "id": "b2bf7d79-9175-4e1d-be9c-4f4140537e43", - "code": "32253", - "data": { - "stops": [ - { - "id": "2253", - "code": "32253", - "data": { - "gtfs": { - "stop_id": "2253", - "stop_code": "32253", - "stop_name": "boul. Marie-Victorin et Fréchette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Fréchette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4648430908989, - 45.5896459597151 - ] - } - }, - { - "id": "2264", - "code": "32264", - "data": { - "gtfs": { - "stop_id": "2264", - "stop_code": "32264", - "stop_name": "boul. Marie-Victorin et Fréchette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Fréchette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4646244589012, - 45.5896033095987 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6630647499496 - }, - "name": "boul. Marie-Victorin et Fréchette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464733775, - 45.589624635 - ] - }, - "is_frozen": false, - "integer_id": 711, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46699, - 45.587882 - ] - }, - "id": 712, - "properties": { - "id": "48f19a5c-0937-4c87-ba6d-c01e50729a6a", - "code": "32254", - "data": { - "stops": [ - { - "id": "2254", - "code": "32254", - "data": { - "gtfs": { - "stop_id": "2254", - "stop_code": "32254", - "stop_name": "boul. Marie-Victorin et De La Barre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De La Barre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4669899151379, - 45.5878816189225 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6334820848411 - }, - "name": "boul. Marie-Victorin et De La Barre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466989915, - 45.587881619 - ] - }, - "is_frozen": false, - "integer_id": 712, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483814, - 45.571624 - ] - }, - "id": 713, - "properties": { - "id": "24527bed-7ea6-44d6-b6db-18ac609f4938", - "code": "32258", - "data": { - "stops": [ - { - "id": "2258", - "code": "32258", - "data": { - "gtfs": { - "stop_id": "2258", - "stop_code": "32258", - "stop_name": "boul. Marie-Victorin et de l'Église", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et de l'Église", - "geography": { - "type": "Point", - "coordinates": [ - -73.4837567501771, - 45.5718208020479 - ] - } - }, - { - "id": "2537", - "code": "32537", - "data": { - "gtfs": { - "stop_id": "2537", - "stop_code": "32537", - "stop_name": "boul. Marie-Victorin et de l'Église", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et de l'Église", - "geography": { - "type": "Point", - "coordinates": [ - -73.4838715997872, - 45.5714265676507 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3576814926264 - }, - "name": "boul. Marie-Victorin et de l'Église", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483814175, - 45.571623685 - ] - }, - "is_frozen": false, - "integer_id": 713, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.488871, - 45.566558 - ] - }, - "id": 714, - "properties": { - "id": "e9d341f0-42cc-4ba3-9f1d-ac2003e84f01", - "code": "32260", - "data": { - "stops": [ - { - "id": "2260", - "code": "32260", - "data": { - "gtfs": { - "stop_id": "2260", - "stop_code": "32260", - "stop_name": "boul. Marie-Victorin et Lalande", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Lalande", - "geography": { - "type": "Point", - "coordinates": [ - -73.4888712404006, - 45.5667607007618 - ] - } - }, - { - "id": "4020", - "code": "34020", - "data": { - "gtfs": { - "stop_id": "4020", - "stop_code": "34020", - "stop_name": "boul. Marie-Victorin et Lalande", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Lalande", - "geography": { - "type": "Point", - "coordinates": [ - -73.488871594596, - 45.5663553449367 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2717955834111 - }, - "name": "boul. Marie-Victorin et Lalande", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.488871417, - 45.566558023 - ] - }, - "is_frozen": false, - "integer_id": 714, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490797, - 45.564096 - ] - }, - "id": 715, - "properties": { - "id": "d5099816-374e-4ebc-ab50-5ca4d2f829e5", - "code": "32261", - "data": { - "stops": [ - { - "id": "2261", - "code": "32261", - "data": { - "gtfs": { - "stop_id": "2261", - "stop_code": "32261", - "stop_name": "boul. Marie-Victorin et Passerelle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Passerelle", - "geography": { - "type": "Point", - "coordinates": [ - -73.490796708316, - 45.5640964049489 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2300682913826 - }, - "name": "boul. Marie-Victorin et Passerelle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490796708, - 45.564096405 - ] - }, - "is_frozen": false, - "integer_id": 715, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455489, - 45.620172 - ] - }, - "id": 716, - "properties": { - "id": "518135ae-62e9-44c2-bac7-e8c50c56eec9", - "code": "32275", - "data": { - "stops": [ - { - "id": "2275", - "code": "32275", - "data": { - "gtfs": { - "stop_id": "2275", - "stop_code": "32275", - "stop_name": "boul. Marie-Victorin et Jacques-Racicot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Jacques-Racicot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4553850052636, - 45.6201402005271 - ] - } - }, - { - "id": "3562", - "code": "33562", - "data": { - "gtfs": { - "stop_id": "3562", - "stop_code": "33562", - "stop_name": "boul. Marie-Victorin et Jacques-Racicot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Jacques-Racicot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4555930161139, - 45.6202036940046 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.1819588659179 - }, - "name": "boul. Marie-Victorin et Jacques-Racicot", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455489011, - 45.620171947 - ] - }, - "is_frozen": false, - "integer_id": 716, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451682, - 45.632817 - ] - }, - "id": 717, - "properties": { - "id": "d04543e8-f38e-4937-b92b-1bc9ff97fd25", - "code": "32282", - "data": { - "stops": [ - { - "id": "2282", - "code": "32282", - "data": { - "gtfs": { - "stop_id": "2282", - "stop_code": "32282", - "stop_name": "boul. Marie-Victorin et De Mésy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De Mésy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4516823654665, - 45.6328165337206 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.3969918400617 - }, - "name": "boul. Marie-Victorin et De Mésy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451682365, - 45.632816534 - ] - }, - "is_frozen": false, - "integer_id": 717, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443223, - 45.627895 - ] - }, - "id": 718, - "properties": { - "id": "ff2e2592-7ac3-47d7-a939-87b5a2b39e96", - "code": "32287", - "data": { - "stops": [ - { - "id": "2287", - "code": "32287", - "data": { - "gtfs": { - "stop_id": "2287", - "stop_code": "32287", - "stop_name": "boul. du Fort-Saint-Louis et De Mésy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et De Mésy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4433653445986, - 45.6278310175915 - ] - } - }, - { - "id": "4018", - "code": "34018", - "data": { - "gtfs": { - "stop_id": "4018", - "stop_code": "34018", - "stop_name": "boul. du Fort-Saint-Louis et De Mésy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et De Mésy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4430805477329, - 45.6279593195259 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.3132823964115 - }, - "name": "boul. du Fort-Saint-Louis et De Mésy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443222946, - 45.627895169 - ] - }, - "is_frozen": false, - "integer_id": 718, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446934, - 45.621505 - ] - }, - "id": 719, - "properties": { - "id": "706f0077-9543-4662-8684-a321216a8a90", - "code": "32288", - "data": { - "stops": [ - { - "id": "2288", - "code": "32288", - "data": { - "gtfs": { - "stop_id": "2288", - "stop_code": "32288", - "stop_name": "boul. du Fort-Saint-Louis et civique 810", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et civique 810", - "geography": { - "type": "Point", - "coordinates": [ - -73.4469505052011, - 45.6216639670413 - ] - } - }, - { - "id": "3917", - "code": "33917", - "data": { - "gtfs": { - "stop_id": "3917", - "stop_code": "33917", - "stop_name": "boul. du Fort-Saint-Louis et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4469181737507, - 45.621346844045 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.2046288127078 - }, - "name": "boul. du Fort-Saint-Louis et civique 810", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446934339, - 45.621505406 - ] - }, - "is_frozen": false, - "integer_id": 719, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448873, - 45.618437 - ] - }, - "id": 720, - "properties": { - "id": "589f0f16-2c87-45fc-856c-d82dc5449f14", - "code": "32289", - "data": { - "stops": [ - { - "id": "2289", - "code": "32289", - "data": { - "gtfs": { - "stop_id": "2289", - "stop_code": "32289", - "stop_name": "boul. du Fort-Saint-Louis et De Varennes sud", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et De Varennes sud", - "geography": { - "type": "Point", - "coordinates": [ - -73.4488731975871, - 45.6184367682086 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.1524617219986 - }, - "name": "boul. du Fort-Saint-Louis et De Varennes sud", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448873198, - 45.618436768 - ] - }, - "is_frozen": false, - "integer_id": 720, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452988, - 45.608088 - ] - }, - "id": 721, - "properties": { - "id": "a2b2c8d3-da2c-46a1-8009-597d5c6a0c19", - "code": "32293", - "data": { - "stops": [ - { - "id": "2293", - "code": "32293", - "data": { - "gtfs": { - "stop_id": "2293", - "stop_code": "32293", - "stop_name": "boul. du Fort-Saint-Louis et Jacques-Ménard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Jacques-Ménard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4529879594498, - 45.6080880055626 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9765941853077 - }, - "name": "boul. du Fort-Saint-Louis et Jacques-Ménard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452987959, - 45.608088006 - ] - }, - "is_frozen": false, - "integer_id": 721, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462477, - 45.58504 - ] - }, - "id": 722, - "properties": { - "id": "21aac851-6052-4e4d-8167-df2d9a876338", - "code": "32300", - "data": { - "stops": [ - { - "id": "2300", - "code": "32300", - "data": { - "gtfs": { - "stop_id": "2300", - "stop_code": "32300", - "stop_name": "boul. du Fort-Saint-Louis et De La Barre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et De La Barre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4624143828935, - 45.585129330903 - ] - } - }, - { - "id": "3867", - "code": "33867", - "data": { - "gtfs": { - "stop_id": "3867", - "stop_code": "33867", - "stop_name": "De La Barre et boul. du Fort-Saint-Louis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Barre et boul. du Fort-Saint-Louis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4627322100293, - 45.5851213608544 - ] - } - }, - { - "id": "4226", - "code": "34226", - "data": { - "gtfs": { - "stop_id": "4226", - "stop_code": "34226", - "stop_name": "De La Barre et boul. du Fort-Saint-Louis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Barre et boul. du Fort-Saint-Louis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4622221379085, - 45.584950420868 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.585257530005 - }, - "name": "boul. du Fort-Saint-Louis et De La Barre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462477174, - 45.585039876 - ] - }, - "is_frozen": false, - "integer_id": 722, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459632, - 45.585147 - ] - }, - "id": 723, - "properties": { - "id": "1f0a0267-b7e7-48ae-bd8a-a1242dd984ed", - "code": "32302", - "data": { - "stops": [ - { - "id": "2302", - "code": "32302", - "data": { - "gtfs": { - "stop_id": "2302", - "stop_code": "32302", - "stop_name": "boul. Industriel et UNIPRO", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Industriel et UNIPRO", - "geography": { - "type": "Point", - "coordinates": [ - -73.4597795679507, - 45.5851097936569 - ] - } - }, - { - "id": "2394", - "code": "32394", - "data": { - "gtfs": { - "stop_id": "2394", - "stop_code": "32394", - "stop_name": "boul. Industriel et UNIPRO", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Industriel et UNIPRO", - "geography": { - "type": "Point", - "coordinates": [ - -73.4594851347623, - 45.5851834387853 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5870687838128 - }, - "name": "boul. Industriel et UNIPRO", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459632351, - 45.585146616 - ] - }, - "is_frozen": false, - "integer_id": 723, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457711, - 45.583454 - ] - }, - "id": 724, - "properties": { - "id": "a3ce54d5-25e0-4e55-a21f-2d2c2139447f", - "code": "32303", - "data": { - "stops": [ - { - "id": "2303", - "code": "32303", - "data": { - "gtfs": { - "stop_id": "2303", - "stop_code": "32303", - "stop_name": "boul. Industriel et De Vaudreuil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Industriel et De Vaudreuil", - "geography": { - "type": "Point", - "coordinates": [ - -73.4579375023731, - 45.5836791993568 - ] - } - }, - { - "id": "2393", - "code": "32393", - "data": { - "gtfs": { - "stop_id": "2393", - "stop_code": "32393", - "stop_name": "boul. Industriel et De Vaudreuil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Industriel et De Vaudreuil", - "geography": { - "type": "Point", - "coordinates": [ - -73.4572805987449, - 45.5834473950689 - ] - } - }, - { - "id": "4224", - "code": "34224", - "data": { - "gtfs": { - "stop_id": "4224", - "stop_code": "34224", - "stop_name": "De Vaudreuil et boul. Industriel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Vaudreuil et boul. Industriel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4577175137508, - 45.5833442705949 - ] - } - }, - { - "id": "4392", - "code": "34392", - "data": { - "gtfs": { - "stop_id": "4392", - "stop_code": "34392", - "stop_name": "De Vaudreuil et boul. Industriel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Vaudreuil et boul. Industriel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4581419238918, - 45.5832289435663 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5583494619647 - }, - "name": "boul. Industriel et De Vaudreuil", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457711261, - 45.583454071 - ] - }, - "is_frozen": false, - "integer_id": 724, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452979, - 45.579966 - ] - }, - "id": 725, - "properties": { - "id": "a6014278-4b2c-4dc8-a0d9-22c0ac11eb1c", - "code": "32304", - "data": { - "stops": [ - { - "id": "2304", - "code": "32304", - "data": { - "gtfs": { - "stop_id": "2304", - "stop_code": "32304", - "stop_name": "boul. Industriel et De Lauzon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Industriel et De Lauzon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4529792156497, - 45.579815786256 - ] - } - }, - { - "id": "2391", - "code": "32391", - "data": { - "gtfs": { - "stop_id": "2391", - "stop_code": "32391", - "stop_name": "boul. Industriel et De Lauzon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Industriel et De Lauzon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4529788015388, - 45.580115404567 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4991646356468 - }, - "name": "boul. Industriel et De Lauzon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452979009, - 45.579965595 - ] - }, - "is_frozen": false, - "integer_id": 725, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451574, - 45.578948 - ] - }, - "id": 726, - "properties": { - "id": "b0a54de7-81a4-4a54-ac92-70b7a1a6f8cd", - "code": "32305", - "data": { - "stops": [ - { - "id": "2305", - "code": "32305", - "data": { - "gtfs": { - "stop_id": "2305", - "stop_code": "32305", - "stop_name": "boul. Industriel et Jules-Léger", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Industriel et Jules-Léger", - "geography": { - "type": "Point", - "coordinates": [ - -73.4519453042481, - 45.5790209978518 - ] - } - }, - { - "id": "4022", - "code": "34022", - "data": { - "gtfs": { - "stop_id": "4022", - "stop_code": "34022", - "stop_name": "boul. Industriel et boul. Industriel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Industriel et boul. Industriel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4512018095108, - 45.5788754967417 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4819065513493 - }, - "name": "boul. Industriel et Jules-Léger", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451573557, - 45.578948247 - ] - }, - "is_frozen": false, - "integer_id": 726, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.447875, - 45.578865 - ] - }, - "id": 727, - "properties": { - "id": "43c9714a-9286-4827-a621-a7c2f8cbdfb6", - "code": "32306", - "data": { - "stops": [ - { - "id": "2306", - "code": "32306", - "data": { - "gtfs": { - "stop_id": "2306", - "stop_code": "32306", - "stop_name": "boul. Industriel et boul. de Mortagne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Industriel et boul. de Mortagne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4478584786405, - 45.5787629319277 - ] - } - }, - { - "id": "2389", - "code": "32389", - "data": { - "gtfs": { - "stop_id": "2389", - "stop_code": "32389", - "stop_name": "boul. Industriel et boul. de Mortagne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Industriel et boul. de Mortagne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4478910016871, - 45.5789674297713 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4804974775172 - }, - "name": "boul. Industriel et boul. de Mortagne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44787474, - 45.578865181 - ] - }, - "is_frozen": false, - "integer_id": 727, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44702, - 45.578325 - ] - }, - "id": 728, - "properties": { - "id": "7c5ab4a9-cc9e-4b88-bc68-d214d8c04000", - "code": "32307", - "data": { - "stops": [ - { - "id": "2307", - "code": "32307", - "data": { - "gtfs": { - "stop_id": "2307", - "stop_code": "32307", - "stop_name": "boul. de Mortagne et de Parfondeval", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et de Parfondeval", - "geography": { - "type": "Point", - "coordinates": [ - -73.4470196668127, - 45.578325440441 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4713418370309 - }, - "name": "boul. de Mortagne et de Parfondeval", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447019667, - 45.57832544 - ] - }, - "is_frozen": false, - "integer_id": 728, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439154, - 45.574417 - ] - }, - "id": 729, - "properties": { - "id": "969d12ef-c40c-4428-9c70-2251a9d71a5e", - "code": "32312", - "data": { - "stops": [ - { - "id": "2312", - "code": "32312", - "data": { - "gtfs": { - "stop_id": "2312", - "stop_code": "32312", - "stop_name": "du Perche et de Brésolettes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Perche et de Brésolettes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4389508842496, - 45.574447532012 - ] - } - }, - { - "id": "3604", - "code": "33604", - "data": { - "gtfs": { - "stop_id": "3604", - "stop_code": "33604", - "stop_name": "du Perche et de Brésolettes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Perche et de Brésolettes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4393579605271, - 45.5743873053329 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4050577481512 - }, - "name": "du Perche et de Brésolettes", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439154422, - 45.574417419 - ] - }, - "is_frozen": false, - "integer_id": 729, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442647, - 45.577807 - ] - }, - "id": 730, - "properties": { - "id": "589841be-b3c7-4f02-a8e7-b24569959def", - "code": "32313", - "data": { - "stops": [ - { - "id": "2313", - "code": "32313", - "data": { - "gtfs": { - "stop_id": "2313", - "stop_code": "32313", - "stop_name": "du Perche et de Champs", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Perche et de Champs", - "geography": { - "type": "Point", - "coordinates": [ - -73.4425280584547, - 45.577883039258 - ] - } - }, - { - "id": "2384", - "code": "32384", - "data": { - "gtfs": { - "stop_id": "2384", - "stop_code": "32384", - "stop_name": "du Perche et de Parfondeval", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Perche et de Parfondeval", - "geography": { - "type": "Point", - "coordinates": [ - -73.4427662059048, - 45.5777303530836 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4625426147265 - }, - "name": "du Perche et de Champs", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442647132, - 45.577806696 - ] - }, - "is_frozen": false, - "integer_id": 730, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443179, - 45.580307 - ] - }, - "id": 731, - "properties": { - "id": "3f07914c-7958-4cd1-a0a6-c2c9e04cc913", - "code": "32314", - "data": { - "stops": [ - { - "id": "2314", - "code": "32314", - "data": { - "gtfs": { - "stop_id": "2314", - "stop_code": "32314", - "stop_name": "du Perche et de Tourouvre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Perche et de Tourouvre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4430360520485, - 45.5801684217499 - ] - } - }, - { - "id": "2383", - "code": "32383", - "data": { - "gtfs": { - "stop_id": "2383", - "stop_code": "32383", - "stop_name": "du Perche et de Tourouvre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Perche et de Tourouvre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4433218032348, - 45.580445907033 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5049591501815 - }, - "name": "du Perche et de Tourouvre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443178928, - 45.580307164 - ] - }, - "is_frozen": false, - "integer_id": 731, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443542, - 45.58169 - ] - }, - "id": 732, - "properties": { - "id": "b94a5730-dab3-4715-a12c-41d1c300a3ab", - "code": "32315", - "data": { - "stops": [ - { - "id": "2315", - "code": "32315", - "data": { - "gtfs": { - "stop_id": "2315", - "stop_code": "32315", - "stop_name": "du Perche et des Feings", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Perche et des Feings", - "geography": { - "type": "Point", - "coordinates": [ - -73.4433384926245, - 45.5815501461552 - ] - } - }, - { - "id": "3553", - "code": "33553", - "data": { - "gtfs": { - "stop_id": "3553", - "stop_code": "33553", - "stop_name": "du Perche et des Feings", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Perche et des Feings", - "geography": { - "type": "Point", - "coordinates": [ - -73.4437458083097, - 45.5818294038183 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5284153880033 - }, - "name": "du Perche et des Feings", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44354215, - 45.581689775 - ] - }, - "is_frozen": false, - "integer_id": 732, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.444528, - 45.585107 - ] - }, - "id": 733, - "properties": { - "id": "2cdb15ef-cdbd-4b50-8947-cb9baee33626", - "code": "32317", - "data": { - "stops": [ - { - "id": "2317", - "code": "32317", - "data": { - "gtfs": { - "stop_id": "2317", - "stop_code": "32317", - "stop_name": "boul. de Mortagne et des Îles-Percées", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et des Îles-Percées", - "geography": { - "type": "Point", - "coordinates": [ - -73.4444896944307, - 45.584925266805 - ] - } - }, - { - "id": "2381", - "code": "32381", - "data": { - "gtfs": { - "stop_id": "2381", - "stop_code": "32381", - "stop_name": "boul. de Mortagne et des Îles-Percées", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et des Îles-Percées", - "geography": { - "type": "Point", - "coordinates": [ - -73.4445665998337, - 45.5852894023818 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5864022296871 - }, - "name": "boul. de Mortagne et des Îles-Percées", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.444528147, - 45.585107335 - ] - }, - "is_frozen": false, - "integer_id": 733, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443431, - 45.586103 - ] - }, - "id": 734, - "properties": { - "id": "9ed61f95-ec94-4b54-a6b8-7ff6d3aea365", - "code": "32318", - "data": { - "stops": [ - { - "id": "2318", - "code": "32318", - "data": { - "gtfs": { - "stop_id": "2318", - "stop_code": "32318", - "stop_name": "boul. de Mortagne et Marquis-De Tracy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Marquis-De Tracy", - "geography": { - "type": "Point", - "coordinates": [ - -73.443393832357, - 45.5859178993174 - ] - } - }, - { - "id": "3849", - "code": "33849", - "data": { - "gtfs": { - "stop_id": "3849", - "stop_code": "33849", - "stop_name": "boul. de Mortagne et Marquis-De Tracy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Marquis-De Tracy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4434682258164, - 45.5862879255116 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6032964708589 - }, - "name": "boul. de Mortagne et Marquis-De Tracy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443431029, - 45.586102912 - ] - }, - "is_frozen": false, - "integer_id": 734, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439985, - 45.589224 - ] - }, - "id": 735, - "properties": { - "id": "3e16b1bc-9549-49e4-bd1b-f0991b274b89", - "code": "32319", - "data": { - "stops": [ - { - "id": "2319", - "code": "32319", - "data": { - "gtfs": { - "stop_id": "2319", - "stop_code": "32319", - "stop_name": "boul. de Mortagne et Le Baron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Le Baron", - "geography": { - "type": "Point", - "coordinates": [ - -73.4402380672705, - 45.5888013052909 - ] - } - }, - { - "id": "2320", - "code": "32320", - "data": { - "gtfs": { - "stop_id": "2320", - "stop_code": "32320", - "stop_name": "boul. de Mortagne et De La Salle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et De La Salle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4395207943136, - 45.5893344366765 - ] - } - }, - { - "id": "2378", - "code": "32378", - "data": { - "gtfs": { - "stop_id": "2378", - "stop_code": "32378", - "stop_name": "De La Salle et boul. de Mortagne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Salle et boul. de Mortagne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4392925626985, - 45.589463178385 - ] - } - }, - { - "id": "2379", - "code": "32379", - "data": { - "gtfs": { - "stop_id": "2379", - "stop_code": "32379", - "stop_name": "boul. de Mortagne et Le Baron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Le Baron", - "geography": { - "type": "Point", - "coordinates": [ - -73.4403374576216, - 45.5891162975466 - ] - } - }, - { - "id": "2429", - "code": "32429", - "data": { - "gtfs": { - "stop_id": "2429", - "stop_code": "32429", - "stop_name": "Le Baron et boul. de Mortagne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Baron et boul. de Mortagne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4406777954335, - 45.5890762308141 - ] - } - }, - { - "id": "3848", - "code": "33848", - "data": { - "gtfs": { - "stop_id": "3848", - "stop_code": "33848", - "stop_name": "boul. de Mortagne et De La Salle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et De La Salle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4395691246001, - 45.589646793023 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 1257.506270748186 - }, - "name": "boul. de Mortagne et Le Baron", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439985179, - 45.589224049 - ] - }, - "is_frozen": false, - "integer_id": 735, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 66, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.438357, - 45.58773 - ] - }, - "id": 736, - "properties": { - "id": "5195ea00-9368-4dce-8167-c17b61cec6aa", - "code": "32321", - "data": { - "stops": [ - { - "id": "2321", - "code": "32321", - "data": { - "gtfs": { - "stop_id": "2321", - "stop_code": "32321", - "stop_name": "De La Salle et Christophe-Février", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Salle et Christophe-Février", - "geography": { - "type": "Point", - "coordinates": [ - -73.4384847838279, - 45.5878835599152 - ] - } - }, - { - "id": "2377", - "code": "32377", - "data": { - "gtfs": { - "stop_id": "2377", - "stop_code": "32377", - "stop_name": "De La Salle et Christophe-Février", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Salle et Christophe-Février", - "geography": { - "type": "Point", - "coordinates": [ - -73.438228495444, - 45.5875764681365 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6309091561229 - }, - "name": "De La Salle et Christophe-Février", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.43835664, - 45.587730014 - ] - }, - "is_frozen": false, - "integer_id": 736, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.438208, - 45.586295 - ] - }, - "id": 737, - "properties": { - "id": "39ff7687-30f4-4336-ad6e-7651a86ce308", - "code": "32322", - "data": { - "stops": [ - { - "id": "2322", - "code": "32322", - "data": { - "gtfs": { - "stop_id": "2322", - "stop_code": "32322", - "stop_name": "De La Salle et Émile-Nelligan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Salle et Émile-Nelligan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4383167118809, - 45.5864374798101 - ] - } - }, - { - "id": "2376", - "code": "32376", - "data": { - "gtfs": { - "stop_id": "2376", - "stop_code": "32376", - "stop_name": "De La Salle et Émile-Nelligan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Salle et Émile-Nelligan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4380991738384, - 45.5861531985713 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6065619239247 - }, - "name": "De La Salle et Émile-Nelligan", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438207943, - 45.586295339 - ] - }, - "is_frozen": false, - "integer_id": 737, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437137, - 45.585043 - ] - }, - "id": 738, - "properties": { - "id": "f2e35f7f-c43e-48a9-8610-6fc945acde4b", - "code": "32323", - "data": { - "stops": [ - { - "id": "2323", - "code": "32323", - "data": { - "gtfs": { - "stop_id": "2323", - "stop_code": "32323", - "stop_name": "De La Salle et civique 372", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Salle et civique 372", - "geography": { - "type": "Point", - "coordinates": [ - -73.4371736829557, - 45.5849888820393 - ] - } - }, - { - "id": "2375", - "code": "32375", - "data": { - "gtfs": { - "stop_id": "2375", - "stop_code": "32375", - "stop_name": "De La Salle et civique 363", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Salle et civique 363", - "geography": { - "type": "Point", - "coordinates": [ - -73.4370994741318, - 45.5850968208109 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5853080121609 - }, - "name": "De La Salle et civique 372", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437136579, - 45.585042851 - ] - }, - "is_frozen": false, - "integer_id": 738, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.434499, - 45.583518 - ] - }, - "id": 739, - "properties": { - "id": "a304bcbf-a90b-4a1c-90fd-af05d73c3bdb", - "code": "32325", - "data": { - "stops": [ - { - "id": "2325", - "code": "32325", - "data": { - "gtfs": { - "stop_id": "2325", - "stop_code": "32325", - "stop_name": "De La Salle et D'Avaugour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Salle et D'Avaugour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4346468752699, - 45.5835590218298 - ] - } - }, - { - "id": "3887", - "code": "33887", - "data": { - "gtfs": { - "stop_id": "3887", - "stop_code": "33887", - "stop_name": "D'Avaugour et De La Salle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "D'Avaugour et De La Salle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4343506752912, - 45.5834769665389 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5594340691028 - }, - "name": "De La Salle et D'Avaugour", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.434498775, - 45.583517994 - ] - }, - "is_frozen": false, - "integer_id": 739, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.438265, - 45.592807 - ] - }, - "id": 740, - "properties": { - "id": "5d7e4a82-b57b-4667-9b61-2db9ddc1f345", - "code": "32328", - "data": { - "stops": [ - { - "id": "2328", - "code": "32328", - "data": { - "gtfs": { - "stop_id": "2328", - "stop_code": "32328", - "stop_name": "boul. De Montarville et ECOLE SECONDAIRE DE MORTAGNE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et ECOLE SECONDAIRE DE MORTAGNE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4381979657376, - 45.5929179909557 - ] - } - }, - { - "id": "2370", - "code": "32370", - "data": { - "gtfs": { - "stop_id": "2370", - "stop_code": "32370", - "stop_name": "boul. De Montarville et ECOLE SECONDAIRE DE MORTAGNE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et ECOLE SECONDAIRE DE MORTAGNE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4383329917252, - 45.5926962948086 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7170856513305 - }, - "name": "boul. De Montarville et ECOLE SECONDAIRE DE MORTAGNE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438265479, - 45.592807143 - ] - }, - "is_frozen": false, - "integer_id": 740, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439989, - 45.594049 - ] - }, - "id": 741, - "properties": { - "id": "d308c0d3-5f58-49bf-ac2c-7b0f59b0d037", - "code": "32329", - "data": { - "stops": [ - { - "id": "2329", - "code": "32329", - "data": { - "gtfs": { - "stop_id": "2329", - "stop_code": "32329", - "stop_name": "boul. De Montarville et Félix-Leclerc", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et Félix-Leclerc", - "geography": { - "type": "Point", - "coordinates": [ - -73.4399961939233, - 45.5941695531699 - ] - } - }, - { - "id": "2369", - "code": "32369", - "data": { - "gtfs": { - "stop_id": "2369", - "stop_code": "32369", - "stop_name": "boul. De Montarville et Victor-Bourgeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et Victor-Bourgeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.439981417542, - 45.5939284840154 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7381681080741 - }, - "name": "boul. De Montarville et Félix-Leclerc", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439988806, - 45.594049019 - ] - }, - "is_frozen": false, - "integer_id": 741, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.43859, - 45.598233 - ] - }, - "id": 742, - "properties": { - "id": "ed75aade-3563-4fb8-bb9c-b49f9e9d9b26", - "code": "32331", - "data": { - "stops": [ - { - "id": "2331", - "code": "32331", - "data": { - "gtfs": { - "stop_id": "2331", - "stop_code": "32331", - "stop_name": "Jacques-Cartier et Marsolais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jacques-Cartier et Marsolais", - "geography": { - "type": "Point", - "coordinates": [ - -73.4386620077424, - 45.5980911683009 - ] - } - }, - { - "id": "2366", - "code": "32366", - "data": { - "gtfs": { - "stop_id": "2366", - "stop_code": "32366", - "stop_name": "Jacques-Cartier et Marsolais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jacques-Cartier et Marsolais", - "geography": { - "type": "Point", - "coordinates": [ - -73.438517876129, - 45.598374569928 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8092045532488 - }, - "name": "Jacques-Cartier et Marsolais", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438589942, - 45.598232869 - ] - }, - "is_frozen": false, - "integer_id": 742, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437064, - 45.599091 - ] - }, - "id": 743, - "properties": { - "id": "47dc43f6-90db-4837-be84-0b5d8a2becb4", - "code": "32332", - "data": { - "stops": [ - { - "id": "2332", - "code": "32332", - "data": { - "gtfs": { - "stop_id": "2332", - "stop_code": "32332", - "stop_name": "Jacques-Cartier et Charcot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jacques-Cartier et Charcot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4369888035725, - 45.5990253390465 - ] - } - }, - { - "id": "2365", - "code": "32365", - "data": { - "gtfs": { - "stop_id": "2365", - "stop_code": "32365", - "stop_name": "Jacques-Cartier et Charcot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jacques-Cartier et Charcot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4371401424107, - 45.5991560072361 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8237709090554 - }, - "name": "Jacques-Cartier et Charcot", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437064473, - 45.599090673 - ] - }, - "is_frozen": false, - "integer_id": 743, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.436349, - 45.599781 - ] - }, - "id": 744, - "properties": { - "id": "628308c5-3a00-44cb-908b-068616e8e618", - "code": "32333", - "data": { - "stops": [ - { - "id": "2333", - "code": "32333", - "data": { - "gtfs": { - "stop_id": "2333", - "stop_code": "32333", - "stop_name": "Jacques-Cartier et De Sérigny", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jacques-Cartier et De Sérigny", - "geography": { - "type": "Point", - "coordinates": [ - -73.43635237784, - 45.5996405989319 - ] - } - }, - { - "id": "2364", - "code": "32364", - "data": { - "gtfs": { - "stop_id": "2364", - "stop_code": "32364", - "stop_name": "Jacques-Cartier et De Sérigny", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jacques-Cartier et De Sérigny", - "geography": { - "type": "Point", - "coordinates": [ - -73.4363462569547, - 45.5999206552051 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8354874848965 - }, - "name": "Jacques-Cartier et De Sérigny", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.436349317, - 45.599780627 - ] - }, - "is_frozen": false, - "integer_id": 744, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.434445, - 45.601522 - ] - }, - "id": 745, - "properties": { - "id": "5848160e-d6fe-4c31-a7e0-d84189ac7fb1", - "code": "32334", - "data": { - "stops": [ - { - "id": "2334", - "code": "32334", - "data": { - "gtfs": { - "stop_id": "2334", - "stop_code": "32334", - "stop_name": "Jacques-Cartier et Christophe-Colomb", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jacques-Cartier et Christophe-Colomb", - "geography": { - "type": "Point", - "coordinates": [ - -73.4345736251999, - 45.6013463097107 - ] - } - }, - { - "id": "2363", - "code": "32363", - "data": { - "gtfs": { - "stop_id": "2363", - "stop_code": "32363", - "stop_name": "Jacques-Cartier et Christophe-Colomb", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jacques-Cartier et Christophe-Colomb", - "geography": { - "type": "Point", - "coordinates": [ - -73.4343154303236, - 45.6016974253926 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8650585724677 - }, - "name": "Jacques-Cartier et Christophe-Colomb", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.434444528, - 45.601521868 - ] - }, - "is_frozen": false, - "integer_id": 745, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.428099, - 45.605904 - ] - }, - "id": 746, - "properties": { - "id": "7d34a327-717a-432e-93f5-7310ac20c2c2", - "code": "32336", - "data": { - "stops": [ - { - "id": "2336", - "code": "32336", - "data": { - "gtfs": { - "stop_id": "2336", - "stop_code": "32336", - "stop_name": "Samuel-De Champlain et Marco-Polo", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et Marco-Polo", - "geography": { - "type": "Point", - "coordinates": [ - -73.427869813384, - 45.6058471061311 - ] - } - }, - { - "id": "2360", - "code": "32360", - "data": { - "gtfs": { - "stop_id": "2360", - "stop_code": "32360", - "stop_name": "Samuel-De Champlain et Marco-Polo", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et Marco-Polo", - "geography": { - "type": "Point", - "coordinates": [ - -73.4283276142117, - 45.6059613645231 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9394953023758 - }, - "name": "Samuel-De Champlain et Marco-Polo", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.428098714, - 45.605904235 - ] - }, - "is_frozen": false, - "integer_id": 746, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.428557, - 45.604494 - ] - }, - "id": 747, - "properties": { - "id": "abeb197b-490c-4d67-8abe-37d08d73ce70", - "code": "32337", - "data": { - "stops": [ - { - "id": "2337", - "code": "32337", - "data": { - "gtfs": { - "stop_id": "2337", - "stop_code": "32337", - "stop_name": "Jacques-Cartier et De La Richardière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jacques-Cartier et De La Richardière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4285893797483, - 45.604370644421 - ] - } - }, - { - "id": "2361", - "code": "32361", - "data": { - "gtfs": { - "stop_id": "2361", - "stop_code": "32361", - "stop_name": "Jacques-Cartier et De La Richardière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jacques-Cartier et De La Richardière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4285252635009, - 45.6046173134892 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9155395103639 - }, - "name": "Jacques-Cartier et De La Richardière", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.428557322, - 45.604493979 - ] - }, - "is_frozen": false, - "integer_id": 747, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.429948, - 45.606565 - ] - }, - "id": 748, - "properties": { - "id": "7ca4f3b1-99df-4499-964b-1702513ad59f", - "code": "32338", - "data": { - "stops": [ - { - "id": "2338", - "code": "32338", - "data": { - "gtfs": { - "stop_id": "2338", - "stop_code": "32338", - "stop_name": "Samuel-De Champlain et des Découvreurs", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et des Découvreurs", - "geography": { - "type": "Point", - "coordinates": [ - -73.4296078192134, - 45.606596853295 - ] - } - }, - { - "id": "2359", - "code": "32359", - "data": { - "gtfs": { - "stop_id": "2359", - "stop_code": "32359", - "stop_name": "Samuel-De Champlain et place des Découvreurs", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et place des Découvreurs", - "geography": { - "type": "Point", - "coordinates": [ - -73.4302885165377, - 45.6065338176198 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9507259152451 - }, - "name": "Samuel-De Champlain et des Découvreurs", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.429948168, - 45.606565335 - ] - }, - "is_frozen": false, - "integer_id": 748, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.432956, - 45.606443 - ] - }, - "id": 749, - "properties": { - "id": "e134e428-8d59-4d84-966a-ce83afff1c1c", - "code": "32339", - "data": { - "stops": [ - { - "id": "2339", - "code": "32339", - "data": { - "gtfs": { - "stop_id": "2339", - "stop_code": "32339", - "stop_name": "Samuel-De Champlain et Louis-Fornel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et Louis-Fornel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4329755150737, - 45.6065238880961 - ] - } - }, - { - "id": "2358", - "code": "32358", - "data": { - "gtfs": { - "stop_id": "2358", - "stop_code": "32358", - "stop_name": "Samuel-De Champlain et Louis-Fornel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et Louis-Fornel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4329360466785, - 45.6063618961312 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9486458525244 - }, - "name": "Samuel-De Champlain et Louis-Fornel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.432955781, - 45.606442892 - ] - }, - "is_frozen": false, - "integer_id": 749, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.436604, - 45.604774 - ] - }, - "id": 750, - "properties": { - "id": "b61e935f-f8fb-4a3e-b7c8-5d07b283f0cb", - "code": "32340", - "data": { - "stops": [ - { - "id": "2340", - "code": "32340", - "data": { - "gtfs": { - "stop_id": "2340", - "stop_code": "32340", - "stop_name": "Samuel-De Champlain et De Verrazano", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et De Verrazano", - "geography": { - "type": "Point", - "coordinates": [ - -73.4368447642619, - 45.6047444355747 - ] - } - }, - { - "id": "2357", - "code": "32357", - "data": { - "gtfs": { - "stop_id": "2357", - "stop_code": "32357", - "stop_name": "Samuel-De Champlain et Des Groseilliers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et Des Groseilliers", - "geography": { - "type": "Point", - "coordinates": [ - -73.4363623588603, - 45.6048026566199 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9202883284643 - }, - "name": "Samuel-De Champlain et De Verrazano", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.436603562, - 45.604773546 - ] - }, - "is_frozen": false, - "integer_id": 750, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437994, - 45.604146 - ] - }, - "id": 751, - "properties": { - "id": "f7429ca8-1ccc-41e7-acab-a5d3915affbb", - "code": "32341", - "data": { - "stops": [ - { - "id": "2341", - "code": "32341", - "data": { - "gtfs": { - "stop_id": "2341", - "stop_code": "32341", - "stop_name": "Samuel-De Champlain et Christophe-Colomb", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et Christophe-Colomb", - "geography": { - "type": "Point", - "coordinates": [ - -73.4379401547177, - 45.6042542225581 - ] - } - }, - { - "id": "2356", - "code": "32356", - "data": { - "gtfs": { - "stop_id": "2356", - "stop_code": "32356", - "stop_name": "Samuel-De Champlain et Christophe-Colomb", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et Christophe-Colomb", - "geography": { - "type": "Point", - "coordinates": [ - -73.438048112304, - 45.6040384333431 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9096342924528 - }, - "name": "Samuel-De Champlain et Christophe-Colomb", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437994134, - 45.604146328 - ] - }, - "is_frozen": false, - "integer_id": 751, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443231, - 45.601599 - ] - }, - "id": 752, - "properties": { - "id": "494d9db6-32c6-4aa3-9c11-91eba915c58f", - "code": "32342", - "data": { - "stops": [ - { - "id": "2342", - "code": "32342", - "data": { - "gtfs": { - "stop_id": "2342", - "stop_code": "32342", - "stop_name": "Samuel-De Champlain et Albanel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et Albanel", - "geography": { - "type": "Point", - "coordinates": [ - -73.443229131108, - 45.6016383492015 - ] - } - }, - { - "id": "2355", - "code": "32355", - "data": { - "gtfs": { - "stop_id": "2355", - "stop_code": "32355", - "stop_name": "Samuel-De Champlain et Fraser", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et Fraser", - "geography": { - "type": "Point", - "coordinates": [ - -73.4427087748648, - 45.6017735980395 - ] - } - }, - { - "id": "4352", - "code": "34352", - "data": { - "gtfs": { - "stop_id": "4352", - "stop_code": "34352", - "stop_name": "Albanel et Samuel-De Champlain", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Albanel et Samuel-De Champlain", - "geography": { - "type": "Point", - "coordinates": [ - -73.4437525273516, - 45.6014242728015 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8663674460099 - }, - "name": "Samuel-De Champlain et Albanel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443230651, - 45.601598935 - ] - }, - "is_frozen": false, - "integer_id": 752, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448734, - 45.598315 - ] - }, - "id": 753, - "properties": { - "id": "07a99b44-2d9e-4dd3-bcec-e0a4d9d094a8", - "code": "32344", - "data": { - "stops": [ - { - "id": "2344", - "code": "32344", - "data": { - "gtfs": { - "stop_id": "2344", - "stop_code": "32344", - "stop_name": "Samuel-De Champlain et Hélène-Boullé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et Hélène-Boullé", - "geography": { - "type": "Point", - "coordinates": [ - -73.4488293190208, - 45.5983548016878 - ] - } - }, - { - "id": "2351", - "code": "32351", - "data": { - "gtfs": { - "stop_id": "2351", - "stop_code": "32351", - "stop_name": "Samuel-De Champlain et Hélène-Boullé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et Hélène-Boullé", - "geography": { - "type": "Point", - "coordinates": [ - -73.4486383406716, - 45.5982760881174 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8106067463019 - }, - "name": "Samuel-De Champlain et Hélène-Boullé", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44873383, - 45.598315445 - ] - }, - "is_frozen": false, - "integer_id": 753, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451857, - 45.598077 - ] - }, - "id": 754, - "properties": { - "id": "8e61ed9d-cca5-4f6f-ac2d-9d147580e05f", - "code": "32345", - "data": { - "stops": [ - { - "id": "2345", - "code": "32345", - "data": { - "gtfs": { - "stop_id": "2345", - "stop_code": "32345", - "stop_name": "Samuel-De Champlain et de Brouage", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et de Brouage", - "geography": { - "type": "Point", - "coordinates": [ - -73.4517135744228, - 45.5982264099927 - ] - } - }, - { - "id": "2350", - "code": "32350", - "data": { - "gtfs": { - "stop_id": "2350", - "stop_code": "32350", - "stop_name": "Samuel-De Champlain et de Brouage", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et de Brouage", - "geography": { - "type": "Point", - "coordinates": [ - -73.4520010083534, - 45.5979266175518 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8065495625298 - }, - "name": "Samuel-De Champlain et de Brouage", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451857291, - 45.598076514 - ] - }, - "is_frozen": false, - "integer_id": 754, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454197, - 45.595055 - ] - }, - "id": 755, - "properties": { - "id": "b32eb408-e9c7-49ab-afd7-56523f4ec990", - "code": "32346", - "data": { - "stops": [ - { - "id": "2346", - "code": "32346", - "data": { - "gtfs": { - "stop_id": "2346", - "stop_code": "32346", - "stop_name": "Samuel-De Champlain et Monseigneur-Taché", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et Monseigneur-Taché", - "geography": { - "type": "Point", - "coordinates": [ - -73.454251829382, - 45.5952176156776 - ] - } - }, - { - "id": "2348", - "code": "32348", - "data": { - "gtfs": { - "stop_id": "2348", - "stop_code": "32348", - "stop_name": "Samuel-De Champlain et Monseigneur-Taché", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et Monseigneur-Taché", - "geography": { - "type": "Point", - "coordinates": [ - -73.4541416625248, - 45.5948925480635 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7552483454373 - }, - "name": "Samuel-De Champlain et Monseigneur-Taché", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454196746, - 45.595055082 - ] - }, - "is_frozen": false, - "integer_id": 755, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453963, - 45.596331 - ] - }, - "id": 756, - "properties": { - "id": "2fa5a46a-0b2a-47ae-99aa-88968ad0298e", - "code": "32349", - "data": { - "stops": [ - { - "id": "2349", - "code": "32349", - "data": { - "gtfs": { - "stop_id": "2349", - "stop_code": "32349", - "stop_name": "Samuel-De Champlain et du Père-Marquette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et du Père-Marquette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4539310461066, - 45.5960948698261 - ] - } - }, - { - "id": "3873", - "code": "33873", - "data": { - "gtfs": { - "stop_id": "3873", - "stop_code": "33873", - "stop_name": "Samuel-De Champlain et du Père-Marquette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et du Père-Marquette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4539946314898, - 45.5965677525076 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7769165769953 - }, - "name": "Samuel-De Champlain et du Père-Marquette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453962839, - 45.596331311 - ] - }, - "is_frozen": false, - "integer_id": 756, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441253, - 45.596963 - ] - }, - "id": 757, - "properties": { - "id": "fc32be78-9480-4dfc-b10c-475dc000dd04", - "code": "32367", - "data": { - "stops": [ - { - "id": "2367", - "code": "32367", - "data": { - "gtfs": { - "stop_id": "2367", - "stop_code": "32367", - "stop_name": "Jacques-Cartier et D'Iberville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jacques-Cartier et D'Iberville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4412532324293, - 45.5969632792504 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7876468753634 - }, - "name": "Jacques-Cartier et D'Iberville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441253232, - 45.596963279 - ] - }, - "is_frozen": false, - "integer_id": 757, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441393, - 45.575997 - ] - }, - "id": 758, - "properties": { - "id": "d63304a9-15dd-4cf4-8ec7-3f7d0c080252", - "code": "32385", - "data": { - "stops": [ - { - "id": "2385", - "code": "32385", - "data": { - "gtfs": { - "stop_id": "2385", - "stop_code": "32385", - "stop_name": "du Perche et d'Igé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Perche et d'Igé", - "geography": { - "type": "Point", - "coordinates": [ - -73.4415705157072, - 45.5760182343504 - ] - } - }, - { - "id": "3552", - "code": "33552", - "data": { - "gtfs": { - "stop_id": "3552", - "stop_code": "33552", - "stop_name": "du Perche et d'Igé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Perche et d'Igé", - "geography": { - "type": "Point", - "coordinates": [ - -73.441214833067, - 45.5759759451594 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4318489620125 - }, - "name": "du Perche et d'Igé", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441392674, - 45.57599709 - ] - }, - "is_frozen": false, - "integer_id": 758, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446467, - 45.57745 - ] - }, - "id": 759, - "properties": { - "id": "18aabfcd-f4e1-4782-a757-80cdf1597763", - "code": "32388", - "data": { - "stops": [ - { - "id": "2388", - "code": "32388", - "data": { - "gtfs": { - "stop_id": "2388", - "stop_code": "32388", - "stop_name": "boul. de Mortagne et de Parfondeval", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et de Parfondeval", - "geography": { - "type": "Point", - "coordinates": [ - -73.4464674335286, - 45.5774501295558 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4564944848104 - }, - "name": "boul. de Mortagne et de Parfondeval", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446467434, - 45.57745013 - ] - }, - "is_frozen": false, - "integer_id": 759, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455611, - 45.582019 - ] - }, - "id": 760, - "properties": { - "id": "3370bd8e-b7b2-4aab-8679-28f57be8da19", - "code": "32392", - "data": { - "stops": [ - { - "id": "2392", - "code": "32392", - "data": { - "gtfs": { - "stop_id": "2392", - "stop_code": "32392", - "stop_name": "boul. Industriel et Louis-J.-Lafortune", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Industriel et Louis-J.-Lafortune", - "geography": { - "type": "Point", - "coordinates": [ - -73.4553162223547, - 45.5819396732859 - ] - } - }, - { - "id": "3451", - "code": "33451", - "data": { - "gtfs": { - "stop_id": "3451", - "stop_code": "33451", - "stop_name": "boul. Industriel et Louis-J.-Lafortune", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Industriel et Louis-J.-Lafortune", - "geography": { - "type": "Point", - "coordinates": [ - -73.4559066799542, - 45.5820980110387 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5339983192217 - }, - "name": "boul. Industriel et Louis-J.-Lafortune", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455611451, - 45.582018842 - ] - }, - "is_frozen": false, - "integer_id": 760, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448774, - 45.583168 - ] - }, - "id": 761, - "properties": { - "id": "aa89250f-af50-4115-bf1b-21a034e9dba5", - "code": "32396", - "data": { - "stops": [ - { - "id": "2396", - "code": "32396", - "data": { - "gtfs": { - "stop_id": "2396", - "stop_code": "32396", - "stop_name": "Calixa-Lavallée et Joseph-Lassonde", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Calixa-Lavallée et Joseph-Lassonde", - "geography": { - "type": "Point", - "coordinates": [ - -73.4484562964765, - 45.5830240735301 - ] - } - }, - { - "id": "2410", - "code": "32410", - "data": { - "gtfs": { - "stop_id": "2410", - "stop_code": "32410", - "stop_name": "Calixa-Lavallée et Thomas-Chapais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Calixa-Lavallée et Thomas-Chapais", - "geography": { - "type": "Point", - "coordinates": [ - -73.4490920943607, - 45.5833121324759 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5534973731528 - }, - "name": "Calixa-Lavallée et Joseph-Lassonde", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448774195, - 45.583168103 - ] - }, - "is_frozen": false, - "integer_id": 761, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451305, - 45.585038 - ] - }, - "id": 762, - "properties": { - "id": "f68b9483-e1df-4343-949f-67cf0f140f1c", - "code": "32397", - "data": { - "stops": [ - { - "id": "2397", - "code": "32397", - "data": { - "gtfs": { - "stop_id": "2397", - "stop_code": "32397", - "stop_name": "Calixa-Lavallée et Louis-J.-Lafortune", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Calixa-Lavallée et Louis-J.-Lafortune", - "geography": { - "type": "Point", - "coordinates": [ - -73.4512114820269, - 45.5849953870161 - ] - } - }, - { - "id": "4353", - "code": "34353", - "data": { - "gtfs": { - "stop_id": "4353", - "stop_code": "34353", - "stop_name": "Louis-J.-Lafortune et Calixa-Lavallée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Louis-J.-Lafortune et Calixa-Lavallée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4513991534427, - 45.5850802741955 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.58522282883 - }, - "name": "Calixa-Lavallée et Louis-J.-Lafortune", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451305318, - 45.585037831 - ] - }, - "is_frozen": false, - "integer_id": 762, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450328, - 45.586649 - ] - }, - "id": 763, - "properties": { - "id": "78a5cdb0-2073-4ddc-876e-4b4491cc4cd9", - "code": "32398", - "data": { - "stops": [ - { - "id": "2398", - "code": "32398", - "data": { - "gtfs": { - "stop_id": "2398", - "stop_code": "32398", - "stop_name": "Louis-J.-Lafortune et Tailhandier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Louis-J.-Lafortune et Tailhandier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4503615822431, - 45.5864577493561 - ] - } - }, - { - "id": "2408", - "code": "32408", - "data": { - "gtfs": { - "stop_id": "2408", - "stop_code": "32408", - "stop_name": "Louis-J.-Lafortune et Tailhandier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Louis-J.-Lafortune et Tailhandier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4502952121553, - 45.5868410254989 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.612570144101 - }, - "name": "Louis-J.-Lafortune et Tailhandier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450328397, - 45.586649387 - ] - }, - "is_frozen": false, - "integer_id": 763, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449449, - 45.588013 - ] - }, - "id": 764, - "properties": { - "id": "e57d7fe5-d3ac-4549-8c17-bc7891d2fb5c", - "code": "32399", - "data": { - "stops": [ - { - "id": "2399", - "code": "32399", - "data": { - "gtfs": { - "stop_id": "2399", - "stop_code": "32399", - "stop_name": "Louis-J.-Lafortune et des Îles-Percées", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Louis-J.-Lafortune et des Îles-Percées", - "geography": { - "type": "Point", - "coordinates": [ - -73.4493954160018, - 45.5879722220751 - ] - } - }, - { - "id": "4833", - "code": "34833", - "data": { - "gtfs": { - "stop_id": "4833", - "stop_code": "34833", - "stop_name": "Louis-J.-Lafortune et Louis-J.-Lafortune", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Louis-J.-Lafortune et Louis-J.-Lafortune", - "geography": { - "type": "Point", - "coordinates": [ - -73.4495021960582, - 45.5880539396589 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6357131780073 - }, - "name": "Louis-J.-Lafortune et des Îles-Percées", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449448806, - 45.588013081 - ] - }, - "is_frozen": false, - "integer_id": 764, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449871, - 45.58891 - ] - }, - "id": 765, - "properties": { - "id": "7556ee28-3088-47e4-8621-ee5ed1aeb9fd", - "code": "32400", - "data": { - "stops": [ - { - "id": "2400", - "code": "32400", - "data": { - "gtfs": { - "stop_id": "2400", - "stop_code": "32400", - "stop_name": "des Îles-Percées et De Jumonville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Îles-Percées et De Jumonville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4497053151413, - 45.5888698291027 - ] - } - }, - { - "id": "4206", - "code": "34206", - "data": { - "gtfs": { - "stop_id": "4206", - "stop_code": "34206", - "stop_name": "des Îles-Percées et De Jumonville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Îles-Percées et De Jumonville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4500365887002, - 45.5889499837038 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6509339594875 - }, - "name": "des Îles-Percées et De Jumonville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449870952, - 45.588909906 - ] - }, - "is_frozen": false, - "integer_id": 765, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451459, - 45.590195 - ] - }, - "id": 766, - "properties": { - "id": "aa3e9b29-cdbb-464c-8a8b-fae908f7b00f", - "code": "32401", - "data": { - "stops": [ - { - "id": "2401", - "code": "32401", - "data": { - "gtfs": { - "stop_id": "2401", - "stop_code": "32401", - "stop_name": "des Îles-Percées et Jacques-Le Tessier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Îles-Percées et Jacques-Le Tessier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4513799964149, - 45.5901968269951 - ] - } - }, - { - "id": "2406", - "code": "32406", - "data": { - "gtfs": { - "stop_id": "2406", - "stop_code": "32406", - "stop_name": "des Îles-Percées et Jacques-Le Tessier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Îles-Percées et Jacques-Le Tessier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4515390036394, - 45.5901923954117 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6727390371602 - }, - "name": "des Îles-Percées et Jacques-Le Tessier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.4514595, - 45.590194611 - ] - }, - "is_frozen": false, - "integer_id": 766, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453003, - 45.591401 - ] - }, - "id": 767, - "properties": { - "id": "7a859698-99f4-4c31-b351-953ef9867df6", - "code": "32402", - "data": { - "stops": [ - { - "id": "2402", - "code": "32402", - "data": { - "gtfs": { - "stop_id": "2402", - "stop_code": "32402", - "stop_name": "des Îles-Percées et Claude-Dauzat", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Îles-Percées et Claude-Dauzat", - "geography": { - "type": "Point", - "coordinates": [ - -73.4528472888194, - 45.591367219946 - ] - } - }, - { - "id": "2405", - "code": "32405", - "data": { - "gtfs": { - "stop_id": "2405", - "stop_code": "32405", - "stop_name": "des Îles-Percées et Claude-Dauzat", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Îles-Percées et Claude-Dauzat", - "geography": { - "type": "Point", - "coordinates": [ - -73.4531580353794, - 45.5914348349645 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6932166739692 - }, - "name": "des Îles-Percées et Claude-Dauzat", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453002662, - 45.591401027 - ] - }, - "is_frozen": false, - "integer_id": 767, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454428, - 45.592512 - ] - }, - "id": 768, - "properties": { - "id": "e4ed3729-d139-4568-882c-36c81b8c1d41", - "code": "32403", - "data": { - "stops": [ - { - "id": "2403", - "code": "32403", - "data": { - "gtfs": { - "stop_id": "2403", - "stop_code": "32403", - "stop_name": "des Îles-Percées et De La Saudrays", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Îles-Percées et De La Saudrays", - "geography": { - "type": "Point", - "coordinates": [ - -73.4542959027093, - 45.5924917391568 - ] - } - }, - { - "id": "2404", - "code": "32404", - "data": { - "gtfs": { - "stop_id": "2404", - "stop_code": "32404", - "stop_name": "des Îles-Percées et De La Saudrays", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Îles-Percées et De La Saudrays", - "geography": { - "type": "Point", - "coordinates": [ - -73.4545601697062, - 45.5925331926142 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7120833295033 - }, - "name": "des Îles-Percées et De La Saudrays", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454428036, - 45.592512466 - ] - }, - "is_frozen": false, - "integer_id": 768, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.433263, - 45.581904 - ] - }, - "id": 769, - "properties": { - "id": "c02424dc-f033-4be6-a66b-8712f3e4b064", - "code": "32419", - "data": { - "stops": [ - { - "id": "2419", - "code": "32419", - "data": { - "gtfs": { - "stop_id": "2419", - "stop_code": "32419", - "stop_name": "D'Avaugour et des Merles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "D'Avaugour et des Merles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4329416116411, - 45.5817507583107 - ] - } - }, - { - "id": "2430", - "code": "32430", - "data": { - "gtfs": { - "stop_id": "2430", - "stop_code": "32430", - "stop_name": "D'Avaugour et des Merles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "D'Avaugour et des Merles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4335848897453, - 45.5820579043421 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5320555213938 - }, - "name": "D'Avaugour et des Merles", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.433263251, - 45.581904331 - ] - }, - "is_frozen": false, - "integer_id": 769, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442225, - 45.590948 - ] - }, - "id": 770, - "properties": { - "id": "b87ee1fa-53a3-46fa-9d30-2da964c500aa", - "code": "32421", - "data": { - "stops": [ - { - "id": "2421", - "code": "32421", - "data": { - "gtfs": { - "stop_id": "2421", - "stop_code": "32421", - "stop_name": "Le Baron et Louis-Quévillon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Baron et Louis-Quévillon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4421074951135, - 45.590920463422 - ] - } - }, - { - "id": "2428", - "code": "32428", - "data": { - "gtfs": { - "stop_id": "2428", - "stop_code": "32428", - "stop_name": "Le Baron et Louis-Quévillon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Baron et Louis-Quévillon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4423424756174, - 45.5909754745369 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6855263404067 - }, - "name": "Le Baron et Louis-Quévillon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442224985, - 45.590947969 - ] - }, - "is_frozen": false, - "integer_id": 770, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.4436, - 45.593271 - ] - }, - "id": 771, - "properties": { - "id": "5aedd246-6893-494f-8756-0a623654ca1d", - "code": "32422", - "data": { - "stops": [ - { - "id": "2422", - "code": "32422", - "data": { - "gtfs": { - "stop_id": "2422", - "stop_code": "32422", - "stop_name": "Le Baron et De Lévis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Baron et De Lévis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4434988973688, - 45.593260753116 - ] - } - }, - { - "id": "2427", - "code": "32427", - "data": { - "gtfs": { - "stop_id": "2427", - "stop_code": "32427", - "stop_name": "Le Baron et De Lévis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Baron et De Lévis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4437008863372, - 45.5932811799701 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7249595041277 - }, - "name": "Le Baron et De Lévis", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443599892, - 45.593270967 - ] - }, - "is_frozen": false, - "integer_id": 771, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445169, - 45.595476 - ] - }, - "id": 772, - "properties": { - "id": "cbb95297-898f-493c-b22a-5755d4356a5c", - "code": "32423", - "data": { - "stops": [ - { - "id": "2423", - "code": "32423", - "data": { - "gtfs": { - "stop_id": "2423", - "stop_code": "32423", - "stop_name": "Le Baron et De Jumonville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Baron et De Jumonville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4452479683136, - 45.595195916858 - ] - } - }, - { - "id": "2426", - "code": "32426", - "data": { - "gtfs": { - "stop_id": "2426", - "stop_code": "32426", - "stop_name": "De Jumonville et Le Baron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Jumonville et Le Baron", - "geography": { - "type": "Point", - "coordinates": [ - -73.4454254431256, - 45.5953518394678 - ] - } - }, - { - "id": "5861", - "code": "30630", - "data": { - "gtfs": { - "stop_id": "5861", - "stop_code": "30630", - "stop_name": "De Jumonville et Hélène-Boullé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Jumonville et Hélène-Boullé", - "geography": { - "type": "Point", - "coordinates": [ - -73.4449134420886, - 45.5957555041984 - ] - } - }, - { - "id": "5864", - "code": "30633", - "data": { - "gtfs": { - "stop_id": "5864", - "stop_code": "30633", - "stop_name": "Hélène-Boullé et De Jumonville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Hélène-Boullé et De Jumonville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4451983967515, - 45.5956699325966 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7623897604635 - }, - "name": "Le Baron et De Jumonville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445169443, - 45.595475711 - ] - }, - "is_frozen": false, - "integer_id": 772, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443535, - 45.5965 - ] - }, - "id": 773, - "properties": { - "id": "49262d07-72b2-466f-bf49-88656466e4a4", - "code": "32424", - "data": { - "stops": [ - { - "id": "2424", - "code": "32424", - "data": { - "gtfs": { - "stop_id": "2424", - "stop_code": "32424", - "stop_name": "De Jumonville et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Jumonville et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.443557058664, - 45.5964097533377 - ] - } - }, - { - "id": "4014", - "code": "34014", - "data": { - "gtfs": { - "stop_id": "4014", - "stop_code": "34014", - "stop_name": "boul. De Montarville et François-Gravé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et François-Gravé", - "geography": { - "type": "Point", - "coordinates": [ - -73.443218784592, - 45.596550157773 - ] - } - }, - { - "id": "4160", - "code": "34160", - "data": { - "gtfs": { - "stop_id": "4160", - "stop_code": "34160", - "stop_name": "De Jumonville et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Jumonville et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4438518027616, - 45.5963933039506 - ] - } - }, - { - "id": "5129", - "code": "35129", - "data": { - "gtfs": { - "stop_id": "5129", - "stop_code": "35129", - "stop_name": "boul. De Montarville et De Jumonville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et De Jumonville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4436383353347, - 45.5966076665969 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7797889777256 - }, - "name": "De Jumonville et boul. De Montarville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443535294, - 45.596500485 - ] - }, - "is_frozen": false, - "integer_id": 773, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.42108, - 45.564051 - ] - }, - "id": 774, - "properties": { - "id": "072328a7-3894-4360-8b61-c1e252d6cd3a", - "code": "32442", - "data": { - "stops": [ - { - "id": "2442", - "code": "32442", - "data": { - "gtfs": { - "stop_id": "2442", - "stop_code": "32442", - "stop_name": "ch. Du Tremblay et Newton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Newton", - "geography": { - "type": "Point", - "coordinates": [ - -73.4210799828021, - 45.564050650682 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2292927590502 - }, - "name": "ch. Du Tremblay et Newton", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.421079983, - 45.564050651 - ] - }, - "is_frozen": false, - "integer_id": 774, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450335, - 45.460261 - ] - }, - "id": 775, - "properties": { - "id": "70f95ad2-eba4-4503-b7ff-17df9ce33ba4", - "code": "32449", - "data": { - "stops": [ - { - "id": "2449", - "code": "32449", - "data": { - "gtfs": { - "stop_id": "2449", - "stop_code": "32449", - "stop_name": "Bergerac et av. Beauchemin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bergerac et av. Beauchemin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4503345663146, - 45.460260860582 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4748550666709 - }, - "name": "Bergerac et av. Beauchemin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450334566, - 45.460260861 - ] - }, - "is_frozen": false, - "integer_id": 775, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448933, - 45.458985 - ] - }, - "id": 776, - "properties": { - "id": "e5e1c5c5-36d2-4221-83f3-658f6d4b6761", - "code": "32450", - "data": { - "stops": [ - { - "id": "2450", - "code": "32450", - "data": { - "gtfs": { - "stop_id": "2450", - "stop_code": "32450", - "stop_name": "Bergerac et civique 3850", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bergerac et civique 3850", - "geography": { - "type": "Point", - "coordinates": [ - -73.4489334301682, - 45.4589851446758 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4533502793415 - }, - "name": "Bergerac et civique 3850", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44893343, - 45.458985145 - ] - }, - "is_frozen": false, - "integer_id": 776, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445751, - 45.457487 - ] - }, - "id": 777, - "properties": { - "id": "ea0252a4-936b-49d7-8af7-57e55fff6184", - "code": "32452", - "data": { - "stops": [ - { - "id": "2452", - "code": "32452", - "data": { - "gtfs": { - "stop_id": "2452", - "stop_code": "32452", - "stop_name": "av. Beauchemin et civique 4055", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Beauchemin et civique 4055", - "geography": { - "type": "Point", - "coordinates": [ - -73.44575111422, - 45.4574874455723 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4281053602159 - }, - "name": "av. Beauchemin et civique 4055", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445751114, - 45.457487446 - ] - }, - "is_frozen": false, - "integer_id": 777, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445517, - 45.458615 - ] - }, - "id": 778, - "properties": { - "id": "5b6c9f4f-7b19-41d9-ad96-38e8e97fc190", - "code": "32453", - "data": { - "stops": [ - { - "id": "2453", - "code": "32453", - "data": { - "gtfs": { - "stop_id": "2453", - "stop_code": "32453", - "stop_name": "av. Beauchemin et av. Boniface", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Beauchemin et av. Boniface", - "geography": { - "type": "Point", - "coordinates": [ - -73.4455173024388, - 45.45861460267 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4471043111148 - }, - "name": "av. Beauchemin et av. Boniface", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445517302, - 45.458614603 - ] - }, - "is_frozen": false, - "integer_id": 778, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442738, - 45.460575 - ] - }, - "id": 779, - "properties": { - "id": "735e4ba2-6503-4586-98da-feccec61a212", - "code": "32454", - "data": { - "stops": [ - { - "id": "2454", - "code": "32454", - "data": { - "gtfs": { - "stop_id": "2454", - "stop_code": "32454", - "stop_name": "av. Boniface et av. Balzac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Boniface et av. Balzac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4426271079556, - 45.4604494069217 - ] - } - }, - { - "id": "4052", - "code": "34052", - "data": { - "gtfs": { - "stop_id": "4052", - "stop_code": "34052", - "stop_name": "av. Balzac et av. Boniface", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Balzac et av. Boniface", - "geography": { - "type": "Point", - "coordinates": [ - -73.4429188370163, - 45.4606996231211 - ] - } - }, - { - "id": "5083", - "code": "35083", - "data": { - "gtfs": { - "stop_id": "5083", - "stop_code": "35083", - "stop_name": "av. Boniface et av. Balzac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Boniface et av. Balzac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4425570692784, - 45.460675701932 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4801425638626 - }, - "name": "av. Boniface et av. Balzac", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442737953, - 45.460574515 - ] - }, - "is_frozen": false, - "integer_id": 779, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437973, - 45.463749 - ] - }, - "id": 780, - "properties": { - "id": "4bc3caff-ed56-497d-8ae6-f486cc6662a6", - "code": "32456", - "data": { - "stops": [ - { - "id": "2456", - "code": "32456", - "data": { - "gtfs": { - "stop_id": "2456", - "stop_code": "32456", - "stop_name": "av. Bienvenue et av. Boniface", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienvenue et av. Boniface", - "geography": { - "type": "Point", - "coordinates": [ - -73.4380697336037, - 45.4639089531722 - ] - } - }, - { - "id": "5124", - "code": "35124", - "data": { - "gtfs": { - "stop_id": "5124", - "stop_code": "35124", - "stop_name": "av. Bienvenue et av. Boniface", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienvenue et av. Boniface", - "geography": { - "type": "Point", - "coordinates": [ - -73.4378753195248, - 45.4635889187992 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5336610376773 - }, - "name": "av. Bienvenue et av. Boniface", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437972527, - 45.463748936 - ] - }, - "is_frozen": false, - "integer_id": 780, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452656, - 45.466868 - ] - }, - "id": 781, - "properties": { - "id": "4d470d17-22f9-4f20-a00b-2efca474c2fb", - "code": "32458", - "data": { - "stops": [ - { - "id": "2458", - "code": "32458", - "data": { - "gtfs": { - "stop_id": "2458", - "stop_code": "32458", - "stop_name": "boul. Milan et av. Barry", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Barry", - "geography": { - "type": "Point", - "coordinates": [ - -73.4525933805186, - 45.467040874381 - ] - } - }, - { - "id": "2665", - "code": "32665", - "data": { - "gtfs": { - "stop_id": "2665", - "stop_code": "32665", - "stop_name": "boul. Milan et av. Barry", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Barry", - "geography": { - "type": "Point", - "coordinates": [ - -73.4527183763124, - 45.4666959295749 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.586261723775 - }, - "name": "boul. Milan et av. Barry", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452655878, - 45.466868402 - ] - }, - "is_frozen": false, - "integer_id": 781, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454769, - 45.46582 - ] - }, - "id": 782, - "properties": { - "id": "4fc83229-a15e-48e1-aa4f-fae0073dacf9", - "code": "32459", - "data": { - "stops": [ - { - "id": "2459", - "code": "32459", - "data": { - "gtfs": { - "stop_id": "2459", - "stop_code": "32459", - "stop_name": "boul. Milan et av. Broadway", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Broadway", - "geography": { - "type": "Point", - "coordinates": [ - -73.4547693182451, - 45.4658198582903 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5685801267671 - }, - "name": "boul. Milan et av. Broadway", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454769318, - 45.465819858 - ] - }, - "is_frozen": false, - "integer_id": 782, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458845, - 45.465513 - ] - }, - "id": 783, - "properties": { - "id": "7d672010-5387-42b1-8ad3-257c7e6df63a", - "code": "32460", - "data": { - "stops": [ - { - "id": "2460", - "code": "32460", - "data": { - "gtfs": { - "stop_id": "2460", - "stop_code": "32460", - "stop_name": "boul. Lapinière et de Bourgogne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et de Bourgogne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4586520044014, - 45.4655150688354 - ] - } - }, - { - "id": "3816", - "code": "33816", - "data": { - "gtfs": { - "stop_id": "3816", - "stop_code": "33816", - "stop_name": "boul. Lapinière et de Bourgogne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et de Bourgogne", - "geography": { - "type": "Point", - "coordinates": [ - -73.459037565675, - 45.4655115822578 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5634112621788 - }, - "name": "boul. Lapinière et de Bourgogne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.458844785, - 45.465513326 - ] - }, - "is_frozen": false, - "integer_id": 783, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474043, - 45.471854 - ] - }, - "id": 784, - "properties": { - "id": "3a8b9936-4595-4770-a3f4-b31253602356", - "code": "32463", - "data": { - "stops": [ - { - "id": "2463", - "code": "32463", - "data": { - "gtfs": { - "stop_id": "2463", - "stop_code": "32463", - "stop_name": "boul. Pelletier et Palerme", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et Palerme", - "geography": { - "type": "Point", - "coordinates": [ - -73.4738642050081, - 45.4717038403101 - ] - } - }, - { - "id": "2494", - "code": "32494", - "data": { - "gtfs": { - "stop_id": "2494", - "stop_code": "32494", - "stop_name": "boul. Pelletier et Palerme", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et Palerme", - "geography": { - "type": "Point", - "coordinates": [ - -73.4742209231136, - 45.4720048926191 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6703533908806 - }, - "name": "boul. Pelletier et Palerme", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474042564, - 45.471854366 - ] - }, - "is_frozen": false, - "integer_id": 784, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474447, - 45.478985 - ] - }, - "id": 785, - "properties": { - "id": "784b0f22-55ff-44d1-a754-ddad81fb81cd", - "code": "32466", - "data": { - "stops": [ - { - "id": "2466", - "code": "32466", - "data": { - "gtfs": { - "stop_id": "2466", - "stop_code": "32466", - "stop_name": "Morley et Watson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Morley et Watson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4744763608378, - 45.4788780995577 - ] - } - }, - { - "id": "2490", - "code": "32490", - "data": { - "gtfs": { - "stop_id": "2490", - "stop_code": "32490", - "stop_name": "Morley et Watson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Morley et Watson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4744177370234, - 45.4790923093799 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7906581858753 - }, - "name": "Morley et Watson", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474447049, - 45.478985204 - ] - }, - "is_frozen": false, - "integer_id": 785, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.472109, - 45.480489 - ] - }, - "id": 786, - "properties": { - "id": "96e97125-39ff-47a9-b41d-043c4ca5c57e", - "code": "32467", - "data": { - "stops": [ - { - "id": "2467", - "code": "32467", - "data": { - "gtfs": { - "stop_id": "2467", - "stop_code": "32467", - "stop_name": "Morley et Miller", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Morley et Miller", - "geography": { - "type": "Point", - "coordinates": [ - -73.472182309357, - 45.4804198877287 - ] - } - }, - { - "id": "2489", - "code": "32489", - "data": { - "gtfs": { - "stop_id": "2489", - "stop_code": "32489", - "stop_name": "Miller et Morley", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Miller et Morley", - "geography": { - "type": "Point", - "coordinates": [ - -73.4720351719426, - 45.4805571971879 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8160268575397 - }, - "name": "Morley et Miller", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472108741, - 45.480488542 - ] - }, - "is_frozen": false, - "integer_id": 786, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469909, - 45.480632 - ] - }, - "id": 787, - "properties": { - "id": "c2e1b4a6-db9f-4050-848a-68486b390a21", - "code": "32468", - "data": { - "stops": [ - { - "id": "2468", - "code": "32468", - "data": { - "gtfs": { - "stop_id": "2468", - "stop_code": "32468", - "stop_name": "Miller et Campbell", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Miller et Campbell", - "geography": { - "type": "Point", - "coordinates": [ - -73.4698870746094, - 45.4805549737934 - ] - } - }, - { - "id": "2488", - "code": "32488", - "data": { - "gtfs": { - "stop_id": "2488", - "stop_code": "32488", - "stop_name": "Campbell et Miller", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Campbell et Miller", - "geography": { - "type": "Point", - "coordinates": [ - -73.4699314862794, - 45.4807094225606 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8184511426555 - }, - "name": "Miller et Campbell", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46990928, - 45.480632198 - ] - }, - "is_frozen": false, - "integer_id": 787, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.472945, - 45.483533 - ] - }, - "id": 788, - "properties": { - "id": "7735675d-64d8-4b9d-b9a3-a0427fb4a01d", - "code": "32470", - "data": { - "stops": [ - { - "id": "2470", - "code": "32470", - "data": { - "gtfs": { - "stop_id": "2470", - "stop_code": "32470", - "stop_name": "Campbell et Sexton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Campbell et Sexton", - "geography": { - "type": "Point", - "coordinates": [ - -73.4727770968092, - 45.483498464824 - ] - } - }, - { - "id": "2487", - "code": "32487", - "data": { - "gtfs": { - "stop_id": "2487", - "stop_code": "32487", - "stop_name": "Campbell et Sexton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Campbell et Sexton", - "geography": { - "type": "Point", - "coordinates": [ - -73.4731128885043, - 45.4835665376278 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8673994981724 - }, - "name": "Campbell et Sexton", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472944993, - 45.483532501 - ] - }, - "is_frozen": false, - "integer_id": 788, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474546, - 45.484702 - ] - }, - "id": 789, - "properties": { - "id": "c229b499-645e-4877-8f57-0fc6de2a8d53", - "code": "32471", - "data": { - "stops": [ - { - "id": "2471", - "code": "32471", - "data": { - "gtfs": { - "stop_id": "2471", - "stop_code": "32471", - "stop_name": "Campbell et Emborne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Campbell et Emborne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4743912160624, - 45.4846938471118 - ] - } - }, - { - "id": "2486", - "code": "32486", - "data": { - "gtfs": { - "stop_id": "2486", - "stop_code": "32486", - "stop_name": "Campbell et Emborne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Campbell et Emborne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4747003707814, - 45.4847091854875 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8871310549381 - }, - "name": "Campbell et Emborne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474545793, - 45.484701516 - ] - }, - "is_frozen": false, - "integer_id": 789, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475634, - 45.48548 - ] - }, - "id": 790, - "properties": { - "id": "3c04c568-5ef2-4b47-8d34-b0d175358d60", - "code": "32472", - "data": { - "stops": [ - { - "id": "2472", - "code": "32472", - "data": { - "gtfs": { - "stop_id": "2472", - "stop_code": "32472", - "stop_name": "Campbell et Regent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Campbell et Regent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4755935324481, - 45.4855417417351 - ] - } - }, - { - "id": "3988", - "code": "33988", - "data": { - "gtfs": { - "stop_id": "3988", - "stop_code": "33988", - "stop_name": "Campbell et Regent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Campbell et Regent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4756737250619, - 45.4854176089149 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9002661094405 - }, - "name": "Campbell et Regent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475633629, - 45.485479675 - ] - }, - "is_frozen": false, - "integer_id": 790, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475557, - 45.486586 - ] - }, - "id": 791, - "properties": { - "id": "a5c03062-e324-4cb7-8c59-00c59a14b63e", - "code": "32473", - "data": { - "stops": [ - { - "id": "2473", - "code": "32473", - "data": { - "gtfs": { - "stop_id": "2473", - "stop_code": "32473", - "stop_name": "Laurie et Vivian", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Laurie et Vivian", - "geography": { - "type": "Point", - "coordinates": [ - -73.4757307011968, - 45.4868312732358 - ] - } - }, - { - "id": "3990", - "code": "33990", - "data": { - "gtfs": { - "stop_id": "3990", - "stop_code": "33990", - "stop_name": "Laurie et Regent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Laurie et Regent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4753840349421, - 45.4863398374504 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9189339070429 - }, - "name": "Laurie et Vivian", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475557368, - 45.486585555 - ] - }, - "is_frozen": false, - "integer_id": 791, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475324, - 45.48772 - ] - }, - "id": 792, - "properties": { - "id": "1e205a49-fad6-428c-9d0c-b4018473837d", - "code": "32474", - "data": { - "stops": [ - { - "id": "2474", - "code": "32474", - "data": { - "gtfs": { - "stop_id": "2474", - "stop_code": "32474", - "stop_name": "Dorothy et civique 578", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Dorothy et civique 578", - "geography": { - "type": "Point", - "coordinates": [ - -73.475347698462, - 45.4878118707577 - ] - } - }, - { - "id": "2483", - "code": "32483", - "data": { - "gtfs": { - "stop_id": "2483", - "stop_code": "32483", - "stop_name": "Dorothy et Vivian", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Dorothy et Vivian", - "geography": { - "type": "Point", - "coordinates": [ - -73.4753005373589, - 45.487628832905 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9380909680692 - }, - "name": "Dorothy et civique 578", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475324118, - 45.487720352 - ] - }, - "is_frozen": false, - "integer_id": 792, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.476862, - 45.488479 - ] - }, - "id": 793, - "properties": { - "id": "ac9a9c14-57c3-4a81-9316-ceca9586731d", - "code": "32475", - "data": { - "stops": [ - { - "id": "2475", - "code": "32475", - "data": { - "gtfs": { - "stop_id": "2475", - "stop_code": "32475", - "stop_name": "Margaret et de Verchères", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Margaret et de Verchères", - "geography": { - "type": "Point", - "coordinates": [ - -73.476766314736, - 45.4885110897106 - ] - } - }, - { - "id": "2482", - "code": "32482", - "data": { - "gtfs": { - "stop_id": "2482", - "stop_code": "32482", - "stop_name": "de Verchères et Margaret", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Verchères et Margaret", - "geography": { - "type": "Point", - "coordinates": [ - -73.476956960591, - 45.4884467497934 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9508973625158 - }, - "name": "Margaret et de Verchères", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.476861638, - 45.48847892 - ] - }, - "is_frozen": false, - "integer_id": 793, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481412, - 45.491908 - ] - }, - "id": 794, - "properties": { - "id": "c4f08e33-183e-41cf-9f96-5985f148bd11", - "code": "32477", - "data": { - "stops": [ - { - "id": "2477", - "code": "32477", - "data": { - "gtfs": { - "stop_id": "2477", - "stop_code": "32477", - "stop_name": "de Verchères et Gladstone", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Verchères et Gladstone", - "geography": { - "type": "Point", - "coordinates": [ - -73.4813469609855, - 45.4917537896772 - ] - } - }, - { - "id": "2480", - "code": "32480", - "data": { - "gtfs": { - "stop_id": "2480", - "stop_code": "32480", - "stop_name": "de Verchères et Gladstone", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Verchères et Gladstone", - "geography": { - "type": "Point", - "coordinates": [ - -73.4814760892735, - 45.4920628641822 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0088001246334 - }, - "name": "de Verchères et Gladstone", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481411525, - 45.491908327 - ] - }, - "is_frozen": false, - "integer_id": 794, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455899, - 45.528749 - ] - }, - "id": 795, - "properties": { - "id": "e8c367ff-94d4-4335-8cfa-cd40d1ea983f", - "code": "32496", - "data": { - "stops": [ - { - "id": "2496", - "code": "32496", - "data": { - "gtfs": { - "stop_id": "2496", - "stop_code": "32496", - "stop_name": "boul. Des Ormeaux et boul. Roland-Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Des Ormeaux et boul. Roland-Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4558985949941, - 45.528748989907 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6314850755227 - }, - "name": "boul. Des Ormeaux et boul. Roland-Therrien", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455898595, - 45.52874899 - ] - }, - "is_frozen": false, - "integer_id": 795, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458059, - 45.517326 - ] - }, - "id": 796, - "properties": { - "id": "329dac46-2c72-4ec4-aeeb-8492af5be014", - "code": "32501", - "data": { - "stops": [ - { - "id": "2501", - "code": "32501", - "data": { - "gtfs": { - "stop_id": "2501", - "stop_code": "32501", - "stop_name": "Racicot et de Fontainebleau sud", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Racicot et de Fontainebleau sud", - "geography": { - "type": "Point", - "coordinates": [ - -73.4580594836546, - 45.5173263366112 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4382888564406 - }, - "name": "Racicot et de Fontainebleau sud", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.458059484, - 45.517326337 - ] - }, - "is_frozen": false, - "integer_id": 796, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457412, - 45.518493 - ] - }, - "id": 797, - "properties": { - "id": "6fe3defb-8d6f-405c-8fb2-44b73532b240", - "code": "32502", - "data": { - "stops": [ - { - "id": "2502", - "code": "32502", - "data": { - "gtfs": { - "stop_id": "2502", - "stop_code": "32502", - "stop_name": "de Fontainebleau sud et de Fontainebleau sud", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Fontainebleau sud et de Fontainebleau sud", - "geography": { - "type": "Point", - "coordinates": [ - -73.4574119987126, - 45.5184934882573 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4580240481235 - }, - "name": "de Fontainebleau sud et de Fontainebleau sud", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457411999, - 45.518493488 - ] - }, - "is_frozen": false, - "integer_id": 797, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.447862, - 45.547564 - ] - }, - "id": 798, - "properties": { - "id": "92a52522-0981-490b-a541-e3514efa3ed8", - "code": "32504", - "data": { - "stops": [ - { - "id": "2504", - "code": "32504", - "data": { - "gtfs": { - "stop_id": "2504", - "stop_code": "32504", - "stop_name": "ch. Du Tremblay et Cantin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Cantin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4477275921516, - 45.5474609435468 - ] - } - }, - { - "id": "3955", - "code": "33955", - "data": { - "gtfs": { - "stop_id": "3955", - "stop_code": "33955", - "stop_name": "ch. Du Tremblay et Cantin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Cantin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4474582671964, - 45.5477279129057 - ] - } - }, - { - "id": "5796", - "code": "30565", - "data": { - "gtfs": { - "stop_id": "5796", - "stop_code": "30565", - "stop_name": "ch. Du Tremblay et ch. Du Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et ch. Du Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4483177405597, - 45.5473997325711 - ] - } - }, - { - "id": "5837", - "code": "30606", - "data": { - "gtfs": { - "stop_id": "5837", - "stop_code": "30606", - "stop_name": "Cantin et ch. Du Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Cantin et ch. Du Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4474055082359, - 45.5475142468696 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9499620191104 - }, - "name": "ch. Du Tremblay et Cantin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447861624, - 45.547563823 - ] - }, - "is_frozen": false, - "integer_id": 798, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44435, - 45.548637 - ] - }, - "id": 799, - "properties": { - "id": "e525780c-4598-49cd-b6ff-8b911e2c9385", - "code": "32506", - "data": { - "stops": [ - { - "id": "2506", - "code": "32506", - "data": { - "gtfs": { - "stop_id": "2506", - "stop_code": "32506", - "stop_name": "ch. Du Tremblay et civique 2255", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 2255", - "geography": { - "type": "Point", - "coordinates": [ - -73.4442997780179, - 45.5485730415112 - ] - } - }, - { - "id": "2943", - "code": "32943", - "data": { - "gtfs": { - "stop_id": "2943", - "stop_code": "32943", - "stop_name": "ch. Du Tremblay et civique 2255", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 2255", - "geography": { - "type": "Point", - "coordinates": [ - -73.4444005748255, - 45.5487000925423 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9681297751193 - }, - "name": "ch. Du Tremblay et civique 2255", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.444350176, - 45.548636567 - ] - }, - "is_frozen": false, - "integer_id": 799, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44183, - 45.549466 - ] - }, - "id": 800, - "properties": { - "id": "b567475e-2b46-4378-9adc-08b4cc99ad7e", - "code": "32507", - "data": { - "stops": [ - { - "id": "2507", - "code": "32507", - "data": { - "gtfs": { - "stop_id": "2507", - "stop_code": "32507", - "stop_name": "ch. Du Tremblay et de Toscane", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et de Toscane", - "geography": { - "type": "Point", - "coordinates": [ - -73.4417166872765, - 45.5494284720407 - ] - } - }, - { - "id": "2942", - "code": "32942", - "data": { - "gtfs": { - "stop_id": "2942", - "stop_code": "32942", - "stop_name": "ch. Du Tremblay et de Toscane", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et de Toscane", - "geography": { - "type": "Point", - "coordinates": [ - -73.4419424688543, - 45.5495038510692 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9821803175789 - }, - "name": "ch. Du Tremblay et de Toscane", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441829578, - 45.549466162 - ] - }, - "is_frozen": false, - "integer_id": 800, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.435866, - 45.55293 - ] - }, - "id": 801, - "properties": { - "id": "317463e6-5f58-49bb-9db5-183bfb37f7c6", - "code": "32509", - "data": { - "stops": [ - { - "id": "2509", - "code": "32509", - "data": { - "gtfs": { - "stop_id": "2509", - "stop_code": "32509", - "stop_name": "ch. Du Tremblay et civique 2790", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 2790", - "geography": { - "type": "Point", - "coordinates": [ - -73.4357845806832, - 45.5528585298063 - ] - } - }, - { - "id": "2573", - "code": "32573", - "data": { - "gtfs": { - "stop_id": "2573", - "stop_code": "32573", - "stop_name": "ch. Du Tremblay et civique 2790", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 2790", - "geography": { - "type": "Point", - "coordinates": [ - -73.4359482647772, - 45.5530019771373 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0408569794287 - }, - "name": "ch. Du Tremblay et civique 2790", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.435866423, - 45.552930253 - ] - }, - "is_frozen": false, - "integer_id": 801, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.427312, - 45.559768 - ] - }, - "id": 802, - "properties": { - "id": "fafd80b0-6ccf-4eb9-acda-4d93a4bf6736", - "code": "32510", - "data": { - "stops": [ - { - "id": "2510", - "code": "32510", - "data": { - "gtfs": { - "stop_id": "2510", - "stop_code": "32510", - "stop_name": "ch. Du Tremblay et civique 88", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 88", - "geography": { - "type": "Point", - "coordinates": [ - -73.4272351860175, - 45.559688886981 - ] - } - }, - { - "id": "2570", - "code": "32570", - "data": { - "gtfs": { - "stop_id": "2570", - "stop_code": "32570", - "stop_name": "ch. Du Tremblay et civique 115", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 115", - "geography": { - "type": "Point", - "coordinates": [ - -73.4273880761966, - 45.5598462725599 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1567027976015 - }, - "name": "ch. Du Tremblay et civique 88", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.427311631, - 45.55976758 - ] - }, - "is_frozen": false, - "integer_id": 802, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.417438, - 45.566156 - ] - }, - "id": 803, - "properties": { - "id": "0041d8ec-3bef-4a62-90da-3711f5d509d2", - "code": "32512", - "data": { - "stops": [ - { - "id": "2512", - "code": "32512", - "data": { - "gtfs": { - "stop_id": "2512", - "stop_code": "32512", - "stop_name": "ch. Du Tremblay et GROUPE CANAM INC.", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et GROUPE CANAM INC.", - "geography": { - "type": "Point", - "coordinates": [ - -73.4173959425412, - 45.5661068249963 - ] - } - }, - { - "id": "2940", - "code": "32940", - "data": { - "gtfs": { - "stop_id": "2940", - "stop_code": "32940", - "stop_name": "ch. Du Tremblay et GROUPE CANAM INC.", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et GROUPE CANAM INC.", - "geography": { - "type": "Point", - "coordinates": [ - -73.4174798688298, - 45.5662058672885 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2649863207556 - }, - "name": "ch. Du Tremblay et GROUPE CANAM INC.", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.417437906, - 45.566156346 - ] - }, - "is_frozen": false, - "integer_id": 803, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.415926, - 45.567711 - ] - }, - "id": 804, - "properties": { - "id": "1af3fbef-32b4-454e-9289-b300f3b4ddb1", - "code": "32513", - "data": { - "stops": [ - { - "id": "2513", - "code": "32513", - "data": { - "gtfs": { - "stop_id": "2513", - "stop_code": "32513", - "stop_name": "Nobel et ch. Du Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et ch. Du Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4160339390231, - 45.5678805913916 - ] - } - }, - { - "id": "2567", - "code": "32567", - "data": { - "gtfs": { - "stop_id": "2567", - "stop_code": "32567", - "stop_name": "Nobel et ch. Du Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et ch. Du Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4158180640992, - 45.5675409066991 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2913374931998 - }, - "name": "Nobel et ch. Du Tremblay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.415926002, - 45.567710749 - ] - }, - "is_frozen": false, - "integer_id": 804, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454205, - 45.567454 - ] - }, - "id": 805, - "properties": { - "id": "aff34f6b-5801-4e1a-bc66-3990844e0b4e", - "code": "32516", - "data": { - "stops": [ - { - "id": "2516", - "code": "32516", - "data": { - "gtfs": { - "stop_id": "2516", - "stop_code": "32516", - "stop_name": "ch. du Lac et civique 2604", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et civique 2604", - "geography": { - "type": "Point", - "coordinates": [ - -73.4543557641853, - 45.5674203390714 - ] - } - }, - { - "id": "4025", - "code": "34025", - "data": { - "gtfs": { - "stop_id": "4025", - "stop_code": "34025", - "stop_name": "ch. du Lac et civique 2604", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et civique 2604", - "geography": { - "type": "Point", - "coordinates": [ - -73.4540534087095, - 45.5674869350687 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2869786272419 - }, - "name": "ch. du Lac et civique 2604", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454204586, - 45.567453637 - ] - }, - "is_frozen": false, - "integer_id": 805, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456837, - 45.56517 - ] - }, - "id": 806, - "properties": { - "id": "bd467e22-a975-40b8-9a7a-9801529c3237", - "code": "32517", - "data": { - "stops": [ - { - "id": "2517", - "code": "32517", - "data": { - "gtfs": { - "stop_id": "2517", - "stop_code": "32517", - "stop_name": "ch. du Lac et Labadie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et Labadie", - "geography": { - "type": "Point", - "coordinates": [ - -73.45667515809, - 45.5654079999878 - ] - } - }, - { - "id": "2712", - "code": "32712", - "data": { - "gtfs": { - "stop_id": "2712", - "stop_code": "32712", - "stop_name": "ch. du Lac et Labadie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et Labadie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4569982572321, - 45.564932395552 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2482696675125 - }, - "name": "ch. du Lac et Labadie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456836708, - 45.565170198 - ] - }, - "is_frozen": false, - "integer_id": 806, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458986, - 45.563469 - ] - }, - "id": 807, - "properties": { - "id": "adc9bcc9-8f6d-49e9-b7de-68b4f56033f4", - "code": "32518", - "data": { - "stops": [ - { - "id": "2518", - "code": "32518", - "data": { - "gtfs": { - "stop_id": "2518", - "stop_code": "32518", - "stop_name": "ch. du Lac et civique 2350", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et civique 2350", - "geography": { - "type": "Point", - "coordinates": [ - -73.4590172396236, - 45.5635756194319 - ] - } - }, - { - "id": "2563", - "code": "32563", - "data": { - "gtfs": { - "stop_id": "2563", - "stop_code": "32563", - "stop_name": "ch. du Lac et civique 2350", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et civique 2350", - "geography": { - "type": "Point", - "coordinates": [ - -73.4589551868926, - 45.5633623294224 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2194334711048 - }, - "name": "ch. du Lac et civique 2350", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.458986213, - 45.563468974 - ] - }, - "is_frozen": false, - "integer_id": 807, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47277, - 45.564071 - ] - }, - "id": 808, - "properties": { - "id": "e01682ec-7470-4db5-8b9e-ac8823b81e39", - "code": "32520", - "data": { - "stops": [ - { - "id": "2520", - "code": "32520", - "data": { - "gtfs": { - "stop_id": "2520", - "stop_code": "32520", - "stop_name": "de la Province et Bériault", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et Bériault", - "geography": { - "type": "Point", - "coordinates": [ - -73.4729027965642, - 45.5639010758481 - ] - } - }, - { - "id": "2559", - "code": "32559", - "data": { - "gtfs": { - "stop_id": "2559", - "stop_code": "32559", - "stop_name": "de la Province et Bériault", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et Bériault", - "geography": { - "type": "Point", - "coordinates": [ - -73.4726374930419, - 45.5642406853098 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2296356582181 - }, - "name": "de la Province et Bériault", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472770145, - 45.564070881 - ] - }, - "is_frozen": false, - "integer_id": 808, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.470156, - 45.565741 - ] - }, - "id": 809, - "properties": { - "id": "5f1f8694-7622-42a2-a482-eb0612df0756", - "code": "32521", - "data": { - "stops": [ - { - "id": "2521", - "code": "32521", - "data": { - "gtfs": { - "stop_id": "2521", - "stop_code": "32521", - "stop_name": "de la Province et Le Breton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et Le Breton", - "geography": { - "type": "Point", - "coordinates": [ - -73.4702879840117, - 45.5655624789152 - ] - } - }, - { - "id": "2558", - "code": "32558", - "data": { - "gtfs": { - "stop_id": "2558", - "stop_code": "32558", - "stop_name": "de la Province et Le Breton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et Le Breton", - "geography": { - "type": "Point", - "coordinates": [ - -73.4700241479711, - 45.5659191677211 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2579424912524 - }, - "name": "de la Province et Le Breton", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.470156066, - 45.565740823 - ] - }, - "is_frozen": false, - "integer_id": 809, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468152, - 45.567015 - ] - }, - "id": 810, - "properties": { - "id": "7330c47a-92ea-4650-a95f-c6010983e0e2", - "code": "32522", - "data": { - "stops": [ - { - "id": "2522", - "code": "32522", - "data": { - "gtfs": { - "stop_id": "2522", - "stop_code": "32522", - "stop_name": "de la Province et boul. Guimond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et boul. Guimond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4682994851473, - 45.5668270052845 - ] - } - }, - { - "id": "2557", - "code": "32557", - "data": { - "gtfs": { - "stop_id": "2557", - "stop_code": "32557", - "stop_name": "de la Province et boul. Guimond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et boul. Guimond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4680223932078, - 45.5672034334412 - ] - } - }, - { - "id": "5237", - "code": "35237", - "data": { - "gtfs": { - "stop_id": "5237", - "stop_code": "35237", - "stop_name": "boul. Guimond et de la Province", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Guimond et de la Province", - "geography": { - "type": "Point", - "coordinates": [ - -73.4683357935038, - 45.5670493622689 - ] - } - }, - { - "id": "5255", - "code": "35255", - "data": { - "gtfs": { - "stop_id": "5255", - "stop_code": "35255", - "stop_name": "boul. Guimond et de la Province", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Guimond et de la Province", - "geography": { - "type": "Point", - "coordinates": [ - -73.4679678417512, - 45.5670081283251 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2795461843303 - }, - "name": "de la Province et boul. Guimond", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468151818, - 45.567015219 - ] - }, - "is_frozen": false, - "integer_id": 810, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46395, - 45.570404 - ] - }, - "id": 811, - "properties": { - "id": "ddf509a6-0c36-4863-8c49-8e568d69fa14", - "code": "32523", - "data": { - "stops": [ - { - "id": "2523", - "code": "32523", - "data": { - "gtfs": { - "stop_id": "2523", - "stop_code": "32523", - "stop_name": "de la Province et Giffard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et Giffard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4638580710992, - 45.5703221797271 - ] - } - }, - { - "id": "2555", - "code": "32555", - "data": { - "gtfs": { - "stop_id": "2555", - "stop_code": "32555", - "stop_name": "de la Province et Giffard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et Giffard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4640415111643, - 45.5704862212677 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3370036036492 - }, - "name": "de la Province et Giffard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463949791, - 45.5704042 - ] - }, - "is_frozen": false, - "integer_id": 811, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463389, - 45.571677 - ] - }, - "id": 812, - "properties": { - "id": "b00ce62b-a3af-454b-8eb4-951ab271a0e2", - "code": "32524", - "data": { - "stops": [ - { - "id": "2524", - "code": "32524", - "data": { - "gtfs": { - "stop_id": "2524", - "stop_code": "32524", - "stop_name": "de la Province et civique 2370", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et civique 2370", - "geography": { - "type": "Point", - "coordinates": [ - -73.4633007348799, - 45.5716089538677 - ] - } - }, - { - "id": "2554", - "code": "32554", - "data": { - "gtfs": { - "stop_id": "2554", - "stop_code": "32554", - "stop_name": "de la Province et civique 2375", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et civique 2375", - "geography": { - "type": "Point", - "coordinates": [ - -73.4634777736796, - 45.5717458075908 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.358592005826 - }, - "name": "de la Province et civique 2370", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463389254, - 45.571677381 - ] - }, - "is_frozen": false, - "integer_id": 812, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462349, - 45.574075 - ] - }, - "id": 813, - "properties": { - "id": "b5bdde0b-f4ea-4dda-8556-5a9c093cee1e", - "code": "32526", - "data": { - "stops": [ - { - "id": "2526", - "code": "32526", - "data": { - "gtfs": { - "stop_id": "2526", - "stop_code": "32526", - "stop_name": "de la Province et Talon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et Talon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4622805543407, - 45.5739752903973 - ] - } - }, - { - "id": "3934", - "code": "33934", - "data": { - "gtfs": { - "stop_id": "3934", - "stop_code": "33934", - "stop_name": "de la Province et Jean-Neveu", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et Jean-Neveu", - "geography": { - "type": "Point", - "coordinates": [ - -73.4624167490405, - 45.5741750097596 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3992531613627 - }, - "name": "de la Province et Talon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462348652, - 45.57407515 - ] - }, - "is_frozen": false, - "integer_id": 813, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464263, - 45.57508 - ] - }, - "id": 814, - "properties": { - "id": "1532a7e6-19bb-482a-881b-1cf8dd8416ed", - "code": "32527", - "data": { - "stops": [ - { - "id": "2527", - "code": "32527", - "data": { - "gtfs": { - "stop_id": "2527", - "stop_code": "32527", - "stop_name": "Jean-Neveu et civique 450", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jean-Neveu et civique 450", - "geography": { - "type": "Point", - "coordinates": [ - -73.4643132134085, - 45.5751474361745 - ] - } - }, - { - "id": "2551", - "code": "32551", - "data": { - "gtfs": { - "stop_id": "2551", - "stop_code": "32551", - "stop_name": "Jean-Neveu et civique 450", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jean-Neveu et civique 450", - "geography": { - "type": "Point", - "coordinates": [ - -73.4642127984574, - 45.5750124300169 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4162937112955 - }, - "name": "Jean-Neveu et civique 450", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464263006, - 45.575079933 - ] - }, - "is_frozen": false, - "integer_id": 814, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468728, - 45.575808 - ] - }, - "id": 815, - "properties": { - "id": "3be8bc80-2551-4dbe-a3e5-58d302899fd6", - "code": "32528", - "data": { - "stops": [ - { - "id": "2528", - "code": "32528", - "data": { - "gtfs": { - "stop_id": "2528", - "stop_code": "32528", - "stop_name": "de la Métropole et Jean-Neveu", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Métropole et Jean-Neveu", - "geography": { - "type": "Point", - "coordinates": [ - -73.4689207166583, - 45.5757696663861 - ] - } - }, - { - "id": "2550", - "code": "32550", - "data": { - "gtfs": { - "stop_id": "2550", - "stop_code": "32550", - "stop_name": "de la Métropole et Jean-Neveu", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Métropole et Jean-Neveu", - "geography": { - "type": "Point", - "coordinates": [ - -73.4685358823798, - 45.5758460467193 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4286394534531 - }, - "name": "de la Métropole et Jean-Neveu", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.4687283, - 45.575807857 - ] - }, - "is_frozen": false, - "integer_id": 815, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.471746, - 45.572423 - ] - }, - "id": 816, - "properties": { - "id": "ffb5020e-4dcf-4cee-9d46-621fd641098b", - "code": "32529", - "data": { - "stops": [ - { - "id": "2529", - "code": "32529", - "data": { - "gtfs": { - "stop_id": "2529", - "stop_code": "32529", - "stop_name": "de la Métropole et civique 2320", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Métropole et civique 2320", - "geography": { - "type": "Point", - "coordinates": [ - -73.4718025125951, - 45.5725003551802 - ] - } - }, - { - "id": "2549", - "code": "32549", - "data": { - "gtfs": { - "stop_id": "2549", - "stop_code": "32549", - "stop_name": "de la Métropole et civique 2320", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Métropole et civique 2320", - "geography": { - "type": "Point", - "coordinates": [ - -73.4716891754347, - 45.5723461409268 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3712398019757 - }, - "name": "de la Métropole et civique 2320", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.471745844, - 45.572423248 - ] - }, - "is_frozen": false, - "integer_id": 816, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.473073, - 45.570871 - ] - }, - "id": 817, - "properties": { - "id": "a0c45e7b-af06-4ea8-a82a-a658b829e198", - "code": "32530", - "data": { - "stops": [ - { - "id": "2530", - "code": "32530", - "data": { - "gtfs": { - "stop_id": "2530", - "stop_code": "32530", - "stop_name": "de la Métropole et boul. Guimond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Métropole et boul. Guimond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4730925996142, - 45.5710556240782 - ] - } - }, - { - "id": "2548", - "code": "32548", - "data": { - "gtfs": { - "stop_id": "2548", - "stop_code": "32548", - "stop_name": "de la Métropole et boul. Guimond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Métropole et boul. Guimond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4731618767937, - 45.5706866911367 - ] - } - }, - { - "id": "5257", - "code": "35257", - "data": { - "gtfs": { - "stop_id": "5257", - "stop_code": "35257", - "stop_name": "boul. Guimond et de la Métropole", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Guimond et de la Métropole", - "geography": { - "type": "Point", - "coordinates": [ - -73.4729834517432, - 45.5708578043837 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3449213018181 - }, - "name": "de la Métropole et boul. Guimond", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.473072664, - 45.570871158 - ] - }, - "is_frozen": false, - "integer_id": 817, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474496, - 45.569322 - ] - }, - "id": 818, - "properties": { - "id": "3fa535d7-2c06-4fc3-ac22-347da96e9a38", - "code": "32531", - "data": { - "stops": [ - { - "id": "2531", - "code": "32531", - "data": { - "gtfs": { - "stop_id": "2531", - "stop_code": "32531", - "stop_name": "de la Métropole et Le Breton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Métropole et Le Breton", - "geography": { - "type": "Point", - "coordinates": [ - -73.4743969304767, - 45.5695671286783 - ] - } - }, - { - "id": "2547", - "code": "32547", - "data": { - "gtfs": { - "stop_id": "2547", - "stop_code": "32547", - "stop_name": "de la Métropole et Le Breton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Métropole et Le Breton", - "geography": { - "type": "Point", - "coordinates": [ - -73.4745955170988, - 45.5690763188615 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3186499868095 - }, - "name": "de la Métropole et Le Breton", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474496224, - 45.569321724 - ] - }, - "is_frozen": false, - "integer_id": 818, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.476553, - 45.567075 - ] - }, - "id": 819, - "properties": { - "id": "cbdc89b0-549e-41a3-becc-56a1e8c831ce", - "code": "32532", - "data": { - "stops": [ - { - "id": "2532", - "code": "32532", - "data": { - "gtfs": { - "stop_id": "2532", - "stop_code": "32532", - "stop_name": "de la Métropole et Bériault", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Métropole et Bériault", - "geography": { - "type": "Point", - "coordinates": [ - -73.4765508375489, - 45.5672500765304 - ] - } - }, - { - "id": "2546", - "code": "32546", - "data": { - "gtfs": { - "stop_id": "2546", - "stop_code": "32546", - "stop_name": "de la Métropole et Bériault", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Métropole et Bériault", - "geography": { - "type": "Point", - "coordinates": [ - -73.4765557877045, - 45.5668991427169 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2805530221132 - }, - "name": "de la Métropole et Bériault", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.476553313, - 45.56707461 - ] - }, - "is_frozen": false, - "integer_id": 819, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478664, - 45.564739 - ] - }, - "id": 820, - "properties": { - "id": "3e6f6ee6-af44-48b8-9b96-431c0dfdb40c", - "code": "32533", - "data": { - "stops": [ - { - "id": "2533", - "code": "32533", - "data": { - "gtfs": { - "stop_id": "2533", - "stop_code": "32533", - "stop_name": "de la Métropole et boul. Jean-Paul-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Métropole et boul. Jean-Paul-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4788447404126, - 45.5646582537533 - ] - } - }, - { - "id": "2545", - "code": "32545", - "data": { - "gtfs": { - "stop_id": "2545", - "stop_code": "32545", - "stop_name": "de la Métropole et boul. Jean-Paul-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Métropole et boul. Jean-Paul-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4784834765671, - 45.5648202084583 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.24096441839 - }, - "name": "de la Métropole et boul. Jean-Paul-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.478664108, - 45.564739231 - ] - }, - "is_frozen": false, - "integer_id": 820, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482498, - 45.56733 - ] - }, - "id": 821, - "properties": { - "id": "1bd71f0f-f286-48eb-8b9c-d921b948e5b4", - "code": "32534", - "data": { - "stops": [ - { - "id": "2534", - "code": "32534", - "data": { - "gtfs": { - "stop_id": "2534", - "stop_code": "32534", - "stop_name": "boul. Jean-Paul-Vincent et Kirouac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jean-Paul-Vincent et Kirouac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4824414991898, - 45.5672249297859 - ] - } - }, - { - "id": "2544", - "code": "32544", - "data": { - "gtfs": { - "stop_id": "2544", - "stop_code": "32544", - "stop_name": "Kirouac et boul. Jean-Paul-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Kirouac et boul. Jean-Paul-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4825535073807, - 45.5674341238921 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2848745892423 - }, - "name": "boul. Jean-Paul-Vincent et Kirouac", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482497503, - 45.567329527 - ] - }, - "is_frozen": false, - "integer_id": 821, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483781, - 45.568252 - ] - }, - "id": 822, - "properties": { - "id": "0e909db9-b45c-44fa-bfff-a89f751e1acf", - "code": "32535", - "data": { - "stops": [ - { - "id": "2535", - "code": "32535", - "data": { - "gtfs": { - "stop_id": "2535", - "stop_code": "32535", - "stop_name": "boul. Jean-Paul-Vincent et Coulonge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jean-Paul-Vincent et Coulonge", - "geography": { - "type": "Point", - "coordinates": [ - -73.4837813528615, - 45.5682524831615 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3005218004741 - }, - "name": "boul. Jean-Paul-Vincent et Coulonge", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483781353, - 45.568252483 - ] - }, - "is_frozen": false, - "integer_id": 822, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.48549, - 45.56956 - ] - }, - "id": 823, - "properties": { - "id": "1c1d06bf-7e76-429d-9eb4-4a4d4d2842d4", - "code": "32536", - "data": { - "stops": [ - { - "id": "2536", - "code": "32536", - "data": { - "gtfs": { - "stop_id": "2536", - "stop_code": "32536", - "stop_name": "boul. Marie-Victorin et boul. Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et boul. Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4854896048996, - 45.5695596324924 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3226836790767 - }, - "name": "boul. Marie-Victorin et boul. Marie-Victorin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.485489605, - 45.569559632 - ] - }, - "is_frozen": false, - "integer_id": 823, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481646, - 45.569927 - ] - }, - "id": 824, - "properties": { - "id": "ef393841-8a29-4383-a7b9-545addf087f6", - "code": "32538", - "data": { - "stops": [ - { - "id": "2538", - "code": "32538", - "data": { - "gtfs": { - "stop_id": "2538", - "stop_code": "32538", - "stop_name": "de l'Église et de l'Église", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de l'Église et de l'Église", - "geography": { - "type": "Point", - "coordinates": [ - -73.4819018644521, - 45.5701320680594 - ] - } - }, - { - "id": "2539", - "code": "32539", - "data": { - "gtfs": { - "stop_id": "2539", - "stop_code": "32539", - "stop_name": "de l'Église et Limoges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de l'Église et Limoges", - "geography": { - "type": "Point", - "coordinates": [ - -73.4813895327167, - 45.5697214173946 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3289080869035 - }, - "name": "de l'Église et de l'Église", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481645699, - 45.569926743 - ] - }, - "is_frozen": false, - "integer_id": 824, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479931, - 45.568601 - ] - }, - "id": 825, - "properties": { - "id": "281f350b-faae-4302-bcde-cc7831951682", - "code": "32540", - "data": { - "stops": [ - { - "id": "2540", - "code": "32540", - "data": { - "gtfs": { - "stop_id": "2540", - "stop_code": "32540", - "stop_name": "de l'Église et civique 166", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de l'Église et civique 166", - "geography": { - "type": "Point", - "coordinates": [ - -73.4799309918048, - 45.5686014116275 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.306437519974 - }, - "name": "de l'Église et civique 166", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479930992, - 45.568601412 - ] - }, - "is_frozen": false, - "integer_id": 825, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479053, - 45.567955 - ] - }, - "id": 826, - "properties": { - "id": "59b13438-eb20-4204-b1fd-fe2ed2a80258", - "code": "32541", - "data": { - "stops": [ - { - "id": "2541", - "code": "32541", - "data": { - "gtfs": { - "stop_id": "2541", - "stop_code": "32541", - "stop_name": "de l'Église et Claude", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de l'Église et Claude", - "geography": { - "type": "Point", - "coordinates": [ - -73.4790528137801, - 45.5679547322742 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2954738354921 - }, - "name": "de l'Église et Claude", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479052814, - 45.567954732 - ] - }, - "is_frozen": false, - "integer_id": 826, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479172, - 45.567264 - ] - }, - "id": 827, - "properties": { - "id": "bc413ffa-dc65-4fc7-93f0-58dddebb3024", - "code": "32542", - "data": { - "stops": [ - { - "id": "2542", - "code": "32542", - "data": { - "gtfs": { - "stop_id": "2542", - "stop_code": "32542", - "stop_name": "Claude et CENTRE D'HEBERGEMENT RENE-LEVESQUE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Claude et CENTRE D'HEBERGEMENT RENE-LEVESQUE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4791719704858, - 45.5672642880498 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2837685973803 - }, - "name": "Claude et CENTRE D'HEBERGEMENT RENE-LEVESQUE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47917197, - 45.567264288 - ] - }, - "is_frozen": false, - "integer_id": 827, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481648, - 45.567777 - ] - }, - "id": 828, - "properties": { - "id": "ce65fcd5-5449-4ede-b81b-9d2cd21731a7", - "code": "32543", - "data": { - "stops": [ - { - "id": "2543", - "code": "32543", - "data": { - "gtfs": { - "stop_id": "2543", - "stop_code": "32543", - "stop_name": "Coulonge et Kirouac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Coulonge et Kirouac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4816482918009, - 45.5677774113501 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2924676357145 - }, - "name": "Coulonge et Kirouac", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481648292, - 45.567777411 - ] - }, - "is_frozen": false, - "integer_id": 828, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466411, - 45.568158 - ] - }, - "id": 829, - "properties": { - "id": "e72de034-4bad-4c42-9f05-b66c808b840c", - "code": "32556", - "data": { - "stops": [ - { - "id": "2556", - "code": "32556", - "data": { - "gtfs": { - "stop_id": "2556", - "stop_code": "32556", - "stop_name": "de la Province et civique 2315", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et civique 2315", - "geography": { - "type": "Point", - "coordinates": [ - -73.4663185001744, - 45.5683408147268 - ] - } - }, - { - "id": "2597", - "code": "32597", - "data": { - "gtfs": { - "stop_id": "2597", - "stop_code": "32597", - "stop_name": "de la Province et civique 2270", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et civique 2270", - "geography": { - "type": "Point", - "coordinates": [ - -73.4665028962788, - 45.5679753145997 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2989210625688 - }, - "name": "de la Province et civique 2315", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466410698, - 45.568158065 - ] - }, - "is_frozen": false, - "integer_id": 829, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475673, - 45.5624 - ] - }, - "id": 830, - "properties": { - "id": "31d31773-be59-456e-bce3-a8671d3f0ded", - "code": "32560", - "data": { - "stops": [ - { - "id": "2560", - "code": "32560", - "data": { - "gtfs": { - "stop_id": "2560", - "stop_code": "32560", - "stop_name": "de la Province et boul. Jean-Paul-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et boul. Jean-Paul-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4756729669674, - 45.5623997917287 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2013118769063 - }, - "name": "de la Province et boul. Jean-Paul-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475672967, - 45.562399792 - ] - }, - "is_frozen": false, - "integer_id": 830, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459736, - 45.56267 - ] - }, - "id": 831, - "properties": { - "id": "bd99fd0e-cbdd-4d16-af5c-609bbef87ee4", - "code": "32562", - "data": { - "stops": [ - { - "id": "2562", - "code": "32562", - "data": { - "gtfs": { - "stop_id": "2562", - "stop_code": "32562", - "stop_name": "ch. du Lac et COLLEGE CHARLES LEMOYNE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et COLLEGE CHARLES LEMOYNE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4597363057002, - 45.5626697355793 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2058870685743 - }, - "name": "ch. du Lac et COLLEGE CHARLES LEMOYNE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459736306, - 45.562669736 - ] - }, - "is_frozen": false, - "integer_id": 831, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450301, - 45.567373 - ] - }, - "id": 832, - "properties": { - "id": "05e5d0a5-05a1-4d79-bb02-411b633ccf77", - "code": "32565", - "data": { - "stops": [ - { - "id": "2565", - "code": "32565", - "data": { - "gtfs": { - "stop_id": "2565", - "stop_code": "32565", - "stop_name": "ch. du Lac et boul. Jacques-Cartier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et boul. Jacques-Cartier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.450582396472, - 45.5674769063711 - ] - } - }, - { - "id": "4130", - "code": "34130", - "data": { - "gtfs": { - "stop_id": "4130", - "stop_code": "34130", - "stop_name": "boul. Jacques-Cartier est et ch. du Lac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et ch. du Lac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4504929561457, - 45.5676990129727 - ] - } - }, - { - "id": "5247", - "code": "35247", - "data": { - "gtfs": { - "stop_id": "5247", - "stop_code": "35247", - "stop_name": "boul. Jacques-Cartier est et ch. du Lac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et ch. du Lac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4500190501511, - 45.5673994205329 - ] - } - }, - { - "id": "5288", - "code": "35288", - "data": { - "gtfs": { - "stop_id": "5288", - "stop_code": "35288", - "stop_name": "boul. Jacques-Cartier est et ch. du Lac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et ch. du Lac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4504653486321, - 45.5670467013713 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2856091615768 - }, - "name": "ch. du Lac et boul. Jacques-Cartier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450300723, - 45.567372857 - ] - }, - "is_frozen": false, - "integer_id": 832, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449528, - 45.569161 - ] - }, - "id": 833, - "properties": { - "id": "cbb3b9f7-78fe-4c17-8439-d6c02bcd9a89", - "code": "32566", - "data": { - "stops": [ - { - "id": "2566", - "code": "32566", - "data": { - "gtfs": { - "stop_id": "2566", - "stop_code": "32566", - "stop_name": "boul. de Mortagne et Jean-Neveu", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Jean-Neveu", - "geography": { - "type": "Point", - "coordinates": [ - -73.4495276451023, - 45.5691614827475 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3159331546761 - }, - "name": "boul. de Mortagne et Jean-Neveu", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449527645, - 45.569161483 - ] - }, - "is_frozen": false, - "integer_id": 833, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.425376, - 45.561862 - ] - }, - "id": 834, - "properties": { - "id": "b734f683-dc9f-47d6-a659-53e6bf9d2915", - "code": "32569", - "data": { - "stops": [ - { - "id": "2569", - "code": "32569", - "data": { - "gtfs": { - "stop_id": "2569", - "stop_code": "32569", - "stop_name": "ch. Du Tremblay et Graham-Bell", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Graham-Bell", - "geography": { - "type": "Point", - "coordinates": [ - -73.4249966861825, - 45.5619414700197 - ] - } - }, - { - "id": "3241", - "code": "33241", - "data": { - "gtfs": { - "stop_id": "3241", - "stop_code": "33241", - "stop_name": "Graham-Bell et civique 1468", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Graham-Bell et civique 1468", - "geography": { - "type": "Point", - "coordinates": [ - -73.4257543868024, - 45.5621045892322 - ] - } - }, - { - "id": "3893", - "code": "33893", - "data": { - "gtfs": { - "stop_id": "3893", - "stop_code": "33893", - "stop_name": "ch. Du Tremblay et Graham-Bell", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Graham-Bell", - "geography": { - "type": "Point", - "coordinates": [ - -73.4250976223237, - 45.5616191933024 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1921953646851 - }, - "name": "ch. Du Tremblay et Graham-Bell", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.425375536, - 45.561861891 - ] - }, - "is_frozen": false, - "integer_id": 834, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.430886, - 45.556489 - ] - }, - "id": 835, - "properties": { - "id": "52b4b9f4-5da9-4e8b-83a9-0be3d15c1d16", - "code": "32571", - "data": { - "stops": [ - { - "id": "2571", - "code": "32571", - "data": { - "gtfs": { - "stop_id": "2571", - "stop_code": "32571", - "stop_name": "ch. Du Tremblay et civique 40", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 40", - "geography": { - "type": "Point", - "coordinates": [ - -73.4309273437572, - 45.5565263610041 - ] - } - }, - { - "id": "2714", - "code": "32714", - "data": { - "gtfs": { - "stop_id": "2714", - "stop_code": "32714", - "stop_name": "ch. Du Tremblay et civique 40", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 40", - "geography": { - "type": "Point", - "coordinates": [ - -73.4308455854508, - 45.5564515433844 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1011473202786 - }, - "name": "ch. Du Tremblay et civique 40", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.430886465, - 45.556488952 - ] - }, - "is_frozen": false, - "integer_id": 835, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.431778, - 45.555659 - ] - }, - "id": 836, - "properties": { - "id": "c6e39e27-f6a2-4102-b237-b49f8c28ddda", - "code": "32572", - "data": { - "stops": [ - { - "id": "2572", - "code": "32572", - "data": { - "gtfs": { - "stop_id": "2572", - "stop_code": "32572", - "stop_name": "ch. Du Tremblay et civique 15", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 15", - "geography": { - "type": "Point", - "coordinates": [ - -73.4317738353711, - 45.5557727263907 - ] - } - }, - { - "id": "2713", - "code": "32713", - "data": { - "gtfs": { - "stop_id": "2713", - "stop_code": "32713", - "stop_name": "ch. Du Tremblay et civique 40", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 40", - "geography": { - "type": "Point", - "coordinates": [ - -73.4317826537318, - 45.5555453767191 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0870864086432 - }, - "name": "ch. Du Tremblay et civique 15", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431778245, - 45.555659052 - ] - }, - "is_frozen": false, - "integer_id": 836, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.39804, - 45.497226 - ] - }, - "id": 837, - "properties": { - "id": "2e7cf58e-8d32-4b71-acee-694db180235f", - "code": "32577", - "data": { - "stops": [ - { - "id": "2577", - "code": "32577", - "data": { - "gtfs": { - "stop_id": "2577", - "stop_code": "32577", - "stop_name": "boul. Jacques-Marcil et Talbot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Marcil et Talbot", - "geography": { - "type": "Point", - "coordinates": [ - -73.3980685753153, - 45.4973210559708 - ] - } - }, - { - "id": "5363", - "code": "30103", - "data": { - "gtfs": { - "stop_id": "5363", - "stop_code": "30103", - "stop_name": "boul. Jacques-Marcil et Talbot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Marcil et Talbot", - "geography": { - "type": "Point", - "coordinates": [ - -73.3980119788985, - 45.497131338142 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0986087415255 - }, - "name": "boul. Jacques-Marcil et Talbot", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.398040277, - 45.497226197 - ] - }, - "is_frozen": false, - "integer_id": 837, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.404955, - 45.500595 - ] - }, - "id": 838, - "properties": { - "id": "7414010b-fe1f-4d77-8cdd-701cc437e73a", - "code": "32578", - "data": { - "stops": [ - { - "id": "2578", - "code": "32578", - "data": { - "gtfs": { - "stop_id": "2578", - "stop_code": "32578", - "stop_name": "boul. Gaétan-Boucher et civique 1755", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et civique 1755", - "geography": { - "type": "Point", - "coordinates": [ - -73.4049545116081, - 45.5005949246998 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1555131073334 - }, - "name": "boul. Gaétan-Boucher et civique 1755", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.404954512, - 45.500594925 - ] - }, - "is_frozen": false, - "integer_id": 838, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465402, - 45.468251 - ] - }, - "id": 839, - "properties": { - "id": "cbfe7779-9081-4538-b1fe-f238be6c7969", - "code": "32579", - "data": { - "stops": [ - { - "id": "2579", - "code": "32579", - "data": { - "gtfs": { - "stop_id": "2579", - "stop_code": "32579", - "stop_name": "av. Auteuil et TOYS R US", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et TOYS R US", - "geography": { - "type": "Point", - "coordinates": [ - -73.4652155364931, - 45.46834306462 - ] - } - }, - { - "id": "3299", - "code": "33299", - "data": { - "gtfs": { - "stop_id": "3299", - "stop_code": "33299", - "stop_name": "av. Auteuil et TOYS R US", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auteuil et TOYS R US", - "geography": { - "type": "Point", - "coordinates": [ - -73.465588840542, - 45.4681591982559 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6095801747401 - }, - "name": "av. Auteuil et TOYS R US", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465402189, - 45.468251131 - ] - }, - "is_frozen": false, - "integer_id": 839, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.470482, - 45.473539 - ] - }, - "id": 840, - "properties": { - "id": "85f19be2-1f67-4673-b3b3-52d06ed31ae3", - "code": "32580", - "data": { - "stops": [ - { - "id": "2580", - "code": "32580", - "data": { - "gtfs": { - "stop_id": "2580", - "stop_code": "32580", - "stop_name": "boul. Lapinière et Alcide", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et Alcide", - "geography": { - "type": "Point", - "coordinates": [ - -73.4704819799363, - 45.4735387248673 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6987662377185 - }, - "name": "boul. Lapinière et Alcide", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47048198, - 45.473538725 - ] - }, - "is_frozen": false, - "integer_id": 840, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.429676, - 45.504125 - ] - }, - "id": 841, - "properties": { - "id": "74cb2351-ff1a-4938-8179-802bb3572f42", - "code": "32583", - "data": { - "stops": [ - { - "id": "2583", - "code": "32583", - "data": { - "gtfs": { - "stop_id": "2583", - "stop_code": "32583", - "stop_name": "boul. Cousineau et boul. Gareau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et boul. Gareau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4296759663019, - 45.5041252074039 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2151572704129 - }, - "name": "boul. Cousineau et boul. Gareau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.429675966, - 45.504125207 - ] - }, - "is_frozen": false, - "integer_id": 841, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.405284, - 45.500678 - ] - }, - "id": 842, - "properties": { - "id": "d2cca46c-df28-490b-b5de-9bc99956bc15", - "code": "32585", - "data": { - "stops": [ - { - "id": "2585", - "code": "32585", - "data": { - "gtfs": { - "stop_id": "2585", - "stop_code": "32585", - "stop_name": "boul. Gaétan-Boucher et civique 1760", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et civique 1760", - "geography": { - "type": "Point", - "coordinates": [ - -73.4052843459919, - 45.5006776000238 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1569097757748 - }, - "name": "boul. Gaétan-Boucher et civique 1760", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.405284346, - 45.5006776 - ] - }, - "is_frozen": false, - "integer_id": 842, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.422174, - 45.504246 - ] - }, - "id": 843, - "properties": { - "id": "1dee950f-860c-49ec-9656-8fcdc6bfa744", - "code": "32586", - "data": { - "stops": [ - { - "id": "2586", - "code": "32586", - "data": { - "gtfs": { - "stop_id": "2586", - "stop_code": "32586", - "stop_name": "ch. de Chambly et montée Saint-Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et montée Saint-Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4221736988065, - 45.5042463204259 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2172036730034 - }, - "name": "ch. de Chambly et montée Saint-Hubert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.422173699, - 45.50424632 - ] - }, - "is_frozen": false, - "integer_id": 843, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.48919, - 45.560781 - ] - }, - "id": 844, - "properties": { - "id": "eace6dbd-217a-421f-9a0e-ee6e7890671f", - "code": "32587", - "data": { - "stops": [ - { - "id": "2587", - "code": "32587", - "data": { - "gtfs": { - "stop_id": "2587", - "stop_code": "32587", - "stop_name": "Lapointe et Lalande", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lapointe et Lalande", - "geography": { - "type": "Point", - "coordinates": [ - -73.4891895752107, - 45.5607810242265 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1738772786035 - }, - "name": "Lapointe et Lalande", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.489189575, - 45.560781024 - ] - }, - "is_frozen": false, - "integer_id": 844, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.393695, - 45.521916 - ] - }, - "id": 845, - "properties": { - "id": "7b3cddda-c6ba-4d35-a936-01ff21d1501b", - "code": "32590", - "data": { - "stops": [ - { - "id": "2590", - "code": "32590", - "data": { - "gtfs": { - "stop_id": "2590", - "stop_code": "32590", - "stop_name": "AGENCE SPATIALE CANADIENNE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "AGENCE SPATIALE CANADIENNE", - "geography": { - "type": "Point", - "coordinates": [ - -73.3936950904874, - 45.5219159337163 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5159007019491 - }, - "name": "AGENCE SPATIALE CANADIENNE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.39369509, - 45.521915934 - ] - }, - "is_frozen": false, - "integer_id": 845, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.402752, - 45.517163 - ] - }, - "id": 846, - "properties": { - "id": "4012bfc4-334d-4b7d-9898-4cfd802d0479", - "code": "32591", - "data": { - "stops": [ - { - "id": "2591", - "code": "32591", - "data": { - "gtfs": { - "stop_id": "2591", - "stop_code": "32591", - "stop_name": "rte de l'Aéroport et civique 6200", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et civique 6200", - "geography": { - "type": "Point", - "coordinates": [ - -73.4027515011906, - 45.5171627174142 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4355223259153 - }, - "name": "rte de l'Aéroport et civique 6200", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.402751501, - 45.517162717 - ] - }, - "is_frozen": false, - "integer_id": 846, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.405225, - 45.515638 - ] - }, - "id": 847, - "properties": { - "id": "784dd9cc-281a-47d9-8014-a2e6add384f6", - "code": "32592", - "data": { - "stops": [ - { - "id": "2592", - "code": "32592", - "data": { - "gtfs": { - "stop_id": "2592", - "stop_code": "32592", - "stop_name": "rte de l'Aéroport et civique 6100", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et civique 6100", - "geography": { - "type": "Point", - "coordinates": [ - -73.4052250625876, - 45.5156378041652 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4097398376779 - }, - "name": "rte de l'Aéroport et civique 6100", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.405225063, - 45.515637804 - ] - }, - "is_frozen": false, - "integer_id": 847, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.406775, - 45.514611 - ] - }, - "id": 848, - "properties": { - "id": "3ce1139e-888c-4783-a57f-da50952eee26", - "code": "32593", - "data": { - "stops": [ - { - "id": "2593", - "code": "32593", - "data": { - "gtfs": { - "stop_id": "2593", - "stop_code": "32593", - "stop_name": "rte de l'Aéroport et civique 6000", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et civique 6000", - "geography": { - "type": "Point", - "coordinates": [ - -73.4067747571646, - 45.514610830926 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3923774442155 - }, - "name": "rte de l'Aéroport et civique 6000", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.406774757, - 45.514610831 - ] - }, - "is_frozen": false, - "integer_id": 848, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450852, - 45.457926 - ] - }, - "id": 849, - "properties": { - "id": "5781af67-07a2-4732-99f5-af7b2835e18a", - "code": "32595", - "data": { - "stops": [ - { - "id": "2595", - "code": "32595", - "data": { - "gtfs": { - "stop_id": "2595", - "stop_code": "32595", - "stop_name": "av. Malo et av. Maupassant", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et av. Maupassant", - "geography": { - "type": "Point", - "coordinates": [ - -73.4508518813947, - 45.457926123002 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4354994071335 - }, - "name": "av. Malo et av. Maupassant", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450851881, - 45.457926123 - ] - }, - "is_frozen": false, - "integer_id": 849, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442818, - 45.472144 - ] - }, - "id": 850, - "properties": { - "id": "8bc1fa43-5a96-4718-96d6-82d3768ab9f4", - "code": "32601", - "data": { - "stops": [ - { - "id": "2601", - "code": "32601", - "data": { - "gtfs": { - "stop_id": "2601", - "stop_code": "32601", - "stop_name": "av. Bienville et boul. Milan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et boul. Milan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4428049809671, - 45.4722510136314 - ] - } - }, - { - "id": "4294", - "code": "34294", - "data": { - "gtfs": { - "stop_id": "4294", - "stop_code": "34294", - "stop_name": "av. Bienville et boul. Milan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et boul. Milan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4428306158887, - 45.4720377418103 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6752453195317 - }, - "name": "av. Bienville et boul. Milan", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442817798, - 45.472144378 - ] - }, - "is_frozen": false, - "integer_id": 850, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443879, - 45.473014 - ] - }, - "id": 851, - "properties": { - "id": "f761f132-09f4-4a01-a76e-f9b0e50d8a9d", - "code": "32602", - "data": { - "stops": [ - { - "id": "2602", - "code": "32602", - "data": { - "gtfs": { - "stop_id": "2602", - "stop_code": "32602", - "stop_name": "av. Bienville et place Bruno", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et place Bruno", - "geography": { - "type": "Point", - "coordinates": [ - -73.4437090607246, - 45.4729248026822 - ] - } - }, - { - "id": "2626", - "code": "32626", - "data": { - "gtfs": { - "stop_id": "2626", - "stop_code": "32626", - "stop_name": "av. Bienville et place Bruno", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et place Bruno", - "geography": { - "type": "Point", - "coordinates": [ - -73.4440480824294, - 45.4731041316395 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.689922447759 - }, - "name": "av. Bienville et place Bruno", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443878572, - 45.473014467 - ] - }, - "is_frozen": false, - "integer_id": 851, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445402, - 45.474927 - ] - }, - "id": 852, - "properties": { - "id": "18d33d13-0d37-41d0-8a27-4c75ae6704a6", - "code": "32603", - "data": { - "stops": [ - { - "id": "2603", - "code": "32603", - "data": { - "gtfs": { - "stop_id": "2603", - "stop_code": "32603", - "stop_name": "av. Bienville et civique 5685", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et civique 5685", - "geography": { - "type": "Point", - "coordinates": [ - -73.4454042711009, - 45.4750151337799 - ] - } - }, - { - "id": "2625", - "code": "32625", - "data": { - "gtfs": { - "stop_id": "2625", - "stop_code": "32625", - "stop_name": "av. Bienville et civique 5685", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et civique 5685", - "geography": { - "type": "Point", - "coordinates": [ - -73.4453987671239, - 45.474839345044 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.722190476523 - }, - "name": "av. Bienville et civique 5685", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445401519, - 45.474927239 - ] - }, - "is_frozen": false, - "integer_id": 852, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448174, - 45.475051 - ] - }, - "id": 853, - "properties": { - "id": "ab44c70e-171d-4dd2-b074-2fbdab29c11d", - "code": "32604", - "data": { - "stops": [ - { - "id": "2604", - "code": "32604", - "data": { - "gtfs": { - "stop_id": "2604", - "stop_code": "32604", - "stop_name": "av. Bienville et place Brabant", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et place Brabant", - "geography": { - "type": "Point", - "coordinates": [ - -73.4483902176745, - 45.4750592907393 - ] - } - }, - { - "id": "2624", - "code": "32624", - "data": { - "gtfs": { - "stop_id": "2624", - "stop_code": "32624", - "stop_name": "av. Bienville et Bordeaux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et Bordeaux", - "geography": { - "type": "Point", - "coordinates": [ - -73.4479578119827, - 45.4750430052828 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7242809052702 - }, - "name": "av. Bienville et place Brabant", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448174015, - 45.475051148 - ] - }, - "is_frozen": false, - "integer_id": 853, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449385, - 45.47426 - ] - }, - "id": 854, - "properties": { - "id": "030a4337-a3e4-4cae-9b3c-548f03210dcf", - "code": "32605", - "data": { - "stops": [ - { - "id": "2605", - "code": "32605", - "data": { - "gtfs": { - "stop_id": "2605", - "stop_code": "32605", - "stop_name": "av. Bienville et civique 5840", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et civique 5840", - "geography": { - "type": "Point", - "coordinates": [ - -73.4494803293946, - 45.4743134310333 - ] - } - }, - { - "id": "2623", - "code": "32623", - "data": { - "gtfs": { - "stop_id": "2623", - "stop_code": "32623", - "stop_name": "av. Bienville et civique 5845", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et civique 5845", - "geography": { - "type": "Point", - "coordinates": [ - -73.4492899441342, - 45.4742067462292 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7109354386071 - }, - "name": "av. Bienville et civique 5840", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449385137, - 45.474260089 - ] - }, - "is_frozen": false, - "integer_id": 854, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45026, - 45.473134 - ] - }, - "id": 855, - "properties": { - "id": "014a3440-ffed-405b-9391-031896ce89b5", - "code": "32606", - "data": { - "stops": [ - { - "id": "2606", - "code": "32606", - "data": { - "gtfs": { - "stop_id": "2606", - "stop_code": "32606", - "stop_name": "av. Bienville et Bordeaux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et Bordeaux", - "geography": { - "type": "Point", - "coordinates": [ - -73.4503907151723, - 45.4731426072107 - ] - } - }, - { - "id": "2622", - "code": "32622", - "data": { - "gtfs": { - "stop_id": "2622", - "stop_code": "32622", - "stop_name": "av. Bienville et Bordeaux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et Bordeaux", - "geography": { - "type": "Point", - "coordinates": [ - -73.4501286792069, - 45.4731253393104 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6919383916276 - }, - "name": "av. Bienville et Bordeaux", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450259697, - 45.473133973 - ] - }, - "is_frozen": false, - "integer_id": 855, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452301, - 45.472305 - ] - }, - "id": 856, - "properties": { - "id": "de0dd837-0f5e-4afa-a1ce-1042af81def1", - "code": "32607", - "data": { - "stops": [ - { - "id": "2607", - "code": "32607", - "data": { - "gtfs": { - "stop_id": "2607", - "stop_code": "32607", - "stop_name": "av. Bienville et Brière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et Brière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4521885265737, - 45.47240767267 - ] - } - }, - { - "id": "2621", - "code": "32621", - "data": { - "gtfs": { - "stop_id": "2621", - "stop_code": "32621", - "stop_name": "av. Bienville et Brière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et Brière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4524127972945, - 45.4722014293988 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6779471531613 - }, - "name": "av. Bienville et Brière", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452300662, - 45.472304551 - ] - }, - "is_frozen": false, - "integer_id": 856, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453926, - 45.471087 - ] - }, - "id": 857, - "properties": { - "id": "4d428a9f-d12a-42d6-ab66-7ad0c7ad2850", - "code": "32608", - "data": { - "stops": [ - { - "id": "2608", - "code": "32608", - "data": { - "gtfs": { - "stop_id": "2608", - "stop_code": "32608", - "stop_name": "av. Bienville et Banff", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et Banff", - "geography": { - "type": "Point", - "coordinates": [ - -73.4540043705761, - 45.4711725238751 - ] - } - }, - { - "id": "2620", - "code": "32620", - "data": { - "gtfs": { - "stop_id": "2620", - "stop_code": "32620", - "stop_name": "av. Bienville et Banff", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et Banff", - "geography": { - "type": "Point", - "coordinates": [ - -73.4538478475778, - 45.4710009622944 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.657405470147 - }, - "name": "av. Bienville et Banff", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453926109, - 45.471086743 - ] - }, - "is_frozen": false, - "integer_id": 857, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453518, - 45.469875 - ] - }, - "id": 858, - "properties": { - "id": "ee666934-d186-4b8b-a152-1fdeb23a5242", - "code": "32609", - "data": { - "stops": [ - { - "id": "2609", - "code": "32609", - "data": { - "gtfs": { - "stop_id": "2609", - "stop_code": "32609", - "stop_name": "av. Bienville et place Byzance", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et place Byzance", - "geography": { - "type": "Point", - "coordinates": [ - -73.4535289983677, - 45.4697797939117 - ] - } - }, - { - "id": "2619", - "code": "32619", - "data": { - "gtfs": { - "stop_id": "2619", - "stop_code": "32619", - "stop_name": "av. Bienville et civique 6195", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et civique 6195", - "geography": { - "type": "Point", - "coordinates": [ - -73.4535070881417, - 45.4699696556822 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6369627591772 - }, - "name": "av. Bienville et place Byzance", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453518043, - 45.469874725 - ] - }, - "is_frozen": false, - "integer_id": 858, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449983, - 45.467998 - ] - }, - "id": 859, - "properties": { - "id": "1f913485-afaa-44ed-8d7c-7ee42e035fe5", - "code": "32610", - "data": { - "stops": [ - { - "id": "2610", - "code": "32610", - "data": { - "gtfs": { - "stop_id": "2610", - "stop_code": "32610", - "stop_name": "av. Bienville et boul. Milan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et boul. Milan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4501756115534, - 45.4679822793683 - ] - } - }, - { - "id": "2616", - "code": "32616", - "data": { - "gtfs": { - "stop_id": "2616", - "stop_code": "32616", - "stop_name": "boul. Milan et av. Bienville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Bienville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4497899140663, - 45.4680144492406 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6053173653027 - }, - "name": "av. Bienville et boul. Milan", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449982763, - 45.467998364 - ] - }, - "is_frozen": false, - "integer_id": 859, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446275, - 45.469265 - ] - }, - "id": 860, - "properties": { - "id": "3eb7ac83-44ec-41f1-b285-0b0d9dddb25c", - "code": "32611", - "data": { - "stops": [ - { - "id": "2611", - "code": "32611", - "data": { - "gtfs": { - "stop_id": "2611", - "stop_code": "32611", - "stop_name": "boul. Milan et av. Bienvenue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Bienvenue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4463772799216, - 45.4691213450707 - ] - } - }, - { - "id": "2615", - "code": "32615", - "data": { - "gtfs": { - "stop_id": "2615", - "stop_code": "32615", - "stop_name": "av. Bienvenue et boul. Milan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienvenue et boul. Milan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4460833275853, - 45.4691388032365 - ] - } - }, - { - "id": "4309", - "code": "34309", - "data": { - "gtfs": { - "stop_id": "4309", - "stop_code": "34309", - "stop_name": "boul. Milan et av. Bienvenue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Bienvenue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4464666509201, - 45.4694093456687 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6266850389824 - }, - "name": "boul. Milan et av. Bienvenue", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446274989, - 45.469265345 - ] - }, - "is_frozen": false, - "integer_id": 860, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.444531, - 45.467551 - ] - }, - "id": 861, - "properties": { - "id": "2a9bdd66-2c83-491f-b40e-1e8d8aa77a53", - "code": "32614", - "data": { - "stops": [ - { - "id": "2614", - "code": "32614", - "data": { - "gtfs": { - "stop_id": "2614", - "stop_code": "32614", - "stop_name": "av. Bienvenue et Brébeuf", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienvenue et Brébeuf", - "geography": { - "type": "Point", - "coordinates": [ - -73.4443615682821, - 45.4675230797196 - ] - } - }, - { - "id": "5073", - "code": "35073", - "data": { - "gtfs": { - "stop_id": "5073", - "stop_code": "35073", - "stop_name": "av. Bienvenue et Brébeuf", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienvenue et Brébeuf", - "geography": { - "type": "Point", - "coordinates": [ - -73.4447009813034, - 45.4675798846104 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5977810266196 - }, - "name": "av. Bienvenue et Brébeuf", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.444531275, - 45.467551482 - ] - }, - "is_frozen": false, - "integer_id": 861, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450945, - 45.468907 - ] - }, - "id": 862, - "properties": { - "id": "c9664cb0-d2ee-485f-8261-b02c66f8f9aa", - "code": "32617", - "data": { - "stops": [ - { - "id": "2617", - "code": "32617", - "data": { - "gtfs": { - "stop_id": "2617", - "stop_code": "32617", - "stop_name": "av. Bienville et Bélair", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et Bélair", - "geography": { - "type": "Point", - "coordinates": [ - -73.4509448540504, - 45.4689073641207 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6206475338874 - }, - "name": "av. Bienville et Bélair", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450944854, - 45.468907364 - ] - }, - "is_frozen": false, - "integer_id": 862, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452119, - 45.46916 - ] - }, - "id": 863, - "properties": { - "id": "e3925175-d7e8-4440-80a1-64bd3d7d9b18", - "code": "32618", - "data": { - "stops": [ - { - "id": "2618", - "code": "32618", - "data": { - "gtfs": { - "stop_id": "2618", - "stop_code": "32618", - "stop_name": "av. Bienville et Bélair", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienville et Bélair", - "geography": { - "type": "Point", - "coordinates": [ - -73.4521188145461, - 45.4691598197987 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6249053021821 - }, - "name": "av. Bienville et Bélair", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452118815, - 45.46915982 - ] - }, - "is_frozen": false, - "integer_id": 863, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486295, - 45.480438 - ] - }, - "id": 864, - "properties": { - "id": "a9e9d254-0411-40ff-8540-2c41b97aa285", - "code": "32629", - "data": { - "stops": [ - { - "id": "2629", - "code": "32629", - "data": { - "gtfs": { - "stop_id": "2629", - "stop_code": "32629", - "stop_name": "du Dauphiné et av. du Finistère", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Dauphiné et av. du Finistère", - "geography": { - "type": "Point", - "coordinates": [ - -73.4862235780256, - 45.4803829723706 - ] - } - }, - { - "id": "2647", - "code": "32647", - "data": { - "gtfs": { - "stop_id": "2647", - "stop_code": "32647", - "stop_name": "du Dauphiné et av. du Finistère", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Dauphiné et av. du Finistère", - "geography": { - "type": "Point", - "coordinates": [ - -73.4863671785879, - 45.4804935105585 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8151780009458 - }, - "name": "du Dauphiné et av. du Finistère", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486295378, - 45.480438241 - ] - }, - "is_frozen": false, - "integer_id": 864, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.488594, - 45.481207 - ] - }, - "id": 865, - "properties": { - "id": "b4a272ff-ad07-49f4-b3bf-37e38018a4d0", - "code": "32630", - "data": { - "stops": [ - { - "id": "2630", - "code": "32630", - "data": { - "gtfs": { - "stop_id": "2630", - "stop_code": "32630", - "stop_name": "du Dauphiné et av. des Pyrénées", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Dauphiné et av. des Pyrénées", - "geography": { - "type": "Point", - "coordinates": [ - -73.4884679480795, - 45.4812812192559 - ] - } - }, - { - "id": "3551", - "code": "33551", - "data": { - "gtfs": { - "stop_id": "3551", - "stop_code": "33551", - "stop_name": "du Dauphiné et av. des Pyrénées", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Dauphiné et av. des Pyrénées", - "geography": { - "type": "Point", - "coordinates": [ - -73.4887206123295, - 45.4811327698149 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8281513860991 - }, - "name": "du Dauphiné et av. des Pyrénées", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48859428, - 45.481206995 - ] - }, - "is_frozen": false, - "integer_id": 865, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490929, - 45.480805 - ] - }, - "id": 866, - "properties": { - "id": "8b87176c-4d30-4e5f-8750-8f2e6ea9737c", - "code": "32631", - "data": { - "stops": [ - { - "id": "2631", - "code": "32631", - "data": { - "gtfs": { - "stop_id": "2631", - "stop_code": "32631", - "stop_name": "du Dauphiné et av. du Béarn", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Dauphiné et av. du Béarn", - "geography": { - "type": "Point", - "coordinates": [ - -73.4906985313261, - 45.4808779800872 - ] - } - }, - { - "id": "2646", - "code": "32646", - "data": { - "gtfs": { - "stop_id": "2646", - "stop_code": "32646", - "stop_name": "av. du Béarn et du Dauphiné", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. du Béarn et du Dauphiné", - "geography": { - "type": "Point", - "coordinates": [ - -73.4911602722174, - 45.4807325529594 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8213718149535 - }, - "name": "du Dauphiné et av. du Béarn", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490929402, - 45.480805267 - ] - }, - "is_frozen": false, - "integer_id": 866, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492453, - 45.481908 - ] - }, - "id": 867, - "properties": { - "id": "c97bf2a0-4e35-4343-a821-fd37344059ce", - "code": "32632", - "data": { - "stops": [ - { - "id": "2632", - "code": "32632", - "data": { - "gtfs": { - "stop_id": "2632", - "stop_code": "32632", - "stop_name": "av. du Béarn et av. des Pyrénées", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. du Béarn et av. des Pyrénées", - "geography": { - "type": "Point", - "coordinates": [ - -73.4925090725875, - 45.4818687469304 - ] - } - }, - { - "id": "2645", - "code": "32645", - "data": { - "gtfs": { - "stop_id": "2645", - "stop_code": "32645", - "stop_name": "av. du Béarn et av. des Pyrénées", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. du Béarn et av. des Pyrénées", - "geography": { - "type": "Point", - "coordinates": [ - -73.4923960123941, - 45.4819464924855 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8399754932168 - }, - "name": "av. du Béarn et av. des Pyrénées", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492452542, - 45.48190762 - ] - }, - "is_frozen": false, - "integer_id": 867, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494727, - 45.48215 - ] - }, - "id": 868, - "properties": { - "id": "d0834662-f361-47c8-897d-090ca396cc80", - "code": "32633", - "data": { - "stops": [ - { - "id": "2633", - "code": "32633", - "data": { - "gtfs": { - "stop_id": "2633", - "stop_code": "32633", - "stop_name": "av. du Béarn et de Bourgogne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. du Béarn et de Bourgogne", - "geography": { - "type": "Point", - "coordinates": [ - -73.494600967006, - 45.4821995179985 - ] - } - }, - { - "id": "2644", - "code": "32644", - "data": { - "gtfs": { - "stop_id": "2644", - "stop_code": "32644", - "stop_name": "av. du Béarn et de Bourgogne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. du Béarn et de Bourgogne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4948520950827, - 45.4821005455957 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8440666641391 - }, - "name": "av. du Béarn et de Bourgogne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494726531, - 45.482150032 - ] - }, - "is_frozen": false, - "integer_id": 868, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.496361, - 45.481832 - ] - }, - "id": 869, - "properties": { - "id": "197613c4-818a-45ed-a120-7c785862199b", - "code": "32634", - "data": { - "stops": [ - { - "id": "2634", - "code": "32634", - "data": { - "gtfs": { - "stop_id": "2634", - "stop_code": "32634", - "stop_name": "av. du Béarn et av. de Charente", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. du Béarn et av. de Charente", - "geography": { - "type": "Point", - "coordinates": [ - -73.4963058583624, - 45.4819334401034 - ] - } - }, - { - "id": "2643", - "code": "32643", - "data": { - "gtfs": { - "stop_id": "2643", - "stop_code": "32643", - "stop_name": "av. du Béarn et av. de Charente", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. du Béarn et av. de Charente", - "geography": { - "type": "Point", - "coordinates": [ - -73.4964164779093, - 45.4817297741969 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8386926377148 - }, - "name": "av. du Béarn et av. de Charente", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.496361168, - 45.481831607 - ] - }, - "is_frozen": false, - "integer_id": 869, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.498097, - 45.481583 - ] - }, - "id": 870, - "properties": { - "id": "2f1abb54-e47c-4c4c-bf29-58794c82c9d7", - "code": "32635", - "data": { - "stops": [ - { - "id": "2635", - "code": "32635", - "data": { - "gtfs": { - "stop_id": "2635", - "stop_code": "32635", - "stop_name": "av. du Béarn et de Gascogne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. du Béarn et de Gascogne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4979445367806, - 45.4815202421828 - ] - } - }, - { - "id": "2642", - "code": "32642", - "data": { - "gtfs": { - "stop_id": "2642", - "stop_code": "32642", - "stop_name": "av. du Béarn et de Gascogne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. du Béarn et de Gascogne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4982503333622, - 45.481646225775 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8345009343462 - }, - "name": "av. du Béarn et de Gascogne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.498097435, - 45.481583234 - ] - }, - "is_frozen": false, - "integer_id": 870, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.501755, - 45.481857 - ] - }, - "id": 871, - "properties": { - "id": "ab2d66e0-27d7-4818-8e33-267927ea3fe2", - "code": "32636", - "data": { - "stops": [ - { - "id": "2636", - "code": "32636", - "data": { - "gtfs": { - "stop_id": "2636", - "stop_code": "32636", - "stop_name": "av. du Béarn et du Languedoc", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. du Béarn et du Languedoc", - "geography": { - "type": "Point", - "coordinates": [ - -73.5016007413971, - 45.481680003694 - ] - } - }, - { - "id": "2641", - "code": "32641", - "data": { - "gtfs": { - "stop_id": "2641", - "stop_code": "32641", - "stop_name": "du Languedoc et av. du Béarn", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Languedoc et av. du Béarn", - "geography": { - "type": "Point", - "coordinates": [ - -73.5019091756929, - 45.4820331571641 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.839114101246 - }, - "name": "av. du Béarn et du Languedoc", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.501754959, - 45.48185658 - ] - }, - "is_frozen": false, - "integer_id": 871, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.501781, - 45.482907 - ] - }, - "id": 872, - "properties": { - "id": "4f2dd8ac-70e9-487b-b0af-329673c88b03", - "code": "32637", - "data": { - "stops": [ - { - "id": "2637", - "code": "32637", - "data": { - "gtfs": { - "stop_id": "2637", - "stop_code": "32637", - "stop_name": "du Languedoc et av. de Normandie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Languedoc et av. de Normandie", - "geography": { - "type": "Point", - "coordinates": [ - -73.5016757486075, - 45.4828160270975 - ] - } - }, - { - "id": "2640", - "code": "32640", - "data": { - "gtfs": { - "stop_id": "2640", - "stop_code": "32640", - "stop_name": "av. de Normandie et du Languedoc", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. de Normandie et du Languedoc", - "geography": { - "type": "Point", - "coordinates": [ - -73.5018865574886, - 45.4829988626623 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8568498086179 - }, - "name": "du Languedoc et av. de Normandie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.501781153, - 45.482907445 - ] - }, - "is_frozen": false, - "integer_id": 872, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486375, - 45.47908 - ] - }, - "id": 873, - "properties": { - "id": "dfda995e-8686-4f89-a9b1-4109795a27c3", - "code": "32648", - "data": { - "stops": [ - { - "id": "2648", - "code": "32648", - "data": { - "gtfs": { - "stop_id": "2648", - "stop_code": "32648", - "stop_name": "du Dauphiné et boul. Simard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Dauphiné et boul. Simard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4864255104446, - 45.4791978498435 - ] - } - }, - { - "id": "3720", - "code": "33720", - "data": { - "gtfs": { - "stop_id": "3720", - "stop_code": "33720", - "stop_name": "boul. Simard et boul. Plamondon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Simard et boul. Plamondon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4866353960653, - 45.4789623630841 - ] - } - }, - { - "id": "3721", - "code": "33721", - "data": { - "gtfs": { - "stop_id": "3721", - "stop_code": "33721", - "stop_name": "boul. Simard et du Dauphiné", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Simard et du Dauphiné", - "geography": { - "type": "Point", - "coordinates": [ - -73.4861144399533, - 45.4791398560206 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7922595878216 - }, - "name": "du Dauphiné et boul. Simard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486374918, - 45.479080106 - ] - }, - "is_frozen": false, - "integer_id": 873, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491564, - 45.546182 - ] - }, - "id": 874, - "properties": { - "id": "dafbb12f-6c3c-4d5d-8759-fb4778479eb2", - "code": "32649", - "data": { - "stops": [ - { - "id": "2649", - "code": "32649", - "data": { - "gtfs": { - "stop_id": "2649", - "stop_code": "32649", - "stop_name": "boul. Fernand-Lafontaine et boul. Roland-Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et boul. Roland-Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4915642089071, - 45.5461816912939 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9265560502773 - }, - "name": "boul. Fernand-Lafontaine et boul. Roland-Therrien", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491564209, - 45.546181691 - ] - }, - "is_frozen": false, - "integer_id": 874, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.485968, - 45.463555 - ] - }, - "id": 875, - "properties": { - "id": "1339471a-52fa-47e9-b0e4-753bf917ef08", - "code": "32654", - "data": { - "stops": [ - { - "id": "2654", - "code": "32654", - "data": { - "gtfs": { - "stop_id": "2654", - "stop_code": "32654", - "stop_name": "av. Tisserand et croiss. Turgeon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et croiss. Turgeon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4860429788422, - 45.4635930305832 - ] - } - }, - { - "id": "3831", - "code": "33831", - "data": { - "gtfs": { - "stop_id": "3831", - "stop_code": "33831", - "stop_name": "av. Tisserand et croiss. Turgeon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et croiss. Turgeon", - "geography": { - "type": "Point", - "coordinates": [ - -73.485893801995, - 45.4635170730784 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5303920352568 - }, - "name": "av. Tisserand et croiss. Turgeon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48596839, - 45.463555052 - ] - }, - "is_frozen": false, - "integer_id": 875, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.488671, - 45.461503 - ] - }, - "id": 876, - "properties": { - "id": "9c711698-0f65-4997-8a72-24f5d8ab8fb7", - "code": "32655", - "data": { - "stops": [ - { - "id": "2655", - "code": "32655", - "data": { - "gtfs": { - "stop_id": "2655", - "stop_code": "32655", - "stop_name": "av. Tisserand et av. Thérèse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et av. Thérèse", - "geography": { - "type": "Point", - "coordinates": [ - -73.4887583486341, - 45.461595749849 - ] - } - }, - { - "id": "2723", - "code": "32723", - "data": { - "gtfs": { - "stop_id": "2723", - "stop_code": "32723", - "stop_name": "av. Tisserand et av. Thérèse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et av. Thérèse", - "geography": { - "type": "Point", - "coordinates": [ - -73.4885834726749, - 45.4614112156451 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4958033759837 - }, - "name": "av. Tisserand et av. Thérèse", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.488670911, - 45.461503483 - ] - }, - "is_frozen": false, - "integer_id": 876, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.488829, - 45.459151 - ] - }, - "id": 877, - "properties": { - "id": "5a6d8067-b58d-4ab2-838e-422e8f003ee9", - "code": "32656", - "data": { - "stops": [ - { - "id": "2656", - "code": "32656", - "data": { - "gtfs": { - "stop_id": "2656", - "stop_code": "32656", - "stop_name": "av. Tisserand et place Thomas", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et place Thomas", - "geography": { - "type": "Point", - "coordinates": [ - -73.4889090952116, - 45.4593333623116 - ] - } - }, - { - "id": "2722", - "code": "32722", - "data": { - "gtfs": { - "stop_id": "2722", - "stop_code": "32722", - "stop_name": "av. Tisserand et place Thomas", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et place Thomas", - "geography": { - "type": "Point", - "coordinates": [ - -73.4887494369243, - 45.4589677619509 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4561386377532 - }, - "name": "av. Tisserand et place Thomas", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.488829266, - 45.459150562 - ] - }, - "is_frozen": false, - "integer_id": 877, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.489795, - 45.457508 - ] - }, - "id": 878, - "properties": { - "id": "e20e768c-bd5a-43fd-8842-af2717d6cb09", - "code": "32657", - "data": { - "stops": [ - { - "id": "2657", - "code": "32657", - "data": { - "gtfs": { - "stop_id": "2657", - "stop_code": "32657", - "stop_name": "av. Tisserand et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4897949853112, - 45.45750793072 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4284506379117 - }, - "name": "av. Tisserand et boul. de Rome", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.489794985, - 45.457507931 - ] - }, - "is_frozen": false, - "integer_id": 878, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456836, - 45.451747 - ] - }, - "id": 879, - "properties": { - "id": "242dd95d-36af-4ef6-b5c1-b4ed26c41804", - "code": "32659", - "data": { - "stops": [ - { - "id": "2659", - "code": "32659", - "data": { - "gtfs": { - "stop_id": "2659", - "stop_code": "32659", - "stop_name": "boul. Milan et av. Mirabeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Mirabeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4565788031788, - 45.4520104804466 - ] - } - }, - { - "id": "3789", - "code": "33789", - "data": { - "gtfs": { - "stop_id": "3789", - "stop_code": "33789", - "stop_name": "boul. de Rome et boul. Milan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et boul. Milan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4570924866552, - 45.4514830783342 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3313602430637 - }, - "name": "boul. Milan et av. Mirabeau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456835645, - 45.451746779 - ] - }, - "is_frozen": false, - "integer_id": 879, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455854, - 45.453019 - ] - }, - "id": 880, - "properties": { - "id": "59b4f87c-067e-4dc3-856a-07fb245d4fe3", - "code": "32660", - "data": { - "stops": [ - { - "id": "2660", - "code": "32660", - "data": { - "gtfs": { - "stop_id": "2660", - "stop_code": "32660", - "stop_name": "boul. Milan et Meilleur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et Meilleur", - "geography": { - "type": "Point", - "coordinates": [ - -73.4557378534538, - 45.4528806015834 - ] - } - }, - { - "id": "3450", - "code": "33450", - "data": { - "gtfs": { - "stop_id": "3450", - "stop_code": "33450", - "stop_name": "boul. Milan et Meilleur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et Meilleur", - "geography": { - "type": "Point", - "coordinates": [ - -73.455969936179, - 45.4531575430189 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3527991557864 - }, - "name": "boul. Milan et Meilleur", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455853895, - 45.453019072 - ] - }, - "is_frozen": false, - "integer_id": 880, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455089, - 45.454774 - ] - }, - "id": 881, - "properties": { - "id": "c77e59d9-5075-4e39-a183-6bacc1afd03e", - "code": "32661", - "data": { - "stops": [ - { - "id": "2661", - "code": "32661", - "data": { - "gtfs": { - "stop_id": "2661", - "stop_code": "32661", - "stop_name": "boul. Milan et av. Maupassant", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Maupassant", - "geography": { - "type": "Point", - "coordinates": [ - -73.454929804599, - 45.4546361123407 - ] - } - }, - { - "id": "3830", - "code": "33830", - "data": { - "gtfs": { - "stop_id": "3830", - "stop_code": "33830", - "stop_name": "boul. Milan et av. Maupassant", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Maupassant", - "geography": { - "type": "Point", - "coordinates": [ - -73.4552477791183, - 45.4549119714012 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3823738266933 - }, - "name": "boul. Milan et av. Maupassant", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455088792, - 45.454774042 - ] - }, - "is_frozen": false, - "integer_id": 881, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457158, - 45.460365 - ] - }, - "id": 882, - "properties": { - "id": "3b708726-0db1-43de-b014-b11ddc9fc24a", - "code": "32662", - "data": { - "stops": [ - { - "id": "2662", - "code": "32662", - "data": { - "gtfs": { - "stop_id": "2662", - "stop_code": "32662", - "stop_name": "boul. Milan et Marlequin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et Marlequin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4571580076182, - 45.4603651824173 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.476613673145 - }, - "name": "boul. Milan et Marlequin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457158008, - 45.460365182 - ] - }, - "is_frozen": false, - "integer_id": 882, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457395, - 45.462069 - ] - }, - "id": 883, - "properties": { - "id": "ed6402d0-550f-4cee-9cc3-c6bd35b4fddd", - "code": "32663", - "data": { - "stops": [ - { - "id": "2663", - "code": "32663", - "data": { - "gtfs": { - "stop_id": "2663", - "stop_code": "32663", - "stop_name": "boul. Milan et av. Malo", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Malo", - "geography": { - "type": "Point", - "coordinates": [ - -73.4575131442153, - 45.4619539672354 - ] - } - }, - { - "id": "3456", - "code": "33456", - "data": { - "gtfs": { - "stop_id": "3456", - "stop_code": "33456", - "stop_name": "av. Malo et boul. Milan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et boul. Milan", - "geography": { - "type": "Point", - "coordinates": [ - -73.457406018148, - 45.4621231953329 - ] - } - }, - { - "id": "4266", - "code": "34266", - "data": { - "gtfs": { - "stop_id": "4266", - "stop_code": "34266", - "stop_name": "boul. Milan et av. Malo", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Malo", - "geography": { - "type": "Point", - "coordinates": [ - -73.4577470955302, - 45.4622422020233 - ] - } - }, - { - "id": "5150", - "code": "35150", - "data": { - "gtfs": { - "stop_id": "5150", - "stop_code": "35150", - "stop_name": "av. Malo et boul. Milan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et boul. Milan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4579148611303, - 45.4620293649638 - ] - } - }, - { - "id": "5341", - "code": "30079", - "data": { - "gtfs": { - "stop_id": "5341", - "stop_code": "30079", - "stop_name": "av. Malo et Michel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et Michel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4568747201384, - 45.4618951126914 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.505331618037 - }, - "name": "boul. Milan et av. Malo", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457394791, - 45.462068657 - ] - }, - "is_frozen": false, - "integer_id": 883, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440954, - 45.472882 - ] - }, - "id": 884, - "properties": { - "id": "c8919560-2bb2-4063-8184-8e6c296badbe", - "code": "32668", - "data": { - "stops": [ - { - "id": "2668", - "code": "32668", - "data": { - "gtfs": { - "stop_id": "2668", - "stop_code": "32668", - "stop_name": "boul. Milan et boul. Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et boul. Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4409544574369, - 45.4728817022767 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.68768285301 - }, - "name": "boul. Milan et boul. Grande Allée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440954457, - 45.472881702 - ] - }, - "is_frozen": false, - "integer_id": 884, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.438221, - 45.474399 - ] - }, - "id": 885, - "properties": { - "id": "8b9707c9-b6c5-4e26-a78f-6381ea74dd7a", - "code": "32670", - "data": { - "stops": [ - { - "id": "2670", - "code": "32670", - "data": { - "gtfs": { - "stop_id": "2670", - "stop_code": "32670", - "stop_name": "boul. Gaétan-Boucher et civique 5395", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et civique 5395", - "geography": { - "type": "Point", - "coordinates": [ - -73.4382214514704, - 45.4743987867356 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7132752865119 - }, - "name": "boul. Gaétan-Boucher et civique 5395", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438221451, - 45.474398787 - ] - }, - "is_frozen": false, - "integer_id": 885, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.435234, - 45.475508 - ] - }, - "id": 886, - "properties": { - "id": "126ef269-cdfb-4230-9d48-8082f5180c1a", - "code": "32671", - "data": { - "stops": [ - { - "id": "2671", - "code": "32671", - "data": { - "gtfs": { - "stop_id": "2671", - "stop_code": "32671", - "stop_name": "boul. Gaétan-Boucher et av. Beauregard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et av. Beauregard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4353297715699, - 45.4753558954354 - ] - } - }, - { - "id": "2702", - "code": "32702", - "data": { - "gtfs": { - "stop_id": "2702", - "stop_code": "32702", - "stop_name": "boul. Gaétan-Boucher et av. Beauregard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et av. Beauregard", - "geography": { - "type": "Point", - "coordinates": [ - -73.435138774054, - 45.4756593047683 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7319816773094 - }, - "name": "boul. Gaétan-Boucher et av. Beauregard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.435234273, - 45.4755076 - ] - }, - "is_frozen": false, - "integer_id": 886, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.430414, - 45.476621 - ] - }, - "id": 887, - "properties": { - "id": "048bfe19-0e94-47fc-8ab2-eb70b9cfc452", - "code": "32672", - "data": { - "stops": [ - { - "id": "2672", - "code": "32672", - "data": { - "gtfs": { - "stop_id": "2672", - "stop_code": "32672", - "stop_name": "boul. Gaétan-Boucher et boul. Payer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et boul. Payer", - "geography": { - "type": "Point", - "coordinates": [ - -73.4304138387388, - 45.4766209174801 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7507651523907 - }, - "name": "boul. Gaétan-Boucher et boul. Payer", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.430413839, - 45.476620917 - ] - }, - "is_frozen": false, - "integer_id": 887, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.427035, - 45.477697 - ] - }, - "id": 888, - "properties": { - "id": "0e293c4f-51c2-4ecd-9469-442389cb7915", - "code": "32673", - "data": { - "stops": [ - { - "id": "2673", - "code": "32673", - "data": { - "gtfs": { - "stop_id": "2673", - "stop_code": "32673", - "stop_name": "boul. Gaétan-Boucher et av. Normand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et av. Normand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4271185590031, - 45.4775196878036 - ] - } - }, - { - "id": "2700", - "code": "32700", - "data": { - "gtfs": { - "stop_id": "2700", - "stop_code": "32700", - "stop_name": "boul. Gaétan-Boucher et av. Normand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et av. Normand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4269514207225, - 45.4778750206257 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7689274487618 - }, - "name": "boul. Gaétan-Boucher et av. Normand", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.42703499, - 45.477697354 - ] - }, - "is_frozen": false, - "integer_id": 888, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.423476, - 45.479662 - ] - }, - "id": 889, - "properties": { - "id": "e865e27f-7453-42b2-9745-a8e5425a0276", - "code": "32674", - "data": { - "stops": [ - { - "id": "2674", - "code": "32674", - "data": { - "gtfs": { - "stop_id": "2674", - "stop_code": "32674", - "stop_name": "boul. Gaétan-Boucher et av. Grenier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et av. Grenier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4234541710989, - 45.4795069128674 - ] - } - }, - { - "id": "2699", - "code": "32699", - "data": { - "gtfs": { - "stop_id": "2699", - "stop_code": "32699", - "stop_name": "boul. Gaétan-Boucher et av. Grenier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et av. Grenier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4234969904717, - 45.4798163862481 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8020728929181 - }, - "name": "boul. Gaétan-Boucher et av. Grenier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.423475581, - 45.47966165 - ] - }, - "is_frozen": false, - "integer_id": 889, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.420944, - 45.481319 - ] - }, - "id": 890, - "properties": { - "id": "f7218298-f862-4f68-aabe-7a0d51011bc1", - "code": "32675", - "data": { - "stops": [ - { - "id": "2675", - "code": "32675", - "data": { - "gtfs": { - "stop_id": "2675", - "stop_code": "32675", - "stop_name": "boul. Gaétan-Boucher et av. Brabant", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et av. Brabant", - "geography": { - "type": "Point", - "coordinates": [ - -73.4210748680566, - 45.4812674606405 - ] - } - }, - { - "id": "2838", - "code": "32838", - "data": { - "gtfs": { - "stop_id": "2838", - "stop_code": "32838", - "stop_name": "av. Brabant et boul. Gaétan-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Brabant et boul. Gaétan-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4208124439787, - 45.4813697859318 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8300352483075 - }, - "name": "boul. Gaétan-Boucher et av. Brabant", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.420943656, - 45.481318623 - ] - }, - "is_frozen": false, - "integer_id": 890, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.417436, - 45.483981 - ] - }, - "id": 891, - "properties": { - "id": "7f82f5fb-e61e-43a9-957c-0c400fd3ecbd", - "code": "32676", - "data": { - "stops": [ - { - "id": "2676", - "code": "32676", - "data": { - "gtfs": { - "stop_id": "2676", - "stop_code": "32676", - "stop_name": "boul. Gaétan-Boucher et av. Sidney", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et av. Sidney", - "geography": { - "type": "Point", - "coordinates": [ - -73.4174363778569, - 45.4839813140543 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.874974774151 - }, - "name": "boul. Gaétan-Boucher et av. Sidney", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.417436378, - 45.483981314 - ] - }, - "is_frozen": false, - "integer_id": 891, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.415585, - 45.485669 - ] - }, - "id": 892, - "properties": { - "id": "51dccfb1-8fe6-4a12-8046-5640f26ae9c1", - "code": "32677", - "data": { - "stops": [ - { - "id": "2677", - "code": "32677", - "data": { - "gtfs": { - "stop_id": "2677", - "stop_code": "32677", - "stop_name": "boul. Gaétan-Boucher et civique 3781", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et civique 3781", - "geography": { - "type": "Point", - "coordinates": [ - -73.4154693526488, - 45.4855850178466 - ] - } - }, - { - "id": "2696", - "code": "32696", - "data": { - "gtfs": { - "stop_id": "2696", - "stop_code": "32696", - "stop_name": "boul. Gaétan-Boucher et civique 3740", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et civique 3740", - "geography": { - "type": "Point", - "coordinates": [ - -73.4157001526865, - 45.4857524220475 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9034572048582 - }, - "name": "boul. Gaétan-Boucher et civique 3781", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.415584753, - 45.48566872 - ] - }, - "is_frozen": false, - "integer_id": 892, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.406716, - 45.493656 - ] - }, - "id": 893, - "properties": { - "id": "df4c6e14-8093-4f02-87d3-4b3d84466b04", - "code": "32679", - "data": { - "stops": [ - { - "id": "2679", - "code": "32679", - "data": { - "gtfs": { - "stop_id": "2679", - "stop_code": "32679", - "stop_name": "boul. Cousineau et LES PROMENADES DU PARC", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et LES PROMENADES DU PARC", - "geography": { - "type": "Point", - "coordinates": [ - -73.4067157745716, - 45.4936555749077 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0383050150227 - }, - "name": "boul. Cousineau et LES PROMENADES DU PARC", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.406715775, - 45.493655575 - ] - }, - "is_frozen": false, - "integer_id": 893, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.402534, - 45.491816 - ] - }, - "id": 894, - "properties": { - "id": "7c34d8fb-52d2-4cf7-8954-ff69847540ac", - "code": "32680", - "data": { - "stops": [ - { - "id": "2680", - "code": "32680", - "data": { - "gtfs": { - "stop_id": "2680", - "stop_code": "32680", - "stop_name": "boul. Cousineau et boul. Jacques-Marcil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et boul. Jacques-Marcil", - "geography": { - "type": "Point", - "coordinates": [ - -73.4028552363243, - 45.4918121962574 - ] - } - }, - { - "id": "4836", - "code": "34836", - "data": { - "gtfs": { - "stop_id": "4836", - "stop_code": "34836", - "stop_name": "boul. Cousineau et boul. Jacques-Marcil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et boul. Jacques-Marcil", - "geography": { - "type": "Point", - "coordinates": [ - -73.402212202487, - 45.4918205938487 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0072477907835 - }, - "name": "boul. Cousineau et boul. Jacques-Marcil", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.402533719, - 45.491816395 - ] - }, - "is_frozen": false, - "integer_id": 894, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.398603, - 45.488211 - ] - }, - "id": 895, - "properties": { - "id": "54d47023-e112-40d5-b44e-eafc96f238ef", - "code": "32681", - "data": { - "stops": [ - { - "id": "2681", - "code": "32681", - "data": { - "gtfs": { - "stop_id": "2681", - "stop_code": "32681", - "stop_name": "boul. Cousineau et Pierre-Thomas-Hurteau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Pierre-Thomas-Hurteau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3988669520354, - 45.488233334413 - ] - } - }, - { - "id": "2695", - "code": "32695", - "data": { - "gtfs": { - "stop_id": "2695", - "stop_code": "32695", - "stop_name": "boul. Cousineau et Cornwall", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Cornwall", - "geography": { - "type": "Point", - "coordinates": [ - -73.3983385147163, - 45.4881878730701 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.946367505085 - }, - "name": "boul. Cousineau et Pierre-Thomas-Hurteau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.398602733, - 45.488210604 - ] - }, - "is_frozen": false, - "integer_id": 895, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.3944, - 45.484164 - ] - }, - "id": 896, - "properties": { - "id": "9f7ffafe-2aab-4507-b571-cce792adfb7d", - "code": "32682", - "data": { - "stops": [ - { - "id": "2682", - "code": "32682", - "data": { - "gtfs": { - "stop_id": "2682", - "stop_code": "32682", - "stop_name": "boul. Cousineau et Ovila-Hamel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Ovila-Hamel", - "geography": { - "type": "Point", - "coordinates": [ - -73.3947338530318, - 45.4841889953117 - ] - } - }, - { - "id": "4168", - "code": "34168", - "data": { - "gtfs": { - "stop_id": "4168", - "stop_code": "34168", - "stop_name": "boul. Cousineau et Ovila-Hamel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Ovila-Hamel", - "geography": { - "type": "Point", - "coordinates": [ - -73.3940660745209, - 45.4841395739302 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.878063095744 - }, - "name": "boul. Cousineau et Ovila-Hamel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.394399964, - 45.484164285 - ] - }, - "is_frozen": false, - "integer_id": 896, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.396695, - 45.482506 - ] - }, - "id": 897, - "properties": { - "id": "968b7b22-34c3-4022-8ddb-f9483ac7dca5", - "code": "32683", - "data": { - "stops": [ - { - "id": "2683", - "code": "32683", - "data": { - "gtfs": { - "stop_id": "2683", - "stop_code": "32683", - "stop_name": "Ovila-Hamel et des Roses", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ovila-Hamel et des Roses", - "geography": { - "type": "Point", - "coordinates": [ - -73.3967203660109, - 45.4825968148945 - ] - } - }, - { - "id": "2692", - "code": "32692", - "data": { - "gtfs": { - "stop_id": "2692", - "stop_code": "32692", - "stop_name": "Ovila-Hamel et des Roses", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ovila-Hamel et des Roses", - "geography": { - "type": "Point", - "coordinates": [ - -73.3966699478607, - 45.4824149076619 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8500720606927 - }, - "name": "Ovila-Hamel et des Roses", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.396695157, - 45.482505861 - ] - }, - "is_frozen": false, - "integer_id": 897, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.398932, - 45.481635 - ] - }, - "id": 898, - "properties": { - "id": "b50ae6c0-de25-4d7f-a9d6-e6512b40be80", - "code": "32684", - "data": { - "stops": [ - { - "id": "2684", - "code": "32684", - "data": { - "gtfs": { - "stop_id": "2684", - "stop_code": "32684", - "stop_name": "Ovila-Hamel et Richard-Hogen", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ovila-Hamel et Richard-Hogen", - "geography": { - "type": "Point", - "coordinates": [ - -73.3989649750624, - 45.4816887635798 - ] - } - }, - { - "id": "2691", - "code": "32691", - "data": { - "gtfs": { - "stop_id": "2691", - "stop_code": "32691", - "stop_name": "Ovila-Hamel et des Jacinthes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ovila-Hamel et des Jacinthes", - "geography": { - "type": "Point", - "coordinates": [ - -73.3988983994674, - 45.4815806637127 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8353697396138 - }, - "name": "Ovila-Hamel et Richard-Hogen", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.398931687, - 45.481634714 - ] - }, - "is_frozen": false, - "integer_id": 898, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.401372, - 45.481645 - ] - }, - "id": 899, - "properties": { - "id": "df277747-60c8-4b3b-bafb-24f50e6b7964", - "code": "32685", - "data": { - "stops": [ - { - "id": "2685", - "code": "32685", - "data": { - "gtfs": { - "stop_id": "2685", - "stop_code": "32685", - "stop_name": "Ovila-Hamel et Pierre-Thomas-Hurteau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ovila-Hamel et Pierre-Thomas-Hurteau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4011581116707, - 45.4816169732216 - ] - } - }, - { - "id": "2690", - "code": "32690", - "data": { - "gtfs": { - "stop_id": "2690", - "stop_code": "32690", - "stop_name": "Pierre-Thomas-Hurteau et Ovila-Hamel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pierre-Thomas-Hurteau et Ovila-Hamel", - "geography": { - "type": "Point", - "coordinates": [ - -73.401472785354, - 45.48180171359 - ] - } - }, - { - "id": "5113", - "code": "35113", - "data": { - "gtfs": { - "stop_id": "5113", - "stop_code": "35113", - "stop_name": "Ovila-Hamel et Pierre-Thomas-Hurteau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ovila-Hamel et Pierre-Thomas-Hurteau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4015862155154, - 45.4814883480676 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8355438553583 - }, - "name": "Ovila-Hamel et Pierre-Thomas-Hurteau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.401372164, - 45.481645031 - ] - }, - "is_frozen": false, - "integer_id": 899, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.401275, - 45.484504 - ] - }, - "id": 900, - "properties": { - "id": "2d9ef136-ec60-4019-bd4d-d2df55cc0477", - "code": "32686", - "data": { - "stops": [ - { - "id": "2686", - "code": "32686", - "data": { - "gtfs": { - "stop_id": "2686", - "stop_code": "32686", - "stop_name": "Pierre-Thomas-Hurteau et des Orchidées", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pierre-Thomas-Hurteau et des Orchidées", - "geography": { - "type": "Point", - "coordinates": [ - -73.4011846483267, - 45.4844061730077 - ] - } - }, - { - "id": "4284", - "code": "34284", - "data": { - "gtfs": { - "stop_id": "4284", - "stop_code": "34284", - "stop_name": "Pierre-Thomas-Hurteau et des Orchidées", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pierre-Thomas-Hurteau et des Orchidées", - "geography": { - "type": "Point", - "coordinates": [ - -73.4013647267878, - 45.4846021873207 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.883800177139 - }, - "name": "Pierre-Thomas-Hurteau et des Orchidées", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.401274688, - 45.48450418 - ] - }, - "is_frozen": false, - "integer_id": 900, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.400225, - 45.48597 - ] - }, - "id": 901, - "properties": { - "id": "95e3e956-07c7-4562-9cda-5fd5f7b3bbe6", - "code": "32687", - "data": { - "stops": [ - { - "id": "2687", - "code": "32687", - "data": { - "gtfs": { - "stop_id": "2687", - "stop_code": "32687", - "stop_name": "Pierre-Thomas-Hurteau et des Coquelicots", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pierre-Thomas-Hurteau et des Coquelicots", - "geography": { - "type": "Point", - "coordinates": [ - -73.400224740371, - 45.4861333890855 - ] - } - }, - { - "id": "2688", - "code": "32688", - "data": { - "gtfs": { - "stop_id": "2688", - "stop_code": "32688", - "stop_name": "Pierre-Thomas-Hurteau et Louis-Hébert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pierre-Thomas-Hurteau et Louis-Hébert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4002250253988, - 45.4858059867579 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.908537635432 - }, - "name": "Pierre-Thomas-Hurteau et des Coquelicots", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.400224883, - 45.485969688 - ] - }, - "is_frozen": false, - "integer_id": 901, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.394874, - 45.483755 - ] - }, - "id": 902, - "properties": { - "id": "33e21d89-c421-4efc-9bcf-2137e1092e00", - "code": "32693", - "data": { - "stops": [ - { - "id": "2693", - "code": "32693", - "data": { - "gtfs": { - "stop_id": "2693", - "stop_code": "32693", - "stop_name": "Ovila-Hamel et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ovila-Hamel et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3948744904862, - 45.4837554953068 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8711632729458 - }, - "name": "Ovila-Hamel et boul. Cousineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.39487449, - 45.483755495 - ] - }, - "is_frozen": false, - "integer_id": 902, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.396138, - 45.485951 - ] - }, - "id": 903, - "properties": { - "id": "819870cc-ffb6-4a2a-add6-5b056cc3e4c0", - "code": "32694", - "data": { - "stops": [ - { - "id": "2694", - "code": "32694", - "data": { - "gtfs": { - "stop_id": "2694", - "stop_code": "32694", - "stop_name": "boul. Cousineau et Joseph-Hardy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Joseph-Hardy", - "geography": { - "type": "Point", - "coordinates": [ - -73.3961376180779, - 45.4859510546509 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9082231024363 - }, - "name": "boul. Cousineau et Joseph-Hardy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.396137618, - 45.485951055 - ] - }, - "is_frozen": false, - "integer_id": 903, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.417957, - 45.483707 - ] - }, - "id": 904, - "properties": { - "id": "2be42802-4bac-4c64-9b9a-86ec8fbc96b1", - "code": "32697", - "data": { - "stops": [ - { - "id": "2697", - "code": "32697", - "data": { - "gtfs": { - "stop_id": "2697", - "stop_code": "32697", - "stop_name": "boul. Gaétan-Boucher et av. Sidney", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et av. Sidney", - "geography": { - "type": "Point", - "coordinates": [ - -73.4178659598774, - 45.4839869544312 - ] - } - }, - { - "id": "2839", - "code": "32839", - "data": { - "gtfs": { - "stop_id": "2839", - "stop_code": "32839", - "stop_name": "av. Sidney et boul. Gaétan-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Sidney et boul. Gaétan-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4176208476545, - 45.4834261819046 - ] - } - }, - { - "id": "2854", - "code": "32854", - "data": { - "gtfs": { - "stop_id": "2854", - "stop_code": "32854", - "stop_name": "av. Sidney et boul. Gaétan-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Sidney et boul. Gaétan-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.418294149449, - 45.4838621343139 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8703374612542 - }, - "name": "boul. Gaétan-Boucher et av. Sidney", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.417957499, - 45.483706568 - ] - }, - "is_frozen": false, - "integer_id": 904, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.421352, - 45.481834 - ] - }, - "id": 905, - "properties": { - "id": "8131cbf3-211d-4b69-adcb-9af688489a49", - "code": "32698", - "data": { - "stops": [ - { - "id": "2698", - "code": "32698", - "data": { - "gtfs": { - "stop_id": "2698", - "stop_code": "32698", - "stop_name": "boul. Gaétan-Boucher et av. Brabant", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et av. Brabant", - "geography": { - "type": "Point", - "coordinates": [ - -73.4211203500764, - 45.4815882144315 - ] - } - }, - { - "id": "4115", - "code": "34115", - "data": { - "gtfs": { - "stop_id": "4115", - "stop_code": "34115", - "stop_name": "av. Brabant et Forgues", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Brabant et Forgues", - "geography": { - "type": "Point", - "coordinates": [ - -73.4215829761117, - 45.4820804213892 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8387383906064 - }, - "name": "boul. Gaétan-Boucher et av. Brabant", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.421351663, - 45.481834318 - ] - }, - "is_frozen": false, - "integer_id": 905, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.438242, - 45.474665 - ] - }, - "id": 906, - "properties": { - "id": "46c30d80-c93e-497b-a096-3a7c13e3723f", - "code": "32703", - "data": { - "stops": [ - { - "id": "2703", - "code": "32703", - "data": { - "gtfs": { - "stop_id": "2703", - "stop_code": "32703", - "stop_name": "boul. Gaétan-Boucher et civique 5385", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et civique 5385", - "geography": { - "type": "Point", - "coordinates": [ - -73.4382424577388, - 45.4746647291395 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7177618000941 - }, - "name": "boul. Gaétan-Boucher et civique 5385", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438242458, - 45.474664729 - ] - }, - "is_frozen": false, - "integer_id": 906, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440596, - 45.473424 - ] - }, - "id": 907, - "properties": { - "id": "5fffcc6e-49a0-47ce-98c6-44e0bcbfca94", - "code": "32704", - "data": { - "stops": [ - { - "id": "2704", - "code": "32704", - "data": { - "gtfs": { - "stop_id": "2704", - "stop_code": "32704", - "stop_name": "boul. Gaétan-Boucher et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4405957796086, - 45.4734236133976 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6968243745215 - }, - "name": "boul. Gaétan-Boucher et Grande Allée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44059578, - 45.473423613 - ] - }, - "is_frozen": false, - "integer_id": 907, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44259, - 45.472085 - ] - }, - "id": 908, - "properties": { - "id": "8e5b2a64-b78a-43d0-8b16-8b3c62cfc1d1", - "code": "32705", - "data": { - "stops": [ - { - "id": "2705", - "code": "32705", - "data": { - "gtfs": { - "stop_id": "2705", - "stop_code": "32705", - "stop_name": "boul. Milan et av. Bienville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Bienville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4425898491683, - 45.4720854866682 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.674251938833 - }, - "name": "boul. Milan et av. Bienville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442589849, - 45.472085487 - ] - }, - "is_frozen": false, - "integer_id": 908, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.444392, - 45.470637 - ] - }, - "id": 909, - "properties": { - "id": "59e686a2-ff9b-4ee3-9d4d-a2734111ab49", - "code": "32706", - "data": { - "stops": [ - { - "id": "2706", - "code": "32706", - "data": { - "gtfs": { - "stop_id": "2706", - "stop_code": "32706", - "stop_name": "boul. Milan et civique 5730", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et civique 5730", - "geography": { - "type": "Point", - "coordinates": [ - -73.4447670344434, - 45.4705505744192 - ] - } - }, - { - "id": "3559", - "code": "33559", - "data": { - "gtfs": { - "stop_id": "3559", - "stop_code": "33559", - "stop_name": "boul. Milan et civique 5745", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et civique 5745", - "geography": { - "type": "Point", - "coordinates": [ - -73.4440173260678, - 45.4707240826123 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.649825199095 - }, - "name": "boul. Milan et civique 5730", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44439218, - 45.470637329 - ] - }, - "is_frozen": false, - "integer_id": 909, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454504, - 45.464827 - ] - }, - "id": 910, - "properties": { - "id": "7fef83f0-dafe-4bfc-8d59-ed507f41abfa", - "code": "32715", - "data": { - "stops": [ - { - "id": "2715", - "code": "32715", - "data": { - "gtfs": { - "stop_id": "2715", - "stop_code": "32715", - "stop_name": "av. Broadway et boul. Milan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Broadway et boul. Milan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4545742371679, - 45.4649705025044 - ] - } - }, - { - "id": "3614", - "code": "33614", - "data": { - "gtfs": { - "stop_id": "3614", - "stop_code": "33614", - "stop_name": "av. Broadway et av. Bernard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Broadway et av. Bernard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4544332124106, - 45.464684018975 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5518428633741 - }, - "name": "av. Broadway et boul. Milan", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454503725, - 45.464827261 - ] - }, - "is_frozen": false, - "integer_id": 910, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457872, - 45.461167 - ] - }, - "id": 911, - "properties": { - "id": "ac84633b-6f3b-458c-8f4e-099cc310c05e", - "code": "32716", - "data": { - "stops": [ - { - "id": "2716", - "code": "32716", - "data": { - "gtfs": { - "stop_id": "2716", - "stop_code": "32716", - "stop_name": "boul. Milan et av. Manon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Manon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4578721737568, - 45.4611669279854 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4901295456491 - }, - "name": "boul. Milan et av. Manon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457872174, - 45.461166928 - ] - }, - "is_frozen": false, - "integer_id": 911, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456356, - 45.45861 - ] - }, - "id": 912, - "properties": { - "id": "d271cca7-cd7a-4e22-8728-7a598b88fe32", - "code": "32717", - "data": { - "stops": [ - { - "id": "2717", - "code": "32717", - "data": { - "gtfs": { - "stop_id": "2717", - "stop_code": "32717", - "stop_name": "boul. Milan et av. Manon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Manon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4565846009427, - 45.4586541271617 - ] - } - }, - { - "id": "3582", - "code": "33582", - "data": { - "gtfs": { - "stop_id": "3582", - "stop_code": "33582", - "stop_name": "boul. Milan et av. Manon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Manon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4561267564758, - 45.4585657048318 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4470253064028 - }, - "name": "boul. Milan et av. Manon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456355679, - 45.458609916 - ] - }, - "is_frozen": false, - "integer_id": 912, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455722, - 45.457479 - ] - }, - "id": 913, - "properties": { - "id": "f5f0a75d-b9e9-4575-845b-09748935c6e0", - "code": "32718", - "data": { - "stops": [ - { - "id": "2718", - "code": "32718", - "data": { - "gtfs": { - "stop_id": "2718", - "stop_code": "32718", - "stop_name": "boul. Milan et av. Mirabeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Mirabeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.455896536693, - 45.4574393070298 - ] - } - }, - { - "id": "3583", - "code": "33583", - "data": { - "gtfs": { - "stop_id": "3583", - "stop_code": "33583", - "stop_name": "boul. Milan et av. Mirabeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Mirabeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4555472252319, - 45.457519642533 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4279710079362 - }, - "name": "boul. Milan et av. Mirabeau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455721881, - 45.457479475 - ] - }, - "is_frozen": false, - "integer_id": 913, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457572, - 45.451641 - ] - }, - "id": 914, - "properties": { - "id": "415dd3cb-19bd-4480-8604-528a4ab43f5e", - "code": "32720", - "data": { - "stops": [ - { - "id": "2720", - "code": "32720", - "data": { - "gtfs": { - "stop_id": "2720", - "stop_code": "32720", - "stop_name": "boul. Milan et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4573826477943, - 45.4517575398823 - ] - } - }, - { - "id": "4399", - "code": "34399", - "data": { - "gtfs": { - "stop_id": "4399", - "stop_code": "34399", - "stop_name": "boul. de Rome et boul. Milan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et boul. Milan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4577623311601, - 45.4515249686 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3295821469638 - }, - "name": "boul. Milan et boul. de Rome", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457572489, - 45.451641254 - ] - }, - "is_frozen": false, - "integer_id": 914, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461737, - 45.457384 - ] - }, - "id": 915, - "properties": { - "id": "d5ec6ea4-54ec-4c93-8189-a0fc04563a16", - "code": "32727", - "data": { - "stops": [ - { - "id": "2727", - "code": "32727", - "data": { - "gtfs": { - "stop_id": "2727", - "stop_code": "32727", - "stop_name": "av. Malo et Malherbe", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et Malherbe", - "geography": { - "type": "Point", - "coordinates": [ - -73.4618622579721, - 45.457465447331 - ] - } - }, - { - "id": "2753", - "code": "32753", - "data": { - "gtfs": { - "stop_id": "2753", - "stop_code": "32753", - "stop_name": "av. Malo et Malherbe", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et Malherbe", - "geography": { - "type": "Point", - "coordinates": [ - -73.4616126181221, - 45.457303390664 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4263688305836 - }, - "name": "av. Malo et Malherbe", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461737438, - 45.457384419 - ] - }, - "is_frozen": false, - "integer_id": 915, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461868, - 45.45621 - ] - }, - "id": 916, - "properties": { - "id": "387a8b8d-be2d-4a5f-a8e9-bb7c0aa51def", - "code": "32728", - "data": { - "stops": [ - { - "id": "2728", - "code": "32728", - "data": { - "gtfs": { - "stop_id": "2728", - "stop_code": "32728", - "stop_name": "av. Malo et Montmartre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et Montmartre", - "geography": { - "type": "Point", - "coordinates": [ - -73.461926521958, - 45.4563496543621 - ] - } - }, - { - "id": "2752", - "code": "32752", - "data": { - "gtfs": { - "stop_id": "2752", - "stop_code": "32752", - "stop_name": "av. Malo et Montmartre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et Montmartre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4618100381314, - 45.4560706618412 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4065772180437 - }, - "name": "av. Malo et Montmartre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46186828, - 45.456210158 - ] - }, - "is_frozen": false, - "integer_id": 916, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463483, - 45.451788 - ] - }, - "id": 917, - "properties": { - "id": "90d9bb0e-4845-468b-af33-21831922eede", - "code": "32730", - "data": { - "stops": [ - { - "id": "2730", - "code": "32730", - "data": { - "gtfs": { - "stop_id": "2730", - "stop_code": "32730", - "stop_name": "av. Naples et Nassau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Naples et Nassau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4634413051326, - 45.451954378234 - ] - } - }, - { - "id": "2750", - "code": "32750", - "data": { - "gtfs": { - "stop_id": "2750", - "stop_code": "32750", - "stop_name": "av. Naples et Nassau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Naples et Nassau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4635250878761, - 45.4516209912747 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3320495117619 - }, - "name": "av. Naples et Nassau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463483197, - 45.451787685 - ] - }, - "is_frozen": false, - "integer_id": 917, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464666, - 45.450682 - ] - }, - "id": 918, - "properties": { - "id": "d300031f-a642-4e09-b48b-0e859400e1f7", - "code": "32731", - "data": { - "stops": [ - { - "id": "2731", - "code": "32731", - "data": { - "gtfs": { - "stop_id": "2731", - "stop_code": "32731", - "stop_name": "av. Naples et av. Neuville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Naples et av. Neuville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4646514553809, - 45.4508626331334 - ] - } - }, - { - "id": "2749", - "code": "32749", - "data": { - "gtfs": { - "stop_id": "2749", - "stop_code": "32749", - "stop_name": "av. Naples et av. Neuville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Naples et av. Neuville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4646805966219, - 45.4505005797732 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3134125328659 - }, - "name": "av. Naples et av. Neuville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464666026, - 45.450681606 - ] - }, - "is_frozen": false, - "integer_id": 918, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466001, - 45.448609 - ] - }, - "id": 919, - "properties": { - "id": "27cd912d-c30d-4955-977f-68eb1e010190", - "code": "32732", - "data": { - "stops": [ - { - "id": "2732", - "code": "32732", - "data": { - "gtfs": { - "stop_id": "2732", - "stop_code": "32732", - "stop_name": "av. Naples et Nicolas", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Naples et Nicolas", - "geography": { - "type": "Point", - "coordinates": [ - -73.4660737535976, - 45.4486874602618 - ] - } - }, - { - "id": "2748", - "code": "32748", - "data": { - "gtfs": { - "stop_id": "2748", - "stop_code": "32748", - "stop_name": "av. Naples et Nicolas", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Naples et Nicolas", - "geography": { - "type": "Point", - "coordinates": [ - -73.465927650735, - 45.4485312124282 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2784985515261 - }, - "name": "av. Naples et Nicolas", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466000702, - 45.448609336 - ] - }, - "is_frozen": false, - "integer_id": 919, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467212, - 45.446457 - ] - }, - "id": 920, - "properties": { - "id": "809d30b8-456e-4e86-b782-8a6448d546e0", - "code": "32733", - "data": { - "stops": [ - { - "id": "2733", - "code": "32733", - "data": { - "gtfs": { - "stop_id": "2733", - "stop_code": "32733", - "stop_name": "av. Naples et boul. Napoléon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Naples et boul. Napoléon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4672120685005, - 45.4464574298945 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2422468790597 - }, - "name": "av. Naples et boul. Napoléon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.467212069, - 45.44645743 - ] - }, - "is_frozen": false, - "integer_id": 920, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464241, - 45.444639 - ] - }, - "id": 921, - "properties": { - "id": "ae5cac19-c84c-4e41-ae57-bbf3b3bda217", - "code": "32734", - "data": { - "stops": [ - { - "id": "2734", - "code": "32734", - "data": { - "gtfs": { - "stop_id": "2734", - "stop_code": "32734", - "stop_name": "boul. Napoléon et Nadeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Napoléon et Nadeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4642411967974, - 45.4446387175192 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2116114971994 - }, - "name": "boul. Napoléon et Nadeau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464241197, - 45.444638718 - ] - }, - "is_frozen": false, - "integer_id": 921, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461217, - 45.439938 - ] - }, - "id": 922, - "properties": { - "id": "f0cb9b28-77f1-4ee2-ad5a-ee516c458607", - "code": "32737", - "data": { - "stops": [ - { - "id": "2737", - "code": "32737", - "data": { - "gtfs": { - "stop_id": "2737", - "stop_code": "32737", - "stop_name": "av. Orient et Olympia", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orient et Olympia", - "geography": { - "type": "Point", - "coordinates": [ - -73.4612166460753, - 45.4399375807246 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1324365553271 - }, - "name": "av. Orient et Olympia", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461216646, - 45.439937581 - ] - }, - "is_frozen": false, - "integer_id": 922, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460758, - 45.439173 - ] - }, - "id": 923, - "properties": { - "id": "19a4f64a-0169-40b9-8b9c-84de3158151e", - "code": "32738", - "data": { - "stops": [ - { - "id": "2738", - "code": "32738", - "data": { - "gtfs": { - "stop_id": "2738", - "stop_code": "32738", - "stop_name": "av. Orient et Ovide", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orient et Ovide", - "geography": { - "type": "Point", - "coordinates": [ - -73.4608413150664, - 45.4391629806248 - ] - } - }, - { - "id": "4511", - "code": "34511", - "data": { - "gtfs": { - "stop_id": "4511", - "stop_code": "34511", - "stop_name": "av. Orient et Ovide", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orient et Ovide", - "geography": { - "type": "Point", - "coordinates": [ - -73.4606746057798, - 45.4391831358534 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1195625723669 - }, - "name": "av. Orient et Ovide", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46075796, - 45.439173058 - ] - }, - "is_frozen": false, - "integer_id": 923, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46149, - 45.437876 - ] - }, - "id": 924, - "properties": { - "id": "c7e2639a-bb94-426e-918b-714f0212d53b", - "code": "32739", - "data": { - "stops": [ - { - "id": "2739", - "code": "32739", - "data": { - "gtfs": { - "stop_id": "2739", - "stop_code": "32739", - "stop_name": "av. Orient et civique 3630", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orient et civique 3630", - "geography": { - "type": "Point", - "coordinates": [ - -73.4616061282694, - 45.4378290422526 - ] - } - }, - { - "id": "4512", - "code": "34512", - "data": { - "gtfs": { - "stop_id": "4512", - "stop_code": "34512", - "stop_name": "av. Orient et civique 3625", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orient et civique 3625", - "geography": { - "type": "Point", - "coordinates": [ - -73.461374013761, - 45.4379238247373 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0977295827465 - }, - "name": "av. Orient et civique 3630", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461490071, - 45.437876433 - ] - }, - "is_frozen": false, - "integer_id": 924, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462282, - 45.436793 - ] - }, - "id": 925, - "properties": { - "id": "83e9a566-c582-40a4-a0ab-5f8e5e35853a", - "code": "32740", - "data": { - "stops": [ - { - "id": "2740", - "code": "32740", - "data": { - "gtfs": { - "stop_id": "2740", - "stop_code": "32740", - "stop_name": "av. Orient et ch. des Prairies", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orient et ch. des Prairies", - "geography": { - "type": "Point", - "coordinates": [ - -73.4621484244661, - 45.4370280333604 - ] - } - }, - { - "id": "4713", - "code": "34713", - "data": { - "gtfs": { - "stop_id": "4713", - "stop_code": "34713", - "stop_name": "av. Orient et ch. des Prairies", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orient et ch. des Prairies", - "geography": { - "type": "Point", - "coordinates": [ - -73.4622492453955, - 45.4365572642685 - ] - } - }, - { - "id": "4837", - "code": "34837", - "data": { - "gtfs": { - "stop_id": "4837", - "stop_code": "34837", - "stop_name": "av. Orient et ch. des Prairies", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orient et ch. des Prairies", - "geography": { - "type": "Point", - "coordinates": [ - -73.4620714621601, - 45.4368090878745 - ] - } - }, - { - "id": "5374", - "code": "30114", - "data": { - "gtfs": { - "stop_id": "5374", - "stop_code": "30114", - "stop_name": "ch. des Prairies et av. Orient", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et av. Orient", - "geography": { - "type": "Point", - "coordinates": [ - -73.4620723568305, - 45.4366622347767 - ] - } - }, - { - "id": "5379", - "code": "30119", - "data": { - "gtfs": { - "stop_id": "5379", - "stop_code": "30119", - "stop_name": "ch. des Prairies et av. Orient", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et av. Orient", - "geography": { - "type": "Point", - "coordinates": [ - -73.4624922871062, - 45.4366423597964 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0794816216365 - }, - "name": "av. Orient et ch. des Prairies", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462281875, - 45.436792649 - ] - }, - "is_frozen": false, - "integer_id": 925, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467767, - 45.445616 - ] - }, - "id": 926, - "properties": { - "id": "e7ac28b2-1ac9-4d12-811f-8e49f5a7d7ab", - "code": "32747", - "data": { - "stops": [ - { - "id": "2747", - "code": "32747", - "data": { - "gtfs": { - "stop_id": "2747", - "stop_code": "32747", - "stop_name": "av. Océanie et boul. Napoléon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Océanie et boul. Napoléon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4677667439687, - 45.4456158661584 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2280707491734 - }, - "name": "av. Océanie et boul. Napoléon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.467766744, - 45.445615866 - ] - }, - "is_frozen": false, - "integer_id": 926, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491083, - 45.445305 - ] - }, - "id": 927, - "properties": { - "id": "56755a3d-6779-4355-8b48-27271fb6ce0b", - "code": "32755", - "data": { - "stops": [ - { - "id": "2755", - "code": "32755", - "data": { - "gtfs": { - "stop_id": "2755", - "stop_code": "32755", - "stop_name": "av. Stravinski et Rossignol", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et Rossignol", - "geography": { - "type": "Point", - "coordinates": [ - -73.4911418196042, - 45.4454224630651 - ] - } - }, - { - "id": "2774", - "code": "32774", - "data": { - "gtfs": { - "stop_id": "2774", - "stop_code": "32774", - "stop_name": "av. Stravinski et Rossignol", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et Rossignol", - "geography": { - "type": "Point", - "coordinates": [ - -73.491024560285, - 45.4451882142953 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2228400862551 - }, - "name": "av. Stravinski et Rossignol", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.49108319, - 45.445305339 - ] - }, - "is_frozen": false, - "integer_id": 927, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491552, - 45.443499 - ] - }, - "id": 928, - "properties": { - "id": "a122e18e-3c5b-4bd7-bcdc-c9e065e65c66", - "code": "32756", - "data": { - "stops": [ - { - "id": "2756", - "code": "32756", - "data": { - "gtfs": { - "stop_id": "2756", - "stop_code": "32756", - "stop_name": "av. Stravinski et av. San Francisco", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et av. San Francisco", - "geography": { - "type": "Point", - "coordinates": [ - -73.4916621670958, - 45.4433784022371 - ] - } - }, - { - "id": "2773", - "code": "32773", - "data": { - "gtfs": { - "stop_id": "2773", - "stop_code": "32773", - "stop_name": "av. Stravinski et av. San Francisco", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et av. San Francisco", - "geography": { - "type": "Point", - "coordinates": [ - -73.4914420128163, - 45.4436191936686 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1924115549755 - }, - "name": "av. Stravinski et av. San Francisco", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.49155209, - 45.443498798 - ] - }, - "is_frozen": false, - "integer_id": 928, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492684, - 45.443348 - ] - }, - "id": 929, - "properties": { - "id": "14d2c36b-50a3-4d98-8947-81016b2b2927", - "code": "32757", - "data": { - "stops": [ - { - "id": "2757", - "code": "32757", - "data": { - "gtfs": { - "stop_id": "2757", - "stop_code": "32757", - "stop_name": "av. San Francisco et boul. Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et boul. Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4926839771826, - 45.4433475578212 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.189864270439 - }, - "name": "av. San Francisco et boul. Marie-Victorin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492683977, - 45.443347558 - ] - }, - "is_frozen": false, - "integer_id": 929, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491392, - 45.454689 - ] - }, - "id": 930, - "properties": { - "id": "8b2f8ac7-12dc-414d-8bb2-6cf82ae1cec4", - "code": "32761", - "data": { - "stops": [ - { - "id": "2761", - "code": "32761", - "data": { - "gtfs": { - "stop_id": "2761", - "stop_code": "32761", - "stop_name": "av. Stravinski et av. Strauss", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et av. Strauss", - "geography": { - "type": "Point", - "coordinates": [ - -73.4912901888308, - 45.4545438669965 - ] - } - }, - { - "id": "3292", - "code": "33292", - "data": { - "gtfs": { - "stop_id": "3292", - "stop_code": "33292", - "stop_name": "av. Stravinski et av. Strauss", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Stravinski et av. Strauss", - "geography": { - "type": "Point", - "coordinates": [ - -73.4914935495955, - 45.4548349354236 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3809473978781 - }, - "name": "av. Stravinski et av. Strauss", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491391869, - 45.454689401 - ] - }, - "is_frozen": false, - "integer_id": 930, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479548, - 45.454814 - ] - }, - "id": 931, - "properties": { - "id": "87774b57-5ee3-418d-948c-ba4db73d3893", - "code": "32764", - "data": { - "stops": [ - { - "id": "2764", - "code": "32764", - "data": { - "gtfs": { - "stop_id": "2764", - "stop_code": "32764", - "stop_name": "boul. Pelletier et civique 7960", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et civique 7960", - "geography": { - "type": "Point", - "coordinates": [ - -73.4797094386084, - 45.4548492450976 - ] - } - }, - { - "id": "2779", - "code": "32779", - "data": { - "gtfs": { - "stop_id": "2779", - "stop_code": "32779", - "stop_name": "boul. Pelletier et civique 7985", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et civique 7985", - "geography": { - "type": "Point", - "coordinates": [ - -73.4793859615462, - 45.4547794010612 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3830526722651 - }, - "name": "boul. Pelletier et civique 7960", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.4795477, - 45.454814323 - ] - }, - "is_frozen": false, - "integer_id": 931, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478118, - 45.449899 - ] - }, - "id": 932, - "properties": { - "id": "4509b80b-76a5-49de-acb2-533a50bafac5", - "code": "32766", - "data": { - "stops": [ - { - "id": "2766", - "code": "32766", - "data": { - "gtfs": { - "stop_id": "2766", - "stop_code": "32766", - "stop_name": "boul. Pelletier et av. Sorbonne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et av. Sorbonne", - "geography": { - "type": "Point", - "coordinates": [ - -73.478079074235, - 45.450023492687 - ] - } - }, - { - "id": "3527", - "code": "33527", - "data": { - "gtfs": { - "stop_id": "3527", - "stop_code": "33527", - "stop_name": "av. Sorbonne et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Sorbonne et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.478157467727, - 45.4497754564574 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3002346002562 - }, - "name": "boul. Pelletier et av. Sorbonne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.478118271, - 45.449899475 - ] - }, - "is_frozen": false, - "integer_id": 932, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482157, - 45.447561 - ] - }, - "id": 933, - "properties": { - "id": "91b595a9-abca-41fb-9723-f6ca055bd16b", - "code": "32767", - "data": { - "stops": [ - { - "id": "2767", - "code": "32767", - "data": { - "gtfs": { - "stop_id": "2767", - "stop_code": "32767", - "stop_name": "av. Sorbonne et boul. Rivard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Sorbonne et boul. Rivard", - "geography": { - "type": "Point", - "coordinates": [ - -73.48236253003, - 45.4474246881454 - ] - } - }, - { - "id": "2777", - "code": "32777", - "data": { - "gtfs": { - "stop_id": "2777", - "stop_code": "32777", - "stop_name": "av. Sorbonne et boul. Rivard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Sorbonne et boul. Rivard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4819512194836, - 45.4476982184375 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2608450782266 - }, - "name": "av. Sorbonne et boul. Rivard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482156875, - 45.447561453 - ] - }, - "is_frozen": false, - "integer_id": 933, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481237, - 45.446326 - ] - }, - "id": 934, - "properties": { - "id": "8f4ce296-9511-42d4-a138-f52bb761830f", - "code": "32768", - "data": { - "stops": [ - { - "id": "2768", - "code": "32768", - "data": { - "gtfs": { - "stop_id": "2768", - "stop_code": "32768", - "stop_name": "boul. Rivard et Rimbaud", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Rivard et Rimbaud", - "geography": { - "type": "Point", - "coordinates": [ - -73.481236689094, - 45.4463256168008 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.240026450056 - }, - "name": "boul. Rivard et Rimbaud", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481236689, - 45.446325617 - ] - }, - "is_frozen": false, - "integer_id": 934, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481079, - 45.44377 - ] - }, - "id": 935, - "properties": { - "id": "0a5b3fec-6725-4b10-9b81-ad6506fe82d2", - "code": "32769", - "data": { - "stops": [ - { - "id": "2769", - "code": "32769", - "data": { - "gtfs": { - "stop_id": "2769", - "stop_code": "32769", - "stop_name": "boul. Rivard et Rostand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Rivard et Rostand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4810789447276, - 45.443770010525 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1969795552537 - }, - "name": "boul. Rivard et Rostand", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481078945, - 45.443770011 - ] - }, - "is_frozen": false, - "integer_id": 935, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481173, - 45.44123 - ] - }, - "id": 936, - "properties": { - "id": "a532b39a-66ec-444f-abc1-766787d9387c", - "code": "32770", - "data": { - "stops": [ - { - "id": "2770", - "code": "32770", - "data": { - "gtfs": { - "stop_id": "2770", - "stop_code": "32770", - "stop_name": "boul. Rivard et av. San Francisco", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Rivard et av. San Francisco", - "geography": { - "type": "Point", - "coordinates": [ - -73.481390882058, - 45.4414124371829 - ] - } - }, - { - "id": "2804", - "code": "32804", - "data": { - "gtfs": { - "stop_id": "2804", - "stop_code": "32804", - "stop_name": "av. San Francisco et boul. Rivard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et boul. Rivard", - "geography": { - "type": "Point", - "coordinates": [ - -73.480955115925, - 45.441371882782 - ] - } - }, - { - "id": "2814", - "code": "32814", - "data": { - "gtfs": { - "stop_id": "2814", - "stop_code": "32814", - "stop_name": "boul. Rivard et av. San Francisco", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Rivard et av. San Francisco", - "geography": { - "type": "Point", - "coordinates": [ - -73.4810658743394, - 45.4410479541835 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1542043823581 - }, - "name": "boul. Rivard et av. San Francisco", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481172999, - 45.441230196 - ] - }, - "is_frozen": false, - "integer_id": 936, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483726, - 45.441683 - ] - }, - "id": 937, - "properties": { - "id": "3518bfc1-7b5d-4295-9440-6fc17dd6b559", - "code": "32771", - "data": { - "stops": [ - { - "id": "2771", - "code": "32771", - "data": { - "gtfs": { - "stop_id": "2771", - "stop_code": "32771", - "stop_name": "av. San Francisco et Rio", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et Rio", - "geography": { - "type": "Point", - "coordinates": [ - -73.4837263324577, - 45.4416826929229 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1618248484749 - }, - "name": "av. San Francisco et Rio", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483726332, - 45.441682693 - ] - }, - "is_frozen": false, - "integer_id": 937, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.487349, - 45.443213 - ] - }, - "id": 938, - "properties": { - "id": "e9dbe1ee-244a-4556-8fa1-052d6f2dee5e", - "code": "32772", - "data": { - "stops": [ - { - "id": "2772", - "code": "32772", - "data": { - "gtfs": { - "stop_id": "2772", - "stop_code": "32772", - "stop_name": "av. San Francisco et Rigaud", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et Rigaud", - "geography": { - "type": "Point", - "coordinates": [ - -73.4873492027359, - 45.4432129685481 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1875974501564 - }, - "name": "av. San Francisco et Rigaud", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.487349203, - 45.443212969 - ] - }, - "is_frozen": false, - "integer_id": 938, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.485395, - 45.447318 - ] - }, - "id": 939, - "properties": { - "id": "601c2147-2f83-405b-be6a-8fe05117cb43", - "code": "32775", - "data": { - "stops": [ - { - "id": "2775", - "code": "32775", - "data": { - "gtfs": { - "stop_id": "2775", - "stop_code": "32775", - "stop_name": "boul. Rivard et Rembrandt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Rivard et Rembrandt", - "geography": { - "type": "Point", - "coordinates": [ - -73.4853946269896, - 45.4473175216976 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2567357616466 - }, - "name": "boul. Rivard et Rembrandt", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.485394627, - 45.447317522 - ] - }, - "is_frozen": false, - "integer_id": 939, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494621, - 45.4552 - ] - }, - "id": 940, - "properties": { - "id": "81232cdf-e1d4-440c-91bd-cfdc85007144", - "code": "32781", - "data": { - "stops": [ - { - "id": "2781", - "code": "32781", - "data": { - "gtfs": { - "stop_id": "2781", - "stop_code": "32781", - "stop_name": "boul. du Saint-Laurent et civique 8050", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Saint-Laurent et civique 8050", - "geography": { - "type": "Point", - "coordinates": [ - -73.4947861249578, - 45.4551780581414 - ] - } - }, - { - "id": "2790", - "code": "32790", - "data": { - "gtfs": { - "stop_id": "2790", - "stop_code": "32790", - "stop_name": "boul. du Saint-Laurent et civique 8050", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Saint-Laurent et civique 8050", - "geography": { - "type": "Point", - "coordinates": [ - -73.494456585233, - 45.455222053417 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3895534064883 - }, - "name": "boul. du Saint-Laurent et civique 8050", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494621355, - 45.455200056 - ] - }, - "is_frozen": false, - "integer_id": 940, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494696, - 45.454205 - ] - }, - "id": 941, - "properties": { - "id": "7ad52fd5-2149-40d5-ae51-5e78e11fdbc1", - "code": "32782", - "data": { - "stops": [ - { - "id": "2782", - "code": "32782", - "data": { - "gtfs": { - "stop_id": "2782", - "stop_code": "32782", - "stop_name": "boul. du Saint-Laurent et civique 8080", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Saint-Laurent et civique 8080", - "geography": { - "type": "Point", - "coordinates": [ - -73.4946960128706, - 45.4542052335255 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3727880020742 - }, - "name": "boul. du Saint-Laurent et civique 8080", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494696013, - 45.454205234 - ] - }, - "is_frozen": false, - "integer_id": 941, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494596, - 45.452726 - ] - }, - "id": 942, - "properties": { - "id": "e586848a-7ac7-418d-b5a3-f82dd8a6a7ed", - "code": "32783", - "data": { - "stops": [ - { - "id": "2783", - "code": "32783", - "data": { - "gtfs": { - "stop_id": "2783", - "stop_code": "32783", - "stop_name": "boul. du Saint-Laurent et Saint-François", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Saint-Laurent et Saint-François", - "geography": { - "type": "Point", - "coordinates": [ - -73.4947818378816, - 45.4526967175778 - ] - } - }, - { - "id": "2788", - "code": "32788", - "data": { - "gtfs": { - "stop_id": "2788", - "stop_code": "32788", - "stop_name": "boul. du Saint-Laurent et Saint-François", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Saint-Laurent et Saint-François", - "geography": { - "type": "Point", - "coordinates": [ - -73.494410393652, - 45.4527557347294 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3478643949326 - }, - "name": "boul. du Saint-Laurent et Saint-François", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494596116, - 45.452726226 - ] - }, - "is_frozen": false, - "integer_id": 942, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494521, - 45.451478 - ] - }, - "id": 943, - "properties": { - "id": "d7cb3ba2-d0b0-4f88-930e-1335acdfed4f", - "code": "32784", - "data": { - "stops": [ - { - "id": "2784", - "code": "32784", - "data": { - "gtfs": { - "stop_id": "2784", - "stop_code": "32784", - "stop_name": "boul. du Saint-Laurent et civique 8160", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Saint-Laurent et civique 8160", - "geography": { - "type": "Point", - "coordinates": [ - -73.4946963616604, - 45.4516435459399 - ] - } - }, - { - "id": "2787", - "code": "32787", - "data": { - "gtfs": { - "stop_id": "2787", - "stop_code": "32787", - "stop_name": "boul. du Saint-Laurent et civique 8145", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Saint-Laurent et civique 8145", - "geography": { - "type": "Point", - "coordinates": [ - -73.4943461044579, - 45.4513119510759 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3268271074548 - }, - "name": "boul. du Saint-Laurent et civique 8160", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494521233, - 45.451477749 - ] - }, - "is_frozen": false, - "integer_id": 943, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.49461, - 45.450314 - ] - }, - "id": 944, - "properties": { - "id": "c25e5964-dcb2-42c5-8dcb-381856954cdc", - "code": "32785", - "data": { - "stops": [ - { - "id": "2785", - "code": "32785", - "data": { - "gtfs": { - "stop_id": "2785", - "stop_code": "32785", - "stop_name": "boul. du Saint-Laurent et civique 8200", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Saint-Laurent et civique 8200", - "geography": { - "type": "Point", - "coordinates": [ - -73.4946101657361, - 45.4503142501241 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3072229745168 - }, - "name": "boul. du Saint-Laurent et civique 8200", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494610166, - 45.45031425 - ] - }, - "is_frozen": false, - "integer_id": 944, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494272, - 45.450502 - ] - }, - "id": 945, - "properties": { - "id": "a0c55e08-a29d-42c6-a917-251b8ca35935", - "code": "32786", - "data": { - "stops": [ - { - "id": "2786", - "code": "32786", - "data": { - "gtfs": { - "stop_id": "2786", - "stop_code": "32786", - "stop_name": "boul. du Saint-Laurent et CIVIQUE 8255", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Saint-Laurent et CIVIQUE 8255", - "geography": { - "type": "Point", - "coordinates": [ - -73.4942716699151, - 45.4505023259796 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3103918403662 - }, - "name": "boul. du Saint-Laurent et CIVIQUE 8255", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.49427167, - 45.450502326 - ] - }, - "is_frozen": false, - "integer_id": 945, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.49441, - 45.453826 - ] - }, - "id": 946, - "properties": { - "id": "a3a2d6d0-5008-4980-ba25-7b3a00feca26", - "code": "32789", - "data": { - "stops": [ - { - "id": "2789", - "code": "32789", - "data": { - "gtfs": { - "stop_id": "2789", - "stop_code": "32789", - "stop_name": "boul. du Saint-Laurent et civique 8075", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Saint-Laurent et civique 8075", - "geography": { - "type": "Point", - "coordinates": [ - -73.4944099555416, - 45.4538256151323 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3663906407264 - }, - "name": "boul. du Saint-Laurent et civique 8075", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494409956, - 45.453825615 - ] - }, - "is_frozen": false, - "integer_id": 946, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.493861, - 45.456525 - ] - }, - "id": 947, - "properties": { - "id": "3ebb53d0-1c64-4727-874b-d39ed1870cae", - "code": "32791", - "data": { - "stops": [ - { - "id": "2791", - "code": "32791", - "data": { - "gtfs": { - "stop_id": "2791", - "stop_code": "32791", - "stop_name": "boul. du Saint-Laurent et Saint-Maurice", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Saint-Laurent et Saint-Maurice", - "geography": { - "type": "Point", - "coordinates": [ - -73.4938610352065, - 45.4565253529131 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4118895602338 - }, - "name": "boul. du Saint-Laurent et Saint-Maurice", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493861035, - 45.456525353 - ] - }, - "is_frozen": false, - "integer_id": 947, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474078, - 45.46319 - ] - }, - "id": 948, - "properties": { - "id": "7389acbe-1784-4fea-a2ab-a4a9c9239e83", - "code": "32792", - "data": { - "stops": [ - { - "id": "2792", - "code": "32792", - "data": { - "gtfs": { - "stop_id": "2792", - "stop_code": "32792", - "stop_name": "Toulon et Tourigny", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Toulon et Tourigny", - "geography": { - "type": "Point", - "coordinates": [ - -73.4740737082108, - 45.4631109298984 - ] - } - }, - { - "id": "2826", - "code": "32826", - "data": { - "gtfs": { - "stop_id": "2826", - "stop_code": "32826", - "stop_name": "Toulon et Tourigny", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Toulon et Tourigny", - "geography": { - "type": "Point", - "coordinates": [ - -73.4740814630693, - 45.4632688912101 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5242356260267 - }, - "name": "Toulon et Tourigny", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474077586, - 45.463189911 - ] - }, - "is_frozen": false, - "integer_id": 948, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468349, - 45.456721 - ] - }, - "id": 949, - "properties": { - "id": "ca62a640-5508-4ced-94a0-1f22107c57c9", - "code": "32794", - "data": { - "stops": [ - { - "id": "2794", - "code": "32794", - "data": { - "gtfs": { - "stop_id": "2794", - "stop_code": "32794", - "stop_name": "av. Tisserand et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4684553262348, - 45.4564236319512 - ] - } - }, - { - "id": "4845", - "code": "34845", - "data": { - "gtfs": { - "stop_id": "4845", - "stop_code": "34845", - "stop_name": "av. Tisserand et civique 7660", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et civique 7660", - "geography": { - "type": "Point", - "coordinates": [ - -73.4682422533613, - 45.4570190128905 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4151924945891 - }, - "name": "av. Tisserand et boul. de Rome", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46834879, - 45.456721322 - ] - }, - "is_frozen": false, - "integer_id": 949, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469601, - 45.453081 - ] - }, - "id": 950, - "properties": { - "id": "e21c6436-090b-4893-a347-5a67018da073", - "code": "32796", - "data": { - "stops": [ - { - "id": "2796", - "code": "32796", - "data": { - "gtfs": { - "stop_id": "2796", - "stop_code": "32796", - "stop_name": "av. San Francisco et civique 7980", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et civique 7980", - "geography": { - "type": "Point", - "coordinates": [ - -73.4696613056517, - 45.4531673045972 - ] - } - }, - { - "id": "2823", - "code": "32823", - "data": { - "gtfs": { - "stop_id": "2823", - "stop_code": "32823", - "stop_name": "av. San Francisco et civique 7990", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et civique 7990", - "geography": { - "type": "Point", - "coordinates": [ - -73.4695413572081, - 45.4529955523228 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3538499293148 - }, - "name": "av. San Francisco et civique 7980", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469601331, - 45.453081428 - ] - }, - "is_frozen": false, - "integer_id": 950, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474298, - 45.446189 - ] - }, - "id": 951, - "properties": { - "id": "aebecb3d-b7f4-4a39-9b68-19a1c1a3b2b2", - "code": "32800", - "data": { - "stops": [ - { - "id": "2800", - "code": "32800", - "data": { - "gtfs": { - "stop_id": "2800", - "stop_code": "32800", - "stop_name": "av. San Francisco et Rimbaud", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et Rimbaud", - "geography": { - "type": "Point", - "coordinates": [ - -73.4743839377513, - 45.4462612959426 - ] - } - }, - { - "id": "2818", - "code": "32818", - "data": { - "gtfs": { - "stop_id": "2818", - "stop_code": "32818", - "stop_name": "av. San Francisco et Rimbaud", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et Rimbaud", - "geography": { - "type": "Point", - "coordinates": [ - -73.4742112269691, - 45.4461160866532 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2377199073677 - }, - "name": "av. San Francisco et Rimbaud", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474297582, - 45.446188691 - ] - }, - "is_frozen": false, - "integer_id": 951, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475836, - 45.441557 - ] - }, - "id": 952, - "properties": { - "id": "972f2e12-8185-4823-8ce3-2c965170ad9a", - "code": "32802", - "data": { - "stops": [ - { - "id": "2802", - "code": "32802", - "data": { - "gtfs": { - "stop_id": "2802", - "stop_code": "32802", - "stop_name": "av. San Francisco et croiss. Rouyn", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et croiss. Rouyn", - "geography": { - "type": "Point", - "coordinates": [ - -73.4757428184292, - 45.441693447937 - ] - } - }, - { - "id": "2816", - "code": "32816", - "data": { - "gtfs": { - "stop_id": "2816", - "stop_code": "32816", - "stop_name": "av. San Francisco et croiss. Rouyn", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et croiss. Rouyn", - "geography": { - "type": "Point", - "coordinates": [ - -73.4759293161609, - 45.4414205071579 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.159707673915 - }, - "name": "av. San Francisco et croiss. Rouyn", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475836067, - 45.441556978 - ] - }, - "is_frozen": false, - "integer_id": 952, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.477736, - 45.4412 - ] - }, - "id": 953, - "properties": { - "id": "ca880d29-2a91-4666-9ed1-c2825e5165f2", - "code": "32803", - "data": { - "stops": [ - { - "id": "2803", - "code": "32803", - "data": { - "gtfs": { - "stop_id": "2803", - "stop_code": "32803", - "stop_name": "av. San Francisco et croiss. Rimouski", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et croiss. Rimouski", - "geography": { - "type": "Point", - "coordinates": [ - -73.4777143711914, - 45.4412588148827 - ] - } - }, - { - "id": "2815", - "code": "32815", - "data": { - "gtfs": { - "stop_id": "2815", - "stop_code": "32815", - "stop_name": "av. San Francisco et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4777577415856, - 45.4411407338519 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1536920543784 - }, - "name": "av. San Francisco et croiss. Rimouski", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.477736056, - 45.441199774 - ] - }, - "is_frozen": false, - "integer_id": 953, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481671, - 45.438533 - ] - }, - "id": 954, - "properties": { - "id": "205aad7d-06ec-4492-b7ed-ac8ab79f10b2", - "code": "32805", - "data": { - "stops": [ - { - "id": "2805", - "code": "32805", - "data": { - "gtfs": { - "stop_id": "2805", - "stop_code": "32805", - "stop_name": "boul. Rivard et ch. des Prairies", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Rivard et ch. des Prairies", - "geography": { - "type": "Point", - "coordinates": [ - -73.4816390809304, - 45.4386139453195 - ] - } - }, - { - "id": "2813", - "code": "32813", - "data": { - "gtfs": { - "stop_id": "2813", - "stop_code": "32813", - "stop_name": "ch. des Prairies et boul. Rivard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et boul. Rivard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4817034430882, - 45.4384525255765 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1087888402751 - }, - "name": "boul. Rivard et ch. des Prairies", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481671262, - 45.438533235 - ] - }, - "is_frozen": false, - "integer_id": 954, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481654, - 45.436684 - ] - }, - "id": 955, - "properties": { - "id": "52fa062f-ca90-4e1d-998a-7b658a499b52", - "code": "32806", - "data": { - "stops": [ - { - "id": "2806", - "code": "32806", - "data": { - "gtfs": { - "stop_id": "2806", - "stop_code": "32806", - "stop_name": "boul. Rivard et croiss. Roussel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Rivard et croiss. Roussel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4816536118257, - 45.4366841554049 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.077654936453 - }, - "name": "boul. Rivard et croiss. Roussel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481653612, - 45.436684155 - ] - }, - "is_frozen": false, - "integer_id": 955, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481699, - 45.435522 - ] - }, - "id": 956, - "properties": { - "id": "553f2fec-7dd4-475c-b1ed-ff9a62614e74", - "code": "32807", - "data": { - "stops": [ - { - "id": "2807", - "code": "32807", - "data": { - "gtfs": { - "stop_id": "2807", - "stop_code": "32807", - "stop_name": "boul. Rivard et boul. Matte", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Rivard et boul. Matte", - "geography": { - "type": "Point", - "coordinates": [ - -73.4816992060983, - 45.4355218092029 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0580854744572 - }, - "name": "boul. Rivard et boul. Matte", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481699206, - 45.435521809 - ] - }, - "is_frozen": false, - "integer_id": 956, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.487428, - 45.435447 - ] - }, - "id": 957, - "properties": { - "id": "23afb18c-7e9a-4c38-a0e7-59d1aa5f5f5f", - "code": "32808", - "data": { - "stops": [ - { - "id": "2808", - "code": "32808", - "data": { - "gtfs": { - "stop_id": "2808", - "stop_code": "32808", - "stop_name": "boul. Matte et Renaud", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Matte et Renaud", - "geography": { - "type": "Point", - "coordinates": [ - -73.4874283938018, - 45.4354471198997 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0568280382321 - }, - "name": "boul. Matte et Renaud", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.487428394, - 45.43544712 - ] - }, - "is_frozen": false, - "integer_id": 957, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490782, - 45.435808 - ] - }, - "id": 958, - "properties": { - "id": "8f8e9cec-3b4e-465e-9db7-a68a74d060d1", - "code": "32809", - "data": { - "stops": [ - { - "id": "2809", - "code": "32809", - "data": { - "gtfs": { - "stop_id": "2809", - "stop_code": "32809", - "stop_name": "boul. Marie-Victorin et boul. Matte", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et boul. Matte", - "geography": { - "type": "Point", - "coordinates": [ - -73.4907820782392, - 45.4358084016826 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0629104934867 - }, - "name": "boul. Marie-Victorin et boul. Matte", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490782078, - 45.435808402 - ] - }, - "is_frozen": false, - "integer_id": 958, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491094, - 45.437112 - ] - }, - "id": 959, - "properties": { - "id": "a755707e-dbca-49b2-ba36-d6e6ffe0de89", - "code": "32810", - "data": { - "stops": [ - { - "id": "2810", - "code": "32810", - "data": { - "gtfs": { - "stop_id": "2810", - "stop_code": "32810", - "stop_name": "boul. Marie-Victorin et Ravel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Ravel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4910943899071, - 45.4371123187677 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0848638827039 - }, - "name": "boul. Marie-Victorin et Ravel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.49109439, - 45.437112319 - ] - }, - "is_frozen": false, - "integer_id": 959, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.485025, - 45.43852 - ] - }, - "id": 960, - "properties": { - "id": "6195cfbf-10cd-4d7a-86f0-ca5dad76f9d9", - "code": "32812", - "data": { - "stops": [ - { - "id": "2812", - "code": "32812", - "data": { - "gtfs": { - "stop_id": "2812", - "stop_code": "32812", - "stop_name": "ch. des Prairies et Roger", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et Roger", - "geography": { - "type": "Point", - "coordinates": [ - -73.4850251334854, - 45.4385199548246 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1085652273334 - }, - "name": "ch. des Prairies et Roger", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.485025133, - 45.438519955 - ] - }, - "is_frozen": false, - "integer_id": 960, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474384, - 45.444509 - ] - }, - "id": 961, - "properties": { - "id": "eab0f5d6-db57-4bf2-a26d-a49e7fe11c54", - "code": "32817", - "data": { - "stops": [ - { - "id": "2817", - "code": "32817", - "data": { - "gtfs": { - "stop_id": "2817", - "stop_code": "32817", - "stop_name": "av. San Francisco et croiss. Roberval", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et croiss. Roberval", - "geography": { - "type": "Point", - "coordinates": [ - -73.4742908041796, - 45.4444075795738 - ] - } - }, - { - "id": "3837", - "code": "33837", - "data": { - "gtfs": { - "stop_id": "3837", - "stop_code": "33837", - "stop_name": "av. San Francisco et croiss. Roberval", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et croiss. Roberval", - "geography": { - "type": "Point", - "coordinates": [ - -73.4744776684929, - 45.4446100882438 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2094237721072 - }, - "name": "av. San Francisco et croiss. Roberval", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474384236, - 45.444508834 - ] - }, - "is_frozen": false, - "integer_id": 961, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.473016, - 45.448591 - ] - }, - "id": 962, - "properties": { - "id": "5847442f-86f3-431c-ac38-324378b56363", - "code": "32820", - "data": { - "stops": [ - { - "id": "2820", - "code": "32820", - "data": { - "gtfs": { - "stop_id": "2820", - "stop_code": "32820", - "stop_name": "av. San Francisco et place Sahara", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et place Sahara", - "geography": { - "type": "Point", - "coordinates": [ - -73.4729496487446, - 45.4486984775957 - ] - } - }, - { - "id": "4739", - "code": "34739", - "data": { - "gtfs": { - "stop_id": "4739", - "stop_code": "34739", - "stop_name": "av. San Francisco et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4730826160511, - 45.4484845098885 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2781979628061 - }, - "name": "av. San Francisco et place Sahara", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.473016132, - 45.448591494 - ] - }, - "is_frozen": false, - "integer_id": 962, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468546, - 45.455999 - ] - }, - "id": 963, - "properties": { - "id": "4e3860b2-09e2-4483-a1a4-3a3bb3e2ab0a", - "code": "32825", - "data": { - "stops": [ - { - "id": "2825", - "code": "32825", - "data": { - "gtfs": { - "stop_id": "2825", - "stop_code": "32825", - "stop_name": "av. San Francisco et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.468417181782, - 45.4559265305284 - ] - } - }, - { - "id": "3526", - "code": "33526", - "data": { - "gtfs": { - "stop_id": "3526", - "stop_code": "33526", - "stop_name": "boul. de Rome et av. San Francisco", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. San Francisco", - "geography": { - "type": "Point", - "coordinates": [ - -73.4686744185584, - 45.4560721080834 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4030237561979 - }, - "name": "av. San Francisco et boul. de Rome", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.4685458, - 45.455999319 - ] - }, - "is_frozen": false, - "integer_id": 963, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475041, - 45.462095 - ] - }, - "id": 964, - "properties": { - "id": "06992afa-6d7e-4650-bffc-5a747de5860c", - "code": "32827", - "data": { - "stops": [ - { - "id": "2827", - "code": "32827", - "data": { - "gtfs": { - "stop_id": "2827", - "stop_code": "32827", - "stop_name": "Toulon et Talleyrand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Toulon et Talleyrand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4750343724985, - 45.4622022959897 - ] - } - }, - { - "id": "3277", - "code": "33277", - "data": { - "gtfs": { - "stop_id": "3277", - "stop_code": "33277", - "stop_name": "Toulon et Talleyrand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Toulon et Talleyrand", - "geography": { - "type": "Point", - "coordinates": [ - -73.475046775068, - 45.461987437134 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.505773498081 - }, - "name": "Toulon et Talleyrand", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475040574, - 45.462094867 - ] - }, - "is_frozen": false, - "integer_id": 964, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443256, - 45.475093 - ] - }, - "id": 965, - "properties": { - "id": "d6d99976-b155-4a29-b088-e41bf69a502a", - "code": "32828", - "data": { - "stops": [ - { - "id": "2828", - "code": "32828", - "data": { - "gtfs": { - "stop_id": "2828", - "stop_code": "32828", - "stop_name": "Orchard et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Orchard et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4431290953308, - 45.4750542009888 - ] - } - }, - { - "id": "2865", - "code": "32865", - "data": { - "gtfs": { - "stop_id": "2865", - "stop_code": "32865", - "stop_name": "Orchard et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Orchard et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4433832241964, - 45.4751308142626 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7249786795177 - }, - "name": "Orchard et Grande Allée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44325616, - 45.475092508 - ] - }, - "is_frozen": false, - "integer_id": 965, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441045, - 45.476779 - ] - }, - "id": 966, - "properties": { - "id": "3753be88-b479-4ca1-bd8a-5ea694207952", - "code": "32829", - "data": { - "stops": [ - { - "id": "2829", - "code": "32829", - "data": { - "gtfs": { - "stop_id": "2829", - "stop_code": "32829", - "stop_name": "Orchard et av. Glenn", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Orchard et av. Glenn", - "geography": { - "type": "Point", - "coordinates": [ - -73.4410494009499, - 45.4766683726062 - ] - } - }, - { - "id": "2864", - "code": "32864", - "data": { - "gtfs": { - "stop_id": "2864", - "stop_code": "32864", - "stop_name": "Orchard et av. Glenn", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Orchard et av. Glenn", - "geography": { - "type": "Point", - "coordinates": [ - -73.4410406184556, - 45.4768896036033 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7534321574568 - }, - "name": "Orchard et av. Glenn", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44104501, - 45.476778988 - ] - }, - "is_frozen": false, - "integer_id": 966, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.438484, - 45.478698 - ] - }, - "id": 967, - "properties": { - "id": "cfc3e1d1-58b4-4975-b310-259719029f69", - "code": "32830", - "data": { - "stops": [ - { - "id": "2830", - "code": "32830", - "data": { - "gtfs": { - "stop_id": "2830", - "stop_code": "32830", - "stop_name": "Orchard et av. Irving", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Orchard et av. Irving", - "geography": { - "type": "Point", - "coordinates": [ - -73.4385100103144, - 45.47856121192 - ] - } - }, - { - "id": "2863", - "code": "32863", - "data": { - "gtfs": { - "stop_id": "2863", - "stop_code": "32863", - "stop_name": "Orchard et av. Irving", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Orchard et av. Irving", - "geography": { - "type": "Point", - "coordinates": [ - -73.4384581484502, - 45.4788356372908 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7858190483067 - }, - "name": "Orchard et av. Irving", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438484079, - 45.478698425 - ] - }, - "is_frozen": false, - "integer_id": 967, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.433235, - 45.482552 - ] - }, - "id": 968, - "properties": { - "id": "dd69c268-00e5-467c-8e8d-2b0301743114", - "code": "32832", - "data": { - "stops": [ - { - "id": "2832", - "code": "32832", - "data": { - "gtfs": { - "stop_id": "2832", - "stop_code": "32832", - "stop_name": "Orchard et av. Normand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Orchard et av. Normand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4333155496573, - 45.4823826456888 - ] - } - }, - { - "id": "2861", - "code": "32861", - "data": { - "gtfs": { - "stop_id": "2861", - "stop_code": "32861", - "stop_name": "Orchard et av. Normand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Orchard et av. Normand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4331540972828, - 45.4827220516248 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8508566561933 - }, - "name": "Orchard et av. Normand", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.433234823, - 45.482552349 - ] - }, - "is_frozen": false, - "integer_id": 968, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.427998, - 45.486457 - ] - }, - "id": 969, - "properties": { - "id": "f026582d-e34c-4c8f-97d3-a9902c9cf75e", - "code": "32833", - "data": { - "stops": [ - { - "id": "2833", - "code": "32833", - "data": { - "gtfs": { - "stop_id": "2833", - "stop_code": "32833", - "stop_name": "Orchard et boul. Maricourt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Orchard et boul. Maricourt", - "geography": { - "type": "Point", - "coordinates": [ - -73.4277095950625, - 45.486575896662 - ] - } - }, - { - "id": "2859", - "code": "32859", - "data": { - "gtfs": { - "stop_id": "2859", - "stop_code": "32859", - "stop_name": "Orchard et civique 4020", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Orchard et civique 4020", - "geography": { - "type": "Point", - "coordinates": [ - -73.4282860501249, - 45.4863378648068 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9167617708273 - }, - "name": "Orchard et boul. Maricourt", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.427997823, - 45.486456881 - ] - }, - "is_frozen": false, - "integer_id": 969, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.424916, - 45.485222 - ] - }, - "id": 970, - "properties": { - "id": "9b3c9288-610f-44d5-ac44-d6199a8a0d55", - "code": "32834", - "data": { - "stops": [ - { - "id": "2834", - "code": "32834", - "data": { - "gtfs": { - "stop_id": "2834", - "stop_code": "32834", - "stop_name": "boul. Maricourt et Dupras", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Maricourt et Dupras", - "geography": { - "type": "Point", - "coordinates": [ - -73.4248869600896, - 45.4851188665149 - ] - } - }, - { - "id": "2858", - "code": "32858", - "data": { - "gtfs": { - "stop_id": "2858", - "stop_code": "32858", - "stop_name": "boul. Maricourt et Dupras", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Maricourt et Dupras", - "geography": { - "type": "Point", - "coordinates": [ - -73.4249453573134, - 45.4853244485904 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8959108121622 - }, - "name": "boul. Maricourt et Dupras", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.424916159, - 45.485221658 - ] - }, - "is_frozen": false, - "integer_id": 970, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.422526, - 45.483921 - ] - }, - "id": 971, - "properties": { - "id": "335b9e5b-fca5-4f4b-8f3b-2277caa27d7a", - "code": "32835", - "data": { - "stops": [ - { - "id": "2835", - "code": "32835", - "data": { - "gtfs": { - "stop_id": "2835", - "stop_code": "32835", - "stop_name": "boul. Maricourt et Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Maricourt et Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4228032336446, - 45.4839867497881 - ] - } - }, - { - "id": "2857", - "code": "32857", - "data": { - "gtfs": { - "stop_id": "2857", - "stop_code": "32857", - "stop_name": "boul. Maricourt et Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Maricourt et Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4222495715275, - 45.4838555753546 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8739595070163 - }, - "name": "boul. Maricourt et Béliveau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.422526403, - 45.483921163 - ] - }, - "is_frozen": false, - "integer_id": 971, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.420873, - 45.482881 - ] - }, - "id": 972, - "properties": { - "id": "cb1c9669-6517-4a25-af17-321fc49ae537", - "code": "32836", - "data": { - "stops": [ - { - "id": "2836", - "code": "32836", - "data": { - "gtfs": { - "stop_id": "2836", - "stop_code": "32836", - "stop_name": "boul. Maricourt et Forgues", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Maricourt et Forgues", - "geography": { - "type": "Point", - "coordinates": [ - -73.4210237183205, - 45.4829822048837 - ] - } - }, - { - "id": "2856", - "code": "32856", - "data": { - "gtfs": { - "stop_id": "2856", - "stop_code": "32856", - "stop_name": "Forgues et boul. Maricourt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Forgues et boul. Maricourt", - "geography": { - "type": "Point", - "coordinates": [ - -73.4207213909113, - 45.482779530058 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8564012330692 - }, - "name": "boul. Maricourt et Forgues", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.420872555, - 45.482880867 - ] - }, - "is_frozen": false, - "integer_id": 972, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.419191, - 45.481972 - ] - }, - "id": 973, - "properties": { - "id": "d8baecf8-a12f-4e7f-9e2a-2cdfa71e72d0", - "code": "32837", - "data": { - "stops": [ - { - "id": "2837", - "code": "32837", - "data": { - "gtfs": { - "stop_id": "2837", - "stop_code": "32837", - "stop_name": "boul. Maricourt et Beauséjour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Maricourt et Beauséjour", - "geography": { - "type": "Point", - "coordinates": [ - -73.419191107897, - 45.4819719443946 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8410610799223 - }, - "name": "boul. Maricourt et Beauséjour", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.419191108, - 45.481971944 - ] - }, - "is_frozen": false, - "integer_id": 973, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.418144, - 45.482242 - ] - }, - "id": 974, - "properties": { - "id": "07f8e631-764d-44cf-ab3a-dcf1276de1d6", - "code": "32840", - "data": { - "stops": [ - { - "id": "2840", - "code": "32840", - "data": { - "gtfs": { - "stop_id": "2840", - "stop_code": "32840", - "stop_name": "av. Sidney et boul. Kimber", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Sidney et boul. Kimber", - "geography": { - "type": "Point", - "coordinates": [ - -73.4181437882355, - 45.4822423035 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8456239461631 - }, - "name": "av. Sidney et boul. Kimber", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.418143788, - 45.482242304 - ] - }, - "is_frozen": false, - "integer_id": 974, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.420246, - 45.483128 - ] - }, - "id": 975, - "properties": { - "id": "495fd0d8-631d-48a3-bc48-4ec746693d10", - "code": "32841", - "data": { - "stops": [ - { - "id": "2841", - "code": "32841", - "data": { - "gtfs": { - "stop_id": "2841", - "stop_code": "32841", - "stop_name": "boul. Kimber et Sirois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Sirois", - "geography": { - "type": "Point", - "coordinates": [ - -73.4200177818484, - 45.4830984849731 - ] - } - }, - { - "id": "2853", - "code": "32853", - "data": { - "gtfs": { - "stop_id": "2853", - "stop_code": "32853", - "stop_name": "boul. Kimber et Sirois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Sirois", - "geography": { - "type": "Point", - "coordinates": [ - -73.4204738145814, - 45.4831572933746 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8605704208311 - }, - "name": "boul. Kimber et Sirois", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.420245798, - 45.483127889 - ] - }, - "is_frozen": false, - "integer_id": 975, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.423559, - 45.484873 - ] - }, - "id": 976, - "properties": { - "id": "c4df5893-41b2-4d6a-81b5-7128fb72aba4", - "code": "32842", - "data": { - "stops": [ - { - "id": "2842", - "code": "32842", - "data": { - "gtfs": { - "stop_id": "2842", - "stop_code": "32842", - "stop_name": "boul. Kimber et Howard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Howard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4233803591504, - 45.484868297236 - ] - } - }, - { - "id": "2852", - "code": "32852", - "data": { - "gtfs": { - "stop_id": "2852", - "stop_code": "32852", - "stop_name": "boul. Kimber et Howard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Howard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4237382167749, - 45.4848782343485 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8900300891827 - }, - "name": "boul. Kimber et Howard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.423559288, - 45.484873266 - ] - }, - "is_frozen": false, - "integer_id": 976, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.425298, - 45.485856 - ] - }, - "id": 977, - "properties": { - "id": "5665bcec-62a1-4d01-9550-6900a57f083d", - "code": "32843", - "data": { - "stops": [ - { - "id": "2843", - "code": "32843", - "data": { - "gtfs": { - "stop_id": "2843", - "stop_code": "32843", - "stop_name": "boul. Kimber et Prince-Charles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Prince-Charles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4249919326717, - 45.4857744020859 - ] - } - }, - { - "id": "3470", - "code": "33470", - "data": { - "gtfs": { - "stop_id": "3470", - "stop_code": "33470", - "stop_name": "boul. Kimber et Prince-Charles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Prince-Charles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4256049663054, - 45.4859367752215 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.906611600437 - }, - "name": "boul. Kimber et Prince-Charles", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.425298449, - 45.485855589 - ] - }, - "is_frozen": false, - "integer_id": 977, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.423272, - 45.489044 - ] - }, - "id": 978, - "properties": { - "id": "0e836f4e-0231-42bf-9c3d-37ea2aef8934", - "code": "32844", - "data": { - "stops": [ - { - "id": "2844", - "code": "32844", - "data": { - "gtfs": { - "stop_id": "2844", - "stop_code": "32844", - "stop_name": "Prince-Charles et av. Trudeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Prince-Charles et av. Trudeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4232422483244, - 45.488931697545 - ] - } - }, - { - "id": "2849", - "code": "32849", - "data": { - "gtfs": { - "stop_id": "2849", - "stop_code": "32849", - "stop_name": "Prince-Charles et av. Trudeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Prince-Charles et av. Trudeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4233015113904, - 45.4891566986653 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9604409042987 - }, - "name": "Prince-Charles et av. Trudeau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.42327188, - 45.489044198 - ] - }, - "is_frozen": false, - "integer_id": 978, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.420988, - 45.492114 - ] - }, - "id": 979, - "properties": { - "id": "30c08115-a1b6-45b8-9122-c5fe99723d2e", - "code": "32845", - "data": { - "stops": [ - { - "id": "2845", - "code": "32845", - "data": { - "gtfs": { - "stop_id": "2845", - "stop_code": "32845", - "stop_name": "Prince-Charles et boul. Davis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Prince-Charles et boul. Davis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4211637198051, - 45.4918675462281 - ] - } - }, - { - "id": "2848", - "code": "32848", - "data": { - "gtfs": { - "stop_id": "2848", - "stop_code": "32848", - "stop_name": "Prince-Charles et boul. Davis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Prince-Charles et boul. Davis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4211295475598, - 45.4922236911007 - ] - } - }, - { - "id": "3498", - "code": "33498", - "data": { - "gtfs": { - "stop_id": "3498", - "stop_code": "33498", - "stop_name": "Prince-Charles et boul. Davis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Prince-Charles et boul. Davis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4208131950285, - 45.4923600092781 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0122693305618 - }, - "name": "Prince-Charles et boul. Davis", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.420988457, - 45.492113778 - ] - }, - "is_frozen": false, - "integer_id": 979, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.418909, - 45.495171 - ] - }, - "id": 980, - "properties": { - "id": "bf4259d8-23ae-478a-8a93-ec28083b908d", - "code": "32847", - "data": { - "stops": [ - { - "id": "2847", - "code": "32847", - "data": { - "gtfs": { - "stop_id": "2847", - "stop_code": "32847", - "stop_name": "Prince-Charles et av. Primot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Prince-Charles et av. Primot", - "geography": { - "type": "Point", - "coordinates": [ - -73.418922955331, - 45.4952951152384 - ] - } - }, - { - "id": "3417", - "code": "33417", - "data": { - "gtfs": { - "stop_id": "3417", - "stop_code": "33417", - "stop_name": "Prince-Charles et av. Primot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Prince-Charles et av. Primot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4188952921866, - 45.4950460924897 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0638907389498 - }, - "name": "Prince-Charles et av. Primot", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.418909124, - 45.495170604 - ] - }, - "is_frozen": false, - "integer_id": 980, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.425313, - 45.486328 - ] - }, - "id": 981, - "properties": { - "id": "037aae6d-413d-4b3d-8987-50e8714ef6c5", - "code": "32850", - "data": { - "stops": [ - { - "id": "2850", - "code": "32850", - "data": { - "gtfs": { - "stop_id": "2850", - "stop_code": "32850", - "stop_name": "Prince-Charles et boul. Kimber", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Prince-Charles et boul. Kimber", - "geography": { - "type": "Point", - "coordinates": [ - -73.4253130153994, - 45.4863280175929 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9145864588688 - }, - "name": "Prince-Charles et boul. Kimber", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.425313015, - 45.486328018 - ] - }, - "is_frozen": false, - "integer_id": 981, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.430695, - 45.484435 - ] - }, - "id": 982, - "properties": { - "id": "3b77dae0-2a5d-4b97-b5b6-65893df568aa", - "code": "32860", - "data": { - "stops": [ - { - "id": "2860", - "code": "32860", - "data": { - "gtfs": { - "stop_id": "2860", - "stop_code": "32860", - "stop_name": "Orchard et av. Grenier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Orchard et av. Grenier", - "geography": { - "type": "Point", - "coordinates": [ - -73.43069731342, - 45.4845393240766 - ] - } - }, - { - "id": "3322", - "code": "33322", - "data": { - "gtfs": { - "stop_id": "3322", - "stop_code": "33322", - "stop_name": "Orchard et av. Grenier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Orchard et av. Grenier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4306929845044, - 45.4843306579656 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8826323289682 - }, - "name": "Orchard et av. Grenier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.430695149, - 45.484434991 - ] - }, - "is_frozen": false, - "integer_id": 982, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466677, - 45.476031 - ] - }, - "id": 983, - "properties": { - "id": "1758013c-4193-42f0-a495-c36930003f5b", - "code": "32867", - "data": { - "stops": [ - { - "id": "2867", - "code": "32867", - "data": { - "gtfs": { - "stop_id": "2867", - "stop_code": "32867", - "stop_name": "boul. Taschereau et COMPLEXE 4 GLACES", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et COMPLEXE 4 GLACES", - "geography": { - "type": "Point", - "coordinates": [ - -73.4666766088138, - 45.476031499291 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7408205714422 - }, - "name": "boul. Taschereau et COMPLEXE 4 GLACES", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466676609, - 45.476031499 - ] - }, - "is_frozen": false, - "integer_id": 983, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465958, - 45.476365 - ] - }, - "id": 984, - "properties": { - "id": "7eaffbff-c86c-4810-b174-bda8780c04b4", - "code": "32869", - "data": { - "stops": [ - { - "id": "2869", - "code": "32869", - "data": { - "gtfs": { - "stop_id": "2869", - "stop_code": "32869", - "stop_name": "boul. Taschereau et Authier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Authier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4659576926653, - 45.4763651828334 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7464504049497 - }, - "name": "boul. Taschereau et Authier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465957693, - 45.476365183 - ] - }, - "is_frozen": false, - "integer_id": 984, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465198, - 45.478736 - ] - }, - "id": 985, - "properties": { - "id": "e76a6766-6730-419b-bd29-f65b80bb6721", - "code": "32870", - "data": { - "stops": [ - { - "id": "2870", - "code": "32870", - "data": { - "gtfs": { - "stop_id": "2870", - "stop_code": "32870", - "stop_name": "boul. Taschereau et Angèle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Angèle", - "geography": { - "type": "Point", - "coordinates": [ - -73.465198243234, - 45.478735758536 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7864490218243 - }, - "name": "boul. Taschereau et Angèle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465198243, - 45.478735759 - ] - }, - "is_frozen": false, - "integer_id": 985, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442031, - 45.495845 - ] - }, - "id": 986, - "properties": { - "id": "662f52e5-0ed5-4ba7-81cb-757051eefa2c", - "code": "32871", - "data": { - "stops": [ - { - "id": "2871", - "code": "32871", - "data": { - "gtfs": { - "stop_id": "2871", - "stop_code": "32871", - "stop_name": "boul. Gareau et boul. Kimber", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et boul. Kimber", - "geography": { - "type": "Point", - "coordinates": [ - -73.442031398439, - 45.495844586795 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0752735818361 - }, - "name": "boul. Gareau et boul. Kimber", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442031398, - 45.495844587 - ] - }, - "is_frozen": false, - "integer_id": 986, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441076, - 45.497544 - ] - }, - "id": 987, - "properties": { - "id": "015193c6-e760-4b43-b20c-28dc44f0558a", - "code": "32872", - "data": { - "stops": [ - { - "id": "2872", - "code": "32872", - "data": { - "gtfs": { - "stop_id": "2872", - "stop_code": "32872", - "stop_name": "boul. Gareau et av. Lapointe", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et av. Lapointe", - "geography": { - "type": "Point", - "coordinates": [ - -73.440961429071, - 45.4973692744731 - ] - } - }, - { - "id": "2936", - "code": "32936", - "data": { - "gtfs": { - "stop_id": "2936", - "stop_code": "32936", - "stop_name": "boul. Gareau et av. Lapointe", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et av. Lapointe", - "geography": { - "type": "Point", - "coordinates": [ - -73.4411907679762, - 45.4977180363941 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1039707934804 - }, - "name": "boul. Gareau et av. Lapointe", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441076099, - 45.497543655 - ] - }, - "is_frozen": false, - "integer_id": 987, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.436945, - 45.502141 - ] - }, - "id": 988, - "properties": { - "id": "3b96e6d6-e4f7-4e24-903e-8fb3993ff6c9", - "code": "32874", - "data": { - "stops": [ - { - "id": "2874", - "code": "32874", - "data": { - "gtfs": { - "stop_id": "2874", - "stop_code": "32874", - "stop_name": "boul. Gareau et Joseph-Payette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et Joseph-Payette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4365780264909, - 45.5019538990579 - ] - } - }, - { - "id": "2934", - "code": "32934", - "data": { - "gtfs": { - "stop_id": "2934", - "stop_code": "32934", - "stop_name": "boul. Gareau et av. Thibault", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et av. Thibault", - "geography": { - "type": "Point", - "coordinates": [ - -73.4366351336886, - 45.5022666046595 - ] - } - }, - { - "id": "3999", - "code": "33999", - "data": { - "gtfs": { - "stop_id": "3999", - "stop_code": "33999", - "stop_name": "av. Thibault et boul. Gareau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Thibault et boul. Gareau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4369717292483, - 45.5023277219554 - ] - } - }, - { - "id": "4031", - "code": "34031", - "data": { - "gtfs": { - "stop_id": "4031", - "stop_code": "34031", - "stop_name": "av. Thibault et boul. Gareau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Thibault et boul. Gareau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4373114390867, - 45.5022733693957 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1816295076366 - }, - "name": "boul. Gareau et Joseph-Payette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.436944733, - 45.502140811 - ] - }, - "is_frozen": false, - "integer_id": 988, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.433822, - 45.502706 - ] - }, - "id": 989, - "properties": { - "id": "22b915c8-bf8d-4e3f-9fa4-f7abce5fa7bb", - "code": "32875", - "data": { - "stops": [ - { - "id": "2875", - "code": "32875", - "data": { - "gtfs": { - "stop_id": "2875", - "stop_code": "32875", - "stop_name": "boul. Gareau et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4338220144619, - 45.5027061360548 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1911807131922 - }, - "name": "boul. Gareau et Passage piétonnier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.433822014, - 45.502706136 - ] - }, - "is_frozen": false, - "integer_id": 989, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.43165, - 45.502991 - ] - }, - "id": 990, - "properties": { - "id": "3c0bf327-9e6c-4db5-9401-9cdab070b521", - "code": "32876", - "data": { - "stops": [ - { - "id": "2876", - "code": "32876", - "data": { - "gtfs": { - "stop_id": "2876", - "stop_code": "32876", - "stop_name": "boul. Gareau et Plante", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et Plante", - "geography": { - "type": "Point", - "coordinates": [ - -73.4316502347375, - 45.5029905169028 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1959854576714 - }, - "name": "boul. Gareau et Plante", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431650235, - 45.502990517 - ] - }, - "is_frozen": false, - "integer_id": 990, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.429989, - 45.503612 - ] - }, - "id": 991, - "properties": { - "id": "959a039b-3225-4812-af55-0e181302cf5d", - "code": "32877", - "data": { - "stops": [ - { - "id": "2877", - "code": "32877", - "data": { - "gtfs": { - "stop_id": "2877", - "stop_code": "32877", - "stop_name": "boul. Gareau et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4299889461003, - 45.5036124891984 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2064942042824 - }, - "name": "boul. Gareau et boul. Cousineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.429988946, - 45.503612489 - ] - }, - "is_frozen": false, - "integer_id": 991, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.426944, - 45.501271 - ] - }, - "id": 992, - "properties": { - "id": "2b273df9-aa5e-4062-ae81-92ee60a67a5c", - "code": "32878", - "data": { - "stops": [ - { - "id": "2878", - "code": "32878", - "data": { - "gtfs": { - "stop_id": "2878", - "stop_code": "32878", - "stop_name": "Perras et Petit", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Perras et Petit", - "geography": { - "type": "Point", - "coordinates": [ - -73.4271682035333, - 45.5012557299046 - ] - } - }, - { - "id": "2929", - "code": "32929", - "data": { - "gtfs": { - "stop_id": "2929", - "stop_code": "32929", - "stop_name": "Perras et Petit", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Perras et Petit", - "geography": { - "type": "Point", - "coordinates": [ - -73.4271282979706, - 45.500969660453 - ] - } - }, - { - "id": "2930", - "code": "32930", - "data": { - "gtfs": { - "stop_id": "2930", - "stop_code": "32930", - "stop_name": "Perras et Pasteur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Perras et Pasteur", - "geography": { - "type": "Point", - "coordinates": [ - -73.4267203572867, - 45.5015715431392 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1669278213448 - }, - "name": "Perras et Petit", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.42694428, - 45.501270602 - ] - }, - "is_frozen": false, - "integer_id": 992, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.42807, - 45.499794 - ] - }, - "id": 993, - "properties": { - "id": "450e4ca7-36c4-47db-b1ed-be5672eba5df", - "code": "32879", - "data": { - "stops": [ - { - "id": "2879", - "code": "32879", - "data": { - "gtfs": { - "stop_id": "2879", - "stop_code": "32879", - "stop_name": "Perras et civique 3170", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Perras et civique 3170", - "geography": { - "type": "Point", - "coordinates": [ - -73.4282110814519, - 45.499778053482 - ] - } - }, - { - "id": "4013", - "code": "34013", - "data": { - "gtfs": { - "stop_id": "4013", - "stop_code": "34013", - "stop_name": "Perras et civique 3153", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Perras et civique 3153", - "geography": { - "type": "Point", - "coordinates": [ - -73.4279295335765, - 45.4998093707191 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1419781467882 - }, - "name": "Perras et civique 3170", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.428070308, - 45.499793712 - ] - }, - "is_frozen": false, - "integer_id": 993, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.429017, - 45.49851 - ] - }, - "id": 994, - "properties": { - "id": "467e0f7f-f932-4d5e-ba82-9bb0389d7158", - "code": "32880", - "data": { - "stops": [ - { - "id": "2880", - "code": "32880", - "data": { - "gtfs": { - "stop_id": "2880", - "stop_code": "32880", - "stop_name": "Perras et place Perras", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Perras et place Perras", - "geography": { - "type": "Point", - "coordinates": [ - -73.4290568167749, - 45.4985942238475 - ] - } - }, - { - "id": "2927", - "code": "32927", - "data": { - "gtfs": { - "stop_id": "2927", - "stop_code": "32927", - "stop_name": "Perras et place Perras", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Perras et place Perras", - "geography": { - "type": "Point", - "coordinates": [ - -73.4289765797052, - 45.4984263180339 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1202980572119 - }, - "name": "Perras et place Perras", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.429016698, - 45.498510271 - ] - }, - "is_frozen": false, - "integer_id": 994, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.430935, - 45.49851 - ] - }, - "id": 995, - "properties": { - "id": "747c9196-e225-4f37-90ad-0a4fef1b26af", - "code": "32881", - "data": { - "stops": [ - { - "id": "2881", - "code": "32881", - "data": { - "gtfs": { - "stop_id": "2881", - "stop_code": "32881", - "stop_name": "Perras et de Port-Royal", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Perras et de Port-Royal", - "geography": { - "type": "Point", - "coordinates": [ - -73.4308723290887, - 45.4986886876367 - ] - } - }, - { - "id": "2926", - "code": "32926", - "data": { - "gtfs": { - "stop_id": "2926", - "stop_code": "32926", - "stop_name": "de Port-Royal et Perras", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Port-Royal et Perras", - "geography": { - "type": "Point", - "coordinates": [ - -73.4309979385884, - 45.4983310225986 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1202910303113 - }, - "name": "Perras et de Port-Royal", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.430935134, - 45.498509855 - ] - }, - "is_frozen": false, - "integer_id": 995, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.431853, - 45.49437 - ] - }, - "id": 996, - "properties": { - "id": "f1d23184-1962-40c7-b052-f1f4b7010174", - "code": "32883", - "data": { - "stops": [ - { - "id": "2883", - "code": "32883", - "data": { - "gtfs": { - "stop_id": "2883", - "stop_code": "32883", - "stop_name": "Labrosse et tsse Labrosse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Labrosse et tsse Labrosse", - "geography": { - "type": "Point", - "coordinates": [ - -73.4318709270398, - 45.494491255003 - ] - } - }, - { - "id": "2924", - "code": "32924", - "data": { - "gtfs": { - "stop_id": "2924", - "stop_code": "32924", - "stop_name": "Labrosse et tsse Labrosse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Labrosse et tsse Labrosse", - "geography": { - "type": "Point", - "coordinates": [ - -73.4318350629011, - 45.4942490755789 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0503727160801 - }, - "name": "Labrosse et tsse Labrosse", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431852995, - 45.494370165 - ] - }, - "is_frozen": false, - "integer_id": 996, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.433551, - 45.493457 - ] - }, - "id": 997, - "properties": { - "id": "0de64186-5455-4222-b348-dab3af89fb3c", - "code": "32884", - "data": { - "stops": [ - { - "id": "2884", - "code": "32884", - "data": { - "gtfs": { - "stop_id": "2884", - "stop_code": "32884", - "stop_name": "Labrosse et de Lausanne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Labrosse et de Lausanne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4332832099654, - 45.4934399535349 - ] - } - }, - { - "id": "2923", - "code": "32923", - "data": { - "gtfs": { - "stop_id": "2923", - "stop_code": "32923", - "stop_name": "Labrosse et de Lausanne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Labrosse et de Lausanne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4338183886581, - 45.4934748683776 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0349585835979 - }, - "name": "Labrosse et de Lausanne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.433550799, - 45.493457411 - ] - }, - "is_frozen": false, - "integer_id": 997, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.435486, - 45.494092 - ] - }, - "id": 998, - "properties": { - "id": "648c28de-ca97-4dbf-950c-84a7af5578c7", - "code": "32885", - "data": { - "stops": [ - { - "id": "2885", - "code": "32885", - "data": { - "gtfs": { - "stop_id": "2885", - "stop_code": "32885", - "stop_name": "Labrosse et Limbourg", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Labrosse et Limbourg", - "geography": { - "type": "Point", - "coordinates": [ - -73.4353216763585, - 45.4941223154093 - ] - } - }, - { - "id": "2922", - "code": "32922", - "data": { - "gtfs": { - "stop_id": "2922", - "stop_code": "32922", - "stop_name": "Labrosse et Limbourg", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Labrosse et Limbourg", - "geography": { - "type": "Point", - "coordinates": [ - -73.4356509841092, - 45.4940621029326 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0456786558718 - }, - "name": "Labrosse et Limbourg", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.43548633, - 45.494092209 - ] - }, - "is_frozen": false, - "integer_id": 998, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437402, - 45.49459 - ] - }, - "id": 999, - "properties": { - "id": "20955fbd-1587-4ce3-bc7b-59e84c9c964d", - "code": "32886", - "data": { - "stops": [ - { - "id": "2886", - "code": "32886", - "data": { - "gtfs": { - "stop_id": "2886", - "stop_code": "32886", - "stop_name": "Labrosse et Labelle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Labrosse et Labelle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4372718044794, - 45.4946587770707 - ] - } - }, - { - "id": "2921", - "code": "32921", - "data": { - "gtfs": { - "stop_id": "2921", - "stop_code": "32921", - "stop_name": "Labelle et Labrosse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Labelle et Labrosse", - "geography": { - "type": "Point", - "coordinates": [ - -73.4375312730638, - 45.4945204728044 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0540789571673 - }, - "name": "Labrosse et Labelle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437401539, - 45.494589625 - ] - }, - "is_frozen": false, - "integer_id": 999, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.438363, - 45.493538 - ] - }, - "id": 1000, - "properties": { - "id": "3437d9a1-68b8-4d3b-8599-7f7b86a577b8", - "code": "32887", - "data": { - "stops": [ - { - "id": "2887", - "code": "32887", - "data": { - "gtfs": { - "stop_id": "2887", - "stop_code": "32887", - "stop_name": "Labelle et boul. Kimber", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Labelle et boul. Kimber", - "geography": { - "type": "Point", - "coordinates": [ - -73.4386156955795, - 45.4933438571536 - ] - } - }, - { - "id": "2920", - "code": "32920", - "data": { - "gtfs": { - "stop_id": "2920", - "stop_code": "32920", - "stop_name": "Labelle et Loiselle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Labelle et Loiselle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4381101826888, - 45.493732971413 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0363264917364 - }, - "name": "Labelle et boul. Kimber", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438362939, - 45.493538414 - ] - }, - "is_frozen": false, - "integer_id": 1000, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440838, - 45.494394 - ] - }, - "id": 1001, - "properties": { - "id": "f5c53aa7-466b-4eea-b3e2-5399d8d7f806", - "code": "32888", - "data": { - "stops": [ - { - "id": "2888", - "code": "32888", - "data": { - "gtfs": { - "stop_id": "2888", - "stop_code": "32888", - "stop_name": "boul. Kimber et civique 4938", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et civique 4938", - "geography": { - "type": "Point", - "coordinates": [ - -73.4407186004514, - 45.4944072630506 - ] - } - }, - { - "id": "2919", - "code": "32919", - "data": { - "gtfs": { - "stop_id": "2919", - "stop_code": "32919", - "stop_name": "boul. Kimber et civique 4934", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et civique 4934", - "geography": { - "type": "Point", - "coordinates": [ - -73.4409577853682, - 45.4943801927308 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0507706460367 - }, - "name": "boul. Kimber et civique 4938", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440838193, - 45.494393728 - ] - }, - "is_frozen": false, - "integer_id": 1001, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445745, - 45.49714 - ] - }, - "id": 1002, - "properties": { - "id": "e9e722ad-a155-4750-9a2a-a126be84e7ec", - "code": "32889", - "data": { - "stops": [ - { - "id": "2889", - "code": "32889", - "data": { - "gtfs": { - "stop_id": "2889", - "stop_code": "32889", - "stop_name": "boul. Kimber et boul. Losch", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et boul. Losch", - "geography": { - "type": "Point", - "coordinates": [ - -73.4455419594756, - 45.4971375905968 - ] - } - }, - { - "id": "2917", - "code": "32917", - "data": { - "gtfs": { - "stop_id": "2917", - "stop_code": "32917", - "stop_name": "boul. Kimber et boul. Losch", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et boul. Losch", - "geography": { - "type": "Point", - "coordinates": [ - -73.4459490028107, - 45.4971422831444 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0971517749852 - }, - "name": "boul. Kimber et boul. Losch", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445745481, - 45.497139937 - ] - }, - "is_frozen": false, - "integer_id": 1002, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455859, - 45.493566 - ] - }, - "id": 1003, - "properties": { - "id": "31cd9a31-1ee8-4458-8681-91c1c006b9aa", - "code": "32894", - "data": { - "stops": [ - { - "id": "2894", - "code": "32894", - "data": { - "gtfs": { - "stop_id": "2894", - "stop_code": "32894", - "stop_name": "8e Avenue et Robillard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "8e Avenue et Robillard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4557624675882, - 45.4935406789173 - ] - } - }, - { - "id": "2915", - "code": "32915", - "data": { - "gtfs": { - "stop_id": "2915", - "stop_code": "32915", - "stop_name": "Robillard et 8e Avenue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Robillard et 8e Avenue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4558826768216, - 45.4936610301207 - ] - } - }, - { - "id": "5762", - "code": "30531", - "data": { - "gtfs": { - "stop_id": "5762", - "stop_code": "30531", - "stop_name": "Robillard et 8e Avenue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Robillard et 8e Avenue", - "geography": { - "type": "Point", - "coordinates": [ - -73.4559562895052, - 45.4934707117144 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0367901629713 - }, - "name": "8e Avenue et Robillard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455859379, - 45.493565871 - ] - }, - "is_frozen": false, - "integer_id": 1003, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453227, - 45.495568 - ] - }, - "id": 1004, - "properties": { - "id": "c335387f-3250-40f6-a22d-cdf683517398", - "code": "32895", - "data": { - "stops": [ - { - "id": "2895", - "code": "32895", - "data": { - "gtfs": { - "stop_id": "2895", - "stop_code": "32895", - "stop_name": "7e Avenue et Murray", - "location_type": 0, - "parent_station": "" - } - }, - "name": "7e Avenue et Murray", - "geography": { - "type": "Point", - "coordinates": [ - -73.4533869297264, - 45.4958002935446 - ] - } - }, - { - "id": "2914", - "code": "32914", - "data": { - "gtfs": { - "stop_id": "2914", - "stop_code": "32914", - "stop_name": "7e Avenue et Robillard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "7e Avenue et Robillard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4530667267553, - 45.4953351553383 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0705976167321 - }, - "name": "7e Avenue et Murray", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453226828, - 45.495567724 - ] - }, - "is_frozen": false, - "integer_id": 1004, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450161, - 45.497913 - ] - }, - "id": 1005, - "properties": { - "id": "f46c44d6-0823-444d-9902-d03499774c08", - "code": "32896", - "data": { - "stops": [ - { - "id": "2896", - "code": "32896", - "data": { - "gtfs": { - "stop_id": "2896", - "stop_code": "32896", - "stop_name": "Murray et Montgomery", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Murray et Montgomery", - "geography": { - "type": "Point", - "coordinates": [ - -73.4504784176006, - 45.4976474581846 - ] - } - }, - { - "id": "2913", - "code": "32913", - "data": { - "gtfs": { - "stop_id": "2913", - "stop_code": "32913", - "stop_name": "Montgomery et Murray", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montgomery et Murray", - "geography": { - "type": "Point", - "coordinates": [ - -73.4504221385203, - 45.4980441560307 - ] - } - }, - { - "id": "5670", - "code": "30438", - "data": { - "gtfs": { - "stop_id": "5670", - "stop_code": "30438", - "stop_name": "Murray et Montgomery", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Murray et Montgomery", - "geography": { - "type": "Point", - "coordinates": [ - -73.4498429956954, - 45.4981785072419 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1102090730105 - }, - "name": "Murray et Montgomery", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450160707, - 45.497912983 - ] - }, - "is_frozen": false, - "integer_id": 1005, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462897, - 45.49595 - ] - }, - "id": 1006, - "properties": { - "id": "bfc273c8-ec5d-4e76-b6a3-3d443d9f65a2", - "code": "32898", - "data": { - "stops": [ - { - "id": "2898", - "code": "32898", - "data": { - "gtfs": { - "stop_id": "2898", - "stop_code": "32898", - "stop_name": "Montgomery et Lionel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montgomery et Lionel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4628405857623, - 45.496082711717 - ] - } - }, - { - "id": "2907", - "code": "32907", - "data": { - "gtfs": { - "stop_id": "2907", - "stop_code": "32907", - "stop_name": "Montgomery et Lionel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montgomery et Lionel", - "geography": { - "type": "Point", - "coordinates": [ - -73.462954315475, - 45.4958169049999 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0770506870285 - }, - "name": "Montgomery et Lionel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462897451, - 45.495949808 - ] - }, - "is_frozen": false, - "integer_id": 1006, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.470264, - 45.489791 - ] - }, - "id": 1007, - "properties": { - "id": "d5196968-9845-4e31-966a-0ac0f5f77b83", - "code": "32901", - "data": { - "stops": [ - { - "id": "2901", - "code": "32901", - "data": { - "gtfs": { - "stop_id": "2901", - "stop_code": "32901", - "stop_name": "Régent et Mance", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Régent et Mance", - "geography": { - "type": "Point", - "coordinates": [ - -73.4702565250695, - 45.4899119493419 - ] - } - }, - { - "id": "2904", - "code": "32904", - "data": { - "gtfs": { - "stop_id": "2904", - "stop_code": "32904", - "stop_name": "Régent et Mance", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Régent et Mance", - "geography": { - "type": "Point", - "coordinates": [ - -73.4702723325138, - 45.4896693264162 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9730434244625 - }, - "name": "Régent et Mance", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.470264429, - 45.489790638 - ] - }, - "is_frozen": false, - "integer_id": 1007, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.471381, - 45.488819 - ] - }, - "id": 1008, - "properties": { - "id": "e089008c-4123-4897-95b5-a61e5e049f48", - "code": "32902", - "data": { - "stops": [ - { - "id": "2902", - "code": "32902", - "data": { - "gtfs": { - "stop_id": "2902", - "stop_code": "32902", - "stop_name": "Régent et de Mont-Royal", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Régent et de Mont-Royal", - "geography": { - "type": "Point", - "coordinates": [ - -73.4714000451406, - 45.489054119319 - ] - } - }, - { - "id": "2903", - "code": "32903", - "data": { - "gtfs": { - "stop_id": "2903", - "stop_code": "32903", - "stop_name": "Régent et boul. Taschereau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Régent et boul. Taschereau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4712541796422, - 45.4889317199484 - ] - } - }, - { - "id": "3941", - "code": "33941", - "data": { - "gtfs": { - "stop_id": "3941", - "stop_code": "33941", - "stop_name": "boul. Taschereau et Régent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Régent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4715075838832, - 45.4885844917468 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9566440372063 - }, - "name": "Régent et de Mont-Royal", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.471380882, - 45.488819306 - ] - }, - "is_frozen": false, - "integer_id": 1008, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44296, - 45.495469 - ] - }, - "id": 1009, - "properties": { - "id": "a03c8e5e-b707-45da-b2b1-2e8109893679", - "code": "32918", - "data": { - "stops": [ - { - "id": "2918", - "code": "32918", - "data": { - "gtfs": { - "stop_id": "2918", - "stop_code": "32918", - "stop_name": "boul. Kimber et boul. Gareau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et boul. Gareau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4429601108449, - 45.4954689041406 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.068928653021 - }, - "name": "boul. Kimber et boul. Gareau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442960111, - 45.495468904 - ] - }, - "is_frozen": false, - "integer_id": 1009, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.431412, - 45.503343 - ] - }, - "id": 1010, - "properties": { - "id": "175e7e04-90a9-48d6-93fb-0788b2b7dc79", - "code": "32932", - "data": { - "stops": [ - { - "id": "2932", - "code": "32932", - "data": { - "gtfs": { - "stop_id": "2932", - "stop_code": "32932", - "stop_name": "boul. Gareau et Plante", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et Plante", - "geography": { - "type": "Point", - "coordinates": [ - -73.4314122226234, - 45.5033427203719 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2019361850121 - }, - "name": "boul. Gareau et Plante", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431412223, - 45.50334272 - ] - }, - "is_frozen": false, - "integer_id": 1010, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.433788, - 45.50298 - ] - }, - "id": 1011, - "properties": { - "id": "cb99f0c8-b0c6-47e9-9827-66190161063b", - "code": "32933", - "data": { - "stops": [ - { - "id": "2933", - "code": "32933", - "data": { - "gtfs": { - "stop_id": "2933", - "stop_code": "32933", - "stop_name": "boul. Gareau et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4337875033793, - 45.502980364827 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1958139338415 - }, - "name": "boul. Gareau et Passage piétonnier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.433787503, - 45.502980365 - ] - }, - "is_frozen": false, - "integer_id": 1011, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439907, - 45.49953 - ] - }, - "id": 1012, - "properties": { - "id": "2eba5ff6-a088-4286-aafa-5c6b0646f734", - "code": "32935", - "data": { - "stops": [ - { - "id": "2935", - "code": "32935", - "data": { - "gtfs": { - "stop_id": "2935", - "stop_code": "32935", - "stop_name": "boul. Gareau et boul. Davis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et boul. Davis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4399066619085, - 45.4995303381401 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1375290717557 - }, - "name": "boul. Gareau et boul. Davis", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439906662, - 45.499530338 - ] - }, - "is_frozen": false, - "integer_id": 1012, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442385, - 45.495955 - ] - }, - "id": 1013, - "properties": { - "id": "280e5a85-9e1a-4b2a-8fde-6cc3d439dfe9", - "code": "32937", - "data": { - "stops": [ - { - "id": "2937", - "code": "32937", - "data": { - "gtfs": { - "stop_id": "2937", - "stop_code": "32937", - "stop_name": "boul. Gareau et boul. Kimber", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et boul. Kimber", - "geography": { - "type": "Point", - "coordinates": [ - -73.4423853815047, - 45.4959550147894 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0771386296792 - }, - "name": "boul. Gareau et boul. Kimber", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442385382, - 45.495955015 - ] - }, - "is_frozen": false, - "integer_id": 1013, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448588, - 45.61849 - ] - }, - "id": 1014, - "properties": { - "id": "fe768f5e-31ce-413a-b9fa-a7bf91a912eb", - "code": "32938", - "data": { - "stops": [ - { - "id": "2938", - "code": "32938", - "data": { - "gtfs": { - "stop_id": "2938", - "stop_code": "32938", - "stop_name": "boul. du Fort-Saint-Louis et De Varennes sud", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et De Varennes sud", - "geography": { - "type": "Point", - "coordinates": [ - -73.4485878525848, - 45.6184898278935 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.1533636744894 - }, - "name": "boul. du Fort-Saint-Louis et De Varennes sud", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448587853, - 45.618489828 - ] - }, - "is_frozen": false, - "integer_id": 1014, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456431, - 45.611806 - ] - }, - "id": 1015, - "properties": { - "id": "204b558a-c106-4589-888d-4bd6528787b5", - "code": "32939", - "data": { - "stops": [ - { - "id": "2939", - "code": "32939", - "data": { - "gtfs": { - "stop_id": "2939", - "stop_code": "32939", - "stop_name": "boul. Marie-Victorin et Louis-H.-La Fontaine nord", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Louis-H.-La Fontaine nord", - "geography": { - "type": "Point", - "coordinates": [ - -73.4563532382431, - 45.611729748518 - ] - } - }, - { - "id": "3869", - "code": "33869", - "data": { - "gtfs": { - "stop_id": "3869", - "stop_code": "33869", - "stop_name": "boul. Marie-Victorin et Louis-H.-La Fontaine nord", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Louis-H.-La Fontaine nord", - "geography": { - "type": "Point", - "coordinates": [ - -73.4565084491443, - 45.611881425664 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.0397599512157 - }, - "name": "boul. Marie-Victorin et Louis-H.-La Fontaine nord", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456430844, - 45.611805587 - ] - }, - "is_frozen": false, - "integer_id": 1015, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437525, - 45.55133 - ] - }, - "id": 1016, - "properties": { - "id": "b1e0c9f3-01ed-4b74-ab1d-f413050d3022", - "code": "32941", - "data": { - "stops": [ - { - "id": "2941", - "code": "32941", - "data": { - "gtfs": { - "stop_id": "2941", - "stop_code": "32941", - "stop_name": "ch. Du Tremblay et Maurice-Savoie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Maurice-Savoie", - "geography": { - "type": "Point", - "coordinates": [ - -73.437601383143, - 45.5514100990904 - ] - } - }, - { - "id": "4071", - "code": "34071", - "data": { - "gtfs": { - "stop_id": "4071", - "stop_code": "34071", - "stop_name": "ch. Du Tremblay et Maurice-Savoie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Maurice-Savoie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4374481038679, - 45.5512496933892 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.013747928724 - }, - "name": "ch. Du Tremblay et Maurice-Savoie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437524744, - 45.551329896 - ] - }, - "is_frozen": false, - "integer_id": 1016, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440816, - 45.465756 - ] - }, - "id": 1017, - "properties": { - "id": "596478dc-5795-41d8-b76f-e8b99c5314f6", - "code": "32944", - "data": { - "stops": [ - { - "id": "2944", - "code": "32944", - "data": { - "gtfs": { - "stop_id": "2944", - "stop_code": "32944", - "stop_name": "av. Bienvenue et av. Baudelaire", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienvenue et av. Baudelaire", - "geography": { - "type": "Point", - "coordinates": [ - -73.4408157209786, - 45.4657561100834 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5675051757479 - }, - "name": "av. Bienvenue et av. Baudelaire", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440815721, - 45.46575611 - ] - }, - "is_frozen": false, - "integer_id": 1017, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.365336, - 45.477999 - ] - }, - "id": 1018, - "properties": { - "id": "d4214201-daf1-434d-b42f-8c8d41dcb39c", - "code": "32946", - "data": { - "stops": [ - { - "id": "2946", - "code": "32946", - "data": { - "gtfs": { - "stop_id": "2946", - "stop_code": "32946", - "stop_name": "ch. de Chambly et Boileau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Boileau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3654047004762, - 45.477936722678 - ] - } - }, - { - "id": "2967", - "code": "32967", - "data": { - "gtfs": { - "stop_id": "2967", - "stop_code": "32967", - "stop_name": "ch. de Chambly et Boileau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Boileau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3652665393575, - 45.478060387749 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7740096786159 - }, - "name": "ch. de Chambly et Boileau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.36533562, - 45.477998555 - ] - }, - "is_frozen": false, - "integer_id": 1018, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.358901, - 45.474997 - ] - }, - "id": 1019, - "properties": { - "id": "8a9ec4a8-34de-402b-ac5c-aa964c85104b", - "code": "32947", - "data": { - "stops": [ - { - "id": "2947", - "code": "32947", - "data": { - "gtfs": { - "stop_id": "2947", - "stop_code": "32947", - "stop_name": "ch. de Chambly et montée Daniel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et montée Daniel", - "geography": { - "type": "Point", - "coordinates": [ - -73.3590045045048, - 45.4749450400973 - ] - } - }, - { - "id": "2966", - "code": "32966", - "data": { - "gtfs": { - "stop_id": "2966", - "stop_code": "32966", - "stop_name": "ch. de Chambly et montée Daniel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et montée Daniel", - "geography": { - "type": "Point", - "coordinates": [ - -73.358797605013, - 45.4750485738391 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7233641341188 - }, - "name": "ch. de Chambly et montée Daniel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.358901055, - 45.474996807 - ] - }, - "is_frozen": false, - "integer_id": 1019, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.355145, - 45.472758 - ] - }, - "id": 1020, - "properties": { - "id": "e66f2736-29ec-4b36-b206-47f7af7309b0", - "code": "32948", - "data": { - "stops": [ - { - "id": "2948", - "code": "32948", - "data": { - "gtfs": { - "stop_id": "2948", - "stop_code": "32948", - "stop_name": "ch. de Chambly et Gagnon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Gagnon", - "geography": { - "type": "Point", - "coordinates": [ - -73.3549072023263, - 45.4724701340804 - ] - } - }, - { - "id": "2965", - "code": "32965", - "data": { - "gtfs": { - "stop_id": "2965", - "stop_code": "32965", - "stop_name": "ch. de Chambly et Gagnon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Gagnon", - "geography": { - "type": "Point", - "coordinates": [ - -73.3553837404539, - 45.4730466410154 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6856026999207 - }, - "name": "ch. de Chambly et Gagnon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.355145471, - 45.472758388 - ] - }, - "is_frozen": false, - "integer_id": 1020, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.351423, - 45.470284 - ] - }, - "id": 1021, - "properties": { - "id": "4dd490ae-1643-4ca9-948e-eb5c251b5754", - "code": "32949", - "data": { - "stops": [ - { - "id": "2949", - "code": "32949", - "data": { - "gtfs": { - "stop_id": "2949", - "stop_code": "32949", - "stop_name": "ch. de Chambly et Doyon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Doyon", - "geography": { - "type": "Point", - "coordinates": [ - -73.3515081965718, - 45.4702212534156 - ] - } - }, - { - "id": "2964", - "code": "32964", - "data": { - "gtfs": { - "stop_id": "2964", - "stop_code": "32964", - "stop_name": "ch. de Chambly et Doyon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Doyon", - "geography": { - "type": "Point", - "coordinates": [ - -73.3513375489041, - 45.4703462075442 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6438611668243 - }, - "name": "ch. de Chambly et Doyon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.351422873, - 45.47028373 - ] - }, - "is_frozen": false, - "integer_id": 1021, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.34938, - 45.468547 - ] - }, - "id": 1022, - "properties": { - "id": "387ad44c-0d6a-4a89-821b-3e0834eed8e2", - "code": "32950", - "data": { - "stops": [ - { - "id": "2950", - "code": "32950", - "data": { - "gtfs": { - "stop_id": "2950", - "stop_code": "32950", - "stop_name": "Pacific et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.3495496815334, - 45.4684190226183 - ] - } - }, - { - "id": "2963", - "code": "32963", - "data": { - "gtfs": { - "stop_id": "2963", - "stop_code": "32963", - "stop_name": "Pacific et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.3492100301201, - 45.4686755121066 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.614574456342 - }, - "name": "Pacific et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.349379856, - 45.468547267 - ] - }, - "is_frozen": false, - "integer_id": 1022, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.351145, - 45.466108 - ] - }, - "id": 1023, - "properties": { - "id": "b966dc8d-04a6-41da-9b2d-4c18b27bb13f", - "code": "32951", - "data": { - "stops": [ - { - "id": "2951", - "code": "32951", - "data": { - "gtfs": { - "stop_id": "2951", - "stop_code": "32951", - "stop_name": "Pacific et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3513037486787, - 45.4660765763984 - ] - } - }, - { - "id": "2962", - "code": "32962", - "data": { - "gtfs": { - "stop_id": "2962", - "stop_code": "32962", - "stop_name": "Pacific et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3509854776313, - 45.4661391510691 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5734366745805 - }, - "name": "Pacific et boul. Cousineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.351144613, - 45.466107864 - ] - }, - "is_frozen": false, - "integer_id": 1023, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.351685, - 45.465416 - ] - }, - "id": 1024, - "properties": { - "id": "e9563d31-b4cc-432d-bbf1-a6ee47aee4e9", - "code": "32952", - "data": { - "stops": [ - { - "id": "2952", - "code": "32952", - "data": { - "gtfs": { - "stop_id": "2952", - "stop_code": "32952", - "stop_name": "Pacific et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3518621996241, - 45.4654024152689 - ] - } - }, - { - "id": "2961", - "code": "32961", - "data": { - "gtfs": { - "stop_id": "2961", - "stop_code": "32961", - "stop_name": "Pacific et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3515080612179, - 45.4654289509215 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.561764784568 - }, - "name": "Pacific et boul. Cousineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.35168513, - 45.465415683 - ] - }, - "is_frozen": false, - "integer_id": 1024, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.35297, - 45.463855 - ] - }, - "id": 1025, - "properties": { - "id": "67c19007-add6-4dc0-8788-d8052cdf5468", - "code": "32953", - "data": { - "stops": [ - { - "id": "2953", - "code": "32953", - "data": { - "gtfs": { - "stop_id": "2953", - "stop_code": "32953", - "stop_name": "Pacific et civique 3170", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et civique 3170", - "geography": { - "type": "Point", - "coordinates": [ - -73.3529702184375, - 45.4638549958977 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5354492880451 - }, - "name": "Pacific et civique 3170", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.352970218, - 45.463854996 - ] - }, - "is_frozen": false, - "integer_id": 1025, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.357749, - 45.457532 - ] - }, - "id": 1026, - "properties": { - "id": "584e7592-5868-423c-a0f3-f7047fcc0c94", - "code": "32954", - "data": { - "stops": [ - { - "id": "2954", - "code": "32954", - "data": { - "gtfs": { - "stop_id": "2954", - "stop_code": "32954", - "stop_name": "Pacific et civique 3600", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et civique 3600", - "geography": { - "type": "Point", - "coordinates": [ - -73.3577493043033, - 45.4575317147045 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4288515212062 - }, - "name": "Pacific et civique 3600", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.357749304, - 45.457531715 - ] - }, - "is_frozen": false, - "integer_id": 1026, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.35517, - 45.46084 - ] - }, - "id": 1027, - "properties": { - "id": "6879e62e-b2af-404b-9ac0-810ced89b9c5", - "code": "32955", - "data": { - "stops": [ - { - "id": "2955", - "code": "32955", - "data": { - "gtfs": { - "stop_id": "2955", - "stop_code": "32955", - "stop_name": "Pacific et civique 3364", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et civique 3364", - "geography": { - "type": "Point", - "coordinates": [ - -73.3551703986787, - 45.4608399220239 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4846167939327 - }, - "name": "Pacific et civique 3364", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.355170399, - 45.460839922 - ] - }, - "is_frozen": false, - "integer_id": 1027, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.360226, - 45.453955 - ] - }, - "id": 1028, - "properties": { - "id": "ffb2037a-ed82-4fd2-9ba4-9740ffc9fc74", - "code": "32956", - "data": { - "stops": [ - { - "id": "2956", - "code": "32956", - "data": { - "gtfs": { - "stop_id": "2956", - "stop_code": "32956", - "stop_name": "Pacific et civique 3800", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et civique 3800", - "geography": { - "type": "Point", - "coordinates": [ - -73.360335279944, - 45.4539179205483 - ] - } - }, - { - "id": "2957", - "code": "32957", - "data": { - "gtfs": { - "stop_id": "2957", - "stop_code": "32957", - "stop_name": "Pacific et civique 3795", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et civique 3795", - "geography": { - "type": "Point", - "coordinates": [ - -73.3601175933966, - 45.4539930598764 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.368579287352 - }, - "name": "Pacific et civique 3800", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.360226437, - 45.45395549 - ] - }, - "is_frozen": false, - "integer_id": 1028, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.357842, - 45.457039 - ] - }, - "id": 1029, - "properties": { - "id": "9fdbce5a-94e4-48ab-912d-f3a78f30abc3", - "code": "32958", - "data": { - "stops": [ - { - "id": "2958", - "code": "32958", - "data": { - "gtfs": { - "stop_id": "2958", - "stop_code": "32958", - "stop_name": "Pacific et civique 3605", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et civique 3605", - "geography": { - "type": "Point", - "coordinates": [ - -73.3578422107644, - 45.4570385333286 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4205389588909 - }, - "name": "Pacific et civique 3605", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.357842211, - 45.457038533 - ] - }, - "is_frozen": false, - "integer_id": 1029, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.355459, - 45.460129 - ] - }, - "id": 1030, - "properties": { - "id": "13b8a3e4-2729-40dc-9d31-6c29415c10b5", - "code": "32959", - "data": { - "stops": [ - { - "id": "2959", - "code": "32959", - "data": { - "gtfs": { - "stop_id": "2959", - "stop_code": "32959", - "stop_name": "Pacific et civique 3365", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et civique 3365", - "geography": { - "type": "Point", - "coordinates": [ - -73.3554593469125, - 45.4601286759969 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4726267526253 - }, - "name": "Pacific et civique 3365", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.355459347, - 45.460128676 - ] - }, - "is_frozen": false, - "integer_id": 1030, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.35283, - 45.463797 - ] - }, - "id": 1031, - "properties": { - "id": "13ce318e-8a74-454a-940f-02135b69457c", - "code": "32960", - "data": { - "stops": [ - { - "id": "2960", - "code": "32960", - "data": { - "gtfs": { - "stop_id": "2960", - "stop_code": "32960", - "stop_name": "Pacific et civique 3165", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et civique 3165", - "geography": { - "type": "Point", - "coordinates": [ - -73.3528299619856, - 45.4637974300905 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5344786812933 - }, - "name": "Pacific et civique 3165", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.352829962, - 45.46379743 - ] - }, - "is_frozen": false, - "integer_id": 1031, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.389994, - 45.481622 - ] - }, - "id": 1032, - "properties": { - "id": "f7cea010-bc23-4b23-9787-ee1c97385691", - "code": "32971", - "data": { - "stops": [ - { - "id": "2971", - "code": "32971", - "data": { - "gtfs": { - "stop_id": "2971", - "stop_code": "32971", - "stop_name": "boul. Cousineau et boul. Moïse-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et boul. Moïse-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.3899938518832, - 45.4816223958078 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8351618539432 - }, - "name": "boul. Cousineau et boul. Moïse-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.389993852, - 45.481622396 - ] - }, - "is_frozen": false, - "integer_id": 1032, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.389048, - 45.479606 - ] - }, - "id": 1033, - "properties": { - "id": "bbd5aca7-7e7b-4d06-8311-2cf48d52f004", - "code": "32972", - "data": { - "stops": [ - { - "id": "2972", - "code": "32972", - "data": { - "gtfs": { - "stop_id": "2972", - "stop_code": "32972", - "stop_name": "2e Rue et 1re Rue", - "location_type": 0, - "parent_station": "" - } - }, - "name": "2e Rue et 1re Rue", - "geography": { - "type": "Point", - "coordinates": [ - -73.3890478819902, - 45.4796061601519 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.801136510044 - }, - "name": "2e Rue et 1re Rue", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.389047882, - 45.47960616 - ] - }, - "is_frozen": false, - "integer_id": 1033, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.388917, - 45.475358 - ] - }, - "id": 1034, - "properties": { - "id": "ed4d769a-a729-464c-9950-c3c85c6236e8", - "code": "32974", - "data": { - "stops": [ - { - "id": "2974", - "code": "32974", - "data": { - "gtfs": { - "stop_id": "2974", - "stop_code": "32974", - "stop_name": "2e Rue et civique 3360", - "location_type": 0, - "parent_station": "" - } - }, - "name": "2e Rue et civique 3360", - "geography": { - "type": "Point", - "coordinates": [ - -73.3889169139204, - 45.4753583838387 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7294642435036 - }, - "name": "2e Rue et civique 3360", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.388916914, - 45.475358384 - ] - }, - "is_frozen": false, - "integer_id": 1034, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.390027, - 45.480351 - ] - }, - "id": 1035, - "properties": { - "id": "fa4f53a1-c17d-439f-ba32-89d994d23052", - "code": "32979", - "data": { - "stops": [ - { - "id": "2979", - "code": "32979", - "data": { - "gtfs": { - "stop_id": "2979", - "stop_code": "32979", - "stop_name": "2e Rue et boul. Moïse-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "2e Rue et boul. Moïse-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.3900269277462, - 45.4803512432433 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8137098679266 - }, - "name": "2e Rue et boul. Moïse-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.390026928, - 45.480351243 - ] - }, - "is_frozen": false, - "integer_id": 1035, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513439, - 45.524442 - ] - }, - "id": 1036, - "properties": { - "id": "7c2cb131-4fec-4986-8542-841b59b571c8", - "code": "32980", - "data": { - "stops": [ - { - "id": "2980", - "code": "32980", - "data": { - "gtfs": { - "stop_id": "2980", - "stop_code": "32980", - "stop_name": "Saint-Laurent ouest et Cartier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Cartier", - "geography": { - "type": "Point", - "coordinates": [ - -73.5132754967204, - 45.5245004790426 - ] - } - }, - { - "id": "3020", - "code": "33020", - "data": { - "gtfs": { - "stop_id": "3020", - "stop_code": "33020", - "stop_name": "Saint-Laurent ouest et Cartier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Cartier", - "geography": { - "type": "Point", - "coordinates": [ - -73.5136021761018, - 45.5243836000328 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5586261312752 - }, - "name": "Saint-Laurent ouest et Cartier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.513438836, - 45.52444204 - ] - }, - "is_frozen": false, - "integer_id": 1036, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513301, - 45.525999 - ] - }, - "id": 1037, - "properties": { - "id": "474f6d90-0342-4671-a3ab-be4a9490140d", - "code": "32981", - "data": { - "stops": [ - { - "id": "2981", - "code": "32981", - "data": { - "gtfs": { - "stop_id": "2981", - "stop_code": "32981", - "stop_name": "Saint-Laurent ouest et Duvernay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Duvernay", - "geography": { - "type": "Point", - "coordinates": [ - -73.5133014257595, - 45.5259987214126 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5849579708732 - }, - "name": "Saint-Laurent ouest et Duvernay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.513301426, - 45.525998721 - ] - }, - "is_frozen": false, - "integer_id": 1037, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.511698, - 45.530824 - ] - }, - "id": 1038, - "properties": { - "id": "a38bb101-9e0e-47dc-b58f-8ec1437b1704", - "code": "32983", - "data": { - "stops": [ - { - "id": "2983", - "code": "32983", - "data": { - "gtfs": { - "stop_id": "2983", - "stop_code": "32983", - "stop_name": "Saint-Laurent ouest et Jean-Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Jean-Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.5116561705177, - 45.5306960608368 - ] - } - }, - { - "id": "3018", - "code": "33018", - "data": { - "gtfs": { - "stop_id": "3018", - "stop_code": "33018", - "stop_name": "Saint-Laurent ouest et Jean-Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Jean-Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.5117394422195, - 45.5309525063193 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6665930890462 - }, - "name": "Saint-Laurent ouest et Jean-Béliveau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.511698, - 45.530824 - ] - }, - "is_frozen": false, - "integer_id": 1038, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.51033, - 45.532867 - ] - }, - "id": 1039, - "properties": { - "id": "71c8be20-aaf2-429f-a16b-1898198bf831", - "code": "32984", - "data": { - "stops": [ - { - "id": "2984", - "code": "32984", - "data": { - "gtfs": { - "stop_id": "2984", - "stop_code": "32984", - "stop_name": "Saint-Laurent ouest et boul. Quinn", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et boul. Quinn", - "geography": { - "type": "Point", - "coordinates": [ - -73.5103294940642, - 45.532686512473 - ] - } - }, - { - "id": "3017", - "code": "33017", - "data": { - "gtfs": { - "stop_id": "3017", - "stop_code": "33017", - "stop_name": "Saint-Laurent ouest et boul. Quinn", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et boul. Quinn", - "geography": { - "type": "Point", - "coordinates": [ - -73.5102615267666, - 45.5330464899152 - ] - } - }, - { - "id": "3022", - "code": "33022", - "data": { - "gtfs": { - "stop_id": "3022", - "stop_code": "33022", - "stop_name": "boul. Quinn et Saint-Laurent ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Quinn et Saint-Laurent ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.5105353773622, - 45.5328317698686 - ] - } - }, - { - "id": "3056", - "code": "33056", - "data": { - "gtfs": { - "stop_id": "3056", - "stop_code": "33056", - "stop_name": "boul. Quinn et Saint-Laurent ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Quinn et Saint-Laurent ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.5101243560212, - 45.5328713153371 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7011632616394 - }, - "name": "Saint-Laurent ouest et boul. Quinn", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.51033, - 45.532867 - ] - }, - "is_frozen": false, - "integer_id": 1039, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.509058, - 45.534702 - ] - }, - "id": 1040, - "properties": { - "id": "65c1dd37-3015-432d-9f39-899ad6f7cc49", - "code": "32985", - "data": { - "stops": [ - { - "id": "2985", - "code": "32985", - "data": { - "gtfs": { - "stop_id": "2985", - "stop_code": "32985", - "stop_name": "Saint-Laurent ouest et Guilbault", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Guilbault", - "geography": { - "type": "Point", - "coordinates": [ - -73.5090541841099, - 45.5345691856414 - ] - } - }, - { - "id": "3016", - "code": "33016", - "data": { - "gtfs": { - "stop_id": "3016", - "stop_code": "33016", - "stop_name": "Saint-Laurent ouest et Guilbault", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Guilbault", - "geography": { - "type": "Point", - "coordinates": [ - -73.5090626632536, - 45.5348355523193 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7322232258151 - }, - "name": "Saint-Laurent ouest et Guilbault", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.509058424, - 45.534702369 - ] - }, - "is_frozen": false, - "integer_id": 1040, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.508253, - 45.535778 - ] - }, - "id": 1041, - "properties": { - "id": "400be995-0bb4-471e-9c4c-3e3721339f13", - "code": "32986", - "data": { - "stops": [ - { - "id": "2986", - "code": "32986", - "data": { - "gtfs": { - "stop_id": "2986", - "stop_code": "32986", - "stop_name": "Saint-Laurent ouest et Saint-Jean", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Saint-Jean", - "geography": { - "type": "Point", - "coordinates": [ - -73.5082551035419, - 45.5356264747926 - ] - } - }, - { - "id": "3015", - "code": "33015", - "data": { - "gtfs": { - "stop_id": "3015", - "stop_code": "33015", - "stop_name": "Saint-Laurent ouest et Saint-Jean", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Saint-Jean", - "geography": { - "type": "Point", - "coordinates": [ - -73.5082501836789, - 45.5359289169471 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7504223888012 - }, - "name": "Saint-Laurent ouest et Saint-Jean", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.508252644, - 45.535777696 - ] - }, - "is_frozen": false, - "integer_id": 1041, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.506579, - 45.537659 - ] - }, - "id": 1042, - "properties": { - "id": "04ab1113-dedd-49f1-b83b-245bc43e1753", - "code": "32987", - "data": { - "stops": [ - { - "id": "2987", - "code": "32987", - "data": { - "gtfs": { - "stop_id": "2987", - "stop_code": "32987", - "stop_name": "Saint-Laurent ouest et Saint-Alexandre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Saint-Alexandre", - "geography": { - "type": "Point", - "coordinates": [ - -73.5066181239081, - 45.5375193297163 - ] - } - }, - { - "id": "3014", - "code": "33014", - "data": { - "gtfs": { - "stop_id": "3014", - "stop_code": "33014", - "stop_name": "Saint-Laurent ouest et Saint-Alexandre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Saint-Alexandre", - "geography": { - "type": "Point", - "coordinates": [ - -73.5065405310817, - 45.5377987733371 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7822655136309 - }, - "name": "Saint-Laurent ouest et Saint-Alexandre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.506579327, - 45.537659052 - ] - }, - "is_frozen": false, - "integer_id": 1042, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.505054, - 45.539263 - ] - }, - "id": 1043, - "properties": { - "id": "7f65f816-23ac-464f-829f-09002e2fc4f7", - "code": "32988", - "data": { - "stops": [ - { - "id": "2988", - "code": "32988", - "data": { - "gtfs": { - "stop_id": "2988", - "stop_code": "32988", - "stop_name": "Saint-Laurent ouest et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.5050538816673, - 45.5392630012287 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8094158449503 - }, - "name": "Saint-Laurent ouest et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.505053882, - 45.539263001 - ] - }, - "is_frozen": false, - "integer_id": 1043, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.503724, - 45.540521 - ] - }, - "id": 1044, - "properties": { - "id": "337549aa-ba36-4710-9a0e-ef42ab0adcd5", - "code": "32989", - "data": { - "stops": [ - { - "id": "2989", - "code": "32989", - "data": { - "gtfs": { - "stop_id": "2989", - "stop_code": "32989", - "stop_name": "Saint-Laurent est et Sainte-Marie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent est et Sainte-Marie", - "geography": { - "type": "Point", - "coordinates": [ - -73.5037240346814, - 45.5405211417006 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8307142285701 - }, - "name": "Saint-Laurent est et Sainte-Marie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.503724035, - 45.540521142 - ] - }, - "is_frozen": false, - "integer_id": 1044, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.502184, - 45.542001 - ] - }, - "id": 1045, - "properties": { - "id": "840bd1e4-f448-41f0-a87f-5dae42946219", - "code": "32990", - "data": { - "stops": [ - { - "id": "2990", - "code": "32990", - "data": { - "gtfs": { - "stop_id": "2990", - "stop_code": "32990", - "stop_name": "Saint-Laurent est et de Normandie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent est et de Normandie", - "geography": { - "type": "Point", - "coordinates": [ - -73.5021702094401, - 45.5418879216926 - ] - } - }, - { - "id": "3011", - "code": "33011", - "data": { - "gtfs": { - "stop_id": "3011", - "stop_code": "33011", - "stop_name": "de Normandie et Saint-Laurent est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Normandie et Saint-Laurent est", - "geography": { - "type": "Point", - "coordinates": [ - -73.5021982645252, - 45.5421131755181 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8557601103273 - }, - "name": "Saint-Laurent est et de Normandie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.502184237, - 45.542000549 - ] - }, - "is_frozen": false, - "integer_id": 1045, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.500795, - 45.544172 - ] - }, - "id": 1046, - "properties": { - "id": "038fb8b8-8fc5-42c2-a9eb-69fdd39d83de", - "code": "32991", - "data": { - "stops": [ - { - "id": "2991", - "code": "32991", - "data": { - "gtfs": { - "stop_id": "2991", - "stop_code": "32991", - "stop_name": "d'Anjou et d'Île-de-France", - "location_type": 0, - "parent_station": "" - } - }, - "name": "d'Anjou et d'Île-de-France", - "geography": { - "type": "Point", - "coordinates": [ - -73.5007952183717, - 45.5441719329438 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8925244752511 - }, - "name": "d'Anjou et d'Île-de-France", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.500795218, - 45.544171933 - ] - }, - "is_frozen": false, - "integer_id": 1046, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.499931, - 45.545057 - ] - }, - "id": 1047, - "properties": { - "id": "29cae4d6-53eb-4c22-9faf-214af53be38b", - "code": "32992", - "data": { - "stops": [ - { - "id": "2992", - "code": "32992", - "data": { - "gtfs": { - "stop_id": "2992", - "stop_code": "32992", - "stop_name": "d'Anjou et d'Auvergne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "d'Anjou et d'Auvergne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4996979505748, - 45.5450632278132 - ] - } - }, - { - "id": "3009", - "code": "33009", - "data": { - "gtfs": { - "stop_id": "3009", - "stop_code": "33009", - "stop_name": "d'Anjou et d'Auvergne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "d'Anjou et d'Auvergne", - "geography": { - "type": "Point", - "coordinates": [ - -73.5001631118763, - 45.5448906016831 - ] - } - }, - { - "id": "4884", - "code": "34884", - "data": { - "gtfs": { - "stop_id": "4884", - "stop_code": "34884", - "stop_name": "d'Auvergne et d'Anjou", - "location_type": 0, - "parent_station": "" - } - }, - "name": "d'Auvergne et d'Anjou", - "geography": { - "type": "Point", - "coordinates": [ - -73.4998287437477, - 45.5452238965666 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.907515237904 - }, - "name": "d'Anjou et d'Auvergne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.499930531, - 45.545057249 - ] - }, - "is_frozen": false, - "integer_id": 1047, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.496218, - 45.543124 - ] - }, - "id": 1048, - "properties": { - "id": "0266ed3c-e279-4178-b7ea-9f611780869a", - "code": "32993", - "data": { - "stops": [ - { - "id": "2993", - "code": "32993", - "data": { - "gtfs": { - "stop_id": "2993", - "stop_code": "32993", - "stop_name": "d'Auvergne et de Picardie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "d'Auvergne et de Picardie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4964390602918, - 45.5431649108668 - ] - } - }, - { - "id": "3008", - "code": "33008", - "data": { - "gtfs": { - "stop_id": "3008", - "stop_code": "33008", - "stop_name": "d'Auvergne et de Picardie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "d'Auvergne et de Picardie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4959965219396, - 45.5430829795822 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8747801454701 - }, - "name": "d'Auvergne et de Picardie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.496217791, - 45.543123945 - ] - }, - "is_frozen": false, - "integer_id": 1048, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492449, - 45.540859 - ] - }, - "id": 1049, - "properties": { - "id": "c1b679f5-d94a-4515-826d-dd0fd3e8ca0c", - "code": "32994", - "data": { - "stops": [ - { - "id": "2994", - "code": "32994", - "data": { - "gtfs": { - "stop_id": "2994", - "stop_code": "32994", - "stop_name": "d'Auvergne et De Gentilly est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "d'Auvergne et De Gentilly est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4923582025991, - 45.5406941654385 - ] - } - }, - { - "id": "4413", - "code": "34413", - "data": { - "gtfs": { - "stop_id": "4413", - "stop_code": "34413", - "stop_name": "d'Auvergne et De Gentilly est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "d'Auvergne et De Gentilly est", - "geography": { - "type": "Point", - "coordinates": [ - -73.492539151349, - 45.5410234196753 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8364303787599 - }, - "name": "d'Auvergne et De Gentilly est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492448677, - 45.540858793 - ] - }, - "is_frozen": false, - "integer_id": 1049, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.49009, - 45.541615 - ] - }, - "id": 1050, - "properties": { - "id": "e44b3c5f-74b7-4e0a-acc8-bc0a05baf09f", - "code": "32995", - "data": { - "stops": [ - { - "id": "2995", - "code": "32995", - "data": { - "gtfs": { - "stop_id": "2995", - "stop_code": "32995", - "stop_name": "Bellerive et De Gentilly est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellerive et De Gentilly est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4900902974016, - 45.5416149536818 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8492319236127 - }, - "name": "Bellerive et De Gentilly est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490090297, - 45.541614954 - ] - }, - "is_frozen": false, - "integer_id": 1050, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.487913, - 45.543869 - ] - }, - "id": 1051, - "properties": { - "id": "b51729a5-1e80-46dd-9ed7-163c961e0d95", - "code": "32996", - "data": { - "stops": [ - { - "id": "2996", - "code": "32996", - "data": { - "gtfs": { - "stop_id": "2996", - "stop_code": "32996", - "stop_name": "Bellerive et Maple", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellerive et Maple", - "geography": { - "type": "Point", - "coordinates": [ - -73.4879130373091, - 45.5438693462115 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8874010301589 - }, - "name": "Bellerive et Maple", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.487913037, - 45.543869346 - ] - }, - "is_frozen": false, - "integer_id": 1051, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.485982, - 45.545858 - ] - }, - "id": 1052, - "properties": { - "id": "c4313974-2fe8-435a-a8ec-78bf1341b346", - "code": "32997", - "data": { - "stops": [ - { - "id": "2997", - "code": "32997", - "data": { - "gtfs": { - "stop_id": "2997", - "stop_code": "32997", - "stop_name": "Bellerive et Laviolette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellerive et Laviolette", - "geography": { - "type": "Point", - "coordinates": [ - -73.485982342051, - 45.5458580565241 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9210756570616 - }, - "name": "Bellerive et Laviolette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.485982342, - 45.545858057 - ] - }, - "is_frozen": false, - "integer_id": 1052, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.485575, - 45.547398 - ] - }, - "id": 1053, - "properties": { - "id": "1b5000a9-d080-4281-9d35-635cb0e911cd", - "code": "32998", - "data": { - "stops": [ - { - "id": "2998", - "code": "32998", - "data": { - "gtfs": { - "stop_id": "2998", - "stop_code": "32998", - "stop_name": "Bellerive et Le Caron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bellerive et Le Caron", - "geography": { - "type": "Point", - "coordinates": [ - -73.4855749959067, - 45.5473976983184 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.947148654563 - }, - "name": "Bellerive et Le Caron", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.485574996, - 45.547397698 - ] - }, - "is_frozen": false, - "integer_id": 1053, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482699, - 45.545412 - ] - }, - "id": 1054, - "properties": { - "id": "e3a6e93e-902a-4799-a8c4-465418843387", - "code": "32999", - "data": { - "stops": [ - { - "id": "2999", - "code": "32999", - "data": { - "gtfs": { - "stop_id": "2999", - "stop_code": "32999", - "stop_name": "Le Caron et Francis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Caron et Francis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4826988731526, - 45.5454121874611 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9135254819392 - }, - "name": "Le Caron et Francis", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482698873, - 45.545412187 - ] - }, - "is_frozen": false, - "integer_id": 1054, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482246, - 45.544413 - ] - }, - "id": 1055, - "properties": { - "id": "2e76faaa-8ff2-48d3-89f2-a3a048b7ecca", - "code": "33000", - "data": { - "stops": [ - { - "id": "3000", - "code": "33000", - "data": { - "gtfs": { - "stop_id": "3000", - "stop_code": "33000", - "stop_name": "Forant et Fréchette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Forant et Fréchette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4822457687195, - 45.5444132995326 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8966113933831 - }, - "name": "Forant et Fréchette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482245769, - 45.5444133 - ] - }, - "is_frozen": false, - "integer_id": 1055, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.480657, - 45.543594 - ] - }, - "id": 1056, - "properties": { - "id": "cdc9ba38-1ba1-4c7e-a7a9-ae7024ff0e4d", - "code": "33001", - "data": { - "stops": [ - { - "id": "3001", - "code": "33001", - "data": { - "gtfs": { - "stop_id": "3001", - "stop_code": "33001", - "stop_name": "Forant et Fabre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Forant et Fabre", - "geography": { - "type": "Point", - "coordinates": [ - -73.480657313101, - 45.5435941903558 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8827421214936 - }, - "name": "Forant et Fabre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.480657313, - 45.54359419 - ] - }, - "is_frozen": false, - "integer_id": 1056, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479037, - 45.542789 - ] - }, - "id": 1057, - "properties": { - "id": "d7cbf513-910d-43ce-9c34-aa1e924c7d28", - "code": "33002", - "data": { - "stops": [ - { - "id": "3002", - "code": "33002", - "data": { - "gtfs": { - "stop_id": "3002", - "stop_code": "33002", - "stop_name": "Forant et Saint-Michel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Forant et Saint-Michel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4790368846951, - 45.5427885506611 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8691015262443 - }, - "name": "Forant et Saint-Michel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479036885, - 45.542788551 - ] - }, - "is_frozen": false, - "integer_id": 1057, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483987, - 45.542291 - ] - }, - "id": 1058, - "properties": { - "id": "46596ba7-53c7-438c-8206-a65ed3391683", - "code": "33005", - "data": { - "stops": [ - { - "id": "3005", - "code": "33005", - "data": { - "gtfs": { - "stop_id": "3005", - "stop_code": "33005", - "stop_name": "Maple et Fréchette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maple et Fréchette", - "geography": { - "type": "Point", - "coordinates": [ - -73.483987116829, - 45.5422908296471 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.860674702883 - }, - "name": "Maple et Fréchette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483987117, - 45.54229083 - ] - }, - "is_frozen": false, - "integer_id": 1058, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.501846, - 45.543504 - ] - }, - "id": 1059, - "properties": { - "id": "8634d456-175f-4ee5-a685-5738fae49ba8", - "code": "33010", - "data": { - "stops": [ - { - "id": "3010", - "code": "33010", - "data": { - "gtfs": { - "stop_id": "3010", - "stop_code": "33010", - "stop_name": "d'Anjou et Pratt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "d'Anjou et Pratt", - "geography": { - "type": "Point", - "coordinates": [ - -73.5018458499639, - 45.5435038524336 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8812125439534 - }, - "name": "d'Anjou et Pratt", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.50184585, - 45.543503852 - ] - }, - "is_frozen": false, - "integer_id": 1059, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513623, - 45.526454 - ] - }, - "id": 1060, - "properties": { - "id": "5c162246-d3ef-4a9f-b99a-0c101155442e", - "code": "33019", - "data": { - "stops": [ - { - "id": "3019", - "code": "33019", - "data": { - "gtfs": { - "stop_id": "3019", - "stop_code": "33019", - "stop_name": "Saint-Laurent ouest et Duvernay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Duvernay", - "geography": { - "type": "Point", - "coordinates": [ - -73.5136234780666, - 45.5264538546 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5926571402464 - }, - "name": "Saint-Laurent ouest et Duvernay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.513623478, - 45.526453855 - ] - }, - "is_frozen": false, - "integer_id": 1060, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513096, - 45.533679 - ] - }, - "id": 1061, - "properties": { - "id": "7c6d588b-9971-4708-89a6-d92fb634eb39", - "code": "33021", - "data": { - "stops": [ - { - "id": "3021", - "code": "33021", - "data": { - "gtfs": { - "stop_id": "3021", - "stop_code": "33021", - "stop_name": "boul. Quinn et civique 136", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Quinn et civique 136", - "geography": { - "type": "Point", - "coordinates": [ - -73.5130963802449, - 45.5336788691471 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7149021566839 - }, - "name": "boul. Quinn et civique 136", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.51309638, - 45.533678869 - ] - }, - "is_frozen": false, - "integer_id": 1061, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.507865, - 45.532036 - ] - }, - "id": 1062, - "properties": { - "id": "2b80c3a0-2156-4dd8-b0cd-326bc34d2ed2", - "code": "33023", - "data": { - "stops": [ - { - "id": "3023", - "code": "33023", - "data": { - "gtfs": { - "stop_id": "3023", - "stop_code": "33023", - "stop_name": "boul. Quinn et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Quinn et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.5080943590879, - 45.5320034391287 - ] - } - }, - { - "id": "3055", - "code": "33055", - "data": { - "gtfs": { - "stop_id": "3055", - "stop_code": "33055", - "stop_name": "boul. Quinn et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Quinn et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.5076358689805, - 45.5320686540929 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6871012299393 - }, - "name": "boul. Quinn et Passage piétonnier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507865, - 45.532036 - ] - }, - "is_frozen": false, - "integer_id": 1062, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.501294, - 45.529804 - ] - }, - "id": 1063, - "properties": { - "id": "9cff00e1-2ab5-4f6d-8e36-32c660c30d08", - "code": "33025", - "data": { - "stops": [ - { - "id": "3025", - "code": "33025", - "data": { - "gtfs": { - "stop_id": "3025", - "stop_code": "33025", - "stop_name": "boul. Quinn et De Gentilly ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Quinn et De Gentilly ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.5015499786378, - 45.5297996434788 - ] - } - }, - { - "id": "3053", - "code": "33053", - "data": { - "gtfs": { - "stop_id": "3053", - "stop_code": "33053", - "stop_name": "boul. Quinn et De Gentilly ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Quinn et De Gentilly ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.5010371941685, - 45.5298078216215 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6493347774518 - }, - "name": "boul. Quinn et De Gentilly ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.501294, - 45.529804 - ] - }, - "is_frozen": false, - "integer_id": 1063, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.49852, - 45.528891 - ] - }, - "id": 1064, - "properties": { - "id": "477ced41-131e-4c2f-8fce-4f1ed3d08b09", - "code": "33026", - "data": { - "stops": [ - { - "id": "3026", - "code": "33026", - "data": { - "gtfs": { - "stop_id": "3026", - "stop_code": "33026", - "stop_name": "boul. Quinn et Sainte-Catherine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Quinn et Sainte-Catherine", - "geography": { - "type": "Point", - "coordinates": [ - -73.4987257239093, - 45.5288621209691 - ] - } - }, - { - "id": "3052", - "code": "33052", - "data": { - "gtfs": { - "stop_id": "3052", - "stop_code": "33052", - "stop_name": "boul. Quinn et Sainte-Catherine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Quinn et Sainte-Catherine", - "geography": { - "type": "Point", - "coordinates": [ - -73.4983148814239, - 45.5289194614829 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6338876832704 - }, - "name": "boul. Quinn et Sainte-Catherine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.49852, - 45.528891 - ] - }, - "is_frozen": false, - "integer_id": 1064, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.496608, - 45.528246 - ] - }, - "id": 1065, - "properties": { - "id": "823b1092-4711-483c-9263-9ad04625e16e", - "code": "33027", - "data": { - "stops": [ - { - "id": "3027", - "code": "33027", - "data": { - "gtfs": { - "stop_id": "3027", - "stop_code": "33027", - "stop_name": "boul. Quinn et Bienville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Quinn et Bienville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4968097982288, - 45.5282162510887 - ] - } - }, - { - "id": "3051", - "code": "33051", - "data": { - "gtfs": { - "stop_id": "3051", - "stop_code": "33051", - "stop_name": "Labonté et Bienville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Labonté et Bienville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4964057614715, - 45.5282760324948 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6229753428601 - }, - "name": "boul. Quinn et Bienville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.496608, - 45.528246 - ] - }, - "is_frozen": false, - "integer_id": 1065, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494126, - 45.528865 - ] - }, - "id": 1066, - "properties": { - "id": "b9fb2a74-12ac-47e5-aa61-be591a0ecc88", - "code": "33028", - "data": { - "stops": [ - { - "id": "3028", - "code": "33028", - "data": { - "gtfs": { - "stop_id": "3028", - "stop_code": "33028", - "stop_name": "Leblanc ouest et McGill", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Leblanc ouest et McGill", - "geography": { - "type": "Point", - "coordinates": [ - -73.4940816998461, - 45.5287348536176 - ] - } - }, - { - "id": "3050", - "code": "33050", - "data": { - "gtfs": { - "stop_id": "3050", - "stop_code": "33050", - "stop_name": "Leblanc ouest et McGill", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Leblanc ouest et McGill", - "geography": { - "type": "Point", - "coordinates": [ - -73.4941700899542, - 45.5289958114555 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6334477988089 - }, - "name": "Leblanc ouest et McGill", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494126, - 45.528865 - ] - }, - "is_frozen": false, - "integer_id": 1066, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.493112, - 45.530145 - ] - }, - "id": 1067, - "properties": { - "id": "26271fe7-0782-47bf-8004-074c0d15a687", - "code": "33029", - "data": { - "stops": [ - { - "id": "3029", - "code": "33029", - "data": { - "gtfs": { - "stop_id": "3029", - "stop_code": "33029", - "stop_name": "Leblanc ouest et Brébeuf", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Leblanc ouest et Brébeuf", - "geography": { - "type": "Point", - "coordinates": [ - -73.4931928205145, - 45.5300717729805 - ] - } - }, - { - "id": "4432", - "code": "34432", - "data": { - "gtfs": { - "stop_id": "4432", - "stop_code": "34432", - "stop_name": "Brébeuf et Leblanc ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brébeuf et Leblanc ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4930316485677, - 45.5302190821611 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6551043646834 - }, - "name": "Leblanc ouest et Brébeuf", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493112, - 45.530145 - ] - }, - "is_frozen": false, - "integer_id": 1067, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490669, - 45.529069 - ] - }, - "id": 1068, - "properties": { - "id": "37861c82-a45a-4026-bde0-eec4ce121a64", - "code": "33030", - "data": { - "stops": [ - { - "id": "3030", - "code": "33030", - "data": { - "gtfs": { - "stop_id": "3030", - "stop_code": "33030", - "stop_name": "Brébeuf et Briggs ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brébeuf et Briggs ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4906565748246, - 45.5292745281678 - ] - } - }, - { - "id": "3048", - "code": "33048", - "data": { - "gtfs": { - "stop_id": "3048", - "stop_code": "33048", - "stop_name": "Brébeuf et Briggs ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brébeuf et Briggs ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4903689362057, - 45.5293253433755 - ] - } - }, - { - "id": "4516", - "code": "34516", - "data": { - "gtfs": { - "stop_id": "4516", - "stop_code": "34516", - "stop_name": "Briggs ouest et Daniel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Briggs ouest et Daniel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4909683680228, - 45.5288117354975 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6368992161524 - }, - "name": "Brébeuf et Briggs ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490669, - 45.529069 - ] - }, - "is_frozen": false, - "integer_id": 1068, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.48868, - 45.528645 - ] - }, - "id": 1069, - "properties": { - "id": "280d705c-e41e-4a8f-8450-ac212bf84d99", - "code": "33031", - "data": { - "stops": [ - { - "id": "3031", - "code": "33031", - "data": { - "gtfs": { - "stop_id": "3031", - "stop_code": "33031", - "stop_name": "Brébeuf et ch. du Coteau-Rouge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brébeuf et ch. du Coteau-Rouge", - "geography": { - "type": "Point", - "coordinates": [ - -73.4887927343025, - 45.5286489724613 - ] - } - }, - { - "id": "4016", - "code": "34016", - "data": { - "gtfs": { - "stop_id": "4016", - "stop_code": "34016", - "stop_name": "ch. du Coteau-Rouge et Brébeuf", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Brébeuf", - "geography": { - "type": "Point", - "coordinates": [ - -73.4885953050244, - 45.5285298916259 - ] - } - }, - { - "id": "4474", - "code": "34474", - "data": { - "gtfs": { - "stop_id": "4474", - "stop_code": "34474", - "stop_name": "ch. du Coteau-Rouge et Brébeuf", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Brébeuf", - "geography": { - "type": "Point", - "coordinates": [ - -73.4885669743536, - 45.5287593144386 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6297257236433 - }, - "name": "Brébeuf et ch. du Coteau-Rouge", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48868, - 45.528645 - ] - }, - "is_frozen": false, - "integer_id": 1069, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486352, - 45.527881 - ] - }, - "id": 1070, - "properties": { - "id": "1d3f02c5-7aee-413f-85a4-ed64749a6a77", - "code": "33032", - "data": { - "stops": [ - { - "id": "3032", - "code": "33032", - "data": { - "gtfs": { - "stop_id": "3032", - "stop_code": "33032", - "stop_name": "Brébeuf et Front", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brébeuf et Front", - "geography": { - "type": "Point", - "coordinates": [ - -73.4865105037179, - 45.5278568674039 - ] - } - }, - { - "id": "3046", - "code": "33046", - "data": { - "gtfs": { - "stop_id": "3046", - "stop_code": "33046", - "stop_name": "Brébeuf et Front", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brébeuf et Front", - "geography": { - "type": "Point", - "coordinates": [ - -73.4861938541041, - 45.5279060561703 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6168003067855 - }, - "name": "Brébeuf et Front", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486352, - 45.527881 - ] - }, - "is_frozen": false, - "integer_id": 1070, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483063, - 45.526778 - ] - }, - "id": 1071, - "properties": { - "id": "0c127599-b8cc-4b0a-adfc-0fc9c8de64be", - "code": "33033", - "data": { - "stops": [ - { - "id": "3033", - "code": "33033", - "data": { - "gtfs": { - "stop_id": "3033", - "stop_code": "33033", - "stop_name": "Brébeuf et boul. Curé-Poirier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brébeuf et boul. Curé-Poirier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4834170819455, - 45.5268171459691 - ] - } - }, - { - "id": "3109", - "code": "33109", - "data": { - "gtfs": { - "stop_id": "3109", - "stop_code": "33109", - "stop_name": "boul. Curé-Poirier ouest et Brébeuf", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Brébeuf", - "geography": { - "type": "Point", - "coordinates": [ - -73.4832737485699, - 45.5269432807357 - ] - } - }, - { - "id": "3411", - "code": "33411", - "data": { - "gtfs": { - "stop_id": "3411", - "stop_code": "33411", - "stop_name": "boul. Curé-Poirier ouest et Brébeuf", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Brébeuf", - "geography": { - "type": "Point", - "coordinates": [ - -73.4832060104917, - 45.5266129631967 - ] - } - }, - { - "id": "3634", - "code": "33634", - "data": { - "gtfs": { - "stop_id": "3634", - "stop_code": "33634", - "stop_name": "Brébeuf et boul. Curé-Poirier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brébeuf et boul. Curé-Poirier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4827087461703, - 45.5267181810039 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5981405769759 - }, - "name": "Brébeuf et boul. Curé-Poirier ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483063, - 45.526778 - ] - }, - "is_frozen": false, - "integer_id": 1071, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.480371, - 45.525854 - ] - }, - "id": 1072, - "properties": { - "id": "1926fe87-9eee-4758-bf0a-1f846178b541", - "code": "33034", - "data": { - "stops": [ - { - "id": "3034", - "code": "33034", - "data": { - "gtfs": { - "stop_id": "3034", - "stop_code": "33034", - "stop_name": "Brébeuf et Benoit ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brébeuf et Benoit ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4805904454762, - 45.5258325535712 - ] - } - }, - { - "id": "3045", - "code": "33045", - "data": { - "gtfs": { - "stop_id": "3045", - "stop_code": "33045", - "stop_name": "Brébeuf et Benoit ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brébeuf et Benoit ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4801525178144, - 45.5258762933035 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5825098701317 - }, - "name": "Brébeuf et Benoit ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.480371, - 45.525854 - ] - }, - "is_frozen": false, - "integer_id": 1072, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.477406, - 45.524853 - ] - }, - "id": 1073, - "properties": { - "id": "30b4855a-ec3f-4079-bee1-0b92e6c4e1b7", - "code": "33035", - "data": { - "stops": [ - { - "id": "3035", - "code": "33035", - "data": { - "gtfs": { - "stop_id": "3035", - "stop_code": "33035", - "stop_name": "Brébeuf et de Cherbourg", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brébeuf et de Cherbourg", - "geography": { - "type": "Point", - "coordinates": [ - -73.4776321814633, - 45.5248545097759 - ] - } - }, - { - "id": "3044", - "code": "33044", - "data": { - "gtfs": { - "stop_id": "3044", - "stop_code": "33044", - "stop_name": "Brébeuf et de Cherbourg", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brébeuf et de Cherbourg", - "geography": { - "type": "Point", - "coordinates": [ - -73.4771802588208, - 45.5248521096035 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5655774631028 - }, - "name": "Brébeuf et de Cherbourg", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.477406, - 45.524853 - ] - }, - "is_frozen": false, - "integer_id": 1073, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.473, - 45.522275 - ] - }, - "id": 1074, - "properties": { - "id": "1426b4ef-4dd9-466b-8c3e-012df230f19a", - "code": "33037", - "data": { - "stops": [ - { - "id": "3037", - "code": "33037", - "data": { - "gtfs": { - "stop_id": "3037", - "stop_code": "33037", - "stop_name": "boul. Wilson et McGill", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Wilson et McGill", - "geography": { - "type": "Point", - "coordinates": [ - -73.4732824951335, - 45.5222710350856 - ] - } - }, - { - "id": "3043", - "code": "33043", - "data": { - "gtfs": { - "stop_id": "3043", - "stop_code": "33043", - "stop_name": "McGill et boul. Wilson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "McGill et boul. Wilson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4727181042182, - 45.5222789165625 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5219730314014 - }, - "name": "boul. Wilson et McGill", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.4730003, - 45.522274976 - ] - }, - "is_frozen": false, - "integer_id": 1074, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469835, - 45.521439 - ] - }, - "id": 1075, - "properties": { - "id": "155dd6bc-ae76-4503-8b2b-d216841c4707", - "code": "33038", - "data": { - "stops": [ - { - "id": "3038", - "code": "33038", - "data": { - "gtfs": { - "stop_id": "3038", - "stop_code": "33038", - "stop_name": "McGill et Beaubien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "McGill et Beaubien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4699987875688, - 45.5212803958033 - ] - } - }, - { - "id": "3042", - "code": "33042", - "data": { - "gtfs": { - "stop_id": "3042", - "stop_code": "33042", - "stop_name": "Beaubien et McGill", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beaubien et McGill", - "geography": { - "type": "Point", - "coordinates": [ - -73.4696719159118, - 45.5215967076711 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5078271147189 - }, - "name": "McGill et Beaubien", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469835352, - 45.521438552 - ] - }, - "is_frozen": false, - "integer_id": 1075, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466949, - 45.51998 - ] - }, - "id": 1076, - "properties": { - "id": "fd80e727-4261-4c36-aabc-b0a2c48d1470", - "code": "33039", - "data": { - "stops": [ - { - "id": "3039", - "code": "33039", - "data": { - "gtfs": { - "stop_id": "3039", - "stop_code": "33039", - "stop_name": "McGill et boul. Perron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "McGill et boul. Perron", - "geography": { - "type": "Point", - "coordinates": [ - -73.4669490667678, - 45.5199803566919 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4831670641454 - }, - "name": "McGill et boul. Perron", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466949067, - 45.519980357 - ] - }, - "is_frozen": false, - "integer_id": 1076, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467145, - 45.521806 - ] - }, - "id": 1077, - "properties": { - "id": "a19868d7-c9fb-4897-bf6a-82b0033e3c99", - "code": "33040", - "data": { - "stops": [ - { - "id": "3040", - "code": "33040", - "data": { - "gtfs": { - "stop_id": "3040", - "stop_code": "33040", - "stop_name": "de Chatham et civique 2605", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Chatham et civique 2605", - "geography": { - "type": "Point", - "coordinates": [ - -73.4671451289808, - 45.5218060171546 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5140417439699 - }, - "name": "de Chatham et civique 2605", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.467145129, - 45.521806017 - ] - }, - "is_frozen": false, - "integer_id": 1077, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468765, - 45.522414 - ] - }, - "id": 1078, - "properties": { - "id": "04824713-a1de-4a19-8b1a-89e11d974239", - "code": "33041", - "data": { - "stops": [ - { - "id": "3041", - "code": "33041", - "data": { - "gtfs": { - "stop_id": "3041", - "stop_code": "33041", - "stop_name": "de Chatham et Beaubien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Chatham et Beaubien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4687652941455, - 45.5224138636544 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5243220177475 - }, - "name": "de Chatham et Beaubien", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468765294, - 45.522413864 - ] - }, - "is_frozen": false, - "integer_id": 1078, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.488166, - 45.528622 - ] - }, - "id": 1079, - "properties": { - "id": "db8d9e51-701d-47ce-b55e-d7d57227adcb", - "code": "33047", - "data": { - "stops": [ - { - "id": "3047", - "code": "33047", - "data": { - "gtfs": { - "stop_id": "3047", - "stop_code": "33047", - "stop_name": "Brébeuf et ch. du Coteau-Rouge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brébeuf et ch. du Coteau-Rouge", - "geography": { - "type": "Point", - "coordinates": [ - -73.4881662245341, - 45.528621914108 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6293366000947 - }, - "name": "Brébeuf et ch. du Coteau-Rouge", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.488166, - 45.528622 - ] - }, - "is_frozen": false, - "integer_id": 1079, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.512823, - 45.533779 - ] - }, - "id": 1080, - "properties": { - "id": "cab743f1-61f7-4321-bc18-32e2897e9a10", - "code": "33057", - "data": { - "stops": [ - { - "id": "3057", - "code": "33057", - "data": { - "gtfs": { - "stop_id": "3057", - "stop_code": "33057", - "stop_name": "boul. Quinn et civique 141", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Quinn et civique 141", - "geography": { - "type": "Point", - "coordinates": [ - -73.5128227282536, - 45.5337793068349 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7166018647758 - }, - "name": "boul. Quinn et civique 141", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.512822728, - 45.533779307 - ] - }, - "is_frozen": false, - "integer_id": 1080, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494482, - 45.524382 - ] - }, - "id": 1081, - "properties": { - "id": "afda06bb-9f3e-43a6-883f-96226fa884c5", - "code": "33063", - "data": { - "stops": [ - { - "id": "3063", - "code": "33063", - "data": { - "gtfs": { - "stop_id": "3063", - "stop_code": "33063", - "stop_name": "ch. du Coteau-Rouge et Jean-Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Jean-Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4942219572841, - 45.5243987097616 - ] - } - }, - { - "id": "3077", - "code": "33077", - "data": { - "gtfs": { - "stop_id": "3077", - "stop_code": "33077", - "stop_name": "ch. du Coteau-Rouge et Gardenville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Gardenville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4947419107445, - 45.5243660266067 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5576105755415 - }, - "name": "ch. du Coteau-Rouge et Jean-Béliveau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494482, - 45.524382 - ] - }, - "is_frozen": false, - "integer_id": 1081, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492847, - 45.525488 - ] - }, - "id": 1082, - "properties": { - "id": "16c6c90b-9ef2-4203-a4a2-74a27e23dc94", - "code": "33064", - "data": { - "stops": [ - { - "id": "3064", - "code": "33064", - "data": { - "gtfs": { - "stop_id": "3064", - "stop_code": "33064", - "stop_name": "ch. du Coteau-Rouge et Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4926714584417, - 45.5254953506678 - ] - } - }, - { - "id": "4740", - "code": "34740", - "data": { - "gtfs": { - "stop_id": "4740", - "stop_code": "34740", - "stop_name": "ch. du Coteau-Rouge et Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4930226221463, - 45.5254806404849 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5763186966603 - }, - "name": "ch. du Coteau-Rouge et Montarville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492847, - 45.525488 - ] - }, - "is_frozen": false, - "integer_id": 1082, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491386, - 45.526707 - ] - }, - "id": 1083, - "properties": { - "id": "dc7a6dd7-6fde-40ea-9f37-85aaefe35169", - "code": "33065", - "data": { - "stops": [ - { - "id": "3065", - "code": "33065", - "data": { - "gtfs": { - "stop_id": "3065", - "stop_code": "33065", - "stop_name": "ch. du Coteau-Rouge et Labonté", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Labonté", - "geography": { - "type": "Point", - "coordinates": [ - -73.4913634218829, - 45.526602640304 - ] - } - }, - { - "id": "3075", - "code": "33075", - "data": { - "gtfs": { - "stop_id": "3075", - "stop_code": "33075", - "stop_name": "ch. du Coteau-Rouge et Labonté", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Labonté", - "geography": { - "type": "Point", - "coordinates": [ - -73.4914083438999, - 45.5268117726395 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5969394891781 - }, - "name": "ch. du Coteau-Rouge et Labonté", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491386, - 45.526707 - ] - }, - "is_frozen": false, - "integer_id": 1083, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.48667, - 45.529797 - ] - }, - "id": 1084, - "properties": { - "id": "79974834-930d-4e4d-921b-dafd49580553", - "code": "33068", - "data": { - "stops": [ - { - "id": "3068", - "code": "33068", - "data": { - "gtfs": { - "stop_id": "3068", - "stop_code": "33068", - "stop_name": "ch. du Coteau-Rouge et Saint-Alexandre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Saint-Alexandre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4866703173163, - 45.5297966284886 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6492163412632 - }, - "name": "ch. du Coteau-Rouge et Saint-Alexandre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48667, - 45.529797 - ] - }, - "is_frozen": false, - "integer_id": 1084, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.485666, - 45.531033 - ] - }, - "id": 1085, - "properties": { - "id": "27c5df15-201f-4855-9f49-556fd659fd8e", - "code": "33069", - "data": { - "stops": [ - { - "id": "3069", - "code": "33069", - "data": { - "gtfs": { - "stop_id": "3069", - "stop_code": "33069", - "stop_name": "ch. de Chambly et PHARMAPRIX", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et PHARMAPRIX", - "geography": { - "type": "Point", - "coordinates": [ - -73.4857262309643, - 45.5311812581772 - ] - } - }, - { - "id": "3778", - "code": "33778", - "data": { - "gtfs": { - "stop_id": "3778", - "stop_code": "33778", - "stop_name": "ch. de Chambly et ch. du Coteau-Rouge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et ch. du Coteau-Rouge", - "geography": { - "type": "Point", - "coordinates": [ - -73.4856051767771, - 45.5308847146748 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6701294654349 - }, - "name": "ch. de Chambly et PHARMAPRIX", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.485666, - 45.531033 - ] - }, - "is_frozen": false, - "integer_id": 1085, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.498075, - 45.514982 - ] - }, - "id": 1086, - "properties": { - "id": "3760f02e-7f2c-4906-8d8a-455bbf644cec", - "code": "33085", - "data": { - "stops": [ - { - "id": "3085", - "code": "33085", - "data": { - "gtfs": { - "stop_id": "3085", - "stop_code": "33085", - "stop_name": "La Salle et ch. du Coteau-Rouge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Salle et ch. du Coteau-Rouge", - "geography": { - "type": "Point", - "coordinates": [ - -73.4980753573924, - 45.5149823600167 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3986585453837 - }, - "name": "La Salle et ch. du Coteau-Rouge", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.498075357, - 45.51498236 - ] - }, - "is_frozen": false, - "integer_id": 1086, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491697, - 45.513782 - ] - }, - "id": 1087, - "properties": { - "id": "5e6dbb10-5962-4ed1-802d-bc3c0e5d2742", - "code": "33086", - "data": { - "stops": [ - { - "id": "3086", - "code": "33086", - "data": { - "gtfs": { - "stop_id": "3086", - "stop_code": "33086", - "stop_name": "boul. Curé-Poirier ouest et Papineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Papineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4916974349597, - 45.5137818779717 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3783635367861 - }, - "name": "boul. Curé-Poirier ouest et Papineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491697435, - 45.513781878 - ] - }, - "is_frozen": false, - "integer_id": 1087, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.489617, - 45.517115 - ] - }, - "id": 1088, - "properties": { - "id": "e88f5f2a-b0b5-4bb5-afb4-833f49fbaeea", - "code": "33089", - "data": { - "stops": [ - { - "id": "3089", - "code": "33089", - "data": { - "gtfs": { - "stop_id": "3089", - "stop_code": "33089", - "stop_name": "boul. Curé-Poirier ouest et Cartier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Cartier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4895859974278, - 45.5169673466642 - ] - } - }, - { - "id": "3115", - "code": "33115", - "data": { - "gtfs": { - "stop_id": "3115", - "stop_code": "33115", - "stop_name": "boul. Curé-Poirier ouest et Cartier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Cartier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4896472577791, - 45.5172623641389 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4347155186657 - }, - "name": "boul. Curé-Poirier ouest et Cartier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.489617, - 45.517115 - ] - }, - "is_frozen": false, - "integer_id": 1088, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.488592, - 45.518664 - ] - }, - "id": 1089, - "properties": { - "id": "ee7545d3-966c-460d-94a1-5e0d16623919", - "code": "33090", - "data": { - "stops": [ - { - "id": "3090", - "code": "33090", - "data": { - "gtfs": { - "stop_id": "3090", - "stop_code": "33090", - "stop_name": "boul. Curé-Poirier ouest et Dollard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Dollard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4885604644316, - 45.5185012295078 - ] - } - }, - { - "id": "3114", - "code": "33114", - "data": { - "gtfs": { - "stop_id": "3114", - "stop_code": "33114", - "stop_name": "boul. Curé-Poirier ouest et Dollard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Dollard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4886238911109, - 45.5188260062949 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4609073130831 - }, - "name": "boul. Curé-Poirier ouest et Dollard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.488592, - 45.518664 - ] - }, - "is_frozen": false, - "integer_id": 1089, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486484, - 45.52186 - ] - }, - "id": 1090, - "properties": { - "id": "212f4608-5163-4f8c-b126-acfdafddd04a", - "code": "33091", - "data": { - "stops": [ - { - "id": "3091", - "code": "33091", - "data": { - "gtfs": { - "stop_id": "3091", - "stop_code": "33091", - "stop_name": "boul. Curé-Poirier ouest et Jean-Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Jean-Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4864472392488, - 45.5217202868828 - ] - } - }, - { - "id": "4015", - "code": "34015", - "data": { - "gtfs": { - "stop_id": "4015", - "stop_code": "34015", - "stop_name": "boul. Curé-Poirier ouest et Jean-Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Jean-Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4865207042784, - 45.5219989130495 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5149547235883 - }, - "name": "boul. Curé-Poirier ouest et Jean-Béliveau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486484, - 45.52186 - ] - }, - "is_frozen": false, - "integer_id": 1090, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.48524, - 45.523736 - ] - }, - "id": 1091, - "properties": { - "id": "a87339f4-b5b3-4402-b9ee-9ea1d8fcf569", - "code": "33092", - "data": { - "stops": [ - { - "id": "3092", - "code": "33092", - "data": { - "gtfs": { - "stop_id": "3092", - "stop_code": "33092", - "stop_name": "boul. Curé-Poirier ouest et boul. Quinn", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et boul. Quinn", - "geography": { - "type": "Point", - "coordinates": [ - -73.4852429026259, - 45.5235324755533 - ] - } - }, - { - "id": "3111", - "code": "33111", - "data": { - "gtfs": { - "stop_id": "3111", - "stop_code": "33111", - "stop_name": "boul. Curé-Poirier ouest et boul. Quinn", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et boul. Quinn", - "geography": { - "type": "Point", - "coordinates": [ - -73.4852376461787, - 45.5239397756401 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5466839132887 - }, - "name": "boul. Curé-Poirier ouest et boul. Quinn", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48524, - 45.523736 - ] - }, - "is_frozen": false, - "integer_id": 1091, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.484105, - 45.525473 - ] - }, - "id": 1092, - "properties": { - "id": "5bc0109e-fc2a-4d2a-8204-5be74af579b9", - "code": "33093", - "data": { - "stops": [ - { - "id": "3093", - "code": "33093", - "data": { - "gtfs": { - "stop_id": "3093", - "stop_code": "33093", - "stop_name": "boul. Curé-Poirier ouest et McGill", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et McGill", - "geography": { - "type": "Point", - "coordinates": [ - -73.4840607887272, - 45.5253684961999 - ] - } - }, - { - "id": "3110", - "code": "33110", - "data": { - "gtfs": { - "stop_id": "3110", - "stop_code": "33110", - "stop_name": "boul. Curé-Poirier ouest et McGill", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et McGill", - "geography": { - "type": "Point", - "coordinates": [ - -73.4841494094936, - 45.5255770868227 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5760649625894 - }, - "name": "boul. Curé-Poirier ouest et McGill", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.484105, - 45.525473 - ] - }, - "is_frozen": false, - "integer_id": 1092, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482433, - 45.527999 - ] - }, - "id": 1093, - "properties": { - "id": "250954ca-54cd-4e08-bea5-5c6ef0e42c4e", - "code": "33094", - "data": { - "stops": [ - { - "id": "3094", - "code": "33094", - "data": { - "gtfs": { - "stop_id": "3094", - "stop_code": "33094", - "stop_name": "boul. Curé-Poirier ouest et Saint-Alexandre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Saint-Alexandre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4823744842363, - 45.5278698556929 - ] - } - }, - { - "id": "3108", - "code": "33108", - "data": { - "gtfs": { - "stop_id": "3108", - "stop_code": "33108", - "stop_name": "boul. Curé-Poirier ouest et Saint-Alexandre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Saint-Alexandre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4824908179437, - 45.5281289246561 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6187966068275 - }, - "name": "boul. Curé-Poirier ouest et Saint-Alexandre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482433, - 45.527999 - ] - }, - "is_frozen": false, - "integer_id": 1093, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481573, - 45.529276 - ] - }, - "id": 1094, - "properties": { - "id": "4bf49bfe-32df-425d-9ef2-4fa46668bbb3", - "code": "33095", - "data": { - "stops": [ - { - "id": "3095", - "code": "33095", - "data": { - "gtfs": { - "stop_id": "3095", - "stop_code": "33095", - "stop_name": "boul. Curé-Poirier ouest et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4816325013382, - 45.5291652828938 - ] - } - }, - { - "id": "3445", - "code": "33445", - "data": { - "gtfs": { - "stop_id": "3445", - "stop_code": "33445", - "stop_name": "ch. de Chambly et boul. Curé-Poirier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Curé-Poirier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4818184733451, - 45.529341994209 - ] - } - }, - { - "id": "3446", - "code": "33446", - "data": { - "gtfs": { - "stop_id": "3446", - "stop_code": "33446", - "stop_name": "ch. de Chambly et boul. Curé-Poirier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Curé-Poirier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4813279375199, - 45.5293876268956 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6404014275555 - }, - "name": "boul. Curé-Poirier ouest et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481573, - 45.529276 - ] - }, - "is_frozen": false, - "integer_id": 1094, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481319, - 45.529734 - ] - }, - "id": 1095, - "properties": { - "id": "48e0fb78-b91c-4eec-a77a-11ad01e61d0c", - "code": "33096", - "data": { - "stops": [ - { - "id": "3096", - "code": "33096", - "data": { - "gtfs": { - "stop_id": "3096", - "stop_code": "33096", - "stop_name": "boul. Curé-Poirier est et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier est et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4813187572476, - 45.5297344259796 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6481504175308 - }, - "name": "boul. Curé-Poirier est et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481319, - 45.529734 - ] - }, - "is_frozen": false, - "integer_id": 1095, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.480072, - 45.532735 - ] - }, - "id": 1096, - "properties": { - "id": "d488846f-abf4-41f2-9dd0-43b9cbb645a3", - "code": "33097", - "data": { - "stops": [ - { - "id": "3097", - "code": "33097", - "data": { - "gtfs": { - "stop_id": "3097", - "stop_code": "33097", - "stop_name": "boul. Curé-Poirier est et Lavallée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier est et Lavallée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4798008884738, - 45.5325516810443 - ] - } - }, - { - "id": "3107", - "code": "33107", - "data": { - "gtfs": { - "stop_id": "3107", - "stop_code": "33107", - "stop_name": "Frontenac et Lavallée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Frontenac et Lavallée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4803432908144, - 45.5329175653454 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6989231607563 - }, - "name": "boul. Curé-Poirier est et Lavallée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48007209, - 45.532734623 - ] - }, - "is_frozen": false, - "integer_id": 1096, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478645, - 45.534709 - ] - }, - "id": 1097, - "properties": { - "id": "24abc23f-a2cf-493e-ad62-b789edf9cd26", - "code": "33098", - "data": { - "stops": [ - { - "id": "3098", - "code": "33098", - "data": { - "gtfs": { - "stop_id": "3098", - "stop_code": "33098", - "stop_name": "boul. Curé-Poirier est et Laurier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier est et Laurier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4786449709997, - 45.5347089336393 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7323343307538 - }, - "name": "boul. Curé-Poirier est et Laurier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.478644971, - 45.534708934 - ] - }, - "is_frozen": false, - "integer_id": 1097, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.477878, - 45.536161 - ] - }, - "id": 1098, - "properties": { - "id": "41617015-5d74-4430-aee6-934b0fd13e70", - "code": "33099", - "data": { - "stops": [ - { - "id": "3099", - "code": "33099", - "data": { - "gtfs": { - "stop_id": "3099", - "stop_code": "33099", - "stop_name": "boul. Curé-Poirier est et Kent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier est et Kent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4778777793598, - 45.5361610306339 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.756910316907 - }, - "name": "boul. Curé-Poirier est et Kent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.477877779, - 45.536161031 - ] - }, - "is_frozen": false, - "integer_id": 1098, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478146, - 45.539347 - ] - }, - "id": 1099, - "properties": { - "id": "31db3d90-e07f-4dbc-995f-00186e6ce5e0", - "code": "33100", - "data": { - "stops": [ - { - "id": "3100", - "code": "33100", - "data": { - "gtfs": { - "stop_id": "3100", - "stop_code": "33100", - "stop_name": "ch. du Lac et Valade", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et Valade", - "geography": { - "type": "Point", - "coordinates": [ - -73.4781458517777, - 45.5393471090983 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8108396194197 - }, - "name": "ch. du Lac et Valade", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.478145852, - 45.539347109 - ] - }, - "is_frozen": false, - "integer_id": 1099, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475643, - 45.541401 - ] - }, - "id": 1100, - "properties": { - "id": "1396e79d-a217-431f-ba1d-6596c1924ac0", - "code": "33101", - "data": { - "stops": [ - { - "id": "3101", - "code": "33101", - "data": { - "gtfs": { - "stop_id": "3101", - "stop_code": "33101", - "stop_name": "ch. du Lac et Vianney", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et Vianney", - "geography": { - "type": "Point", - "coordinates": [ - -73.4756433860357, - 45.5414009661815 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8456091288443 - }, - "name": "ch. du Lac et Vianney", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475643386, - 45.541400966 - ] - }, - "is_frozen": false, - "integer_id": 1100, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.473906, - 45.543163 - ] - }, - "id": 1101, - "properties": { - "id": "3a5ea563-a764-4bb6-b2d3-d98a1c377161", - "code": "33102", - "data": { - "stops": [ - { - "id": "3102", - "code": "33102", - "data": { - "gtfs": { - "stop_id": "3102", - "stop_code": "33102", - "stop_name": "ch. du Lac et Adoncour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et Adoncour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4740249315249, - 45.5430080394582 - ] - } - }, - { - "id": "4093", - "code": "34093", - "data": { - "gtfs": { - "stop_id": "4093", - "stop_code": "34093", - "stop_name": "Adoncour et ch. du Lac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et ch. du Lac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4740690336769, - 45.5433013773392 - ] - } - }, - { - "id": "5046", - "code": "35046", - "data": { - "gtfs": { - "stop_id": "5046", - "stop_code": "35046", - "stop_name": "Adoncour et ch. du Lac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et ch. du Lac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4737438766759, - 45.5433182892832 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8754441763288 - }, - "name": "ch. du Lac et Adoncour", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.473906455, - 45.543163164 - ] - }, - "is_frozen": false, - "integer_id": 1101, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.471896, - 45.541938 - ] - }, - "id": 1102, - "properties": { - "id": "a1edad0a-8432-4850-b895-9d97092489b6", - "code": "33103", - "data": { - "stops": [ - { - "id": "3103", - "code": "33103", - "data": { - "gtfs": { - "stop_id": "3103", - "stop_code": "33103", - "stop_name": "Adoncour et boul. Curé-Poirier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et boul. Curé-Poirier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.471896255235, - 45.5419383387279 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8547068758297 - }, - "name": "Adoncour et boul. Curé-Poirier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.471896255, - 45.541938339 - ] - }, - "is_frozen": false, - "integer_id": 1102, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474241, - 45.540128 - ] - }, - "id": 1103, - "properties": { - "id": "f7649797-fc15-4753-8189-cbc65d444f77", - "code": "33104", - "data": { - "stops": [ - { - "id": "3104", - "code": "33104", - "data": { - "gtfs": { - "stop_id": "3104", - "stop_code": "33104", - "stop_name": "boul. Curé-Poirier est et civique 945", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier est et civique 945", - "geography": { - "type": "Point", - "coordinates": [ - -73.4742411683654, - 45.5401283456882 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8240646474461 - }, - "name": "boul. Curé-Poirier est et civique 945", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474241168, - 45.540128346 - ] - }, - "is_frozen": false, - "integer_id": 1103, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.477667, - 45.537657 - ] - }, - "id": 1104, - "properties": { - "id": "6f7c0691-2ad1-451e-94b0-7159b94ba7a7", - "code": "33105", - "data": { - "stops": [ - { - "id": "3105", - "code": "33105", - "data": { - "gtfs": { - "stop_id": "3105", - "stop_code": "33105", - "stop_name": "boul. Curé-Poirier est et boul. Roland-Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier est et boul. Roland-Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4775003557298, - 45.5376399706067 - ] - } - }, - { - "id": "3448", - "code": "33448", - "data": { - "gtfs": { - "stop_id": "3448", - "stop_code": "33448", - "stop_name": "boul. Roland-Therrien et boul. Curé-Poirier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et boul. Curé-Poirier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4778327793239, - 45.537673511354 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7822263965766 - }, - "name": "boul. Curé-Poirier est et boul. Roland-Therrien", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.477666568, - 45.537656741 - ] - }, - "is_frozen": false, - "integer_id": 1104, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479486, - 45.535118 - ] - }, - "id": 1105, - "properties": { - "id": "4b62100a-5cde-4d2b-8815-1a60c1ba3220", - "code": "33106", - "data": { - "stops": [ - { - "id": "3106", - "code": "33106", - "data": { - "gtfs": { - "stop_id": "3106", - "stop_code": "33106", - "stop_name": "Frontenac et Laurier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Frontenac et Laurier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4794862684772, - 45.5351175188767 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7392492291567 - }, - "name": "Frontenac et Laurier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479486268, - 45.535117519 - ] - }, - "is_frozen": false, - "integer_id": 1105, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.487645, - 45.520342 - ] - }, - "id": 1106, - "properties": { - "id": "88e6eee9-3b8c-474d-aeb4-599447d404be", - "code": "33113", - "data": { - "stops": [ - { - "id": "3113", - "code": "33113", - "data": { - "gtfs": { - "stop_id": "3113", - "stop_code": "33113", - "stop_name": "boul. Curé-Poirier ouest et Joliette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Joliette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4875525962849, - 45.520448611872 - ] - } - }, - { - "id": "3132", - "code": "33132", - "data": { - "gtfs": { - "stop_id": "3132", - "stop_code": "33132", - "stop_name": "Joliette et boul. Curé-Poirier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et boul. Curé-Poirier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4876648459197, - 45.5202693101748 - ] - } - }, - { - "id": "3181", - "code": "33181", - "data": { - "gtfs": { - "stop_id": "3181", - "stop_code": "33181", - "stop_name": "Joliette et boul. Curé-Poirier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et boul. Curé-Poirier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4873496896454, - 45.5203265532429 - ] - } - }, - { - "id": "3410", - "code": "33410", - "data": { - "gtfs": { - "stop_id": "3410", - "stop_code": "33410", - "stop_name": "boul. Curé-Poirier ouest et Joliette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Joliette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4874944364686, - 45.5201515259457 - ] - } - }, - { - "id": "4902", - "code": "34902", - "data": { - "gtfs": { - "stop_id": "4902", - "stop_code": "34902", - "stop_name": "Joliette et boul. Curé-Poirier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et boul. Curé-Poirier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4879408151418, - 45.5205315620973 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4892827599605 - }, - "name": "boul. Curé-Poirier ouest et Joliette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.487645, - 45.520342 - ] - }, - "is_frozen": false, - "integer_id": 1106, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.512116, - 45.528594 - ] - }, - "id": 1107, - "properties": { - "id": "acba124b-c690-43dc-b717-ae889034a110", - "code": "33125", - "data": { - "stops": [ - { - "id": "3125", - "code": "33125", - "data": { - "gtfs": { - "stop_id": "3125", - "stop_code": "33125", - "stop_name": "Joliette et MCDONALD", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et MCDONALD", - "geography": { - "type": "Point", - "coordinates": [ - -73.5121164429419, - 45.5285943682996 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6288628851064 - }, - "name": "Joliette et MCDONALD", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.512116, - 45.528594 - ] - }, - "is_frozen": false, - "integer_id": 1107, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.505371, - 45.526502 - ] - }, - "id": 1108, - "properties": { - "id": "20a17f7f-4c8c-4119-ac8f-7160c6595370", - "code": "33126", - "data": { - "stops": [ - { - "id": "3126", - "code": "33126", - "data": { - "gtfs": { - "stop_id": "3126", - "stop_code": "33126", - "stop_name": "Joliette et Perrault", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Perrault", - "geography": { - "type": "Point", - "coordinates": [ - -73.5055322833962, - 45.5264681394774 - ] - } - }, - { - "id": "3187", - "code": "33187", - "data": { - "gtfs": { - "stop_id": "3187", - "stop_code": "33187", - "stop_name": "Joliette et Perrault", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Perrault", - "geography": { - "type": "Point", - "coordinates": [ - -73.5052089965098, - 45.5265361069423 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5934715848368 - }, - "name": "Joliette et Perrault", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.505371, - 45.526502 - ] - }, - "is_frozen": false, - "integer_id": 1108, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.493829, - 45.522509 - ] - }, - "id": 1109, - "properties": { - "id": "a76bf032-5164-44ff-92fb-30023319517e", - "code": "33130", - "data": { - "stops": [ - { - "id": "3130", - "code": "33130", - "data": { - "gtfs": { - "stop_id": "3130", - "stop_code": "33130", - "stop_name": "Joliette et Després", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Després", - "geography": { - "type": "Point", - "coordinates": [ - -73.4939807933325, - 45.5224877363243 - ] - } - }, - { - "id": "3183", - "code": "33183", - "data": { - "gtfs": { - "stop_id": "3183", - "stop_code": "33183", - "stop_name": "Joliette et Després", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Després", - "geography": { - "type": "Point", - "coordinates": [ - -73.4936777577783, - 45.5225305316398 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.525931044753 - }, - "name": "Joliette et Després", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493829, - 45.522509 - ] - }, - "is_frozen": false, - "integer_id": 1109, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490865, - 45.521479 - ] - }, - "id": 1110, - "properties": { - "id": "a63c10e3-b289-47b6-9867-4d82c043e2cb", - "code": "33131", - "data": { - "stops": [ - { - "id": "3131", - "code": "33131", - "data": { - "gtfs": { - "stop_id": "3131", - "stop_code": "33131", - "stop_name": "Joliette et Front", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Front", - "geography": { - "type": "Point", - "coordinates": [ - -73.4910376568319, - 45.5214532312036 - ] - } - }, - { - "id": "3182", - "code": "33182", - "data": { - "gtfs": { - "stop_id": "3182", - "stop_code": "33182", - "stop_name": "Joliette et Front", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Front", - "geography": { - "type": "Point", - "coordinates": [ - -73.490692263019, - 45.5215044170828 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5085111721352 - }, - "name": "Joliette et Front", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490865, - 45.521479 - ] - }, - "is_frozen": false, - "integer_id": 1110, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.484866, - 45.519398 - ] - }, - "id": 1111, - "properties": { - "id": "e31a1f56-4ede-4f4f-a7a7-2fdbee444a41", - "code": "33133", - "data": { - "stops": [ - { - "id": "3133", - "code": "33133", - "data": { - "gtfs": { - "stop_id": "3133", - "stop_code": "33133", - "stop_name": "Joliette et Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4850240976972, - 45.5193846907689 - ] - } - }, - { - "id": "3180", - "code": "33180", - "data": { - "gtfs": { - "stop_id": "3180", - "stop_code": "33180", - "stop_name": "Joliette et Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4847082301978, - 45.5194107424949 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4733191486512 - }, - "name": "Joliette et Hubert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.484866, - 45.519398 - ] - }, - "is_frozen": false, - "integer_id": 1111, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.48194, - 45.518366 - ] - }, - "id": 1112, - "properties": { - "id": "e9c79425-c47b-44ec-82ff-b480b97ceae7", - "code": "33134", - "data": { - "stops": [ - { - "id": "3134", - "code": "33134", - "data": { - "gtfs": { - "stop_id": "3134", - "stop_code": "33134", - "stop_name": "Joliette et Beauregard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Beauregard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4821249720519, - 45.5183549886231 - ] - } - }, - { - "id": "3179", - "code": "33179", - "data": { - "gtfs": { - "stop_id": "3179", - "stop_code": "33179", - "stop_name": "Joliette et Beauregard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Beauregard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4817549944169, - 45.518376681077 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4558683124708 - }, - "name": "Joliette et Beauregard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48194, - 45.518366 - ] - }, - "is_frozen": false, - "integer_id": 1112, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.472771, - 45.517293 - ] - }, - "id": 1113, - "properties": { - "id": "41c46bd6-8021-4abc-88c9-f9d4d32afe26", - "code": "33137", - "data": { - "stops": [ - { - "id": "3137", - "code": "33137", - "data": { - "gtfs": { - "stop_id": "3137", - "stop_code": "33137", - "stop_name": "Jean-Béliveau et boul. Perron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jean-Béliveau et boul. Perron", - "geography": { - "type": "Point", - "coordinates": [ - -73.4730455211852, - 45.5173294843936 - ] - } - }, - { - "id": "3177", - "code": "33177", - "data": { - "gtfs": { - "stop_id": "3177", - "stop_code": "33177", - "stop_name": "Jean-Béliveau et boul. Perron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jean-Béliveau et boul. Perron", - "geography": { - "type": "Point", - "coordinates": [ - -73.4724961234312, - 45.5172558499419 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4377195531671 - }, - "name": "Jean-Béliveau et boul. Perron", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472770822, - 45.517292667 - ] - }, - "is_frozen": false, - "integer_id": 1113, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469019, - 45.515854 - ] - }, - "id": 1114, - "properties": { - "id": "ddeef6c2-ef0f-4d9f-a765-534563936049", - "code": "33138", - "data": { - "stops": [ - { - "id": "3138", - "code": "33138", - "data": { - "gtfs": { - "stop_id": "3138", - "stop_code": "33138", - "stop_name": "Jean-Béliveau et Maréchal", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jean-Béliveau et Maréchal", - "geography": { - "type": "Point", - "coordinates": [ - -73.4690193127557, - 45.515854095715 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4133966716865 - }, - "name": "Jean-Béliveau et Maréchal", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469019313, - 45.515854096 - ] - }, - "is_frozen": false, - "integer_id": 1114, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463681, - 45.5128 - ] - }, - "id": 1115, - "properties": { - "id": "0751a485-9efa-4491-b69f-eed5163417d8", - "code": "33139", - "data": { - "stops": [ - { - "id": "3139", - "code": "33139", - "data": { - "gtfs": { - "stop_id": "3139", - "stop_code": "33139", - "stop_name": "Darveau et Dubuisson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Darveau et Dubuisson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4639207913406, - 45.5126266682665 - ] - } - }, - { - "id": "3174", - "code": "33174", - "data": { - "gtfs": { - "stop_id": "3174", - "stop_code": "33174", - "stop_name": "Darveau et Didace", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Darveau et Didace", - "geography": { - "type": "Point", - "coordinates": [ - -73.4634415646057, - 45.5129729251783 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.361761708093 - }, - "name": "Darveau et Dubuisson", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463681178, - 45.512799797 - ] - }, - "is_frozen": false, - "integer_id": 1115, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464965, - 45.511171 - ] - }, - "id": 1116, - "properties": { - "id": "5b565a57-bd7f-42f0-a279-0af0bf5f2a4d", - "code": "33140", - "data": { - "stops": [ - { - "id": "3140", - "code": "33140", - "data": { - "gtfs": { - "stop_id": "3140", - "stop_code": "33140", - "stop_name": "Darveau et Duvivier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Darveau et Duvivier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4650758581499, - 45.5113627497803 - ] - } - }, - { - "id": "3173", - "code": "33173", - "data": { - "gtfs": { - "stop_id": "3173", - "stop_code": "33173", - "stop_name": "Duvivier et Darveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Duvivier et Darveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4648550954387, - 45.5109800585661 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3342360327117 - }, - "name": "Darveau et Duvivier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464965477, - 45.511171404 - ] - }, - "is_frozen": false, - "integer_id": 1116, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463372, - 45.509936 - ] - }, - "id": 1117, - "properties": { - "id": "3d29747a-7b75-4b0e-ad8a-50eec4e70061", - "code": "33141", - "data": { - "stops": [ - { - "id": "3141", - "code": "33141", - "data": { - "gtfs": { - "stop_id": "3141", - "stop_code": "33141", - "stop_name": "Duvivier et Duhamel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Duvivier et Duhamel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4635797789234, - 45.5099090380349 - ] - } - }, - { - "id": "3172", - "code": "33172", - "data": { - "gtfs": { - "stop_id": "3172", - "stop_code": "33172", - "stop_name": "Duhamel et Duvivier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Duhamel et Duvivier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4631642915502, - 45.5099628953267 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.313354296719 - }, - "name": "Duvivier et Duhamel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463372035, - 45.509935967 - ] - }, - "is_frozen": false, - "integer_id": 1117, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461908, - 45.510871 - ] - }, - "id": 1118, - "properties": { - "id": "1f1dcc94-03fa-4333-b695-c1027c760604", - "code": "33142", - "data": { - "stops": [ - { - "id": "3142", - "code": "33142", - "data": { - "gtfs": { - "stop_id": "3142", - "stop_code": "33142", - "stop_name": "Duhamel et Denaut", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Duhamel et Denaut", - "geography": { - "type": "Point", - "coordinates": [ - -73.461907776015, - 45.5108713235145 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3291638633356 - }, - "name": "Duhamel et Denaut", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461907776, - 45.510871324 - ] - }, - "is_frozen": false, - "integer_id": 1118, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461081, - 45.512166 - ] - }, - "id": 1119, - "properties": { - "id": "7183eaac-7645-401f-919b-91209487af61", - "code": "33143", - "data": { - "stops": [ - { - "id": "3143", - "code": "33143", - "data": { - "gtfs": { - "stop_id": "3143", - "stop_code": "33143", - "stop_name": "Duhamel et tsse Decelles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Duhamel et tsse Decelles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4610627739694, - 45.5120296918793 - ] - } - }, - { - "id": "3170", - "code": "33170", - "data": { - "gtfs": { - "stop_id": "3170", - "stop_code": "33170", - "stop_name": "Duhamel et tsse Decelles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Duhamel et tsse Decelles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4610984354592, - 45.5123016541534 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3510424600364 - }, - "name": "Duhamel et tsse Decelles", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461080605, - 45.512165673 - ] - }, - "is_frozen": false, - "integer_id": 1119, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459805, - 45.513301 - ] - }, - "id": 1120, - "properties": { - "id": "d8f16090-e69f-45d8-b535-45f45ab1b739", - "code": "33144", - "data": { - "stops": [ - { - "id": "3144", - "code": "33144", - "data": { - "gtfs": { - "stop_id": "3144", - "stop_code": "33144", - "stop_name": "Duhamel et de Lyon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Duhamel et de Lyon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4601054761279, - 45.5133272758515 - ] - } - }, - { - "id": "3169", - "code": "33169", - "data": { - "gtfs": { - "stop_id": "3169", - "stop_code": "33169", - "stop_name": "de Lyon et Rouillard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Lyon et Rouillard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4595040817419, - 45.5132742894379 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3702306412571 - }, - "name": "Duhamel et de Lyon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459804779, - 45.513300783 - ] - }, - "is_frozen": false, - "integer_id": 1120, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458717, - 45.512818 - ] - }, - "id": 1121, - "properties": { - "id": "2f3f3f3e-941f-4165-a7c4-41af6cf1cc84", - "code": "33145", - "data": { - "stops": [ - { - "id": "3145", - "code": "33145", - "data": { - "gtfs": { - "stop_id": "3145", - "stop_code": "33145", - "stop_name": "de Lyon et Dumont", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Lyon et Dumont", - "geography": { - "type": "Point", - "coordinates": [ - -73.4587166806126, - 45.512817952643 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3620686228471 - }, - "name": "de Lyon et Dumont", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.458716681, - 45.512817953 - ] - }, - "is_frozen": false, - "integer_id": 1121, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456568, - 45.512115 - ] - }, - "id": 1122, - "properties": { - "id": "065b0112-1102-48ec-b10a-c88cde002f4f", - "code": "33146", - "data": { - "stops": [ - { - "id": "3146", - "code": "33146", - "data": { - "gtfs": { - "stop_id": "3146", - "stop_code": "33146", - "stop_name": "de Lyon et boul. Roberval ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Lyon et boul. Roberval ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.456805447611, - 45.512122564669 - ] - } - }, - { - "id": "3160", - "code": "33160", - "data": { - "gtfs": { - "stop_id": "3160", - "stop_code": "33160", - "stop_name": "boul. Roberval ouest et de Lyon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval ouest et de Lyon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4565949826773, - 45.5122866789851 - ] - } - }, - { - "id": "3168", - "code": "33168", - "data": { - "gtfs": { - "stop_id": "3168", - "stop_code": "33168", - "stop_name": "de Lyon et boul. Roberval ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Lyon et boul. Roberval ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4563305917144, - 45.5121149757286 - ] - } - }, - { - "id": "3520", - "code": "33520", - "data": { - "gtfs": { - "stop_id": "3520", - "stop_code": "33520", - "stop_name": "boul. Roberval ouest et de Lyon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval ouest et de Lyon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4565060207906, - 45.5119424143447 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3501782404446 - }, - "name": "de Lyon et boul. Roberval ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45656802, - 45.512114547 - ] - }, - "is_frozen": false, - "integer_id": 1122, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453384, - 45.510946 - ] - }, - "id": 1123, - "properties": { - "id": "b79429dc-e0f7-44a7-b564-ff6f9831d545", - "code": "33147", - "data": { - "stops": [ - { - "id": "3147", - "code": "33147", - "data": { - "gtfs": { - "stop_id": "3147", - "stop_code": "33147", - "stop_name": "de Lyon et Repentigny", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Lyon et Repentigny", - "geography": { - "type": "Point", - "coordinates": [ - -73.4535879317963, - 45.5109405673454 - ] - } - }, - { - "id": "3167", - "code": "33167", - "data": { - "gtfs": { - "stop_id": "3167", - "stop_code": "33167", - "stop_name": "de Lyon et Repentigny", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Lyon et Repentigny", - "geography": { - "type": "Point", - "coordinates": [ - -73.4531803013309, - 45.5109521682298 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3304323038265 - }, - "name": "de Lyon et Repentigny", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453384117, - 45.510946368 - ] - }, - "is_frozen": false, - "integer_id": 1123, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451519, - 45.509284 - ] - }, - "id": 1124, - "properties": { - "id": "e10756d4-095f-4fec-94fb-19ac7075bc43", - "code": "33149", - "data": { - "stops": [ - { - "id": "3149", - "code": "33149", - "data": { - "gtfs": { - "stop_id": "3149", - "stop_code": "33149", - "stop_name": "Richmond et civique 3333", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Richmond et civique 3333", - "geography": { - "type": "Point", - "coordinates": [ - -73.4516021682168, - 45.5091614108793 - ] - } - }, - { - "id": "3165", - "code": "33165", - "data": { - "gtfs": { - "stop_id": "3165", - "stop_code": "33165", - "stop_name": "Richmond et civique 3340", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Richmond et civique 3340", - "geography": { - "type": "Point", - "coordinates": [ - -73.4514361813647, - 45.5094071097912 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.302339492168 - }, - "name": "Richmond et civique 3333", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451519175, - 45.50928426 - ] - }, - "is_frozen": false, - "integer_id": 1124, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453579, - 45.508639 - ] - }, - "id": 1125, - "properties": { - "id": "3dcc9db5-75c0-46a8-8247-d3d2e0220e07", - "code": "33150", - "data": { - "stops": [ - { - "id": "3150", - "code": "33150", - "data": { - "gtfs": { - "stop_id": "3150", - "stop_code": "33150", - "stop_name": "Richmond et Rhéaume", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Richmond et Rhéaume", - "geography": { - "type": "Point", - "coordinates": [ - -73.4532710763347, - 45.5087309923255 - ] - } - }, - { - "id": "3164", - "code": "33164", - "data": { - "gtfs": { - "stop_id": "3164", - "stop_code": "33164", - "stop_name": "Richmond et civique 3256", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Richmond et civique 3256", - "geography": { - "type": "Point", - "coordinates": [ - -73.4538878580932, - 45.5085460968479 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2914263341519 - }, - "name": "Richmond et Rhéaume", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453579467, - 45.508638545 - ] - }, - "is_frozen": false, - "integer_id": 1125, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455826, - 45.508487 - ] - }, - "id": 1126, - "properties": { - "id": "98d2ace5-e4e8-4113-91e3-89c01d89a89f", - "code": "33151", - "data": { - "stops": [ - { - "id": "3151", - "code": "33151", - "data": { - "gtfs": { - "stop_id": "3151", - "stop_code": "33151", - "stop_name": "Richmond et Riverin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Richmond et Riverin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4556188072629, - 45.5085698751197 - ] - } - }, - { - "id": "3163", - "code": "33163", - "data": { - "gtfs": { - "stop_id": "3163", - "stop_code": "33163", - "stop_name": "Richmond et Riverin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Richmond et Riverin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4560327006965, - 45.5084043931291 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2888674072627 - }, - "name": "Richmond et Riverin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455825754, - 45.508487134 - ] - }, - "is_frozen": false, - "integer_id": 1126, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457859, - 45.508341 - ] - }, - "id": 1127, - "properties": { - "id": "1fdfd4f4-c553-4a7d-8963-4eb750e13bff", - "code": "33152", - "data": { - "stops": [ - { - "id": "3152", - "code": "33152", - "data": { - "gtfs": { - "stop_id": "3152", - "stop_code": "33152", - "stop_name": "Richmond et boul. Roberval ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Richmond et boul. Roberval ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4580300919595, - 45.5084044488773 - ] - } - }, - { - "id": "3162", - "code": "33162", - "data": { - "gtfs": { - "stop_id": "3162", - "stop_code": "33162", - "stop_name": "Richmond et boul. Roberval ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Richmond et boul. Roberval ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4576878704762, - 45.508278293431 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.286403953877 - }, - "name": "Richmond et boul. Roberval ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457858981, - 45.508341371 - ] - }, - "is_frozen": false, - "integer_id": 1127, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457751, - 45.509544 - ] - }, - "id": 1128, - "properties": { - "id": "77540404-5599-4bb2-b15d-add1fcb9fe20", - "code": "33153", - "data": { - "stops": [ - { - "id": "3153", - "code": "33153", - "data": { - "gtfs": { - "stop_id": "3153", - "stop_code": "33153", - "stop_name": "boul. Roberval ouest et Denaut", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval ouest et Denaut", - "geography": { - "type": "Point", - "coordinates": [ - -73.4576938345406, - 45.5093951319789 - ] - } - }, - { - "id": "3161", - "code": "33161", - "data": { - "gtfs": { - "stop_id": "3161", - "stop_code": "33161", - "stop_name": "boul. Roberval ouest et Denaut", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval ouest et Denaut", - "geography": { - "type": "Point", - "coordinates": [ - -73.4578090053475, - 45.5096926785376 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3067278283285 - }, - "name": "boul. Roberval ouest et Denaut", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45775142, - 45.509543905 - ] - }, - "is_frozen": false, - "integer_id": 1128, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454074, - 45.515409 - ] - }, - "id": 1129, - "properties": { - "id": "6716e17d-58d0-427c-a6f7-62e8d8197b2a", - "code": "33154", - "data": { - "stops": [ - { - "id": "3154", - "code": "33154", - "data": { - "gtfs": { - "stop_id": "3154", - "stop_code": "33154", - "stop_name": "boul. Roberval ouest et civique 390", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval ouest et civique 390", - "geography": { - "type": "Point", - "coordinates": [ - -73.4543111571838, - 45.5150800899929 - ] - } - }, - { - "id": "5750", - "code": "30519", - "data": { - "gtfs": { - "stop_id": "5750", - "stop_code": "30519", - "stop_name": "boul. Roberval ouest et Racicot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval ouest et Racicot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4538362271421, - 45.5157374246208 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.405867401186 - }, - "name": "boul. Roberval ouest et civique 390", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454073692, - 45.515408757 - ] - }, - "is_frozen": false, - "integer_id": 1129, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462875, - 45.51427 - ] - }, - "id": 1130, - "properties": { - "id": "f3fbe48a-d0e8-4fb1-a54f-b576c2db44dc", - "code": "33155", - "data": { - "stops": [ - { - "id": "3155", - "code": "33155", - "data": { - "gtfs": { - "stop_id": "3155", - "stop_code": "33155", - "stop_name": "de Lyon et Darveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Lyon et Darveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4631257345796, - 45.5144413548353 - ] - } - }, - { - "id": "3175", - "code": "33175", - "data": { - "gtfs": { - "stop_id": "3175", - "stop_code": "33175", - "stop_name": "Darveau et de Lyon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Darveau et de Lyon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4626232807809, - 45.514098149556 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3866112415985 - }, - "name": "de Lyon et Darveau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462874508, - 45.514269752 - ] - }, - "is_frozen": false, - "integer_id": 1130, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455231, - 45.516315 - ] - }, - "id": 1131, - "properties": { - "id": "ff7f9dbf-a0e0-4bfa-86dc-2f9a0bdd5926", - "code": "33156", - "data": { - "stops": [ - { - "id": "3156", - "code": "33156", - "data": { - "gtfs": { - "stop_id": "3156", - "stop_code": "33156", - "stop_name": "Racicot et civique 3081", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Racicot et civique 3081", - "geography": { - "type": "Point", - "coordinates": [ - -73.4554583221836, - 45.5164608739824 - ] - } - }, - { - "id": "3158", - "code": "33158", - "data": { - "gtfs": { - "stop_id": "3158", - "stop_code": "33158", - "stop_name": "Racicot et Richard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Racicot et Richard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4550044559833, - 45.5161688785943 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4211871864849 - }, - "name": "Racicot et civique 3081", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455231389, - 45.516314876 - ] - }, - "is_frozen": false, - "integer_id": 1131, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457242, - 45.517204 - ] - }, - "id": 1132, - "properties": { - "id": "c5f578ca-60dd-46cb-8482-2978ed0e3898", - "code": "33157", - "data": { - "stops": [ - { - "id": "3157", - "code": "33157", - "data": { - "gtfs": { - "stop_id": "3157", - "stop_code": "33157", - "stop_name": "Racicot et de Fontainebleau sud", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Racicot et de Fontainebleau sud", - "geography": { - "type": "Point", - "coordinates": [ - -73.4572419897164, - 45.5172039053518 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4362187413401 - }, - "name": "Racicot et de Fontainebleau sud", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45724199, - 45.517203905 - ] - }, - "is_frozen": false, - "integer_id": 1132, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455209, - 45.514004 - ] - }, - "id": 1133, - "properties": { - "id": "4ecd13b4-71e4-4328-bc7f-b30325894d82", - "code": "33159", - "data": { - "stops": [ - { - "id": "3159", - "code": "33159", - "data": { - "gtfs": { - "stop_id": "3159", - "stop_code": "33159", - "stop_name": "boul. Roberval ouest et Soissons", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval ouest et Soissons", - "geography": { - "type": "Point", - "coordinates": [ - -73.4552692466869, - 45.5141488392881 - ] - } - }, - { - "id": "4194", - "code": "34194", - "data": { - "gtfs": { - "stop_id": "4194", - "stop_code": "34194", - "stop_name": "boul. Roberval ouest et Soissons", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval ouest et Soissons", - "geography": { - "type": "Point", - "coordinates": [ - -73.4551493298541, - 45.5138601393778 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3821268383501 - }, - "name": "boul. Roberval ouest et Soissons", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455209288, - 45.514004489 - ] - }, - "is_frozen": false, - "integer_id": 1133, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451716, - 45.510264 - ] - }, - "id": 1134, - "properties": { - "id": "e7cd0200-d7e2-4808-b4af-d251dcc23019", - "code": "33166", - "data": { - "stops": [ - { - "id": "3166", - "code": "33166", - "data": { - "gtfs": { - "stop_id": "3166", - "stop_code": "33166", - "stop_name": "Richmond et de Lyon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Richmond et de Lyon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4515638461822, - 45.5101938229345 - ] - } - }, - { - "id": "4370", - "code": "34370", - "data": { - "gtfs": { - "stop_id": "4370", - "stop_code": "34370", - "stop_name": "de Lyon et Richmond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Lyon et Richmond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4518676087982, - 45.5103343734575 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3189003352182 - }, - "name": "Richmond et de Lyon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451715727, - 45.510264098 - ] - }, - "is_frozen": false, - "integer_id": 1134, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46573, - 45.515598 - ] - }, - "id": 1135, - "properties": { - "id": "5ca73944-03b3-4fca-ab1f-781dd6f959a4", - "code": "33176", - "data": { - "stops": [ - { - "id": "3176", - "code": "33176", - "data": { - "gtfs": { - "stop_id": "3176", - "stop_code": "33176", - "stop_name": "de Lyon et boul. Jacques-Cartier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Lyon et boul. Jacques-Cartier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4657304696146, - 45.515598152262 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4090694485533 - }, - "name": "de Lyon et boul. Jacques-Cartier ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46573047, - 45.515598152 - ] - }, - "is_frozen": false, - "integer_id": 1135, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.502585, - 45.525591 - ] - }, - "id": 1136, - "properties": { - "id": "3166d228-f358-4741-9950-420cebd0aa4c", - "code": "33186", - "data": { - "stops": [ - { - "id": "3186", - "code": "33186", - "data": { - "gtfs": { - "stop_id": "3186", - "stop_code": "33186", - "stop_name": "Joliette et Crémazie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Crémazie", - "geography": { - "type": "Point", - "coordinates": [ - -73.502305120164, - 45.5255866316421 - ] - } - }, - { - "id": "3852", - "code": "33852", - "data": { - "gtfs": { - "stop_id": "3852", - "stop_code": "33852", - "stop_name": "Joliette et Crémazie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Crémazie", - "geography": { - "type": "Point", - "coordinates": [ - -73.5028646237838, - 45.5255960870924 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5780610093631 - }, - "name": "Joliette et Crémazie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.502585, - 45.525591 - ] - }, - "is_frozen": false, - "integer_id": 1136, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.512533, - 45.528988 - ] - }, - "id": 1137, - "properties": { - "id": "05160b93-3ef3-4dd9-83e8-740d2dc282d9", - "code": "33190", - "data": { - "stops": [ - { - "id": "3190", - "code": "33190", - "data": { - "gtfs": { - "stop_id": "3190", - "stop_code": "33190", - "stop_name": "Joliette et Saint-Laurent ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Saint-Laurent ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.512533105993, - 45.528988343026 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6355287960017 - }, - "name": "Joliette et Saint-Laurent ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.512533, - 45.528988 - ] - }, - "is_frozen": false, - "integer_id": 1137, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.49359, - 45.511273 - ] - }, - "id": 1138, - "properties": { - "id": "5d573c90-ed41-4ac1-9f58-abc862e00f93", - "code": "33202", - "data": { - "stops": [ - { - "id": "3202", - "code": "33202", - "data": { - "gtfs": { - "stop_id": "3202", - "stop_code": "33202", - "stop_name": "boul. Curé-Poirier ouest et Laval", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier ouest et Laval", - "geography": { - "type": "Point", - "coordinates": [ - -73.4935895918586, - 45.5112734252214 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3359604837666 - }, - "name": "boul. Curé-Poirier ouest et Laval", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493589592, - 45.511273425 - ] - }, - "is_frozen": false, - "integer_id": 1138, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.470223, - 45.447237 - ] - }, - "id": 1139, - "properties": { - "id": "1246e5e5-bb4b-43f0-90a9-bf5fda85db82", - "code": "33203", - "data": { - "stops": [ - { - "id": "3203", - "code": "33203", - "data": { - "gtfs": { - "stop_id": "3203", - "stop_code": "33203", - "stop_name": "boul. Taschereau et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4702234304068, - 45.4472366265003 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2553729979028 - }, - "name": "boul. Taschereau et boul. Pelletier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47022343, - 45.447236627 - ] - }, - "is_frozen": false, - "integer_id": 1139, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474597, - 45.438325 - ] - }, - "id": 1140, - "properties": { - "id": "9d435e32-ad0d-41e2-bb28-30458533923f", - "code": "33204", - "data": { - "stops": [ - { - "id": "3204", - "code": "33204", - "data": { - "gtfs": { - "stop_id": "3204", - "stop_code": "33204", - "stop_name": "boul. Taschereau et ch. des Prairies", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et ch. des Prairies", - "geography": { - "type": "Point", - "coordinates": [ - -73.4745967384572, - 45.4383246431909 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1052765186671 - }, - "name": "boul. Taschereau et ch. des Prairies", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474596738, - 45.438324643 - ] - }, - "is_frozen": false, - "integer_id": 1140, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475361, - 45.434207 - ] - }, - "id": 1141, - "properties": { - "id": "46f71035-3e65-4e46-9e5d-154a9fb90fc8", - "code": "33205", - "data": { - "stops": [ - { - "id": "3205", - "code": "33205", - "data": { - "gtfs": { - "stop_id": "3205", - "stop_code": "33205", - "stop_name": "boul. Matte et boul. Taschereau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Matte et boul. Taschereau", - "geography": { - "type": "Point", - "coordinates": [ - -73.475360874842, - 45.4342066585042 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0359448209495 - }, - "name": "boul. Matte et boul. Taschereau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475360875, - 45.434206659 - ] - }, - "is_frozen": false, - "integer_id": 1141, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47206, - 45.43308 - ] - }, - "id": 1142, - "properties": { - "id": "c5dd3e08-dca5-473a-b3e2-b94affceddb5", - "code": "33207", - "data": { - "stops": [ - { - "id": "3207", - "code": "33207", - "data": { - "gtfs": { - "stop_id": "3207", - "stop_code": "33207", - "stop_name": "boul. Matte et civique 2755", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Matte et civique 2755", - "geography": { - "type": "Point", - "coordinates": [ - -73.4720595992023, - 45.4330804440881 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0169861210444 - }, - "name": "boul. Matte et civique 2755", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472059599, - 45.433080444 - ] - }, - "is_frozen": false, - "integer_id": 1142, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468671, - 45.429838 - ] - }, - "id": 1143, - "properties": { - "id": "f58a318f-2fac-4a22-b374-38335fe92155", - "code": "33209", - "data": { - "stops": [ - { - "id": "3209", - "code": "33209", - "data": { - "gtfs": { - "stop_id": "3209", - "stop_code": "33209", - "stop_name": "av. Illinois et Isabelle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Illinois et Isabelle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4686710239837, - 45.4298375489932 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.9624015123991 - }, - "name": "av. Illinois et Isabelle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468671024, - 45.429837549 - ] - }, - "is_frozen": false, - "integer_id": 1143, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467104, - 45.42925 - ] - }, - "id": 1144, - "properties": { - "id": "02173302-0d13-4f4c-b805-a10732912553", - "code": "33212", - "data": { - "stops": [ - { - "id": "3212", - "code": "33212", - "data": { - "gtfs": { - "stop_id": "3212", - "stop_code": "33212", - "stop_name": "Isabelle et civique 3530", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Isabelle et civique 3530", - "geography": { - "type": "Point", - "coordinates": [ - -73.4671036669977, - 45.4292496499406 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.9525069576446 - }, - "name": "Isabelle et civique 3530", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.467103667, - 45.42924965 - ] - }, - "is_frozen": false, - "integer_id": 1144, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468434, - 45.429674 - ] - }, - "id": 1145, - "properties": { - "id": "dd75840f-4ec8-4ee8-b04f-ae7639f6c994", - "code": "33213", - "data": { - "stops": [ - { - "id": "3213", - "code": "33213", - "data": { - "gtfs": { - "stop_id": "3213", - "stop_code": "33213", - "stop_name": "Isabelle et av. Illinois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Isabelle et av. Illinois", - "geography": { - "type": "Point", - "coordinates": [ - -73.4684341393885, - 45.4296740458807 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.9596496664992 - }, - "name": "Isabelle et av. Illinois", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468434139, - 45.429674046 - ] - }, - "is_frozen": false, - "integer_id": 1145, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467423, - 45.431381 - ] - }, - "id": 1146, - "properties": { - "id": "fbc5c4f7-343a-481e-867b-6e46cf998478", - "code": "33214", - "data": { - "stops": [ - { - "id": "3214", - "code": "33214", - "data": { - "gtfs": { - "stop_id": "3214", - "stop_code": "33214", - "stop_name": "av. Illinois et boul. Matte", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Illinois et boul. Matte", - "geography": { - "type": "Point", - "coordinates": [ - -73.4674231403547, - 45.4313807752104 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.9883760258317 - }, - "name": "av. Illinois et boul. Matte", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46742314, - 45.431380775 - ] - }, - "is_frozen": false, - "integer_id": 1146, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.472206, - 45.433443 - ] - }, - "id": 1147, - "properties": { - "id": "24ba4b22-45ca-4a49-b97e-fa35f5d53093", - "code": "33215", - "data": { - "stops": [ - { - "id": "3215", - "code": "33215", - "data": { - "gtfs": { - "stop_id": "3215", - "stop_code": "33215", - "stop_name": "boul. Matte et civique 2755", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Matte et civique 2755", - "geography": { - "type": "Point", - "coordinates": [ - -73.4722055599939, - 45.4334429616132 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0230886253182 - }, - "name": "boul. Matte et civique 2755", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47220556, - 45.433442962 - ] - }, - "is_frozen": false, - "integer_id": 1147, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474205, - 45.437933 - ] - }, - "id": 1148, - "properties": { - "id": "f673dd78-5910-4b73-a147-fdcaa1bf6a01", - "code": "33217", - "data": { - "stops": [ - { - "id": "3217", - "code": "33217", - "data": { - "gtfs": { - "stop_id": "3217", - "stop_code": "33217", - "stop_name": "boul. Taschereau et ch. des Prairies", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et ch. des Prairies", - "geography": { - "type": "Point", - "coordinates": [ - -73.4742047408929, - 45.4379328923924 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0986802265572 - }, - "name": "boul. Taschereau et ch. des Prairies", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474204741, - 45.437932892 - ] - }, - "is_frozen": false, - "integer_id": 1148, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464646, - 45.52069 - ] - }, - "id": 1149, - "properties": { - "id": "39c3eab5-6995-4187-aaec-6f0b6badd5cf", - "code": "33223", - "data": { - "stops": [ - { - "id": "3223", - "code": "33223", - "data": { - "gtfs": { - "stop_id": "3223", - "stop_code": "33223", - "stop_name": "de Chatham et boul. Jacques-Cartier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Chatham et boul. Jacques-Cartier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4643832603187, - 45.520677767095 - ] - } - }, - { - "id": "3224", - "code": "33224", - "data": { - "gtfs": { - "stop_id": "3224", - "stop_code": "33224", - "stop_name": "Maréchal et de Chatham", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maréchal et de Chatham", - "geography": { - "type": "Point", - "coordinates": [ - -73.46490896234, - 45.5207024306447 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4951695250865 - }, - "name": "de Chatham et boul. Jacques-Cartier ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464646111, - 45.520690099 - ] - }, - "is_frozen": false, - "integer_id": 1149, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468042, - 45.516271 - ] - }, - "id": 1150, - "properties": { - "id": "e4a85106-fc08-4e8c-9fe5-4344d0ebb9f9", - "code": "33226", - "data": { - "stops": [ - { - "id": "3226", - "code": "33226", - "data": { - "gtfs": { - "stop_id": "3226", - "stop_code": "33226", - "stop_name": "de Lyon et Maréchal", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Lyon et Maréchal", - "geography": { - "type": "Point", - "coordinates": [ - -73.4680583627286, - 45.516191271421 - ] - } - }, - { - "id": "3894", - "code": "33894", - "data": { - "gtfs": { - "stop_id": "3894", - "stop_code": "33894", - "stop_name": "Maréchal et Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maréchal et Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4680247694115, - 45.5163511331622 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4204487718798 - }, - "name": "de Lyon et Maréchal", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468041566, - 45.516271202 - ] - }, - "is_frozen": false, - "integer_id": 1150, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466738, - 45.518157 - ] - }, - "id": 1151, - "properties": { - "id": "dcd7d0e4-fcf8-4c5b-b660-50e4efaf9e01", - "code": "33227", - "data": { - "stops": [ - { - "id": "3227", - "code": "33227", - "data": { - "gtfs": { - "stop_id": "3227", - "stop_code": "33227", - "stop_name": "Maréchal et Labonté", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maréchal et Labonté", - "geography": { - "type": "Point", - "coordinates": [ - -73.4667380373582, - 45.5181569171551 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4523328920279 - }, - "name": "Maréchal et Labonté", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466738037, - 45.518156917 - ] - }, - "is_frozen": false, - "integer_id": 1151, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439654, - 45.564205 - ] - }, - "id": 1152, - "properties": { - "id": "f1fdc85c-124b-4428-8960-81d8b0fa863a", - "code": "33237", - "data": { - "stops": [ - { - "id": "3237", - "code": "33237", - "data": { - "gtfs": { - "stop_id": "3237", - "stop_code": "33237", - "stop_name": "Graham-Bell et civique 1260", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Graham-Bell et civique 1260", - "geography": { - "type": "Point", - "coordinates": [ - -73.4393938439678, - 45.5640851449722 - ] - } - }, - { - "id": "3452", - "code": "33452", - "data": { - "gtfs": { - "stop_id": "3452", - "stop_code": "33452", - "stop_name": "Graham-Bell et civique 1265", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Graham-Bell et civique 1265", - "geography": { - "type": "Point", - "coordinates": [ - -73.4399138626492, - 45.5643247618513 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2319081922875 - }, - "name": "Graham-Bell et civique 1260", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439653853, - 45.564204953 - ] - }, - "is_frozen": false, - "integer_id": 1152, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.436219, - 45.563451 - ] - }, - "id": 1153, - "properties": { - "id": "af75f57b-23de-436e-ac1d-d36a204dd0cd", - "code": "33238", - "data": { - "stops": [ - { - "id": "3238", - "code": "33238", - "data": { - "gtfs": { - "stop_id": "3238", - "stop_code": "33238", - "stop_name": "Graham-Bell et civique 1330", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Graham-Bell et civique 1330", - "geography": { - "type": "Point", - "coordinates": [ - -73.4363835028367, - 45.5633969812056 - ] - } - }, - { - "id": "3369", - "code": "33369", - "data": { - "gtfs": { - "stop_id": "3369", - "stop_code": "33369", - "stop_name": "Graham-Bell et civique 1331", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Graham-Bell et civique 1331", - "geography": { - "type": "Point", - "coordinates": [ - -73.4360539025828, - 45.5635055843486 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2191336175647 - }, - "name": "Graham-Bell et civique 1330", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.436218703, - 45.563451283 - ] - }, - "is_frozen": false, - "integer_id": 1153, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.432047, - 45.562626 - ] - }, - "id": 1154, - "properties": { - "id": "cb78d8bd-4b44-40b3-8301-c4501b063d48", - "code": "33239", - "data": { - "stops": [ - { - "id": "3239", - "code": "33239", - "data": { - "gtfs": { - "stop_id": "3239", - "stop_code": "33239", - "stop_name": "Graham-Bell et civique 1380", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Graham-Bell et civique 1380", - "geography": { - "type": "Point", - "coordinates": [ - -73.4320259663883, - 45.5625595482879 - ] - } - }, - { - "id": "3368", - "code": "33368", - "data": { - "gtfs": { - "stop_id": "3368", - "stop_code": "33368", - "stop_name": "Graham-Bell et civique 1380", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Graham-Bell et civique 1380", - "geography": { - "type": "Point", - "coordinates": [ - -73.4320682356094, - 45.5626925220478 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2051463903474 - }, - "name": "Graham-Bell et civique 1380", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.432047101, - 45.562626035 - ] - }, - "is_frozen": false, - "integer_id": 1154, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.428688, - 45.562438 - ] - }, - "id": 1155, - "properties": { - "id": "58c5658c-7476-4072-998b-0663b682b8a6", - "code": "33240", - "data": { - "stops": [ - { - "id": "3240", - "code": "33240", - "data": { - "gtfs": { - "stop_id": "3240", - "stop_code": "33240", - "stop_name": "Graham-Bell et civique 1445", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Graham-Bell et civique 1445", - "geography": { - "type": "Point", - "coordinates": [ - -73.4287172419834, - 45.5623703031943 - ] - } - }, - { - "id": "3367", - "code": "33367", - "data": { - "gtfs": { - "stop_id": "3367", - "stop_code": "33367", - "stop_name": "Graham-Bell et civique 1445", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Graham-Bell et civique 1445", - "geography": { - "type": "Point", - "coordinates": [ - -73.4286596057847, - 45.5625060053201 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2019620578011 - }, - "name": "Graham-Bell et civique 1445", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.428688424, - 45.562438154 - ] - }, - "is_frozen": false, - "integer_id": 1155, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.412973, - 45.567836 - ] - }, - "id": 1156, - "properties": { - "id": "494eea8e-2f4e-4123-9eb6-ab837bba3b5d", - "code": "33242", - "data": { - "stops": [ - { - "id": "3242", - "code": "33242", - "data": { - "gtfs": { - "stop_id": "3242", - "stop_code": "33242", - "stop_name": "ch. Du Tremblay et civique 300", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 300", - "geography": { - "type": "Point", - "coordinates": [ - -73.4132603768062, - 45.5677054623584 - ] - } - }, - { - "id": "3335", - "code": "33335", - "data": { - "gtfs": { - "stop_id": "3335", - "stop_code": "33335", - "stop_name": "ch. Du Tremblay et civique 300", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 300", - "geography": { - "type": "Point", - "coordinates": [ - -73.4126846695954, - 45.5679659752848 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2934561534129 - }, - "name": "ch. Du Tremblay et civique 300", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.412972523, - 45.567835719 - ] - }, - "is_frozen": false, - "integer_id": 1156, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.410874, - 45.567856 - ] - }, - "id": 1157, - "properties": { - "id": "4ff6fce9-ceb0-4a73-9642-e337dacfd9e4", - "code": "33243", - "data": { - "stops": [ - { - "id": "3243", - "code": "33243", - "data": { - "gtfs": { - "stop_id": "3243", - "stop_code": "33243", - "stop_name": "ch. Du Tremblay et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4108741726517, - 45.567856203947 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2938034441294 - }, - "name": "ch. Du Tremblay et boul. De Montarville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.410874173, - 45.567856204 - ] - }, - "is_frozen": false, - "integer_id": 1157, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.409269, - 45.499328 - ] - }, - "id": 1158, - "properties": { - "id": "b299573d-c21f-4cc0-af5e-fe16e9fd7fe9", - "code": "33273", - "data": { - "stops": [ - { - "id": "3273", - "code": "33273", - "data": { - "gtfs": { - "stop_id": "3273", - "stop_code": "33273", - "stop_name": "ch. de Chambly et Mauriat", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Mauriat", - "geography": { - "type": "Point", - "coordinates": [ - -73.4092707753898, - 45.4994132046956 - ] - } - }, - { - "id": "3274", - "code": "33274", - "data": { - "gtfs": { - "stop_id": "3274", - "stop_code": "33274", - "stop_name": "ch. de Chambly et tsse Georges-Jutras", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et tsse Georges-Jutras", - "geography": { - "type": "Point", - "coordinates": [ - -73.4092664274179, - 45.4992435006315 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1341170591544 - }, - "name": "ch. de Chambly et Mauriat", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.409268601, - 45.499328353 - ] - }, - "is_frozen": false, - "integer_id": 1158, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454269, - 45.460392 - ] - }, - "id": 1159, - "properties": { - "id": "47d3a0e8-5db6-4263-911d-0835de2b9cb0", - "code": "33276", - "data": { - "stops": [ - { - "id": "3276", - "code": "33276", - "data": { - "gtfs": { - "stop_id": "3276", - "stop_code": "33276", - "stop_name": "av. Malo et civique 3150", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et civique 3150", - "geography": { - "type": "Point", - "coordinates": [ - -73.4542685527791, - 45.4603919044105 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4770641447118 - }, - "name": "av. Malo et civique 3150", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454268553, - 45.460391904 - ] - }, - "is_frozen": false, - "integer_id": 1159, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.552784, - 45.497032 - ] - }, - "id": 1160, - "properties": { - "id": "72bc37a1-b03c-4149-8154-962f4512a12d", - "code": "33279", - "data": { - "stops": [ - { - "id": "3279", - "code": "33279", - "data": { - "gtfs": { - "stop_id": "3279", - "stop_code": "33279", - "stop_name": "de la Commune ouest et Queen", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Commune ouest et Queen", - "geography": { - "type": "Point", - "coordinates": [ - -73.5527835235992, - 45.4970315525516 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0953211344556 - }, - "name": "de la Commune ouest et Queen", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.552783524, - 45.497031553 - ] - }, - "is_frozen": false, - "integer_id": 1160, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.550726, - 45.524858 - ] - }, - "id": 1161, - "properties": { - "id": "c621a0b4-590c-49e4-a56e-dbf728939757", - "code": "33285", - "data": { - "stops": [ - { - "id": "3285", - "code": "33285", - "data": { - "gtfs": { - "stop_id": "3285", - "stop_code": "33285", - "stop_name": "av. De Lorimier et Sainte-Catherine est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. De Lorimier et Sainte-Catherine est", - "geography": { - "type": "Point", - "coordinates": [ - -73.5507256800974, - 45.5248578360801 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5656592642731 - }, - "name": "av. De Lorimier et Sainte-Catherine est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.55072568, - 45.524857836 - ] - }, - "is_frozen": false, - "integer_id": 1161, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.548382, - 45.521008 - ] - }, - "id": 1162, - "properties": { - "id": "40dfecad-5647-485d-a27b-e190661c773f", - "code": "33287", - "data": { - "stops": [ - { - "id": "3287", - "code": "33287", - "data": { - "gtfs": { - "stop_id": "3287", - "stop_code": "33287", - "stop_name": "av. Papineau et De La Gauchetière est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Papineau et De La Gauchetière est", - "geography": { - "type": "Point", - "coordinates": [ - -73.5483823150378, - 45.521008391872 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5005523300501 - }, - "name": "av. Papineau et De La Gauchetière est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.548382315, - 45.521008392 - ] - }, - "is_frozen": false, - "integer_id": 1162, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.552654, - 45.523965 - ] - }, - "id": 1163, - "properties": { - "id": "75f9df26-8a28-4cb0-870b-f121f95b87ff", - "code": "33289", - "data": { - "stops": [ - { - "id": "3289", - "code": "33289", - "data": { - "gtfs": { - "stop_id": "3289", - "stop_code": "33289", - "stop_name": "Cartier et METRO PAPINEAU", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Cartier et METRO PAPINEAU", - "geography": { - "type": "Point", - "coordinates": [ - -73.5527359006637, - 45.5238246404816 - ] - } - }, - { - "id": "5087", - "code": "35087", - "data": { - "gtfs": { - "stop_id": "5087", - "stop_code": "35087", - "stop_name": "Dorion et METRO PAPINEAU", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Dorion et METRO PAPINEAU", - "geography": { - "type": "Point", - "coordinates": [ - -73.5525728730792, - 45.5241054026318 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5505576262196 - }, - "name": "Cartier et METRO PAPINEAU", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.552654387, - 45.523965022 - ] - }, - "is_frozen": false, - "integer_id": 1163, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492709, - 45.489196 - ] - }, - "id": 1164, - "properties": { - "id": "fa220212-b6b2-4456-934f-7248f9884444", - "code": "33294", - "data": { - "stops": [ - { - "id": "3294", - "code": "33294", - "data": { - "gtfs": { - "stop_id": "3294", - "stop_code": "33294", - "stop_name": "av. Alexandra et av. Filion", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et av. Filion", - "geography": { - "type": "Point", - "coordinates": [ - -73.4928964698601, - 45.4890742455766 - ] - } - }, - { - "id": "5575", - "code": "30323", - "data": { - "gtfs": { - "stop_id": "5575", - "stop_code": "30323", - "stop_name": "av. Victoria et PROVIGO", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et PROVIGO", - "geography": { - "type": "Point", - "coordinates": [ - -73.4923188135975, - 45.4893858407876 - ] - } - }, - { - "id": "5623", - "code": "30372", - "data": { - "gtfs": { - "stop_id": "5623", - "stop_code": "30372", - "stop_name": "av. Alexandra et av. Filion", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Alexandra et av. Filion", - "geography": { - "type": "Point", - "coordinates": [ - -73.4930987622209, - 45.4890055772892 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9629989002788 - }, - "name": "av. Alexandra et av. Filion", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492708788, - 45.489195709 - ] - }, - "is_frozen": false, - "integer_id": 1164, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.472338, - 45.537303 - ] - }, - "id": 1165, - "properties": { - "id": "def08726-b847-4fc6-b901-78e04519a492", - "code": "33295", - "data": { - "stops": [ - { - "id": "3295", - "code": "33295", - "data": { - "gtfs": { - "stop_id": "3295", - "stop_code": "33295", - "stop_name": "boul. Roland-Therrien et TIM HORTON", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et TIM HORTON", - "geography": { - "type": "Point", - "coordinates": [ - -73.4723381866305, - 45.5373031852079 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7762420003879 - }, - "name": "boul. Roland-Therrien et TIM HORTON", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472338187, - 45.537303185 - ] - }, - "is_frozen": false, - "integer_id": 1165, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492276, - 45.456999 - ] - }, - "id": 1166, - "properties": { - "id": "16a4cfe7-4b02-454a-8a07-9501f3c5e0c5", - "code": "33296", - "data": { - "stops": [ - { - "id": "3296", - "code": "33296", - "data": { - "gtfs": { - "stop_id": "3296", - "stop_code": "33296", - "stop_name": "boul. de Rome et boul. Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et boul. Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4922755937622, - 45.4569992141809 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.419876248053 - }, - "name": "boul. de Rome et boul. Marie-Victorin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492275594, - 45.456999214 - ] - }, - "is_frozen": false, - "integer_id": 1166, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461348, - 45.591604 - ] - }, - "id": 1167, - "properties": { - "id": "6460b11a-31ec-4bbc-b7b7-22be32195079", - "code": "33297", - "data": { - "stops": [ - { - "id": "3297", - "code": "33297", - "data": { - "gtfs": { - "stop_id": "3297", - "stop_code": "33297", - "stop_name": "Sortie Marie-Victorin et boul. Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sortie Marie-Victorin et boul. Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4615220492566, - 45.5916705380248 - ] - } - }, - { - "id": "3377", - "code": "33377", - "data": { - "gtfs": { - "stop_id": "3377", - "stop_code": "33377", - "stop_name": "boul. Marie-Victorin et Sortie Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Sortie Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4611743768536, - 45.5914188164989 - ] - } - }, - { - "id": "4918", - "code": "34918", - "data": { - "gtfs": { - "stop_id": "4918", - "stop_code": "34918", - "stop_name": "boul. Marie-Victorin et rte 132 est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et rte 132 est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4612454678342, - 45.5917897807534 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6966671296173 - }, - "name": "Sortie Marie-Victorin et boul. Marie-Victorin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461348213, - 45.591604299 - ] - }, - "is_frozen": false, - "integer_id": 1167, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.405217, - 45.507198 - ] - }, - "id": 1168, - "properties": { - "id": "5228afc6-7e91-431f-8045-f41c542a77ea", - "code": "33300", - "data": { - "stops": [ - { - "id": "3300", - "code": "33300", - "data": { - "gtfs": { - "stop_id": "3300", - "stop_code": "33300", - "stop_name": "Maisonneuve et civique 795", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maisonneuve et civique 795", - "geography": { - "type": "Point", - "coordinates": [ - -73.4052337880996, - 45.5070788273136 - ] - } - }, - { - "id": "3301", - "code": "33301", - "data": { - "gtfs": { - "stop_id": "3301", - "stop_code": "33301", - "stop_name": "Maisonneuve et civique 776", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maisonneuve et civique 776", - "geography": { - "type": "Point", - "coordinates": [ - -73.4052011413355, - 45.5073161885455 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2670728652763 - }, - "name": "Maisonneuve et civique 795", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.405217465, - 45.507197508 - ] - }, - "is_frozen": false, - "integer_id": 1168, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463164, - 45.479392 - ] - }, - "id": 1169, - "properties": { - "id": "a2558ba6-6969-4ec2-a211-1170eb732a2b", - "code": "33305", - "data": { - "stops": [ - { - "id": "3305", - "code": "33305", - "data": { - "gtfs": { - "stop_id": "3305", - "stop_code": "33305", - "stop_name": "André et Alphonse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "André et Alphonse", - "geography": { - "type": "Point", - "coordinates": [ - -73.4630731892353, - 45.4791117015372 - ] - } - }, - { - "id": "3306", - "code": "33306", - "data": { - "gtfs": { - "stop_id": "3306", - "stop_code": "33306", - "stop_name": "Alphonse et André", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Alphonse et André", - "geography": { - "type": "Point", - "coordinates": [ - -73.4628048781125, - 45.4792600892077 - ] - } - }, - { - "id": "3983", - "code": "33983", - "data": { - "gtfs": { - "stop_id": "3983", - "stop_code": "33983", - "stop_name": "André et Angèle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "André et Angèle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4635238738729, - 45.4796719865579 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7975199952405 - }, - "name": "André et Alphonse", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463164376, - 45.479391844 - ] - }, - "is_frozen": false, - "integer_id": 1169, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459064, - 45.505584 - ] - }, - "id": 1170, - "properties": { - "id": "05522d17-41d4-4e98-a458-ec71ea1a802b", - "code": "33307", - "data": { - "stops": [ - { - "id": "3307", - "code": "33307", - "data": { - "gtfs": { - "stop_id": "3307", - "stop_code": "33307", - "stop_name": "boul. Sir-Wilfrid-Laurier et civique 3350", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier et civique 3350", - "geography": { - "type": "Point", - "coordinates": [ - -73.4590637119593, - 45.5055841131756 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2398087464152 - }, - "name": "boul. Sir-Wilfrid-Laurier et civique 3350", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459063712, - 45.505584113 - ] - }, - "is_frozen": false, - "integer_id": 1170, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448352, - 45.506602 - ] - }, - "id": 1171, - "properties": { - "id": "c9ccd441-872f-4e75-b699-0014386c3503", - "code": "33308", - "data": { - "stops": [ - { - "id": "3308", - "code": "33308", - "data": { - "gtfs": { - "stop_id": "3308", - "stop_code": "33308", - "stop_name": "boul. Sir-Wilfrid-Laurier et civique 3900", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier et civique 3900", - "geography": { - "type": "Point", - "coordinates": [ - -73.4483523577645, - 45.5066019251704 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2570080758069 - }, - "name": "boul. Sir-Wilfrid-Laurier et civique 3900", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448352358, - 45.506601925 - ] - }, - "is_frozen": false, - "integer_id": 1171, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.511295, - 45.540313 - ] - }, - "id": 1172, - "properties": { - "id": "52f97fd3-6c91-420e-82d2-2198f2064d40", - "code": "33314", - "data": { - "stops": [ - { - "id": "3314", - "code": "33314", - "data": { - "gtfs": { - "stop_id": "3314", - "stop_code": "33314", - "stop_name": "du Bord-de-l'Eau ouest et Grant", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau ouest et Grant", - "geography": { - "type": "Point", - "coordinates": [ - -73.5112683867253, - 45.54022088389 - ] - } - }, - { - "id": "3315", - "code": "33315", - "data": { - "gtfs": { - "stop_id": "3315", - "stop_code": "33315", - "stop_name": "du Bord-de-l'Eau ouest et Grant", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau ouest et Grant", - "geography": { - "type": "Point", - "coordinates": [ - -73.511322044622, - 45.5404053451959 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8271925553679 - }, - "name": "du Bord-de-l'Eau ouest et Grant", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.511295216, - 45.540313115 - ] - }, - "is_frozen": false, - "integer_id": 1172, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.498059, - 45.554437 - ] - }, - "id": 1173, - "properties": { - "id": "c879a803-d58b-4487-8291-391e9b516d3c", - "code": "33316", - "data": { - "stops": [ - { - "id": "3316", - "code": "33316", - "data": { - "gtfs": { - "stop_id": "3316", - "stop_code": "33316", - "stop_name": "boul. Marie-Victorin et PRATT & WHITNEY CANADA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et PRATT & WHITNEY CANADA", - "geography": { - "type": "Point", - "coordinates": [ - -73.4980589293826, - 45.5544373790335 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0663888458445 - }, - "name": "boul. Marie-Victorin et PRATT & WHITNEY CANADA", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.498058929, - 45.554437379 - ] - }, - "is_frozen": false, - "integer_id": 1173, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.495983, - 45.556797 - ] - }, - "id": 1174, - "properties": { - "id": "8a4979f7-3a61-42a3-b8c4-ab9f94e3875e", - "code": "33317", - "data": { - "stops": [ - { - "id": "3317", - "code": "33317", - "data": { - "gtfs": { - "stop_id": "3317", - "stop_code": "33317", - "stop_name": "boul. Marie-Victorin et civique 1100", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et civique 1100", - "geography": { - "type": "Point", - "coordinates": [ - -73.4959833017967, - 45.5567965997283 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1063599254471 - }, - "name": "boul. Marie-Victorin et civique 1100", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.495983302, - 45.5567966 - ] - }, - "is_frozen": false, - "integer_id": 1174, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.499241, - 45.551788 - ] - }, - "id": 1175, - "properties": { - "id": "66456437-f154-4a2f-a12f-2f54cf668687", - "code": "33318", - "data": { - "stops": [ - { - "id": "3318", - "code": "33318", - "data": { - "gtfs": { - "stop_id": "3318", - "stop_code": "33318", - "stop_name": "boul. Marie-Victorin et Geoffrion", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Geoffrion", - "geography": { - "type": "Point", - "coordinates": [ - -73.4992409953386, - 45.5517877205597 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0215029655382 - }, - "name": "boul. Marie-Victorin et Geoffrion", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.499240995, - 45.551787721 - ] - }, - "is_frozen": false, - "integer_id": 1175, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45595, - 45.483358 - ] - }, - "id": 1176, - "properties": { - "id": "1f1b5a64-7c8d-49de-8df3-369e30f799ef", - "code": "33319", - "data": { - "stops": [ - { - "id": "3319", - "code": "33319", - "data": { - "gtfs": { - "stop_id": "3319", - "stop_code": "33319", - "stop_name": "Grande Allée et Murdoch", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Murdoch", - "geography": { - "type": "Point", - "coordinates": [ - -73.4559503671858, - 45.4833583005423 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8644593172331 - }, - "name": "Grande Allée et Murdoch", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455950367, - 45.483358301 - ] - }, - "is_frozen": false, - "integer_id": 1176, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45531, - 45.463154 - ] - }, - "id": 1177, - "properties": { - "id": "1a441bab-41b8-447f-ba84-5034fae1da67", - "code": "33320", - "data": { - "stops": [ - { - "id": "3320", - "code": "33320", - "data": { - "gtfs": { - "stop_id": "3320", - "stop_code": "33320", - "stop_name": "boul. Lapinière et civique 3260", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et civique 3260", - "geography": { - "type": "Point", - "coordinates": [ - -73.4553096051266, - 45.4631543659848 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5236363308011 - }, - "name": "boul. Lapinière et civique 3260", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455309605, - 45.463154366 - ] - }, - "is_frozen": false, - "integer_id": 1177, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.396727, - 45.486049 - ] - }, - "id": 1178, - "properties": { - "id": "7b30134c-a936-4c6b-8038-780d1041baea", - "code": "33321", - "data": { - "stops": [ - { - "id": "3321", - "code": "33321", - "data": { - "gtfs": { - "stop_id": "3321", - "stop_code": "33321", - "stop_name": "boul. Cousineau et Joseph-Hardy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Joseph-Hardy", - "geography": { - "type": "Point", - "coordinates": [ - -73.3967272823633, - 45.486049294528 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9098814390579 - }, - "name": "boul. Cousineau et Joseph-Hardy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.396727282, - 45.486049295 - ] - }, - "is_frozen": false, - "integer_id": 1178, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.415336, - 45.567289 - ] - }, - "id": 1179, - "properties": { - "id": "2fb188f9-f7b1-471b-a5d6-51581b357b49", - "code": "33336", - "data": { - "stops": [ - { - "id": "3336", - "code": "33336", - "data": { - "gtfs": { - "stop_id": "3336", - "stop_code": "33336", - "stop_name": "ch. Du Tremblay et Nobel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Nobel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4153561919515, - 45.5674636332991 - ] - } - }, - { - "id": "3345", - "code": "33345", - "data": { - "gtfs": { - "stop_id": "3345", - "stop_code": "33345", - "stop_name": "ch. Du Tremblay et Nobel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Nobel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4153157741764, - 45.5671139417851 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2841839435922 - }, - "name": "ch. Du Tremblay et Nobel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.415335983, - 45.567288788 - ] - }, - "is_frozen": false, - "integer_id": 1179, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442267, - 45.564187 - ] - }, - "id": 1180, - "properties": { - "id": "68d70807-e1f4-4393-a156-0cb02f37fe17", - "code": "33337", - "data": { - "stops": [ - { - "id": "3337", - "code": "33337", - "data": { - "gtfs": { - "stop_id": "3337", - "stop_code": "33337", - "stop_name": "Graham-Bell et Volta", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Graham-Bell et Volta", - "geography": { - "type": "Point", - "coordinates": [ - -73.4420862646006, - 45.5643718347259 - ] - } - }, - { - "id": "3376", - "code": "33376", - "data": { - "gtfs": { - "stop_id": "3376", - "stop_code": "33376", - "stop_name": "Volta et Graham-Bell", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Volta et Graham-Bell", - "geography": { - "type": "Point", - "coordinates": [ - -73.4425600921533, - 45.5642420939305 - ] - } - }, - { - "id": "5280", - "code": "35280", - "data": { - "gtfs": { - "stop_id": "5280", - "stop_code": "35280", - "stop_name": "Volta et Graham-Bell", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Volta et Graham-Bell", - "geography": { - "type": "Point", - "coordinates": [ - -73.4419741899164, - 45.5640019895341 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2316023945629 - }, - "name": "Graham-Bell et Volta", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442267141, - 45.564186912 - ] - }, - "is_frozen": false, - "integer_id": 1180, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.471611, - 45.463562 - ] - }, - "id": 1181, - "properties": { - "id": "71ffac32-604a-4260-b51e-c427856a20c4", - "code": "33338", - "data": { - "stops": [ - { - "id": "3338", - "code": "33338", - "data": { - "gtfs": { - "stop_id": "3338", - "stop_code": "33338", - "stop_name": "av. Tisserand et civique 6940", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et civique 6940", - "geography": { - "type": "Point", - "coordinates": [ - -73.4717074208276, - 45.4635063020109 - ] - } - }, - { - "id": "3339", - "code": "33339", - "data": { - "gtfs": { - "stop_id": "3339", - "stop_code": "33339", - "stop_name": "av. Tisserand et civique 6845", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et civique 6845", - "geography": { - "type": "Point", - "coordinates": [ - -73.4715150995303, - 45.4636171021467 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5305041577575 - }, - "name": "av. Tisserand et civique 6940", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47161126, - 45.463561702 - ] - }, - "is_frozen": false, - "integer_id": 1181, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478435, - 45.464877 - ] - }, - "id": 1182, - "properties": { - "id": "eee98f97-7434-4d16-88a6-93a424bc6846", - "code": "33340", - "data": { - "stops": [ - { - "id": "3340", - "code": "33340", - "data": { - "gtfs": { - "stop_id": "3340", - "stop_code": "33340", - "stop_name": "av. Tisserand et civique 6590", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et civique 6590", - "geography": { - "type": "Point", - "coordinates": [ - -73.4787172294473, - 45.4648329005584 - ] - } - }, - { - "id": "3341", - "code": "33341", - "data": { - "gtfs": { - "stop_id": "3341", - "stop_code": "33341", - "stop_name": "av. Tisserand et civique 6630", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Tisserand et civique 6630", - "geography": { - "type": "Point", - "coordinates": [ - -73.4781528953789, - 45.4649220959397 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5526899433492 - }, - "name": "av. Tisserand et civique 6590", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.478435062, - 45.464877498 - ] - }, - "is_frozen": false, - "integer_id": 1182, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.493342, - 45.459351 - ] - }, - "id": 1183, - "properties": { - "id": "f5036251-0211-4905-a979-2d3d0f8db7ed", - "code": "33342", - "data": { - "stops": [ - { - "id": "3342", - "code": "33342", - "data": { - "gtfs": { - "stop_id": "3342", - "stop_code": "33342", - "stop_name": "boul. Marie-Victorin et civique 7680", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et civique 7680", - "geography": { - "type": "Point", - "coordinates": [ - -73.4933422024051, - 45.4593507885716 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4595138048361 - }, - "name": "boul. Marie-Victorin et civique 7680", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493342202, - 45.459350789 - ] - }, - "is_frozen": false, - "integer_id": 1183, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.444052, - 45.459468 - ] - }, - "id": 1184, - "properties": { - "id": "379600fc-81b2-40f5-8ddd-317a0b4fe4c0", - "code": "33343", - "data": { - "stops": [ - { - "id": "3343", - "code": "33343", - "data": { - "gtfs": { - "stop_id": "3343", - "stop_code": "33343", - "stop_name": "av. Boniface et civique 6720", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Boniface et civique 6720", - "geography": { - "type": "Point", - "coordinates": [ - -73.4440519900178, - 45.4594678241151 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4614866455545 - }, - "name": "av. Boniface et civique 6720", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44405199, - 45.459467824 - ] - }, - "is_frozen": false, - "integer_id": 1184, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.555535, - 45.524225 - ] - }, - "id": 1185, - "properties": { - "id": "966adf78-011a-4f07-b40a-1523cd7ecae5", - "code": "33344", - "data": { - "stops": [ - { - "id": "3344", - "code": "33344", - "data": { - "gtfs": { - "stop_id": "3344", - "stop_code": "33344", - "stop_name": "av. Papineau et Logan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Papineau et Logan", - "geography": { - "type": "Point", - "coordinates": [ - -73.5555352299266, - 45.5242252515671 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5549592527395 - }, - "name": "av. Papineau et Logan", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.55553523, - 45.524225252 - ] - }, - "is_frozen": false, - "integer_id": 1185, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445176, - 45.513993 - ] - }, - "id": 1186, - "properties": { - "id": "abd431b8-dcf2-4c7a-a458-732690905187", - "code": "33347", - "data": { - "stops": [ - { - "id": "3347", - "code": "33347", - "data": { - "gtfs": { - "stop_id": "3347", - "stop_code": "33347", - "stop_name": "ch. de Chambly et civique 3460", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et civique 3460", - "geography": { - "type": "Point", - "coordinates": [ - -73.4451758214418, - 45.5139931659811 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3819354187851 - }, - "name": "ch. de Chambly et civique 3460", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445175821, - 45.513993166 - ] - }, - "is_frozen": false, - "integer_id": 1186, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474527, - 45.537507 - ] - }, - "id": 1187, - "properties": { - "id": "e3c72ca3-5889-4ff3-8d2e-19ef7d0f1e37", - "code": "33352", - "data": { - "stops": [ - { - "id": "3352", - "code": "33352", - "data": { - "gtfs": { - "stop_id": "3352", - "stop_code": "33352", - "stop_name": "boul. Roland-Therrien et MAGASIN WAL-MART CANADA INC.", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et MAGASIN WAL-MART CANADA INC.", - "geography": { - "type": "Point", - "coordinates": [ - -73.4745268628356, - 45.537507286084 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7796966622709 - }, - "name": "boul. Roland-Therrien et MAGASIN WAL-MART CANADA INC.", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474526863, - 45.537507286 - ] - }, - "is_frozen": false, - "integer_id": 1187, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443381, - 45.564978 - ] - }, - "id": 1188, - "properties": { - "id": "a77f8bf1-6b13-445b-a79c-6b0770c935c0", - "code": "33370", - "data": { - "stops": [ - { - "id": "3370", - "code": "33370", - "data": { - "gtfs": { - "stop_id": "3370", - "stop_code": "33370", - "stop_name": "Volta et civique 1261", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Volta et civique 1261", - "geography": { - "type": "Point", - "coordinates": [ - -73.4432113948326, - 45.5649572912203 - ] - } - }, - { - "id": "3612", - "code": "33612", - "data": { - "gtfs": { - "stop_id": "3612", - "stop_code": "33612", - "stop_name": "Volta et civique 1260", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Volta et civique 1260", - "geography": { - "type": "Point", - "coordinates": [ - -73.4435509861762, - 45.5649993269721 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2450169688555 - }, - "name": "Volta et civique 1261", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443381191, - 45.564978309 - ] - }, - "is_frozen": false, - "integer_id": 1188, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443737, - 45.568129 - ] - }, - "id": 1189, - "properties": { - "id": "83669f2f-a25c-47b1-99a1-53a7c08fed91", - "code": "33371", - "data": { - "stops": [ - { - "id": "3371", - "code": "33371", - "data": { - "gtfs": { - "stop_id": "3371", - "stop_code": "33371", - "stop_name": "Volta et civique 1210", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Volta et civique 1210", - "geography": { - "type": "Point", - "coordinates": [ - -73.4436725774828, - 45.5681609249741 - ] - } - }, - { - "id": "3372", - "code": "33372", - "data": { - "gtfs": { - "stop_id": "3372", - "stop_code": "33372", - "stop_name": "Volta et civique 1210", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Volta et civique 1210", - "geography": { - "type": "Point", - "coordinates": [ - -73.4438007535519, - 45.5680979998112 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2984361364123 - }, - "name": "Volta et civique 1210", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443736666, - 45.568129462 - ] - }, - "is_frozen": false, - "integer_id": 1189, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446879, - 45.570122 - ] - }, - "id": 1190, - "properties": { - "id": "33622e57-d444-4916-a7fb-d1fa4643eb90", - "code": "33373", - "data": { - "stops": [ - { - "id": "3373", - "code": "33373", - "data": { - "gtfs": { - "stop_id": "3373", - "stop_code": "33373", - "stop_name": "Volta et place Nobel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Volta et place Nobel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4472647353973, - 45.5701062780682 - ] - } - }, - { - "id": "3403", - "code": "33403", - "data": { - "gtfs": { - "stop_id": "3403", - "stop_code": "33403", - "stop_name": "Volta et place Nobel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Volta et place Nobel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4464932874905, - 45.5701370364443 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3322129244059 - }, - "name": "Volta et place Nobel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446879011, - 45.570121657 - ] - }, - "is_frozen": false, - "integer_id": 1190, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44352, - 45.569071 - ] - }, - "id": 1191, - "properties": { - "id": "5573e81d-639b-42bb-a768-ad52df79de56", - "code": "33375", - "data": { - "stops": [ - { - "id": "3375", - "code": "33375", - "data": { - "gtfs": { - "stop_id": "3375", - "stop_code": "33375", - "stop_name": "Nobel et Volta", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et Volta", - "geography": { - "type": "Point", - "coordinates": [ - -73.4436209924607, - 45.5689153948246 - ] - } - }, - { - "id": "4201", - "code": "34201", - "data": { - "gtfs": { - "stop_id": "4201", - "stop_code": "34201", - "stop_name": "Nobel et MAXI & COMPAGNIE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et MAXI & COMPAGNIE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4434192839499, - 45.5692271014865 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3144032607723 - }, - "name": "Nobel et Volta", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443520138, - 45.569071248 - ] - }, - "is_frozen": false, - "integer_id": 1191, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445596, - 45.600121 - ] - }, - "id": 1192, - "properties": { - "id": "6b55fd05-7687-457e-ae9d-e87027c7100f", - "code": "33379", - "data": { - "stops": [ - { - "id": "3379", - "code": "33379", - "data": { - "gtfs": { - "stop_id": "3379", - "stop_code": "33379", - "stop_name": "Samuel-De Champlain et D'Iberville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et D'Iberville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4454264727339, - 45.6003338971441 - ] - } - }, - { - "id": "5499", - "code": "30246", - "data": { - "gtfs": { - "stop_id": "5499", - "stop_code": "30246", - "stop_name": "Samuel-De Champlain et D'Iberville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Samuel-De Champlain et D'Iberville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4457662892633, - 45.5999076324373 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8412637553749 - }, - "name": "Samuel-De Champlain et D'Iberville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445596381, - 45.600120765 - ] - }, - "is_frozen": false, - "integer_id": 1192, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441179, - 45.596802 - ] - }, - "id": 1193, - "properties": { - "id": "3d278b9f-fcbb-4681-9833-769bdbe48eaf", - "code": "33380", - "data": { - "stops": [ - { - "id": "3380", - "code": "33380", - "data": { - "gtfs": { - "stop_id": "3380", - "stop_code": "33380", - "stop_name": "Jacques-Cartier et D'Iberville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jacques-Cartier et D'Iberville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4411787841286, - 45.596802051119 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7849093221664 - }, - "name": "Jacques-Cartier et D'Iberville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441178784, - 45.596802051 - ] - }, - "is_frozen": false, - "integer_id": 1193, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494821, - 45.447888 - ] - }, - "id": 1194, - "properties": { - "id": "127a18dc-2231-401d-91c9-c547e1fe457d", - "code": "33381", - "data": { - "stops": [ - { - "id": "3381", - "code": "33381", - "data": { - "gtfs": { - "stop_id": "3381", - "stop_code": "33381", - "stop_name": "Saint-Charles et civique 8480", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles et civique 8480", - "geography": { - "type": "Point", - "coordinates": [ - -73.4948208508143, - 45.44788828346 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2663510127466 - }, - "name": "Saint-Charles et civique 8480", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494820851, - 45.447888283 - ] - }, - "is_frozen": false, - "integer_id": 1194, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.56686, - 45.498404 - ] - }, - "id": 1195, - "properties": { - "id": "51300d0b-f1e0-49a2-bd6b-20a9fb5800ec", - "code": "33382", - "data": { - "stops": [ - { - "id": "3382", - "code": "33382", - "data": { - "gtfs": { - "stop_id": "3382", - "stop_code": "33382", - "stop_name": "TERMINUS CENTRE-VILLE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "TERMINUS CENTRE-VILLE", - "geography": { - "type": "Point", - "coordinates": [ - -73.5668389536944, - 45.4984402900159 - ] - } - }, - { - "id": "5766", - "code": "30535", - "data": { - "gtfs": { - "stop_id": "5766", - "stop_code": "30535", - "stop_name": "TERMINUS CENTRE-VILLE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "TERMINUS CENTRE-VILLE", - "geography": { - "type": "Point", - "coordinates": [ - -73.5668819023177, - 45.4983672074619 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1184987365067 - }, - "name": "TERMINUS CENTRE-VILLE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.566860428, - 45.498403749 - ] - }, - "is_frozen": false, - "integer_id": 1195, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.436241, - 45.591474 - ] - }, - "id": 1196, - "properties": { - "id": "4015104a-1cf2-4c6b-bd1a-72f25bbc9ca9", - "code": "33384", - "data": { - "stops": [ - { - "id": "3384", - "code": "33384", - "data": { - "gtfs": { - "stop_id": "3384", - "stop_code": "33384", - "stop_name": "boul. De Montarville et boul. de Mortagne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et boul. de Mortagne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4361017875589, - 45.5912687038172 - ] - } - }, - { - "id": "4973", - "code": "34973", - "data": { - "gtfs": { - "stop_id": "4973", - "stop_code": "34973", - "stop_name": "boul. De Montarville et boul. de Mortagne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et boul. de Mortagne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4367254931427, - 45.5914553902789 - ] - } - }, - { - "id": "5385", - "code": "30125", - "data": { - "gtfs": { - "stop_id": "5385", - "stop_code": "30125", - "stop_name": "boul. de Mortagne et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4362563095364, - 45.591678503903 - ] - } - }, - { - "id": "5386", - "code": "30126", - "data": { - "gtfs": { - "stop_id": "5386", - "stop_code": "30126", - "stop_name": "boul. de Mortagne et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4357558256142, - 45.5916786797571 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6944501271564 - }, - "name": "boul. De Montarville et boul. de Mortagne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.436240659, - 45.591473692 - ] - }, - "is_frozen": false, - "integer_id": 1196, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.435022, - 45.590332 - ] - }, - "id": 1197, - "properties": { - "id": "ebf7fd24-b756-481f-9a88-33b6362fcbda", - "code": "33385", - "data": { - "stops": [ - { - "id": "3385", - "code": "33385", - "data": { - "gtfs": { - "stop_id": "3385", - "stop_code": "33385", - "stop_name": "boul. De Montarville et PROVIGO", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et PROVIGO", - "geography": { - "type": "Point", - "coordinates": [ - -73.4348673683886, - 45.5903820169138 - ] - } - }, - { - "id": "3874", - "code": "33874", - "data": { - "gtfs": { - "stop_id": "3874", - "stop_code": "33874", - "stop_name": "boul. De Montarville et civique 1008", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et civique 1008", - "geography": { - "type": "Point", - "coordinates": [ - -73.4351756876498, - 45.5902813115298 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6750653014258 - }, - "name": "boul. De Montarville et PROVIGO", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.435021528, - 45.590331664 - ] - }, - "is_frozen": false, - "integer_id": 1197, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.43367, - 45.589203 - ] - }, - "id": 1198, - "properties": { - "id": "c7d5859e-ffe2-4a64-aa6d-7040b6eed867", - "code": "33387", - "data": { - "stops": [ - { - "id": "3387", - "code": "33387", - "data": { - "gtfs": { - "stop_id": "3387", - "stop_code": "33387", - "stop_name": "boul. De Montarville et CANADIAN TIRE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et CANADIAN TIRE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4333748074838, - 45.5890813797275 - ] - } - }, - { - "id": "3388", - "code": "33388", - "data": { - "gtfs": { - "stop_id": "3388", - "stop_code": "33388", - "stop_name": "boul. De Montarville et CANADIAN TIRE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et CANADIAN TIRE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4339660269441, - 45.5893236835307 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.655900520499 - }, - "name": "boul. De Montarville et CANADIAN TIRE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.433670417, - 45.589202532 - ] - }, - "is_frozen": false, - "integer_id": 1198, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.431638, - 45.58735 - ] - }, - "id": 1199, - "properties": { - "id": "3613b472-6055-4b55-9c89-01a451d82804", - "code": "33389", - "data": { - "stops": [ - { - "id": "3389", - "code": "33389", - "data": { - "gtfs": { - "stop_id": "3389", - "stop_code": "33389", - "stop_name": "boul. De Montarville et D'Avaugour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et D'Avaugour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4319769327025, - 45.587176370765 - ] - } - }, - { - "id": "5390", - "code": "30130", - "data": { - "gtfs": { - "stop_id": "5390", - "stop_code": "30130", - "stop_name": "D'Avaugour et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "D'Avaugour et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4312989033404, - 45.5875233676728 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6244577048145 - }, - "name": "boul. De Montarville et D'Avaugour", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431637918, - 45.587349869 - ] - }, - "is_frozen": false, - "integer_id": 1199, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481682, - 45.448391 - ] - }, - "id": 1200, - "properties": { - "id": "3e4f29c9-7bf2-4ca4-9cb4-2a3c4710cea6", - "code": "33390", - "data": { - "stops": [ - { - "id": "3390", - "code": "33390", - "data": { - "gtfs": { - "stop_id": "3390", - "stop_code": "33390", - "stop_name": "av. Sorbonne et Santiago", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Sorbonne et Santiago", - "geography": { - "type": "Point", - "coordinates": [ - -73.4816824333049, - 45.4483912324533 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2748241172337 - }, - "name": "av. Sorbonne et Santiago", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481682433, - 45.448391232 - ] - }, - "is_frozen": false, - "integer_id": 1200, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479412, - 45.449402 - ] - }, - "id": 1201, - "properties": { - "id": "3f64bdef-b480-4d0a-bbfa-cfe3dc45c613", - "code": "33392", - "data": { - "stops": [ - { - "id": "3392", - "code": "33392", - "data": { - "gtfs": { - "stop_id": "3392", - "stop_code": "33392", - "stop_name": "av. Sorbonne et civique 8470", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Sorbonne et civique 8470", - "geography": { - "type": "Point", - "coordinates": [ - -73.4794761833129, - 45.4493018212183 - ] - } - }, - { - "id": "3915", - "code": "33915", - "data": { - "gtfs": { - "stop_id": "3915", - "stop_code": "33915", - "stop_name": "av. Sorbonne et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Sorbonne et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4793468985108, - 45.4495015964466 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2918481460248 - }, - "name": "av. Sorbonne et civique 8470", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479411541, - 45.449401709 - ] - }, - "is_frozen": false, - "integer_id": 1201, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.406596, - 45.5145 - ] - }, - "id": 1202, - "properties": { - "id": "6d909e49-9727-42dc-95db-42259425acbd", - "code": "33397", - "data": { - "stops": [ - { - "id": "3397", - "code": "33397", - "data": { - "gtfs": { - "stop_id": "3397", - "stop_code": "33397", - "stop_name": "rte de l'Aéroport et civique 6000", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et civique 6000", - "geography": { - "type": "Point", - "coordinates": [ - -73.406596387079, - 45.5144998841688 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.390501788547 - }, - "name": "rte de l'Aéroport et civique 6000", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.406596387, - 45.514499884 - ] - }, - "is_frozen": false, - "integer_id": 1202, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.40519, - 45.515418 - ] - }, - "id": 1203, - "properties": { - "id": "4ee012e8-fd5c-471a-bb0b-87721da74cf6", - "code": "33398", - "data": { - "stops": [ - { - "id": "3398", - "code": "33398", - "data": { - "gtfs": { - "stop_id": "3398", - "stop_code": "33398", - "stop_name": "rte de l'Aéroport et civique 6100", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et civique 6100", - "geography": { - "type": "Point", - "coordinates": [ - -73.4051899741276, - 45.5154183829968 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4060301444578 - }, - "name": "rte de l'Aéroport et civique 6100", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.405189974, - 45.515418383 - ] - }, - "is_frozen": false, - "integer_id": 1203, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.403033, - 45.516815 - ] - }, - "id": 1204, - "properties": { - "id": "02c6c49d-886b-440d-919e-7dc5515da70b", - "code": "33399", - "data": { - "stops": [ - { - "id": "3399", - "code": "33399", - "data": { - "gtfs": { - "stop_id": "3399", - "stop_code": "33399", - "stop_name": "rte de l'Aéroport et civique 6155", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et civique 6155", - "geography": { - "type": "Point", - "coordinates": [ - -73.4030329160333, - 45.5168150151849 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.429643367105 - }, - "name": "rte de l'Aéroport et civique 6155", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.403032916, - 45.516815015 - ] - }, - "is_frozen": false, - "integer_id": 1204, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.411118, - 45.530865 - ] - }, - "id": 1205, - "properties": { - "id": "aef95744-a773-4cb5-9474-7425de00e382", - "code": "33400", - "data": { - "stops": [ - { - "id": "3400", - "code": "33400", - "data": { - "gtfs": { - "stop_id": "3400", - "stop_code": "33400", - "stop_name": "ch. de la Savane et civique 6500", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et civique 6500", - "geography": { - "type": "Point", - "coordinates": [ - -73.4109599258795, - 45.5311560500358 - ] - } - }, - { - "id": "3539", - "code": "33539", - "data": { - "gtfs": { - "stop_id": "3539", - "stop_code": "33539", - "stop_name": "ch. de la Savane et PRATT & WHITNEY CANADA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et PRATT & WHITNEY CANADA", - "geography": { - "type": "Point", - "coordinates": [ - -73.4112768998967, - 45.5305735755567 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6672836607687 - }, - "name": "ch. de la Savane et civique 6500", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.411118413, - 45.530864813 - ] - }, - "is_frozen": false, - "integer_id": 1205, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.499922, - 45.49483 - ] - }, - "id": 1206, - "properties": { - "id": "16f75d06-f538-4735-a99f-9bc7eaa6eaab", - "code": "33409", - "data": { - "stops": [ - { - "id": "3409", - "code": "33409", - "data": { - "gtfs": { - "stop_id": "3409", - "stop_code": "33409", - "stop_name": "av. Victoria et Saint-Louis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et Saint-Louis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4997293100066, - 45.4948995545874 - ] - } - }, - { - "id": "4461", - "code": "34461", - "data": { - "gtfs": { - "stop_id": "4461", - "stop_code": "34461", - "stop_name": "av. Victoria et av. Victoria", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et av. Victoria", - "geography": { - "type": "Point", - "coordinates": [ - -73.500115351701, - 45.494761185788 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0581447086673 - }, - "name": "av. Victoria et Saint-Louis", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.499922331, - 45.49483037 - ] - }, - "is_frozen": false, - "integer_id": 1206, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481498, - 45.52999 - ] - }, - "id": 1207, - "properties": { - "id": "ec90d5a6-8d45-4327-b9de-7b521004b298", - "code": "33412", - "data": { - "stops": [ - { - "id": "3412", - "code": "33412", - "data": { - "gtfs": { - "stop_id": "3412", - "stop_code": "33412", - "stop_name": "boul. Curé-Poirier est et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier est et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4814975336019, - 45.5299897762323 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6524818121812 - }, - "name": "boul. Curé-Poirier est et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481498, - 45.52999 - ] - }, - "is_frozen": false, - "integer_id": 1207, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463727, - 45.522019 - ] - }, - "id": 1208, - "properties": { - "id": "ca7dd0c0-e4a4-47e6-9b06-48b2aa105748", - "code": "33413", - "data": { - "stops": [ - { - "id": "3413", - "code": "33413", - "data": { - "gtfs": { - "stop_id": "3413", - "stop_code": "33413", - "stop_name": "ch. de Chambly et boul. Jacques-Cartier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Jacques-Cartier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4637266365753, - 45.5220188405833 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.517641113908 - }, - "name": "ch. de Chambly et boul. Jacques-Cartier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463726637, - 45.522018841 - ] - }, - "is_frozen": false, - "integer_id": 1208, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.493534, - 45.559549 - ] - }, - "id": 1209, - "properties": { - "id": "0bcb0e97-db40-44bb-afe9-f6212a5b6387", - "code": "33415", - "data": { - "stops": [ - { - "id": "3415", - "code": "33415", - "data": { - "gtfs": { - "stop_id": "3415", - "stop_code": "33415", - "stop_name": "boul. Marie-Victorin et CENTRE ADMINISTRATIF DU RESEAU DE TRANSPORT DE LONGUEUIL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et CENTRE ADMINISTRATIF DU RESEAU DE TRANSPORT DE LONGUEUIL", - "geography": { - "type": "Point", - "coordinates": [ - -73.4935335357387, - 45.5595486296405 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1529924490484 - }, - "name": "boul. Marie-Victorin et CENTRE ADMINISTRATIF DU RESEAU DE TRANSPORT DE LONGUEUIL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493533536, - 45.55954863 - ] - }, - "is_frozen": false, - "integer_id": 1209, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513419, - 45.528617 - ] - }, - "id": 1210, - "properties": { - "id": "d3ebe7a8-432f-4ee4-be20-7363589d4629", - "code": "33416", - "data": { - "stops": [ - { - "id": "3416", - "code": "33416", - "data": { - "gtfs": { - "stop_id": "3416", - "stop_code": "33416", - "stop_name": "Saint-Laurent ouest et PLACE LONGUEUIL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et PLACE LONGUEUIL", - "geography": { - "type": "Point", - "coordinates": [ - -73.5134192023841, - 45.5286173125588 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.629252008081 - }, - "name": "Saint-Laurent ouest et PLACE LONGUEUIL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.513419, - 45.528617 - ] - }, - "is_frozen": false, - "integer_id": 1210, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.507625, - 45.541432 - ] - }, - "id": 1211, - "properties": { - "id": "2759f6fd-0d91-4292-9174-1b3724fde57a", - "code": "33418", - "data": { - "stops": [ - { - "id": "3418", - "code": "33418", - "data": { - "gtfs": { - "stop_id": "3418", - "stop_code": "33418", - "stop_name": "Saint-Charles est et SOEURS SAINTS-NOMS-DE-JESUS (LONGUEUIL)", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles est et SOEURS SAINTS-NOMS-DE-JESUS (LONGUEUIL)", - "geography": { - "type": "Point", - "coordinates": [ - -73.5076252326081, - 45.5414321291764 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8461367126785 - }, - "name": "Saint-Charles est et SOEURS SAINTS-NOMS-DE-JESUS (LONGUEUIL)", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507625233, - 45.541432129 - ] - }, - "is_frozen": false, - "integer_id": 1211, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.505532, - 45.544219 - ] - }, - "id": 1212, - "properties": { - "id": "cca1a0cf-beb4-489c-8f77-d54546a85821", - "code": "33419", - "data": { - "stops": [ - { - "id": "3419", - "code": "33419", - "data": { - "gtfs": { - "stop_id": "3419", - "stop_code": "33419", - "stop_name": "Saint-Charles est et de Normandie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles est et de Normandie", - "geography": { - "type": "Point", - "coordinates": [ - -73.5055556237265, - 45.5440871529952 - ] - } - }, - { - "id": "3426", - "code": "33426", - "data": { - "gtfs": { - "stop_id": "3426", - "stop_code": "33426", - "stop_name": "Saint-Charles est et de Normandie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles est et de Normandie", - "geography": { - "type": "Point", - "coordinates": [ - -73.5055081474805, - 45.5443515578556 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8933274385441 - }, - "name": "Saint-Charles est et de Normandie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.505531886, - 45.544219355 - ] - }, - "is_frozen": false, - "integer_id": 1212, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.504186, - 45.545327 - ] - }, - "id": 1213, - "properties": { - "id": "17f362e0-58a1-4091-a2cb-677491725ae9", - "code": "33420", - "data": { - "stops": [ - { - "id": "3420", - "code": "33420", - "data": { - "gtfs": { - "stop_id": "3420", - "stop_code": "33420", - "stop_name": "Saint-Charles est et Pratt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles est et Pratt", - "geography": { - "type": "Point", - "coordinates": [ - -73.5042120095185, - 45.5451839616918 - ] - } - }, - { - "id": "3425", - "code": "33425", - "data": { - "gtfs": { - "stop_id": "3425", - "stop_code": "33425", - "stop_name": "Saint-Charles est et Pratt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles est et Pratt", - "geography": { - "type": "Point", - "coordinates": [ - -73.5041605526874, - 45.5454710338644 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9120914140686 - }, - "name": "Saint-Charles est et Pratt", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.504186281, - 45.545327498 - ] - }, - "is_frozen": false, - "integer_id": 1213, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.502329, - 45.546724 - ] - }, - "id": 1214, - "properties": { - "id": "c5521133-14cc-4988-b8c2-4360698fa4ec", - "code": "33421", - "data": { - "stops": [ - { - "id": "3421", - "code": "33421", - "data": { - "gtfs": { - "stop_id": "3421", - "stop_code": "33421", - "stop_name": "Saint-Charles est et d'Auvergne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles est et d'Auvergne", - "geography": { - "type": "Point", - "coordinates": [ - -73.5025394011131, - 45.5467002639747 - ] - } - }, - { - "id": "4864", - "code": "34864", - "data": { - "gtfs": { - "stop_id": "4864", - "stop_code": "34864", - "stop_name": "d'Auvergne et Saint-Charles est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "d'Auvergne et Saint-Charles est", - "geography": { - "type": "Point", - "coordinates": [ - -73.5022334096662, - 45.5468520655194 - ] - } - }, - { - "id": "5148", - "code": "35148", - "data": { - "gtfs": { - "stop_id": "5148", - "stop_code": "35148", - "stop_name": "d'Auvergne et Saint-Charles est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "d'Auvergne et Saint-Charles est", - "geography": { - "type": "Point", - "coordinates": [ - -73.5021184694885, - 45.5465962209057 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9357421002874 - }, - "name": "Saint-Charles est et d'Auvergne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.502328935, - 45.546724143 - ] - }, - "is_frozen": false, - "integer_id": 1214, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.500043, - 45.549542 - ] - }, - "id": 1215, - "properties": { - "id": "a42ad0c8-61c2-4ea6-ba0d-de9a1cb40394", - "code": "33422", - "data": { - "stops": [ - { - "id": "3422", - "code": "33422", - "data": { - "gtfs": { - "stop_id": "3422", - "stop_code": "33422", - "stop_name": "Saint-Charles est et du Parc-Industriel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles est et du Parc-Industriel", - "geography": { - "type": "Point", - "coordinates": [ - -73.5000430613165, - 45.5495419712439 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9834642970959 - }, - "name": "Saint-Charles est et du Parc-Industriel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.500043061, - 45.549541971 - ] - }, - "is_frozen": false, - "integer_id": 1215, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.498851, - 45.551744 - ] - }, - "id": 1216, - "properties": { - "id": "bc056e84-1f20-4604-aad7-40427c6685a6", - "code": "33423", - "data": { - "stops": [ - { - "id": "3423", - "code": "33423", - "data": { - "gtfs": { - "stop_id": "3423", - "stop_code": "33423", - "stop_name": "Saint-Charles est et Geoffrion", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles est et Geoffrion", - "geography": { - "type": "Point", - "coordinates": [ - -73.4988509173767, - 45.5517438368327 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.020759612187 - }, - "name": "Saint-Charles est et Geoffrion", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.498850917, - 45.551743837 - ] - }, - "is_frozen": false, - "integer_id": 1216, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.502362, - 45.547282 - ] - }, - "id": 1217, - "properties": { - "id": "7fd25a62-c81c-42ae-bd39-f61c05418964", - "code": "33424", - "data": { - "stops": [ - { - "id": "3424", - "code": "33424", - "data": { - "gtfs": { - "stop_id": "3424", - "stop_code": "33424", - "stop_name": "Saint-Charles est et d'Auvergne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles est et d'Auvergne", - "geography": { - "type": "Point", - "coordinates": [ - -73.5023621917922, - 45.5472815222865 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9451812022935 - }, - "name": "Saint-Charles est et d'Auvergne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.502362192, - 45.547281522 - ] - }, - "is_frozen": false, - "integer_id": 1217, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.507003, - 45.542709 - ] - }, - "id": 1218, - "properties": { - "id": "a8133dc5-71bf-42ce-a22f-48f31a731720", - "code": "33427", - "data": { - "stops": [ - { - "id": "3427", - "code": "33427", - "data": { - "gtfs": { - "stop_id": "3427", - "stop_code": "33427", - "stop_name": "Saint-Charles est et civique 100", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles est et civique 100", - "geography": { - "type": "Point", - "coordinates": [ - -73.5070034345796, - 45.5427092741382 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8677592870349 - }, - "name": "Saint-Charles est et civique 100", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507003435, - 45.542709274 - ] - }, - "is_frozen": false, - "integer_id": 1218, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.418822, - 45.503007 - ] - }, - "id": 1219, - "properties": { - "id": "e460be07-05e4-49f8-a725-e63809c74139", - "code": "33429", - "data": { - "stops": [ - { - "id": "3429", - "code": "33429", - "data": { - "gtfs": { - "stop_id": "3429", - "stop_code": "33429", - "stop_name": "ch. de Chambly et Coderre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Coderre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4188223112104, - 45.50300670389 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1962589464576 - }, - "name": "ch. de Chambly et Coderre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.418822311, - 45.503006704 - ] - }, - "is_frozen": false, - "integer_id": 1219, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.419503, - 45.503142 - ] - }, - "id": 1220, - "properties": { - "id": "4a4fa494-b43c-4be6-b677-70874b8f73cc", - "code": "33430", - "data": { - "stops": [ - { - "id": "3430", - "code": "33430", - "data": { - "gtfs": { - "stop_id": "3430", - "stop_code": "33430", - "stop_name": "ch. de Chambly et Coderre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Coderre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4195027344594, - 45.5031421618582 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1985475973491 - }, - "name": "ch. de Chambly et Coderre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.419502734, - 45.503142162 - ] - }, - "is_frozen": false, - "integer_id": 1220, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.493232, - 45.446079 - ] - }, - "id": 1221, - "properties": { - "id": "4b68f075-e5fe-41d1-ab47-bccc21ae9421", - "code": "33432", - "data": { - "stops": [ - { - "id": "3432", - "code": "33432", - "data": { - "gtfs": { - "stop_id": "3432", - "stop_code": "33432", - "stop_name": "boul. Marie-Victorin et CENTRE D'ACCUEIL MARCELLE-FERRON", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et CENTRE D'ACCUEIL MARCELLE-FERRON", - "geography": { - "type": "Point", - "coordinates": [ - -73.4932318465564, - 45.4460794980505 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2358805438844 - }, - "name": "boul. Marie-Victorin et CENTRE D'ACCUEIL MARCELLE-FERRON", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493231847, - 45.446079498 - ] - }, - "is_frozen": false, - "integer_id": 1221, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461204, - 45.48679 - ] - }, - "id": 1222, - "properties": { - "id": "720107c1-f0c2-4f37-8e59-ce7f32cd9461", - "code": "33437", - "data": { - "stops": [ - { - "id": "3437", - "code": "33437", - "data": { - "gtfs": { - "stop_id": "3437", - "stop_code": "33437", - "stop_name": "Grande Allée et Louis-Lamarre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Louis-Lamarre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4609438277182, - 45.4867068525847 - ] - } - }, - { - "id": "3455", - "code": "33455", - "data": { - "gtfs": { - "stop_id": "3455", - "stop_code": "33455", - "stop_name": "Grande Allée et Louis-Lamarre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Louis-Lamarre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4614650096407, - 45.4868723438272 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9223783719142 - }, - "name": "Grande Allée et Louis-Lamarre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461204419, - 45.486789598 - ] - }, - "is_frozen": false, - "integer_id": 1222, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469718, - 45.585213 - ] - }, - "id": 1223, - "properties": { - "id": "064a6f97-fc69-48b1-8038-7d9a4eea77de", - "code": "33438", - "data": { - "stops": [ - { - "id": "3438", - "code": "33438", - "data": { - "gtfs": { - "stop_id": "3438", - "stop_code": "33438", - "stop_name": "boul. Marie-Victorin et GROUPE ROBERT TRANSPORT INC.", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et GROUPE ROBERT TRANSPORT INC.", - "geography": { - "type": "Point", - "coordinates": [ - -73.4697183841671, - 45.5852130430974 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5881959779853 - }, - "name": "boul. Marie-Victorin et GROUPE ROBERT TRANSPORT INC.", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469718384, - 45.585213043 - ] - }, - "is_frozen": false, - "integer_id": 1223, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.471001, - 45.582727 - ] - }, - "id": 1224, - "properties": { - "id": "da1ccd92-4d5e-4317-ad9f-7a8daa9e9230", - "code": "33440", - "data": { - "stops": [ - { - "id": "3440", - "code": "33440", - "data": { - "gtfs": { - "stop_id": "3440", - "stop_code": "33440", - "stop_name": "boul. Marie-Victorin et CIMETIERE PRES DU FLEUVE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et CIMETIERE PRES DU FLEUVE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4710012849983, - 45.5827271702441 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5460160987527 - }, - "name": "boul. Marie-Victorin et CIMETIERE PRES DU FLEUVE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.471001285, - 45.58272717 - ] - }, - "is_frozen": false, - "integer_id": 1224, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490477, - 45.564121 - ] - }, - "id": 1225, - "properties": { - "id": "2d4bab42-76d4-4d53-9416-1ff754c71d1d", - "code": "33442", - "data": { - "stops": [ - { - "id": "3442", - "code": "33442", - "data": { - "gtfs": { - "stop_id": "3442", - "stop_code": "33442", - "stop_name": "boul. Marie-Victorin et Passerelle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Passerelle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4904770524062, - 45.5641213005339 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2304902804743 - }, - "name": "boul. Marie-Victorin et Passerelle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490477052, - 45.564121301 - ] - }, - "is_frozen": false, - "integer_id": 1225, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445621, - 45.514457 - ] - }, - "id": 1226, - "properties": { - "id": "c4825963-416e-404b-a744-6ffe763e2d89", - "code": "33444", - "data": { - "stops": [ - { - "id": "3444", - "code": "33444", - "data": { - "gtfs": { - "stop_id": "3444", - "stop_code": "33444", - "stop_name": "ch. de Chambly et civique 3529", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et civique 3529", - "geography": { - "type": "Point", - "coordinates": [ - -73.4456207794861, - 45.5144574133083 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3897837822018 - }, - "name": "ch. de Chambly et civique 3529", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445620779, - 45.514457413 - ] - }, - "is_frozen": false, - "integer_id": 1226, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456342, - 45.538049 - ] - }, - "id": 1227, - "properties": { - "id": "f1d63efc-c02d-4bb9-828b-ddc2e062546b", - "code": "33449", - "data": { - "stops": [ - { - "id": "3449", - "code": "33449", - "data": { - "gtfs": { - "stop_id": "3449", - "stop_code": "33449", - "stop_name": "boul. Jacques-Cartier est et CENTRE HOSPITALIER PIERRE-BOUCHER", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et CENTRE HOSPITALIER PIERRE-BOUCHER", - "geography": { - "type": "Point", - "coordinates": [ - -73.4564000158553, - 45.5379050364653 - ] - } - }, - { - "id": "4105", - "code": "34105", - "data": { - "gtfs": { - "stop_id": "4105", - "stop_code": "34105", - "stop_name": "boul. Béliveau et boul. Jacques-Cartier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et boul. Jacques-Cartier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4562838627322, - 45.538192597233 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7888629243602 - }, - "name": "boul. Jacques-Cartier est et CENTRE HOSPITALIER PIERRE-BOUCHER", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456341939, - 45.538048817 - ] - }, - "is_frozen": false, - "integer_id": 1227, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466237, - 45.587905 - ] - }, - "id": 1228, - "properties": { - "id": "2f7a97d2-c790-4f58-9a63-010938bbaf69", - "code": "33453", - "data": { - "stops": [ - { - "id": "3453", - "code": "33453", - "data": { - "gtfs": { - "stop_id": "3453", - "stop_code": "33453", - "stop_name": "De La Barre et boul. Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Barre et boul. Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4661711190174, - 45.5877535486959 - ] - } - }, - { - "id": "3454", - "code": "33454", - "data": { - "gtfs": { - "stop_id": "3454", - "stop_code": "33454", - "stop_name": "De La Barre et boul. Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Barre et boul. Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4663030005369, - 45.5880566061915 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6338801986268 - }, - "name": "De La Barre et boul. Marie-Victorin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46623706, - 45.587905077 - ] - }, - "is_frozen": false, - "integer_id": 1228, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441816, - 45.495062 - ] - }, - "id": 1229, - "properties": { - "id": "2e1dd055-2856-439e-b231-cd2b626a492f", - "code": "33458", - "data": { - "stops": [ - { - "id": "3458", - "code": "33458", - "data": { - "gtfs": { - "stop_id": "3458", - "stop_code": "33458", - "stop_name": "boul. Kimber et boul. Gareau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et boul. Gareau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4418158912211, - 45.4950616127446 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0620500369613 - }, - "name": "boul. Kimber et boul. Gareau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441815891, - 45.495061613 - ] - }, - "is_frozen": false, - "integer_id": 1229, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465346, - 45.458887 - ] - }, - "id": 1230, - "properties": { - "id": "1e3a74d9-9d8a-467f-a82e-3dafee501e32", - "code": "33460", - "data": { - "stops": [ - { - "id": "3460", - "code": "33460", - "data": { - "gtfs": { - "stop_id": "3460", - "stop_code": "33460", - "stop_name": "boul. Taschereau et Mario", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Mario", - "geography": { - "type": "Point", - "coordinates": [ - -73.4653456852704, - 45.4588868473938 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.451693326595 - }, - "name": "boul. Taschereau et Mario", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465345685, - 45.458886847 - ] - }, - "is_frozen": false, - "integer_id": 1230, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.428429, - 45.487518 - ] - }, - "id": 1231, - "properties": { - "id": "a788cfe3-2037-44e7-ae51-cd0388e8e41f", - "code": "33466", - "data": { - "stops": [ - { - "id": "3466", - "code": "33466", - "data": { - "gtfs": { - "stop_id": "3466", - "stop_code": "33466", - "stop_name": "boul. Kimber et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4283185496905, - 45.4875627316168 - ] - } - }, - { - "id": "3469", - "code": "33469", - "data": { - "gtfs": { - "stop_id": "3469", - "stop_code": "33469", - "stop_name": "boul. Kimber et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.428539743806, - 45.4874728856571 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9346716570715 - }, - "name": "boul. Kimber et Passage piétonnier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.428429147, - 45.487517809 - ] - }, - "is_frozen": false, - "integer_id": 1231, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.43123, - 45.489078 - ] - }, - "id": 1232, - "properties": { - "id": "9346e734-c85a-4d09-88f4-23e94e4bdb4c", - "code": "33467", - "data": { - "stops": [ - { - "id": "3467", - "code": "33467", - "data": { - "gtfs": { - "stop_id": "3467", - "stop_code": "33467", - "stop_name": "boul. Kimber et Gélineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Gélineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4311650905612, - 45.4891472177147 - ] - } - }, - { - "id": "3468", - "code": "33468", - "data": { - "gtfs": { - "stop_id": "3468", - "stop_code": "33468", - "stop_name": "boul. Kimber et Gélineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Gélineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4312953865283, - 45.4890081224917 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9610060182198 - }, - "name": "boul. Kimber et Gélineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431230239, - 45.48907767 - ] - }, - "is_frozen": false, - "integer_id": 1232, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.504323, - 45.508614 - ] - }, - "id": 1233, - "properties": { - "id": "3f77d417-9b8e-4514-8337-8fa9008d2cc7", - "code": "33473", - "data": { - "stops": [ - { - "id": "3473", - "code": "33473", - "data": { - "gtfs": { - "stop_id": "3473", - "stop_code": "33473", - "stop_name": "av. de Brixton et École secondaire Saint-Lambert International High School", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. de Brixton et École secondaire Saint-Lambert International High School", - "geography": { - "type": "Point", - "coordinates": [ - -73.5043228617985, - 45.5086144903803 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2910197904212 - }, - "name": "av. de Brixton et École secondaire Saint-Lambert International High School", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.504322862, - 45.50861449 - ] - }, - "is_frozen": false, - "integer_id": 1233, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47513, - 45.454146 - ] - }, - "id": 1234, - "properties": { - "id": "e690066b-eb33-421c-89b1-e731dab9975f", - "code": "33488", - "data": { - "stops": [ - { - "id": "3488", - "code": "33488", - "data": { - "gtfs": { - "stop_id": "3488", - "stop_code": "33488", - "stop_name": "av. Saguenay et av. Sartre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Saguenay et av. Sartre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4751070867844, - 45.4540586681548 - ] - } - }, - { - "id": "4303", - "code": "34303", - "data": { - "gtfs": { - "stop_id": "4303", - "stop_code": "34303", - "stop_name": "av. Sartre et av. Saguenay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Sartre et av. Saguenay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4751532231305, - 45.4542334202195 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3717905203574 - }, - "name": "av. Saguenay et av. Sartre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475130155, - 45.454146044 - ] - }, - "is_frozen": false, - "integer_id": 1234, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.470281, - 45.46593 - ] - }, - "id": 1235, - "properties": { - "id": "c4ad0852-4be5-437b-8da5-934b6b309e04", - "code": "33492", - "data": { - "stops": [ - { - "id": "3492", - "code": "33492", - "data": { - "gtfs": { - "stop_id": "3492", - "stop_code": "33492", - "stop_name": "TERMINUS PANAMA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "TERMINUS PANAMA", - "geography": { - "type": "Point", - "coordinates": [ - -73.4702812779981, - 45.4659301819171 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5704404743803 - }, - "name": "TERMINUS PANAMA", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.470281278, - 45.465930182 - ] - }, - "is_frozen": false, - "integer_id": 1235, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479511, - 45.456411 - ] - }, - "id": 1236, - "properties": { - "id": "1ea7db5e-3ee6-4553-9276-7c24296c866d", - "code": "33493", - "data": { - "stops": [ - { - "id": "3493", - "code": "33493", - "data": { - "gtfs": { - "stop_id": "3493", - "stop_code": "33493", - "stop_name": "boul. Pelletier et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4795110395281, - 45.4564106969087 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4099571211998 - }, - "name": "boul. Pelletier et boul. de Rome", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47951104, - 45.456410697 - ] - }, - "is_frozen": false, - "integer_id": 1236, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467686, - 45.469707 - ] - }, - "id": 1237, - "properties": { - "id": "acb7092d-3b2a-4d79-a4e3-09e7e52af475", - "code": "33502", - "data": { - "stops": [ - { - "id": "3502", - "code": "33502", - "data": { - "gtfs": { - "stop_id": "3502", - "stop_code": "33502", - "stop_name": "boul. Taschereau et av. Auteuil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et av. Auteuil", - "geography": { - "type": "Point", - "coordinates": [ - -73.4676862156001, - 45.4697070696046 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6341350798681 - }, - "name": "boul. Taschereau et av. Auteuil", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.467686216, - 45.46970707 - ] - }, - "is_frozen": false, - "integer_id": 1237, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445267, - 45.506794 - ] - }, - "id": 1238, - "properties": { - "id": "92abcd2a-82ad-467f-8946-055423a9c2c9", - "code": "33516", - "data": { - "stops": [ - { - "id": "3516", - "code": "33516", - "data": { - "gtfs": { - "stop_id": "3516", - "stop_code": "33516", - "stop_name": "boul. Sir-Wilfrid-Laurier et PARC DE MAISONS MOBILES LE MARQUIS", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier et PARC DE MAISONS MOBILES LE MARQUIS", - "geography": { - "type": "Point", - "coordinates": [ - -73.4452674448215, - 45.5067938369753 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2602511726386 - }, - "name": "boul. Sir-Wilfrid-Laurier et PARC DE MAISONS MOBILES LE MARQUIS", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445267445, - 45.506793837 - ] - }, - "is_frozen": false, - "integer_id": 1238, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.420021, - 45.491793 - ] - }, - "id": 1239, - "properties": { - "id": "f4abcc97-51ec-431d-988f-977063b9070f", - "code": "33517", - "data": { - "stops": [ - { - "id": "3517", - "code": "33517", - "data": { - "gtfs": { - "stop_id": "3517", - "stop_code": "33517", - "stop_name": "boul. Davis et Park", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Davis et Park", - "geography": { - "type": "Point", - "coordinates": [ - -73.4200207094724, - 45.4917925036617 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0068443763588 - }, - "name": "boul. Davis et Park", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.420020709, - 45.491792504 - ] - }, - "is_frozen": false, - "integer_id": 1239, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491979, - 45.540365 - ] - }, - "id": 1240, - "properties": { - "id": "cae6ea67-63f0-47ac-84f1-96217eeb03b3", - "code": "33523", - "data": { - "stops": [ - { - "id": "3523", - "code": "33523", - "data": { - "gtfs": { - "stop_id": "3523", - "stop_code": "33523", - "stop_name": "De Gentilly est et d'Auvergne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Gentilly est et d'Auvergne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4919792570645, - 45.5403651320231 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.82807314357 - }, - "name": "De Gentilly est et d'Auvergne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491979257, - 45.540365132 - ] - }, - "is_frozen": false, - "integer_id": 1240, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464827, - 45.455139 - ] - }, - "id": 1241, - "properties": { - "id": "981ebecb-3dc2-4439-8648-8052a51df7ec", - "code": "33525", - "data": { - "stops": [ - { - "id": "3525", - "code": "33525", - "data": { - "gtfs": { - "stop_id": "3525", - "stop_code": "33525", - "stop_name": "boul. de Rome et boul. Taschereau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et boul. Taschereau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4648274358855, - 45.4551392335761 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3885283683444 - }, - "name": "boul. de Rome et boul. Taschereau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464827436, - 45.455139234 - ] - }, - "is_frozen": false, - "integer_id": 1241, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.480001, - 45.456542 - ] - }, - "id": 1242, - "properties": { - "id": "9c3366b7-c832-4b7b-8636-18bed8c1e2de", - "code": "33528", - "data": { - "stops": [ - { - "id": "3528", - "code": "33528", - "data": { - "gtfs": { - "stop_id": "3528", - "stop_code": "33528", - "stop_name": "boul. de Rome et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4800012671713, - 45.4565422762275 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4121747854207 - }, - "name": "boul. de Rome et boul. Pelletier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.480001267, - 45.456542276 - ] - }, - "is_frozen": false, - "integer_id": 1242, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474528, - 45.434221 - ] - }, - "id": 1243, - "properties": { - "id": "4c302a60-4ab3-44a3-be17-43359562aaf4", - "code": "33529", - "data": { - "stops": [ - { - "id": "3529", - "code": "33529", - "data": { - "gtfs": { - "stop_id": "3529", - "stop_code": "33529", - "stop_name": "boul. Matte et Ignace", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Matte et Ignace", - "geography": { - "type": "Point", - "coordinates": [ - -73.4745280297027, - 45.4342213162093 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0361915642507 - }, - "name": "boul. Matte et Ignace", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47452803, - 45.434221316 - ] - }, - "is_frozen": false, - "integer_id": 1243, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.471723, - 45.474872 - ] - }, - "id": 1244, - "properties": { - "id": "ece1943b-159a-42fa-a0c1-16e06714e25e", - "code": "33530", - "data": { - "stops": [ - { - "id": "3530", - "code": "33530", - "data": { - "gtfs": { - "stop_id": "3530", - "stop_code": "33530", - "stop_name": "boul. Lapinière et boul. Provencher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et boul. Provencher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4717234325451, - 45.4748720938434 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7212601474115 - }, - "name": "boul. Lapinière et boul. Provencher", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.471723433, - 45.474872094 - ] - }, - "is_frozen": false, - "integer_id": 1244, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46294, - 45.468601 - ] - }, - "id": 1245, - "properties": { - "id": "01153fa0-59fe-4f77-8e46-e418296b526d", - "code": "33532", - "data": { - "stops": [ - { - "id": "3532", - "code": "33532", - "data": { - "gtfs": { - "stop_id": "3532", - "stop_code": "33532", - "stop_name": "boul. Lapinière et av. Auteuil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et av. Auteuil", - "geography": { - "type": "Point", - "coordinates": [ - -73.4629398241127, - 45.4686011147907 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.615482601767 - }, - "name": "boul. Lapinière et av. Auteuil", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462939824, - 45.468601115 - ] - }, - "is_frozen": false, - "integer_id": 1245, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.431969, - 45.489833 - ] - }, - "id": 1246, - "properties": { - "id": "3b027d8b-1b72-4250-a270-dd0ef2d41870", - "code": "33533", - "data": { - "stops": [ - { - "id": "3533", - "code": "33533", - "data": { - "gtfs": { - "stop_id": "3533", - "stop_code": "33533", - "stop_name": "montée Saint-Hubert et boul. Kimber", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et boul. Kimber", - "geography": { - "type": "Point", - "coordinates": [ - -73.4319690633375, - 45.4898333039997 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9737637908663 - }, - "name": "montée Saint-Hubert et boul. Kimber", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431969063, - 45.489833304 - ] - }, - "is_frozen": false, - "integer_id": 1246, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440343, - 45.472948 - ] - }, - "id": 1247, - "properties": { - "id": "2881ced2-6a46-4738-a470-6ff64097e482", - "code": "33534", - "data": { - "stops": [ - { - "id": "3534", - "code": "33534", - "data": { - "gtfs": { - "stop_id": "3534", - "stop_code": "33534", - "stop_name": "Grande Allée et boul. Gaétan-Boucher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et boul. Gaétan-Boucher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4403428517356, - 45.4729480884138 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6888027074685 - }, - "name": "Grande Allée et boul. Gaétan-Boucher", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440342852, - 45.472948088 - ] - }, - "is_frozen": false, - "integer_id": 1247, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.399525, - 45.495314 - ] - }, - "id": 1248, - "properties": { - "id": "cb20b749-b55e-4251-94cd-215651864e8b", - "code": "33536", - "data": { - "stops": [ - { - "id": "3536", - "code": "33536", - "data": { - "gtfs": { - "stop_id": "3536", - "stop_code": "33536", - "stop_name": "ch. de Chambly et boul. Jacques-Marcil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Jacques-Marcil", - "geography": { - "type": "Point", - "coordinates": [ - -73.399524538563, - 45.4953138560436 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0663100762605 - }, - "name": "ch. de Chambly et boul. Jacques-Marcil", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.399524539, - 45.495313856 - ] - }, - "is_frozen": false, - "integer_id": 1248, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.406711, - 45.497683 - ] - }, - "id": 1249, - "properties": { - "id": "3e90658d-8898-49d9-be57-5b29936d4a9e", - "code": "33537", - "data": { - "stops": [ - { - "id": "3537", - "code": "33537", - "data": { - "gtfs": { - "stop_id": "3537", - "stop_code": "33537", - "stop_name": "boul. Gaétan-Boucher et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4067108509294, - 45.4976829676285 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1063239001272 - }, - "name": "boul. Gaétan-Boucher et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.406710851, - 45.497682968 - ] - }, - "is_frozen": false, - "integer_id": 1249, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452964, - 45.603762 - ] - }, - "id": 1250, - "properties": { - "id": "ca205394-9833-4e14-b4fa-653c28b9a37d", - "code": "33542", - "data": { - "stops": [ - { - "id": "3542", - "code": "33542", - "data": { - "gtfs": { - "stop_id": "3542", - "stop_code": "33542", - "stop_name": "boul. De Montarville et boul. du Fort-Saint-Louis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et boul. du Fort-Saint-Louis", - "geography": { - "type": "Point", - "coordinates": [ - -73.4530258639898, - 45.6039350193051 - ] - } - }, - { - "id": "3543", - "code": "33543", - "data": { - "gtfs": { - "stop_id": "3543", - "stop_code": "33543", - "stop_name": "boul. De Montarville et de la Rivière-aux-Pins", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et de la Rivière-aux-Pins", - "geography": { - "type": "Point", - "coordinates": [ - -73.4529014617499, - 45.6035882116146 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9030996636882 - }, - "name": "boul. De Montarville et boul. du Fort-Saint-Louis", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452963663, - 45.603761615 - ] - }, - "is_frozen": false, - "integer_id": 1250, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454835, - 45.605374 - ] - }, - "id": 1251, - "properties": { - "id": "dd170d68-d567-4a2d-8a93-47dec3a52cd1", - "code": "33544", - "data": { - "stops": [ - { - "id": "3544", - "code": "33544", - "data": { - "gtfs": { - "stop_id": "3544", - "stop_code": "33544", - "stop_name": "boul. De Montarville et allée des Pionniers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et allée des Pionniers", - "geography": { - "type": "Point", - "coordinates": [ - -73.4548354444733, - 45.6053738452906 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9304854436471 - }, - "name": "boul. De Montarville et allée des Pionniers", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454835444, - 45.605373845 - ] - }, - "is_frozen": false, - "integer_id": 1251, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454967, - 45.605234 - ] - }, - "id": 1252, - "properties": { - "id": "6e37aa2c-853a-4603-9807-c4f338ee1e72", - "code": "33545", - "data": { - "stops": [ - { - "id": "3545", - "code": "33545", - "data": { - "gtfs": { - "stop_id": "3545", - "stop_code": "33545", - "stop_name": "boul. De Montarville et civique 30", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et civique 30", - "geography": { - "type": "Point", - "coordinates": [ - -73.4549665589979, - 45.605234423889 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9281171084101 - }, - "name": "boul. De Montarville et civique 30", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454966559, - 45.605234424 - ] - }, - "is_frozen": false, - "integer_id": 1252, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465762, - 45.454662 - ] - }, - "id": 1253, - "properties": { - "id": "94fab672-b9fc-43cd-bbe9-9fa37b5a15ed", - "code": "33546", - "data": { - "stops": [ - { - "id": "3546", - "code": "33546", - "data": { - "gtfs": { - "stop_id": "3546", - "stop_code": "33546", - "stop_name": "boul. Taschereau et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4657620179955, - 45.4546616761379 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3804801583377 - }, - "name": "boul. Taschereau et boul. de Rome", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465762018, - 45.454661676 - ] - }, - "is_frozen": false, - "integer_id": 1253, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.496225, - 45.550414 - ] - }, - "id": 1254, - "properties": { - "id": "87d520cc-f77e-449c-88c9-cee424bbc329", - "code": "33549", - "data": { - "stops": [ - { - "id": "3549", - "code": "33549", - "data": { - "gtfs": { - "stop_id": "3549", - "stop_code": "33549", - "stop_name": "Geoffrion et PRATT & WHITNEY CANADA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Geoffrion et PRATT & WHITNEY CANADA", - "geography": { - "type": "Point", - "coordinates": [ - -73.4962254609091, - 45.550414234719 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9982382301517 - }, - "name": "Geoffrion et PRATT & WHITNEY CANADA", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.496225461, - 45.550414235 - ] - }, - "is_frozen": false, - "integer_id": 1254, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.49047, - 45.50176 - ] - }, - "id": 1255, - "properties": { - "id": "62e9a71c-d705-430b-ba91-a24283924f89", - "code": "33550", - "data": { - "stops": [ - { - "id": "3550", - "code": "33550", - "data": { - "gtfs": { - "stop_id": "3550", - "stop_code": "33550", - "stop_name": "Saint-Georges et René-Philippe", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Georges et René-Philippe", - "geography": { - "type": "Point", - "coordinates": [ - -73.4904702055647, - 45.5017595366118 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1751880172366 - }, - "name": "Saint-Georges et René-Philippe", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490470206, - 45.501759537 - ] - }, - "is_frozen": false, - "integer_id": 1255, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479586, - 45.45928 - ] - }, - "id": 1256, - "properties": { - "id": "06a9af06-6fa8-41eb-9d6e-4b272bbe1d3f", - "code": "33554", - "data": { - "stops": [ - { - "id": "3554", - "code": "33554", - "data": { - "gtfs": { - "stop_id": "3554", - "stop_code": "33554", - "stop_name": "boul. Pelletier et civique 7520", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et civique 7520", - "geography": { - "type": "Point", - "coordinates": [ - -73.4797341293712, - 45.4593349843142 - ] - } - }, - { - "id": "3608", - "code": "33608", - "data": { - "gtfs": { - "stop_id": "3608", - "stop_code": "33608", - "stop_name": "boul. Pelletier et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.479438249224, - 45.4592240330291 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4583122549639 - }, - "name": "boul. Pelletier et civique 7520", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479586189, - 45.459279509 - ] - }, - "is_frozen": false, - "integer_id": 1256, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.500304, - 45.550002 - ] - }, - "id": 1257, - "properties": { - "id": "09bf17cd-9db1-41e3-b993-62146cb91158", - "code": "33555", - "data": { - "stops": [ - { - "id": "3555", - "code": "33555", - "data": { - "gtfs": { - "stop_id": "3555", - "stop_code": "33555", - "stop_name": "du Bord-de-l'Eau est et Saint-Charles est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau est et Saint-Charles est", - "geography": { - "type": "Point", - "coordinates": [ - -73.5003039201143, - 45.5500018759396 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9912538331168 - }, - "name": "du Bord-de-l'Eau est et Saint-Charles est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.50030392, - 45.550001876 - ] - }, - "is_frozen": false, - "integer_id": 1257, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.499077, - 45.514333 - ] - }, - "id": 1258, - "properties": { - "id": "09272548-09d5-4afa-a45f-80ba6dd656dd", - "code": "33557", - "data": { - "stops": [ - { - "id": "3557", - "code": "33557", - "data": { - "gtfs": { - "stop_id": "3557", - "stop_code": "33557", - "stop_name": "boul. La Fayette et ch. du Coteau-Rouge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et ch. du Coteau-Rouge", - "geography": { - "type": "Point", - "coordinates": [ - -73.4988985799002, - 45.514471861326 - ] - } - }, - { - "id": "4517", - "code": "34517", - "data": { - "gtfs": { - "stop_id": "4517", - "stop_code": "34517", - "stop_name": "boul. La Fayette et ch. du Coteau-Rouge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et ch. du Coteau-Rouge", - "geography": { - "type": "Point", - "coordinates": [ - -73.4989120358879, - 45.5141933164992 - ] - } - }, - { - "id": "4519", - "code": "34519", - "data": { - "gtfs": { - "stop_id": "4519", - "stop_code": "34519", - "stop_name": "ch. du Coteau-Rouge et boul. La Fayette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et boul. La Fayette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4992545498687, - 45.5142647261507 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3876735415885 - }, - "name": "boul. La Fayette et ch. du Coteau-Rouge", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.499076565, - 45.514332589 - ] - }, - "is_frozen": false, - "integer_id": 1258, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.518969, - 45.516876 - ] - }, - "id": 1259, - "properties": { - "id": "6250ca71-cb3c-4550-b402-0f2dd1999975", - "code": "33560", - "data": { - "stops": [ - { - "id": "3560", - "code": "33560", - "data": { - "gtfs": { - "stop_id": "3560", - "stop_code": "33560", - "stop_name": "Riverside et CEGEP CHAMPLAIN", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et CEGEP CHAMPLAIN", - "geography": { - "type": "Point", - "coordinates": [ - -73.519053366166, - 45.5166102868117 - ] - } - }, - { - "id": "3775", - "code": "33775", - "data": { - "gtfs": { - "stop_id": "3775", - "stop_code": "33775", - "stop_name": "Riverside et ch. Tiffin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et ch. Tiffin", - "geography": { - "type": "Point", - "coordinates": [ - -73.5188854362197, - 45.516770709533 - ] - } - }, - { - "id": "4397", - "code": "34397", - "data": { - "gtfs": { - "stop_id": "4397", - "stop_code": "34397", - "stop_name": "ch. Tiffin et Saint-Charles ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Tiffin et Saint-Charles ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.518974638877, - 45.5171416469322 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4306739380845 - }, - "name": "Riverside et CEGEP CHAMPLAIN", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.518969401, - 45.516875967 - ] - }, - "is_frozen": false, - "integer_id": 1259, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.42641, - 45.497393 - ] - }, - "id": 1260, - "properties": { - "id": "09a490f8-d473-4d53-8aa0-2df137afe453", - "code": "33564", - "data": { - "stops": [ - { - "id": "3564", - "code": "33564", - "data": { - "gtfs": { - "stop_id": "3564", - "stop_code": "33564", - "stop_name": "montée Saint-Hubert et av. Primot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Primot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4263797932728, - 45.4972741012009 - ] - } - }, - { - "id": "4410", - "code": "34410", - "data": { - "gtfs": { - "stop_id": "4410", - "stop_code": "34410", - "stop_name": "montée Saint-Hubert et av. Primot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et av. Primot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4264408020881, - 45.497511093707 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1014193240144 - }, - "name": "montée Saint-Hubert et av. Primot", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.426410298, - 45.497392597 - ] - }, - "is_frozen": false, - "integer_id": 1260, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479898, - 45.456892 - ] - }, - "id": 1261, - "properties": { - "id": "f4eaed4c-c9d2-453e-9a6b-6324a4b297ea", - "code": "33565", - "data": { - "stops": [ - { - "id": "3565", - "code": "33565", - "data": { - "gtfs": { - "stop_id": "3565", - "stop_code": "33565", - "stop_name": "boul. Pelletier et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4798984149116, - 45.4568917348565 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4180647263229 - }, - "name": "boul. Pelletier et boul. de Rome", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479898415, - 45.456891735 - ] - }, - "is_frozen": false, - "integer_id": 1261, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.408561, - 45.513332 - ] - }, - "id": 1262, - "properties": { - "id": "90f9f389-96b4-444b-8d1b-774cf89df3c1", - "code": "33567", - "data": { - "stops": [ - { - "id": "3567", - "code": "33567", - "data": { - "gtfs": { - "stop_id": "3567", - "stop_code": "33567", - "stop_name": "rte de l'Aéroport et civique 5799", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et civique 5799", - "geography": { - "type": "Point", - "coordinates": [ - -73.4085994204252, - 45.5132279796796 - ] - } - }, - { - "id": "5153", - "code": "35153", - "data": { - "gtfs": { - "stop_id": "5153", - "stop_code": "35153", - "stop_name": "rte de l'Aéroport et civique 5700", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et civique 5700", - "geography": { - "type": "Point", - "coordinates": [ - -73.4085226942965, - 45.5134354495885 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3707535395234 - }, - "name": "rte de l'Aéroport et civique 5799", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.408561057, - 45.513331715 - ] - }, - "is_frozen": false, - "integer_id": 1262, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.497893, - 45.512131 - ] - }, - "id": 1263, - "properties": { - "id": "fdecd410-1224-486a-a041-e5f802671456", - "code": "33569", - "data": { - "stops": [ - { - "id": "3569", - "code": "33569", - "data": { - "gtfs": { - "stop_id": "3569", - "stop_code": "33569", - "stop_name": "boul. Taschereau et Passerelle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Passerelle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4978928759444, - 45.5121314766932 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3504644201673 - }, - "name": "boul. Taschereau et Passerelle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.497892876, - 45.512131477 - ] - }, - "is_frozen": false, - "integer_id": 1263, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.430202, - 45.505584 - ] - }, - "id": 1264, - "properties": { - "id": "648a2d3d-42dd-4ea9-875b-0eb410b8b1e8", - "code": "33574", - "data": { - "stops": [ - { - "id": "3574", - "code": "33574", - "data": { - "gtfs": { - "stop_id": "3574", - "stop_code": "33574", - "stop_name": "boul. Cousineau et COSTCO", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et COSTCO", - "geography": { - "type": "Point", - "coordinates": [ - -73.4302022817049, - 45.5055835157193 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2397986583792 - }, - "name": "boul. Cousineau et COSTCO", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.430202282, - 45.505583516 - ] - }, - "is_frozen": false, - "integer_id": 1264, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.484198, - 45.555288 - ] - }, - "id": 1265, - "properties": { - "id": "6db4cc67-3620-48bd-9c7c-28ab936b1e0b", - "code": "33578", - "data": { - "stops": [ - { - "id": "3578", - "code": "33578", - "data": { - "gtfs": { - "stop_id": "3578", - "stop_code": "33578", - "stop_name": "Adoncour et civique 501", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et civique 501", - "geography": { - "type": "Point", - "coordinates": [ - -73.4841980281851, - 45.5552880997425 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0808016053845 - }, - "name": "Adoncour et civique 501", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.484198028, - 45.5552881 - ] - }, - "is_frozen": false, - "integer_id": 1265, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455315, - 45.48234 - ] - }, - "id": 1266, - "properties": { - "id": "a6471a08-a3f9-4b85-9d29-d1e8bc6c0ac7", - "code": "33589", - "data": { - "stops": [ - { - "id": "3589", - "code": "33589", - "data": { - "gtfs": { - "stop_id": "3589", - "stop_code": "33589", - "stop_name": "av. Auguste et Arthur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Auguste et Arthur", - "geography": { - "type": "Point", - "coordinates": [ - -73.4553149126929, - 45.4823397427476 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8472684402794 - }, - "name": "av. Auguste et Arthur", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455314913, - 45.482339743 - ] - }, - "is_frozen": false, - "integer_id": 1266, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.488284, - 45.438534 - ] - }, - "id": 1267, - "properties": { - "id": "b88e581a-07f9-428f-bbb4-ab3a41e2dfe7", - "code": "33591", - "data": { - "stops": [ - { - "id": "3591", - "code": "33591", - "data": { - "gtfs": { - "stop_id": "3591", - "stop_code": "33591", - "stop_name": "ch. des Prairies et Riel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et Riel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4882841306655, - 45.4385338333817 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1087989095964 - }, - "name": "ch. des Prairies et Riel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.488284131, - 45.438533833 - ] - }, - "is_frozen": false, - "integer_id": 1267, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.374459, - 45.473167 - ] - }, - "id": 1268, - "properties": { - "id": "00770ec2-f385-4c5e-86f3-1e107a204be7", - "code": "33592", - "data": { - "stops": [ - { - "id": "3592", - "code": "33592", - "data": { - "gtfs": { - "stop_id": "3592", - "stop_code": "33592", - "stop_name": "boul. Mountainview et civique 3090", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Mountainview et civique 3090", - "geography": { - "type": "Point", - "coordinates": [ - -73.3744591024988, - 45.4731674939874 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6925038588563 - }, - "name": "boul. Mountainview et civique 3090", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.374459102, - 45.473167494 - ] - }, - "is_frozen": false, - "integer_id": 1268, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455711, - 45.461414 - ] - }, - "id": 1269, - "properties": { - "id": "30d24143-abd0-4a47-955d-cdbc3943ae61", - "code": "33594", - "data": { - "stops": [ - { - "id": "3594", - "code": "33594", - "data": { - "gtfs": { - "stop_id": "3594", - "stop_code": "33594", - "stop_name": "av. Malo et civique 3060", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et civique 3060", - "geography": { - "type": "Point", - "coordinates": [ - -73.4557113634948, - 45.4614135692782 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4942875461999 - }, - "name": "av. Malo et civique 3060", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455711363, - 45.461413569 - ] - }, - "is_frozen": false, - "integer_id": 1269, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.438677, - 45.570111 - ] - }, - "id": 1270, - "properties": { - "id": "2017e3ec-fe66-4e73-9fb7-567ac5f8a472", - "code": "33595", - "data": { - "stops": [ - { - "id": "3595", - "code": "33595", - "data": { - "gtfs": { - "stop_id": "3595", - "stop_code": "33595", - "stop_name": "Nobel et civique 1250", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et civique 1250", - "geography": { - "type": "Point", - "coordinates": [ - -73.4386628205514, - 45.5700580084926 - ] - } - }, - { - "id": "3933", - "code": "33933", - "data": { - "gtfs": { - "stop_id": "3933", - "stop_code": "33933", - "stop_name": "Nobel et civique 1250", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et civique 1250", - "geography": { - "type": "Point", - "coordinates": [ - -73.4386911480359, - 45.5701645485608 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3320369607992 - }, - "name": "Nobel et civique 1250", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438676984, - 45.570111279 - ] - }, - "is_frozen": false, - "integer_id": 1270, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.434632, - 45.569267 - ] - }, - "id": 1271, - "properties": { - "id": "bd1fa046-c7cd-4878-bf5b-177b8bb772d6", - "code": "33596", - "data": { - "stops": [ - { - "id": "3596", - "code": "33596", - "data": { - "gtfs": { - "stop_id": "3596", - "stop_code": "33596", - "stop_name": "Nobel et Newton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et Newton", - "geography": { - "type": "Point", - "coordinates": [ - -73.4351236755353, - 45.5693261722695 - ] - } - }, - { - "id": "3602", - "code": "33602", - "data": { - "gtfs": { - "stop_id": "3602", - "stop_code": "33602", - "stop_name": "Nobel et Newton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et Newton", - "geography": { - "type": "Point", - "coordinates": [ - -73.4341409225654, - 45.5692086316937 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3177289730417 - }, - "name": "Nobel et Newton", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.434632299, - 45.569267402 - ] - }, - "is_frozen": false, - "integer_id": 1271, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.4232, - 45.568482 - ] - }, - "id": 1272, - "properties": { - "id": "ab684dee-c058-4d37-851f-c3b6a26b599d", - "code": "33598", - "data": { - "stops": [ - { - "id": "3598", - "code": "33598", - "data": { - "gtfs": { - "stop_id": "3598", - "stop_code": "33598", - "stop_name": "Nobel et civique 1450", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et civique 1450", - "geography": { - "type": "Point", - "coordinates": [ - -73.4231988737698, - 45.5684504391699 - ] - } - }, - { - "id": "3599", - "code": "33599", - "data": { - "gtfs": { - "stop_id": "3599", - "stop_code": "33599", - "stop_name": "Nobel et civique 1450", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et civique 1450", - "geography": { - "type": "Point", - "coordinates": [ - -73.4232019907796, - 45.5685134295535 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3044118855065 - }, - "name": "Nobel et civique 1450", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.423200432, - 45.568481934 - ] - }, - "is_frozen": false, - "integer_id": 1272, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.426976, - 45.568283 - ] - }, - "id": 1273, - "properties": { - "id": "8663e9fe-e135-44e5-ac98-e3cb896c6c45", - "code": "33600", - "data": { - "stops": [ - { - "id": "3600", - "code": "33600", - "data": { - "gtfs": { - "stop_id": "3600", - "stop_code": "33600", - "stop_name": "Nobel et civique 1350", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et civique 1350", - "geography": { - "type": "Point", - "coordinates": [ - -73.4267281967263, - 45.5683425315012 - ] - } - }, - { - "id": "3622", - "code": "33622", - "data": { - "gtfs": { - "stop_id": "3622", - "stop_code": "33622", - "stop_name": "Nobel et civique 1350", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et civique 1350", - "geography": { - "type": "Point", - "coordinates": [ - -73.4272247474419, - 45.5682236174769 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3010404339404 - }, - "name": "Nobel et civique 1350", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.426976472, - 45.568283074 - ] - }, - "is_frozen": false, - "integer_id": 1273, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.42918, - 45.568304 - ] - }, - "id": 1274, - "properties": { - "id": "26e46bda-74e3-4f09-b95f-139d0b7fb0af", - "code": "33601", - "data": { - "stops": [ - { - "id": "3601", - "code": "33601", - "data": { - "gtfs": { - "stop_id": "3601", - "stop_code": "33601", - "stop_name": "Nobel et civique 1330", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et civique 1330", - "geography": { - "type": "Point", - "coordinates": [ - -73.4290571820626, - 45.5683582855231 - ] - } - }, - { - "id": "4024", - "code": "34024", - "data": { - "gtfs": { - "stop_id": "4024", - "stop_code": "34024", - "stop_name": "Nobel et civique 1330", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et civique 1330", - "geography": { - "type": "Point", - "coordinates": [ - -73.4293034125429, - 45.568249281264 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.301391530504 - }, - "name": "Nobel et civique 1330", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.429180297, - 45.568303783 - ] - }, - "is_frozen": false, - "integer_id": 1274, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.507846, - 45.540708 - ] - }, - "id": 1275, - "properties": { - "id": "21e2e89a-3df0-4ff7-aa64-17a07fbd660e", - "code": "33615", - "data": { - "stops": [ - { - "id": "3615", - "code": "33615", - "data": { - "gtfs": { - "stop_id": "3615", - "stop_code": "33615", - "stop_name": "ch. de Chambly et COCATHEDRALE SAINT-ANTOINE-DE-PADOUE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et COCATHEDRALE SAINT-ANTOINE-DE-PADOUE", - "geography": { - "type": "Point", - "coordinates": [ - -73.5075581162964, - 45.5404374204891 - ] - } - }, - { - "id": "3872", - "code": "33872", - "data": { - "gtfs": { - "stop_id": "3872", - "stop_code": "33872", - "stop_name": "Saint-Charles est et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles est et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.5081337255498, - 45.5409786149535 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8338778710265 - }, - "name": "ch. de Chambly et COCATHEDRALE SAINT-ANTOINE-DE-PADOUE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507845921, - 45.540708018 - ] - }, - "is_frozen": false, - "integer_id": 1275, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494346, - 45.510415 - ] - }, - "id": 1276, - "properties": { - "id": "df2b5e9a-8a33-44f5-a52f-9bbe8fe1cb72", - "code": "33624", - "data": { - "stops": [ - { - "id": "3624", - "code": "33624", - "data": { - "gtfs": { - "stop_id": "3624", - "stop_code": "33624", - "stop_name": "boul. Taschereau et Saint-Thomas", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Saint-Thomas", - "geography": { - "type": "Point", - "coordinates": [ - -73.4943462896294, - 45.5104149342245 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3214497828989 - }, - "name": "boul. Taschereau et Saint-Thomas", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.49434629, - 45.510414934 - ] - }, - "is_frozen": false, - "integer_id": 1276, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513281, - 45.517423 - ] - }, - "id": 1277, - "properties": { - "id": "d3215c60-bb9e-40ac-89e4-1f922b39e266", - "code": "33629", - "data": { - "stops": [ - { - "id": "3629", - "code": "33629", - "data": { - "gtfs": { - "stop_id": "3629", - "stop_code": "33629", - "stop_name": "boul. Taschereau et de Wagram", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et de Wagram", - "geography": { - "type": "Point", - "coordinates": [ - -73.5132806060957, - 45.5174232479444 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4399274646777 - }, - "name": "boul. Taschereau et de Wagram", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.513280606, - 45.517423248 - ] - }, - "is_frozen": false, - "integer_id": 1277, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453469, - 45.46418 - ] - }, - "id": 1278, - "properties": { - "id": "b6dfeeab-9981-4db8-9a90-2e14691bf516", - "code": "33631", - "data": { - "stops": [ - { - "id": "3631", - "code": "33631", - "data": { - "gtfs": { - "stop_id": "3631", - "stop_code": "33631", - "stop_name": "av. Broadway et Belvédère", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Broadway et Belvédère", - "geography": { - "type": "Point", - "coordinates": [ - -73.4534693591613, - 45.4641795421278 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5409214366663 - }, - "name": "av. Broadway et Belvédère", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453469359, - 45.464179542 - ] - }, - "is_frozen": false, - "integer_id": 1278, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.512961, - 45.539137 - ] - }, - "id": 1279, - "properties": { - "id": "2d2815ee-443f-48d9-a68e-7f53a9aa6216", - "code": "33635", - "data": { - "stops": [ - { - "id": "3635", - "code": "33635", - "data": { - "gtfs": { - "stop_id": "3635", - "stop_code": "33635", - "stop_name": "du Bord-de-l'Eau ouest et Saint-Jacques", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau ouest et Saint-Jacques", - "geography": { - "type": "Point", - "coordinates": [ - -73.5128691506661, - 45.5390869198561 - ] - } - }, - { - "id": "3636", - "code": "33636", - "data": { - "gtfs": { - "stop_id": "3636", - "stop_code": "33636", - "stop_name": "du Bord-de-l'Eau ouest et Saint-Jacques", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau ouest et Saint-Jacques", - "geography": { - "type": "Point", - "coordinates": [ - -73.5130534019982, - 45.5391876807298 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8072879987856 - }, - "name": "du Bord-de-l'Eau ouest et Saint-Jacques", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.512961276, - 45.5391373 - ] - }, - "is_frozen": false, - "integer_id": 1279, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.419795, - 45.524002 - ] - }, - "id": 1280, - "properties": { - "id": "14f0cd5d-3ba1-4c3a-96f5-43862d47ec96", - "code": "33637", - "data": { - "stops": [ - { - "id": "3637", - "code": "33637", - "data": { - "gtfs": { - "stop_id": "3637", - "stop_code": "33637", - "stop_name": "de l'ENA et École Nationale d'Aérotechnique", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de l'ENA et École Nationale d'Aérotechnique", - "geography": { - "type": "Point", - "coordinates": [ - -73.419810238756, - 45.5239258939178 - ] - } - }, - { - "id": "3640", - "code": "33640", - "data": { - "gtfs": { - "stop_id": "3640", - "stop_code": "33640", - "stop_name": "de l'ENA et ECOLE NATIONALE D'AÉROTECHNIQUE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de l'ENA et ECOLE NATIONALE D'AÉROTECHNIQUE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4197803221772, - 45.5240780925001 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5511829637172 - }, - "name": "de l'ENA et École Nationale d'Aérotechnique", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.41979528, - 45.524001993 - ] - }, - "is_frozen": false, - "integer_id": 1280, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.416956, - 45.525677 - ] - }, - "id": 1281, - "properties": { - "id": "94a06ef0-fab6-48d9-b546-63c0a5523117", - "code": "33638", - "data": { - "stops": [ - { - "id": "3638", - "code": "33638", - "data": { - "gtfs": { - "stop_id": "3638", - "stop_code": "33638", - "stop_name": "de l'ENA et Viger", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de l'ENA et Viger", - "geography": { - "type": "Point", - "coordinates": [ - -73.4169558697289, - 45.5256768626474 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5795134456733 - }, - "name": "de l'ENA et Viger", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.41695587, - 45.525676863 - ] - }, - "is_frozen": false, - "integer_id": 1281, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.4656, - 45.522562 - ] - }, - "id": 1282, - "properties": { - "id": "4e3112b5-abc7-4db5-a6a8-19b4193263c2", - "code": "33641", - "data": { - "stops": [ - { - "id": "3641", - "code": "33641", - "data": { - "gtfs": { - "stop_id": "3641", - "stop_code": "33641", - "stop_name": "ch. de Chambly et boul. Jacques-Cartier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Jacques-Cartier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4655995432264, - 45.5225616689241 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5268218344995 - }, - "name": "ch. de Chambly et boul. Jacques-Cartier ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465599543, - 45.522561669 - ] - }, - "is_frozen": false, - "integer_id": 1282, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459286, - 45.491991 - ] - }, - "id": 1283, - "properties": { - "id": "1c6a64fd-3d5b-472f-bfe4-11a7479ddb48", - "code": "33646", - "data": { - "stops": [ - { - "id": "3646", - "code": "33646", - "data": { - "gtfs": { - "stop_id": "3646", - "stop_code": "33646", - "stop_name": "9e Avenue et Robillard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "9e Avenue et Robillard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4590775560882, - 45.4917456473959 - ] - } - }, - { - "id": "4752", - "code": "34752", - "data": { - "gtfs": { - "stop_id": "4752", - "stop_code": "34752", - "stop_name": "9e Avenue et Murray", - "location_type": 0, - "parent_station": "" - } - }, - "name": "9e Avenue et Murray", - "geography": { - "type": "Point", - "coordinates": [ - -73.4594953738634, - 45.4922358868731 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0101921860509 - }, - "name": "9e Avenue et Robillard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459286465, - 45.491990767 - ] - }, - "is_frozen": false, - "integer_id": 1283, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491295, - 45.489293 - ] - }, - "id": 1284, - "properties": { - "id": "1bded3cb-51a3-422d-8815-a9027023991e", - "code": "33647", - "data": { - "stops": [ - { - "id": "3647", - "code": "33647", - "data": { - "gtfs": { - "stop_id": "3647", - "stop_code": "33647", - "stop_name": "boul. Churchill et av. Victoria", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Churchill et av. Victoria", - "geography": { - "type": "Point", - "coordinates": [ - -73.4912946460981, - 45.4892929267 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9646402654732 - }, - "name": "boul. Churchill et av. Victoria", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491294646, - 45.489292927 - ] - }, - "is_frozen": false, - "integer_id": 1284, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.431689, - 45.506374 - ] - }, - "id": 1285, - "properties": { - "id": "2f531374-1848-411d-97c8-17a070d5c4b1", - "code": "33648", - "data": { - "stops": [ - { - "id": "3648", - "code": "33648", - "data": { - "gtfs": { - "stop_id": "3648", - "stop_code": "33648", - "stop_name": "boul. Sir-Wilfrid-Laurier et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4316887975062, - 45.50637394881 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2531555805656 - }, - "name": "boul. Sir-Wilfrid-Laurier et boul. Cousineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431688798, - 45.506373949 - ] - }, - "is_frozen": false, - "integer_id": 1285, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.436732, - 45.57388 - ] - }, - "id": 1286, - "properties": { - "id": "b09cf260-c832-4cf7-bb1b-ef1c96c3308c", - "code": "33649", - "data": { - "stops": [ - { - "id": "3649", - "code": "33649", - "data": { - "gtfs": { - "stop_id": "3649", - "stop_code": "33649", - "stop_name": "du Perche et de Normandie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Perche et de Normandie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4368350700266, - 45.5737498066257 - ] - } - }, - { - "id": "4222", - "code": "34222", - "data": { - "gtfs": { - "stop_id": "4222", - "stop_code": "34222", - "stop_name": "de Normandie et du Perche", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Normandie et du Perche", - "geography": { - "type": "Point", - "coordinates": [ - -73.4366293752699, - 45.5740106439364 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3959474484358 - }, - "name": "du Perche et de Normandie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.436732223, - 45.573880225 - ] - }, - "is_frozen": false, - "integer_id": 1286, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513788, - 45.495391 - ] - }, - "id": 1287, - "properties": { - "id": "27330ef0-4c59-4e22-a044-51b9d43c9719", - "code": "33663", - "data": { - "stops": [ - { - "id": "3663", - "code": "33663", - "data": { - "gtfs": { - "stop_id": "3663", - "stop_code": "33663", - "stop_name": "Riverside et boul. de l'Union", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et boul. de l'Union", - "geography": { - "type": "Point", - "coordinates": [ - -73.5137876182343, - 45.4953905444115 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0676052429197 - }, - "name": "Riverside et boul. de l'Union", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.513787618, - 45.495390544 - ] - }, - "is_frozen": false, - "integer_id": 1287, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461765, - 45.555432 - ] - }, - "id": 1288, - "properties": { - "id": "98c6a76d-4b34-4191-9aa5-bb43fca9fb20", - "code": "33667", - "data": { - "stops": [ - { - "id": "3667", - "code": "33667", - "data": { - "gtfs": { - "stop_id": "3667", - "stop_code": "33667", - "stop_name": "du Caribou et Bédard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Caribou et Bédard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4619121968823, - 45.5553915962852 - ] - } - }, - { - "id": "4521", - "code": "34521", - "data": { - "gtfs": { - "stop_id": "4521", - "stop_code": "34521", - "stop_name": "Bédard et du Caribou", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bédard et du Caribou", - "geography": { - "type": "Point", - "coordinates": [ - -73.4616171858677, - 45.5554718671831 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0832350562184 - }, - "name": "du Caribou et Bédard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461764691, - 45.555431732 - ] - }, - "is_frozen": false, - "integer_id": 1288, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.519245, - 45.520636 - ] - }, - "id": 1289, - "properties": { - "id": "14ea82bb-e417-4012-bd05-27bf80d8ca20", - "code": "33668", - "data": { - "stops": [ - { - "id": "3668", - "code": "33668", - "data": { - "gtfs": { - "stop_id": "3668", - "stop_code": "33668", - "stop_name": "boul. La Fayette et Saint-Charles ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et Saint-Charles ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.5192449767288, - 45.5206358129215 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.49425147762 - }, - "name": "boul. La Fayette et Saint-Charles ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.519244977, - 45.520635813 - ] - }, - "is_frozen": false, - "integer_id": 1289, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.518828, - 45.520725 - ] - }, - "id": 1290, - "properties": { - "id": "24b6917b-6070-4fb2-a53e-3551153f56bd", - "code": "33669", - "data": { - "stops": [ - { - "id": "3669", - "code": "33669", - "data": { - "gtfs": { - "stop_id": "3669", - "stop_code": "33669", - "stop_name": "boul. La Fayette et civique 165", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et civique 165", - "geography": { - "type": "Point", - "coordinates": [ - -73.5188276255784, - 45.5207248829693 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4957577695328 - }, - "name": "boul. La Fayette et civique 165", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.518827626, - 45.520724883 - ] - }, - "is_frozen": false, - "integer_id": 1290, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.52011, - 45.519807 - ] - }, - "id": 1291, - "properties": { - "id": "fcffdbe0-ece8-42fe-a58e-9061bf1a6756", - "code": "33685", - "data": { - "stops": [ - { - "id": "3685", - "code": "33685", - "data": { - "gtfs": { - "stop_id": "3685", - "stop_code": "33685", - "stop_name": "Saint-Charles ouest et Verchères", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et Verchères", - "geography": { - "type": "Point", - "coordinates": [ - -73.520239316534, - 45.5198828751711 - ] - } - }, - { - "id": "4540", - "code": "34540", - "data": { - "gtfs": { - "stop_id": "4540", - "stop_code": "34540", - "stop_name": "Saint-Charles ouest et Verchères", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et Verchères", - "geography": { - "type": "Point", - "coordinates": [ - -73.5199805674409, - 45.5197314406939 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4802381605695 - }, - "name": "Saint-Charles ouest et Verchères", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.520109942, - 45.519807158 - ] - }, - "is_frozen": false, - "integer_id": 1291, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.517979, - 45.531507 - ] - }, - "id": 1292, - "properties": { - "id": "649e6394-9376-40eb-bc0e-4a376a0044aa", - "code": "33690", - "data": { - "stops": [ - { - "id": "3690", - "code": "33690", - "data": { - "gtfs": { - "stop_id": "3690", - "stop_code": "33690", - "stop_name": "Saint-Charles ouest et Joliette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et Joliette", - "geography": { - "type": "Point", - "coordinates": [ - -73.5179790801823, - 45.5315070111543 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6781500944925 - }, - "name": "Saint-Charles ouest et Joliette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.51797908, - 45.531507011 - ] - }, - "is_frozen": false, - "integer_id": 1292, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.516692, - 45.530817 - ] - }, - "id": 1293, - "properties": { - "id": "75f8e698-ddc5-4206-bed4-8258ad166d7e", - "code": "33691", - "data": { - "stops": [ - { - "id": "3691", - "code": "33691", - "data": { - "gtfs": { - "stop_id": "3691", - "stop_code": "33691", - "stop_name": "Joliette et Saint-Charles ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Saint-Charles ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.5167225609502, - 45.5308975856697 - ] - } - }, - { - "id": "3692", - "code": "33692", - "data": { - "gtfs": { - "stop_id": "3692", - "stop_code": "33692", - "stop_name": "Joliette et Saint-Charles ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et Saint-Charles ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.5166622055084, - 45.5307366268555 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6664764400505 - }, - "name": "Joliette et Saint-Charles ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.516692383, - 45.530817106 - ] - }, - "is_frozen": false, - "integer_id": 1293, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.519036, - 45.531588 - ] - }, - "id": 1294, - "properties": { - "id": "2e804fba-75d7-4c69-a7f7-706998c1a6f1", - "code": "33695", - "data": { - "stops": [ - { - "id": "3695", - "code": "33695", - "data": { - "gtfs": { - "stop_id": "3695", - "stop_code": "33695", - "stop_name": "Joliette et place de la Louisiane", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et place de la Louisiane", - "geography": { - "type": "Point", - "coordinates": [ - -73.5188249216581, - 45.5315930911245 - ] - } - }, - { - "id": "3998", - "code": "33998", - "data": { - "gtfs": { - "stop_id": "3998", - "stop_code": "33998", - "stop_name": "Joliette et place de la Louisiane", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et place de la Louisiane", - "geography": { - "type": "Point", - "coordinates": [ - -73.5192466203429, - 45.5315826097214 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6795179722645 - }, - "name": "Joliette et place de la Louisiane", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.519035771, - 45.53158785 - ] - }, - "is_frozen": false, - "integer_id": 1294, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.431274, - 45.58031 - ] - }, - "id": 1295, - "properties": { - "id": "ba6e04e1-77fc-4b3f-86d2-fd956b418882", - "code": "33697", - "data": { - "stops": [ - { - "id": "3697", - "code": "33697", - "data": { - "gtfs": { - "stop_id": "3697", - "stop_code": "33697", - "stop_name": "D'Avaugour et de Normandie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "D'Avaugour et de Normandie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4314519800789, - 45.5803805991103 - ] - } - }, - { - "id": "3702", - "code": "33702", - "data": { - "gtfs": { - "stop_id": "3702", - "stop_code": "33702", - "stop_name": "de Normandie et D'Avaugour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Normandie et D'Avaugour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4312855184469, - 45.5801777924163 - ] - } - }, - { - "id": "3703", - "code": "33703", - "data": { - "gtfs": { - "stop_id": "3703", - "stop_code": "33703", - "stop_name": "de Normandie et D'Avaugour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Normandie et D'Avaugour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4310961833109, - 45.5804414988699 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5050012562145 - }, - "name": "D'Avaugour et de Normandie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431274082, - 45.580309646 - ] - }, - "is_frozen": false, - "integer_id": 1295, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.428715, - 45.581598 - ] - }, - "id": 1296, - "properties": { - "id": "3bd4e28f-2392-4d87-96de-a2ab53d75020", - "code": "33699", - "data": { - "stops": [ - { - "id": "3699", - "code": "33699", - "data": { - "gtfs": { - "stop_id": "3699", - "stop_code": "33699", - "stop_name": "de Normandie et des Rossignols", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Normandie et des Rossignols", - "geography": { - "type": "Point", - "coordinates": [ - -73.4286416724976, - 45.5817624785984 - ] - } - }, - { - "id": "3700", - "code": "33700", - "data": { - "gtfs": { - "stop_id": "3700", - "stop_code": "33700", - "stop_name": "de Normandie et des Rossignols", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Normandie et des Rossignols", - "geography": { - "type": "Point", - "coordinates": [ - -73.428787892123, - 45.5814325515651 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5268501276972 - }, - "name": "de Normandie et des Rossignols", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.428714782, - 45.581597515 - ] - }, - "is_frozen": false, - "integer_id": 1296, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451701, - 45.517167 - ] - }, - "id": 1297, - "properties": { - "id": "0039f884-0610-402a-b23b-498abb207283", - "code": "33704", - "data": { - "stops": [ - { - "id": "3704", - "code": "33704", - "data": { - "gtfs": { - "stop_id": "3704", - "stop_code": "33704", - "stop_name": "boul. Roberval est et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4517012978075, - 45.5171673249369 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4356002388799 - }, - "name": "boul. Roberval est et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451701298, - 45.517167325 - ] - }, - "is_frozen": false, - "integer_id": 1297, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451322, - 45.516819 - ] - }, - "id": 1298, - "properties": { - "id": "5636d204-312b-4d1e-bac7-614621da4bb5", - "code": "33705", - "data": { - "stops": [ - { - "id": "3705", - "code": "33705", - "data": { - "gtfs": { - "stop_id": "3705", - "stop_code": "33705", - "stop_name": "ch. de Chambly et boul. Roberval est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Roberval est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4513217560175, - 45.516819495932 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4297191313406 - }, - "name": "ch. de Chambly et boul. Roberval est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451321756, - 45.516819496 - ] - }, - "is_frozen": false, - "integer_id": 1298, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449887, - 45.517374 - ] - }, - "id": 1299, - "properties": { - "id": "9d7bed04-91bf-4977-b8f5-ead58bfa3d28", - "code": "33706", - "data": { - "stops": [ - { - "id": "3706", - "code": "33706", - "data": { - "gtfs": { - "stop_id": "3706", - "stop_code": "33706", - "stop_name": "boul. Roberval est et Masson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et Masson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4497797994026, - 45.5175333056353 - ] - } - }, - { - "id": "4169", - "code": "34169", - "data": { - "gtfs": { - "stop_id": "4169", - "stop_code": "34169", - "stop_name": "boul. Roberval est et Masson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et Masson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4499941137366, - 45.5172151097785 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4390982765643 - }, - "name": "boul. Roberval est et Masson", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449886957, - 45.517374208 - ] - }, - "is_frozen": false, - "integer_id": 1299, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446151, - 45.519139 - ] - }, - "id": 1300, - "properties": { - "id": "aa6137b4-b674-460f-91f8-a129c1cf46bc", - "code": "33707", - "data": { - "stops": [ - { - "id": "3707", - "code": "33707", - "data": { - "gtfs": { - "stop_id": "3707", - "stop_code": "33707", - "stop_name": "boul. Roberval est et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4461507488776, - 45.5191390216306 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.468939812719 - }, - "name": "boul. Roberval est et Passage piétonnier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446150749, - 45.519139022 - ] - }, - "is_frozen": false, - "integer_id": 1300, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.447492, - 45.518172 - ] - }, - "id": 1301, - "properties": { - "id": "96eb89e4-98b8-49ac-b938-d7bcff69fc98", - "code": "33708", - "data": { - "stops": [ - { - "id": "3708", - "code": "33708", - "data": { - "gtfs": { - "stop_id": "3708", - "stop_code": "33708", - "stop_name": "boul. Roberval est et du Major", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et du Major", - "geography": { - "type": "Point", - "coordinates": [ - -73.4474739436447, - 45.5183072852127 - ] - } - }, - { - "id": "4170", - "code": "34170", - "data": { - "gtfs": { - "stop_id": "4170", - "stop_code": "34170", - "stop_name": "boul. Roberval est et du Major", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et du Major", - "geography": { - "type": "Point", - "coordinates": [ - -73.4475093946638, - 45.5180373493167 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4525932919506 - }, - "name": "boul. Roberval est et du Major", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447491669, - 45.518172317 - ] - }, - "is_frozen": false, - "integer_id": 1301, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44475, - 45.525254 - ] - }, - "id": 1302, - "properties": { - "id": "2800446d-aebc-4882-a018-9ab217599d73", - "code": "33710", - "data": { - "stops": [ - { - "id": "3710", - "code": "33710", - "data": { - "gtfs": { - "stop_id": "3710", - "stop_code": "33710", - "stop_name": "boul. Roland-Therrien et Moquin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et Moquin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4447495344823, - 45.5252536219661 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.572354073969 - }, - "name": "boul. Roland-Therrien et Moquin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.444749534, - 45.525253622 - ] - }, - "is_frozen": false, - "integer_id": 1302, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446317, - 45.526 - ] - }, - "id": 1303, - "properties": { - "id": "fec06f0d-ad63-44c6-b81c-5f0502d6d6ec", - "code": "33711", - "data": { - "stops": [ - { - "id": "3711", - "code": "33711", - "data": { - "gtfs": { - "stop_id": "3711", - "stop_code": "33711", - "stop_name": "boul. Roland-Therrien et Brassard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et Brassard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4463186436785, - 45.5257537675257 - ] - } - }, - { - "id": "4174", - "code": "34174", - "data": { - "gtfs": { - "stop_id": "4174", - "stop_code": "34174", - "stop_name": "boul. Roland-Therrien et Brassard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et Brassard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4462538937672, - 45.5261370911636 - ] - } - }, - { - "id": "5797", - "code": "30566", - "data": { - "gtfs": { - "stop_id": "5797", - "stop_code": "30566", - "stop_name": "Brassard et boul. Roland-Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brassard et boul. Roland-Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4463806943607, - 45.5262460799074 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5849783209018 - }, - "name": "boul. Roland-Therrien et Brassard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446317294, - 45.525999924 - ] - }, - "is_frozen": false, - "integer_id": 1303, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450213, - 45.516095 - ] - }, - "id": 1304, - "properties": { - "id": "b8513e69-5eee-478d-b428-8f498c145b40", - "code": "33712", - "data": { - "stops": [ - { - "id": "3712", - "code": "33712", - "data": { - "gtfs": { - "stop_id": "3712", - "stop_code": "33712", - "stop_name": "ch. de Chambly et Bégin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Bégin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4502128406686, - 45.5160952516641 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4174739287674 - }, - "name": "ch. de Chambly et Bégin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450212841, - 45.516095252 - ] - }, - "is_frozen": false, - "integer_id": 1304, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.498201, - 45.479261 - ] - }, - "id": 1305, - "properties": { - "id": "36f2b716-8be1-4fa9-bb54-910b9cc8cda8", - "code": "33714", - "data": { - "stops": [ - { - "id": "3714", - "code": "33714", - "data": { - "gtfs": { - "stop_id": "3714", - "stop_code": "33714", - "stop_name": "boul. Simard et de Gascogne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Simard et de Gascogne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4984502720319, - 45.4791581527916 - ] - } - }, - { - "id": "3715", - "code": "33715", - "data": { - "gtfs": { - "stop_id": "3715", - "stop_code": "33715", - "stop_name": "boul. Simard et de Gascogne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Simard et de Gascogne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4979510312277, - 45.4793644581998 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7953172108505 - }, - "name": "boul. Simard et de Gascogne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.498200652, - 45.479261305 - ] - }, - "is_frozen": false, - "integer_id": 1305, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.496094, - 45.479209 - ] - }, - "id": 1306, - "properties": { - "id": "6b54424b-6f85-4448-8e7d-a05da4ef5b95", - "code": "33716", - "data": { - "stops": [ - { - "id": "3716", - "code": "33716", - "data": { - "gtfs": { - "stop_id": "3716", - "stop_code": "33716", - "stop_name": "boul. Simard et du Pas-de-Calais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Simard et du Pas-de-Calais", - "geography": { - "type": "Point", - "coordinates": [ - -73.4964084995336, - 45.479115170653 - ] - } - }, - { - "id": "3717", - "code": "33717", - "data": { - "gtfs": { - "stop_id": "3717", - "stop_code": "33717", - "stop_name": "boul. Simard et du Pas-de-Calais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Simard et du Pas-de-Calais", - "geography": { - "type": "Point", - "coordinates": [ - -73.4957801094829, - 45.4793020608447 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7944281129808 - }, - "name": "boul. Simard et du Pas-de-Calais", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.496094305, - 45.479208616 - ] - }, - "is_frozen": false, - "integer_id": 1306, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491669, - 45.479139 - ] - }, - "id": 1307, - "properties": { - "id": "2a6d26db-5d45-4f9a-9b35-e890a7e4faaf", - "code": "33718", - "data": { - "stops": [ - { - "id": "3718", - "code": "33718", - "data": { - "gtfs": { - "stop_id": "3718", - "stop_code": "33718", - "stop_name": "boul. Simard et du Dauphiné", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Simard et du Dauphiné", - "geography": { - "type": "Point", - "coordinates": [ - -73.4918543087617, - 45.4790526204867 - ] - } - }, - { - "id": "3719", - "code": "33719", - "data": { - "gtfs": { - "stop_id": "3719", - "stop_code": "33719", - "stop_name": "boul. Simard et du Dauphiné", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Simard et du Dauphiné", - "geography": { - "type": "Point", - "coordinates": [ - -73.4914836548061, - 45.4792256393942 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7932555787548 - }, - "name": "boul. Simard et du Dauphiné", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491668982, - 45.47913913 - ] - }, - "is_frozen": false, - "integer_id": 1307, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482576, - 45.478987 - ] - }, - "id": 1308, - "properties": { - "id": "528dcb9e-5a83-46d3-8e03-42692ca57a5a", - "code": "33722", - "data": { - "stops": [ - { - "id": "3722", - "code": "33722", - "data": { - "gtfs": { - "stop_id": "3722", - "stop_code": "33722", - "stop_name": "boul. Simard et de Guyenne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Simard et de Guyenne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4828011384834, - 45.4789014587105 - ] - } - }, - { - "id": "3965", - "code": "33965", - "data": { - "gtfs": { - "stop_id": "3965", - "stop_code": "33965", - "stop_name": "boul. Simard et de Guyenne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Simard et de Guyenne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4823508231788, - 45.4790732958604 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.790694853574 - }, - "name": "boul. Simard et de Guyenne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482575981, - 45.478987377 - ] - }, - "is_frozen": false, - "integer_id": 1308, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479103, - 45.478944 - ] - }, - "id": 1309, - "properties": { - "id": "3e25ecf8-754c-4e0a-ae9f-8c0cfca38498", - "code": "33723", - "data": { - "stops": [ - { - "id": "3723", - "code": "33723", - "data": { - "gtfs": { - "stop_id": "3723", - "stop_code": "33723", - "stop_name": "boul. Simard et place de Chambord", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Simard et place de Chambord", - "geography": { - "type": "Point", - "coordinates": [ - -73.4792858962149, - 45.4788574289453 - ] - } - }, - { - "id": "4192", - "code": "34192", - "data": { - "gtfs": { - "stop_id": "4192", - "stop_code": "34192", - "stop_name": "boul. Simard et de Namur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Simard et de Namur", - "geography": { - "type": "Point", - "coordinates": [ - -73.4789210379, - 45.4790302398748 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7899600998411 - }, - "name": "boul. Simard et place de Chambord", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479103467, - 45.478943834 - ] - }, - "is_frozen": false, - "integer_id": 1309, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.419991, - 45.459106 - ] - }, - "id": 1310, - "properties": { - "id": "2b6f210c-4f28-43d1-b096-b48c582f5274", - "code": "33725", - "data": { - "stops": [ - { - "id": "3725", - "code": "33725", - "data": { - "gtfs": { - "stop_id": "3725", - "stop_code": "33725", - "stop_name": "boul. Grande Allée et boul. du Quartier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et boul. du Quartier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4199913724205, - 45.4591060318546 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4553880136024 - }, - "name": "boul. Grande Allée et boul. du Quartier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.419991372, - 45.459106032 - ] - }, - "is_frozen": false, - "integer_id": 1310, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462487, - 45.561447 - ] - }, - "id": 1311, - "properties": { - "id": "2b894d51-a427-4850-8fae-89ed3f29388d", - "code": "33727", - "data": { - "stops": [ - { - "id": "3727", - "code": "33727", - "data": { - "gtfs": { - "stop_id": "3727", - "stop_code": "33727", - "stop_name": "boul. Fernand-Lafontaine et du Cerf", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et du Cerf", - "geography": { - "type": "Point", - "coordinates": [ - -73.4624868834039, - 45.5614468981124 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1851621118345 - }, - "name": "boul. Fernand-Lafontaine et du Cerf", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462486883, - 45.561446898 - ] - }, - "is_frozen": false, - "integer_id": 1311, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461405, - 45.561714 - ] - }, - "id": 1312, - "properties": { - "id": "28b7e465-7627-4587-950e-0fe104f1bac7", - "code": "33728", - "data": { - "stops": [ - { - "id": "3728", - "code": "33728", - "data": { - "gtfs": { - "stop_id": "3728", - "stop_code": "33728", - "stop_name": "boul. Fernand-Lafontaine et boul. Guimond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et boul. Guimond", - "geography": { - "type": "Point", - "coordinates": [ - -73.4614049497989, - 45.5617136659528 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1896832470502 - }, - "name": "boul. Fernand-Lafontaine et boul. Guimond", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46140495, - 45.561713666 - ] - }, - "is_frozen": false, - "integer_id": 1312, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469617, - 45.559333 - ] - }, - "id": 1313, - "properties": { - "id": "5ed15359-4097-46e8-93c0-1b63029d1081", - "code": "33730", - "data": { - "stops": [ - { - "id": "3730", - "code": "33730", - "data": { - "gtfs": { - "stop_id": "3730", - "stop_code": "33730", - "stop_name": "boul. Fernand-Lafontaine et Gendron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et Gendron", - "geography": { - "type": "Point", - "coordinates": [ - -73.4696171894796, - 45.5593330952997 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1493400132504 - }, - "name": "boul. Fernand-Lafontaine et Gendron", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469617189, - 45.559333095 - ] - }, - "is_frozen": false, - "integer_id": 1313, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.431238, - 45.586798 - ] - }, - "id": 1314, - "properties": { - "id": "3e60c63a-1f50-42ff-98f0-f081a7dc4017", - "code": "33731", - "data": { - "stops": [ - { - "id": "3731", - "code": "33731", - "data": { - "gtfs": { - "stop_id": "3731", - "stop_code": "33731", - "stop_name": "boul. De Montarville et D'Avaugour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et D'Avaugour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4312375851767, - 45.5867980599204 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6150931691071 - }, - "name": "boul. De Montarville et D'Avaugour", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431237585, - 45.58679806 - ] - }, - "is_frozen": false, - "integer_id": 1314, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.429722, - 45.585631 - ] - }, - "id": 1315, - "properties": { - "id": "c4a07fb5-3745-472e-8e03-a61e6908d906", - "code": "33732", - "data": { - "stops": [ - { - "id": "3732", - "code": "33732", - "data": { - "gtfs": { - "stop_id": "3732", - "stop_code": "33732", - "stop_name": "boul. De Montarville et des Alouettes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et des Alouettes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4297221825392, - 45.5856312281434 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5952922147183 - }, - "name": "boul. De Montarville et des Alouettes", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.429722183, - 45.585631228 - ] - }, - "is_frozen": false, - "integer_id": 1315, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.430193, - 45.585704 - ] - }, - "id": 1316, - "properties": { - "id": "4cd6eb13-aeec-4716-a3d3-8e1a38389723", - "code": "33734", - "data": { - "stops": [ - { - "id": "3734", - "code": "33734", - "data": { - "gtfs": { - "stop_id": "3734", - "stop_code": "33734", - "stop_name": "boul. De Montarville et des Alouettes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et des Alouettes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4301928431104, - 45.5857042013828 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5965305192688 - }, - "name": "boul. De Montarville et des Alouettes", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.430192843, - 45.585704201 - ] - }, - "is_frozen": false, - "integer_id": 1316, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.428562, - 45.584453 - ] - }, - "id": 1317, - "properties": { - "id": "9ad04c6c-abc1-49fe-8f36-db6146dd5c5c", - "code": "33735", - "data": { - "stops": [ - { - "id": "3735", - "code": "33735", - "data": { - "gtfs": { - "stop_id": "3735", - "stop_code": "33735", - "stop_name": "boul. De Montarville et civique 1146", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et civique 1146", - "geography": { - "type": "Point", - "coordinates": [ - -73.4285617245368, - 45.584453199489 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5753024848045 - }, - "name": "boul. De Montarville et civique 1146", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.428561725, - 45.584453199 - ] - }, - "is_frozen": false, - "integer_id": 1317, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.426514, - 45.583018 - ] - }, - "id": 1318, - "properties": { - "id": "3dedf179-3478-4b4d-b706-36e0a8981094", - "code": "33737", - "data": { - "stops": [ - { - "id": "3737", - "code": "33737", - "data": { - "gtfs": { - "stop_id": "3737", - "stop_code": "33737", - "stop_name": "boul. De Montarville et de Normandie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et de Normandie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4267630717295, - 45.5830661419712 - ] - } - }, - { - "id": "4983", - "code": "34983", - "data": { - "gtfs": { - "stop_id": "4983", - "stop_code": "34983", - "stop_name": "boul. De Montarville et des Bois-Francs", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et des Bois-Francs", - "geography": { - "type": "Point", - "coordinates": [ - -73.4262647516836, - 45.5829695116702 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5509476329281 - }, - "name": "boul. De Montarville et de Normandie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.426513912, - 45.583017827 - ] - }, - "is_frozen": false, - "integer_id": 1318, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.426977, - 45.582595 - ] - }, - "id": 1319, - "properties": { - "id": "e0ad666d-6319-4692-a7ee-a3080772e28d", - "code": "33738", - "data": { - "stops": [ - { - "id": "3738", - "code": "33738", - "data": { - "gtfs": { - "stop_id": "3738", - "stop_code": "33738", - "stop_name": "de Normandie et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Normandie et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4269772094547, - 45.5825947301213 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5437690339953 - }, - "name": "de Normandie et boul. De Montarville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.426977209, - 45.58259473 - ] - }, - "is_frozen": false, - "integer_id": 1319, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.424503, - 45.569478 - ] - }, - "id": 1320, - "properties": { - "id": "9cf65cb9-0319-47f1-8406-ca3211a7ff12", - "code": "33747", - "data": { - "stops": [ - { - "id": "3747", - "code": "33747", - "data": { - "gtfs": { - "stop_id": "3747", - "stop_code": "33747", - "stop_name": "Gay-Lussac et Ampère", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gay-Lussac et Ampère", - "geography": { - "type": "Point", - "coordinates": [ - -73.4246461921544, - 45.5695354889597 - ] - } - }, - { - "id": "5093", - "code": "35093", - "data": { - "gtfs": { - "stop_id": "5093", - "stop_code": "35093", - "stop_name": "Ampère et Gay-Lussac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ampère et Gay-Lussac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4243600135041, - 45.5694198630142 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3212941224313 - }, - "name": "Gay-Lussac et Ampère", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.424503103, - 45.569477676 - ] - }, - "is_frozen": false, - "integer_id": 1320, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.428432, - 45.57135 - ] - }, - "id": 1321, - "properties": { - "id": "ab35419e-5bd1-4da1-bfdf-b33c65916d63", - "code": "33750", - "data": { - "stops": [ - { - "id": "3750", - "code": "33750", - "data": { - "gtfs": { - "stop_id": "3750", - "stop_code": "33750", - "stop_name": "Gay-Lussac et civique 1340", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gay-Lussac et civique 1340", - "geography": { - "type": "Point", - "coordinates": [ - -73.4284983796126, - 45.5712973496809 - ] - } - }, - { - "id": "5094", - "code": "35094", - "data": { - "gtfs": { - "stop_id": "5094", - "stop_code": "35094", - "stop_name": "Gay-Lussac et civique 1349", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gay-Lussac et civique 1349", - "geography": { - "type": "Point", - "coordinates": [ - -73.4283653535845, - 45.5714020428067 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3530355516575 - }, - "name": "Gay-Lussac et civique 1340", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.428431867, - 45.571349696 - ] - }, - "is_frozen": false, - "integer_id": 1321, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.436906, - 45.572819 - ] - }, - "id": 1322, - "properties": { - "id": "7f184ebf-41da-496f-9ed8-536b6fff9c3f", - "code": "33752", - "data": { - "stops": [ - { - "id": "3752", - "code": "33752", - "data": { - "gtfs": { - "stop_id": "3752", - "stop_code": "33752", - "stop_name": "de Normandie et Gay-Lussac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Normandie et Gay-Lussac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4370234210671, - 45.5726475742013 - ] - } - }, - { - "id": "5098", - "code": "35098", - "data": { - "gtfs": { - "stop_id": "5098", - "stop_code": "35098", - "stop_name": "Gay-Lussac et de Normandie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gay-Lussac et de Normandie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4367895592042, - 45.5729907129486 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3779532811955 - }, - "name": "de Normandie et Gay-Lussac", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.43690649, - 45.572819144 - ] - }, - "is_frozen": false, - "integer_id": 1322, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437806, - 45.571479 - ] - }, - "id": 1323, - "properties": { - "id": "c9b7f8d6-62a3-444a-bbd0-591def556854", - "code": "33754", - "data": { - "stops": [ - { - "id": "3754", - "code": "33754", - "data": { - "gtfs": { - "stop_id": "3754", - "stop_code": "33754", - "stop_name": "de Normandie et Ampère", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Normandie et Ampère", - "geography": { - "type": "Point", - "coordinates": [ - -73.437805662522, - 45.5714786916189 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3552228858596 - }, - "name": "de Normandie et Ampère", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437805663, - 45.571478692 - ] - }, - "is_frozen": false, - "integer_id": 1323, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.438224, - 45.57129 - ] - }, - "id": 1324, - "properties": { - "id": "7cc0727e-e69b-4711-8bea-f955d406f0ed", - "code": "33755", - "data": { - "stops": [ - { - "id": "3755", - "code": "33755", - "data": { - "gtfs": { - "stop_id": "3755", - "stop_code": "33755", - "stop_name": "de Normandie et Ampère", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Normandie et Ampère", - "geography": { - "type": "Point", - "coordinates": [ - -73.4382242268113, - 45.5712895139473 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3520150743519 - }, - "name": "de Normandie et Ampère", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438224227, - 45.571289514 - ] - }, - "is_frozen": false, - "integer_id": 1324, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.433836, - 45.572286 - ] - }, - "id": 1325, - "properties": { - "id": "64d79080-f253-4cae-bbde-03e1a26a3f9e", - "code": "33758", - "data": { - "stops": [ - { - "id": "3758", - "code": "33758", - "data": { - "gtfs": { - "stop_id": "3758", - "stop_code": "33758", - "stop_name": "Gay-Lussac et civique 1280", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gay-Lussac et civique 1280", - "geography": { - "type": "Point", - "coordinates": [ - -73.4336757958572, - 45.5721913067766 - ] - } - }, - { - "id": "5096", - "code": "35096", - "data": { - "gtfs": { - "stop_id": "5096", - "stop_code": "35096", - "stop_name": "Gay-Lussac et civique 1285", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gay-Lussac et civique 1285", - "geography": { - "type": "Point", - "coordinates": [ - -73.4339966815786, - 45.5723801919136 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3689081701824 - }, - "name": "Gay-Lussac et civique 1280", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.433836239, - 45.572285749 - ] - }, - "is_frozen": false, - "integer_id": 1325, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.431423, - 45.571753 - ] - }, - "id": 1326, - "properties": { - "id": "26830ba4-9f15-4574-ae58-812d3a6fc6d5", - "code": "33760", - "data": { - "stops": [ - { - "id": "3760", - "code": "33760", - "data": { - "gtfs": { - "stop_id": "3760", - "stop_code": "33760", - "stop_name": "Gay-Lussac et civique 1310", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gay-Lussac et civique 1310", - "geography": { - "type": "Point", - "coordinates": [ - -73.4315612173224, - 45.5717030910601 - ] - } - }, - { - "id": "5095", - "code": "35095", - "data": { - "gtfs": { - "stop_id": "5095", - "stop_code": "35095", - "stop_name": "Gay-Lussac et civique 1315", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gay-Lussac et civique 1315", - "geography": { - "type": "Point", - "coordinates": [ - -73.431284439449, - 45.5718027657867 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3598730467795 - }, - "name": "Gay-Lussac et civique 1310", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431422828, - 45.571752928 - ] - }, - "is_frozen": false, - "integer_id": 1326, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.422365, - 45.56947 - ] - }, - "id": 1327, - "properties": { - "id": "8b4e9db5-5481-4624-b5ab-e40bba2a2897", - "code": "33763", - "data": { - "stops": [ - { - "id": "3763", - "code": "33763", - "data": { - "gtfs": { - "stop_id": "3763", - "stop_code": "33763", - "stop_name": "Ampère et civique 1421", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ampère et civique 1421", - "geography": { - "type": "Point", - "coordinates": [ - -73.4223148152213, - 45.5694163174174 - ] - } - }, - { - "id": "5092", - "code": "35092", - "data": { - "gtfs": { - "stop_id": "5092", - "stop_code": "35092", - "stop_name": "Ampère et civique 1421", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ampère et civique 1421", - "geography": { - "type": "Point", - "coordinates": [ - -73.4224142227234, - 45.5695226911901 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3211555672319 - }, - "name": "Ampère et civique 1421", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.422364519, - 45.569469504 - ] - }, - "is_frozen": false, - "integer_id": 1327, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.418974, - 45.56967 - ] - }, - "id": 1328, - "properties": { - "id": "834b9411-0d78-496d-8fb2-7131e0c1ec41", - "code": "33765", - "data": { - "stops": [ - { - "id": "3765", - "code": "33765", - "data": { - "gtfs": { - "stop_id": "3765", - "stop_code": "33765", - "stop_name": "Ampère et civique 1471", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ampère et civique 1471", - "geography": { - "type": "Point", - "coordinates": [ - -73.4189473490047, - 45.5696143992833 - ] - } - }, - { - "id": "5091", - "code": "35091", - "data": { - "gtfs": { - "stop_id": "5091", - "stop_code": "35091", - "stop_name": "Ampère et civique 1471", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ampère et civique 1471", - "geography": { - "type": "Point", - "coordinates": [ - -73.4190011872576, - 45.5697259537114 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3245579522135 - }, - "name": "Ampère et civique 1471", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.418974268, - 45.569670176 - ] - }, - "is_frozen": false, - "integer_id": 1328, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.414972, - 45.571818 - ] - }, - "id": 1329, - "properties": { - "id": "ab419e3e-c877-4589-88de-b6df60ac6dd1", - "code": "33766", - "data": { - "stops": [ - { - "id": "3766", - "code": "33766", - "data": { - "gtfs": { - "stop_id": "3766", - "stop_code": "33766", - "stop_name": "Ampère et civique 1550", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ampère et civique 1550", - "geography": { - "type": "Point", - "coordinates": [ - -73.4148910057105, - 45.5717931602272 - ] - } - }, - { - "id": "5089", - "code": "35089", - "data": { - "gtfs": { - "stop_id": "5089", - "stop_code": "35089", - "stop_name": "Ampère et civique 1551", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ampère et civique 1551", - "geography": { - "type": "Point", - "coordinates": [ - -73.415052205881, - 45.5718431948009 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3609794869086 - }, - "name": "Ampère et civique 1550", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.414971606, - 45.571818178 - ] - }, - "is_frozen": false, - "integer_id": 1329, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.41454, - 45.572662 - ] - }, - "id": 1330, - "properties": { - "id": "ee85cfb1-201c-47a0-9d37-a01d18d76e92", - "code": "33768", - "data": { - "stops": [ - { - "id": "3768", - "code": "33768", - "data": { - "gtfs": { - "stop_id": "3768", - "stop_code": "33768", - "stop_name": "Ampère et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ampère et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4145402349053, - 45.5726621388632 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3752908232714 - }, - "name": "Ampère et boul. De Montarville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.414540235, - 45.572662139 - ] - }, - "is_frozen": false, - "integer_id": 1330, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.472535, - 45.475258 - ] - }, - "id": 1331, - "properties": { - "id": "72cbb4ec-7491-4231-bfcb-281aa50ab8d9", - "code": "33774", - "data": { - "stops": [ - { - "id": "3774", - "code": "33774", - "data": { - "gtfs": { - "stop_id": "3774", - "stop_code": "33774", - "stop_name": "boul. Lapinière et boul. Provencher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et boul. Provencher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4725076369218, - 45.4750372534132 - ] - } - }, - { - "id": "4691", - "code": "34691", - "data": { - "gtfs": { - "stop_id": "4691", - "stop_code": "34691", - "stop_name": "boul. Lapinière et Allard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et Allard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4725617584907, - 45.475477854221 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7277631445627 - }, - "name": "boul. Lapinière et boul. Provencher", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472534698, - 45.475257554 - ] - }, - "is_frozen": false, - "integer_id": 1331, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452885, - 45.517198 - ] - }, - "id": 1332, - "properties": { - "id": "a873c2b7-5c8e-4dd4-9140-a7e8d042d038", - "code": "33780", - "data": { - "stops": [ - { - "id": "3780", - "code": "33780", - "data": { - "gtfs": { - "stop_id": "3780", - "stop_code": "33780", - "stop_name": "ch. de Chambly et boul. Roberval ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Roberval ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4528845902488, - 45.5171981491517 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4361214175825 - }, - "name": "ch. de Chambly et boul. Roberval ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45288459, - 45.517198149 - ] - }, - "is_frozen": false, - "integer_id": 1332, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443554, - 45.513303 - ] - }, - "id": 1333, - "properties": { - "id": "dcaa1460-3c81-4616-b65b-ed7fae894032", - "code": "33781", - "data": { - "stops": [ - { - "id": "3781", - "code": "33781", - "data": { - "gtfs": { - "stop_id": "3781", - "stop_code": "33781", - "stop_name": "ch. de Chambly et Cuvillier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Cuvillier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4435541431742, - 45.5133025811793 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3702610360056 - }, - "name": "ch. de Chambly et Cuvillier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443554143, - 45.513302581 - ] - }, - "is_frozen": false, - "integer_id": 1333, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.420653, - 45.500666 - ] - }, - "id": 1334, - "properties": { - "id": "bb148567-d18f-49e1-a388-f782610c5390", - "code": "33782", - "data": { - "stops": [ - { - "id": "3782", - "code": "33782", - "data": { - "gtfs": { - "stop_id": "3782", - "stop_code": "33782", - "stop_name": "boul. Cousineau et Coderre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Coderre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4206525972225, - 45.5006656196961 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.15670739151 - }, - "name": "boul. Cousineau et Coderre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.420652597, - 45.50066562 - ] - }, - "is_frozen": false, - "integer_id": 1334, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.498875, - 45.536729 - ] - }, - "id": 1335, - "properties": { - "id": "4d48f36b-2274-4392-afac-b2c2c64b98f0", - "code": "33783", - "data": { - "stops": [ - { - "id": "3783", - "code": "33783", - "data": { - "gtfs": { - "stop_id": "3783", - "stop_code": "33783", - "stop_name": "ch. de Chambly et Le Moyne est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Le Moyne est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4988749916403, - 45.5367294548449 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7665311094971 - }, - "name": "ch. de Chambly et Le Moyne est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.498874992, - 45.536729455 - ] - }, - "is_frozen": false, - "integer_id": 1335, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474153, - 45.525436 - ] - }, - "id": 1336, - "properties": { - "id": "f4167a64-c457-459d-9c74-9540f2c76889", - "code": "33793", - "data": { - "stops": [ - { - "id": "3793", - "code": "33793", - "data": { - "gtfs": { - "stop_id": "3793", - "stop_code": "33793", - "stop_name": "boul. Wilson et Saint-Alexandre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Wilson et Saint-Alexandre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4741526151705, - 45.5254359626293 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.575438460196 - }, - "name": "boul. Wilson et Saint-Alexandre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474152615, - 45.525435963 - ] - }, - "is_frozen": false, - "integer_id": 1336, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475531, - 45.561999 - ] - }, - "id": 1337, - "properties": { - "id": "3b263b94-6ffe-4e7f-87fe-8aae005ee725", - "code": "33798", - "data": { - "stops": [ - { - "id": "3798", - "code": "33798", - "data": { - "gtfs": { - "stop_id": "3798", - "stop_code": "33798", - "stop_name": "boul. Jean-Paul-Vincent et de la Province", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jean-Paul-Vincent et de la Province", - "geography": { - "type": "Point", - "coordinates": [ - -73.4755308576045, - 45.5619986911146 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1945138688108 - }, - "name": "boul. Jean-Paul-Vincent et de la Province", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475530858, - 45.561998691 - ] - }, - "is_frozen": false, - "integer_id": 1337, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478659, - 45.564363 - ] - }, - "id": 1338, - "properties": { - "id": "97fe5a5c-667d-4ae1-9235-722d5d8246f0", - "code": "33799", - "data": { - "stops": [ - { - "id": "3799", - "code": "33799", - "data": { - "gtfs": { - "stop_id": "3799", - "stop_code": "33799", - "stop_name": "boul. Jean-Paul-Vincent et de la Métropole", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jean-Paul-Vincent et de la Métropole", - "geography": { - "type": "Point", - "coordinates": [ - -73.4786589803492, - 45.5643628732159 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2345849729886 - }, - "name": "boul. Jean-Paul-Vincent et de la Métropole", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47865898, - 45.564362873 - ] - }, - "is_frozen": false, - "integer_id": 1338, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464934, - 45.524403 - ] - }, - "id": 1339, - "properties": { - "id": "74d09865-876b-4428-9441-1504fb3f52bd", - "code": "33801", - "data": { - "stops": [ - { - "id": "3801", - "code": "33801", - "data": { - "gtfs": { - "stop_id": "3801", - "stop_code": "33801", - "stop_name": "boul. Jacques-Cartier est et CENTRE MAXI", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et CENTRE MAXI", - "geography": { - "type": "Point", - "coordinates": [ - -73.4652162748441, - 45.5245029680001 - ] - } - }, - { - "id": "5138", - "code": "35138", - "data": { - "gtfs": { - "stop_id": "5138", - "stop_code": "35138", - "stop_name": "boul. Jacques-Cartier est et CENTRE MAXI", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et CENTRE MAXI", - "geography": { - "type": "Point", - "coordinates": [ - -73.4646516759616, - 45.5243026451519 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5579625183516 - }, - "name": "boul. Jacques-Cartier est et CENTRE MAXI", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464933975, - 45.524402807 - ] - }, - "is_frozen": false, - "integer_id": 1339, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513824, - 45.519372 - ] - }, - "id": 1340, - "properties": { - "id": "b412dc8e-18d6-40de-b77b-38439256c33f", - "code": "33804", - "data": { - "stops": [ - { - "id": "3804", - "code": "33804", - "data": { - "gtfs": { - "stop_id": "3804", - "stop_code": "33804", - "stop_name": "Saint-Laurent ouest et boul. La Fayette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et boul. La Fayette", - "geography": { - "type": "Point", - "coordinates": [ - -73.5138244956156, - 45.5193723839238 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4728859776526 - }, - "name": "Saint-Laurent ouest et boul. La Fayette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.513824496, - 45.519372384 - ] - }, - "is_frozen": false, - "integer_id": 1340, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.506505, - 45.517653 - ] - }, - "id": 1341, - "properties": { - "id": "85d8d9e6-1387-4893-85de-43bc3c6ef93c", - "code": "33805", - "data": { - "stops": [ - { - "id": "3805", - "code": "33805", - "data": { - "gtfs": { - "stop_id": "3805", - "stop_code": "33805", - "stop_name": "boul. Desaulniers et La Salle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Desaulniers et La Salle", - "geography": { - "type": "Point", - "coordinates": [ - -73.506505130888, - 45.5176532941083 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4438172038931 - }, - "name": "boul. Desaulniers et La Salle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.506505131, - 45.517653294 - ] - }, - "is_frozen": false, - "integer_id": 1341, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494762, - 45.470811 - ] - }, - "id": 1342, - "properties": { - "id": "e7a825d7-e677-4fe7-b1ef-b6db556d3c70", - "code": "33809", - "data": { - "stops": [ - { - "id": "3809", - "code": "33809", - "data": { - "gtfs": { - "stop_id": "3809", - "stop_code": "33809", - "stop_name": "av. Van Dyck et boul. Provencher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Van Dyck et boul. Provencher", - "geography": { - "type": "Point", - "coordinates": [ - -73.4947622002734, - 45.4708107962756 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.652751047702 - }, - "name": "av. Van Dyck et boul. Provencher", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.4947622, - 45.470810796 - ] - }, - "is_frozen": false, - "integer_id": 1342, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.495337, - 45.474673 - ] - }, - "id": 1343, - "properties": { - "id": "28d21225-939d-4260-9ed4-5c109f412ad9", - "code": "33810", - "data": { - "stops": [ - { - "id": "3810", - "code": "33810", - "data": { - "gtfs": { - "stop_id": "3810", - "stop_code": "33810", - "stop_name": "av. Victor-Hugo et place Van Gogh", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victor-Hugo et place Van Gogh", - "geography": { - "type": "Point", - "coordinates": [ - -73.4953437156493, - 45.4746087326883 - ] - } - }, - { - "id": "5716", - "code": "30485", - "data": { - "gtfs": { - "stop_id": "5716", - "stop_code": "30485", - "stop_name": "av. Victor-Hugo et place Van Gogh", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victor-Hugo et place Van Gogh", - "geography": { - "type": "Point", - "coordinates": [ - -73.4953293699034, - 45.4747368424934 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.717897758588 - }, - "name": "av. Victor-Hugo et place Van Gogh", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.495336543, - 45.474672788 - ] - }, - "is_frozen": false, - "integer_id": 1343, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481381, - 45.452549 - ] - }, - "id": 1344, - "properties": { - "id": "95a6ef09-da34-422a-81ec-389b0e0bb278", - "code": "33813", - "data": { - "stops": [ - { - "id": "3813", - "code": "33813", - "data": { - "gtfs": { - "stop_id": "3813", - "stop_code": "33813", - "stop_name": "av. Saguenay et Santiago", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Saguenay et Santiago", - "geography": { - "type": "Point", - "coordinates": [ - -73.4815203061686, - 45.452507642919 - ] - } - }, - { - "id": "3814", - "code": "33814", - "data": { - "gtfs": { - "stop_id": "3814", - "stop_code": "33814", - "stop_name": "av. Saguenay et Santiago", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Saguenay et Santiago", - "geography": { - "type": "Point", - "coordinates": [ - -73.4812424607957, - 45.4525898755087 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3448739277128 - }, - "name": "av. Saguenay et Santiago", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481381383, - 45.452548759 - ] - }, - "is_frozen": false, - "integer_id": 1344, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456621, - 45.463921 - ] - }, - "id": 1345, - "properties": { - "id": "ed9dd9b8-0ac6-4ad7-a810-826103749bb4", - "code": "33817", - "data": { - "stops": [ - { - "id": "3817", - "code": "33817", - "data": { - "gtfs": { - "stop_id": "3817", - "stop_code": "33817", - "stop_name": "boul. Lapinière et Viaduc Milan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et Viaduc Milan", - "geography": { - "type": "Point", - "coordinates": [ - -73.4566206605227, - 45.4639211920425 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5365654068281 - }, - "name": "boul. Lapinière et Viaduc Milan", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456620661, - 45.463921192 - ] - }, - "is_frozen": false, - "integer_id": 1345, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.373631, - 45.473994 - ] - }, - "id": 1346, - "properties": { - "id": "2cd6db83-9a4e-4640-91da-759ec9e4a386", - "code": "33818", - "data": { - "stops": [ - { - "id": "3818", - "code": "33818", - "data": { - "gtfs": { - "stop_id": "3818", - "stop_code": "33818", - "stop_name": "boul. Mountainview et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Mountainview et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3737833683186, - 45.4737838325172 - ] - } - }, - { - "id": "5805", - "code": "30574", - "data": { - "gtfs": { - "stop_id": "5805", - "stop_code": "30574", - "stop_name": "boul. Cousineau et boul. Mountainview", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et boul. Mountainview", - "geography": { - "type": "Point", - "coordinates": [ - -73.3734795870627, - 45.4742044892759 - ] - } - }, - { - "id": "5806", - "code": "30575", - "data": { - "gtfs": { - "stop_id": "5806", - "stop_code": "30575", - "stop_name": "boul. Cousineau et boul. Mountainview", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et boul. Mountainview", - "geography": { - "type": "Point", - "coordinates": [ - -73.3737773419192, - 45.4740707764804 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7064492567941 - }, - "name": "boul. Mountainview et boul. Cousineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.373631478, - 45.473994161 - ] - }, - "is_frozen": false, - "integer_id": 1346, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460385, - 45.466639 - ] - }, - "id": 1347, - "properties": { - "id": "827d769c-823c-44fa-9c17-8d7db0bd4459", - "code": "33822", - "data": { - "stops": [ - { - "id": "3822", - "code": "33822", - "data": { - "gtfs": { - "stop_id": "3822", - "stop_code": "33822", - "stop_name": "boul. Lapinière et av. Barry", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et av. Barry", - "geography": { - "type": "Point", - "coordinates": [ - -73.4599989792098, - 45.4664994990341 - ] - } - }, - { - "id": "3950", - "code": "33950", - "data": { - "gtfs": { - "stop_id": "3950", - "stop_code": "33950", - "stop_name": "boul. Lapinière et av. Barry", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et av. Barry", - "geography": { - "type": "Point", - "coordinates": [ - -73.4607706000402, - 45.4667777218306 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5823866578586 - }, - "name": "boul. Lapinière et av. Barry", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46038479, - 45.46663861 - ] - }, - "is_frozen": false, - "integer_id": 1347, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461957, - 45.46776 - ] - }, - "id": 1348, - "properties": { - "id": "87719027-eaeb-4ca2-9916-48e459caa53b", - "code": "33823", - "data": { - "stops": [ - { - "id": "3823", - "code": "33823", - "data": { - "gtfs": { - "stop_id": "3823", - "stop_code": "33823", - "stop_name": "boul. Lapinière et Aline", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et Aline", - "geography": { - "type": "Point", - "coordinates": [ - -73.4618536557397, - 45.467816086604 - ] - } - }, - { - "id": "3911", - "code": "33911", - "data": { - "gtfs": { - "stop_id": "3911", - "stop_code": "33911", - "stop_name": "boul. Lapinière et Beaulac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et Beaulac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4620603854046, - 45.4677040649119 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6012987900775 - }, - "name": "boul. Lapinière et Aline", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461957021, - 45.467760076 - ] - }, - "is_frozen": false, - "integer_id": 1348, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468239, - 45.47066 - ] - }, - "id": 1349, - "properties": { - "id": "51e1600d-418e-4477-9b26-9e5507d72a03", - "code": "33825", - "data": { - "stops": [ - { - "id": "3825", - "code": "33825", - "data": { - "gtfs": { - "stop_id": "3825", - "stop_code": "33825", - "stop_name": "boul. Taschereau et boul. Lapinière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et boul. Lapinière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4682385863362, - 45.4706599604343 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6502069121407 - }, - "name": "boul. Taschereau et boul. Lapinière", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468238586, - 45.47065996 - ] - }, - "is_frozen": false, - "integer_id": 1349, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45459, - 45.465584 - ] - }, - "id": 1350, - "properties": { - "id": "bd9b4c12-08ed-4715-ae67-eb179ed7f974", - "code": "33826", - "data": { - "stops": [ - { - "id": "3826", - "code": "33826", - "data": { - "gtfs": { - "stop_id": "3826", - "stop_code": "33826", - "stop_name": "boul. Milan et av. Broadway", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Broadway", - "geography": { - "type": "Point", - "coordinates": [ - -73.4545899405896, - 45.465583930416 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5646018075337 - }, - "name": "boul. Milan et av. Broadway", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454589941, - 45.46558393 - ] - }, - "is_frozen": false, - "integer_id": 1350, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450959, - 45.467319 - ] - }, - "id": 1351, - "properties": { - "id": "ff779c9a-cd83-463a-8d0c-a93f3584a187", - "code": "33827", - "data": { - "stops": [ - { - "id": "3827", - "code": "33827", - "data": { - "gtfs": { - "stop_id": "3827", - "stop_code": "33827", - "stop_name": "boul. Milan et place Bonaventure", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et place Bonaventure", - "geography": { - "type": "Point", - "coordinates": [ - -73.4509590201345, - 45.4673191375 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5938627847462 - }, - "name": "boul. Milan et place Bonaventure", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45095902, - 45.467319138 - ] - }, - "is_frozen": false, - "integer_id": 1351, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442595, - 45.47172 - ] - }, - "id": 1352, - "properties": { - "id": "7328cb46-5fe2-41a0-a307-4bef0b7ba0f1", - "code": "33828", - "data": { - "stops": [ - { - "id": "3828", - "code": "33828", - "data": { - "gtfs": { - "stop_id": "3828", - "stop_code": "33828", - "stop_name": "boul. Milan et av. Bienville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Milan et av. Bienville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4425948909507, - 45.4717199979563 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.668086893891 - }, - "name": "boul. Milan et av. Bienville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442594891, - 45.471719998 - ] - }, - "is_frozen": false, - "integer_id": 1352, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46911, - 45.454251 - ] - }, - "id": 1353, - "properties": { - "id": "d5176685-5789-4135-ac00-ee677cfb093a", - "code": "33833", - "data": { - "stops": [ - { - "id": "3833", - "code": "33833", - "data": { - "gtfs": { - "stop_id": "3833", - "stop_code": "33833", - "stop_name": "av. San Francisco et av. Saguenay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et av. Saguenay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4691466555676, - 45.4543927023766 - ] - } - }, - { - "id": "3834", - "code": "33834", - "data": { - "gtfs": { - "stop_id": "3834", - "stop_code": "33834", - "stop_name": "av. San Francisco et av. Saguenay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et av. Saguenay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4690730870029, - 45.4541082972508 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.373550835856 - }, - "name": "av. San Francisco et av. Saguenay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469109871, - 45.4542505 - ] - }, - "is_frozen": false, - "integer_id": 1353, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.470677, - 45.450671 - ] - }, - "id": 1354, - "properties": { - "id": "23085815-2dff-4082-9402-38931522fb99", - "code": "33835", - "data": { - "stops": [ - { - "id": "3835", - "code": "33835", - "data": { - "gtfs": { - "stop_id": "3835", - "stop_code": "33835", - "stop_name": "av. San Francisco et civique 8170", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et civique 8170", - "geography": { - "type": "Point", - "coordinates": [ - -73.470763188593, - 45.4506956748359 - ] - } - }, - { - "id": "3838", - "code": "33838", - "data": { - "gtfs": { - "stop_id": "3838", - "stop_code": "33838", - "stop_name": "av. San Francisco et civique 8170", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et civique 8170", - "geography": { - "type": "Point", - "coordinates": [ - -73.4705905275689, - 45.4506458282412 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3132296527801 - }, - "name": "av. San Francisco et civique 8170", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.470676858, - 45.450670752 - ] - }, - "is_frozen": false, - "integer_id": 1354, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.473468, - 45.448062 - ] - }, - "id": 1355, - "properties": { - "id": "9d8d74b7-fc1f-4af5-a4a4-0cee1ee7b556", - "code": "33836", - "data": { - "stops": [ - { - "id": "3836", - "code": "33836", - "data": { - "gtfs": { - "stop_id": "3836", - "stop_code": "33836", - "stop_name": "av. San Francisco et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4734620877303, - 45.4482353937562 - ] - } - }, - { - "id": "4079", - "code": "34079", - "data": { - "gtfs": { - "stop_id": "4079", - "stop_code": "34079", - "stop_name": "av. San Francisco et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. San Francisco et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4734740758701, - 45.4478880654724 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2692730223516 - }, - "name": "av. San Francisco et boul. Pelletier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.473468082, - 45.44806173 - ] - }, - "is_frozen": false, - "integer_id": 1355, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465699, - 45.47881 - ] - }, - "id": 1356, - "properties": { - "id": "579043e1-54f7-411f-9a36-e7ee3324290f", - "code": "33839", - "data": { - "stops": [ - { - "id": "3839", - "code": "33839", - "data": { - "gtfs": { - "stop_id": "3839", - "stop_code": "33839", - "stop_name": "boul. Taschereau et Angèle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Angèle", - "geography": { - "type": "Point", - "coordinates": [ - -73.465699261969, - 45.4788100898573 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7877032860132 - }, - "name": "boul. Taschereau et Angèle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465699262, - 45.47881009 - ] - }, - "is_frozen": false, - "integer_id": 1356, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446948, - 45.575109 - ] - }, - "id": 1357, - "properties": { - "id": "c520acc8-980c-45c0-9195-152ad50ee471", - "code": "33843", - "data": { - "stops": [ - { - "id": "3843", - "code": "33843", - "data": { - "gtfs": { - "stop_id": "3843", - "stop_code": "33843", - "stop_name": "boul. de Mortagne et Ampère", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Ampère", - "geography": { - "type": "Point", - "coordinates": [ - -73.4469481392943, - 45.5751091975466 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4167900426298 - }, - "name": "boul. de Mortagne et Ampère", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446948139, - 45.575109198 - ] - }, - "is_frozen": false, - "integer_id": 1357, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446981, - 45.578977 - ] - }, - "id": 1358, - "properties": { - "id": "6c99422e-05cb-48dc-811f-162fee50cf80", - "code": "33844", - "data": { - "stops": [ - { - "id": "3844", - "code": "33844", - "data": { - "gtfs": { - "stop_id": "3844", - "stop_code": "33844", - "stop_name": "boul. de Mortagne et boul. Industriel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et boul. Industriel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4467693459884, - 45.5788121758829 - ] - } - }, - { - "id": "3850", - "code": "33850", - "data": { - "gtfs": { - "stop_id": "3850", - "stop_code": "33850", - "stop_name": "boul. de Mortagne et boul. Industriel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et boul. Industriel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4471929756217, - 45.5791410609684 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4823878186683 - }, - "name": "boul. de Mortagne et boul. Industriel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446981161, - 45.578976618 - ] - }, - "is_frozen": false, - "integer_id": 1358, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437801, - 45.590412 - ] - }, - "id": 1359, - "properties": { - "id": "617c5711-4aaa-4c7f-bebe-63268ac405bb", - "code": "33845", - "data": { - "stops": [ - { - "id": "3845", - "code": "33845", - "data": { - "gtfs": { - "stop_id": "3845", - "stop_code": "33845", - "stop_name": "boul. de Mortagne et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4378013238839, - 45.5904120704226 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6764300776581 - }, - "name": "boul. de Mortagne et boul. De Montarville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437801324, - 45.59041207 - ] - }, - "is_frozen": false, - "integer_id": 1359, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442056, - 45.59574 - ] - }, - "id": 1360, - "properties": { - "id": "4fcc129f-8015-4b36-a21f-2437aa91a265", - "code": "33846", - "data": { - "stops": [ - { - "id": "3846", - "code": "33846", - "data": { - "gtfs": { - "stop_id": "3846", - "stop_code": "33846", - "stop_name": "boul. De Montarville et Jacques-Cartier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et Jacques-Cartier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4420556093012, - 45.5957399225992 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7668756176403 - }, - "name": "boul. De Montarville et Jacques-Cartier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442055609, - 45.595739923 - ] - }, - "is_frozen": false, - "integer_id": 1360, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437324, - 45.591011 - ] - }, - "id": 1361, - "properties": { - "id": "e177b755-3bcf-4a35-afd7-a49fb240f250", - "code": "33847", - "data": { - "stops": [ - { - "id": "3847", - "code": "33847", - "data": { - "gtfs": { - "stop_id": "3847", - "stop_code": "33847", - "stop_name": "boul. de Mortagne et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4373242281698, - 45.5910111678765 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6865990869317 - }, - "name": "boul. de Mortagne et boul. De Montarville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437324228, - 45.591011168 - ] - }, - "is_frozen": false, - "integer_id": 1361, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.481468, - 45.541114 - ] - }, - "id": 1362, - "properties": { - "id": "05e26e6f-35ac-45f7-bc21-12a31eb161dc", - "code": "33855", - "data": { - "stops": [ - { - "id": "3855", - "code": "33855", - "data": { - "gtfs": { - "stop_id": "3855", - "stop_code": "33855", - "stop_name": "Maple et Forget", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Maple et Forget", - "geography": { - "type": "Point", - "coordinates": [ - -73.4814683516453, - 45.5411139696392 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8407503803057 - }, - "name": "Maple et Forget", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.481468352, - 45.54111397 - ] - }, - "is_frozen": false, - "integer_id": 1362, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486111, - 45.540374 - ] - }, - "id": 1363, - "properties": { - "id": "0d1ddd51-f4a3-4891-9182-dbefd8d042a9", - "code": "33856", - "data": { - "stops": [ - { - "id": "3856", - "code": "33856", - "data": { - "gtfs": { - "stop_id": "3856", - "stop_code": "33856", - "stop_name": "Fréchette et boul. Roland-Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Fréchette et boul. Roland-Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4861113683222, - 45.5403740841897 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8282246909151 - }, - "name": "Fréchette et boul. Roland-Therrien", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486111368, - 45.540374084 - ] - }, - "is_frozen": false, - "integer_id": 1363, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513092, - 45.528594 - ] - }, - "id": 1364, - "properties": { - "id": "1c9586e9-c28e-4ee4-84b8-583c2c8a23be", - "code": "33858", - "data": { - "stops": [ - { - "id": "3858", - "code": "33858", - "data": { - "gtfs": { - "stop_id": "3858", - "stop_code": "33858", - "stop_name": "Saint-Laurent ouest et PLACE LONGUEUIL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et PLACE LONGUEUIL", - "geography": { - "type": "Point", - "coordinates": [ - -73.5130923849202, - 45.528593913277 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6288628851064 - }, - "name": "Saint-Laurent ouest et PLACE LONGUEUIL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.513092, - 45.528594 - ] - }, - "is_frozen": false, - "integer_id": 1364, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467674, - 45.431535 - ] - }, - "id": 1365, - "properties": { - "id": "99ed9a7e-9c9a-49bd-8a93-0c7a4fc5376d", - "code": "33860", - "data": { - "stops": [ - { - "id": "3860", - "code": "33860", - "data": { - "gtfs": { - "stop_id": "3860", - "stop_code": "33860", - "stop_name": "boul. Matte et av. Illinois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Matte et av. Illinois", - "geography": { - "type": "Point", - "coordinates": [ - -73.4677321295377, - 45.4316724364194 - ] - } - }, - { - "id": "4735", - "code": "34735", - "data": { - "gtfs": { - "stop_id": "4735", - "stop_code": "34735", - "stop_name": "av. Illinois et boul. Matte", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Illinois et boul. Matte", - "geography": { - "type": "Point", - "coordinates": [ - -73.4676158770428, - 45.4313985346505 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.9909801308029 - }, - "name": "boul. Matte et av. Illinois", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.467674003, - 45.431535486 - ] - }, - "is_frozen": false, - "integer_id": 1365, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468837, - 45.428011 - ] - }, - "id": 1366, - "properties": { - "id": "bce84a67-72ba-4847-b756-b7ff7e256fb0", - "code": "33861", - "data": { - "stops": [ - { - "id": "3861", - "code": "33861", - "data": { - "gtfs": { - "stop_id": "3861", - "stop_code": "33861", - "stop_name": "Isabelle et civique 3905", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Isabelle et civique 3905", - "geography": { - "type": "Point", - "coordinates": [ - -73.4688373704226, - 45.4280108893443 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.9316591599545 - }, - "name": "Isabelle et civique 3905", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46883737, - 45.428010889 - ] - }, - "is_frozen": false, - "integer_id": 1366, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466324, - 45.427137 - ] - }, - "id": 1367, - "properties": { - "id": "46ee0c64-acf7-4889-b8c8-a5aa9e1d42ae", - "code": "33862", - "data": { - "stops": [ - { - "id": "3862", - "code": "33862", - "data": { - "gtfs": { - "stop_id": "3862", - "stop_code": "33862", - "stop_name": "Isabelle et civique 3800", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Isabelle et civique 3800", - "geography": { - "type": "Point", - "coordinates": [ - -73.4663239056928, - 45.4271373166536 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.9169581481528 - }, - "name": "Isabelle et civique 3800", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466323906, - 45.427137317 - ] - }, - "is_frozen": false, - "integer_id": 1367, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464794, - 45.427809 - ] - }, - "id": 1368, - "properties": { - "id": "a1ca7f00-0457-4527-945c-e70fcf3a2d14", - "code": "33863", - "data": { - "stops": [ - { - "id": "3863", - "code": "33863", - "data": { - "gtfs": { - "stop_id": "3863", - "stop_code": "33863", - "stop_name": "Isabelle et civique 3695", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Isabelle et civique 3695", - "geography": { - "type": "Point", - "coordinates": [ - -73.4647942535462, - 45.4278092477774 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.9282657600605 - }, - "name": "Isabelle et civique 3695", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464794254, - 45.427809248 - ] - }, - "is_frozen": false, - "integer_id": 1368, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469958, - 45.446692 - ] - }, - "id": 1369, - "properties": { - "id": "25804924-ba76-4ef4-b42b-ff451a0d33dc", - "code": "33864", - "data": { - "stops": [ - { - "id": "3864", - "code": "33864", - "data": { - "gtfs": { - "stop_id": "3864", - "stop_code": "33864", - "stop_name": "boul. Taschereau et boul. Napoléon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et boul. Napoléon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4699578535866, - 45.4466916417444 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2461922875382 - }, - "name": "boul. Taschereau et boul. Napoléon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469957854, - 45.446691642 - ] - }, - "is_frozen": false, - "integer_id": 1369, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465122, - 45.454801 - ] - }, - "id": 1370, - "properties": { - "id": "3481b163-efe1-4b08-b6af-eecb2141ddbe", - "code": "33865", - "data": { - "stops": [ - { - "id": "3865", - "code": "33865", - "data": { - "gtfs": { - "stop_id": "3865", - "stop_code": "33865", - "stop_name": "boul. Taschereau et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4651215557733, - 45.4548013965545 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3828348334781 - }, - "name": "boul. Taschereau et boul. de Rome", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465121556, - 45.454801397 - ] - }, - "is_frozen": false, - "integer_id": 1370, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46484, - 45.45911 - ] - }, - "id": 1371, - "properties": { - "id": "081c1e5d-c8cc-48e6-9540-86b36c59b5a5", - "code": "33866", - "data": { - "stops": [ - { - "id": "3866", - "code": "33866", - "data": { - "gtfs": { - "stop_id": "3866", - "stop_code": "33866", - "stop_name": "boul. Taschereau et Mario", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Mario", - "geography": { - "type": "Point", - "coordinates": [ - -73.464839985295, - 45.4591096693856 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4554493209704 - }, - "name": "boul. Taschereau et Mario", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464839985, - 45.459109669 - ] - }, - "is_frozen": false, - "integer_id": 1371, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.485908, - 45.569949 - ] - }, - "id": 1372, - "properties": { - "id": "1b1077ca-8a37-46a1-a7be-751ea2f7f2ae", - "code": "33871", - "data": { - "stops": [ - { - "id": "3871", - "code": "33871", - "data": { - "gtfs": { - "stop_id": "3871", - "stop_code": "33871", - "stop_name": "boul. Marie-Victorin et boul. Jean-Paul-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et boul. Jean-Paul-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4859075733426, - 45.5699493941631 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3292921410728 - }, - "name": "boul. Marie-Victorin et boul. Jean-Paul-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.485907573, - 45.569949394 - ] - }, - "is_frozen": false, - "integer_id": 1372, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.428833, - 45.506571 - ] - }, - "id": 1373, - "properties": { - "id": "e5c099f9-8206-4175-8a7b-065df2f3b304", - "code": "33888", - "data": { - "stops": [ - { - "id": "3888", - "code": "33888", - "data": { - "gtfs": { - "stop_id": "3888", - "stop_code": "33888", - "stop_name": "ch. de Chambly et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4288326262406, - 45.5065710054928 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2564855656694 - }, - "name": "ch. de Chambly et boul. Cousineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.428832626, - 45.506571005 - ] - }, - "is_frozen": false, - "integer_id": 1373, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.415704, - 45.574533 - ] - }, - "id": 1374, - "properties": { - "id": "2fadd28d-d71a-42aa-bb6f-4f480fe6428d", - "code": "33890", - "data": { - "stops": [ - { - "id": "3890", - "code": "33890", - "data": { - "gtfs": { - "stop_id": "3890", - "stop_code": "33890", - "stop_name": "de Gascogne et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Gascogne et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.416051523646, - 45.5744682907166 - ] - } - }, - { - "id": "4698", - "code": "34698", - "data": { - "gtfs": { - "stop_id": "4698", - "stop_code": "34698", - "stop_name": "boul. De Montarville et de Gascogne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et de Gascogne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4158981436855, - 45.574624260913 - ] - } - }, - { - "id": "4977", - "code": "34977", - "data": { - "gtfs": { - "stop_id": "4977", - "stop_code": "34977", - "stop_name": "boul. De Montarville et de Gascogne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et de Gascogne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4153573770187, - 45.5744407628581 - ] - } - }, - { - "id": "5088", - "code": "35088", - "data": { - "gtfs": { - "stop_id": "5088", - "stop_code": "35088", - "stop_name": "de Gascogne et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Gascogne et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4157488308068, - 45.5744564339539 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4070096496135 - }, - "name": "de Gascogne et boul. De Montarville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.41570445, - 45.574532512 - ] - }, - "is_frozen": false, - "integer_id": 1374, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.417304, - 45.573603 - ] - }, - "id": 1375, - "properties": { - "id": "80eb2b2c-3d80-431d-851d-8665038b93b7", - "code": "33891", - "data": { - "stops": [ - { - "id": "3891", - "code": "33891", - "data": { - "gtfs": { - "stop_id": "3891", - "stop_code": "33891", - "stop_name": "de Gascogne et de Picardie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Gascogne et de Picardie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4172363581245, - 45.5737428641217 - ] - } - }, - { - "id": "5035", - "code": "35035", - "data": { - "gtfs": { - "stop_id": "5035", - "stop_code": "35035", - "stop_name": "de Gascogne et de Picardie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Gascogne et de Picardie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4173720305307, - 45.5734625585238 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3912411758039 - }, - "name": "de Gascogne et de Picardie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.417304194, - 45.573602711 - ] - }, - "is_frozen": false, - "integer_id": 1375, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450571, - 45.537487 - ] - }, - "id": 1376, - "properties": { - "id": "231dda72-d4b5-48ae-b714-5ce9d3802c45", - "code": "33898", - "data": { - "stops": [ - { - "id": "3898", - "code": "33898", - "data": { - "gtfs": { - "stop_id": "3898", - "stop_code": "33898", - "stop_name": "boul. Béliveau et Bourgeoys", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et Bourgeoys", - "geography": { - "type": "Point", - "coordinates": [ - -73.4508156331248, - 45.5374726489131 - ] - } - }, - { - "id": "3899", - "code": "33899", - "data": { - "gtfs": { - "stop_id": "3899", - "stop_code": "33899", - "stop_name": "boul. Béliveau et Bourgeoys", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et Bourgeoys", - "geography": { - "type": "Point", - "coordinates": [ - -73.4503270554859, - 45.5375021294479 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7793598793 - }, - "name": "boul. Béliveau et Bourgeoys", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450571344, - 45.537487389 - ] - }, - "is_frozen": false, - "integer_id": 1376, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.420368, - 45.564669 - ] - }, - "id": 1377, - "properties": { - "id": "0d73df1c-f948-4c1f-ba36-487a91089d51", - "code": "33902", - "data": { - "stops": [ - { - "id": "3902", - "code": "33902", - "data": { - "gtfs": { - "stop_id": "3902", - "stop_code": "33902", - "stop_name": "ch. Du Tremblay et Newton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Newton", - "geography": { - "type": "Point", - "coordinates": [ - -73.420368084394, - 45.5646692266905 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2397778080302 - }, - "name": "ch. Du Tremblay et Newton", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.420368084, - 45.564669227 - ] - }, - "is_frozen": false, - "integer_id": 1377, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465314, - 45.470055 - ] - }, - "id": 1378, - "properties": { - "id": "8e9afee7-e1de-4794-a91d-f9db0ef29ed2", - "code": "33904", - "data": { - "stops": [ - { - "id": "3904", - "code": "33904", - "data": { - "gtfs": { - "stop_id": "3904", - "stop_code": "33904", - "stop_name": "boul. Lapinière et Alain", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et Alain", - "geography": { - "type": "Point", - "coordinates": [ - -73.4653136298634, - 45.4700545736789 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6399961309749 - }, - "name": "boul. Lapinière et Alain", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46531363, - 45.470054574 - ] - }, - "is_frozen": false, - "integer_id": 1378, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463912, - 45.468978 - ] - }, - "id": 1379, - "properties": { - "id": "ee43ab70-74a3-4a43-bfec-164062a98584", - "code": "33905", - "data": { - "stops": [ - { - "id": "3905", - "code": "33905", - "data": { - "gtfs": { - "stop_id": "3905", - "stop_code": "33905", - "stop_name": "boul. Lapinière et av. Auteuil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et av. Auteuil", - "geography": { - "type": "Point", - "coordinates": [ - -73.4639124434692, - 45.4689782827362 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6218436045953 - }, - "name": "boul. Lapinière et av. Auteuil", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463912443, - 45.468978283 - ] - }, - "is_frozen": false, - "integer_id": 1379, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474492, - 45.469572 - ] - }, - "id": 1380, - "properties": { - "id": "7f71baf2-6e51-444e-9b3f-6f10b6ab4ee1", - "code": "33907", - "data": { - "stops": [ - { - "id": "3907", - "code": "33907", - "data": { - "gtfs": { - "stop_id": "3907", - "stop_code": "33907", - "stop_name": "boul. Pelletier et civique 6570", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et civique 6570", - "geography": { - "type": "Point", - "coordinates": [ - -73.4744915842199, - 45.4695719386072 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6318559704654 - }, - "name": "boul. Pelletier et civique 6570", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474491584, - 45.469571939 - ] - }, - "is_frozen": false, - "integer_id": 1380, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461151, - 45.462229 - ] - }, - "id": 1381, - "properties": { - "id": "b70dfa3a-43a1-4f92-afca-b8b01909c2c1", - "code": "33913", - "data": { - "stops": [ - { - "id": "3913", - "code": "33913", - "data": { - "gtfs": { - "stop_id": "3913", - "stop_code": "33913", - "stop_name": "av. Malo et croiss. Marin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et croiss. Marin", - "geography": { - "type": "Point", - "coordinates": [ - -73.461010212605, - 45.4623108511546 - ] - } - }, - { - "id": "4897", - "code": "34897", - "data": { - "gtfs": { - "stop_id": "4897", - "stop_code": "34897", - "stop_name": "av. Malo et croiss. Marin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et croiss. Marin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4612921150536, - 45.4621475352627 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5080381386623 - }, - "name": "av. Malo et croiss. Marin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461151164, - 45.462229193 - ] - }, - "is_frozen": false, - "integer_id": 1381, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46523, - 45.437471 - ] - }, - "id": 1382, - "properties": { - "id": "2dde72f9-0aa9-4a2a-b977-6a9b543bf834", - "code": "33914", - "data": { - "stops": [ - { - "id": "3914", - "code": "33914", - "data": { - "gtfs": { - "stop_id": "3914", - "stop_code": "33914", - "stop_name": "ch. des Prairies et civique 2970", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et civique 2970", - "geography": { - "type": "Point", - "coordinates": [ - -73.4651105516223, - 45.4375220836116 - ] - } - }, - { - "id": "5378", - "code": "30118", - "data": { - "gtfs": { - "stop_id": "5378", - "stop_code": "30118", - "stop_name": "ch. des Prairies et civique 2955", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et civique 2955", - "geography": { - "type": "Point", - "coordinates": [ - -73.4653490123246, - 45.4374205348541 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0909082797667 - }, - "name": "ch. des Prairies et civique 2970", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465229782, - 45.437471309 - ] - }, - "is_frozen": false, - "integer_id": 1382, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446775, - 45.576444 - ] - }, - "id": 1383, - "properties": { - "id": "a83efd44-0d7a-49ef-b344-ef523d875f87", - "code": "33920", - "data": { - "stops": [ - { - "id": "3920", - "code": "33920", - "data": { - "gtfs": { - "stop_id": "3920", - "stop_code": "33920", - "stop_name": "boul. de Mortagne et Station service Shell", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Station service Shell", - "geography": { - "type": "Point", - "coordinates": [ - -73.4467747845213, - 45.5764437281309 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4394243453359 - }, - "name": "boul. de Mortagne et Station service Shell", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446774785, - 45.576443728 - ] - }, - "is_frozen": false, - "integer_id": 1383, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.487136, - 45.500632 - ] - }, - "id": 1384, - "properties": { - "id": "6c42a8f6-a98f-4058-9992-d00706a03dff", - "code": "33939", - "data": { - "stops": [ - { - "id": "3939", - "code": "33939", - "data": { - "gtfs": { - "stop_id": "3939", - "stop_code": "33939", - "stop_name": "boul. Taschereau et Mance", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Mance", - "geography": { - "type": "Point", - "coordinates": [ - -73.4871356127573, - 45.5006322423787 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1561435205655 - }, - "name": "boul. Taschereau et Mance", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.487135613, - 45.500632242 - ] - }, - "is_frozen": false, - "integer_id": 1384, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466856, - 45.484578 - ] - }, - "id": 1385, - "properties": { - "id": "159a0fe9-bedb-40f2-9806-32ab49594978", - "code": "33940", - "data": { - "stops": [ - { - "id": "3940", - "code": "33940", - "data": { - "gtfs": { - "stop_id": "3940", - "stop_code": "33940", - "stop_name": "boul. Taschereau et Lawrence", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Lawrence", - "geography": { - "type": "Point", - "coordinates": [ - -73.466711390089, - 45.4847741977341 - ] - } - }, - { - "id": "4162", - "code": "34162", - "data": { - "gtfs": { - "stop_id": "4162", - "stop_code": "34162", - "stop_name": "Lawrence et boul. Taschereau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lawrence et boul. Taschereau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4670002339235, - 45.4843819883026 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8850477668879 - }, - "name": "boul. Taschereau et Lawrence", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466855812, - 45.484578093 - ] - }, - "is_frozen": false, - "integer_id": 1385, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.413168, - 45.496796 - ] - }, - "id": 1386, - "properties": { - "id": "5dd96d41-c4eb-4453-9e97-752999b1688d", - "code": "33943", - "data": { - "stops": [ - { - "id": "3943", - "code": "33943", - "data": { - "gtfs": { - "stop_id": "3943", - "stop_code": "33943", - "stop_name": "boul. Cousineau et Avon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Avon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4131684885907, - 45.4967957322226 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0913380782206 - }, - "name": "boul. Cousineau et Avon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.413168489, - 45.496795732 - ] - }, - "is_frozen": false, - "integer_id": 1386, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.429397, - 45.504395 - ] - }, - "id": 1387, - "properties": { - "id": "1b175835-d1cc-4713-943f-5472ffaa8fea", - "code": "33947", - "data": { - "stops": [ - { - "id": "3947", - "code": "33947", - "data": { - "gtfs": { - "stop_id": "3947", - "stop_code": "33947", - "stop_name": "boul. Cousineau et boul. Gareau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et boul. Gareau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4293970003726, - 45.5043951096555 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2197177417318 - }, - "name": "boul. Cousineau et boul. Gareau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.429397, - 45.50439511 - ] - }, - "is_frozen": false, - "integer_id": 1387, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.42984, - 45.505864 - ] - }, - "id": 1388, - "properties": { - "id": "b4fcda7a-779e-4762-b2e5-038988d405be", - "code": "33948", - "data": { - "stops": [ - { - "id": "3948", - "code": "33948", - "data": { - "gtfs": { - "stop_id": "3948", - "stop_code": "33948", - "stop_name": "boul. Cousineau et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4298396206986, - 45.5058641956186 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.244541591158 - }, - "name": "boul. Cousineau et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.429839621, - 45.505864196 - ] - }, - "is_frozen": false, - "integer_id": 1388, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.507496, - 45.520782 - ] - }, - "id": 1389, - "properties": { - "id": "f2f03e2f-1218-4d2b-9cec-8ed6bd28593f", - "code": "33949", - "data": { - "stops": [ - { - "id": "3949", - "code": "33949", - "data": { - "gtfs": { - "stop_id": "3949", - "stop_code": "33949", - "stop_name": "Sainte-Hélène et boul. Desaulniers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sainte-Hélène et boul. Desaulniers", - "geography": { - "type": "Point", - "coordinates": [ - -73.5074956939848, - 45.5207822027672 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4967271305454 - }, - "name": "Sainte-Hélène et boul. Desaulniers", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507495694, - 45.520782203 - ] - }, - "is_frozen": false, - "integer_id": 1389, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.436153, - 45.574433 - ] - }, - "id": 1390, - "properties": { - "id": "8a45829f-032b-46f2-a537-7925e71ca5d2", - "code": "33951", - "data": { - "stops": [ - { - "id": "3951", - "code": "33951", - "data": { - "gtfs": { - "stop_id": "3951", - "stop_code": "33951", - "stop_name": "de Normandie et de Rouen", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Normandie et de Rouen", - "geography": { - "type": "Point", - "coordinates": [ - -73.4361526293766, - 45.5744331320425 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4053242295823 - }, - "name": "de Normandie et de Rouen", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.436152629, - 45.574433132 - ] - }, - "is_frozen": false, - "integer_id": 1390, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.429027, - 45.558284 - ] - }, - "id": 1391, - "properties": { - "id": "3babd96f-413d-4615-8f50-ca3cd1b6b052", - "code": "33953", - "data": { - "stops": [ - { - "id": "3953", - "code": "33953", - "data": { - "gtfs": { - "stop_id": "3953", - "stop_code": "33953", - "stop_name": "ch. Du Tremblay et De Coulomb", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et De Coulomb", - "geography": { - "type": "Point", - "coordinates": [ - -73.42909114073, - 45.5580881665447 - ] - } - }, - { - "id": "3954", - "code": "33954", - "data": { - "gtfs": { - "stop_id": "3954", - "stop_code": "33954", - "stop_name": "ch. Du Tremblay et De Coulomb", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et De Coulomb", - "geography": { - "type": "Point", - "coordinates": [ - -73.4289221290267, - 45.5584794894297 - ] - } - }, - { - "id": "5265", - "code": "35265", - "data": { - "gtfs": { - "stop_id": "5265", - "stop_code": "35265", - "stop_name": "De Coulomb et ch. Du Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Coulomb et ch. Du Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4292563439533, - 45.5583077286612 - ] - } - }, - { - "id": "5277", - "code": "35277", - "data": { - "gtfs": { - "stop_id": "5277", - "stop_code": "35277", - "stop_name": "De Coulomb et ch. Du Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Coulomb et ch. Du Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4287970956223, - 45.5582753462466 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1315598262472 - }, - "name": "ch. Du Tremblay et De Coulomb", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.42902672, - 45.558283828 - ] - }, - "is_frozen": false, - "integer_id": 1391, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.517091, - 45.528342 - ] - }, - "id": 1392, - "properties": { - "id": "b19be6c8-c333-401a-98e4-d16876257831", - "code": "33958", - "data": { - "stops": [ - { - "id": "3958", - "code": "33958", - "data": { - "gtfs": { - "stop_id": "3958", - "stop_code": "33958", - "stop_name": "Saint-Charles ouest et PLACE LONGUEUIL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Charles ouest et PLACE LONGUEUIL", - "geography": { - "type": "Point", - "coordinates": [ - -73.5170909884666, - 45.5283421886531 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6246026791938 - }, - "name": "Saint-Charles ouest et PLACE LONGUEUIL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.517090988, - 45.528342189 - ] - }, - "is_frozen": false, - "integer_id": 1392, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.514762, - 45.53016 - ] - }, - "id": 1393, - "properties": { - "id": "1f0868f3-8164-4687-b1c9-c08ae88ce2f3", - "code": "33959", - "data": { - "stops": [ - { - "id": "3959", - "code": "33959", - "data": { - "gtfs": { - "stop_id": "3959", - "stop_code": "33959", - "stop_name": "Joliette et PLACE LONGUEUIL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et PLACE LONGUEUIL", - "geography": { - "type": "Point", - "coordinates": [ - -73.5148557076831, - 45.5302591877062 - ] - } - }, - { - "id": "3960", - "code": "33960", - "data": { - "gtfs": { - "stop_id": "3960", - "stop_code": "33960", - "stop_name": "Joliette et PLACE LONGUEUIL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joliette et PLACE LONGUEUIL", - "geography": { - "type": "Point", - "coordinates": [ - -73.5146682691789, - 45.530061327492 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6553581612236 - }, - "name": "Joliette et PLACE LONGUEUIL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.514762, - 45.53016 - ] - }, - "is_frozen": false, - "integer_id": 1393, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479207, - 45.490133 - ] - }, - "id": 1394, - "properties": { - "id": "9634129b-ba93-4b36-b5bc-daa9bfb8bc5b", - "code": "33967", - "data": { - "stops": [ - { - "id": "3967", - "code": "33967", - "data": { - "gtfs": { - "stop_id": "3967", - "stop_code": "33967", - "stop_name": "de Verchères et Maple", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Verchères et Maple", - "geography": { - "type": "Point", - "coordinates": [ - -73.4794115234883, - 45.4901630083027 - ] - } - }, - { - "id": "3989", - "code": "33989", - "data": { - "gtfs": { - "stop_id": "3989", - "stop_code": "33989", - "stop_name": "de Verchères et Maple", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Verchères et Maple", - "geography": { - "type": "Point", - "coordinates": [ - -73.4790028646141, - 45.4901028593595 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.978822744861 - }, - "name": "de Verchères et Maple", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479207194, - 45.490132934 - ] - }, - "is_frozen": false, - "integer_id": 1394, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464744, - 45.469943 - ] - }, - "id": 1395, - "properties": { - "id": "977065eb-9054-495e-befc-5f3b6e0e6046", - "code": "33968", - "data": { - "stops": [ - { - "id": "3968", - "code": "33968", - "data": { - "gtfs": { - "stop_id": "3968", - "stop_code": "33968", - "stop_name": "boul. Lapinière et Alain", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et Alain", - "geography": { - "type": "Point", - "coordinates": [ - -73.4647441529114, - 45.4699427830552 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6381106366201 - }, - "name": "boul. Lapinière et Alain", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464744153, - 45.469942783 - ] - }, - "is_frozen": false, - "integer_id": 1395, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455944, - 45.616814 - ] - }, - "id": 1396, - "properties": { - "id": "87a4aeb0-4393-4c52-8a3e-eb2791a730b4", - "code": "33970", - "data": { - "stops": [ - { - "id": "3970", - "code": "33970", - "data": { - "gtfs": { - "stop_id": "3970", - "stop_code": "33970", - "stop_name": "boul. Marie-Victorin et Sainte-Catherine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Sainte-Catherine", - "geography": { - "type": "Point", - "coordinates": [ - -73.4560842027268, - 45.6166311547953 - ] - } - }, - { - "id": "4167", - "code": "34167", - "data": { - "gtfs": { - "stop_id": "4167", - "stop_code": "34167", - "stop_name": "boul. Marie-Victorin et De Muy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et De Muy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4558042271886, - 45.616997403389 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.124882692107 - }, - "name": "boul. Marie-Victorin et Sainte-Catherine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455944215, - 45.616814279 - ] - }, - "is_frozen": false, - "integer_id": 1396, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.428795, - 45.517717 - ] - }, - "id": 1397, - "properties": { - "id": "feb4de14-0e62-4e9e-a6c1-ea3c1270d98e", - "code": "33971", - "data": { - "stops": [ - { - "id": "3971", - "code": "33971", - "data": { - "gtfs": { - "stop_id": "3971", - "stop_code": "33971", - "stop_name": "ch. de la Savane et Leckie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et Leckie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4290103802336, - 45.5176899206319 - ] - } - }, - { - "id": "4395", - "code": "34395", - "data": { - "gtfs": { - "stop_id": "4395", - "stop_code": "34395", - "stop_name": "ch. de la Savane et Leckie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et Leckie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4285804846486, - 45.5177437879817 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.44489191824 - }, - "name": "ch. de la Savane et Leckie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.428795432, - 45.517716854 - ] - }, - "is_frozen": false, - "integer_id": 1397, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.484875, - 45.530861 - ] - }, - "id": 1398, - "properties": { - "id": "65175945-c54c-4732-85a9-890393a0975c", - "code": "33986", - "data": { - "stops": [ - { - "id": "3986", - "code": "33986", - "data": { - "gtfs": { - "stop_id": "3986", - "stop_code": "33986", - "stop_name": "ch. de Chambly et ch. du Coteau-Rouge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et ch. du Coteau-Rouge", - "geography": { - "type": "Point", - "coordinates": [ - -73.4848748935735, - 45.5308609590591 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6672191432733 - }, - "name": "ch. de Chambly et ch. du Coteau-Rouge", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.484875, - 45.530861 - ] - }, - "is_frozen": false, - "integer_id": 1398, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.473024, - 45.468462 - ] - }, - "id": 1399, - "properties": { - "id": "a1799b5f-9add-43c2-89ac-80ade94b6634", - "code": "34009", - "data": { - "stops": [ - { - "id": "4009", - "code": "34009", - "data": { - "gtfs": { - "stop_id": "4009", - "stop_code": "34009", - "stop_name": "av. Panama et LOBLAW'S (ancien)", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et LOBLAW'S (ancien)", - "geography": { - "type": "Point", - "coordinates": [ - -73.4732288986819, - 45.4682488724684 - ] - } - }, - { - "id": "4010", - "code": "34010", - "data": { - "gtfs": { - "stop_id": "4010", - "stop_code": "34010", - "stop_name": "av. Panama et civique 1650", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et civique 1650", - "geography": { - "type": "Point", - "coordinates": [ - -73.4724335786909, - 45.4682981749736 - ] - } - }, - { - "id": "4271", - "code": "34271", - "data": { - "gtfs": { - "stop_id": "4271", - "stop_code": "34271", - "stop_name": "av. Panama et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Panama et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4736151557681, - 45.4686751557852 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 988.6376621383557 - }, - "name": "av. Panama et LOBLAW'S (ancien)", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.473024367, - 45.468462014 - ] - }, - "is_frozen": false, - "integer_id": 1399, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 52, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467166, - 45.472538 - ] - }, - "id": 1400, - "properties": { - "id": "47d29e21-b442-4f1e-bc41-0d7871af14e8", - "code": "34012", - "data": { - "stops": [ - { - "id": "4012", - "code": "34012", - "data": { - "gtfs": { - "stop_id": "4012", - "stop_code": "34012", - "stop_name": "boul. Taschereau et boul. Lapinière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et boul. Lapinière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4671660377524, - 45.4725379207098 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6818837307814 - }, - "name": "boul. Taschereau et boul. Lapinière", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.467166038, - 45.472537921 - ] - }, - "is_frozen": false, - "integer_id": 1400, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494613, - 45.558458 - ] - }, - "id": 1401, - "properties": { - "id": "261a087b-9323-4696-9046-146a299af43d", - "code": "34021", - "data": { - "stops": [ - { - "id": "4021", - "code": "34021", - "data": { - "gtfs": { - "stop_id": "4021", - "stop_code": "34021", - "stop_name": "boul. Marie-Victorin et ch. Écocentre Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et ch. Écocentre Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4947882048005, - 45.5584284704126 - ] - } - }, - { - "id": "4023", - "code": "34023", - "data": { - "gtfs": { - "stop_id": "4023", - "stop_code": "34023", - "stop_name": "boul. Marie-Victorin et ch. Écocentre Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et ch. Écocentre Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4944374454966, - 45.5584881920681 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1345167708971 - }, - "name": "boul. Marie-Victorin et ch. Écocentre Marie-Victorin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494612825, - 45.558458331 - ] - }, - "is_frozen": false, - "integer_id": 1401, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469441, - 45.559132 - ] - }, - "id": 1402, - "properties": { - "id": "b070e296-b686-4ba3-bf68-049018a7af21", - "code": "34026", - "data": { - "stops": [ - { - "id": "4026", - "code": "34026", - "data": { - "gtfs": { - "stop_id": "4026", - "stop_code": "34026", - "stop_name": "boul. Fernand-Lafontaine et Gendron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et Gendron", - "geography": { - "type": "Point", - "coordinates": [ - -73.4694410614399, - 45.5591318975971 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1459305852957 - }, - "name": "boul. Fernand-Lafontaine et Gendron", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469441061, - 45.559131898 - ] - }, - "is_frozen": false, - "integer_id": 1402, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491564, - 45.438511 - ] - }, - "id": 1403, - "properties": { - "id": "70846d21-918c-4542-969d-4e5cccbc6e50", - "code": "34029", - "data": { - "stops": [ - { - "id": "4029", - "code": "34029", - "data": { - "gtfs": { - "stop_id": "4029", - "stop_code": "34029", - "stop_name": "boul. Marie-Victorin et ch. des Prairies", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et ch. des Prairies", - "geography": { - "type": "Point", - "coordinates": [ - -73.4915643939003, - 45.4385108750215 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1084123354423 - }, - "name": "boul. Marie-Victorin et ch. des Prairies", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491564394, - 45.438510875 - ] - }, - "is_frozen": false, - "integer_id": 1403, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.473371, - 45.473995 - ] - }, - "id": 1404, - "properties": { - "id": "82735dcc-3897-4e4c-87e8-45ee1dacedaa", - "code": "34030", - "data": { - "stops": [ - { - "id": "4030", - "code": "34030", - "data": { - "gtfs": { - "stop_id": "4030", - "stop_code": "34030", - "stop_name": "boul. Provencher et PLACE DU COMMERCE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Provencher et PLACE DU COMMERCE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4733278276202, - 45.4741852355734 - ] - } - }, - { - "id": "4690", - "code": "34690", - "data": { - "gtfs": { - "stop_id": "4690", - "stop_code": "34690", - "stop_name": "boul. Provencher et PLACE DU COMMERCE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Provencher et PLACE DU COMMERCE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4734137894272, - 45.4738042637287 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7064591931024 - }, - "name": "boul. Provencher et PLACE DU COMMERCE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.473370809, - 45.47399475 - ] - }, - "is_frozen": false, - "integer_id": 1404, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.444131, - 45.5224 - ] - }, - "id": 1405, - "properties": { - "id": "59ce5dad-a6de-46b9-a19c-e11dc5bfb727", - "code": "34033", - "data": { - "stops": [ - { - "id": "4033", - "code": "34033", - "data": { - "gtfs": { - "stop_id": "4033", - "stop_code": "34033", - "stop_name": "boul. Roberval est et Marcille", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et Marcille", - "geography": { - "type": "Point", - "coordinates": [ - -73.4442002415184, - 45.5226079737451 - ] - } - }, - { - "id": "4172", - "code": "34172", - "data": { - "gtfs": { - "stop_id": "4172", - "stop_code": "34172", - "stop_name": "boul. Roberval est et Marcille", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et Marcille", - "geography": { - "type": "Point", - "coordinates": [ - -73.4440608903119, - 45.5221929749829 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5240955544738 - }, - "name": "boul. Roberval est et Marcille", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.444130566, - 45.522400474 - ] - }, - "is_frozen": false, - "integer_id": 1405, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454578, - 45.545279 - ] - }, - "id": 1406, - "properties": { - "id": "86d2a168-d8d6-4528-80ff-833432ddaf2d", - "code": "34048", - "data": { - "stops": [ - { - "id": "4048", - "code": "34048", - "data": { - "gtfs": { - "stop_id": "4048", - "stop_code": "34048", - "stop_name": "boul. Jacques-Cartier est et boul. Jean-Paul-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et boul. Jean-Paul-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4545783459419, - 45.5452790986024 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9112718600834 - }, - "name": "boul. Jacques-Cartier est et boul. Jean-Paul-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454578346, - 45.545279099 - ] - }, - "is_frozen": false, - "integer_id": 1406, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44424, - 45.461616 - ] - }, - "id": 1407, - "properties": { - "id": "a77f6afe-a859-4856-8bf5-ab032add56af", - "code": "34051", - "data": { - "stops": [ - { - "id": "4051", - "code": "34051", - "data": { - "gtfs": { - "stop_id": "4051", - "stop_code": "34051", - "stop_name": "av. Balzac et Beaumont", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Balzac et Beaumont", - "geography": { - "type": "Point", - "coordinates": [ - -73.4442395074026, - 45.4616155107327 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.497692028271 - }, - "name": "av. Balzac et Beaumont", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.444239507, - 45.461615511 - ] - }, - "is_frozen": false, - "integer_id": 1407, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483374, - 45.550568 - ] - }, - "id": 1408, - "properties": { - "id": "221d32b3-ef8a-416e-a402-91b2f0007208", - "code": "34064", - "data": { - "stops": [ - { - "id": "4064", - "code": "34064", - "data": { - "gtfs": { - "stop_id": "4064", - "stop_code": "34064", - "stop_name": "Adoncour et boul. Fernand-Lafontaine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et boul. Fernand-Lafontaine", - "geography": { - "type": "Point", - "coordinates": [ - -73.48337447908, - 45.5505683475779 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0008485828992 - }, - "name": "Adoncour et boul. Fernand-Lafontaine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483374479, - 45.550568348 - ] - }, - "is_frozen": false, - "integer_id": 1408, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.484125, - 45.550847 - ] - }, - "id": 1409, - "properties": { - "id": "cd788179-2c9b-4e1e-9ba3-10b35bfde3fa", - "code": "34065", - "data": { - "stops": [ - { - "id": "4065", - "code": "34065", - "data": { - "gtfs": { - "stop_id": "4065", - "stop_code": "34065", - "stop_name": "boul. Fernand-Lafontaine et Adoncour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et Adoncour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4841252304993, - 45.5508474033739 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0055752464583 - }, - "name": "boul. Fernand-Lafontaine et Adoncour", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48412523, - 45.550847403 - ] - }, - "is_frozen": false, - "integer_id": 1409, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482002, - 45.549054 - ] - }, - "id": 1410, - "properties": { - "id": "06cdca3a-f2d1-4f41-837c-693f8619463c", - "code": "34066", - "data": { - "stops": [ - { - "id": "4066", - "code": "34066", - "data": { - "gtfs": { - "stop_id": "4066", - "stop_code": "34066", - "stop_name": "Adoncour et des Perdrix", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et des Perdrix", - "geography": { - "type": "Point", - "coordinates": [ - -73.4822211949517, - 45.5491150581586 - ] - } - }, - { - "id": "4125", - "code": "34125", - "data": { - "gtfs": { - "stop_id": "4125", - "stop_code": "34125", - "stop_name": "Adoncour et des Perdrix", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et des Perdrix", - "geography": { - "type": "Point", - "coordinates": [ - -73.48178197621, - 45.548992060596 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9751921369914 - }, - "name": "Adoncour et des Perdrix", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482001586, - 45.549053559 - ] - }, - "is_frozen": false, - "integer_id": 1410, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478209, - 45.545853 - ] - }, - "id": 1411, - "properties": { - "id": "0e8b7968-4242-43b0-a1a6-300cb3c93219", - "code": "34067", - "data": { - "stops": [ - { - "id": "4067", - "code": "34067", - "data": { - "gtfs": { - "stop_id": "4067", - "stop_code": "34067", - "stop_name": "Adoncour et des Mouettes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et des Mouettes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4784102125825, - 45.5459290621556 - ] - } - }, - { - "id": "4124", - "code": "34124", - "data": { - "gtfs": { - "stop_id": "4124", - "stop_code": "34124", - "stop_name": "Adoncour et des Mouettes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et des Mouettes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4780080071927, - 45.5457774935003 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9209947305443 - }, - "name": "Adoncour et des Mouettes", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47820911, - 45.545853278 - ] - }, - "is_frozen": false, - "integer_id": 1411, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.511864, - 45.516909 - ] - }, - "id": 1412, - "properties": { - "id": "cf1d69f9-ecab-4e24-a9c8-1115c43b2e24", - "code": "34072", - "data": { - "stops": [ - { - "id": "4072", - "code": "34072", - "data": { - "gtfs": { - "stop_id": "4072", - "stop_code": "34072", - "stop_name": "boul. Taschereau et civique 799", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et civique 799", - "geography": { - "type": "Point", - "coordinates": [ - -73.5118638658643, - 45.5169087624241 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4312284343888 - }, - "name": "boul. Taschereau et civique 799", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.511863866, - 45.516908762 - ] - }, - "is_frozen": false, - "integer_id": 1412, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46473, - 45.479216 - ] - }, - "id": 1413, - "properties": { - "id": "bf51d692-a22e-42e9-a495-2d1955e0c462", - "code": "34075", - "data": { - "stops": [ - { - "id": "4075", - "code": "34075", - "data": { - "gtfs": { - "stop_id": "4075", - "stop_code": "34075", - "stop_name": "Angèle et civique 6185", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Angèle et civique 6185", - "geography": { - "type": "Point", - "coordinates": [ - -73.4644822701663, - 45.4790621303741 - ] - } - }, - { - "id": "4332", - "code": "34332", - "data": { - "gtfs": { - "stop_id": "4332", - "stop_code": "34332", - "stop_name": "boul. Taschereau et Angèle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Angèle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4649783573863, - 45.4793696532167 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7945508913286 - }, - "name": "Angèle et civique 6185", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464730314, - 45.479215892 - ] - }, - "is_frozen": false, - "integer_id": 1413, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.404629, - 45.565824 - ] - }, - "id": 1414, - "properties": { - "id": "0681e3d4-c5fd-4f85-982e-d5d26960784a", - "code": "34080", - "data": { - "stops": [ - { - "id": "4080", - "code": "34080", - "data": { - "gtfs": { - "stop_id": "4080", - "stop_code": "34080", - "stop_name": "boul. De Montarville et J.-A.-Bombardier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et J.-A.-Bombardier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4045096736474, - 45.5658824210294 - ] - } - }, - { - "id": "5271", - "code": "35271", - "data": { - "gtfs": { - "stop_id": "5271", - "stop_code": "35271", - "stop_name": "J.-A.-Bombardier et boul. De Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et boul. De Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.404748669657, - 45.5657664305051 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2593596934917 - }, - "name": "boul. De Montarville et J.-A.-Bombardier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.404629172, - 45.565824426 - ] - }, - "is_frozen": false, - "integer_id": 1414, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.405656, - 45.566819 - ] - }, - "id": 1415, - "properties": { - "id": "2260ef06-cda3-48e1-919a-84c2b44c938b", - "code": "34081", - "data": { - "stops": [ - { - "id": "4081", - "code": "34081", - "data": { - "gtfs": { - "stop_id": "4081", - "stop_code": "34081", - "stop_name": "boul. De Montarville et Dépanneur Couche-Tard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et Dépanneur Couche-Tard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4056562149985, - 45.5668189255739 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2762185104912 - }, - "name": "boul. De Montarville et Dépanneur Couche-Tard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.405656215, - 45.566818926 - ] - }, - "is_frozen": false, - "integer_id": 1415, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.398537, - 45.569213 - ] - }, - "id": 1416, - "properties": { - "id": "a93c22b5-170a-45a8-a2c1-143c975239a9", - "code": "34083", - "data": { - "stops": [ - { - "id": "4083", - "code": "34083", - "data": { - "gtfs": { - "stop_id": "4083", - "stop_code": "34083", - "stop_name": "Louis-Pasteur et Eiffel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Louis-Pasteur et Eiffel", - "geography": { - "type": "Point", - "coordinates": [ - -73.3985128457128, - 45.5691030256837 - ] - } - }, - { - "id": "4917", - "code": "34917", - "data": { - "gtfs": { - "stop_id": "4917", - "stop_code": "34917", - "stop_name": "Louis-Pasteur et Eiffel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Louis-Pasteur et Eiffel", - "geography": { - "type": "Point", - "coordinates": [ - -73.39856179382, - 45.5693234930476 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3168109967912 - }, - "name": "Louis-Pasteur et Eiffel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.39853732, - 45.569213259 - ] - }, - "is_frozen": false, - "integer_id": 1416, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.408531, - 45.567966 - ] - }, - "id": 1417, - "properties": { - "id": "0be77fd1-e022-43e1-8779-3871b7711e4b", - "code": "34087", - "data": { - "stops": [ - { - "id": "4087", - "code": "34087", - "data": { - "gtfs": { - "stop_id": "4087", - "stop_code": "34087", - "stop_name": "boul. De Montarville et civique 1550", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et civique 1550", - "geography": { - "type": "Point", - "coordinates": [ - -73.4085309472523, - 45.5679662864626 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2956697164379 - }, - "name": "boul. De Montarville et civique 1550", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.408530947, - 45.567966286 - ] - }, - "is_frozen": false, - "integer_id": 1417, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439879, - 45.462217 - ] - }, - "id": 1418, - "properties": { - "id": "af14ce12-74fa-4edf-a439-c058d0014323", - "code": "34089", - "data": { - "stops": [ - { - "id": "4089", - "code": "34089", - "data": { - "gtfs": { - "stop_id": "4089", - "stop_code": "34089", - "stop_name": "av. Boniface et Beethoven", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Boniface et Beethoven", - "geography": { - "type": "Point", - "coordinates": [ - -73.4399064944011, - 45.4621397253651 - ] - } - }, - { - "id": "5082", - "code": "35082", - "data": { - "gtfs": { - "stop_id": "5082", - "stop_code": "35082", - "stop_name": "av. Boniface et Beethoven", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Boniface et Beethoven", - "geography": { - "type": "Point", - "coordinates": [ - -73.4398510508336, - 45.4622952333687 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5078406483374 - }, - "name": "av. Boniface et Beethoven", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439878773, - 45.462217479 - ] - }, - "is_frozen": false, - "integer_id": 1418, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454481, - 45.545787 - ] - }, - "id": 1419, - "properties": { - "id": "19d70945-d3db-430f-90e2-ad67901fda8d", - "code": "34094", - "data": { - "stops": [ - { - "id": "4094", - "code": "34094", - "data": { - "gtfs": { - "stop_id": "4094", - "stop_code": "34094", - "stop_name": "boul. Jacques-Cartier est et boul. Jean-Paul-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et boul. Jean-Paul-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4544809898778, - 45.5457868590752 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9198700081603 - }, - "name": "boul. Jacques-Cartier est et boul. Jean-Paul-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45448099, - 45.545786859 - ] - }, - "is_frozen": false, - "integer_id": 1419, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.421263, - 45.471827 - ] - }, - "id": 1420, - "properties": { - "id": "34963af0-6d55-47fa-9de8-fb99aa68c762", - "code": "34095", - "data": { - "stops": [ - { - "id": "4095", - "code": "34095", - "data": { - "gtfs": { - "stop_id": "4095", - "stop_code": "34095", - "stop_name": "boul. Payer et Ramsay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Ramsay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4215516636185, - 45.4718175997572 - ] - } - }, - { - "id": "4096", - "code": "34096", - "data": { - "gtfs": { - "stop_id": "4096", - "stop_code": "34096", - "stop_name": "boul. Payer et allée des Sorbiers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et allée des Sorbiers", - "geography": { - "type": "Point", - "coordinates": [ - -73.4209746193204, - 45.4718354140279 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6698834686024 - }, - "name": "boul. Payer et Ramsay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.421263141, - 45.471826507 - ] - }, - "is_frozen": false, - "integer_id": 1420, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.416805, - 45.469383 - ] - }, - "id": 1421, - "properties": { - "id": "b184f86a-a7af-4949-9957-882509c0c182", - "code": "34097", - "data": { - "stops": [ - { - "id": "4097", - "code": "34097", - "data": { - "gtfs": { - "stop_id": "4097", - "stop_code": "34097", - "stop_name": "boul. Payer et Cornwall", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Cornwall", - "geography": { - "type": "Point", - "coordinates": [ - -73.4170637024107, - 45.4693429028085 - ] - } - }, - { - "id": "4098", - "code": "34098", - "data": { - "gtfs": { - "stop_id": "4098", - "stop_code": "34098", - "stop_name": "boul. Payer et Cornwall", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Cornwall", - "geography": { - "type": "Point", - "coordinates": [ - -73.416546558284, - 45.4694223562092 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6286631262132 - }, - "name": "boul. Payer et Cornwall", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.41680513, - 45.46938263 - ] - }, - "is_frozen": false, - "integer_id": 1421, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452841, - 45.538358 - ] - }, - "id": 1422, - "properties": { - "id": "74325106-fd46-4be2-9872-2d362cabf10d", - "code": "34102", - "data": { - "stops": [ - { - "id": "4102", - "code": "34102", - "data": { - "gtfs": { - "stop_id": "4102", - "stop_code": "34102", - "stop_name": "Beauharnois et Berthon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauharnois et Berthon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4528411972646, - 45.538358040654 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7940971432059 - }, - "name": "Beauharnois et Berthon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452841197, - 45.538358041 - ] - }, - "is_frozen": false, - "integer_id": 1422, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450148, - 45.541742 - ] - }, - "id": 1423, - "properties": { - "id": "ed2d86bc-14d2-40cc-9b3c-fcf430af3d76", - "code": "34103", - "data": { - "stops": [ - { - "id": "4103", - "code": "34103", - "data": { - "gtfs": { - "stop_id": "4103", - "stop_code": "34103", - "stop_name": "Beauharnois et Boucault", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauharnois et Boucault", - "geography": { - "type": "Point", - "coordinates": [ - -73.4506382458982, - 45.5417494961293 - ] - } - }, - { - "id": "5827", - "code": "30596", - "data": { - "gtfs": { - "stop_id": "5827", - "stop_code": "30596", - "stop_name": "Beauharnois et Brunet", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauharnois et Brunet", - "geography": { - "type": "Point", - "coordinates": [ - -73.4496573106131, - 45.5417345590758 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8513832926596 - }, - "name": "Beauharnois et Boucault", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450147778, - 45.541742028 - ] - }, - "is_frozen": false, - "integer_id": 1423, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448812, - 45.543215 - ] - }, - "id": 1424, - "properties": { - "id": "8990dfff-c24e-4da1-938f-d3124a8df164", - "code": "34104", - "data": { - "stops": [ - { - "id": "4104", - "code": "34104", - "data": { - "gtfs": { - "stop_id": "4104", - "stop_code": "34104", - "stop_name": "Boucault et Robin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Boucault et Robin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4488117562721, - 45.5432154262548 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8763290449994 - }, - "name": "Boucault et Robin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448811756, - 45.543215426 - ] - }, - "is_frozen": false, - "integer_id": 1424, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456023, - 45.542936 - ] - }, - "id": 1425, - "properties": { - "id": "f8690123-add8-4e85-bbf6-f84c4b712589", - "code": "34106", - "data": { - "stops": [ - { - "id": "4106", - "code": "34106", - "data": { - "gtfs": { - "stop_id": "4106", - "stop_code": "34106", - "stop_name": "boul. Jacques-Cartier est et ch. Du Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et ch. Du Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4560229336692, - 45.5429359235317 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8715967140085 - }, - "name": "boul. Jacques-Cartier est et ch. Du Tremblay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456022934, - 45.542935924 - ] - }, - "is_frozen": false, - "integer_id": 1425, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.41684, - 45.457729 - ] - }, - "id": 1426, - "properties": { - "id": "cdda3c7c-b577-49de-afc0-aa4c4e60c34b", - "code": "34107", - "data": { - "stops": [ - { - "id": "4107", - "code": "34107", - "data": { - "gtfs": { - "stop_id": "4107", - "stop_code": "34107", - "stop_name": "J.-A.-Bombardier et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4167564475196, - 45.4576889407744 - ] - } - }, - { - "id": "4108", - "code": "34108", - "data": { - "gtfs": { - "stop_id": "4108", - "stop_code": "34108", - "stop_name": "J.-A.-Bombardier et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4169234826074, - 45.4577698590301 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4321835543401 - }, - "name": "J.-A.-Bombardier et Grande Allée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.416839965, - 45.4577294 - ] - }, - "is_frozen": false, - "integer_id": 1426, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.414486, - 45.458319 - ] - }, - "id": 1427, - "properties": { - "id": "dc623539-3b98-4807-a5d5-f66507b8bc4c", - "code": "34109", - "data": { - "stops": [ - { - "id": "4109", - "code": "34109", - "data": { - "gtfs": { - "stop_id": "4109", - "stop_code": "34109", - "stop_name": "J.-A.-Bombardier et Armand-Frappier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et Armand-Frappier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4147328204277, - 45.4583138743186 - ] - } - }, - { - "id": "4110", - "code": "34110", - "data": { - "gtfs": { - "stop_id": "4110", - "stop_code": "34110", - "stop_name": "Armand-Frappier et J.-A.-Bombardier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Armand-Frappier et J.-A.-Bombardier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4142390720385, - 45.458324183205 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4421221135709 - }, - "name": "J.-A.-Bombardier et Armand-Frappier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.414485946, - 45.458319029 - ] - }, - "is_frozen": false, - "integer_id": 1427, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.422187, - 45.460955 - ] - }, - "id": 1428, - "properties": { - "id": "d8582feb-8d83-457a-8a52-dc395b1f7390", - "code": "34111", - "data": { - "stops": [ - { - "id": "4111", - "code": "34111", - "data": { - "gtfs": { - "stop_id": "4111", - "stop_code": "34111", - "stop_name": "Grande Allée et Belmont", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Belmont", - "geography": { - "type": "Point", - "coordinates": [ - -73.4221873276419, - 45.4609547255289 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4865521786436 - }, - "name": "Grande Allée et Belmont", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.422187328, - 45.460954726 - ] - }, - "is_frozen": false, - "integer_id": 1428, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456814, - 45.538357 - ] - }, - "id": 1429, - "properties": { - "id": "c77b3ec3-667e-4b8e-a8ba-613daafce3d4", - "code": "34113", - "data": { - "stops": [ - { - "id": "4113", - "code": "34113", - "data": { - "gtfs": { - "stop_id": "4113", - "stop_code": "34113", - "stop_name": "boul. Jacques-Cartier est et CENTRE HOSPITALIER PIERRE-BOUCHER", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et CENTRE HOSPITALIER PIERRE-BOUCHER", - "geography": { - "type": "Point", - "coordinates": [ - -73.4568141281936, - 45.5383573486054 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7940854296618 - }, - "name": "boul. Jacques-Cartier est et CENTRE HOSPITALIER PIERRE-BOUCHER", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456814128, - 45.538357349 - ] - }, - "is_frozen": false, - "integer_id": 1429, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455457, - 45.537823 - ] - }, - "id": 1430, - "properties": { - "id": "fce7a113-2e0c-4a0f-922a-957670252ea1", - "code": "34118", - "data": { - "stops": [ - { - "id": "4118", - "code": "34118", - "data": { - "gtfs": { - "stop_id": "4118", - "stop_code": "34118", - "stop_name": "boul. Béliveau et boul. Jacques-Cartier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et boul. Jacques-Cartier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4554568832888, - 45.5378234775652 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7850486763464 - }, - "name": "boul. Béliveau et boul. Jacques-Cartier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455456883, - 45.537823478 - ] - }, - "is_frozen": false, - "integer_id": 1430, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.404417, - 45.46153 - ] - }, - "id": 1431, - "properties": { - "id": "28acd503-64ba-4c57-925c-1acd27dd7dde", - "code": "34120", - "data": { - "stops": [ - { - "id": "4120", - "code": "34120", - "data": { - "gtfs": { - "stop_id": "4120", - "stop_code": "34120", - "stop_name": "Armand-Frappier et boul. Payer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Armand-Frappier et boul. Payer", - "geography": { - "type": "Point", - "coordinates": [ - -73.4042525995358, - 45.461588219085 - ] - } - }, - { - "id": "5141", - "code": "35141", - "data": { - "gtfs": { - "stop_id": "5141", - "stop_code": "35141", - "stop_name": "boul. Payer et Armand-Frappier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Payer et Armand-Frappier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4045816629216, - 45.4614725002228 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4962564876499 - }, - "name": "Armand-Frappier et boul. Payer", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.404417131, - 45.46153036 - ] - }, - "is_frozen": false, - "integer_id": 1431, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.408806, - 45.458475 - ] - }, - "id": 1432, - "properties": { - "id": "fcd51ec2-f1b1-4630-8f4f-bbfd7b67c91f", - "code": "34122", - "data": { - "stops": [ - { - "id": "4122", - "code": "34122", - "data": { - "gtfs": { - "stop_id": "4122", - "stop_code": "34122", - "stop_name": "Armand-Frappier et civique 5250", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Armand-Frappier et civique 5250", - "geography": { - "type": "Point", - "coordinates": [ - -73.4088057029642, - 45.4584747380759 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4447467359707 - }, - "name": "Armand-Frappier et civique 5250", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.408805703, - 45.458474738 - ] - }, - "is_frozen": false, - "integer_id": 1432, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452159, - 45.547048 - ] - }, - "id": 1433, - "properties": { - "id": "c7d234f2-22e5-4459-8628-1d01e7ca4dc0", - "code": "34128", - "data": { - "stops": [ - { - "id": "4128", - "code": "34128", - "data": { - "gtfs": { - "stop_id": "4128", - "stop_code": "34128", - "stop_name": "Lebrun et Bédard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lebrun et Bédard", - "geography": { - "type": "Point", - "coordinates": [ - -73.452017860271, - 45.5471131093803 - ] - } - }, - { - "id": "5440", - "code": "30183", - "data": { - "gtfs": { - "stop_id": "5440", - "stop_code": "30183", - "stop_name": "boul. Jacques-Cartier est et Bédard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et Bédard", - "geography": { - "type": "Point", - "coordinates": [ - -73.452300346138, - 45.5469825669874 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9412237766854 - }, - "name": "Lebrun et Bédard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452159103, - 45.547047838 - ] - }, - "is_frozen": false, - "integer_id": 1433, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.419445, - 45.459061 - ] - }, - "id": 1434, - "properties": { - "id": "0b9048bd-dd82-42d8-ba47-b3d93d735fe8", - "code": "34129", - "data": { - "stops": [ - { - "id": "4129", - "code": "34129", - "data": { - "gtfs": { - "stop_id": "4129", - "stop_code": "34129", - "stop_name": "Grande Allée et boul. Moïse-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et boul. Moïse-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4194451442371, - 45.4590607589356 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4546248668056 - }, - "name": "Grande Allée et boul. Moïse-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.419445144, - 45.459060759 - ] - }, - "is_frozen": false, - "integer_id": 1434, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.435306, - 45.510035 - ] - }, - "id": 1435, - "properties": { - "id": "53ead0f5-ebe4-4285-9d12-aa867ff0e782", - "code": "34132", - "data": { - "stops": [ - { - "id": "4132", - "code": "34132", - "data": { - "gtfs": { - "stop_id": "4132", - "stop_code": "34132", - "stop_name": "ch. de Chambly et ch. de la Savane", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et ch. de la Savane", - "geography": { - "type": "Point", - "coordinates": [ - -73.4353058176157, - 45.5100347104287 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3150232312933 - }, - "name": "ch. de Chambly et ch. de la Savane", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.435305818, - 45.51003471 - ] - }, - "is_frozen": false, - "integer_id": 1435, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442652, - 45.573028 - ] - }, - "id": 1436, - "properties": { - "id": "36054208-e9c6-4e5a-99d2-bfca0679b681", - "code": "34137", - "data": { - "stops": [ - { - "id": "4137", - "code": "34137", - "data": { - "gtfs": { - "stop_id": "4137", - "stop_code": "34137", - "stop_name": "Ampère et civique 1205", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ampère et civique 1205", - "geography": { - "type": "Point", - "coordinates": [ - -73.4426522089097, - 45.5730277301363 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3814904730074 - }, - "name": "Ampère et civique 1205", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442652209, - 45.57302773 - ] - }, - "is_frozen": false, - "integer_id": 1436, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442461, - 45.572465 - ] - }, - "id": 1437, - "properties": { - "id": "c75630d1-5494-4596-bc82-707a62fa5988", - "code": "34138", - "data": { - "stops": [ - { - "id": "4138", - "code": "34138", - "data": { - "gtfs": { - "stop_id": "4138", - "stop_code": "34138", - "stop_name": "Ampère et civique 1205", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ampère et civique 1205", - "geography": { - "type": "Point", - "coordinates": [ - -73.4424611248015, - 45.5724650392847 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3719484739282 - }, - "name": "Ampère et civique 1205", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442461125, - 45.572465039 - ] - }, - "is_frozen": false, - "integer_id": 1437, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44341, - 45.573591 - ] - }, - "id": 1438, - "properties": { - "id": "f983c876-3e85-4820-8de6-e993255f2434", - "code": "34139", - "data": { - "stops": [ - { - "id": "4139", - "code": "34139", - "data": { - "gtfs": { - "stop_id": "4139", - "stop_code": "34139", - "stop_name": "Ampère et WELCOMINNS", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ampère et WELCOMINNS", - "geography": { - "type": "Point", - "coordinates": [ - -73.4434100969923, - 45.5735912831889 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3910473734231 - }, - "name": "Ampère et WELCOMINNS", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443410097, - 45.573591283 - ] - }, - "is_frozen": false, - "integer_id": 1438, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486759, - 45.500779 - ] - }, - "id": 1439, - "properties": { - "id": "59a23245-0190-4421-8038-2ea1cbdc6419", - "code": "34165", - "data": { - "stops": [ - { - "id": "4165", - "code": "34165", - "data": { - "gtfs": { - "stop_id": "4165", - "stop_code": "34165", - "stop_name": "Mance et boul. Taschereau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Mance et boul. Taschereau", - "geography": { - "type": "Point", - "coordinates": [ - -73.48675857715, - 45.5007794361713 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1586301485422 - }, - "name": "Mance et boul. Taschereau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486758577, - 45.500779436 - ] - }, - "is_frozen": false, - "integer_id": 1439, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445332, - 45.519791 - ] - }, - "id": 1440, - "properties": { - "id": "71e321c3-bad2-413b-8558-79185b044654", - "code": "34171", - "data": { - "stops": [ - { - "id": "4171", - "code": "34171", - "data": { - "gtfs": { - "stop_id": "4171", - "stop_code": "34171", - "stop_name": "boul. Roberval est et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4453321052113, - 45.5197910171026 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.479965207511 - }, - "name": "boul. Roberval est et Passage piétonnier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445332105, - 45.519791017 - ] - }, - "is_frozen": false, - "integer_id": 1440, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44431, - 45.5255 - ] - }, - "id": 1441, - "properties": { - "id": "37e0037c-1e13-45e4-a410-24f20d2177f9", - "code": "34173", - "data": { - "stops": [ - { - "id": "4173", - "code": "34173", - "data": { - "gtfs": { - "stop_id": "4173", - "stop_code": "34173", - "stop_name": "boul. Roland-Therrien et Moquin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et Moquin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4443100445362, - 45.5255000077698 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5765218193864 - }, - "name": "boul. Roland-Therrien et Moquin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.444310045, - 45.525500008 - ] - }, - "is_frozen": false, - "integer_id": 1441, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464734, - 45.481112 - ] - }, - "id": 1442, - "properties": { - "id": "2acecbbf-b213-4db7-b710-c8999ce71fbf", - "code": "34178", - "data": { - "stops": [ - { - "id": "4178", - "code": "34178", - "data": { - "gtfs": { - "stop_id": "4178", - "stop_code": "34178", - "stop_name": "boul. Taschereau et MAIL CARNAVAL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et MAIL CARNAVAL", - "geography": { - "type": "Point", - "coordinates": [ - -73.4649789481293, - 45.4812096813796 - ] - } - }, - { - "id": "4532", - "code": "34532", - "data": { - "gtfs": { - "stop_id": "4532", - "stop_code": "34532", - "stop_name": "boul. Taschereau et Adam", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Adam", - "geography": { - "type": "Point", - "coordinates": [ - -73.4644895794287, - 45.4810142843043 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8265479484105 - }, - "name": "boul. Taschereau et MAIL CARNAVAL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464734264, - 45.481111983 - ] - }, - "is_frozen": false, - "integer_id": 1442, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443098, - 45.524116 - ] - }, - "id": 1443, - "properties": { - "id": "e4177123-f532-4426-8afb-b9c8199723e1", - "code": "34180", - "data": { - "stops": [ - { - "id": "4180", - "code": "34180", - "data": { - "gtfs": { - "stop_id": "4180", - "stop_code": "34180", - "stop_name": "boul. Roberval est et civique 656", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et civique 656", - "geography": { - "type": "Point", - "coordinates": [ - -73.4430981534212, - 45.5241162949916 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.553116306377 - }, - "name": "boul. Roberval est et civique 656", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443098153, - 45.524116295 - ] - }, - "is_frozen": false, - "integer_id": 1443, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448121, - 45.543026 - ] - }, - "id": 1444, - "properties": { - "id": "b6aea660-191f-4c6f-a40e-a9dfada559a0", - "code": "34184", - "data": { - "stops": [ - { - "id": "4184", - "code": "34184", - "data": { - "gtfs": { - "stop_id": "4184", - "stop_code": "34184", - "stop_name": "Robin et Brunet", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Robin et Brunet", - "geography": { - "type": "Point", - "coordinates": [ - -73.4481212248143, - 45.5430261490368 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8731243325377 - }, - "name": "Robin et Brunet", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448121225, - 45.543026149 - ] - }, - "is_frozen": false, - "integer_id": 1444, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.410612, - 45.473983 - ] - }, - "id": 1445, - "properties": { - "id": "0ff0280b-6f85-4d12-b102-cc4b8609d72a", - "code": "34185", - "data": { - "stops": [ - { - "id": "4185", - "code": "34185", - "data": { - "gtfs": { - "stop_id": "4185", - "stop_code": "34185", - "stop_name": "Cornwall et civique 4190", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Cornwall et civique 4190", - "geography": { - "type": "Point", - "coordinates": [ - -73.4106124948844, - 45.4739828262405 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7062580377435 - }, - "name": "Cornwall et civique 4190", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.410612495, - 45.473982826 - ] - }, - "is_frozen": false, - "integer_id": 1445, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.388373, - 45.482624 - ] - }, - "id": 1446, - "properties": { - "id": "ff83e3ed-db76-4049-b206-f6a7eb53237f", - "code": "34187", - "data": { - "stops": [ - { - "id": "4187", - "code": "34187", - "data": { - "gtfs": { - "stop_id": "4187", - "stop_code": "34187", - "stop_name": "boul. Moïse-Vincent et civique 2995", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Moïse-Vincent et civique 2995", - "geography": { - "type": "Point", - "coordinates": [ - -73.3883734931773, - 45.4826239635863 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8520653333036 - }, - "name": "boul. Moïse-Vincent et civique 2995", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.388373493, - 45.482623964 - ] - }, - "is_frozen": false, - "integer_id": 1446, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.389176, - 45.482083 - ] - }, - "id": 1447, - "properties": { - "id": "6d96a7b5-b2cd-4cb0-a3d1-b914f081bde3", - "code": "34188", - "data": { - "stops": [ - { - "id": "4188", - "code": "34188", - "data": { - "gtfs": { - "stop_id": "4188", - "stop_code": "34188", - "stop_name": "boul. Moïse-Vincent et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Moïse-Vincent et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3891757702035, - 45.4820828951027 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8429335923034 - }, - "name": "boul. Moïse-Vincent et boul. Cousineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.38917577, - 45.482082895 - ] - }, - "is_frozen": false, - "integer_id": 1447, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.471931, - 45.53767 - ] - }, - "id": 1448, - "properties": { - "id": "abdcf999-0861-4881-a478-42fa957c7f17", - "code": "34190", - "data": { - "stops": [ - { - "id": "4190", - "code": "34190", - "data": { - "gtfs": { - "stop_id": "4190", - "stop_code": "34190", - "stop_name": "boul. Roland-Therrien et TIM HORTON", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et TIM HORTON", - "geography": { - "type": "Point", - "coordinates": [ - -73.4719314119809, - 45.5376696933098 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7824456281776 - }, - "name": "boul. Roland-Therrien et TIM HORTON", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.471931412, - 45.537669693 - ] - }, - "is_frozen": false, - "integer_id": 1448, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445258, - 45.597945 - ] - }, - "id": 1449, - "properties": { - "id": "9e857d67-44b9-48aa-aa36-d1284504d820", - "code": "34197", - "data": { - "stops": [ - { - "id": "4197", - "code": "34197", - "data": { - "gtfs": { - "stop_id": "4197", - "stop_code": "34197", - "stop_name": "boul. De Montarville et François-Gravé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et François-Gravé", - "geography": { - "type": "Point", - "coordinates": [ - -73.4452581334295, - 45.5979449383831 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8043153493181 - }, - "name": "boul. De Montarville et François-Gravé", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445258133, - 45.597944938 - ] - }, - "is_frozen": false, - "integer_id": 1449, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.470702, - 45.582768 - ] - }, - "id": 1450, - "properties": { - "id": "49a50701-87e7-4e72-af25-0a8ac3f9cb08", - "code": "34198", - "data": { - "stops": [ - { - "id": "4198", - "code": "34198", - "data": { - "gtfs": { - "stop_id": "4198", - "stop_code": "34198", - "stop_name": "boul. Marie-Victorin et CIMETIERE PRES DU FLEUVE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et CIMETIERE PRES DU FLEUVE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4707020291749, - 45.582767662742 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5467031329422 - }, - "name": "boul. Marie-Victorin et CIMETIERE PRES DU FLEUVE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.470702029, - 45.582767663 - ] - }, - "is_frozen": false, - "integer_id": 1450, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.501589, - 45.512873 - ] - }, - "id": 1451, - "properties": { - "id": "f4f29738-df3f-4d69-8632-9088ded0dc5a", - "code": "34200", - "data": { - "stops": [ - { - "id": "4200", - "code": "34200", - "data": { - "gtfs": { - "stop_id": "4200", - "stop_code": "34200", - "stop_name": "boul. Taschereau et Saint-Paul", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et Saint-Paul", - "geography": { - "type": "Point", - "coordinates": [ - -73.5015890365608, - 45.5128726899416 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.362993916147 - }, - "name": "boul. Taschereau et Saint-Paul", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.501589037, - 45.51287269 - ] - }, - "is_frozen": false, - "integer_id": 1451, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.513564, - 45.522087 - ] - }, - "id": 1452, - "properties": { - "id": "234e805d-82ab-4d93-bec5-6c8c331d4f7b", - "code": "34202", - "data": { - "stops": [ - { - "id": "4202", - "code": "34202", - "data": { - "gtfs": { - "stop_id": "4202", - "stop_code": "34202", - "stop_name": "Saint-Laurent ouest et Sainte-Hélène", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Sainte-Hélène", - "geography": { - "type": "Point", - "coordinates": [ - -73.5135639137731, - 45.5220865969425 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5187870406463 - }, - "name": "Saint-Laurent ouest et Sainte-Hélène", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.513563914, - 45.522086597 - ] - }, - "is_frozen": false, - "integer_id": 1452, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.384915, - 45.488284 - ] - }, - "id": 1453, - "properties": { - "id": "d664171d-6b67-486f-b850-92d7b923ec60", - "code": "34203", - "data": { - "stops": [ - { - "id": "4203", - "code": "34203", - "data": { - "gtfs": { - "stop_id": "4203", - "stop_code": "34203", - "stop_name": "ch. de Chambly et boul. Moïse-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Moïse-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.3852441634478, - 45.4884394016706 - ] - } - }, - { - "id": "4227", - "code": "34227", - "data": { - "gtfs": { - "stop_id": "4227", - "stop_code": "34227", - "stop_name": "boul. Moïse-Vincent et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Moïse-Vincent et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.3848886458237, - 45.4881283426468 - ] - } - }, - { - "id": "4351", - "code": "34351", - "data": { - "gtfs": { - "stop_id": "4351", - "stop_code": "34351", - "stop_name": "ch. de Chambly et boul. Moïse-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Moïse-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.3845867231281, - 45.4883531775131 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9476044491716 - }, - "name": "ch. de Chambly et boul. Moïse-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.384915443, - 45.488283872 - ] - }, - "is_frozen": false, - "integer_id": 1453, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445268, - 45.531722 - ] - }, - "id": 1454, - "properties": { - "id": "51637772-6b85-4c49-a14a-4de104a8f1f5", - "code": "34204", - "data": { - "stops": [ - { - "id": "4204", - "code": "34204", - "data": { - "gtfs": { - "stop_id": "4204", - "stop_code": "34204", - "stop_name": "Belcourt et Bariteau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et Bariteau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4453125341915, - 45.5318514260197 - ] - } - }, - { - "id": "4888", - "code": "34888", - "data": { - "gtfs": { - "stop_id": "4888", - "stop_code": "34888", - "stop_name": "Belcourt et Bariteau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et Bariteau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4452235732434, - 45.531591588325 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6817795968833 - }, - "name": "Belcourt et Bariteau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445268054, - 45.531721507 - ] - }, - "is_frozen": false, - "integer_id": 1454, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.495177, - 45.528047 - ] - }, - "id": 1455, - "properties": { - "id": "b698a0cc-85d5-482c-b2a6-121d92347ec2", - "code": "34208", - "data": { - "stops": [ - { - "id": "4208", - "code": "34208", - "data": { - "gtfs": { - "stop_id": "4208", - "stop_code": "34208", - "stop_name": "Labonté et de Newhaven", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Labonté et de Newhaven", - "geography": { - "type": "Point", - "coordinates": [ - -73.4955084236162, - 45.5279970506293 - ] - } - }, - { - "id": "4209", - "code": "34209", - "data": { - "gtfs": { - "stop_id": "4209", - "stop_code": "34209", - "stop_name": "Leblanc ouest et Labonté", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Leblanc ouest et Labonté", - "geography": { - "type": "Point", - "coordinates": [ - -73.4948455007259, - 45.5280960049377 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6196086646331 - }, - "name": "Labonté et de Newhaven", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.495177, - 45.528047 - ] - }, - "is_frozen": false, - "integer_id": 1455, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.551585, - 45.490871 - ] - }, - "id": 1456, - "properties": { - "id": "f0399757-57fe-401c-85d1-a8835da56bb7", - "code": "34212", - "data": { - "stops": [ - { - "id": "4212", - "code": "34212", - "data": { - "gtfs": { - "stop_id": "4212", - "stop_code": "34212", - "stop_name": "Mill et Riverside", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Mill et Riverside", - "geography": { - "type": "Point", - "coordinates": [ - -73.5515848521515, - 45.4908709802386 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9912842566822 - }, - "name": "Mill et Riverside", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.551584852, - 45.49087098 - ] - }, - "is_frozen": false, - "integer_id": 1456, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459343, - 45.582574 - ] - }, - "id": 1457, - "properties": { - "id": "6841469f-681d-47f3-a552-9c9ea4973966", - "code": "34223", - "data": { - "stops": [ - { - "id": "4223", - "code": "34223", - "data": { - "gtfs": { - "stop_id": "4223", - "stop_code": "34223", - "stop_name": "De La Barre et De Vaudreuil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Barre et De Vaudreuil", - "geography": { - "type": "Point", - "coordinates": [ - -73.4594117829616, - 45.5825125501106 - ] - } - }, - { - "id": "4706", - "code": "34706", - "data": { - "gtfs": { - "stop_id": "4706", - "stop_code": "34706", - "stop_name": "De La Barre et De Vaudreuil", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Barre et De Vaudreuil", - "geography": { - "type": "Point", - "coordinates": [ - -73.4592739740579, - 45.5826358705184 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5434208794884 - }, - "name": "De La Barre et De Vaudreuil", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459342879, - 45.58257421 - ] - }, - "is_frozen": false, - "integer_id": 1457, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.410823, - 45.496039 - ] - }, - "id": 1458, - "properties": { - "id": "df19b328-a961-4b0c-b128-99b5bcce3403", - "code": "34230", - "data": { - "stops": [ - { - "id": "4230", - "code": "34230", - "data": { - "gtfs": { - "stop_id": "4230", - "stop_code": "34230", - "stop_name": "boul. Cousineau et CARREFOUR SAINT-HUBERT", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et CARREFOUR SAINT-HUBERT", - "geography": { - "type": "Point", - "coordinates": [ - -73.4105599718381, - 45.4960868209741 - ] - } - }, - { - "id": "4231", - "code": "34231", - "data": { - "gtfs": { - "stop_id": "4231", - "stop_code": "34231", - "stop_name": "boul. Cousineau et civique 5925", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et civique 5925", - "geography": { - "type": "Point", - "coordinates": [ - -73.4110854458206, - 45.4959911620395 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0785569468142 - }, - "name": "boul. Cousineau et CARREFOUR SAINT-HUBERT", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.410822709, - 45.496038992 - ] - }, - "is_frozen": false, - "integer_id": 1458, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.425382, - 45.582006 - ] - }, - "id": 1459, - "properties": { - "id": "91fae16f-d2f7-4af8-a4e7-3156976c0aae", - "code": "34232", - "data": { - "stops": [ - { - "id": "4232", - "code": "34232", - "data": { - "gtfs": { - "stop_id": "4232", - "stop_code": "34232", - "stop_name": "boul. De Montarville et civique 1230", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et civique 1230", - "geography": { - "type": "Point", - "coordinates": [ - -73.4253819891378, - 45.5820061594673 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5337831384008 - }, - "name": "boul. De Montarville et civique 1230", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.425381989, - 45.582006159 - ] - }, - "is_frozen": false, - "integer_id": 1459, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.424068, - 45.58114 - ] - }, - "id": 1460, - "properties": { - "id": "cc142acd-cd00-4b27-8c30-0fb03b101fb8", - "code": "34233", - "data": { - "stops": [ - { - "id": "4233", - "code": "34233", - "data": { - "gtfs": { - "stop_id": "4233", - "stop_code": "34233", - "stop_name": "boul. De Montarville et civique 1260", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et civique 1260", - "geography": { - "type": "Point", - "coordinates": [ - -73.4242175122991, - 45.5811522437169 - ] - } - }, - { - "id": "4981", - "code": "34981", - "data": { - "gtfs": { - "stop_id": "4981", - "stop_code": "34981", - "stop_name": "boul. De Montarville et civique 1260", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et civique 1260", - "geography": { - "type": "Point", - "coordinates": [ - -73.4239190765778, - 45.5811275483619 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.519086389647 - }, - "name": "boul. De Montarville et civique 1260", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.424068294, - 45.581139896 - ] - }, - "is_frozen": false, - "integer_id": 1460, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.422922, - 45.58012 - ] - }, - "id": 1461, - "properties": { - "id": "38f108ec-7ce2-4f60-84c9-81ee447773a8", - "code": "34234", - "data": { - "stops": [ - { - "id": "4234", - "code": "34234", - "data": { - "gtfs": { - "stop_id": "4234", - "stop_code": "34234", - "stop_name": "boul. De Montarville et civique 1280", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et civique 1280", - "geography": { - "type": "Point", - "coordinates": [ - -73.4229220043986, - 45.5801203688713 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5017902713935 - }, - "name": "boul. De Montarville et civique 1280", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.422922004, - 45.580120369 - ] - }, - "is_frozen": false, - "integer_id": 1461, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.421819, - 45.579387 - ] - }, - "id": 1462, - "properties": { - "id": "ed651d5d-88ba-4ece-bfe1-02e5832cfee7", - "code": "34235", - "data": { - "stops": [ - { - "id": "4235", - "code": "34235", - "data": { - "gtfs": { - "stop_id": "4235", - "stop_code": "34235", - "stop_name": "boul. De Montarville et de Dijon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et de Dijon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4220662786305, - 45.5794411178336 - ] - } - }, - { - "id": "4979", - "code": "34979", - "data": { - "gtfs": { - "stop_id": "4979", - "stop_code": "34979", - "stop_name": "boul. De Montarville et de Dijon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et de Dijon", - "geography": { - "type": "Point", - "coordinates": [ - -73.421572286344, - 45.579332434714 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4893455544913 - }, - "name": "boul. De Montarville et de Dijon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.421819282, - 45.579386776 - ] - }, - "is_frozen": false, - "integer_id": 1462, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.493912, - 45.496075 - ] - }, - "id": 1463, - "properties": { - "id": "7e2aa9ad-30a3-4e26-acfb-1e284e4a4e01", - "code": "34241", - "data": { - "stops": [ - { - "id": "4241", - "code": "34241", - "data": { - "gtfs": { - "stop_id": "4241", - "stop_code": "34241", - "stop_name": "André-Charpentier et Jeannette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "André-Charpentier et Jeannette", - "geography": { - "type": "Point", - "coordinates": [ - -73.4939119905894, - 45.4960750958404 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0791667219164 - }, - "name": "André-Charpentier et Jeannette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493911991, - 45.496075096 - ] - }, - "is_frozen": false, - "integer_id": 1463, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492252, - 45.497326 - ] - }, - "id": 1464, - "properties": { - "id": "f8a2b8d6-3974-492f-9494-9a40d49bc027", - "code": "34242", - "data": { - "stops": [ - { - "id": "4242", - "code": "34242", - "data": { - "gtfs": { - "stop_id": "4242", - "stop_code": "34242", - "stop_name": "Jeannette et Henri-Sicotte", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jeannette et Henri-Sicotte", - "geography": { - "type": "Point", - "coordinates": [ - -73.4922517976479, - 45.4973256678146 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1002888554557 - }, - "name": "Jeannette et Henri-Sicotte", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492251798, - 45.497325668 - ] - }, - "is_frozen": false, - "integer_id": 1464, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491292, - 45.498224 - ] - }, - "id": 1465, - "properties": { - "id": "5605c306-59ee-41b1-bafb-ef890fa7662b", - "code": "34243", - "data": { - "stops": [ - { - "id": "4243", - "code": "34243", - "data": { - "gtfs": { - "stop_id": "4243", - "stop_code": "34243", - "stop_name": "Jeannette et Bernard-Darche", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jeannette et Bernard-Darche", - "geography": { - "type": "Point", - "coordinates": [ - -73.4912915643952, - 45.4982237588981 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1154584510256 - }, - "name": "Jeannette et Bernard-Darche", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491291564, - 45.498223759 - ] - }, - "is_frozen": false, - "integer_id": 1465, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.489979, - 45.499458 - ] - }, - "id": 1466, - "properties": { - "id": "c90494b0-6ef5-43d3-912f-c60109ccace2", - "code": "34244", - "data": { - "stops": [ - { - "id": "4244", - "code": "34244", - "data": { - "gtfs": { - "stop_id": "4244", - "stop_code": "34244", - "stop_name": "Jeannette et Albert-Bélanger", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jeannette et Albert-Bélanger", - "geography": { - "type": "Point", - "coordinates": [ - -73.4899789340346, - 45.4994582314319 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1363110068787 - }, - "name": "Jeannette et Albert-Bélanger", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.489978934, - 45.499458231 - ] - }, - "is_frozen": false, - "integer_id": 1466, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45741, - 45.450706 - ] - }, - "id": 1467, - "properties": { - "id": "44eacee6-a348-48cf-aeda-c9ddae958f8e", - "code": "34256", - "data": { - "stops": [ - { - "id": "4256", - "code": "34256", - "data": { - "gtfs": { - "stop_id": "4256", - "stop_code": "34256", - "stop_name": "ECOLE SECONDAIRE ANTOINE-BROSSARD", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ECOLE SECONDAIRE ANTOINE-BROSSARD", - "geography": { - "type": "Point", - "coordinates": [ - -73.457409607609, - 45.4507058272198 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3138206351914 - }, - "name": "ECOLE SECONDAIRE ANTOINE-BROSSARD", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457409608, - 45.450705827 - ] - }, - "is_frozen": false, - "integer_id": 1467, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462719, - 45.572965 - ] - }, - "id": 1468, - "properties": { - "id": "6d171932-b1c9-4deb-8ccf-3f09a5ce25f5", - "code": "34267", - "data": { - "stops": [ - { - "id": "4267", - "code": "34267", - "data": { - "gtfs": { - "stop_id": "4267", - "stop_code": "34267", - "stop_name": "de la Province et civique 2412", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Province et civique 2412", - "geography": { - "type": "Point", - "coordinates": [ - -73.4627190492308, - 45.5729648349481 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3804238983888 - }, - "name": "de la Province et civique 2412", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462719049, - 45.572964835 - ] - }, - "is_frozen": false, - "integer_id": 1468, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.420614, - 45.503639 - ] - }, - "id": 1469, - "properties": { - "id": "235a92b0-53e1-410c-b264-d57c7814303c", - "code": "34269", - "data": { - "stops": [ - { - "id": "4269", - "code": "34269", - "data": { - "gtfs": { - "stop_id": "4269", - "stop_code": "34269", - "stop_name": "ch. de Chambly et Gélineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Gélineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4205867484012, - 45.503536774686 - ] - } - }, - { - "id": "4355", - "code": "34355", - "data": { - "gtfs": { - "stop_id": "4355", - "stop_code": "34355", - "stop_name": "ch. de Chambly et Gélineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Gélineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4206410735758, - 45.5037402480331 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2069338756364 - }, - "name": "ch. de Chambly et Gélineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.420613911, - 45.503638511 - ] - }, - "is_frozen": false, - "integer_id": 1469, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445469, - 45.597833 - ] - }, - "id": 1470, - "properties": { - "id": "4c25cc73-ac26-4e31-9812-bc4ad7f583b5", - "code": "34273", - "data": { - "stops": [ - { - "id": "4273", - "code": "34273", - "data": { - "gtfs": { - "stop_id": "4273", - "stop_code": "34273", - "stop_name": "boul. De Montarville et François-Gravé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et François-Gravé", - "geography": { - "type": "Point", - "coordinates": [ - -73.4454691701956, - 45.5978330368193 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8024152376905 - }, - "name": "boul. De Montarville et François-Gravé", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44546917, - 45.597833037 - ] - }, - "is_frozen": false, - "integer_id": 1470, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.409921, - 45.461851 - ] - }, - "id": 1471, - "properties": { - "id": "fee943f3-e127-46e6-bc62-d6c4c320bd7a", - "code": "34278", - "data": { - "stops": [ - { - "id": "4278", - "code": "34278", - "data": { - "gtfs": { - "stop_id": "4278", - "stop_code": "34278", - "stop_name": "J.-A.-Bombardier et civique 5130", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et civique 5130", - "geography": { - "type": "Point", - "coordinates": [ - -73.4099207686587, - 45.4618506635022 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5016564506499 - }, - "name": "J.-A.-Bombardier et civique 5130", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.409920769, - 45.461850664 - ] - }, - "is_frozen": false, - "integer_id": 1471, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446193, - 45.490943 - ] - }, - "id": 1472, - "properties": { - "id": "33d857b4-2e13-426f-b28c-1e46e90fee90", - "code": "34281", - "data": { - "stops": [ - { - "id": "4281", - "code": "34281", - "data": { - "gtfs": { - "stop_id": "4281", - "stop_code": "34281", - "stop_name": "ECOLE SECONDAIRE CENTENNIAL REGIONAL HIGH SCHOOL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ECOLE SECONDAIRE CENTENNIAL REGIONAL HIGH SCHOOL", - "geography": { - "type": "Point", - "coordinates": [ - -73.4461933085387, - 45.4909428589139 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9924979210233 - }, - "name": "ECOLE SECONDAIRE CENTENNIAL REGIONAL HIGH SCHOOL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446193309, - 45.490942859 - ] - }, - "is_frozen": false, - "integer_id": 1472, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.50968, - 45.533792 - ] - }, - "id": 1473, - "properties": { - "id": "0cafd6f5-a2c7-4cf8-830a-6909e29ea5a5", - "code": "34298", - "data": { - "stops": [ - { - "id": "4298", - "code": "34298", - "data": { - "gtfs": { - "stop_id": "4298", - "stop_code": "34298", - "stop_name": "Saint-Laurent ouest et Labonté", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Labonté", - "geography": { - "type": "Point", - "coordinates": [ - -73.5097032687618, - 45.5336143933144 - ] - } - }, - { - "id": "4299", - "code": "34299", - "data": { - "gtfs": { - "stop_id": "4299", - "stop_code": "34299", - "stop_name": "Saint-Laurent ouest et Labonté", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Laurent ouest et Labonté", - "geography": { - "type": "Point", - "coordinates": [ - -73.5096576160345, - 45.5339698332566 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7168166685267 - }, - "name": "Saint-Laurent ouest et Labonté", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.50968, - 45.533792 - ] - }, - "is_frozen": false, - "integer_id": 1473, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.480949, - 45.563558 - ] - }, - "id": 1474, - "properties": { - "id": "9d19395e-81cd-4b78-af4a-b6c8e4259c9c", - "code": "34300", - "data": { - "stops": [ - { - "id": "4300", - "code": "34300", - "data": { - "gtfs": { - "stop_id": "4300", - "stop_code": "34300", - "stop_name": "Adoncour et des Corbeaux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et des Corbeaux", - "geography": { - "type": "Point", - "coordinates": [ - -73.4809490570639, - 45.5635578795072 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2209403872621 - }, - "name": "Adoncour et des Corbeaux", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.480949057, - 45.56355788 - ] - }, - "is_frozen": false, - "integer_id": 1474, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.483569, - 45.561044 - ] - }, - "id": 1475, - "properties": { - "id": "527ca44e-8da2-49e9-b2e4-033371d02c50", - "code": "34301", - "data": { - "stops": [ - { - "id": "4301", - "code": "34301", - "data": { - "gtfs": { - "stop_id": "4301", - "stop_code": "34301", - "stop_name": "Adoncour / PISTE CYCLABLE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour / PISTE CYCLABLE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4835688334894, - 45.5610441619397 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1783367362899 - }, - "name": "Adoncour / PISTE CYCLABLE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.483568833, - 45.561044162 - ] - }, - "is_frozen": false, - "integer_id": 1475, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.41616, - 45.527421 - ] - }, - "id": 1476, - "properties": { - "id": "d488b16d-4bf0-4526-8c06-e8192c180e3b", - "code": "34305", - "data": { - "stops": [ - { - "id": "4305", - "code": "34305", - "data": { - "gtfs": { - "stop_id": "4305", - "stop_code": "34305", - "stop_name": "ch. de la Savane et civique 6155", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et civique 6155", - "geography": { - "type": "Point", - "coordinates": [ - -73.4163992238381, - 45.5274341865589 - ] - } - }, - { - "id": "4306", - "code": "34306", - "data": { - "gtfs": { - "stop_id": "4306", - "stop_code": "34306", - "stop_name": "ch. de la Savane et civique 6155", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et civique 6155", - "geography": { - "type": "Point", - "coordinates": [ - -73.4159216101693, - 45.5274083624743 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6090228909513 - }, - "name": "ch. de la Savane et civique 6155", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.416160417, - 45.527421275 - ] - }, - "is_frozen": false, - "integer_id": 1476, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.501251, - 45.534713 - ] - }, - "id": 1477, - "properties": { - "id": "ba31b8f9-0d39-4bdd-b821-6bb787db72e9", - "code": "34333", - "data": { - "stops": [ - { - "id": "4333", - "code": "34333", - "data": { - "gtfs": { - "stop_id": "4333", - "stop_code": "34333", - "stop_name": "Le Moyne ouest et Saint-Jacques", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne ouest et Saint-Jacques", - "geography": { - "type": "Point", - "coordinates": [ - -73.5012869221639, - 45.5348063871746 - ] - } - }, - { - "id": "4813", - "code": "34813", - "data": { - "gtfs": { - "stop_id": "4813", - "stop_code": "34813", - "stop_name": "Le Moyne ouest et Saint-Jacques", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne ouest et Saint-Jacques", - "geography": { - "type": "Point", - "coordinates": [ - -73.5012160186326, - 45.5346202033676 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7324031430629 - }, - "name": "Le Moyne ouest et Saint-Jacques", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.501251, - 45.534713 - ] - }, - "is_frozen": false, - "integer_id": 1477, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46372, - 45.459418 - ] - }, - "id": 1478, - "properties": { - "id": "80775ca9-8434-48d9-a65d-5f3eace6e2d8", - "code": "34339", - "data": { - "stops": [ - { - "id": "4339", - "code": "34339", - "data": { - "gtfs": { - "stop_id": "4339", - "stop_code": "34339", - "stop_name": "Mario et civique 2100", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Mario et civique 2100", - "geography": { - "type": "Point", - "coordinates": [ - -73.463719505439, - 45.4594175005112 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4606383571124 - }, - "name": "Mario et civique 2100", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463719505, - 45.459417501 - ] - }, - "is_frozen": false, - "integer_id": 1478, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491657, - 45.501727 - ] - }, - "id": 1479, - "properties": { - "id": "800c7491-9914-4c1b-98fa-05ef8ea6fc69", - "code": "34342", - "data": { - "stops": [ - { - "id": "4342", - "code": "34342", - "data": { - "gtfs": { - "stop_id": "4342", - "stop_code": "34342", - "stop_name": "Charron et civique 289", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Charron et civique 289", - "geography": { - "type": "Point", - "coordinates": [ - -73.4916567848488, - 45.5017268913437 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1746364805379 - }, - "name": "Charron et civique 289", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491656785, - 45.501726891 - ] - }, - "is_frozen": false, - "integer_id": 1479, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.493878, - 45.49968 - ] - }, - "id": 1480, - "properties": { - "id": "eeaa7f8b-2fd2-49cc-ba6a-d6a6a5274e6b", - "code": "34343", - "data": { - "stops": [ - { - "id": "4343", - "code": "34343", - "data": { - "gtfs": { - "stop_id": "4343", - "stop_code": "34343", - "stop_name": "Charron et Bernard-Darche", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Charron et Bernard-Darche", - "geography": { - "type": "Point", - "coordinates": [ - -73.4938783433032, - 45.4996798108875 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1400540537111 - }, - "name": "Charron et Bernard-Darche", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493878343, - 45.499679811 - ] - }, - "is_frozen": false, - "integer_id": 1480, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.495037, - 45.498581 - ] - }, - "id": 1481, - "properties": { - "id": "038ad1c0-bc4e-4528-8949-777db666b0b5", - "code": "34344", - "data": { - "stops": [ - { - "id": "4344", - "code": "34344", - "data": { - "gtfs": { - "stop_id": "4344", - "stop_code": "34344", - "stop_name": "Charron et civique 165", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Charron et civique 165", - "geography": { - "type": "Point", - "coordinates": [ - -73.4950373316814, - 45.4985811823239 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.121495858856 - }, - "name": "Charron et civique 165", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.495037332, - 45.498581182 - ] - }, - "is_frozen": false, - "integer_id": 1481, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.496232, - 45.497463 - ] - }, - "id": 1482, - "properties": { - "id": "6bf17878-7313-4796-a2ad-a20a58f89e02", - "code": "34345", - "data": { - "stops": [ - { - "id": "4345", - "code": "34345", - "data": { - "gtfs": { - "stop_id": "4345", - "stop_code": "34345", - "stop_name": "Charron et André-Charpentier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Charron et André-Charpentier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4962322425974, - 45.4974627176186 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1026037115282 - }, - "name": "Charron et André-Charpentier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.496232243, - 45.497462718 - ] - }, - "is_frozen": false, - "integer_id": 1482, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.49491, - 45.496552 - ] - }, - "id": 1483, - "properties": { - "id": "b3c7372b-3c0a-4cb2-bef2-6f11825f858a", - "code": "34346", - "data": { - "stops": [ - { - "id": "4346", - "code": "34346", - "data": { - "gtfs": { - "stop_id": "4346", - "stop_code": "34346", - "stop_name": "André-Charpentier et Roy", - "location_type": 0, - "parent_station": "" - } - }, - "name": "André-Charpentier et Roy", - "geography": { - "type": "Point", - "coordinates": [ - -73.4949095028271, - 45.4965515734009 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.087214243894 - }, - "name": "André-Charpentier et Roy", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494909503, - 45.496551573 - ] - }, - "is_frozen": false, - "integer_id": 1483, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.488286, - 45.501025 - ] - }, - "id": 1484, - "properties": { - "id": "71e7c9ac-fe80-497a-a057-1eb12ce8ef13", - "code": "34347", - "data": { - "stops": [ - { - "id": "4347", - "code": "34347", - "data": { - "gtfs": { - "stop_id": "4347", - "stop_code": "34347", - "stop_name": "Jeannette et Saint-Georges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jeannette et Saint-Georges", - "geography": { - "type": "Point", - "coordinates": [ - -73.4882856519609, - 45.5010245079492 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1627703253647 - }, - "name": "Jeannette et Saint-Georges", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.488285652, - 45.501024508 - ] - }, - "is_frozen": false, - "integer_id": 1484, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.518164, - 45.515326 - ] - }, - "id": 1485, - "properties": { - "id": "2259b112-2e60-4bcc-ad14-9e0e577f2909", - "code": "34349", - "data": { - "stops": [ - { - "id": "4349", - "code": "34349", - "data": { - "gtfs": { - "stop_id": "4349", - "stop_code": "34349", - "stop_name": "Riverside et av. Durocher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Riverside et av. Durocher", - "geography": { - "type": "Point", - "coordinates": [ - -73.518164148157, - 45.5153263828832 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4044747373796 - }, - "name": "Riverside et av. Durocher", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.518164148, - 45.515326383 - ] - }, - "is_frozen": false, - "integer_id": 1485, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465119, - 45.522601 - ] - }, - "id": 1486, - "properties": { - "id": "130245ae-209b-4e27-b903-ff57832b92eb", - "code": "34354", - "data": { - "stops": [ - { - "id": "4354", - "code": "34354", - "data": { - "gtfs": { - "stop_id": "4354", - "stop_code": "34354", - "stop_name": "ch. de Chambly et boul. Jacques-Cartier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Jacques-Cartier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4651188612063, - 45.5226012942839 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5274920129636 - }, - "name": "ch. de Chambly et boul. Jacques-Cartier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465118861, - 45.522601294 - ] - }, - "is_frozen": false, - "integer_id": 1486, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469066, - 45.503106 - ] - }, - "id": 1487, - "properties": { - "id": "c17cc951-65ff-4617-a096-ccd1fe6cc26f", - "code": "34358", - "data": { - "stops": [ - { - "id": "4358", - "code": "34358", - "data": { - "gtfs": { - "stop_id": "4358", - "stop_code": "34358", - "stop_name": "Elizabeth et boul. Édouard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Elizabeth et boul. Édouard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4690104406636, - 45.5028233161761 - ] - } - }, - { - "id": "4407", - "code": "34407", - "data": { - "gtfs": { - "stop_id": "4407", - "stop_code": "34407", - "stop_name": "boul. Édouard et Elizabeth", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Édouard et Elizabeth", - "geography": { - "type": "Point", - "coordinates": [ - -73.4691211169917, - 45.503388613134 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1979360239251 - }, - "name": "Elizabeth et boul. Édouard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469065779, - 45.503105965 - ] - }, - "is_frozen": false, - "integer_id": 1487, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443222, - 45.524514 - ] - }, - "id": 1488, - "properties": { - "id": "02782fd4-ecd8-4615-9b7e-14ae16ac51bd", - "code": "34363", - "data": { - "stops": [ - { - "id": "4363", - "code": "34363", - "data": { - "gtfs": { - "stop_id": "4363", - "stop_code": "34363", - "stop_name": "boul. Roberval est et boul. Roland-Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et boul. Roland-Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4432223658282, - 45.5245135280294 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5598353301402 - }, - "name": "boul. Roberval est et boul. Roland-Therrien", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443222366, - 45.524513528 - ] - }, - "is_frozen": false, - "integer_id": 1488, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464661, - 45.488945 - ] - }, - "id": 1489, - "properties": { - "id": "e49dac95-6777-4527-88d9-43533c4c81ab", - "code": "34365", - "data": { - "stops": [ - { - "id": "4365", - "code": "34365", - "data": { - "gtfs": { - "stop_id": "4365", - "stop_code": "34365", - "stop_name": "Grande Allée et Murray", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Murray", - "geography": { - "type": "Point", - "coordinates": [ - -73.4646799263347, - 45.4891482867991 - ] - } - }, - { - "id": "4366", - "code": "34366", - "data": { - "gtfs": { - "stop_id": "4366", - "stop_code": "34366", - "stop_name": "Grande Allée et Murray", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Murray", - "geography": { - "type": "Point", - "coordinates": [ - -73.4649487213269, - 45.4891373527896 - ] - } - }, - { - "id": "4929", - "code": "34929", - "data": { - "gtfs": { - "stop_id": "4929", - "stop_code": "34929", - "stop_name": "Robillard et Grande Allée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Robillard et Grande Allée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4643741551755, - 45.4887420385887 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9587688840459 - }, - "name": "Grande Allée et Murray", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464661438, - 45.488945163 - ] - }, - "is_frozen": false, - "integer_id": 1489, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462635, - 45.455194 - ] - }, - "id": 1490, - "properties": { - "id": "5b030db6-8eaf-4505-a2c0-5a5290886d5b", - "code": "34367", - "data": { - "stops": [ - { - "id": "4367", - "code": "34367", - "data": { - "gtfs": { - "stop_id": "4367", - "stop_code": "34367", - "stop_name": "av. Malo et place Marengo", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Malo et place Marengo", - "geography": { - "type": "Point", - "coordinates": [ - -73.4626351571765, - 45.4551939529973 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3894505519817 - }, - "name": "av. Malo et place Marengo", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462635157, - 45.455193953 - ] - }, - "is_frozen": false, - "integer_id": 1490, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.41627, - 45.56992 - ] - }, - "id": 1491, - "properties": { - "id": "fb50e5b2-5326-4cb9-9888-65bcbf9b9592", - "code": "34371", - "data": { - "stops": [ - { - "id": "4371", - "code": "34371", - "data": { - "gtfs": { - "stop_id": "4371", - "stop_code": "34371", - "stop_name": "Ampère et civique 1501", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ampère et civique 1501", - "geography": { - "type": "Point", - "coordinates": [ - -73.4165667826554, - 45.5697748910395 - ] - } - }, - { - "id": "5090", - "code": "35090", - "data": { - "gtfs": { - "stop_id": "5090", - "stop_code": "35090", - "stop_name": "Ampère et civique 1501", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ampère et civique 1501", - "geography": { - "type": "Point", - "coordinates": [ - -73.4159729214655, - 45.5700647876114 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3287910277044 - }, - "name": "Ampère et civique 1501", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.416269852, - 45.569919839 - ] - }, - "is_frozen": false, - "integer_id": 1491, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.377512, - 45.496197 - ] - }, - "id": 1492, - "properties": { - "id": "afdaecf9-9edf-499b-a1d1-693abc0ee347", - "code": "34374", - "data": { - "stops": [ - { - "id": "4374", - "code": "34374", - "data": { - "gtfs": { - "stop_id": "4374", - "stop_code": "34374", - "stop_name": "boul. des Promenades et Brault et Martineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. des Promenades et Brault et Martineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3776308542124, - 45.4963213095156 - ] - } - }, - { - "id": "4375", - "code": "34375", - "data": { - "gtfs": { - "stop_id": "4375", - "stop_code": "34375", - "stop_name": "boul. des Promenades et Brault et Martineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. des Promenades et Brault et Martineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3773941104527, - 45.4960724215237 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0812233533956 - }, - "name": "boul. des Promenades et Brault et Martineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.377512482, - 45.496196866 - ] - }, - "is_frozen": false, - "integer_id": 1492, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.402742, - 45.473607 - ] - }, - "id": 1493, - "properties": { - "id": "8cec91d7-ac02-48a9-994c-d2a33ba61ba1", - "code": "34376", - "data": { - "stops": [ - { - "id": "4376", - "code": "34376", - "data": { - "gtfs": { - "stop_id": "4376", - "stop_code": "34376", - "stop_name": "boul. Maricourt et boul. Moïse-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Maricourt et boul. Moïse-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4031174631615, - 45.4732123414164 - ] - } - }, - { - "id": "4377", - "code": "34377", - "data": { - "gtfs": { - "stop_id": "4377", - "stop_code": "34377", - "stop_name": "boul. Maricourt et boul. Moïse-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Maricourt et boul. Moïse-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.40262952815, - 45.4731976297525 - ] - } - }, - { - "id": "4673", - "code": "34673", - "data": { - "gtfs": { - "stop_id": "4673", - "stop_code": "34673", - "stop_name": "boul. Moïse-Vincent et des Pâquerettes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Moïse-Vincent et des Pâquerettes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4024824859123, - 45.4735546169902 - ] - } - }, - { - "id": "4689", - "code": "34689", - "data": { - "gtfs": { - "stop_id": "4689", - "stop_code": "34689", - "stop_name": "boul. Moïse-Vincent et des Pâquerettes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Moïse-Vincent et des Pâquerettes", - "geography": { - "type": "Point", - "coordinates": [ - -73.402367187658, - 45.4740153700887 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 1045.769900518842 - }, - "name": "boul. Maricourt et boul. Moïse-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.402742325, - 45.4736065 - ] - }, - "is_frozen": false, - "integer_id": 1493, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 55, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468927, - 45.585918 - ] - }, - "id": 1494, - "properties": { - "id": "294d6510-b687-486c-b1aa-a7e5b91bdac4", - "code": "34379", - "data": { - "stops": [ - { - "id": "4379", - "code": "34379", - "data": { - "gtfs": { - "stop_id": "4379", - "stop_code": "34379", - "stop_name": "boul. Marie-Victorin et GROUPE ROBERT TRANSPORT INC.", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et GROUPE ROBERT TRANSPORT INC.", - "geography": { - "type": "Point", - "coordinates": [ - -73.4689271299144, - 45.5859184961767 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6001669941757 - }, - "name": "boul. Marie-Victorin et GROUPE ROBERT TRANSPORT INC.", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46892713, - 45.585918496 - ] - }, - "is_frozen": false, - "integer_id": 1494, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.431919, - 45.594557 - ] - }, - "id": 1495, - "properties": { - "id": "dbda0ea8-08e6-4d52-b455-3b21aae9d561", - "code": "34381", - "data": { - "stops": [ - { - "id": "4381", - "code": "34381", - "data": { - "gtfs": { - "stop_id": "4381", - "stop_code": "34381", - "stop_name": "boul. de Mortagne et Charcot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Charcot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4319694046179, - 45.5944105616647 - ] - } - }, - { - "id": "4963", - "code": "34963", - "data": { - "gtfs": { - "stop_id": "4963", - "stop_code": "34963", - "stop_name": "boul. de Mortagne et Charcot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Charcot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4318691984058, - 45.5947044120494 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7468004106119 - }, - "name": "boul. de Mortagne et Charcot", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431919302, - 45.594557487 - ] - }, - "is_frozen": false, - "integer_id": 1495, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.429071, - 45.597131 - ] - }, - "id": 1496, - "properties": { - "id": "92d27f4f-1792-4dbb-8e38-aef6410a23d1", - "code": "34383", - "data": { - "stops": [ - { - "id": "4383", - "code": "34383", - "data": { - "gtfs": { - "stop_id": "4383", - "stop_code": "34383", - "stop_name": "boul. de Mortagne et Emma-Lajeunesse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Emma-Lajeunesse", - "geography": { - "type": "Point", - "coordinates": [ - -73.429213457439, - 45.5970459764531 - ] - } - }, - { - "id": "4962", - "code": "34962", - "data": { - "gtfs": { - "stop_id": "4962", - "stop_code": "34962", - "stop_name": "Emma-Lajeunesse et boul. de Mortagne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Emma-Lajeunesse et boul. de Mortagne", - "geography": { - "type": "Point", - "coordinates": [ - -73.428928966175, - 45.5972159096315 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7904937326065 - }, - "name": "boul. de Mortagne et Emma-Lajeunesse", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.429071212, - 45.597130943 - ] - }, - "is_frozen": false, - "integer_id": 1496, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.497216, - 45.535742 - ] - }, - "id": 1497, - "properties": { - "id": "25e9b688-116d-4828-87b8-e7d0946c452f", - "code": "34388", - "data": { - "stops": [ - { - "id": "4388", - "code": "34388", - "data": { - "gtfs": { - "stop_id": "4388", - "stop_code": "34388", - "stop_name": "ch. de Chambly et De Gentilly ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et De Gentilly ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4972162162563, - 45.5357420110802 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7498184284053 - }, - "name": "ch. de Chambly et De Gentilly ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.497216216, - 45.535742011 - ] - }, - "is_frozen": false, - "integer_id": 1497, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.407368, - 45.475753 - ] - }, - "id": 1498, - "properties": { - "id": "7c3e8b4c-c373-431f-8a27-ba6c2f349e5b", - "code": "34389", - "data": { - "stops": [ - { - "id": "4389", - "code": "34389", - "data": { - "gtfs": { - "stop_id": "4389", - "stop_code": "34389", - "stop_name": "boul. Maricourt et Cornwall", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Maricourt et Cornwall", - "geography": { - "type": "Point", - "coordinates": [ - -73.4073681927755, - 45.4757530597565 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7361228935531 - }, - "name": "boul. Maricourt et Cornwall", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.407368193, - 45.47575306 - ] - }, - "is_frozen": false, - "integer_id": 1498, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.515377, - 45.537322 - ] - }, - "id": 1499, - "properties": { - "id": "28d90293-1261-41be-a75c-5fc82c3acd49", - "code": "34390", - "data": { - "stops": [ - { - "id": "4390", - "code": "34390", - "data": { - "gtfs": { - "stop_id": "4390", - "stop_code": "34390", - "stop_name": "du Bord-de-l'Eau ouest et Saint-Sylvestre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau ouest et Saint-Sylvestre", - "geography": { - "type": "Point", - "coordinates": [ - -73.5153700890574, - 45.5371964067391 - ] - } - }, - { - "id": "4391", - "code": "34391", - "data": { - "gtfs": { - "stop_id": "4391", - "stop_code": "34391", - "stop_name": "du Bord-de-l'Eau ouest et Saint-Sylvestre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Bord-de-l'Eau ouest et Saint-Sylvestre", - "geography": { - "type": "Point", - "coordinates": [ - -73.515383415362, - 45.5374484818519 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7765679811973 - }, - "name": "du Bord-de-l'Eau ouest et Saint-Sylvestre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.515376752, - 45.537322444 - ] - }, - "is_frozen": false, - "integer_id": 1499, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.427557, - 45.520443 - ] - }, - "id": 1500, - "properties": { - "id": "d8268f60-1558-45f9-8a7a-1fd3cd695326", - "code": "34393", - "data": { - "stops": [ - { - "id": "4393", - "code": "34393", - "data": { - "gtfs": { - "stop_id": "4393", - "stop_code": "34393", - "stop_name": "ch. de la Savane et civique 4797", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et civique 4797", - "geography": { - "type": "Point", - "coordinates": [ - -73.4275568271271, - 45.5204425470061 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4909831173683 - }, - "name": "ch. de la Savane et civique 4797", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.427556827, - 45.520442547 - ] - }, - "is_frozen": false, - "integer_id": 1500, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.427421, - 45.520429 - ] - }, - "id": 1501, - "properties": { - "id": "23054239-a5b5-43b6-a4dd-70fd7b62e6fb", - "code": "34394", - "data": { - "stops": [ - { - "id": "4394", - "code": "34394", - "data": { - "gtfs": { - "stop_id": "4394", - "stop_code": "34394", - "stop_name": "ch. de la Savane et civique 4797", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et civique 4797", - "geography": { - "type": "Point", - "coordinates": [ - -73.427420845301, - 45.5204292753294 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4907586731243 - }, - "name": "ch. de la Savane et civique 4797", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.427420845, - 45.520429275 - ] - }, - "is_frozen": false, - "integer_id": 1501, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.499366, - 45.537054 - ] - }, - "id": 1502, - "properties": { - "id": "02ddb4e4-c9f0-483c-9ae1-3f0d44c6367b", - "code": "34401", - "data": { - "stops": [ - { - "id": "4401", - "code": "34401", - "data": { - "gtfs": { - "stop_id": "4401", - "stop_code": "34401", - "stop_name": "Le Moyne est et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne est et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4993656561675, - 45.5370542154376 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7720279254867 - }, - "name": "Le Moyne est et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.499365656, - 45.537054215 - ] - }, - "is_frozen": false, - "integer_id": 1502, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.509489, - 45.515308 - ] - }, - "id": 1503, - "properties": { - "id": "f9358f54-8643-47f5-b0df-4a20b46cc22d", - "code": "34402", - "data": { - "stops": [ - { - "id": "4402", - "code": "34402", - "data": { - "gtfs": { - "stop_id": "4402", - "stop_code": "34402", - "stop_name": "boul. Taschereau et COLLEGE CHARLES-LEMOYNE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et COLLEGE CHARLES-LEMOYNE", - "geography": { - "type": "Point", - "coordinates": [ - -73.5094892569121, - 45.5153077236766 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4041592780743 - }, - "name": "boul. Taschereau et COLLEGE CHARLES-LEMOYNE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.509489257, - 45.515307724 - ] - }, - "is_frozen": false, - "integer_id": 1503, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.398276, - 45.567725 - ] - }, - "id": 1504, - "properties": { - "id": "a913c5ce-8de0-458e-a9ee-4ae555d41e98", - "code": "34404", - "data": { - "stops": [ - { - "id": "4404", - "code": "34404", - "data": { - "gtfs": { - "stop_id": "4404", - "stop_code": "34404", - "stop_name": "Louis-Pasteur et GROUPE V. A. INC.", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Louis-Pasteur et GROUPE V. A. INC.", - "geography": { - "type": "Point", - "coordinates": [ - -73.3981465799693, - 45.5678825391699 - ] - } - }, - { - "id": "4916", - "code": "34916", - "data": { - "gtfs": { - "stop_id": "4916", - "stop_code": "34916", - "stop_name": "Louis-Pasteur et GROUPE V. A. INC.", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Louis-Pasteur et GROUPE V. A. INC.", - "geography": { - "type": "Point", - "coordinates": [ - -73.3984045295029, - 45.5675678489764 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2915823836342 - }, - "name": "Louis-Pasteur et GROUPE V. A. INC.", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.398275555, - 45.567725194 - ] - }, - "is_frozen": false, - "integer_id": 1504, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.430911, - 45.603004 - ] - }, - "id": 1505, - "properties": { - "id": "ec4c2883-a9f2-494e-a89a-be6bfc96ea9d", - "code": "34405", - "data": { - "stops": [ - { - "id": "4405", - "code": "34405", - "data": { - "gtfs": { - "stop_id": "4405", - "stop_code": "34405", - "stop_name": "Jacques-Cartier et Étienne-Brûlé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jacques-Cartier et Étienne-Brûlé", - "geography": { - "type": "Point", - "coordinates": [ - -73.4312944431089, - 45.6028736952212 - ] - } - }, - { - "id": "4423", - "code": "34423", - "data": { - "gtfs": { - "stop_id": "4423", - "stop_code": "34423", - "stop_name": "Jacques-Cartier et Radisson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jacques-Cartier et Radisson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4305283709595, - 45.6031344499693 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8902326520713 - }, - "name": "Jacques-Cartier et Étienne-Brûlé", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.430911407, - 45.603004073 - ] - }, - "is_frozen": false, - "integer_id": 1505, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.462698, - 45.505084 - ] - }, - "id": 1506, - "properties": { - "id": "d283f176-a2d6-456a-b4b2-f380ae924031", - "code": "34408", - "data": { - "stops": [ - { - "id": "4408", - "code": "34408", - "data": { - "gtfs": { - "stop_id": "4408", - "stop_code": "34408", - "stop_name": "boul. Édouard et Viaduc rte 116", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Édouard et Viaduc rte 116", - "geography": { - "type": "Point", - "coordinates": [ - -73.4626981226385, - 45.5050838727809 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2313558606769 - }, - "name": "boul. Édouard et Viaduc rte 116", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462698123, - 45.505083873 - ] - }, - "is_frozen": false, - "integer_id": 1506, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453497, - 45.506247 - ] - }, - "id": 1507, - "properties": { - "id": "a4e1d210-6aad-44a6-b6a6-31d75e66d6c9", - "code": "34409", - "data": { - "stops": [ - { - "id": "4409", - "code": "34409", - "data": { - "gtfs": { - "stop_id": "4409", - "stop_code": "34409", - "stop_name": "boul. Sir-Wilfrid-Laurier et civique 3590", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier et civique 3590", - "geography": { - "type": "Point", - "coordinates": [ - -73.4534974754888, - 45.5062471014656 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2510120358528 - }, - "name": "boul. Sir-Wilfrid-Laurier et civique 3590", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453497475, - 45.506247101 - ] - }, - "is_frozen": false, - "integer_id": 1507, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.419489, - 45.481272 - ] - }, - "id": 1508, - "properties": { - "id": "784376eb-c666-4a01-b5d4-f21e9880ab84", - "code": "34411", - "data": { - "stops": [ - { - "id": "4411", - "code": "34411", - "data": { - "gtfs": { - "stop_id": "4411", - "stop_code": "34411", - "stop_name": "Beauséjour et av. Brabant", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauséjour et av. Brabant", - "geography": { - "type": "Point", - "coordinates": [ - -73.4194894110944, - 45.481272248182 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.829252610797 - }, - "name": "Beauséjour et av. Brabant", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.419489411, - 45.481272248 - ] - }, - "is_frozen": false, - "integer_id": 1508, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.520803, - 45.523528 - ] - }, - "id": 1509, - "properties": { - "id": "acabc807-b0f5-4579-b183-cef0484a7cc2", - "code": "34417", - "data": { - "stops": [ - { - "id": "4417", - "code": "34417", - "data": { - "gtfs": { - "stop_id": "4417", - "stop_code": "34417", - "stop_name": "TERMINUS LONGUEUIL", - "location_type": 0, - "parent_station": "9999" - } - }, - "name": "TERMINUS LONGUEUIL", - "geography": { - "type": "Point", - "coordinates": [ - -73.5208026778995, - 45.5235276580726 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5431600256238 - }, - "name": "TERMINUS LONGUEUIL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.520802678, - 45.523527658 - ] - }, - "is_frozen": false, - "integer_id": 1509, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.522603, - 45.524046 - ] - }, - "id": 1510, - "properties": { - "id": "4c755ece-2475-4915-941e-37859f0f391f", - "code": "34418", - "data": { - "stops": [ - { - "id": "4418", - "code": "34418", - "data": { - "gtfs": { - "stop_id": "4418", - "stop_code": "34418", - "stop_name": "TERMINUS LONGUEUIL", - "location_type": 0, - "parent_station": "9999" - } - }, - "name": "TERMINUS LONGUEUIL", - "geography": { - "type": "Point", - "coordinates": [ - -73.5226031192278, - 45.5240462355937 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5519313033911 - }, - "name": "TERMINUS LONGUEUIL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.522603119, - 45.524046236 - ] - }, - "is_frozen": false, - "integer_id": 1510, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.476317, - 45.46211 - ] - }, - "id": 1511, - "properties": { - "id": "ff23cabb-ca11-421b-a582-f6413aa21fa0", - "code": "34426", - "data": { - "stops": [ - { - "id": "4426", - "code": "34426", - "data": { - "gtfs": { - "stop_id": "4426", - "stop_code": "34426", - "stop_name": "Tunisie et boul. Pelletier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Tunisie et boul. Pelletier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4763171114811, - 45.4621100079241 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5060287637441 - }, - "name": "Tunisie et boul. Pelletier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.476317111, - 45.462110008 - ] - }, - "is_frozen": false, - "integer_id": 1511, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.494413, - 45.504599 - ] - }, - "id": 1512, - "properties": { - "id": "36bd50e2-1478-4fd8-8def-c1c8e0359032", - "code": "34427", - "data": { - "stops": [ - { - "id": "4427", - "code": "34427", - "data": { - "gtfs": { - "stop_id": "4427", - "stop_code": "34427", - "stop_name": "Saint-Georges et Saint-Gérald", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Georges et Saint-Gérald", - "geography": { - "type": "Point", - "coordinates": [ - -73.494203293817, - 45.5042801897836 - ] - } - }, - { - "id": "4526", - "code": "34526", - "data": { - "gtfs": { - "stop_id": "4526", - "stop_code": "34526", - "stop_name": "Saint-Georges et av. Saint-Charles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Saint-Georges et av. Saint-Charles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4946218110926, - 45.5049184777367 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2231684974662 - }, - "name": "Saint-Georges et Saint-Gérald", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.494412552, - 45.504599334 - ] - }, - "is_frozen": false, - "integer_id": 1512, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469178, - 45.466071 - ] - }, - "id": 1513, - "properties": { - "id": "f918d7a1-5ef2-49fe-804a-82b89a78a1c1", - "code": "34429", - "data": { - "stops": [ - { - "id": "4429", - "code": "34429", - "data": { - "gtfs": { - "stop_id": "4429", - "stop_code": "34429", - "stop_name": "TERMINUS PANAMA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "TERMINUS PANAMA", - "geography": { - "type": "Point", - "coordinates": [ - -73.4691926705555, - 45.4658981396387 - ] - } - }, - { - "id": "5900", - "code": "30778", - "data": { - "gtfs": { - "stop_id": "5900", - "stop_code": "30778", - "stop_name": "TERMINUS PANAMA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "TERMINUS PANAMA", - "geography": { - "type": "Point", - "coordinates": [ - -73.4691623542268, - 45.4662442871241 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5728186370685 - }, - "name": "TERMINUS PANAMA", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469177512, - 45.466071213 - ] - }, - "is_frozen": false, - "integer_id": 1513, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466363, - 45.455438 - ] - }, - "id": 1514, - "properties": { - "id": "8443a69f-fccf-4a19-8d08-6da77269e686", - "code": "34430", - "data": { - "stops": [ - { - "id": "4430", - "code": "34430", - "data": { - "gtfs": { - "stop_id": "4430", - "stop_code": "34430", - "stop_name": "boul. de Rome et boul. Taschereau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et boul. Taschereau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4663632624513, - 45.4554380776142 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3935648422898 - }, - "name": "boul. de Rome et boul. Taschereau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466363262, - 45.455438078 - ] - }, - "is_frozen": false, - "integer_id": 1514, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469053, - 45.443163 - ] - }, - "id": 1515, - "properties": { - "id": "4acdc9d0-ceed-4f33-909d-ba1816a3efcf", - "code": "34431", - "data": { - "stops": [ - { - "id": "4431", - "code": "34431", - "data": { - "gtfs": { - "stop_id": "4431", - "stop_code": "34431", - "stop_name": "av. Océanie et Orsini", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Océanie et Orsini", - "geography": { - "type": "Point", - "coordinates": [ - -73.4690435398486, - 45.4429880359397 - ] - } - }, - { - "id": "5375", - "code": "30115", - "data": { - "gtfs": { - "stop_id": "5375", - "stop_code": "30115", - "stop_name": "av. Océanie et Orsini", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Océanie et Orsini", - "geography": { - "type": "Point", - "coordinates": [ - -73.4690627407246, - 45.4433372927946 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1867501904293 - }, - "name": "av. Océanie et Orsini", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46905314, - 45.443162664 - ] - }, - "is_frozen": false, - "integer_id": 1515, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457751, - 45.536226 - ] - }, - "id": 1516, - "properties": { - "id": "8a5c9ba1-a597-4c12-90c9-b58f8d4f8d95", - "code": "34434", - "data": { - "stops": [ - { - "id": "4434", - "code": "34434", - "data": { - "gtfs": { - "stop_id": "4434", - "stop_code": "34434", - "stop_name": "boul. Jacques-Cartier est et CLSC SIMONNE-MONET-CHARTRAND", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et CLSC SIMONNE-MONET-CHARTRAND", - "geography": { - "type": "Point", - "coordinates": [ - -73.4577514431974, - 45.5362261160847 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7580118906998 - }, - "name": "boul. Jacques-Cartier est et CLSC SIMONNE-MONET-CHARTRAND", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457751443, - 45.536226116 - ] - }, - "is_frozen": false, - "integer_id": 1516, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461097, - 45.594586 - ] - }, - "id": 1517, - "properties": { - "id": "0c601e52-04e5-43e0-9137-7225c37d4cdc", - "code": "34435", - "data": { - "stops": [ - { - "id": "4435", - "code": "34435", - "data": { - "gtfs": { - "stop_id": "4435", - "stop_code": "34435", - "stop_name": "boul. Marie-Victorin et rte 132 ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et rte 132 ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4610242534824, - 45.5944569284663 - ] - } - }, - { - "id": "5471", - "code": "30218", - "data": { - "gtfs": { - "stop_id": "5471", - "stop_code": "30218", - "stop_name": "boul. Marie-Victorin et rte 132 ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et rte 132 ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4611689278219, - 45.5947149792745 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7472837040252 - }, - "name": "boul. Marie-Victorin et rte 132 ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461096591, - 45.594585954 - ] - }, - "is_frozen": false, - "integer_id": 1517, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.390664, - 45.473736 - ] - }, - "id": 1518, - "properties": { - "id": "b9093d84-9af5-4f2a-93ad-1688b71ea956", - "code": "34438", - "data": { - "stops": [ - { - "id": "4438", - "code": "34438", - "data": { - "gtfs": { - "stop_id": "4438", - "stop_code": "34438", - "stop_name": "1re Rue et civique 3500", - "location_type": 0, - "parent_station": "" - } - }, - "name": "1re Rue et civique 3500", - "geography": { - "type": "Point", - "coordinates": [ - -73.3906643156183, - 45.4737357405302 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.702089794459 - }, - "name": "1re Rue et civique 3500", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.390664316, - 45.473735741 - ] - }, - "is_frozen": false, - "integer_id": 1518, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.387485, - 45.477639 - ] - }, - "id": 1519, - "properties": { - "id": "7a57d6b0-c7c3-4126-8d8e-15b73700298c", - "code": "34439", - "data": { - "stops": [ - { - "id": "4439", - "code": "34439", - "data": { - "gtfs": { - "stop_id": "4439", - "stop_code": "34439", - "stop_name": "2e Rue et civique 3200", - "location_type": 0, - "parent_station": "" - } - }, - "name": "2e Rue et civique 3200", - "geography": { - "type": "Point", - "coordinates": [ - -73.387485035331, - 45.4776391309232 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7679450487411 - }, - "name": "2e Rue et civique 3200", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.387485035, - 45.477639131 - ] - }, - "is_frozen": false, - "integer_id": 1519, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.392877, - 45.474682 - ] - }, - "id": 1520, - "properties": { - "id": "bc2d979c-1e8c-4c22-b201-faf3b0883de7", - "code": "34440", - "data": { - "stops": [ - { - "id": "4440", - "code": "34440", - "data": { - "gtfs": { - "stop_id": "4440", - "stop_code": "34440", - "stop_name": "1re Rue et civique 3415", - "location_type": 0, - "parent_station": "" - } - }, - "name": "1re Rue et civique 3415", - "geography": { - "type": "Point", - "coordinates": [ - -73.3928768016093, - 45.4746815663999 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.71804584696 - }, - "name": "1re Rue et civique 3415", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.392876802, - 45.474681566 - ] - }, - "is_frozen": false, - "integer_id": 1520, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.391376, - 45.477244 - ] - }, - "id": 1521, - "properties": { - "id": "4e8e590f-c7fc-411e-a553-507fa178df0d", - "code": "34441", - "data": { - "stops": [ - { - "id": "4441", - "code": "34441", - "data": { - "gtfs": { - "stop_id": "4441", - "stop_code": "34441", - "stop_name": "1re Rue et civique 3275", - "location_type": 0, - "parent_station": "" - } - }, - "name": "1re Rue et civique 3275", - "geography": { - "type": "Point", - "coordinates": [ - -73.3913764253784, - 45.4772440737111 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7612793088593 - }, - "name": "1re Rue et civique 3275", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.391376425, - 45.477244074 - ] - }, - "is_frozen": false, - "integer_id": 1521, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441888, - 45.458311 - ] - }, - "id": 1522, - "properties": { - "id": "1449efa8-6a20-4d2f-bc23-aca981e0e0f6", - "code": "34444", - "data": { - "stops": [ - { - "id": "4444", - "code": "34444", - "data": { - "gtfs": { - "stop_id": "4444", - "stop_code": "34444", - "stop_name": "STATIONNEMENT INCITATIF CHEVRIER", - "location_type": 0, - "parent_station": "" - } - }, - "name": "STATIONNEMENT INCITATIF CHEVRIER", - "geography": { - "type": "Point", - "coordinates": [ - -73.4418689636485, - 45.4581913018884 - ] - } - }, - { - "id": "4445", - "code": "34445", - "data": { - "gtfs": { - "stop_id": "4445", - "stop_code": "34445", - "stop_name": "STATIONNEMENT INCITATIF CHEVRIER", - "location_type": 0, - "parent_station": "" - } - }, - "name": "STATIONNEMENT INCITATIF CHEVRIER", - "geography": { - "type": "Point", - "coordinates": [ - -73.441907270874, - 45.4584312025192 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4419910254478 - }, - "name": "STATIONNEMENT INCITATIF CHEVRIER", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441888117, - 45.458311252 - ] - }, - "is_frozen": false, - "integer_id": 1522, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468117, - 45.468818 - ] - }, - "id": 1523, - "properties": { - "id": "ca949fb8-c954-4a87-ab5c-c758f36efd09", - "code": "34454", - "data": { - "stops": [ - { - "id": "4454", - "code": "34454", - "data": { - "gtfs": { - "stop_id": "4454", - "stop_code": "34454", - "stop_name": "boul. Taschereau et BURGER KING", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et BURGER KING", - "geography": { - "type": "Point", - "coordinates": [ - -73.468116862315, - 45.4688180846348 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6191418224934 - }, - "name": "boul. Taschereau et BURGER KING", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468116862, - 45.468818085 - ] - }, - "is_frozen": false, - "integer_id": 1523, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.510039, - 45.49412 - ] - }, - "id": 1524, - "properties": { - "id": "5d15d6e1-5f1d-4e9c-8c3a-63a3b3f11da3", - "code": "34458", - "data": { - "stops": [ - { - "id": "4458", - "code": "34458", - "data": { - "gtfs": { - "stop_id": "4458", - "stop_code": "34458", - "stop_name": "boul. Sir-Wilfrid-Laurier et Osborne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier et Osborne", - "geography": { - "type": "Point", - "coordinates": [ - -73.5100391088492, - 45.4941202840608 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0461527772187 - }, - "name": "boul. Sir-Wilfrid-Laurier et Osborne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.510039109, - 45.494120284 - ] - }, - "is_frozen": false, - "integer_id": 1524, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.508091, - 45.494108 - ] - }, - "id": 1525, - "properties": { - "id": "17130fb5-7835-48a4-911b-07c08af792bb", - "code": "34459", - "data": { - "stops": [ - { - "id": "4459", - "code": "34459", - "data": { - "gtfs": { - "stop_id": "4459", - "stop_code": "34459", - "stop_name": "boul. Sir-Wilfrid-Laurier et du Prince-Arthur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier et du Prince-Arthur", - "geography": { - "type": "Point", - "coordinates": [ - -73.5080909449178, - 45.4941077859495 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0459417150272 - }, - "name": "boul. Sir-Wilfrid-Laurier et du Prince-Arthur", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.508090945, - 45.494107786 - ] - }, - "is_frozen": false, - "integer_id": 1525, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.505483, - 45.494097 - ] - }, - "id": 1526, - "properties": { - "id": "f09bea25-9e7f-4f46-8a1e-1137fbe57059", - "code": "34460", - "data": { - "stops": [ - { - "id": "4460", - "code": "34460", - "data": { - "gtfs": { - "stop_id": "4460", - "stop_code": "34460", - "stop_name": "boul. Sir-Wilfrid-Laurier et boul. Queen", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier et boul. Queen", - "geography": { - "type": "Point", - "coordinates": [ - -73.5054827148706, - 45.4940966676626 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0457539579472 - }, - "name": "boul. Sir-Wilfrid-Laurier et boul. Queen", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.505482715, - 45.494096668 - ] - }, - "is_frozen": false, - "integer_id": 1526, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.510565, - 45.49441 - ] - }, - "id": 1527, - "properties": { - "id": "c56a5ffb-5390-4f94-8172-c9ab40c1a523", - "code": "34462", - "data": { - "stops": [ - { - "id": "4462", - "code": "34462", - "data": { - "gtfs": { - "stop_id": "4462", - "stop_code": "34462", - "stop_name": "Osborne et boul. Sir-Wilfrid-Laurier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Osborne et boul. Sir-Wilfrid-Laurier", - "geography": { - "type": "Point", - "coordinates": [ - -73.5105651398047, - 45.4944095941889 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0510385899843 - }, - "name": "Osborne et boul. Sir-Wilfrid-Laurier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.51056514, - 45.494409594 - ] - }, - "is_frozen": false, - "integer_id": 1527, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.510563, - 45.493427 - ] - }, - "id": 1528, - "properties": { - "id": "b1a22815-cfc5-4e07-95ed-3ff84f5dc613", - "code": "34463", - "data": { - "stops": [ - { - "id": "4463", - "code": "34463", - "data": { - "gtfs": { - "stop_id": "4463", - "stop_code": "34463", - "stop_name": "Osborne et av. Macaulay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Osborne et av. Macaulay", - "geography": { - "type": "Point", - "coordinates": [ - -73.5105630458339, - 45.4934267725548 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0344411972501 - }, - "name": "Osborne et av. Macaulay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.510563046, - 45.493426773 - ] - }, - "is_frozen": false, - "integer_id": 1528, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.498363, - 45.516108 - ] - }, - "id": 1529, - "properties": { - "id": "d32c5a5b-6e6f-48c3-9f4e-37b94ed6e20d", - "code": "34468", - "data": { - "stops": [ - { - "id": "4468", - "code": "34468", - "data": { - "gtfs": { - "stop_id": "4468", - "stop_code": "34468", - "stop_name": "ch. du Coteau-Rouge et Papineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Papineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4983107877699, - 45.515939786531 - ] - } - }, - { - "id": "4479", - "code": "34479", - "data": { - "gtfs": { - "stop_id": "4479", - "stop_code": "34479", - "stop_name": "ch. du Coteau-Rouge et Papineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Papineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4984156150158, - 45.5162757769491 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4176857765865 - }, - "name": "ch. du Coteau-Rouge et Papineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.498363201, - 45.516107782 - ] - }, - "is_frozen": false, - "integer_id": 1529, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.497116, - 45.519558 - ] - }, - "id": 1530, - "properties": { - "id": "161f72ac-926f-49be-80a4-a3cb10884d02", - "code": "34470", - "data": { - "stops": [ - { - "id": "4470", - "code": "34470", - "data": { - "gtfs": { - "stop_id": "4470", - "stop_code": "34470", - "stop_name": "ch. du Coteau-Rouge et Cartier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Cartier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4970200318191, - 45.5194149116805 - ] - } - }, - { - "id": "4477", - "code": "34477", - "data": { - "gtfs": { - "stop_id": "4477", - "stop_code": "34477", - "stop_name": "ch. du Coteau-Rouge et Cartier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Cartier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4972126386367, - 45.5197009956064 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4760247896039 - }, - "name": "ch. du Coteau-Rouge et Cartier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.497116, - 45.519558 - ] - }, - "is_frozen": false, - "integer_id": 1530, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.497258, - 45.521659 - ] - }, - "id": 1531, - "properties": { - "id": "6c8872a8-685f-49ed-9246-92743dd113de", - "code": "34471", - "data": { - "stops": [ - { - "id": "4471", - "code": "34471", - "data": { - "gtfs": { - "stop_id": "4471", - "stop_code": "34471", - "stop_name": "ch. du Coteau-Rouge et Dollard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Dollard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4971048909342, - 45.5215161497718 - ] - } - }, - { - "id": "4476", - "code": "34476", - "data": { - "gtfs": { - "stop_id": "4476", - "stop_code": "34476", - "stop_name": "ch. du Coteau-Rouge et Dollard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Coteau-Rouge et Dollard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4974109524996, - 45.5218021172978 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5115553535529 - }, - "name": "ch. du Coteau-Rouge et Dollard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.497258, - 45.521659 - ] - }, - "is_frozen": false, - "integer_id": 1531, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.552109, - 45.487253 - ] - }, - "id": 1532, - "properties": { - "id": "b622f016-a8e6-4f2a-835d-417fa16ddd32", - "code": "34484", - "data": { - "stops": [ - { - "id": "4484", - "code": "34484", - "data": { - "gtfs": { - "stop_id": "4484", - "stop_code": "34484", - "stop_name": "Mill et Bridge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Mill et Bridge", - "geography": { - "type": "Point", - "coordinates": [ - -73.5521089002176, - 45.4872525591423 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.930193787828 - }, - "name": "Mill et Bridge", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.5521089, - 45.487252559 - ] - }, - "is_frozen": false, - "integer_id": 1532, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.555184, - 45.499089 - ] - }, - "id": 1533, - "properties": { - "id": "8e6eba9f-71d7-47ba-ab56-7f4eadc64281", - "code": "34486", - "data": { - "stops": [ - { - "id": "4486", - "code": "34486", - "data": { - "gtfs": { - "stop_id": "4486", - "stop_code": "34486", - "stop_name": "Wellington et des Soeurs-Grises", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Wellington et des Soeurs-Grises", - "geography": { - "type": "Point", - "coordinates": [ - -73.5551838299467, - 45.4990893526477 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.130079821037 - }, - "name": "Wellington et des Soeurs-Grises", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.55518383, - 45.499089353 - ] - }, - "is_frozen": false, - "integer_id": 1533, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.405356, - 45.47876 - ] - }, - "id": 1534, - "properties": { - "id": "9a8dc92f-8883-4536-8459-08c71c110b3b", - "code": "34498", - "data": { - "stops": [ - { - "id": "4498", - "code": "34498", - "data": { - "gtfs": { - "stop_id": "4498", - "stop_code": "34498", - "stop_name": "boul. Julien-Bouthillier et Ovila-Hamel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Julien-Bouthillier et Ovila-Hamel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4052541556409, - 45.4787015925445 - ] - } - }, - { - "id": "5115", - "code": "35115", - "data": { - "gtfs": { - "stop_id": "5115", - "stop_code": "35115", - "stop_name": "Ovila-Hamel et boul. Julien-Bouthillier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ovila-Hamel et boul. Julien-Bouthillier", - "geography": { - "type": "Point", - "coordinates": [ - -73.405457094099, - 45.4788180883953 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7868553650186 - }, - "name": "boul. Julien-Bouthillier et Ovila-Hamel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.405355625, - 45.47875984 - ] - }, - "is_frozen": false, - "integer_id": 1534, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.402121, - 45.477478 - ] - }, - "id": 1535, - "properties": { - "id": "15f5258e-a1ce-4027-8766-29bb39d270b4", - "code": "34499", - "data": { - "stops": [ - { - "id": "4499", - "code": "34499", - "data": { - "gtfs": { - "stop_id": "4499", - "stop_code": "34499", - "stop_name": "boul. Julien-Bouthillier et des Pervenches", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Julien-Bouthillier et des Pervenches", - "geography": { - "type": "Point", - "coordinates": [ - -73.4023670280232, - 45.4774816341888 - ] - } - }, - { - "id": "4500", - "code": "34500", - "data": { - "gtfs": { - "stop_id": "4500", - "stop_code": "34500", - "stop_name": "boul. Julien-Bouthillier et Pierre-Thomas-Hurteau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Julien-Bouthillier et Pierre-Thomas-Hurteau", - "geography": { - "type": "Point", - "coordinates": [ - -73.401874922734, - 45.4774748299043 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7652302063426 - }, - "name": "boul. Julien-Bouthillier et des Pervenches", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.402120975, - 45.477478232 - ] - }, - "is_frozen": false, - "integer_id": 1535, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.399993, - 45.476192 - ] - }, - "id": 1536, - "properties": { - "id": "5b05f00d-fd81-4604-b07f-a519f2a652e9", - "code": "34501", - "data": { - "stops": [ - { - "id": "4501", - "code": "34501", - "data": { - "gtfs": { - "stop_id": "4501", - "stop_code": "34501", - "stop_name": "boul. Julien-Bouthillier et boul. Moïse-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Julien-Bouthillier et boul. Moïse-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.3998839314492, - 45.476434643515 - ] - } - }, - { - "id": "4502", - "code": "34502", - "data": { - "gtfs": { - "stop_id": "4502", - "stop_code": "34502", - "stop_name": "boul. Moïse-Vincent et civique 3809", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Moïse-Vincent et civique 3809", - "geography": { - "type": "Point", - "coordinates": [ - -73.4001014708142, - 45.4759485906869 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7435220301942 - }, - "name": "boul. Julien-Bouthillier et boul. Moïse-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.399992701, - 45.476191617 - ] - }, - "is_frozen": false, - "integer_id": 1536, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465502, - 45.43359 - ] - }, - "id": 1537, - "properties": { - "id": "1d638a17-5a2b-40f7-a0cc-6db81666104e", - "code": "34506", - "data": { - "stops": [ - { - "id": "4506", - "code": "34506", - "data": { - "gtfs": { - "stop_id": "4506", - "stop_code": "34506", - "stop_name": "Oméga et av. Oligny", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Oméga et av. Oligny", - "geography": { - "type": "Point", - "coordinates": [ - -73.4654294796751, - 45.4336504142552 - ] - } - }, - { - "id": "4704", - "code": "34704", - "data": { - "gtfs": { - "stop_id": "4704", - "stop_code": "34704", - "stop_name": "av. Oligny et Oméga", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Oligny et Oméga", - "geography": { - "type": "Point", - "coordinates": [ - -73.4655735705364, - 45.4335294409061 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0255626339672 - }, - "name": "Oméga et av. Oligny", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465501525, - 45.433589928 - ] - }, - "is_frozen": false, - "integer_id": 1537, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469022, - 45.434768 - ] - }, - "id": 1538, - "properties": { - "id": "f36c7de3-84dd-4573-ac69-91ccd87efd4f", - "code": "34507", - "data": { - "stops": [ - { - "id": "4507", - "code": "34507", - "data": { - "gtfs": { - "stop_id": "4507", - "stop_code": "34507", - "stop_name": "av. Oligny et Othello", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Oligny et Othello", - "geography": { - "type": "Point", - "coordinates": [ - -73.4688650860553, - 45.4347902772926 - ] - } - }, - { - "id": "4716", - "code": "34716", - "data": { - "gtfs": { - "stop_id": "4716", - "stop_code": "34716", - "stop_name": "av. Oligny et Othello", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Oligny et Othello", - "geography": { - "type": "Point", - "coordinates": [ - -73.4691786400623, - 45.4347458141651 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0453956277055 - }, - "name": "av. Oligny et Othello", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469021863, - 45.434768046 - ] - }, - "is_frozen": false, - "integer_id": 1538, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.471462, - 45.435559 - ] - }, - "id": 1539, - "properties": { - "id": "8976efc5-4791-48a0-8f7a-a0e34e6a5f49", - "code": "34508", - "data": { - "stops": [ - { - "id": "4508", - "code": "34508", - "data": { - "gtfs": { - "stop_id": "4508", - "stop_code": "34508", - "stop_name": "av. Oligny et civique 9085", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Oligny et civique 9085", - "geography": { - "type": "Point", - "coordinates": [ - -73.4712708339572, - 45.4355736715947 - ] - } - }, - { - "id": "4717", - "code": "34717", - "data": { - "gtfs": { - "stop_id": "4717", - "stop_code": "34717", - "stop_name": "av. Oligny et civique 9080", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Oligny et civique 9080", - "geography": { - "type": "Point", - "coordinates": [ - -73.4716530014631, - 45.4355448700732 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0587161726176 - }, - "name": "av. Oligny et civique 9085", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.471461918, - 45.435559271 - ] - }, - "is_frozen": false, - "integer_id": 1539, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.470607, - 45.437793 - ] - }, - "id": 1540, - "properties": { - "id": "3eb5b313-c26d-472e-a3c1-397c7596c769", - "code": "34509", - "data": { - "stops": [ - { - "id": "4509", - "code": "34509", - "data": { - "gtfs": { - "stop_id": "4509", - "stop_code": "34509", - "stop_name": "av. Oligny et ch. des Prairies", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Oligny et ch. des Prairies", - "geography": { - "type": "Point", - "coordinates": [ - -73.4705221049227, - 45.4377942284454 - ] - } - }, - { - "id": "4718", - "code": "34718", - "data": { - "gtfs": { - "stop_id": "4718", - "stop_code": "34718", - "stop_name": "av. Oligny et ch. des Prairies", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Oligny et ch. des Prairies", - "geography": { - "type": "Point", - "coordinates": [ - -73.4709171949647, - 45.4376607041971 - ] - } - }, - { - "id": "4862", - "code": "34862", - "data": { - "gtfs": { - "stop_id": "4862", - "stop_code": "34862", - "stop_name": "ch. des Prairies et av. Oligny", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et av. Oligny", - "geography": { - "type": "Point", - "coordinates": [ - -73.4702972351565, - 45.4379250295651 - ] - } - }, - { - "id": "5425", - "code": "30168", - "data": { - "gtfs": { - "stop_id": "5425", - "stop_code": "30168", - "stop_name": "ch. des Prairies et av. Oligny", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et av. Oligny", - "geography": { - "type": "Point", - "coordinates": [ - -73.4709055238611, - 45.4378349461297 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0963225226155 - }, - "name": "av. Oligny et ch. des Prairies", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.470607215, - 45.437792867 - ] - }, - "is_frozen": false, - "integer_id": 1540, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.489796, - 45.528075 - ] - }, - "id": 1541, - "properties": { - "id": "ec8a892d-b1ec-472d-a26a-5b38c3ac6966", - "code": "34513", - "data": { - "stops": [ - { - "id": "4513", - "code": "34513", - "data": { - "gtfs": { - "stop_id": "4513", - "stop_code": "34513", - "stop_name": "Daniel et ch. du Coteau-Rouge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Daniel et ch. du Coteau-Rouge", - "geography": { - "type": "Point", - "coordinates": [ - -73.4897959105022, - 45.5280754919884 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6200823659682 - }, - "name": "Daniel et ch. du Coteau-Rouge", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.489796, - 45.528075 - ] - }, - "is_frozen": false, - "integer_id": 1541, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.488921, - 45.531747 - ] - }, - "id": 1542, - "properties": { - "id": "a484746b-f716-4eab-ae1c-c7c08714d651", - "code": "34514", - "data": { - "stops": [ - { - "id": "4514", - "code": "34514", - "data": { - "gtfs": { - "stop_id": "4514", - "stop_code": "34514", - "stop_name": "Briggs ouest et Grant", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Briggs ouest et Grant", - "geography": { - "type": "Point", - "coordinates": [ - -73.488920600236, - 45.5317473294445 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.682210968515 - }, - "name": "Briggs ouest et Grant", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.488921, - 45.531747 - ] - }, - "is_frozen": false, - "integer_id": 1542, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.489656, - 45.530527 - ] - }, - "id": 1543, - "properties": { - "id": "17183bd2-c06f-4999-9774-43fb48004315", - "code": "34515", - "data": { - "stops": [ - { - "id": "4515", - "code": "34515", - "data": { - "gtfs": { - "stop_id": "4515", - "stop_code": "34515", - "stop_name": "Briggs ouest et Saint-Jacques", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Briggs ouest et Saint-Jacques", - "geography": { - "type": "Point", - "coordinates": [ - -73.4896738435897, - 45.5306514524279 - ] - } - }, - { - "id": "4885", - "code": "34885", - "data": { - "gtfs": { - "stop_id": "4885", - "stop_code": "34885", - "stop_name": "Briggs ouest et Saint-Jacques", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Briggs ouest et Saint-Jacques", - "geography": { - "type": "Point", - "coordinates": [ - -73.4896379133201, - 45.5304029272292 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6615677790663 - }, - "name": "Briggs ouest et Saint-Jacques", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.489656, - 45.530527 - ] - }, - "is_frozen": false, - "integer_id": 1543, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.493044, - 45.512579 - ] - }, - "id": 1544, - "properties": { - "id": "7095ff94-e6bf-4956-8b59-9e66be631584", - "code": "34518", - "data": { - "stops": [ - { - "id": "4518", - "code": "34518", - "data": { - "gtfs": { - "stop_id": "4518", - "stop_code": "34518", - "stop_name": "boul. La Fayette et boul. Curé-Poirier ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. La Fayette et boul. Curé-Poirier ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.4930444910582, - 45.5125785065202 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3580209756864 - }, - "name": "boul. La Fayette et boul. Curé-Poirier ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493044491, - 45.512578507 - ] - }, - "is_frozen": false, - "integer_id": 1544, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.408318, - 45.495441 - ] - }, - "id": 1545, - "properties": { - "id": "d1cd707b-8ed5-4d1d-b1cb-7633cade451b", - "code": "34527", - "data": { - "stops": [ - { - "id": "4527", - "code": "34527", - "data": { - "gtfs": { - "stop_id": "4527", - "stop_code": "34527", - "stop_name": "boul. Gaétan-Boucher et TIM HORTON", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et TIM HORTON", - "geography": { - "type": "Point", - "coordinates": [ - -73.4083181447784, - 45.4954408344137 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.06845458244 - }, - "name": "boul. Gaétan-Boucher et TIM HORTON", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.408318145, - 45.495440834 - ] - }, - "is_frozen": false, - "integer_id": 1545, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448011, - 45.600023 - ] - }, - "id": 1546, - "properties": { - "id": "7b6b7eaa-b4c0-4df2-8bb3-b473108c2916", - "code": "34533", - "data": { - "stops": [ - { - "id": "4533", - "code": "34533", - "data": { - "gtfs": { - "stop_id": "4533", - "stop_code": "34533", - "stop_name": "boul. De Montarville et rte 132 est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et rte 132 est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4480109655655, - 45.6000229100392 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8396019576376 - }, - "name": "boul. De Montarville et rte 132 est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448010966, - 45.60002291 - ] - }, - "is_frozen": false, - "integer_id": 1546, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.484576, - 45.435426 - ] - }, - "id": 1547, - "properties": { - "id": "7a321951-38aa-4886-b297-59c69bcf3448", - "code": "34541", - "data": { - "stops": [ - { - "id": "4541", - "code": "34541", - "data": { - "gtfs": { - "stop_id": "4541", - "stop_code": "34541", - "stop_name": "boul. Matte et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Matte et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4845758698136, - 45.4354262104774 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0564760061347 - }, - "name": "boul. Matte et Passage piétonnier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48457587, - 45.43542621 - ] - }, - "is_frozen": false, - "integer_id": 1547, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.330795, - 45.530165 - ] - }, - "id": 1548, - "properties": { - "id": "93fcd4a5-ee80-4c79-b0bc-547231801133", - "code": "34542", - "data": { - "stops": [ - { - "id": "4542", - "code": "34542", - "data": { - "gtfs": { - "stop_id": "4542", - "stop_code": "34542", - "stop_name": "boul. De Boucherville et du Parc", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et du Parc", - "geography": { - "type": "Point", - "coordinates": [ - -73.3305776486232, - 45.5302245802101 - ] - } - }, - { - "id": "4570", - "code": "34570", - "data": { - "gtfs": { - "stop_id": "4570", - "stop_code": "34570", - "stop_name": "boul. De Boucherville et boul. Seigneurial est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et boul. Seigneurial est", - "geography": { - "type": "Point", - "coordinates": [ - -73.3310117653349, - 45.5302969619837 - ] - } - }, - { - "id": "5349", - "code": "30087", - "data": { - "gtfs": { - "stop_id": "5349", - "stop_code": "30087", - "stop_name": "boul. Seigneurial est et boul. De Boucherville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial est et boul. De Boucherville", - "geography": { - "type": "Point", - "coordinates": [ - -73.3309892894893, - 45.5300321466661 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6554352138929 - }, - "name": "boul. De Boucherville et du Parc", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.330794707, - 45.530164554 - ] - }, - "is_frozen": false, - "integer_id": 1548, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.33592, - 45.533677 - ] - }, - "id": 1549, - "properties": { - "id": "59449548-0d0c-41e2-b094-c40114d0f9ce", - "code": "34543", - "data": { - "stops": [ - { - "id": "4543", - "code": "34543", - "data": { - "gtfs": { - "stop_id": "4543", - "stop_code": "34543", - "stop_name": "boul. De Boucherville et ch. De La Rabastalière est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et ch. De La Rabastalière est", - "geography": { - "type": "Point", - "coordinates": [ - -73.3357965342755, - 45.5337218919974 - ] - } - }, - { - "id": "4569", - "code": "34569", - "data": { - "gtfs": { - "stop_id": "4569", - "stop_code": "34569", - "stop_name": "boul. De Boucherville et ch. De La Rabastalière est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et ch. De La Rabastalière est", - "geography": { - "type": "Point", - "coordinates": [ - -73.336043381986, - 45.533631612152 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7148663308777 - }, - "name": "boul. De Boucherville et ch. De La Rabastalière est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.335919958, - 45.533676752 - ] - }, - "is_frozen": false, - "integer_id": 1549, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.341555, - 45.522773 - ] - }, - "id": 1550, - "properties": { - "id": "60ea8a19-f195-4f9b-b60e-122a63bd86bd", - "code": "34550", - "data": { - "stops": [ - { - "id": "4550", - "code": "34550", - "data": { - "gtfs": { - "stop_id": "4550", - "stop_code": "34550", - "stop_name": "boul. Seigneurial ouest et du Verger", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et du Verger", - "geography": { - "type": "Point", - "coordinates": [ - -73.3415761335763, - 45.5229021729207 - ] - } - }, - { - "id": "4562", - "code": "34562", - "data": { - "gtfs": { - "stop_id": "4562", - "stop_code": "34562", - "stop_name": "boul. Seigneurial ouest et du Verger", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et du Verger", - "geography": { - "type": "Point", - "coordinates": [ - -73.3415340749793, - 45.5226443509277 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5304005276017 - }, - "name": "boul. Seigneurial ouest et du Verger", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.341555104, - 45.522773262 - ] - }, - "is_frozen": false, - "integer_id": 1550, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.343181, - 45.521679 - ] - }, - "id": 1551, - "properties": { - "id": "9f67f31c-9015-4b9c-b5eb-210a53be617b", - "code": "34551", - "data": { - "stops": [ - { - "id": "4551", - "code": "34551", - "data": { - "gtfs": { - "stop_id": "4551", - "stop_code": "34551", - "stop_name": "boul. Seigneurial ouest et de Cambrai", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et de Cambrai", - "geography": { - "type": "Point", - "coordinates": [ - -73.3431872849153, - 45.5218155895616 - ] - } - }, - { - "id": "4597", - "code": "34597", - "data": { - "gtfs": { - "stop_id": "4597", - "stop_code": "34597", - "stop_name": "boul. Seigneurial ouest et de Cambrai", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et de Cambrai", - "geography": { - "type": "Point", - "coordinates": [ - -73.343175560203, - 45.52154160274 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5118867651795 - }, - "name": "boul. Seigneurial ouest et de Cambrai", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.343181423, - 45.521678596 - ] - }, - "is_frozen": false, - "integer_id": 1551, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.34439, - 45.519742 - ] - }, - "id": 1552, - "properties": { - "id": "106469e3-38d2-4015-b627-c243c3d7f8cd", - "code": "34552", - "data": { - "stops": [ - { - "id": "4552", - "code": "34552", - "data": { - "gtfs": { - "stop_id": "4552", - "stop_code": "34552", - "stop_name": "boul. Seigneurial ouest et civique 305", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et civique 305", - "geography": { - "type": "Point", - "coordinates": [ - -73.3443897993265, - 45.519741794686 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4791328382447 - }, - "name": "boul. Seigneurial ouest et civique 305", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.344389799, - 45.519741795 - ] - }, - "is_frozen": false, - "integer_id": 1552, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.356468, - 45.523377 - ] - }, - "id": 1553, - "properties": { - "id": "68d27bd7-271c-4390-8856-6b37460af70f", - "code": "34554", - "data": { - "stops": [ - { - "id": "4554", - "code": "34554", - "data": { - "gtfs": { - "stop_id": "4554", - "stop_code": "34554", - "stop_name": "boul. Clairevue ouest et Buies", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et Buies", - "geography": { - "type": "Point", - "coordinates": [ - -73.3565114408288, - 45.5234797384078 - ] - } - }, - { - "id": "4560", - "code": "34560", - "data": { - "gtfs": { - "stop_id": "4560", - "stop_code": "34560", - "stop_name": "boul. Clairevue ouest et Buies", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et Buies", - "geography": { - "type": "Point", - "coordinates": [ - -73.3564240650243, - 45.5232744183421 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5406131460352 - }, - "name": "boul. Clairevue ouest et Buies", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.356467753, - 45.523377078 - ] - }, - "is_frozen": false, - "integer_id": 1553, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.358454, - 45.522112 - ] - }, - "id": 1554, - "properties": { - "id": "e7e2dd97-2e08-4a19-b024-ea6b319bdef6", - "code": "34555", - "data": { - "stops": [ - { - "id": "4555", - "code": "34555", - "data": { - "gtfs": { - "stop_id": "4555", - "stop_code": "34555", - "stop_name": "boul. Clairevue ouest et Deslières", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et Deslières", - "geography": { - "type": "Point", - "coordinates": [ - -73.3583919774638, - 45.5223352372998 - ] - } - }, - { - "id": "4559", - "code": "34559", - "data": { - "gtfs": { - "stop_id": "4559", - "stop_code": "34559", - "stop_name": "boul. Clairevue ouest et Deslières", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et Deslières", - "geography": { - "type": "Point", - "coordinates": [ - -73.3585160139818, - 45.5218886186075 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5192154535011 - }, - "name": "boul. Clairevue ouest et Deslières", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.358453996, - 45.522111928 - ] - }, - "is_frozen": false, - "integer_id": 1554, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.34636, - 45.51864 - ] - }, - "id": 1555, - "properties": { - "id": "5c28c22e-79f1-4a2c-9171-d9cc96f1af7d", - "code": "34556", - "data": { - "stops": [ - { - "id": "4556", - "code": "34556", - "data": { - "gtfs": { - "stop_id": "4556", - "stop_code": "34556", - "stop_name": "De Chambly et ch. De La Rabastalière ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Chambly et ch. De La Rabastalière ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3462130241681, - 45.5186133325114 - ] - } - }, - { - "id": "4591", - "code": "34591", - "data": { - "gtfs": { - "stop_id": "4591", - "stop_code": "34591", - "stop_name": "ch. De La Rabastalière ouest et De Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. De La Rabastalière ouest et De Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.3465062648606, - 45.5186661570285 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4604971726765 - }, - "name": "De Chambly et ch. De La Rabastalière ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.346359645, - 45.518639745 - ] - }, - "is_frozen": false, - "integer_id": 1555, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.368542, - 45.520282 - ] - }, - "id": 1556, - "properties": { - "id": "0ccfcd51-933c-4e3d-9ea5-d22b41c2c7b6", - "code": "34558", - "data": { - "stops": [ - { - "id": "4558", - "code": "34558", - "data": { - "gtfs": { - "stop_id": "4558", - "stop_code": "34558", - "stop_name": "boul. Clairevue ouest et CIVIQUE 1250", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et CIVIQUE 1250", - "geography": { - "type": "Point", - "coordinates": [ - -73.3685424609813, - 45.5202818600141 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4882657324843 - }, - "name": "boul. Clairevue ouest et CIVIQUE 1250", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.368542461, - 45.52028186 - ] - }, - "is_frozen": false, - "integer_id": 1556, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.342627, - 45.531642 - ] - }, - "id": 1557, - "properties": { - "id": "6a18cdcb-7d78-46ad-a358-7895b3877421", - "code": "34566", - "data": { - "stops": [ - { - "id": "4566", - "code": "34566", - "data": { - "gtfs": { - "stop_id": "4566", - "stop_code": "34566", - "stop_name": "boul. Clairevue est et Goyer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue est et Goyer", - "geography": { - "type": "Point", - "coordinates": [ - -73.342688049745, - 45.5315105893067 - ] - } - }, - { - "id": "4680", - "code": "34680", - "data": { - "gtfs": { - "stop_id": "4680", - "stop_code": "34680", - "stop_name": "Goyer et boul. Clairevue est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Goyer et boul. Clairevue est", - "geography": { - "type": "Point", - "coordinates": [ - -73.3425111202574, - 45.5315898012639 - ] - } - }, - { - "id": "5170", - "code": "35170", - "data": { - "gtfs": { - "stop_id": "5170", - "stop_code": "35170", - "stop_name": "boul. Clairevue est et Goyer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue est et Goyer", - "geography": { - "type": "Point", - "coordinates": [ - -73.3427437037752, - 45.5317736050605 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.680435889725 - }, - "name": "boul. Clairevue est et Goyer", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.342627412, - 45.531642097 - ] - }, - "is_frozen": false, - "integer_id": 1557, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.34158, - 45.532406 - ] - }, - "id": 1558, - "properties": { - "id": "b96762ce-57d1-4d28-bc37-afabeacae179", - "code": "34567", - "data": { - "stops": [ - { - "id": "4567", - "code": "34567", - "data": { - "gtfs": { - "stop_id": "4567", - "stop_code": "34567", - "stop_name": "boul. Clairevue est et Mignault", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue est et Mignault", - "geography": { - "type": "Point", - "coordinates": [ - -73.3413686878926, - 45.532411054447 - ] - } - }, - { - "id": "5169", - "code": "35169", - "data": { - "gtfs": { - "stop_id": "5169", - "stop_code": "35169", - "stop_name": "boul. Clairevue est et Lionel-H.-Grisé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue est et Lionel-H.-Grisé", - "geography": { - "type": "Point", - "coordinates": [ - -73.3417916774507, - 45.5324007098157 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6933602302032 - }, - "name": "boul. Clairevue est et Mignault", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.341580183, - 45.532405882 - ] - }, - "is_frozen": false, - "integer_id": 1558, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.337192, - 45.534222 - ] - }, - "id": 1559, - "properties": { - "id": "3860f604-02bd-44a8-9d62-54ba0366b85f", - "code": "34568", - "data": { - "stops": [ - { - "id": "4568", - "code": "34568", - "data": { - "gtfs": { - "stop_id": "4568", - "stop_code": "34568", - "stop_name": "boul. Clairevue est et civique 352", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue est et civique 352", - "geography": { - "type": "Point", - "coordinates": [ - -73.3373459279378, - 45.5340901430333 - ] - } - }, - { - "id": "4661", - "code": "34661", - "data": { - "gtfs": { - "stop_id": "4661", - "stop_code": "34661", - "stop_name": "boul. De Boucherville et boul. Clairevue est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et boul. Clairevue est", - "geography": { - "type": "Point", - "coordinates": [ - -73.3370380288371, - 45.5343533081966 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7240890101777 - }, - "name": "boul. Clairevue est et civique 352", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.337191978, - 45.534221726 - ] - }, - "is_frozen": false, - "integer_id": 1559, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.324495, - 45.525507 - ] - }, - "id": 1560, - "properties": { - "id": "4f0816d5-67e0-4d4d-9413-6e045052da5f", - "code": "34571", - "data": { - "stops": [ - { - "id": "4571", - "code": "34571", - "data": { - "gtfs": { - "stop_id": "4571", - "stop_code": "34571", - "stop_name": "boul. De Boucherville et Beaumont ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et Beaumont ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3246611254036, - 45.525508443053 - ] - } - }, - { - "id": "4668", - "code": "34668", - "data": { - "gtfs": { - "stop_id": "4668", - "stop_code": "34668", - "stop_name": "boul. De Boucherville et Beaumont est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et Beaumont est", - "geography": { - "type": "Point", - "coordinates": [ - -73.324329196658, - 45.5255059579361 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5766434765636 - }, - "name": "boul. De Boucherville et Beaumont ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.324495161, - 45.5255072 - ] - }, - "is_frozen": false, - "integer_id": 1560, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.321159, - 45.522677 - ] - }, - "id": 1561, - "properties": { - "id": "2f7b8d9b-b050-40bc-a84f-3f8f7e99693b", - "code": "34572", - "data": { - "stops": [ - { - "id": "4572", - "code": "34572", - "data": { - "gtfs": { - "stop_id": "4572", - "stop_code": "34572", - "stop_name": "boul. De Boucherville et Raymond", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et Raymond", - "geography": { - "type": "Point", - "coordinates": [ - -73.3211631709335, - 45.5225260147522 - ] - } - }, - { - "id": "5165", - "code": "35165", - "data": { - "gtfs": { - "stop_id": "5165", - "stop_code": "35165", - "stop_name": "boul. De Boucherville et De Salaberry", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et De Salaberry", - "geography": { - "type": "Point", - "coordinates": [ - -73.3211548388392, - 45.5228273923149 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5287674277557 - }, - "name": "boul. De Boucherville et Raymond", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.321159005, - 45.522676704 - ] - }, - "is_frozen": false, - "integer_id": 1561, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.318874, - 45.520748 - ] - }, - "id": 1562, - "properties": { - "id": "5f32a25e-7895-498c-b5cd-182adcfb40dd", - "code": "34573", - "data": { - "stops": [ - { - "id": "4573", - "code": "34573", - "data": { - "gtfs": { - "stop_id": "4573", - "stop_code": "34573", - "stop_name": "boul. De Boucherville et civique 2177", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et civique 2177", - "geography": { - "type": "Point", - "coordinates": [ - -73.3192134199117, - 45.5208766854226 - ] - } - }, - { - "id": "4667", - "code": "34667", - "data": { - "gtfs": { - "stop_id": "4667", - "stop_code": "34667", - "stop_name": "boul. De Boucherville et De Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et De Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.3185337660496, - 45.5206193755396 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4961492171803 - }, - "name": "boul. De Boucherville et civique 2177", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.318873593, - 45.52074803 - ] - }, - "is_frozen": false, - "integer_id": 1562, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.353599, - 45.54455 - ] - }, - "id": 1563, - "properties": { - "id": "a09525fc-24fb-44bc-87d9-67be178e23ec", - "code": "34576", - "data": { - "stops": [ - { - "id": "4576", - "code": "34576", - "data": { - "gtfs": { - "stop_id": "4576", - "stop_code": "34576", - "stop_name": "Yvonne-Duckett et Laure-Conan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Yvonne-Duckett et Laure-Conan", - "geography": { - "type": "Point", - "coordinates": [ - -73.3535990680045, - 45.544550370076 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8989323380633 - }, - "name": "Yvonne-Duckett et Laure-Conan", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.353599068, - 45.54455037 - ] - }, - "is_frozen": false, - "integer_id": 1563, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.352815, - 45.542465 - ] - }, - "id": 1564, - "properties": { - "id": "83499710-5b26-4bfd-b649-c008d0b7fde7", - "code": "34577", - "data": { - "stops": [ - { - "id": "4577", - "code": "34577", - "data": { - "gtfs": { - "stop_id": "4577", - "stop_code": "34577", - "stop_name": "Yvonne-Duckett et Marcelle-Barthe", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Yvonne-Duckett et Marcelle-Barthe", - "geography": { - "type": "Point", - "coordinates": [ - -73.3528145501872, - 45.5424651449529 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8636259731661 - }, - "name": "Yvonne-Duckett et Marcelle-Barthe", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.35281455, - 45.542465145 - ] - }, - "is_frozen": false, - "integer_id": 1564, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.354096, - 45.53614 - ] - }, - "id": 1565, - "properties": { - "id": "ab32c22a-056a-40bc-bb99-58c049d50498", - "code": "34578", - "data": { - "stops": [ - { - "id": "4578", - "code": "34578", - "data": { - "gtfs": { - "stop_id": "4578", - "stop_code": "34578", - "stop_name": "Montarville et De Pontbriand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et De Pontbriand", - "geography": { - "type": "Point", - "coordinates": [ - -73.3543847324697, - 45.5362357315602 - ] - } - }, - { - "id": "5701", - "code": "30469", - "data": { - "gtfs": { - "stop_id": "5701", - "stop_code": "30469", - "stop_name": "Montarville et De Pontbriand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et De Pontbriand", - "geography": { - "type": "Point", - "coordinates": [ - -73.353806747721, - 45.5360433440699 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7565465453542 - }, - "name": "Montarville et De Pontbriand", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.35409574, - 45.536139538 - ] - }, - "is_frozen": false, - "integer_id": 1565, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.348763, - 45.532409 - ] - }, - "id": 1566, - "properties": { - "id": "c144cdde-b47b-40cf-b640-e6399771f99b", - "code": "34579", - "data": { - "stops": [ - { - "id": "4579", - "code": "34579", - "data": { - "gtfs": { - "stop_id": "4579", - "stop_code": "34579", - "stop_name": "Montarville et Caillé ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et Caillé ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3489335213585, - 45.5324273747654 - ] - } - }, - { - "id": "5698", - "code": "30466", - "data": { - "gtfs": { - "stop_id": "5698", - "stop_code": "30466", - "stop_name": "Montarville et Caillé est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et Caillé est", - "geography": { - "type": "Point", - "coordinates": [ - -73.3485933614719, - 45.532389745794 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.693405546729 - }, - "name": "Montarville et Caillé ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.348763441, - 45.53240856 - ] - }, - "is_frozen": false, - "integer_id": 1566, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.345329, - 45.530009 - ] - }, - "id": 1567, - "properties": { - "id": "16815d0a-9758-4c90-a572-66e1110e9895", - "code": "34580", - "data": { - "stops": [ - { - "id": "4580", - "code": "34580", - "data": { - "gtfs": { - "stop_id": "4580", - "stop_code": "34580", - "stop_name": "Montarville et boul. Clairevue ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et boul. Clairevue ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.345627098135, - 45.5299849558976 - ] - } - }, - { - "id": "5367", - "code": "30107", - "data": { - "gtfs": { - "stop_id": "5367", - "stop_code": "30107", - "stop_name": "Montarville et boul. Clairevue est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et boul. Clairevue est", - "geography": { - "type": "Point", - "coordinates": [ - -73.3451186044609, - 45.529815653995 - ] - } - }, - { - "id": "5598", - "code": "30347", - "data": { - "gtfs": { - "stop_id": "5598", - "stop_code": "30347", - "stop_name": "boul. Clairevue est et civique 7", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue est et civique 7", - "geography": { - "type": "Point", - "coordinates": [ - -73.3450312427308, - 45.5302032382654 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6528108313674 - }, - "name": "Montarville et boul. Clairevue ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.34532917, - 45.530009446 - ] - }, - "is_frozen": false, - "integer_id": 1567, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.34728, - 45.528687 - ] - }, - "id": 1568, - "properties": { - "id": "bb60f9d1-ae1a-4b44-81e5-f918c5a03052", - "code": "34581", - "data": { - "stops": [ - { - "id": "4581", - "code": "34581", - "data": { - "gtfs": { - "stop_id": "4581", - "stop_code": "34581", - "stop_name": "boul. Clairevue ouest et Roberval", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et Roberval", - "geography": { - "type": "Point", - "coordinates": [ - -73.3472797540022, - 45.5286869100791 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6304347756356 - }, - "name": "boul. Clairevue ouest et Roberval", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.347279754, - 45.52868691 - ] - }, - "is_frozen": false, - "integer_id": 1568, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.328159, - 45.528326 - ] - }, - "id": 1569, - "properties": { - "id": "6b369192-79e8-4382-aaa0-abddf0da08d7", - "code": "34584", - "data": { - "stops": [ - { - "id": "4584", - "code": "34584", - "data": { - "gtfs": { - "stop_id": "4584", - "stop_code": "34584", - "stop_name": "boul. De Boucherville et Orchard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et Orchard", - "geography": { - "type": "Point", - "coordinates": [ - -73.327983150921, - 45.5283224205314 - ] - } - }, - { - "id": "5187", - "code": "35187", - "data": { - "gtfs": { - "stop_id": "5187", - "stop_code": "35187", - "stop_name": "boul. De Boucherville et Orchard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et Orchard", - "geography": { - "type": "Point", - "coordinates": [ - -73.3283354669253, - 45.5283301087409 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6243332745989 - }, - "name": "boul. De Boucherville et Orchard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.328159309, - 45.528326265 - ] - }, - "is_frozen": false, - "integer_id": 1569, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.333064, - 45.52869 - ] - }, - "id": 1570, - "properties": { - "id": "3bbcea32-d474-49cc-8cd8-d77d2bac6158", - "code": "34585", - "data": { - "stops": [ - { - "id": "4585", - "code": "34585", - "data": { - "gtfs": { - "stop_id": "4585", - "stop_code": "34585", - "stop_name": "boul. Seigneurial est et civique 301", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial est et civique 301", - "geography": { - "type": "Point", - "coordinates": [ - -73.3329559402519, - 45.5288617637853 - ] - } - }, - { - "id": "5348", - "code": "30086", - "data": { - "gtfs": { - "stop_id": "5348", - "stop_code": "30086", - "stop_name": "boul. Seigneurial est et civique 201", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial est et civique 201", - "geography": { - "type": "Point", - "coordinates": [ - -73.3331715566829, - 45.5285189216659 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6304928567237 - }, - "name": "boul. Seigneurial est et civique 301", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.333063748, - 45.528690343 - ] - }, - "is_frozen": false, - "integer_id": 1570, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.334653, - 45.527644 - ] - }, - "id": 1571, - "properties": { - "id": "b476282d-aa8d-4826-8ad2-39123a162025", - "code": "34586", - "data": { - "stops": [ - { - "id": "4586", - "code": "34586", - "data": { - "gtfs": { - "stop_id": "4586", - "stop_code": "34586", - "stop_name": "boul. Seigneurial est et Lakeview", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial est et Lakeview", - "geography": { - "type": "Point", - "coordinates": [ - -73.3346487322883, - 45.5277554143084 - ] - } - }, - { - "id": "5347", - "code": "30085", - "data": { - "gtfs": { - "stop_id": "5347", - "stop_code": "30085", - "stop_name": "boul. Seigneurial est et Lakeview", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial est et Lakeview", - "geography": { - "type": "Point", - "coordinates": [ - -73.3346579519299, - 45.5275322819302 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6127882549391 - }, - "name": "boul. Seigneurial est et Lakeview", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.334653342, - 45.527643848 - ] - }, - "is_frozen": false, - "integer_id": 1571, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.336218, - 45.526452 - ] - }, - "id": 1572, - "properties": { - "id": "39a7153a-bac3-4ac2-84e3-79ec24465317", - "code": "34587", - "data": { - "stops": [ - { - "id": "4587", - "code": "34587", - "data": { - "gtfs": { - "stop_id": "4587", - "stop_code": "34587", - "stop_name": "boul. Seigneurial est et De Bienville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial est et De Bienville", - "geography": { - "type": "Point", - "coordinates": [ - -73.3361909840282, - 45.5265891680098 - ] - } - }, - { - "id": "5346", - "code": "30084", - "data": { - "gtfs": { - "stop_id": "5346", - "stop_code": "30084", - "stop_name": "boul. Seigneurial est et De Bienville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial est et De Bienville", - "geography": { - "type": "Point", - "coordinates": [ - -73.3362452188763, - 45.5263148577461 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5926259801059 - }, - "name": "boul. Seigneurial est et De Bienville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.336218101, - 45.526452013 - ] - }, - "is_frozen": false, - "integer_id": 1572, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.338372, - 45.524901 - ] - }, - "id": 1573, - "properties": { - "id": "2c952684-5d97-4238-ae18-51cba6c9775e", - "code": "34588", - "data": { - "stops": [ - { - "id": "4588", - "code": "34588", - "data": { - "gtfs": { - "stop_id": "4588", - "stop_code": "34588", - "stop_name": "boul. Seigneurial est et Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial est et Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.3381668097258, - 45.525094581164 - ] - } - }, - { - "id": "4681", - "code": "34681", - "data": { - "gtfs": { - "stop_id": "4681", - "stop_code": "34681", - "stop_name": "boul. Seigneurial ouest et Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.3384583135075, - 45.5247064844067 - ] - } - }, - { - "id": "5195", - "code": "35195", - "data": { - "gtfs": { - "stop_id": "5195", - "stop_code": "35195", - "stop_name": "Montarville et boul. Seigneurial ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et boul. Seigneurial ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3385764897183, - 45.5249089822072 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5663814869657 - }, - "name": "boul. Seigneurial est et Montarville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.33837165, - 45.524900533 - ] - }, - "is_frozen": false, - "integer_id": 1573, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.351671, - 45.525576 - ] - }, - "id": 1574, - "properties": { - "id": "72167429-f4d5-4eda-870a-b71c9c47ec5e", - "code": "34589", - "data": { - "stops": [ - { - "id": "4589", - "code": "34589", - "data": { - "gtfs": { - "stop_id": "4589", - "stop_code": "34589", - "stop_name": "De Rigaud et Durham", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Rigaud et Durham", - "geography": { - "type": "Point", - "coordinates": [ - -73.351620442305, - 45.5253560914889 - ] - } - }, - { - "id": "5176", - "code": "35176", - "data": { - "gtfs": { - "stop_id": "5176", - "stop_code": "35176", - "stop_name": "De Rigaud et boul. Clairevue ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Rigaud et boul. Clairevue ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3517206149817, - 45.5257951038857 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5778004738081 - }, - "name": "De Rigaud et Durham", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.351670529, - 45.525575598 - ] - }, - "is_frozen": false, - "integer_id": 1574, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.349586, - 45.524 - ] - }, - "id": 1575, - "properties": { - "id": "515b8790-77c6-4a3b-8347-a621b1167870", - "code": "34590", - "data": { - "stops": [ - { - "id": "4590", - "code": "34590", - "data": { - "gtfs": { - "stop_id": "4590", - "stop_code": "34590", - "stop_name": "De Rigaud et Cicot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Rigaud et Cicot", - "geography": { - "type": "Point", - "coordinates": [ - -73.3497318914203, - 45.523997499646 - ] - } - }, - { - "id": "5175", - "code": "35175", - "data": { - "gtfs": { - "stop_id": "5175", - "stop_code": "35175", - "stop_name": "De Rigaud et Cicot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Rigaud et Cicot", - "geography": { - "type": "Point", - "coordinates": [ - -73.3494397980833, - 45.5240021370419 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5511461751449 - }, - "name": "De Rigaud et Cicot", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.349585845, - 45.523999818 - ] - }, - "is_frozen": false, - "integer_id": 1575, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.344088, - 45.516564 - ] - }, - "id": 1576, - "properties": { - "id": "0910a11d-1b83-4a5b-9c01-30b9a6d926ef", - "code": "34592", - "data": { - "stops": [ - { - "id": "4592", - "code": "34592", - "data": { - "gtfs": { - "stop_id": "4592", - "stop_code": "34592", - "stop_name": "boul. Seigneurial ouest et Dunant", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et Dunant", - "geography": { - "type": "Point", - "coordinates": [ - -73.3440883946436, - 45.5165642468953 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4254034389425 - }, - "name": "boul. Seigneurial ouest et Dunant", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.344088395, - 45.516564247 - ] - }, - "is_frozen": false, - "integer_id": 1576, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.343885, - 45.514316 - ] - }, - "id": 1577, - "properties": { - "id": "4c4fb532-1ed3-4dc8-ab02-b2a6e87e7b90", - "code": "34593", - "data": { - "stops": [ - { - "id": "4593", - "code": "34593", - "data": { - "gtfs": { - "stop_id": "4593", - "stop_code": "34593", - "stop_name": "boul. Seigneurial ouest et STATIONNEMENT INCITATIF SEIGNEURIAL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et STATIONNEMENT INCITATIF SEIGNEURIAL", - "geography": { - "type": "Point", - "coordinates": [ - -73.343884501811, - 45.5143164262652 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3874002953188 - }, - "name": "boul. Seigneurial ouest et STATIONNEMENT INCITATIF SEIGNEURIAL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.343884502, - 45.514316426 - ] - }, - "is_frozen": false, - "integer_id": 1577, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.343472, - 45.514373 - ] - }, - "id": 1578, - "properties": { - "id": "4d3db5af-874a-4a4c-8a87-68ecc590af13", - "code": "34594", - "data": { - "stops": [ - { - "id": "4594", - "code": "34594", - "data": { - "gtfs": { - "stop_id": "4594", - "stop_code": "34594", - "stop_name": "boul. Seigneurial ouest et STATIONNEMENT INCITATIF SEIGNEURIAL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et STATIONNEMENT INCITATIF SEIGNEURIAL", - "geography": { - "type": "Point", - "coordinates": [ - -73.3434715672451, - 45.5143730163986 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.388356987942 - }, - "name": "boul. Seigneurial ouest et STATIONNEMENT INCITATIF SEIGNEURIAL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.343471567, - 45.514373016 - ] - }, - "is_frozen": false, - "integer_id": 1578, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.343796, - 45.51695 - ] - }, - "id": 1579, - "properties": { - "id": "f20c1a67-6c7e-41a3-a85d-9c7b49ac0386", - "code": "34595", - "data": { - "stops": [ - { - "id": "4595", - "code": "34595", - "data": { - "gtfs": { - "stop_id": "4595", - "stop_code": "34595", - "stop_name": "boul. Seigneurial ouest et Dunant", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et Dunant", - "geography": { - "type": "Point", - "coordinates": [ - -73.3437957445346, - 45.5169503989501 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4319324321899 - }, - "name": "boul. Seigneurial ouest et Dunant", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.343795745, - 45.516950399 - ] - }, - "is_frozen": false, - "integer_id": 1579, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.3439, - 45.518396 - ] - }, - "id": 1580, - "properties": { - "id": "652ad35d-f3c9-49c6-b2de-8d15cab5cafb", - "code": "34596", - "data": { - "stops": [ - { - "id": "4596", - "code": "34596", - "data": { - "gtfs": { - "stop_id": "4596", - "stop_code": "34596", - "stop_name": "boul. Seigneurial ouest et De Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et De Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.343899505955, - 45.5183958929226 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4563737815361 - }, - "name": "boul. Seigneurial ouest et De Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.343899506, - 45.518395893 - ] - }, - "is_frozen": false, - "integer_id": 1580, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.339761, - 45.52591 - ] - }, - "id": 1581, - "properties": { - "id": "819e2afa-bfef-47b3-8a41-a55f4c2f9156", - "code": "34598", - "data": { - "stops": [ - { - "id": "4598", - "code": "34598", - "data": { - "gtfs": { - "stop_id": "4598", - "stop_code": "34598", - "stop_name": "Montarville et Saint-Jacques", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et Saint-Jacques", - "geography": { - "type": "Point", - "coordinates": [ - -73.3397610466884, - 45.5259096050494 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5834504822208 - }, - "name": "Montarville et Saint-Jacques", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.339761047, - 45.525909605 - ] - }, - "is_frozen": false, - "integer_id": 1581, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.342043, - 45.527388 - ] - }, - "id": 1582, - "properties": { - "id": "0dae6aad-c792-48fd-a50b-e498ec730741", - "code": "34599", - "data": { - "stops": [ - { - "id": "4599", - "code": "34599", - "data": { - "gtfs": { - "stop_id": "4599", - "stop_code": "34599", - "stop_name": "Montarville et ch. De La Rabastalière est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et ch. De La Rabastalière est", - "geography": { - "type": "Point", - "coordinates": [ - -73.3418415916375, - 45.5273408429683 - ] - } - }, - { - "id": "5193", - "code": "35193", - "data": { - "gtfs": { - "stop_id": "5193", - "stop_code": "35193", - "stop_name": "Montarville et ch. De La Rabastalière ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et ch. De La Rabastalière ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3422447568356, - 45.5274347065794 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6084561607433 - }, - "name": "Montarville et ch. De La Rabastalière est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.342043174, - 45.527387775 - ] - }, - "is_frozen": false, - "integer_id": 1582, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.336331, - 45.509236 - ] - }, - "id": 1583, - "properties": { - "id": "a1087eae-a20b-4cd0-b8e7-26440d382937", - "code": "34602", - "data": { - "stops": [ - { - "id": "4602", - "code": "34602", - "data": { - "gtfs": { - "stop_id": "4602", - "stop_code": "34602", - "stop_name": "montée Sabourin et Grand Boulevard ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Sabourin et Grand Boulevard ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3364975587708, - 45.5091438818778 - ] - } - }, - { - "id": "4616", - "code": "34616", - "data": { - "gtfs": { - "stop_id": "4616", - "stop_code": "34616", - "stop_name": "Grand Boulevard ouest et Grand Boulevard ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grand Boulevard ouest et Grand Boulevard ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3361650562339, - 45.5093271622299 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3015157636519 - }, - "name": "montée Sabourin et Grand Boulevard ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.336331308, - 45.509235522 - ] - }, - "is_frozen": false, - "integer_id": 1583, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.332959, - 45.511342 - ] - }, - "id": 1584, - "properties": { - "id": "1d0cf396-f4ae-4977-a367-c4cf2be5bc83", - "code": "34603", - "data": { - "stops": [ - { - "id": "4603", - "code": "34603", - "data": { - "gtfs": { - "stop_id": "4603", - "stop_code": "34603", - "stop_name": "Grand Boulevard ouest et de la Savoyane", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grand Boulevard ouest et de la Savoyane", - "geography": { - "type": "Point", - "coordinates": [ - -73.3330049133188, - 45.5112485061274 - ] - } - }, - { - "id": "5210", - "code": "35210", - "data": { - "gtfs": { - "stop_id": "5210", - "stop_code": "35210", - "stop_name": "Grand Boulevard ouest et de la Savoyane", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grand Boulevard ouest et de la Savoyane", - "geography": { - "type": "Point", - "coordinates": [ - -73.3329128336734, - 45.5114349860652 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3371153121759 - }, - "name": "Grand Boulevard ouest et de la Savoyane", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.332958873, - 45.511341746 - ] - }, - "is_frozen": false, - "integer_id": 1584, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.328495, - 45.514243 - ] - }, - "id": 1585, - "properties": { - "id": "23cec068-5e76-484b-b2ab-203e4ea55358", - "code": "34604", - "data": { - "stops": [ - { - "id": "4604", - "code": "34604", - "data": { - "gtfs": { - "stop_id": "4604", - "stop_code": "34604", - "stop_name": "Grand Boulevard est et de l'Orchidée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grand Boulevard est et de l'Orchidée", - "geography": { - "type": "Point", - "coordinates": [ - -73.3286044683747, - 45.514149685991 - ] - } - }, - { - "id": "4861", - "code": "34861", - "data": { - "gtfs": { - "stop_id": "4861", - "stop_code": "34861", - "stop_name": "Grand Boulevard est et de l'Orchidée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grand Boulevard est et de l'Orchidée", - "geography": { - "type": "Point", - "coordinates": [ - -73.3283857988658, - 45.5143362088356 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.386158086865 - }, - "name": "Grand Boulevard est et de l'Orchidée", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.328495134, - 45.514242947 - ] - }, - "is_frozen": false, - "integer_id": 1585, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.362189, - 45.515042 - ] - }, - "id": 1586, - "properties": { - "id": "4f54f52f-b62c-4341-a4d5-24c02344f25b", - "code": "34607", - "data": { - "stops": [ - { - "id": "4607", - "code": "34607", - "data": { - "gtfs": { - "stop_id": "4607", - "stop_code": "34607", - "stop_name": "Marie-Victorin et civique 1700", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Marie-Victorin et civique 1700", - "geography": { - "type": "Point", - "coordinates": [ - -73.3621893737397, - 45.5150415571174 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3996593463023 - }, - "name": "Marie-Victorin et civique 1700", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.362189374, - 45.515041557 - ] - }, - "is_frozen": false, - "integer_id": 1586, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.369013, - 45.517385 - ] - }, - "id": 1587, - "properties": { - "id": "b3d09d08-d2e3-4276-8b7a-d3d07d979e6c", - "code": "34608", - "data": { - "stops": [ - { - "id": "4608", - "code": "34608", - "data": { - "gtfs": { - "stop_id": "4608", - "stop_code": "34608", - "stop_name": "Marie-Victorin et Sagard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Marie-Victorin et Sagard", - "geography": { - "type": "Point", - "coordinates": [ - -73.3690131995661, - 45.5173849141432 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4392792977504 - }, - "name": "Marie-Victorin et Sagard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.3690132, - 45.517384914 - ] - }, - "is_frozen": false, - "integer_id": 1587, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.369104, - 45.519594 - ] - }, - "id": 1588, - "properties": { - "id": "635ebffd-b274-4e79-9618-a0203ceaa811", - "code": "34609", - "data": { - "stops": [ - { - "id": "4609", - "code": "34609", - "data": { - "gtfs": { - "stop_id": "4609", - "stop_code": "34609", - "stop_name": "Marie-Victorin et civique 1250", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Marie-Victorin et civique 1250", - "geography": { - "type": "Point", - "coordinates": [ - -73.3691036752221, - 45.5195941265766 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.476635709577 - }, - "name": "Marie-Victorin et civique 1250", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.369103675, - 45.519594127 - ] - }, - "is_frozen": false, - "integer_id": 1588, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.356271, - 45.53925 - ] - }, - "id": 1589, - "properties": { - "id": "4511e120-86db-4b9f-bbc5-ef3d3a1627fd", - "code": "34611", - "data": { - "stops": [ - { - "id": "4611", - "code": "34611", - "data": { - "gtfs": { - "stop_id": "4611", - "stop_code": "34611", - "stop_name": "De La Vérendrye et place De La Vérendrye", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Vérendrye et place De La Vérendrye", - "geography": { - "type": "Point", - "coordinates": [ - -73.3562708705961, - 45.5392504255702 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8092029767529 - }, - "name": "De La Vérendrye et place De La Vérendrye", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.356270871, - 45.539250426 - ] - }, - "is_frozen": false, - "integer_id": 1589, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.346165, - 45.520498 - ] - }, - "id": 1590, - "properties": { - "id": "1903cbec-a898-4d1e-aa47-0930a7af3bd5", - "code": "34612", - "data": { - "stops": [ - { - "id": "4612", - "code": "34612", - "data": { - "gtfs": { - "stop_id": "4612", - "stop_code": "34612", - "stop_name": "ch. De La Rabastalière ouest et Albani", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. De La Rabastalière ouest et Albani", - "geography": { - "type": "Point", - "coordinates": [ - -73.3462449707743, - 45.5204710664685 - ] - } - }, - { - "id": "5172", - "code": "35172", - "data": { - "gtfs": { - "stop_id": "5172", - "stop_code": "35172", - "stop_name": "ch. De La Rabastalière ouest et Costain", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. De La Rabastalière ouest et Costain", - "geography": { - "type": "Point", - "coordinates": [ - -73.3460859046518, - 45.5205243549626 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.491916003489 - }, - "name": "ch. De La Rabastalière ouest et Albani", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.346165438, - 45.520497711 - ] - }, - "is_frozen": false, - "integer_id": 1590, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.340818, - 45.528396 - ] - }, - "id": 1591, - "properties": { - "id": "664c0430-a4fa-4f7d-aa9b-f0bfd0ecd1e4", - "code": "34613", - "data": { - "stops": [ - { - "id": "4613", - "code": "34613", - "data": { - "gtfs": { - "stop_id": "4613", - "stop_code": "34613", - "stop_name": "ch. De La Rabastalière est et Saint-Jacques", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. De La Rabastalière est et Saint-Jacques", - "geography": { - "type": "Point", - "coordinates": [ - -73.3408184262684, - 45.5283961802937 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6255161086257 - }, - "name": "ch. De La Rabastalière est et Saint-Jacques", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.340818426, - 45.52839618 - ] - }, - "is_frozen": false, - "integer_id": 1591, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.339764, - 45.529346 - ] - }, - "id": 1592, - "properties": { - "id": "87b33360-b2b6-4448-85dd-00bcc2d6204c", - "code": "34614", - "data": { - "stops": [ - { - "id": "4614", - "code": "34614", - "data": { - "gtfs": { - "stop_id": "4614", - "stop_code": "34614", - "stop_name": "ch. De La Rabastalière est et Goyer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. De La Rabastalière est et Goyer", - "geography": { - "type": "Point", - "coordinates": [ - -73.3397640937222, - 45.529346276077 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.641590428553 - }, - "name": "ch. De La Rabastalière est et Goyer", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.339764094, - 45.529346276 - ] - }, - "is_frozen": false, - "integer_id": 1592, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.352566, - 45.541268 - ] - }, - "id": 1593, - "properties": { - "id": "25f62569-60d2-41e7-8610-c3538fe230bf", - "code": "34641", - "data": { - "stops": [ - { - "id": "4641", - "code": "34641", - "data": { - "gtfs": { - "stop_id": "4641", - "stop_code": "34641", - "stop_name": "Yvonne-Duckett et Juliette-Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Yvonne-Duckett et Juliette-Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3525658439736, - 45.541267928633 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8433568467512 - }, - "name": "Yvonne-Duckett et Juliette-Béliveau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.352565844, - 45.541267929 - ] - }, - "is_frozen": false, - "integer_id": 1593, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.357078, - 45.537872 - ] - }, - "id": 1594, - "properties": { - "id": "cecd1a42-805e-4b1f-971e-5486564ef354", - "code": "34643", - "data": { - "stops": [ - { - "id": "4643", - "code": "34643", - "data": { - "gtfs": { - "stop_id": "4643", - "stop_code": "34643", - "stop_name": "Montarville et Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.3572170255715, - 45.5378826830878 - ] - } - }, - { - "id": "5702", - "code": "30470", - "data": { - "gtfs": { - "stop_id": "5702", - "stop_code": "30470", - "stop_name": "Montarville et Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.356938984572, - 45.5378609487814 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7858668758619 - }, - "name": "Montarville et Montarville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.357078005, - 45.537871816 - ] - }, - "is_frozen": false, - "integer_id": 1594, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.346331, - 45.522932 - ] - }, - "id": 1595, - "properties": { - "id": "d6901f53-cd66-4086-8fc5-2643b6cfcce0", - "code": "34645", - "data": { - "stops": [ - { - "id": "4645", - "code": "34645", - "data": { - "gtfs": { - "stop_id": "4645", - "stop_code": "34645", - "stop_name": "De Rigaud et ch. De La Rabastalière ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Rigaud et ch. De La Rabastalière ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3464363057355, - 45.522995246708 - ] - } - }, - { - "id": "5173", - "code": "35173", - "data": { - "gtfs": { - "stop_id": "5173", - "stop_code": "35173", - "stop_name": "ch. De La Rabastalière ouest et De Rigaud", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. De La Rabastalière ouest et De Rigaud", - "geography": { - "type": "Point", - "coordinates": [ - -73.3462262575614, - 45.5228680606194 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5330794530989 - }, - "name": "De Rigaud et ch. De La Rabastalière ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.346331282, - 45.522931654 - ] - }, - "is_frozen": false, - "integer_id": 1595, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.382321, - 45.506268 - ] - }, - "id": 1596, - "properties": { - "id": "c4c03f6a-b2dc-4fb8-87cd-df1a4417beae", - "code": "34649", - "data": { - "stops": [ - { - "id": "4649", - "code": "34649", - "data": { - "gtfs": { - "stop_id": "4649", - "stop_code": "34649", - "stop_name": "boul. Saint-Bruno et CINEMA CINEPLEX ODEON SAINT-BRUNO", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Saint-Bruno et CINEMA CINEPLEX ODEON SAINT-BRUNO", - "geography": { - "type": "Point", - "coordinates": [ - -73.3823205659396, - 45.5062683568164 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.251371230004 - }, - "name": "boul. Saint-Bruno et CINEMA CINEPLEX ODEON SAINT-BRUNO", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.382320566, - 45.506268357 - ] - }, - "is_frozen": false, - "integer_id": 1596, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.358053, - 45.515289 - ] - }, - "id": 1597, - "properties": { - "id": "f9418d0c-9ee7-44b5-a2f0-bb6a76a0df3e", - "code": "34654", - "data": { - "stops": [ - { - "id": "4654", - "code": "34654", - "data": { - "gtfs": { - "stop_id": "4654", - "stop_code": "34654", - "stop_name": "Marie-Victorin et civique 1800", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Marie-Victorin et civique 1800", - "geography": { - "type": "Point", - "coordinates": [ - -73.3580526363863, - 45.5152886882866 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4038374453195 - }, - "name": "Marie-Victorin et civique 1800", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.358052636, - 45.515288688 - ] - }, - "is_frozen": false, - "integer_id": 1597, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.350599, - 45.537669 - ] - }, - "id": 1598, - "properties": { - "id": "202ead47-deaa-405e-b65f-b1c0ac914072", - "code": "34655", - "data": { - "stops": [ - { - "id": "4655", - "code": "34655", - "data": { - "gtfs": { - "stop_id": "4655", - "stop_code": "34655", - "stop_name": "Goyer et Jolliet", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Goyer et Jolliet", - "geography": { - "type": "Point", - "coordinates": [ - -73.3505990363788, - 45.5376685894514 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.782426941352 - }, - "name": "Goyer et Jolliet", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.350599036, - 45.537668589 - ] - }, - "is_frozen": false, - "integer_id": 1598, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.351644, - 45.540278 - ] - }, - "id": 1599, - "properties": { - "id": "b8cfafe3-b6a4-49f2-a7bb-9ae8933f001e", - "code": "34656", - "data": { - "stops": [ - { - "id": "4656", - "code": "34656", - "data": { - "gtfs": { - "stop_id": "4656", - "stop_code": "34656", - "stop_name": "La Salle et De La Vérendrye", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Salle et De La Vérendrye", - "geography": { - "type": "Point", - "coordinates": [ - -73.3516436924559, - 45.5402780765233 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8265994035397 - }, - "name": "La Salle et De La Vérendrye", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.351643692, - 45.540278077 - ] - }, - "is_frozen": false, - "integer_id": 1599, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.35647, - 45.537889 - ] - }, - "id": 1600, - "properties": { - "id": "57420416-a1c5-4dd0-bce2-fccdbb41630a", - "code": "34657", - "data": { - "stops": [ - { - "id": "4657", - "code": "34657", - "data": { - "gtfs": { - "stop_id": "4657", - "stop_code": "34657", - "stop_name": "De La Vérendrye et Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Vérendrye et Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.3564703963255, - 45.5378893051576 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7861629062345 - }, - "name": "De La Vérendrye et Montarville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.356470396, - 45.537889305 - ] - }, - "is_frozen": false, - "integer_id": 1600, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.431417, - 45.50809 - ] - }, - "id": 1601, - "properties": { - "id": "2c8a6d09-2eb8-47e3-86bb-ac6501351f3b", - "code": "34663", - "data": { - "stops": [ - { - "id": "4663", - "code": "34663", - "data": { - "gtfs": { - "stop_id": "4663", - "stop_code": "34663", - "stop_name": "Sortie 116 et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Sortie 116 et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4314173461676, - 45.5080895678015 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.28214842636 - }, - "name": "Sortie 116 et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431417346, - 45.508089568 - ] - }, - "is_frozen": false, - "integer_id": 1601, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.429955, - 45.50758 - ] - }, - "id": 1602, - "properties": { - "id": "4aea3348-4995-4fc9-b06f-6698460c1f1d", - "code": "34664", - "data": { - "stops": [ - { - "id": "4664", - "code": "34664", - "data": { - "gtfs": { - "stop_id": "4664", - "stop_code": "34664", - "stop_name": "boul. Sir-Wilfrid-Laurier - (116) est et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier - (116) est et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4299550821669, - 45.5075801193624 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2735387959364 - }, - "name": "boul. Sir-Wilfrid-Laurier - (116) est et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.429955082, - 45.507580119 - ] - }, - "is_frozen": false, - "integer_id": 1602, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.353114, - 45.525562 - ] - }, - "id": 1603, - "properties": { - "id": "57dc3582-89e5-4ef0-a1fc-ba8d7e551866", - "code": "34666", - "data": { - "stops": [ - { - "id": "4666", - "code": "34666", - "data": { - "gtfs": { - "stop_id": "4666", - "stop_code": "34666", - "stop_name": "boul. Clairevue ouest et Cadieux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et Cadieux", - "geography": { - "type": "Point", - "coordinates": [ - -73.3530278482365, - 45.5257044625257 - ] - } - }, - { - "id": "5182", - "code": "35182", - "data": { - "gtfs": { - "stop_id": "5182", - "stop_code": "35182", - "stop_name": "boul. Clairevue ouest et Cadieux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et Cadieux", - "geography": { - "type": "Point", - "coordinates": [ - -73.3532009168142, - 45.5254204905517 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5775785231231 - }, - "name": "boul. Clairevue ouest et Cadieux", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.353114383, - 45.525562477 - ] - }, - "is_frozen": false, - "integer_id": 1603, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.348197, - 45.528068 - ] - }, - "id": 1604, - "properties": { - "id": "a4342529-2476-4d58-89df-3af5cc46b2ed", - "code": "34669", - "data": { - "stops": [ - { - "id": "4669", - "code": "34669", - "data": { - "gtfs": { - "stop_id": "4669", - "stop_code": "34669", - "stop_name": "boul. Clairevue ouest et civique 105", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et civique 105", - "geography": { - "type": "Point", - "coordinates": [ - -73.3481967790403, - 45.5280675799679 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6199568350463 - }, - "name": "boul. Clairevue ouest et civique 105", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.348196779, - 45.52806758 - ] - }, - "is_frozen": false, - "integer_id": 1604, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.368013, - 45.520585 - ] - }, - "id": 1605, - "properties": { - "id": "4087f6e1-342c-4090-94e9-c90c43ab2560", - "code": "34670", - "data": { - "stops": [ - { - "id": "4670", - "code": "34670", - "data": { - "gtfs": { - "stop_id": "4670", - "stop_code": "34670", - "stop_name": "boul. Clairevue ouest et Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.3680128482317, - 45.5205846295747 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4933859083585 - }, - "name": "boul. Clairevue ouest et Marie-Victorin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.368012848, - 45.52058463 - ] - }, - "is_frozen": false, - "integer_id": 1605, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.351089, - 45.526285 - ] - }, - "id": 1606, - "properties": { - "id": "847391f5-cdd6-49af-ac72-f7b987f65b7f", - "code": "34671", - "data": { - "stops": [ - { - "id": "4671", - "code": "34671", - "data": { - "gtfs": { - "stop_id": "4671", - "stop_code": "34671", - "stop_name": "boul. Clairevue ouest et de Carillon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et de Carillon", - "geography": { - "type": "Point", - "coordinates": [ - -73.3510894484828, - 45.526284613467 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5897941754117 - }, - "name": "boul. Clairevue ouest et de Carillon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.351089448, - 45.526284613 - ] - }, - "is_frozen": false, - "integer_id": 1606, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465932, - 45.561082 - ] - }, - "id": 1607, - "properties": { - "id": "83389414-0049-46f6-a04b-557250511611", - "code": "34674", - "data": { - "stops": [ - { - "id": "4674", - "code": "34674", - "data": { - "gtfs": { - "stop_id": "4674", - "stop_code": "34674", - "stop_name": "boul. Fernand-Lafontaine et Delage", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et Delage", - "geography": { - "type": "Point", - "coordinates": [ - -73.4657645424304, - 45.5611918203168 - ] - } - }, - { - "id": "4675", - "code": "34675", - "data": { - "gtfs": { - "stop_id": "4675", - "stop_code": "34675", - "stop_name": "boul. Fernand-Lafontaine et Delage", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et Delage", - "geography": { - "type": "Point", - "coordinates": [ - -73.4660986842994, - 45.5609731055712 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1789858369358 - }, - "name": "boul. Fernand-Lafontaine et Delage", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465931613, - 45.561082463 - ] - }, - "is_frozen": false, - "integer_id": 1607, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.348963, - 45.536007 - ] - }, - "id": 1608, - "properties": { - "id": "5ee81343-27a6-4a75-a9d6-cfd2443e5ca4", - "code": "34677", - "data": { - "stops": [ - { - "id": "4677", - "code": "34677", - "data": { - "gtfs": { - "stop_id": "4677", - "stop_code": "34677", - "stop_name": "Goyer et Chassé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Goyer et Chassé", - "geography": { - "type": "Point", - "coordinates": [ - -73.3489634216163, - 45.5360071675144 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.754306176618 - }, - "name": "Goyer et Chassé", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.348963422, - 45.536007168 - ] - }, - "is_frozen": false, - "integer_id": 1608, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.347413, - 45.535112 - ] - }, - "id": 1609, - "properties": { - "id": "33779f20-bdd2-4c97-8c57-e7f88093dfb0", - "code": "34678", - "data": { - "stops": [ - { - "id": "4678", - "code": "34678", - "data": { - "gtfs": { - "stop_id": "4678", - "stop_code": "34678", - "stop_name": "Goyer et De Tonty", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Goyer et De Tonty", - "geography": { - "type": "Point", - "coordinates": [ - -73.3474132695358, - 45.535111521566 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7391477347661 - }, - "name": "Goyer et De Tonty", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.34741327, - 45.535111522 - ] - }, - "is_frozen": false, - "integer_id": 1609, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.345721, - 45.533933 - ] - }, - "id": 1610, - "properties": { - "id": "bc16cbaa-5a30-48f3-9330-5ee7ec0441a1", - "code": "34679", - "data": { - "stops": [ - { - "id": "4679", - "code": "34679", - "data": { - "gtfs": { - "stop_id": "4679", - "stop_code": "34679", - "stop_name": "Goyer et Caillé est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Goyer et Caillé est", - "geography": { - "type": "Point", - "coordinates": [ - -73.3457206364148, - 45.5339331543048 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7192054285941 - }, - "name": "Goyer et Caillé est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.345720636, - 45.533933154 - ] - }, - "is_frozen": false, - "integer_id": 1610, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.350783, - 45.533895 - ] - }, - "id": 1611, - "properties": { - "id": "a5fa3371-93c4-47f9-8972-32a538fcab1f", - "code": "34682", - "data": { - "stops": [ - { - "id": "4682", - "code": "34682", - "data": { - "gtfs": { - "stop_id": "4682", - "stop_code": "34682", - "stop_name": "Montarville et Contrecoeur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et Contrecoeur", - "geography": { - "type": "Point", - "coordinates": [ - -73.3509079103832, - 45.5338932209851 - ] - } - }, - { - "id": "5699", - "code": "30467", - "data": { - "gtfs": { - "stop_id": "5699", - "stop_code": "30467", - "stop_name": "Montarville et Contrecoeur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et Contrecoeur", - "geography": { - "type": "Point", - "coordinates": [ - -73.3506573164083, - 45.5338962527428 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7185552929698 - }, - "name": "Montarville et Contrecoeur", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.350782613, - 45.533894737 - ] - }, - "is_frozen": false, - "integer_id": 1611, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.35489, - 45.540172 - ] - }, - "id": 1612, - "properties": { - "id": "ea96e923-e899-4f40-b55b-0ec5bd72c618", - "code": "34683", - "data": { - "stops": [ - { - "id": "4683", - "code": "34683", - "data": { - "gtfs": { - "stop_id": "4683", - "stop_code": "34683", - "stop_name": "De La Vérendrye et place De La Vérendrye", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De La Vérendrye et place De La Vérendrye", - "geography": { - "type": "Point", - "coordinates": [ - -73.3548902558419, - 45.5401722794146 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8248083753917 - }, - "name": "De La Vérendrye et place De La Vérendrye", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.354890256, - 45.540172279 - ] - }, - "is_frozen": false, - "integer_id": 1612, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.351544, - 45.53818 - ] - }, - "id": 1613, - "properties": { - "id": "a559ed96-e206-444a-b3b1-e1eedefb1ccd", - "code": "34684", - "data": { - "stops": [ - { - "id": "4684", - "code": "34684", - "data": { - "gtfs": { - "stop_id": "4684", - "stop_code": "34684", - "stop_name": "La Salle et Hudson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Salle et Hudson", - "geography": { - "type": "Point", - "coordinates": [ - -73.3515442964246, - 45.5381803482397 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7910893324514 - }, - "name": "La Salle et Hudson", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.351544296, - 45.538180348 - ] - }, - "is_frozen": false, - "integer_id": 1613, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.344055, - 45.519448 - ] - }, - "id": 1614, - "properties": { - "id": "7ac3961a-0b0e-47c8-a264-69b6edbbd2b9", - "code": "34686", - "data": { - "stops": [ - { - "id": "4686", - "code": "34686", - "data": { - "gtfs": { - "stop_id": "4686", - "stop_code": "34686", - "stop_name": "boul. Seigneurial ouest et civique 315", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et civique 315", - "geography": { - "type": "Point", - "coordinates": [ - -73.3440549140848, - 45.5194476264792 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4741583345731 - }, - "name": "boul. Seigneurial ouest et civique 315", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.344054914, - 45.519447626 - ] - }, - "is_frozen": false, - "integer_id": 1614, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.493956, - 45.456865 - ] - }, - "id": 1615, - "properties": { - "id": "d8eae8f7-d8ed-4c6f-8280-28fd4b885b03", - "code": "34688", - "data": { - "stops": [ - { - "id": "4688", - "code": "34688", - "data": { - "gtfs": { - "stop_id": "4688", - "stop_code": "34688", - "stop_name": "boul. du Saint-Laurent et Saint-Maurice", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Saint-Laurent et Saint-Maurice", - "geography": { - "type": "Point", - "coordinates": [ - -73.493955945366, - 45.4568654339214 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4176214335378 - }, - "name": "boul. du Saint-Laurent et Saint-Maurice", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493955945, - 45.456865434 - ] - }, - "is_frozen": false, - "integer_id": 1615, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.416828, - 45.45739 - ] - }, - "id": 1616, - "properties": { - "id": "be2e580d-0de3-4edf-8ee4-890565699c8a", - "code": "34693", - "data": { - "stops": [ - { - "id": "4693", - "code": "34693", - "data": { - "gtfs": { - "stop_id": "4693", - "stop_code": "34693", - "stop_name": "Grande Allée et J.-A.-Bombardier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et J.-A.-Bombardier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4168277321012, - 45.4573899364726 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4264618198912 - }, - "name": "Grande Allée et J.-A.-Bombardier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.416827732, - 45.457389936 - ] - }, - "is_frozen": false, - "integer_id": 1616, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.4177, - 45.457581 - ] - }, - "id": 1617, - "properties": { - "id": "4d7b837b-dc9e-45a8-8586-b51c6fcd4545", - "code": "34696", - "data": { - "stops": [ - { - "id": "4696", - "code": "34696", - "data": { - "gtfs": { - "stop_id": "4696", - "stop_code": "34696", - "stop_name": "boul. Grande Allée et J.-A.-Bombardier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et J.-A.-Bombardier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4177000199196, - 45.457580596856 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4296754370607 - }, - "name": "boul. Grande Allée et J.-A.-Bombardier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.41770002, - 45.457580597 - ] - }, - "is_frozen": false, - "integer_id": 1617, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.419034, - 45.577213 - ] - }, - "id": 1618, - "properties": { - "id": "88dc439b-1c69-4b99-b3d0-d19592029cc1", - "code": "34697", - "data": { - "stops": [ - { - "id": "4697", - "code": "34697", - "data": { - "gtfs": { - "stop_id": "4697", - "stop_code": "34697", - "stop_name": "boul. De Montarville et des Vosges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et des Vosges", - "geography": { - "type": "Point", - "coordinates": [ - -73.4192993902718, - 45.5772989367099 - ] - } - }, - { - "id": "4978", - "code": "34978", - "data": { - "gtfs": { - "stop_id": "4978", - "stop_code": "34978", - "stop_name": "boul. De Montarville et des Vosges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et des Vosges", - "geography": { - "type": "Point", - "coordinates": [ - -73.4187692323194, - 45.5771278071727 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4524786202965 - }, - "name": "boul. De Montarville et des Vosges", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.419034311, - 45.577213372 - ] - }, - "is_frozen": false, - "integer_id": 1618, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.400919, - 45.56616 - ] - }, - "id": 1619, - "properties": { - "id": "a4120eb1-d1f9-43e5-8720-90115641165b", - "code": "34708", - "data": { - "stops": [ - { - "id": "4708", - "code": "34708", - "data": { - "gtfs": { - "stop_id": "4708", - "stop_code": "34708", - "stop_name": "Louis-Pasteur et civique 525", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Louis-Pasteur et civique 525", - "geography": { - "type": "Point", - "coordinates": [ - -73.4009189260835, - 45.5661604106554 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2650552302591 - }, - "name": "Louis-Pasteur et civique 525", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.400918926, - 45.566160411 - ] - }, - "is_frozen": false, - "integer_id": 1619, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.42468, - 45.462531 - ] - }, - "id": 1620, - "properties": { - "id": "c8bdc9d9-6d86-478d-91a7-b7196c447016", - "code": "34710", - "data": { - "stops": [ - { - "id": "4710", - "code": "34710", - "data": { - "gtfs": { - "stop_id": "4710", - "stop_code": "34710", - "stop_name": "Grande Allée et boul. Westley", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et boul. Westley", - "geography": { - "type": "Point", - "coordinates": [ - -73.4244362252152, - 45.4623672768917 - ] - } - }, - { - "id": "4711", - "code": "34711", - "data": { - "gtfs": { - "stop_id": "4711", - "stop_code": "34711", - "stop_name": "boul. Grande Allée et boul. Westley", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et boul. Westley", - "geography": { - "type": "Point", - "coordinates": [ - -73.4249228183191, - 45.462371171048 - ] - } - }, - { - "id": "5720", - "code": "30489", - "data": { - "gtfs": { - "stop_id": "5720", - "stop_code": "30489", - "stop_name": "Grande Allée et boul. Westley", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et boul. Westley", - "geography": { - "type": "Point", - "coordinates": [ - -73.4249157612854, - 45.4626946244918 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5131256217809 - }, - "name": "Grande Allée et boul. Westley", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.424679522, - 45.462530951 - ] - }, - "is_frozen": false, - "integer_id": 1620, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.343259, - 45.512039 - ] - }, - "id": 1621, - "properties": { - "id": "784a98f8-f964-4b51-9a84-d7aa241d6aab", - "code": "34714", - "data": { - "stops": [ - { - "id": "4714", - "code": "34714", - "data": { - "gtfs": { - "stop_id": "4714", - "stop_code": "34714", - "stop_name": "montée Sabourin et boul. Seigneurial ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Sabourin et boul. Seigneurial ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3430508885836, - 45.5121281742753 - ] - } - }, - { - "id": "5162", - "code": "35162", - "data": { - "gtfs": { - "stop_id": "5162", - "stop_code": "35162", - "stop_name": "boul. Seigneurial ouest et montée Sabourin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et montée Sabourin", - "geography": { - "type": "Point", - "coordinates": [ - -73.3434530592749, - 45.5121157612139 - ] - } - }, - { - "id": "5692", - "code": "30460", - "data": { - "gtfs": { - "stop_id": "5692", - "stop_code": "30460", - "stop_name": "montée Sabourin et boul. Seigneurial ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Sabourin et boul. Seigneurial ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3434662090729, - 45.5119493715163 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3488973822422 - }, - "name": "montée Sabourin et boul. Seigneurial ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.343258549, - 45.512038773 - ] - }, - "is_frozen": false, - "integer_id": 1621, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463961, - 45.436104 - ] - }, - "id": 1622, - "properties": { - "id": "e990ec2d-e586-4b2f-884d-4124f22426b3", - "code": "34715", - "data": { - "stops": [ - { - "id": "4715", - "code": "34715", - "data": { - "gtfs": { - "stop_id": "4715", - "stop_code": "34715", - "stop_name": "Oméga et Outremont", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Oméga et Outremont", - "geography": { - "type": "Point", - "coordinates": [ - -73.463797776136, - 45.436201518918 - ] - } - }, - { - "id": "4719", - "code": "34719", - "data": { - "gtfs": { - "stop_id": "4719", - "stop_code": "34719", - "stop_name": "Oméga et Outremont", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Oméga et Outremont", - "geography": { - "type": "Point", - "coordinates": [ - -73.4641248173184, - 45.4360058967398 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.067882278871 - }, - "name": "Oméga et Outremont", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463961297, - 45.436103708 - ] - }, - "is_frozen": false, - "integer_id": 1622, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459158, - 45.424962 - ] - }, - "id": 1623, - "properties": { - "id": "c231ce0f-25f6-4aeb-9a45-f6162e368fe7", - "code": "34720", - "data": { - "stops": [ - { - "id": "4720", - "code": "34720", - "data": { - "gtfs": { - "stop_id": "4720", - "stop_code": "34720", - "stop_name": "place Jade et civique 9550", - "location_type": 0, - "parent_station": "" - } - }, - "name": "place Jade et civique 9550", - "geography": { - "type": "Point", - "coordinates": [ - -73.459157881299, - 45.4249621194855 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.8803555025949 - }, - "name": "place Jade et civique 9550", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459157881, - 45.424962119 - ] - }, - "is_frozen": false, - "integer_id": 1623, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.416766, - 45.455296 - ] - }, - "id": 1624, - "properties": { - "id": "24b525eb-f42e-4817-8122-95b424e3e4fc", - "code": "34721", - "data": { - "stops": [ - { - "id": "4721", - "code": "34721", - "data": { - "gtfs": { - "stop_id": "4721", - "stop_code": "34721", - "stop_name": "place de la Couronne et Entrepôt Ikea Brossard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "place de la Couronne et Entrepôt Ikea Brossard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4167655416056, - 45.4552959743206 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.391169927062 - }, - "name": "place de la Couronne et Entrepôt Ikea Brossard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.416765542, - 45.455295974 - ] - }, - "is_frozen": false, - "integer_id": 1624, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.378916, - 45.493373 - ] - }, - "id": 1625, - "properties": { - "id": "c7be2a86-2a63-43b1-993a-6ba9a80be235", - "code": "34725", - "data": { - "stops": [ - { - "id": "4725", - "code": "34725", - "data": { - "gtfs": { - "stop_id": "4725", - "stop_code": "34725", - "stop_name": "boul. des Promenades et Laure-L.-Hosson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. des Promenades et Laure-L.-Hosson", - "geography": { - "type": "Point", - "coordinates": [ - -73.3789976744494, - 45.4935498502182 - ] - } - }, - { - "id": "4726", - "code": "34726", - "data": { - "gtfs": { - "stop_id": "4726", - "stop_code": "34726", - "stop_name": "boul. des Promenades et Laure-L.-Hosson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. des Promenades et Laure-L.-Hosson", - "geography": { - "type": "Point", - "coordinates": [ - -73.378834644253, - 45.4931954679821 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0335273718589 - }, - "name": "boul. des Promenades et Laure-L.-Hosson", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.378916159, - 45.493372659 - ] - }, - "is_frozen": false, - "integer_id": 1625, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.380891, - 45.489372 - ] - }, - "id": 1626, - "properties": { - "id": "8a7f5b7c-86e5-412e-a099-1a9d5ca8dce9", - "code": "34727", - "data": { - "stops": [ - { - "id": "4727", - "code": "34727", - "data": { - "gtfs": { - "stop_id": "4727", - "stop_code": "34727", - "stop_name": "boul. des Promenades et Robert-Guinard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. des Promenades et Robert-Guinard", - "geography": { - "type": "Point", - "coordinates": [ - -73.3810077358963, - 45.4895148347179 - ] - } - }, - { - "id": "4728", - "code": "34728", - "data": { - "gtfs": { - "stop_id": "4728", - "stop_code": "34728", - "stop_name": "boul. des Promenades et Robert-Guinard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. des Promenades et Robert-Guinard", - "geography": { - "type": "Point", - "coordinates": [ - -73.3807747000218, - 45.4892291644245 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9659752885406 - }, - "name": "boul. des Promenades et Robert-Guinard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.380891218, - 45.489372 - ] - }, - "is_frozen": false, - "integer_id": 1626, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.433005, - 45.510921 - ] - }, - "id": 1627, - "properties": { - "id": "789f4442-496b-49a8-9269-68c86839ee71", - "code": "34729", - "data": { - "stops": [ - { - "id": "4729", - "code": "34729", - "data": { - "gtfs": { - "stop_id": "4729", - "stop_code": "34729", - "stop_name": "ch. de la Savane et rte de l'Aéroport", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et rte de l'Aéroport", - "geography": { - "type": "Point", - "coordinates": [ - -73.4331772110339, - 45.5107764125217 - ] - } - }, - { - "id": "4816", - "code": "34816", - "data": { - "gtfs": { - "stop_id": "4816", - "stop_code": "34816", - "stop_name": "ch. de la Savane et rte de l'Aéroport", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et rte de l'Aéroport", - "geography": { - "type": "Point", - "coordinates": [ - -73.4328320253035, - 45.5110658880434 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3300060529033 - }, - "name": "ch. de la Savane et rte de l'Aéroport", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.433004618, - 45.51092115 - ] - }, - "is_frozen": false, - "integer_id": 1627, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463184, - 45.430404 - ] - }, - "id": 1628, - "properties": { - "id": "4b0fd39d-15a0-46ea-89e7-d0952ab5c888", - "code": "34731", - "data": { - "stops": [ - { - "id": "4731", - "code": "34731", - "data": { - "gtfs": { - "stop_id": "4731", - "stop_code": "34731", - "stop_name": "boul. Matte et civique 3700", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Matte et civique 3700", - "geography": { - "type": "Point", - "coordinates": [ - -73.4631167320075, - 45.4302532728058 - ] - } - }, - { - "id": "4736", - "code": "34736", - "data": { - "gtfs": { - "stop_id": "4736", - "stop_code": "34736", - "stop_name": "boul. Matte et civique 3755", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Matte et civique 3755", - "geography": { - "type": "Point", - "coordinates": [ - -73.4632505216615, - 45.4305546610099 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.9719348236481 - }, - "name": "boul. Matte et civique 3700", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463183627, - 45.430403967 - ] - }, - "is_frozen": false, - "integer_id": 1628, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458898, - 45.428372 - ] - }, - "id": 1629, - "properties": { - "id": "4e38482f-be48-4cee-bcb2-e6dee0843574", - "code": "34732", - "data": { - "stops": [ - { - "id": "4732", - "code": "34732", - "data": { - "gtfs": { - "stop_id": "4732", - "stop_code": "34732", - "stop_name": "boul. Matte et civique 3900", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Matte et civique 3900", - "geography": { - "type": "Point", - "coordinates": [ - -73.4588982467922, - 45.4283718905296 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.9377345230254 - }, - "name": "boul. Matte et civique 3900", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.458898247, - 45.428371891 - ] - }, - "is_frozen": false, - "integer_id": 1629, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457377, - 45.426473 - ] - }, - "id": 1630, - "properties": { - "id": "5ed225d6-d1a5-4cf8-b496-0bdeecc5f50f", - "code": "34733", - "data": { - "stops": [ - { - "id": "4733", - "code": "34733", - "data": { - "gtfs": { - "stop_id": "4733", - "stop_code": "34733", - "stop_name": "place Jade et boul. Matte", - "location_type": 0, - "parent_station": "" - } - }, - "name": "place Jade et boul. Matte", - "geography": { - "type": "Point", - "coordinates": [ - -73.4573774991956, - 45.4264734607247 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.9057868192986 - }, - "name": "place Jade et boul. Matte", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457377499, - 45.426473461 - ] - }, - "is_frozen": false, - "integer_id": 1630, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458925, - 45.428749 - ] - }, - "id": 1631, - "properties": { - "id": "65e410b8-04ff-4ccd-883a-8d764b8c7d37", - "code": "34734", - "data": { - "stops": [ - { - "id": "4734", - "code": "34734", - "data": { - "gtfs": { - "stop_id": "4734", - "stop_code": "34734", - "stop_name": "boul. Matte et civique 4105", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Matte et civique 4105", - "geography": { - "type": "Point", - "coordinates": [ - -73.4589253012588, - 45.4287490960031 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.9440826924053 - }, - "name": "boul. Matte et civique 4105", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.458925301, - 45.428749096 - ] - }, - "is_frozen": false, - "integer_id": 1631, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.558408, - 45.497415 - ] - }, - "id": 1632, - "properties": { - "id": "461a5d33-406e-481a-b773-6e450c48b670", - "code": "34743", - "data": { - "stops": [ - { - "id": "4743", - "code": "34743", - "data": { - "gtfs": { - "stop_id": "4743", - "stop_code": "34743", - "stop_name": "boul. Robert-Bourassa et William", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Robert-Bourassa et William", - "geography": { - "type": "Point", - "coordinates": [ - -73.5584081118068, - 45.4974146870575 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1017924374481 - }, - "name": "boul. Robert-Bourassa et William", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.558408112, - 45.497414687 - ] - }, - "is_frozen": false, - "integer_id": 1632, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.558206, - 45.496464 - ] - }, - "id": 1633, - "properties": { - "id": "0f8ef5e7-ff7c-4097-8d8a-9727f12190ea", - "code": "34744", - "data": { - "stops": [ - { - "id": "4744", - "code": "34744", - "data": { - "gtfs": { - "stop_id": "4744", - "stop_code": "34744", - "stop_name": "boul. Robert-Bourassa et Ottawa", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Robert-Bourassa et Ottawa", - "geography": { - "type": "Point", - "coordinates": [ - -73.558206080303, - 45.4964641706852 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0857380410074 - }, - "name": "boul. Robert-Bourassa et Ottawa", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.55820608, - 45.496464171 - ] - }, - "is_frozen": false, - "integer_id": 1633, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482478, - 45.473581 - ] - }, - "id": 1634, - "properties": { - "id": "a9b02686-8465-48b9-89ba-773a03aed1e8", - "code": "34761", - "data": { - "stops": [ - { - "id": "4761", - "code": "34761", - "data": { - "gtfs": { - "stop_id": "4761", - "stop_code": "34761", - "stop_name": "boul. Provencher et av. Panneton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Provencher et av. Panneton", - "geography": { - "type": "Point", - "coordinates": [ - -73.4824781535434, - 45.4735807279148 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6994748034393 - }, - "name": "boul. Provencher et av. Panneton", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482478154, - 45.473580728 - ] - }, - "is_frozen": false, - "integer_id": 1634, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.393044, - 45.489466 - ] - }, - "id": 1635, - "properties": { - "id": "87ac0337-2ebc-4670-a2d4-e0f4a5b3c627", - "code": "34775", - "data": { - "stops": [ - { - "id": "4775", - "code": "34775", - "data": { - "gtfs": { - "stop_id": "4775", - "stop_code": "34775", - "stop_name": "HERITAGE REGIONAL HIGH SCHOOL", - "location_type": 0, - "parent_station": "" - } - }, - "name": "HERITAGE REGIONAL HIGH SCHOOL", - "geography": { - "type": "Point", - "coordinates": [ - -73.393043650199, - 45.4894659816993 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9675620338222 - }, - "name": "HERITAGE REGIONAL HIGH SCHOOL", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.39304365, - 45.489465982 - ] - }, - "is_frozen": false, - "integer_id": 1635, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.42258, - 45.502952 - ] - }, - "id": 1636, - "properties": { - "id": "588e4aef-6d38-4fb0-95ae-8ac520e753f3", - "code": "34777", - "data": { - "stops": [ - { - "id": "4777", - "code": "34777", - "data": { - "gtfs": { - "stop_id": "4777", - "stop_code": "34777", - "stop_name": "montée Saint-Hubert et Duvernay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Saint-Hubert et Duvernay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4225796952279, - 45.5029520066563 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1953348097445 - }, - "name": "montée Saint-Hubert et Duvernay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.422579695, - 45.502952007 - ] - }, - "is_frozen": false, - "integer_id": 1636, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.40746, - 45.57374 - ] - }, - "id": 1637, - "properties": { - "id": "33427dde-b7ac-44e3-ba8b-3d835422c2dc", - "code": "34779", - "data": { - "stops": [ - { - "id": "4779", - "code": "34779", - "data": { - "gtfs": { - "stop_id": "4779", - "stop_code": "34779", - "stop_name": "ch. de Touraine et Mc Donald's", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Touraine et Mc Donald's", - "geography": { - "type": "Point", - "coordinates": [ - -73.4074604607026, - 45.5737401036142 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.393571171867 - }, - "name": "ch. de Touraine et Mc Donald's", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.407460461, - 45.573740104 - ] - }, - "is_frozen": false, - "integer_id": 1637, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486824, - 45.47426 - ] - }, - "id": 1638, - "properties": { - "id": "f2aa277d-e5f8-429d-bc46-2a1c844da636", - "code": "34781", - "data": { - "stops": [ - { - "id": "4781", - "code": "34781", - "data": { - "gtfs": { - "stop_id": "4781", - "stop_code": "34781", - "stop_name": "boul. Plamondon et Perrier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Plamondon et Perrier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4868235438932, - 45.4742604448204 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7109414443375 - }, - "name": "boul. Plamondon et Perrier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.486823544, - 45.474260445 - ] - }, - "is_frozen": false, - "integer_id": 1638, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.433455, - 45.509202 - ] - }, - "id": 1639, - "properties": { - "id": "80008949-5a0f-4c5e-b778-592c2ee8487f", - "code": "34782", - "data": { - "stops": [ - { - "id": "4782", - "code": "34782", - "data": { - "gtfs": { - "stop_id": "4782", - "stop_code": "34782", - "stop_name": "ch. de Chambly et Gare Longueuil/ Saint-Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Gare Longueuil/ Saint-Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.433454661098, - 45.5092021183507 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3009511986754 - }, - "name": "ch. de Chambly et Gare Longueuil/ Saint-Hubert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.433454661, - 45.509202118 - ] - }, - "is_frozen": false, - "integer_id": 1639, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439312, - 45.52399 - ] - }, - "id": 1640, - "properties": { - "id": "3d39c5de-3cd5-4fd7-925f-37e3d32bd66c", - "code": "34784", - "data": { - "stops": [ - { - "id": "4784", - "code": "34784", - "data": { - "gtfs": { - "stop_id": "4784", - "stop_code": "34784", - "stop_name": "boul. Roland-Therrien et du Capricorne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et du Capricorne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4393919614675, - 45.5238640623228 - ] - } - }, - { - "id": "5627", - "code": "30376", - "data": { - "gtfs": { - "stop_id": "5627", - "stop_code": "30376", - "stop_name": "boul. Roland-Therrien et de Sancerre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et de Sancerre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4392312268419, - 45.5241154569356 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5509760513104 - }, - "name": "boul. Roland-Therrien et du Capricorne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439311594, - 45.52398976 - ] - }, - "is_frozen": false, - "integer_id": 1640, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443998, - 45.534162 - ] - }, - "id": 1641, - "properties": { - "id": "210e532b-2acc-4a3e-b173-3471add098b1", - "code": "34788", - "data": { - "stops": [ - { - "id": "4788", - "code": "34788", - "data": { - "gtfs": { - "stop_id": "4788", - "stop_code": "34788", - "stop_name": "Belcourt et boul. Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et boul. Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4443141868841, - 45.5337803977413 - ] - } - }, - { - "id": "4889", - "code": "34889", - "data": { - "gtfs": { - "stop_id": "4889", - "stop_code": "34889", - "stop_name": "Belcourt et boul. Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et boul. Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4440570347323, - 45.533948060419 - ] - } - }, - { - "id": "5040", - "code": "35040", - "data": { - "gtfs": { - "stop_id": "5040", - "stop_code": "35040", - "stop_name": "Belcourt et boul. Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et boul. Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4440260570158, - 45.5342921568374 - ] - } - }, - { - "id": "5163", - "code": "35163", - "data": { - "gtfs": { - "stop_id": "5163", - "stop_code": "35163", - "stop_name": "boul. Béliveau et Belcourt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et Belcourt", - "geography": { - "type": "Point", - "coordinates": [ - -73.4438420917834, - 45.5342316757132 - ] - } - }, - { - "id": "5164", - "code": "35164", - "data": { - "gtfs": { - "stop_id": "5164", - "stop_code": "35164", - "stop_name": "boul. Béliveau et Belcourt", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et Belcourt", - "geography": { - "type": "Point", - "coordinates": [ - -73.4442133391311, - 45.5340609234696 - ] - } - }, - { - "id": "5801", - "code": "30570", - "data": { - "gtfs": { - "stop_id": "5801", - "stop_code": "30570", - "stop_name": "Belcourt et boul. Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et boul. Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4436820958769, - 45.5345426214774 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.72306995248 - }, - "name": "Belcourt et boul. Béliveau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443998141, - 45.53416151 - ] - }, - "is_frozen": false, - "integer_id": 1641, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.435753, - 45.517876 - ] - }, - "id": 1642, - "properties": { - "id": "9a101899-eb7e-4980-897e-cfb842bca005", - "code": "34791", - "data": { - "stops": [ - { - "id": "4791", - "code": "34791", - "data": { - "gtfs": { - "stop_id": "4791", - "stop_code": "34791", - "stop_name": "boul. Vauquelin et Alphonse-Dulude", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Vauquelin et Alphonse-Dulude", - "geography": { - "type": "Point", - "coordinates": [ - -73.4357530147, - 45.51787646703 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4475907758472 - }, - "name": "boul. Vauquelin et Alphonse-Dulude", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.435753015, - 45.517876467 - ] - }, - "is_frozen": false, - "integer_id": 1642, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.434964, - 45.519454 - ] - }, - "id": 1643, - "properties": { - "id": "3d1e4353-a4d7-45de-bd72-c906526806e2", - "code": "34792", - "data": { - "stops": [ - { - "id": "4792", - "code": "34792", - "data": { - "gtfs": { - "stop_id": "4792", - "stop_code": "34792", - "stop_name": "boul. Vauquelin et des Hussards", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Vauquelin et des Hussards", - "geography": { - "type": "Point", - "coordinates": [ - -73.4349641909722, - 45.5194537687028 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4742622141262 - }, - "name": "boul. Vauquelin et des Hussards", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.434964191, - 45.519453769 - ] - }, - "is_frozen": false, - "integer_id": 1643, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.435982, - 45.518276 - ] - }, - "id": 1644, - "properties": { - "id": "f1517eba-215d-4b2a-b591-160be878e090", - "code": "34794", - "data": { - "stops": [ - { - "id": "4794", - "code": "34794", - "data": { - "gtfs": { - "stop_id": "4794", - "stop_code": "34794", - "stop_name": "boul. Vauquelin et civique 309", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Vauquelin et civique 309", - "geography": { - "type": "Point", - "coordinates": [ - -73.4359823984343, - 45.5182758110177 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4543432863666 - }, - "name": "boul. Vauquelin et civique 309", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.435982398, - 45.518275811 - ] - }, - "is_frozen": false, - "integer_id": 1644, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.436293, - 45.510146 - ] - }, - "id": 1645, - "properties": { - "id": "686bdc34-3602-4c31-b05f-c41f9ebe2543", - "code": "34815", - "data": { - "stops": [ - { - "id": "4815", - "code": "34815", - "data": { - "gtfs": { - "stop_id": "4815", - "stop_code": "34815", - "stop_name": "ch. de Chambly et Patrick", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Patrick", - "geography": { - "type": "Point", - "coordinates": [ - -73.4362934928193, - 45.5101464661858 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3169121194817 - }, - "name": "ch. de Chambly et Patrick", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.436293493, - 45.510146466 - ] - }, - "is_frozen": false, - "integer_id": 1645, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.435404, - 45.510438 - ] - }, - "id": 1646, - "properties": { - "id": "0f06220e-c086-4a85-9d80-5c4d5410f93e", - "code": "34817", - "data": { - "stops": [ - { - "id": "4817", - "code": "34817", - "data": { - "gtfs": { - "stop_id": "4817", - "stop_code": "34817", - "stop_name": "ch. de la Savane et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4354035716906, - 45.5104380694882 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3218408151613 - }, - "name": "ch. de la Savane et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.435403572, - 45.510438069 - ] - }, - "is_frozen": false, - "integer_id": 1646, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.435841, - 45.510314 - ] - }, - "id": 1647, - "properties": { - "id": "0c9c2b52-ead4-4bb7-9085-39aca76f0358", - "code": "34818", - "data": { - "stops": [ - { - "id": "4818", - "code": "34818", - "data": { - "gtfs": { - "stop_id": "4818", - "stop_code": "34818", - "stop_name": "ch. de la Savane et ch. de Chambly", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et ch. de Chambly", - "geography": { - "type": "Point", - "coordinates": [ - -73.4358412819094, - 45.5103137024666 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3197387455815 - }, - "name": "ch. de la Savane et ch. de Chambly", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.435841282, - 45.510313702 - ] - }, - "is_frozen": false, - "integer_id": 1647, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490871, - 45.456884 - ] - }, - "id": 1648, - "properties": { - "id": "117181e4-9af2-4572-89ec-28895ad235ae", - "code": "34820", - "data": { - "stops": [ - { - "id": "4820", - "code": "34820", - "data": { - "gtfs": { - "stop_id": "4820", - "stop_code": "34820", - "stop_name": "boul. de Rome et civique 1205", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et civique 1205", - "geography": { - "type": "Point", - "coordinates": [ - -73.4908712164263, - 45.4568842563841 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4179386707211 - }, - "name": "boul. de Rome et civique 1205", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490871216, - 45.456884256 - ] - }, - "is_frozen": false, - "integer_id": 1648, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453959, - 45.449105 - ] - }, - "id": 1649, - "properties": { - "id": "b5853393-4072-4255-b507-e9c4b6659c5b", - "code": "34822", - "data": { - "stops": [ - { - "id": "4822", - "code": "34822", - "data": { - "gtfs": { - "stop_id": "4822", - "stop_code": "34822", - "stop_name": "boul. de Rome et av. Niagara", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. Niagara", - "geography": { - "type": "Point", - "coordinates": [ - -73.4539590847587, - 45.4491049135335 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2868477931869 - }, - "name": "boul. de Rome et av. Niagara", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453959085, - 45.449104914 - ] - }, - "is_frozen": false, - "integer_id": 1649, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.447215, - 45.445286 - ] - }, - "id": 1650, - "properties": { - "id": "d306b992-8d43-4ba8-8460-68d87b486222", - "code": "34823", - "data": { - "stops": [ - { - "id": "4823", - "code": "34823", - "data": { - "gtfs": { - "stop_id": "4823", - "stop_code": "34823", - "stop_name": "boul. de Rome et av. de Lugano", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. de Lugano", - "geography": { - "type": "Point", - "coordinates": [ - -73.4475016055684, - 45.4452648277999 - ] - } - }, - { - "id": "4824", - "code": "34824", - "data": { - "gtfs": { - "stop_id": "4824", - "stop_code": "34824", - "stop_name": "boul. de Rome et av. de Lugano", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et av. de Lugano", - "geography": { - "type": "Point", - "coordinates": [ - -73.4469278321013, - 45.4453079733212 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2225210884372 - }, - "name": "boul. de Rome et av. de Lugano", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447214719, - 45.445286401 - ] - }, - "is_frozen": false, - "integer_id": 1650, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.444701, - 45.443498 - ] - }, - "id": 1651, - "properties": { - "id": "3a0631fb-3e78-4a80-aeca-39b1fc1b7aa9", - "code": "34825", - "data": { - "stops": [ - { - "id": "4825", - "code": "34825", - "data": { - "gtfs": { - "stop_id": "4825", - "stop_code": "34825", - "stop_name": "boul. de Rome et Laffite", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et Laffite", - "geography": { - "type": "Point", - "coordinates": [ - -73.4449700210856, - 45.443485321093 - ] - } - }, - { - "id": "4826", - "code": "34826", - "data": { - "gtfs": { - "stop_id": "4826", - "stop_code": "34826", - "stop_name": "boul. de Rome et Laffite", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et Laffite", - "geography": { - "type": "Point", - "coordinates": [ - -73.4444316053505, - 45.4435100268417 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.192392623746 - }, - "name": "boul. de Rome et Laffite", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.444700813, - 45.443497674 - ] - }, - "is_frozen": false, - "integer_id": 1651, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44243, - 45.441673 - ] - }, - "id": 1652, - "properties": { - "id": "88486643-e9da-4936-905d-86d1e3882217", - "code": "34827", - "data": { - "stops": [ - { - "id": "4827", - "code": "34827", - "data": { - "gtfs": { - "stop_id": "4827", - "stop_code": "34827", - "stop_name": "boul. de Rome et boul. du Quartier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et boul. du Quartier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4424301643403, - 45.441673061901 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1616626516768 - }, - "name": "boul. de Rome et boul. du Quartier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442430164, - 45.441673062 - ] - }, - "is_frozen": false, - "integer_id": 1652, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441626, - 45.441748 - ] - }, - "id": 1653, - "properties": { - "id": "13dab893-0384-46f9-a2e5-e504a47de39a", - "code": "34828", - "data": { - "stops": [ - { - "id": "4828", - "code": "34828", - "data": { - "gtfs": { - "stop_id": "4828", - "stop_code": "34828", - "stop_name": "boul. de Rome et boul. du Quartier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et boul. du Quartier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4417325304363, - 45.4415889408716 - ] - } - }, - { - "id": "5558", - "code": "30306", - "data": { - "gtfs": { - "stop_id": "5558", - "stop_code": "30306", - "stop_name": "boul. du Quartier et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4415191792981, - 45.4419078620283 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1629314467872 - }, - "name": "boul. de Rome et boul. du Quartier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441625855, - 45.441748401 - ] - }, - "is_frozen": false, - "integer_id": 1653, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467803, - 45.437684 - ] - }, - "id": 1654, - "properties": { - "id": "a8f2aa49-d9af-49a0-97a5-daa2fbee568b", - "code": "34830", - "data": { - "stops": [ - { - "id": "4830", - "code": "34830", - "data": { - "gtfs": { - "stop_id": "4830", - "stop_code": "34830", - "stop_name": "ch. des Prairies et Ontario", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et Ontario", - "geography": { - "type": "Point", - "coordinates": [ - -73.4676531041964, - 45.4377423340522 - ] - } - }, - { - "id": "5377", - "code": "30117", - "data": { - "gtfs": { - "stop_id": "5377", - "stop_code": "30117", - "stop_name": "ch. des Prairies et Outremont", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et Outremont", - "geography": { - "type": "Point", - "coordinates": [ - -73.467953160544, - 45.4376247520029 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0944817660766 - }, - "name": "ch. des Prairies et Ontario", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.467803132, - 45.437683543 - ] - }, - "is_frozen": false, - "integer_id": 1654, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449444, - 45.446582 - ] - }, - "id": 1655, - "properties": { - "id": "e1aba230-d68b-4d66-9092-b5f4aaee8d5c", - "code": "34834", - "data": { - "stops": [ - { - "id": "4834", - "code": "34834", - "data": { - "gtfs": { - "stop_id": "4834", - "stop_code": "34834", - "stop_name": "boul. de Rome et Lautrec", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et Lautrec", - "geography": { - "type": "Point", - "coordinates": [ - -73.4491523709854, - 45.4466000371803 - ] - } - }, - { - "id": "4835", - "code": "34835", - "data": { - "gtfs": { - "stop_id": "4835", - "stop_code": "34835", - "stop_name": "boul. de Rome et Lautrec", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et Lautrec", - "geography": { - "type": "Point", - "coordinates": [ - -73.4497353454319, - 45.4465648554324 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2443528248217 - }, - "name": "boul. de Rome et Lautrec", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449443858, - 45.446582446 - ] - }, - "is_frozen": false, - "integer_id": 1655, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.438449, - 45.452534 - ] - }, - "id": 1656, - "properties": { - "id": "c46f92e7-e692-49ea-b12f-0df7099ee6d5", - "code": "34842", - "data": { - "stops": [ - { - "id": "4842", - "code": "34842", - "data": { - "gtfs": { - "stop_id": "4842", - "stop_code": "34842", - "stop_name": "boul. Lapinière et av. du Chemin-du-Golf", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et av. du Chemin-du-Golf", - "geography": { - "type": "Point", - "coordinates": [ - -73.4386838895284, - 45.4525363262282 - ] - } - }, - { - "id": "4924", - "code": "34924", - "data": { - "gtfs": { - "stop_id": "4924", - "stop_code": "34924", - "stop_name": "boul. Lapinière et av. du Chemin-du-Golf", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et av. du Chemin-du-Golf", - "geography": { - "type": "Point", - "coordinates": [ - -73.4382147332415, - 45.4525313249116 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3446222954609 - }, - "name": "boul. Lapinière et av. du Chemin-du-Golf", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438449311, - 45.452533826 - ] - }, - "is_frozen": false, - "integer_id": 1656, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482142, - 45.500682 - ] - }, - "id": 1657, - "properties": { - "id": "36289bfc-a55e-4b55-a0d2-14f7b26cd739", - "code": "34846", - "data": { - "stops": [ - { - "id": "4846", - "code": "34846", - "data": { - "gtfs": { - "stop_id": "4846", - "stop_code": "34846", - "stop_name": "Grande Allée et Bonaparte", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grande Allée et Bonaparte", - "geography": { - "type": "Point", - "coordinates": [ - -73.482142149379, - 45.5006821546831 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.156986725752 - }, - "name": "Grande Allée et Bonaparte", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482142149, - 45.500682155 - ] - }, - "is_frozen": false, - "integer_id": 1657, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.375145, - 45.500948 - ] - }, - "id": 1658, - "properties": { - "id": "284a178b-f032-40f4-9bf0-0ba74e13d985", - "code": "34849", - "data": { - "stops": [ - { - "id": "4849", - "code": "34849", - "data": { - "gtfs": { - "stop_id": "4849", - "stop_code": "34849", - "stop_name": "boul. des Promenades et Entrée Rona", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. des Promenades et Entrée Rona", - "geography": { - "type": "Point", - "coordinates": [ - -73.3750530986327, - 45.5007855927426 - ] - } - }, - { - "id": "4850", - "code": "34850", - "data": { - "gtfs": { - "stop_id": "4850", - "stop_code": "34850", - "stop_name": "boul. des Promenades et Entrée Rona", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. des Promenades et Entrée Rona", - "geography": { - "type": "Point", - "coordinates": [ - -73.3752371445701, - 45.5011098356097 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1614729835713 - }, - "name": "boul. des Promenades et Entrée Rona", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.375145122, - 45.500947714 - ] - }, - "is_frozen": false, - "integer_id": 1658, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491757, - 45.434107 - ] - }, - "id": 1659, - "properties": { - "id": "23aabe88-4903-4450-a13c-36afbe3bd891", - "code": "34851", - "data": { - "stops": [ - { - "id": "4851", - "code": "34851", - "data": { - "gtfs": { - "stop_id": "4851", - "stop_code": "34851", - "stop_name": "des Rubaniers et des Roselières", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Rubaniers et des Roselières", - "geography": { - "type": "Point", - "coordinates": [ - -73.4917574252596, - 45.4341071289504 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0342692879627 - }, - "name": "des Rubaniers et des Roselières", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491757425, - 45.434107129 - ] - }, - "is_frozen": false, - "integer_id": 1659, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.555689, - 45.496551 - ] - }, - "id": 1660, - "properties": { - "id": "587bca45-e028-437b-8c17-3d0fa1f4d9bd", - "code": "34852", - "data": { - "stops": [ - { - "id": "4852", - "code": "34852", - "data": { - "gtfs": { - "stop_id": "4852", - "stop_code": "34852", - "stop_name": "Wellington et boul. Robert-Bourassa", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Wellington et boul. Robert-Bourassa", - "geography": { - "type": "Point", - "coordinates": [ - -73.5556892524819, - 45.4965507873147 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0872009684757 - }, - "name": "Wellington et boul. Robert-Bourassa", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.555689252, - 45.496550787 - ] - }, - "is_frozen": false, - "integer_id": 1660, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.545601, - 45.487937 - ] - }, - "id": 1661, - "properties": { - "id": "92af9da4-27c5-4709-ac8c-743f6f7a85c2", - "code": "34853", - "data": { - "stops": [ - { - "id": "4853", - "code": "34853", - "data": { - "gtfs": { - "stop_id": "4853", - "stop_code": "34853", - "stop_name": "des Irlandais et STATIONNEMENT CASINO", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Irlandais et STATIONNEMENT CASINO", - "geography": { - "type": "Point", - "coordinates": [ - -73.5456013870666, - 45.4879373244404 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9417539084893 - }, - "name": "des Irlandais et STATIONNEMENT CASINO", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.545601387, - 45.487937324 - ] - }, - "is_frozen": false, - "integer_id": 1661, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.31766, - 45.515156 - ] - }, - "id": 1662, - "properties": { - "id": "e39d2286-4090-4933-a88a-16d850b1afef", - "code": "34858", - "data": { - "stops": [ - { - "id": "4858", - "code": "34858", - "data": { - "gtfs": { - "stop_id": "4858", - "stop_code": "34858", - "stop_name": "Grand Boulevard est et boul. De Boucherville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grand Boulevard est et boul. De Boucherville", - "geography": { - "type": "Point", - "coordinates": [ - -73.3176770464506, - 45.5150852513819 - ] - } - }, - { - "id": "5298", - "code": "30024", - "data": { - "gtfs": { - "stop_id": "5298", - "stop_code": "30024", - "stop_name": "boul. De Boucherville et Grand Boulevard est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et Grand Boulevard est", - "geography": { - "type": "Point", - "coordinates": [ - -73.3176427310378, - 45.5152276828587 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4016020555779 - }, - "name": "Grand Boulevard est et boul. De Boucherville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.317659889, - 45.515156467 - ] - }, - "is_frozen": false, - "integer_id": 1662, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.323797, - 45.514726 - ] - }, - "id": 1663, - "properties": { - "id": "57a91181-2fc4-4e39-a5bf-0ff47bbe6e9b", - "code": "34859", - "data": { - "stops": [ - { - "id": "4859", - "code": "34859", - "data": { - "gtfs": { - "stop_id": "4859", - "stop_code": "34859", - "stop_name": "Grand Boulevard est et de la Fougère", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grand Boulevard est et de la Fougère", - "geography": { - "type": "Point", - "coordinates": [ - -73.3236677865515, - 45.514781369978 - ] - } - }, - { - "id": "4860", - "code": "34860", - "data": { - "gtfs": { - "stop_id": "4860", - "stop_code": "34860", - "stop_name": "Grand Boulevard est et de la Fougère", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grand Boulevard est et de la Fougère", - "geography": { - "type": "Point", - "coordinates": [ - -73.3239255705685, - 45.5146700973133 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3943199910663 - }, - "name": "Grand Boulevard est et de la Fougère", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.323796679, - 45.514725734 - ] - }, - "is_frozen": false, - "integer_id": 1663, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.471798, - 45.438554 - ] - }, - "id": 1664, - "properties": { - "id": "e13d482c-ee57-4f7d-bc38-264ca460deda", - "code": "34866", - "data": { - "stops": [ - { - "id": "4866", - "code": "34866", - "data": { - "gtfs": { - "stop_id": "4866", - "stop_code": "34866", - "stop_name": "av. Océanie et Occident", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Océanie et Occident", - "geography": { - "type": "Point", - "coordinates": [ - -73.4717981078777, - 45.4385538270223 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1091355753501 - }, - "name": "av. Océanie et Occident", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.471798108, - 45.438553827 - ] - }, - "is_frozen": false, - "integer_id": 1664, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.470252, - 45.440971 - ] - }, - "id": 1665, - "properties": { - "id": "daacedd2-0b84-4f73-9f01-d9072ec32dce", - "code": "34867", - "data": { - "stops": [ - { - "id": "4867", - "code": "34867", - "data": { - "gtfs": { - "stop_id": "4867", - "stop_code": "34867", - "stop_name": "av. Océanie et av. Orégon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Océanie et av. Orégon", - "geography": { - "type": "Point", - "coordinates": [ - -73.470272535289, - 45.4408611115207 - ] - } - }, - { - "id": "5376", - "code": "30116", - "data": { - "gtfs": { - "stop_id": "5376", - "stop_code": "30116", - "stop_name": "av. Océanie et av. Orégon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Océanie et av. Orégon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4703650712818, - 45.4410814096447 - ] - } - }, - { - "id": "5570", - "code": "30318", - "data": { - "gtfs": { - "stop_id": "5570", - "stop_code": "30318", - "stop_name": "av. Orégon et av. Océanie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orégon et av. Océanie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4701398606085, - 45.4410115521089 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1498437601887 - }, - "name": "av. Océanie et av. Orégon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.470252466, - 45.440971261 - ] - }, - "is_frozen": false, - "integer_id": 1665, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.4722, - 45.438027 - ] - }, - "id": 1666, - "properties": { - "id": "4a2d3316-6189-4ef5-b2d8-0d855b8ad675", - "code": "34868", - "data": { - "stops": [ - { - "id": "4868", - "code": "34868", - "data": { - "gtfs": { - "stop_id": "4868", - "stop_code": "34868", - "stop_name": "ch. des Prairies et av. Océanie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et av. Océanie", - "geography": { - "type": "Point", - "coordinates": [ - -73.47242545771, - 45.4379412062021 - ] - } - }, - { - "id": "4891", - "code": "34891", - "data": { - "gtfs": { - "stop_id": "4891", - "stop_code": "34891", - "stop_name": "av. Océanie et ch. des Prairies", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Océanie et ch. des Prairies", - "geography": { - "type": "Point", - "coordinates": [ - -73.4723126971334, - 45.438112202347 - ] - } - }, - { - "id": "5663", - "code": "30431", - "data": { - "gtfs": { - "stop_id": "5663", - "stop_code": "30431", - "stop_name": "ch. des Prairies et av. Océanie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et av. Océanie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4719737227769, - 45.4380537515949 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1002598179392 - }, - "name": "ch. des Prairies et av. Océanie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47219959, - 45.438026704 - ] - }, - "is_frozen": false, - "integer_id": 1666, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.425908, - 45.594896 - ] - }, - "id": 1667, - "properties": { - "id": "7cfada17-2082-416d-b64c-984a57776abe", - "code": "34872", - "data": { - "stops": [ - { - "id": "4872", - "code": "34872", - "data": { - "gtfs": { - "stop_id": "4872", - "stop_code": "34872", - "stop_name": "Jean-Deslauriers et Emma-Lajeunesse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jean-Deslauriers et Emma-Lajeunesse", - "geography": { - "type": "Point", - "coordinates": [ - -73.4257744181892, - 45.5949699584901 - ] - } - }, - { - "id": "4953", - "code": "34953", - "data": { - "gtfs": { - "stop_id": "4953", - "stop_code": "34953", - "stop_name": "Emma-Lajeunesse et Jean-Deslauriers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Emma-Lajeunesse et Jean-Deslauriers", - "geography": { - "type": "Point", - "coordinates": [ - -73.4260409142681, - 45.5948217163173 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7525447343018 - }, - "name": "Jean-Deslauriers et Emma-Lajeunesse", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.425907666, - 45.594895837 - ] - }, - "is_frozen": false, - "integer_id": 1667, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466668, - 45.501263 - ] - }, - "id": 1668, - "properties": { - "id": "a3062aba-92b8-419f-9d8e-4f21713f9dcc", - "code": "34893", - "data": { - "stops": [ - { - "id": "4893", - "code": "34893", - "data": { - "gtfs": { - "stop_id": "4893", - "stop_code": "34893", - "stop_name": "Georges et Elizabeth", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Georges et Elizabeth", - "geography": { - "type": "Point", - "coordinates": [ - -73.4666676471084, - 45.5012629673823 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1667988353429 - }, - "name": "Georges et Elizabeth", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466667647, - 45.501262967 - ] - }, - "is_frozen": false, - "integer_id": 1668, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467214, - 45.501117 - ] - }, - "id": 1669, - "properties": { - "id": "ef559a5c-0885-4ac5-a0dc-bdf67aea0546", - "code": "34894", - "data": { - "stops": [ - { - "id": "4894", - "code": "34894", - "data": { - "gtfs": { - "stop_id": "4894", - "stop_code": "34894", - "stop_name": "Elizabeth et Georges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Elizabeth et Georges", - "geography": { - "type": "Point", - "coordinates": [ - -73.467214340017, - 45.5011167714809 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1643290041524 - }, - "name": "Elizabeth et Georges", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46721434, - 45.501116771 - ] - }, - "is_frozen": false, - "integer_id": 1669, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445185, - 45.56924 - ] - }, - "id": 1670, - "properties": { - "id": "e979db3f-26cd-41d5-8708-f07b7090bef0", - "code": "34898", - "data": { - "stops": [ - { - "id": "4898", - "code": "34898", - "data": { - "gtfs": { - "stop_id": "4898", - "stop_code": "34898", - "stop_name": "Volta et des Frères-Lumière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Volta et des Frères-Lumière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4454124204008, - 45.569294426738 - ] - } - }, - { - "id": "4899", - "code": "34899", - "data": { - "gtfs": { - "stop_id": "4899", - "stop_code": "34899", - "stop_name": "Volta et des Frères-Lumière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Volta et des Frères-Lumière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4449575480837, - 45.5691849337074 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3172589555817 - }, - "name": "Volta et des Frères-Lumière", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445184984, - 45.56923968 - ] - }, - "is_frozen": false, - "integer_id": 1670, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.37617, - 45.498595 - ] - }, - "id": 1671, - "properties": { - "id": "88be8076-6606-4cc2-82bf-848c6a92b1c2", - "code": "34900", - "data": { - "stops": [ - { - "id": "4900", - "code": "34900", - "data": { - "gtfs": { - "stop_id": "4900", - "stop_code": "34900", - "stop_name": "boul. des Promenades et civique 1251", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. des Promenades et civique 1251", - "geography": { - "type": "Point", - "coordinates": [ - -73.3761695463308, - 45.4985951098315 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1217311258606 - }, - "name": "boul. des Promenades et civique 1251", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.376169546, - 45.49859511 - ] - }, - "is_frozen": false, - "integer_id": 1671, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.376583, - 45.498415 - ] - }, - "id": 1672, - "properties": { - "id": "324bc409-bf97-4fef-8e16-0521305ba7b1", - "code": "34901", - "data": { - "stops": [ - { - "id": "4901", - "code": "34901", - "data": { - "gtfs": { - "stop_id": "4901", - "stop_code": "34901", - "stop_name": "boul. des Promenades et civique 1251", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. des Promenades et civique 1251", - "geography": { - "type": "Point", - "coordinates": [ - -73.3765825166737, - 45.4984150858933 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1186902354244 - }, - "name": "boul. des Promenades et civique 1251", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.376582517, - 45.498415086 - ] - }, - "is_frozen": false, - "integer_id": 1672, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461191, - 45.484483 - ] - }, - "id": 1673, - "properties": { - "id": "5d2254e9-cfe7-49e2-bf1c-578f8fe53296", - "code": "34903", - "data": { - "stops": [ - { - "id": "4903", - "code": "34903", - "data": { - "gtfs": { - "stop_id": "4903", - "stop_code": "34903", - "stop_name": "Adam et FUTURE SHOP", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adam et FUTURE SHOP", - "geography": { - "type": "Point", - "coordinates": [ - -73.4611908572188, - 45.4844831487795 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8834451923001 - }, - "name": "Adam et FUTURE SHOP", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461190857, - 45.484483149 - ] - }, - "is_frozen": false, - "integer_id": 1673, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.387828, - 45.571269 - ] - }, - "id": 1674, - "properties": { - "id": "35827d6c-59cb-43b0-bfdd-eaa586fe772c", - "code": "34908", - "data": { - "stops": [ - { - "id": "4908", - "code": "34908", - "data": { - "gtfs": { - "stop_id": "4908", - "stop_code": "34908", - "stop_name": "Eiffel et civique 1690", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Eiffel et civique 1690", - "geography": { - "type": "Point", - "coordinates": [ - -73.387778684466, - 45.5712090545741 - ] - } - }, - { - "id": "4909", - "code": "34909", - "data": { - "gtfs": { - "stop_id": "4909", - "stop_code": "34909", - "stop_name": "Eiffel et civique 1690", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Eiffel et civique 1690", - "geography": { - "type": "Point", - "coordinates": [ - -73.3878782329702, - 45.5713280012682 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3516592255776 - }, - "name": "Eiffel et civique 1690", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.387828459, - 45.571268528 - ] - }, - "is_frozen": false, - "integer_id": 1674, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.394092, - 45.570404 - ] - }, - "id": 1675, - "properties": { - "id": "7335aafe-31d7-4598-a3ca-7bfa36ca76b3", - "code": "34910", - "data": { - "stops": [ - { - "id": "4910", - "code": "34910", - "data": { - "gtfs": { - "stop_id": "4910", - "stop_code": "34910", - "stop_name": "Eiffel et ch. de Lorraine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Eiffel et ch. de Lorraine", - "geography": { - "type": "Point", - "coordinates": [ - -73.3940836546869, - 45.570326518667 - ] - } - }, - { - "id": "4911", - "code": "34911", - "data": { - "gtfs": { - "stop_id": "4911", - "stop_code": "34911", - "stop_name": "Eiffel et ch. de Lorraine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Eiffel et ch. de Lorraine", - "geography": { - "type": "Point", - "coordinates": [ - -73.3940999889769, - 45.5704823748833 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3370077917076 - }, - "name": "Eiffel et ch. de Lorraine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.394091822, - 45.570404447 - ] - }, - "is_frozen": false, - "integer_id": 1675, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.401527, - 45.565635 - ] - }, - "id": 1676, - "properties": { - "id": "334d379f-12a2-4d6f-b070-272e37ff00dd", - "code": "34915", - "data": { - "stops": [ - { - "id": "4915", - "code": "34915", - "data": { - "gtfs": { - "stop_id": "4915", - "stop_code": "34915", - "stop_name": "Louis-Pasteur et civique 525", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Louis-Pasteur et civique 525", - "geography": { - "type": "Point", - "coordinates": [ - -73.401526832932, - 45.5656347093966 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2561437011798 - }, - "name": "Louis-Pasteur et civique 525", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.401526833, - 45.565634709 - ] - }, - "is_frozen": false, - "integer_id": 1676, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446221, - 45.436045 - ] - }, - "id": 1677, - "properties": { - "id": "c7ecdf81-e322-4f7b-837f-23d0dbe48d4e", - "code": "34920", - "data": { - "stops": [ - { - "id": "4920", - "code": "34920", - "data": { - "gtfs": { - "stop_id": "4920", - "stop_code": "34920", - "stop_name": "boul. du Quartier et DISTRIBUTION FÉLISOL INC.", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et DISTRIBUTION FÉLISOL INC.", - "geography": { - "type": "Point", - "coordinates": [ - -73.4462214790462, - 45.4360453067855 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0668990308218 - }, - "name": "boul. du Quartier et DISTRIBUTION FÉLISOL INC.", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446221479, - 45.436045307 - ] - }, - "is_frozen": false, - "integer_id": 1677, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445815, - 45.435999 - ] - }, - "id": 1678, - "properties": { - "id": "639f03d6-fbc0-4032-b293-79460cff8a75", - "code": "34923", - "data": { - "stops": [ - { - "id": "4923", - "code": "34923", - "data": { - "gtfs": { - "stop_id": "4923", - "stop_code": "34923", - "stop_name": "boul. du Quartier et DISTRIBUTION FÉLISOL INC.", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et DISTRIBUTION FÉLISOL INC.", - "geography": { - "type": "Point", - "coordinates": [ - -73.4458149480834, - 45.4359991456406 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0661218593984 - }, - "name": "boul. du Quartier et DISTRIBUTION FÉLISOL INC.", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445814948, - 45.435999146 - ] - }, - "is_frozen": false, - "integer_id": 1678, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.424499, - 45.453003 - ] - }, - "id": 1679, - "properties": { - "id": "657fc71f-da59-4e3a-8872-f83480cde10d", - "code": "34925", - "data": { - "stops": [ - { - "id": "4925", - "code": "34925", - "data": { - "gtfs": { - "stop_id": "4925", - "stop_code": "34925", - "stop_name": "boul. du Quartier et de Châteauneuf", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et de Châteauneuf", - "geography": { - "type": "Point", - "coordinates": [ - -73.4244987924118, - 45.453002798455 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3525249198988 - }, - "name": "boul. du Quartier et de Châteauneuf", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.424498792, - 45.453002798 - ] - }, - "is_frozen": false, - "integer_id": 1679, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.425329, - 45.452801 - ] - }, - "id": 1680, - "properties": { - "id": "94721b0b-0bae-4300-ab61-58dc9d3fe85b", - "code": "34926", - "data": { - "stops": [ - { - "id": "4926", - "code": "34926", - "data": { - "gtfs": { - "stop_id": "4926", - "stop_code": "34926", - "stop_name": "boul. du Quartier et de Châteauneuf", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et de Châteauneuf", - "geography": { - "type": "Point", - "coordinates": [ - -73.4253287700665, - 45.4528012905977 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3491293113053 - }, - "name": "boul. du Quartier et de Châteauneuf", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.42532877, - 45.452801291 - ] - }, - "is_frozen": false, - "integer_id": 1680, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.479883, - 45.483016 - ] - }, - "id": 1681, - "properties": { - "id": "a3997372-5a39-4bfb-8751-2c107b865fce", - "code": "34930", - "data": { - "stops": [ - { - "id": "4930", - "code": "34930", - "data": { - "gtfs": { - "stop_id": "4930", - "stop_code": "34930", - "stop_name": "Regent et Queen", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Regent et Queen", - "geography": { - "type": "Point", - "coordinates": [ - -73.4799240158683, - 45.4828852775634 - ] - } - }, - { - "id": "4931", - "code": "34931", - "data": { - "gtfs": { - "stop_id": "4931", - "stop_code": "34931", - "stop_name": "Regent et Queen", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Regent et Queen", - "geography": { - "type": "Point", - "coordinates": [ - -73.4798416947336, - 45.4831458990169 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8586750203577 - }, - "name": "Regent et Queen", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.479882855, - 45.483015588 - ] - }, - "is_frozen": false, - "integer_id": 1681, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.477618, - 45.484567 - ] - }, - "id": 1682, - "properties": { - "id": "2d362ed7-6d89-4629-988c-787207ccdc69", - "code": "34932", - "data": { - "stops": [ - { - "id": "4932", - "code": "34932", - "data": { - "gtfs": { - "stop_id": "4932", - "stop_code": "34932", - "stop_name": "Regent et Miller", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Regent et Miller", - "geography": { - "type": "Point", - "coordinates": [ - -73.4776746418294, - 45.4844394881869 - ] - } - }, - { - "id": "4933", - "code": "34933", - "data": { - "gtfs": { - "stop_id": "4933", - "stop_code": "34933", - "stop_name": "Regent et Empire", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Regent et Empire", - "geography": { - "type": "Point", - "coordinates": [ - -73.4775605451749, - 45.4846952533407 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8848667881757 - }, - "name": "Regent et Miller", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.477617594, - 45.484567371 - ] - }, - "is_frozen": false, - "integer_id": 1682, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.400242, - 45.490179 - ] - }, - "id": 1683, - "properties": { - "id": "bcf72c7e-4348-49ec-80f1-d05807e9bbd8", - "code": "34934", - "data": { - "stops": [ - { - "id": "4934", - "code": "34934", - "data": { - "gtfs": { - "stop_id": "4934", - "stop_code": "34934", - "stop_name": "boul. Cousineau et Racine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Racine", - "geography": { - "type": "Point", - "coordinates": [ - -73.4002417140546, - 45.4901794921719 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9796088374661 - }, - "name": "boul. Cousineau et Racine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.400241714, - 45.490179492 - ] - }, - "is_frozen": false, - "integer_id": 1683, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.438635, - 45.440492 - ] - }, - "id": 1684, - "properties": { - "id": "c1bf220e-ad95-40e3-900b-3dda32780f07", - "code": "34938", - "data": { - "stops": [ - { - "id": "4938", - "code": "34938", - "data": { - "gtfs": { - "stop_id": "4938", - "stop_code": "34938", - "stop_name": "boul. Leduc et BANQUE TD", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et BANQUE TD", - "geography": { - "type": "Point", - "coordinates": [ - -73.4386351508234, - 45.4404916778594 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1417674490817 - }, - "name": "boul. Leduc et BANQUE TD", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438635151, - 45.440491678 - ] - }, - "is_frozen": false, - "integer_id": 1684, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437272, - 45.441482 - ] - }, - "id": 1685, - "properties": { - "id": "fb79a3c6-17e7-4bc7-88f4-d17bcc5467ca", - "code": "34940", - "data": { - "stops": [ - { - "id": "4940", - "code": "34940", - "data": { - "gtfs": { - "stop_id": "4940", - "stop_code": "34940", - "stop_name": "boul. Leduc et EB GAMES", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et EB GAMES", - "geography": { - "type": "Point", - "coordinates": [ - -73.4372720611011, - 45.4414820677692 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1584461163532 - }, - "name": "boul. Leduc et EB GAMES", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437272061, - 45.441482068 - ] - }, - "is_frozen": false, - "integer_id": 1685, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.436322, - 45.443764 - ] - }, - "id": 1686, - "properties": { - "id": "1336b6ed-25ac-4ba0-b4d2-c273e4f51d74", - "code": "34942", - "data": { - "stops": [ - { - "id": "4942", - "code": "34942", - "data": { - "gtfs": { - "stop_id": "4942", - "stop_code": "34942", - "stop_name": "boul. Leduc et allée des Lumières", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et allée des Lumières", - "geography": { - "type": "Point", - "coordinates": [ - -73.4363220871634, - 45.4437644717636 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1968862620472 - }, - "name": "boul. Leduc et allée des Lumières", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.436322087, - 45.443764472 - ] - }, - "is_frozen": false, - "integer_id": 1686, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439983, - 45.443721 - ] - }, - "id": 1687, - "properties": { - "id": "936850f5-3268-43bc-97bf-4daf0894fdc7", - "code": "34944", - "data": { - "stops": [ - { - "id": "4944", - "code": "34944", - "data": { - "gtfs": { - "stop_id": "4944", - "stop_code": "34944", - "stop_name": "boul. du Quartier et BANQUE SCOTIA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et BANQUE SCOTIA", - "geography": { - "type": "Point", - "coordinates": [ - -73.4399833848357, - 45.4437208559334 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.196151640051 - }, - "name": "boul. du Quartier et BANQUE SCOTIA", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439983385, - 45.443720856 - ] - }, - "is_frozen": false, - "integer_id": 1687, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441373, - 45.44248 - ] - }, - "id": 1688, - "properties": { - "id": "00c8e0cb-91d0-48ff-97f2-5154a17a68bc", - "code": "34946", - "data": { - "stops": [ - { - "id": "4946", - "code": "34946", - "data": { - "gtfs": { - "stop_id": "4946", - "stop_code": "34946", - "stop_name": "boul. du Quartier et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4413734093575, - 45.4424801133933 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1752545772625 - }, - "name": "boul. du Quartier et boul. de Rome", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441373409, - 45.442480113 - ] - }, - "is_frozen": false, - "integer_id": 1688, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466559, - 45.515403 - ] - }, - "id": 1689, - "properties": { - "id": "ad783725-7edb-4c18-8b1a-a064301b213d", - "code": "34950", - "data": { - "stops": [ - { - "id": "4950", - "code": "34950", - "data": { - "gtfs": { - "stop_id": "4950", - "stop_code": "34950", - "stop_name": "boul. Jacques-Cartier ouest et de Lyon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier ouest et de Lyon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4665589701273, - 45.5154028020559 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4057667222137 - }, - "name": "boul. Jacques-Cartier ouest et de Lyon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46655897, - 45.515402802 - ] - }, - "is_frozen": false, - "integer_id": 1689, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.418134, - 45.568729 - ] - }, - "id": 1690, - "properties": { - "id": "b9a0be89-8d55-4f3c-ae5f-e8c732f903dc", - "code": "34951", - "data": { - "stops": [ - { - "id": "4951", - "code": "34951", - "data": { - "gtfs": { - "stop_id": "4951", - "stop_code": "34951", - "stop_name": "Nobel et civique 1500", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et civique 1500", - "geography": { - "type": "Point", - "coordinates": [ - -73.4179595599303, - 45.5687807668381 - ] - } - }, - { - "id": "4952", - "code": "34952", - "data": { - "gtfs": { - "stop_id": "4952", - "stop_code": "34952", - "stop_name": "Nobel et civique 1500", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et civique 1500", - "geography": { - "type": "Point", - "coordinates": [ - -73.4183079725501, - 45.5686777157351 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.308604751734 - }, - "name": "Nobel et civique 1500", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.418133766, - 45.568729241 - ] - }, - "is_frozen": false, - "integer_id": 1690, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.423243, - 45.595789 - ] - }, - "id": 1691, - "properties": { - "id": "81683acf-4f7f-4881-9c66-76f73077f14f", - "code": "34954", - "data": { - "stops": [ - { - "id": "4954", - "code": "34954", - "data": { - "gtfs": { - "stop_id": "4954", - "stop_code": "34954", - "stop_name": "Jean-Deslauriers et Dominique-Ducharme", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jean-Deslauriers et Dominique-Ducharme", - "geography": { - "type": "Point", - "coordinates": [ - -73.4233866898867, - 45.5957262590411 - ] - } - }, - { - "id": "4961", - "code": "34961", - "data": { - "gtfs": { - "stop_id": "4961", - "stop_code": "34961", - "stop_name": "Jean-Deslauriers et Dominique-Ducharme", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jean-Deslauriers et Dominique-Ducharme", - "geography": { - "type": "Point", - "coordinates": [ - -73.4230984879385, - 45.5958515869563 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7677075587216 - }, - "name": "Jean-Deslauriers et Dominique-Ducharme", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.423242589, - 45.595788923 - ] - }, - "is_frozen": false, - "integer_id": 1691, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.420645, - 45.594652 - ] - }, - "id": 1692, - "properties": { - "id": "89a9cd80-8390-4b5d-ae70-b79c4f2755a8", - "code": "34955", - "data": { - "stops": [ - { - "id": "4955", - "code": "34955", - "data": { - "gtfs": { - "stop_id": "4955", - "stop_code": "34955", - "stop_name": "Jean-Deslauriers et Paul-Doyon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jean-Deslauriers et Paul-Doyon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4207990606059, - 45.5946912069523 - ] - } - }, - { - "id": "4960", - "code": "34960", - "data": { - "gtfs": { - "stop_id": "4960", - "stop_code": "34960", - "stop_name": "Jean-Deslauriers et Paul-Doyon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jean-Deslauriers et Paul-Doyon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4204906313009, - 45.5946121479278 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7483995073022 - }, - "name": "Jean-Deslauriers et Paul-Doyon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.420644846, - 45.594651677 - ] - }, - "is_frozen": false, - "integer_id": 1692, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.419225, - 45.592269 - ] - }, - "id": 1693, - "properties": { - "id": "47288795-8cf7-4a4f-a6d6-27f1d0029236", - "code": "34956", - "data": { - "stops": [ - { - "id": "4956", - "code": "34956", - "data": { - "gtfs": { - "stop_id": "4956", - "stop_code": "34956", - "stop_name": "Jean-Deslauriers et Charles-Goulet", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jean-Deslauriers et Charles-Goulet", - "geography": { - "type": "Point", - "coordinates": [ - -73.419298255746, - 45.5923706779908 - ] - } - }, - { - "id": "4959", - "code": "34959", - "data": { - "gtfs": { - "stop_id": "4959", - "stop_code": "34959", - "stop_name": "Jean-Deslauriers et Charles-Goulet", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jean-Deslauriers et Charles-Goulet", - "geography": { - "type": "Point", - "coordinates": [ - -73.4191511126309, - 45.5921667321039 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7079453965794 - }, - "name": "Jean-Deslauriers et Charles-Goulet", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.419224684, - 45.592268705 - ] - }, - "is_frozen": false, - "integer_id": 1693, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.420701, - 45.590974 - ] - }, - "id": 1694, - "properties": { - "id": "e6bd25b8-5158-4fce-9b9d-3a004cbf9ea1", - "code": "34957", - "data": { - "stops": [ - { - "id": "4957", - "code": "34957", - "data": { - "gtfs": { - "stop_id": "4957", - "stop_code": "34957", - "stop_name": "Jean-Deslauriers et du Boisé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Jean-Deslauriers et du Boisé", - "geography": { - "type": "Point", - "coordinates": [ - -73.4207417628061, - 45.5910756315872 - ] - } - }, - { - "id": "4958", - "code": "34958", - "data": { - "gtfs": { - "stop_id": "4958", - "stop_code": "34958", - "stop_name": "du Boisé et Jean-Deslauriers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Boisé et Jean-Deslauriers", - "geography": { - "type": "Point", - "coordinates": [ - -73.42065985047, - 45.5908731500663 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6859748298004 - }, - "name": "Jean-Deslauriers et du Boisé", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.420700807, - 45.590974391 - ] - }, - "is_frozen": false, - "integer_id": 1694, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.421132, - 45.45759 - ] - }, - "id": 1695, - "properties": { - "id": "3947066a-3681-4f55-8693-0a5fac46c728", - "code": "34966", - "data": { - "stops": [ - { - "id": "4966", - "code": "34966", - "data": { - "gtfs": { - "stop_id": "4966", - "stop_code": "34966", - "stop_name": "boul. du Quartier et du Cormoran", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et du Cormoran", - "geography": { - "type": "Point", - "coordinates": [ - -73.4211318035412, - 45.4575902049841 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4298373820654 - }, - "name": "boul. du Quartier et du Cormoran", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.421131804, - 45.457590205 - ] - }, - "is_frozen": false, - "integer_id": 1695, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.420725, - 45.457387 - ] - }, - "id": 1696, - "properties": { - "id": "2091533d-ae73-45a6-ae28-00a869c29f04", - "code": "34967", - "data": { - "stops": [ - { - "id": "4967", - "code": "34967", - "data": { - "gtfs": { - "stop_id": "4967", - "stop_code": "34967", - "stop_name": "boul. du Quartier et du Cormoran", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et du Cormoran", - "geography": { - "type": "Point", - "coordinates": [ - -73.4207253204757, - 45.4573866411354 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4264062825001 - }, - "name": "boul. du Quartier et du Cormoran", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.42072532, - 45.457386641 - ] - }, - "is_frozen": false, - "integer_id": 1696, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.422929, - 45.454445 - ] - }, - "id": 1697, - "properties": { - "id": "006d28ae-a3cc-4f45-8689-daa6cf9386f5", - "code": "34968", - "data": { - "stops": [ - { - "id": "4968", - "code": "34968", - "data": { - "gtfs": { - "stop_id": "4968", - "stop_code": "34968", - "stop_name": "boul. du Quartier et du Cygne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et du Cygne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4229293026161, - 45.4544447285906 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3768240514396 - }, - "name": "boul. du Quartier et du Cygne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.422929303, - 45.454444729 - ] - }, - "is_frozen": false, - "integer_id": 1697, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.421733, - 45.454912 - ] - }, - "id": 1698, - "properties": { - "id": "812fffe8-cc71-4dbc-93c9-b4301abed6c9", - "code": "34969", - "data": { - "stops": [ - { - "id": "4969", - "code": "34969", - "data": { - "gtfs": { - "stop_id": "4969", - "stop_code": "34969", - "stop_name": "boul. du Quartier et du Cygne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et du Cygne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4217332232856, - 45.4549119078634 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3846972537183 - }, - "name": "boul. du Quartier et du Cygne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.421733223, - 45.454911908 - ] - }, - "is_frozen": false, - "integer_id": 1698, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.406412, - 45.574632 - ] - }, - "id": 1699, - "properties": { - "id": "0f2d673a-8365-425e-adb1-c97927e1fe04", - "code": "34971", - "data": { - "stops": [ - { - "id": "4971", - "code": "34971", - "data": { - "gtfs": { - "stop_id": "4971", - "stop_code": "34971", - "stop_name": "ch. de Touraine et Descartes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Touraine et Descartes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4064120946857, - 45.5746321823408 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4086999967253 - }, - "name": "ch. de Touraine et Descartes", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.406412095, - 45.574632182 - ] - }, - "is_frozen": false, - "integer_id": 1699, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.404376, - 45.573155 - ] - }, - "id": 1700, - "properties": { - "id": "2f7dafc2-f82c-429d-8ce9-0ab21c7cde49", - "code": "34972", - "data": { - "stops": [ - { - "id": "4972", - "code": "34972", - "data": { - "gtfs": { - "stop_id": "4972", - "stop_code": "34972", - "stop_name": "ch. Carrefour de la Rive-Sud et Restaurant Bâton Rouge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Carrefour de la Rive-Sud et Restaurant Bâton Rouge", - "geography": { - "type": "Point", - "coordinates": [ - -73.4043756872488, - 45.5731551243988 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3836508337436 - }, - "name": "ch. Carrefour de la Rive-Sud et Restaurant Bâton Rouge", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.404375687, - 45.573155124 - ] - }, - "is_frozen": false, - "integer_id": 1700, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.413956, - 45.573179 - ] - }, - "id": 1701, - "properties": { - "id": "c6549833-3800-4d1f-a789-747fc95c595a", - "code": "34974", - "data": { - "stops": [ - { - "id": "4974", - "code": "34974", - "data": { - "gtfs": { - "stop_id": "4974", - "stop_code": "34974", - "stop_name": "boul. De Montarville et Ampère", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et Ampère", - "geography": { - "type": "Point", - "coordinates": [ - -73.4141675302313, - 45.5732128364613 - ] - } - }, - { - "id": "4976", - "code": "34976", - "data": { - "gtfs": { - "stop_id": "4976", - "stop_code": "34976", - "stop_name": "boul. De Montarville et Ampère", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et Ampère", - "geography": { - "type": "Point", - "coordinates": [ - -73.4137438470354, - 45.5731459351747 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3840622729143 - }, - "name": "boul. De Montarville et Ampère", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.413955689, - 45.573179386 - ] - }, - "is_frozen": false, - "integer_id": 1701, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.422713, - 45.580211 - ] - }, - "id": 1702, - "properties": { - "id": "31ed7f59-0c7b-45ae-b437-8270ad7f8e62", - "code": "34980", - "data": { - "stops": [ - { - "id": "4980", - "code": "34980", - "data": { - "gtfs": { - "stop_id": "4980", - "stop_code": "34980", - "stop_name": "boul. De Montarville et civique 1280", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et civique 1280", - "geography": { - "type": "Point", - "coordinates": [ - -73.4227129657077, - 45.5802113328114 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5033334238434 - }, - "name": "boul. De Montarville et civique 1280", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.422712966, - 45.580211333 - ] - }, - "is_frozen": false, - "integer_id": 1702, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.425082, - 45.58202 - ] - }, - "id": 1703, - "properties": { - "id": "8602485c-23c0-44fe-9b32-fa177f723a3a", - "code": "34982", - "data": { - "stops": [ - { - "id": "4982", - "code": "34982", - "data": { - "gtfs": { - "stop_id": "4982", - "stop_code": "34982", - "stop_name": "boul. De Montarville et civique 1230", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et civique 1230", - "geography": { - "type": "Point", - "coordinates": [ - -73.4250815132207, - 45.5820201711315 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5340208671536 - }, - "name": "boul. De Montarville et civique 1230", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.425081513, - 45.582020171 - ] - }, - "is_frozen": false, - "integer_id": 1703, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.493332, - 45.449084 - ] - }, - "id": 1704, - "properties": { - "id": "af7f8c95-5bbb-4774-8d27-80767d1525b7", - "code": "34984", - "data": { - "stops": [ - { - "id": "4984", - "code": "34984", - "data": { - "gtfs": { - "stop_id": "4984", - "stop_code": "34984", - "stop_name": "boul. du Saint-Laurent et boul. Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Saint-Laurent et boul. Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4933319517336, - 45.4490841531943 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2864980182326 - }, - "name": "boul. du Saint-Laurent et boul. Marie-Victorin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.493331952, - 45.449084153 - ] - }, - "is_frozen": false, - "integer_id": 1704, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.387848, - 45.483962 - ] - }, - "id": 1705, - "properties": { - "id": "2ccb6d20-bc23-4c70-b31c-28503c25783e", - "code": "34985", - "data": { - "stops": [ - { - "id": "4985", - "code": "34985", - "data": { - "gtfs": { - "stop_id": "4985", - "stop_code": "34985", - "stop_name": "boul. Moïse-Vincent et civique 2980", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Moïse-Vincent et civique 2980", - "geography": { - "type": "Point", - "coordinates": [ - -73.3878478116623, - 45.4839622164188 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8746524255168 - }, - "name": "boul. Moïse-Vincent et civique 2980", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.387847812, - 45.483962216 - ] - }, - "is_frozen": false, - "integer_id": 1705, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.406173, - 45.507503 - ] - }, - "id": 1706, - "properties": { - "id": "6212287c-a903-4f14-b932-9fa7dcb13f7b", - "code": "34986", - "data": { - "stops": [ - { - "id": "4986", - "code": "34986", - "data": { - "gtfs": { - "stop_id": "4986", - "stop_code": "34986", - "stop_name": "Moreau et tsse Moreau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Moreau et tsse Moreau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4061378192165, - 45.5074199408998 - ] - } - }, - { - "id": "4997", - "code": "34997", - "data": { - "gtfs": { - "stop_id": "4997", - "stop_code": "34997", - "stop_name": "Moreau et tsse Moreau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Moreau et tsse Moreau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4062087744625, - 45.5075868407485 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2722421214428 - }, - "name": "Moreau et tsse Moreau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.406173297, - 45.507503391 - ] - }, - "is_frozen": false, - "integer_id": 1706, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.405374, - 45.50931 - ] - }, - "id": 1707, - "properties": { - "id": "0ea4fa54-ee0f-4999-90e6-2b0f71f6030e", - "code": "34987", - "data": { - "stops": [ - { - "id": "4987", - "code": "34987", - "data": { - "gtfs": { - "stop_id": "4987", - "stop_code": "34987", - "stop_name": "Moreau et av. Raoul", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Moreau et av. Raoul", - "geography": { - "type": "Point", - "coordinates": [ - -73.4053787923092, - 45.5092489125681 - ] - } - }, - { - "id": "4996", - "code": "34996", - "data": { - "gtfs": { - "stop_id": "4996", - "stop_code": "34996", - "stop_name": "av. Raoul et Moreau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Raoul et Moreau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4053690377222, - 45.5093710994392 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3027746301708 - }, - "name": "Moreau et av. Raoul", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.405373915, - 45.509310006 - ] - }, - "is_frozen": false, - "integer_id": 1707, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.399439, - 45.509509 - ] - }, - "id": 1708, - "properties": { - "id": "c22b0880-b3ca-4797-aa47-0cda85146514", - "code": "34988", - "data": { - "stops": [ - { - "id": "4988", - "code": "34988", - "data": { - "gtfs": { - "stop_id": "4988", - "stop_code": "34988", - "stop_name": "av. Raoul et Lucien-Milette", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Raoul et Lucien-Milette", - "geography": { - "type": "Point", - "coordinates": [ - -73.3995622644947, - 45.5095104877981 - ] - } - }, - { - "id": "4995", - "code": "34995", - "data": { - "gtfs": { - "stop_id": "4995", - "stop_code": "34995", - "stop_name": "Lucien-Milette et av. Raoul", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lucien-Milette et av. Raoul", - "geography": { - "type": "Point", - "coordinates": [ - -73.3993148128512, - 45.5095072635866 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3061357894416 - }, - "name": "av. Raoul et Lucien-Milette", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.399438539, - 45.509508876 - ] - }, - "is_frozen": false, - "integer_id": 1708, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.399301, - 45.508473 - ] - }, - "id": 1709, - "properties": { - "id": "ff0214aa-5a67-4237-87c2-863aa17e8087", - "code": "34989", - "data": { - "stops": [ - { - "id": "4989", - "code": "34989", - "data": { - "gtfs": { - "stop_id": "4989", - "stop_code": "34989", - "stop_name": "Lucien-Milette et Léontine-Marsolais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lucien-Milette et Léontine-Marsolais", - "geography": { - "type": "Point", - "coordinates": [ - -73.3994098128085, - 45.5085637332623 - ] - } - }, - { - "id": "4994", - "code": "34994", - "data": { - "gtfs": { - "stop_id": "4994", - "stop_code": "34994", - "stop_name": "Lucien-Milette et Léontine-Marsolais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lucien-Milette et Léontine-Marsolais", - "geography": { - "type": "Point", - "coordinates": [ - -73.3991920785873, - 45.5083823679954 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2886293980674 - }, - "name": "Lucien-Milette et Léontine-Marsolais", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.399300946, - 45.508473051 - ] - }, - "is_frozen": false, - "integer_id": 1709, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.399139, - 45.506918 - ] - }, - "id": 1710, - "properties": { - "id": "6765611d-305b-41e3-b519-b65e608494ba", - "code": "34990", - "data": { - "stops": [ - { - "id": "4990", - "code": "34990", - "data": { - "gtfs": { - "stop_id": "4990", - "stop_code": "34990", - "stop_name": "Lucien-Milette et Henri-Massé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lucien-Milette et Henri-Massé", - "geography": { - "type": "Point", - "coordinates": [ - -73.3992304288977, - 45.5070200468726 - ] - } - }, - { - "id": "4993", - "code": "34993", - "data": { - "gtfs": { - "stop_id": "4993", - "stop_code": "34993", - "stop_name": "Lucien-Milette et Henri-Massé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lucien-Milette et Henri-Massé", - "geography": { - "type": "Point", - "coordinates": [ - -73.3990484786876, - 45.506816620812 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2623550493688 - }, - "name": "Lucien-Milette et Henri-Massé", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.399139454, - 45.506918334 - ] - }, - "is_frozen": false, - "integer_id": 1710, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446832, - 45.434547 - ] - }, - "id": 1711, - "properties": { - "id": "6780d4e6-8fc6-40a2-9f96-57ee1360cc41", - "code": "35000", - "data": { - "stops": [ - { - "id": "5000", - "code": "35000", - "data": { - "gtfs": { - "stop_id": "5000", - "stop_code": "35000", - "stop_name": "boul. du Quartier et ch. des Prairies", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et ch. des Prairies", - "geography": { - "type": "Point", - "coordinates": [ - -73.4468321664127, - 45.4345471589052 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0416770181594 - }, - "name": "boul. du Quartier et ch. des Prairies", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446832166, - 45.434547159 - ] - }, - "is_frozen": false, - "integer_id": 1711, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442901, - 45.525147 - ] - }, - "id": 1712, - "properties": { - "id": "5b35096e-2561-4a9f-8bf4-a3e7609358bf", - "code": "35002", - "data": { - "stops": [ - { - "id": "5002", - "code": "35002", - "data": { - "gtfs": { - "stop_id": "5002", - "stop_code": "35002", - "stop_name": "boul. Roland-Therrien et boul. Roberval est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et boul. Roberval est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4425590786379, - 45.5250677441722 - ] - } - }, - { - "id": "5574", - "code": "30322", - "data": { - "gtfs": { - "stop_id": "5574", - "stop_code": "30322", - "stop_name": "boul. Roland-Therrien et boul. Roberval est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et boul. Roberval est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4432431601423, - 45.5252267431152 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5705546523229 - }, - "name": "boul. Roland-Therrien et boul. Roberval est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442901119, - 45.525147244 - ] - }, - "is_frozen": false, - "integer_id": 1712, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.418782, - 45.589327 - ] - }, - "id": 1713, - "properties": { - "id": "b34b9d4c-8a10-4c6f-8680-e94a58cb3557", - "code": "35003", - "data": { - "stops": [ - { - "id": "5003", - "code": "35003", - "data": { - "gtfs": { - "stop_id": "5003", - "stop_code": "35003", - "stop_name": "du Boisé et des Bois-Francs", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Boisé et des Bois-Francs", - "geography": { - "type": "Point", - "coordinates": [ - -73.4189164194388, - 45.5893628015719 - ] - } - }, - { - "id": "5012", - "code": "35012", - "data": { - "gtfs": { - "stop_id": "5012", - "stop_code": "35012", - "stop_name": "du Boisé et des Bois-Francs", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Boisé et des Bois-Francs", - "geography": { - "type": "Point", - "coordinates": [ - -73.4186477236328, - 45.5892909409314 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6580108730252 - }, - "name": "du Boisé et des Bois-Francs", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.418782072, - 45.589326871 - ] - }, - "is_frozen": false, - "integer_id": 1713, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.417278, - 45.588071 - ] - }, - "id": 1714, - "properties": { - "id": "80ef4305-1848-4e04-a328-9a6224dacc70", - "code": "35004", - "data": { - "stops": [ - { - "id": "5004", - "code": "35004", - "data": { - "gtfs": { - "stop_id": "5004", - "stop_code": "35004", - "stop_name": "du Boisé et de Normandie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Boisé et de Normandie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4174602701575, - 45.5881243519414 - ] - } - }, - { - "id": "5011", - "code": "35011", - "data": { - "gtfs": { - "stop_id": "5011", - "stop_code": "35011", - "stop_name": "du Boisé et de Normandie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Boisé et de Normandie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4170961679076, - 45.5880177752233 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6366972351583 - }, - "name": "du Boisé et de Normandie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.417278219, - 45.588071064 - ] - }, - "is_frozen": false, - "integer_id": 1714, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.41589, - 45.586721 - ] - }, - "id": 1715, - "properties": { - "id": "560a4184-8ee9-4ea1-b3fb-4093c9ece9d5", - "code": "35005", - "data": { - "stops": [ - { - "id": "5005", - "code": "35005", - "data": { - "gtfs": { - "stop_id": "5005", - "stop_code": "35005", - "stop_name": "du Boisé et des Châtaigniers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Boisé et des Châtaigniers", - "geography": { - "type": "Point", - "coordinates": [ - -73.4158898551987, - 45.5867214868862 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.613793700064 - }, - "name": "du Boisé et des Châtaigniers", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.415889855, - 45.586721487 - ] - }, - "is_frozen": false, - "integer_id": 1715, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.414031, - 45.585074 - ] - }, - "id": 1716, - "properties": { - "id": "144cb85b-88dc-4e09-90a2-f3d4d4c951bd", - "code": "35006", - "data": { - "stops": [ - { - "id": "5006", - "code": "35006", - "data": { - "gtfs": { - "stop_id": "5006", - "stop_code": "35006", - "stop_name": "du Boisé et des Châtaigniers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Boisé et des Châtaigniers", - "geography": { - "type": "Point", - "coordinates": [ - -73.4140311877583, - 45.5850739256084 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5858353178442 - }, - "name": "du Boisé et des Châtaigniers", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.414031188, - 45.585073926 - ] - }, - "is_frozen": false, - "integer_id": 1716, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.411561, - 45.583215 - ] - }, - "id": 1717, - "properties": { - "id": "4941bea8-570f-4adc-b6d4-2b2cbff2bc03", - "code": "35007", - "data": { - "stops": [ - { - "id": "5007", - "code": "35007", - "data": { - "gtfs": { - "stop_id": "5007", - "stop_code": "35007", - "stop_name": "du Boisé et du Bosquet", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Boisé et du Bosquet", - "geography": { - "type": "Point", - "coordinates": [ - -73.4117669650833, - 45.5832936794475 - ] - } - }, - { - "id": "5008", - "code": "35008", - "data": { - "gtfs": { - "stop_id": "5008", - "stop_code": "35008", - "stop_name": "du Boisé et du Bosquet", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Boisé et du Bosquet", - "geography": { - "type": "Point", - "coordinates": [ - -73.4113559357988, - 45.5831360583004 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5542908582786 - }, - "name": "du Boisé et du Bosquet", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.41156145, - 45.583214869 - ] - }, - "is_frozen": false, - "integer_id": 1717, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.413924, - 45.585161 - ] - }, - "id": 1718, - "properties": { - "id": "b7599023-7f7b-498e-8d55-1e94246bf9e4", - "code": "35009", - "data": { - "stops": [ - { - "id": "5009", - "code": "35009", - "data": { - "gtfs": { - "stop_id": "5009", - "stop_code": "35009", - "stop_name": "du Boisé et des Châtaigniers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Boisé et des Châtaigniers", - "geography": { - "type": "Point", - "coordinates": [ - -73.4139240818239, - 45.585160633566 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5873066537462 - }, - "name": "du Boisé et des Châtaigniers", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.413924082, - 45.585160634 - ] - }, - "is_frozen": false, - "integer_id": 1718, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.41556, - 45.586549 - ] - }, - "id": 1719, - "properties": { - "id": "1c1a55d1-8af4-4a8f-95a9-7af3f3207400", - "code": "35010", - "data": { - "stops": [ - { - "id": "5010", - "code": "35010", - "data": { - "gtfs": { - "stop_id": "5010", - "stop_code": "35010", - "stop_name": "du Boisé et des Châtaigniers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Boisé et des Châtaigniers", - "geography": { - "type": "Point", - "coordinates": [ - -73.4155598187324, - 45.5865488783128 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6108644876977 - }, - "name": "du Boisé et des Châtaigniers", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.415559819, - 45.586548878 - ] - }, - "is_frozen": false, - "integer_id": 1719, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.368641, - 45.526444 - ] - }, - "id": 1720, - "properties": { - "id": "24a322e0-f890-4138-9c97-136b5a2cdd60", - "code": "35014", - "data": { - "stops": [ - { - "id": "5014", - "code": "35014", - "data": { - "gtfs": { - "stop_id": "5014", - "stop_code": "35014", - "stop_name": "Parent et civique 1100", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Parent et civique 1100", - "geography": { - "type": "Point", - "coordinates": [ - -73.368580983029, - 45.5265138108704 - ] - } - }, - { - "id": "5015", - "code": "35015", - "data": { - "gtfs": { - "stop_id": "5015", - "stop_code": "35015", - "stop_name": "Parent et civique 1100", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Parent et civique 1100", - "geography": { - "type": "Point", - "coordinates": [ - -73.368700751177, - 45.5263745013885 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5924930674237 - }, - "name": "Parent et civique 1100", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.368640867, - 45.526444156 - ] - }, - "is_frozen": false, - "integer_id": 1720, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.369776, - 45.529776 - ] - }, - "id": 1721, - "properties": { - "id": "4d10c33d-a086-4248-8e97-1236a7069436", - "code": "35016", - "data": { - "stops": [ - { - "id": "5016", - "code": "35016", - "data": { - "gtfs": { - "stop_id": "5016", - "stop_code": "35016", - "stop_name": "Parent et civique 1041", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Parent et civique 1041", - "geography": { - "type": "Point", - "coordinates": [ - -73.3696819717362, - 45.5298023256698 - ] - } - }, - { - "id": "5017", - "code": "35017", - "data": { - "gtfs": { - "stop_id": "5017", - "stop_code": "35017", - "stop_name": "Parent et civique 1041", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Parent et civique 1041", - "geography": { - "type": "Point", - "coordinates": [ - -73.3698694399151, - 45.529748733518 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6488530808256 - }, - "name": "Parent et civique 1041", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.369775706, - 45.52977553 - ] - }, - "is_frozen": false, - "integer_id": 1721, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.367137, - 45.51472 - ] - }, - "id": 1722, - "properties": { - "id": "d3614ff1-08ff-435f-b8f7-1a76f68a0071", - "code": "35018", - "data": { - "stops": [ - { - "id": "5018", - "code": "35018", - "data": { - "gtfs": { - "stop_id": "5018", - "stop_code": "35018", - "stop_name": "Marie-Victorin et civique 1450", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Marie-Victorin et civique 1450", - "geography": { - "type": "Point", - "coordinates": [ - -73.3671365225516, - 45.5147204789891 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.394231149929 - }, - "name": "Marie-Victorin et civique 1450", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.367136523, - 45.514720479 - ] - }, - "is_frozen": false, - "integer_id": 1722, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.355721, - 45.515605 - ] - }, - "id": 1723, - "properties": { - "id": "6cc3ca76-cd11-4240-ac37-33142410aacb", - "code": "35021", - "data": { - "stops": [ - { - "id": "5021", - "code": "35021", - "data": { - "gtfs": { - "stop_id": "5021", - "stop_code": "35021", - "stop_name": "Marie-Victorin et civique 1890", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Marie-Victorin et civique 1890", - "geography": { - "type": "Point", - "coordinates": [ - -73.3557210638422, - 45.5156054519727 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4091928682152 - }, - "name": "Marie-Victorin et civique 1890", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.355721064, - 45.515605452 - ] - }, - "is_frozen": false, - "integer_id": 1723, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482395, - 45.562673 - ] - }, - "id": 1724, - "properties": { - "id": "e6df12e3-4f2f-4277-aa8e-a04daab48336", - "code": "35022", - "data": { - "stops": [ - { - "id": "5022", - "code": "35022", - "data": { - "gtfs": { - "stop_id": "5022", - "stop_code": "35022", - "stop_name": "Adoncour et des Pinsons", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et des Pinsons", - "geography": { - "type": "Point", - "coordinates": [ - -73.4823948383334, - 45.5626731458953 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2059448639543 - }, - "name": "Adoncour et des Pinsons", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482394838, - 45.562673146 - ] - }, - "is_frozen": false, - "integer_id": 1724, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.369294, - 45.522995 - ] - }, - "id": 1725, - "properties": { - "id": "dca87cea-ccf9-454c-a18b-6489a3e1ab68", - "code": "35023", - "data": { - "stops": [ - { - "id": "5023", - "code": "35023", - "data": { - "gtfs": { - "stop_id": "5023", - "stop_code": "35023", - "stop_name": "Marie-Victorin et aut. de l'Acier - (30) est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Marie-Victorin et aut. de l'Acier - (30) est", - "geography": { - "type": "Point", - "coordinates": [ - -73.3691332054207, - 45.5230208156851 - ] - } - }, - { - "id": "5024", - "code": "35024", - "data": { - "gtfs": { - "stop_id": "5024", - "stop_code": "35024", - "stop_name": "Marie-Victorin et aut. de l'Acier - (30) est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Marie-Victorin et aut. de l'Acier - (30) est", - "geography": { - "type": "Point", - "coordinates": [ - -73.3694546556265, - 45.5229694912884 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5341534346414 - }, - "name": "Marie-Victorin et aut. de l'Acier - (30) est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.369293931, - 45.522995153 - ] - }, - "is_frozen": false, - "integer_id": 1725, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.428042, - 45.519411 - ] - }, - "id": 1726, - "properties": { - "id": "3abeeed6-00fe-4697-9dbf-87d5c2515aac", - "code": "35025", - "data": { - "stops": [ - { - "id": "5025", - "code": "35025", - "data": { - "gtfs": { - "stop_id": "5025", - "stop_code": "35025", - "stop_name": "ch. de la Savane et Suzor", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et Suzor", - "geography": { - "type": "Point", - "coordinates": [ - -73.428126782292, - 45.5194943196233 - ] - } - }, - { - "id": "5026", - "code": "35026", - "data": { - "gtfs": { - "stop_id": "5026", - "stop_code": "35026", - "stop_name": "ch. de la Savane et Suzor", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et Suzor", - "geography": { - "type": "Point", - "coordinates": [ - -73.4279577219011, - 45.519327326919 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4735359880226 - }, - "name": "ch. de la Savane et Suzor", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.428042252, - 45.519410823 - ] - }, - "is_frozen": false, - "integer_id": 1726, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456296, - 45.592579 - ] - }, - "id": 1727, - "properties": { - "id": "c9c009c0-0dd6-4cbe-a38f-b855122bd14a", - "code": "35027", - "data": { - "stops": [ - { - "id": "5027", - "code": "35027", - "data": { - "gtfs": { - "stop_id": "5027", - "stop_code": "35027", - "stop_name": "boul. du Fort-Saint-Louis et Cicot sud", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Cicot sud", - "geography": { - "type": "Point", - "coordinates": [ - -73.4563751050039, - 45.5926353738084 - ] - } - }, - { - "id": "5028", - "code": "35028", - "data": { - "gtfs": { - "stop_id": "5028", - "stop_code": "35028", - "stop_name": "boul. du Fort-Saint-Louis et Cicot sud", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Fort-Saint-Louis et Cicot sud", - "geography": { - "type": "Point", - "coordinates": [ - -73.4562161744837, - 45.5925228883881 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7132150017403 - }, - "name": "boul. du Fort-Saint-Louis et Cicot sud", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45629564, - 45.592579131 - ] - }, - "is_frozen": false, - "integer_id": 1727, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455507, - 45.566131 - ] - }, - "id": 1728, - "properties": { - "id": "6150abd1-c8f6-4045-8e3e-f50bbef79a53", - "code": "35029", - "data": { - "stops": [ - { - "id": "5029", - "code": "35029", - "data": { - "gtfs": { - "stop_id": "5029", - "stop_code": "35029", - "stop_name": "ch. du Lac et Labadie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et Labadie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4555074115116, - 45.566131105146 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2645584379925 - }, - "name": "ch. du Lac et Labadie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455507412, - 45.566131105 - ] - }, - "is_frozen": false, - "integer_id": 1728, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.40601, - 45.572072 - ] - }, - "id": 1729, - "properties": { - "id": "9adb2d51-794e-405a-84b9-dacf33a046bb", - "code": "35031", - "data": { - "stops": [ - { - "id": "5031", - "code": "35031", - "data": { - "gtfs": { - "stop_id": "5031", - "stop_code": "35031", - "stop_name": "ch. Carrefour de la Rive-Sud et Sports Experts", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Carrefour de la Rive-Sud et Sports Experts", - "geography": { - "type": "Point", - "coordinates": [ - -73.4060096822792, - 45.572071778845 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.365279819192 - }, - "name": "ch. Carrefour de la Rive-Sud et Sports Experts", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.406009682, - 45.572071779 - ] - }, - "is_frozen": false, - "integer_id": 1729, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456362, - 45.545085 - ] - }, - "id": 1730, - "properties": { - "id": "7297ee1d-b36d-46fd-b6df-e9807a5791cf", - "code": "35034", - "data": { - "stops": [ - { - "id": "5034", - "code": "35034", - "data": { - "gtfs": { - "stop_id": "5034", - "stop_code": "35034", - "stop_name": "boul. Curé-Poirier est et boul. Jacques-Cartier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier est et boul. Jacques-Cartier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4563624709877, - 45.5450852287507 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9079890253802 - }, - "name": "boul. Curé-Poirier est et boul. Jacques-Cartier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456362471, - 45.545085229 - ] - }, - "is_frozen": false, - "integer_id": 1730, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.384825, - 45.506619 - ] - }, - "id": 1731, - "properties": { - "id": "71f7bbc9-363a-40ba-86f7-7f9ec638da55", - "code": "35036", - "data": { - "stops": [ - { - "id": "5036", - "code": "35036", - "data": { - "gtfs": { - "stop_id": "5036", - "stop_code": "35036", - "stop_name": "de l'Étang et HOME DEPOT", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de l'Étang et HOME DEPOT", - "geography": { - "type": "Point", - "coordinates": [ - -73.3850680051723, - 45.5065323316444 - ] - } - }, - { - "id": "5037", - "code": "35037", - "data": { - "gtfs": { - "stop_id": "5037", - "stop_code": "35037", - "stop_name": "de l'Étang et CANADIAN TIRE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de l'Étang et CANADIAN TIRE", - "geography": { - "type": "Point", - "coordinates": [ - -73.3845819816273, - 45.5067055858926 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.257295929912 - }, - "name": "de l'Étang et HOME DEPOT", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.384824993, - 45.506618959 - ] - }, - "is_frozen": false, - "integer_id": 1731, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440015, - 45.45364 - ] - }, - "id": 1732, - "properties": { - "id": "06cee1c3-abcc-4982-b889-e73356b844e0", - "code": "35038", - "data": { - "stops": [ - { - "id": "5038", - "code": "35038", - "data": { - "gtfs": { - "stop_id": "5038", - "stop_code": "35038", - "stop_name": "boul. Lapinière et av. Colomb", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et av. Colomb", - "geography": { - "type": "Point", - "coordinates": [ - -73.4402668210031, - 45.4536701492791 - ] - } - }, - { - "id": "5039", - "code": "35039", - "data": { - "gtfs": { - "stop_id": "5039", - "stop_code": "35039", - "stop_name": "boul. Lapinière et av. Colomb", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et av. Colomb", - "geography": { - "type": "Point", - "coordinates": [ - -73.4397625754951, - 45.4536091040535 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3632564068533 - }, - "name": "boul. Lapinière et av. Colomb", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440014698, - 45.453639627 - ] - }, - "is_frozen": false, - "integer_id": 1732, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.381496, - 45.50717 - ] - }, - "id": 1733, - "properties": { - "id": "f20e2154-4487-4d25-8e73-57adbf7414bd", - "code": "35041", - "data": { - "stops": [ - { - "id": "5041", - "code": "35041", - "data": { - "gtfs": { - "stop_id": "5041", - "stop_code": "35041", - "stop_name": "boul. Saint-Bruno et CINEMA CINEPLEX ODEON SAINT-BRUNO", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Saint-Bruno et CINEMA CINEPLEX ODEON SAINT-BRUNO", - "geography": { - "type": "Point", - "coordinates": [ - -73.3814963812537, - 45.5071703374305 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2666136941973 - }, - "name": "boul. Saint-Bruno et CINEMA CINEPLEX ODEON SAINT-BRUNO", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.381496381, - 45.507170337 - ] - }, - "is_frozen": false, - "integer_id": 1733, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.379104, - 45.508141 - ] - }, - "id": 1734, - "properties": { - "id": "f6fbba62-55dd-46e7-9c18-cd5bbb99b9d5", - "code": "35042", - "data": { - "stops": [ - { - "id": "5042", - "code": "35042", - "data": { - "gtfs": { - "stop_id": "5042", - "stop_code": "35042", - "stop_name": "Stationnement des Promenades et SIMONS", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Stationnement des Promenades et SIMONS", - "geography": { - "type": "Point", - "coordinates": [ - -73.3791852985931, - 45.5080596107945 - ] - } - }, - { - "id": "5044", - "code": "35044", - "data": { - "gtfs": { - "stop_id": "5044", - "stop_code": "35044", - "stop_name": "Stationnement des Promenades et TOYS R US", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Stationnement des Promenades et TOYS R US", - "geography": { - "type": "Point", - "coordinates": [ - -73.3790234539514, - 45.5082232683874 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2830250702481 - }, - "name": "Stationnement des Promenades et SIMONS", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.379104376, - 45.50814144 - ] - }, - "is_frozen": false, - "integer_id": 1734, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.471152, - 45.541741 - ] - }, - "id": 1735, - "properties": { - "id": "d179e57e-d1e0-4e92-9205-bca60d3115b1", - "code": "35047", - "data": { - "stops": [ - { - "id": "5047", - "code": "35047", - "data": { - "gtfs": { - "stop_id": "5047", - "stop_code": "35047", - "stop_name": "Adoncour et boul. Curé-Poirier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et boul. Curé-Poirier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4711519666641, - 45.5417414893433 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8513741673329 - }, - "name": "Adoncour et boul. Curé-Poirier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.471151967, - 45.541741489 - ] - }, - "is_frozen": false, - "integer_id": 1735, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468303, - 45.539996 - ] - }, - "id": 1736, - "properties": { - "id": "248781a4-a949-4c45-bc5a-1de80211510e", - "code": "35048", - "data": { - "stops": [ - { - "id": "5048", - "code": "35048", - "data": { - "gtfs": { - "stop_id": "5048", - "stop_code": "35048", - "stop_name": "Adoncour et King-George", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et King-George", - "geography": { - "type": "Point", - "coordinates": [ - -73.4685095591159, - 45.5399674709211 - ] - } - }, - { - "id": "5049", - "code": "35049", - "data": { - "gtfs": { - "stop_id": "5049", - "stop_code": "35049", - "stop_name": "Adoncour et King-George", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et King-George", - "geography": { - "type": "Point", - "coordinates": [ - -73.468096401864, - 45.5401347817848 - ] - } - }, - { - "id": "5496", - "code": "30243", - "data": { - "gtfs": { - "stop_id": "5496", - "stop_code": "30243", - "stop_name": "King-George et Adoncour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "King-George et Adoncour", - "geography": { - "type": "Point", - "coordinates": [ - -73.468166353493, - 45.5398567705071 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8218204220296 - }, - "name": "Adoncour et King-George", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46830298, - 45.539995776 - ] - }, - "is_frozen": false, - "integer_id": 1736, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465619, - 45.539927 - ] - }, - "id": 1737, - "properties": { - "id": "8e9d3a93-2217-4362-8631-6cc69bd428bc", - "code": "35050", - "data": { - "stops": [ - { - "id": "5050", - "code": "35050", - "data": { - "gtfs": { - "stop_id": "5050", - "stop_code": "35050", - "stop_name": "Adoncour et du Petit-Bois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et du Petit-Bois", - "geography": { - "type": "Point", - "coordinates": [ - -73.465921690757, - 45.539846994985 - ] - } - }, - { - "id": "5051", - "code": "35051", - "data": { - "gtfs": { - "stop_id": "5051", - "stop_code": "35051", - "stop_name": "Adoncour et du Petit-Bois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et du Petit-Bois", - "geography": { - "type": "Point", - "coordinates": [ - -73.4653169516021, - 45.5400066771545 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.820653370067 - }, - "name": "Adoncour et du Petit-Bois", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465619321, - 45.539926836 - ] - }, - "is_frozen": false, - "integer_id": 1737, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463854, - 45.539491 - ] - }, - "id": 1738, - "properties": { - "id": "497c7cbc-7c2a-4684-ae90-71dc2a66863f", - "code": "35052", - "data": { - "stops": [ - { - "id": "5052", - "code": "35052", - "data": { - "gtfs": { - "stop_id": "5052", - "stop_code": "35052", - "stop_name": "Adoncour et du Faubourg", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et du Faubourg", - "geography": { - "type": "Point", - "coordinates": [ - -73.4640704478145, - 45.5395797951541 - ] - } - }, - { - "id": "5053", - "code": "35053", - "data": { - "gtfs": { - "stop_id": "5053", - "stop_code": "35053", - "stop_name": "Adoncour et du Sentier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et du Sentier", - "geography": { - "type": "Point", - "coordinates": [ - -73.463636630429, - 45.5394024844261 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8132777809898 - }, - "name": "Adoncour et du Faubourg", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463853539, - 45.53949114 - ] - }, - "is_frozen": false, - "integer_id": 1738, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461903, - 45.538193 - ] - }, - "id": 1739, - "properties": { - "id": "a392bf4c-9790-451e-a9bc-51428fa10a69", - "code": "35054", - "data": { - "stops": [ - { - "id": "5054", - "code": "35054", - "data": { - "gtfs": { - "stop_id": "5054", - "stop_code": "35054", - "stop_name": "Adoncour et ch. Du Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Adoncour et ch. Du Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4620343082524, - 45.538150571892 - ] - } - }, - { - "id": "5055", - "code": "35055", - "data": { - "gtfs": { - "stop_id": "5055", - "stop_code": "35055", - "stop_name": "ch. Du Tremblay et Adoncour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et Adoncour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4617710198014, - 45.5382347943563 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7912981261801 - }, - "name": "Adoncour et ch. Du Tremblay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461902664, - 45.538192683 - ] - }, - "is_frozen": false, - "integer_id": 1739, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460733, - 45.538864 - ] - }, - "id": 1740, - "properties": { - "id": "3f5db866-fafa-412d-a611-8e8ceedc9d66", - "code": "35056", - "data": { - "stops": [ - { - "id": "5056", - "code": "35056", - "data": { - "gtfs": { - "stop_id": "5056", - "stop_code": "35056", - "stop_name": "ch. Du Tremblay et civique 1235", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 1235", - "geography": { - "type": "Point", - "coordinates": [ - -73.4606777482433, - 45.5387986870046 - ] - } - }, - { - "id": "5057", - "code": "35057", - "data": { - "gtfs": { - "stop_id": "5057", - "stop_code": "35057", - "stop_name": "ch. Du Tremblay et civique 1235", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 1235", - "geography": { - "type": "Point", - "coordinates": [ - -73.4607876363569, - 45.5389297932884 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8026657319068 - }, - "name": "ch. Du Tremblay et civique 1235", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.460732692, - 45.53886424 - ] - }, - "is_frozen": false, - "integer_id": 1740, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457922, - 45.541296 - ] - }, - "id": 1741, - "properties": { - "id": "aa7a5ed8-9a21-492a-a960-c6b24bbf08aa", - "code": "35058", - "data": { - "stops": [ - { - "id": "5058", - "code": "35058", - "data": { - "gtfs": { - "stop_id": "5058", - "stop_code": "35058", - "stop_name": "du Colisée et ch. Du Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Colisée et ch. Du Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4579947681846, - 45.5414280342666 - ] - } - }, - { - "id": "5059", - "code": "35059", - "data": { - "gtfs": { - "stop_id": "5059", - "stop_code": "35059", - "stop_name": "du Colisée et ch. Du Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Colisée et ch. Du Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4578482498863, - 45.5411631213804 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8438249358895 - }, - "name": "du Colisée et ch. Du Tremblay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457921509, - 45.541295578 - ] - }, - "is_frozen": false, - "integer_id": 1741, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459772, - 45.542308 - ] - }, - "id": 1742, - "properties": { - "id": "c7d03075-5044-4f36-93d3-b0ab9d315d42", - "code": "35060", - "data": { - "stops": [ - { - "id": "5060", - "code": "35060", - "data": { - "gtfs": { - "stop_id": "5060", - "stop_code": "35060", - "stop_name": "du Colisée et du Jardin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Colisée et du Jardin", - "geography": { - "type": "Point", - "coordinates": [ - -73.459772321414, - 45.5423076419323 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8609593401782 - }, - "name": "du Colisée et du Jardin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459772321, - 45.542307642 - ] - }, - "is_frozen": false, - "integer_id": 1742, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459385, - 45.542092 - ] - }, - "id": 1743, - "properties": { - "id": "e11daa5e-3189-4684-b63e-0ec15544872f", - "code": "35061", - "data": { - "stops": [ - { - "id": "5061", - "code": "35061", - "data": { - "gtfs": { - "stop_id": "5061", - "stop_code": "35061", - "stop_name": "du Colisée et du Jardin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Colisée et du Jardin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4593853601806, - 45.5420917250354 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8573037543827 - }, - "name": "du Colisée et du Jardin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45938536, - 45.542091725 - ] - }, - "is_frozen": false, - "integer_id": 1743, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46099, - 45.543008 - ] - }, - "id": 1744, - "properties": { - "id": "b42cc3ff-2da3-4535-b070-1150cc42c135", - "code": "35062", - "data": { - "stops": [ - { - "id": "5062", - "code": "35062", - "data": { - "gtfs": { - "stop_id": "5062", - "stop_code": "35062", - "stop_name": "du Colisée et Champêtre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Colisée et Champêtre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4607450612792, - 45.5427932920106 - ] - } - }, - { - "id": "5063", - "code": "35063", - "data": { - "gtfs": { - "stop_id": "5063", - "stop_code": "35063", - "stop_name": "du Colisée et du Jardin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Colisée et du Jardin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4612348885784, - 45.5432234210567 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8728230918532 - }, - "name": "du Colisée et Champêtre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.460989975, - 45.543008357 - ] - }, - "is_frozen": false, - "integer_id": 1744, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.461384, - 45.544691 - ] - }, - "id": 1745, - "properties": { - "id": "81ceaeba-df2d-476d-a80e-d7112cda70cb", - "code": "35064", - "data": { - "stops": [ - { - "id": "5064", - "code": "35064", - "data": { - "gtfs": { - "stop_id": "5064", - "stop_code": "35064", - "stop_name": "du Colisée et boul. Curé-Poirier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Colisée et boul. Curé-Poirier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4613222858408, - 45.5446597059074 - ] - } - }, - { - "id": "5065", - "code": "35065", - "data": { - "gtfs": { - "stop_id": "5065", - "stop_code": "35065", - "stop_name": "du Colisée et boul. Curé-Poirier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Colisée et boul. Curé-Poirier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4614684665429, - 45.5444624454677 - ] - } - }, - { - "id": "5841", - "code": "30610", - "data": { - "gtfs": { - "stop_id": "5841", - "stop_code": "30610", - "stop_name": "boul. Curé-Poirier est et du Colisée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier est et du Colisée", - "geography": { - "type": "Point", - "coordinates": [ - -73.4612743339484, - 45.5449187462693 - ] - } - }, - { - "id": "5844", - "code": "30613", - "data": { - "gtfs": { - "stop_id": "5844", - "stop_code": "30613", - "stop_name": "boul. Curé-Poirier est et du Colisée", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier est et du Colisée", - "geography": { - "type": "Point", - "coordinates": [ - -73.461493679319, - 45.5447375600685 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9013067392222 - }, - "name": "du Colisée et boul. Curé-Poirier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.461384007, - 45.544690596 - ] - }, - "is_frozen": false, - "integer_id": 1745, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.459211, - 45.544895 - ] - }, - "id": 1746, - "properties": { - "id": "ed9c5edc-a8fc-42c1-8283-02b881c76ff4", - "code": "35066", - "data": { - "stops": [ - { - "id": "5066", - "code": "35066", - "data": { - "gtfs": { - "stop_id": "5066", - "stop_code": "35066", - "stop_name": "boul. Curé-Poirier est et COLISEE JEAN BELIVEAU", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier est et COLISEE JEAN BELIVEAU", - "geography": { - "type": "Point", - "coordinates": [ - -73.459552842856, - 45.5448140620337 - ] - } - }, - { - "id": "5067", - "code": "35067", - "data": { - "gtfs": { - "stop_id": "5067", - "stop_code": "35067", - "stop_name": "boul. Curé-Poirier est et COLISEE JEAN BELIVEAU", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier est et COLISEE JEAN BELIVEAU", - "geography": { - "type": "Point", - "coordinates": [ - -73.4588701048839, - 45.5449755854462 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9047648967771 - }, - "name": "boul. Curé-Poirier est et COLISEE JEAN BELIVEAU", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.459211474, - 45.544894824 - ] - }, - "is_frozen": false, - "integer_id": 1746, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443628, - 45.54008 - ] - }, - "id": 1747, - "properties": { - "id": "1f21bce0-b8ed-434c-ade7-9416eb8a180a", - "code": "35068", - "data": { - "stops": [ - { - "id": "5068", - "code": "35068", - "data": { - "gtfs": { - "stop_id": "5068", - "stop_code": "35068", - "stop_name": "Belcourt et Arcand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et Arcand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4439039133605, - 45.5400633945433 - ] - } - }, - { - "id": "5833", - "code": "30602", - "data": { - "gtfs": { - "stop_id": "5833", - "stop_code": "30602", - "stop_name": "Belcourt et Arcand", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et Arcand", - "geography": { - "type": "Point", - "coordinates": [ - -73.4433526010583, - 45.5400968807757 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8232485513506 - }, - "name": "Belcourt et Arcand", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443628257, - 45.540080138 - ] - }, - "is_frozen": false, - "integer_id": 1747, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441951, - 45.539699 - ] - }, - "id": 1748, - "properties": { - "id": "6ad75842-382c-44ee-b7d6-fd3532656bb0", - "code": "35069", - "data": { - "stops": [ - { - "id": "5069", - "code": "35069", - "data": { - "gtfs": { - "stop_id": "5069", - "stop_code": "35069", - "stop_name": "Belcourt et Asselin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et Asselin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4421970583287, - 45.5397048457332 - ] - } - }, - { - "id": "5832", - "code": "30601", - "data": { - "gtfs": { - "stop_id": "5832", - "stop_code": "30601", - "stop_name": "Belcourt et Asselin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et Asselin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4417047636596, - 45.5396936922416 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8168010283331 - }, - "name": "Belcourt et Asselin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441950911, - 45.539699269 - ] - }, - "is_frozen": false, - "integer_id": 1748, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442825, - 45.536598 - ] - }, - "id": 1749, - "properties": { - "id": "5360d4c3-b5aa-452d-a69b-73fcfc24260f", - "code": "35071", - "data": { - "stops": [ - { - "id": "5071", - "code": "35071", - "data": { - "gtfs": { - "stop_id": "5071", - "stop_code": "35071", - "stop_name": "Belcourt et Asselin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et Asselin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4428661940098, - 45.5366925112083 - ] - } - }, - { - "id": "5830", - "code": "30599", - "data": { - "gtfs": { - "stop_id": "5830", - "stop_code": "30599", - "stop_name": "Belcourt et Asselin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et Asselin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4427846922371, - 45.5365036952598 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7643079012913 - }, - "name": "Belcourt et Asselin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442825443, - 45.536598103 - ] - }, - "is_frozen": false, - "integer_id": 1749, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.438743, - 45.464175 - ] - }, - "id": 1750, - "properties": { - "id": "a02ece0d-dd7f-42ce-ab40-b24192e1114e", - "code": "35081", - "data": { - "stops": [ - { - "id": "5081", - "code": "35081", - "data": { - "gtfs": { - "stop_id": "5081", - "stop_code": "35081", - "stop_name": "av. Bienvenue et civique 3990", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Bienvenue et civique 3990", - "geography": { - "type": "Point", - "coordinates": [ - -73.4387433640359, - 45.4641745325596 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5408369795383 - }, - "name": "av. Bienvenue et civique 3990", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438743364, - 45.464174533 - ] - }, - "is_frozen": false, - "integer_id": 1750, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443918, - 45.461574 - ] - }, - "id": 1751, - "properties": { - "id": "b78c0741-766d-4707-a3b0-36a0477adc73", - "code": "35084", - "data": { - "stops": [ - { - "id": "5084", - "code": "35084", - "data": { - "gtfs": { - "stop_id": "5084", - "stop_code": "35084", - "stop_name": "av. Balzac et Beaumont", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Balzac et Beaumont", - "geography": { - "type": "Point", - "coordinates": [ - -73.44391834869, - 45.4615739955199 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4969921358759 - }, - "name": "av. Balzac et Beaumont", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443918349, - 45.461573996 - ] - }, - "is_frozen": false, - "integer_id": 1751, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442482, - 45.454872 - ] - }, - "id": 1752, - "properties": { - "id": "9159ff88-d9d5-4cda-a7ee-41b416c49163", - "code": "35086", - "data": { - "stops": [ - { - "id": "5086", - "code": "35086", - "data": { - "gtfs": { - "stop_id": "5086", - "stop_code": "35086", - "stop_name": "boul. Lapinière et boul. Chevrier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et boul. Chevrier", - "geography": { - "type": "Point", - "coordinates": [ - -73.442482355973, - 45.4548719194313 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3840233256819 - }, - "name": "boul. Lapinière et boul. Chevrier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442482356, - 45.454871919 - ] - }, - "is_frozen": false, - "integer_id": 1752, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.418563, - 45.572823 - ] - }, - "id": 1753, - "properties": { - "id": "8c73c7f2-6a19-4272-8988-4cd9987871b8", - "code": "35099", - "data": { - "stops": [ - { - "id": "5099", - "code": "35099", - "data": { - "gtfs": { - "stop_id": "5099", - "stop_code": "35099", - "stop_name": "de Gascogne et de Reims", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Gascogne et de Reims", - "geography": { - "type": "Point", - "coordinates": [ - -73.4185399929447, - 45.572926595398 - ] - } - }, - { - "id": "5111", - "code": "35111", - "data": { - "gtfs": { - "stop_id": "5111", - "stop_code": "35111", - "stop_name": "de Gascogne et de Reims", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Gascogne et de Reims", - "geography": { - "type": "Point", - "coordinates": [ - -73.4185857618033, - 45.5727188559165 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3780140242586 - }, - "name": "de Gascogne et de Reims", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.418562877, - 45.572822726 - ] - }, - "is_frozen": false, - "integer_id": 1753, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.42035, - 45.572242 - ] - }, - "id": 1754, - "properties": { - "id": "0b2fb021-eaa4-4107-8980-c7b3bc7fd9a9", - "code": "35100", - "data": { - "stops": [ - { - "id": "5100", - "code": "35100", - "data": { - "gtfs": { - "stop_id": "5100", - "stop_code": "35100", - "stop_name": "de Gascogne et civique 407", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Gascogne et civique 407", - "geography": { - "type": "Point", - "coordinates": [ - -73.4203335038899, - 45.5723233818675 - ] - } - }, - { - "id": "5110", - "code": "35110", - "data": { - "gtfs": { - "stop_id": "5110", - "stop_code": "35110", - "stop_name": "de Gascogne et civique 394", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Gascogne et civique 394", - "geography": { - "type": "Point", - "coordinates": [ - -73.4203671929499, - 45.5721607796022 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.36816767599 - }, - "name": "de Gascogne et civique 407", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.420350348, - 45.572242081 - ] - }, - "is_frozen": false, - "integer_id": 1754, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.423917, - 45.572694 - ] - }, - "id": 1755, - "properties": { - "id": "90388705-b26a-4b3b-a643-8ef39d04ff02", - "code": "35101", - "data": { - "stops": [ - { - "id": "5101", - "code": "35101", - "data": { - "gtfs": { - "stop_id": "5101", - "stop_code": "35101", - "stop_name": "de Gascogne et du Limousin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Gascogne et du Limousin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4237615366903, - 45.5727058749148 - ] - } - }, - { - "id": "5109", - "code": "35109", - "data": { - "gtfs": { - "stop_id": "5109", - "stop_code": "35109", - "stop_name": "de Gascogne et du Limousin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Gascogne et du Limousin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4240717345675, - 45.5726819093229 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3758292822206 - }, - "name": "de Gascogne et du Limousin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.423916636, - 45.572693892 - ] - }, - "is_frozen": false, - "integer_id": 1755, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.425717, - 45.574177 - ] - }, - "id": 1756, - "properties": { - "id": "25b68a02-d85c-4b7b-b822-bc26c51b07b7", - "code": "35102", - "data": { - "stops": [ - { - "id": "5102", - "code": "35102", - "data": { - "gtfs": { - "stop_id": "5102", - "stop_code": "35102", - "stop_name": "de Gascogne et d'Épinal", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Gascogne et d'Épinal", - "geography": { - "type": "Point", - "coordinates": [ - -73.4255614546025, - 45.5741841468099 - ] - } - }, - { - "id": "5108", - "code": "35108", - "data": { - "gtfs": { - "stop_id": "5108", - "stop_code": "35108", - "stop_name": "d'Épinal et de Gascogne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "d'Épinal et de Gascogne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4258723631833, - 45.5741690122461 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4009733156865 - }, - "name": "de Gascogne et d'Épinal", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.425716909, - 45.57417658 - ] - }, - "is_frozen": false, - "integer_id": 1756, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.427262, - 45.57467 - ] - }, - "id": 1757, - "properties": { - "id": "0a48a466-5f09-4ad5-911d-e79d40ef78d2", - "code": "35103", - "data": { - "stops": [ - { - "id": "5103", - "code": "35103", - "data": { - "gtfs": { - "stop_id": "5103", - "stop_code": "35103", - "stop_name": "d'Épinal et de Rouen", - "location_type": 0, - "parent_station": "" - } - }, - "name": "d'Épinal et de Rouen", - "geography": { - "type": "Point", - "coordinates": [ - -73.4271925897574, - 45.5745687873124 - ] - } - }, - { - "id": "5403", - "code": "30143", - "data": { - "gtfs": { - "stop_id": "5403", - "stop_code": "30143", - "stop_name": "de Rouen et de Lisieux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Rouen et de Lisieux", - "geography": { - "type": "Point", - "coordinates": [ - -73.4273323064145, - 45.5747717604282 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4093460179553 - }, - "name": "d'Épinal et de Rouen", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.427262448, - 45.574670274 - ] - }, - "is_frozen": false, - "integer_id": 1757, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.40416, - 45.480516 - ] - }, - "id": 1758, - "properties": { - "id": "d15a4dea-557a-47a7-943e-d1e1a44d1a5a", - "code": "35112", - "data": { - "stops": [ - { - "id": "5112", - "code": "35112", - "data": { - "gtfs": { - "stop_id": "5112", - "stop_code": "35112", - "stop_name": "Ovila-Hamel et des Pivoines", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ovila-Hamel et des Pivoines", - "geography": { - "type": "Point", - "coordinates": [ - -73.4041509945043, - 45.480390835491 - ] - } - }, - { - "id": "5114", - "code": "35114", - "data": { - "gtfs": { - "stop_id": "5114", - "stop_code": "35114", - "stop_name": "Ovila-Hamel et des Pivoines", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ovila-Hamel et des Pivoines", - "geography": { - "type": "Point", - "coordinates": [ - -73.4041694413487, - 45.4806419072722 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8164964879396 - }, - "name": "Ovila-Hamel et des Pivoines", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.404160218, - 45.480516371 - ] - }, - "is_frozen": false, - "integer_id": 1758, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441893, - 45.454908 - ] - }, - "id": 1759, - "properties": { - "id": "9e4bc046-2878-4cee-af77-934e179aa77f", - "code": "35116", - "data": { - "stops": [ - { - "id": "5116", - "code": "35116", - "data": { - "gtfs": { - "stop_id": "5116", - "stop_code": "35116", - "stop_name": "boul. Lapinière et boul. Chevrier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et boul. Chevrier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4418932521177, - 45.4549077232845 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3846267245356 - }, - "name": "boul. Lapinière et boul. Chevrier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441893252, - 45.454907723 - ] - }, - "is_frozen": false, - "integer_id": 1759, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450355, - 45.600769 - ] - }, - "id": 1760, - "properties": { - "id": "bbe875bc-cb85-4a61-923d-53ee4746a213", - "code": "35117", - "data": { - "stops": [ - { - "id": "5117", - "code": "35117", - "data": { - "gtfs": { - "stop_id": "5117", - "stop_code": "35117", - "stop_name": "TERMINUS DE MONTARVILLE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "TERMINUS DE MONTARVILLE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4503549968615, - 45.6007686545747 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.8522665994603 - }, - "name": "TERMINUS DE MONTARVILLE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450354997, - 45.600768655 - ] - }, - "is_frozen": false, - "integer_id": 1760, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440914, - 45.538585 - ] - }, - "id": 1761, - "properties": { - "id": "90aff802-7f58-4407-a26e-45f80682eeaf", - "code": "35121", - "data": { - "stops": [ - { - "id": "5121", - "code": "35121", - "data": { - "gtfs": { - "stop_id": "5121", - "stop_code": "35121", - "stop_name": "Belcourt et civique 3611", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et civique 3611", - "geography": { - "type": "Point", - "coordinates": [ - -73.4410015384797, - 45.5386675769603 - ] - } - }, - { - "id": "5831", - "code": "30600", - "data": { - "gtfs": { - "stop_id": "5831", - "stop_code": "30600", - "stop_name": "Belcourt et civique 3616", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Belcourt et civique 3616", - "geography": { - "type": "Point", - "coordinates": [ - -73.4408268373883, - 45.5385025904935 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7979403427676 - }, - "name": "Belcourt et civique 3611", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440914188, - 45.538585084 - ] - }, - "is_frozen": false, - "integer_id": 1761, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.421063, - 45.568593 - ] - }, - "id": 1762, - "properties": { - "id": "ff4a3e03-c804-4002-b3d4-f9bc873fc550", - "code": "35122", - "data": { - "stops": [ - { - "id": "5122", - "code": "35122", - "data": { - "gtfs": { - "stop_id": "5122", - "stop_code": "35122", - "stop_name": "Nobel et civique 1470", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et civique 1470", - "geography": { - "type": "Point", - "coordinates": [ - -73.4208881375739, - 45.5686636073645 - ] - } - }, - { - "id": "5123", - "code": "35123", - "data": { - "gtfs": { - "stop_id": "5123", - "stop_code": "35123", - "stop_name": "Nobel et civique 1470", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Nobel et civique 1470", - "geography": { - "type": "Point", - "coordinates": [ - -73.4212384152664, - 45.5685224820919 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3062956651286 - }, - "name": "Nobel et civique 1470", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.421063276, - 45.568593045 - ] - }, - "is_frozen": false, - "integer_id": 1762, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.421821, - 45.572167 - ] - }, - "id": 1763, - "properties": { - "id": "dba0b7ad-62f7-4b47-ac93-15546ef421d6", - "code": "35125", - "data": { - "stops": [ - { - "id": "5125", - "code": "35125", - "data": { - "gtfs": { - "stop_id": "5125", - "stop_code": "35125", - "stop_name": "de Gascogne et civique 357", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Gascogne et civique 357", - "geography": { - "type": "Point", - "coordinates": [ - -73.4216613286756, - 45.572234008296 - ] - } - }, - { - "id": "5127", - "code": "35127", - "data": { - "gtfs": { - "stop_id": "5127", - "stop_code": "35127", - "stop_name": "de Gascogne et civique 354", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Gascogne et civique 354", - "geography": { - "type": "Point", - "coordinates": [ - -73.4219815234486, - 45.5721009100975 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3669022874832 - }, - "name": "de Gascogne et civique 357", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.421821426, - 45.572167459 - ] - }, - "is_frozen": false, - "integer_id": 1763, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458503, - 45.540302 - ] - }, - "id": 1764, - "properties": { - "id": "6fd0bc88-4e0d-40ae-bdaa-413bd47146b0", - "code": "35128", - "data": { - "stops": [ - { - "id": "5128", - "code": "35128", - "data": { - "gtfs": { - "stop_id": "5128", - "stop_code": "35128", - "stop_name": "ch. Du Tremblay et civique 1250", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 1250", - "geography": { - "type": "Point", - "coordinates": [ - -73.4585026938715, - 45.5403018560841 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8270019537177 - }, - "name": "ch. Du Tremblay et civique 1250", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.458502694, - 45.540301856 - ] - }, - "is_frozen": false, - "integer_id": 1764, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.400194, - 45.476872 - ] - }, - "id": 1765, - "properties": { - "id": "69493295-4b3e-4f92-babc-7684f8cd988a", - "code": "35130", - "data": { - "stops": [ - { - "id": "5130", - "code": "35130", - "data": { - "gtfs": { - "stop_id": "5130", - "stop_code": "35130", - "stop_name": "boul. Julien-Bouthillier et des Oeillets", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Julien-Bouthillier et des Oeillets", - "geography": { - "type": "Point", - "coordinates": [ - -73.4001944093133, - 45.4768719728073 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7550010290734 - }, - "name": "boul. Julien-Bouthillier et des Oeillets", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.400194409, - 45.476871973 - ] - }, - "is_frozen": false, - "integer_id": 1765, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.438704, - 45.444663 - ] - }, - "id": 1766, - "properties": { - "id": "9a91df5e-7976-4b04-a1ed-26fb34f4f58f", - "code": "35137", - "data": { - "stops": [ - { - "id": "5137", - "code": "35137", - "data": { - "gtfs": { - "stop_id": "5137", - "stop_code": "35137", - "stop_name": "boul. du Quartier et SOCIÉTÉ DES ALCOOLS DU QUÉBEC", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et SOCIÉTÉ DES ALCOOLS DU QUÉBEC", - "geography": { - "type": "Point", - "coordinates": [ - -73.4387044544132, - 45.4446634785149 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2120285653639 - }, - "name": "boul. du Quartier et SOCIÉTÉ DES ALCOOLS DU QUÉBEC", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438704454, - 45.444663479 - ] - }, - "is_frozen": false, - "integer_id": 1766, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.401706, - 45.463363 - ] - }, - "id": 1767, - "properties": { - "id": "3950239b-5631-4d11-8c79-64fecfa361ca", - "code": "35139", - "data": { - "stops": [ - { - "id": "5139", - "code": "35139", - "data": { - "gtfs": { - "stop_id": "5139", - "stop_code": "35139", - "stop_name": "Armand-Frappier et civique 4800", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Armand-Frappier et civique 4800", - "geography": { - "type": "Point", - "coordinates": [ - -73.401705900905, - 45.463266083974 - ] - } - }, - { - "id": "5140", - "code": "35140", - "data": { - "gtfs": { - "stop_id": "5140", - "stop_code": "35140", - "stop_name": "Armand-Frappier et civique 4800", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Armand-Frappier et civique 4800", - "geography": { - "type": "Point", - "coordinates": [ - -73.4017055647853, - 45.4634595035972 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5271504811379 - }, - "name": "Armand-Frappier et civique 4800", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.401705733, - 45.463362794 - ] - }, - "is_frozen": false, - "integer_id": 1767, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.480429, - 45.565716 - ] - }, - "id": 1768, - "properties": { - "id": "84f7a7c0-b176-49cc-89e3-6756a3c3e4cc", - "code": "35142", - "data": { - "stops": [ - { - "id": "5142", - "code": "35142", - "data": { - "gtfs": { - "stop_id": "5142", - "stop_code": "35142", - "stop_name": "boul. Jean-Paul-Vincent et Passage piétonnier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jean-Paul-Vincent et Passage piétonnier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4804289005583, - 45.565716091194 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2575232461809 - }, - "name": "boul. Jean-Paul-Vincent et Passage piétonnier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.480428901, - 45.565716091 - ] - }, - "is_frozen": false, - "integer_id": 1768, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.420471, - 45.458693 - ] - }, - "id": 1769, - "properties": { - "id": "57b5655a-03f7-4fb9-a3a9-26c2523cb5bf", - "code": "35144", - "data": { - "stops": [ - { - "id": "5144", - "code": "35144", - "data": { - "gtfs": { - "stop_id": "5144", - "stop_code": "35144", - "stop_name": "boul. du Quartier et du Chardonneret", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et du Chardonneret", - "geography": { - "type": "Point", - "coordinates": [ - -73.4204708671905, - 45.4586926228603 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4484194297482 - }, - "name": "boul. du Quartier et du Chardonneret", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.420470867, - 45.458692623 - ] - }, - "is_frozen": false, - "integer_id": 1769, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455859, - 45.546224 - ] - }, - "id": 1770, - "properties": { - "id": "10018cb4-bab7-4531-9c02-bb0d227ab19c", - "code": "35155", - "data": { - "stops": [ - { - "id": "5155", - "code": "35155", - "data": { - "gtfs": { - "stop_id": "5155", - "stop_code": "35155", - "stop_name": "Joyal et boul. Jean-Paul-Vincent", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Joyal et boul. Jean-Paul-Vincent", - "geography": { - "type": "Point", - "coordinates": [ - -73.4558593044273, - 45.546224028411 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9272729886866 - }, - "name": "Joyal et boul. Jean-Paul-Vincent", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455859304, - 45.546224028 - ] - }, - "is_frozen": false, - "integer_id": 1770, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.377331, - 45.519836 - ] - }, - "id": 1771, - "properties": { - "id": "fc3ccf33-4026-4d4e-b0bc-03451e1ebb2d", - "code": "35156", - "data": { - "stops": [ - { - "id": "5156", - "code": "35156", - "data": { - "gtfs": { - "stop_id": "5156", - "stop_code": "35156", - "stop_name": "Graham-Bell et boul. Clairevue ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Graham-Bell et boul. Clairevue ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3772183708381, - 45.5200169959116 - ] - } - }, - { - "id": "5157", - "code": "35157", - "data": { - "gtfs": { - "stop_id": "5157", - "stop_code": "35157", - "stop_name": "Graham-Bell et boul. Clairevue ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Graham-Bell et boul. Clairevue ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3774445670967, - 45.5196548091939 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4807242546748 - }, - "name": "Graham-Bell et boul. Clairevue ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.377331469, - 45.519835903 - ] - }, - "is_frozen": false, - "integer_id": 1771, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.344046, - 45.513467 - ] - }, - "id": 1772, - "properties": { - "id": "7ed60f7f-8673-4e79-ae6c-ebe63f61f93d", - "code": "35159", - "data": { - "stops": [ - { - "id": "5159", - "code": "35159", - "data": { - "gtfs": { - "stop_id": "5159", - "stop_code": "35159", - "stop_name": "boul. Sir-Wilfrid-Laurier - (116) ouest et boul. Seigneurial ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier - (116) ouest et boul. Seigneurial ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3443100029684, - 45.5137719946836 - ] - } - }, - { - "id": "5292", - "code": "30018", - "data": { - "gtfs": { - "stop_id": "5292", - "stop_code": "30018", - "stop_name": "boul. Seigneurial ouest et boul. Sir-Wilfrid-Laurier - (116) est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et boul. Sir-Wilfrid-Laurier - (116) est", - "geography": { - "type": "Point", - "coordinates": [ - -73.3437828524065, - 45.5131618096962 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3730388543197 - }, - "name": "boul. Sir-Wilfrid-Laurier - (116) ouest et boul. Seigneurial ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.344046428, - 45.513466902 - ] - }, - "is_frozen": false, - "integer_id": 1772, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.369628, - 45.531188 - ] - }, - "id": 1773, - "properties": { - "id": "1cb5ae0c-b01a-4888-87b4-f35cbbb956cf", - "code": "35160", - "data": { - "stops": [ - { - "id": "5160", - "code": "35160", - "data": { - "gtfs": { - "stop_id": "5160", - "stop_code": "35160", - "stop_name": "Parent et civique 1041", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Parent et civique 1041", - "geography": { - "type": "Point", - "coordinates": [ - -73.369627603228, - 45.5311875491478 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6727445308387 - }, - "name": "Parent et civique 1041", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.369627603, - 45.531187549 - ] - }, - "is_frozen": false, - "integer_id": 1773, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.369998, - 45.531176 - ] - }, - "id": 1774, - "properties": { - "id": "525aaea9-a48f-4335-b4bb-4f671d4d9a31", - "code": "35161", - "data": { - "stops": [ - { - "id": "5161", - "code": "35161", - "data": { - "gtfs": { - "stop_id": "5161", - "stop_code": "35161", - "stop_name": "Parent et civique 1041", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Parent et civique 1041", - "geography": { - "type": "Point", - "coordinates": [ - -73.3699976445673, - 45.5311761496902 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6725516519267 - }, - "name": "Parent et civique 1041", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.369997645, - 45.53117615 - ] - }, - "is_frozen": false, - "integer_id": 1774, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.322823, - 45.524234 - ] - }, - "id": 1775, - "properties": { - "id": "0893f164-19ee-46d7-888c-b2f0ceb4c706", - "code": "35166", - "data": { - "stops": [ - { - "id": "5166", - "code": "35166", - "data": { - "gtfs": { - "stop_id": "5166", - "stop_code": "35166", - "stop_name": "boul. De Boucherville et civique 1996", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et civique 1996", - "geography": { - "type": "Point", - "coordinates": [ - -73.3228230356489, - 45.5242335666124 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5550998967216 - }, - "name": "boul. De Boucherville et civique 1996", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.322823036, - 45.524233567 - ] - }, - "is_frozen": false, - "integer_id": 1775, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.326362, - 45.527152 - ] - }, - "id": 1776, - "properties": { - "id": "e3c142cf-278c-41ec-b9f5-dff43803109b", - "code": "35167", - "data": { - "stops": [ - { - "id": "5167", - "code": "35167", - "data": { - "gtfs": { - "stop_id": "5167", - "stop_code": "35167", - "stop_name": "boul. De Boucherville et civique 1834", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et civique 1834", - "geography": { - "type": "Point", - "coordinates": [ - -73.3263622596711, - 45.527151603523 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.60446080883 - }, - "name": "boul. De Boucherville et civique 1834", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.32636226, - 45.527151604 - ] - }, - "is_frozen": false, - "integer_id": 1776, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.333468, - 45.532127 - ] - }, - "id": 1777, - "properties": { - "id": "a6331a68-3ea7-48f7-8560-80cafa791eb3", - "code": "35168", - "data": { - "stops": [ - { - "id": "5168", - "code": "35168", - "data": { - "gtfs": { - "stop_id": "5168", - "stop_code": "35168", - "stop_name": "boul. De Boucherville et civique 1570", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et civique 1570", - "geography": { - "type": "Point", - "coordinates": [ - -73.3336825128369, - 45.532389839917 - ] - } - }, - { - "id": "5186", - "code": "35186", - "data": { - "gtfs": { - "stop_id": "5186", - "stop_code": "35186", - "stop_name": "boul. De Boucherville et civique 1591", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et civique 1591", - "geography": { - "type": "Point", - "coordinates": [ - -73.3332541817186, - 45.5318637844959 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6886379042106 - }, - "name": "boul. De Boucherville et civique 1570", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.333468347, - 45.532126812 - ] - }, - "is_frozen": false, - "integer_id": 1777, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.347554, - 45.523226 - ] - }, - "id": 1778, - "properties": { - "id": "9f66e075-701a-442d-9c89-3fee641e6ceb", - "code": "35174", - "data": { - "stops": [ - { - "id": "5174", - "code": "35174", - "data": { - "gtfs": { - "stop_id": "5174", - "stop_code": "35174", - "stop_name": "De Rigaud et Lansdowne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Rigaud et Lansdowne", - "geography": { - "type": "Point", - "coordinates": [ - -73.3474434580715, - 45.5232853269201 - ] - } - }, - { - "id": "5183", - "code": "35183", - "data": { - "gtfs": { - "stop_id": "5183", - "stop_code": "35183", - "stop_name": "De Rigaud et Lansdowne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Rigaud et Lansdowne", - "geography": { - "type": "Point", - "coordinates": [ - -73.3476649855683, - 45.5231672675131 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5380628870194 - }, - "name": "De Rigaud et Lansdowne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.347554222, - 45.523226297 - ] - }, - "is_frozen": false, - "integer_id": 1778, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.361223, - 45.52101 - ] - }, - "id": 1779, - "properties": { - "id": "28cdeb9f-1330-4f90-93ed-907d3f3a09a6", - "code": "35177", - "data": { - "stops": [ - { - "id": "5177", - "code": "35177", - "data": { - "gtfs": { - "stop_id": "5177", - "stop_code": "35177", - "stop_name": "boul. Clairevue ouest et Hocquart", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et Hocquart", - "geography": { - "type": "Point", - "coordinates": [ - -73.3609673176514, - 45.5211311923869 - ] - } - }, - { - "id": "5181", - "code": "35181", - "data": { - "gtfs": { - "stop_id": "5181", - "stop_code": "35181", - "stop_name": "boul. Clairevue ouest et Hocquart", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et Hocquart", - "geography": { - "type": "Point", - "coordinates": [ - -73.3614784499765, - 45.5208882580897 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5005748732399 - }, - "name": "boul. Clairevue ouest et Hocquart", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.361222884, - 45.521009725 - ] - }, - "is_frozen": false, - "integer_id": 1779, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.365208, - 45.520782 - ] - }, - "id": 1780, - "properties": { - "id": "8a70da04-d6f7-409c-846d-927fd9f23d96", - "code": "35178", - "data": { - "stops": [ - { - "id": "5178", - "code": "35178", - "data": { - "gtfs": { - "stop_id": "5178", - "stop_code": "35178", - "stop_name": "boul. Clairevue ouest et civique 635", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et civique 635", - "geography": { - "type": "Point", - "coordinates": [ - -73.3652077185452, - 45.5207817682355 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4967197740788 - }, - "name": "boul. Clairevue ouest et civique 635", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.365207719, - 45.520781768 - ] - }, - "is_frozen": false, - "integer_id": 1780, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.366823, - 45.520539 - ] - }, - "id": 1781, - "properties": { - "id": "36c85e4a-3286-45d4-878d-41eda74eb078", - "code": "35179", - "data": { - "stops": [ - { - "id": "5179", - "code": "35179", - "data": { - "gtfs": { - "stop_id": "5179", - "stop_code": "35179", - "stop_name": "boul. Clairevue ouest et civique 711", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et civique 711", - "geography": { - "type": "Point", - "coordinates": [ - -73.3665746669201, - 45.5206748468979 - ] - } - }, - { - "id": "5180", - "code": "35180", - "data": { - "gtfs": { - "stop_id": "5180", - "stop_code": "35180", - "stop_name": "boul. Clairevue ouest et civique 650", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et civique 650", - "geography": { - "type": "Point", - "coordinates": [ - -73.3670720848466, - 45.5204041204587 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4926224343393 - }, - "name": "boul. Clairevue ouest et civique 711", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.366823376, - 45.520539484 - ] - }, - "is_frozen": false, - "integer_id": 1781, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.326565, - 45.527021 - ] - }, - "id": 1782, - "properties": { - "id": "02c05e36-6f59-42fd-b6c5-b158e3d119a0", - "code": "35188", - "data": { - "stops": [ - { - "id": "5188", - "code": "35188", - "data": { - "gtfs": { - "stop_id": "5188", - "stop_code": "35188", - "stop_name": "boul. De Boucherville et civique 1829", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et civique 1829", - "geography": { - "type": "Point", - "coordinates": [ - -73.3265649730933, - 45.5270208498818 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6022488387147 - }, - "name": "boul. De Boucherville et civique 1829", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.326564973, - 45.52702085 - ] - }, - "is_frozen": false, - "integer_id": 1782, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.323, - 45.524085 - ] - }, - "id": 1783, - "properties": { - "id": "7464372f-e710-4dc5-a76c-a68144e67289", - "code": "35189", - "data": { - "stops": [ - { - "id": "5189", - "code": "35189", - "data": { - "gtfs": { - "stop_id": "5189", - "stop_code": "35189", - "stop_name": "boul. De Boucherville et civique 1989", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et civique 1989", - "geography": { - "type": "Point", - "coordinates": [ - -73.323000423508, - 45.5240847471577 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.552582691679 - }, - "name": "boul. De Boucherville et civique 1989", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.323000424, - 45.524084747 - ] - }, - "is_frozen": false, - "integer_id": 1783, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.356068, - 45.54484 - ] - }, - "id": 1784, - "properties": { - "id": "cda3afce-794c-43b8-9347-1b384d64a116", - "code": "35191", - "data": { - "stops": [ - { - "id": "5191", - "code": "35191", - "data": { - "gtfs": { - "stop_id": "5191", - "stop_code": "35191", - "stop_name": "rang des Vingt-Cinq est et Thérèse-Casgrain", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rang des Vingt-Cinq est et Thérèse-Casgrain", - "geography": { - "type": "Point", - "coordinates": [ - -73.3560681832423, - 45.5448398096436 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9038333505258 - }, - "name": "rang des Vingt-Cinq est et Thérèse-Casgrain", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.356068183, - 45.54483981 - ] - }, - "is_frozen": false, - "integer_id": 1784, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.352702, - 45.535138 - ] - }, - "id": 1785, - "properties": { - "id": "d4b97f89-0d15-4037-9293-a46292a3b826", - "code": "35192", - "data": { - "stops": [ - { - "id": "5192", - "code": "35192", - "data": { - "gtfs": { - "stop_id": "5192", - "stop_code": "35192", - "stop_name": "Montarville et Noyan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et Noyan", - "geography": { - "type": "Point", - "coordinates": [ - -73.3529563006161, - 45.5352083061344 - ] - } - }, - { - "id": "5700", - "code": "30468", - "data": { - "gtfs": { - "stop_id": "5700", - "stop_code": "30468", - "stop_name": "Montarville et Noyan", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et Noyan", - "geography": { - "type": "Point", - "coordinates": [ - -73.3524477299565, - 45.5350675086904 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7395942798612 - }, - "name": "Montarville et Noyan", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.352702015, - 45.535137907 - ] - }, - "is_frozen": false, - "integer_id": 1785, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.340406, - 45.526153 - ] - }, - "id": 1786, - "properties": { - "id": "4451201f-23d0-4b66-a2ac-a72029810b3b", - "code": "35194", - "data": { - "stops": [ - { - "id": "5194", - "code": "35194", - "data": { - "gtfs": { - "stop_id": "5194", - "stop_code": "35194", - "stop_name": "Montarville et de l'Hôtel-de-Ville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et de l'Hôtel-de-Ville", - "geography": { - "type": "Point", - "coordinates": [ - -73.3404058333703, - 45.5261530846171 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5875692131974 - }, - "name": "Montarville et de l'Hôtel-de-Ville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.340405833, - 45.526153085 - ] - }, - "is_frozen": false, - "integer_id": 1786, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.340442, - 45.523536 - ] - }, - "id": 1787, - "properties": { - "id": "c5b92b55-84de-4b35-a75f-2e17e4ffa7c4", - "code": "35196", - "data": { - "stops": [ - { - "id": "5196", - "code": "35196", - "data": { - "gtfs": { - "stop_id": "5196", - "stop_code": "35196", - "stop_name": "boul. Seigneurial ouest et Roberval", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et Roberval", - "geography": { - "type": "Point", - "coordinates": [ - -73.3403208084336, - 45.5237537144271 - ] - } - }, - { - "id": "5205", - "code": "35205", - "data": { - "gtfs": { - "stop_id": "5205", - "stop_code": "35205", - "stop_name": "boul. Seigneurial ouest et Roberval", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Seigneurial ouest et Roberval", - "geography": { - "type": "Point", - "coordinates": [ - -73.3405625546715, - 45.5233182839552 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5433011041973 - }, - "name": "boul. Seigneurial ouest et Roberval", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.340441682, - 45.523535999 - ] - }, - "is_frozen": false, - "integer_id": 1787, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.380568, - 45.50765 - ] - }, - "id": 1788, - "properties": { - "id": "01e0bcb2-ac63-4c88-b110-c273905a1d5c", - "code": "35203", - "data": { - "stops": [ - { - "id": "5203", - "code": "35203", - "data": { - "gtfs": { - "stop_id": "5203", - "stop_code": "35203", - "stop_name": "Stationnement des Promenades et Sortie Yellow", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Stationnement des Promenades et Sortie Yellow", - "geography": { - "type": "Point", - "coordinates": [ - -73.3805675854144, - 45.507650280975 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2747245120739 - }, - "name": "Stationnement des Promenades et Sortie Yellow", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.380567585, - 45.507650281 - ] - }, - "is_frozen": false, - "integer_id": 1788, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.358799, - 45.519802 - ] - }, - "id": 1789, - "properties": { - "id": "9b7439c4-a8e6-4ce8-8c94-dcac4e29b500", - "code": "35206", - "data": { - "stops": [ - { - "id": "5206", - "code": "35206", - "data": { - "gtfs": { - "stop_id": "5206", - "stop_code": "35206", - "stop_name": "Hocquart et civique 1381", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Hocquart et civique 1381", - "geography": { - "type": "Point", - "coordinates": [ - -73.358799308872, - 45.5198023151717 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4801562627903 - }, - "name": "Hocquart et civique 1381", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.358799309, - 45.519802315 - ] - }, - "is_frozen": false, - "integer_id": 1789, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.356729, - 45.519029 - ] - }, - "id": 1790, - "properties": { - "id": "d58c68b9-bb4a-45d1-90ea-403c9b830625", - "code": "35207", - "data": { - "stops": [ - { - "id": "5207", - "code": "35207", - "data": { - "gtfs": { - "stop_id": "5207", - "stop_code": "35207", - "stop_name": "Hocquart et Sagard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Hocquart et Sagard", - "geography": { - "type": "Point", - "coordinates": [ - -73.3567293529746, - 45.5190288363376 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4670765779404 - }, - "name": "Hocquart et Sagard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.356729353, - 45.519028836 - ] - }, - "is_frozen": false, - "integer_id": 1790, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.354036, - 45.517434 - ] - }, - "id": 1791, - "properties": { - "id": "15f81e09-81b0-4df0-aa79-d4603e691ccd", - "code": "35208", - "data": { - "stops": [ - { - "id": "5208", - "code": "35208", - "data": { - "gtfs": { - "stop_id": "5208", - "stop_code": "35208", - "stop_name": "Hocquart et Marie-Victorin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Hocquart et Marie-Victorin", - "geography": { - "type": "Point", - "coordinates": [ - -73.3540364681546, - 45.5174342407063 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4401133390527 - }, - "name": "Hocquart et Marie-Victorin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.354036468, - 45.517434241 - ] - }, - "is_frozen": false, - "integer_id": 1791, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.381489, - 45.507962 - ] - }, - "id": 1792, - "properties": { - "id": "a6d38dbd-ef0c-4533-9d2c-7149d1941078", - "code": "35209", - "data": { - "stops": [ - { - "id": "5209", - "code": "35209", - "data": { - "gtfs": { - "stop_id": "5209", - "stop_code": "35209", - "stop_name": "boul. Saint-Bruno et de l'Étang", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Saint-Bruno et de l'Étang", - "geography": { - "type": "Point", - "coordinates": [ - -73.3814893537541, - 45.5079615201177 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2799844079178 - }, - "name": "boul. Saint-Bruno et de l'Étang", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.381489354, - 45.50796152 - ] - }, - "is_frozen": false, - "integer_id": 1792, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449901, - 45.578653 - ] - }, - "id": 1793, - "properties": { - "id": "5d689515-eb8c-46f5-b76c-9783188effbb", - "code": "35214", - "data": { - "stops": [ - { - "id": "5214", - "code": "35214", - "data": { - "gtfs": { - "stop_id": "5214", - "stop_code": "35214", - "stop_name": "boul. Industriel et civique 250", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Industriel et civique 250", - "geography": { - "type": "Point", - "coordinates": [ - -73.4498044433561, - 45.578566726149 - ] - } - }, - { - "id": "5215", - "code": "35215", - "data": { - "gtfs": { - "stop_id": "5215", - "stop_code": "35215", - "stop_name": "boul. Industriel et civique 250", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Industriel et civique 250", - "geography": { - "type": "Point", - "coordinates": [ - -73.449998461553, - 45.578738989411 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4768958059121 - }, - "name": "boul. Industriel et civique 250", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449901452, - 45.578652858 - ] - }, - "is_frozen": false, - "integer_id": 1793, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441651, - 45.527397 - ] - }, - "id": 1794, - "properties": { - "id": "e36c087c-d78e-48bb-9430-6af9d10493cf", - "code": "35216", - "data": { - "stops": [ - { - "id": "5216", - "code": "35216", - "data": { - "gtfs": { - "stop_id": "5216", - "stop_code": "35216", - "stop_name": "boul. Roberval est et civique 1252", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et civique 1252", - "geography": { - "type": "Point", - "coordinates": [ - -73.4415377587294, - 45.5272833891479 - ] - } - }, - { - "id": "5217", - "code": "35217", - "data": { - "gtfs": { - "stop_id": "5217", - "stop_code": "35217", - "stop_name": "boul. Roberval est et civique 1175", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et civique 1175", - "geography": { - "type": "Point", - "coordinates": [ - -73.4417651767709, - 45.5275105518317 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6086117153977 - }, - "name": "boul. Roberval est et civique 1252", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441651468, - 45.52739697 - ] - }, - "is_frozen": false, - "integer_id": 1794, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44093, - 45.529011 - ] - }, - "id": 1795, - "properties": { - "id": "de69f95c-e485-42da-bcac-5eeb8a8928ad", - "code": "35218", - "data": { - "stops": [ - { - "id": "5218", - "code": "35218", - "data": { - "gtfs": { - "stop_id": "5218", - "stop_code": "35218", - "stop_name": "boul. Roberval est et Boismenu", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et Boismenu", - "geography": { - "type": "Point", - "coordinates": [ - -73.4408216079009, - 45.5288940634692 - ] - } - }, - { - "id": "5219", - "code": "35219", - "data": { - "gtfs": { - "stop_id": "5219", - "stop_code": "35219", - "stop_name": "boul. Roberval est et Boismenu", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et Boismenu", - "geography": { - "type": "Point", - "coordinates": [ - -73.4410388797006, - 45.5291286243527 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6359237471055 - }, - "name": "boul. Roberval est et Boismenu", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440930244, - 45.529011344 - ] - }, - "is_frozen": false, - "integer_id": 1795, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440086, - 45.530895 - ] - }, - "id": 1796, - "properties": { - "id": "ddc14dbb-fee8-4b50-99c0-7a20f59e7cca", - "code": "35220", - "data": { - "stops": [ - { - "id": "5220", - "code": "35220", - "data": { - "gtfs": { - "stop_id": "5220", - "stop_code": "35220", - "stop_name": "boul. Roberval est et des Renards", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et des Renards", - "geography": { - "type": "Point", - "coordinates": [ - -73.4399802612776, - 45.5307635453203 - ] - } - }, - { - "id": "5221", - "code": "35221", - "data": { - "gtfs": { - "stop_id": "5221", - "stop_code": "35221", - "stop_name": "boul. Roberval est et de Bavière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et de Bavière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4401913876159, - 45.5310258186389 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6677890567258 - }, - "name": "boul. Roberval est et des Renards", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440085824, - 45.530894682 - ] - }, - "is_frozen": false, - "integer_id": 1796, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439361, - 45.53209 - ] - }, - "id": 1797, - "properties": { - "id": "0e37f239-15e7-41c5-a31a-ce2ad3dc4eae", - "code": "35222", - "data": { - "stops": [ - { - "id": "5222", - "code": "35222", - "data": { - "gtfs": { - "stop_id": "5222", - "stop_code": "35222", - "stop_name": "boul. Roberval est et civique 1600", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval est et civique 1600", - "geography": { - "type": "Point", - "coordinates": [ - -73.4393612204724, - 45.5320900510193 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6880158524626 - }, - "name": "boul. Roberval est et civique 1600", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.43936122, - 45.532090051 - ] - }, - "is_frozen": false, - "integer_id": 1797, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439493, - 45.532997 - ] - }, - "id": 1798, - "properties": { - "id": "2dda318d-8bf9-4860-b60d-6fcb1dd29156", - "code": "35223", - "data": { - "stops": [ - { - "id": "5223", - "code": "35223", - "data": { - "gtfs": { - "stop_id": "5223", - "stop_code": "35223", - "stop_name": "boul. Béliveau et boul. Roberval est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et boul. Roberval est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4394746605677, - 45.5328654974109 - ] - } - }, - { - "id": "5563", - "code": "30311", - "data": { - "gtfs": { - "stop_id": "5563", - "stop_code": "30311", - "stop_name": "boul. Béliveau et boul. Roberval est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et boul. Roberval est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4395121234587, - 45.5331290852897 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7033680782165 - }, - "name": "boul. Béliveau et boul. Roberval est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439493392, - 45.532997291 - ] - }, - "is_frozen": false, - "integer_id": 1798, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440975, - 45.533365 - ] - }, - "id": 1799, - "properties": { - "id": "576ef8c5-693c-4ae9-bb41-68685f43e174", - "code": "35224", - "data": { - "stops": [ - { - "id": "5224", - "code": "35224", - "data": { - "gtfs": { - "stop_id": "5224", - "stop_code": "35224", - "stop_name": "boul. Béliveau et du Bordelais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et du Bordelais", - "geography": { - "type": "Point", - "coordinates": [ - -73.4407952059855, - 45.5334354298432 - ] - } - }, - { - "id": "5225", - "code": "35225", - "data": { - "gtfs": { - "stop_id": "5225", - "stop_code": "35225", - "stop_name": "boul. Béliveau et du Bordelais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Béliveau et du Bordelais", - "geography": { - "type": "Point", - "coordinates": [ - -73.4411548057192, - 45.5332946154975 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.709591011866 - }, - "name": "boul. Béliveau et du Bordelais", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440975006, - 45.533365023 - ] - }, - "is_frozen": false, - "integer_id": 1799, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.425783, - 45.57135 - ] - }, - "id": 1800, - "properties": { - "id": "08debed2-a767-4e18-9342-678b9ff106e2", - "code": "35226", - "data": { - "stops": [ - { - "id": "5226", - "code": "35226", - "data": { - "gtfs": { - "stop_id": "5226", - "stop_code": "35226", - "stop_name": "Gay-Lussac et civique 1375", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gay-Lussac et civique 1375", - "geography": { - "type": "Point", - "coordinates": [ - -73.4255070807711, - 45.5713614805328 - ] - } - }, - { - "id": "5227", - "code": "35227", - "data": { - "gtfs": { - "stop_id": "5227", - "stop_code": "35227", - "stop_name": "Gay-Lussac et civique 1380", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gay-Lussac et civique 1380", - "geography": { - "type": "Point", - "coordinates": [ - -73.426059375583, - 45.5713378696131 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3530351955699 - }, - "name": "Gay-Lussac et civique 1375", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.425783228, - 45.571349675 - ] - }, - "is_frozen": false, - "integer_id": 1800, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.433992, - 45.450594 - ] - }, - "id": 1801, - "properties": { - "id": "27e1da8c-287d-4c6b-9905-9c8c3d07097d", - "code": "35229", - "data": { - "stops": [ - { - "id": "5229", - "code": "35229", - "data": { - "gtfs": { - "stop_id": "5229", - "stop_code": "35229", - "stop_name": "boul. Lapinière et civique 4805", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et civique 4805", - "geography": { - "type": "Point", - "coordinates": [ - -73.4341498753525, - 45.4505183256356 - ] - } - }, - { - "id": "5230", - "code": "35230", - "data": { - "gtfs": { - "stop_id": "5230", - "stop_code": "35230", - "stop_name": "boul. Lapinière et civique 4805", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et civique 4805", - "geography": { - "type": "Point", - "coordinates": [ - -73.4338343359672, - 45.4506689061879 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3119299839384 - }, - "name": "boul. Lapinière et civique 4805", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.433992106, - 45.450593616 - ] - }, - "is_frozen": false, - "integer_id": 1801, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460882, - 45.561423 - ] - }, - "id": 1802, - "properties": { - "id": "fe1423a8-e632-40f2-9b1e-93314e069a43", - "code": "35234", - "data": { - "stops": [ - { - "id": "5234", - "code": "35234", - "data": { - "gtfs": { - "stop_id": "5234", - "stop_code": "35234", - "stop_name": "boul. Fernand-Lafontaine et ch. du Lac", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et ch. du Lac", - "geography": { - "type": "Point", - "coordinates": [ - -73.4608822974192, - 45.5614232530938 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1847613837715 - }, - "name": "boul. Fernand-Lafontaine et ch. du Lac", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.460882297, - 45.561423253 - ] - }, - "is_frozen": false, - "integer_id": 1802, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.471079, - 45.569279 - ] - }, - "id": 1803, - "properties": { - "id": "41fd6b6d-a514-49a6-acf5-1a39152b0c5f", - "code": "35236", - "data": { - "stops": [ - { - "id": "5236", - "code": "35236", - "data": { - "gtfs": { - "stop_id": "5236", - "stop_code": "35236", - "stop_name": "boul. Guimond et Garneau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Guimond et Garneau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4712852621303, - 45.5693258582722 - ] - } - }, - { - "id": "5256", - "code": "35256", - "data": { - "gtfs": { - "stop_id": "5256", - "stop_code": "35256", - "stop_name": "boul. Guimond et Garneau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Guimond et Garneau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4708720674761, - 45.5692319857132 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3179242910829 - }, - "name": "boul. Guimond et Garneau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.471078665, - 45.569278922 - ] - }, - "is_frozen": false, - "integer_id": 1803, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465735, - 45.565159 - ] - }, - "id": 1804, - "properties": { - "id": "efdd0b14-8e79-4a0f-85cb-f5ec3d032eec", - "code": "35238", - "data": { - "stops": [ - { - "id": "5238", - "code": "35238", - "data": { - "gtfs": { - "stop_id": "5238", - "stop_code": "35238", - "stop_name": "boul. Guimond et civique 770", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Guimond et civique 770", - "geography": { - "type": "Point", - "coordinates": [ - -73.4658009291323, - 45.5650946809405 - ] - } - }, - { - "id": "5254", - "code": "35254", - "data": { - "gtfs": { - "stop_id": "5254", - "stop_code": "35254", - "stop_name": "boul. Guimond et civique 785", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Guimond et civique 785", - "geography": { - "type": "Point", - "coordinates": [ - -73.4656692267468, - 45.5652231250202 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2480782057496 - }, - "name": "boul. Guimond et civique 770", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465735078, - 45.565158903 - ] - }, - "is_frozen": false, - "integer_id": 1804, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.463779, - 45.563639 - ] - }, - "id": 1805, - "properties": { - "id": "a09356f2-d06c-43dd-b67b-b970ca63de4c", - "code": "35241", - "data": { - "stops": [ - { - "id": "5241", - "code": "35241", - "data": { - "gtfs": { - "stop_id": "5241", - "stop_code": "35241", - "stop_name": "boul. Guimond et Hérelle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Guimond et Hérelle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4640186070098, - 45.5637124843891 - ] - } - }, - { - "id": "5289", - "code": "35289", - "data": { - "gtfs": { - "stop_id": "5289", - "stop_code": "35289", - "stop_name": "boul. Guimond et Hérelle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Guimond et Hérelle", - "geography": { - "type": "Point", - "coordinates": [ - -73.463539207875, - 45.5635656046445 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2223161031659 - }, - "name": "boul. Guimond et Hérelle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.463778907, - 45.563639045 - ] - }, - "is_frozen": false, - "integer_id": 1805, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.46229, - 45.562524 - ] - }, - "id": 1806, - "properties": { - "id": "9ce474bd-b957-414c-a2bb-a8fbae6720a2", - "code": "35242", - "data": { - "stops": [ - { - "id": "5242", - "code": "35242", - "data": { - "gtfs": { - "stop_id": "5242", - "stop_code": "35242", - "stop_name": "boul. Guimond et Hérelle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Guimond et Hérelle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4624853723064, - 45.5625452562286 - ] - } - }, - { - "id": "5253", - "code": "35253", - "data": { - "gtfs": { - "stop_id": "5253", - "stop_code": "35253", - "stop_name": "boul. Guimond et Hérelle", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Guimond et Hérelle", - "geography": { - "type": "Point", - "coordinates": [ - -73.4620947954946, - 45.5625026083592 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2034158766656 - }, - "name": "boul. Guimond et Hérelle", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.462290084, - 45.562523932 - ] - }, - "is_frozen": false, - "integer_id": 1806, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455895, - 45.561695 - ] - }, - "id": 1807, - "properties": { - "id": "0bacad01-6fc4-40da-8f15-64bf9bb6a474", - "code": "35243", - "data": { - "stops": [ - { - "id": "5243", - "code": "35243", - "data": { - "gtfs": { - "stop_id": "5243", - "stop_code": "35243", - "stop_name": "boul. Fernand-Lafontaine et civique 2405", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et civique 2405", - "geography": { - "type": "Point", - "coordinates": [ - -73.4558951400035, - 45.5616947501986 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1893626600518 - }, - "name": "boul. Fernand-Lafontaine et civique 2405", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45589514, - 45.56169475 - ] - }, - "is_frozen": false, - "integer_id": 1807, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450792, - 45.56183 - ] - }, - "id": 1808, - "properties": { - "id": "f52f270d-1079-4b27-a78b-f9321a1c3b1f", - "code": "35244", - "data": { - "stops": [ - { - "id": "5244", - "code": "35244", - "data": { - "gtfs": { - "stop_id": "5244", - "stop_code": "35244", - "stop_name": "boul. Fernand-Lafontaine et boul. Jacques-Cartier est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et boul. Jacques-Cartier est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4507915021443, - 45.561830280029 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.191659619739 - }, - "name": "boul. Fernand-Lafontaine et boul. Jacques-Cartier est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450791502, - 45.56183028 - ] - }, - "is_frozen": false, - "integer_id": 1808, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45018, - 45.56359 - ] - }, - "id": 1809, - "properties": { - "id": "bf606954-197a-4c94-b8d0-fda71ab755ca", - "code": "35245", - "data": { - "stops": [ - { - "id": "5245", - "code": "35245", - "data": { - "gtfs": { - "stop_id": "5245", - "stop_code": "35245", - "stop_name": "boul. Jacques-Cartier est et civique 2676", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et civique 2676", - "geography": { - "type": "Point", - "coordinates": [ - -73.450180242486, - 45.5635895091992 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2214764860918 - }, - "name": "boul. Jacques-Cartier est et civique 2676", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450180242, - 45.563589509 - ] - }, - "is_frozen": false, - "integer_id": 1809, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45011, - 45.565328 - ] - }, - "id": 1810, - "properties": { - "id": "804d8b1f-4ada-4e34-bf79-888a34e590ac", - "code": "35246", - "data": { - "stops": [ - { - "id": "5246", - "code": "35246", - "data": { - "gtfs": { - "stop_id": "5246", - "stop_code": "35246", - "stop_name": "boul. Jacques-Cartier est et civique 2700", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et civique 2700", - "geography": { - "type": "Point", - "coordinates": [ - -73.4501099530612, - 45.5653283893077 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2509511781835 - }, - "name": "boul. Jacques-Cartier est et civique 2700", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450109953, - 45.565328389 - ] - }, - "is_frozen": false, - "integer_id": 1810, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.405459, - 45.567999 - ] - }, - "id": 1811, - "properties": { - "id": "bd49edea-1c3c-4a69-a5c6-0057e6bf7cb0", - "code": "35248", - "data": { - "stops": [ - { - "id": "5248", - "code": "35248", - "data": { - "gtfs": { - "stop_id": "5248", - "stop_code": "35248", - "stop_name": "Eiffel et civique 1560", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Eiffel et civique 1560", - "geography": { - "type": "Point", - "coordinates": [ - -73.4054586639491, - 45.5679987643783 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2962203334306 - }, - "name": "Eiffel et civique 1560", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.405458664, - 45.567998764 - ] - }, - "is_frozen": false, - "integer_id": 1811, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.401132, - 45.569609 - ] - }, - "id": 1812, - "properties": { - "id": "3ec963de-e577-4386-969b-85a9eb8b7aaf", - "code": "35249", - "data": { - "stops": [ - { - "id": "5249", - "code": "35249", - "data": { - "gtfs": { - "stop_id": "5249", - "stop_code": "35249", - "stop_name": "Eiffel et civique 1600", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Eiffel et civique 1600", - "geography": { - "type": "Point", - "coordinates": [ - -73.401131578922, - 45.5696087352573 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3235162189231 - }, - "name": "Eiffel et civique 1600", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.401131579, - 45.569608735 - ] - }, - "is_frozen": false, - "integer_id": 1812, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450524, - 45.565562 - ] - }, - "id": 1813, - "properties": { - "id": "911acdc7-e82a-4bb1-aecd-7f8fbf39cc16", - "code": "35250", - "data": { - "stops": [ - { - "id": "5250", - "code": "35250", - "data": { - "gtfs": { - "stop_id": "5250", - "stop_code": "35250", - "stop_name": "boul. Jacques-Cartier est et civique 2727", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et civique 2727", - "geography": { - "type": "Point", - "coordinates": [ - -73.450524244074, - 45.5655621517787 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2549137579426 - }, - "name": "boul. Jacques-Cartier est et civique 2727", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450524244, - 45.565562152 - ] - }, - "is_frozen": false, - "integer_id": 1813, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45063, - 45.563062 - ] - }, - "id": 1814, - "properties": { - "id": "50e25e6e-b3a0-49ca-b0a6-22261b688cbf", - "code": "35251", - "data": { - "stops": [ - { - "id": "5251", - "code": "35251", - "data": { - "gtfs": { - "stop_id": "5251", - "stop_code": "35251", - "stop_name": "boul. Jacques-Cartier est et boul. Fernand-Lafontaine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et boul. Fernand-Lafontaine", - "geography": { - "type": "Point", - "coordinates": [ - -73.4506300509245, - 45.5630622769758 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2125402324588 - }, - "name": "boul. Jacques-Cartier est et boul. Fernand-Lafontaine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450630051, - 45.563062277 - ] - }, - "is_frozen": false, - "integer_id": 1814, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455958, - 45.561814 - ] - }, - "id": 1815, - "properties": { - "id": "767c22ba-e4bc-43df-94bc-025afee14810", - "code": "35252", - "data": { - "stops": [ - { - "id": "5252", - "code": "35252", - "data": { - "gtfs": { - "stop_id": "5252", - "stop_code": "35252", - "stop_name": "boul. Fernand-Lafontaine et civique 2405", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Fernand-Lafontaine et civique 2405", - "geography": { - "type": "Point", - "coordinates": [ - -73.4559584054428, - 45.5618143184193 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1913890952347 - }, - "name": "boul. Fernand-Lafontaine et civique 2405", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455958405, - 45.561814318 - ] - }, - "is_frozen": false, - "integer_id": 1815, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475818, - 45.573021 - ] - }, - "id": 1816, - "properties": { - "id": "fb348def-00b5-4574-9848-5f275a3fa42d", - "code": "35258", - "data": { - "stops": [ - { - "id": "5258", - "code": "35258", - "data": { - "gtfs": { - "stop_id": "5258", - "stop_code": "35258", - "stop_name": "boul. Guimond et Limoges", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Guimond et Limoges", - "geography": { - "type": "Point", - "coordinates": [ - -73.4758179735616, - 45.5730206119929 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3813697656491 - }, - "name": "boul. Guimond et Limoges", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475817974, - 45.573020612 - ] - }, - "is_frozen": false, - "integer_id": 1816, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44015, - 45.562459 - ] - }, - "id": 1817, - "properties": { - "id": "bdfd6a86-57e8-4208-bd34-2b30f1846e4b", - "code": "35259", - "data": { - "stops": [ - { - "id": "5259", - "code": "35259", - "data": { - "gtfs": { - "stop_id": "5259", - "stop_code": "35259", - "stop_name": "Volta et civique 1340", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Volta et civique 1340", - "geography": { - "type": "Point", - "coordinates": [ - -73.4402591786919, - 45.562438207195 - ] - } - }, - { - "id": "5260", - "code": "35260", - "data": { - "gtfs": { - "stop_id": "5260", - "stop_code": "35260", - "stop_name": "Volta et civique 1340", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Volta et civique 1340", - "geography": { - "type": "Point", - "coordinates": [ - -73.44004053256, - 45.5624797882339 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2023153342653 - }, - "name": "Volta et civique 1340", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440149856, - 45.562458998 - ] - }, - "is_frozen": false, - "integer_id": 1817, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439059, - 45.560911 - ] - }, - "id": 1818, - "properties": { - "id": "891bcf48-145c-4536-a871-eba463dca9a2", - "code": "35261", - "data": { - "stops": [ - { - "id": "5261", - "code": "35261", - "data": { - "gtfs": { - "stop_id": "5261", - "stop_code": "35261", - "stop_name": "Volta et De Coulomb", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Volta et De Coulomb", - "geography": { - "type": "Point", - "coordinates": [ - -73.4390591639634, - 45.5609113284032 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1760855614818 - }, - "name": "Volta et De Coulomb", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439059164, - 45.560911328 - ] - }, - "is_frozen": false, - "integer_id": 1818, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437746, - 45.560466 - ] - }, - "id": 1819, - "properties": { - "id": "288f625b-dae5-465b-9986-818da198e5d5", - "code": "35262", - "data": { - "stops": [ - { - "id": "5262", - "code": "35262", - "data": { - "gtfs": { - "stop_id": "5262", - "stop_code": "35262", - "stop_name": "De Coulomb et civique 1385", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Coulomb et civique 1385", - "geography": { - "type": "Point", - "coordinates": [ - -73.4377460167636, - 45.5604655354897 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1685306985179 - }, - "name": "De Coulomb et civique 1385", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437746017, - 45.560465535 - ] - }, - "is_frozen": false, - "integer_id": 1819, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.435716, - 45.559953 - ] - }, - "id": 1820, - "properties": { - "id": "5406ad55-4f73-400c-be4e-2a11bd2e7e9a", - "code": "35263", - "data": { - "stops": [ - { - "id": "5263", - "code": "35263", - "data": { - "gtfs": { - "stop_id": "5263", - "stop_code": "35263", - "stop_name": "De Coulomb et Joliot-Curie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Coulomb et Joliot-Curie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4361698644796, - 45.5599777052172 - ] - } - }, - { - "id": "5279", - "code": "35279", - "data": { - "gtfs": { - "stop_id": "5279", - "stop_code": "35279", - "stop_name": "De Coulomb et Joliot-Curie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Coulomb et Joliot-Curie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4352612731698, - 45.5599275860721 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1598389779026 - }, - "name": "De Coulomb et Joliot-Curie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.435715569, - 45.559952646 - ] - }, - "is_frozen": false, - "integer_id": 1820, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.431489, - 45.559049 - ] - }, - "id": 1821, - "properties": { - "id": "ca8a495a-977a-4942-bdad-b75787da5697", - "code": "35264", - "data": { - "stops": [ - { - "id": "5264", - "code": "35264", - "data": { - "gtfs": { - "stop_id": "5264", - "stop_code": "35264", - "stop_name": "De Coulomb et Joliot-Curie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Coulomb et Joliot-Curie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4316449133473, - 45.5590068711526 - ] - } - }, - { - "id": "5278", - "code": "35278", - "data": { - "gtfs": { - "stop_id": "5278", - "stop_code": "35278", - "stop_name": "De Coulomb et Joliot-Curie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Coulomb et Joliot-Curie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4313331574675, - 45.5590903381666 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1445191360525 - }, - "name": "De Coulomb et Joliot-Curie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431489035, - 45.559048605 - ] - }, - "is_frozen": false, - "integer_id": 1821, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.426488, - 45.556426 - ] - }, - "id": 1822, - "properties": { - "id": "eba2d290-ee5d-4bce-bdc1-d2b8c52db23b", - "code": "35266", - "data": { - "stops": [ - { - "id": "5266", - "code": "35266", - "data": { - "gtfs": { - "stop_id": "5266", - "stop_code": "35266", - "stop_name": "De Coulomb et De Montgolfier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Coulomb et De Montgolfier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4267941349807, - 45.5565343844362 - ] - } - }, - { - "id": "5276", - "code": "35276", - "data": { - "gtfs": { - "stop_id": "5276", - "stop_code": "35276", - "stop_name": "De Coulomb et De Montgolfier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Coulomb et De Montgolfier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4261822552205, - 45.5563169658787 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1000752028166 - }, - "name": "De Coulomb et De Montgolfier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.426488195, - 45.556425675 - ] - }, - "is_frozen": false, - "integer_id": 1822, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.424053, - 45.554591 - ] - }, - "id": 1823, - "properties": { - "id": "2bc51500-8df7-434b-a2d7-e073aed7d6fc", - "code": "35267", - "data": { - "stops": [ - { - "id": "5267", - "code": "35267", - "data": { - "gtfs": { - "stop_id": "5267", - "stop_code": "35267", - "stop_name": "De Coulomb et De Montgolfier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Coulomb et De Montgolfier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4242818603226, - 45.5545487165581 - ] - } - }, - { - "id": "5275", - "code": "35275", - "data": { - "gtfs": { - "stop_id": "5275", - "stop_code": "35275", - "stop_name": "J.-A.-Bombardier et De Coulomb", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et De Coulomb", - "geography": { - "type": "Point", - "coordinates": [ - -73.4238245248929, - 45.5546326001611 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0689856228896 - }, - "name": "De Coulomb et De Montgolfier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.424053193, - 45.554590658 - ] - }, - "is_frozen": false, - "integer_id": 1823, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.421667, - 45.555895 - ] - }, - "id": 1824, - "properties": { - "id": "9d7899a8-defc-4e0a-81af-a591f5887bd8", - "code": "35268", - "data": { - "stops": [ - { - "id": "5268", - "code": "35268", - "data": { - "gtfs": { - "stop_id": "5268", - "stop_code": "35268", - "stop_name": "J.-A.-Bombardier et civique 95", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et civique 95", - "geography": { - "type": "Point", - "coordinates": [ - -73.4217008743359, - 45.5557848775851 - ] - } - }, - { - "id": "5274", - "code": "35274", - "data": { - "gtfs": { - "stop_id": "5274", - "stop_code": "35274", - "stop_name": "J.-A.-Bombardier et civique 90", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et civique 90", - "geography": { - "type": "Point", - "coordinates": [ - -73.4216326570785, - 45.556005375788 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0910861408593 - }, - "name": "J.-A.-Bombardier et civique 95", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.421666766, - 45.555895127 - ] - }, - "is_frozen": false, - "integer_id": 1824, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.418478, - 45.557886 - ] - }, - "id": 1825, - "properties": { - "id": "d3be8a5e-1a82-4082-9319-940ad42306fa", - "code": "35269", - "data": { - "stops": [ - { - "id": "5269", - "code": "35269", - "data": { - "gtfs": { - "stop_id": "5269", - "stop_code": "35269", - "stop_name": "J.-A.-Bombardier et civique 145", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et civique 145", - "geography": { - "type": "Point", - "coordinates": [ - -73.4183848567452, - 45.5578523173004 - ] - } - }, - { - "id": "5273", - "code": "35273", - "data": { - "gtfs": { - "stop_id": "5273", - "stop_code": "35273", - "stop_name": "J.-A.-Bombardier et civique 145", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et civique 145", - "geography": { - "type": "Point", - "coordinates": [ - -73.4185704082326, - 45.5579202765309 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1248237847905 - }, - "name": "J.-A.-Bombardier et civique 145", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.418477632, - 45.557886297 - ] - }, - "is_frozen": false, - "integer_id": 1825, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.411807, - 45.561566 - ] - }, - "id": 1826, - "properties": { - "id": "d41fd5d6-e4c4-4145-9ae3-6c1c4eaf93df", - "code": "35270", - "data": { - "stops": [ - { - "id": "5270", - "code": "35270", - "data": { - "gtfs": { - "stop_id": "5270", - "stop_code": "35270", - "stop_name": "J.-A.-Bombardier et Louis-Blériot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et Louis-Blériot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4119603694368, - 45.5613991369801 - ] - } - }, - { - "id": "5272", - "code": "35272", - "data": { - "gtfs": { - "stop_id": "5272", - "stop_code": "35272", - "stop_name": "J.-A.-Bombardier et Louis-Blériot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et Louis-Blériot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4116534019411, - 45.5617325853562 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1871782671209 - }, - "name": "J.-A.-Bombardier et Louis-Blériot", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.411806886, - 45.561565861 - ] - }, - "is_frozen": false, - "integer_id": 1826, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.43586, - 45.462043 - ] - }, - "id": 1827, - "properties": { - "id": "1a929515-9cf9-46e2-a23e-d4a14e85a95d", - "code": "35281", - "data": { - "stops": [ - { - "id": "5281", - "code": "35281", - "data": { - "gtfs": { - "stop_id": "5281", - "stop_code": "35281", - "stop_name": "boul. Chevrier et Christophe", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Chevrier et Christophe", - "geography": { - "type": "Point", - "coordinates": [ - -73.435883334293, - 45.4621770314862 - ] - } - }, - { - "id": "5286", - "code": "35286", - "data": { - "gtfs": { - "stop_id": "5286", - "stop_code": "35286", - "stop_name": "boul. Chevrier et Christophe", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Chevrier et Christophe", - "geography": { - "type": "Point", - "coordinates": [ - -73.4358370698373, - 45.4619098401856 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.504906412333 - }, - "name": "boul. Chevrier et Christophe", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.435860202, - 45.462043436 - ] - }, - "is_frozen": false, - "integer_id": 1827, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437619, - 45.460218 - ] - }, - "id": 1828, - "properties": { - "id": "eeae68ef-a789-47cd-b1a9-a6fc5c2bb689", - "code": "35282", - "data": { - "stops": [ - { - "id": "5282", - "code": "35282", - "data": { - "gtfs": { - "stop_id": "5282", - "stop_code": "35282", - "stop_name": "boul. Chevrier et Chopin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Chevrier et Chopin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4376490557059, - 45.4603762553084 - ] - } - }, - { - "id": "5285", - "code": "35285", - "data": { - "gtfs": { - "stop_id": "5285", - "stop_code": "35285", - "stop_name": "boul. Chevrier et Chopin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Chevrier et Chopin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4375887865885, - 45.4600592565984 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4741284206659 - }, - "name": "boul. Chevrier et Chopin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437618921, - 45.460217756 - ] - }, - "is_frozen": false, - "integer_id": 1828, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441529, - 45.456841 - ] - }, - "id": 1829, - "properties": { - "id": "1f87e3a1-2127-4357-9fd4-016c6c31e011", - "code": "35283", - "data": { - "stops": [ - { - "id": "5283", - "code": "35283", - "data": { - "gtfs": { - "stop_id": "5283", - "stop_code": "35283", - "stop_name": "boul. Chevrier et av. Cousin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Chevrier et av. Cousin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4415388370335, - 45.4570227777788 - ] - } - }, - { - "id": "5284", - "code": "35284", - "data": { - "gtfs": { - "stop_id": "5284", - "stop_code": "35284", - "stop_name": "boul. Chevrier et av. Cousin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Chevrier et av. Cousin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4415194130058, - 45.4566584517267 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4172031198299 - }, - "name": "boul. Chevrier et av. Cousin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441529125, - 45.456840615 - ] - }, - "is_frozen": false, - "integer_id": 1829, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.436581, - 45.451382 - ] - }, - "id": 1830, - "properties": { - "id": "9fe6df14-62d0-4a44-8e19-85300b42de89", - "code": "35290", - "data": { - "stops": [ - { - "id": "5290", - "code": "35290", - "data": { - "gtfs": { - "stop_id": "5290", - "stop_code": "35290", - "stop_name": "boul. Lapinière et CIVIQUE 4605", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et CIVIQUE 4605", - "geography": { - "type": "Point", - "coordinates": [ - -73.436580781832, - 45.4513821645068 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3252165395787 - }, - "name": "boul. Lapinière et CIVIQUE 4605", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.436580782, - 45.451382165 - ] - }, - "is_frozen": false, - "integer_id": 1830, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437269, - 45.45146 - ] - }, - "id": 1831, - "properties": { - "id": "fdc86629-6768-46ce-9ee0-1d935d00516c", - "code": "35291", - "data": { - "stops": [ - { - "id": "5291", - "code": "35291", - "data": { - "gtfs": { - "stop_id": "5291", - "stop_code": "35291", - "stop_name": "boul. Lapinière et civique 4605", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et civique 4605", - "geography": { - "type": "Point", - "coordinates": [ - -73.4372694445897, - 45.4514598518957 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3265255466057 - }, - "name": "boul. Lapinière et civique 4605", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437269445, - 45.451459852 - ] - }, - "is_frozen": false, - "integer_id": 1831, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.472132, - 45.559415 - ] - }, - "id": 1832, - "properties": { - "id": "9f5e5ee3-42e0-4ee9-9cdb-c35f8f1ab271", - "code": "30019", - "data": { - "stops": [ - { - "id": "5293", - "code": "30019", - "data": { - "gtfs": { - "stop_id": "5293", - "stop_code": "30019", - "stop_name": "boul. Jean-Paul-Vincent et civique 877", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jean-Paul-Vincent et civique 877", - "geography": { - "type": "Point", - "coordinates": [ - -73.4721315056675, - 45.5594148177035 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1507248786229 - }, - "name": "boul. Jean-Paul-Vincent et civique 877", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472131506, - 45.559414818 - ] - }, - "is_frozen": false, - "integer_id": 1832, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456349, - 45.505913 - ] - }, - "id": 1833, - "properties": { - "id": "a2cddc2b-b7ec-4035-951f-7045ea83427b", - "code": "30020", - "data": { - "stops": [ - { - "id": "5294", - "code": "30020", - "data": { - "gtfs": { - "stop_id": "5294", - "stop_code": "30020", - "stop_name": "boul. Sir-Wilfrid-Laurier et civique 3400", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier et civique 3400", - "geography": { - "type": "Point", - "coordinates": [ - -73.4563490179495, - 45.5059125674435 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2453589717685 - }, - "name": "boul. Sir-Wilfrid-Laurier et civique 3400", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456349018, - 45.505912567 - ] - }, - "is_frozen": false, - "integer_id": 1833, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.387109, - 45.484379 - ] - }, - "id": 1834, - "properties": { - "id": "897e999c-9046-44e1-af66-78d190574a64", - "code": "35299", - "data": { - "stops": [ - { - "id": "5299", - "code": "35299", - "data": { - "gtfs": { - "stop_id": "5299", - "stop_code": "35299", - "stop_name": "boul. Moïse-Vincent et civique 2975", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Moïse-Vincent et civique 2975", - "geography": { - "type": "Point", - "coordinates": [ - -73.3871085555789, - 45.4843788098105 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.8816840472833 - }, - "name": "boul. Moïse-Vincent et civique 2975", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.387108556, - 45.48437881 - ] - }, - "is_frozen": false, - "integer_id": 1834, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455044, - 45.429439 - ] - }, - "id": 1835, - "properties": { - "id": "dca1f1af-a3cf-4dc0-9b7c-88db3f7a9ff7", - "code": "30051", - "data": { - "stops": [ - { - "id": "5313", - "code": "30051", - "data": { - "gtfs": { - "stop_id": "5313", - "stop_code": "30051", - "stop_name": "boul. du Quartier et place de Java", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et place de Java", - "geography": { - "type": "Point", - "coordinates": [ - -73.4550534583078, - 45.4292047166106 - ] - } - }, - { - "id": "5520", - "code": "30268", - "data": { - "gtfs": { - "stop_id": "5520", - "stop_code": "30268", - "stop_name": "boul. du Quartier et place de Java", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et place de Java", - "geography": { - "type": "Point", - "coordinates": [ - -73.4548819817629, - 45.4296734067041 - ] - } - }, - { - "id": "5521", - "code": "30269", - "data": { - "gtfs": { - "stop_id": "5521", - "stop_code": "30269", - "stop_name": "place de Java et boul. du Quartier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "place de Java et boul. du Quartier", - "geography": { - "type": "Point", - "coordinates": [ - -73.455205041147, - 45.429563826274 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.9556947973135 - }, - "name": "boul. du Quartier et place de Java", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455043511, - 45.429439062 - ] - }, - "is_frozen": false, - "integer_id": 1835, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.43991, - 45.458017 - ] - }, - "id": 1836, - "properties": { - "id": "b7b9e437-9aed-4216-8c9e-6ac432328b58", - "code": "30052", - "data": { - "stops": [ - { - "id": "5314", - "code": "30052", - "data": { - "gtfs": { - "stop_id": "5314", - "stop_code": "30052", - "stop_name": "boul. Chevrier et civique 6535", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Chevrier et civique 6535", - "geography": { - "type": "Point", - "coordinates": [ - -73.4399264663976, - 45.4581774721589 - ] - } - }, - { - "id": "5316", - "code": "30054", - "data": { - "gtfs": { - "stop_id": "5316", - "stop_code": "30054", - "stop_name": "boul. Chevrier et civique 6535", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Chevrier et civique 6535", - "geography": { - "type": "Point", - "coordinates": [ - -73.4398940781069, - 45.4578564524743 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4370305500702 - }, - "name": "boul. Chevrier et civique 6535", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439910272, - 45.458016962 - ] - }, - "is_frozen": false, - "integer_id": 1836, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.434431, - 45.463438 - ] - }, - "id": 1837, - "properties": { - "id": "7c6202a7-3f19-4943-97ae-2c6baa7cb485", - "code": "30053", - "data": { - "stops": [ - { - "id": "5315", - "code": "30053", - "data": { - "gtfs": { - "stop_id": "5315", - "stop_code": "30053", - "stop_name": "boul. Chevrier et Corbière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Chevrier et Corbière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4344339929609, - 45.4634688073341 - ] - } - }, - { - "id": "5318", - "code": "30056", - "data": { - "gtfs": { - "stop_id": "5318", - "stop_code": "30056", - "stop_name": "boul. Chevrier et Corbière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Chevrier et Corbière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4344276933709, - 45.4634073971018 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5284202031054 - }, - "name": "boul. Chevrier et Corbière", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.434430843, - 45.463438102 - ] - }, - "is_frozen": false, - "integer_id": 1837, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450248, - 45.561685 - ] - }, - "id": 1838, - "properties": { - "id": "6d4dc817-4368-4ece-aeda-37df1213d699", - "code": "30058", - "data": { - "stops": [ - { - "id": "5320", - "code": "30058", - "data": { - "gtfs": { - "stop_id": "5320", - "stop_code": "30058", - "stop_name": "boul. Jacques-Cartier est et boul. Fernand-Lafontaine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et boul. Fernand-Lafontaine", - "geography": { - "type": "Point", - "coordinates": [ - -73.4502475010988, - 45.5616845538808 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1891898591145 - }, - "name": "boul. Jacques-Cartier est et boul. Fernand-Lafontaine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450247501, - 45.561684554 - ] - }, - "is_frozen": false, - "integer_id": 1838, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449731, - 45.555697 - ] - }, - "id": 1839, - "properties": { - "id": "b66a9525-9dd9-49fa-b088-bde983b8c260", - "code": "30059", - "data": { - "stops": [ - { - "id": "5321", - "code": "30059", - "data": { - "gtfs": { - "stop_id": "5321", - "stop_code": "30059", - "stop_name": "boul. Jacques-Cartier est et Jean-Paul-Lemieux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et Jean-Paul-Lemieux", - "geography": { - "type": "Point", - "coordinates": [ - -73.449596258152, - 45.5555440694921 - ] - } - }, - { - "id": "5322", - "code": "30060", - "data": { - "gtfs": { - "stop_id": "5322", - "stop_code": "30060", - "stop_name": "boul. Jacques-Cartier est et Jean-Paul-Lemieux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et Jean-Paul-Lemieux", - "geography": { - "type": "Point", - "coordinates": [ - -73.4498658060264, - 45.5558507257949 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0877360874839 - }, - "name": "boul. Jacques-Cartier est et Jean-Paul-Lemieux", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449731032, - 45.555697398 - ] - }, - "is_frozen": false, - "integer_id": 1839, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.449183, - 45.551725 - ] - }, - "id": 1840, - "properties": { - "id": "95cc31bb-b82e-4ab9-921f-e5a8cd8454c3", - "code": "30061", - "data": { - "stops": [ - { - "id": "5323", - "code": "30061", - "data": { - "gtfs": { - "stop_id": "5323", - "stop_code": "30061", - "stop_name": "boul. Jacques-Cartier est et des Primevères", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et des Primevères", - "geography": { - "type": "Point", - "coordinates": [ - -73.4490163355558, - 45.5516035541933 - ] - } - }, - { - "id": "5324", - "code": "30062", - "data": { - "gtfs": { - "stop_id": "5324", - "stop_code": "30062", - "stop_name": "boul. Jacques-Cartier est et des Primevères", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et des Primevères", - "geography": { - "type": "Point", - "coordinates": [ - -73.4493494285997, - 45.5518471762126 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.0204467145356 - }, - "name": "boul. Jacques-Cartier est et des Primevères", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.449182882, - 45.551725365 - ] - }, - "is_frozen": false, - "integer_id": 1840, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44889, - 45.434145 - ] - }, - "id": 1841, - "properties": { - "id": "d26ce5e1-6c58-4e66-9161-bd0bb569b92f", - "code": "30073", - "data": { - "stops": [ - { - "id": "5335", - "code": "30073", - "data": { - "gtfs": { - "stop_id": "5335", - "stop_code": "30073", - "stop_name": "ch. des Prairies et croiss. du Louvre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et croiss. du Louvre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4487170641068, - 45.4341943898209 - ] - } - }, - { - "id": "5336", - "code": "30074", - "data": { - "gtfs": { - "stop_id": "5336", - "stop_code": "30074", - "stop_name": "ch. des Prairies et croiss. du Louvre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et croiss. du Louvre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4490636975318, - 45.4340959857187 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0349099893269 - }, - "name": "ch. des Prairies et croiss. du Louvre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448890381, - 45.434145188 - ] - }, - "is_frozen": false, - "integer_id": 1841, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.34724, - 45.531266 - ] - }, - "id": 1842, - "properties": { - "id": "a34242f1-b39e-4075-8b98-da7cc20aa985", - "code": "30075", - "data": { - "stops": [ - { - "id": "5337", - "code": "30075", - "data": { - "gtfs": { - "stop_id": "5337", - "stop_code": "30075", - "stop_name": "Montarville et civique 1237", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et civique 1237", - "geography": { - "type": "Point", - "coordinates": [ - -73.3473160053663, - 45.5312216776221 - ] - } - }, - { - "id": "5697", - "code": "30465", - "data": { - "gtfs": { - "stop_id": "5697", - "stop_code": "30465", - "stop_name": "Montarville et civique 1250", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montarville et civique 1250", - "geography": { - "type": "Point", - "coordinates": [ - -73.3471632552154, - 45.531311310542 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6740803376591 - }, - "name": "Montarville et civique 1237", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.34723963, - 45.531266494 - ] - }, - "is_frozen": false, - "integer_id": 1842, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.320371, - 45.515013 - ] - }, - "id": 1843, - "properties": { - "id": "a701238b-1e29-4dd9-946e-0536ece5b28c", - "code": "30089", - "data": { - "stops": [ - { - "id": "5351", - "code": "30089", - "data": { - "gtfs": { - "stop_id": "5351", - "stop_code": "30089", - "stop_name": "Grand Boulevard est et civique 245", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grand Boulevard est et civique 245", - "geography": { - "type": "Point", - "coordinates": [ - -73.3203711015017, - 45.5150131464199 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3991790216581 - }, - "name": "Grand Boulevard est et civique 245", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.320371102, - 45.515013146 - ] - }, - "is_frozen": false, - "integer_id": 1843, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.331085, - 45.512718 - ] - }, - "id": 1844, - "properties": { - "id": "826d09a9-1b78-4dbe-b959-454ea9c14e84", - "code": "30091", - "data": { - "stops": [ - { - "id": "5353", - "code": "30091", - "data": { - "gtfs": { - "stop_id": "5353", - "stop_code": "30091", - "stop_name": "Grand Boulevard ouest et civique 83", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grand Boulevard ouest et civique 83", - "geography": { - "type": "Point", - "coordinates": [ - -73.3310853254725, - 45.5127176537605 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3603731405649 - }, - "name": "Grand Boulevard ouest et civique 83", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.331085325, - 45.512717654 - ] - }, - "is_frozen": false, - "integer_id": 1844, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.331009, - 45.512584 - ] - }, - "id": 1845, - "properties": { - "id": "2b4013fd-f01f-46a6-a43b-07ee39c8fae1", - "code": "30094", - "data": { - "stops": [ - { - "id": "5356", - "code": "30094", - "data": { - "gtfs": { - "stop_id": "5356", - "stop_code": "30094", - "stop_name": "Grand Boulevard ouest et civique 80", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grand Boulevard ouest et civique 80", - "geography": { - "type": "Point", - "coordinates": [ - -73.3310087207947, - 45.5125843396112 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3581195773777 - }, - "name": "Grand Boulevard ouest et civique 80", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.331008721, - 45.51258434 - ] - }, - "is_frozen": false, - "integer_id": 1845, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.320299, - 45.514885 - ] - }, - "id": 1846, - "properties": { - "id": "b1b9e3d8-602d-45b4-ae3c-162955cba188", - "code": "30096", - "data": { - "stops": [ - { - "id": "5358", - "code": "30096", - "data": { - "gtfs": { - "stop_id": "5358", - "stop_code": "30096", - "stop_name": "Grand Boulevard est et civique 228", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Grand Boulevard est et civique 228", - "geography": { - "type": "Point", - "coordinates": [ - -73.3202986877126, - 45.5148850670073 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3970136896918 - }, - "name": "Grand Boulevard est et civique 228", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.320298688, - 45.514885067 - ] - }, - "is_frozen": false, - "integer_id": 1846, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.31743, - 45.518444 - ] - }, - "id": 1847, - "properties": { - "id": "44828ff3-a75f-403d-9e17-7e902c4620b9", - "code": "30097", - "data": { - "stops": [ - { - "id": "5359", - "code": "30097", - "data": { - "gtfs": { - "stop_id": "5359", - "stop_code": "30097", - "stop_name": "boul. De Boucherville et civique 3050", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et civique 3050", - "geography": { - "type": "Point", - "coordinates": [ - -73.3172516037979, - 45.5182955945595 - ] - } - }, - { - "id": "5369", - "code": "30109", - "data": { - "gtfs": { - "stop_id": "5369", - "stop_code": "30109", - "stop_name": "boul. De Boucherville et civique 3001", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Boucherville et civique 3001", - "geography": { - "type": "Point", - "coordinates": [ - -73.3176079206616, - 45.5185914323563 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4571790030274 - }, - "name": "boul. De Boucherville et civique 3050", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.317429762, - 45.518443513 - ] - }, - "is_frozen": false, - "integer_id": 1847, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442995, - 45.448665 - ] - }, - "id": 1848, - "properties": { - "id": "52770c2f-36d3-4ae3-81c7-657d2436c44e", - "code": "30101", - "data": { - "stops": [ - { - "id": "5361", - "code": "30101", - "data": { - "gtfs": { - "stop_id": "5361", - "stop_code": "30101", - "stop_name": "boul. Leduc et Entrée & Sortie Aut. 10", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et Entrée & Sortie Aut. 10", - "geography": { - "type": "Point", - "coordinates": [ - -73.4429953455619, - 45.4486649772967 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2794359514432 - }, - "name": "boul. Leduc et Entrée & Sortie Aut. 10", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442995346, - 45.448664977 - ] - }, - "is_frozen": false, - "integer_id": 1848, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.429379, - 45.506736 - ] - }, - "id": 1849, - "properties": { - "id": "eb6126b3-b137-4dad-bcdc-63a4afe577c5", - "code": "30108", - "data": { - "stops": [ - { - "id": "5368", - "code": "30108", - "data": { - "gtfs": { - "stop_id": "5368", - "stop_code": "30108", - "stop_name": "ch. de Chambly et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4293785446512, - 45.5067358229064 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2592707978672 - }, - "name": "ch. de Chambly et boul. Cousineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.429378545, - 45.506735823 - ] - }, - "is_frozen": false, - "integer_id": 1849, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.40036, - 45.4644 - ] - }, - "id": 1850, - "properties": { - "id": "079e9464-8795-42f3-bc7f-526d1ec5de83", - "code": "30110", - "data": { - "stops": [ - { - "id": "5370", - "code": "30110", - "data": { - "gtfs": { - "stop_id": "5370", - "stop_code": "30110", - "stop_name": "Armand-Frappier et civique 4700", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Armand-Frappier et civique 4700", - "geography": { - "type": "Point", - "coordinates": [ - -73.4002467464703, - 45.4643863956426 - ] - } - }, - { - "id": "5371", - "code": "30111", - "data": { - "gtfs": { - "stop_id": "5371", - "stop_code": "30111", - "stop_name": "Armand-Frappier et civique 4700", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Armand-Frappier et civique 4700", - "geography": { - "type": "Point", - "coordinates": [ - -73.4004730296844, - 45.4644137639732 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5446399666424 - }, - "name": "Armand-Frappier et civique 4700", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.400359888, - 45.46440008 - ] - }, - "is_frozen": false, - "integer_id": 1850, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.45605, - 45.434594 - ] - }, - "id": 1851, - "properties": { - "id": "75a6ca63-e257-4bc0-9a35-e9f67206fdfb", - "code": "30113", - "data": { - "stops": [ - { - "id": "5373", - "code": "30113", - "data": { - "gtfs": { - "stop_id": "5373", - "stop_code": "30113", - "stop_name": "ch. des Prairies et de Louisbourg", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et de Louisbourg", - "geography": { - "type": "Point", - "coordinates": [ - -73.4559847676381, - 45.4346156412279 - ] - } - }, - { - "id": "5380", - "code": "30120", - "data": { - "gtfs": { - "stop_id": "5380", - "stop_code": "30120", - "stop_name": "ch. des Prairies et de Louisbourg", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et de Louisbourg", - "geography": { - "type": "Point", - "coordinates": [ - -73.4561157108102, - 45.4345731141248 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0424719414535 - }, - "name": "ch. des Prairies et de Louisbourg", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456050239, - 45.434594378 - ] - }, - "is_frozen": false, - "integer_id": 1851, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.428985, - 45.588762 - ] - }, - "id": 1852, - "properties": { - "id": "de3d06d6-88af-49e3-b183-9464b2f111c8", - "code": "30122", - "data": { - "stops": [ - { - "id": "5382", - "code": "30122", - "data": { - "gtfs": { - "stop_id": "5382", - "stop_code": "30122", - "stop_name": "D'Avaugour et Lionel-Daunais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "D'Avaugour et Lionel-Daunais", - "geography": { - "type": "Point", - "coordinates": [ - -73.4287857153829, - 45.5885634992691 - ] - } - }, - { - "id": "5389", - "code": "30129", - "data": { - "gtfs": { - "stop_id": "5389", - "stop_code": "30129", - "stop_name": "Lionel-Daunais et D'Avaugour", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lionel-Daunais et D'Avaugour", - "geography": { - "type": "Point", - "coordinates": [ - -73.4291836371442, - 45.5889610465424 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6484283045185 - }, - "name": "D'Avaugour et Lionel-Daunais", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.428984676, - 45.588762273 - ] - }, - "is_frozen": false, - "integer_id": 1852, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.430763, - 45.591706 - ] - }, - "id": 1853, - "properties": { - "id": "d8c3a4c7-833d-43a4-86d0-fd5b9cff626a", - "code": "30123", - "data": { - "stops": [ - { - "id": "5383", - "code": "30123", - "data": { - "gtfs": { - "stop_id": "5383", - "stop_code": "30123", - "stop_name": "Lionel-Daunais et Jean-Deslauriers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lionel-Daunais et Jean-Deslauriers", - "geography": { - "type": "Point", - "coordinates": [ - -73.4305942768248, - 45.5916574164362 - ] - } - }, - { - "id": "5388", - "code": "30128", - "data": { - "gtfs": { - "stop_id": "5388", - "stop_code": "30128", - "stop_name": "Lionel-Daunais et Jean-Deslauriers", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lionel-Daunais et Jean-Deslauriers", - "geography": { - "type": "Point", - "coordinates": [ - -73.4309315519116, - 45.5917542714834 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6983908266081 - }, - "name": "Lionel-Daunais et Jean-Deslauriers", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.430762914, - 45.591705844 - ] - }, - "is_frozen": false, - "integer_id": 1853, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.433279, - 45.593602 - ] - }, - "id": 1854, - "properties": { - "id": "ed16ff8f-f2f4-4914-b93b-f48229e580b7", - "code": "30124", - "data": { - "stops": [ - { - "id": "5384", - "code": "30124", - "data": { - "gtfs": { - "stop_id": "5384", - "stop_code": "30124", - "stop_name": "Lionel-Daunais et boul. de Mortagne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lionel-Daunais et boul. de Mortagne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4331034918599, - 45.5936461853866 - ] - } - }, - { - "id": "5387", - "code": "30127", - "data": { - "gtfs": { - "stop_id": "5387", - "stop_code": "30127", - "stop_name": "boul. de Mortagne et Lionel-Daunais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Mortagne et Lionel-Daunais", - "geography": { - "type": "Point", - "coordinates": [ - -73.4334554125379, - 45.5935577002064 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7305782537316 - }, - "name": "Lionel-Daunais et boul. de Mortagne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.433279452, - 45.593601943 - ] - }, - "is_frozen": false, - "integer_id": 1854, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.43466, - 45.577028 - ] - }, - "id": 1855, - "properties": { - "id": "dda3c3c1-6952-475f-8547-789fb757f7c6", - "code": "30131", - "data": { - "stops": [ - { - "id": "5391", - "code": "30131", - "data": { - "gtfs": { - "stop_id": "5391", - "stop_code": "30131", - "stop_name": "de Normandie et de Nantes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Normandie et de Nantes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4346366374143, - 45.5768534271501 - ] - } - }, - { - "id": "5394", - "code": "30134", - "data": { - "gtfs": { - "stop_id": "5394", - "stop_code": "30134", - "stop_name": "de Normandie et de Nantes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Normandie et de Nantes", - "geography": { - "type": "Point", - "coordinates": [ - -73.4346830162761, - 45.5772017297947 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.449327236941 - }, - "name": "de Normandie et de Nantes", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.434659827, - 45.577027578 - ] - }, - "is_frozen": false, - "integer_id": 1855, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.433355, - 45.579106 - ] - }, - "id": 1856, - "properties": { - "id": "3ff2d59e-aa78-4d80-b1c5-f7852a289411", - "code": "30132", - "data": { - "stops": [ - { - "id": "5392", - "code": "30132", - "data": { - "gtfs": { - "stop_id": "5392", - "stop_code": "30132", - "stop_name": "de Normandie et de Caen", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Normandie et de Caen", - "geography": { - "type": "Point", - "coordinates": [ - -73.4333500253481, - 45.5789618313686 - ] - } - }, - { - "id": "5393", - "code": "30133", - "data": { - "gtfs": { - "stop_id": "5393", - "stop_code": "30133", - "stop_name": "de Normandie et de Caen", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Normandie et de Caen", - "geography": { - "type": "Point", - "coordinates": [ - -73.4333591911461, - 45.5792509677142 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4845893658681 - }, - "name": "de Normandie et de Caen", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.433354608, - 45.5791064 - ] - }, - "is_frozen": false, - "integer_id": 1856, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.426516, - 45.57757 - ] - }, - "id": 1857, - "properties": { - "id": "8680b7f3-dcb9-422f-a458-e2745493c66f", - "code": "30135", - "data": { - "stops": [ - { - "id": "5395", - "code": "30135", - "data": { - "gtfs": { - "stop_id": "5395", - "stop_code": "30135", - "stop_name": "de Rouen et de Dijon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Rouen et de Dijon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4263649446439, - 45.577518093415 - ] - } - }, - { - "id": "5396", - "code": "30136", - "data": { - "gtfs": { - "stop_id": "5396", - "stop_code": "30136", - "stop_name": "de Rouen et de Dijon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Rouen et de Dijon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4266662541209, - 45.5776226739587 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4585342398183 - }, - "name": "de Rouen et de Dijon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.426515599, - 45.577570384 - ] - }, - "is_frozen": false, - "integer_id": 1857, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.428355, - 45.579154 - ] - }, - "id": 1858, - "properties": { - "id": "9f16d6ec-8397-4d95-9ce8-1980aa76ecbc", - "code": "30137", - "data": { - "stops": [ - { - "id": "5397", - "code": "30137", - "data": { - "gtfs": { - "stop_id": "5397", - "stop_code": "30137", - "stop_name": "de Rouen et civique 1382", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Rouen et civique 1382", - "geography": { - "type": "Point", - "coordinates": [ - -73.4283274643576, - 45.5792323221632 - ] - } - }, - { - "id": "5398", - "code": "30138", - "data": { - "gtfs": { - "stop_id": "5398", - "stop_code": "30138", - "stop_name": "de Rouen et civique 1383", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de Rouen et civique 1383", - "geography": { - "type": "Point", - "coordinates": [ - -73.4283833216603, - 45.5790757353105 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4853973206076 - }, - "name": "de Rouen et civique 1382", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.428355393, - 45.579154029 - ] - }, - "is_frozen": false, - "integer_id": 1858, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.404291, - 45.578094 - ] - }, - "id": 1859, - "properties": { - "id": "7b448eb1-37a4-4d74-be5a-f8938cae8304", - "code": "30140", - "data": { - "stops": [ - { - "id": "5400", - "code": "30140", - "data": { - "gtfs": { - "stop_id": "5400", - "stop_code": "30140", - "stop_name": "Lavoisier et COSTCO", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lavoisier et COSTCO", - "geography": { - "type": "Point", - "coordinates": [ - -73.4044674345232, - 45.5780957839582 - ] - } - }, - { - "id": "5401", - "code": "30141", - "data": { - "gtfs": { - "stop_id": "5401", - "stop_code": "30141", - "stop_name": "Lavoisier et COSTCO", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lavoisier et COSTCO", - "geography": { - "type": "Point", - "coordinates": [ - -73.404114822035, - 45.5780915004858 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4674099215576 - }, - "name": "Lavoisier et COSTCO", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.404291128, - 45.578093642 - ] - }, - "is_frozen": false, - "integer_id": 1859, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.382757, - 45.571594 - ] - }, - "id": 1860, - "properties": { - "id": "b195cac8-133e-4e85-98b4-0a7ab23c800c", - "code": "30144", - "data": { - "stops": [ - { - "id": "5404", - "code": "30144", - "data": { - "gtfs": { - "stop_id": "5404", - "stop_code": "30144", - "stop_name": "AFFI", - "location_type": 0, - "parent_station": "" - } - }, - "name": "AFFI", - "geography": { - "type": "Point", - "coordinates": [ - -73.3827570294535, - 45.5715937491911 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3571738744973 - }, - "name": "AFFI", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.382757029, - 45.571593749 - ] - }, - "is_frozen": false, - "integer_id": 1860, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.408976, - 45.581035 - ] - }, - "id": 1861, - "properties": { - "id": "35c1782c-662d-401b-9699-beb9fbc05ba4", - "code": "30145", - "data": { - "stops": [ - { - "id": "5405", - "code": "30145", - "data": { - "gtfs": { - "stop_id": "5405", - "stop_code": "30145", - "stop_name": "du Boisé et de la Futaie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Boisé et de la Futaie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4088121959957, - 45.5809870919552 - ] - } - }, - { - "id": "5406", - "code": "30147", - "data": { - "gtfs": { - "stop_id": "5406", - "stop_code": "30147", - "stop_name": "du Boisé et de la Futaie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "du Boisé et de la Futaie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4091404626613, - 45.5810838855536 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5173150982698 - }, - "name": "du Boisé et de la Futaie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.408976329, - 45.581035489 - ] - }, - "is_frozen": false, - "integer_id": 1861, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.431878, - 45.46528 - ] - }, - "id": 1862, - "properties": { - "id": "2dc5436a-aaba-417a-8f15-4777cfa70bbf", - "code": "30148", - "data": { - "stops": [ - { - "id": "5407", - "code": "30148", - "data": { - "gtfs": { - "stop_id": "5407", - "stop_code": "30148", - "stop_name": "boul. Chevrier et Claudel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Chevrier et Claudel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4319067745763, - 45.4651473282628 - ] - } - }, - { - "id": "5408", - "code": "30149", - "data": { - "gtfs": { - "stop_id": "5408", - "stop_code": "30149", - "stop_name": "boul. Chevrier et Claudel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Chevrier et Claudel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4318485998827, - 45.4654123404956 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.559474083114 - }, - "name": "boul. Chevrier et Claudel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431877687, - 45.465279834 - ] - }, - "is_frozen": false, - "integer_id": 1862, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.374382, - 45.512781 - ] - }, - "id": 1863, - "properties": { - "id": "0bb0f4a3-6434-4d59-afee-258bc8cd81e4", - "code": "30160", - "data": { - "stops": [ - { - "id": "5417", - "code": "30160", - "data": { - "gtfs": { - "stop_id": "5417", - "stop_code": "30160", - "stop_name": "GARE SAINT-BRUNO", - "location_type": 0, - "parent_station": "" - } - }, - "name": "GARE SAINT-BRUNO", - "geography": { - "type": "Point", - "coordinates": [ - -73.3743816931576, - 45.5127806302333 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3614377033942 - }, - "name": "GARE SAINT-BRUNO", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.374381693, - 45.51278063 - ] - }, - "is_frozen": false, - "integer_id": 1863, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.512896, - 45.501759 - ] - }, - "id": 1864, - "properties": { - "id": "46687bb1-1189-4edc-bbd4-c90db18d4ff5", - "code": "30161", - "data": { - "stops": [ - { - "id": "5418", - "code": "30161", - "data": { - "gtfs": { - "stop_id": "5418", - "stop_code": "30161", - "stop_name": "av. Argyle et av. Victoria", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Argyle et av. Victoria", - "geography": { - "type": "Point", - "coordinates": [ - -73.5124746870508, - 45.5018070148509 - ] - } - }, - { - "id": "5768", - "code": "30537", - "data": { - "gtfs": { - "stop_id": "5768", - "stop_code": "30537", - "stop_name": "av. Argyle et HOTEL DE VILLE DE SAINT-LAMBERT", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Argyle et HOTEL DE VILLE DE SAINT-LAMBERT", - "geography": { - "type": "Point", - "coordinates": [ - -73.5133165505173, - 45.5017111566961 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1751803978265 - }, - "name": "av. Argyle et av. Victoria", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.512895619, - 45.501759086 - ] - }, - "is_frozen": false, - "integer_id": 1864, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.433604, - 45.499603 - ] - }, - "id": 1865, - "properties": { - "id": "aa6eb326-370c-4562-8a0f-6ee973ad147e", - "code": "30164", - "data": { - "stops": [ - { - "id": "5421", - "code": "30164", - "data": { - "gtfs": { - "stop_id": "5421", - "stop_code": "30164", - "stop_name": "Perras et Plante", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Perras et Plante", - "geography": { - "type": "Point", - "coordinates": [ - -73.4337563396072, - 45.4995838503776 - ] - } - }, - { - "id": "5422", - "code": "30165", - "data": { - "gtfs": { - "stop_id": "5422", - "stop_code": "30165", - "stop_name": "Perras et Plante", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Perras et Plante", - "geography": { - "type": "Point", - "coordinates": [ - -73.433451978679, - 45.4996214003117 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1387501819199 - }, - "name": "Perras et Plante", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.433604159, - 45.499602625 - ] - }, - "is_frozen": false, - "integer_id": 1865, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453648, - 45.433955 - ] - }, - "id": 1866, - "properties": { - "id": "8162eb5c-436c-4cc2-b9dd-2d13a57dd8d8", - "code": "30169", - "data": { - "stops": [ - { - "id": "5426", - "code": "30169", - "data": { - "gtfs": { - "stop_id": "5426", - "stop_code": "30169", - "stop_name": "ch. des Prairies et civique 4405", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et civique 4405", - "geography": { - "type": "Point", - "coordinates": [ - -73.4536001450913, - 45.4339717896333 - ] - } - }, - { - "id": "5431", - "code": "30174", - "data": { - "gtfs": { - "stop_id": "5431", - "stop_code": "30174", - "stop_name": "ch. des Prairies et civique 4405", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et civique 4405", - "geography": { - "type": "Point", - "coordinates": [ - -73.4536955358461, - 45.4339386642246 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0317121179864 - }, - "name": "ch. des Prairies et civique 4405", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45364784, - 45.433955227 - ] - }, - "is_frozen": false, - "integer_id": 1866, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458325, - 45.435413 - ] - }, - "id": 1867, - "properties": { - "id": "dc444f91-de90-48b4-9750-8ab69f40baf5", - "code": "30170", - "data": { - "stops": [ - { - "id": "5427", - "code": "30170", - "data": { - "gtfs": { - "stop_id": "5427", - "stop_code": "30170", - "stop_name": "ch. des Prairies et civique 4160", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et civique 4160", - "geography": { - "type": "Point", - "coordinates": [ - -73.4582755733424, - 45.4354650163163 - ] - } - }, - { - "id": "5428", - "code": "30171", - "data": { - "gtfs": { - "stop_id": "5428", - "stop_code": "30171", - "stop_name": "ch. des Prairies et civique 4095", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et civique 4095", - "geography": { - "type": "Point", - "coordinates": [ - -73.4583746694526, - 45.4353602231111 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0562472107326 - }, - "name": "ch. des Prairies et civique 4160", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.458325121, - 45.43541262 - ] - }, - "is_frozen": false, - "integer_id": 1867, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451464, - 45.433975 - ] - }, - "id": 1868, - "properties": { - "id": "95267540-c736-4584-b843-23c799e4aa83", - "code": "30172", - "data": { - "stops": [ - { - "id": "5429", - "code": "30172", - "data": { - "gtfs": { - "stop_id": "5429", - "stop_code": "30172", - "stop_name": "ch. des Prairies et croiss. du Louvre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et croiss. du Louvre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4515932508963, - 45.4339043918806 - ] - } - }, - { - "id": "5430", - "code": "30173", - "data": { - "gtfs": { - "stop_id": "5430", - "stop_code": "30173", - "stop_name": "ch. des Prairies et croiss. du Louvre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. des Prairies et croiss. du Louvre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4513354924034, - 45.4340448512427 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0320386188802 - }, - "name": "ch. des Prairies et croiss. du Louvre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451464372, - 45.433974622 - ] - }, - "is_frozen": false, - "integer_id": 1868, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439119, - 45.500532 - ] - }, - "id": 1869, - "properties": { - "id": "a39b7f03-1a32-4d28-9091-59543b1980d1", - "code": "30178", - "data": { - "stops": [ - { - "id": "5435", - "code": "30178", - "data": { - "gtfs": { - "stop_id": "5435", - "stop_code": "30178", - "stop_name": "boul. Gareau et civique 3447", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gareau et civique 3447", - "geography": { - "type": "Point", - "coordinates": [ - -73.4391190320216, - 45.500532218969 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1544537888458 - }, - "name": "boul. Gareau et civique 3447", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439119032, - 45.500532219 - ] - }, - "is_frozen": false, - "integer_id": 1869, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.35414, - 45.462164 - ] - }, - "id": 1870, - "properties": { - "id": "88e03d45-747f-4e6b-aeb6-97810526c65b", - "code": "30181", - "data": { - "stops": [ - { - "id": "5438", - "code": "30181", - "data": { - "gtfs": { - "stop_id": "5438", - "stop_code": "30181", - "stop_name": "Pacific et De La Brisardière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et De La Brisardière", - "geography": { - "type": "Point", - "coordinates": [ - -73.3540959608306, - 45.4620801483313 - ] - } - }, - { - "id": "5439", - "code": "30182", - "data": { - "gtfs": { - "stop_id": "5439", - "stop_code": "30182", - "stop_name": "Pacific et De La Brisardière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Pacific et De La Brisardière", - "geography": { - "type": "Point", - "coordinates": [ - -73.3541835979149, - 45.4622480344839 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5069405633618 - }, - "name": "Pacific et De La Brisardière", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.354139779, - 45.462164091 - ] - }, - "is_frozen": false, - "integer_id": 1870, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468579, - 45.467028 - ] - }, - "id": 1871, - "properties": { - "id": "0efa9d7f-9938-46ee-97f6-a92cc9c04c7d", - "code": "30191", - "data": { - "stops": [ - { - "id": "5447", - "code": "30191", - "data": { - "gtfs": { - "stop_id": "5447", - "stop_code": "30191", - "stop_name": "TERMINUS PANAMA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "TERMINUS PANAMA", - "geography": { - "type": "Point", - "coordinates": [ - -73.4685789341712, - 45.4670282653633 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5889575792322 - }, - "name": "TERMINUS PANAMA", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468578934, - 45.467028265 - ] - }, - "is_frozen": false, - "integer_id": 1871, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.430948, - 45.513379 - ] - }, - "id": 1872, - "properties": { - "id": "4d0b0e5c-93dc-4d99-84e1-62026882c424", - "code": "30192", - "data": { - "stops": [ - { - "id": "5448", - "code": "30192", - "data": { - "gtfs": { - "stop_id": "5448", - "stop_code": "30192", - "stop_name": "ch. de la Savane et Bishop", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et Bishop", - "geography": { - "type": "Point", - "coordinates": [ - -73.4310007447585, - 45.5134779314252 - ] - } - }, - { - "id": "5449", - "code": "30193", - "data": { - "gtfs": { - "stop_id": "5449", - "stop_code": "30193", - "stop_name": "ch. de la Savane et Bishop", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et Bishop", - "geography": { - "type": "Point", - "coordinates": [ - -73.4308945326625, - 45.5132805005071 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3715565345408 - }, - "name": "ch. de la Savane et Bishop", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.430947639, - 45.513379216 - ] - }, - "is_frozen": false, - "integer_id": 1872, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454758, - 45.449644 - ] - }, - "id": 1873, - "properties": { - "id": "fed0cace-86a8-4aaf-b4b4-6838b8fe377e", - "code": "30196", - "data": { - "stops": [ - { - "id": "5452", - "code": "30196", - "data": { - "gtfs": { - "stop_id": "5452", - "stop_code": "30196", - "stop_name": "boul. de Rome et Mondor", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et Mondor", - "geography": { - "type": "Point", - "coordinates": [ - -73.4547584940101, - 45.4496439632584 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2959296590657 - }, - "name": "boul. de Rome et Mondor", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454758494, - 45.449643963 - ] - }, - "is_frozen": false, - "integer_id": 1873, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.434158, - 45.521093 - ] - }, - "id": 1874, - "properties": { - "id": "f8e89dfa-b651-418d-b1ab-5c9f2ffb0cf1", - "code": "30199", - "data": { - "stops": [ - { - "id": "5455", - "code": "30199", - "data": { - "gtfs": { - "stop_id": "5455", - "stop_code": "30199", - "stop_name": "boul. Vauquelin et des Graminées", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Vauquelin et des Graminées", - "geography": { - "type": "Point", - "coordinates": [ - -73.4341582012757, - 45.5210933793297 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5019896010721 - }, - "name": "boul. Vauquelin et des Graminées", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.434158201, - 45.521093379 - ] - }, - "is_frozen": false, - "integer_id": 1874, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.357347, - 45.540939 - ] - }, - "id": 1875, - "properties": { - "id": "066272d0-7f9d-4ef7-82d0-25ad68986874", - "code": "30202", - "data": { - "stops": [ - { - "id": "5458", - "code": "30202", - "data": { - "gtfs": { - "stop_id": "5458", - "stop_code": "30202", - "stop_name": "rang des Vingt-Cinq est et montée Montarville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rang des Vingt-Cinq est et montée Montarville", - "geography": { - "type": "Point", - "coordinates": [ - -73.35734718209, - 45.5409394490994 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8377958327092 - }, - "name": "rang des Vingt-Cinq est et montée Montarville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.357347182, - 45.540939449 - ] - }, - "is_frozen": false, - "integer_id": 1875, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.405609, - 45.579259 - ] - }, - "id": 1876, - "properties": { - "id": "1a872bc7-948e-475a-8527-ec3c2b61fd79", - "code": "30204", - "data": { - "stops": [ - { - "id": "5460", - "code": "30204", - "data": { - "gtfs": { - "stop_id": "5460", - "stop_code": "30204", - "stop_name": "Lavoisier et des Sureaux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lavoisier et des Sureaux", - "geography": { - "type": "Point", - "coordinates": [ - -73.4053814190433, - 45.5791211328071 - ] - } - }, - { - "id": "5462", - "code": "30209", - "data": { - "gtfs": { - "stop_id": "5462", - "stop_code": "30209", - "stop_name": "Lavoisier et des Sureaux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lavoisier et des Sureaux", - "geography": { - "type": "Point", - "coordinates": [ - -73.4058365455262, - 45.5792415238236 - ] - } - }, - { - "id": "5607", - "code": "30356", - "data": { - "gtfs": { - "stop_id": "5607", - "stop_code": "30356", - "stop_name": "des Sureaux et Lavoisier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Sureaux et Lavoisier", - "geography": { - "type": "Point", - "coordinates": [ - -73.4056288983788, - 45.5793960127257 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4871707603 - }, - "name": "Lavoisier et des Sureaux", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.405608982, - 45.579258573 - ] - }, - "is_frozen": false, - "integer_id": 1876, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.356356, - 45.540781 - ] - }, - "id": 1877, - "properties": { - "id": "57edc028-e6a8-4a6f-9b5c-85f95b27233f", - "code": "30208", - "data": { - "stops": [ - { - "id": "5461", - "code": "30208", - "data": { - "gtfs": { - "stop_id": "5461", - "stop_code": "30208", - "stop_name": "montée Montarville et rang des Vingt-Cinq est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Montarville et rang des Vingt-Cinq est", - "geography": { - "type": "Point", - "coordinates": [ - -73.3563561145693, - 45.540780634006 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.835107202944 - }, - "name": "montée Montarville et rang des Vingt-Cinq est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.356356115, - 45.540780634 - ] - }, - "is_frozen": false, - "integer_id": 1877, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.355184, - 45.545471 - ] - }, - "id": 1878, - "properties": { - "id": "b46cca05-fe3c-4c2a-ae1b-28c207027915", - "code": "30211", - "data": { - "stops": [ - { - "id": "5464", - "code": "30211", - "data": { - "gtfs": { - "stop_id": "5464", - "stop_code": "30211", - "stop_name": "Yvonne-Duckett et rang des Vingt-Cinq est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Yvonne-Duckett et rang des Vingt-Cinq est", - "geography": { - "type": "Point", - "coordinates": [ - -73.3550915391522, - 45.5455469306463 - ] - } - }, - { - "id": "5704", - "code": "30473", - "data": { - "gtfs": { - "stop_id": "5704", - "stop_code": "30473", - "stop_name": "rang des Vingt-Cinq est et Yvonne-Duckett", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rang des Vingt-Cinq est et Yvonne-Duckett", - "geography": { - "type": "Point", - "coordinates": [ - -73.355277314707, - 45.5453952386832 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9145228257388 - }, - "name": "Yvonne-Duckett et rang des Vingt-Cinq est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.355184427, - 45.545471085 - ] - }, - "is_frozen": false, - "integer_id": 1878, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.447244, - 45.434506 - ] - }, - "id": 1879, - "properties": { - "id": "7086213c-6c6f-4acd-ad80-070f91d1eae3", - "code": "30215", - "data": { - "stops": [ - { - "id": "5468", - "code": "30215", - "data": { - "gtfs": { - "stop_id": "5468", - "stop_code": "30215", - "stop_name": "boul. du Quartier et ch. des Prairies", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et ch. des Prairies", - "geography": { - "type": "Point", - "coordinates": [ - -73.4472442718243, - 45.4345055373717 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0409763209824 - }, - "name": "boul. du Quartier et ch. des Prairies", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447244272, - 45.434505537 - ] - }, - "is_frozen": false, - "integer_id": 1879, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.40763, - 45.496638 - ] - }, - "id": 1880, - "properties": { - "id": "590769f9-bd2c-482c-8bd5-e3724936b683", - "code": "30219", - "data": { - "stops": [ - { - "id": "5472", - "code": "30219", - "data": { - "gtfs": { - "stop_id": "5472", - "stop_code": "30219", - "stop_name": "boul. Gaétan-Boucher et PHARMACIE JEAN COUTU #180", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et PHARMACIE JEAN COUTU #180", - "geography": { - "type": "Point", - "coordinates": [ - -73.4077312136788, - 45.4967783076908 - ] - } - }, - { - "id": "5473", - "code": "30220", - "data": { - "gtfs": { - "stop_id": "5473", - "stop_code": "30220", - "stop_name": "boul. Gaétan-Boucher et Lise-Charbonneau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Gaétan-Boucher et Lise-Charbonneau", - "geography": { - "type": "Point", - "coordinates": [ - -73.407529011184, - 45.4964974720246 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0886721280103 - }, - "name": "boul. Gaétan-Boucher et PHARMACIE JEAN COUTU #180", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.407630112, - 45.49663789 - ] - }, - "is_frozen": false, - "integer_id": 1880, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.35743, - 45.542337 - ] - }, - "id": 1881, - "properties": { - "id": "ce2fb937-41be-4394-bf3f-6bb0d8d6413a", - "code": "30221", - "data": { - "stops": [ - { - "id": "5474", - "code": "30221", - "data": { - "gtfs": { - "stop_id": "5474", - "stop_code": "30221", - "stop_name": "rang des Vingt-Cinq est et Eulalie-Durocher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rang des Vingt-Cinq est et Eulalie-Durocher", - "geography": { - "type": "Point", - "coordinates": [ - -73.3574301788264, - 45.5423372244832 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8614601818836 - }, - "name": "rang des Vingt-Cinq est et Eulalie-Durocher", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.357430179, - 45.542337224 - ] - }, - "is_frozen": false, - "integer_id": 1881, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.468698, - 45.537554 - ] - }, - "id": 1882, - "properties": { - "id": "7173d99c-f55d-41f4-8d2d-0266835b40ee", - "code": "30242", - "data": { - "stops": [ - { - "id": "5495", - "code": "30242", - "data": { - "gtfs": { - "stop_id": "5495", - "stop_code": "30242", - "stop_name": "King-George et Bâtiment Bell", - "location_type": 0, - "parent_station": "" - } - }, - "name": "King-George et Bâtiment Bell", - "geography": { - "type": "Point", - "coordinates": [ - -73.4686984032842, - 45.5375541733757 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7804902879898 - }, - "name": "King-George et Bâtiment Bell", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.468698403, - 45.537554173 - ] - }, - "is_frozen": false, - "integer_id": 1882, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.379801, - 45.520266 - ] - }, - "id": 1883, - "properties": { - "id": "71285487-65b1-4a9b-965b-e8b969ec642e", - "code": "30249", - "data": { - "stops": [ - { - "id": "5501", - "code": "30249", - "data": { - "gtfs": { - "stop_id": "5501", - "stop_code": "30249", - "stop_name": "boul. Clairevue ouest et René-Descartes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et René-Descartes", - "geography": { - "type": "Point", - "coordinates": [ - -73.3796833332615, - 45.5203824703804 - ] - } - }, - { - "id": "5502", - "code": "30250", - "data": { - "gtfs": { - "stop_id": "5502", - "stop_code": "30250", - "stop_name": "boul. Clairevue ouest et René-Descartes", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et René-Descartes", - "geography": { - "type": "Point", - "coordinates": [ - -73.3799182893268, - 45.5201505084122 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.488005794037 - }, - "name": "boul. Clairevue ouest et René-Descartes", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.379800811, - 45.520266489 - ] - }, - "is_frozen": false, - "integer_id": 1883, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.373283, - 45.474626 - ] - }, - "id": 1884, - "properties": { - "id": "c5d63249-9c53-468b-a75e-33839919bc02", - "code": "30252", - "data": { - "stops": [ - { - "id": "5504", - "code": "30252", - "data": { - "gtfs": { - "stop_id": "5504", - "stop_code": "30252", - "stop_name": "boul. Mountainview et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Mountainview et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3734724229609, - 45.4744921617181 - ] - } - }, - { - "id": "5505", - "code": "30253", - "data": { - "gtfs": { - "stop_id": "5505", - "stop_code": "30253", - "stop_name": "boul. Mountainview et civique 2705", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Mountainview et civique 2705", - "geography": { - "type": "Point", - "coordinates": [ - -73.3730935706602, - 45.4747603639384 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7171128643673 - }, - "name": "boul. Mountainview et boul. Cousineau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.373282997, - 45.474626263 - ] - }, - "is_frozen": false, - "integer_id": 1884, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.464209, - 45.536659 - ] - }, - "id": 1885, - "properties": { - "id": "faaa7c6f-4c6c-443c-99d4-d4c617571545", - "code": "30255", - "data": { - "stops": [ - { - "id": "5507", - "code": "30255", - "data": { - "gtfs": { - "stop_id": "5507", - "stop_code": "30255", - "stop_name": "ch. Du Tremblay et civique 1195", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Du Tremblay et civique 1195", - "geography": { - "type": "Point", - "coordinates": [ - -73.4642090451849, - 45.5366587520442 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7653344186135 - }, - "name": "ch. Du Tremblay et civique 1195", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.464209045, - 45.536658752 - ] - }, - "is_frozen": false, - "integer_id": 1885, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.425624, - 45.524029 - ] - }, - "id": 1886, - "properties": { - "id": "ed42da21-6b05-4077-96ea-1a113eaf4850", - "code": "30256", - "data": { - "stops": [ - { - "id": "5508", - "code": "30256", - "data": { - "gtfs": { - "stop_id": "5508", - "stop_code": "30256", - "stop_name": "ch. de la Savane et civique 4925", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et civique 4925", - "geography": { - "type": "Point", - "coordinates": [ - -73.4255338966696, - 45.5240055664505 - ] - } - }, - { - "id": "5509", - "code": "30257", - "data": { - "gtfs": { - "stop_id": "5509", - "stop_code": "30257", - "stop_name": "ch. de la Savane et civique 4925", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de la Savane et civique 4925", - "geography": { - "type": "Point", - "coordinates": [ - -73.4257145086792, - 45.5240515362779 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5516321736669 - }, - "name": "ch. de la Savane et civique 4925", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.425624203, - 45.524028551 - ] - }, - "is_frozen": false, - "integer_id": 1886, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.457437, - 45.432007 - ] - }, - "id": 1887, - "properties": { - "id": "ba9dbeb6-b197-4bf3-9ae7-2251eb9f3485", - "code": "30258", - "data": { - "stops": [ - { - "id": "5510", - "code": "30258", - "data": { - "gtfs": { - "stop_id": "5510", - "stop_code": "30258", - "stop_name": "place de Java et civique 4055", - "location_type": 0, - "parent_station": "" - } - }, - "name": "place de Java et civique 4055", - "geography": { - "type": "Point", - "coordinates": [ - -73.45748092465, - 45.4321647760582 - ] - } - }, - { - "id": "5511", - "code": "30259", - "data": { - "gtfs": { - "stop_id": "5511", - "stop_code": "30259", - "stop_name": "place de Java et civique 4100", - "location_type": 0, - "parent_station": "" - } - }, - "name": "place de Java et civique 4100", - "geography": { - "type": "Point", - "coordinates": [ - -73.4573925630696, - 45.431849982208 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.9989231934788 - }, - "name": "place de Java et civique 4055", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.457436744, - 45.432007379 - ] - }, - "is_frozen": false, - "integer_id": 1887, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.369698, - 45.527686 - ] - }, - "id": 1888, - "properties": { - "id": "7d066d0e-6085-4155-a554-6e1116a797c6", - "code": "30260", - "data": { - "stops": [ - { - "id": "5512", - "code": "30260", - "data": { - "gtfs": { - "stop_id": "5512", - "stop_code": "30260", - "stop_name": "Parent et civique 1081", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Parent et civique 1081", - "geography": { - "type": "Point", - "coordinates": [ - -73.3698110342022, - 45.5276860623063 - ] - } - }, - { - "id": "5513", - "code": "30261", - "data": { - "gtfs": { - "stop_id": "5513", - "stop_code": "30261", - "stop_name": "Parent et civique 1081", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Parent et civique 1081", - "geography": { - "type": "Point", - "coordinates": [ - -73.3695858938416, - 45.5276863337021 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6135047132599 - }, - "name": "Parent et civique 1081", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.369698464, - 45.527686198 - ] - }, - "is_frozen": false, - "integer_id": 1888, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443006, - 45.438435 - ] - }, - "id": 1889, - "properties": { - "id": "d3ead48f-87a1-4905-af00-10546937b61d", - "code": "30262", - "data": { - "stops": [ - { - "id": "5514", - "code": "30262", - "data": { - "gtfs": { - "stop_id": "5514", - "stop_code": "30262", - "stop_name": "boul. Leduc et CANADIAN-TIRE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et CANADIAN-TIRE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4427629846718, - 45.4384160177566 - ] - } - }, - { - "id": "5515", - "code": "30263", - "data": { - "gtfs": { - "stop_id": "5515", - "stop_code": "30263", - "stop_name": "boul. Leduc et CANADIAN-TIRE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et CANADIAN-TIRE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4432493917228, - 45.4384549172487 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1071426115216 - }, - "name": "boul. Leduc et CANADIAN-TIRE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443006188, - 45.438435468 - ] - }, - "is_frozen": false, - "integer_id": 1889, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440079, - 45.439896 - ] - }, - "id": 1890, - "properties": { - "id": "c5b32d48-73e8-4193-bbcc-f643b32c6ad7", - "code": "30264", - "data": { - "stops": [ - { - "id": "5516", - "code": "30264", - "data": { - "gtfs": { - "stop_id": "5516", - "stop_code": "30264", - "stop_name": "boul. de Rome et boul. Leduc", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et boul. Leduc", - "geography": { - "type": "Point", - "coordinates": [ - -73.4400786726832, - 45.4398955366574 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1317285530417 - }, - "name": "boul. de Rome et boul. Leduc", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440078673, - 45.439895537 - ] - }, - "is_frozen": false, - "integer_id": 1890, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440367, - 45.439197 - ] - }, - "id": 1891, - "properties": { - "id": "fb801cfe-4d06-4f1b-8a43-460434286646", - "code": "30265", - "data": { - "stops": [ - { - "id": "5517", - "code": "30265", - "data": { - "gtfs": { - "stop_id": "5517", - "stop_code": "30265", - "stop_name": "boul. Leduc et boul. de Rome", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et boul. de Rome", - "geography": { - "type": "Point", - "coordinates": [ - -73.4403670990911, - 45.4391970209705 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1199660831064 - }, - "name": "boul. Leduc et boul. de Rome", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440367099, - 45.439197021 - ] - }, - "is_frozen": false, - "integer_id": 1891, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451832, - 45.431037 - ] - }, - "id": 1892, - "properties": { - "id": "601fc633-4aed-4e9a-b678-52e4dedfe19d", - "code": "30266", - "data": { - "stops": [ - { - "id": "5518", - "code": "30266", - "data": { - "gtfs": { - "stop_id": "5518", - "stop_code": "30266", - "stop_name": "boul. du Quartier et de Lancaster", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et de Lancaster", - "geography": { - "type": "Point", - "coordinates": [ - -73.4518316600576, - 45.4310374222184 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.982596762976 - }, - "name": "boul. du Quartier et de Lancaster", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45183166, - 45.431037422 - ] - }, - "is_frozen": false, - "integer_id": 1892, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.451414, - 45.430923 - ] - }, - "id": 1893, - "properties": { - "id": "1e5e280b-187c-453e-ae50-34515416c146", - "code": "30267", - "data": { - "stops": [ - { - "id": "5519", - "code": "30267", - "data": { - "gtfs": { - "stop_id": "5519", - "stop_code": "30267", - "stop_name": "boul. du Quartier et de Lancaster", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et de Lancaster", - "geography": { - "type": "Point", - "coordinates": [ - -73.451414341882, - 45.4309228550795 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.980668412767 - }, - "name": "boul. du Quartier et de Lancaster", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.451414342, - 45.430922855 - ] - }, - "is_frozen": false, - "integer_id": 1893, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.456454, - 45.430997 - ] - }, - "id": 1894, - "properties": { - "id": "772e5e9c-3d69-4a70-b583-9525616f4a61", - "code": "30270", - "data": { - "stops": [ - { - "id": "5522", - "code": "30270", - "data": { - "gtfs": { - "stop_id": "5522", - "stop_code": "30270", - "stop_name": "place de Java et civique 4150", - "location_type": 0, - "parent_station": "" - } - }, - "name": "place de Java et civique 4150", - "geography": { - "type": "Point", - "coordinates": [ - -73.4565244360677, - 45.4309467277198 - ] - } - }, - { - "id": "5523", - "code": "30271", - "data": { - "gtfs": { - "stop_id": "5523", - "stop_code": "30271", - "stop_name": "place de Java et civique 4200", - "location_type": 0, - "parent_station": "" - } - }, - "name": "place de Java et civique 4200", - "geography": { - "type": "Point", - "coordinates": [ - -73.4563836710642, - 45.4310472633836 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 949.9819163258725 - }, - "name": "place de Java et civique 4150", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.456454054, - 45.430996996 - ] - }, - "is_frozen": false, - "integer_id": 1894, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437758, - 45.444877 - ] - }, - "id": 1895, - "properties": { - "id": "6a7293d7-c2a9-4a56-ac00-3470ede84ecb", - "code": "30272", - "data": { - "stops": [ - { - "id": "5524", - "code": "30272", - "data": { - "gtfs": { - "stop_id": "5524", - "stop_code": "30272", - "stop_name": "boul. Leduc et boul. du Quartier", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et boul. du Quartier", - "geography": { - "type": "Point", - "coordinates": [ - -73.437757534957, - 45.4448767281616 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2156205013171 - }, - "name": "boul. Leduc et boul. du Quartier", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437757535, - 45.444876728 - ] - }, - "is_frozen": false, - "integer_id": 1895, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439674, - 45.44632 - ] - }, - "id": 1896, - "properties": { - "id": "9bb9e4f0-3571-429e-bd1b-989f4196b247", - "code": "30273", - "data": { - "stops": [ - { - "id": "5525", - "code": "30273", - "data": { - "gtfs": { - "stop_id": "5525", - "stop_code": "30273", - "stop_name": "boul. Leduc et Banque CIBC", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et Banque CIBC", - "geography": { - "type": "Point", - "coordinates": [ - -73.43967418511, - 45.4463198828788 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2399298594781 - }, - "name": "boul. Leduc et Banque CIBC", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439674185, - 45.446319883 - ] - }, - "is_frozen": false, - "integer_id": 1896, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440448, - 45.446554 - ] - }, - "id": 1897, - "properties": { - "id": "bc708643-7ab2-41eb-a233-30eac22a0a3d", - "code": "30274", - "data": { - "stops": [ - { - "id": "5526", - "code": "30274", - "data": { - "gtfs": { - "stop_id": "5526", - "stop_code": "30274", - "stop_name": "boul. Leduc et Banque CIBC", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et Banque CIBC", - "geography": { - "type": "Point", - "coordinates": [ - -73.4404476795497, - 45.4465544113518 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2438805625502 - }, - "name": "boul. Leduc et Banque CIBC", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44044768, - 45.446554411 - ] - }, - "is_frozen": false, - "integer_id": 1897, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443127, - 45.449097 - ] - }, - "id": 1898, - "properties": { - "id": "708749bc-6754-4d22-849f-c5632030ae08", - "code": "30275", - "data": { - "stops": [ - { - "id": "5527", - "code": "30275", - "data": { - "gtfs": { - "stop_id": "5527", - "stop_code": "30275", - "stop_name": "boul. Leduc et Caisse Desjardins de Brossard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et Caisse Desjardins de Brossard", - "geography": { - "type": "Point", - "coordinates": [ - -73.443126679693, - 45.449097268483 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2867189756818 - }, - "name": "boul. Leduc et Caisse Desjardins de Brossard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44312668, - 45.449097268 - ] - }, - "is_frozen": false, - "integer_id": 1898, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.444281, - 45.449629 - ] - }, - "id": 1899, - "properties": { - "id": "bffdb17e-eb32-4d5e-9070-23ef35e6d825", - "code": "30276", - "data": { - "stops": [ - { - "id": "5528", - "code": "30276", - "data": { - "gtfs": { - "stop_id": "5528", - "stop_code": "30276", - "stop_name": "boul. Leduc et Résidence l'Avantage", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et Résidence l'Avantage", - "geography": { - "type": "Point", - "coordinates": [ - -73.4442805102019, - 45.449628899821 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2956758750267 - }, - "name": "boul. Leduc et Résidence l'Avantage", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44428051, - 45.4496289 - ] - }, - "is_frozen": false, - "integer_id": 1899, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446783, - 45.451686 - ] - }, - "id": 1900, - "properties": { - "id": "23bba49e-4054-4c02-89b3-a6043c3d4d67", - "code": "30277", - "data": { - "stops": [ - { - "id": "5529", - "code": "30277", - "data": { - "gtfs": { - "stop_id": "5529", - "stop_code": "30277", - "stop_name": "boul. Leduc et Complexe sportif Bell", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et Complexe sportif Bell", - "geography": { - "type": "Point", - "coordinates": [ - -73.4467825256436, - 45.4516857492436 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3303318864461 - }, - "name": "boul. Leduc et Complexe sportif Bell", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446782526, - 45.451685749 - ] - }, - "is_frozen": false, - "integer_id": 1900, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.446241, - 45.451632 - ] - }, - "id": 1901, - "properties": { - "id": "65ac05d1-7282-4065-a1b1-3364a3426c7e", - "code": "30278", - "data": { - "stops": [ - { - "id": "5530", - "code": "30278", - "data": { - "gtfs": { - "stop_id": "5530", - "stop_code": "30278", - "stop_name": "boul. Leduc et Complexe sportif Bell", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et Complexe sportif Bell", - "geography": { - "type": "Point", - "coordinates": [ - -73.4462406109673, - 45.4516315395086 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.329418466574 - }, - "name": "boul. Leduc et Complexe sportif Bell", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.446240611, - 45.45163154 - ] - }, - "is_frozen": false, - "integer_id": 1901, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.447454, - 45.453517 - ] - }, - "id": 1902, - "properties": { - "id": "55fda563-44c0-4720-b1a4-2ef0e89eddae", - "code": "30279", - "data": { - "stops": [ - { - "id": "5531", - "code": "30279", - "data": { - "gtfs": { - "stop_id": "5531", - "stop_code": "30279", - "stop_name": "boul. Leduc et Stationnement complexe sportif Bell", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et Stationnement complexe sportif Bell", - "geography": { - "type": "Point", - "coordinates": [ - -73.4474535441453, - 45.4535169462561 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3611890271202 - }, - "name": "boul. Leduc et Stationnement complexe sportif Bell", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447453544, - 45.453516946 - ] - }, - "is_frozen": false, - "integer_id": 1902, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445995, - 45.45636 - ] - }, - "id": 1903, - "properties": { - "id": "94c39e43-404d-41dd-8452-81a760a980e9", - "code": "30282", - "data": { - "stops": [ - { - "id": "5534", - "code": "30282", - "data": { - "gtfs": { - "stop_id": "5534", - "stop_code": "30282", - "stop_name": "boul. Leduc et boul. Lapinière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Leduc et boul. Lapinière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4459947644904, - 45.4563602294353 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4091065254238 - }, - "name": "boul. Leduc et boul. Lapinière", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445994764, - 45.456360229 - ] - }, - "is_frozen": false, - "integer_id": 1903, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.486996, - 45.499224 - ] - }, - "id": 1904, - "properties": { - "id": "fdd9bfef-c8dc-4f65-9008-847050729854", - "code": "30284", - "data": { - "stops": [ - { - "id": "5536", - "code": "30284", - "data": { - "gtfs": { - "stop_id": "5536", - "stop_code": "30284", - "stop_name": "boul. Taschereau et ch. Saint-Charles", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et ch. Saint-Charles", - "geography": { - "type": "Point", - "coordinates": [ - -73.4869959204675, - 45.4992239552572 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1323535399949 - }, - "name": "boul. Taschereau et ch. Saint-Charles", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48699592, - 45.499223955 - ] - }, - "is_frozen": false, - "integer_id": 1904, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.458033, - 45.564414 - ] - }, - "id": 1905, - "properties": { - "id": "9ff5cf2b-10c7-49b1-8a66-4ecc0e2b17d7", - "code": "30285", - "data": { - "stops": [ - { - "id": "5537", - "code": "30285", - "data": { - "gtfs": { - "stop_id": "5537", - "stop_code": "30285", - "stop_name": "ch. du Lac et civique 2457", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et civique 2457", - "geography": { - "type": "Point", - "coordinates": [ - -73.4580331401192, - 45.5644138438712 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.2354489480412 - }, - "name": "ch. du Lac et civique 2457", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.45803314, - 45.564413844 - ] - }, - "is_frozen": false, - "integer_id": 1905, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.423507, - 45.461455 - ] - }, - "id": 1906, - "properties": { - "id": "bfb03303-2ee6-40dd-8e8f-859a06b338a6", - "code": "30286", - "data": { - "stops": [ - { - "id": "5538", - "code": "30286", - "data": { - "gtfs": { - "stop_id": "5538", - "stop_code": "30286", - "stop_name": "boul. Grande Allée et du Chardonneret", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Grande Allée et du Chardonneret", - "geography": { - "type": "Point", - "coordinates": [ - -73.423506893839, - 45.4614551728414 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4949889331043 - }, - "name": "boul. Grande Allée et du Chardonneret", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.423506894, - 45.461455173 - ] - }, - "is_frozen": false, - "integer_id": 1906, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.440119, - 45.440353 - ] - }, - "id": 1907, - "properties": { - "id": "49b9afd3-56d8-4495-8b7a-642e5568568e", - "code": "30307", - "data": { - "stops": [ - { - "id": "5559", - "code": "30307", - "data": { - "gtfs": { - "stop_id": "5559", - "stop_code": "30307", - "stop_name": "boul. de Rome et boul. Leduc", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de Rome et boul. Leduc", - "geography": { - "type": "Point", - "coordinates": [ - -73.4401187255114, - 45.4403527063754 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1394271600464 - }, - "name": "boul. de Rome et boul. Leduc", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.440118726, - 45.440352706 - ] - }, - "is_frozen": false, - "integer_id": 1907, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490645, - 45.540628 - ] - }, - "id": 1908, - "properties": { - "id": "202e0c51-51fb-47b1-ab1b-286b443f8a35", - "code": "30308", - "data": { - "stops": [ - { - "id": "5560", - "code": "30308", - "data": { - "gtfs": { - "stop_id": "5560", - "stop_code": "30308", - "stop_name": "boul. Roland-Therrien et De Gentilly est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et De Gentilly est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4906454633552, - 45.5406278001168 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8325198486813 - }, - "name": "boul. Roland-Therrien et De Gentilly est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490645463, - 45.5406278 - ] - }, - "is_frozen": false, - "integer_id": 1908, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.3792, - 45.513906 - ] - }, - "id": 1909, - "properties": { - "id": "d22226db-b31b-4480-a3d1-49a68d17d471", - "code": "30309", - "data": { - "stops": [ - { - "id": "5561", - "code": "30309", - "data": { - "gtfs": { - "stop_id": "5561", - "stop_code": "30309", - "stop_name": "Graham-Bell et rang du Canal", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Graham-Bell et rang du Canal", - "geography": { - "type": "Point", - "coordinates": [ - -73.3794042914625, - 45.5138654460549 - ] - } - }, - { - "id": "5562", - "code": "30310", - "data": { - "gtfs": { - "stop_id": "5562", - "stop_code": "30310", - "stop_name": "Graham-Bell et rang du Canal", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Graham-Bell et rang du Canal", - "geography": { - "type": "Point", - "coordinates": [ - -73.3789948722804, - 45.5139458035481 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.380455509177 - }, - "name": "Graham-Bell et rang du Canal", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.379199582, - 45.513905625 - ] - }, - "is_frozen": false, - "integer_id": 1909, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.466737, - 45.439819 - ] - }, - "id": 1910, - "properties": { - "id": "bd0ab07f-3423-4348-a03c-133d6cccab2d", - "code": "30319", - "data": { - "stops": [ - { - "id": "5571", - "code": "30319", - "data": { - "gtfs": { - "stop_id": "5571", - "stop_code": "30319", - "stop_name": "av. Orégon et Ontario", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orégon et Ontario", - "geography": { - "type": "Point", - "coordinates": [ - -73.4671374229611, - 45.4398607616179 - ] - } - }, - { - "id": "5572", - "code": "30320", - "data": { - "gtfs": { - "stop_id": "5572", - "stop_code": "30320", - "stop_name": "av. Orégon et Ontario", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Orégon et Ontario", - "geography": { - "type": "Point", - "coordinates": [ - -73.4663367554822, - 45.4397778031727 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.1304444567099 - }, - "name": "av. Orégon et Ontario", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.466737089, - 45.439819282 - ] - }, - "is_frozen": false, - "integer_id": 1910, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.39037, - 45.466817 - ] - }, - "id": 1911, - "properties": { - "id": "78e9801c-50c9-4092-905b-26f4c2c9691f", - "code": "30325", - "data": { - "stops": [ - { - "id": "5577", - "code": "30325", - "data": { - "gtfs": { - "stop_id": "5577", - "stop_code": "30325", - "stop_name": "boul. Kimber et Régina-Gagnon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Régina-Gagnon", - "geography": { - "type": "Point", - "coordinates": [ - -73.3905086467741, - 45.4668359574056 - ] - } - }, - { - "id": "5578", - "code": "30326", - "data": { - "gtfs": { - "stop_id": "5578", - "stop_code": "30326", - "stop_name": "boul. Kimber et Régina-Gagnon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Kimber et Régina-Gagnon", - "geography": { - "type": "Point", - "coordinates": [ - -73.3902320399191, - 45.466798272622 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5853968484112 - }, - "name": "boul. Kimber et Régina-Gagnon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.390370343, - 45.466817115 - ] - }, - "is_frozen": false, - "integer_id": 1911, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.387934, - 45.489795 - ] - }, - "id": 1912, - "properties": { - "id": "8d50e155-65e6-4b67-8d83-f347e12cf6d7", - "code": "30327", - "data": { - "stops": [ - { - "id": "5579", - "code": "30327", - "data": { - "gtfs": { - "stop_id": "5579", - "stop_code": "30327", - "stop_name": "ch. de Chambly et av. Roméo", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et av. Roméo", - "geography": { - "type": "Point", - "coordinates": [ - -73.3879175497046, - 45.4898678968787 - ] - } - }, - { - "id": "5580", - "code": "30328", - "data": { - "gtfs": { - "stop_id": "5580", - "stop_code": "30328", - "stop_name": "ch. de Chambly et av. Roméo", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et av. Roméo", - "geography": { - "type": "Point", - "coordinates": [ - -73.3879510745455, - 45.4897211425286 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.9731089675066 - }, - "name": "ch. de Chambly et av. Roméo", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.387934312, - 45.48979452 - ] - }, - "is_frozen": false, - "integer_id": 1912, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.358789, - 45.453187 - ] - }, - "id": 1913, - "properties": { - "id": "391ee800-682d-4882-8762-f7283ff37556", - "code": "30329", - "data": { - "stops": [ - { - "id": "5581", - "code": "30329", - "data": { - "gtfs": { - "stop_id": "5581", - "stop_code": "30329", - "stop_name": "La Fredière et La Durantaye", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Fredière et La Durantaye", - "geography": { - "type": "Point", - "coordinates": [ - -73.3590247599804, - 45.453211650927 - ] - } - }, - { - "id": "5585", - "code": "30333", - "data": { - "gtfs": { - "stop_id": "5585", - "stop_code": "30333", - "stop_name": "La Fredière et La Durantaye", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Fredière et La Durantaye", - "geography": { - "type": "Point", - "coordinates": [ - -73.3585526442622, - 45.4531620676968 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3556265761997 - }, - "name": "La Fredière et La Durantaye", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.358788702, - 45.453186859 - ] - }, - "is_frozen": false, - "integer_id": 1913, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.302406, - 45.525069 - ] - }, - "id": 1914, - "properties": { - "id": "26fb8877-5e09-4777-bcb0-88e1fd0fc274", - "code": "30330", - "data": { - "stops": [ - { - "id": "5582", - "code": "30330", - "data": { - "gtfs": { - "stop_id": "5582", - "stop_code": "30330", - "stop_name": "boul. Sir-Wilfrid-Laurier - (116) ouest et boul. du Millénaire", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier - (116) ouest et boul. du Millénaire", - "geography": { - "type": "Point", - "coordinates": [ - -73.3023082633461, - 45.5250434648852 - ] - } - }, - { - "id": "5622", - "code": "30371", - "data": { - "gtfs": { - "stop_id": "5622", - "stop_code": "30371", - "stop_name": "boul. du Millénaire et boul. Sir-Wilfrid-Laurier - (116) ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Millénaire et boul. Sir-Wilfrid-Laurier - (116) ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3025039552483, - 45.5250954595775 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5692389485546 - }, - "name": "boul. Sir-Wilfrid-Laurier - (116) ouest et boul. du Millénaire", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.302406109, - 45.525069462 - ] - }, - "is_frozen": false, - "integer_id": 1914, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.362507, - 45.450931 - ] - }, - "id": 1915, - "properties": { - "id": "79ae40e4-ac61-4b2e-a0be-b4970ad0e618", - "code": "30334", - "data": { - "stops": [ - { - "id": "5586", - "code": "30334", - "data": { - "gtfs": { - "stop_id": "5586", - "stop_code": "30334", - "stop_name": "La Fredière et Parc Carignan-Salières", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Fredière et Parc Carignan-Salières", - "geography": { - "type": "Point", - "coordinates": [ - -73.3623143762237, - 45.4507286657101 - ] - } - }, - { - "id": "5587", - "code": "30336", - "data": { - "gtfs": { - "stop_id": "5587", - "stop_code": "30336", - "stop_name": "La Fredière et Pacific", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Fredière et Pacific", - "geography": { - "type": "Point", - "coordinates": [ - -73.3626990652355, - 45.4511325446947 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.317607969559 - }, - "name": "La Fredière et Parc Carignan-Salières", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.362506721, - 45.450930605 - ] - }, - "is_frozen": false, - "integer_id": 1915, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.36031, - 45.449858 - ] - }, - "id": 1916, - "properties": { - "id": "21eee29a-2e1c-4976-998c-3e4733f522e7", - "code": "30337", - "data": { - "stops": [ - { - "id": "5588", - "code": "30337", - "data": { - "gtfs": { - "stop_id": "5588", - "stop_code": "30337", - "stop_name": "La Fredière et civique 4110", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Fredière et civique 4110", - "geography": { - "type": "Point", - "coordinates": [ - -73.3605840474714, - 45.4496659417352 - ] - } - }, - { - "id": "5589", - "code": "30338", - "data": { - "gtfs": { - "stop_id": "5589", - "stop_code": "30338", - "stop_name": "La Fredière et civique 4041", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Fredière et civique 4041", - "geography": { - "type": "Point", - "coordinates": [ - -73.3600350636187, - 45.4500506848565 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2995410868831 - }, - "name": "La Fredière et civique 4110", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.360309556, - 45.449858313 - ] - }, - "is_frozen": false, - "integer_id": 1916, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.358947, - 45.451385 - ] - }, - "id": 1917, - "properties": { - "id": "35bbf632-18f8-44dd-ab04-b98a1c0d6a9e", - "code": "30339", - "data": { - "stops": [ - { - "id": "5590", - "code": "30339", - "data": { - "gtfs": { - "stop_id": "5590", - "stop_code": "30339", - "stop_name": "La Fredière et civique 3950", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Fredière et civique 3950", - "geography": { - "type": "Point", - "coordinates": [ - -73.3587352664732, - 45.4515345557634 - ] - } - }, - { - "id": "5591", - "code": "30340", - "data": { - "gtfs": { - "stop_id": "5591", - "stop_code": "30340", - "stop_name": "La Fredière et civique 3961", - "location_type": 0, - "parent_station": "" - } - }, - "name": "La Fredière et civique 3961", - "geography": { - "type": "Point", - "coordinates": [ - -73.3591592830275, - 45.451235009567 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3252606521538 - }, - "name": "La Fredière et civique 3950", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.358947275, - 45.451384783 - ] - }, - "is_frozen": false, - "integer_id": 1917, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.34679, - 45.512369 - ] - }, - "id": 1918, - "properties": { - "id": "71e14567-ffe9-47f4-8913-115ccc452daf", - "code": "30342", - "data": { - "stops": [ - { - "id": "5593", - "code": "30342", - "data": { - "gtfs": { - "stop_id": "5593", - "stop_code": "30342", - "stop_name": "montée Sabourin et Gardenvale", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Sabourin et Gardenvale", - "geography": { - "type": "Point", - "coordinates": [ - -73.346931416679, - 45.5123165614082 - ] - } - }, - { - "id": "5594", - "code": "30343", - "data": { - "gtfs": { - "stop_id": "5594", - "stop_code": "30343", - "stop_name": "montée Sabourin et Gardenvale", - "location_type": 0, - "parent_station": "" - } - }, - "name": "montée Sabourin et Gardenvale", - "geography": { - "type": "Point", - "coordinates": [ - -73.3466486624695, - 45.5124216157125 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3544809702104 - }, - "name": "montée Sabourin et Gardenvale", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.34679004, - 45.512369089 - ] - }, - "is_frozen": false, - "integer_id": 1918, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.510856, - 45.495901 - ] - }, - "id": 1919, - "properties": { - "id": "144dbf94-6da5-4246-8207-b5ee6c953066", - "code": "30346", - "data": { - "stops": [ - { - "id": "5597", - "code": "30346", - "data": { - "gtfs": { - "stop_id": "5597", - "stop_code": "30346", - "stop_name": "av. Hickson et Osborne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Hickson et Osborne", - "geography": { - "type": "Point", - "coordinates": [ - -73.5108564369429, - 45.4959009210834 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0762250203801 - }, - "name": "av. Hickson et Osborne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.510856437, - 45.495900921 - ] - }, - "is_frozen": false, - "integer_id": 1919, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.405574, - 45.574879 - ] - }, - "id": 1920, - "properties": { - "id": "e2e77ab6-27d8-4ca8-9f93-36a4bfb46efb", - "code": "30351", - "data": { - "stops": [ - { - "id": "5602", - "code": "30351", - "data": { - "gtfs": { - "stop_id": "5602", - "stop_code": "30351", - "stop_name": "ch. Carrefour de la Rive-Sud et ch. de Touraine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. Carrefour de la Rive-Sud et ch. de Touraine", - "geography": { - "type": "Point", - "coordinates": [ - -73.4055738629754, - 45.5748792261172 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4128897622357 - }, - "name": "ch. Carrefour de la Rive-Sud et ch. de Touraine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.405573863, - 45.574879226 - ] - }, - "is_frozen": false, - "integer_id": 1920, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.404707, - 45.576017 - ] - }, - "id": 1921, - "properties": { - "id": "d3a6dc19-15b0-45f0-a45a-d0eca5d46fd7", - "code": "30352", - "data": { - "stops": [ - { - "id": "5603", - "code": "30352", - "data": { - "gtfs": { - "stop_id": "5603", - "stop_code": "30352", - "stop_name": "ch. de Touraine et COSTCO", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Touraine et COSTCO", - "geography": { - "type": "Point", - "coordinates": [ - -73.4048204514988, - 45.5757946699508 - ] - } - }, - { - "id": "5608", - "code": "30357", - "data": { - "gtfs": { - "stop_id": "5608", - "stop_code": "30357", - "stop_name": "ch. de Touraine et COSTCO", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Touraine et COSTCO", - "geography": { - "type": "Point", - "coordinates": [ - -73.4045934848874, - 45.576239448201 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4321876504544 - }, - "name": "ch. de Touraine et COSTCO", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.404706968, - 45.576017059 - ] - }, - "is_frozen": false, - "integer_id": 1921, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.403486, - 45.580854 - ] - }, - "id": 1922, - "properties": { - "id": "44406260-256d-49c7-a91f-d8d2be15f526", - "code": "30353", - "data": { - "stops": [ - { - "id": "5604", - "code": "30353", - "data": { - "gtfs": { - "stop_id": "5604", - "stop_code": "30353", - "stop_name": "des Sureaux et civique 658", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Sureaux et civique 658", - "geography": { - "type": "Point", - "coordinates": [ - -73.4034859564902, - 45.58085443997 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5142435789342 - }, - "name": "des Sureaux et civique 658", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.403485956, - 45.58085444 - ] - }, - "is_frozen": false, - "integer_id": 1922, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.401842, - 45.582389 - ] - }, - "id": 1923, - "properties": { - "id": "758aaf15-550c-4ca9-b023-6270ea96c95b", - "code": "30354", - "data": { - "stops": [ - { - "id": "5605", - "code": "30354", - "data": { - "gtfs": { - "stop_id": "5605", - "stop_code": "30354", - "stop_name": "des Sureaux et civique 718", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Sureaux et civique 718", - "geography": { - "type": "Point", - "coordinates": [ - -73.4015314795572, - 45.58255791861 - ] - } - }, - { - "id": "5620", - "code": "30369", - "data": { - "gtfs": { - "stop_id": "5620", - "stop_code": "30369", - "stop_name": "des Sureaux et civique 714", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Sureaux et civique 714", - "geography": { - "type": "Point", - "coordinates": [ - -73.4021534741762, - 45.5822197370556 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5402755954514 - }, - "name": "des Sureaux et civique 718", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.401842477, - 45.582388828 - ] - }, - "is_frozen": false, - "integer_id": 1923, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.403725, - 45.580852 - ] - }, - "id": 1924, - "properties": { - "id": "ac37fcc5-ab7a-4274-84f7-80a37a395c91", - "code": "30355", - "data": { - "stops": [ - { - "id": "5606", - "code": "30355", - "data": { - "gtfs": { - "stop_id": "5606", - "stop_code": "30355", - "stop_name": "des Sureaux et civique 658", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Sureaux et civique 658", - "geography": { - "type": "Point", - "coordinates": [ - -73.4037247706525, - 45.5808517845204 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5141985367392 - }, - "name": "des Sureaux et civique 658", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.403724771, - 45.580851785 - ] - }, - "is_frozen": false, - "integer_id": 1924, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.465577, - 45.461127 - ] - }, - "id": 1925, - "properties": { - "id": "74887516-47d5-4269-9513-84672d18e287", - "code": "30366", - "data": { - "stops": [ - { - "id": "5617", - "code": "30366", - "data": { - "gtfs": { - "stop_id": "5617", - "stop_code": "30366", - "stop_name": "boul. Taschereau et PLACE PORTOBELLO", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et PLACE PORTOBELLO", - "geography": { - "type": "Point", - "coordinates": [ - -73.4655767130588, - 45.4611265760057 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4894492760645 - }, - "name": "boul. Taschereau et PLACE PORTOBELLO", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.465576713, - 45.461126576 - ] - }, - "is_frozen": false, - "integer_id": 1925, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.495978, - 45.549954 - ] - }, - "id": 1926, - "properties": { - "id": "86b1f9fa-fc35-4bee-a9b9-a70269091ef1", - "code": "30367", - "data": { - "stops": [ - { - "id": "5618", - "code": "30367", - "data": { - "gtfs": { - "stop_id": "5618", - "stop_code": "30367", - "stop_name": "Geoffrion et Charland", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Geoffrion et Charland", - "geography": { - "type": "Point", - "coordinates": [ - -73.4959775572487, - 45.5499537345074 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9904384470641 - }, - "name": "Geoffrion et Charland", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.495977557, - 45.549953735 - ] - }, - "is_frozen": false, - "integer_id": 1926, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.436545, - 45.508102 - ] - }, - "id": 1927, - "properties": { - "id": "4f05d74f-7126-4527-951d-20bf28624a4f", - "code": "30373", - "data": { - "stops": [ - { - "id": "5624", - "code": "30373", - "data": { - "gtfs": { - "stop_id": "5624", - "stop_code": "30373", - "stop_name": "Gare Longueuil / St-Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gare Longueuil / St-Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4365445738991, - 45.5081017553201 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.28235438811 - }, - "name": "Gare Longueuil / St-Hubert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.436544574, - 45.508101755 - ] - }, - "is_frozen": false, - "integer_id": 1927, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.413744, - 45.560866 - ] - }, - "id": 1928, - "properties": { - "id": "1fe4d00f-490a-4b9c-a4fc-f708161d232c", - "code": "30374", - "data": { - "stops": [ - { - "id": "5625", - "code": "30374", - "data": { - "gtfs": { - "stop_id": "5625", - "stop_code": "30374", - "stop_name": "J.-A.-Bombardier et civique 165", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et civique 165", - "geography": { - "type": "Point", - "coordinates": [ - -73.4136719394462, - 45.560807279953 - ] - } - }, - { - "id": "5860", - "code": "30629", - "data": { - "gtfs": { - "stop_id": "5860", - "stop_code": "30629", - "stop_name": "J.-A.-Bombardier et civique 165", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et civique 165", - "geography": { - "type": "Point", - "coordinates": [ - -73.4138155043624, - 45.5609249939453 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1753197006071 - }, - "name": "J.-A.-Bombardier et civique 165", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.413743722, - 45.560866137 - ] - }, - "is_frozen": false, - "integer_id": 1928, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.495503, - 45.537159 - ] - }, - "id": 1929, - "properties": { - "id": "081e45a0-31c3-487c-996e-66d1b824569d", - "code": "30375", - "data": { - "stops": [ - { - "id": "5626", - "code": "30375", - "data": { - "gtfs": { - "stop_id": "5626", - "stop_code": "30375", - "stop_name": "De Gentilly est et Thurber", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Gentilly est et Thurber", - "geography": { - "type": "Point", - "coordinates": [ - -73.4955030642438, - 45.5371588121969 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7737983312212 - }, - "name": "De Gentilly est et Thurber", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.495503064, - 45.537158812 - ] - }, - "is_frozen": false, - "integer_id": 1929, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482949, - 45.53878 - ] - }, - "id": 1930, - "properties": { - "id": "8b7ea1af-b101-4493-ba98-7ad0820a0f8c", - "code": "30403", - "data": { - "stops": [ - { - "id": "5636", - "code": "30403", - "data": { - "gtfs": { - "stop_id": "5636", - "stop_code": "30403", - "stop_name": "boul. Roland-Therrien et Saint-Michel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et Saint-Michel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4829486862647, - 45.5387802033975 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8012431955162 - }, - "name": "boul. Roland-Therrien et Saint-Michel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482948686, - 45.538780203 - ] - }, - "is_frozen": false, - "integer_id": 1930, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.482406, - 45.53897 - ] - }, - "id": 1931, - "properties": { - "id": "31e8057b-0fb0-44bd-83cf-3acad24654ec", - "code": "30404", - "data": { - "stops": [ - { - "id": "5637", - "code": "30404", - "data": { - "gtfs": { - "stop_id": "5637", - "stop_code": "30404", - "stop_name": "boul. Roland-Therrien et Saint-Michel", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et Saint-Michel", - "geography": { - "type": "Point", - "coordinates": [ - -73.4824062269379, - 45.5389698329488 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8044531664373 - }, - "name": "boul. Roland-Therrien et Saint-Michel", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.482406227, - 45.538969833 - ] - }, - "is_frozen": false, - "integer_id": 1931, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.491923, - 45.540812 - ] - }, - "id": 1932, - "properties": { - "id": "411bafbe-bac8-4586-9af4-bc0b3163bdde", - "code": "30411", - "data": { - "stops": [ - { - "id": "5644", - "code": "30411", - "data": { - "gtfs": { - "stop_id": "5644", - "stop_code": "30411", - "stop_name": "De Gentilly est et d'Auvergne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Gentilly est et d'Auvergne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4919226320046, - 45.5408122102895 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8356417613222 - }, - "name": "De Gentilly est et d'Auvergne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.491922632, - 45.54081221 - ] - }, - "is_frozen": false, - "integer_id": 1932, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.433937, - 45.522328 - ] - }, - "id": 1933, - "properties": { - "id": "9b519782-0187-4aff-8d16-ed5c874d6b88", - "code": "30412", - "data": { - "stops": [ - { - "id": "5645", - "code": "30412", - "data": { - "gtfs": { - "stop_id": "5645", - "stop_code": "30412", - "stop_name": "boul. Roland-Therrien et boul. Vauquelin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et boul. Vauquelin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4339369886825, - 45.5223278340044 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5228670066829 - }, - "name": "boul. Roland-Therrien et boul. Vauquelin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.433936989, - 45.522327834 - ] - }, - "is_frozen": false, - "integer_id": 1933, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.442183, - 45.524607 - ] - }, - "id": 1934, - "properties": { - "id": "f902a061-c5e9-4964-8e41-eba87bfc63fc", - "code": "30413", - "data": { - "stops": [ - { - "id": "5646", - "code": "30413", - "data": { - "gtfs": { - "stop_id": "5646", - "stop_code": "30413", - "stop_name": "boul. Roland-Therrien et du Châtelet", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et du Châtelet", - "geography": { - "type": "Point", - "coordinates": [ - -73.442182583732, - 45.5246067418842 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.561412024859 - }, - "name": "boul. Roland-Therrien et du Châtelet", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442182584, - 45.524606742 - ] - }, - "is_frozen": false, - "integer_id": 1934, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.383358, - 45.504181 - ] - }, - "id": 1935, - "properties": { - "id": "f5878f34-f127-426a-b40a-4b944c9b826c", - "code": "30415", - "data": { - "stops": [ - { - "id": "5647", - "code": "30415", - "data": { - "gtfs": { - "stop_id": "5647", - "stop_code": "30415", - "stop_name": "boul. Saint-Bruno et HOME DEPOT", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Saint-Bruno et HOME DEPOT", - "geography": { - "type": "Point", - "coordinates": [ - -73.3833576156395, - 45.5041813840462 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2161064712561 - }, - "name": "boul. Saint-Bruno et HOME DEPOT", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.383357616, - 45.504181384 - ] - }, - "is_frozen": false, - "integer_id": 1935, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.556016, - 45.49566 - ] - }, - "id": 1936, - "properties": { - "id": "41c5e691-5e17-40ab-889a-89c7787b0afb", - "code": "30418", - "data": { - "stops": [ - { - "id": "5650", - "code": "30418", - "data": { - "gtfs": { - "stop_id": "5650", - "stop_code": "30418", - "stop_name": "boul. Robert-Bourassa et Wellington", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Robert-Bourassa et Wellington", - "geography": { - "type": "Point", - "coordinates": [ - -73.5560158238316, - 45.4956601967783 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.0721593942951 - }, - "name": "boul. Robert-Bourassa et Wellington", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.556015824, - 45.495660197 - ] - }, - "is_frozen": false, - "integer_id": 1936, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.477522, - 45.44917 - ] - }, - "id": 1937, - "properties": { - "id": "fe1d7eea-bdc6-4263-a13b-eb6645c5e393", - "code": "30428", - "data": { - "stops": [ - { - "id": "5660", - "code": "30428", - "data": { - "gtfs": { - "stop_id": "5660", - "stop_code": "30428", - "stop_name": "ECOLE SECONDAIRE LUCILLE-TEASDALE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ECOLE SECONDAIRE LUCILLE-TEASDALE", - "geography": { - "type": "Point", - "coordinates": [ - -73.477522088085, - 45.4491704917061 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2879526337093 - }, - "name": "ECOLE SECONDAIRE LUCILLE-TEASDALE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.477522088, - 45.449170492 - ] - }, - "is_frozen": false, - "integer_id": 1937, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47593, - 45.435269 - ] - }, - "id": 1938, - "properties": { - "id": "a09465ea-562d-48bd-b60a-ae948c06a28a", - "code": "30432", - "data": { - "stops": [ - { - "id": "5664", - "code": "30432", - "data": { - "gtfs": { - "stop_id": "5664", - "stop_code": "30432", - "stop_name": "boul. Taschereau et boul. Matte", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Taschereau et boul. Matte", - "geography": { - "type": "Point", - "coordinates": [ - -73.4759299774336, - 45.4352686046701 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.0538226461122 - }, - "name": "boul. Taschereau et boul. Matte", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475929977, - 45.435268605 - ] - }, - "is_frozen": false, - "integer_id": 1938, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.474016, - 45.47633 - ] - }, - "id": 1939, - "properties": { - "id": "d73e4ff6-4502-4376-9cf1-5410d307a82f", - "code": "30433", - "data": { - "stops": [ - { - "id": "5665", - "code": "30433", - "data": { - "gtfs": { - "stop_id": "5665", - "stop_code": "30433", - "stop_name": "boul. Lapinière et civique 2101", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et civique 2101", - "geography": { - "type": "Point", - "coordinates": [ - -73.4742657566518, - 45.4762963398144 - ] - } - }, - { - "id": "5666", - "code": "30434", - "data": { - "gtfs": { - "stop_id": "5666", - "stop_code": "30434", - "stop_name": "av. Victoria et civique 2124", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Victoria et civique 2124", - "geography": { - "type": "Point", - "coordinates": [ - -73.4737659510707, - 45.4763629443962 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7458507613248 - }, - "name": "boul. Lapinière et civique 2101", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474015854, - 45.476329642 - ] - }, - "is_frozen": false, - "integer_id": 1939, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.375668, - 45.503417 - ] - }, - "id": 1940, - "properties": { - "id": "38d6d19c-329f-4f26-8eb7-c760cd5af5f9", - "code": "30437", - "data": { - "stops": [ - { - "id": "5669", - "code": "30437", - "data": { - "gtfs": { - "stop_id": "5669", - "stop_code": "30437", - "stop_name": "Stationnement des Promenades et civique 1155", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Stationnement des Promenades et civique 1155", - "geography": { - "type": "Point", - "coordinates": [ - -73.3756683938396, - 45.5034168405425 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2031885275923 - }, - "name": "Stationnement des Promenades et civique 1155", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.375668394, - 45.503416841 - ] - }, - "is_frozen": false, - "integer_id": 1940, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492893, - 45.560462 - ] - }, - "id": 1941, - "properties": { - "id": "b16a31c8-203c-44e6-a193-88731a47056e", - "code": "30439", - "data": { - "stops": [ - { - "id": "5671", - "code": "30439", - "data": { - "gtfs": { - "stop_id": "5671", - "stop_code": "30439", - "stop_name": "boul. Marie-Victorin et Lumenpulse Group Inc.", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Lumenpulse Group Inc.", - "geography": { - "type": "Point", - "coordinates": [ - -73.4928930773956, - 45.5604620391935 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1684714524371 - }, - "name": "boul. Marie-Victorin et Lumenpulse Group Inc.", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492893077, - 45.560462039 - ] - }, - "is_frozen": false, - "integer_id": 1941, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.434312, - 45.522773 - ] - }, - "id": 1942, - "properties": { - "id": "455644f9-4a24-446b-b548-a53bc406a4d8", - "code": "30440", - "data": { - "stops": [ - { - "id": "5672", - "code": "30440", - "data": { - "gtfs": { - "stop_id": "5672", - "stop_code": "30440", - "stop_name": "boul. Roland-Therrien et boul. Vauquelin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roland-Therrien et boul. Vauquelin", - "geography": { - "type": "Point", - "coordinates": [ - -73.4343116006921, - 45.5227728067287 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5303928320998 - }, - "name": "boul. Roland-Therrien et boul. Vauquelin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.434311601, - 45.522772807 - ] - }, - "is_frozen": false, - "integer_id": 1942, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.31752, - 45.520055 - ] - }, - "id": 1943, - "properties": { - "id": "a94f1c18-1655-455b-9813-9178e8c9257e", - "code": "30441", - "data": { - "stops": [ - { - "id": "5673", - "code": "30441", - "data": { - "gtfs": { - "stop_id": "5673", - "stop_code": "30441", - "stop_name": "boul. Sir-Wilfrid-Laurier - (116) est et boul. De Boucherville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier - (116) est et boul. De Boucherville", - "geography": { - "type": "Point", - "coordinates": [ - -73.317520310678, - 45.5200545735066 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4844221282823 - }, - "name": "boul. Sir-Wilfrid-Laurier - (116) est et boul. De Boucherville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.317520311, - 45.520054574 - ] - }, - "is_frozen": false, - "integer_id": 1943, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.436784, - 45.516231 - ] - }, - "id": 1944, - "properties": { - "id": "64e79ef5-e499-4b0b-96e8-a047e210960b", - "code": "30445", - "data": { - "stops": [ - { - "id": "5677", - "code": "30445", - "data": { - "gtfs": { - "stop_id": "5677", - "stop_code": "30445", - "stop_name": "boul. Vauquelin et Louis-Dufresne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Vauquelin et Louis-Dufresne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4366391335285, - 45.5160666189918 - ] - } - }, - { - "id": "5679", - "code": "30447", - "data": { - "gtfs": { - "stop_id": "5679", - "stop_code": "30447", - "stop_name": "boul. Vauquelin et Chateaufort", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Vauquelin et Chateaufort", - "geography": { - "type": "Point", - "coordinates": [ - -73.4369298408102, - 45.5163945010413 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4197616220946 - }, - "name": "boul. Vauquelin et Louis-Dufresne", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.436784487, - 45.51623056 - ] - }, - "is_frozen": false, - "integer_id": 1944, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.460814, - 45.532838 - ] - }, - "id": 1945, - "properties": { - "id": "85594754-b583-4735-aac6-bc45902705ca", - "code": "30449", - "data": { - "stops": [ - { - "id": "5681", - "code": "30449", - "data": { - "gtfs": { - "stop_id": "5681", - "stop_code": "30449", - "stop_name": "boul. Jacques-Cartier est et boul. Roland-Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et boul. Roland-Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.460814379677, - 45.532837722166 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7006678141536 - }, - "name": "boul. Jacques-Cartier est et boul. Roland-Therrien", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46081438, - 45.532837722 - ] - }, - "is_frozen": false, - "integer_id": 1945, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.439402, - 45.512425 - ] - }, - "id": 1946, - "properties": { - "id": "fd832741-dd18-4c66-bea3-40a37c4cdb9c", - "code": "30450", - "data": { - "stops": [ - { - "id": "5682", - "code": "30450", - "data": { - "gtfs": { - "stop_id": "5682", - "stop_code": "30450", - "stop_name": "boul. Vauquelin et civique 12", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Vauquelin et civique 12", - "geography": { - "type": "Point", - "coordinates": [ - -73.4392098952403, - 45.5123395578828 - ] - } - }, - { - "id": "5683", - "code": "30451", - "data": { - "gtfs": { - "stop_id": "5683", - "stop_code": "30451", - "stop_name": "boul. Vauquelin et civique 15", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Vauquelin et civique 15", - "geography": { - "type": "Point", - "coordinates": [ - -73.4395950759844, - 45.5125095164214 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3554182603552 - }, - "name": "boul. Vauquelin et civique 12", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.439402486, - 45.512424537 - ] - }, - "is_frozen": false, - "integer_id": 1946, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.363105, - 45.476797 - ] - }, - "id": 1947, - "properties": { - "id": "97664706-d6c8-4052-8818-e52a0be48a3e", - "code": "30456", - "data": { - "stops": [ - { - "id": "5688", - "code": "30456", - "data": { - "gtfs": { - "stop_id": "5688", - "stop_code": "30456", - "stop_name": "ch. de Chambly et civique 8755", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et civique 8755", - "geography": { - "type": "Point", - "coordinates": [ - -73.3629725600358, - 45.4766294953762 - ] - } - }, - { - "id": "5689", - "code": "30457", - "data": { - "gtfs": { - "stop_id": "5689", - "stop_code": "30457", - "stop_name": "ch. de Chambly et civique 8750", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et civique 8750", - "geography": { - "type": "Point", - "coordinates": [ - -73.3632366635097, - 45.4769642581015 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7537339855886 - }, - "name": "ch. de Chambly et civique 8755", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.363104612, - 45.476796877 - ] - }, - "is_frozen": false, - "integer_id": 1947, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.406333, - 45.460118 - ] - }, - "id": 1948, - "properties": { - "id": "abd6e1bb-b826-4462-87f2-3bae5c6594ea", - "code": "30458", - "data": { - "stops": [ - { - "id": "5690", - "code": "30458", - "data": { - "gtfs": { - "stop_id": "5690", - "stop_code": "30458", - "stop_name": "Armand-Frappier et civique 5100", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Armand-Frappier et civique 5100", - "geography": { - "type": "Point", - "coordinates": [ - -73.4063328877372, - 45.4601175260776 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4724387917531 - }, - "name": "Armand-Frappier et civique 5100", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.406332888, - 45.460117526 - ] - }, - "is_frozen": false, - "integer_id": 1948, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.336953, - 45.560577 - ] - }, - "id": 1949, - "properties": { - "id": "0016b55f-c207-48df-a47e-555a19e3c2d7", - "code": "30461", - "data": { - "stops": [ - { - "id": "5693", - "code": "30461", - "data": { - "gtfs": { - "stop_id": "5693", - "stop_code": "30461", - "stop_name": "Ski Saint-Bruno", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Ski Saint-Bruno", - "geography": { - "type": "Point", - "coordinates": [ - -73.3369529253996, - 45.5605773034506 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1704248163936 - }, - "name": "Ski Saint-Bruno", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.336952925, - 45.560577303 - ] - }, - "is_frozen": false, - "integer_id": 1949, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448032, - 45.599704 - ] - }, - "id": 1950, - "properties": { - "id": "96c08dfd-d2e7-4584-a6b3-36c3a2e1abcc", - "code": "30464", - "data": { - "stops": [ - { - "id": "5696", - "code": "30464", - "data": { - "gtfs": { - "stop_id": "5696", - "stop_code": "30464", - "stop_name": "boul. De Montarville et rte 132 est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. De Montarville et rte 132 est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4480318623391, - 45.5997036282802 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.83417989163 - }, - "name": "boul. De Montarville et rte 132 est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.448031862, - 45.599703628 - ] - }, - "is_frozen": false, - "integer_id": 1950, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.357151, - 45.541958 - ] - }, - "id": 1951, - "properties": { - "id": "d966dcb1-f630-4c07-ab42-a7b1e296ff4f", - "code": "30471", - "data": { - "stops": [ - { - "id": "5703", - "code": "30471", - "data": { - "gtfs": { - "stop_id": "5703", - "stop_code": "30471", - "stop_name": "rang des Vingt-Cinq est et Eulalie-Durocher", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rang des Vingt-Cinq est et Eulalie-Durocher", - "geography": { - "type": "Point", - "coordinates": [ - -73.3571511911758, - 45.5419580176278 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8550400469994 - }, - "name": "rang des Vingt-Cinq est et Eulalie-Durocher", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.357151191, - 45.541958018 - ] - }, - "is_frozen": false, - "integer_id": 1951, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.432871, - 45.523629 - ] - }, - "id": 1952, - "properties": { - "id": "6b5e798b-1890-48ed-a234-04c622fd13ea", - "code": "30474", - "data": { - "stops": [ - { - "id": "5705", - "code": "30474", - "data": { - "gtfs": { - "stop_id": "5705", - "stop_code": "30474", - "stop_name": "boul. Vauquelin et des Escadrons", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Vauquelin et des Escadrons", - "geography": { - "type": "Point", - "coordinates": [ - -73.4328713315838, - 45.5236285602804 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5448666728997 - }, - "name": "boul. Vauquelin et des Escadrons", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.432871332, - 45.52362856 - ] - }, - "is_frozen": false, - "integer_id": 1952, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.431364, - 45.526635 - ] - }, - "id": 1953, - "properties": { - "id": "186b2759-8d28-41b8-beae-bac2adf7b3f9", - "code": "30475", - "data": { - "stops": [ - { - "id": "5706", - "code": "30475", - "data": { - "gtfs": { - "stop_id": "5706", - "stop_code": "30475", - "stop_name": "boul. Vauquelin et des Dirigeables", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Vauquelin et des Dirigeables", - "geography": { - "type": "Point", - "coordinates": [ - -73.4313644791534, - 45.5266353506158 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5957274269779 - }, - "name": "boul. Vauquelin et des Dirigeables", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431364479, - 45.526635351 - ] - }, - "is_frozen": false, - "integer_id": 1953, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.430898, - 45.448972 - ] - }, - "id": 1954, - "properties": { - "id": "1f1619c9-3302-430c-9ade-aab4bf9e1e55", - "code": "30476", - "data": { - "stops": [ - { - "id": "5707", - "code": "30476", - "data": { - "gtfs": { - "stop_id": "5707", - "stop_code": "30476", - "stop_name": "boul. du Quartier et boul. Lapinière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et boul. Lapinière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4308976046759, - 45.4489718678943 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2846062816483 - }, - "name": "boul. du Quartier et boul. Lapinière", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.430897605, - 45.448971868 - ] - }, - "is_frozen": false, - "integer_id": 1954, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.432775, - 45.449725 - ] - }, - "id": 1955, - "properties": { - "id": "0b421cac-8896-468a-9252-ce5f1fee4e84", - "code": "30477", - "data": { - "stops": [ - { - "id": "5708", - "code": "30477", - "data": { - "gtfs": { - "stop_id": "5708", - "stop_code": "30477", - "stop_name": "boul. Lapinière et civique 5005", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Lapinière et civique 5005", - "geography": { - "type": "Point", - "coordinates": [ - -73.4327750213972, - 45.4497246279088 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2972887204132 - }, - "name": "boul. Lapinière et civique 5005", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.432775021, - 45.449724628 - ] - }, - "is_frozen": false, - "integer_id": 1955, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.308635, - 45.523128 - ] - }, - "id": 1956, - "properties": { - "id": "c3cf866f-d115-4fc2-9f1e-f70f34283f5f", - "code": "30478", - "data": { - "stops": [ - { - "id": "5709", - "code": "30478", - "data": { - "gtfs": { - "stop_id": "5709", - "stop_code": "30478", - "stop_name": "boul. Sir-Wilfrid-Laurier - (116) ouest", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Sir-Wilfrid-Laurier - (116) ouest", - "geography": { - "type": "Point", - "coordinates": [ - -73.3086351596155, - 45.5231283380721 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5364060523659 - }, - "name": "boul. Sir-Wilfrid-Laurier - (116) ouest", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.30863516, - 45.523128338 - ] - }, - "is_frozen": false, - "integer_id": 1956, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450278, - 45.568512 - ] - }, - "id": 1957, - "properties": { - "id": "ae6e0f03-aee3-4f3b-9a79-98bb90a35a7a", - "code": "30479", - "data": { - "stops": [ - { - "id": "5710", - "code": "30479", - "data": { - "gtfs": { - "stop_id": "5710", - "stop_code": "30479", - "stop_name": "boul. Jacques-Cartier est et Jean-Neveu", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et Jean-Neveu", - "geography": { - "type": "Point", - "coordinates": [ - -73.4502784223728, - 45.5685116451278 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3049156057167 - }, - "name": "boul. Jacques-Cartier est et Jean-Neveu", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450278422, - 45.568511645 - ] - }, - "is_frozen": false, - "integer_id": 1957, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475477, - 45.448582 - ] - }, - "id": 1958, - "properties": { - "id": "8f39e220-8ec5-4425-b9f8-90e418e7d6d3", - "code": "30480", - "data": { - "stops": [ - { - "id": "5711", - "code": "30480", - "data": { - "gtfs": { - "stop_id": "5711", - "stop_code": "30480", - "stop_name": "boul. Pelletier et av. Sartre", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et av. Sartre", - "geography": { - "type": "Point", - "coordinates": [ - -73.4754769366219, - 45.4485816777833 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2780325902733 - }, - "name": "boul. Pelletier et av. Sartre", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.475476937, - 45.448581678 - ] - }, - "is_frozen": false, - "integer_id": 1958, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.425115, - 45.507905 - ] - }, - "id": 1959, - "properties": { - "id": "b989758c-7e40-49d2-b551-b6f0e525013b", - "code": "30482", - "data": { - "stops": [ - { - "id": "5713", - "code": "30482", - "data": { - "gtfs": { - "stop_id": "5713", - "stop_code": "30482", - "stop_name": "av. Raoul et Jean-Baptiste-Charron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "av. Raoul et Jean-Baptiste-Charron", - "geography": { - "type": "Point", - "coordinates": [ - -73.4251149299942, - 45.5079046787935 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2790237964813 - }, - "name": "av. Raoul et Jean-Baptiste-Charron", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.42511493, - 45.507904679 - ] - }, - "is_frozen": false, - "integer_id": 1959, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.435117, - 45.509626 - ] - }, - "id": 1960, - "properties": { - "id": "48cbd834-3690-4d56-af66-277be54f9820", - "code": "30483", - "data": { - "stops": [ - { - "id": "5714", - "code": "30483", - "data": { - "gtfs": { - "stop_id": "5714", - "stop_code": "30483", - "stop_name": "ch. de Chambly et Gare Longueuil / St-Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. de Chambly et Gare Longueuil / St-Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4351170042204, - 45.5096258249332 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3081123946881 - }, - "name": "ch. de Chambly et Gare Longueuil / St-Hubert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.435117004, - 45.509625825 - ] - }, - "is_frozen": false, - "integer_id": 1960, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.455788, - 45.541561 - ] - }, - "id": 1961, - "properties": { - "id": "6f622956-b7a2-452d-975a-9f37d3afce01", - "code": "30486", - "data": { - "stops": [ - { - "id": "5717", - "code": "30486", - "data": { - "gtfs": { - "stop_id": "5717", - "stop_code": "30486", - "stop_name": "boul. Jacques-Cartier est et ch. Du Tremblay", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Jacques-Cartier est et ch. Du Tremblay", - "geography": { - "type": "Point", - "coordinates": [ - -73.4557877790503, - 45.5415606058396 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8483118137079 - }, - "name": "boul. Jacques-Cartier est et ch. Du Tremblay", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.455787779, - 45.541560606 - ] - }, - "is_frozen": false, - "integer_id": 1961, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.496988, - 45.538917 - ] - }, - "id": 1962, - "properties": { - "id": "5917d490-78cc-4191-a19b-92a11e1dbb54", - "code": "30487", - "data": { - "stops": [ - { - "id": "5718", - "code": "30487", - "data": { - "gtfs": { - "stop_id": "5718", - "stop_code": "30487", - "stop_name": "Le Moyne est et de Normandie", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Le Moyne est et de Normandie", - "geography": { - "type": "Point", - "coordinates": [ - -73.4969884267732, - 45.5389173432299 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8035646362338 - }, - "name": "Le Moyne est et de Normandie", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.496988427, - 45.538917343 - ] - }, - "is_frozen": false, - "integer_id": 1962, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.431293, - 45.449156 - ] - }, - "id": 1963, - "properties": { - "id": "daf1d30c-8ab3-40eb-9c52-a47bfb6dd717", - "code": "30488", - "data": { - "stops": [ - { - "id": "5719", - "code": "30488", - "data": { - "gtfs": { - "stop_id": "5719", - "stop_code": "30488", - "stop_name": "boul. du Quartier et boul. Lapinière", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et boul. Lapinière", - "geography": { - "type": "Point", - "coordinates": [ - -73.4312927243921, - 45.4491563130582 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.2877137494042 - }, - "name": "boul. du Quartier et boul. Lapinière", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.431292724, - 45.449156313 - ] - }, - "is_frozen": false, - "integer_id": 1963, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.454038, - 45.516006 - ] - }, - "id": 1964, - "properties": { - "id": "5f1eb6f1-dc45-44fc-bc07-9e965049da7f", - "code": "30523", - "data": { - "stops": [ - { - "id": "5754", - "code": "30523", - "data": { - "gtfs": { - "stop_id": "5754", - "stop_code": "30523", - "stop_name": "boul. Roberval ouest et Racicot", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Roberval ouest et Racicot", - "geography": { - "type": "Point", - "coordinates": [ - -73.4540378193876, - 45.516006372103 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4159712165689 - }, - "name": "boul. Roberval ouest et Racicot", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.454037819, - 45.516006372 - ] - }, - "is_frozen": false, - "integer_id": 1964, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.49887, - 45.476144 - ] - }, - "id": 1965, - "properties": { - "id": "aa2b19e6-8fc9-4313-8ff2-0087861c575d", - "code": "30527", - "data": { - "stops": [ - { - "id": "5758", - "code": "30527", - "data": { - "gtfs": { - "stop_id": "5758", - "stop_code": "30527", - "stop_name": "boul. Marie-Victorin et Verdure", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Verdure", - "geography": { - "type": "Point", - "coordinates": [ - -73.4986269529974, - 45.4760747841472 - ] - } - }, - { - "id": "5759", - "code": "30528", - "data": { - "gtfs": { - "stop_id": "5759", - "stop_code": "30528", - "stop_name": "boul. Marie-Victorin et Verdure", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et Verdure", - "geography": { - "type": "Point", - "coordinates": [ - -73.4991132526401, - 45.4762133546407 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7427198134451 - }, - "name": "boul. Marie-Victorin et Verdure", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.498870103, - 45.476144069 - ] - }, - "is_frozen": false, - "integer_id": 1965, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.427413, - 45.450937 - ] - }, - "id": 1966, - "properties": { - "id": "c74e0c90-a5ea-4788-9b1d-7bf05f50a1c4", - "code": "30532", - "data": { - "stops": [ - { - "id": "5763", - "code": "30532", - "data": { - "gtfs": { - "stop_id": "5763", - "stop_code": "30532", - "stop_name": "boul. du Quartier et des Éléments", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et des Éléments", - "geography": { - "type": "Point", - "coordinates": [ - -73.4274128432806, - 45.45093691412 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3177142719459 - }, - "name": "boul. du Quartier et des Éléments", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.427412843, - 45.450936914 - ] - }, - "is_frozen": false, - "integer_id": 1966, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.427754, - 45.451145 - ] - }, - "id": 1967, - "properties": { - "id": "7cc1fe3e-9e1a-4a20-971a-12602f5318ec", - "code": "30533", - "data": { - "stops": [ - { - "id": "5764", - "code": "30533", - "data": { - "gtfs": { - "stop_id": "5764", - "stop_code": "30533", - "stop_name": "boul. du Quartier et des Éléments", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. du Quartier et des Éléments", - "geography": { - "type": "Point", - "coordinates": [ - -73.4277538867517, - 45.4511445028555 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.3212120260071 - }, - "name": "boul. du Quartier et des Éléments", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.427753887, - 45.451144503 - ] - }, - "is_frozen": false, - "integer_id": 1967, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.381337, - 45.571513 - ] - }, - "id": 1968, - "properties": { - "id": "c7077046-1c3c-45a5-980c-e3cf3605f303", - "code": "30534", - "data": { - "stops": [ - { - "id": "5765", - "code": "30534", - "data": { - "gtfs": { - "stop_id": "5765", - "stop_code": "30534", - "stop_name": "HONDA CANADA INC.", - "location_type": 0, - "parent_station": "" - } - }, - "name": "HONDA CANADA INC.", - "geography": { - "type": "Point", - "coordinates": [ - -73.3813371147524, - 45.5715131995339 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3558080269025 - }, - "name": "HONDA CANADA INC.", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.381337115, - 45.5715132 - ] - }, - "is_frozen": false, - "integer_id": 1968, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.4429, - 45.613941 - ] - }, - "id": 1969, - "properties": { - "id": "d69b600d-72ec-426a-9838-289c3d328f0c", - "code": "30539", - "data": { - "stops": [ - { - "id": "5770", - "code": "30539", - "data": { - "gtfs": { - "stop_id": "5770", - "stop_code": "30539", - "stop_name": "De Montbrun et Marché public de Montbrun", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Montbrun et Marché public de Montbrun", - "geography": { - "type": "Point", - "coordinates": [ - -73.4428996474752, - 45.6139411981679 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.076051918733 - }, - "name": "De Montbrun et Marché public de Montbrun", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.442899647, - 45.613941198 - ] - }, - "is_frozen": false, - "integer_id": 1969, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.50702, - 45.507013 - ] - }, - "id": 1970, - "properties": { - "id": "bca5df0b-3970-4f0e-8644-3802bdd029df", - "code": "30543", - "data": { - "stops": [ - { - "id": "5774", - "code": "30543", - "data": { - "gtfs": { - "stop_id": "5774", - "stop_code": "30543", - "stop_name": "Green et av. de Merton", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Green et av. de Merton", - "geography": { - "type": "Point", - "coordinates": [ - -73.5070200405425, - 45.5070126750197 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2639493285775 - }, - "name": "Green et av. de Merton", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.507020041, - 45.507012675 - ] - }, - "is_frozen": false, - "integer_id": 1970, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.504709, - 45.510072 - ] - }, - "id": 1971, - "properties": { - "id": "3035cba8-14ef-4eb7-b986-fc36588b4fe9", - "code": "30544", - "data": { - "stops": [ - { - "id": "5775", - "code": "30544", - "data": { - "gtfs": { - "stop_id": "5775", - "stop_code": "30544", - "stop_name": "Green et civique 684", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Green et civique 684", - "geography": { - "type": "Point", - "coordinates": [ - -73.5047093507144, - 45.5100721687962 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3156563581425 - }, - "name": "Green et civique 684", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.504709351, - 45.510072169 - ] - }, - "is_frozen": false, - "integer_id": 1971, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.447935, - 45.614686 - ] - }, - "id": 1972, - "properties": { - "id": "b4102d0e-df60-40ed-b546-4997ce08cc57", - "code": "30555", - "data": { - "stops": [ - { - "id": "5786", - "code": "30555", - "data": { - "gtfs": { - "stop_id": "5786", - "stop_code": "30555", - "stop_name": "De Montbrun et Jacques-Lamoureux", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Montbrun et Jacques-Lamoureux", - "geography": { - "type": "Point", - "coordinates": [ - -73.4479349717419, - 45.6146860310346 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.0887103610081 - }, - "name": "De Montbrun et Jacques-Lamoureux", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447934972, - 45.614686031 - ] - }, - "is_frozen": false, - "integer_id": 1972, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.44354, - 45.609727 - ] - }, - "id": 1973, - "properties": { - "id": "f9a06f2c-0cbe-4c5b-b4ae-045860bd63ac", - "code": "30556", - "data": { - "stops": [ - { - "id": "5787", - "code": "30556", - "data": { - "gtfs": { - "stop_id": "5787", - "stop_code": "30556", - "stop_name": "ch. du Lac et Travaux publics de Boucherville", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et Travaux publics de Boucherville", - "geography": { - "type": "Point", - "coordinates": [ - -73.4435399089505, - 45.6097273693175 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.0044472285254 - }, - "name": "ch. du Lac et Travaux publics de Boucherville", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443539909, - 45.609727369 - ] - }, - "is_frozen": false, - "integer_id": 1973, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.445689, - 45.606072 - ] - }, - "id": 1974, - "properties": { - "id": "a3ecc5af-4217-4c29-8096-6f8e97684bf2", - "code": "30557", - "data": { - "stops": [ - { - "id": "5788", - "code": "30557", - "data": { - "gtfs": { - "stop_id": "5788", - "stop_code": "30557", - "stop_name": "ch. du Lac et Centre de répit-dépannage Aux Quatre Poches!", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et Centre de répit-dépannage Aux Quatre Poches!", - "geography": { - "type": "Point", - "coordinates": [ - -73.4456889869634, - 45.606072222918 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9423490062967 - }, - "name": "ch. du Lac et Centre de répit-dépannage Aux Quatre Poches!", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.445688987, - 45.606072223 - ] - }, - "is_frozen": false, - "integer_id": 1974, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.448213, - 45.604186 - ] - }, - "id": 1975, - "properties": { - "id": "7bb8c836-af43-4b8c-bf40-7cf79ce04ef2", - "code": "30558", - "data": { - "stops": [ - { - "id": "5789", - "code": "30558", - "data": { - "gtfs": { - "stop_id": "5789", - "stop_code": "30558", - "stop_name": "ch. du Lac et BIBLIOTHEQUE MONTARVILLE-BOUCHER-DE-LA-BRUÈRE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et BIBLIOTHEQUE MONTARVILLE-BOUCHER-DE-LA-BRUÈRE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4482129803019, - 45.604185899205 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.91030644205 - }, - "name": "ch. du Lac et BIBLIOTHEQUE MONTARVILLE-BOUCHER-DE-LA-BRUÈRE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.44821298, - 45.604185899 - ] - }, - "is_frozen": false, - "integer_id": 1975, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.342751, - 45.546008 - ] - }, - "id": 1976, - "properties": { - "id": "b1e10293-5bab-4099-bc2f-f533b141b0c5", - "code": "30562", - "data": { - "stops": [ - { - "id": "5793", - "code": "30562", - "data": { - "gtfs": { - "stop_id": "5793", - "stop_code": "30562", - "stop_name": "ch. St-Gabriel et SEPAQ St-Bruno", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. St-Gabriel et SEPAQ St-Bruno", - "geography": { - "type": "Point", - "coordinates": [ - -73.3427420183192, - 45.5460581328661 - ] - } - }, - { - "id": "5872", - "code": "30641", - "data": { - "gtfs": { - "stop_id": "5872", - "stop_code": "30641", - "stop_name": "ch. St-Gabriel et SEPAQ St-Bruno", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. St-Gabriel et SEPAQ St-Bruno", - "geography": { - "type": "Point", - "coordinates": [ - -73.342760861039, - 45.5459572511627 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.9236095530023 - }, - "name": "ch. St-Gabriel et SEPAQ St-Bruno", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.34275144, - 45.546007692 - ] - }, - "is_frozen": false, - "integer_id": 1976, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.490673, - 45.539717 - ] - }, - "id": 1977, - "properties": { - "id": "1c85a97d-9927-406a-a2ae-6f738750a95d", - "code": "30563", - "data": { - "stops": [ - { - "id": "5794", - "code": "30563", - "data": { - "gtfs": { - "stop_id": "5794", - "stop_code": "30563", - "stop_name": "ECOLE SECONDAIRE JACQUES-ROUSSEAU", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ECOLE SECONDAIRE JACQUES-ROUSSEAU", - "geography": { - "type": "Point", - "coordinates": [ - -73.4906727260906, - 45.5397173093232 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.817106414708 - }, - "name": "ECOLE SECONDAIRE JACQUES-ROUSSEAU", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.490672726, - 45.539717309 - ] - }, - "is_frozen": false, - "integer_id": 1977, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.43806, - 45.524135 - ] - }, - "id": 1978, - "properties": { - "id": "908faba3-76b8-49ef-bcfd-e4970978a82f", - "code": "30572", - "data": { - "stops": [ - { - "id": "5803", - "code": "30572", - "data": { - "gtfs": { - "stop_id": "5803", - "stop_code": "30572", - "stop_name": "des Samares et boul. Roland-Therrien", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Samares et boul. Roland-Therrien", - "geography": { - "type": "Point", - "coordinates": [ - -73.4380603007293, - 45.5241352049032 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.5534361576307 - }, - "name": "des Samares et boul. Roland-Therrien", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.438060301, - 45.524135205 - ] - }, - "is_frozen": false, - "integer_id": 1978, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.378481, - 45.476106 - ] - }, - "id": 1979, - "properties": { - "id": "0d06d238-233e-42a1-9804-43854d3b5184", - "code": "30576", - "data": { - "stops": [ - { - "id": "5807", - "code": "30576", - "data": { - "gtfs": { - "stop_id": "5807", - "stop_code": "30576", - "stop_name": "boul. Cousineau et Chagnon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Chagnon", - "geography": { - "type": "Point", - "coordinates": [ - -73.3784811657631, - 45.4761055526384 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7420699835828 - }, - "name": "boul. Cousineau et Chagnon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.378481166, - 45.476105553 - ] - }, - "is_frozen": false, - "integer_id": 1979, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.378946, - 45.475882 - ] - }, - "id": 1980, - "properties": { - "id": "021fa80e-da9f-408b-be90-bb5e978d84f8", - "code": "30577", - "data": { - "stops": [ - { - "id": "5808", - "code": "30577", - "data": { - "gtfs": { - "stop_id": "5808", - "stop_code": "30577", - "stop_name": "boul. Cousineau et Bernard-Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Cousineau et Bernard-Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.3790218213424, - 45.4760085119814 - ] - } - }, - { - "id": "5914", - "code": "30792", - "data": { - "gtfs": { - "stop_id": "5914", - "stop_code": "30792", - "stop_name": "Bernard-Hubert et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bernard-Hubert et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3790707924144, - 45.4758427102716 - ] - } - }, - { - "id": "5916", - "code": "30794", - "data": { - "gtfs": { - "stop_id": "5916", - "stop_code": "30794", - "stop_name": "Bernard-Hubert et boul. Cousineau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bernard-Hubert et boul. Cousineau", - "geography": { - "type": "Point", - "coordinates": [ - -73.3788208914225, - 45.4757554256988 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.7382977705455 - }, - "name": "boul. Cousineau et Bernard-Hubert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.378945842, - 45.475881969 - ] - }, - "is_frozen": false, - "integer_id": 1980, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47416, - 45.469564 - ] - }, - "id": 1981, - "properties": { - "id": "1f00977d-c5a4-40dd-ade4-7f4ba5b2afbe", - "code": "30579", - "data": { - "stops": [ - { - "id": "5810", - "code": "30579", - "data": { - "gtfs": { - "stop_id": "5810", - "stop_code": "30579", - "stop_name": "boul. Pelletier et MAIL CHAMPLAIN", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Pelletier et MAIL CHAMPLAIN", - "geography": { - "type": "Point", - "coordinates": [ - -73.4741600976739, - 45.469563705177 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6317170969576 - }, - "name": "boul. Pelletier et MAIL CHAMPLAIN", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.474160098, - 45.469563705 - ] - }, - "is_frozen": false, - "integer_id": 1981, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.475283, - 45.473445 - ] - }, - "id": 1982, - "properties": { - "id": "80a85fd6-8b7e-4c4c-b616-26338ab496f1", - "code": "30580", - "data": { - "stops": [ - { - "id": "5811", - "code": "30580", - "data": { - "gtfs": { - "stop_id": "5811", - "stop_code": "30580", - "stop_name": "boul. Provencher et civique 1520", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Provencher et civique 1520", - "geography": { - "type": "Point", - "coordinates": [ - -73.4752835000107, - 45.4734447436211 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6971808396136 - }, - "name": "boul. Provencher et civique 1520", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.4752835, - 45.473444744 - ] - }, - "is_frozen": false, - "integer_id": 1982, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.485926, - 45.47325 - ] - }, - "id": 1983, - "properties": { - "id": "17fd1ec9-db8e-4d18-a174-72ce7cb4c434", - "code": "30581", - "data": { - "stops": [ - { - "id": "5812", - "code": "30581", - "data": { - "gtfs": { - "stop_id": "5812", - "stop_code": "30581", - "stop_name": "boul. Provencher et boul. Plamondon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Provencher et boul. Plamondon", - "geography": { - "type": "Point", - "coordinates": [ - -73.4859261943133, - 45.4732501310084 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.6938978703209 - }, - "name": "boul. Provencher et boul. Plamondon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.485926194, - 45.473250131 - ] - }, - "is_frozen": false, - "integer_id": 1983, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.430682, - 45.508612 - ] - }, - "id": 1984, - "properties": { - "id": "d0283e5b-f03b-432a-aa08-aa7137cbe6e7", - "code": "30582", - "data": { - "stops": [ - { - "id": "5813", - "code": "30582", - "data": { - "gtfs": { - "stop_id": "5813", - "stop_code": "30582", - "stop_name": "rte de l'Aéroport et Gare Longueuil/ Saint-Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et Gare Longueuil/ Saint-Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.4307812897398, - 45.5085515833654 - ] - } - }, - { - "id": "5814", - "code": "30583", - "data": { - "gtfs": { - "stop_id": "5814", - "stop_code": "30583", - "stop_name": "rte de l'Aéroport et Gare Longueuil/ Saint-Hubert", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et Gare Longueuil/ Saint-Hubert", - "geography": { - "type": "Point", - "coordinates": [ - -73.430582169952, - 45.5086724058199 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.2909776234748 - }, - "name": "rte de l'Aéroport et Gare Longueuil/ Saint-Hubert", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.43068173, - 45.508611995 - ] - }, - "is_frozen": false, - "integer_id": 1984, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.420389, - 45.509246 - ] - }, - "id": 1985, - "properties": { - "id": "083eddb0-b4a8-4368-8265-1cf0ef37b9f6", - "code": "30584", - "data": { - "stops": [ - { - "id": "5815", - "code": "30584", - "data": { - "gtfs": { - "stop_id": "5815", - "stop_code": "30584", - "stop_name": "rte de l'Aéroport et civique 4900", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et civique 4900", - "geography": { - "type": "Point", - "coordinates": [ - -73.4203885244329, - 45.5092462049221 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.301696318515 - }, - "name": "rte de l'Aéroport et civique 4900", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.420388524, - 45.509246205 - ] - }, - "is_frozen": false, - "integer_id": 1985, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.420424, - 45.509439 - ] - }, - "id": 1986, - "properties": { - "id": "0af40567-79a9-4b30-b572-639f90fb42b3", - "code": "30585", - "data": { - "stops": [ - { - "id": "5816", - "code": "30585", - "data": { - "gtfs": { - "stop_id": "5816", - "stop_code": "30585", - "stop_name": "rte de l'Aéroport et civique 4900", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et civique 4900", - "geography": { - "type": "Point", - "coordinates": [ - -73.4204238079452, - 45.5094390773546 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3049560923856 - }, - "name": "rte de l'Aéroport et civique 4900", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.420423808, - 45.509439077 - ] - }, - "is_frozen": false, - "integer_id": 1986, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.400527, - 45.518486 - ] - }, - "id": 1987, - "properties": { - "id": "4d2ec014-bba7-4d27-a7b0-32c8bed1e20d", - "code": "30586", - "data": { - "stops": [ - { - "id": "5817", - "code": "30586", - "data": { - "gtfs": { - "stop_id": "5817", - "stop_code": "30586", - "stop_name": "rte de l'Aéroport et John-Molson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et John-Molson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4006636488066, - 45.5183084418791 - ] - } - }, - { - "id": "5818", - "code": "30587", - "data": { - "gtfs": { - "stop_id": "5818", - "stop_code": "30587", - "stop_name": "rte de l'Aéroport et John-Molson", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et John-Molson", - "geography": { - "type": "Point", - "coordinates": [ - -73.4005986838564, - 45.51866306564 - ] - } - }, - { - "id": "5879", - "code": "30671", - "data": { - "gtfs": { - "stop_id": "5879", - "stop_code": "30671", - "stop_name": "John-Molson et rte de l'Aéroport", - "location_type": 0, - "parent_station": "" - } - }, - "name": "John-Molson et rte de l'Aéroport", - "geography": { - "type": "Point", - "coordinates": [ - -73.4003898938127, - 45.5184599535159 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4578932710142 - }, - "name": "rte de l'Aéroport et John-Molson", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.400526771, - 45.518485754 - ] - }, - "is_frozen": false, - "integer_id": 1987, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.382585, - 45.520091 - ] - }, - "id": 1988, - "properties": { - "id": "889d971d-ea3a-412a-a3be-b3ac0f562d0a", - "code": "30588", - "data": { - "stops": [ - { - "id": "5819", - "code": "30588", - "data": { - "gtfs": { - "stop_id": "5819", - "stop_code": "30588", - "stop_name": "boul. Clairevue ouest et civique 1300", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et civique 1300", - "geography": { - "type": "Point", - "coordinates": [ - -73.382585244929, - 45.5200909623555 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.485037477958 - }, - "name": "boul. Clairevue ouest et civique 1300", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.382585245, - 45.520090962 - ] - }, - "is_frozen": false, - "integer_id": 1988, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.375111, - 45.520208 - ] - }, - "id": 1989, - "properties": { - "id": "4fd9bafc-afe7-46d0-b43c-1a1438691ab1", - "code": "30589", - "data": { - "stops": [ - { - "id": "5820", - "code": "30589", - "data": { - "gtfs": { - "stop_id": "5820", - "stop_code": "30589", - "stop_name": "boul. Clairevue ouest et Jean-Talon", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et Jean-Talon", - "geography": { - "type": "Point", - "coordinates": [ - -73.3751110294408, - 45.5202083939547 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4870233534092 - }, - "name": "boul. Clairevue ouest et Jean-Talon", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.375111029, - 45.520208394 - ] - }, - "is_frozen": false, - "integer_id": 1989, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.376368, - 45.520405 - ] - }, - "id": 1990, - "properties": { - "id": "79d0e96e-c3af-4a6c-9c91-73d01e93e557", - "code": "30590", - "data": { - "stops": [ - { - "id": "5821", - "code": "30590", - "data": { - "gtfs": { - "stop_id": "5821", - "stop_code": "30590", - "stop_name": "boul. Clairevue ouest et Graham-Bell", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Clairevue ouest et Graham-Bell", - "geography": { - "type": "Point", - "coordinates": [ - -73.3763677767783, - 45.5204049417962 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4903471755068 - }, - "name": "boul. Clairevue ouest et Graham-Bell", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.376367777, - 45.520404942 - ] - }, - "is_frozen": false, - "integer_id": 1990, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.447641, - 45.538185 - ] - }, - "id": 1991, - "properties": { - "id": "4923c68b-ab12-4ac9-b43c-35ae6563b694", - "code": "30592", - "data": { - "stops": [ - { - "id": "5823", - "code": "30592", - "data": { - "gtfs": { - "stop_id": "5823", - "stop_code": "30592", - "stop_name": "Braille et Bossé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Braille et Bossé", - "geography": { - "type": "Point", - "coordinates": [ - -73.4475774770938, - 45.5381516335502 - ] - } - }, - { - "id": "5824", - "code": "30593", - "data": { - "gtfs": { - "stop_id": "5824", - "stop_code": "30593", - "stop_name": "Braille et Bossé", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Braille et Bossé", - "geography": { - "type": "Point", - "coordinates": [ - -73.4477049682267, - 45.5382188711515 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.7911723421187 - }, - "name": "Braille et Bossé", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447641223, - 45.538185252 - ] - }, - "is_frozen": false, - "integer_id": 1991, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.447199, - 45.539681 - ] - }, - "id": 1992, - "properties": { - "id": "3d4b782b-1f81-40fc-b6e4-db01a1a8f864", - "code": "30594", - "data": { - "stops": [ - { - "id": "5825", - "code": "30594", - "data": { - "gtfs": { - "stop_id": "5825", - "stop_code": "30594", - "stop_name": "Braille et Beauharnois", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Braille et Beauharnois", - "geography": { - "type": "Point", - "coordinates": [ - -73.4471412506441, - 45.539639487274 - ] - } - }, - { - "id": "5826", - "code": "30595", - "data": { - "gtfs": { - "stop_id": "5826", - "stop_code": "30595", - "stop_name": "Beauharnois et Braille", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Beauharnois et Braille", - "geography": { - "type": "Point", - "coordinates": [ - -73.4472563638616, - 45.5397228699087 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.816494795835 - }, - "name": "Braille et Beauharnois", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447198807, - 45.539681179 - ] - }, - "is_frozen": false, - "integer_id": 1992, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.441446, - 45.543789 - ] - }, - "id": 1993, - "properties": { - "id": "146c0089-3caf-43e6-be7c-9f8a4573762c", - "code": "30604", - "data": { - "stops": [ - { - "id": "5835", - "code": "30604", - "data": { - "gtfs": { - "stop_id": "5835", - "stop_code": "30604", - "stop_name": "Braille et Cantin", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Braille et Cantin", - "geography": { - "type": "Point", - "coordinates": [ - -73.441356693819, - 45.5437254385521 - ] - } - }, - { - "id": "5839", - "code": "30608", - "data": { - "gtfs": { - "stop_id": "5839", - "stop_code": "30608", - "stop_name": "Cantin et Braille", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Cantin et Braille", - "geography": { - "type": "Point", - "coordinates": [ - -73.4415354579288, - 45.5438534095591 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.886047793399 - }, - "name": "Braille et Cantin", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.441446076, - 45.543789424 - ] - }, - "is_frozen": false, - "integer_id": 1993, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.444045, - 45.545882 - ] - }, - "id": 1994, - "properties": { - "id": "5f232e4f-49b4-4ca7-8ee6-3aec9ca49e66", - "code": "30605", - "data": { - "stops": [ - { - "id": "5836", - "code": "30605", - "data": { - "gtfs": { - "stop_id": "5836", - "stop_code": "30605", - "stop_name": "Cantin et Barbeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Cantin et Barbeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4439004484148, - 45.5458779073417 - ] - } - }, - { - "id": "5838", - "code": "30607", - "data": { - "gtfs": { - "stop_id": "5838", - "stop_code": "30607", - "stop_name": "Cantin et Barbeau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Cantin et Barbeau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4441887870342, - 45.5458866195184 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.921485556366 - }, - "name": "Cantin et Barbeau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.444044618, - 45.545882263 - ] - }, - "is_frozen": false, - "integer_id": 1994, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467627, - 45.543919 - ] - }, - "id": 1995, - "properties": { - "id": "50390f49-dc4e-4a3a-8b7e-5dae5f17aa70", - "code": "30611", - "data": { - "stops": [ - { - "id": "5842", - "code": "30611", - "data": { - "gtfs": { - "stop_id": "5842", - "stop_code": "30611", - "stop_name": "boul. Curé-Poirier est et des Cervidés", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier est et des Cervidés", - "geography": { - "type": "Point", - "coordinates": [ - -73.4676075566559, - 45.5439818795909 - ] - } - }, - { - "id": "5843", - "code": "30612", - "data": { - "gtfs": { - "stop_id": "5843", - "stop_code": "30612", - "stop_name": "boul. Curé-Poirier est et des Cervidés", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Curé-Poirier est et des Cervidés", - "geography": { - "type": "Point", - "coordinates": [ - -73.4676459153808, - 45.5438566593074 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.8882463276976 - }, - "name": "boul. Curé-Poirier est et des Cervidés", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.467626736, - 45.543919269 - ] - }, - "is_frozen": false, - "integer_id": 1995, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437534, - 45.527073 - ] - }, - "id": 1996, - "properties": { - "id": "b3ae6488-015e-46a3-b034-181cc02048d1", - "code": "30614", - "data": { - "stops": [ - { - "id": "5845", - "code": "30614", - "data": { - "gtfs": { - "stop_id": "5845", - "stop_code": "30614", - "stop_name": "des Samares et de la Sauge", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Samares et de la Sauge", - "geography": { - "type": "Point", - "coordinates": [ - -73.4375342014527, - 45.5270733855941 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6031375902825 - }, - "name": "des Samares et de la Sauge", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437534201, - 45.527073386 - ] - }, - "is_frozen": false, - "integer_id": 1996, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.437839, - 45.52839 - ] - }, - "id": 1997, - "properties": { - "id": "0f82a749-1250-41a6-a638-43db1b5bd1a7", - "code": "30616", - "data": { - "stops": [ - { - "id": "5847", - "code": "30616", - "data": { - "gtfs": { - "stop_id": "5847", - "stop_code": "30616", - "stop_name": "des Samares et des Semis", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Samares et des Semis", - "geography": { - "type": "Point", - "coordinates": [ - -73.437838955049, - 45.5283896736414 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6254060388119 - }, - "name": "des Samares et des Semis", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.437838955, - 45.528389674 - ] - }, - "is_frozen": false, - "integer_id": 1997, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.43639, - 45.531589 - ] - }, - "id": 1998, - "properties": { - "id": "dd7e143a-63db-4b4e-82d6-e5e80de82672", - "code": "30618", - "data": { - "stops": [ - { - "id": "5849", - "code": "30618", - "data": { - "gtfs": { - "stop_id": "5849", - "stop_code": "30618", - "stop_name": "des Samares et boul. Béliveau", - "location_type": 0, - "parent_station": "" - } - }, - "name": "des Samares et boul. Béliveau", - "geography": { - "type": "Point", - "coordinates": [ - -73.4363898262118, - 45.5315885900853 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.679530493841 - }, - "name": "des Samares et boul. Béliveau", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.436389826, - 45.53158859 - ] - }, - "is_frozen": false, - "integer_id": 1998, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.47776, - 45.531975 - ] - }, - "id": 1999, - "properties": { - "id": "621204a0-8cdd-445a-a8e4-bf8b08e16eba", - "code": "30620", - "data": { - "stops": [ - { - "id": "5851", - "code": "30620", - "data": { - "gtfs": { - "stop_id": "5851", - "stop_code": "30620", - "stop_name": "Lavallée et Brault", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Lavallée et Brault", - "geography": { - "type": "Point", - "coordinates": [ - -73.4777602670194, - 45.5319751534562 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6860716122039 - }, - "name": "Lavallée et Brault", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.477760267, - 45.531975153 - ] - }, - "is_frozen": false, - "integer_id": 1999, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.478716, - 45.530068 - ] - }, - "id": 2000, - "properties": { - "id": "af70f982-a652-4cf9-9be4-d543d75ad805", - "code": "30621", - "data": { - "stops": [ - { - "id": "5852", - "code": "30621", - "data": { - "gtfs": { - "stop_id": "5852", - "stop_code": "30621", - "stop_name": "Brault et Gamache", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Brault et Gamache", - "geography": { - "type": "Point", - "coordinates": [ - -73.4787162598447, - 45.5300682932326 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6538065030724 - }, - "name": "Brault et Gamache", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.47871626, - 45.530068293 - ] - }, - "is_frozen": false, - "integer_id": 2000, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.476092, - 45.529179 - ] - }, - "id": 2001, - "properties": { - "id": "48d7eace-3f37-4246-9aea-13944ac3b50c", - "code": "30622", - "data": { - "stops": [ - { - "id": "5853", - "code": "30622", - "data": { - "gtfs": { - "stop_id": "5853", - "stop_code": "30622", - "stop_name": "Gamache et Dubuc", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gamache et Dubuc", - "geography": { - "type": "Point", - "coordinates": [ - -73.4760917540327, - 45.5291792489427 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6387645027263 - }, - "name": "Gamache et Dubuc", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.476091754, - 45.529179249 - ] - }, - "is_frozen": false, - "integer_id": 2001, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.472089, - 45.528161 - ] - }, - "id": 2002, - "properties": { - "id": "10a8a297-0790-40e2-901e-24be7500f796", - "code": "30624", - "data": { - "stops": [ - { - "id": "5855", - "code": "30624", - "data": { - "gtfs": { - "stop_id": "5855", - "stop_code": "30624", - "stop_name": "Gamache et Desmarchais", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gamache et Desmarchais", - "geography": { - "type": "Point", - "coordinates": [ - -73.4720892245959, - 45.5281608068087 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6215340449799 - }, - "name": "Gamache et Desmarchais", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.472089225, - 45.528160807 - ] - }, - "is_frozen": false, - "integer_id": 2002, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469181, - 45.52735 - ] - }, - "id": 2003, - "properties": { - "id": "979368fb-58ae-4231-bd7c-716ca91bbb6f", - "code": "30625", - "data": { - "stops": [ - { - "id": "5856", - "code": "30625", - "data": { - "gtfs": { - "stop_id": "5856", - "stop_code": "30625", - "stop_name": "Gamache et Poincaré", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gamache et Poincaré", - "geography": { - "type": "Point", - "coordinates": [ - -73.4691811042121, - 45.5273498036113 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6078137944086 - }, - "name": "Gamache et Poincaré", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469181104, - 45.527349804 - ] - }, - "is_frozen": false, - "integer_id": 2003, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467326, - 45.526908 - ] - }, - "id": 2004, - "properties": { - "id": "b6b773c1-84a4-412e-a7be-7f535298ece2", - "code": "30626", - "data": { - "stops": [ - { - "id": "5857", - "code": "30626", - "data": { - "gtfs": { - "stop_id": "5857", - "stop_code": "30626", - "stop_name": "Gamache et Jules-Roches est", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Gamache et Jules-Roches est", - "geography": { - "type": "Point", - "coordinates": [ - -73.4673261797765, - 45.5269076434247 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6003337241372 - }, - "name": "Gamache et Jules-Roches est", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.46732618, - 45.526907643 - ] - }, - "is_frozen": false, - "integer_id": 2004, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.416278, - 45.559261 - ] - }, - "id": 2005, - "properties": { - "id": "4987f1ae-bfd4-4242-9f97-87bf5101bd17", - "code": "30627", - "data": { - "stops": [ - { - "id": "5858", - "code": "30627", - "data": { - "gtfs": { - "stop_id": "5858", - "stop_code": "30627", - "stop_name": "J.-A.-Bombardier et civique 155", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et civique 155", - "geography": { - "type": "Point", - "coordinates": [ - -73.4161422918691, - 45.5591648983478 - ] - } - }, - { - "id": "5859", - "code": "30628", - "data": { - "gtfs": { - "stop_id": "5859", - "stop_code": "30628", - "stop_name": "J.-A.-Bombardier et civique 155", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et civique 155", - "geography": { - "type": "Point", - "coordinates": [ - -73.4164127982652, - 45.5593567756704 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.1481155452796 - }, - "name": "J.-A.-Bombardier et civique 155", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.416277545, - 45.559260837 - ] - }, - "is_frozen": false, - "integer_id": 2005, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.447567, - 45.597646 - ] - }, - "id": 2006, - "properties": { - "id": "e25e89c1-c193-4379-979a-303ee641d87e", - "code": "30631", - "data": { - "stops": [ - { - "id": "5862", - "code": "30631", - "data": { - "gtfs": { - "stop_id": "5862", - "stop_code": "30631", - "stop_name": "Hélène-Boullé et Darontal", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Hélène-Boullé et Darontal", - "geography": { - "type": "Point", - "coordinates": [ - -73.4473331210368, - 45.5976065274971 - ] - } - }, - { - "id": "5863", - "code": "30632", - "data": { - "gtfs": { - "stop_id": "5863", - "stop_code": "30632", - "stop_name": "Hélène-Boullé et Darontal", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Hélène-Boullé et Darontal", - "geography": { - "type": "Point", - "coordinates": [ - -73.4478010676278, - 45.5976853080602 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.7992379275291 - }, - "name": "Hélène-Boullé et Darontal", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.447567094, - 45.597645918 - ] - }, - "is_frozen": false, - "integer_id": 2006, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.453966, - 45.61565 - ] - }, - "id": 2007, - "properties": { - "id": "4bdfb37a-ee1d-4a02-9192-c3692c2485ed", - "code": "30634", - "data": { - "stops": [ - { - "id": "5865", - "code": "30634", - "data": { - "gtfs": { - "stop_id": "5865", - "stop_code": "30634", - "stop_name": "De Muy et Le Laboureur", - "location_type": 0, - "parent_station": "" - } - }, - "name": "De Muy et Le Laboureur", - "geography": { - "type": "Point", - "coordinates": [ - -73.4539660814811, - 45.6156501018127 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 953.1050954931461 - }, - "name": "De Muy et Le Laboureur", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.453966081, - 45.615650102 - ] - }, - "is_frozen": false, - "integer_id": 2007, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.450903, - 45.604275 - ] - }, - "id": 2008, - "properties": { - "id": "15a24cda-ef8f-47ad-bb52-21eaf857234b", - "code": "30636", - "data": { - "stops": [ - { - "id": "5867", - "code": "30636", - "data": { - "gtfs": { - "stop_id": "5867", - "stop_code": "30636", - "stop_name": "ch. du Lac et de la Rivière-aux-Pins", - "location_type": 0, - "parent_station": "" - } - }, - "name": "ch. du Lac et de la Rivière-aux-Pins", - "geography": { - "type": "Point", - "coordinates": [ - -73.4509026267092, - 45.6042752932491 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9118248859969 - }, - "name": "ch. du Lac et de la Rivière-aux-Pins", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.450902627, - 45.604275293 - ] - }, - "is_frozen": false, - "integer_id": 2008, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.538052, - 45.589764 - ] - }, - "id": 2009, - "properties": { - "id": "b49806f2-28c3-484e-bd5a-b46e80d9eb6f", - "code": "30638", - "data": { - "stops": [ - { - "id": "5869", - "code": "30638", - "data": { - "gtfs": { - "stop_id": "5869", - "stop_code": "30638", - "stop_name": "METRO RADISSON", - "location_type": 0, - "parent_station": "" - } - }, - "name": "METRO RADISSON", - "geography": { - "type": "Point", - "coordinates": [ - -73.5380524686115, - 45.5897638129818 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6654270119611 - }, - "name": "METRO RADISSON", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.538052469, - 45.589763813 - ] - }, - "is_frozen": false, - "integer_id": 2009, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.411783, - 45.57104 - ] - }, - "id": 2010, - "properties": { - "id": "9c784932-945b-47d8-afa8-e5b73889acfb", - "code": "30639", - "data": { - "stops": [ - { - "id": "5870", - "code": "30639", - "data": { - "gtfs": { - "stop_id": "5870", - "stop_code": "30639", - "stop_name": "Stationnement de Tourraine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Stationnement de Tourraine", - "geography": { - "type": "Point", - "coordinates": [ - -73.4119825964554, - 45.570870038368 - ] - } - }, - { - "id": "5924", - "code": "30802", - "data": { - "gtfs": { - "stop_id": "5924", - "stop_code": "30802", - "stop_name": "Stationnement de Tourraine", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Stationnement de Tourraine", - "geography": { - "type": "Point", - "coordinates": [ - -73.4115841999583, - 45.5712097278469 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3477822357956 - }, - "name": "Stationnement de Tourraine", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.411783398, - 45.571039883 - ] - }, - "is_frozen": false, - "integer_id": 2010, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.443939, - 45.573194 - ] - }, - "id": 2011, - "properties": { - "id": "1eda157c-9c83-48cb-a3bc-ea8bb271b287", - "code": "30640", - "data": { - "stops": [ - { - "id": "5871", - "code": "30640", - "data": { - "gtfs": { - "stop_id": "5871", - "stop_code": "30640", - "stop_name": "STATIONNEMENT INCITATIF DE MORTAGNE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "STATIONNEMENT INCITATIF DE MORTAGNE", - "geography": { - "type": "Point", - "coordinates": [ - -73.4443299153394, - 45.5732381983831 - ] - } - }, - { - "id": "5875", - "code": "30644", - "data": { - "gtfs": { - "stop_id": "5875", - "stop_code": "30644", - "stop_name": "Stationnement de Mortagne", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Stationnement de Mortagne", - "geography": { - "type": "Point", - "coordinates": [ - -73.4435481064377, - 45.5731499164339 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3843110665122 - }, - "name": "STATIONNEMENT INCITATIF DE MORTAGNE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.443939011, - 45.573194057 - ] - }, - "is_frozen": false, - "integer_id": 2011, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.444892, - 45.528942 - ] - }, - "id": 2012, - "properties": { - "id": "c37c473f-58f7-42cd-82b8-4282dea696a3", - "code": "30642", - "data": { - "stops": [ - { - "id": "5873", - "code": "30642", - "data": { - "gtfs": { - "stop_id": "5873", - "stop_code": "30642", - "stop_name": "Boismenu et Brassard", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Boismenu et Brassard", - "geography": { - "type": "Point", - "coordinates": [ - -73.4448916346388, - 45.5289417050734 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.6347455442967 - }, - "name": "Boismenu et Brassard", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.444891635, - 45.528941705 - ] - }, - "is_frozen": false, - "integer_id": 2012, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452126, - 45.604113 - ] - }, - "id": 2013, - "properties": { - "id": "be43b4d2-5b5a-47b0-86d2-d58ce9d9b1eb", - "code": "30643", - "data": { - "stops": [ - { - "id": "5874", - "code": "30643", - "data": { - "gtfs": { - "stop_id": "5874", - "stop_code": "30643", - "stop_name": "de la Rivière-aux-Pins et HOTEL DE VILLE DE BOUCHERVILLE", - "location_type": 0, - "parent_station": "" - } - }, - "name": "de la Rivière-aux-Pins et HOTEL DE VILLE DE BOUCHERVILLE", - "geography": { - "type": "Point", - "coordinates": [ - -73.452125676858, - 45.604112819468 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.9090651125625 - }, - "name": "de la Rivière-aux-Pins et HOTEL DE VILLE DE BOUCHERVILLE", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452125677, - 45.604112819 - ] - }, - "is_frozen": false, - "integer_id": 2013, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.38867, - 45.518692 - ] - }, - "id": 2014, - "properties": { - "id": "59f3ce33-037e-4929-8dad-491a01b3dda7", - "code": "30669", - "data": { - "stops": [ - { - "id": "5877", - "code": "30669", - "data": { - "gtfs": { - "stop_id": "5877", - "stop_code": "30669", - "stop_name": "John-Molson et Wiptec", - "location_type": 0, - "parent_station": "" - } - }, - "name": "John-Molson et Wiptec", - "geography": { - "type": "Point", - "coordinates": [ - -73.3885771071828, - 45.5186445081 - ] - } - }, - { - "id": "5878", - "code": "30670", - "data": { - "gtfs": { - "stop_id": "5878", - "stop_code": "30670", - "stop_name": "John-Molson et Wiptec", - "location_type": 0, - "parent_station": "" - } - }, - "name": "John-Molson et Wiptec", - "geography": { - "type": "Point", - "coordinates": [ - -73.3887631873739, - 45.5187399222802 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.4613844158483 - }, - "name": "John-Molson et Wiptec", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.388670147, - 45.518692215 - ] - }, - "is_frozen": false, - "integer_id": 2014, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.412211, - 45.51087 - ] - }, - "id": 2015, - "properties": { - "id": "eb8bc90f-a856-480f-ac1f-7bb1795b4dab", - "code": "30694", - "data": { - "stops": [ - { - "id": "5890", - "code": "30694", - "data": { - "gtfs": { - "stop_id": "5890", - "stop_code": "30694", - "stop_name": "rte de l'Aéroport et civique 5555", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et civique 5555", - "geography": { - "type": "Point", - "coordinates": [ - -73.4121467389943, - 45.5108325338329 - ] - } - }, - { - "id": "5892", - "code": "30696", - "data": { - "gtfs": { - "stop_id": "5892", - "stop_code": "30696", - "stop_name": "rte de l'Aéroport et civique 5555", - "location_type": 0, - "parent_station": "" - } - }, - "name": "rte de l'Aéroport et civique 5555", - "geography": { - "type": "Point", - "coordinates": [ - -73.4122749427975, - 45.5109071950515 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.3291391855547 - }, - "name": "rte de l'Aéroport et civique 5555", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.412210841, - 45.510869864 - ] - }, - "is_frozen": false, - "integer_id": 2015, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.492488, - 45.461538 - ] - }, - "id": 2016, - "properties": { - "id": "bb980dda-615f-4aa9-85c9-d336582cf2ed", - "code": "30772", - "data": { - "stops": [ - { - "id": "5894", - "code": "30772", - "data": { - "gtfs": { - "stop_id": "5894", - "stop_code": "30772", - "stop_name": "boul. Marie-Victorin et av. Thérèse", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. Marie-Victorin et av. Thérèse", - "geography": { - "type": "Point", - "coordinates": [ - -73.4924881781486, - 45.4615382316891 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4963891995711 - }, - "name": "boul. Marie-Victorin et av. Thérèse", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.492488178, - 45.461538232 - ] - }, - "is_frozen": false, - "integer_id": 2016, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.452639, - 45.499341 - ] - }, - "id": 2017, - "properties": { - "id": "69ce0958-621c-4e07-9f8c-41bd64014240", - "code": "30774", - "data": { - "stops": [ - { - "id": "5896", - "code": "30774", - "data": { - "gtfs": { - "stop_id": "5896", - "stop_code": "30774", - "stop_name": "Montgomery et Gendron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montgomery et Gendron", - "geography": { - "type": "Point", - "coordinates": [ - -73.4529390452219, - 45.4994113418081 - ] - } - }, - { - "id": "5898", - "code": "30776", - "data": { - "gtfs": { - "stop_id": "5898", - "stop_code": "30776", - "stop_name": "Montgomery et Gendron", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Montgomery et Gendron", - "geography": { - "type": "Point", - "coordinates": [ - -73.4523392468116, - 45.4992700282432 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 951.1343253752631 - }, - "name": "Montgomery et Gendron", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.452639146, - 45.499340685 - ] - }, - "is_frozen": false, - "integer_id": 2017, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.469111, - 45.466768 - ] - }, - "id": 2018, - "properties": { - "id": "131616ed-8c78-458b-a65e-78f1aeac1fc7", - "code": "30780", - "data": { - "stops": [ - { - "id": "5902", - "code": "30780", - "data": { - "gtfs": { - "stop_id": "5902", - "stop_code": "30780", - "stop_name": "TERMINUS PANAMA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "TERMINUS PANAMA", - "geography": { - "type": "Point", - "coordinates": [ - -73.4691113155387, - 45.4667680609279 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5845696312992 - }, - "name": "TERMINUS PANAMA", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.469111316, - 45.466768061 - ] - }, - "is_frozen": false, - "integer_id": 2018, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.412383, - 45.460059 - ] - }, - "id": 2019, - "properties": { - "id": "84fd1601-f65a-4eb9-beba-06ee8c2970d2", - "code": "30782", - "data": { - "stops": [ - { - "id": "5904", - "code": "30782", - "data": { - "gtfs": { - "stop_id": "5904", - "stop_code": "30782", - "stop_name": "J.-A.-Bombardier et civique 5275", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et civique 5275", - "geography": { - "type": "Point", - "coordinates": [ - -73.412382632799, - 45.4600593965954 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.4714588852418 - }, - "name": "J.-A.-Bombardier et civique 5275", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.412382633, - 45.460059397 - ] - }, - "is_frozen": false, - "integer_id": 2019, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.407717, - 45.463529 - ] - }, - "id": 2020, - "properties": { - "id": "22c42fca-2f2b-42d3-9449-3b9e7c474f2e", - "code": "30784", - "data": { - "stops": [ - { - "id": "5906", - "code": "30784", - "data": { - "gtfs": { - "stop_id": "5906", - "stop_code": "30784", - "stop_name": "J.-A.-Bombardier et boul. Payer", - "location_type": 0, - "parent_station": "" - } - }, - "name": "J.-A.-Bombardier et boul. Payer", - "geography": { - "type": "Point", - "coordinates": [ - -73.4077173346167, - 45.4635292933547 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5299577253268 - }, - "name": "J.-A.-Bombardier et boul. Payer", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.407717335, - 45.463529293 - ] - }, - "is_frozen": false, - "integer_id": 2020, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.467816, - 45.466048 - ] - }, - "id": 2021, - "properties": { - "id": "7b9bfdae-7d0d-4463-a7d7-1a62138b83b5", - "code": "30798", - "data": { - "stops": [ - { - "id": "5920", - "code": "30798", - "data": { - "gtfs": { - "stop_id": "5920", - "stop_code": "30798", - "stop_name": "TERMINUS PANAMA", - "location_type": 0, - "parent_station": "" - } - }, - "name": "TERMINUS PANAMA", - "geography": { - "type": "Point", - "coordinates": [ - -73.4678159132405, - 45.466047750443 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 950.5724229864395 - }, - "name": "TERMINUS PANAMA", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.467815913, - 45.46604775 - ] - }, - "is_frozen": false, - "integer_id": 2021, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.521664, - 45.586133 - ] - }, - "id": 2022, - "properties": { - "id": "e3b3b7c9-8cf4-450f-95eb-c8f9836e391d", - "code": "30833", - "data": { - "stops": [ - { - "id": "6095", - "code": "30833", - "data": { - "gtfs": { - "stop_id": "6095", - "stop_code": "30833", - "stop_name": "Tellier et Statiionnement SAQ", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Tellier et Statiionnement SAQ", - "geography": { - "type": "Point", - "coordinates": [ - -73.521664351067, - 45.5861332220778 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.6038108241429 - }, - "name": "Tellier et Statiionnement SAQ", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.521664351, - 45.586133222 - ] - }, - "is_frozen": false, - "integer_id": 2022, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.55762, - 45.572646 - ] - }, - "id": 2023, - "properties": { - "id": "171b05ae-a95b-4adb-882d-8ac87dc4790f", - "code": "30835", - "data": { - "stops": [ - { - "id": "6096", - "code": "30835", - "data": { - "gtfs": { - "stop_id": "6096", - "stop_code": "30835", - "stop_name": "boul. de l'Assomption et Hôp. Maisonneuve-Rosement", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de l'Assomption et Hôp. Maisonneuve-Rosement", - "geography": { - "type": "Point", - "coordinates": [ - -73.557412190991, - 45.5726751103219 - ] - } - }, - { - "id": "6102", - "code": "30810", - "data": { - "gtfs": { - "stop_id": "6102", - "stop_code": "30810", - "stop_name": "boul. de l'Assomption et Hôp. Maisonneuve-Rosement", - "location_type": 0, - "parent_station": "" - } - }, - "name": "boul. de l'Assomption et Hôp. Maisonneuve-Rosement", - "geography": { - "type": "Point", - "coordinates": [ - -73.557828459181, - 45.5726162358108 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.3750115975669 - }, - "name": "boul. de l'Assomption et Hôp. Maisonneuve-Rosement", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.557620325, - 45.572645673 - ] - }, - "is_frozen": false, - "integer_id": 2023, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.578049, - 45.575536 - ] - }, - "id": 2024, - "properties": { - "id": "b92809dc-fe83-4c8b-86e3-0a17f3b710ba", - "code": "30806", - "data": { - "stops": [ - { - "id": "6098", - "code": "30806", - "data": { - "gtfs": { - "stop_id": "6098", - "stop_code": "30806", - "stop_name": "Bélanger et Institut de cardiologie de Montréal", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bélanger et Institut de cardiologie de Montréal", - "geography": { - "type": "Point", - "coordinates": [ - -73.5780492556561, - 45.575535502227 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.4240202006398 - }, - "name": "Bélanger et Institut de cardiologie de Montréal", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.578049256, - 45.575535502 - ] - }, - "is_frozen": false, - "integer_id": 2024, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.573287, - 45.581612 - ] - }, - "id": 2025, - "properties": { - "id": "30a1fc98-889c-4ed9-b389-c33a3f70398a", - "code": "30808", - "data": { - "stops": [ - { - "id": "6100", - "code": "30808", - "data": { - "gtfs": { - "stop_id": "6100", - "stop_code": "30808", - "stop_name": "Bélanger et Hôpital Santa Cabrini", - "location_type": 0, - "parent_station": "" - } - }, - "name": "Bélanger et Hôpital Santa Cabrini", - "geography": { - "type": "Point", - "coordinates": [ - -73.5732872679448, - 45.5816120978886 - ] - } - } - ], - "accessiblePlaces": { - "walking": { - "mode": "walking", - "placesByTravelTimeByCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ], - "placesByTravelTimeByDetailedCategory": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - } - }, - "routingRadiusPixelsAtMaxZoom": 952.5270975387562 - }, - "name": "Bélanger et Hôpital Santa Cabrini", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.573287268, - 45.581612098 - ] - }, - "is_frozen": false, - "integer_id": 2025, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.502355, - 45.527911 - ] - }, - "id": 2026, - "properties": { - "id": "e78a8532-2400-4eec-9dfd-450e95e7cf8d", - "code": "2", - "data": { - "routingRadiusPixelsAtMaxZoom": 951.6173078395179 - }, - "name": "2", - "color": "#0086FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.502355, - 45.527911 - ] - }, - "is_frozen": false, - "integer_id": 2026, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.489116, - 45.524255 - ] - }, - "id": 2027, - "properties": { - "id": "5028b3b2-5608-471b-9b03-da721b62dd6e", - "code": "n100", - "data": { - "routingRadiusPixelsAtMaxZoom": 951.5554558204434 - }, - "name": "n100", - "color": "#FF86FF", - "geography": { - "type": "Point", - "coordinates": [ - -73.48911612, - 45.52425461 - ] - }, - "is_frozen": false, - "integer_id": 2027, - "is_enabled": true, - "station_id": null, - "description": null, - "internal_id": null, - "routing_radius_meters": 50, - "default_dwell_time_seconds": 20 - } - } - ] -} \ No newline at end of file diff --git a/deck-gl-pow/package-lock.json b/deck-gl-pow/package-lock.json deleted file mode 100644 index 230e280d..00000000 --- a/deck-gl-pow/package-lock.json +++ /dev/null @@ -1,18457 +0,0 @@ -{ - "name": "maplibre-custom-layer", - "version": "0.0.0", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "maplibre-custom-layer", - "version": "0.0.0", - "license": "MIT", - "dependencies": { - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.19.6", - "@babel/preset-env": "^7.20.2", - "@loaders.gl/csv": "^3.2.10", - "@loaders.gl/json": "^3.2.13", - "d3-request": "^1.0.5", - "d3-scale": "^2.0.0", - "deck.gl": "^8.8.0", - "maplibre-gl": "^2.4.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "react-map-gl": "^7.0.16" - }, - "devDependencies": { - "@babel/core": "^7.4.0", - "@babel/preset-react": "^7.0.0", - "babel-loader": "^8.0.5", - "webpack": "^4.20.2", - "webpack-cli": "^3.1.2", - "webpack-dev-server": "^3.1.1" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", - "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", - "dependencies": { - "@jridgewell/gen-mapping": "^0.1.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "dependencies": { - "@babel/highlight": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.20.14", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.14.tgz", - "integrity": "sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.20.12", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz", - "integrity": "sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==", - "dependencies": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.7", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helpers": "^7.20.7", - "@babel/parser": "^7.20.7", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.12", - "@babel/types": "^7.20.7", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/generator": { - "version": "7.20.14", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.14.tgz", - "integrity": "sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==", - "dependencies": { - "@babel/types": "^7.20.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", - "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", - "dependencies": { - "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz", - "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==", - "dependencies": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-validator-option": "^7.18.6", - "browserslist": "^4.21.3", - "lru-cache": "^5.1.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.20.12", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz", - "integrity": "sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-member-expression-to-functions": "^7.20.7", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.20.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/helper-split-export-declaration": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz", - "integrity": "sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "regexpu-core": "^5.2.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", - "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", - "dependencies": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0-0" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", - "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-explode-assignable-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", - "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", - "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", - "dependencies": { - "@babel/template": "^7.18.10", - "@babel/types": "^7.19.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz", - "integrity": "sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==", - "dependencies": { - "@babel/types": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", - "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz", - "integrity": "sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.20.2", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.10", - "@babel/types": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", - "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", - "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", - "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-wrap-function": "^7.18.9", - "@babel/types": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz", - "integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-member-expression-to-functions": "^7.20.7", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.7", - "@babel/types": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", - "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", - "dependencies": { - "@babel/types": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", - "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", - "dependencies": { - "@babel/types": "^7.20.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.19.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", - "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", - "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-wrap-function": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", - "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", - "dependencies": { - "@babel/helper-function-name": "^7.19.0", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.5", - "@babel/types": "^7.20.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.13.tgz", - "integrity": "sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==", - "dependencies": { - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.13", - "@babel/types": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.20.15", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.15.tgz", - "integrity": "sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", - "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz", - "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-proposal-optional-chaining": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" - } - }, - "node_modules/@babel/plugin-proposal-async-generator-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", - "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9", - "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-class-static-block": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz", - "integrity": "sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" - } - }, - "node_modules/@babel/plugin-proposal-dynamic-import": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", - "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", - "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-json-strings": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", - "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", - "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-numeric-separator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", - "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", - "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", - "dependencies": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-optional-catch-binding": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", - "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-optional-chaining": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz", - "integrity": "sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-private-methods": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", - "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz", - "integrity": "sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.20.5", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", - "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", - "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz", - "integrity": "sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", - "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", - "dependencies": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", - "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.20.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.15.tgz", - "integrity": "sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz", - "integrity": "sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-replace-supers": "^7.20.7", - "@babel/helper-split-export-declaration": "^7.18.6", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz", - "integrity": "sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/template": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz", - "integrity": "sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", - "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", - "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", - "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", - "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", - "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-function-name": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", - "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", - "dependencies": { - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-function-name": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-literals": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", - "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", - "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz", - "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==", - "dependencies": { - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz", - "integrity": "sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==", - "dependencies": { - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-simple-access": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz", - "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==", - "dependencies": { - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-identifier": "^7.19.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", - "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", - "dependencies": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", - "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.20.5", - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-new-target": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", - "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-super": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", - "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-parameters": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz", - "integrity": "sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", - "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", - "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.13.tgz", - "integrity": "sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-jsx": "^7.18.6", - "@babel/types": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-development": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", - "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", - "dev": true, - "dependencies": { - "@babel/plugin-transform-react-jsx": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-pure-annotations": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", - "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz", - "integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "regenerator-transform": "^0.15.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", - "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-runtime": { - "version": "7.19.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz", - "integrity": "sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==", - "dependencies": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.19.0", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", - "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz", - "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", - "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", - "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", - "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", - "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", - "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-env": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz", - "integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==", - "dependencies": { - "@babel/compat-data": "^7.20.1", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-async-generator-functions": "^7.20.1", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-class-static-block": "^7.18.6", - "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.9", - "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.20.2", - "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/plugin-proposal-private-property-in-object": "^7.18.6", - "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.20.0", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.18.6", - "@babel/plugin-transform-async-to-generator": "^7.18.6", - "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.20.2", - "@babel/plugin-transform-classes": "^7.20.2", - "@babel/plugin-transform-computed-properties": "^7.18.9", - "@babel/plugin-transform-destructuring": "^7.20.2", - "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.9", - "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.18.8", - "@babel/plugin-transform-function-name": "^7.18.9", - "@babel/plugin-transform-literals": "^7.18.9", - "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.19.6", - "@babel/plugin-transform-modules-commonjs": "^7.19.6", - "@babel/plugin-transform-modules-systemjs": "^7.19.6", - "@babel/plugin-transform-modules-umd": "^7.18.6", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", - "@babel/plugin-transform-new-target": "^7.18.6", - "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.20.1", - "@babel/plugin-transform-property-literals": "^7.18.6", - "@babel/plugin-transform-regenerator": "^7.18.6", - "@babel/plugin-transform-reserved-words": "^7.18.6", - "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.19.0", - "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.9", - "@babel/plugin-transform-typeof-symbol": "^7.18.9", - "@babel/plugin-transform-unicode-escapes": "^7.18.10", - "@babel/plugin-transform-unicode-regex": "^7.18.6", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.20.2", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "core-js-compat": "^3.25.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-react": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", - "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-react-display-name": "^7.18.6", - "@babel/plugin-transform-react-jsx": "^7.18.6", - "@babel/plugin-transform-react-jsx-development": "^7.18.6", - "@babel/plugin-transform-react-pure-annotations": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" - }, - "node_modules/@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", - "dependencies": { - "regenerator-runtime": "^0.13.11" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", - "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.13.tgz", - "integrity": "sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==", - "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.7", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.20.13", - "@babel/types": "^7.20.7", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz", - "integrity": "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==", - "dependencies": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@deck.gl/aggregation-layers": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/aggregation-layers/-/aggregation-layers-8.8.24.tgz", - "integrity": "sha512-Cqd8lD5wtDrsYHHha0wVD4RY0A7/KbmdK/7Cl+gBYP9Nf2ERE65IqXSlsijvtT3a4fi++c3doosKMSDYy08nEw==", - "dependencies": { - "@luma.gl/constants": "^8.5.16", - "@luma.gl/shadertools": "^8.5.16", - "@math.gl/web-mercator": "^3.6.2", - "d3-hexbin": "^0.2.1" - }, - "peerDependencies": { - "@deck.gl/core": "^8.0.0", - "@deck.gl/layers": "^8.0.0", - "@luma.gl/core": "^8.0.0" - } - }, - "node_modules/@deck.gl/carto": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/carto/-/carto-8.8.24.tgz", - "integrity": "sha512-vRD0GNftnxfMal2ia7OyaterFY2aZtaYdGPnWV8RL205D2pTR4ZeNX//bQEvovLK5TJG7+kQgopaALDQN1+aBQ==", - "dependencies": { - "@loaders.gl/gis": "^3.2.10", - "@loaders.gl/loader-utils": "^3.2.10", - "@loaders.gl/mvt": "^3.2.10", - "@loaders.gl/tiles": "^3.2.10", - "@luma.gl/constants": "^8.5.16", - "@math.gl/web-mercator": "^3.6.2", - "cartocolor": "^4.0.2", - "d3-array": "^3.2.0", - "d3-color": "^3.1.0", - "d3-format": "^3.1.0", - "d3-scale": "^4.0.0", - "h3-js": "^3.7.0", - "moment-timezone": "^0.5.33", - "pbf": "^3.2.1", - "quadbin": "^0.1.2" - }, - "peerDependencies": { - "@deck.gl/aggregation-layers": "^8.0.0", - "@deck.gl/core": "^8.0.0", - "@deck.gl/extensions": "^8.0.0", - "@deck.gl/geo-layers": "^8.0.0", - "@deck.gl/layers": "^8.0.0", - "@loaders.gl/core": "^3.0.0" - } - }, - "node_modules/@deck.gl/carto/node_modules/d3-array": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.2.tgz", - "integrity": "sha512-yEEyEAbDrF8C6Ob2myOBLjwBLck1Z89jMGFee0oPsn95GqjerpaOA4ch+vc2l0FNFFwMD5N7OCSEN5eAlsUbgQ==", - "dependencies": { - "internmap": "1 - 2" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@deck.gl/carto/node_modules/d3-color": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", - "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/@deck.gl/carto/node_modules/d3-format": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", - "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/@deck.gl/carto/node_modules/d3-scale": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", - "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", - "dependencies": { - "d3-array": "2.10.0 - 3", - "d3-format": "1 - 3", - "d3-interpolate": "1.2.0 - 3", - "d3-time": "2.1.1 - 3", - "d3-time-format": "2 - 4" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@deck.gl/carto/node_modules/d3-time": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", - "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", - "dependencies": { - "d3-array": "2 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@deck.gl/core": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/core/-/core-8.8.24.tgz", - "integrity": "sha512-/W1ldv80UkFb+V0AEpcJcjSWANV9iWeMZgiLdnZbmttahSB1poWg2K8TxEYSwKJipSzA/e43iJjOYbaa7Yfs5g==", - "dependencies": { - "@loaders.gl/core": "^3.2.10", - "@loaders.gl/images": "^3.2.10", - "@luma.gl/constants": "^8.5.16", - "@luma.gl/core": "^8.5.16", - "@math.gl/core": "^3.6.2", - "@math.gl/sun": "^3.6.2", - "@math.gl/web-mercator": "^3.6.2", - "@probe.gl/env": "^3.5.0", - "@probe.gl/log": "^3.5.0", - "@probe.gl/stats": "^3.5.0", - "gl-matrix": "^3.0.0", - "math.gl": "^3.6.2", - "mjolnir.js": "^2.7.0" - } - }, - "node_modules/@deck.gl/extensions": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/extensions/-/extensions-8.8.24.tgz", - "integrity": "sha512-mBZvxMxP5Et69nW7ZKxLWYSWYvdWEsA+nikA+n3Z6Jb8kZsZWCEFFqp6CeJ8vZ9d6eNiZMQMOUyxGLEFhil+Eg==", - "dependencies": { - "@luma.gl/shadertools": "^8.5.16" - }, - "peerDependencies": { - "@deck.gl/core": "^8.0.0", - "@luma.gl/constants": "^8.0.0", - "@luma.gl/core": "^8.0.0", - "gl-matrix": "^3.0.0" - } - }, - "node_modules/@deck.gl/geo-layers": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/geo-layers/-/geo-layers-8.8.24.tgz", - "integrity": "sha512-c9mkBQtCHPI7o6QxhWmA6l5XkqhnbgoMhJSnHUgoCkMNuWbSAzTC5YLbqVLbTylIGHwTxeFNjr9AIWehwkPvqQ==", - "dependencies": { - "@loaders.gl/3d-tiles": "^3.2.10", - "@loaders.gl/gis": "^3.2.10", - "@loaders.gl/loader-utils": "^3.2.10", - "@loaders.gl/mvt": "^3.2.10", - "@loaders.gl/schema": "^3.2.10", - "@loaders.gl/terrain": "^3.2.10", - "@loaders.gl/tiles": "^3.2.10", - "@luma.gl/constants": "^8.5.16", - "@luma.gl/experimental": "^8.5.16", - "@math.gl/core": "^3.6.2", - "@math.gl/culling": "^3.6.2", - "@math.gl/web-mercator": "^3.6.2", - "@types/geojson": "^7946.0.8", - "h3-js": "^3.7.0", - "long": "^3.2.0" - }, - "peerDependencies": { - "@deck.gl/core": "^8.0.0", - "@deck.gl/extensions": "^8.0.0", - "@deck.gl/layers": "^8.0.0", - "@deck.gl/mesh-layers": "^8.0.0", - "@loaders.gl/core": "^3.0.0", - "@luma.gl/core": "^8.0.0" - } - }, - "node_modules/@deck.gl/google-maps": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/google-maps/-/google-maps-8.8.24.tgz", - "integrity": "sha512-GUHIKycVgTsSD3ej49U1r+CjpjAv2IszzkMMysYxSKWBsUklyosN2XZRoKuQWFmhowUhuwPlKliXHj/QAOcYAw==", - "peerDependencies": { - "@deck.gl/core": "^8.0.0", - "@luma.gl/constants": "^8.5.16", - "@luma.gl/core": "^8.5.16", - "@math.gl/core": "^3.6.0" - } - }, - "node_modules/@deck.gl/json": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/json/-/json-8.8.24.tgz", - "integrity": "sha512-H3uP9544O3NNnn10vjz5fU2mSldOUWTokwBz+uZNSJNFCK5zxO1+E5lR6xBXAAa4SlfuANvMT0aRQwDnekv0MQ==", - "dependencies": { - "d3-dsv": "^1.0.8", - "expression-eval": "^2.0.0" - }, - "peerDependencies": { - "@deck.gl/core": "^8.0.0" - } - }, - "node_modules/@deck.gl/layers": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/layers/-/layers-8.8.24.tgz", - "integrity": "sha512-t8o23fUSmS34YVs0fGvp4d0Et6iJo6O7hRpdGf49WyOL+yBsywOanFGdAcxW84HA4cPngHHvfLplF2Gx/qeUow==", - "dependencies": { - "@loaders.gl/images": "^3.2.10", - "@loaders.gl/schema": "^3.2.10", - "@luma.gl/constants": "^8.5.16", - "@mapbox/tiny-sdf": "^1.1.0", - "@math.gl/core": "^3.6.2", - "@math.gl/polygon": "^3.6.2", - "@math.gl/web-mercator": "^3.6.2", - "earcut": "^2.0.6" - }, - "peerDependencies": { - "@deck.gl/core": "^8.0.0", - "@loaders.gl/core": "^3.0.0", - "@luma.gl/core": "^8.0.0" - } - }, - "node_modules/@deck.gl/mapbox": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/mapbox/-/mapbox-8.8.24.tgz", - "integrity": "sha512-yJnt2sNbE7EeNstfh0G6yLz5owNT5GzHZE8JroHljVaoftBzWrh/ERf97akcxevCFXR6TIBoBUzx4Yip23incg==", - "dependencies": { - "@types/mapbox-gl": "^2.6.3" - }, - "peerDependencies": { - "@deck.gl/core": "^8.0.0" - } - }, - "node_modules/@deck.gl/mesh-layers": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/mesh-layers/-/mesh-layers-8.8.24.tgz", - "integrity": "sha512-HsFTU7cX1hcBmQu5s9cNBkQQ1v0ESVSnx5C9eOUI8lWlpw8n6pq3+DFXdS3lhYmusitUGV/BWuCJbUbQS8HJjw==", - "dependencies": { - "@loaders.gl/gltf": "^3.2.10", - "@luma.gl/constants": "^8.5.16", - "@luma.gl/experimental": "^8.5.16", - "@luma.gl/shadertools": "^8.5.16" - }, - "peerDependencies": { - "@deck.gl/core": "^8.0.0", - "@luma.gl/core": "^8.0.0" - } - }, - "node_modules/@deck.gl/react": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/react/-/react-8.8.24.tgz", - "integrity": "sha512-nj3nvjG9mS3Wkbm0GaHjw8o8ktaSCVMCPkbqemrGqrZrUPR3Af0q8HAOjVL3ScTDLPZI8yanirj61EypYyzRzQ==", - "peerDependencies": { - "@deck.gl/core": "^8.0.0", - "@types/react": ">= 16.3", - "react": ">=16.3", - "react-dom": ">=16.3" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", - "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", - "dependencies": { - "@jridgewell/set-array": "^1.0.0", - "@jridgewell/sourcemap-codec": "^1.4.10" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", - "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "node_modules/@loaders.gl/3d-tiles": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/3d-tiles/-/3d-tiles-3.2.13.tgz", - "integrity": "sha512-e9LLOBMupbdhApbTJQZ0IPNWVX0ybTYKlVBu8QpdlK0PgRnrZymXScaD46RusUlg4Jmh2VjnSch7pB1yvx2xvg==", - "dependencies": { - "@loaders.gl/draco": "3.2.13", - "@loaders.gl/gltf": "3.2.13", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/math": "3.2.13", - "@loaders.gl/tiles": "3.2.13", - "@math.gl/core": "^3.5.1", - "@math.gl/geospatial": "^3.5.1" - }, - "peerDependencies": { - "@loaders.gl/core": "^3.2.0" - } - }, - "node_modules/@loaders.gl/core": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/core/-/core-3.2.13.tgz", - "integrity": "sha512-vkrjlsqJvXGuS3WyhNbQLASnRZUNIwA+oNQQx+d1qNU5sxVRcIRphBzWNOMmgzK+C/eYK/Set43TwsGaRRQuJA==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/worker-utils": "3.2.13", - "@probe.gl/log": "^3.5.0", - "probe.gl": "^3.4.0" - } - }, - "node_modules/@loaders.gl/csv": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/csv/-/csv-3.2.13.tgz", - "integrity": "sha512-VP0B7ZamEIc737HcUMoPlpfRsF6Z6bjD55pUhOdGwDpiup3uSoKXnykdlCPk39gcK2usOwEWvCfrBHAvwsKJ7w==", - "dependencies": { - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/schema": "3.2.13" - } - }, - "node_modules/@loaders.gl/draco": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/draco/-/draco-3.2.13.tgz", - "integrity": "sha512-r+dHWzRPd1cRP6vL2YFDsyJZQrbqp7J0iZEpGt1KEdjQmyxdtVZ23vSqhx4yUR9lcod6Yo/vqmrUXejki+/vUQ==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/schema": "3.2.13", - "@loaders.gl/worker-utils": "3.2.13", - "draco3d": "1.4.1" - } - }, - "node_modules/@loaders.gl/gis": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/gis/-/gis-3.2.13.tgz", - "integrity": "sha512-Po9u+iwkji84Pj7Vkdc6Lx1ePeG3ynHaDFQKXR8BLr2XcjZPhyFnUAaWgEFwckTMg/PhwG4NHJzYHq9ztMDPpA==", - "dependencies": { - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/schema": "3.2.13", - "@mapbox/vector-tile": "^1.3.1", - "@math.gl/polygon": "^3.5.1", - "pbf": "^3.2.1" - } - }, - "node_modules/@loaders.gl/gltf": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/gltf/-/gltf-3.2.13.tgz", - "integrity": "sha512-S+K7MNWxpWqpypITD4B8ycYtX9bRbcLGDafs9j+B5g0EadElvRcrHalvC2KsSkmNajyBKmlxFk2BoN0thzeQbw==", - "dependencies": { - "@loaders.gl/draco": "3.2.13", - "@loaders.gl/images": "3.2.13", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/textures": "3.2.13" - } - }, - "node_modules/@loaders.gl/images": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/images/-/images-3.2.13.tgz", - "integrity": "sha512-s3aPA/gQH30MaUexlw5HqYA5Zl59yPgO4lZP9YM5s9tb42Mj1IZ6seImOiHHDihAmoUj6NBPLSFVrxq99Qz4Hg==", - "dependencies": { - "@loaders.gl/loader-utils": "3.2.13" - } - }, - "node_modules/@loaders.gl/json": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/json/-/json-3.2.13.tgz", - "integrity": "sha512-Wi97qjvDrXML1cr6Sw0sdFNjRVN7L5M5GLExKFjth7gED3KX4iUpNFVM9P941ZjT9cSIdGmktbVvIaWHmXaUSw==", - "dependencies": { - "@loaders.gl/gis": "3.2.13", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/schema": "3.2.13" - } - }, - "node_modules/@loaders.gl/loader-utils": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/loader-utils/-/loader-utils-3.2.13.tgz", - "integrity": "sha512-ldQUYvKBYGQaQM7hJClXBTv64jWLkabW0Ilb6Yz9bJ6Km04+3VyvSXwTn9GMYdadzH0Txs5kMiQygOU3oekcew==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "@loaders.gl/worker-utils": "3.2.13", - "@probe.gl/stats": "^3.5.0" - } - }, - "node_modules/@loaders.gl/math": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/math/-/math-3.2.13.tgz", - "integrity": "sha512-vXuib466Q7MWqhQ7YiP9irOpNHA2IqKM1fa+/YE09ROg6g0JDDir2YKZCtsmfN/mOSzX3FxsewDzGJqear6VsQ==", - "dependencies": { - "@loaders.gl/images": "3.2.13", - "@loaders.gl/loader-utils": "3.2.13", - "@math.gl/core": "^3.5.1" - } - }, - "node_modules/@loaders.gl/mvt": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/mvt/-/mvt-3.2.13.tgz", - "integrity": "sha512-JoPx0p2J+TDfYZXSeoLmy7WgLO6fn0Fjf0GowrvH+ntt+vMtUNgNBlCTX7tpauqKk6+1FaQlu2aMuYiwMwcCnA==", - "dependencies": { - "@loaders.gl/gis": "3.2.13", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/schema": "3.2.13", - "@math.gl/polygon": "^3.5.1", - "pbf": "^3.2.1" - } - }, - "node_modules/@loaders.gl/schema": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/schema/-/schema-3.2.13.tgz", - "integrity": "sha512-hXtml5wJKapHxIEW2mV391oBBKtKjF5X+uP9DhqtZxwXPcOC4Yb93ssFL33YvJWGG+Vfvllpy6ispoR2LAx9+g==", - "dependencies": { - "@types/geojson": "^7946.0.7", - "apache-arrow": "^4.0.0" - } - }, - "node_modules/@loaders.gl/terrain": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/terrain/-/terrain-3.2.13.tgz", - "integrity": "sha512-rvlsPT6+94AZryoxRl1QEmyOrdYkfnjJUtNMKmZip73XjquKnJJ795zjlzo73DghK3KwZc/8vgrkuE/3z8oWJQ==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/schema": "3.2.13", - "@mapbox/martini": "^0.2.0" - } - }, - "node_modules/@loaders.gl/textures": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/textures/-/textures-3.2.13.tgz", - "integrity": "sha512-e5KcKdMy1mhNdBWcNKtOLMxd7z9/tDI4/87rD3GRTUFvdPtODhdKFGT8KprCupQu0Ob/1RKr78UZ3XFnU8C6Cw==", - "dependencies": { - "@loaders.gl/images": "3.2.13", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/schema": "3.2.13", - "@loaders.gl/worker-utils": "3.2.13", - "ktx-parse": "^0.0.4", - "texture-compressor": "^1.0.2" - } - }, - "node_modules/@loaders.gl/tiles": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/tiles/-/tiles-3.2.13.tgz", - "integrity": "sha512-Obr3gugRcmn68S5ekDp+ZjvE/JOhnr0RCDN3R0p40whV0fuoe8kVcsUVoR2zqccvpcxeBeUMEyRk+3xLtnR/eQ==", - "dependencies": { - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/math": "3.2.13", - "@math.gl/core": "^3.5.1", - "@math.gl/culling": "^3.5.1", - "@math.gl/geospatial": "^3.5.1", - "@math.gl/web-mercator": "^3.5.1", - "@probe.gl/stats": "^3.5.0" - }, - "peerDependencies": { - "@loaders.gl/core": "^3.2.0" - } - }, - "node_modules/@loaders.gl/worker-utils": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/worker-utils/-/worker-utils-3.2.13.tgz", - "integrity": "sha512-YgF7JC7lFY/+ykSrVSrnt3erPXQWjewu6Vl8PBh96ehMCi7zeI6167zQt3hfyJHrLcBojNUZY45UoxzqWdUwAA==", - "dependencies": { - "@babel/runtime": "^7.3.1" - } - }, - "node_modules/@luma.gl/constants": { - "version": "8.5.18", - "resolved": "https://registry.npmjs.org/@luma.gl/constants/-/constants-8.5.18.tgz", - "integrity": "sha512-lQLGAlroQaeJkAUwrb1fRiHlMBP9/ukyjnZ1QlYgXYyeC7/9XhLx4rqBlOzQ2sxcTHHwi73nHD0P2XmVuAccBg==" - }, - "node_modules/@luma.gl/core": { - "version": "8.5.18", - "resolved": "https://registry.npmjs.org/@luma.gl/core/-/core-8.5.18.tgz", - "integrity": "sha512-XvxE2WE9jFEweJftczQ4QPd8FD23H8mWJoQej7llnyta0Xqb18Cx2VOzuyQ4uN7Uab42YkwXTu25uAq0SdAehA==", - "dependencies": { - "@babel/runtime": "^7.0.0", - "@luma.gl/constants": "8.5.18", - "@luma.gl/engine": "8.5.18", - "@luma.gl/gltools": "8.5.18", - "@luma.gl/shadertools": "8.5.18", - "@luma.gl/webgl": "8.5.18" - } - }, - "node_modules/@luma.gl/engine": { - "version": "8.5.18", - "resolved": "https://registry.npmjs.org/@luma.gl/engine/-/engine-8.5.18.tgz", - "integrity": "sha512-hLdtEPk3yt8ikL3g9qVc5FuMPMdhnj1ykPgmG6Mh4lRlCProgGSlwqWuAkzPYwYqIBqKlPNMv8DavRfsKAKc3g==", - "dependencies": { - "@babel/runtime": "^7.0.0", - "@luma.gl/constants": "8.5.18", - "@luma.gl/gltools": "8.5.18", - "@luma.gl/shadertools": "8.5.18", - "@luma.gl/webgl": "8.5.18", - "@math.gl/core": "^3.5.0", - "@probe.gl/env": "^3.5.0", - "@probe.gl/stats": "^3.5.0", - "@types/offscreencanvas": "^2019.7.0" - } - }, - "node_modules/@luma.gl/experimental": { - "version": "8.5.18", - "resolved": "https://registry.npmjs.org/@luma.gl/experimental/-/experimental-8.5.18.tgz", - "integrity": "sha512-Bw8mwO3NVYGwzYr1Edl4LVbT7JORIpymdXpmmoqP9SpWAh5HJmNSS8wt1FDaQGVCgSA/5QpmmZb1NjIKX4B40g==", - "dependencies": { - "@luma.gl/constants": "8.5.18", - "@math.gl/core": "^3.5.0", - "earcut": "^2.0.6" - }, - "peerDependencies": { - "@loaders.gl/gltf": "^3.0.0", - "@loaders.gl/images": "^3.0.0", - "@luma.gl/engine": "^8.4.0", - "@luma.gl/gltools": "^8.4.0", - "@luma.gl/shadertools": "^8.4.0", - "@luma.gl/webgl": "^8.4.0" - } - }, - "node_modules/@luma.gl/gltools": { - "version": "8.5.18", - "resolved": "https://registry.npmjs.org/@luma.gl/gltools/-/gltools-8.5.18.tgz", - "integrity": "sha512-AnZ8fxsJz/wRdUJazsFvTXbh8ypYX9rATPJj8YlDv08DGGFTQiq8MurzbEjXaEYshAu5w9rXd22nQXkQziUhmQ==", - "dependencies": { - "@babel/runtime": "^7.0.0", - "@luma.gl/constants": "8.5.18", - "@probe.gl/env": "^3.5.0", - "@probe.gl/log": "^3.5.0", - "@types/offscreencanvas": "^2019.7.0" - } - }, - "node_modules/@luma.gl/shadertools": { - "version": "8.5.18", - "resolved": "https://registry.npmjs.org/@luma.gl/shadertools/-/shadertools-8.5.18.tgz", - "integrity": "sha512-orkdnlVLB8AO4yf9jXXZqEG/UuwVg/v3Gmo4/F2vdrwkUMN+wUZFUdhssDGEGWvuauZWK9Mbz8XrxC0gmLbWzw==", - "dependencies": { - "@babel/runtime": "^7.0.0", - "@math.gl/core": "^3.5.0" - } - }, - "node_modules/@luma.gl/webgl": { - "version": "8.5.18", - "resolved": "https://registry.npmjs.org/@luma.gl/webgl/-/webgl-8.5.18.tgz", - "integrity": "sha512-8pRMq4olLzEv7ToDtCagGDklkIu1iFFBEXT4Rh11ohrfUiDAPfGz5hJrr3m0XtsVfS1CQ5QPWN2tQclmXOL+cQ==", - "dependencies": { - "@babel/runtime": "^7.0.0", - "@luma.gl/constants": "8.5.18", - "@luma.gl/gltools": "8.5.18", - "@probe.gl/env": "^3.5.0", - "@probe.gl/stats": "^3.5.0" - } - }, - "node_modules/@mapbox/geojson-rewind": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz", - "integrity": "sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==", - "dependencies": { - "get-stream": "^6.0.1", - "minimist": "^1.2.6" - }, - "bin": { - "geojson-rewind": "geojson-rewind" - } - }, - "node_modules/@mapbox/geojson-types": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz", - "integrity": "sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw==", - "peer": true - }, - "node_modules/@mapbox/jsonlint-lines-primitives": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz", - "integrity": "sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@mapbox/mapbox-gl-supported": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.5.0.tgz", - "integrity": "sha512-/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg==", - "peer": true, - "peerDependencies": { - "mapbox-gl": ">=0.32.1 <2.0.0" - } - }, - "node_modules/@mapbox/martini": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@mapbox/martini/-/martini-0.2.0.tgz", - "integrity": "sha512-7hFhtkb0KTLEls+TRw/rWayq5EeHtTaErgm/NskVoXmtgAQu/9D299aeyj6mzAR/6XUnYRp2lU+4IcrYRFjVsQ==" - }, - "node_modules/@mapbox/point-geometry": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz", - "integrity": "sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ==" - }, - "node_modules/@mapbox/tile-cover": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@mapbox/tile-cover/-/tile-cover-3.0.2.tgz", - "integrity": "sha512-A6qvtttsYI66BYi8JMD0v7BzxeuXJf6qSzufmdvvYxDJyXqATZ7ig6OKHFCW7/OsUjpfFu3rB54JM/yHUOVB9g==", - "dependencies": { - "@mapbox/tilebelt": "^1.0.1" - } - }, - "node_modules/@mapbox/tilebelt": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@mapbox/tilebelt/-/tilebelt-1.0.2.tgz", - "integrity": "sha512-tGJN2VIgWrXqBTPIxFVklklIpcy6ss8W5ouq+cjNLXPXFraRaDR4Ice+5Q8/uLX+6aH23lWBMydOIn8PcdVcpA==" - }, - "node_modules/@mapbox/tiny-sdf": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-1.2.5.tgz", - "integrity": "sha512-cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw==" - }, - "node_modules/@mapbox/unitbezier": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz", - "integrity": "sha512-HPnRdYO0WjFjRTSwO3frz1wKaU649OBFPX3Zo/2WZvuRi6zMiRGui8SnPQiQABgqCf8YikDe5t3HViTVw1WUzA==", - "peer": true - }, - "node_modules/@mapbox/vector-tile": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz", - "integrity": "sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==", - "dependencies": { - "@mapbox/point-geometry": "~0.1.0" - } - }, - "node_modules/@mapbox/whoots-js": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz", - "integrity": "sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@math.gl/core": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-3.6.3.tgz", - "integrity": "sha512-jBABmDkj5uuuE0dTDmwwss7Cup5ZwQ6Qb7h1pgvtkEutTrhkcv8SuItQNXmF45494yIHeoGue08NlyeY6wxq2A==", - "dependencies": { - "@babel/runtime": "^7.12.0", - "@math.gl/types": "3.6.3", - "gl-matrix": "^3.4.0" - } - }, - "node_modules/@math.gl/culling": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/culling/-/culling-3.6.3.tgz", - "integrity": "sha512-3UERXHbaPlM6pnTk2MI7LeQ5CoelDZzDzghTTcv+HdQCZsT/EOEuEdYimETHtSxiyiOmsX2Un65UBLYT/rbKZg==", - "dependencies": { - "@babel/runtime": "^7.12.0", - "@math.gl/core": "3.6.3", - "gl-matrix": "^3.4.0" - } - }, - "node_modules/@math.gl/geospatial": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/geospatial/-/geospatial-3.6.3.tgz", - "integrity": "sha512-6xf657lJnaecSarSzn02t0cnsCSkWb+39m4+im96v20dZTrLCWZ2glDQVzfuL91meDnDXjH4oyvynp12Mj5MFg==", - "dependencies": { - "@babel/runtime": "^7.12.0", - "@math.gl/core": "3.6.3", - "gl-matrix": "^3.4.0" - } - }, - "node_modules/@math.gl/polygon": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/polygon/-/polygon-3.6.3.tgz", - "integrity": "sha512-FivQ1ZnYcAss1wVifOkHP/ZnlfQy1IL/769uzNtiHxwUbW0kZG3yyOZ9I7fwyzR5Hvqt3ErJKHjSYZr0uVlz5g==", - "dependencies": { - "@math.gl/core": "3.6.3" - } - }, - "node_modules/@math.gl/sun": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/sun/-/sun-3.6.3.tgz", - "integrity": "sha512-mrx6CGYYeTNSQttvcw0KVUy+35YDmnjMqpO/o0t06Vcghrt0HNruB/ScRgUSbJrgkbOg1Vcqm23HBd++clzQzw==", - "dependencies": { - "@babel/runtime": "^7.12.0" - } - }, - "node_modules/@math.gl/types": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/types/-/types-3.6.3.tgz", - "integrity": "sha512-3uWLVXHY3jQxsXCr/UCNPSc2BG0hNUljhmOBt9l+lNFDp7zHgm0cK2Tw4kj2XfkJy4TgwZTBGwRDQgWEbLbdTA==" - }, - "node_modules/@math.gl/web-mercator": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/web-mercator/-/web-mercator-3.6.3.tgz", - "integrity": "sha512-UVrkSOs02YLehKaehrxhAejYMurehIHPfFQvPFZmdJHglHOU4V2cCUApTVEwOksvCp161ypEqVp+9H6mGhTTcw==", - "dependencies": { - "@babel/runtime": "^7.12.0", - "gl-matrix": "^3.4.0" - } - }, - "node_modules/@probe.gl/env": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/@probe.gl/env/-/env-3.6.0.tgz", - "integrity": "sha512-4tTZYUg/8BICC3Yyb9rOeoKeijKbZHRXBEKObrfPmX4sQmYB15ZOUpoVBhAyJkOYVAM8EkPci6Uw5dLCwx2BEQ==", - "dependencies": { - "@babel/runtime": "^7.0.0" - } - }, - "node_modules/@probe.gl/log": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/@probe.gl/log/-/log-3.6.0.tgz", - "integrity": "sha512-hjpyenpEvOdowgZ1qMeCJxfRD4JkKdlXz0RC14m42Un62NtOT+GpWyKA4LssT0+xyLULCByRAtG2fzZorpIAcA==", - "dependencies": { - "@babel/runtime": "^7.0.0", - "@probe.gl/env": "3.6.0" - } - }, - "node_modules/@probe.gl/stats": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/@probe.gl/stats/-/stats-3.6.0.tgz", - "integrity": "sha512-JdALQXB44OP4kUBN/UrQgzbJe4qokbVF4Y8lkIA8iVCFnjVowWIgkD/z/0QO65yELT54tTrtepw1jScjKB+rhQ==", - "dependencies": { - "@babel/runtime": "^7.0.0" - } - }, - "node_modules/@types/flatbuffers": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/@types/flatbuffers/-/flatbuffers-1.10.0.tgz", - "integrity": "sha512-7btbphLrKvo5yl/5CC2OCxUSMx1wV1wvGT1qDXkSt7yi00/YW7E8k6qzXqJHsp+WU0eoG7r6MTQQXI9lIvd0qA==" - }, - "node_modules/@types/geojson": { - "version": "7946.0.10", - "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz", - "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==" - }, - "node_modules/@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", - "dev": true, - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "node_modules/@types/hammerjs": { - "version": "2.0.41", - "resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.41.tgz", - "integrity": "sha512-ewXv/ceBaJprikMcxCmWU1FKyMAQ2X7a9Gtmzw8fcg2kIePI1crERDM818W+XYrxqdBBOdlf2rm137bU+BltCA==" - }, - "node_modules/@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", - "dev": true - }, - "node_modules/@types/mapbox__point-geometry": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.2.tgz", - "integrity": "sha512-D0lgCq+3VWV85ey1MZVkE8ZveyuvW5VAfuahVTQRpXFQTxw03SuIf1/K4UQ87MMIXVKzpFjXFiFMZzLj2kU+iA==" - }, - "node_modules/@types/mapbox__vector-tile": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@types/mapbox__vector-tile/-/mapbox__vector-tile-1.3.0.tgz", - "integrity": "sha512-kDwVreQO5V4c8yAxzZVQLE5tyWF+IPToAanloQaSnwfXmIcJ7cyOrv8z4Ft4y7PsLYmhWXmON8MBV8RX0Rgr8g==", - "dependencies": { - "@types/geojson": "*", - "@types/mapbox__point-geometry": "*", - "@types/pbf": "*" - } - }, - "node_modules/@types/mapbox-gl": { - "version": "2.7.10", - "resolved": "https://registry.npmjs.org/@types/mapbox-gl/-/mapbox-gl-2.7.10.tgz", - "integrity": "sha512-nMVEcu9bAcenvx6oPWubQSPevsekByjOfKjlkr+8P91vawtkxTnopDoXXq1Qn/f4cg3zt0Z2W9DVsVsKRNXJTw==", - "dependencies": { - "@types/geojson": "*" - } - }, - "node_modules/@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true - }, - "node_modules/@types/node": { - "version": "14.18.36", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.36.tgz", - "integrity": "sha512-FXKWbsJ6a1hIrRxv+FoukuHnGTgEzKYGi7kilfMae96AL9UNkPFNWJEEYWzdRI9ooIkbr4AKldyuSTLql06vLQ==" - }, - "node_modules/@types/offscreencanvas": { - "version": "2019.7.0", - "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.0.tgz", - "integrity": "sha512-PGcyveRIpL1XIqK8eBsmRBt76eFgtzuPiSTyKHZxnGemp2yzGzWpjYKAfK3wIMiU7eH+851yEpiuP8JZerTmWg==" - }, - "node_modules/@types/pbf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/pbf/-/pbf-3.0.2.tgz", - "integrity": "sha512-EDrLIPaPXOZqDjrkzxxbX7UlJSeQVgah3i0aA4pOSzmK9zq3BIh7/MZIQxED7slJByvKM4Gc6Hypyu2lJzh3SQ==" - }, - "node_modules/@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", - "peer": true - }, - "node_modules/@types/react": { - "version": "18.0.28", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.28.tgz", - "integrity": "sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==", - "peer": true, - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/scheduler": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", - "peer": true - }, - "node_modules/@types/text-encoding-utf-8": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@types/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz", - "integrity": "sha512-AQ6zewa0ucLJvtUi5HsErbOFKAcQfRLt9zFLlUOvcXBy2G36a+ZDpCHSGdzJVUD8aNURtIjh9aSjCStNMRCcRQ==" - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", - "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", - "dev": true, - "dependencies": { - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0" - } - }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", - "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", - "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", - "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-code-frame": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", - "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", - "dev": true, - "dependencies": { - "@webassemblyjs/wast-printer": "1.9.0" - } - }, - "node_modules/@webassemblyjs/helper-fsm": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", - "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-module-context": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", - "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.9.0" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", - "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", - "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0" - } - }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", - "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", - "dev": true, - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", - "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", - "dev": true, - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", - "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", - "dev": true - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", - "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/helper-wasm-section": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-opt": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "@webassemblyjs/wast-printer": "1.9.0" - } - }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", - "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", - "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", - "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" - } - }, - "node_modules/@webassemblyjs/wast-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", - "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/floating-point-hex-parser": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-code-frame": "1.9.0", - "@webassemblyjs/helper-fsm": "1.9.0", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", - "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true - }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dev": true, - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/acorn": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", - "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-errors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", - "dev": true, - "peerDependencies": { - "ajv": ">=5.0.0" - } - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/ansi-colors": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", - "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", - "dev": true, - "engines": [ - "node >= 0.8.0" - ], - "bin": { - "ansi-html": "bin/ansi-html" - } - }, - "node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "optional": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/apache-arrow": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/apache-arrow/-/apache-arrow-4.0.1.tgz", - "integrity": "sha512-DyF7GXCbSjsw4P5C8b+qW7OnJKa6w9mJI0mhV0+EfZbVZCmhfiF6ffqcnrI/kzBrRqn9hH/Ft9n5+m4DTbBJpg==", - "dependencies": { - "@types/flatbuffers": "^1.10.0", - "@types/node": "^14.14.37", - "@types/text-encoding-utf-8": "^1.0.1", - "command-line-args": "5.1.1", - "command-line-usage": "6.1.1", - "flatbuffers": "1.12.0", - "json-bignum": "^0.0.3", - "pad-left": "^2.1.0", - "text-encoding-utf-8": "^1.0.2", - "tslib": "^2.2.0" - }, - "bin": { - "arrow2csv": "bin/arrow2csv.js" - } - }, - "node_modules/aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "dev": true - }, - "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-back": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", - "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==", - "engines": { - "node": ">=6" - } - }, - "node_modules/array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", - "dev": true - }, - "node_modules/array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", - "dev": true, - "dependencies": { - "array-uniq": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", - "dev": true, - "dependencies": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/asn1.js/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - }, - "node_modules/assert": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", - "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", - "dev": true, - "dependencies": { - "object-assign": "^4.1.1", - "util": "0.10.3" - } - }, - "node_modules/assert/node_modules/inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==", - "dev": true - }, - "node_modules/assert/node_modules/util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==", - "dev": true, - "dependencies": { - "inherits": "2.0.1" - } - }, - "node_modules/assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", - "dev": true, - "dependencies": { - "lodash": "^4.17.14" - } - }, - "node_modules/async-each": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", - "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ] - }, - "node_modules/async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", - "dev": true - }, - "node_modules/atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "dev": true, - "bin": { - "atob": "bin/atob.js" - }, - "engines": { - "node": ">= 4.5.0" - } - }, - "node_modules/babel-loader": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", - "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", - "dev": true, - "dependencies": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^2.0.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - }, - "engines": { - "node": ">= 8.9" - }, - "peerDependencies": { - "@babel/core": "^7.0.0", - "webpack": ">=2" - } - }, - "node_modules/babel-loader/node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" - } - }, - "node_modules/babel-loader/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-loader/node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" - } - }, - "node_modules/babel-loader/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-loader/node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/babel-loader/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-loader/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-loader/node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-loader/node_modules/schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 8.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", - "dependencies": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dev": true, - "dependencies": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", - "dev": true - }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "optional": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dev": true, - "optional": true, - "dependencies": { - "file-uri-to-path": "1.0.0" - } - }, - "node_modules/bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", - "dev": true - }, - "node_modules/bn.js": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", - "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", - "dev": true - }, - "node_modules/body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "dev": true, - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/body-parser/node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/bonjour": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", - "dev": true, - "dependencies": { - "array-flatten": "^2.1.0", - "deep-equal": "^1.0.1", - "dns-equal": "^1.0.0", - "dns-txt": "^2.0.2", - "multicast-dns": "^6.0.1", - "multicast-dns-service-types": "^1.1.0" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/braces/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/braces/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", - "dev": true - }, - "node_modules/browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "dev": true, - "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "dev": true, - "dependencies": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "node_modules/browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dev": true, - "dependencies": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", - "dev": true, - "dependencies": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" - } - }, - "node_modules/browserify-sign": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", - "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", - "dev": true, - "dependencies": { - "bn.js": "^5.1.1", - "browserify-rsa": "^4.0.1", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.3", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.5", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - } - }, - "node_modules/browserify-sign/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "dev": true, - "dependencies": { - "pako": "~1.0.5" - } - }, - "node_modules/browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", - "dev": true, - "dependencies": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "node_modules/buffer-indexof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", - "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", - "dev": true - }, - "node_modules/buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", - "dev": true - }, - "node_modules/builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", - "dev": true - }, - "node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/cacache": { - "version": "12.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", - "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", - "dev": true, - "dependencies": { - "bluebird": "^3.5.5", - "chownr": "^1.1.1", - "figgy-pudding": "^3.5.1", - "glob": "^7.1.4", - "graceful-fs": "^4.1.15", - "infer-owner": "^1.0.3", - "lru-cache": "^5.1.1", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.3", - "ssri": "^6.0.1", - "unique-filename": "^1.1.1", - "y18n": "^4.0.0" - } - }, - "node_modules/cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "dev": true, - "dependencies": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001453", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001453.tgz", - "integrity": "sha512-R9o/uySW38VViaTrOtwfbFEiBFUh7ST3uIG4OEymIG3/uKdHDO4xk/FaqfUw0d+irSUyFPy3dZszf9VvSTPnsA==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - } - ] - }, - "node_modules/cartocolor": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/cartocolor/-/cartocolor-4.0.2.tgz", - "integrity": "sha512-+Gh9mb6lFxsDOLQlBLPxAHCnWXlg2W8q3AcVwqRcy95TdBbcOU89Wrb6h2Hd/6Ww1Kc1pzXmUdpnWD+xeCG0dg==", - "dependencies": { - "colorbrewer": "1.0.0" - } - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "optional": true, - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chokidar/node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "optional": true, - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/chokidar/node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "optional": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/chokidar/node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/chokidar/node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "optional": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "dev": true, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "dev": true, - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "dev": true, - "dependencies": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cliui": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", - "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", - "dev": true, - "dependencies": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" - } - }, - "node_modules/cliui/node_modules/ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/cliui/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", - "dev": true, - "dependencies": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/colorbrewer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/colorbrewer/-/colorbrewer-1.0.0.tgz", - "integrity": "sha512-NZuIOVdErK/C6jDH3jWT/roxWJbJAinMiqEpbuWniKvQAoWdg6lGra3pPrSHvaIf8PlX8wLs/RAC6nULFJbgmg==" - }, - "node_modules/command-line-args": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.1.1.tgz", - "integrity": "sha512-hL/eG8lrll1Qy1ezvkant+trihbGnaKaeEjj6Scyr3DN+RC7iQ5Rz84IeLERfAWDGo0HBSNAakczwgCilDXnWg==", - "dependencies": { - "array-back": "^3.0.1", - "find-replace": "^3.0.0", - "lodash.camelcase": "^4.3.0", - "typical": "^4.0.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/command-line-usage": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.1.tgz", - "integrity": "sha512-F59pEuAR9o1SF/bD0dQBDluhpT4jJQNWUHEuVBqpDmCUo6gPjCi+m9fCWnWZVR/oG6cMTUms4h+3NPl74wGXvA==", - "dependencies": { - "array-back": "^4.0.1", - "chalk": "^2.4.2", - "table-layout": "^1.0.1", - "typical": "^5.2.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/command-line-usage/node_modules/array-back": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", - "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/command-line-usage/node_modules/typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", - "dev": true - }, - "node_modules/component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "dev": true - }, - "node_modules/compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "dev": true, - "dependencies": { - "mime-db": ">= 1.43.0 < 2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "dev": true, - "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/compression/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/compression/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/compression/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dev": true, - "engines": [ - "node >= 0.8" - ], - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "node_modules/connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", - "dev": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", - "dev": true - }, - "node_modules/constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", - "dev": true - }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dev": true, - "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - }, - "node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "dev": true - }, - "node_modules/copy-concurrently": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", - "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", - "dev": true, - "dependencies": { - "aproba": "^1.1.1", - "fs-write-stream-atomic": "^1.0.8", - "iferr": "^0.1.5", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.0" - } - }, - "node_modules/copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/core-js-compat": { - "version": "3.28.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.28.0.tgz", - "integrity": "sha512-myzPgE7QodMg4nnd3K1TDoES/nADRStM8Gpz0D6nhkwbmwEnE0ZGJgoWsvQ722FR8D7xS0n0LV556RcEicjTyg==", - "dependencies": { - "browserslist": "^4.21.5" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "node_modules/create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "dev": true, - "dependencies": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" - } - }, - "node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - }, - "node_modules/create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "dev": true, - "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "node_modules/create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "dev": true, - "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/cross-spawn/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "dev": true, - "dependencies": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - }, - "engines": { - "node": "*" - } - }, - "node_modules/csscolorparser": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/csscolorparser/-/csscolorparser-1.0.3.tgz", - "integrity": "sha512-umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w==" - }, - "node_modules/csstype": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", - "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==", - "peer": true - }, - "node_modules/cyclist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", - "integrity": "sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==", - "dev": true - }, - "node_modules/d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - }, - "node_modules/d3-collection": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz", - "integrity": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==" - }, - "node_modules/d3-color": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-1.4.1.tgz", - "integrity": "sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==" - }, - "node_modules/d3-dispatch": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.6.tgz", - "integrity": "sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA==" - }, - "node_modules/d3-dsv": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.2.0.tgz", - "integrity": "sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g==", - "dependencies": { - "commander": "2", - "iconv-lite": "0.4", - "rw": "1" - }, - "bin": { - "csv2json": "bin/dsv2json", - "csv2tsv": "bin/dsv2dsv", - "dsv2dsv": "bin/dsv2dsv", - "dsv2json": "bin/dsv2json", - "json2csv": "bin/json2dsv", - "json2dsv": "bin/json2dsv", - "json2tsv": "bin/json2dsv", - "tsv2csv": "bin/dsv2dsv", - "tsv2json": "bin/dsv2json" - } - }, - "node_modules/d3-format": { - "version": "1.4.5", - "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-1.4.5.tgz", - "integrity": "sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==" - }, - "node_modules/d3-hexbin": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/d3-hexbin/-/d3-hexbin-0.2.2.tgz", - "integrity": "sha512-KS3fUT2ReD4RlGCjvCEm1RgMtp2NFZumdMu4DBzQK8AZv3fXRM6Xm8I4fSU07UXvH4xxg03NwWKWdvxfS/yc4w==" - }, - "node_modules/d3-interpolate": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.4.0.tgz", - "integrity": "sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==", - "dependencies": { - "d3-color": "1" - } - }, - "node_modules/d3-request": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/d3-request/-/d3-request-1.0.6.tgz", - "integrity": "sha512-FJj8ySY6GYuAJHZMaCQ83xEYE4KbkPkmxZ3Hu6zA1xxG2GD+z6P+Lyp+zjdsHf0xEbp2xcluDI50rCS855EQ6w==", - "dependencies": { - "d3-collection": "1", - "d3-dispatch": "1", - "d3-dsv": "1", - "xmlhttprequest": "1" - } - }, - "node_modules/d3-scale": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz", - "integrity": "sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==", - "dependencies": { - "d3-array": "^1.2.0", - "d3-collection": "1", - "d3-format": "1", - "d3-interpolate": "1", - "d3-time": "1", - "d3-time-format": "2" - } - }, - "node_modules/d3-time": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-1.1.0.tgz", - "integrity": "sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==" - }, - "node_modules/d3-time-format": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.3.0.tgz", - "integrity": "sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ==", - "dependencies": { - "d3-time": "1" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/deck.gl": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/deck.gl/-/deck.gl-8.8.24.tgz", - "integrity": "sha512-2EysFdxSenBh1NUZQRwp1V8XdCsG2vFWHpRUysHhcZGgfC4m5CZwulLE1gL5Wpcki1p30IGUZG7a6hyIbM9Gtg==", - "dependencies": { - "@deck.gl/aggregation-layers": "8.8.24", - "@deck.gl/carto": "8.8.24", - "@deck.gl/core": "8.8.24", - "@deck.gl/extensions": "8.8.24", - "@deck.gl/geo-layers": "8.8.24", - "@deck.gl/google-maps": "8.8.24", - "@deck.gl/json": "8.8.24", - "@deck.gl/layers": "8.8.24", - "@deck.gl/mapbox": "8.8.24", - "@deck.gl/mesh-layers": "8.8.24", - "@deck.gl/react": "8.8.24" - } - }, - "node_modules/decode-uri-component": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", - "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", - "dev": true, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/deep-equal": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", - "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", - "dev": true, - "dependencies": { - "is-arguments": "^1.0.4", - "is-date-object": "^1.0.1", - "is-regex": "^1.0.4", - "object-is": "^1.0.1", - "object-keys": "^1.1.1", - "regexp.prototype.flags": "^1.2.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/default-gateway": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", - "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", - "dev": true, - "dependencies": { - "execa": "^1.0.0", - "ip-regex": "^2.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/define-properties": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", - "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", - "dev": true, - "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/del": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", - "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", - "dev": true, - "dependencies": { - "@types/glob": "^7.1.1", - "globby": "^6.1.0", - "is-path-cwd": "^2.0.0", - "is-path-in-cwd": "^2.0.0", - "p-map": "^2.0.0", - "pify": "^4.0.1", - "rimraf": "^2.6.3" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/detect-file": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/detect-node": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", - "dev": true - }, - "node_modules/diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "dev": true, - "dependencies": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - } - }, - "node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - }, - "node_modules/dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", - "dev": true - }, - "node_modules/dns-packet": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", - "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", - "dev": true, - "dependencies": { - "ip": "^1.1.0", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/dns-txt": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", - "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", - "dev": true, - "dependencies": { - "buffer-indexof": "^1.0.0" - } - }, - "node_modules/domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", - "dev": true, - "engines": { - "node": ">=0.4", - "npm": ">=1.2" - } - }, - "node_modules/draco3d": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/draco3d/-/draco3d-1.4.1.tgz", - "integrity": "sha512-9Rxonc70xiovBC+Bq1h57SNZIHzWTibU1VfIGp5z3Xx8dPtv4yT5uGhiH7P5uvJRR2jkrvHafRxR7bTANkvfpg==" - }, - "node_modules/duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - }, - "node_modules/earcut": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz", - "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==" - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true - }, - "node_modules/electron-to-chromium": { - "version": "1.4.299", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.299.tgz", - "integrity": "sha512-lQ7ijJghH6pCGbfWXr6EY+KYCMaRSjgsY925r1p/TlpSfVM1VjHTcn1gAc15VM4uwti283X6QtjPTXdpoSGiZQ==" - }, - "node_modules/elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", - "dev": true, - "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - }, - "node_modules/emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true - }, - "node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/enhanced-resolve": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", - "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.5.0", - "tapable": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/enhanced-resolve/node_modules/memory-fs": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", - "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", - "dev": true, - "dependencies": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - }, - "engines": { - "node": ">=4.3.0 <5.0.0 || >=5.10" - } - }, - "node_modules/errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", - "dev": true, - "dependencies": { - "prr": "~1.0.1" - }, - "bin": { - "errno": "cli.js" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/eslint-scope": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", - "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", - "dev": true, - "dependencies": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "dev": true, - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/eventsource": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-2.0.2.tgz", - "integrity": "sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==", - "dev": true, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "dev": true, - "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dev": true, - "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/execa/node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dev": true, - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", - "dev": true, - "dependencies": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/expand-brackets/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/expand-tilde": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", - "dev": true, - "dependencies": { - "homedir-polyfill": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", - "dev": true, - "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/express/node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "dev": true - }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/expression-eval": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/expression-eval/-/expression-eval-2.1.0.tgz", - "integrity": "sha512-FUJO/Akvl/JOWkvlqZaqbkhsEWlCJWDeZG4tzX96UH68D9FeRgYgtb55C2qtqbORC0Q6x5419EDjWu4IT9kQfg==", - "dependencies": { - "jsep": "^0.3.0" - } - }, - "node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "dependencies": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "node_modules/faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", - "dev": true, - "dependencies": { - "websocket-driver": ">=0.5.1" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/figgy-pudding": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", - "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", - "dev": true - }, - "node_modules/file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "dev": true, - "optional": true - }, - "node_modules/fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "dev": true, - "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fill-range/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fill-range/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "dev": true, - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", - "dev": true, - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/find-replace": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", - "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", - "dependencies": { - "array-back": "^3.0.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "dependencies": { - "locate-path": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/findup-sync": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", - "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", - "dev": true, - "dependencies": { - "detect-file": "^1.0.0", - "is-glob": "^4.0.0", - "micromatch": "^3.0.4", - "resolve-dir": "^1.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/flatbuffers": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/flatbuffers/-/flatbuffers-1.12.0.tgz", - "integrity": "sha512-c7CZADjRcl6j0PlvFy0ZqXQ67qSEZfrVPynmnL+2zPc+NtMvrF8Y0QceMo7QqnSPc7+uWjUIAbvCQ5WIKlMVdQ==" - }, - "node_modules/flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" - } - }, - "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", - "dev": true, - "dependencies": { - "map-cache": "^0.2.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", - "dev": true, - "dependencies": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - } - }, - "node_modules/fs-write-stream-atomic": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "iferr": "^0.1.5", - "imurmurhash": "^0.1.4", - "readable-stream": "1 || 2" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/geojson-vt": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-3.2.1.tgz", - "integrity": "sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==" - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", - "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gl-matrix": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.3.tgz", - "integrity": "sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==" - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "optional": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "dev": true, - "dependencies": { - "global-prefix": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", - "dev": true, - "dependencies": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/globby/node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true - }, - "node_modules/grid-index": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/grid-index/-/grid-index-1.1.0.tgz", - "integrity": "sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA==", - "peer": true - }, - "node_modules/h3-js": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/h3-js/-/h3-js-3.7.2.tgz", - "integrity": "sha512-LPjlHSwB9zQZrMqKloCZmmmt3yZzIK7nqPcXqwU93zT3TtYG6jP4tZBzAPouxut7lLjdFbMQ75wRBiKfpsnY7w==", - "engines": { - "node": ">=4", - "npm": ">=3", - "yarn": ">=1.3.0" - } - }, - "node_modules/hammerjs": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/hammerjs/-/hammerjs-2.0.8.tgz", - "integrity": "sha512-tSQXBXS/MWQOn/RKckawJ61vvsDpCom87JgxiYdGwHdOa0ht0vzUWDlfioofFCRU0L+6NGDt6XzbgoJvZkMeRQ==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/handle-thing": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", - "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", - "dev": true - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", - "dev": true, - "dependencies": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", - "dev": true, - "dependencies": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values/node_modules/kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/hash-base/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "node_modules/hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", - "dev": true, - "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/homedir-polyfill": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", - "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", - "dev": true, - "dependencies": { - "parse-passwd": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", - "dev": true, - "dependencies": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" - } - }, - "node_modules/html-entities": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", - "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", - "dev": true - }, - "node_modules/http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", - "dev": true - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-parser-js": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", - "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", - "dev": true - }, - "node_modules/http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "dev": true, - "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/http-proxy-middleware": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", - "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", - "dev": true, - "dependencies": { - "http-proxy": "^1.17.0", - "is-glob": "^4.0.0", - "lodash": "^4.17.11", - "micromatch": "^3.1.10" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", - "dev": true - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/iferr": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==", - "dev": true - }, - "node_modules/image-size": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.7.5.tgz", - "integrity": "sha512-Hiyv+mXHfFEP7LzUL/llg9RwFxxY+o9N3JVLIeG5E7iFIFAalxvRU9UZthBdYDEVnzHMgjnKJPPpay5BWf1g9g==", - "bin": { - "image-size": "bin/image-size.js" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/import-local": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", - "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", - "dev": true, - "dependencies": { - "pkg-dir": "^3.0.0", - "resolve-cwd": "^2.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - }, - "node_modules/internal-ip": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", - "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", - "dev": true, - "dependencies": { - "default-gateway": "^4.2.0", - "ipaddr.js": "^1.9.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/internmap": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", - "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", - "engines": { - "node": ">=12" - } - }, - "node_modules/interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", - "dev": true - }, - "node_modules/ip-regex": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", - "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-absolute-url": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", - "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "optional": true, - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, - "node_modules/is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/is-path-in-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", - "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", - "dev": true, - "dependencies": { - "is-path-inside": "^2.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/is-path-inside": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", - "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", - "dev": true, - "dependencies": { - "path-is-inside": "^1.0.2" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/jsep": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/jsep/-/jsep-0.3.5.tgz", - "integrity": "sha512-AoRLBDc6JNnKjNcmonituEABS5bcfqDhQAWWXNTFrqu6nVXBpBAGfcoTGZMFlIrh9FjmE1CQyX9CTNwZrXMMDA==", - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-bignum": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/json-bignum/-/json-bignum-0.0.3.tgz", - "integrity": "sha512-2WHyXj3OfHSgNyuzDbSxI1w2jgw5gkWSWhS7Qg4bWXx1nLk3jnbwfUeS0PSba3IzpTUWdHxBieELUzXRjQB2zg==", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/kdbush": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-3.0.0.tgz", - "integrity": "sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew==" - }, - "node_modules/killable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", - "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", - "dev": true - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ktx-parse": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/ktx-parse/-/ktx-parse-0.0.4.tgz", - "integrity": "sha512-LY3nrmfXl+wZZdPxgJ3ZmLvG+wkOZZP3/dr4RbQj1Pk3Qwz44esOOSFFVQJcNWpXAtiNIC66WgXufX/SYgYz6A==" - }, - "node_modules/loader-runner": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", - "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", - "dev": true, - "engines": { - "node": ">=4.3.0 <5.0.0 || >=5.10" - } - }, - "node_modules/loader-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", - "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", - "dev": true, - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/loader-utils/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - }, - "node_modules/loglevel": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.1.tgz", - "integrity": "sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==", - "dev": true, - "engines": { - "node": ">= 0.6.0" - }, - "funding": { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/loglevel" - } - }, - "node_modules/long": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz", - "integrity": "sha512-ZYvPPOMqUwPoDsbJaR10iQJYnMuZhRTvHYl62ErLIEX7RgFlziSBUUvrt3OVfc47QlHHpzPZYP17g3Fv7oeJkg==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", - "dev": true, - "dependencies": { - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mapbox-gl": { - "version": "1.13.3", - "resolved": "https://registry.npmjs.org/mapbox-gl/-/mapbox-gl-1.13.3.tgz", - "integrity": "sha512-p8lJFEiqmEQlyv+DQxFAOG/XPWN0Wp7j/Psq93Zywz7qt9CcUKFYDBOoOEKzqe6gudHVJY8/Bhqw6VDpX2lSBg==", - "peer": true, - "dependencies": { - "@mapbox/geojson-rewind": "^0.5.2", - "@mapbox/geojson-types": "^1.0.2", - "@mapbox/jsonlint-lines-primitives": "^2.0.2", - "@mapbox/mapbox-gl-supported": "^1.5.0", - "@mapbox/point-geometry": "^0.1.0", - "@mapbox/tiny-sdf": "^1.1.1", - "@mapbox/unitbezier": "^0.0.0", - "@mapbox/vector-tile": "^1.3.1", - "@mapbox/whoots-js": "^3.1.0", - "csscolorparser": "~1.0.3", - "earcut": "^2.2.2", - "geojson-vt": "^3.2.1", - "gl-matrix": "^3.2.1", - "grid-index": "^1.1.0", - "murmurhash-js": "^1.0.0", - "pbf": "^3.2.1", - "potpack": "^1.0.1", - "quickselect": "^2.0.0", - "rw": "^1.3.3", - "supercluster": "^7.1.0", - "tinyqueue": "^2.0.3", - "vt-pbf": "^3.1.1" - }, - "engines": { - "node": ">=6.4.0" - } - }, - "node_modules/maplibre-gl": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/maplibre-gl/-/maplibre-gl-2.4.0.tgz", - "integrity": "sha512-csNFylzntPmHWidczfgCZpvbTSmhaWvLRj9e1ezUDBEPizGgshgm3ea1T5TCNEEBq0roauu7BPuRZjA3wO4KqA==", - "hasInstallScript": true, - "dependencies": { - "@mapbox/geojson-rewind": "^0.5.2", - "@mapbox/jsonlint-lines-primitives": "^2.0.2", - "@mapbox/mapbox-gl-supported": "^2.0.1", - "@mapbox/point-geometry": "^0.1.0", - "@mapbox/tiny-sdf": "^2.0.5", - "@mapbox/unitbezier": "^0.0.1", - "@mapbox/vector-tile": "^1.3.1", - "@mapbox/whoots-js": "^3.1.0", - "@types/geojson": "^7946.0.10", - "@types/mapbox__point-geometry": "^0.1.2", - "@types/mapbox__vector-tile": "^1.3.0", - "@types/pbf": "^3.0.2", - "csscolorparser": "~1.0.3", - "earcut": "^2.2.4", - "geojson-vt": "^3.2.1", - "gl-matrix": "^3.4.3", - "global-prefix": "^3.0.0", - "murmurhash-js": "^1.0.0", - "pbf": "^3.2.1", - "potpack": "^1.0.2", - "quickselect": "^2.0.0", - "supercluster": "^7.1.5", - "tinyqueue": "^2.0.3", - "vt-pbf": "^3.1.3" - } - }, - "node_modules/maplibre-gl/node_modules/@mapbox/mapbox-gl-supported": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-2.0.1.tgz", - "integrity": "sha512-HP6XvfNIzfoMVfyGjBckjiAOQK9WfX0ywdLubuPMPv+Vqf5fj0uCbgBQYpiqcWZT6cbyyRnTSXDheT1ugvF6UQ==" - }, - "node_modules/maplibre-gl/node_modules/@mapbox/tiny-sdf": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz", - "integrity": "sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==" - }, - "node_modules/maplibre-gl/node_modules/@mapbox/unitbezier": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz", - "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==" - }, - "node_modules/math.gl": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/math.gl/-/math.gl-3.6.3.tgz", - "integrity": "sha512-Yq9CyECvSDox9+5ETi2+x1bGTY5WvGUGL3rJfC4KPoCZAM51MGfrCm6rIn4yOJUVfMPs2a5RwMD+yGS/n1g3gg==", - "dependencies": { - "@math.gl/core": "3.6.3" - } - }, - "node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dev": true, - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", - "dev": true, - "dependencies": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "dev": true - }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "dev": true, - "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - }, - "bin": { - "miller-rabin": "bin/miller-rabin" - } - }, - "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", - "dev": true - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/mississippi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", - "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", - "dev": true, - "dependencies": { - "concat-stream": "^1.5.0", - "duplexify": "^3.4.2", - "end-of-stream": "^1.1.0", - "flush-write-stream": "^1.0.0", - "from2": "^2.1.0", - "parallel-transform": "^1.1.0", - "pump": "^3.0.0", - "pumpify": "^1.3.3", - "stream-each": "^1.1.0", - "through2": "^2.0.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dev": true, - "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mjolnir.js": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/mjolnir.js/-/mjolnir.js-2.7.1.tgz", - "integrity": "sha512-72BeUWgTv2cj5aZQKpwL8caNUFhXZ9bDm1hxpNj70XJQ62IBnTZmtv/WPxJvtaVNhzNo+D2U8O6ryNI0zImYcw==", - "dependencies": { - "@types/hammerjs": "^2.0.41", - "hammerjs": "^2.0.8" - }, - "engines": { - "node": ">= 4", - "npm": ">= 3" - } - }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dev": true, - "dependencies": { - "minimist": "^1.2.6" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/moment": { - "version": "2.29.4", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", - "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", - "engines": { - "node": "*" - } - }, - "node_modules/moment-timezone": { - "version": "0.5.40", - "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.40.tgz", - "integrity": "sha512-tWfmNkRYmBkPJz5mr9GVDn9vRlVZOTe6yqY92rFxiOdWXbjaR0+9LwQnZGGuNR63X456NqmEkbskte8tWL5ePg==", - "dependencies": { - "moment": ">= 2.9.0" - }, - "engines": { - "node": "*" - } - }, - "node_modules/move-concurrently": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", - "dev": true, - "dependencies": { - "aproba": "^1.1.1", - "copy-concurrently": "^1.0.0", - "fs-write-stream-atomic": "^1.0.8", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.3" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/multicast-dns": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", - "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", - "dev": true, - "dependencies": { - "dns-packet": "^1.3.1", - "thunky": "^1.0.2" - }, - "bin": { - "multicast-dns": "cli.js" - } - }, - "node_modules/multicast-dns-service-types": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", - "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", - "dev": true - }, - "node_modules/murmurhash-js": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/murmurhash-js/-/murmurhash-js-1.0.0.tgz", - "integrity": "sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==" - }, - "node_modules/nan": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", - "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", - "dev": true, - "optional": true - }, - "node_modules/nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "dev": true, - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true - }, - "node_modules/nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "dev": true - }, - "node_modules/node-forge": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", - "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", - "dev": true, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", - "dev": true, - "dependencies": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - } - }, - "node_modules/node-releases": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", - "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "dev": true, - "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", - "dev": true, - "dependencies": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", - "dev": true, - "dependencies": { - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/obuf": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", - "dev": true - }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/opn": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", - "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", - "dev": true, - "dependencies": { - "is-wsl": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", - "dev": true - }, - "node_modules/p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "dependencies": { - "p-limit": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/p-retry": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", - "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", - "dev": true, - "dependencies": { - "retry": "^0.12.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/pad-left": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pad-left/-/pad-left-2.1.0.tgz", - "integrity": "sha512-HJxs9K9AztdIQIAIa/OIazRAUW/L6B9hbQDxO4X07roW3eo9XqZc2ur9bn1StH9CnbbI9EgvejHQX7CBpCF1QA==", - "dependencies": { - "repeat-string": "^1.5.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", - "dev": true - }, - "node_modules/parallel-transform": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", - "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", - "dev": true, - "dependencies": { - "cyclist": "^1.0.1", - "inherits": "^2.0.3", - "readable-stream": "^2.1.5" - } - }, - "node_modules/parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", - "dev": true, - "dependencies": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/parse-passwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", - "dev": true - }, - "node_modules/path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", - "dev": true - }, - "node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", - "dev": true - }, - "node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "dev": true - }, - "node_modules/pbf": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/pbf/-/pbf-3.2.1.tgz", - "integrity": "sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==", - "dependencies": { - "ieee754": "^1.1.12", - "resolve-protobuf-schema": "^2.1.0" - }, - "bin": { - "pbf": "bin/pbf" - } - }, - "node_modules/pbkdf2": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", - "dev": true, - "dependencies": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - }, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "optional": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", - "dev": true, - "dependencies": { - "pinkie": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dev": true, - "dependencies": { - "find-up": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/portfinder": { - "version": "1.0.32", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", - "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", - "dev": true, - "dependencies": { - "async": "^2.6.4", - "debug": "^3.2.7", - "mkdirp": "^0.5.6" - }, - "engines": { - "node": ">= 0.12.0" - } - }, - "node_modules/portfinder/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/potpack": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/potpack/-/potpack-1.0.2.tgz", - "integrity": "sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==" - }, - "node_modules/probe.gl": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/probe.gl/-/probe.gl-3.6.0.tgz", - "integrity": "sha512-19JydJWI7+DtR4feV+pu4Mn1I5TAc0xojuxVgZdXIyfmTLfUaFnk4OloWK1bKbPtkgGKLr2lnbnCXmpZEcEp9g==", - "dependencies": { - "@babel/runtime": "^7.0.0", - "@probe.gl/env": "3.6.0", - "@probe.gl/log": "3.6.0", - "@probe.gl/stats": "3.6.0" - } - }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "dev": true, - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "node_modules/promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", - "dev": true - }, - "node_modules/protocol-buffers-schema": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz", - "integrity": "sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==" - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dev": true, - "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", - "dev": true - }, - "node_modules/public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "dev": true, - "dependencies": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/public-encrypt/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dev": true, - "dependencies": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - } - }, - "node_modules/pumpify/node_modules/pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", - "dev": true - }, - "node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dev": true, - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/quadbin": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/quadbin/-/quadbin-0.1.5.tgz", - "integrity": "sha512-/MQnN7V73myA+31gTxldTGN8ixqrUCXtUoDvRKSI9QZJOaq0cS9SNQkdToMxjC3ZSM2hN7mleOAn+9QVNlPZOg==", - "dependencies": { - "@mapbox/tile-cover": "^3.0.2" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", - "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", - "dev": true, - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", - "dev": true, - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "dev": true - }, - "node_modules/quickselect": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz", - "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==" - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dev": true, - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dev": true, - "dependencies": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dev": true, - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/raw-body/node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/react-map-gl": { - "version": "7.0.21", - "resolved": "https://registry.npmjs.org/react-map-gl/-/react-map-gl-7.0.21.tgz", - "integrity": "sha512-Cmokphv6VHfRJsHVjCtn7nw5mf8rl89CHdvPSaif0OWZZqe+pxM2/5hEr4EvPWeTokRPCo1XTrBpGbShkEuktQ==", - "dependencies": { - "@types/mapbox-gl": "^2.6.0" - }, - "peerDependencies": { - "mapbox-gl": "*", - "react": ">=16.3.0" - } - }, - "node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/readable-stream/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "optional": true, - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/reduce-flatten": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", - "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==", - "engines": { - "node": ">=6" - } - }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", - "dependencies": { - "regenerate": "^1.4.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - }, - "node_modules/regenerator-transform": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", - "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", - "dependencies": { - "@babel/runtime": "^7.8.4" - } - }, - "node_modules/regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "dev": true, - "dependencies": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regexpu-core": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.0.tgz", - "integrity": "sha512-ZdhUQlng0RoscyW7jADnUZ25F5eVtHdMyXSb2PiwafvteRAOJUjFoUPEYZSIfP99fBIs3maLIRfpEddT78wAAQ==", - "dependencies": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "dependencies": { - "jsesc": "~0.5.0" - }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "bin": { - "jsesc": "bin/jsesc" - } - }, - "node_modules/remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", - "dev": true - }, - "node_modules/repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-main-filename": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", - "dev": true - }, - "node_modules/requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "dev": true - }, - "node_modules/resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-cwd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", - "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", - "dev": true, - "dependencies": { - "resolve-from": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/resolve-dir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", - "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", - "dev": true, - "dependencies": { - "expand-tilde": "^2.0.0", - "global-modules": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve-dir/node_modules/global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", - "dev": true, - "dependencies": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve-dir/node_modules/global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", - "dev": true, - "dependencies": { - "expand-tilde": "^2.0.2", - "homedir-polyfill": "^1.0.1", - "ini": "^1.3.4", - "is-windows": "^1.0.1", - "which": "^1.2.14" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/resolve-protobuf-schema": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz", - "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==", - "dependencies": { - "protocol-buffers-schema": "^3.3.1" - } - }, - "node_modules/resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", - "deprecated": "https://github.com/lydell/resolve-url#deprecated", - "dev": true - }, - "node_modules/ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dev": true, - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "node_modules/run-queue": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", - "dev": true, - "dependencies": { - "aproba": "^1.1.1" - } - }, - "node_modules/rw": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", - "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==" - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", - "dev": true, - "dependencies": { - "ret": "~0.1.10" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "dev": true, - "dependencies": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - }, - "engines": { - "node": ">= 4" - } - }, - "node_modules/select-hose": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", - "dev": true - }, - "node_modules/selfsigned": { - "version": "1.10.14", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", - "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", - "dev": true, - "dependencies": { - "node-forge": "^0.10.0" - } - }, - "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dev": true, - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", - "dev": true, - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", - "dev": true, - "dependencies": { - "accepts": "~1.3.4", - "batch": "0.6.1", - "debug": "2.6.9", - "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/serve-index/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/serve-index/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/serve-index/node_modules/http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", - "dev": true, - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/serve-index/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - }, - "node_modules/serve-index/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/serve-index/node_modules/setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - }, - "node_modules/serve-index/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dev": true, - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true - }, - "node_modules/set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "dev": true, - "dependencies": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/set-value/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/set-value/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", - "dev": true - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "node_modules/sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dev": true, - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - }, - "bin": { - "sha.js": "bin.js" - } - }, - "node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "dev": true, - "dependencies": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "dev": true, - "dependencies": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "dev": true, - "dependencies": { - "kind-of": "^3.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-util/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/snapdragon/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/sockjs": { - "version": "0.3.24", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", - "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", - "dev": true, - "dependencies": { - "faye-websocket": "^0.11.3", - "uuid": "^8.3.2", - "websocket-driver": "^0.7.4" - } - }, - "node_modules/sockjs-client": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.1.tgz", - "integrity": "sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==", - "dev": true, - "dependencies": { - "debug": "^3.2.7", - "eventsource": "^2.0.2", - "faye-websocket": "^0.11.4", - "inherits": "^2.0.4", - "url-parse": "^1.5.10" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://tidelift.com/funding/github/npm/sockjs-client" - } - }, - "node_modules/sockjs-client/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/source-list-map": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", - "dev": true - }, - "node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-resolve": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", - "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", - "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", - "dev": true, - "dependencies": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-url": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", - "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", - "deprecated": "See https://github.com/lydell/source-map-url#deprecated", - "dev": true - }, - "node_modules/spdy": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", - "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", - "dev": true, - "dependencies": { - "debug": "^4.1.0", - "handle-thing": "^2.0.0", - "http-deceiver": "^1.2.7", - "select-hose": "^2.0.0", - "spdy-transport": "^3.0.0" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/spdy-transport": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", - "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", - "dev": true, - "dependencies": { - "debug": "^4.1.0", - "detect-node": "^2.0.4", - "hpack.js": "^2.1.6", - "obuf": "^1.1.2", - "readable-stream": "^3.0.6", - "wbuf": "^1.7.3" - } - }, - "node_modules/spdy-transport/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "dev": true, - "dependencies": { - "extend-shallow": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - }, - "node_modules/ssri": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", - "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", - "dev": true, - "dependencies": { - "figgy-pudding": "^3.5.1" - } - }, - "node_modules/static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", - "dev": true, - "dependencies": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "dev": true, - "dependencies": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - } - }, - "node_modules/stream-each": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", - "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "stream-shift": "^1.0.0" - } - }, - "node_modules/stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", - "dev": true, - "dependencies": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" - } - }, - "node_modules/stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", - "dev": true - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/string-width/node_modules/ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/string-width/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/supercluster": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-7.1.5.tgz", - "integrity": "sha512-EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg==", - "dependencies": { - "kdbush": "^3.0.0" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/table-layout": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-1.0.2.tgz", - "integrity": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==", - "dependencies": { - "array-back": "^4.0.1", - "deep-extend": "~0.6.0", - "typical": "^5.2.0", - "wordwrapjs": "^4.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/table-layout/node_modules/array-back": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", - "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/table-layout/node_modules/typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/terser": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", - "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", - "dev": true, - "dependencies": { - "commander": "^2.20.0", - "source-map": "~0.6.1", - "source-map-support": "~0.5.12" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/terser-webpack-plugin": { - "version": "1.4.5", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", - "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", - "dev": true, - "dependencies": { - "cacache": "^12.0.2", - "find-cache-dir": "^2.1.0", - "is-wsl": "^1.1.0", - "schema-utils": "^1.0.0", - "serialize-javascript": "^4.0.0", - "source-map": "^0.6.1", - "terser": "^4.1.2", - "webpack-sources": "^1.4.0", - "worker-farm": "^1.7.0" - }, - "engines": { - "node": ">= 6.9.0" - }, - "peerDependencies": { - "webpack": "^4.0.0" - } - }, - "node_modules/terser-webpack-plugin/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/terser/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/text-encoding-utf-8": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz", - "integrity": "sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==" - }, - "node_modules/texture-compressor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/texture-compressor/-/texture-compressor-1.0.2.tgz", - "integrity": "sha512-dStVgoaQ11mA5htJ+RzZ51ZxIZqNOgWKAIvtjLrW1AliQQLCmrDqNzQZ8Jh91YealQ95DXt4MEduLzJmbs6lig==", - "dependencies": { - "argparse": "^1.0.10", - "image-size": "^0.7.4" - }, - "bin": { - "texture-compressor": "bin/texture-compressor.js" - } - }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/thunky": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", - "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", - "dev": true - }, - "node_modules/timers-browserify": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", - "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", - "dev": true, - "dependencies": { - "setimmediate": "^1.0.4" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/tinyqueue": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-2.0.3.tgz", - "integrity": "sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==" - }, - "node_modules/to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==", - "dev": true - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-object-path/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "dev": true, - "dependencies": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "dev": true, - "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==", - "dev": true - }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dev": true, - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", - "dev": true - }, - "node_modules/typical": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", - "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", - "engines": { - "node": ">=4" - } - }, - "node_modules/union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "dev": true, - "dependencies": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/union-value/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "dependencies": { - "unique-slug": "^2.0.0" - } - }, - "node_modules/unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", - "dev": true, - "dependencies": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", - "dev": true, - "dependencies": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", - "dev": true, - "dependencies": { - "isarray": "1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "dev": true, - "engines": { - "node": ">=4", - "yarn": "*" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", - "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "browserslist-lint": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/uri-js/node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", - "deprecated": "Please see https://github.com/lydell/urix#deprecated", - "dev": true - }, - "node_modules/url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", - "dev": true, - "dependencies": { - "punycode": "1.3.2", - "querystring": "0.2.0" - } - }, - "node_modules/url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", - "dev": true, - "dependencies": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "node_modules/url/node_modules/punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==", - "dev": true - }, - "node_modules/use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", - "dev": true, - "dependencies": { - "inherits": "2.0.3" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/util/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "dev": true, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true, - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", - "dev": true - }, - "node_modules/vt-pbf": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/vt-pbf/-/vt-pbf-3.1.3.tgz", - "integrity": "sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==", - "dependencies": { - "@mapbox/point-geometry": "0.1.0", - "@mapbox/vector-tile": "^1.3.1", - "pbf": "^3.2.1" - } - }, - "node_modules/watchpack": { - "version": "1.7.5", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", - "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "neo-async": "^2.5.0" - }, - "optionalDependencies": { - "chokidar": "^3.4.1", - "watchpack-chokidar2": "^2.0.1" - } - }, - "node_modules/watchpack-chokidar2": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", - "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", - "dev": true, - "optional": true, - "dependencies": { - "chokidar": "^2.1.8" - } - }, - "node_modules/watchpack-chokidar2/node_modules/anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "optional": true, - "dependencies": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "node_modules/watchpack-chokidar2/node_modules/anymatch/node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "dev": true, - "optional": true, - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/watchpack-chokidar2/node_modules/binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/watchpack-chokidar2/node_modules/chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", - "dev": true, - "optional": true, - "dependencies": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - }, - "optionalDependencies": { - "fsevents": "^1.2.7" - } - }, - "node_modules/watchpack-chokidar2/node_modules/fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "dependencies": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - }, - "engines": { - "node": ">= 4.0" - } - }, - "node_modules/watchpack-chokidar2/node_modules/glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "dev": true, - "optional": true, - "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - } - }, - "node_modules/watchpack-chokidar2/node_modules/glob-parent/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "dev": true, - "optional": true, - "dependencies": { - "is-extglob": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/watchpack-chokidar2/node_modules/is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", - "dev": true, - "optional": true, - "dependencies": { - "binary-extensions": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/watchpack-chokidar2/node_modules/readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dev": true, - "optional": true, - "dependencies": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/wbuf": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", - "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", - "dev": true, - "dependencies": { - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/webpack": { - "version": "4.46.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.46.0.tgz", - "integrity": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/wasm-edit": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "acorn": "^6.4.1", - "ajv": "^6.10.2", - "ajv-keywords": "^3.4.1", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^4.5.0", - "eslint-scope": "^4.0.3", - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^2.4.0", - "loader-utils": "^1.2.3", - "memory-fs": "^0.4.1", - "micromatch": "^3.1.10", - "mkdirp": "^0.5.3", - "neo-async": "^2.6.1", - "node-libs-browser": "^2.2.1", - "schema-utils": "^1.0.0", - "tapable": "^1.1.3", - "terser-webpack-plugin": "^1.4.3", - "watchpack": "^1.7.4", - "webpack-sources": "^1.4.1" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=6.11.5" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - }, - "webpack-command": { - "optional": true - } - } - }, - "node_modules/webpack-cli": { - "version": "3.3.12", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.12.tgz", - "integrity": "sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==", - "dev": true, - "dependencies": { - "chalk": "^2.4.2", - "cross-spawn": "^6.0.5", - "enhanced-resolve": "^4.1.1", - "findup-sync": "^3.0.0", - "global-modules": "^2.0.0", - "import-local": "^2.0.0", - "interpret": "^1.4.0", - "loader-utils": "^1.4.0", - "supports-color": "^6.1.0", - "v8-compile-cache": "^2.1.1", - "yargs": "^13.3.2" - }, - "bin": { - "webpack-cli": "bin/cli.js" - }, - "engines": { - "node": ">=6.11.5" - }, - "peerDependencies": { - "webpack": "4.x.x" - } - }, - "node_modules/webpack-cli/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/webpack-dev-middleware": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", - "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", - "dev": true, - "dependencies": { - "memory-fs": "^0.4.1", - "mime": "^2.4.4", - "mkdirp": "^0.5.1", - "range-parser": "^1.2.1", - "webpack-log": "^2.0.0" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" - } - }, - "node_modules/webpack-dev-middleware/node_modules/mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/webpack-dev-server": { - "version": "3.11.3", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", - "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", - "dev": true, - "dependencies": { - "ansi-html-community": "0.0.8", - "bonjour": "^3.5.0", - "chokidar": "^2.1.8", - "compression": "^1.7.4", - "connect-history-api-fallback": "^1.6.0", - "debug": "^4.1.1", - "del": "^4.1.1", - "express": "^4.17.1", - "html-entities": "^1.3.1", - "http-proxy-middleware": "0.19.1", - "import-local": "^2.0.0", - "internal-ip": "^4.3.0", - "ip": "^1.1.5", - "is-absolute-url": "^3.0.3", - "killable": "^1.0.1", - "loglevel": "^1.6.8", - "opn": "^5.5.0", - "p-retry": "^3.0.1", - "portfinder": "^1.0.26", - "schema-utils": "^1.0.0", - "selfsigned": "^1.10.8", - "semver": "^6.3.0", - "serve-index": "^1.9.1", - "sockjs": "^0.3.21", - "sockjs-client": "^1.5.0", - "spdy": "^4.0.2", - "strip-ansi": "^3.0.1", - "supports-color": "^6.1.0", - "url": "^0.11.0", - "webpack-dev-middleware": "^3.7.2", - "webpack-log": "^2.0.0", - "ws": "^6.2.1", - "yargs": "^13.3.2" - }, - "bin": { - "webpack-dev-server": "bin/webpack-dev-server.js" - }, - "engines": { - "node": ">= 6.11.5" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-dev-server/node_modules/anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "dependencies": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "node_modules/webpack-dev-server/node_modules/anymatch/node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "dev": true, - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/webpack-dev-server/node_modules/binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/webpack-dev-server/node_modules/chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", - "dev": true, - "dependencies": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - }, - "optionalDependencies": { - "fsevents": "^1.2.7" - } - }, - "node_modules/webpack-dev-server/node_modules/fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "dependencies": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - }, - "engines": { - "node": ">= 4.0" - } - }, - "node_modules/webpack-dev-server/node_modules/glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "dev": true, - "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - } - }, - "node_modules/webpack-dev-server/node_modules/glob-parent/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/webpack-dev-server/node_modules/is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", - "dev": true, - "dependencies": { - "binary-extensions": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/webpack-dev-server/node_modules/readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/webpack-dev-server/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/webpack-log": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", - "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", - "dev": true, - "dependencies": { - "ansi-colors": "^3.0.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/webpack-log/node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", - "dev": true, - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", - "dev": true, - "dependencies": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" - } - }, - "node_modules/webpack-sources/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/websocket-driver": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", - "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", - "dev": true, - "dependencies": { - "http-parser-js": ">=0.5.1", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/websocket-extensions": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", - "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==", - "dev": true - }, - "node_modules/wordwrapjs": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz", - "integrity": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==", - "dependencies": { - "reduce-flatten": "^2.0.0", - "typical": "^5.2.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/wordwrapjs/node_modules/typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/worker-farm": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", - "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", - "dev": true, - "dependencies": { - "errno": "~0.1.7" - } - }, - "node_modules/wrap-ansi": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", - "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/ws": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", - "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", - "dev": true, - "dependencies": { - "async-limiter": "~1.0.0" - } - }, - "node_modules/xmlhttprequest": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz", - "integrity": "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true, - "engines": { - "node": ">=0.4" - } - }, - "node_modules/y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", - "dev": true - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/yargs": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", - "dev": true, - "dependencies": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" - } - }, - "node_modules/yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", - "dev": true, - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - } - }, - "dependencies": { - "@ampproject/remapping": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", - "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", - "requires": { - "@jridgewell/gen-mapping": "^0.1.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/compat-data": { - "version": "7.20.14", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.14.tgz", - "integrity": "sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==" - }, - "@babel/core": { - "version": "7.20.12", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz", - "integrity": "sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==", - "requires": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.7", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helpers": "^7.20.7", - "@babel/parser": "^7.20.7", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.12", - "@babel/types": "^7.20.7", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" - } - }, - "@babel/generator": { - "version": "7.20.14", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.14.tgz", - "integrity": "sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==", - "requires": { - "@babel/types": "^7.20.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - }, - "dependencies": { - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - } - } - }, - "@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", - "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", - "requires": { - "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.9" - } - }, - "@babel/helper-compilation-targets": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz", - "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==", - "requires": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-validator-option": "^7.18.6", - "browserslist": "^4.21.3", - "lru-cache": "^5.1.1", - "semver": "^6.3.0" - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.20.12", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz", - "integrity": "sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-member-expression-to-functions": "^7.20.7", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.20.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/helper-split-export-declaration": "^7.18.6" - } - }, - "@babel/helper-create-regexp-features-plugin": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz", - "integrity": "sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "regexpu-core": "^5.2.1" - } - }, - "@babel/helper-define-polyfill-provider": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", - "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", - "requires": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", - "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" - }, - "@babel/helper-explode-assignable-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", - "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-function-name": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", - "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", - "requires": { - "@babel/template": "^7.18.10", - "@babel/types": "^7.19.0" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz", - "integrity": "sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==", - "requires": { - "@babel/types": "^7.20.7" - } - }, - "@babel/helper-module-imports": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", - "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-module-transforms": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz", - "integrity": "sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==", - "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.20.2", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.10", - "@babel/types": "^7.20.7" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", - "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", - "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==" - }, - "@babel/helper-remap-async-to-generator": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", - "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-wrap-function": "^7.18.9", - "@babel/types": "^7.18.9" - } - }, - "@babel/helper-replace-supers": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz", - "integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==", - "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-member-expression-to-functions": "^7.20.7", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.7", - "@babel/types": "^7.20.7" - } - }, - "@babel/helper-simple-access": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", - "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", - "requires": { - "@babel/types": "^7.20.2" - } - }, - "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", - "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", - "requires": { - "@babel/types": "^7.20.0" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-string-parser": { - "version": "7.19.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", - "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==" - }, - "@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==" - }, - "@babel/helper-validator-option": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", - "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" - }, - "@babel/helper-wrap-function": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", - "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", - "requires": { - "@babel/helper-function-name": "^7.19.0", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.5", - "@babel/types": "^7.20.5" - } - }, - "@babel/helpers": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.13.tgz", - "integrity": "sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==", - "requires": { - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.13", - "@babel/types": "^7.20.7" - } - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.20.15", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.15.tgz", - "integrity": "sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==" - }, - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", - "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz", - "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-proposal-optional-chaining": "^7.20.7" - } - }, - "@babel/plugin-proposal-async-generator-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", - "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", - "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9", - "@babel/plugin-syntax-async-generators": "^7.8.4" - } - }, - "@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-proposal-class-static-block": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz", - "integrity": "sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - } - }, - "@babel/plugin-proposal-dynamic-import": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", - "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - } - }, - "@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", - "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - } - }, - "@babel/plugin-proposal-json-strings": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", - "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" - } - }, - "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", - "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", - "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - } - }, - "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - } - }, - "@babel/plugin-proposal-numeric-separator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", - "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - } - }, - "@babel/plugin-proposal-object-rest-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", - "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", - "requires": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.20.7" - } - }, - "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", - "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - } - }, - "@babel/plugin-proposal-optional-chaining": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz", - "integrity": "sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - } - }, - "@babel/plugin-proposal-private-methods": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", - "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-proposal-private-property-in-object": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz", - "integrity": "sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.20.5", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - } - }, - "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-syntax-import-assertions": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", - "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.19.0" - } - }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", - "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-transform-arrow-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz", - "integrity": "sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.20.2" - } - }, - "@babel/plugin-transform-async-to-generator": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", - "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", - "requires": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9" - } - }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", - "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-block-scoping": { - "version": "7.20.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.15.tgz", - "integrity": "sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==", - "requires": { - "@babel/helper-plugin-utils": "^7.20.2" - } - }, - "@babel/plugin-transform-classes": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz", - "integrity": "sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-replace-supers": "^7.20.7", - "@babel/helper-split-export-declaration": "^7.18.6", - "globals": "^11.1.0" - } - }, - "@babel/plugin-transform-computed-properties": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz", - "integrity": "sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/template": "^7.20.7" - } - }, - "@babel/plugin-transform-destructuring": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz", - "integrity": "sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==", - "requires": { - "@babel/helper-plugin-utils": "^7.20.2" - } - }, - "@babel/plugin-transform-dotall-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", - "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-duplicate-keys": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", - "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-exponentiation-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", - "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", - "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-for-of": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", - "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-function-name": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", - "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", - "requires": { - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-function-name": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-literals": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", - "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-member-expression-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", - "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-modules-amd": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz", - "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==", - "requires": { - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2" - } - }, - "@babel/plugin-transform-modules-commonjs": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz", - "integrity": "sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==", - "requires": { - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-simple-access": "^7.20.2" - } - }, - "@babel/plugin-transform-modules-systemjs": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz", - "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==", - "requires": { - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-identifier": "^7.19.1" - } - }, - "@babel/plugin-transform-modules-umd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", - "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", - "requires": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", - "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.20.5", - "@babel/helper-plugin-utils": "^7.20.2" - } - }, - "@babel/plugin-transform-new-target": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", - "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-object-super": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", - "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6" - } - }, - "@babel/plugin-transform-parameters": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz", - "integrity": "sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==", - "requires": { - "@babel/helper-plugin-utils": "^7.20.2" - } - }, - "@babel/plugin-transform-property-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", - "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-react-display-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", - "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-react-jsx": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.13.tgz", - "integrity": "sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-jsx": "^7.18.6", - "@babel/types": "^7.20.7" - } - }, - "@babel/plugin-transform-react-jsx-development": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", - "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", - "dev": true, - "requires": { - "@babel/plugin-transform-react-jsx": "^7.18.6" - } - }, - "@babel/plugin-transform-react-pure-annotations": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", - "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-regenerator": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz", - "integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "regenerator-transform": "^0.15.1" - } - }, - "@babel/plugin-transform-reserved-words": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", - "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-runtime": { - "version": "7.19.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz", - "integrity": "sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==", - "requires": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.19.0", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "semver": "^6.3.0" - } - }, - "@babel/plugin-transform-shorthand-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", - "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz", - "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==", - "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0" - } - }, - "@babel/plugin-transform-sticky-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", - "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-template-literals": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", - "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-typeof-symbol": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", - "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-unicode-escapes": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", - "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-unicode-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", - "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/preset-env": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz", - "integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==", - "requires": { - "@babel/compat-data": "^7.20.1", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-async-generator-functions": "^7.20.1", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-class-static-block": "^7.18.6", - "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.9", - "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.20.2", - "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/plugin-proposal-private-property-in-object": "^7.18.6", - "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.20.0", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.18.6", - "@babel/plugin-transform-async-to-generator": "^7.18.6", - "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.20.2", - "@babel/plugin-transform-classes": "^7.20.2", - "@babel/plugin-transform-computed-properties": "^7.18.9", - "@babel/plugin-transform-destructuring": "^7.20.2", - "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.9", - "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.18.8", - "@babel/plugin-transform-function-name": "^7.18.9", - "@babel/plugin-transform-literals": "^7.18.9", - "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.19.6", - "@babel/plugin-transform-modules-commonjs": "^7.19.6", - "@babel/plugin-transform-modules-systemjs": "^7.19.6", - "@babel/plugin-transform-modules-umd": "^7.18.6", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", - "@babel/plugin-transform-new-target": "^7.18.6", - "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.20.1", - "@babel/plugin-transform-property-literals": "^7.18.6", - "@babel/plugin-transform-regenerator": "^7.18.6", - "@babel/plugin-transform-reserved-words": "^7.18.6", - "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.19.0", - "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.9", - "@babel/plugin-transform-typeof-symbol": "^7.18.9", - "@babel/plugin-transform-unicode-escapes": "^7.18.10", - "@babel/plugin-transform-unicode-regex": "^7.18.6", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.20.2", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "core-js-compat": "^3.25.1", - "semver": "^6.3.0" - } - }, - "@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - } - }, - "@babel/preset-react": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", - "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-react-display-name": "^7.18.6", - "@babel/plugin-transform-react-jsx": "^7.18.6", - "@babel/plugin-transform-react-jsx-development": "^7.18.6", - "@babel/plugin-transform-react-pure-annotations": "^7.18.6" - } - }, - "@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" - }, - "@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", - "requires": { - "regenerator-runtime": "^0.13.11" - } - }, - "@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" - } - }, - "@babel/traverse": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.13.tgz", - "integrity": "sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.7", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.20.13", - "@babel/types": "^7.20.7", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz", - "integrity": "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==", - "requires": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" - } - }, - "@deck.gl/aggregation-layers": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/aggregation-layers/-/aggregation-layers-8.8.24.tgz", - "integrity": "sha512-Cqd8lD5wtDrsYHHha0wVD4RY0A7/KbmdK/7Cl+gBYP9Nf2ERE65IqXSlsijvtT3a4fi++c3doosKMSDYy08nEw==", - "requires": { - "@luma.gl/constants": "^8.5.16", - "@luma.gl/shadertools": "^8.5.16", - "@math.gl/web-mercator": "^3.6.2", - "d3-hexbin": "^0.2.1" - } - }, - "@deck.gl/carto": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/carto/-/carto-8.8.24.tgz", - "integrity": "sha512-vRD0GNftnxfMal2ia7OyaterFY2aZtaYdGPnWV8RL205D2pTR4ZeNX//bQEvovLK5TJG7+kQgopaALDQN1+aBQ==", - "requires": { - "@loaders.gl/gis": "^3.2.10", - "@loaders.gl/loader-utils": "^3.2.10", - "@loaders.gl/mvt": "^3.2.10", - "@loaders.gl/tiles": "^3.2.10", - "@luma.gl/constants": "^8.5.16", - "@math.gl/web-mercator": "^3.6.2", - "cartocolor": "^4.0.2", - "d3-array": "^3.2.0", - "d3-color": "^3.1.0", - "d3-format": "^3.1.0", - "d3-scale": "^4.0.0", - "h3-js": "^3.7.0", - "moment-timezone": "^0.5.33", - "pbf": "^3.2.1", - "quadbin": "^0.1.2" - }, - "dependencies": { - "d3-array": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.2.tgz", - "integrity": "sha512-yEEyEAbDrF8C6Ob2myOBLjwBLck1Z89jMGFee0oPsn95GqjerpaOA4ch+vc2l0FNFFwMD5N7OCSEN5eAlsUbgQ==", - "requires": { - "internmap": "1 - 2" - } - }, - "d3-color": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", - "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==" - }, - "d3-format": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", - "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==" - }, - "d3-scale": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", - "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", - "requires": { - "d3-array": "2.10.0 - 3", - "d3-format": "1 - 3", - "d3-interpolate": "1.2.0 - 3", - "d3-time": "2.1.1 - 3", - "d3-time-format": "2 - 4" - } - }, - "d3-time": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", - "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", - "requires": { - "d3-array": "2 - 3" - } - } - } - }, - "@deck.gl/core": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/core/-/core-8.8.24.tgz", - "integrity": "sha512-/W1ldv80UkFb+V0AEpcJcjSWANV9iWeMZgiLdnZbmttahSB1poWg2K8TxEYSwKJipSzA/e43iJjOYbaa7Yfs5g==", - "requires": { - "@loaders.gl/core": "^3.2.10", - "@loaders.gl/images": "^3.2.10", - "@luma.gl/constants": "^8.5.16", - "@luma.gl/core": "^8.5.16", - "@math.gl/core": "^3.6.2", - "@math.gl/sun": "^3.6.2", - "@math.gl/web-mercator": "^3.6.2", - "@probe.gl/env": "^3.5.0", - "@probe.gl/log": "^3.5.0", - "@probe.gl/stats": "^3.5.0", - "gl-matrix": "^3.0.0", - "math.gl": "^3.6.2", - "mjolnir.js": "^2.7.0" - } - }, - "@deck.gl/extensions": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/extensions/-/extensions-8.8.24.tgz", - "integrity": "sha512-mBZvxMxP5Et69nW7ZKxLWYSWYvdWEsA+nikA+n3Z6Jb8kZsZWCEFFqp6CeJ8vZ9d6eNiZMQMOUyxGLEFhil+Eg==", - "requires": { - "@luma.gl/shadertools": "^8.5.16" - } - }, - "@deck.gl/geo-layers": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/geo-layers/-/geo-layers-8.8.24.tgz", - "integrity": "sha512-c9mkBQtCHPI7o6QxhWmA6l5XkqhnbgoMhJSnHUgoCkMNuWbSAzTC5YLbqVLbTylIGHwTxeFNjr9AIWehwkPvqQ==", - "requires": { - "@loaders.gl/3d-tiles": "^3.2.10", - "@loaders.gl/gis": "^3.2.10", - "@loaders.gl/loader-utils": "^3.2.10", - "@loaders.gl/mvt": "^3.2.10", - "@loaders.gl/schema": "^3.2.10", - "@loaders.gl/terrain": "^3.2.10", - "@loaders.gl/tiles": "^3.2.10", - "@luma.gl/constants": "^8.5.16", - "@luma.gl/experimental": "^8.5.16", - "@math.gl/core": "^3.6.2", - "@math.gl/culling": "^3.6.2", - "@math.gl/web-mercator": "^3.6.2", - "@types/geojson": "^7946.0.8", - "h3-js": "^3.7.0", - "long": "^3.2.0" - } - }, - "@deck.gl/google-maps": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/google-maps/-/google-maps-8.8.24.tgz", - "integrity": "sha512-GUHIKycVgTsSD3ej49U1r+CjpjAv2IszzkMMysYxSKWBsUklyosN2XZRoKuQWFmhowUhuwPlKliXHj/QAOcYAw==", - "requires": {} - }, - "@deck.gl/json": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/json/-/json-8.8.24.tgz", - "integrity": "sha512-H3uP9544O3NNnn10vjz5fU2mSldOUWTokwBz+uZNSJNFCK5zxO1+E5lR6xBXAAa4SlfuANvMT0aRQwDnekv0MQ==", - "requires": { - "d3-dsv": "^1.0.8", - "expression-eval": "^2.0.0" - } - }, - "@deck.gl/layers": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/layers/-/layers-8.8.24.tgz", - "integrity": "sha512-t8o23fUSmS34YVs0fGvp4d0Et6iJo6O7hRpdGf49WyOL+yBsywOanFGdAcxW84HA4cPngHHvfLplF2Gx/qeUow==", - "requires": { - "@loaders.gl/images": "^3.2.10", - "@loaders.gl/schema": "^3.2.10", - "@luma.gl/constants": "^8.5.16", - "@mapbox/tiny-sdf": "^1.1.0", - "@math.gl/core": "^3.6.2", - "@math.gl/polygon": "^3.6.2", - "@math.gl/web-mercator": "^3.6.2", - "earcut": "^2.0.6" - } - }, - "@deck.gl/mapbox": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/mapbox/-/mapbox-8.8.24.tgz", - "integrity": "sha512-yJnt2sNbE7EeNstfh0G6yLz5owNT5GzHZE8JroHljVaoftBzWrh/ERf97akcxevCFXR6TIBoBUzx4Yip23incg==", - "requires": { - "@types/mapbox-gl": "^2.6.3" - } - }, - "@deck.gl/mesh-layers": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/mesh-layers/-/mesh-layers-8.8.24.tgz", - "integrity": "sha512-HsFTU7cX1hcBmQu5s9cNBkQQ1v0ESVSnx5C9eOUI8lWlpw8n6pq3+DFXdS3lhYmusitUGV/BWuCJbUbQS8HJjw==", - "requires": { - "@loaders.gl/gltf": "^3.2.10", - "@luma.gl/constants": "^8.5.16", - "@luma.gl/experimental": "^8.5.16", - "@luma.gl/shadertools": "^8.5.16" - } - }, - "@deck.gl/react": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/@deck.gl/react/-/react-8.8.24.tgz", - "integrity": "sha512-nj3nvjG9mS3Wkbm0GaHjw8o8ktaSCVMCPkbqemrGqrZrUPR3Af0q8HAOjVL3ScTDLPZI8yanirj61EypYyzRzQ==", - "requires": {} - }, - "@jridgewell/gen-mapping": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", - "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", - "requires": { - "@jridgewell/set-array": "^1.0.0", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" - }, - "@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - }, - "@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", - "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "@loaders.gl/3d-tiles": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/3d-tiles/-/3d-tiles-3.2.13.tgz", - "integrity": "sha512-e9LLOBMupbdhApbTJQZ0IPNWVX0ybTYKlVBu8QpdlK0PgRnrZymXScaD46RusUlg4Jmh2VjnSch7pB1yvx2xvg==", - "requires": { - "@loaders.gl/draco": "3.2.13", - "@loaders.gl/gltf": "3.2.13", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/math": "3.2.13", - "@loaders.gl/tiles": "3.2.13", - "@math.gl/core": "^3.5.1", - "@math.gl/geospatial": "^3.5.1" - } - }, - "@loaders.gl/core": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/core/-/core-3.2.13.tgz", - "integrity": "sha512-vkrjlsqJvXGuS3WyhNbQLASnRZUNIwA+oNQQx+d1qNU5sxVRcIRphBzWNOMmgzK+C/eYK/Set43TwsGaRRQuJA==", - "requires": { - "@babel/runtime": "^7.3.1", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/worker-utils": "3.2.13", - "@probe.gl/log": "^3.5.0", - "probe.gl": "^3.4.0" - } - }, - "@loaders.gl/csv": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/csv/-/csv-3.2.13.tgz", - "integrity": "sha512-VP0B7ZamEIc737HcUMoPlpfRsF6Z6bjD55pUhOdGwDpiup3uSoKXnykdlCPk39gcK2usOwEWvCfrBHAvwsKJ7w==", - "requires": { - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/schema": "3.2.13" - } - }, - "@loaders.gl/draco": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/draco/-/draco-3.2.13.tgz", - "integrity": "sha512-r+dHWzRPd1cRP6vL2YFDsyJZQrbqp7J0iZEpGt1KEdjQmyxdtVZ23vSqhx4yUR9lcod6Yo/vqmrUXejki+/vUQ==", - "requires": { - "@babel/runtime": "^7.3.1", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/schema": "3.2.13", - "@loaders.gl/worker-utils": "3.2.13", - "draco3d": "1.4.1" - } - }, - "@loaders.gl/gis": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/gis/-/gis-3.2.13.tgz", - "integrity": "sha512-Po9u+iwkji84Pj7Vkdc6Lx1ePeG3ynHaDFQKXR8BLr2XcjZPhyFnUAaWgEFwckTMg/PhwG4NHJzYHq9ztMDPpA==", - "requires": { - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/schema": "3.2.13", - "@mapbox/vector-tile": "^1.3.1", - "@math.gl/polygon": "^3.5.1", - "pbf": "^3.2.1" - } - }, - "@loaders.gl/gltf": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/gltf/-/gltf-3.2.13.tgz", - "integrity": "sha512-S+K7MNWxpWqpypITD4B8ycYtX9bRbcLGDafs9j+B5g0EadElvRcrHalvC2KsSkmNajyBKmlxFk2BoN0thzeQbw==", - "requires": { - "@loaders.gl/draco": "3.2.13", - "@loaders.gl/images": "3.2.13", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/textures": "3.2.13" - } - }, - "@loaders.gl/images": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/images/-/images-3.2.13.tgz", - "integrity": "sha512-s3aPA/gQH30MaUexlw5HqYA5Zl59yPgO4lZP9YM5s9tb42Mj1IZ6seImOiHHDihAmoUj6NBPLSFVrxq99Qz4Hg==", - "requires": { - "@loaders.gl/loader-utils": "3.2.13" - } - }, - "@loaders.gl/json": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/json/-/json-3.2.13.tgz", - "integrity": "sha512-Wi97qjvDrXML1cr6Sw0sdFNjRVN7L5M5GLExKFjth7gED3KX4iUpNFVM9P941ZjT9cSIdGmktbVvIaWHmXaUSw==", - "requires": { - "@loaders.gl/gis": "3.2.13", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/schema": "3.2.13" - } - }, - "@loaders.gl/loader-utils": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/loader-utils/-/loader-utils-3.2.13.tgz", - "integrity": "sha512-ldQUYvKBYGQaQM7hJClXBTv64jWLkabW0Ilb6Yz9bJ6Km04+3VyvSXwTn9GMYdadzH0Txs5kMiQygOU3oekcew==", - "requires": { - "@babel/runtime": "^7.3.1", - "@loaders.gl/worker-utils": "3.2.13", - "@probe.gl/stats": "^3.5.0" - } - }, - "@loaders.gl/math": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/math/-/math-3.2.13.tgz", - "integrity": "sha512-vXuib466Q7MWqhQ7YiP9irOpNHA2IqKM1fa+/YE09ROg6g0JDDir2YKZCtsmfN/mOSzX3FxsewDzGJqear6VsQ==", - "requires": { - "@loaders.gl/images": "3.2.13", - "@loaders.gl/loader-utils": "3.2.13", - "@math.gl/core": "^3.5.1" - } - }, - "@loaders.gl/mvt": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/mvt/-/mvt-3.2.13.tgz", - "integrity": "sha512-JoPx0p2J+TDfYZXSeoLmy7WgLO6fn0Fjf0GowrvH+ntt+vMtUNgNBlCTX7tpauqKk6+1FaQlu2aMuYiwMwcCnA==", - "requires": { - "@loaders.gl/gis": "3.2.13", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/schema": "3.2.13", - "@math.gl/polygon": "^3.5.1", - "pbf": "^3.2.1" - } - }, - "@loaders.gl/schema": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/schema/-/schema-3.2.13.tgz", - "integrity": "sha512-hXtml5wJKapHxIEW2mV391oBBKtKjF5X+uP9DhqtZxwXPcOC4Yb93ssFL33YvJWGG+Vfvllpy6ispoR2LAx9+g==", - "requires": { - "@types/geojson": "^7946.0.7", - "apache-arrow": "^4.0.0" - } - }, - "@loaders.gl/terrain": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/terrain/-/terrain-3.2.13.tgz", - "integrity": "sha512-rvlsPT6+94AZryoxRl1QEmyOrdYkfnjJUtNMKmZip73XjquKnJJ795zjlzo73DghK3KwZc/8vgrkuE/3z8oWJQ==", - "requires": { - "@babel/runtime": "^7.3.1", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/schema": "3.2.13", - "@mapbox/martini": "^0.2.0" - } - }, - "@loaders.gl/textures": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/textures/-/textures-3.2.13.tgz", - "integrity": "sha512-e5KcKdMy1mhNdBWcNKtOLMxd7z9/tDI4/87rD3GRTUFvdPtODhdKFGT8KprCupQu0Ob/1RKr78UZ3XFnU8C6Cw==", - "requires": { - "@loaders.gl/images": "3.2.13", - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/schema": "3.2.13", - "@loaders.gl/worker-utils": "3.2.13", - "ktx-parse": "^0.0.4", - "texture-compressor": "^1.0.2" - } - }, - "@loaders.gl/tiles": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/tiles/-/tiles-3.2.13.tgz", - "integrity": "sha512-Obr3gugRcmn68S5ekDp+ZjvE/JOhnr0RCDN3R0p40whV0fuoe8kVcsUVoR2zqccvpcxeBeUMEyRk+3xLtnR/eQ==", - "requires": { - "@loaders.gl/loader-utils": "3.2.13", - "@loaders.gl/math": "3.2.13", - "@math.gl/core": "^3.5.1", - "@math.gl/culling": "^3.5.1", - "@math.gl/geospatial": "^3.5.1", - "@math.gl/web-mercator": "^3.5.1", - "@probe.gl/stats": "^3.5.0" - } - }, - "@loaders.gl/worker-utils": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/@loaders.gl/worker-utils/-/worker-utils-3.2.13.tgz", - "integrity": "sha512-YgF7JC7lFY/+ykSrVSrnt3erPXQWjewu6Vl8PBh96ehMCi7zeI6167zQt3hfyJHrLcBojNUZY45UoxzqWdUwAA==", - "requires": { - "@babel/runtime": "^7.3.1" - } - }, - "@luma.gl/constants": { - "version": "8.5.18", - "resolved": "https://registry.npmjs.org/@luma.gl/constants/-/constants-8.5.18.tgz", - "integrity": "sha512-lQLGAlroQaeJkAUwrb1fRiHlMBP9/ukyjnZ1QlYgXYyeC7/9XhLx4rqBlOzQ2sxcTHHwi73nHD0P2XmVuAccBg==" - }, - "@luma.gl/core": { - "version": "8.5.18", - "resolved": "https://registry.npmjs.org/@luma.gl/core/-/core-8.5.18.tgz", - "integrity": "sha512-XvxE2WE9jFEweJftczQ4QPd8FD23H8mWJoQej7llnyta0Xqb18Cx2VOzuyQ4uN7Uab42YkwXTu25uAq0SdAehA==", - "requires": { - "@babel/runtime": "^7.0.0", - "@luma.gl/constants": "8.5.18", - "@luma.gl/engine": "8.5.18", - "@luma.gl/gltools": "8.5.18", - "@luma.gl/shadertools": "8.5.18", - "@luma.gl/webgl": "8.5.18" - } - }, - "@luma.gl/engine": { - "version": "8.5.18", - "resolved": "https://registry.npmjs.org/@luma.gl/engine/-/engine-8.5.18.tgz", - "integrity": "sha512-hLdtEPk3yt8ikL3g9qVc5FuMPMdhnj1ykPgmG6Mh4lRlCProgGSlwqWuAkzPYwYqIBqKlPNMv8DavRfsKAKc3g==", - "requires": { - "@babel/runtime": "^7.0.0", - "@luma.gl/constants": "8.5.18", - "@luma.gl/gltools": "8.5.18", - "@luma.gl/shadertools": "8.5.18", - "@luma.gl/webgl": "8.5.18", - "@math.gl/core": "^3.5.0", - "@probe.gl/env": "^3.5.0", - "@probe.gl/stats": "^3.5.0", - "@types/offscreencanvas": "^2019.7.0" - } - }, - "@luma.gl/experimental": { - "version": "8.5.18", - "resolved": "https://registry.npmjs.org/@luma.gl/experimental/-/experimental-8.5.18.tgz", - "integrity": "sha512-Bw8mwO3NVYGwzYr1Edl4LVbT7JORIpymdXpmmoqP9SpWAh5HJmNSS8wt1FDaQGVCgSA/5QpmmZb1NjIKX4B40g==", - "requires": { - "@luma.gl/constants": "8.5.18", - "@math.gl/core": "^3.5.0", - "earcut": "^2.0.6" - } - }, - "@luma.gl/gltools": { - "version": "8.5.18", - "resolved": "https://registry.npmjs.org/@luma.gl/gltools/-/gltools-8.5.18.tgz", - "integrity": "sha512-AnZ8fxsJz/wRdUJazsFvTXbh8ypYX9rATPJj8YlDv08DGGFTQiq8MurzbEjXaEYshAu5w9rXd22nQXkQziUhmQ==", - "requires": { - "@babel/runtime": "^7.0.0", - "@luma.gl/constants": "8.5.18", - "@probe.gl/env": "^3.5.0", - "@probe.gl/log": "^3.5.0", - "@types/offscreencanvas": "^2019.7.0" - } - }, - "@luma.gl/shadertools": { - "version": "8.5.18", - "resolved": "https://registry.npmjs.org/@luma.gl/shadertools/-/shadertools-8.5.18.tgz", - "integrity": "sha512-orkdnlVLB8AO4yf9jXXZqEG/UuwVg/v3Gmo4/F2vdrwkUMN+wUZFUdhssDGEGWvuauZWK9Mbz8XrxC0gmLbWzw==", - "requires": { - "@babel/runtime": "^7.0.0", - "@math.gl/core": "^3.5.0" - } - }, - "@luma.gl/webgl": { - "version": "8.5.18", - "resolved": "https://registry.npmjs.org/@luma.gl/webgl/-/webgl-8.5.18.tgz", - "integrity": "sha512-8pRMq4olLzEv7ToDtCagGDklkIu1iFFBEXT4Rh11ohrfUiDAPfGz5hJrr3m0XtsVfS1CQ5QPWN2tQclmXOL+cQ==", - "requires": { - "@babel/runtime": "^7.0.0", - "@luma.gl/constants": "8.5.18", - "@luma.gl/gltools": "8.5.18", - "@probe.gl/env": "^3.5.0", - "@probe.gl/stats": "^3.5.0" - } - }, - "@mapbox/geojson-rewind": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz", - "integrity": "sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==", - "requires": { - "get-stream": "^6.0.1", - "minimist": "^1.2.6" - } - }, - "@mapbox/geojson-types": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz", - "integrity": "sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw==", - "peer": true - }, - "@mapbox/jsonlint-lines-primitives": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz", - "integrity": "sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ==" - }, - "@mapbox/mapbox-gl-supported": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.5.0.tgz", - "integrity": "sha512-/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg==", - "peer": true, - "requires": {} - }, - "@mapbox/martini": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@mapbox/martini/-/martini-0.2.0.tgz", - "integrity": "sha512-7hFhtkb0KTLEls+TRw/rWayq5EeHtTaErgm/NskVoXmtgAQu/9D299aeyj6mzAR/6XUnYRp2lU+4IcrYRFjVsQ==" - }, - "@mapbox/point-geometry": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz", - "integrity": "sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ==" - }, - "@mapbox/tile-cover": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@mapbox/tile-cover/-/tile-cover-3.0.2.tgz", - "integrity": "sha512-A6qvtttsYI66BYi8JMD0v7BzxeuXJf6qSzufmdvvYxDJyXqATZ7ig6OKHFCW7/OsUjpfFu3rB54JM/yHUOVB9g==", - "requires": { - "@mapbox/tilebelt": "^1.0.1" - } - }, - "@mapbox/tilebelt": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@mapbox/tilebelt/-/tilebelt-1.0.2.tgz", - "integrity": "sha512-tGJN2VIgWrXqBTPIxFVklklIpcy6ss8W5ouq+cjNLXPXFraRaDR4Ice+5Q8/uLX+6aH23lWBMydOIn8PcdVcpA==" - }, - "@mapbox/tiny-sdf": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-1.2.5.tgz", - "integrity": "sha512-cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw==" - }, - "@mapbox/unitbezier": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz", - "integrity": "sha512-HPnRdYO0WjFjRTSwO3frz1wKaU649OBFPX3Zo/2WZvuRi6zMiRGui8SnPQiQABgqCf8YikDe5t3HViTVw1WUzA==", - "peer": true - }, - "@mapbox/vector-tile": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz", - "integrity": "sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==", - "requires": { - "@mapbox/point-geometry": "~0.1.0" - } - }, - "@mapbox/whoots-js": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz", - "integrity": "sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==" - }, - "@math.gl/core": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-3.6.3.tgz", - "integrity": "sha512-jBABmDkj5uuuE0dTDmwwss7Cup5ZwQ6Qb7h1pgvtkEutTrhkcv8SuItQNXmF45494yIHeoGue08NlyeY6wxq2A==", - "requires": { - "@babel/runtime": "^7.12.0", - "@math.gl/types": "3.6.3", - "gl-matrix": "^3.4.0" - } - }, - "@math.gl/culling": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/culling/-/culling-3.6.3.tgz", - "integrity": "sha512-3UERXHbaPlM6pnTk2MI7LeQ5CoelDZzDzghTTcv+HdQCZsT/EOEuEdYimETHtSxiyiOmsX2Un65UBLYT/rbKZg==", - "requires": { - "@babel/runtime": "^7.12.0", - "@math.gl/core": "3.6.3", - "gl-matrix": "^3.4.0" - } - }, - "@math.gl/geospatial": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/geospatial/-/geospatial-3.6.3.tgz", - "integrity": "sha512-6xf657lJnaecSarSzn02t0cnsCSkWb+39m4+im96v20dZTrLCWZ2glDQVzfuL91meDnDXjH4oyvynp12Mj5MFg==", - "requires": { - "@babel/runtime": "^7.12.0", - "@math.gl/core": "3.6.3", - "gl-matrix": "^3.4.0" - } - }, - "@math.gl/polygon": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/polygon/-/polygon-3.6.3.tgz", - "integrity": "sha512-FivQ1ZnYcAss1wVifOkHP/ZnlfQy1IL/769uzNtiHxwUbW0kZG3yyOZ9I7fwyzR5Hvqt3ErJKHjSYZr0uVlz5g==", - "requires": { - "@math.gl/core": "3.6.3" - } - }, - "@math.gl/sun": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/sun/-/sun-3.6.3.tgz", - "integrity": "sha512-mrx6CGYYeTNSQttvcw0KVUy+35YDmnjMqpO/o0t06Vcghrt0HNruB/ScRgUSbJrgkbOg1Vcqm23HBd++clzQzw==", - "requires": { - "@babel/runtime": "^7.12.0" - } - }, - "@math.gl/types": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/types/-/types-3.6.3.tgz", - "integrity": "sha512-3uWLVXHY3jQxsXCr/UCNPSc2BG0hNUljhmOBt9l+lNFDp7zHgm0cK2Tw4kj2XfkJy4TgwZTBGwRDQgWEbLbdTA==" - }, - "@math.gl/web-mercator": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/web-mercator/-/web-mercator-3.6.3.tgz", - "integrity": "sha512-UVrkSOs02YLehKaehrxhAejYMurehIHPfFQvPFZmdJHglHOU4V2cCUApTVEwOksvCp161ypEqVp+9H6mGhTTcw==", - "requires": { - "@babel/runtime": "^7.12.0", - "gl-matrix": "^3.4.0" - } - }, - "@probe.gl/env": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/@probe.gl/env/-/env-3.6.0.tgz", - "integrity": "sha512-4tTZYUg/8BICC3Yyb9rOeoKeijKbZHRXBEKObrfPmX4sQmYB15ZOUpoVBhAyJkOYVAM8EkPci6Uw5dLCwx2BEQ==", - "requires": { - "@babel/runtime": "^7.0.0" - } - }, - "@probe.gl/log": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/@probe.gl/log/-/log-3.6.0.tgz", - "integrity": "sha512-hjpyenpEvOdowgZ1qMeCJxfRD4JkKdlXz0RC14m42Un62NtOT+GpWyKA4LssT0+xyLULCByRAtG2fzZorpIAcA==", - "requires": { - "@babel/runtime": "^7.0.0", - "@probe.gl/env": "3.6.0" - } - }, - "@probe.gl/stats": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/@probe.gl/stats/-/stats-3.6.0.tgz", - "integrity": "sha512-JdALQXB44OP4kUBN/UrQgzbJe4qokbVF4Y8lkIA8iVCFnjVowWIgkD/z/0QO65yELT54tTrtepw1jScjKB+rhQ==", - "requires": { - "@babel/runtime": "^7.0.0" - } - }, - "@types/flatbuffers": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/@types/flatbuffers/-/flatbuffers-1.10.0.tgz", - "integrity": "sha512-7btbphLrKvo5yl/5CC2OCxUSMx1wV1wvGT1qDXkSt7yi00/YW7E8k6qzXqJHsp+WU0eoG7r6MTQQXI9lIvd0qA==" - }, - "@types/geojson": { - "version": "7946.0.10", - "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz", - "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==" - }, - "@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", - "dev": true, - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "@types/hammerjs": { - "version": "2.0.41", - "resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.41.tgz", - "integrity": "sha512-ewXv/ceBaJprikMcxCmWU1FKyMAQ2X7a9Gtmzw8fcg2kIePI1crERDM818W+XYrxqdBBOdlf2rm137bU+BltCA==" - }, - "@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", - "dev": true - }, - "@types/mapbox__point-geometry": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.2.tgz", - "integrity": "sha512-D0lgCq+3VWV85ey1MZVkE8ZveyuvW5VAfuahVTQRpXFQTxw03SuIf1/K4UQ87MMIXVKzpFjXFiFMZzLj2kU+iA==" - }, - "@types/mapbox__vector-tile": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@types/mapbox__vector-tile/-/mapbox__vector-tile-1.3.0.tgz", - "integrity": "sha512-kDwVreQO5V4c8yAxzZVQLE5tyWF+IPToAanloQaSnwfXmIcJ7cyOrv8z4Ft4y7PsLYmhWXmON8MBV8RX0Rgr8g==", - "requires": { - "@types/geojson": "*", - "@types/mapbox__point-geometry": "*", - "@types/pbf": "*" - } - }, - "@types/mapbox-gl": { - "version": "2.7.10", - "resolved": "https://registry.npmjs.org/@types/mapbox-gl/-/mapbox-gl-2.7.10.tgz", - "integrity": "sha512-nMVEcu9bAcenvx6oPWubQSPevsekByjOfKjlkr+8P91vawtkxTnopDoXXq1Qn/f4cg3zt0Z2W9DVsVsKRNXJTw==", - "requires": { - "@types/geojson": "*" - } - }, - "@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true - }, - "@types/node": { - "version": "14.18.36", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.36.tgz", - "integrity": "sha512-FXKWbsJ6a1hIrRxv+FoukuHnGTgEzKYGi7kilfMae96AL9UNkPFNWJEEYWzdRI9ooIkbr4AKldyuSTLql06vLQ==" - }, - "@types/offscreencanvas": { - "version": "2019.7.0", - "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.0.tgz", - "integrity": "sha512-PGcyveRIpL1XIqK8eBsmRBt76eFgtzuPiSTyKHZxnGemp2yzGzWpjYKAfK3wIMiU7eH+851yEpiuP8JZerTmWg==" - }, - "@types/pbf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/pbf/-/pbf-3.0.2.tgz", - "integrity": "sha512-EDrLIPaPXOZqDjrkzxxbX7UlJSeQVgah3i0aA4pOSzmK9zq3BIh7/MZIQxED7slJByvKM4Gc6Hypyu2lJzh3SQ==" - }, - "@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", - "peer": true - }, - "@types/react": { - "version": "18.0.28", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.28.tgz", - "integrity": "sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==", - "peer": true, - "requires": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "@types/scheduler": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", - "peer": true - }, - "@types/text-encoding-utf-8": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@types/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz", - "integrity": "sha512-AQ6zewa0ucLJvtUi5HsErbOFKAcQfRLt9zFLlUOvcXBy2G36a+ZDpCHSGdzJVUD8aNURtIjh9aSjCStNMRCcRQ==" - }, - "@webassemblyjs/ast": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", - "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", - "dev": true, - "requires": { - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0" - } - }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", - "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", - "dev": true - }, - "@webassemblyjs/helper-api-error": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", - "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", - "dev": true - }, - "@webassemblyjs/helper-buffer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", - "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", - "dev": true - }, - "@webassemblyjs/helper-code-frame": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", - "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", - "dev": true, - "requires": { - "@webassemblyjs/wast-printer": "1.9.0" - } - }, - "@webassemblyjs/helper-fsm": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", - "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", - "dev": true - }, - "@webassemblyjs/helper-module-context": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", - "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0" - } - }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", - "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", - "dev": true - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", - "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0" - } - }, - "@webassemblyjs/ieee754": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", - "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", - "dev": true, - "requires": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "@webassemblyjs/leb128": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", - "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", - "dev": true, - "requires": { - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/utf8": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", - "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", - "dev": true - }, - "@webassemblyjs/wasm-edit": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", - "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/helper-wasm-section": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-opt": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "@webassemblyjs/wast-printer": "1.9.0" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", - "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", - "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", - "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" - } - }, - "@webassemblyjs/wast-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", - "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/floating-point-hex-parser": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-code-frame": "1.9.0", - "@webassemblyjs/helper-fsm": "1.9.0", - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", - "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0", - "@xtuc/long": "4.2.2" - } - }, - "@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true - }, - "accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dev": true, - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - } - }, - "acorn": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", - "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", - "dev": true - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-errors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", - "dev": true, - "requires": {} - }, - "ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "requires": {} - }, - "ansi-colors": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", - "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", - "dev": true - }, - "ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", - "dev": true - }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "optional": true, - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "apache-arrow": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/apache-arrow/-/apache-arrow-4.0.1.tgz", - "integrity": "sha512-DyF7GXCbSjsw4P5C8b+qW7OnJKa6w9mJI0mhV0+EfZbVZCmhfiF6ffqcnrI/kzBrRqn9hH/Ft9n5+m4DTbBJpg==", - "requires": { - "@types/flatbuffers": "^1.10.0", - "@types/node": "^14.14.37", - "@types/text-encoding-utf-8": "^1.0.1", - "command-line-args": "5.1.1", - "command-line-usage": "6.1.1", - "flatbuffers": "1.12.0", - "json-bignum": "^0.0.3", - "pad-left": "^2.1.0", - "text-encoding-utf-8": "^1.0.2", - "tslib": "^2.2.0" - } - }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "dev": true - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", - "dev": true - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", - "dev": true - }, - "array-back": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", - "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==" - }, - "array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", - "dev": true - }, - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", - "dev": true, - "requires": { - "array-uniq": "^1.0.1" - } - }, - "array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", - "dev": true - }, - "asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", - "dev": true, - "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - } - } - }, - "assert": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", - "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", - "dev": true, - "requires": { - "object-assign": "^4.1.1", - "util": "0.10.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==", - "dev": true - }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==", - "dev": true, - "requires": { - "inherits": "2.0.1" - } - } - } - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", - "dev": true - }, - "async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", - "dev": true, - "requires": { - "lodash": "^4.17.14" - } - }, - "async-each": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", - "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", - "dev": true - }, - "async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", - "dev": true - }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "dev": true - }, - "babel-loader": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", - "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", - "dev": true, - "requires": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^2.0.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - }, - "dependencies": { - "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - }, - "schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - } - } - } - }, - "babel-plugin-polyfill-corejs2": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", - "requires": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" - } - }, - "babel-plugin-polyfill-corejs3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", - "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" - } - }, - "babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", - "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.3" - } - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dev": true, - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - } - } - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true - }, - "batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", - "dev": true - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "optional": true - }, - "bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dev": true, - "optional": true, - "requires": { - "file-uri-to-path": "1.0.0" - } - }, - "bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", - "dev": true - }, - "bn.js": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", - "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", - "dev": true - }, - "body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "dependencies": { - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "bonjour": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", - "dev": true, - "requires": { - "array-flatten": "^2.1.0", - "deep-equal": "^1.0.1", - "dns-equal": "^1.0.0", - "dns-txt": "^2.0.2", - "multicast-dns": "^6.0.1", - "multicast-dns-service-types": "^1.1.0" - } - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - } - } - }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", - "dev": true - }, - "browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "dev": true, - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "dev": true, - "requires": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dev": true, - "requires": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", - "dev": true, - "requires": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" - } - }, - "browserify-sign": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", - "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", - "dev": true, - "requires": { - "bn.js": "^5.1.1", - "browserify-rsa": "^4.0.1", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.3", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.5", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "dev": true, - "requires": { - "pako": "~1.0.5" - } - }, - "browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", - "requires": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" - } - }, - "buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", - "dev": true, - "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, - "buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "buffer-indexof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", - "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", - "dev": true - }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", - "dev": true - }, - "builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", - "dev": true - }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "dev": true - }, - "cacache": { - "version": "12.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", - "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", - "dev": true, - "requires": { - "bluebird": "^3.5.5", - "chownr": "^1.1.1", - "figgy-pudding": "^3.5.1", - "glob": "^7.1.4", - "graceful-fs": "^4.1.15", - "infer-owner": "^1.0.3", - "lru-cache": "^5.1.1", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.3", - "ssri": "^6.0.1", - "unique-filename": "^1.1.1", - "y18n": "^4.0.0" - } - }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "dev": true, - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - } - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "caniuse-lite": { - "version": "1.0.30001453", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001453.tgz", - "integrity": "sha512-R9o/uySW38VViaTrOtwfbFEiBFUh7ST3uIG4OEymIG3/uKdHDO4xk/FaqfUw0d+irSUyFPy3dZszf9VvSTPnsA==" - }, - "cartocolor": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/cartocolor/-/cartocolor-4.0.2.tgz", - "integrity": "sha512-+Gh9mb6lFxsDOLQlBLPxAHCnWXlg2W8q3AcVwqRcy95TdBbcOU89Wrb6h2Hd/6Ww1Kc1pzXmUdpnWD+xeCG0dg==", - "requires": { - "colorbrewer": "1.0.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "optional": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "dependencies": { - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "optional": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "optional": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "optional": true - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "optional": true, - "requires": { - "is-number": "^7.0.0" - } - } - } - }, - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, - "chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "dev": true - }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "dev": true, - "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "cliui": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", - "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", - "dev": true, - "requires": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", - "dev": true, - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "colorbrewer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/colorbrewer/-/colorbrewer-1.0.0.tgz", - "integrity": "sha512-NZuIOVdErK/C6jDH3jWT/roxWJbJAinMiqEpbuWniKvQAoWdg6lGra3pPrSHvaIf8PlX8wLs/RAC6nULFJbgmg==" - }, - "command-line-args": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.1.1.tgz", - "integrity": "sha512-hL/eG8lrll1Qy1ezvkant+trihbGnaKaeEjj6Scyr3DN+RC7iQ5Rz84IeLERfAWDGo0HBSNAakczwgCilDXnWg==", - "requires": { - "array-back": "^3.0.1", - "find-replace": "^3.0.0", - "lodash.camelcase": "^4.3.0", - "typical": "^4.0.0" - } - }, - "command-line-usage": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.1.tgz", - "integrity": "sha512-F59pEuAR9o1SF/bD0dQBDluhpT4jJQNWUHEuVBqpDmCUo6gPjCi+m9fCWnWZVR/oG6cMTUms4h+3NPl74wGXvA==", - "requires": { - "array-back": "^4.0.1", - "chalk": "^2.4.2", - "table-layout": "^1.0.1", - "typical": "^5.2.0" - }, - "dependencies": { - "array-back": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", - "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==" - }, - "typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==" - } - } - }, - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", - "dev": true - }, - "component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "dev": true - }, - "compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "dev": true, - "requires": { - "mime-db": ">= 1.43.0 < 2" - } - }, - "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "dev": true, - "requires": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - } - } - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", - "dev": true - }, - "console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", - "dev": true - }, - "constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", - "dev": true - }, - "content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dev": true, - "requires": { - "safe-buffer": "5.2.1" - } - }, - "content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true - }, - "convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - }, - "cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "dev": true - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "dev": true - }, - "copy-concurrently": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", - "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", - "dev": true, - "requires": { - "aproba": "^1.1.1", - "fs-write-stream-atomic": "^1.0.8", - "iferr": "^0.1.5", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.0" - } - }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", - "dev": true - }, - "core-js-compat": { - "version": "3.28.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.28.0.tgz", - "integrity": "sha512-myzPgE7QodMg4nnd3K1TDoES/nADRStM8Gpz0D6nhkwbmwEnE0ZGJgoWsvQ722FR8D7xS0n0LV556RcEicjTyg==", - "requires": { - "browserslist": "^4.21.5" - } - }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - } - } - }, - "create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "dev": true, - "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "dev": true, - "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } - } - }, - "crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "dev": true, - "requires": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - } - }, - "csscolorparser": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/csscolorparser/-/csscolorparser-1.0.3.tgz", - "integrity": "sha512-umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w==" - }, - "csstype": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", - "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==", - "peer": true - }, - "cyclist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", - "integrity": "sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==", - "dev": true - }, - "d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - }, - "d3-collection": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz", - "integrity": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==" - }, - "d3-color": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-1.4.1.tgz", - "integrity": "sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==" - }, - "d3-dispatch": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.6.tgz", - "integrity": "sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA==" - }, - "d3-dsv": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.2.0.tgz", - "integrity": "sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g==", - "requires": { - "commander": "2", - "iconv-lite": "0.4", - "rw": "1" - } - }, - "d3-format": { - "version": "1.4.5", - "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-1.4.5.tgz", - "integrity": "sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==" - }, - "d3-hexbin": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/d3-hexbin/-/d3-hexbin-0.2.2.tgz", - "integrity": "sha512-KS3fUT2ReD4RlGCjvCEm1RgMtp2NFZumdMu4DBzQK8AZv3fXRM6Xm8I4fSU07UXvH4xxg03NwWKWdvxfS/yc4w==" - }, - "d3-interpolate": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.4.0.tgz", - "integrity": "sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==", - "requires": { - "d3-color": "1" - } - }, - "d3-request": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/d3-request/-/d3-request-1.0.6.tgz", - "integrity": "sha512-FJj8ySY6GYuAJHZMaCQ83xEYE4KbkPkmxZ3Hu6zA1xxG2GD+z6P+Lyp+zjdsHf0xEbp2xcluDI50rCS855EQ6w==", - "requires": { - "d3-collection": "1", - "d3-dispatch": "1", - "d3-dsv": "1", - "xmlhttprequest": "1" - } - }, - "d3-scale": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz", - "integrity": "sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==", - "requires": { - "d3-array": "^1.2.0", - "d3-collection": "1", - "d3-format": "1", - "d3-interpolate": "1", - "d3-time": "1", - "d3-time-format": "2" - } - }, - "d3-time": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-1.1.0.tgz", - "integrity": "sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==" - }, - "d3-time-format": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.3.0.tgz", - "integrity": "sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ==", - "requires": { - "d3-time": "1" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true - }, - "deck.gl": { - "version": "8.8.24", - "resolved": "https://registry.npmjs.org/deck.gl/-/deck.gl-8.8.24.tgz", - "integrity": "sha512-2EysFdxSenBh1NUZQRwp1V8XdCsG2vFWHpRUysHhcZGgfC4m5CZwulLE1gL5Wpcki1p30IGUZG7a6hyIbM9Gtg==", - "requires": { - "@deck.gl/aggregation-layers": "8.8.24", - "@deck.gl/carto": "8.8.24", - "@deck.gl/core": "8.8.24", - "@deck.gl/extensions": "8.8.24", - "@deck.gl/geo-layers": "8.8.24", - "@deck.gl/google-maps": "8.8.24", - "@deck.gl/json": "8.8.24", - "@deck.gl/layers": "8.8.24", - "@deck.gl/mapbox": "8.8.24", - "@deck.gl/mesh-layers": "8.8.24", - "@deck.gl/react": "8.8.24" - } - }, - "decode-uri-component": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", - "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", - "dev": true - }, - "deep-equal": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", - "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", - "dev": true, - "requires": { - "is-arguments": "^1.0.4", - "is-date-object": "^1.0.1", - "is-regex": "^1.0.4", - "object-is": "^1.0.1", - "object-keys": "^1.1.1", - "regexp.prototype.flags": "^1.2.0" - } - }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - }, - "default-gateway": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", - "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", - "dev": true, - "requires": { - "execa": "^1.0.0", - "ip-regex": "^2.1.0" - } - }, - "define-properties": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", - "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", - "dev": true, - "requires": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - } - }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - } - }, - "del": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", - "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", - "dev": true, - "requires": { - "@types/glob": "^7.1.1", - "globby": "^6.1.0", - "is-path-cwd": "^2.0.0", - "is-path-in-cwd": "^2.0.0", - "p-map": "^2.0.0", - "pify": "^4.0.1", - "rimraf": "^2.6.3" - } - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true - }, - "des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true - }, - "detect-file": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", - "dev": true - }, - "detect-node": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", - "dev": true - }, - "diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - } - } - }, - "dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", - "dev": true - }, - "dns-packet": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", - "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", - "dev": true, - "requires": { - "ip": "^1.1.0", - "safe-buffer": "^5.0.1" - } - }, - "dns-txt": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", - "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", - "dev": true, - "requires": { - "buffer-indexof": "^1.0.0" - } - }, - "domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", - "dev": true - }, - "draco3d": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/draco3d/-/draco3d-1.4.1.tgz", - "integrity": "sha512-9Rxonc70xiovBC+Bq1h57SNZIHzWTibU1VfIGp5z3Xx8dPtv4yT5uGhiH7P5uvJRR2jkrvHafRxR7bTANkvfpg==" - }, - "duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dev": true, - "requires": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - }, - "earcut": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz", - "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==" - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.4.299", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.299.tgz", - "integrity": "sha512-lQ7ijJghH6pCGbfWXr6EY+KYCMaRSjgsY925r1p/TlpSfVM1VjHTcn1gAc15VM4uwti283X6QtjPTXdpoSGiZQ==" - }, - "elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", - "dev": true, - "requires": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - } - } - }, - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "requires": { - "once": "^1.4.0" - } - }, - "enhanced-resolve": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", - "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.5.0", - "tapable": "^1.0.0" - }, - "dependencies": { - "memory-fs": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", - "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", - "dev": true, - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - } - } - }, - "errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", - "dev": true, - "requires": { - "prr": "~1.0.1" - } - }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - }, - "eslint-scope": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", - "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", - "dev": true, - "requires": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - } - }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "requires": { - "estraverse": "^5.2.0" - }, - "dependencies": { - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - } - } - }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true - }, - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true - }, - "events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "dev": true - }, - "eventsource": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-2.0.2.tgz", - "integrity": "sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==", - "dev": true - }, - "evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "dev": true, - "requires": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dev": true, - "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "dependencies": { - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - } - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", - "dev": true, - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "expand-tilde": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", - "dev": true, - "requires": { - "homedir-polyfill": "^1.0.1" - } - }, - "express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", - "dev": true, - "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "expression-eval": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/expression-eval/-/expression-eval-2.1.0.tgz", - "integrity": "sha512-FUJO/Akvl/JOWkvlqZaqbkhsEWlCJWDeZG4tzX96UH68D9FeRgYgtb55C2qtqbORC0Q6x5419EDjWu4IT9kQfg==", - "requires": { - "jsep": "^0.3.0" - } - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - } - } - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } - }, - "figgy-pudding": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", - "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", - "dev": true - }, - "file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "dev": true, - "optional": true - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - } - } - }, - "finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" - } - }, - "find-replace": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", - "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", - "requires": { - "array-back": "^3.0.1" - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "findup-sync": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", - "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", - "dev": true, - "requires": { - "detect-file": "^1.0.0", - "is-glob": "^4.0.0", - "micromatch": "^3.0.4", - "resolve-dir": "^1.0.1" - } - }, - "flatbuffers": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/flatbuffers/-/flatbuffers-1.12.0.tgz", - "integrity": "sha512-c7CZADjRcl6j0PlvFy0ZqXQ67qSEZfrVPynmnL+2zPc+NtMvrF8Y0QceMo7QqnSPc7+uWjUIAbvCQ5WIKlMVdQ==" - }, - "flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" - } - }, - "follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", - "dev": true - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", - "dev": true - }, - "forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true - }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", - "dev": true, - "requires": { - "map-cache": "^0.2.2" - } - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true - }, - "from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - } - }, - "fs-write-stream-atomic": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "iferr": "^0.1.5", - "imurmurhash": "^0.1.4", - "readable-stream": "1 || 2" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true - }, - "gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - }, - "geojson-vt": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-3.2.1.tgz", - "integrity": "sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==" - }, - "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true - }, - "get-intrinsic": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", - "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - } - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" - }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", - "dev": true - }, - "gl-matrix": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.3.tgz", - "integrity": "sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==" - }, - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "optional": true, - "requires": { - "is-glob": "^4.0.1" - } - }, - "global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "dev": true, - "requires": { - "global-prefix": "^3.0.0" - } - }, - "global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "requires": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - } - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - }, - "globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", - "dev": true, - "requires": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true - } - } - }, - "graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true - }, - "grid-index": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/grid-index/-/grid-index-1.1.0.tgz", - "integrity": "sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA==", - "peer": true - }, - "h3-js": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/h3-js/-/h3-js-3.7.2.tgz", - "integrity": "sha512-LPjlHSwB9zQZrMqKloCZmmmt3yZzIK7nqPcXqwU93zT3TtYG6jP4tZBzAPouxut7lLjdFbMQ75wRBiKfpsnY7w==" - }, - "hammerjs": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/hammerjs/-/hammerjs-2.0.8.tgz", - "integrity": "sha512-tSQXBXS/MWQOn/RKckawJ61vvsDpCom87JgxiYdGwHdOa0ht0vzUWDlfioofFCRU0L+6NGDt6XzbgoJvZkMeRQ==" - }, - "handle-thing": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", - "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", - "dev": true - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, - "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.1" - } - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true - }, - "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "requires": { - "has-symbols": "^1.0.2" - } - }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", - "dev": true, - "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - } - }, - "has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", - "dev": true, - "requires": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", - "dev": true, - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "homedir-polyfill": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", - "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", - "dev": true, - "requires": { - "parse-passwd": "^1.0.0" - } - }, - "hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" - } - }, - "html-entities": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", - "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", - "dev": true - }, - "http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", - "dev": true - }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - } - }, - "http-parser-js": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", - "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", - "dev": true - }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "dev": true, - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - } - }, - "http-proxy-middleware": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", - "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", - "dev": true, - "requires": { - "http-proxy": "^1.17.0", - "is-glob": "^4.0.0", - "lodash": "^4.17.11", - "micromatch": "^3.1.10" - } - }, - "https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", - "dev": true - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - }, - "iferr": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==", - "dev": true - }, - "image-size": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.7.5.tgz", - "integrity": "sha512-Hiyv+mXHfFEP7LzUL/llg9RwFxxY+o9N3JVLIeG5E7iFIFAalxvRU9UZthBdYDEVnzHMgjnKJPPpay5BWf1g9g==" - }, - "import-local": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", - "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", - "dev": true, - "requires": { - "pkg-dir": "^3.0.0", - "resolve-cwd": "^2.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true - }, - "infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - }, - "internal-ip": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", - "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", - "dev": true, - "requires": { - "default-gateway": "^4.2.0", - "ipaddr.js": "^1.9.0" - } - }, - "internmap": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", - "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==" - }, - "interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "dev": true - }, - "ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", - "dev": true - }, - "ip-regex": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", - "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", - "dev": true - }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true - }, - "is-absolute-url": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", - "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", - "dev": true - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "optional": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, - "is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", - "requires": { - "has": "^1.0.3" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", - "dev": true - }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "dev": true - }, - "is-path-in-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", - "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", - "dev": true, - "requires": { - "is-path-inside": "^2.1.0" - } - }, - "is-path-inside": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", - "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", - "dev": true, - "requires": { - "path-is-inside": "^1.0.2" - } - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "dev": true - }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true - }, - "is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "dev": true - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "jsep": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/jsep/-/jsep-0.3.5.tgz", - "integrity": "sha512-AoRLBDc6JNnKjNcmonituEABS5bcfqDhQAWWXNTFrqu6nVXBpBAGfcoTGZMFlIrh9FjmE1CQyX9CTNwZrXMMDA==" - }, - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - }, - "json-bignum": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/json-bignum/-/json-bignum-0.0.3.tgz", - "integrity": "sha512-2WHyXj3OfHSgNyuzDbSxI1w2jgw5gkWSWhS7Qg4bWXx1nLk3jnbwfUeS0PSba3IzpTUWdHxBieELUzXRjQB2zg==" - }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" - }, - "kdbush": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-3.0.0.tgz", - "integrity": "sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew==" - }, - "killable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", - "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", - "dev": true - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - }, - "ktx-parse": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/ktx-parse/-/ktx-parse-0.0.4.tgz", - "integrity": "sha512-LY3nrmfXl+wZZdPxgJ3ZmLvG+wkOZZP3/dr4RbQj1Pk3Qwz44esOOSFFVQJcNWpXAtiNIC66WgXufX/SYgYz6A==" - }, - "loader-runner": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", - "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", - "dev": true - }, - "loader-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", - "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - }, - "dependencies": { - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - } - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" - }, - "lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - }, - "loglevel": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.1.tgz", - "integrity": "sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==", - "dev": true - }, - "long": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz", - "integrity": "sha512-ZYvPPOMqUwPoDsbJaR10iQJYnMuZhRTvHYl62ErLIEX7RgFlziSBUUvrt3OVfc47QlHHpzPZYP17g3Fv7oeJkg==" - }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - }, - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "requires": { - "yallist": "^3.0.2" - } - }, - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } - } - }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", - "dev": true - }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", - "dev": true, - "requires": { - "object-visit": "^1.0.0" - } - }, - "mapbox-gl": { - "version": "1.13.3", - "resolved": "https://registry.npmjs.org/mapbox-gl/-/mapbox-gl-1.13.3.tgz", - "integrity": "sha512-p8lJFEiqmEQlyv+DQxFAOG/XPWN0Wp7j/Psq93Zywz7qt9CcUKFYDBOoOEKzqe6gudHVJY8/Bhqw6VDpX2lSBg==", - "peer": true, - "requires": { - "@mapbox/geojson-rewind": "^0.5.2", - "@mapbox/geojson-types": "^1.0.2", - "@mapbox/jsonlint-lines-primitives": "^2.0.2", - "@mapbox/mapbox-gl-supported": "^1.5.0", - "@mapbox/point-geometry": "^0.1.0", - "@mapbox/tiny-sdf": "^1.1.1", - "@mapbox/unitbezier": "^0.0.0", - "@mapbox/vector-tile": "^1.3.1", - "@mapbox/whoots-js": "^3.1.0", - "csscolorparser": "~1.0.3", - "earcut": "^2.2.2", - "geojson-vt": "^3.2.1", - "gl-matrix": "^3.2.1", - "grid-index": "^1.1.0", - "murmurhash-js": "^1.0.0", - "pbf": "^3.2.1", - "potpack": "^1.0.1", - "quickselect": "^2.0.0", - "rw": "^1.3.3", - "supercluster": "^7.1.0", - "tinyqueue": "^2.0.3", - "vt-pbf": "^3.1.1" - } - }, - "maplibre-gl": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/maplibre-gl/-/maplibre-gl-2.4.0.tgz", - "integrity": "sha512-csNFylzntPmHWidczfgCZpvbTSmhaWvLRj9e1ezUDBEPizGgshgm3ea1T5TCNEEBq0roauu7BPuRZjA3wO4KqA==", - "requires": { - "@mapbox/geojson-rewind": "^0.5.2", - "@mapbox/jsonlint-lines-primitives": "^2.0.2", - "@mapbox/mapbox-gl-supported": "^2.0.1", - "@mapbox/point-geometry": "^0.1.0", - "@mapbox/tiny-sdf": "^2.0.5", - "@mapbox/unitbezier": "^0.0.1", - "@mapbox/vector-tile": "^1.3.1", - "@mapbox/whoots-js": "^3.1.0", - "@types/geojson": "^7946.0.10", - "@types/mapbox__point-geometry": "^0.1.2", - "@types/mapbox__vector-tile": "^1.3.0", - "@types/pbf": "^3.0.2", - "csscolorparser": "~1.0.3", - "earcut": "^2.2.4", - "geojson-vt": "^3.2.1", - "gl-matrix": "^3.4.3", - "global-prefix": "^3.0.0", - "murmurhash-js": "^1.0.0", - "pbf": "^3.2.1", - "potpack": "^1.0.2", - "quickselect": "^2.0.0", - "supercluster": "^7.1.5", - "tinyqueue": "^2.0.3", - "vt-pbf": "^3.1.3" - }, - "dependencies": { - "@mapbox/mapbox-gl-supported": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-2.0.1.tgz", - "integrity": "sha512-HP6XvfNIzfoMVfyGjBckjiAOQK9WfX0ywdLubuPMPv+Vqf5fj0uCbgBQYpiqcWZT6cbyyRnTSXDheT1ugvF6UQ==" - }, - "@mapbox/tiny-sdf": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz", - "integrity": "sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==" - }, - "@mapbox/unitbezier": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz", - "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==" - } - } - }, - "math.gl": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/math.gl/-/math.gl-3.6.3.tgz", - "integrity": "sha512-Yq9CyECvSDox9+5ETi2+x1bGTY5WvGUGL3rJfC4KPoCZAM51MGfrCm6rIn4yOJUVfMPs2a5RwMD+yGS/n1g3gg==", - "requires": { - "@math.gl/core": "3.6.3" - } - }, - "md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dev": true, - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true - }, - "memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", - "dev": true, - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "dev": true - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "dev": true, - "requires": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - } - } - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true - }, - "mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true - }, - "mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, - "requires": { - "mime-db": "1.52.0" - } - }, - "minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true - }, - "minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", - "dev": true - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - }, - "mississippi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", - "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", - "dev": true, - "requires": { - "concat-stream": "^1.5.0", - "duplexify": "^3.4.2", - "end-of-stream": "^1.1.0", - "flush-write-stream": "^1.0.0", - "from2": "^2.1.0", - "parallel-transform": "^1.1.0", - "pump": "^3.0.0", - "pumpify": "^1.3.3", - "stream-each": "^1.1.0", - "through2": "^2.0.0" - } - }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dev": true, - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - } - }, - "mjolnir.js": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/mjolnir.js/-/mjolnir.js-2.7.1.tgz", - "integrity": "sha512-72BeUWgTv2cj5aZQKpwL8caNUFhXZ9bDm1hxpNj70XJQ62IBnTZmtv/WPxJvtaVNhzNo+D2U8O6ryNI0zImYcw==", - "requires": { - "@types/hammerjs": "^2.0.41", - "hammerjs": "^2.0.8" - } - }, - "mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dev": true, - "requires": { - "minimist": "^1.2.6" - } - }, - "moment": { - "version": "2.29.4", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", - "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" - }, - "moment-timezone": { - "version": "0.5.40", - "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.40.tgz", - "integrity": "sha512-tWfmNkRYmBkPJz5mr9GVDn9vRlVZOTe6yqY92rFxiOdWXbjaR0+9LwQnZGGuNR63X456NqmEkbskte8tWL5ePg==", - "requires": { - "moment": ">= 2.9.0" - } - }, - "move-concurrently": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", - "dev": true, - "requires": { - "aproba": "^1.1.1", - "copy-concurrently": "^1.0.0", - "fs-write-stream-atomic": "^1.0.8", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.3" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "multicast-dns": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", - "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", - "dev": true, - "requires": { - "dns-packet": "^1.3.1", - "thunky": "^1.0.2" - } - }, - "multicast-dns-service-types": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", - "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", - "dev": true - }, - "murmurhash-js": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/murmurhash-js/-/murmurhash-js-1.0.0.tgz", - "integrity": "sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==" - }, - "nan": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", - "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", - "dev": true, - "optional": true - }, - "nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - } - }, - "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true - }, - "neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true - }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "dev": true - }, - "node-forge": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", - "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", - "dev": true - }, - "node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", - "dev": true, - "requires": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - } - }, - "node-releases": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", - "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "dev": true, - "requires": { - "path-key": "^2.0.0" - } - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true - }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", - "dev": true, - "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "dev": true - }, - "object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true - }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", - "dev": true, - "requires": { - "isobject": "^3.0.0" - } - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "obuf": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", - "dev": true - }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, - "requires": { - "ee-first": "1.1.1" - } - }, - "on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "dev": true - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "opn": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", - "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", - "dev": true, - "requires": { - "is-wsl": "^1.1.0" - } - }, - "os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", - "dev": true - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", - "dev": true - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", - "dev": true - }, - "p-retry": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", - "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", - "dev": true, - "requires": { - "retry": "^0.12.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "pad-left": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pad-left/-/pad-left-2.1.0.tgz", - "integrity": "sha512-HJxs9K9AztdIQIAIa/OIazRAUW/L6B9hbQDxO4X07roW3eo9XqZc2ur9bn1StH9CnbbI9EgvejHQX7CBpCF1QA==", - "requires": { - "repeat-string": "^1.5.4" - } - }, - "pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", - "dev": true - }, - "parallel-transform": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", - "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", - "dev": true, - "requires": { - "cyclist": "^1.0.1", - "inherits": "^2.0.3", - "readable-stream": "^2.1.5" - } - }, - "parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", - "dev": true, - "requires": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" - } - }, - "parse-passwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", - "dev": true - }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true - }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", - "dev": true - }, - "path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", - "dev": true - }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", - "dev": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true - }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", - "dev": true - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "dev": true - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "dev": true - }, - "pbf": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/pbf/-/pbf-3.2.1.tgz", - "integrity": "sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==", - "requires": { - "ieee754": "^1.1.12", - "resolve-protobuf-schema": "^2.1.0" - } - }, - "pbkdf2": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", - "dev": true, - "requires": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "optional": true - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", - "dev": true - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", - "dev": true, - "requires": { - "pinkie": "^2.0.0" - } - }, - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dev": true, - "requires": { - "find-up": "^3.0.0" - } - }, - "portfinder": { - "version": "1.0.32", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", - "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", - "dev": true, - "requires": { - "async": "^2.6.4", - "debug": "^3.2.7", - "mkdirp": "^0.5.6" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", - "dev": true - }, - "potpack": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/potpack/-/potpack-1.0.2.tgz", - "integrity": "sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==" - }, - "probe.gl": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/probe.gl/-/probe.gl-3.6.0.tgz", - "integrity": "sha512-19JydJWI7+DtR4feV+pu4Mn1I5TAc0xojuxVgZdXIyfmTLfUaFnk4OloWK1bKbPtkgGKLr2lnbnCXmpZEcEp9g==", - "requires": { - "@babel/runtime": "^7.0.0", - "@probe.gl/env": "3.6.0", - "@probe.gl/log": "3.6.0", - "@probe.gl/stats": "3.6.0" - } - }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "dev": true - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", - "dev": true - }, - "protocol-buffers-schema": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz", - "integrity": "sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==" - }, - "proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dev": true, - "requires": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - } - }, - "prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", - "dev": true - }, - "public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - } - } - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dev": true, - "requires": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - }, - "dependencies": { - "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - } - } - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", - "dev": true - }, - "qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - }, - "quadbin": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/quadbin/-/quadbin-0.1.5.tgz", - "integrity": "sha512-/MQnN7V73myA+31gTxldTGN8ixqrUCXtUoDvRKSI9QZJOaq0cS9SNQkdToMxjC3ZSM2hN7mleOAn+9QVNlPZOg==", - "requires": { - "@mapbox/tile-cover": "^3.0.2" - } - }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", - "dev": true - }, - "querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", - "dev": true - }, - "querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "dev": true - }, - "quickselect": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz", - "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==" - }, - "randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dev": true, - "requires": { - "safe-buffer": "^5.1.0" - } - }, - "randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dev": true, - "requires": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true - }, - "raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "dependencies": { - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true - } - } - }, - "react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "requires": { - "loose-envify": "^1.1.0" - } - }, - "react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "requires": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - } - }, - "react-map-gl": { - "version": "7.0.21", - "resolved": "https://registry.npmjs.org/react-map-gl/-/react-map-gl-7.0.21.tgz", - "integrity": "sha512-Cmokphv6VHfRJsHVjCtn7nw5mf8rl89CHdvPSaif0OWZZqe+pxM2/5hEr4EvPWeTokRPCo1XTrBpGbShkEuktQ==", - "requires": { - "@types/mapbox-gl": "^2.6.0" - } - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "optional": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "reduce-flatten": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", - "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==" - }, - "regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - }, - "regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", - "requires": { - "regenerate": "^1.4.2" - } - }, - "regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - }, - "regenerator-transform": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", - "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", - "requires": { - "@babel/runtime": "^7.8.4" - } - }, - "regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "dev": true, - "requires": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - } - }, - "regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" - } - }, - "regexpu-core": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.0.tgz", - "integrity": "sha512-ZdhUQlng0RoscyW7jADnUZ25F5eVtHdMyXSb2PiwafvteRAOJUjFoUPEYZSIfP99fBIs3maLIRfpEddT78wAAQ==", - "requires": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - } - }, - "regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "requires": { - "jsesc": "~0.5.0" - }, - "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" - } - } - }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", - "dev": true - }, - "repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", - "dev": true - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==" - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true - }, - "require-main-filename": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", - "dev": true - }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "dev": true - }, - "resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "resolve-cwd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", - "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", - "dev": true, - "requires": { - "resolve-from": "^3.0.0" - } - }, - "resolve-dir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", - "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", - "dev": true, - "requires": { - "expand-tilde": "^2.0.0", - "global-modules": "^1.0.0" - }, - "dependencies": { - "global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", - "dev": true, - "requires": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" - } - }, - "global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", - "dev": true, - "requires": { - "expand-tilde": "^2.0.2", - "homedir-polyfill": "^1.0.1", - "ini": "^1.3.4", - "is-windows": "^1.0.1", - "which": "^1.2.14" - } - } - } - }, - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", - "dev": true - }, - "resolve-protobuf-schema": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz", - "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==", - "requires": { - "protocol-buffers-schema": "^3.3.1" - } - }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", - "dev": true - }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true - }, - "retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", - "dev": true - }, - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dev": true, - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "run-queue": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", - "dev": true, - "requires": { - "aproba": "^1.1.1" - } - }, - "rw": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", - "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==" - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", - "dev": true, - "requires": { - "ret": "~0.1.10" - } - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "requires": { - "loose-envify": "^1.1.0" - } - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - }, - "select-hose": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", - "dev": true - }, - "selfsigned": { - "version": "1.10.14", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", - "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", - "dev": true, - "requires": { - "node-forge": "^0.10.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - }, - "send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, - "serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", - "dev": true, - "requires": { - "randombytes": "^2.1.0" - } - }, - "serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", - "dev": true, - "requires": { - "accepts": "~1.3.4", - "batch": "0.6.1", - "debug": "2.6.9", - "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "dev": true - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", - "dev": true, - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "dev": true - } - } - }, - "serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dev": true, - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - } - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true - }, - "set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - } - } - }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", - "dev": true - }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true - }, - "side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - } - }, - "signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "dev": true, - "requires": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "dev": true, - "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - } - } - }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "dev": true, - "requires": { - "kind-of": "^3.2.0" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "sockjs": { - "version": "0.3.24", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", - "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", - "dev": true, - "requires": { - "faye-websocket": "^0.11.3", - "uuid": "^8.3.2", - "websocket-driver": "^0.7.4" - } - }, - "sockjs-client": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.1.tgz", - "integrity": "sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==", - "dev": true, - "requires": { - "debug": "^3.2.7", - "eventsource": "^2.0.2", - "faye-websocket": "^0.11.4", - "inherits": "^2.0.4", - "url-parse": "^1.5.10" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "source-list-map": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", - "dev": true - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "dev": true - }, - "source-map-resolve": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", - "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", - "dev": true, - "requires": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "source-map-url": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", - "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", - "dev": true - }, - "spdy": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", - "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", - "dev": true, - "requires": { - "debug": "^4.1.0", - "handle-thing": "^2.0.0", - "http-deceiver": "^1.2.7", - "select-hose": "^2.0.0", - "spdy-transport": "^3.0.0" - } - }, - "spdy-transport": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", - "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", - "dev": true, - "requires": { - "debug": "^4.1.0", - "detect-node": "^2.0.4", - "hpack.js": "^2.1.6", - "obuf": "^1.1.2", - "readable-stream": "^3.0.6", - "wbuf": "^1.7.3" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "dev": true, - "requires": { - "extend-shallow": "^3.0.0" - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - }, - "ssri": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", - "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", - "dev": true, - "requires": { - "figgy-pudding": "^3.5.1" - } - }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", - "dev": true, - "requires": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true - }, - "stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "dev": true, - "requires": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - } - }, - "stream-each": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", - "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "stream-shift": "^1.0.0" - } - }, - "stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", - "dev": true, - "requires": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" - } - }, - "stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", - "dev": true - }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "requires": { - "safe-buffer": "~5.2.0" - } - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", - "dev": true - }, - "supercluster": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-7.1.5.tgz", - "integrity": "sha512-EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg==", - "requires": { - "kdbush": "^3.0.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - }, - "table-layout": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-1.0.2.tgz", - "integrity": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==", - "requires": { - "array-back": "^4.0.1", - "deep-extend": "~0.6.0", - "typical": "^5.2.0", - "wordwrapjs": "^4.0.0" - }, - "dependencies": { - "array-back": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", - "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==" - }, - "typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==" - } - } - }, - "tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", - "dev": true - }, - "terser": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", - "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", - "dev": true, - "requires": { - "commander": "^2.20.0", - "source-map": "~0.6.1", - "source-map-support": "~0.5.12" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "terser-webpack-plugin": { - "version": "1.4.5", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", - "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", - "dev": true, - "requires": { - "cacache": "^12.0.2", - "find-cache-dir": "^2.1.0", - "is-wsl": "^1.1.0", - "schema-utils": "^1.0.0", - "serialize-javascript": "^4.0.0", - "source-map": "^0.6.1", - "terser": "^4.1.2", - "webpack-sources": "^1.4.0", - "worker-farm": "^1.7.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "text-encoding-utf-8": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz", - "integrity": "sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==" - }, - "texture-compressor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/texture-compressor/-/texture-compressor-1.0.2.tgz", - "integrity": "sha512-dStVgoaQ11mA5htJ+RzZ51ZxIZqNOgWKAIvtjLrW1AliQQLCmrDqNzQZ8Jh91YealQ95DXt4MEduLzJmbs6lig==", - "requires": { - "argparse": "^1.0.10", - "image-size": "^0.7.4" - } - }, - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "thunky": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", - "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", - "dev": true - }, - "timers-browserify": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", - "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", - "dev": true, - "requires": { - "setimmediate": "^1.0.4" - } - }, - "tinyqueue": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-2.0.3.tgz", - "integrity": "sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==" - }, - "to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==", - "dev": true - }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" - }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "dev": true, - "requires": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - }, - "toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true - }, - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==", - "dev": true - }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dev": true, - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", - "dev": true - }, - "typical": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", - "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==" - }, - "unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" - }, - "unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "requires": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - } - }, - "unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" - }, - "unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" - }, - "union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "dev": true, - "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - } - } - }, - "unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "requires": { - "unique-slug": "^2.0.0" - } - }, - "unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4" - } - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true - }, - "unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", - "dev": true, - "requires": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", - "dev": true, - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", - "dev": true - } - } - }, - "upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "dev": true - }, - "update-browserslist-db": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", - "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", - "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - } - }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - }, - "dependencies": { - "punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true - } - } - }, - "urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", - "dev": true - }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", - "dev": true, - "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - }, - "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==", - "dev": true - } - } - }, - "url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", - "dev": true, - "requires": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "dev": true - }, - "util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", - "dev": true, - "requires": { - "inherits": "2.0.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - } - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "dev": true - }, - "uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true - }, - "v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true - }, - "vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", - "dev": true - }, - "vt-pbf": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/vt-pbf/-/vt-pbf-3.1.3.tgz", - "integrity": "sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==", - "requires": { - "@mapbox/point-geometry": "0.1.0", - "@mapbox/vector-tile": "^1.3.1", - "pbf": "^3.2.1" - } - }, - "watchpack": { - "version": "1.7.5", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", - "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", - "dev": true, - "requires": { - "chokidar": "^3.4.1", - "graceful-fs": "^4.1.2", - "neo-async": "^2.5.0", - "watchpack-chokidar2": "^2.0.1" - } - }, - "watchpack-chokidar2": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", - "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", - "dev": true, - "optional": true, - "requires": { - "chokidar": "^2.1.8" - }, - "dependencies": { - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "optional": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - }, - "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "dev": true, - "optional": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } - } - }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true, - "optional": true - }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "dev": true, - "optional": true, - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, - "fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "dev": true, - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "dev": true, - "optional": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "dev": true, - "optional": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", - "dev": true, - "optional": true, - "requires": { - "binary-extensions": "^1.0.0" - } - }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dev": true, - "optional": true, - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - } - } - } - }, - "wbuf": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", - "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", - "dev": true, - "requires": { - "minimalistic-assert": "^1.0.0" - } - }, - "webpack": { - "version": "4.46.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.46.0.tgz", - "integrity": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/wasm-edit": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "acorn": "^6.4.1", - "ajv": "^6.10.2", - "ajv-keywords": "^3.4.1", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^4.5.0", - "eslint-scope": "^4.0.3", - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^2.4.0", - "loader-utils": "^1.2.3", - "memory-fs": "^0.4.1", - "micromatch": "^3.1.10", - "mkdirp": "^0.5.3", - "neo-async": "^2.6.1", - "node-libs-browser": "^2.2.1", - "schema-utils": "^1.0.0", - "tapable": "^1.1.3", - "terser-webpack-plugin": "^1.4.3", - "watchpack": "^1.7.4", - "webpack-sources": "^1.4.1" - } - }, - "webpack-cli": { - "version": "3.3.12", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.12.tgz", - "integrity": "sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==", - "dev": true, - "requires": { - "chalk": "^2.4.2", - "cross-spawn": "^6.0.5", - "enhanced-resolve": "^4.1.1", - "findup-sync": "^3.0.0", - "global-modules": "^2.0.0", - "import-local": "^2.0.0", - "interpret": "^1.4.0", - "loader-utils": "^1.4.0", - "supports-color": "^6.1.0", - "v8-compile-cache": "^2.1.1", - "yargs": "^13.3.2" - }, - "dependencies": { - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "webpack-dev-middleware": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", - "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", - "dev": true, - "requires": { - "memory-fs": "^0.4.1", - "mime": "^2.4.4", - "mkdirp": "^0.5.1", - "range-parser": "^1.2.1", - "webpack-log": "^2.0.0" - }, - "dependencies": { - "mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", - "dev": true - } - } - }, - "webpack-dev-server": { - "version": "3.11.3", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", - "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", - "dev": true, - "requires": { - "ansi-html-community": "0.0.8", - "bonjour": "^3.5.0", - "chokidar": "^2.1.8", - "compression": "^1.7.4", - "connect-history-api-fallback": "^1.6.0", - "debug": "^4.1.1", - "del": "^4.1.1", - "express": "^4.17.1", - "html-entities": "^1.3.1", - "http-proxy-middleware": "0.19.1", - "import-local": "^2.0.0", - "internal-ip": "^4.3.0", - "ip": "^1.1.5", - "is-absolute-url": "^3.0.3", - "killable": "^1.0.1", - "loglevel": "^1.6.8", - "opn": "^5.5.0", - "p-retry": "^3.0.1", - "portfinder": "^1.0.26", - "schema-utils": "^1.0.0", - "selfsigned": "^1.10.8", - "semver": "^6.3.0", - "serve-index": "^1.9.1", - "sockjs": "^0.3.21", - "sockjs-client": "^1.5.0", - "spdy": "^4.0.2", - "strip-ansi": "^3.0.1", - "supports-color": "^6.1.0", - "url": "^0.11.0", - "webpack-dev-middleware": "^3.7.2", - "webpack-log": "^2.0.0", - "ws": "^6.2.1", - "yargs": "^13.3.2" - }, - "dependencies": { - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - }, - "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } - } - }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true - }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "dev": true, - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, - "fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "dev": true, - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "dev": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", - "dev": true, - "requires": { - "binary-extensions": "^1.0.0" - } - }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - } - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "webpack-log": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", - "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", - "dev": true, - "requires": { - "ansi-colors": "^3.0.0", - "uuid": "^3.3.2" - }, - "dependencies": { - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "dev": true - } - } - }, - "webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", - "dev": true, - "requires": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "websocket-driver": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", - "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", - "dev": true, - "requires": { - "http-parser-js": ">=0.5.1", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" - } - }, - "websocket-extensions": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", - "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", - "dev": true - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==", - "dev": true - }, - "wordwrapjs": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz", - "integrity": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==", - "requires": { - "reduce-flatten": "^2.0.0", - "typical": "^5.2.0" - }, - "dependencies": { - "typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==" - } - } - }, - "worker-farm": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", - "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", - "dev": true, - "requires": { - "errno": "~0.1.7" - } - }, - "wrap-ansi": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", - "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "ws": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", - "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", - "dev": true, - "requires": { - "async-limiter": "~1.0.0" - } - }, - "xmlhttprequest": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz", - "integrity": "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==" - }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true - }, - "y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", - "dev": true - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "yargs": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", - "dev": true, - "requires": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" - } - }, - "yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - } - } -} diff --git a/deck-gl-pow/package.json b/deck-gl-pow/package.json deleted file mode 100644 index 923e1d6d..00000000 --- a/deck-gl-pow/package.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "maplibre-custom-layer", - "version": "0.0.0", - "license": "MIT", - "scripts": { - "start": "webpack-dev-server --progress --hot --open", - "start-local": "webpack-dev-server --env.local --progress --hot --open" - }, - "dependencies": { - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.19.6", - "@babel/preset-env": "^7.20.2", - "@loaders.gl/csv": "^3.2.10", - "@loaders.gl/json": "^3.2.13", - "d3-request": "^1.0.5", - "d3-scale": "^2.0.0", - "deck.gl": "^8.8.0", - "maplibre-gl": "^2.4.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "react-map-gl": "^7.0.16" - }, - "devDependencies": { - "@babel/core": "^7.4.0", - "@babel/preset-react": "^7.0.0", - "babel-loader": "^8.0.5", - "webpack": "^4.20.2", - "webpack-cli": "^3.1.2", - "webpack-dev-server": "^3.1.1" - } -} diff --git a/deck-gl-pow/scatter-plot-custom-layer.js b/deck-gl-pow/scatter-plot-custom-layer.js deleted file mode 100644 index 303f7bb3..00000000 --- a/deck-gl-pow/scatter-plot-custom-layer.js +++ /dev/null @@ -1,216 +0,0 @@ -import {LayerExtension} from '@deck.gl/core'; - -class ScatterplotCustomLayer extends LayerExtension { - initializeState(params) { - super.initializeState(params); - - const attributeManager = this.getAttributeManager(); - attributeManager.addInstanced({ - radius: { - size: 1, - accessor: 'getRadius', - defaultValue: 3 - }, - stroke_width: { - size: 1, - accessor: 'getRadius', - defaultValue: 3 - }, - a_stroke_color: { - size: 3, - accessor: 'getLineColor', - defaultValue: [255,255,255,255] - }, - a_stroke_opacity: { - size: 1, - accessor: 'getRadius', - defaultValue: 3 - }, - a_color: { - size: 3, - accessor: 'getFillColor', - defaultValue: [255,255,255,255] - } - }); - } - - getShaders() { - return { - inject: { - 'vs:#decl': `\ - uniform highp float u_time; - attribute float radius; - attribute float stroke_width; - attribute vec4 a_stroke_color; - attribute float a_stroke_opacity; - attribute vec4 a_color; - - varying vec4 v_color; - varying vec4 v_stroke_color; - varying float v_stroke_opacity; - varying vec3 v_data; - varying float v_visibility; - `, - - 'vs:#main-end': `\ - vec2 extrude = vec2(geometry.uv); - lowp float antialiasblur = 1.0 / project_uDevicePixelRatio / (radius + stroke_width); - v_data = vec3(extrude.x, extrude.y, antialiasblur); - v_stroke_color = a_stroke_color; - v_stroke_opacity = a_stroke_opacity; - v_color = a_color; - `, - - 'fs:#decl': `\ - uniform highp float u_time; - - varying vec4 v_color; - varying vec4 v_stroke_color; - varying float v_stroke_opacity; - varying vec3 v_data; - varying float v_visibility; - - #define TPI 6.28318530718 - #define PI 3.141562843 - #define HPI 1.57079632679 - `, - - 'fs:#main-end': `\ - vec2 extrude = v_data.xy; - float extrude_length = length(extrude); - - lowp float antialiasblur = v_data.z; - float antialiased_blur = -max(1.0, antialiasblur); - - float opacity_t = smoothstep(0.0, antialiased_blur, extrude_length - 1.0); - - int u_integer = int(u_time/2.0); - int u_integer_angle = int(u_time/5.0); - float decimal_time = u_time/2.0 - float(u_integer); - float angle_decimal_time = u_time/5.0 - float(u_integer_angle); - - - float angle = 0.0; - //vec4 test_color = vec4(0.0,0.0,0.0,1.0); - vec2 vtx = vec2(extrude[0], -extrude[1]); - - float arc = TPI / 3.0; - - if (vtx.x >= 0.0 && vtx.y >= 0.0) // red, first quadrant - { - //test_color = vec4(1.0,0.0,0.0,1.0); - if (vtx.y == 0.0) - { - angle = 0.0; - } - else - { - angle = atan( vtx.y / vtx.x ); - } - } - else if (vtx.x <= 0.0 && vtx.y >= 0.0) // green - { - //test_color = vec4(0.0,1.0,0.0,1.0); - if (vtx.y == 0.0) - { - angle = PI; - } - else - { - angle = PI + atan( vtx.y / vtx.x ); - } - } - else if (vtx.x <= 0.0 && vtx.y < 0.0) // blue - { - //test_color = vec4(0.0,0.0,1.0,1.0); - if (vtx.y == 0.0) - { - angle = PI; - } - else - { - angle = PI + atan( vtx.y / vtx.x ); - } - } - else if(vtx.x >= 0.0 && vtx.y < 0.0) // yellow - { - //test_color = vec4(1.0,1.0,0.0,1.0); - if (vtx.y == 0.0) - { - angle = 0.0; - } - else - { - angle = TPI + atan( vtx.y / vtx.x ); - } - } - - float main_rotating_angle_min = TPI * angle_decimal_time; - float rotating_angle_min = 0.0; - float rotating_angle_max = 0.0; - - int draw_border = 0; - float f_stroke_opacity = v_stroke_opacity; - - for (int i = 0; i < 3; i++) - { - rotating_angle_min = (TPI * float(i) / 3.0) + main_rotating_angle_min; - if (rotating_angle_min > TPI) - { - rotating_angle_min = rotating_angle_min - TPI; - } - rotating_angle_max = arc + rotating_angle_min; - - - if ((rotating_angle_max > TPI && angle >= 0.0 && angle < rotating_angle_max - TPI) || (angle >= rotating_angle_min && angle < rotating_angle_max)) - { - if (angle < rotating_angle_min) - { - f_stroke_opacity = v_stroke_opacity * (angle + TPI - rotating_angle_min) / (arc); - } - else - { - f_stroke_opacity = v_stroke_opacity * (angle - rotating_angle_min) / (arc); - } - draw_border = 1; - } - } - - if (draw_border == 0) - { - f_stroke_opacity = 0.0; - } - - float first_step = 0.40 + 0.05 * sin(main_rotating_angle_min); - float second_step = 0.8;//0.65 + 0.05 * sin(main_rotating_angle_min); - float third_step = 1.0;//0.9 + 0.05 * sin(main_rotating_angle_min); - if (extrude_length <= first_step) - { - opacity_t = smoothstep(1.0 - first_step, 1.0 - first_step - antialiased_blur, -extrude_length + 1.0); - gl_FragColor = opacity_t * v_color; - } - else if (extrude_length <= second_step) - { - opacity_t = smoothstep(1.0 - second_step, 1.0 - second_step - antialiased_blur, -extrude_length + 1.0) - smoothstep(1.0 - first_step + antialiased_blur, 1.0 - first_step, -extrude_length + 1.0); - gl_FragColor = opacity_t * vec4(1.0,1.0,1.0,1.0); - } - else if (extrude_length <= third_step) - { - opacity_t = smoothstep(0.0, 0.0 - antialiased_blur, -extrude_length + 1.0) - smoothstep(1.0 - second_step + antialiased_blur, 1.0 - second_step, -extrude_length + 1.0); - gl_FragColor = opacity_t * v_stroke_color * f_stroke_opacity * 0.5; - } - else - { - gl_FragColor = vec4(0.0);//opacity_t * test_color; - } - `} - } - } - - draw(params) { - params.uniforms.u_time = (performance.now() / 500) % 100000; - super.draw(params); - } -} - -export default ScatterplotCustomLayer; \ No newline at end of file diff --git a/deck-gl-pow/webpack.config.js b/deck-gl-pow/webpack.config.js deleted file mode 100644 index 6e37b556..00000000 --- a/deck-gl-pow/webpack.config.js +++ /dev/null @@ -1,32 +0,0 @@ -// NOTE: To use this example standalone (e.g. outside of deck.gl repo) -// delete the local development overrides at the bottom of this file - -const CONFIG = { - mode: 'development', - - entry: { - app: './app.js' - }, - - output: { - library: 'App' - }, - devtool: 'eval-source-map', - module: { - rules: [ - { - // Transpile ES6 to ES5 with babel - // Remove if your app does not use JSX or you don't need to support old browsers - test: /\.js$/, - loader: 'babel-loader', - exclude: [/node_modules/], - options: { - presets: ['@babel/preset-react'] - } - } - ] - } -}; - -// This line enables bundling against src in this repo rather than installed module -module.exports = env => (env ? require('../../webpack.config.local')(CONFIG)(env) : CONFIG); From a9762e405568c8b62579c57399cb5ea3d41518a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre-L=C3=A9o=20Bourbonnais?= Date: Thu, 18 Jan 2024 17:37:43 -0500 Subject: [PATCH 18/23] deck.gl: Improve performance and look of animated path layer --- .../map/layers/AnimatedArrowPathLayer.tsx | 169 +++++++++++------- .../map/layers/TransitionMapLayer.tsx | 17 +- .../src/config/layers.config.ts | 12 +- 3 files changed, 117 insertions(+), 81 deletions(-) diff --git a/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx b/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx index 923d5189..cd0ec864 100644 --- a/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx +++ b/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx @@ -25,8 +25,8 @@ type _AnimatedArrowPathLayerProps = { }; const defaultProps: DefaultProps = { - getDistanceBetweenArrows: { type: 'accessor', value: 8 }, - speedDivider: 3 + getDistanceBetweenArrows: { type: 'accessor', value: 20 }, + speedDivider: 1 }; export default class AnimatedArrowPathLayer extends PathLayer< @@ -50,9 +50,7 @@ export default class AnimatedArrowPathLayer { - const currentTime = this.state.time || 0; this.setState({ - time: currentTime + 1, // % loopLength, animationID: window.requestAnimationFrame(animate) // draw next frame }); }; @@ -64,112 +62,145 @@ export default class AnimatedArrowPathLayer { - const result = [0]; - if (path === undefined) { + getStartOffsetRatios = (path): number[] => { + const result = [0] as number[]; + if (path === undefined || path.length < 2) { return result; } const positionSize = this.props.positionFormat === 'XY' ? 2 : 3; const isNested = Array.isArray(path[0]); const geometrySize = isNested ? path.length : path.length / positionSize; - + let sumLength = 0; let p; let prevP; - for (let i = 0; i < geometrySize - 1; i++) { + for (let i = 0; i < geometrySize; i++) { p = isNested ? path[i] : path.slice(i * positionSize, i * positionSize + positionSize); p = this.projectPosition(p); - if (i > 0) { - result[i] = result[i - 1] + vec3.dist(prevP, p); + const distance = vec3.dist(prevP, p); + if (i < geometrySize - 1) { + result[i] = result[i - 1] + distance; + } + sumLength += distance; } + prevP = p; + } + for (let i = 0, count = result.length; i < count; i++) { + result[i] = result[i] / sumLength; + } + console.log('getStartOffsetRatios', result); + return result; + }; + getLengthRatios = (path): number[] => { + const result = [] as number[]; + if (path === undefined || path.length < 2) { + return result; + } + const positionSize = this.props.positionFormat === 'XY' ? 2 : 3; + const isNested = Array.isArray(path[0]); + const geometrySize = isNested ? path.length : path.length / positionSize; + let sumLength = 0; + let p; + let prevP = this.projectPosition(isNested ? path[0] : path.slice(0, positionSize)); + for (let i = 1; i < geometrySize; i++) { + p = isNested ? path[i] : path.slice(i * positionSize, i * positionSize + positionSize); + p = this.projectPosition(p); + const distance = vec3.dist(prevP, p); + sumLength += distance; + result[i - 1] = distance; prevP = p; } + for (let i = 0, count = result.length; i < count; i++) { + result[i] = result[i] / sumLength; + } return result; }; getShaders() { return Object.assign({}, super.getShaders(), { - // Code here is largely inspired by / copied from https://github.com/visgl/deck.gl/blob/master/modules/extensions/src/path-style/path-style-extension.ts - inject: { 'vs:#decl': ` - attribute float instanceDistanceBetweenArrows; - attribute float instanceArrowPathOffsets; - varying float vDistanceBetweenArrows; - varying float vArrowPathOffset; - uniform float arrowPathTimeStep; - uniform float speedDivider; + + attribute float instanceDistanceBetweenArrows; + attribute float instanceLengthRatios; + attribute float instanceStartOffsetRatios; + varying float vLengthRatio; + varying float vStartOffsetRatio; + varying float vDistanceBetweenArrows; + varying float vArrowPathOffset; + uniform float arrowPathTimeStep; + uniform float speedDivider; `, 'vs:#main-end': ` - vDistanceBetweenArrows = instanceDistanceBetweenArrows; - vArrowPathOffset = instanceArrowPathOffsets / width.x; - if (speedDivider != 0.0) { - vArrowPathOffset += (arrowPathTimeStep / speedDivider); - } + + vLengthRatio = instanceLengthRatios; + vStartOffsetRatio = instanceStartOffsetRatios; + vDistanceBetweenArrows = instanceDistanceBetweenArrows; + vArrowPathOffset = 0.0; //vPathPosition.x;// + + if (speedDivider != 0.0) { + vArrowPathOffset += ((arrowPathTimeStep) / speedDivider) / width.x; + } `, 'fs:#decl': ` - varying float vDistanceBetweenArrows; - varying float vArrowPathOffset; - - float round(float x) { - return floor(x + 0.5); - } + + varying float vDistanceBetweenArrows; + varying float vStartOffsetRatio; + varying float vLengthRatio; + varying float vArrowPathOffset; + `, 'fs:#main-start': ` - float unitLength = vDistanceBetweenArrows; - - float offset = 0.0; - float unitOffset = 0.0; - if (unitLength > 0.0) { - offset = vArrowPathOffset; - // The offset needs to be subtracted, otherwise the path goes in the wrong direction - unitOffset = mod(vPathPosition.y - offset, unitLength); - } + + if (vLengthRatio == 0.0) { // this should not happen + discard; + } `, - 'fs:#main-end': `\ - float relY = unitOffset / unitLength; - - // See this link for info about vPathPosition variable - // https://github.com/visgl/deck.gl/blob/b7c9fcc2b6e8693b5574a498fd128919b9780b49/modules/layers/src/path-layer/path-layer-fragment.glsl.ts#L31-L35 - - // Draw a white arrow for the last 12% of the segment length. (the point of the arrow should be where relY is 1.0) - float percentArrow = 0.12; - float arrowStart = 1.0 - percentArrow; - float absX = 1.0 / percentArrow; - if (relY > arrowStart && abs(vPathPosition.x) <= absX * (1.0 - relY)) { - gl_FragColor = vec4(255/255, 255/255, 255/255, 1.0); // white - } else { - // TODO : Can this be simplified? - // This is to make the fade start at the end of the white arrow rather than at the top. - float alpha = relY; - if (relY > arrowStart) { - alpha = alpha - arrowStart; - } - gl_FragColor = vec4(vColor.r, vColor.g, vColor.b, mix(0.5, 1.0, alpha)); - } + 'fs:#main-end': ` + + float percentFromCenter = abs(vPathPosition.x); + float offset = vArrowPathOffset; + float totalLength = vPathLength / vLengthRatio; + float startDistance = vStartOffsetRatio * totalLength; + float distanceSoFar = startDistance + vPathPosition.y - offset +percentFromCenter; + float arrowIndex = mod(distanceSoFar, vDistanceBetweenArrows); + float percentOfDistanceBetweenArrows = 1.0 - arrowIndex / vDistanceBetweenArrows; + //float sideAttenuation = 1.0; + if (percentOfDistanceBetweenArrows < 0.5) { + float percentBlack = percentOfDistanceBetweenArrows / 0.5 * 0.5; + gl_FragColor = vec4(mix(vColor.r, 0.0, percentBlack), mix(vColor.g, 0.0, percentBlack), mix(vColor.b, 0.0, percentBlack), 1.0); + } else if (percentOfDistanceBetweenArrows < 0.75) { + float percentWhite = (1.0 - (percentOfDistanceBetweenArrows - 0.5) * 4.0) * 0.75; + gl_FragColor = vec4(mix(vColor.r, 1.0, percentWhite), mix(vColor.g, 1.0, percentWhite), mix(vColor.b, 1.0, percentWhite), 1.0); + } else { + gl_FragColor = vec4(vColor.r, vColor.g, vColor.b, 1.0); + } + + // See this link for info about vPathPosition variable + // https://github.com/visgl/deck.gl/blob/b7c9fcc2b6e8693b5574a498fd128919b9780b49/modules/layers/src/path-layer/path-layer-fragment.glsl.ts#L31-L35 + ` } }); diff --git a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx index 27de7568..3e94d09a 100644 --- a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx +++ b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx @@ -182,7 +182,7 @@ const getCommonLineProperties = ( layerProperties.widthMinPixels = widthMinPixels; } const widthMaxPixels = - config.widthMaxPixels === undefined ? undefined : layerNumberGetter(config.widthMaxPixels, 10); + config.widthMaxPixels === undefined ? undefined : layerNumberGetter(config.widthMaxPixels, 50); if (widthMaxPixels !== undefined) { layerProperties.widthMaxPixels = widthMaxPixels; } @@ -238,30 +238,35 @@ const getAnimatedArrowPathLayer = ( getPath: props.updateCount, getColor: props.updateCount }, - getDistanceBetweenArrows: 8, + getDistanceBetweenArrows: 15, + widthMaxPixels: 50, speedDivider: Preferences.get('enableMapAnimations', true) ? 10 : 0, ...eventsToAdd, ...getCommonLineProperties(props, config) }); -const getPolygonLayer = (props: TransitionMapLayerProps, config: LayerDescription.PolygonLayerConfiguration, eventsToAdd): GeoJsonLayer => { +const getPolygonLayer = ( + props: TransitionMapLayerProps, + config: LayerDescription.PolygonLayerConfiguration, + eventsToAdd +): GeoJsonLayer => { const layerProperties: any = getCommonProperties(props, config); if (layerProperties.getColor) { layerProperties.getFillColor = layerProperties.getColor; delete layerProperties.getColor; } - + const lineColor = config.lineColor === undefined ? undefined : layerColorGetter(config.lineColor, '#ffffff'); layerProperties.getLineColor = lineColor !== undefined ? lineColor : [80, 80, 80]; const lineWidth = config.lineWidth === undefined ? 1 : layerNumberGetter(config.lineWidth, 10); layerProperties.getLineWidth = lineWidth; - + const widthMinPixels = config.lineWidthMinPixels === undefined ? undefined : layerNumberGetter(config.lineWidthMinPixels, 1); if (widthMinPixels !== undefined) { layerProperties.lineWidthMinPixels = widthMinPixels; - } + } const pickable = config.pickable === undefined diff --git a/packages/transition-frontend/src/config/layers.config.ts b/packages/transition-frontend/src/config/layers.config.ts index 9dedfbf2..d080e63f 100644 --- a/packages/transition-frontend/src/config/layers.config.ts +++ b/packages/transition-frontend/src/config/layers.config.ts @@ -50,9 +50,9 @@ const layersConfig = { routingPaths: { type: 'animatedArrowPath', color: { type: 'property', property: 'color' }, - width: 50, - widthScale: 4, - widthMinPixels: 10, + width: 10, + widthScale: 1, + widthMinPixels: 5, capRounded: true, jointRounded: true }, @@ -235,9 +235,9 @@ const layersConfig = { transitPathsSelected: { type: 'animatedArrowPath', color: { type: 'property', property: 'color' }, - width: 50, - widthScale: 4, - widthMinPixels: 10, + width: 10, + widthScale: 1, + widthMinPixels: 5, capRounded: true, jointRounded: true }, From 9d8bdfeda480ef5679636c5d1d51b0ab37e583e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Fri, 19 Jan 2024 13:47:23 -0500 Subject: [PATCH 19/23] deck.gl: Support filtering of features based on zoom Add the `featureMinZoom` property, which can be a function that takes the feature in parameter and return the minimum zoom at which this feature should be displayed. Use this property for the transitPaths layer to recover the functionality previously handled by the defaultFilter of mapbox. --- .../services/map/layers/LayerDescription.ts | 1 + .../map/layers/TransitionMapLayer.tsx | 57 ++++++++++++++++--- .../src/config/layers.config.ts | 29 ++++------ 3 files changed, 61 insertions(+), 26 deletions(-) diff --git a/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts index bbc34c6a..6b46ca72 100644 --- a/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts +++ b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts @@ -38,6 +38,7 @@ export type CommonLayerConfiguration = { */ maxZoom?: FeatureNumber; autoHighlight?: boolean; + featureMinZoom?: FeatureNumber; }; export type PointLayerConfiguration = CommonLayerConfiguration & { diff --git a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx index 3e94d09a..1ad33528 100644 --- a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx +++ b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx @@ -5,7 +5,6 @@ * License text available at https://opensource.org/licenses/MIT */ import { Layer, LayerProps } from '@deck.gl/core/typed'; -import { propertiesContainsFilter } from '@turf/turf'; import Preferences from 'chaire-lib-common/lib/config/Preferences'; import { layerEventNames, @@ -14,7 +13,8 @@ import { } from 'chaire-lib-frontend/lib/services/map/IMapEventHandler'; import * as LayerDescription from 'chaire-lib-frontend/lib/services/map/layers/LayerDescription'; import { ScatterplotLayer, PathLayer, GeoJsonLayer, PickingInfo, Deck } from 'deck.gl/typed'; -import { MjolnirEvent, MjolnirGestureEvent } from 'mjolnir.js'; +import { MjolnirGestureEvent } from 'mjolnir.js'; +import { DataFilterExtension } from '@deck.gl/extensions'; import AnimatedArrowPathLayer from './AnimatedArrowPathLayer'; // FIXME default color should probably be a app/user/theme preference? @@ -133,7 +133,23 @@ const layerNumberGetter = ( return undefined; }; -const getCommonProperties = (props: TransitionMapLayerProps, config: LayerDescription.CommonLayerConfiguration) => { +const getLayerFeatureFilter = (props: TransitionMapLayerProps, config: LayerDescription.CommonLayerConfiguration) => { + const layerFilter: any = {}; + const featureMinZoom = + config.featureMinZoom === undefined ? undefined : layerNumberGetter(config.featureMinZoom, 1); + if (featureMinZoom !== undefined) { + layerFilter.getFilterValue = featureMinZoom; + layerFilter.extensions = [new DataFilterExtension({ filterSize: 1 })]; + // Display the feature if the min zoom is less than the current zoom + layerFilter.filterRange = [0, Math.floor(props.viewState.zoom)]; + } + return layerFilter; +}; + +const getCommonProperties = ( + props: TransitionMapLayerProps, + config: LayerDescription.CommonLayerConfiguration +): { [layerProperty: string]: any } | undefined => { const layerProperties: any = {}; const minZoom = config.minZoom === undefined ? undefined : layerNumberGetter(config.minZoom, undefined); if (typeof minZoom === 'number' && props.viewState.zoom <= minZoom) { @@ -159,14 +175,20 @@ const getCommonProperties = (props: TransitionMapLayerProps, config: LayerDescri if (autoHighlight !== undefined) { layerProperties.autoHighlight = autoHighlight; } + const filterProperties = getLayerFeatureFilter(props, config); + Object.assign(layerProperties, filterProperties); return layerProperties; }; const getCommonLineProperties = ( props: TransitionMapLayerProps, config: LayerDescription.BaseLineLayerConfiguration -) => { +): { [layerProperty: string]: any } | undefined => { const layerProperties: any = getCommonProperties(props, config); + // The layer is not to be displayed, just return + if (layerProperties === undefined) { + return undefined; + } const lineWidth = config.width === undefined ? undefined : layerNumberGetter(config.width, 10); if (lineWidth !== undefined) { @@ -211,6 +233,10 @@ const getLineLayer = ( eventsToAdd ): PathLayer | undefined => { const layerProperties: any = getCommonLineProperties(props, config); + // The layer is not to be displayed, don't add it + if (layerProperties === undefined) { + return undefined; + } return new PathLayer({ id: props.layerDescription.id, @@ -229,8 +255,13 @@ const getAnimatedArrowPathLayer = ( props: TransitionMapLayerProps, config: LayerDescription.AnimatedPathLayerConfiguration, eventsToAdd -): AnimatedArrowPathLayer => - new AnimatedArrowPathLayer({ +): AnimatedArrowPathLayer | undefined => { + const layerProperties: any = getCommonLineProperties(props, config); + // The layer is not to be displayed, don't add it + if (layerProperties === undefined) { + return undefined; + } + return new AnimatedArrowPathLayer({ id: props.layerDescription.id, data: props.layerDescription.layerData.features, getPath: (d) => d.geometry.coordinates, @@ -242,15 +273,20 @@ const getAnimatedArrowPathLayer = ( widthMaxPixels: 50, speedDivider: Preferences.get('enableMapAnimations', true) ? 10 : 0, ...eventsToAdd, - ...getCommonLineProperties(props, config) + ...layerProperties }); +}; const getPolygonLayer = ( props: TransitionMapLayerProps, config: LayerDescription.PolygonLayerConfiguration, eventsToAdd -): GeoJsonLayer => { +): GeoJsonLayer | undefined => { const layerProperties: any = getCommonProperties(props, config); + // The layer is not to be displayed, don't add it + if (layerProperties === undefined) { + return undefined; + } if (layerProperties.getColor) { layerProperties.getFillColor = layerProperties.getColor; delete layerProperties.getColor; @@ -297,6 +333,10 @@ const getScatterLayer = ( eventsToAdd ): ScatterplotLayer | undefined => { const layerProperties: any = getCommonProperties(props, config); + // The layer is not to be displayed, don't add it + if (layerProperties === undefined) { + return undefined; + } const contourWidth = config.strokeWidth === undefined ? undefined : layerNumberGetter(config.strokeWidth, undefined); if (contourWidth !== undefined) { @@ -389,7 +429,6 @@ const addEvents = ( const getLayer = (props: TransitionMapLayerProps): Layer | undefined => { if (props.layerDescription.layerData === undefined) { - console.log('layer data is undefined', props.layerDescription.id); return undefined; } const eventsToAdd = props.events !== undefined ? addEvents(props.events, props) : {}; diff --git a/packages/transition-frontend/src/config/layers.config.ts b/packages/transition-frontend/src/config/layers.config.ts index d080e63f..5cf30073 100644 --- a/packages/transition-frontend/src/config/layers.config.ts +++ b/packages/transition-frontend/src/config/layers.config.ts @@ -71,23 +71,18 @@ const layersConfig = { transitPaths: { type: 'line', minZoom: 9, - defaultFilter: [ - 'any', - ['all', ['==', ['string', ['get', 'mode']], 'bus'], ['>=', ['zoom'], 11]], - ['all', ['==', ['string', ['get', 'mode']], 'rail'], ['>=', ['zoom'], 9]], - ['all', ['==', ['string', ['get', 'mode']], 'highSpeedRail'], ['>=', ['zoom'], 9]], - ['all', ['==', ['string', ['get', 'mode']], 'metro'], ['>=', ['zoom'], 9]], - ['all', ['==', ['string', ['get', 'mode']], 'monorail'], ['>=', ['zoom'], 10]], - ['all', ['==', ['string', ['get', 'mode']], 'tram'], ['>=', ['zoom'], 10]], - ['all', ['==', ['string', ['get', 'mode']], 'tramTrain'], ['>=', ['zoom'], 10]], - ['all', ['==', ['string', ['get', 'mode']], 'water'], ['>=', ['zoom'], 9]], - ['all', ['==', ['string', ['get', 'mode']], 'gondola'], ['>=', ['zoom'], 10]], - ['all', ['==', ['string', ['get', 'mode']], 'funicular'], ['>=', ['zoom'], 10]], - ['all', ['==', ['string', ['get', 'mode']], 'taxi'], ['>=', ['zoom'], 11]], - ['all', ['==', ['string', ['get', 'mode']], 'cableCar'], ['>=', ['zoom'], 10]], - ['all', ['==', ['string', ['get', 'mode']], 'horse'], ['>=', ['zoom'], 11]], - ['all', ['==', ['string', ['get', 'mode']], 'other'], ['>=', ['zoom'], 11]] - ], + featureMinZoom: (feature: GeoJSON.Feature) => { + const mode = feature.properties?.mode; + if (typeof mode !== 'string') { + // Always display this feature + return 0; + } + return ['rail', 'highSpeedRail', 'metro', 'water'].includes(mode) + ? 9 + : ['monorail', 'tram', 'tramTrain', 'gondola', 'funicular', 'cableCar'].includes(mode) + ? 10 + : 11; + }, color: { type: 'property', property: 'color' }, opacity: 0.8, widthScale: 4, From 073b7bbe4efd2c64120b2e16c30e4da1de91395d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Fri, 19 Jan 2024 09:49:51 -0500 Subject: [PATCH 20/23] deck.gl: Support filtering lines and agencies Add the `canFilter` layer property. Because we need to know from the start the number of filters to enable for a layer, as it is sent to the shader and not updatable, even with the updateTrigger, this property allows to set a placeholder filter for all features when no other filter is set. See if this can be prevented somehow. The PathMapLayerManager is renamed to TransitPathFilterManager because it does not involve layers, but manages the filters. This class emits the filter update events. The event is caught by the map, which updates the layer accordingly. --- .../src/services/map/MapLayerManager.ts | 86 +++---------------- .../services/map/events/MapEventsCallbacks.ts | 8 ++ .../services/map/layers/LayerDescription.ts | 5 ++ .../src/components/map/TransitionMainMap.tsx | 51 +++++------ .../map/layers/TransitionMapLayer.tsx | 31 ++++++- .../src/config/layers.config.ts | 1 + ...Manager.ts => TransitPathFilterManager.ts} | 24 +++--- 7 files changed, 93 insertions(+), 113 deletions(-) rename packages/transition-frontend/src/services/map/{PathMapLayerManager.ts => TransitPathFilterManager.ts} (89%) diff --git a/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts b/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts index acd52bf5..7fa1c5ee 100644 --- a/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts +++ b/packages/chaire-lib-frontend/src/services/map/MapLayerManager.ts @@ -15,15 +15,14 @@ const defaultGeojson = turfFeatureCollection([]) as GeoJSON.FeatureCollection 0 | 1) | undefined; + } = {}; constructor(layersConfig: any) { for (const layerName in layersConfig) { @@ -49,26 +48,20 @@ class MapboxLayerManager { } } - getFilter(layerName: string) { - // TODO Re-implement - return this._filtersByLayer[layerName] || null; + getFilter(layerName: string): ((feature: GeoJSON.Feature) => 0 | 1) | undefined { + return this._filtersByLayer[layerName]; } - updateFilter(layerName: string, filter: boolean | any[] | null | undefined) { - if (this._defaultFilterByLayer[layerName]) { - filter = ['all', this._defaultFilterByLayer[layerName], filter]; - } - this._filtersByLayer[layerName] = filter; - if (this.layerIsEnabled(layerName)) { - // this._map?.setFilter(layerName, this._filtersByLayer[layerName]); + updateFilter(layerName: string, filter: ((feature: GeoJSON.Feature) => 0 | 1) | undefined) { + if (filter === undefined) { + delete this._filtersByLayer[layerName]; + } else { + this._filtersByLayer[layerName] = filter; } } clearFilter(layerName: string) { - this._filtersByLayer[layerName] = this._defaultFilterByLayer[layerName]; - if (this.layerIsEnabled(layerName)) { - //this._map?.setFilter(layerName, this._defaultFilterByLayer[layerName]); - } + delete this._filtersByLayer[layerName]; } updateEnabledLayers(enabledLayers: string[] = []) { @@ -76,59 +69,6 @@ class MapboxLayerManager { serviceLocator.eventManager.emit('map.updatedEnabledLayers', this._enabledLayers); } - showLayerObjectByAttribute(layerName: string, attribute: string, value: any) { - // TODO Reimplement - const existingFilter = this.getFilter(layerName); - let values: any[] = []; - if ( - existingFilter && - existingFilter[0] === 'match' && - existingFilter[1] && - existingFilter[1][0] === 'get' && - existingFilter[1][1] === attribute - ) { - if (existingFilter[2] && !existingFilter[2].includes(value)) { - values = existingFilter[2]; - values.push(value); - } else { - values = [value]; - } - existingFilter[2] = values; - // TODO Map needs updating at this point - // this._map?.setFilter(layerName, existingFilter); - } else { - // this._map?.setFilter(layerName, ['match', ['get', attribute], values, true, false]); - } - } - - hideLayerObjectByAttribute(layerName, attribute, value) { - // TODO Reimplement - const existingFilter = this.getFilter(layerName); - let values: any[] = []; - if ( - existingFilter && - existingFilter[0] === 'match' && - existingFilter[1] && - existingFilter[1][0] === 'get' && - existingFilter[1][1] === attribute - ) { - if (existingFilter[2]) { - values = existingFilter[2]; - const valueIndex = values.indexOf(value); - if (valueIndex < 0) { - values.push(value); - } - } else { - values = [value]; - } - existingFilter[2] = values; - // TODO Map needs updating at this point - // this._map?.setFilter(layerName, existingFilter); - } else { - // this._map?.setFilter(layerName, ['match', ['get', attribute], values, true, false]); - } - } - getLayer(layerName: string) { return this._layersByName[layerName]; } @@ -216,4 +156,4 @@ class MapboxLayerManager { } } -export default MapboxLayerManager; +export default MapLayerManager; diff --git a/packages/chaire-lib-frontend/src/services/map/events/MapEventsCallbacks.ts b/packages/chaire-lib-frontend/src/services/map/events/MapEventsCallbacks.ts index 982fe319..65719d7e 100644 --- a/packages/chaire-lib-frontend/src/services/map/events/MapEventsCallbacks.ts +++ b/packages/chaire-lib-frontend/src/services/map/events/MapEventsCallbacks.ts @@ -12,3 +12,11 @@ export type MapUpdateLayerEventType = { data: GeoJSON.FeatureCollection | ((original: GeoJSON.FeatureCollection) => GeoJSON.FeatureCollection); }; }; + +export type MapFilterLayerEventType = { + name: 'map.layers.updateFilter'; + arguments: { + layerName: string; + filter: ((feature: GeoJSON.Feature) => 0 | 1) | undefined; + }; +}; diff --git a/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts index 6b46ca72..782a984f 100644 --- a/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts +++ b/packages/chaire-lib-frontend/src/services/map/layers/LayerDescription.ts @@ -39,6 +39,11 @@ export type CommonLayerConfiguration = { maxZoom?: FeatureNumber; autoHighlight?: boolean; featureMinZoom?: FeatureNumber; + /** + * Whether this layer can be filtered by additional filters. + * @default false + */ + canFilter?: boolean; }; export type PointLayerConfiguration = CommonLayerConfiguration & { diff --git a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx index 672ee9c0..6c18dbd0 100644 --- a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx +++ b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx @@ -8,7 +8,7 @@ import React, { createRef } from 'react'; import ReactDom from 'react-dom'; import { withTranslation } from 'react-i18next'; import DeckGL from '@deck.gl/react/typed'; -import { FilterContext, Layer, Deck } from '@deck.gl/core/typed'; +import { Layer, Deck } from '@deck.gl/core/typed'; import { Map as MapLibreMap } from 'react-map-gl/maplibre'; import MapboxGL from 'mapbox-gl'; @@ -21,7 +21,7 @@ import globalMapEvents from 'chaire-lib-frontend/lib/services/map/events/GlobalM import transitionMapEvents from '../../services/map/events'; import mapCustomEvents from '../../services/map/events/MapRelatedCustomEvents'; import MapLayerManager from 'chaire-lib-frontend/lib/services/map/MapLayerManager'; -import PathMapLayerManager from '../../services/map/PathMapLayerManager'; +import TransitPathFilterManager from '../../services/map/TransitPathFilterManager'; import MapPopupManager from 'chaire-lib-frontend/lib/services/map/MapPopupManager'; import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; import { getMapBoxDraw, removeMapBoxDraw } from 'chaire-lib-frontend/lib/services/map/MapPolygonService'; @@ -32,7 +32,10 @@ import _cloneDeep from 'lodash/cloneDeep'; import { featureCollection as turfFeatureCollection } from '@turf/turf'; import { LayoutSectionProps } from 'chaire-lib-frontend/lib/services/dashboard/DashboardContribution'; import { deleteUnusedNodes } from '../../services/transitNodes/transitNodesUtils'; -import { MapUpdateLayerEventType } from 'chaire-lib-frontend/lib/services/map/events/MapEventsCallbacks'; +import { + MapUpdateLayerEventType, + MapFilterLayerEventType +} from 'chaire-lib-frontend/lib/services/map/events/MapEventsCallbacks'; import { EventManager } from 'chaire-lib-common/lib/services/events/EventManager'; import { layerEventNames, @@ -84,9 +87,7 @@ interface MainMapState { */ class MainMap extends React.Component { private layerManager: MapLayerManager; - private pathLayerManager: PathMapLayerManager; - private defaultZoomArray: [number]; - private defaultCenter: [number, number]; + private pathFilterManager: TransitPathFilterManager; private mapEvents: { map: { [evtName in mapEventNames]?: MapEventHandlerDescriptor[] }; layers: { @@ -156,11 +157,9 @@ class MainMap extends React.Component { isDragging: false }; - this.defaultZoomArray = [props.zoom]; - this.defaultCenter = props.center; this.layerManager = new MapLayerManager(layersConfig); - this.pathLayerManager = new PathMapLayerManager(this.layerManager); + this.pathFilterManager = new TransitPathFilterManager(); this.popupManager = new MapPopupManager(); this.mapContainer = createRef(); @@ -220,28 +219,28 @@ class MainMap extends React.Component { showPathsByAttribute = (attribute: string, value: any) => { // attribute must be agency_id or line_id if (attribute === 'agency_id') { - this.pathLayerManager.showAgencyId(value); + this.pathFilterManager.showAgencyId(value); } else if (attribute === 'line_id') { - this.pathLayerManager.showLineId(value); + this.pathFilterManager.showLineId(value); } }; hidePathsByAttribute = (attribute: string, value: any) => { // attribute must be agency_id or line_id if (attribute === 'agency_id') { - this.pathLayerManager.hideAgencyId(value); + this.pathFilterManager.hideAgencyId(value); } else if (attribute === 'line_id') { - this.pathLayerManager.hideLineId(value); + this.pathFilterManager.hideLineId(value); } }; clearPathsFilter = () => { - this.pathLayerManager.clearFilter(); + this.pathFilterManager.clearFilter(); }; componentDidMount = () => { serviceLocator.addService('layerManager', this.layerManager); - serviceLocator.addService('pathLayerManager', this.pathLayerManager); + serviceLocator.addService('pathLayerManager', this.pathFilterManager); this.layerManager.updateEnabledLayers(Preferences.current.map.layers[this.props.activeSection]); mapCustomEvents.addEvents(serviceLocator.eventManager); //elementResizedEvent(this.mapContainer, this.onResizeContainer); @@ -251,10 +250,13 @@ class MainMap extends React.Component { 'map.updateLayer', this.updateLayer ); + (serviceLocator.eventManager as EventManager).onEvent( + 'map.layers.updateFilter', + this.updateFilter + ); serviceLocator.eventManager.on('map.updateLayers', this.updateLayers); serviceLocator.eventManager.on('map.addPopup', this.addPopup); serviceLocator.eventManager.on('map.removePopup', this.removePopup); - serviceLocator.eventManager.on('map.updateFilter', this.updateFilter); serviceLocator.eventManager.on('map.clearFilter', this.clearFilter); serviceLocator.eventManager.on('map.showLayer', this.showLayer); serviceLocator.eventManager.on('map.hideLayer', this.hideLayer); @@ -288,7 +290,7 @@ class MainMap extends React.Component { serviceLocator.eventManager.off('map.updateLayers', this.updateLayers); serviceLocator.eventManager.off('map.addPopup', this.addPopup); serviceLocator.eventManager.off('map.removePopup', this.removePopup); - serviceLocator.eventManager.off('map.updateFilter', this.updateFilter); + serviceLocator.eventManager.off('map.layers.updateFilter', this.updateFilter); serviceLocator.eventManager.off('map.clearFilter', this.clearFilter); serviceLocator.eventManager.off('map.showLayer', this.showLayer); serviceLocator.eventManager.off('map.hideLayer', this.hideLayer); @@ -356,8 +358,10 @@ class MainMap extends React.Component { this.layerManager.clearFilter(layerName); }; - updateFilter = (layerName: string, filter) => { - this.layerManager.updateFilter(layerName, filter); + updateFilter = (args: { layerName: string; filter: ((feature: GeoJSON.Feature) => 0 | 1) | undefined }) => { + this.layerManager.updateFilter(args.layerName, args.filter); + this.updateCounts[args.layerName] = (this.updateCounts[args.layerName] || 0) + 1; + this.setState({ enabledLayers: this.layerManager.getEnabledLayers().map((layer) => layer.id) }); }; setRef = (ref) => { @@ -571,10 +575,6 @@ class MainMap extends React.Component { ReactDom.render(, contextMenu); }; - onLayerFilter = (context: FilterContext): boolean => { - return true; - }; - private updateUserPrefs = _debounce((viewStateChange) => { // Save map zoom and center to user preferences Preferences.update( @@ -685,7 +685,7 @@ class MainMap extends React.Component { }): PickingInfo[] => (this.mapContainer.current as Deck).pickMultipleObjects(opts); render() { - // TODO: Deck.gl Migration: Should this be a state? To avoid recalculating for every render? See how often we render when the migration is complete + // TODO: Deck.gl Migration: Should this be a state or a local field (equivalent of useMemo)? To avoid recalculating for every render? See how often we render when the migration is complete const enabledLayers = this.layerManager.getEnabledLayers(); const layers: Layer[] = enabledLayers .map((layer) => @@ -696,7 +696,8 @@ class MainMap extends React.Component { activeSection: this.props.activeSection, setDragging: this.setDragging, mapCallbacks: this.mapCallbacks, - updateCount: this.updateCounts[layer.id] || 0 + updateCount: this.updateCounts[layer.id] || 0, + filter: this.layerManager.getFilter(layer.id) }) ) .filter((layer) => layer !== undefined) as Layer[]; diff --git a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx index 1ad33528..3cbc541a 100644 --- a/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx +++ b/packages/transition-frontend/src/components/map/layers/TransitionMapLayer.tsx @@ -44,6 +44,7 @@ type TransitionMapLayerProps = { setDragging: (dragging: boolean) => void; mapCallbacks: MapCallbacks; updateCount: number; + filter?: (feature: GeoJSON.Feature) => 0 | 1; }; const stringToColor = (hexStringColor: string): [number, number, number] | [number, number, number, number] => [ @@ -133,15 +134,39 @@ const layerNumberGetter = ( return undefined; }; +// Get the filter extension for this layer const getLayerFeatureFilter = (props: TransitionMapLayerProps, config: LayerDescription.CommonLayerConfiguration) => { + // FIXME Is it possible to change the number of filters during execution? We + // tried for the transitPaths layer, but apparently if we dynamically change + // the number of filters from 1 to 2 and vice versa, it fails. The filter + // range is sent to the gl shader and it may not be updated. We tried with + // the updateTrigger, without success. const layerFilter: any = {}; + const getFilterFcts: (number | ((feature: GeoJSON.Feature) => number))[] = []; + const filterRanges: [number, number][] = []; const featureMinZoom = config.featureMinZoom === undefined ? undefined : layerNumberGetter(config.featureMinZoom, 1); if (featureMinZoom !== undefined) { - layerFilter.getFilterValue = featureMinZoom; - layerFilter.extensions = [new DataFilterExtension({ filterSize: 1 })]; + getFilterFcts.push(featureMinZoom); // Display the feature if the min zoom is less than the current zoom - layerFilter.filterRange = [0, Math.floor(props.viewState.zoom)]; + filterRanges.push([0, Math.floor(props.viewState.zoom)]); + } + if (config.canFilter === true) { + getFilterFcts.push(props.filter !== undefined ? props.filter : (feature) => 1); + // Display the feature if the function's return value is above 1 + filterRanges.push([1, 10]); + } + + // Prepare the layer properties depending on the number of filtering functions + if (getFilterFcts.length === 1) { + layerFilter.getFilterValue = getFilterFcts[0]; + layerFilter.extensions = [new DataFilterExtension({ filterSize: 1 })]; + layerFilter.filterRange = filterRanges[0]; + } else if (getFilterFcts.length > 1) { + layerFilter.getFilterValue = (feature: GeoJSON.Feature) => + getFilterFcts.map((fct) => (typeof fct === 'function' ? fct(feature) : fct)); + layerFilter.extensions = [new DataFilterExtension({ filterSize: getFilterFcts.length })]; + layerFilter.filterRange = filterRanges; } return layerFilter; }; diff --git a/packages/transition-frontend/src/config/layers.config.ts b/packages/transition-frontend/src/config/layers.config.ts index 5cf30073..585b23f2 100644 --- a/packages/transition-frontend/src/config/layers.config.ts +++ b/packages/transition-frontend/src/config/layers.config.ts @@ -83,6 +83,7 @@ const layersConfig = { ? 10 : 11; }, + canFilter: true, color: { type: 'property', property: 'color' }, opacity: 0.8, widthScale: 4, diff --git a/packages/transition-frontend/src/services/map/PathMapLayerManager.ts b/packages/transition-frontend/src/services/map/TransitPathFilterManager.ts similarity index 89% rename from packages/transition-frontend/src/services/map/PathMapLayerManager.ts rename to packages/transition-frontend/src/services/map/TransitPathFilterManager.ts index 6419938f..f084881d 100644 --- a/packages/transition-frontend/src/services/map/PathMapLayerManager.ts +++ b/packages/transition-frontend/src/services/map/TransitPathFilterManager.ts @@ -8,16 +8,15 @@ import { validate as uuidValidate } from 'uuid'; import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; import Preferences from 'chaire-lib-common/lib/config/Preferences'; -import MapLayerManager from 'chaire-lib-frontend/lib/services/map/MapLayerManager'; +import EventManager from 'chaire-lib-common/lib/services/events/EventManager'; +import { MapFilterLayerEventType } from 'chaire-lib-frontend/lib/services/map/events/MapEventsCallbacks'; -class PathMapLayerManager { - private _layerManager: MapLayerManager; +class TransitPathFilterManager { private _layerName = 'transitPaths'; private _hiddenAgencyIds = new Map(); private _hiddenLineIds = new Map(); - constructor(mapLayerManager: MapLayerManager) { - this._layerManager = mapLayerManager; + constructor() { this.updateFromPreferences(); } @@ -159,12 +158,13 @@ class PathMapLayerManager { hiddenLineIds.push(hiddenLineId); } }); - - this._layerManager.updateFilter(this._layerName, [ - '!', - ['match', ['get', 'line_id'], hiddenLineIds.length === 0 ? ['none'] : hiddenLineIds, true, false] - ]); - serviceLocator.eventManager.emit('map.layers.updateFilter'); + (serviceLocator.eventManager as EventManager).emitEvent('map.layers.updateFilter', { + layerName: this._layerName, + filter: + this._hiddenLineIds.size === 0 + ? undefined + : (feature) => (this._hiddenLineIds.get(feature.properties?.line_id) === true ? 0 : 1) + }); Preferences.update( { 'map.layers.hiddenAgencyIds': hiddenAgencyIds, @@ -175,4 +175,4 @@ class PathMapLayerManager { } } -export default PathMapLayerManager; +export default TransitPathFilterManager; From 65b9bba91278240e1a6433af0e86cfaec2a4b3b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Tue, 23 Jan 2024 16:06:26 -0500 Subject: [PATCH 21/23] deck.gl: Remove dependencies to mapbox What remains that still depended on mapbox are the popup manager, which tracks which popup are currently opened and where, and the polygon draw tool, which is a little known feature of transition and only used for node selection. Some code was commented, other removed, but those features are expected to come back soon, tuned for deck.gl. --- packages/chaire-lib-frontend/package.json | 3 - .../src/services/map/MapPolygonService.ts | 4 + .../src/services/map/MapPopupManager.ts | 5 +- .../src/styles/styles-transition.scss | 2 - packages/transition-frontend/package.json | 3 - .../src/components/map/TransitionMainMap.tsx | 121 +---------- .../map/events/MapRelatedCustomEvents.ts | 7 +- yarn.lock | 188 +----------------- 8 files changed, 15 insertions(+), 318 deletions(-) diff --git a/packages/chaire-lib-frontend/package.json b/packages/chaire-lib-frontend/package.json index f7c6cd26..ce4ef639 100644 --- a/packages/chaire-lib-frontend/package.json +++ b/packages/chaire-lib-frontend/package.json @@ -27,7 +27,6 @@ "@fortawesome/fontawesome-svg-core": "^1.2.32", "@fortawesome/free-solid-svg-icons": "^5.15.2", "@fortawesome/react-fontawesome": "^0.1.11", - "@mapbox/mapbox-gl-draw": "^1.3.0", "@turf/helpers": "^6.1.4", "@turf/length": "^6.0.2", "@turf/turf": "^6.3.0", @@ -47,7 +46,6 @@ "i18next-http-backend": "^2.1.0", "json-loader": "^0.5.7", "lodash": "^4.17.21", - "mapbox-gl": "chairemobilite/mapbox-gl-js#39bbf9aeb1859424e29cff2584715fddc9d018b9", "mjolnir.js": "^2.7.0", "moment": "^2.29.4", "moment-business-days": "^1.2.0", @@ -81,7 +79,6 @@ "@types/geojson": "^7946.0.7", "@types/jest": "^26.0.4", "@types/lodash": "^4.14.198", - "@types/mapbox-gl": "^2.3.1", "@types/osrm": "^5.22.0", "@types/react-loadable": "^5.5.6", "@types/react-redux": "^7.1.9", diff --git a/packages/chaire-lib-frontend/src/services/map/MapPolygonService.ts b/packages/chaire-lib-frontend/src/services/map/MapPolygonService.ts index 3a6e0e93..0139b0fb 100644 --- a/packages/chaire-lib-frontend/src/services/map/MapPolygonService.ts +++ b/packages/chaire-lib-frontend/src/services/map/MapPolygonService.ts @@ -4,6 +4,7 @@ * This file is licensed under the MIT License. * License text available at https://opensource.org/licenses/MIT */ +/* import MapboxDraw from '@mapbox/mapbox-gl-draw'; import { Map } from 'mapbox-gl'; import '@mapbox/mapbox-gl-draw/dist/mapbox-gl-draw.css'; @@ -43,3 +44,6 @@ const removeMapBoxDraw = ( }; export { getMapBoxDraw, removeMapBoxDraw }; +*/ +// TODO Re-implement the polygon service for deck.gl +export default true; diff --git a/packages/chaire-lib-frontend/src/services/map/MapPopupManager.ts b/packages/chaire-lib-frontend/src/services/map/MapPopupManager.ts index 373298fe..6d756f67 100644 --- a/packages/chaire-lib-frontend/src/services/map/MapPopupManager.ts +++ b/packages/chaire-lib-frontend/src/services/map/MapPopupManager.ts @@ -4,7 +4,6 @@ * This file is licensed under the MIT License. * License text available at https://opensource.org/licenses/MIT */ -import MapboxGL from 'mapbox-gl'; /** * Class that keeps track of the popups currently displaying on the map (there @@ -18,6 +17,8 @@ import MapboxGL from 'mapbox-gl'; * @class MapPopupManager */ class MapPopupManager { + // TODO Re-implement for mapbox, or at least retrieve the popup functionality + /* private map: MapboxGL.Map | undefined; private _popupsByName: { [key: string]: MapboxGL.Popup } = {}; @@ -49,7 +50,7 @@ class MapPopupManager { for (const popupName in this._popupsByName) { this.removePopup(popupName); } - } + } */ } export default MapPopupManager; diff --git a/packages/chaire-lib-frontend/src/styles/styles-transition.scss b/packages/chaire-lib-frontend/src/styles/styles-transition.scss index ccddead6..c4963728 100644 --- a/packages/chaire-lib-frontend/src/styles/styles-transition.scss +++ b/packages/chaire-lib-frontend/src/styles/styles-transition.scss @@ -9,9 +9,7 @@ @import './footer'; @import './form'; @import './modal'; -@import '~mapbox-gl/dist/mapbox-gl.css'; @import '~font-awesome/css/font-awesome.min.css'; -@import './mapbox-gl-custom'; @import './collapsible'; @import './dashboard'; @import './leftMenu'; diff --git a/packages/transition-frontend/package.json b/packages/transition-frontend/package.json index c2196a7e..ca97c1fe 100644 --- a/packages/transition-frontend/package.json +++ b/packages/transition-frontend/package.json @@ -32,7 +32,6 @@ "@fortawesome/fontawesome-svg-core": "^1.2.32", "@fortawesome/free-solid-svg-icons": "^5.15.1", "@fortawesome/react-fontawesome": "^0.1.11", - "@mapbox/mapbox-gl-draw": "^1.3.0", "@turf/turf": "^6.3.0", "@types/node": "^17.0.38", "@types/react": "^16.9.0", @@ -48,7 +47,6 @@ "history": "^4.9.0", "i18next": "^22.4.15", "lodash": "^4.17.21", - "mapbox-gl": "chairemobilite/mapbox-gl-js#39bbf9aeb1859424e29cff2584715fddc9d018b9", "maplibre-gl": "^3.6.1", "mjolnir.js": "^2.7.0", "moment": "^2.29.4", @@ -84,7 +82,6 @@ "@types/geojson": "^7946.0.7", "@types/jest": "^26.0.4", "@types/lodash": "^4.14.198", - "@types/mapbox-gl": "^2.3.1", "@types/osrm": "^5.22.0", "@types/react-datepicker": "^4.1.6", "@types/react-mathjax": "^1.0.1", diff --git a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx index 6c18dbd0..3781bcd5 100644 --- a/packages/transition-frontend/src/components/map/TransitionMainMap.tsx +++ b/packages/transition-frontend/src/components/map/TransitionMainMap.tsx @@ -11,8 +11,6 @@ import DeckGL from '@deck.gl/react/typed'; import { Layer, Deck } from '@deck.gl/core/typed'; import { Map as MapLibreMap } from 'react-map-gl/maplibre'; -import MapboxGL from 'mapbox-gl'; -import MapboxDraw from '@mapbox/mapbox-gl-draw'; import _debounce from 'lodash/debounce'; import Preferences from 'chaire-lib-common/lib/config/Preferences'; @@ -24,7 +22,6 @@ import MapLayerManager from 'chaire-lib-frontend/lib/services/map/MapLayerManage import TransitPathFilterManager from '../../services/map/TransitPathFilterManager'; import MapPopupManager from 'chaire-lib-frontend/lib/services/map/MapPopupManager'; import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; -import { getMapBoxDraw, removeMapBoxDraw } from 'chaire-lib-frontend/lib/services/map/MapPolygonService'; import { findOverlappingFeatures } from 'chaire-lib-common/lib/services/geodata/FindOverlappingFeatures'; import Node from 'transition-common/lib/services/nodes/Node'; @@ -106,10 +103,8 @@ class MainMap extends React.Component { }; }; }; - private map: MapboxGL.Map | undefined; private popupManager: MapPopupManager; private mapContainer; - private draw: MapboxDraw | undefined; private mapCallbacks: MapCallbacks; private updateCounts: { [layerName: string]: number } = {}; @@ -197,25 +192,6 @@ class MainMap extends React.Component { }; } - fitBounds = (coordinates: [number, number]) => { - this.map?.fitBounds(coordinates, { - padding: 20, - bearing: this.map.getBearing() - }); - }; - - setCenter = (coordinates: [number, number]) => { - this.map?.setCenter(coordinates); - }; - - onEnableBoxZoom = () => { - this.map?.boxZoom.enable(); - }; - - onDisableBoxZoom = () => { - this.map?.boxZoom.disable(); - }; - showPathsByAttribute = (attribute: string, value: any) => { // attribute must be agency_id or line_id if (attribute === 'agency_id') { @@ -255,23 +231,15 @@ class MainMap extends React.Component { this.updateFilter ); serviceLocator.eventManager.on('map.updateLayers', this.updateLayers); - serviceLocator.eventManager.on('map.addPopup', this.addPopup); - serviceLocator.eventManager.on('map.removePopup', this.removePopup); serviceLocator.eventManager.on('map.clearFilter', this.clearFilter); serviceLocator.eventManager.on('map.showLayer', this.showLayer); serviceLocator.eventManager.on('map.hideLayer', this.hideLayer); serviceLocator.eventManager.on('map.paths.byAttribute.show', this.showPathsByAttribute); serviceLocator.eventManager.on('map.paths.byAttribute.hide', this.hidePathsByAttribute); serviceLocator.eventManager.on('map.paths.clearFilter', this.clearPathsFilter); - serviceLocator.eventManager.on('map.fitBounds', this.fitBounds); - serviceLocator.eventManager.on('map.setCenter', this.setCenter); - serviceLocator.eventManager.on('map.enableBoxZoom', this.onEnableBoxZoom); - serviceLocator.eventManager.on('map.disableBoxZoom', this.onDisableBoxZoom); serviceLocator.eventManager.on('map.showContextMenu', this.showContextMenu); serviceLocator.eventManager.on('map.hideContextMenu', this.hideContextMenu); - serviceLocator.eventManager.on('map.handleDrawControl', this.handleDrawControl); //serviceLocator.eventManager.on('map.deleteSelectedNodes', this.deleteSelectedNodes); - serviceLocator.eventManager.on('map.deleteSelectedPolygon', this.deleteSelectedPolygon); serviceLocator.eventManager.emit('map.loaded'); Preferences.addChangeListener(this.onPreferencesChange); }; @@ -288,8 +256,6 @@ class MainMap extends React.Component { serviceLocator.eventManager.off('map.updateEnabledLayers', this.updateEnabledLayers); serviceLocator.eventManager.off('map.updateLayer', this.updateLayer); serviceLocator.eventManager.off('map.updateLayers', this.updateLayers); - serviceLocator.eventManager.off('map.addPopup', this.addPopup); - serviceLocator.eventManager.off('map.removePopup', this.removePopup); serviceLocator.eventManager.off('map.layers.updateFilter', this.updateFilter); serviceLocator.eventManager.off('map.clearFilter', this.clearFilter); serviceLocator.eventManager.off('map.showLayer', this.showLayer); @@ -297,22 +263,9 @@ class MainMap extends React.Component { serviceLocator.eventManager.off('map.paths.byAttribute.show', this.showPathsByAttribute); serviceLocator.eventManager.off('map.paths.byAttribute.hide', this.hidePathsByAttribute); serviceLocator.eventManager.off('map.paths.clearFilter', this.clearPathsFilter); - serviceLocator.eventManager.off('map.fitBounds', this.fitBounds); - serviceLocator.eventManager.off('map.setCenter', this.setCenter); - serviceLocator.eventManager.off('map.enableBoxZoom', this.onEnableBoxZoom); - serviceLocator.eventManager.off('map.disableBoxZoom', this.onDisableBoxZoom); serviceLocator.eventManager.off('map.showContextMenu', this.showContextMenu); serviceLocator.eventManager.off('map.hideContextMenu', this.hideContextMenu); - serviceLocator.eventManager.off('map.handleDrawControl', this.handleDrawControl); //serviceLocator.eventManager.off('map.deleteSelectedNodes', this.deleteSelectedNodes); - serviceLocator.eventManager.off('map.deleteSelectedPolygon', this.deleteSelectedPolygon); - this.map?.remove(); // this will clean up everything including events - }; - - onResizeContainer = () => { - if (this.map) { - this.map.resize(); - } }; private executeEvent = (event: MapEventHandlerDescriptor, pointInfo: PointInfo, e: MjolnirEvent) => { @@ -369,20 +322,7 @@ class MainMap extends React.Component { }; setDrawPolygonService = () => { - const map = this.map; - if (!map) return; - this.draw = getMapBoxDraw( - map, - (data) => { - this.modeChangePolygonService(data); - }, - (polygon) => { - this.handleDrawPolygonService(polygon); - }, - (polygon) => { - /* Nothing to do */ - } - ); + // TODO Re-implement }; /** @@ -431,24 +371,6 @@ class MainMap extends React.Component { } }; - deleteSelectedPolygon = () => { - if (this.draw) { - this.draw.deleteAll().getAll(); - } - serviceLocator.selectedObjectsManager.select('selectedNodes', null); - serviceLocator.selectedObjectsManager.select('isContainSelectedFrozenNodes', null); - serviceLocator.selectedObjectsManager.select('isDrawPolygon', null); - serviceLocator.eventManager.emit('selected.update.nodes'); - serviceLocator.eventManager.emit('map.updateLayers', { - transitNodesSelected: turfFeatureCollection([]), - transitNodes250mRadius: turfFeatureCollection([]), - transitNodes500mRadius: turfFeatureCollection([]), - transitNodes750mRadius: turfFeatureCollection([]), - transitNodes1000mRadius: turfFeatureCollection([]), - transitNodesRoutingRadius: turfFeatureCollection([]) - }); - }; - onDeleteSelectedNodes = () => { serviceLocator.eventManager.emit('progress', { name: 'DeletingNodes', progress: 0.0 }); const selectedNodes = serviceLocator.selectedObjectsManager.get('selectedNodes'); @@ -467,51 +389,10 @@ class MainMap extends React.Component { console.log('Error deleting unused nodes', error); }) .finally(() => { - this.deleteSelectedPolygon(); serviceLocator.eventManager.emit('progress', { name: 'DeletingNodes', progress: 1.0 }); }); }; - handleDrawControl = (section: string) => { - const map = this.map; - if (!map) return; - if (section === 'nodes' && !this.draw) { - this.setDrawPolygonService(); - } else if (section !== 'nodes' && this.draw) { - this.deleteSelectedPolygon(); - removeMapBoxDraw( - map, - this.draw, - () => { - /* Nothing to do */ - }, - () => { - /* Nothing to do */ - }, - () => { - /* Nothing to do */ - } - ); - this.draw = null; - } - }; - - addPopup = (popupId: string, popup: MapboxGL.Popup, removeAll = true) => { - this.hideContextMenu(); - if (removeAll) { - this.removeAllPopups(); - } - this.popupManager.addPopup(popupId, popup); - }; - - removePopup = (popupId: string) => { - this.popupManager.removePopup(popupId); - }; - - removeAllPopups = () => { - this.popupManager.removeAllPopups(); - }; - updateLayer = (args: { layerName: string; data: GeoJSON.FeatureCollection | ((original: GeoJSON.FeatureCollection) => GeoJSON.FeatureCollection); diff --git a/packages/transition-frontend/src/services/map/events/MapRelatedCustomEvents.ts b/packages/transition-frontend/src/services/map/events/MapRelatedCustomEvents.ts index c9a8bb3d..6c97f9c1 100644 --- a/packages/transition-frontend/src/services/map/events/MapRelatedCustomEvents.ts +++ b/packages/transition-frontend/src/services/map/events/MapRelatedCustomEvents.ts @@ -10,8 +10,6 @@ * TODO: Other parts of the app should not be "map-aware", there should be more * generic events to which the map can register */ -import { Popup } from 'mapbox-gl'; - import serviceLocator from 'chaire-lib-common/lib/utils/ServiceLocator'; import { EventEmitter } from 'events'; import Node from 'transition-common/lib/services/nodes/Node'; @@ -19,7 +17,8 @@ import Node from 'transition-common/lib/services/nodes/Node'; const events = function (eventManager: EventEmitter) { return { 'path.hoverNode': function (node: Node, nodeTitle = node.toString(false)) { - const popup = new Popup({ + // TODO Re-implement + /*const popup = new Popup({ offset: 10, anchor: 'bottom' }); @@ -38,7 +37,7 @@ const events = function (eventManager: EventEmitter) { } else { popup.setHTML(`

${nodeTitle}

`); } - eventManager.emit('map.addPopup', nodeId, popup); + eventManager.emit('map.addPopup', nodeId, popup);*/ }, 'path.unhoverNode': function (nodeId: string) { diff --git a/yarn.lock b/yarn.lock index b0917d6b..84d18e68 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1621,41 +1621,6 @@ "@probe.gl/env" "^3.5.0" "@probe.gl/stats" "^3.5.0" -"@mapbox/extent@0.4.0": - version "0.4.0" - resolved "https://registry.yarnpkg.com/@mapbox/extent/-/extent-0.4.0.tgz#3e591f32e1f0c3981c864239f7b0ac06e610f8a9" - integrity sha1-PlkfMuHww5gchkI597CsBuYQ+Kk= - -"@mapbox/geojson-area@^0.2.2": - version "0.2.2" - resolved "https://registry.yarnpkg.com/@mapbox/geojson-area/-/geojson-area-0.2.2.tgz#18d7814aa36bf23fbbcc379f8e26a22927debf10" - integrity sha1-GNeBSqNr8j+7zDefjiaiKSfevxA= - dependencies: - wgs84 "0.0.0" - -"@mapbox/geojson-coords@0.0.2": - version "0.0.2" - resolved "https://registry.yarnpkg.com/@mapbox/geojson-coords/-/geojson-coords-0.0.2.tgz#f73d5744c832de0f05c48899f16a4288cefb2606" - integrity sha512-YuVzpseee/P1T5BWyeVVPppyfmuXYHFwZHmybkqaMfu4BWlOf2cmMGKj2Rr92MwfSTOCSUA0PAsVGRG8akY0rg== - dependencies: - "@mapbox/geojson-normalize" "0.0.1" - geojson-flatten "^1.0.4" - -"@mapbox/geojson-extent@^1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@mapbox/geojson-extent/-/geojson-extent-1.0.1.tgz#bd99a6b66ba98e63a29511c9cd1bbd1df4c1e203" - integrity sha512-hh8LEO3djT4fqfr8sSC6wKt+p0TMiu+KOLMBUiFOyj+zGq7+IXwQGl0ppCVDkyzCewyd9LoGe9zAvDxXrLfhLw== - dependencies: - "@mapbox/extent" "0.4.0" - "@mapbox/geojson-coords" "0.0.2" - rw "~0.1.4" - traverse "~0.6.6" - -"@mapbox/geojson-normalize@0.0.1", "@mapbox/geojson-normalize@^0.0.1": - version "0.0.1" - resolved "https://registry.yarnpkg.com/@mapbox/geojson-normalize/-/geojson-normalize-0.0.1.tgz#1da1e6b3a7add3ad29909b30f438f60581b7cd80" - integrity sha1-HaHms6et060pkJsw9Dj2BYG3zYA= - "@mapbox/geojson-rewind@0.5.2", "@mapbox/geojson-rewind@^0.5.2": version "0.5.2" resolved "https://registry.yarnpkg.com/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz#591a5d71a9cd1da1a0bf3420b3bea31b0fc7946a" @@ -1664,42 +1629,11 @@ get-stream "^6.0.1" minimist "^1.2.6" -"@mapbox/geojson-rewind@^0.5.0": - version "0.5.0" - resolved "https://registry.yarnpkg.com/@mapbox/geojson-rewind/-/geojson-rewind-0.5.0.tgz#91f0ad56008c120caa19414b644d741249f4f560" - integrity sha512-73l/qJQgj/T/zO1JXVfuVvvKDgikD/7D/rHAD28S9BG1OTstgmftrmqfCx4U+zQAmtsB6HcDA3a7ymdnJZAQgg== - dependencies: - concat-stream "~2.0.0" - minimist "^1.2.5" - -"@mapbox/geojson-types@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz#9aecf642cb00eab1080a57c4f949a65b4a5846d6" - integrity sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw== - "@mapbox/jsonlint-lines-primitives@^2.0.2", "@mapbox/jsonlint-lines-primitives@~2.0.2": version "2.0.2" resolved "https://registry.yarnpkg.com/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz#ce56e539f83552b58d10d672ea4d6fc9adc7b234" integrity sha1-zlblOfg1UrWNENZy6k1vya3HsjQ= -"@mapbox/mapbox-gl-draw@^1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-draw/-/mapbox-gl-draw-1.3.0.tgz#7a30fb99488cb47a32c25e99c3c62413b04bbaed" - integrity sha512-B+KWK+dAgzLHMNyKVuuMRfjeSlQ77MhNLdfpQQpbp3pkhnrdmydDe3ixto1Ua78hktNut0WTrAaD8gYu4PVcjA== - dependencies: - "@mapbox/geojson-area" "^0.2.2" - "@mapbox/geojson-extent" "^1.0.0" - "@mapbox/geojson-normalize" "^0.0.1" - "@mapbox/point-geometry" "^0.1.0" - hat "0.0.3" - lodash.isequal "^4.5.0" - xtend "^4.0.2" - -"@mapbox/mapbox-gl-supported@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-2.0.0.tgz#bb133cd91e562c006713fbc83f21e4b6f711a388" - integrity sha512-zu4udqYiBrKMQKwpKJ4hhPON7tz0QR/JZ3iGpHnNWFmH3Sv/ysxlICATUtGCFpsyJf2v1WpFhlzaZ3GhhKmPMA== - "@mapbox/martini@^0.2.0": version "0.2.0" resolved "https://registry.yarnpkg.com/@mapbox/martini/-/martini-0.2.0.tgz#1af70211fbe994abf26e37f1388ca69c02cd43b4" @@ -1724,21 +1658,11 @@ dependencies: tilebelt "^1.0.1" -"@mapbox/tiny-sdf@^1.2.5": - version "1.2.5" - resolved "https://registry.yarnpkg.com/@mapbox/tiny-sdf/-/tiny-sdf-1.2.5.tgz#424c620a96442b20402552be70a7f62a8407cc59" - integrity sha512-cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw== - "@mapbox/tiny-sdf@^2.0.5", "@mapbox/tiny-sdf@^2.0.6": version "2.0.6" resolved "https://registry.yarnpkg.com/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz#9a1d33e5018093e88f6a4df2343e886056287282" integrity sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA== -"@mapbox/unitbezier@^0.0.0": - version "0.0.0" - resolved "https://registry.yarnpkg.com/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz#15651bd553a67b8581fb398810c98ad86a34524e" - integrity sha1-FWUb1VOme4WB+zmIEMmK2Go0Uk4= - "@mapbox/unitbezier@^0.0.1": version "0.0.1" resolved "https://registry.yarnpkg.com/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz#d32deb66c7177e9e9dfc3bbd697083e2e657ff01" @@ -3937,13 +3861,6 @@ dependencies: "@types/geojson" "*" -"@types/mapbox-gl@^2.3.1": - version "2.4.2" - resolved "https://registry.yarnpkg.com/@types/mapbox-gl/-/mapbox-gl-2.4.2.tgz#b2d5d6572a49561eef0eb361afd92365027efc50" - integrity sha512-mKgjmhUN780YGy9ZEyJK0Sr9gMtERmTQimGsIa5WrBHPlBXdmjYfqtz8nSMI7hOnQFphcuSMyqQswaQESFLHsA== - dependencies: - "@types/geojson" "*" - "@types/mapbox__point-geometry@*", "@types/mapbox__point-geometry@^0.1.4": version "0.1.4" resolved "https://registry.yarnpkg.com/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.4.tgz#0ef017b75eedce02ff6243b4189210e2e6d5e56d" @@ -6163,7 +6080,7 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -concat-stream@2.0.0, concat-stream@^2.0.0, concat-stream@~2.0.0: +concat-stream@2.0.0, concat-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz#414cf5af790a48c60ab9be4527d56d5e41133cb1" integrity sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A== @@ -6521,11 +6438,6 @@ css@^3.0.0: source-map "^0.6.1" source-map-resolve "^0.6.0" -csscolorparser@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/csscolorparser/-/csscolorparser-1.0.3.tgz#b34f391eea4da8f3e98231e2ccd8df9c041f171b" - integrity sha1-s085HupNqPPpgjHizNjfnAQfFxs= - cssesc@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" @@ -7089,7 +7001,7 @@ duplexify@^3.4.2, duplexify@^3.6.0: readable-stream "^2.0.0" stream-shift "^1.0.0" -earcut@^2.0.0, earcut@^2.2.2: +earcut@^2.0.0: version "2.2.2" resolved "https://registry.yarnpkg.com/earcut/-/earcut-2.2.2.tgz#41b0bc35f63e0fe80da7cddff28511e7e2e80d11" integrity sha512-eZoZPPJcUHnfRZ0PjLvx2qBordSiO8ofC3vt+qACLM95u+4DovnbYNpQtJh0DNsWj8RnxrQytD4WA8gj5cRIaQ== @@ -8323,14 +8235,6 @@ geojson-equality@0.1.6: dependencies: deep-equal "^1.0.0" -geojson-flatten@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/geojson-flatten/-/geojson-flatten-1.0.4.tgz#cdfef2e9042996fcaa14fe658db6d88c99c20930" - integrity sha512-PpscUXxO6dvvhZxtwuqiI5v+1C/IQYPJRMWoQeaF2oohJgfGYSHKVAe8L+yUqF34PH/hmq9JlwmO+juPw+95/Q== - dependencies: - get-stdin "^7.0.0" - minimist "^1.2.5" - geojson-numeric@0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/geojson-numeric/-/geojson-numeric-0.2.1.tgz#2c8c032f792cca0747a6e02ffa86c00ee3d2df6c" @@ -8399,11 +8303,6 @@ get-package-type@^0.1.0: resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== -get-stdin@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-7.0.0.tgz#8d5de98f15171a125c5e516643c7a6d0ea8a96f6" - integrity sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ== - get-stdin@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53" @@ -8451,11 +8350,6 @@ gl-matrix@^3.0.0, gl-matrix@^3.4.0, gl-matrix@^3.4.3: resolved "https://registry.yarnpkg.com/gl-matrix/-/gl-matrix-3.4.3.tgz#fc1191e8320009fd4d20e9339595c6041ddc22c9" integrity sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA== -gl-matrix@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/gl-matrix/-/gl-matrix-3.3.0.tgz#232eef60b1c8b30a28cbbe75b2caf6c48fd6358b" - integrity sha512-COb7LDz+SXaHtl/h4LeaFcNdJdAQSDeVqjiIihSXNrkWObZLhDI4hIkZC11Aeqp7bcE72clzB0BnDXr2SmslRA== - glob-all@^3.1.0: version "3.2.1" resolved "https://registry.yarnpkg.com/glob-all/-/glob-all-3.2.1.tgz#082ca81afd2247cbd3ed2149bb2630f4dc877d95" @@ -8598,11 +8492,6 @@ grapheme-splitter@^1.0.4: resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== -grid-index@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/grid-index/-/grid-index-1.1.0.tgz#97f8221edec1026c8377b86446a7c71e79522ea7" - integrity sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA== - gtfs-types@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/gtfs-types/-/gtfs-types-2.1.0.tgz#49df17f3b80911bfc0b50a4113ca0e3d0ea04592" @@ -8764,11 +8653,6 @@ hash.js@^1.0.0, hash.js@^1.0.3: inherits "^2.0.3" minimalistic-assert "^1.0.1" -hat@0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/hat/-/hat-0.0.3.tgz#bb014a9e64b3788aed8005917413d4ff3d502d8a" - integrity sha1-uwFKnmSzeIrtgAWRdBPU/z1QLYo= - he@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" @@ -10774,34 +10658,6 @@ map-visit@^1.0.0: dependencies: object-visit "^1.0.0" -mapbox-gl@chairemobilite/mapbox-gl-js#39bbf9aeb1859424e29cff2584715fddc9d018b9: - version "2.3.1" - resolved "https://codeload.github.com/chairemobilite/mapbox-gl-js/tar.gz/39bbf9aeb1859424e29cff2584715fddc9d018b9" - dependencies: - "@mapbox/geojson-rewind" "^0.5.0" - "@mapbox/geojson-types" "^1.0.2" - "@mapbox/jsonlint-lines-primitives" "^2.0.2" - "@mapbox/mapbox-gl-supported" "^2.0.0" - "@mapbox/point-geometry" "^0.1.0" - "@mapbox/tiny-sdf" "^1.2.5" - "@mapbox/unitbezier" "^0.0.0" - "@mapbox/vector-tile" "^1.3.1" - "@mapbox/whoots-js" "^3.1.0" - csscolorparser "~1.0.3" - earcut "^2.2.2" - geojson-vt "^3.2.1" - gl-matrix "^3.3.0" - grid-index "^1.1.0" - minimist "^1.2.5" - murmurhash-js "^1.0.0" - pbf "^3.2.1" - potpack "^1.0.1" - quickselect "^2.0.0" - rw "^1.3.3" - supercluster "^7.1.3" - tinyqueue "^2.0.3" - vt-pbf "^3.1.1" - maplibre-gl@^3.6.1: version "3.6.1" resolved "https://registry.yarnpkg.com/maplibre-gl/-/maplibre-gl-3.6.1.tgz#44d55c6376fc500569933a1037a1ac5500eb1909" @@ -12309,7 +12165,7 @@ pause@0.0.1: resolved "https://registry.yarnpkg.com/pause/-/pause-0.0.1.tgz#1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d" integrity sha1-HUCLP9t2kjuVQ9lvtMnf1TXZy10= -pbf@^3.0.4, pbf@^3.0.5, pbf@^3.2.1: +pbf@^3.0.4, pbf@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/pbf/-/pbf-3.2.1.tgz#b4c1b9e72af966cd82c6531691115cc0409ffe2a" integrity sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ== @@ -12578,11 +12434,6 @@ postgres-interval@^1.1.0: dependencies: xtend "^4.0.0" -potpack@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/potpack/-/potpack-1.0.1.tgz#d1b1afd89e4c8f7762865ec30bd112ab767e2ebf" - integrity sha512-15vItUAbViaYrmaB/Pbw7z6qX2xENbFSTA7Ii4tgbPtasxm5v6ryKhKtL91tpWovDJzTiZqdwzhcFBCwiMVdVw== - potpack@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/potpack/-/potpack-2.0.0.tgz#61f4dd2dc4b3d5e996e3698c0ec9426d0e169104" @@ -13870,11 +13721,6 @@ rw@1, rw@^1.3.3: resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q= -rw@~0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/rw/-/rw-0.1.4.tgz#4903cbd80248ae0ede685bf58fd236a7a9b29a3e" - integrity sha1-SQPL2AJIrg7eaFv1j9I2p6mymj4= - rxjs@^6.5.2, rxjs@^6.6.0: version "6.6.0" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.0.tgz#af2901eedf02e3a83ffa7f886240ff9018bbec84" @@ -14883,13 +14729,6 @@ superagent@^6.1.0: readable-stream "^3.6.0" semver "^7.3.2" -supercluster@^7.1.3: - version "7.1.3" - resolved "https://registry.yarnpkg.com/supercluster/-/supercluster-7.1.3.tgz#8c5412c7d7e53b010f7514e87f279544babc3425" - integrity sha512-7+bR4FbF5SYsmkHfDp61QiwCKtwNDyPsddk9TzfsDA5DQr5Goii5CVD2SXjglweFCxjrzVZf945ahqYfUIk8UA== - dependencies: - kdbush "^3.0.0" - supercluster@^8.0.1: version "8.0.1" resolved "https://registry.yarnpkg.com/supercluster/-/supercluster-8.0.1.tgz#9946ba123538e9e9ab15de472531f604e7372df5" @@ -15275,11 +15114,6 @@ tr46@~0.0.3: resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= -traverse@~0.6.6: - version "0.6.6" - resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" - integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc= - trim-newlines@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" @@ -15790,15 +15624,6 @@ void-elements@3.1.0: resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-3.1.0.tgz#614f7fbf8d801f0bb5f0661f5b2f5785750e4f09" integrity sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w== -vt-pbf@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/vt-pbf/-/vt-pbf-3.1.1.tgz#b0f627e39a10ce91d943b898ed2363d21899fb82" - integrity sha512-pHjWdrIoxurpmTcbfBWXaPwSmtPAHS105253P1qyEfSTV2HJddqjM+kIHquaT/L6lVJIk9ltTGc0IxR/G47hYA== - dependencies: - "@mapbox/point-geometry" "0.1.0" - "@mapbox/vector-tile" "^1.3.1" - pbf "^3.0.5" - vt-pbf@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/vt-pbf/-/vt-pbf-3.1.3.tgz#68fd150756465e2edae1cc5c048e063916dcfaac" @@ -15950,11 +15775,6 @@ webpack@^4.43.0: watchpack "^1.6.1" webpack-sources "^1.4.1" -wgs84@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/wgs84/-/wgs84-0.0.0.tgz#34fdc555917b6e57cf2a282ed043710c049cdc76" - integrity sha1-NP3FVZF7blfPKigu0ENxDASc3HY= - whatwg-encoding@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" @@ -16148,7 +15968,7 @@ xmlhttprequest-ssl@~1.6.2: resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.6.3.tgz#03b713873b01659dfa2c1c5d056065b27ddc2de6" integrity sha512-3XfeQE/wNkvrIktn2Kf0869fC0BN6UpydVasGIeSm2B1Llihf7/0UfZM+eCkOw3P7bP4+qPgqhm7ZoxuJtFU0Q== -xtend@^4.0.0, xtend@^4.0.2, xtend@~4.0.1: +xtend@^4.0.0, xtend@~4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== From e451f5938ceaab4193949f898ace58aff1697923 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Mon, 11 Mar 2024 11:40:00 -0400 Subject: [PATCH 22/23] preferences: Add an option to enable map animations Defaults to `true`, but can be set in the user preferences. Layers can then use the `map.enableMapAnimations` preferences value to disable animations. --- locales/en/main.json | 3 ++- locales/fr/main.json | 3 ++- .../src/config/defaultPreferences.config.ts | 1 + .../sections/PreferencesSectionGeneral.tsx | 17 +++++++++++++++++ 4 files changed, 22 insertions(+), 2 deletions(-) diff --git a/locales/en/main.json b/locales/en/main.json index bb6a7b72..478934c3 100644 --- a/locales/en/main.json +++ b/locales/en/main.json @@ -285,7 +285,8 @@ }, "DateTimeFormat": "Date/Time format", "DateTimeFormat24H": "24 hours ({{formatted}})", - "DateTimeFormat12H": "12 hours ({{formatted}})" + "DateTimeFormat12H": "12 hours ({{formatted}})", + "EnableMapAnimations": "Enable map animations" }, "ShowingNofX": "Showing {{n}} of {{x}} results", "PageNofX": "Page {{n}} of {{x}}", diff --git a/locales/fr/main.json b/locales/fr/main.json index b327d265..f3856d97 100644 --- a/locales/fr/main.json +++ b/locales/fr/main.json @@ -285,7 +285,8 @@ }, "DateTimeFormat": "Format de date/heure", "DateTimeFormat24H": "24 heures ({{formatted}})", - "DateTimeFormat12H": "12 heures ({{formatted}})" + "DateTimeFormat12H": "12 heures ({{formatted}})", + "EnableMapAnimations": "Activer les animations de cartes" }, "ShowingNofX": "{{n}} de {{x}} résultats", "PageNofX": "Page {{n}} de {{x}}", diff --git a/packages/chaire-lib-common/src/config/defaultPreferences.config.ts b/packages/chaire-lib-common/src/config/defaultPreferences.config.ts index 99c537b3..753e1985 100644 --- a/packages/chaire-lib-common/src/config/defaultPreferences.config.ts +++ b/packages/chaire-lib-common/src/config/defaultPreferences.config.ts @@ -102,6 +102,7 @@ const defaultPreferences: PreferencesModel = { map: { center: [config.mapDefaultCenter.lon, config.mapDefaultCenter.lat], zoom: 10, + enableMapAnimations: true, layers: { simulations: ['aggregatedOD', 'odTripsProfile', 'transitStations', 'transitNodes'], agencies: [ diff --git a/packages/transition-frontend/src/components/forms/preferences/sections/PreferencesSectionGeneral.tsx b/packages/transition-frontend/src/components/forms/preferences/sections/PreferencesSectionGeneral.tsx index 34f69359..bfb7402e 100644 --- a/packages/transition-frontend/src/components/forms/preferences/sections/PreferencesSectionGeneral.tsx +++ b/packages/transition-frontend/src/components/forms/preferences/sections/PreferencesSectionGeneral.tsx @@ -15,6 +15,7 @@ import InputStringFormatted from 'chaire-lib-frontend/lib/components/input/Input import InputWrapper from 'chaire-lib-frontend/lib/components/input/InputWrapper'; import InputSelect from 'chaire-lib-frontend/lib/components/input/InputSelect'; import PreferencesSectionProps from '../PreferencesSectionProps'; +import { InputCheckboxBoolean } from 'chaire-lib-frontend/lib/components/input/InputCheckbox'; import moment from 'moment'; const PreferencesSectionGeneral: React.FunctionComponent = ( @@ -151,6 +152,22 @@ const PreferencesSectionGeneral: React.FunctionComponent + + + props.onValueChange('map.enableMapAnimations', { value: e.target.value }) + } + /> + + ); From 3a8bd2bd146d366c7b14a9d50608171caf91ebb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Mon, 11 Mar 2024 11:41:10 -0400 Subject: [PATCH 23/23] animated path: Allow to disable animations for the layer Add a prop to disable animation on the `AnimatedArrowPathLayer`. This deactivates the animated frame request and arrow path time step, thus saving the GPU from calculations. The previous speed divider of 0 also had the effect of making the path not move, but the layer was still refreshed for every frame, impacting GPU performances. --- .../map/layers/AnimatedArrowPathLayer.tsx | 14 ++++++++++---- .../components/map/layers/TransitionMapLayer.tsx | 3 ++- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx b/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx index cd0ec864..ac89d48b 100644 --- a/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx +++ b/packages/transition-frontend/src/components/map/layers/AnimatedArrowPathLayer.tsx @@ -19,14 +19,20 @@ type _AnimatedArrowPathLayerProps = { /** * Arrow path speed scaling. The larger the number, the slower the path movement. 0 prevents movement - * @default 3 + * @default 1 */ speedDivider?: number; + + /** + * Set to `true` to disable animation + */ + disableAnimation?: boolean; }; const defaultProps: DefaultProps = { getDistanceBetweenArrows: { type: 'accessor', value: 20 }, - speedDivider: 1 + speedDivider: 1, + disableAnimation: false }; export default class AnimatedArrowPathLayer extends PathLayer< @@ -54,7 +60,7 @@ export default class AnimatedArrowPathLayer